blob: 24d2b40b6c6b45e1edeacddbecefa585f693cc81 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * This program is free software; you can redistribute it and/or modify
3 * it under the terms of the GNU General Public License as published by
4 * the Free Software Foundation; either version 2 of the License, or
5 * (at your option) any later version.
6 *
7 * Copyright (C) Jonathan Naylor G4KLX (g4klx@g4klx.demon.co.uk)
8 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07009#include <linux/module.h>
10#include <linux/proc_fs.h>
11#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include <linux/interrupt.h>
13#include <linux/fs.h>
14#include <linux/types.h>
15#include <linux/sysctl.h>
16#include <linux/string.h>
17#include <linux/socket.h>
18#include <linux/errno.h>
19#include <linux/fcntl.h>
20#include <linux/in.h>
21#include <linux/if_ether.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090022#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <asm/io.h>
25
26#include <linux/inet.h>
27#include <linux/netdevice.h>
28#include <linux/etherdevice.h>
29#include <linux/if_arp.h>
30#include <linux/skbuff.h>
31
32#include <net/ip.h>
33#include <net/arp.h>
34
35#include <net/ax25.h>
36#include <net/rose.h>
37
Stephen Hemminger3b04ddd2007-10-09 01:40:57 -070038static int rose_header(struct sk_buff *skb, struct net_device *dev,
39 unsigned short type,
Eric Dumazet95c96172012-04-15 05:58:06 +000040 const void *daddr, const void *saddr, unsigned int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -070041{
42 unsigned char *buff = skb_push(skb, ROSE_MIN_LEN + 2);
43
Eric W. Biedermanb753af32015-03-02 00:01:30 -060044 if (daddr)
45 memcpy(buff + 7, daddr, dev->addr_len);
46
Linus Torvalds1da177e2005-04-16 15:20:36 -070047 *buff++ = ROSE_GFI | ROSE_Q_BIT;
48 *buff++ = 0x00;
49 *buff++ = ROSE_DATA;
50 *buff++ = 0x7F;
51 *buff++ = AX25_P_IP;
52
53 if (daddr != NULL)
54 return 37;
55
56 return -37;
57}
58
59static int rose_rebuild_header(struct sk_buff *skb)
60{
Pavel Emelyanov78f150b2007-12-05 02:18:15 -080061#ifdef CONFIG_INET
Linus Torvalds1da177e2005-04-16 15:20:36 -070062 struct net_device *dev = skb->dev;
Stephen Hemmingerd289d122009-01-09 13:01:05 +000063 struct net_device_stats *stats = &dev->stats;
Linus Torvalds1da177e2005-04-16 15:20:36 -070064 unsigned char *bp = (unsigned char *)skb->data;
65 struct sk_buff *skbn;
Ralf Baechle8dc22d22006-07-03 19:29:15 -070066 unsigned int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -070067
Linus Torvalds1da177e2005-04-16 15:20:36 -070068 if (arp_find(bp + 7, skb)) {
69 return 1;
70 }
71
72 if ((skbn = skb_clone(skb, GFP_ATOMIC)) == NULL) {
73 kfree_skb(skb);
74 return 1;
75 }
76
77 if (skb->sk != NULL)
78 skb_set_owner_w(skbn, skb->sk);
79
80 kfree_skb(skb);
81
Ralf Baechle8dc22d22006-07-03 19:29:15 -070082 len = skbn->len;
83
Linus Torvalds1da177e2005-04-16 15:20:36 -070084 if (!rose_route_frame(skbn, NULL)) {
85 kfree_skb(skbn);
86 stats->tx_errors++;
87 return 1;
88 }
89
90 stats->tx_packets++;
Ralf Baechle8dc22d22006-07-03 19:29:15 -070091 stats->tx_bytes += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -070092#endif
93 return 1;
94}
95
96static int rose_set_mac_address(struct net_device *dev, void *addr)
97{
98 struct sockaddr *sa = addr;
Ralf Baechlea159aaa2006-12-14 15:51:44 -080099 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100
danborkmann@iogearbox.net81213b52012-03-27 22:47:43 +0000101 if (!memcmp(dev->dev_addr, sa->sa_data, dev->addr_len))
Ralf Baechlea159aaa2006-12-14 15:51:44 -0800102 return 0;
103
104 if (dev->flags & IFF_UP) {
danborkmann@iogearbox.net81213b52012-03-27 22:47:43 +0000105 err = rose_add_loopback_node((rose_address *)sa->sa_data);
Ralf Baechlea159aaa2006-12-14 15:51:44 -0800106 if (err)
107 return err;
108
109 rose_del_loopback_node((rose_address *)dev->dev_addr);
110 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111
112 memcpy(dev->dev_addr, sa->sa_data, dev->addr_len);
113
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 return 0;
115}
116
117static int rose_open(struct net_device *dev)
118{
Ralf Baechlea159aaa2006-12-14 15:51:44 -0800119 int err;
120
121 err = rose_add_loopback_node((rose_address *)dev->dev_addr);
122 if (err)
123 return err;
124
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 netif_start_queue(dev);
Ralf Baechlea159aaa2006-12-14 15:51:44 -0800126
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 return 0;
128}
129
130static int rose_close(struct net_device *dev)
131{
132 netif_stop_queue(dev);
133 rose_del_loopback_node((rose_address *)dev->dev_addr);
134 return 0;
135}
136
Stephen Hemminger36e4d642009-08-31 19:50:43 +0000137static netdev_tx_t rose_xmit(struct sk_buff *skb, struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138{
Stephen Hemmingerd289d122009-01-09 13:01:05 +0000139 struct net_device_stats *stats = &dev->stats;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140
141 if (!netif_running(dev)) {
142 printk(KERN_ERR "ROSE: rose_xmit - called when iface is down\n");
Patrick McHardy5b548142009-06-12 06:22:29 +0000143 return NETDEV_TX_BUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 }
145 dev_kfree_skb(skb);
146 stats->tx_errors++;
Patrick McHardy6ed10652009-06-23 06:03:08 +0000147 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148}
149
Stephen Hemminger3b04ddd2007-10-09 01:40:57 -0700150static const struct header_ops rose_header_ops = {
151 .create = rose_header,
Weilong Chendb34de92013-12-19 11:55:17 +0800152 .rebuild = rose_rebuild_header,
Stephen Hemminger3b04ddd2007-10-09 01:40:57 -0700153};
154
Stephen Hemminger3170c652009-01-09 13:01:06 +0000155static const struct net_device_ops rose_netdev_ops = {
156 .ndo_open = rose_open,
157 .ndo_stop = rose_close,
158 .ndo_start_xmit = rose_xmit,
159 .ndo_set_mac_address = rose_set_mac_address,
160};
161
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162void rose_setup(struct net_device *dev)
163{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 dev->mtu = ROSE_MAX_PACKET_SIZE - 2;
Stephen Hemminger3170c652009-01-09 13:01:06 +0000165 dev->netdev_ops = &rose_netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166
Stephen Hemminger3b04ddd2007-10-09 01:40:57 -0700167 dev->header_ops = &rose_header_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 dev->hard_header_len = AX25_BPQ_HEADER_LEN + AX25_MAX_HEADER_LEN + ROSE_MIN_LEN;
169 dev->addr_len = ROSE_ADDR_LEN;
170 dev->type = ARPHRD_ROSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171
172 /* New-style flags. */
Ralf Baechled2ce4bc2005-09-12 14:26:52 -0700173 dev->flags = IFF_NOARP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174}