blob: 64e6dde9749d5e713d15ac23914e3928211aa395 [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 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> /* For the statistics structure. */
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090022#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023
24#include <asm/system.h>
25#include <asm/uaccess.h>
26#include <asm/io.h>
27
28#include <linux/inet.h>
29#include <linux/netdevice.h>
30#include <linux/etherdevice.h>
31#include <linux/if_arp.h>
32#include <linux/skbuff.h>
33
34#include <net/ip.h>
35#include <net/arp.h>
36
37#include <net/ax25.h>
38#include <net/netrom.h>
39
Linus Torvalds1da177e2005-04-16 15:20:36 -070040/*
41 * Only allow IP over NET/ROM frames through if the netrom device is up.
42 */
43
44int nr_rx_ip(struct sk_buff *skb, struct net_device *dev)
45{
Stephen Hemmingerb51414b2009-01-09 13:01:03 +000046 struct net_device_stats *stats = &dev->stats;
Linus Torvalds1da177e2005-04-16 15:20:36 -070047
48 if (!netif_running(dev)) {
Ralf Baechle6ddcf622005-09-12 14:23:06 -070049 stats->rx_dropped++;
Linus Torvalds1da177e2005-04-16 15:20:36 -070050 return 0;
51 }
52
53 stats->rx_packets++;
54 stats->rx_bytes += skb->len;
55
56 skb->protocol = htons(ETH_P_IP);
57
58 /* Spoof incoming device */
59 skb->dev = dev;
David S. Millerc6e6ca72007-12-20 00:25:54 -080060 skb->mac_header = skb->network_header;
Arnaldo Carvalho de Meloc1d2bbe2007-04-10 20:45:18 -070061 skb_reset_network_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -070062 skb->pkt_type = PACKET_HOST;
63
Ralf Baechle98a82fe2005-08-24 11:35:51 -070064 netif_rx(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -070065
66 return 1;
67}
68
Ralf Baechle98a82fe2005-08-24 11:35:51 -070069#ifdef CONFIG_INET
Linus Torvalds1da177e2005-04-16 15:20:36 -070070
71static int nr_rebuild_header(struct sk_buff *skb)
72{
Linus Torvalds1da177e2005-04-16 15:20:36 -070073 unsigned char *bp = skb->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -070074
Ralf Baechle3f2aadd2005-09-12 14:21:48 -070075 if (arp_find(bp + 7, skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -070076 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070077
78 bp[6] &= ~AX25_CBIT;
79 bp[6] &= ~AX25_EBIT;
80 bp[6] |= AX25_SSSID_SPARE;
81 bp += AX25_ADDR_LEN;
82
83 bp[6] &= ~AX25_CBIT;
84 bp[6] |= AX25_EBIT;
85 bp[6] |= AX25_SSSID_SPARE;
86
Ralf Baechle3f2aadd2005-09-12 14:21:48 -070087 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070088}
89
90#else
91
92static int nr_rebuild_header(struct sk_buff *skb)
93{
94 return 1;
95}
96
97#endif
98
Stephen Hemminger3b04ddd2007-10-09 01:40:57 -070099static int nr_header(struct sk_buff *skb, struct net_device *dev,
100 unsigned short type,
101 const void *daddr, const void *saddr, unsigned len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102{
103 unsigned char *buff = skb_push(skb, NR_NETWORK_LEN + NR_TRANSPORT_LEN);
104
105 memcpy(buff, (saddr != NULL) ? saddr : dev->dev_addr, dev->addr_len);
106 buff[6] &= ~AX25_CBIT;
107 buff[6] &= ~AX25_EBIT;
108 buff[6] |= AX25_SSSID_SPARE;
109 buff += AX25_ADDR_LEN;
110
111 if (daddr != NULL)
112 memcpy(buff, daddr, dev->addr_len);
113 buff[6] &= ~AX25_CBIT;
114 buff[6] |= AX25_EBIT;
115 buff[6] |= AX25_SSSID_SPARE;
116 buff += AX25_ADDR_LEN;
117
118 *buff++ = sysctl_netrom_network_ttl_initialiser;
119
120 *buff++ = NR_PROTO_IP;
121 *buff++ = NR_PROTO_IP;
122 *buff++ = 0;
123 *buff++ = 0;
124 *buff++ = NR_PROTOEXT;
125
126 if (daddr != NULL)
127 return 37;
128
129 return -37;
130}
131
Ralf Baechle81dcd162006-12-14 15:50:34 -0800132static int __must_check nr_set_mac_address(struct net_device *dev, void *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133{
134 struct sockaddr *sa = addr;
Ralf Baechle81dcd162006-12-14 15:50:34 -0800135 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136
Ralf Baechle81dcd162006-12-14 15:50:34 -0800137 if (!memcmp(dev->dev_addr, sa->sa_data, dev->addr_len))
138 return 0;
139
140 if (dev->flags & IFF_UP) {
141 err = ax25_listen_register((ax25_address *)sa->sa_data, NULL);
142 if (err)
143 return err;
144
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 ax25_listen_release((ax25_address *)dev->dev_addr, NULL);
Ralf Baechle81dcd162006-12-14 15:50:34 -0800146 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147
148 memcpy(dev->dev_addr, sa->sa_data, dev->addr_len);
149
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 return 0;
151}
152
153static int nr_open(struct net_device *dev)
154{
Ralf Baechle81dcd162006-12-14 15:50:34 -0800155 int err;
156
157 err = ax25_listen_register((ax25_address *)dev->dev_addr, NULL);
158 if (err)
159 return err;
160
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 netif_start_queue(dev);
Ralf Baechle81dcd162006-12-14 15:50:34 -0800162
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 return 0;
164}
165
166static int nr_close(struct net_device *dev)
167{
168 ax25_listen_release((ax25_address *)dev->dev_addr, NULL);
169 netif_stop_queue(dev);
170 return 0;
171}
172
Stephen Hemminger36e4d642009-08-31 19:50:43 +0000173static netdev_tx_t nr_xmit(struct sk_buff *skb, struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174{
Stephen Hemmingerb51414b2009-01-09 13:01:03 +0000175 struct net_device_stats *stats = &dev->stats;
Ralf Baechleb88a7622005-09-12 14:28:03 -0700176 unsigned int len = skb->len;
Ralf Baechle3f2aadd2005-09-12 14:21:48 -0700177
178 if (!nr_route_frame(skb, NULL)) {
179 kfree_skb(skb);
180 stats->tx_errors++;
Patrick McHardy6ed10652009-06-23 06:03:08 +0000181 return NETDEV_TX_OK;
Ralf Baechle3f2aadd2005-09-12 14:21:48 -0700182 }
183
184 stats->tx_packets++;
185 stats->tx_bytes += len;
186
Patrick McHardy6ed10652009-06-23 06:03:08 +0000187 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188}
189
Stephen Hemminger3b04ddd2007-10-09 01:40:57 -0700190static const struct header_ops nr_header_ops = {
191 .create = nr_header,
192 .rebuild= nr_rebuild_header,
193};
194
Stephen Hemminger0f6c5c82009-01-09 13:01:04 +0000195static const struct net_device_ops nr_netdev_ops = {
196 .ndo_open = nr_open,
197 .ndo_stop = nr_close,
198 .ndo_start_xmit = nr_xmit,
199 .ndo_set_mac_address = nr_set_mac_address,
200};
Stephen Hemminger3b04ddd2007-10-09 01:40:57 -0700201
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202void nr_setup(struct net_device *dev)
203{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 dev->mtu = NR_MAX_PACKET_SIZE;
Stephen Hemminger0f6c5c82009-01-09 13:01:04 +0000205 dev->netdev_ops = &nr_netdev_ops;
Stephen Hemminger3b04ddd2007-10-09 01:40:57 -0700206 dev->header_ops = &nr_header_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 dev->hard_header_len = NR_NETWORK_LEN + NR_TRANSPORT_LEN;
208 dev->addr_len = AX25_ADDR_LEN;
209 dev->type = ARPHRD_NETROM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210
211 /* New-style flags. */
Ralf Baechle72377292005-09-12 14:26:26 -0700212 dev->flags = IFF_NOARP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213}