blob: 1c1f26c5d672034973187409c94688e59bf03e55 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * An implementation of the Acorn Econet and AUN protocols.
3 * Philip Blundell <philb@gnu.org>
4 *
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License
7 * as published by the Free Software Foundation; either version
8 * 2 of the License, or (at your option) any later version.
9 *
10 */
11
Joe Perchesee9c88f2011-07-03 08:28:33 +000012#define pr_fmt(fmt) fmt
13
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/module.h>
15
16#include <linux/types.h>
17#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include <linux/string.h>
19#include <linux/mm.h>
20#include <linux/socket.h>
21#include <linux/sockios.h>
22#include <linux/in.h>
23#include <linux/errno.h>
24#include <linux/interrupt.h>
25#include <linux/if_ether.h>
26#include <linux/netdevice.h>
27#include <linux/inetdevice.h>
28#include <linux/route.h>
29#include <linux/inet.h>
30#include <linux/etherdevice.h>
31#include <linux/if_arp.h>
32#include <linux/wireless.h>
33#include <linux/skbuff.h>
Arnaldo Carvalho de Melo14c85022005-12-27 02:43:12 -020034#include <linux/udp.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090035#include <linux/slab.h>
Phil Blundella27e13d2010-11-24 11:51:47 -080036#include <linux/vmalloc.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#include <net/sock.h>
38#include <net/inet_common.h>
39#include <linux/stat.h>
40#include <linux/init.h>
41#include <linux/if_ec.h>
42#include <net/udp.h>
43#include <net/ip.h>
44#include <linux/spinlock.h>
45#include <linux/rcupdate.h>
46#include <linux/bitops.h>
David S. Miller1d181832006-03-28 00:01:55 -080047#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
Joe Perchesee9c88f2011-07-03 08:28:33 +000049#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070050#include <asm/system.h>
51
Eric Dumazet90ddc4f2005-12-22 12:49:22 -080052static const struct proto_ops econet_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -070053static struct hlist_head econet_sklist;
Eric Dumazet0c78a922010-06-09 16:33:05 +000054static DEFINE_SPINLOCK(econet_lock);
David S. Miller1d181832006-03-28 00:01:55 -080055static DEFINE_MUTEX(econet_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
57/* Since there are only 256 possible network numbers (or fewer, depends
58 how you count) it makes sense to use a simple lookup table. */
59static struct net_device *net2dev_map[256];
60
61#define EC_PORT_IP 0xd2
62
63#ifdef CONFIG_ECONET_AUNUDP
YOSHIFUJI Hideakica403302006-01-04 13:56:08 -080064static DEFINE_SPINLOCK(aun_queue_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070065static struct socket *udpsock;
66#define AUN_PORT 0x8000
67
Joe Perchesee9c88f2011-07-03 08:28:33 +000068struct aunhdr {
Linus Torvalds1da177e2005-04-16 15:20:36 -070069 unsigned char code; /* AUN magic protocol byte */
70 unsigned char port;
71 unsigned char cb;
72 unsigned char pad;
73 unsigned long handle;
74};
75
76static unsigned long aun_seq;
77
78/* Queue of packets waiting to be transmitted. */
79static struct sk_buff_head aun_queue;
80static struct timer_list ab_cleanup_timer;
81
82#endif /* CONFIG_ECONET_AUNUDP */
83
84/* Per-packet information */
Joe Perchesee9c88f2011-07-03 08:28:33 +000085struct ec_cb {
Linus Torvalds1da177e2005-04-16 15:20:36 -070086 struct sockaddr_ec sec;
87 unsigned long cookie; /* Supplied by user. */
88#ifdef CONFIG_ECONET_AUNUDP
89 int done;
90 unsigned long seq; /* Sequencing */
91 unsigned long timeout; /* Timeout */
92 unsigned long start; /* jiffies */
93#endif
94#ifdef CONFIG_ECONET_NATIVE
95 void (*sent)(struct sk_buff *, int result);
96#endif
97};
98
99static void econet_remove_socket(struct hlist_head *list, struct sock *sk)
100{
Eric Dumazet0c78a922010-06-09 16:33:05 +0000101 spin_lock_bh(&econet_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 sk_del_node_init(sk);
Eric Dumazet0c78a922010-06-09 16:33:05 +0000103 spin_unlock_bh(&econet_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104}
105
106static void econet_insert_socket(struct hlist_head *list, struct sock *sk)
107{
Eric Dumazet0c78a922010-06-09 16:33:05 +0000108 spin_lock_bh(&econet_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 sk_add_node(sk, list);
Eric Dumazet0c78a922010-06-09 16:33:05 +0000110 spin_unlock_bh(&econet_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111}
112
113/*
114 * Pull a packet from our receive queue and hand it to the user.
115 * If necessary we block.
116 */
117
118static int econet_recvmsg(struct kiocb *iocb, struct socket *sock,
119 struct msghdr *msg, size_t len, int flags)
120{
121 struct sock *sk = sock->sk;
122 struct sk_buff *skb;
123 size_t copied;
124 int err;
125
126 msg->msg_namelen = sizeof(struct sockaddr_ec);
127
David S. Miller1d181832006-03-28 00:01:55 -0800128 mutex_lock(&econet_mutex);
129
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 /*
131 * Call the generic datagram receiver. This handles all sorts
132 * of horrible races and re-entrancy so we can forget about it
133 * in the protocol layers.
134 *
135 * Now it will return ENETDOWN, if device have just gone down,
136 * but then it will block.
137 */
138
Joe Perchesee9c88f2011-07-03 08:28:33 +0000139 skb = skb_recv_datagram(sk, flags, flags & MSG_DONTWAIT, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140
141 /*
YOSHIFUJI Hideakic9b6aab2007-02-09 23:24:42 +0900142 * An error occurred so return it. Because skb_recv_datagram()
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 * handles the blocking we don't see and worry about blocking
144 * retries.
145 */
146
Joe Perchesee9c88f2011-07-03 08:28:33 +0000147 if (skb == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 goto out;
149
150 /*
151 * You lose any data beyond the buffer you gave. If it worries a
152 * user program they can ask the device for its MTU anyway.
153 */
154
155 copied = skb->len;
Joe Perchesee9c88f2011-07-03 08:28:33 +0000156 if (copied > len) {
157 copied = len;
158 msg->msg_flags |= MSG_TRUNC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 }
160
161 /* We can't use skb_copy_datagram here */
162 err = memcpy_toiovec(msg->msg_iov, skb->data, copied);
163 if (err)
164 goto out_free;
Eric Dumazetb7aa0bf2007-04-19 16:16:32 -0700165 sk->sk_stamp = skb->tstamp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166
167 if (msg->msg_name)
168 memcpy(msg->msg_name, skb->cb, msg->msg_namelen);
169
170 /*
171 * Free or return the buffer as appropriate. Again this
172 * hides all the races and re-entrancy issues from us.
173 */
174 err = copied;
175
176out_free:
177 skb_free_datagram(sk, skb);
178out:
David S. Miller1d181832006-03-28 00:01:55 -0800179 mutex_unlock(&econet_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 return err;
181}
182
183/*
184 * Bind an Econet socket.
185 */
186
Joe Perchesee9c88f2011-07-03 08:28:33 +0000187static int econet_bind(struct socket *sock, struct sockaddr *uaddr,
188 int addr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189{
190 struct sockaddr_ec *sec = (struct sockaddr_ec *)uaddr;
David S. Miller1d181832006-03-28 00:01:55 -0800191 struct sock *sk;
192 struct econet_sock *eo;
YOSHIFUJI Hideakic9b6aab2007-02-09 23:24:42 +0900193
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 /*
195 * Check legality
196 */
YOSHIFUJI Hideakic9b6aab2007-02-09 23:24:42 +0900197
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 if (addr_len < sizeof(struct sockaddr_ec) ||
199 sec->sec_family != AF_ECONET)
200 return -EINVAL;
YOSHIFUJI Hideakic9b6aab2007-02-09 23:24:42 +0900201
David S. Miller1d181832006-03-28 00:01:55 -0800202 mutex_lock(&econet_mutex);
203
204 sk = sock->sk;
205 eo = ec_sk(sk);
206
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 eo->cb = sec->cb;
208 eo->port = sec->port;
209 eo->station = sec->addr.station;
210 eo->net = sec->addr.net;
211
David S. Miller1d181832006-03-28 00:01:55 -0800212 mutex_unlock(&econet_mutex);
213
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 return 0;
215}
216
217#if defined(CONFIG_ECONET_AUNUDP) || defined(CONFIG_ECONET_NATIVE)
218/*
219 * Queue a transmit result for the user to be told about.
220 */
221
222static void tx_result(struct sock *sk, unsigned long cookie, int result)
223{
224 struct sk_buff *skb = alloc_skb(0, GFP_ATOMIC);
225 struct ec_cb *eb;
226 struct sockaddr_ec *sec;
227
Joe Perchesee9c88f2011-07-03 08:28:33 +0000228 if (skb == NULL) {
229 pr_debug("econet: memory squeeze, transmit result dropped\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 return;
231 }
232
233 eb = (struct ec_cb *)&skb->cb;
234 sec = (struct sockaddr_ec *)&eb->sec;
235 memset(sec, 0, sizeof(struct sockaddr_ec));
236 sec->cookie = cookie;
237 sec->type = ECTYPE_TRANSMIT_STATUS | result;
238 sec->sec_family = AF_ECONET;
239
240 if (sock_queue_rcv_skb(sk, skb) < 0)
241 kfree_skb(skb);
242}
243#endif
244
245#ifdef CONFIG_ECONET_NATIVE
246/*
247 * Called by the Econet hardware driver when a packet transmit
248 * has completed. Tell the user.
249 */
250
251static void ec_tx_done(struct sk_buff *skb, int result)
252{
253 struct ec_cb *eb = (struct ec_cb *)&skb->cb;
254 tx_result(skb->sk, eb->cookie, result);
255}
256#endif
257
258/*
259 * Send a packet. We have to work out which device it's going out on
260 * and hence whether to use real Econet or the UDP emulation.
261 */
262
263static int econet_sendmsg(struct kiocb *iocb, struct socket *sock,
264 struct msghdr *msg, size_t len)
265{
Joe Perchesee9c88f2011-07-03 08:28:33 +0000266 struct sockaddr_ec *saddr = (struct sockaddr_ec *)msg->msg_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 struct net_device *dev;
268 struct ec_addr addr;
269 int err;
270 unsigned char port, cb;
271#if defined(CONFIG_ECONET_AUNUDP) || defined(CONFIG_ECONET_NATIVE)
Eric Dumazet389f2a12011-01-26 00:04:18 +0000272 struct sock *sk = sock->sk;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 struct sk_buff *skb;
274 struct ec_cb *eb;
275#endif
276#ifdef CONFIG_ECONET_AUNUDP
277 struct msghdr udpmsg;
Phil Blundella27e13d2010-11-24 11:51:47 -0800278 struct iovec iov[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 struct aunhdr ah;
280 struct sockaddr_in udpdest;
281 __kernel_size_t size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 mm_segment_t oldfs;
Phil Blundella27e13d2010-11-24 11:51:47 -0800283 char *userbuf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284#endif
YOSHIFUJI Hideakic9b6aab2007-02-09 23:24:42 +0900285
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 /*
YOSHIFUJI Hideakic9b6aab2007-02-09 23:24:42 +0900287 * Check the flags.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 */
289
YOSHIFUJI Hideakic9b6aab2007-02-09 23:24:42 +0900290 if (msg->msg_flags & ~(MSG_DONTWAIT|MSG_CMSG_COMPAT))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 return -EINVAL;
292
293 /*
YOSHIFUJI Hideakic9b6aab2007-02-09 23:24:42 +0900294 * Get and verify the address.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 */
YOSHIFUJI Hideakic9b6aab2007-02-09 23:24:42 +0900296
David S. Miller1d181832006-03-28 00:01:55 -0800297 mutex_lock(&econet_mutex);
298
Joe Perchesee9c88f2011-07-03 08:28:33 +0000299 if (saddr == NULL || msg->msg_namelen < sizeof(struct sockaddr_ec)) {
300 mutex_unlock(&econet_mutex);
301 return -EINVAL;
302 }
303 addr.station = saddr->addr.station;
304 addr.net = saddr->addr.net;
305 port = saddr->port;
306 cb = saddr->cb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307
308 /* Look for a device with the right network number. */
309 dev = net2dev_map[addr.net];
310
311 /* If not directly reachable, use some default */
David S. Miller1d181832006-03-28 00:01:55 -0800312 if (dev == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 dev = net2dev_map[0];
314 /* No interfaces at all? */
David S. Miller1d181832006-03-28 00:01:55 -0800315 if (dev == NULL) {
316 mutex_unlock(&econet_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 return -ENETDOWN;
David S. Miller1d181832006-03-28 00:01:55 -0800318 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 }
320
David S. Miller1d181832006-03-28 00:01:55 -0800321 if (dev->type == ARPHRD_ECONET) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 /* Real hardware Econet. We're not worthy etc. */
323#ifdef CONFIG_ECONET_NATIVE
324 unsigned short proto = 0;
Stephen Hemminger0c4e8582007-10-09 01:36:32 -0700325 int res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326
Phil Blundella27e13d2010-11-24 11:51:47 -0800327 if (len + 15 > dev->mtu) {
328 mutex_unlock(&econet_mutex);
329 return -EMSGSIZE;
330 }
331
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 dev_hold(dev);
YOSHIFUJI Hideakic9b6aab2007-02-09 23:24:42 +0900333
Joe Perchesee9c88f2011-07-03 08:28:33 +0000334 skb = sock_alloc_send_skb(sk, len + LL_ALLOCATED_SPACE(dev),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 msg->msg_flags & MSG_DONTWAIT, &err);
Joe Perchesee9c88f2011-07-03 08:28:33 +0000336 if (skb == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 goto out_unlock;
YOSHIFUJI Hideakic9b6aab2007-02-09 23:24:42 +0900338
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 skb_reserve(skb, LL_RESERVED_SPACE(dev));
Arnaldo Carvalho de Meloc1d2bbe2007-04-10 20:45:18 -0700340 skb_reset_network_header(skb);
YOSHIFUJI Hideakic9b6aab2007-02-09 23:24:42 +0900341
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 eb = (struct ec_cb *)&skb->cb;
YOSHIFUJI Hideakic9b6aab2007-02-09 23:24:42 +0900343
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 eb->cookie = saddr->cookie;
345 eb->sec = *saddr;
346 eb->sent = ec_tx_done;
347
Stephen Hemminger0c4e8582007-10-09 01:36:32 -0700348 err = -EINVAL;
349 res = dev_hard_header(skb, dev, ntohs(proto), &addr, NULL, len);
350 if (res < 0)
351 goto out_free;
352 if (res > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 struct ec_framehdr *fh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 /* Poke in our control byte and
355 port number. Hack, hack. */
Joe Perchesee9c88f2011-07-03 08:28:33 +0000356 fh = (struct ec_framehdr *)skb->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 fh->cb = cb;
358 fh->port = port;
359 if (sock->type != SOCK_DGRAM) {
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700360 skb_reset_tail_pointer(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 skb->len = 0;
Stephen Hemminger0c4e8582007-10-09 01:36:32 -0700362 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 }
YOSHIFUJI Hideakic9b6aab2007-02-09 23:24:42 +0900364
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 /* Copy the data. Returns -EFAULT on error */
Joe Perchesee9c88f2011-07-03 08:28:33 +0000366 err = memcpy_fromiovec(skb_put(skb, len), msg->msg_iov, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 skb->protocol = proto;
368 skb->dev = dev;
369 skb->priority = sk->sk_priority;
370 if (err)
371 goto out_free;
YOSHIFUJI Hideakic9b6aab2007-02-09 23:24:42 +0900372
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 err = -ENETDOWN;
374 if (!(dev->flags & IFF_UP))
375 goto out_free;
YOSHIFUJI Hideakic9b6aab2007-02-09 23:24:42 +0900376
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 /*
378 * Now send it
379 */
YOSHIFUJI Hideakic9b6aab2007-02-09 23:24:42 +0900380
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 dev_queue_xmit(skb);
382 dev_put(dev);
David S. Miller1d181832006-03-28 00:01:55 -0800383 mutex_unlock(&econet_mutex);
Eric Dumazeta02cec22010-09-22 20:43:57 +0000384 return len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385
Joe Perchesee9c88f2011-07-03 08:28:33 +0000386out_free:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 kfree_skb(skb);
Joe Perchesee9c88f2011-07-03 08:28:33 +0000388out_unlock:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 if (dev)
390 dev_put(dev);
391#else
392 err = -EPROTOTYPE;
393#endif
David S. Miller1d181832006-03-28 00:01:55 -0800394 mutex_unlock(&econet_mutex);
395
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 return err;
397 }
398
399#ifdef CONFIG_ECONET_AUNUDP
400 /* AUN virtual Econet. */
401
David S. Miller1d181832006-03-28 00:01:55 -0800402 if (udpsock == NULL) {
403 mutex_unlock(&econet_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 return -ENETDOWN; /* No socket - can't send */
David S. Miller1d181832006-03-28 00:01:55 -0800405 }
YOSHIFUJI Hideakic9b6aab2007-02-09 23:24:42 +0900406
Phil Blundella27e13d2010-11-24 11:51:47 -0800407 if (len > 32768) {
408 err = -E2BIG;
409 goto error;
410 }
411
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 /* Make up a UDP datagram and hand it off to some higher intellect. */
413
414 memset(&udpdest, 0, sizeof(udpdest));
415 udpdest.sin_family = AF_INET;
416 udpdest.sin_port = htons(AUN_PORT);
417
418 /* At the moment we use the stupid Acorn scheme of Econet address
419 y.x maps to IP a.b.c.x. This should be replaced with something
420 more flexible and more aware of subnet masks. */
421 {
422 struct in_device *idev;
423 unsigned long network = 0;
424
425 rcu_read_lock();
Herbert Xue5ed6392005-10-03 14:35:55 -0700426 idev = __in_dev_get_rcu(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 if (idev) {
428 if (idev->ifa_list)
YOSHIFUJI Hideakic9b6aab2007-02-09 23:24:42 +0900429 network = ntohl(idev->ifa_list->ifa_address) &
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 0xffffff00; /* !!! */
431 }
432 rcu_read_unlock();
433 udpdest.sin_addr.s_addr = htonl(network | addr.station);
434 }
435
Vasiliy Kulikov67c5c6c2011-03-17 01:40:10 +0000436 memset(&ah, 0, sizeof(ah));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 ah.port = port;
438 ah.cb = cb & 0x7f;
439 ah.code = 2; /* magic */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440
441 /* tack our header on the front of the iovec */
442 size = sizeof(struct aunhdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 iov[0].iov_base = (void *)&ah;
444 iov[0].iov_len = size;
Phil Blundella27e13d2010-11-24 11:51:47 -0800445
446 userbuf = vmalloc(len);
447 if (userbuf == NULL) {
448 err = -ENOMEM;
449 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 }
451
Phil Blundella27e13d2010-11-24 11:51:47 -0800452 iov[1].iov_base = userbuf;
453 iov[1].iov_len = len;
454 err = memcpy_fromiovec(userbuf, msg->msg_iov, len);
455 if (err)
456 goto error_free_buf;
457
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 /* Get a skbuff (no data, just holds our cb information) */
Joe Perchesee9c88f2011-07-03 08:28:33 +0000459 skb = sock_alloc_send_skb(sk, 0, msg->msg_flags & MSG_DONTWAIT, &err);
460 if (skb == NULL)
Phil Blundella27e13d2010-11-24 11:51:47 -0800461 goto error_free_buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462
463 eb = (struct ec_cb *)&skb->cb;
464
465 eb->cookie = saddr->cookie;
Joe Perchesee9c88f2011-07-03 08:28:33 +0000466 eb->timeout = 5 * HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 eb->start = jiffies;
468 ah.handle = aun_seq;
469 eb->seq = (aun_seq++);
470 eb->sec = *saddr;
471
472 skb_queue_tail(&aun_queue, skb);
473
474 udpmsg.msg_name = (void *)&udpdest;
475 udpmsg.msg_namelen = sizeof(udpdest);
476 udpmsg.msg_iov = &iov[0];
Phil Blundella27e13d2010-11-24 11:51:47 -0800477 udpmsg.msg_iovlen = 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 udpmsg.msg_control = NULL;
479 udpmsg.msg_controllen = 0;
Joe Perchesee9c88f2011-07-03 08:28:33 +0000480 udpmsg.msg_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481
Joe Perchesee9c88f2011-07-03 08:28:33 +0000482 oldfs = get_fs();
483 set_fs(KERNEL_DS); /* More privs :-) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 err = sock_sendmsg(udpsock, &udpmsg, size);
485 set_fs(oldfs);
Phil Blundella27e13d2010-11-24 11:51:47 -0800486
487error_free_buf:
488 vfree(userbuf);
Eric Dumazet389f2a12011-01-26 00:04:18 +0000489error:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490#else
491 err = -EPROTOTYPE;
492#endif
David S. Miller1d181832006-03-28 00:01:55 -0800493 mutex_unlock(&econet_mutex);
494
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 return err;
496}
497
498/*
499 * Look up the address of a socket.
500 */
501
502static int econet_getname(struct socket *sock, struct sockaddr *uaddr,
503 int *uaddr_len, int peer)
504{
David S. Miller1d181832006-03-28 00:01:55 -0800505 struct sock *sk;
506 struct econet_sock *eo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 struct sockaddr_ec *sec = (struct sockaddr_ec *)uaddr;
508
509 if (peer)
510 return -EOPNOTSUPP;
511
Eric Dumazet80922bb2009-08-06 03:48:36 +0000512 memset(sec, 0, sizeof(*sec));
David S. Miller1d181832006-03-28 00:01:55 -0800513 mutex_lock(&econet_mutex);
514
515 sk = sock->sk;
516 eo = ec_sk(sk);
517
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 sec->sec_family = AF_ECONET;
519 sec->port = eo->port;
520 sec->addr.station = eo->station;
521 sec->addr.net = eo->net;
522
David S. Miller1d181832006-03-28 00:01:55 -0800523 mutex_unlock(&econet_mutex);
524
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 *uaddr_len = sizeof(*sec);
526 return 0;
527}
528
529static void econet_destroy_timer(unsigned long data)
530{
Joe Perchesee9c88f2011-07-03 08:28:33 +0000531 struct sock *sk = (struct sock *)data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532
Eric Dumazetc5640392009-06-16 10:12:03 +0000533 if (!sk_has_allocations(sk)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 sk_free(sk);
535 return;
536 }
537
538 sk->sk_timer.expires = jiffies + 10 * HZ;
539 add_timer(&sk->sk_timer);
Joe Perchesee9c88f2011-07-03 08:28:33 +0000540 pr_debug("econet: socket destroy delayed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541}
542
543/*
544 * Close an econet socket.
545 */
546
547static int econet_release(struct socket *sock)
548{
David S. Miller1d181832006-03-28 00:01:55 -0800549 struct sock *sk;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550
David S. Miller1d181832006-03-28 00:01:55 -0800551 mutex_lock(&econet_mutex);
552
553 sk = sock->sk;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 if (!sk)
David S. Miller1d181832006-03-28 00:01:55 -0800555 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556
557 econet_remove_socket(&econet_sklist, sk);
558
559 /*
560 * Now the socket is dead. No more input will appear.
561 */
562
563 sk->sk_state_change(sk); /* It is useless. Just for sanity. */
564
David S. Miller0efffaf2008-06-17 03:01:47 -0700565 sock_orphan(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566
567 /* Purge queues */
568
569 skb_queue_purge(&sk->sk_receive_queue);
570
Eric Dumazetc5640392009-06-16 10:12:03 +0000571 if (sk_has_allocations(sk)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 sk->sk_timer.data = (unsigned long)sk;
573 sk->sk_timer.expires = jiffies + HZ;
574 sk->sk_timer.function = econet_destroy_timer;
575 add_timer(&sk->sk_timer);
David S. Miller1d181832006-03-28 00:01:55 -0800576
577 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 }
579
580 sk_free(sk);
David S. Miller1d181832006-03-28 00:01:55 -0800581
582out_unlock:
583 mutex_unlock(&econet_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 return 0;
585}
586
587static struct proto econet_proto = {
588 .name = "ECONET",
589 .owner = THIS_MODULE,
590 .obj_size = sizeof(struct econet_sock),
591};
592
593/*
594 * Create an Econet socket
595 */
596
Eric Paris3f378b62009-11-05 22:18:14 -0800597static int econet_create(struct net *net, struct socket *sock, int protocol,
598 int kern)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599{
600 struct sock *sk;
601 struct econet_sock *eo;
602 int err;
603
Octavian Purdila09ad9bc2009-11-25 15:14:13 -0800604 if (!net_eq(net, &init_net))
Eric W. Biederman1b8d7ae2007-10-08 23:24:22 -0700605 return -EAFNOSUPPORT;
606
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 /* Econet only provides datagram services. */
608 if (sock->type != SOCK_DGRAM)
609 return -ESOCKTNOSUPPORT;
610
611 sock->state = SS_UNCONNECTED;
612
613 err = -ENOBUFS;
Pavel Emelyanov6257ff22007-11-01 00:39:31 -0700614 sk = sk_alloc(net, PF_ECONET, GFP_KERNEL, &econet_proto);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 if (sk == NULL)
616 goto out;
617
618 sk->sk_reuse = 1;
619 sock->ops = &econet_ops;
620 sock_init_data(sock, sk);
621
622 eo = ec_sk(sk);
623 sock_reset_flag(sk, SOCK_ZAPPED);
624 sk->sk_family = PF_ECONET;
625 eo->num = protocol;
626
627 econet_insert_socket(&econet_sklist, sk);
Eric Dumazeta02cec22010-09-22 20:43:57 +0000628 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629out:
630 return err;
631}
632
633/*
634 * Handle Econet specific ioctls
635 */
636
637static int ec_dev_ioctl(struct socket *sock, unsigned int cmd, void __user *arg)
638{
639 struct ifreq ifr;
640 struct ec_device *edev;
641 struct net_device *dev;
642 struct sockaddr_ec *sec;
David S. Miller1d181832006-03-28 00:01:55 -0800643 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644
645 /*
646 * Fetch the caller's info block into kernel space
647 */
648
649 if (copy_from_user(&ifr, arg, sizeof(struct ifreq)))
650 return -EFAULT;
651
Joe Perchesee9c88f2011-07-03 08:28:33 +0000652 dev = dev_get_by_name(&init_net, ifr.ifr_name);
653 if (dev == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 return -ENODEV;
655
656 sec = (struct sockaddr_ec *)&ifr.ifr_addr;
657
David S. Miller1d181832006-03-28 00:01:55 -0800658 mutex_lock(&econet_mutex);
659
660 err = 0;
661 switch (cmd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 case SIOCSIFADDR:
Nelson Elhage0c62fc62010-12-08 10:13:55 -0800663 if (!capable(CAP_NET_ADMIN)) {
664 err = -EPERM;
665 break;
666 }
Phil Blundell16c41742010-11-24 11:49:53 -0800667
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 edev = dev->ec_ptr;
David S. Miller1d181832006-03-28 00:01:55 -0800669 if (edev == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 /* Magic up a new one. */
Panagiotis Issaris0da974f2006-07-21 14:51:30 -0700671 edev = kzalloc(sizeof(struct ec_device), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 if (edev == NULL) {
David S. Miller1d181832006-03-28 00:01:55 -0800673 err = -ENOMEM;
674 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 dev->ec_ptr = edev;
David S. Miller1d181832006-03-28 00:01:55 -0800677 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 net2dev_map[edev->net] = NULL;
679 edev->station = sec->addr.station;
680 edev->net = sec->addr.net;
681 net2dev_map[sec->addr.net] = dev;
682 if (!net2dev_map[0])
683 net2dev_map[0] = dev;
David S. Miller1d181832006-03-28 00:01:55 -0800684 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685
686 case SIOCGIFADDR:
687 edev = dev->ec_ptr;
David S. Miller1d181832006-03-28 00:01:55 -0800688 if (edev == NULL) {
689 err = -ENODEV;
690 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 }
692 memset(sec, 0, sizeof(struct sockaddr_ec));
693 sec->addr.station = edev->station;
694 sec->addr.net = edev->net;
695 sec->sec_family = AF_ECONET;
696 dev_put(dev);
697 if (copy_to_user(arg, &ifr, sizeof(struct ifreq)))
David S. Miller1d181832006-03-28 00:01:55 -0800698 err = -EFAULT;
699 break;
700
701 default:
702 err = -EINVAL;
703 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 }
705
David S. Miller1d181832006-03-28 00:01:55 -0800706 mutex_unlock(&econet_mutex);
707
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 dev_put(dev);
David S. Miller1d181832006-03-28 00:01:55 -0800709
710 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711}
712
713/*
714 * Handle generic ioctls
715 */
716
Joe Perchesee9c88f2011-07-03 08:28:33 +0000717static int econet_ioctl(struct socket *sock, unsigned int cmd,
718 unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719{
720 struct sock *sk = sock->sk;
721 void __user *argp = (void __user *)arg;
722
Joe Perches075e1912011-07-01 09:43:04 +0000723 switch (cmd) {
724 case SIOCGSTAMP:
725 return sock_get_timestamp(sk, argp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726
Joe Perches075e1912011-07-01 09:43:04 +0000727 case SIOCGSTAMPNS:
728 return sock_get_timestampns(sk, argp);
Eric Dumazetae40eb12007-03-18 17:33:16 -0700729
Joe Perches075e1912011-07-01 09:43:04 +0000730 case SIOCSIFADDR:
731 case SIOCGIFADDR:
732 return ec_dev_ioctl(sock, cmd, argp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 }
Joe Perches075e1912011-07-01 09:43:04 +0000735
736 return -ENOIOCTLCMD;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737}
738
Stephen Hemmingerec1b4cf2009-10-05 05:58:39 +0000739static const struct net_proto_family econet_family_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 .family = PF_ECONET,
741 .create = econet_create,
742 .owner = THIS_MODULE,
743};
744
David S. Miller1d181832006-03-28 00:01:55 -0800745static const struct proto_ops econet_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 .family = PF_ECONET,
747 .owner = THIS_MODULE,
748 .release = econet_release,
749 .bind = econet_bind,
750 .connect = sock_no_connect,
751 .socketpair = sock_no_socketpair,
752 .accept = sock_no_accept,
YOSHIFUJI Hideakic9b6aab2007-02-09 23:24:42 +0900753 .getname = econet_getname,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 .poll = datagram_poll,
755 .ioctl = econet_ioctl,
756 .listen = sock_no_listen,
757 .shutdown = sock_no_shutdown,
758 .setsockopt = sock_no_setsockopt,
759 .getsockopt = sock_no_getsockopt,
760 .sendmsg = econet_sendmsg,
761 .recvmsg = econet_recvmsg,
762 .mmap = sock_no_mmap,
763 .sendpage = sock_no_sendpage,
764};
765
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766#if defined(CONFIG_ECONET_AUNUDP) || defined(CONFIG_ECONET_NATIVE)
767/*
768 * Find the listening socket, if any, for the given data.
769 */
770
771static struct sock *ec_listening_socket(unsigned char port, unsigned char
772 station, unsigned char net)
773{
774 struct sock *sk;
775 struct hlist_node *node;
776
Eric Dumazet0c78a922010-06-09 16:33:05 +0000777 spin_lock(&econet_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 sk_for_each(sk, node, &econet_sklist) {
779 struct econet_sock *opt = ec_sk(sk);
YOSHIFUJI Hideakic9b6aab2007-02-09 23:24:42 +0900780 if ((opt->port == port || opt->port == 0) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 (opt->station == station || opt->station == 0) &&
Eric Dumazet0c78a922010-06-09 16:33:05 +0000782 (opt->net == net || opt->net == 0)) {
783 sock_hold(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 goto found;
Eric Dumazet0c78a922010-06-09 16:33:05 +0000785 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 }
787 sk = NULL;
788found:
Eric Dumazet0c78a922010-06-09 16:33:05 +0000789 spin_unlock(&econet_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 return sk;
791}
792
793/*
794 * Queue a received packet for a socket.
795 */
796
797static int ec_queue_packet(struct sock *sk, struct sk_buff *skb,
798 unsigned char stn, unsigned char net,
799 unsigned char cb, unsigned char port)
800{
801 struct ec_cb *eb = (struct ec_cb *)&skb->cb;
802 struct sockaddr_ec *sec = (struct sockaddr_ec *)&eb->sec;
803
804 memset(sec, 0, sizeof(struct sockaddr_ec));
805 sec->sec_family = AF_ECONET;
806 sec->type = ECTYPE_PACKET_RECEIVED;
807 sec->port = port;
808 sec->cb = cb;
809 sec->addr.net = net;
810 sec->addr.station = stn;
811
812 return sock_queue_rcv_skb(sk, skb);
813}
814#endif
815
816#ifdef CONFIG_ECONET_AUNUDP
817/*
YOSHIFUJI Hideakic9b6aab2007-02-09 23:24:42 +0900818 * Send an AUN protocol response.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 */
820
821static void aun_send_response(__u32 addr, unsigned long seq, int code, int cb)
822{
823 struct sockaddr_in sin = {
824 .sin_family = AF_INET,
825 .sin_port = htons(AUN_PORT),
826 .sin_addr = {.s_addr = addr}
827 };
828 struct aunhdr ah = {.code = code, .cb = cb, .handle = seq};
829 struct kvec iov = {.iov_base = (void *)&ah, .iov_len = sizeof(ah)};
830 struct msghdr udpmsg;
YOSHIFUJI Hideakic9b6aab2007-02-09 23:24:42 +0900831
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 udpmsg.msg_name = (void *)&sin;
833 udpmsg.msg_namelen = sizeof(sin);
834 udpmsg.msg_control = NULL;
835 udpmsg.msg_controllen = 0;
Joe Perchesee9c88f2011-07-03 08:28:33 +0000836 udpmsg.msg_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837
838 kernel_sendmsg(udpsock, &udpmsg, &iov, 1, sizeof(ah));
839}
840
841
842/*
843 * Handle incoming AUN packets. Work out if anybody wants them,
844 * and send positive or negative acknowledgements as appropriate.
845 */
846
847static void aun_incoming(struct sk_buff *skb, struct aunhdr *ah, size_t len)
848{
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700849 struct iphdr *ip = ip_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850 unsigned char stn = ntohl(ip->saddr) & 0xff;
David S. Miller4e085e72010-12-08 18:42:23 -0800851 struct dst_entry *dst = skb_dst(skb);
852 struct ec_device *edev = NULL;
Eric Dumazet0c78a922010-06-09 16:33:05 +0000853 struct sock *sk = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 struct sk_buff *newskb;
David S. Miller4e085e72010-12-08 18:42:23 -0800855
856 if (dst)
857 edev = dst->dev->ec_ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858
Joe Perchesee9c88f2011-07-03 08:28:33 +0000859 if (!edev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 goto bad;
861
Joe Perchesee9c88f2011-07-03 08:28:33 +0000862 sk = ec_listening_socket(ah->port, stn, edev->net);
863 if (sk == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864 goto bad; /* Nobody wants it */
865
YOSHIFUJI Hideakic9b6aab2007-02-09 23:24:42 +0900866 newskb = alloc_skb((len - sizeof(struct aunhdr) + 15) & ~15,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 GFP_ATOMIC);
Joe Perchesee9c88f2011-07-03 08:28:33 +0000868 if (newskb == NULL) {
869 pr_debug("AUN: memory squeeze, dropping packet\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 /* Send nack and hope sender tries again */
871 goto bad;
872 }
873
Joe Perchesee9c88f2011-07-03 08:28:33 +0000874 memcpy(skb_put(newskb, len - sizeof(struct aunhdr)), (void *)(ah + 1),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 len - sizeof(struct aunhdr));
876
Joe Perchesee9c88f2011-07-03 08:28:33 +0000877 if (ec_queue_packet(sk, newskb, stn, edev->net, ah->cb, ah->port)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878 /* Socket is bankrupt. */
879 kfree_skb(newskb);
880 goto bad;
881 }
882
883 aun_send_response(ip->saddr, ah->handle, 3, 0);
Eric Dumazet0c78a922010-06-09 16:33:05 +0000884 sock_put(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885 return;
886
887bad:
888 aun_send_response(ip->saddr, ah->handle, 4, 0);
Eric Dumazet0c78a922010-06-09 16:33:05 +0000889 if (sk)
890 sock_put(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891}
892
893/*
894 * Handle incoming AUN transmit acknowledgements. If the sequence
895 * number matches something in our backlog then kill it and tell
896 * the user. If the remote took too long to reply then we may have
897 * dropped the packet already.
898 */
899
900static void aun_tx_ack(unsigned long seq, int result)
901{
902 struct sk_buff *skb;
903 unsigned long flags;
904 struct ec_cb *eb;
905
906 spin_lock_irqsave(&aun_queue_lock, flags);
David S. Millerde103342009-05-28 16:46:29 -0700907 skb_queue_walk(&aun_queue, skb) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908 eb = (struct ec_cb *)&skb->cb;
909 if (eb->seq == seq)
910 goto foundit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911 }
912 spin_unlock_irqrestore(&aun_queue_lock, flags);
Joe Perchesee9c88f2011-07-03 08:28:33 +0000913 pr_debug("AUN: unknown sequence %ld\n", seq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914 return;
915
916foundit:
917 tx_result(skb->sk, eb->cookie, result);
David S. Miller8728b832005-08-09 19:25:21 -0700918 skb_unlink(skb, &aun_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919 spin_unlock_irqrestore(&aun_queue_lock, flags);
920 kfree_skb(skb);
921}
922
923/*
924 * Deal with received AUN frames - sort out what type of thing it is
925 * and hand it to the right function.
926 */
927
928static void aun_data_available(struct sock *sk, int slen)
929{
930 int err;
931 struct sk_buff *skb;
932 unsigned char *data;
933 struct aunhdr *ah;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934 size_t len;
935
936 while ((skb = skb_recv_datagram(sk, 0, 1, &err)) == NULL) {
937 if (err == -EAGAIN) {
Joe Perchesee9c88f2011-07-03 08:28:33 +0000938 pr_err("AUN: no data available?!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939 return;
940 }
Joe Perchesee9c88f2011-07-03 08:28:33 +0000941 pr_debug("AUN: recvfrom() error %d\n", -err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942 }
943
Arnaldo Carvalho de Melo9c702202007-04-25 18:04:18 -0700944 data = skb_transport_header(skb) + sizeof(struct udphdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945 ah = (struct aunhdr *)data;
946 len = skb->len - sizeof(struct udphdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947
Joe Perchesee9c88f2011-07-03 08:28:33 +0000948 switch (ah->code) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 case 2:
950 aun_incoming(skb, ah, len);
951 break;
952 case 3:
953 aun_tx_ack(ah->handle, ECTYPE_TRANSMIT_OK);
954 break;
955 case 4:
956 aun_tx_ack(ah->handle, ECTYPE_TRANSMIT_NOT_LISTENING);
957 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958 default:
Joe Perchesee9c88f2011-07-03 08:28:33 +0000959 pr_debug("AUN: unknown packet type: %d\n", data[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960 }
961
962 skb_free_datagram(sk, skb);
963}
964
965/*
966 * Called by the timer to manage the AUN transmit queue. If a packet
967 * was sent to a dead or nonexistent host then we will never get an
968 * acknowledgement back. After a few seconds we need to spot this and
969 * drop the packet.
970 */
971
972static void ab_cleanup(unsigned long h)
973{
David S. Millerde103342009-05-28 16:46:29 -0700974 struct sk_buff *skb, *n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 unsigned long flags;
976
977 spin_lock_irqsave(&aun_queue_lock, flags);
David S. Millerde103342009-05-28 16:46:29 -0700978 skb_queue_walk_safe(&aun_queue, skb, n) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 struct ec_cb *eb = (struct ec_cb *)&skb->cb;
David S. Millerde103342009-05-28 16:46:29 -0700980 if ((jiffies - eb->start) > eb->timeout) {
YOSHIFUJI Hideakic9b6aab2007-02-09 23:24:42 +0900981 tx_result(skb->sk, eb->cookie,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982 ECTYPE_TRANSMIT_NOT_PRESENT);
David S. Miller8728b832005-08-09 19:25:21 -0700983 skb_unlink(skb, &aun_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984 kfree_skb(skb);
985 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986 }
987 spin_unlock_irqrestore(&aun_queue_lock, flags);
988
Joe Perchesee9c88f2011-07-03 08:28:33 +0000989 mod_timer(&ab_cleanup_timer, jiffies + (HZ * 2));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990}
991
992static int __init aun_udp_initialise(void)
993{
994 int error;
995 struct sockaddr_in sin;
996
997 skb_queue_head_init(&aun_queue);
Pavel Emelyanovb24b8a22008-01-23 21:20:07 -0800998 setup_timer(&ab_cleanup_timer, ab_cleanup, 0);
Joe Perchesee9c88f2011-07-03 08:28:33 +0000999 ab_cleanup_timer.expires = jiffies + (HZ * 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000 add_timer(&ab_cleanup_timer);
1001
1002 memset(&sin, 0, sizeof(sin));
1003 sin.sin_port = htons(AUN_PORT);
1004
1005 /* We can count ourselves lucky Acorn machines are too dim to
1006 speak IPv6. :-) */
Joe Perchesee9c88f2011-07-03 08:28:33 +00001007 error = sock_create_kern(PF_INET, SOCK_DGRAM, 0, &udpsock);
1008 if (error < 0) {
1009 pr_err("AUN: socket error %d\n", -error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010 return error;
1011 }
YOSHIFUJI Hideakic9b6aab2007-02-09 23:24:42 +09001012
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013 udpsock->sk->sk_reuse = 1;
1014 udpsock->sk->sk_allocation = GFP_ATOMIC; /* we're going to call it
1015 from interrupts */
YOSHIFUJI Hideakic9b6aab2007-02-09 23:24:42 +09001016
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017 error = udpsock->ops->bind(udpsock, (struct sockaddr *)&sin,
Joe Perchesee9c88f2011-07-03 08:28:33 +00001018 sizeof(sin));
1019 if (error < 0) {
1020 pr_err("AUN: bind error %d\n", -error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021 goto release;
1022 }
1023
1024 udpsock->sk->sk_data_ready = aun_data_available;
1025
1026 return 0;
1027
1028release:
1029 sock_release(udpsock);
1030 udpsock = NULL;
1031 return error;
1032}
1033#endif
1034
1035#ifdef CONFIG_ECONET_NATIVE
1036
1037/*
1038 * Receive an Econet frame from a device.
1039 */
1040
Joe Perchesee9c88f2011-07-03 08:28:33 +00001041static int econet_rcv(struct sk_buff *skb, struct net_device *dev,
1042 struct packet_type *pt, struct net_device *orig_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043{
1044 struct ec_framehdr *hdr;
Eric Dumazet0c78a922010-06-09 16:33:05 +00001045 struct sock *sk = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046 struct ec_device *edev = dev->ec_ptr;
1047
YOSHIFUJI Hideaki721499e2008-07-19 22:34:43 -07001048 if (!net_eq(dev_net(dev), &init_net))
Eric W. Biedermane730c152007-09-17 11:53:39 -07001049 goto drop;
1050
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051 if (skb->pkt_type == PACKET_OTHERHOST)
1052 goto drop;
1053
1054 if (!edev)
1055 goto drop;
1056
Joe Perchesee9c88f2011-07-03 08:28:33 +00001057 skb = skb_share_check(skb, GFP_ATOMIC);
1058 if (skb == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059 return NET_RX_DROP;
1060
1061 if (!pskb_may_pull(skb, sizeof(struct ec_framehdr)))
1062 goto drop;
1063
Joe Perchesee9c88f2011-07-03 08:28:33 +00001064 hdr = (struct ec_framehdr *)skb->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065
1066 /* First check for encapsulated IP */
1067 if (hdr->port == EC_PORT_IP) {
1068 skb->protocol = htons(ETH_P_IP);
1069 skb_pull(skb, sizeof(struct ec_framehdr));
1070 netif_rx(skb);
Mark Smith482d8042009-07-06 11:05:58 +00001071 return NET_RX_SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072 }
1073
1074 sk = ec_listening_socket(hdr->port, hdr->src_stn, hdr->src_net);
1075 if (!sk)
1076 goto drop;
1077
1078 if (ec_queue_packet(sk, skb, edev->net, hdr->src_stn, hdr->cb,
1079 hdr->port))
1080 goto drop;
Eric Dumazet0c78a922010-06-09 16:33:05 +00001081 sock_put(sk);
Mark Smith482d8042009-07-06 11:05:58 +00001082 return NET_RX_SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083
1084drop:
Eric Dumazet0c78a922010-06-09 16:33:05 +00001085 if (sk)
1086 sock_put(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087 kfree_skb(skb);
1088 return NET_RX_DROP;
1089}
1090
Stephen Hemminger7546dd92009-03-09 08:18:29 +00001091static struct packet_type econet_packet_type __read_mostly = {
Joe Perchesee9c88f2011-07-03 08:28:33 +00001092 .type = cpu_to_be16(ETH_P_ECONET),
1093 .func = econet_rcv,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094};
1095
1096static void econet_hw_initialise(void)
1097{
1098 dev_add_pack(&econet_packet_type);
1099}
1100
1101#endif
1102
Joe Perchesee9c88f2011-07-03 08:28:33 +00001103static int econet_notifier(struct notifier_block *this, unsigned long msg,
1104 void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105{
Joe Perchesee9c88f2011-07-03 08:28:33 +00001106 struct net_device *dev = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107 struct ec_device *edev;
1108
YOSHIFUJI Hideaki721499e2008-07-19 22:34:43 -07001109 if (!net_eq(dev_net(dev), &init_net))
Eric W. Biedermane9dc8652007-09-12 13:02:17 +02001110 return NOTIFY_DONE;
1111
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112 switch (msg) {
1113 case NETDEV_UNREGISTER:
1114 /* A device has gone down - kill any data we hold for it. */
1115 edev = dev->ec_ptr;
Joe Perchesee9c88f2011-07-03 08:28:33 +00001116 if (edev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117 if (net2dev_map[0] == dev)
1118 net2dev_map[0] = NULL;
1119 net2dev_map[edev->net] = NULL;
1120 kfree(edev);
1121 dev->ec_ptr = NULL;
1122 }
1123 break;
1124 }
1125
1126 return NOTIFY_DONE;
1127}
1128
1129static struct notifier_block econet_netdev_notifier = {
Joe Perchesee9c88f2011-07-03 08:28:33 +00001130 .notifier_call = econet_notifier,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131};
1132
1133static void __exit econet_proto_exit(void)
1134{
1135#ifdef CONFIG_ECONET_AUNUDP
1136 del_timer(&ab_cleanup_timer);
1137 if (udpsock)
1138 sock_release(udpsock);
1139#endif
1140 unregister_netdevice_notifier(&econet_netdev_notifier);
Alexey Dobriyan9c29a372007-08-14 17:25:20 -07001141#ifdef CONFIG_ECONET_NATIVE
1142 dev_remove_pack(&econet_packet_type);
1143#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144 sock_unregister(econet_family_ops.family);
1145 proto_unregister(&econet_proto);
1146}
1147
1148static int __init econet_proto_init(void)
1149{
1150 int err = proto_register(&econet_proto, 0);
1151
1152 if (err != 0)
1153 goto out;
1154 sock_register(&econet_family_ops);
1155#ifdef CONFIG_ECONET_AUNUDP
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156 aun_udp_initialise();
1157#endif
1158#ifdef CONFIG_ECONET_NATIVE
1159 econet_hw_initialise();
1160#endif
1161 register_netdevice_notifier(&econet_netdev_notifier);
1162out:
1163 return err;
1164}
1165
1166module_init(econet_proto_init);
1167module_exit(econet_proto_exit);
1168
1169MODULE_LICENSE("GPL");
1170MODULE_ALIAS_NETPROTO(PF_ECONET);