blob: b631cc7345403bd5fd8b1ef104475afcf870b3b2 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * DDP: An implementation of the AppleTalk DDP protocol for
3 * Ethernet 'ELAP'.
4 *
Alan Cox113aa832008-10-13 19:01:08 -07005 * Alan Cox <alan@lxorguk.ukuu.org.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 *
7 * With more than a little assistance from
8 *
9 * Wesley Craig <netatalk@umich.edu>
10 *
11 * Fixes:
12 * Neil Horman : Added missing device ioctls
13 * Michael Callahan : Made routing work
14 * Wesley Craig : Fix probing to listen to a
15 * passed node id.
16 * Alan Cox : Added send/recvmsg support
17 * Alan Cox : Moved at. to protinfo in
18 * socket.
19 * Alan Cox : Added firewall hooks.
20 * Alan Cox : Supports new ARPHRD_LOOPBACK
21 * Christer Weinigel : Routing and /proc fixes.
22 * Bradford Johnson : LocalTalk.
23 * Tom Dyas : Module support.
24 * Alan Cox : Hooks for PPP (based on the
25 * LocalTalk hook).
26 * Alan Cox : Posix bits
27 * Alan Cox/Mike Freeman : Possible fix to NBP problems
28 * Bradford Johnson : IP-over-DDP (experimental)
29 * Jay Schulist : Moved IP-over-DDP to its own
30 * driver file. (ipddp.c & ipddp.h)
YOSHIFUJI Hideakied4477b2007-02-09 23:24:27 +090031 * Jay Schulist : Made work as module with
Linus Torvalds1da177e2005-04-16 15:20:36 -070032 * AppleTalk drivers, cleaned it.
33 * Rob Newberry : Added proxy AARP and AARP
34 * procfs, moved probing to AARP
35 * module.
YOSHIFUJI Hideakied4477b2007-02-09 23:24:27 +090036 * Adrian Sun/
37 * Michael Zuelsdorff : fix for net.0 packets. don't
Linus Torvalds1da177e2005-04-16 15:20:36 -070038 * allow illegal ether/tokentalk
YOSHIFUJI Hideakied4477b2007-02-09 23:24:27 +090039 * port assignment. we lose a
40 * valid localtalk port as a
Linus Torvalds1da177e2005-04-16 15:20:36 -070041 * result.
42 * Arnaldo C. de Melo : Cleanup, in preparation for
43 * shared skb support 8)
44 * Arnaldo C. de Melo : Move proc stuff to atalk_proc.c,
45 * use seq_file
46 *
47 * This program is free software; you can redistribute it and/or
48 * modify it under the terms of the GNU General Public License
49 * as published by the Free Software Foundation; either version
50 * 2 of the License, or (at your option) any later version.
YOSHIFUJI Hideakied4477b2007-02-09 23:24:27 +090051 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070052 */
53
Randy Dunlap4fc268d2006-01-11 12:17:47 -080054#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070055#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070056#include <linux/if_arp.h>
Alexey Dobriyan405f5572009-07-11 22:08:37 +040057#include <linux/smp_lock.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070058#include <linux/termios.h> /* For TIOCOUTQ/INQ */
59#include <net/datalink.h>
60#include <net/psnap.h>
61#include <net/sock.h>
Arnaldo Carvalho de Meloc752f072005-08-09 20:08:28 -070062#include <net/tcp_states.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070063#include <net/route.h>
64#include <linux/atalk.h>
Al Viroa1f8e7f72006-10-19 16:08:53 -040065#include "../core/kmap_skb.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070066
67struct datalink_proto *ddp_dl, *aarp_dl;
Eric Dumazet90ddc4f2005-12-22 12:49:22 -080068static const struct proto_ops atalk_dgram_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -070069
70/**************************************************************************\
71* *
72* Handlers for the socket list. *
73* *
74\**************************************************************************/
75
76HLIST_HEAD(atalk_sockets);
77DEFINE_RWLOCK(atalk_sockets_lock);
78
79static inline void __atalk_insert_socket(struct sock *sk)
80{
81 sk_add_node(sk, &atalk_sockets);
82}
83
84static inline void atalk_remove_socket(struct sock *sk)
85{
86 write_lock_bh(&atalk_sockets_lock);
87 sk_del_node_init(sk);
88 write_unlock_bh(&atalk_sockets_lock);
89}
90
91static struct sock *atalk_search_socket(struct sockaddr_at *to,
92 struct atalk_iface *atif)
93{
94 struct sock *s;
95 struct hlist_node *node;
96
97 read_lock_bh(&atalk_sockets_lock);
98 sk_for_each(s, node, &atalk_sockets) {
99 struct atalk_sock *at = at_sk(s);
100
101 if (to->sat_port != at->src_port)
102 continue;
103
YOSHIFUJI Hideakied4477b2007-02-09 23:24:27 +0900104 if (to->sat_addr.s_net == ATADDR_ANYNET &&
Oliver Dawid64233bf2005-09-27 16:11:29 -0700105 to->sat_addr.s_node == ATADDR_BCAST)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 goto found;
107
YOSHIFUJI Hideakied4477b2007-02-09 23:24:27 +0900108 if (to->sat_addr.s_net == at->src_net &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 (to->sat_addr.s_node == at->src_node ||
110 to->sat_addr.s_node == ATADDR_BCAST ||
111 to->sat_addr.s_node == ATADDR_ANYNODE))
112 goto found;
113
YOSHIFUJI Hideakied4477b2007-02-09 23:24:27 +0900114 /* XXXX.0 -- we got a request for this router. make sure
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 * that the node is appropriately set. */
116 if (to->sat_addr.s_node == ATADDR_ANYNODE &&
117 to->sat_addr.s_net != ATADDR_ANYNET &&
118 atif->address.s_node == at->src_node) {
119 to->sat_addr.s_node = atif->address.s_node;
120 goto found;
121 }
122 }
123 s = NULL;
124found:
125 read_unlock_bh(&atalk_sockets_lock);
126 return s;
127}
128
129/**
130 * atalk_find_or_insert_socket - Try to find a socket matching ADDR
131 * @sk - socket to insert in the list if it is not there already
132 * @sat - address to search for
133 *
134 * Try to find a socket matching ADDR in the socket list, if found then return
135 * it. If not, insert SK into the socket list.
136 *
137 * This entire operation must execute atomically.
138 */
139static struct sock *atalk_find_or_insert_socket(struct sock *sk,
140 struct sockaddr_at *sat)
141{
142 struct sock *s;
143 struct hlist_node *node;
144 struct atalk_sock *at;
145
146 write_lock_bh(&atalk_sockets_lock);
147 sk_for_each(s, node, &atalk_sockets) {
148 at = at_sk(s);
149
150 if (at->src_net == sat->sat_addr.s_net &&
151 at->src_node == sat->sat_addr.s_node &&
152 at->src_port == sat->sat_port)
153 goto found;
154 }
155 s = NULL;
156 __atalk_insert_socket(sk); /* Wheee, it's free, assign and insert. */
157found:
158 write_unlock_bh(&atalk_sockets_lock);
159 return s;
160}
161
162static void atalk_destroy_timer(unsigned long data)
163{
164 struct sock *sk = (struct sock *)data;
165
Eric Dumazetc5640392009-06-16 10:12:03 +0000166 if (sk_has_allocations(sk)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 sk->sk_timer.expires = jiffies + SOCK_DESTROY_TIME;
168 add_timer(&sk->sk_timer);
169 } else
170 sock_put(sk);
171}
172
173static inline void atalk_destroy_socket(struct sock *sk)
174{
175 atalk_remove_socket(sk);
176 skb_queue_purge(&sk->sk_receive_queue);
177
Eric Dumazetc5640392009-06-16 10:12:03 +0000178 if (sk_has_allocations(sk)) {
Pavel Emelyanovb24b8a22008-01-23 21:20:07 -0800179 setup_timer(&sk->sk_timer, atalk_destroy_timer,
180 (unsigned long)sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 sk->sk_timer.expires = jiffies + SOCK_DESTROY_TIME;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 add_timer(&sk->sk_timer);
183 } else
184 sock_put(sk);
185}
186
187/**************************************************************************\
188* *
189* Routing tables for the AppleTalk socket layer. *
190* *
191\**************************************************************************/
192
193/* Anti-deadlock ordering is atalk_routes_lock --> iface_lock -DaveM */
194struct atalk_route *atalk_routes;
195DEFINE_RWLOCK(atalk_routes_lock);
196
197struct atalk_iface *atalk_interfaces;
198DEFINE_RWLOCK(atalk_interfaces_lock);
199
200/* For probing devices or in a routerless network */
201struct atalk_route atrtr_default;
202
203/* AppleTalk interface control */
204/*
205 * Drop a device. Doesn't drop any of its routes - that is the caller's
206 * problem. Called when we down the interface or delete the address.
207 */
208static void atif_drop_device(struct net_device *dev)
209{
210 struct atalk_iface **iface = &atalk_interfaces;
211 struct atalk_iface *tmp;
212
213 write_lock_bh(&atalk_interfaces_lock);
214 while ((tmp = *iface) != NULL) {
215 if (tmp->dev == dev) {
216 *iface = tmp->next;
217 dev_put(dev);
218 kfree(tmp);
219 dev->atalk_ptr = NULL;
220 } else
221 iface = &tmp->next;
222 }
223 write_unlock_bh(&atalk_interfaces_lock);
224}
225
226static struct atalk_iface *atif_add_device(struct net_device *dev,
227 struct atalk_addr *sa)
228{
Panagiotis Issaris0da974f2006-07-21 14:51:30 -0700229 struct atalk_iface *iface = kzalloc(sizeof(*iface), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230
231 if (!iface)
232 goto out;
233
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 dev_hold(dev);
235 iface->dev = dev;
236 dev->atalk_ptr = iface;
237 iface->address = *sa;
238 iface->status = 0;
239
240 write_lock_bh(&atalk_interfaces_lock);
241 iface->next = atalk_interfaces;
242 atalk_interfaces = iface;
243 write_unlock_bh(&atalk_interfaces_lock);
244out:
245 return iface;
246}
247
248/* Perform phase 2 AARP probing on our tentative address */
249static int atif_probe_device(struct atalk_iface *atif)
250{
251 int netrange = ntohs(atif->nets.nr_lastnet) -
252 ntohs(atif->nets.nr_firstnet) + 1;
253 int probe_net = ntohs(atif->address.s_net);
254 int probe_node = atif->address.s_node;
255 int netct, nodect;
256
257 /* Offset the network we start probing with */
258 if (probe_net == ATADDR_ANYNET) {
259 probe_net = ntohs(atif->nets.nr_firstnet);
260 if (netrange)
261 probe_net += jiffies % netrange;
262 }
263 if (probe_node == ATADDR_ANYNODE)
264 probe_node = jiffies & 0xFF;
265
266 /* Scan the networks */
267 atif->status |= ATIF_PROBE;
268 for (netct = 0; netct <= netrange; netct++) {
269 /* Sweep the available nodes from a given start */
270 atif->address.s_net = htons(probe_net);
271 for (nodect = 0; nodect < 256; nodect++) {
272 atif->address.s_node = (nodect + probe_node) & 0xFF;
273 if (atif->address.s_node > 0 &&
274 atif->address.s_node < 254) {
275 /* Probe a proposed address */
276 aarp_probe_network(atif);
277
278 if (!(atif->status & ATIF_PROBE_FAIL)) {
279 atif->status &= ~ATIF_PROBE;
280 return 0;
281 }
282 }
283 atif->status &= ~ATIF_PROBE_FAIL;
284 }
285 probe_net++;
286 if (probe_net > ntohs(atif->nets.nr_lastnet))
287 probe_net = ntohs(atif->nets.nr_firstnet);
288 }
289 atif->status &= ~ATIF_PROBE;
290
291 return -EADDRINUSE; /* Network is full... */
292}
293
294
295/* Perform AARP probing for a proxy address */
296static int atif_proxy_probe_device(struct atalk_iface *atif,
297 struct atalk_addr* proxy_addr)
298{
299 int netrange = ntohs(atif->nets.nr_lastnet) -
300 ntohs(atif->nets.nr_firstnet) + 1;
301 /* we probe the interface's network */
302 int probe_net = ntohs(atif->address.s_net);
303 int probe_node = ATADDR_ANYNODE; /* we'll take anything */
304 int netct, nodect;
305
306 /* Offset the network we start probing with */
307 if (probe_net == ATADDR_ANYNET) {
308 probe_net = ntohs(atif->nets.nr_firstnet);
309 if (netrange)
310 probe_net += jiffies % netrange;
311 }
312
313 if (probe_node == ATADDR_ANYNODE)
314 probe_node = jiffies & 0xFF;
YOSHIFUJI Hideakied4477b2007-02-09 23:24:27 +0900315
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 /* Scan the networks */
317 for (netct = 0; netct <= netrange; netct++) {
318 /* Sweep the available nodes from a given start */
319 proxy_addr->s_net = htons(probe_net);
320 for (nodect = 0; nodect < 256; nodect++) {
321 proxy_addr->s_node = (nodect + probe_node) & 0xFF;
322 if (proxy_addr->s_node > 0 &&
323 proxy_addr->s_node < 254) {
324 /* Tell AARP to probe a proposed address */
325 int ret = aarp_proxy_probe_network(atif,
326 proxy_addr);
327
328 if (ret != -EADDRINUSE)
329 return ret;
330 }
331 }
332 probe_net++;
333 if (probe_net > ntohs(atif->nets.nr_lastnet))
334 probe_net = ntohs(atif->nets.nr_firstnet);
335 }
336
337 return -EADDRINUSE; /* Network is full... */
338}
339
340
341struct atalk_addr *atalk_find_dev_addr(struct net_device *dev)
342{
343 struct atalk_iface *iface = dev->atalk_ptr;
344 return iface ? &iface->address : NULL;
345}
346
347static struct atalk_addr *atalk_find_primary(void)
348{
349 struct atalk_iface *fiface = NULL;
350 struct atalk_addr *retval;
351 struct atalk_iface *iface;
352
353 /*
354 * Return a point-to-point interface only if
355 * there is no non-ptp interface available.
356 */
357 read_lock_bh(&atalk_interfaces_lock);
358 for (iface = atalk_interfaces; iface; iface = iface->next) {
359 if (!fiface && !(iface->dev->flags & IFF_LOOPBACK))
360 fiface = iface;
361 if (!(iface->dev->flags & (IFF_LOOPBACK | IFF_POINTOPOINT))) {
362 retval = &iface->address;
363 goto out;
364 }
365 }
366
367 if (fiface)
368 retval = &fiface->address;
369 else if (atalk_interfaces)
370 retval = &atalk_interfaces->address;
371 else
372 retval = NULL;
373out:
374 read_unlock_bh(&atalk_interfaces_lock);
375 return retval;
376}
377
378/*
379 * Find a match for 'any network' - ie any of our interfaces with that
380 * node number will do just nicely.
381 */
382static struct atalk_iface *atalk_find_anynet(int node, struct net_device *dev)
383{
384 struct atalk_iface *iface = dev->atalk_ptr;
385
386 if (!iface || iface->status & ATIF_PROBE)
387 goto out_err;
388
389 if (node != ATADDR_BCAST &&
390 iface->address.s_node != node &&
391 node != ATADDR_ANYNODE)
392 goto out_err;
393out:
394 return iface;
395out_err:
396 iface = NULL;
397 goto out;
398}
399
400/* Find a match for a specific network:node pair */
Alexey Dobriyanf6e276ee2005-06-20 13:32:05 -0700401static struct atalk_iface *atalk_find_interface(__be16 net, int node)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402{
403 struct atalk_iface *iface;
404
405 read_lock_bh(&atalk_interfaces_lock);
406 for (iface = atalk_interfaces; iface; iface = iface->next) {
407 if ((node == ATADDR_BCAST ||
408 node == ATADDR_ANYNODE ||
409 iface->address.s_node == node) &&
410 iface->address.s_net == net &&
411 !(iface->status & ATIF_PROBE))
412 break;
413
414 /* XXXX.0 -- net.0 returns the iface associated with net */
415 if (node == ATADDR_ANYNODE && net != ATADDR_ANYNET &&
416 ntohs(iface->nets.nr_firstnet) <= ntohs(net) &&
417 ntohs(net) <= ntohs(iface->nets.nr_lastnet))
YOSHIFUJI Hideakied4477b2007-02-09 23:24:27 +0900418 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 }
420 read_unlock_bh(&atalk_interfaces_lock);
421 return iface;
422}
423
424
425/*
426 * Find a route for an AppleTalk packet. This ought to get cached in
427 * the socket (later on...). We know about host routes and the fact
428 * that a route must be direct to broadcast.
429 */
430static struct atalk_route *atrtr_find(struct atalk_addr *target)
431{
432 /*
YOSHIFUJI Hideakied4477b2007-02-09 23:24:27 +0900433 * we must search through all routes unless we find a
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 * host route, because some host routes might overlap
435 * network routes
436 */
437 struct atalk_route *net_route = NULL;
438 struct atalk_route *r;
YOSHIFUJI Hideakied4477b2007-02-09 23:24:27 +0900439
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 read_lock_bh(&atalk_routes_lock);
441 for (r = atalk_routes; r; r = r->next) {
442 if (!(r->flags & RTF_UP))
443 continue;
444
445 if (r->target.s_net == target->s_net) {
446 if (r->flags & RTF_HOST) {
447 /*
448 * if this host route is for the target,
449 * the we're done
450 */
451 if (r->target.s_node == target->s_node)
452 goto out;
453 } else
454 /*
455 * this route will work if there isn't a
456 * direct host route, so cache it
457 */
458 net_route = r;
459 }
460 }
YOSHIFUJI Hideakied4477b2007-02-09 23:24:27 +0900461
462 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 * if we found a network route but not a direct host
464 * route, then return it
465 */
466 if (net_route)
467 r = net_route;
468 else if (atrtr_default.dev)
469 r = &atrtr_default;
470 else /* No route can be found */
471 r = NULL;
472out:
473 read_unlock_bh(&atalk_routes_lock);
474 return r;
475}
476
477
478/*
479 * Given an AppleTalk network, find the device to use. This can be
480 * a simple lookup.
481 */
482struct net_device *atrtr_get_dev(struct atalk_addr *sa)
483{
484 struct atalk_route *atr = atrtr_find(sa);
485 return atr ? atr->dev : NULL;
486}
487
488/* Set up a default router */
489static void atrtr_set_default(struct net_device *dev)
490{
491 atrtr_default.dev = dev;
492 atrtr_default.flags = RTF_UP;
493 atrtr_default.gateway.s_net = htons(0);
494 atrtr_default.gateway.s_node = 0;
495}
496
497/*
498 * Add a router. Basically make sure it looks valid and stuff the
499 * entry in the list. While it uses netranges we always set them to one
500 * entry to work like netatalk.
501 */
502static int atrtr_create(struct rtentry *r, struct net_device *devhint)
503{
504 struct sockaddr_at *ta = (struct sockaddr_at *)&r->rt_dst;
505 struct sockaddr_at *ga = (struct sockaddr_at *)&r->rt_gateway;
506 struct atalk_route *rt;
507 struct atalk_iface *iface, *riface;
508 int retval = -EINVAL;
509
510 /*
511 * Fixme: Raise/Lower a routing change semaphore for these
512 * operations.
513 */
514
515 /* Validate the request */
516 if (ta->sat_family != AF_APPLETALK ||
517 (!devhint && ga->sat_family != AF_APPLETALK))
518 goto out;
519
520 /* Now walk the routing table and make our decisions */
521 write_lock_bh(&atalk_routes_lock);
522 for (rt = atalk_routes; rt; rt = rt->next) {
523 if (r->rt_flags != rt->flags)
524 continue;
525
526 if (ta->sat_addr.s_net == rt->target.s_net) {
527 if (!(rt->flags & RTF_HOST))
528 break;
529 if (ta->sat_addr.s_node == rt->target.s_node)
530 break;
531 }
532 }
533
534 if (!devhint) {
535 riface = NULL;
536
537 read_lock_bh(&atalk_interfaces_lock);
538 for (iface = atalk_interfaces; iface; iface = iface->next) {
539 if (!riface &&
540 ntohs(ga->sat_addr.s_net) >=
YOSHIFUJI Hideakied4477b2007-02-09 23:24:27 +0900541 ntohs(iface->nets.nr_firstnet) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 ntohs(ga->sat_addr.s_net) <=
YOSHIFUJI Hideakied4477b2007-02-09 23:24:27 +0900543 ntohs(iface->nets.nr_lastnet))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 riface = iface;
545
546 if (ga->sat_addr.s_net == iface->address.s_net &&
547 ga->sat_addr.s_node == iface->address.s_node)
548 riface = iface;
YOSHIFUJI Hideakied4477b2007-02-09 23:24:27 +0900549 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 read_unlock_bh(&atalk_interfaces_lock);
551
552 retval = -ENETUNREACH;
553 if (!riface)
554 goto out_unlock;
555
556 devhint = riface->dev;
557 }
558
559 if (!rt) {
Panagiotis Issaris0da974f2006-07-21 14:51:30 -0700560 rt = kzalloc(sizeof(*rt), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561
562 retval = -ENOBUFS;
563 if (!rt)
564 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565
566 rt->next = atalk_routes;
567 atalk_routes = rt;
568 }
569
570 /* Fill in the routing entry */
571 rt->target = ta->sat_addr;
Herbert Xuc7f905f02005-04-19 22:44:17 -0700572 dev_hold(devhint);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 rt->dev = devhint;
574 rt->flags = r->rt_flags;
575 rt->gateway = ga->sat_addr;
576
577 retval = 0;
578out_unlock:
579 write_unlock_bh(&atalk_routes_lock);
580out:
581 return retval;
582}
583
584/* Delete a route. Find it and discard it */
585static int atrtr_delete(struct atalk_addr * addr)
586{
587 struct atalk_route **r = &atalk_routes;
588 int retval = 0;
589 struct atalk_route *tmp;
590
591 write_lock_bh(&atalk_routes_lock);
592 while ((tmp = *r) != NULL) {
593 if (tmp->target.s_net == addr->s_net &&
594 (!(tmp->flags&RTF_GATEWAY) ||
595 tmp->target.s_node == addr->s_node)) {
596 *r = tmp->next;
597 dev_put(tmp->dev);
598 kfree(tmp);
599 goto out;
600 }
601 r = &tmp->next;
602 }
603 retval = -ENOENT;
604out:
605 write_unlock_bh(&atalk_routes_lock);
606 return retval;
607}
608
609/*
610 * Called when a device is downed. Just throw away any routes
611 * via it.
612 */
613static void atrtr_device_down(struct net_device *dev)
614{
615 struct atalk_route **r = &atalk_routes;
616 struct atalk_route *tmp;
617
618 write_lock_bh(&atalk_routes_lock);
619 while ((tmp = *r) != NULL) {
620 if (tmp->dev == dev) {
621 *r = tmp->next;
622 dev_put(dev);
623 kfree(tmp);
624 } else
625 r = &tmp->next;
626 }
627 write_unlock_bh(&atalk_routes_lock);
628
629 if (atrtr_default.dev == dev)
630 atrtr_set_default(NULL);
631}
632
633/* Actually down the interface */
634static inline void atalk_dev_down(struct net_device *dev)
635{
636 atrtr_device_down(dev); /* Remove all routes for the device */
637 aarp_device_down(dev); /* Remove AARP entries for the device */
638 atif_drop_device(dev); /* Remove the device */
639}
640
641/*
642 * A device event has occurred. Watch for devices going down and
643 * delete our use of them (iface and route).
644 */
645static int ddp_device_event(struct notifier_block *this, unsigned long event,
646 void *ptr)
647{
Eric W. Biederman890d52d2007-09-12 11:26:59 +0200648 struct net_device *dev = ptr;
649
YOSHIFUJI Hideaki721499e2008-07-19 22:34:43 -0700650 if (!net_eq(dev_net(dev), &init_net))
Eric W. Biedermane9dc8652007-09-12 13:02:17 +0200651 return NOTIFY_DONE;
652
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 if (event == NETDEV_DOWN)
654 /* Discard any use of this */
Eric W. Biederman890d52d2007-09-12 11:26:59 +0200655 atalk_dev_down(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656
657 return NOTIFY_DONE;
658}
659
660/* ioctl calls. Shouldn't even need touching */
661/* Device configuration ioctl calls */
662static int atif_ioctl(int cmd, void __user *arg)
663{
664 static char aarp_mcast[6] = { 0x09, 0x00, 0x00, 0xFF, 0xFF, 0xFF };
665 struct ifreq atreq;
666 struct atalk_netrange *nr;
667 struct sockaddr_at *sa;
668 struct net_device *dev;
669 struct atalk_iface *atif;
670 int ct;
671 int limit;
672 struct rtentry rtdef;
673 int add_route;
674
675 if (copy_from_user(&atreq, arg, sizeof(atreq)))
676 return -EFAULT;
677
Eric W. Biederman881d9662007-09-17 11:56:21 -0700678 dev = __dev_get_by_name(&init_net, atreq.ifr_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 if (!dev)
680 return -ENODEV;
681
682 sa = (struct sockaddr_at *)&atreq.ifr_addr;
683 atif = atalk_find_dev(dev);
684
685 switch (cmd) {
686 case SIOCSIFADDR:
687 if (!capable(CAP_NET_ADMIN))
688 return -EPERM;
689 if (sa->sat_family != AF_APPLETALK)
690 return -EINVAL;
691 if (dev->type != ARPHRD_ETHER &&
692 dev->type != ARPHRD_LOOPBACK &&
693 dev->type != ARPHRD_LOCALTLK &&
694 dev->type != ARPHRD_PPP)
695 return -EPROTONOSUPPORT;
696
697 nr = (struct atalk_netrange *)&sa->sat_zero[0];
698 add_route = 1;
699
700 /*
701 * if this is a point-to-point iface, and we already
702 * have an iface for this AppleTalk address, then we
703 * should not add a route
704 */
705 if ((dev->flags & IFF_POINTOPOINT) &&
706 atalk_find_interface(sa->sat_addr.s_net,
YOSHIFUJI Hideakied4477b2007-02-09 23:24:27 +0900707 sa->sat_addr.s_node)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 printk(KERN_DEBUG "AppleTalk: point-to-point "
709 "interface added with "
710 "existing address\n");
711 add_route = 0;
712 }
YOSHIFUJI Hideakied4477b2007-02-09 23:24:27 +0900713
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 /*
715 * Phase 1 is fine on LocalTalk but we don't do
716 * EtherTalk phase 1. Anyone wanting to add it go ahead.
717 */
718 if (dev->type == ARPHRD_ETHER && nr->nr_phase != 2)
719 return -EPROTONOSUPPORT;
720 if (sa->sat_addr.s_node == ATADDR_BCAST ||
721 sa->sat_addr.s_node == 254)
722 return -EINVAL;
723 if (atif) {
724 /* Already setting address */
725 if (atif->status & ATIF_PROBE)
726 return -EBUSY;
727
728 atif->address.s_net = sa->sat_addr.s_net;
729 atif->address.s_node = sa->sat_addr.s_node;
730 atrtr_device_down(dev); /* Flush old routes */
731 } else {
732 atif = atif_add_device(dev, &sa->sat_addr);
733 if (!atif)
734 return -ENOMEM;
735 }
736 atif->nets = *nr;
737
738 /*
739 * Check if the chosen address is used. If so we
740 * error and atalkd will try another.
741 */
742
743 if (!(dev->flags & IFF_LOOPBACK) &&
744 !(dev->flags & IFF_POINTOPOINT) &&
745 atif_probe_device(atif) < 0) {
746 atif_drop_device(dev);
747 return -EADDRINUSE;
748 }
749
750 /* Hey it worked - add the direct routes */
751 sa = (struct sockaddr_at *)&rtdef.rt_gateway;
752 sa->sat_family = AF_APPLETALK;
753 sa->sat_addr.s_net = atif->address.s_net;
754 sa->sat_addr.s_node = atif->address.s_node;
755 sa = (struct sockaddr_at *)&rtdef.rt_dst;
756 rtdef.rt_flags = RTF_UP;
757 sa->sat_family = AF_APPLETALK;
758 sa->sat_addr.s_node = ATADDR_ANYNODE;
759 if (dev->flags & IFF_LOOPBACK ||
760 dev->flags & IFF_POINTOPOINT)
761 rtdef.rt_flags |= RTF_HOST;
762
763 /* Routerless initial state */
764 if (nr->nr_firstnet == htons(0) &&
765 nr->nr_lastnet == htons(0xFFFE)) {
766 sa->sat_addr.s_net = atif->address.s_net;
767 atrtr_create(&rtdef, dev);
768 atrtr_set_default(dev);
769 } else {
770 limit = ntohs(nr->nr_lastnet);
771 if (limit - ntohs(nr->nr_firstnet) > 4096) {
772 printk(KERN_WARNING "Too many routes/"
773 "iface.\n");
774 return -EINVAL;
775 }
776 if (add_route)
777 for (ct = ntohs(nr->nr_firstnet);
778 ct <= limit; ct++) {
779 sa->sat_addr.s_net = htons(ct);
780 atrtr_create(&rtdef, dev);
781 }
782 }
783 dev_mc_add(dev, aarp_mcast, 6, 1);
784 return 0;
785
786 case SIOCGIFADDR:
787 if (!atif)
788 return -EADDRNOTAVAIL;
789
790 sa->sat_family = AF_APPLETALK;
791 sa->sat_addr = atif->address;
792 break;
793
794 case SIOCGIFBRDADDR:
795 if (!atif)
796 return -EADDRNOTAVAIL;
797
798 sa->sat_family = AF_APPLETALK;
799 sa->sat_addr.s_net = atif->address.s_net;
800 sa->sat_addr.s_node = ATADDR_BCAST;
801 break;
802
YOSHIFUJI Hideakied4477b2007-02-09 23:24:27 +0900803 case SIOCATALKDIFADDR:
804 case SIOCDIFADDR:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 if (!capable(CAP_NET_ADMIN))
806 return -EPERM;
807 if (sa->sat_family != AF_APPLETALK)
808 return -EINVAL;
809 atalk_dev_down(dev);
YOSHIFUJI Hideakied4477b2007-02-09 23:24:27 +0900810 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811
812 case SIOCSARP:
813 if (!capable(CAP_NET_ADMIN))
YOSHIFUJI Hideakied4477b2007-02-09 23:24:27 +0900814 return -EPERM;
815 if (sa->sat_family != AF_APPLETALK)
816 return -EINVAL;
YOSHIFUJI Hideakied4477b2007-02-09 23:24:27 +0900817 /*
818 * for now, we only support proxy AARP on ELAP;
819 * we should be able to do it for LocalTalk, too.
820 */
821 if (dev->type != ARPHRD_ETHER)
822 return -EPROTONOSUPPORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823
YOSHIFUJI Hideakied4477b2007-02-09 23:24:27 +0900824 /*
825 * atif points to the current interface on this network;
826 * we aren't concerned about its current status (at
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827 * least for now), but it has all the settings about
828 * the network we're going to probe. Consequently, it
829 * must exist.
YOSHIFUJI Hideakied4477b2007-02-09 23:24:27 +0900830 */
831 if (!atif)
832 return -EADDRNOTAVAIL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833
YOSHIFUJI Hideakied4477b2007-02-09 23:24:27 +0900834 nr = (struct atalk_netrange *)&(atif->nets);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 /*
YOSHIFUJI Hideakied4477b2007-02-09 23:24:27 +0900836 * Phase 1 is fine on Localtalk but we don't do
837 * Ethertalk phase 1. Anyone wanting to add it go ahead.
838 */
839 if (dev->type == ARPHRD_ETHER && nr->nr_phase != 2)
840 return -EPROTONOSUPPORT;
841
842 if (sa->sat_addr.s_node == ATADDR_BCAST ||
843 sa->sat_addr.s_node == 254)
844 return -EINVAL;
845
846 /*
847 * Check if the chosen address is used. If so we
848 * error and ATCP will try another.
849 */
850 if (atif_proxy_probe_device(atif, &(sa->sat_addr)) < 0)
851 return -EADDRINUSE;
852
853 /*
854 * We now have an address on the local network, and
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 * the AARP code will defend it for us until we take it
856 * down. We don't set up any routes right now, because
857 * ATCP will install them manually via SIOCADDRT.
YOSHIFUJI Hideakied4477b2007-02-09 23:24:27 +0900858 */
859 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860
YOSHIFUJI Hideakied4477b2007-02-09 23:24:27 +0900861 case SIOCDARP:
862 if (!capable(CAP_NET_ADMIN))
863 return -EPERM;
864 if (sa->sat_family != AF_APPLETALK)
865 return -EINVAL;
866 if (!atif)
867 return -EADDRNOTAVAIL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868
YOSHIFUJI Hideakied4477b2007-02-09 23:24:27 +0900869 /* give to aarp module to remove proxy entry */
870 aarp_proxy_remove(atif->dev, &(sa->sat_addr));
871 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872 }
873
874 return copy_to_user(arg, &atreq, sizeof(atreq)) ? -EFAULT : 0;
875}
876
877/* Routing ioctl() calls */
878static int atrtr_ioctl(unsigned int cmd, void __user *arg)
879{
880 struct rtentry rt;
881
882 if (copy_from_user(&rt, arg, sizeof(rt)))
883 return -EFAULT;
884
885 switch (cmd) {
886 case SIOCDELRT:
887 if (rt.rt_dst.sa_family != AF_APPLETALK)
888 return -EINVAL;
889 return atrtr_delete(&((struct sockaddr_at *)
890 &rt.rt_dst)->sat_addr);
891
892 case SIOCADDRT: {
893 struct net_device *dev = NULL;
894 if (rt.rt_dev) {
895 char name[IFNAMSIZ];
896 if (copy_from_user(name, rt.rt_dev, IFNAMSIZ-1))
897 return -EFAULT;
898 name[IFNAMSIZ-1] = '\0';
Eric W. Biederman881d9662007-09-17 11:56:21 -0700899 dev = __dev_get_by_name(&init_net, name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 if (!dev)
901 return -ENODEV;
YOSHIFUJI Hideakied4477b2007-02-09 23:24:27 +0900902 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903 return atrtr_create(&rt, dev);
904 }
905 }
906 return -EINVAL;
907}
908
909/**************************************************************************\
910* *
911* Handling for system calls applied via the various interfaces to an *
912* AppleTalk socket object. *
913* *
914\**************************************************************************/
915
916/*
917 * Checksum: This is 'optional'. It's quite likely also a good
918 * candidate for assembler hackery 8)
919 */
YOSHIFUJI Hideakied4477b2007-02-09 23:24:27 +0900920static unsigned long atalk_sum_partial(const unsigned char *data,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921 int len, unsigned long sum)
922{
923 /* This ought to be unwrapped neatly. I'll trust gcc for now */
924 while (len--) {
Joe Perchesf7a3a1d2009-11-04 10:26:13 +0000925 sum += *data++;
926 sum = rol16(sum, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927 }
928 return sum;
929}
930
931/* Checksum skb data -- similar to skb_checksum */
932static unsigned long atalk_sum_skb(const struct sk_buff *skb, int offset,
933 int len, unsigned long sum)
934{
David S. Miller1a028e52007-04-27 15:21:23 -0700935 int start = skb_headlen(skb);
David S. Millerc32ba3f2009-06-09 00:17:44 -0700936 struct sk_buff *frag_iter;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937 int i, copy;
938
939 /* checksum stuff in header space */
David S. Miller1a028e52007-04-27 15:21:23 -0700940 if ( (copy = start - offset) > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941 if (copy > len)
942 copy = len;
943 sum = atalk_sum_partial(skb->data + offset, copy, sum);
YOSHIFUJI Hideakied4477b2007-02-09 23:24:27 +0900944 if ( (len -= copy) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945 return sum;
946
947 offset += copy;
948 }
949
950 /* checksum stuff in frags */
951 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
David S. Miller1a028e52007-04-27 15:21:23 -0700952 int end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953
Ilpo Järvinen547b7922008-07-25 21:43:18 -0700954 WARN_ON(start > offset + len);
David S. Miller1a028e52007-04-27 15:21:23 -0700955
956 end = start + skb_shinfo(skb)->frags[i].size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957 if ((copy = end - offset) > 0) {
958 u8 *vaddr;
959 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
960
961 if (copy > len)
962 copy = len;
963 vaddr = kmap_skb_frag(frag);
David S. Miller1a028e52007-04-27 15:21:23 -0700964 sum = atalk_sum_partial(vaddr + frag->page_offset +
965 offset - start, copy, sum);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966 kunmap_skb_frag(vaddr);
967
968 if (!(len -= copy))
969 return sum;
970 offset += copy;
971 }
David S. Miller1a028e52007-04-27 15:21:23 -0700972 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973 }
974
David S. Millerc32ba3f2009-06-09 00:17:44 -0700975 skb_walk_frags(skb, frag_iter) {
976 int end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977
David S. Millerc32ba3f2009-06-09 00:17:44 -0700978 WARN_ON(start > offset + len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979
David S. Millerc32ba3f2009-06-09 00:17:44 -0700980 end = start + frag_iter->len;
981 if ((copy = end - offset) > 0) {
982 if (copy > len)
983 copy = len;
984 sum = atalk_sum_skb(frag_iter, offset - start,
985 copy, sum);
986 if ((len -= copy) == 0)
987 return sum;
988 offset += copy;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989 }
David S. Millerc32ba3f2009-06-09 00:17:44 -0700990 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991 }
992
993 BUG_ON(len > 0);
994
995 return sum;
996}
997
Al Viro2a50f282006-09-26 21:22:08 -0700998static __be16 atalk_checksum(const struct sk_buff *skb, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999{
1000 unsigned long sum;
1001
1002 /* skip header 4 bytes */
1003 sum = atalk_sum_skb(skb, 4, len-4, 0);
1004
1005 /* Use 0xFFFF for 0. 0 itself means none */
Al Viro2a50f282006-09-26 21:22:08 -07001006 return sum ? htons((unsigned short)sum) : htons(0xFFFF);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007}
1008
1009static struct proto ddp_proto = {
1010 .name = "DDP",
1011 .owner = THIS_MODULE,
1012 .obj_size = sizeof(struct atalk_sock),
1013};
1014
1015/*
1016 * Create a socket. Initialise the socket, blank the addresses
1017 * set the state.
1018 */
Eric Paris3f378b62009-11-05 22:18:14 -08001019static int atalk_create(struct net *net, struct socket *sock, int protocol,
1020 int kern)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021{
1022 struct sock *sk;
1023 int rc = -ESOCKTNOSUPPORT;
1024
Eric W. Biederman1b8d7ae2007-10-08 23:24:22 -07001025 if (net != &init_net)
1026 return -EAFNOSUPPORT;
1027
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028 /*
1029 * We permit SOCK_DGRAM and RAW is an extension. It is trivial to do
YOSHIFUJI Hideakied4477b2007-02-09 23:24:27 +09001030 * and gives you the full ELAP frame. Should be handy for CAP 8)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031 */
1032 if (sock->type != SOCK_RAW && sock->type != SOCK_DGRAM)
1033 goto out;
1034 rc = -ENOMEM;
Pavel Emelyanov6257ff22007-11-01 00:39:31 -07001035 sk = sk_alloc(net, PF_APPLETALK, GFP_KERNEL, &ddp_proto);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 if (!sk)
1037 goto out;
1038 rc = 0;
1039 sock->ops = &atalk_dgram_ops;
1040 sock_init_data(sock, sk);
1041
1042 /* Checksums on by default */
1043 sock_set_flag(sk, SOCK_ZAPPED);
1044out:
1045 return rc;
1046}
1047
1048/* Free a socket. No work needed */
1049static int atalk_release(struct socket *sock)
1050{
1051 struct sock *sk = sock->sk;
1052
Arnd Bergmannecced8b2009-11-05 04:37:26 +00001053 lock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054 if (sk) {
1055 sock_orphan(sk);
1056 sock->sk = NULL;
1057 atalk_destroy_socket(sk);
1058 }
Arnd Bergmannecced8b2009-11-05 04:37:26 +00001059 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060 return 0;
1061}
1062
1063/**
1064 * atalk_pick_and_bind_port - Pick a source port when one is not given
1065 * @sk - socket to insert into the tables
1066 * @sat - address to search for
1067 *
1068 * Pick a source port when one is not given. If we can find a suitable free
1069 * one, we insert the socket into the tables using it.
1070 *
1071 * This whole operation must be atomic.
1072 */
1073static int atalk_pick_and_bind_port(struct sock *sk, struct sockaddr_at *sat)
1074{
1075 int retval;
1076
1077 write_lock_bh(&atalk_sockets_lock);
1078
1079 for (sat->sat_port = ATPORT_RESERVED;
1080 sat->sat_port < ATPORT_LAST;
1081 sat->sat_port++) {
1082 struct sock *s;
1083 struct hlist_node *node;
1084
1085 sk_for_each(s, node, &atalk_sockets) {
1086 struct atalk_sock *at = at_sk(s);
1087
1088 if (at->src_net == sat->sat_addr.s_net &&
1089 at->src_node == sat->sat_addr.s_node &&
1090 at->src_port == sat->sat_port)
1091 goto try_next_port;
1092 }
1093
1094 /* Wheee, it's free, assign and insert. */
1095 __atalk_insert_socket(sk);
1096 at_sk(sk)->src_port = sat->sat_port;
1097 retval = 0;
1098 goto out;
1099
1100try_next_port:;
1101 }
1102
1103 retval = -EBUSY;
1104out:
1105 write_unlock_bh(&atalk_sockets_lock);
1106 return retval;
1107}
1108
1109static int atalk_autobind(struct sock *sk)
1110{
1111 struct atalk_sock *at = at_sk(sk);
1112 struct sockaddr_at sat;
1113 struct atalk_addr *ap = atalk_find_primary();
1114 int n = -EADDRNOTAVAIL;
1115
1116 if (!ap || ap->s_net == htons(ATADDR_ANYNET))
1117 goto out;
1118
1119 at->src_net = sat.sat_addr.s_net = ap->s_net;
1120 at->src_node = sat.sat_addr.s_node = ap->s_node;
1121
1122 n = atalk_pick_and_bind_port(sk, &sat);
1123 if (!n)
1124 sock_reset_flag(sk, SOCK_ZAPPED);
1125out:
1126 return n;
1127}
1128
1129/* Set the address 'our end' of the connection */
1130static int atalk_bind(struct socket *sock, struct sockaddr *uaddr, int addr_len)
1131{
1132 struct sockaddr_at *addr = (struct sockaddr_at *)uaddr;
1133 struct sock *sk = sock->sk;
1134 struct atalk_sock *at = at_sk(sk);
Arnd Bergmannecced8b2009-11-05 04:37:26 +00001135 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136
1137 if (!sock_flag(sk, SOCK_ZAPPED) ||
1138 addr_len != sizeof(struct sockaddr_at))
1139 return -EINVAL;
1140
1141 if (addr->sat_family != AF_APPLETALK)
1142 return -EAFNOSUPPORT;
1143
Arnd Bergmannecced8b2009-11-05 04:37:26 +00001144 lock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145 if (addr->sat_addr.s_net == htons(ATADDR_ANYNET)) {
1146 struct atalk_addr *ap = atalk_find_primary();
1147
Arnd Bergmannecced8b2009-11-05 04:37:26 +00001148 err = -EADDRNOTAVAIL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149 if (!ap)
Arnd Bergmannecced8b2009-11-05 04:37:26 +00001150 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151
1152 at->src_net = addr->sat_addr.s_net = ap->s_net;
1153 at->src_node = addr->sat_addr.s_node= ap->s_node;
1154 } else {
Arnd Bergmannecced8b2009-11-05 04:37:26 +00001155 err = -EADDRNOTAVAIL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156 if (!atalk_find_interface(addr->sat_addr.s_net,
1157 addr->sat_addr.s_node))
Arnd Bergmannecced8b2009-11-05 04:37:26 +00001158 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159
1160 at->src_net = addr->sat_addr.s_net;
1161 at->src_node = addr->sat_addr.s_node;
1162 }
1163
1164 if (addr->sat_port == ATADDR_ANYPORT) {
Arnd Bergmannecced8b2009-11-05 04:37:26 +00001165 err = atalk_pick_and_bind_port(sk, addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166
Arnd Bergmannecced8b2009-11-05 04:37:26 +00001167 if (err < 0)
1168 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169 } else {
1170 at->src_port = addr->sat_port;
1171
Arnd Bergmannecced8b2009-11-05 04:37:26 +00001172 err = -EADDRINUSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173 if (atalk_find_or_insert_socket(sk, addr))
Arnd Bergmannecced8b2009-11-05 04:37:26 +00001174 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175 }
1176
1177 sock_reset_flag(sk, SOCK_ZAPPED);
Arnd Bergmannecced8b2009-11-05 04:37:26 +00001178 err = 0;
1179out:
1180 unlock_kernel();
1181 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182}
1183
1184/* Set the address we talk to */
1185static int atalk_connect(struct socket *sock, struct sockaddr *uaddr,
1186 int addr_len, int flags)
1187{
1188 struct sock *sk = sock->sk;
1189 struct atalk_sock *at = at_sk(sk);
1190 struct sockaddr_at *addr;
Arnd Bergmannecced8b2009-11-05 04:37:26 +00001191 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192
1193 sk->sk_state = TCP_CLOSE;
1194 sock->state = SS_UNCONNECTED;
1195
1196 if (addr_len != sizeof(*addr))
1197 return -EINVAL;
1198
1199 addr = (struct sockaddr_at *)uaddr;
1200
1201 if (addr->sat_family != AF_APPLETALK)
1202 return -EAFNOSUPPORT;
1203
1204 if (addr->sat_addr.s_node == ATADDR_BCAST &&
1205 !sock_flag(sk, SOCK_BROADCAST)) {
YOSHIFUJI Hideakied4477b2007-02-09 23:24:27 +09001206#if 1
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207 printk(KERN_WARNING "%s is broken and did not set "
1208 "SO_BROADCAST. It will break when 2.2 is "
1209 "released.\n",
1210 current->comm);
1211#else
1212 return -EACCES;
YOSHIFUJI Hideakied4477b2007-02-09 23:24:27 +09001213#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214 }
1215
Arnd Bergmannecced8b2009-11-05 04:37:26 +00001216 lock_kernel();
1217 err = -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218 if (sock_flag(sk, SOCK_ZAPPED))
1219 if (atalk_autobind(sk) < 0)
Arnd Bergmannecced8b2009-11-05 04:37:26 +00001220 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221
Arnd Bergmannecced8b2009-11-05 04:37:26 +00001222 err = -ENETUNREACH;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223 if (!atrtr_get_dev(&addr->sat_addr))
Arnd Bergmannecced8b2009-11-05 04:37:26 +00001224 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225
1226 at->dest_port = addr->sat_port;
1227 at->dest_net = addr->sat_addr.s_net;
1228 at->dest_node = addr->sat_addr.s_node;
1229
1230 sock->state = SS_CONNECTED;
1231 sk->sk_state = TCP_ESTABLISHED;
Arnd Bergmannecced8b2009-11-05 04:37:26 +00001232 err = 0;
1233out:
1234 unlock_kernel();
1235 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236}
1237
1238/*
1239 * Find the name of an AppleTalk socket. Just copy the right
1240 * fields into the sockaddr.
1241 */
1242static int atalk_getname(struct socket *sock, struct sockaddr *uaddr,
1243 int *uaddr_len, int peer)
1244{
1245 struct sockaddr_at sat;
1246 struct sock *sk = sock->sk;
1247 struct atalk_sock *at = at_sk(sk);
Arnd Bergmannecced8b2009-11-05 04:37:26 +00001248 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249
Arnd Bergmannecced8b2009-11-05 04:37:26 +00001250 lock_kernel();
1251 err = -ENOBUFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252 if (sock_flag(sk, SOCK_ZAPPED))
1253 if (atalk_autobind(sk) < 0)
Arnd Bergmannecced8b2009-11-05 04:37:26 +00001254 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255
1256 *uaddr_len = sizeof(struct sockaddr_at);
Eric Dumazet3d392472009-08-06 02:27:43 +00001257 memset(&sat.sat_zero, 0, sizeof(sat.sat_zero));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258
1259 if (peer) {
Arnd Bergmannecced8b2009-11-05 04:37:26 +00001260 err = -ENOTCONN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261 if (sk->sk_state != TCP_ESTABLISHED)
Arnd Bergmannecced8b2009-11-05 04:37:26 +00001262 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263
1264 sat.sat_addr.s_net = at->dest_net;
1265 sat.sat_addr.s_node = at->dest_node;
1266 sat.sat_port = at->dest_port;
1267 } else {
1268 sat.sat_addr.s_net = at->src_net;
1269 sat.sat_addr.s_node = at->src_node;
1270 sat.sat_port = at->src_port;
1271 }
1272
Arnd Bergmannecced8b2009-11-05 04:37:26 +00001273 err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274 sat.sat_family = AF_APPLETALK;
1275 memcpy(uaddr, &sat, sizeof(sat));
Arnd Bergmannecced8b2009-11-05 04:37:26 +00001276
1277out:
1278 unlock_kernel();
1279 return err;
1280}
1281
1282static unsigned int atalk_poll(struct file *file, struct socket *sock,
1283 poll_table *wait)
1284{
1285 int err;
1286 lock_kernel();
1287 err = datagram_poll(file, sock, wait);
1288 unlock_kernel();
1289 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290}
1291
1292#if defined(CONFIG_IPDDP) || defined(CONFIG_IPDDP_MODULE)
1293static __inline__ int is_ip_over_ddp(struct sk_buff *skb)
1294{
YOSHIFUJI Hideakied4477b2007-02-09 23:24:27 +09001295 return skb->data[12] == 22;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296}
1297
1298static int handle_ip_over_ddp(struct sk_buff *skb)
1299{
Eric W. Biederman881d9662007-09-17 11:56:21 -07001300 struct net_device *dev = __dev_get_by_name(&init_net, "ipddp0");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301 struct net_device_stats *stats;
1302
1303 /* This needs to be able to handle ipddp"N" devices */
Arnaldo Carvalho de Meloffcfb8d2009-09-11 11:35:22 -07001304 if (!dev) {
1305 kfree_skb(skb);
1306 return NET_RX_DROP;
1307 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308
YOSHIFUJI Hideakied4477b2007-02-09 23:24:27 +09001309 skb->protocol = htons(ETH_P_IP);
1310 skb_pull(skb, 13);
1311 skb->dev = dev;
Arnaldo Carvalho de Melobadff6d2007-03-13 13:06:52 -03001312 skb_reset_transport_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313
Wang Chen524ad0a2008-11-12 23:39:10 -08001314 stats = netdev_priv(dev);
YOSHIFUJI Hideakied4477b2007-02-09 23:24:27 +09001315 stats->rx_packets++;
1316 stats->rx_bytes += skb->len + 13;
Arnaldo Carvalho de Meloffcfb8d2009-09-11 11:35:22 -07001317 return netif_rx(skb); /* Send the SKB up to a higher place. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318}
1319#else
1320/* make it easy for gcc to optimize this test out, i.e. kill the code */
1321#define is_ip_over_ddp(skb) 0
1322#define handle_ip_over_ddp(skb) 0
1323#endif
1324
Arnaldo Carvalho de Meloffcfb8d2009-09-11 11:35:22 -07001325static int atalk_route_packet(struct sk_buff *skb, struct net_device *dev,
1326 struct ddpehdr *ddp, __u16 len_hops, int origlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327{
1328 struct atalk_route *rt;
1329 struct atalk_addr ta;
1330
1331 /*
1332 * Don't route multicast, etc., packets, or packets sent to "this
YOSHIFUJI Hideakied4477b2007-02-09 23:24:27 +09001333 * network"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334 */
1335 if (skb->pkt_type != PACKET_HOST || !ddp->deh_dnet) {
1336 /*
1337 * FIXME:
1338 *
1339 * Can it ever happen that a packet is from a PPP iface and
1340 * needs to be broadcast onto the default network?
1341 */
1342 if (dev->type == ARPHRD_PPP)
1343 printk(KERN_DEBUG "AppleTalk: didn't forward broadcast "
1344 "packet received from PPP iface\n");
1345 goto free_it;
1346 }
1347
1348 ta.s_net = ddp->deh_dnet;
1349 ta.s_node = ddp->deh_dnode;
1350
1351 /* Route the packet */
1352 rt = atrtr_find(&ta);
Al Viro2a50f282006-09-26 21:22:08 -07001353 /* increment hops count */
1354 len_hops += 1 << 10;
1355 if (!rt || !(len_hops & (15 << 10)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356 goto free_it;
Al Viro2a50f282006-09-26 21:22:08 -07001357
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358 /* FIXME: use skb->cb to be able to use shared skbs */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359
1360 /*
1361 * Route goes through another gateway, so set the target to the
1362 * gateway instead.
1363 */
1364
1365 if (rt->flags & RTF_GATEWAY) {
1366 ta.s_net = rt->gateway.s_net;
1367 ta.s_node = rt->gateway.s_node;
1368 }
1369
YOSHIFUJI Hideakied4477b2007-02-09 23:24:27 +09001370 /* Fix up skb->len field */
1371 skb_trim(skb, min_t(unsigned int, origlen,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372 (rt->dev->hard_header_len +
Al Viro2a50f282006-09-26 21:22:08 -07001373 ddp_dl->header_length + (len_hops & 1023))));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375 /* FIXME: use skb->cb to be able to use shared skbs */
Al Viro2a50f282006-09-26 21:22:08 -07001376 ddp->deh_len_hops = htons(len_hops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377
1378 /*
1379 * Send the buffer onwards
1380 *
1381 * Now we must always be careful. If it's come from LocalTalk to
1382 * EtherTalk it might not fit
1383 *
1384 * Order matters here: If a packet has to be copied to make a new
1385 * headroom (rare hopefully) then it won't need unsharing.
1386 *
1387 * Note. ddp-> becomes invalid at the realloc.
1388 */
1389 if (skb_headroom(skb) < 22) {
1390 /* 22 bytes - 12 ether, 2 len, 3 802.2 5 snap */
1391 struct sk_buff *nskb = skb_realloc_headroom(skb, 32);
1392 kfree_skb(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393 skb = nskb;
1394 } else
1395 skb = skb_unshare(skb, GFP_ATOMIC);
YOSHIFUJI Hideakied4477b2007-02-09 23:24:27 +09001396
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397 /*
1398 * If the buffer didn't vanish into the lack of space bitbucket we can
1399 * send it.
1400 */
Arnaldo Carvalho de Meloffcfb8d2009-09-11 11:35:22 -07001401 if (skb == NULL)
1402 goto drop;
1403
1404 if (aarp_send_ddp(rt->dev, skb, &ta, NULL) == NET_XMIT_DROP)
1405 return NET_RX_DROP;
Mark Smith8be80572009-09-12 20:48:43 +00001406 return NET_RX_SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407free_it:
1408 kfree_skb(skb);
Arnaldo Carvalho de Meloffcfb8d2009-09-11 11:35:22 -07001409drop:
1410 return NET_RX_DROP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411}
1412
1413/**
1414 * atalk_rcv - Receive a packet (in skb) from device dev
1415 * @skb - packet received
1416 * @dev - network device where the packet comes from
1417 * @pt - packet type
1418 *
1419 * Receive a packet (in skb) from device dev. This has come from the SNAP
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -07001420 * decoder, and on entry skb->transport_header is the DDP header, skb->len
1421 * is the DDP header, skb->len is the DDP length. The physical headers
1422 * have been extracted. PPP should probably pass frames marked as for this
1423 * layer. [ie ARPHRD_ETHERTALK]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424 */
1425static int atalk_rcv(struct sk_buff *skb, struct net_device *dev,
David S. Millerf2ccd8f2005-08-09 19:34:12 -07001426 struct packet_type *pt, struct net_device *orig_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427{
1428 struct ddpehdr *ddp;
1429 struct sock *sock;
1430 struct atalk_iface *atif;
1431 struct sockaddr_at tosat;
YOSHIFUJI Hideakied4477b2007-02-09 23:24:27 +09001432 int origlen;
Al Viro2a50f282006-09-26 21:22:08 -07001433 __u16 len_hops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434
YOSHIFUJI Hideaki721499e2008-07-19 22:34:43 -07001435 if (!net_eq(dev_net(dev), &init_net))
Mark Smith6885ffb32009-08-06 23:21:22 +00001436 goto drop;
Eric W. Biedermane730c152007-09-17 11:53:39 -07001437
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438 /* Don't mangle buffer if shared */
YOSHIFUJI Hideakied4477b2007-02-09 23:24:27 +09001439 if (!(skb = skb_share_check(skb, GFP_ATOMIC)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440 goto out;
YOSHIFUJI Hideakied4477b2007-02-09 23:24:27 +09001441
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442 /* Size check and make sure header is contiguous */
1443 if (!pskb_may_pull(skb, sizeof(*ddp)))
Mark Smith6885ffb32009-08-06 23:21:22 +00001444 goto drop;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445
1446 ddp = ddp_hdr(skb);
1447
Al Viro2a50f282006-09-26 21:22:08 -07001448 len_hops = ntohs(ddp->deh_len_hops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449
1450 /* Trim buffer in case of stray trailing data */
1451 origlen = skb->len;
Al Viro2a50f282006-09-26 21:22:08 -07001452 skb_trim(skb, min_t(unsigned int, skb->len, len_hops & 1023));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453
1454 /*
1455 * Size check to see if ddp->deh_len was crap
1456 * (Otherwise we'll detonate most spectacularly
Jean Delvare75559c12007-04-04 23:52:46 -07001457 * in the middle of atalk_checksum() or recvmsg()).
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458 */
Jean Delvare75559c12007-04-04 23:52:46 -07001459 if (skb->len < sizeof(*ddp) || skb->len < (len_hops & 1023)) {
1460 pr_debug("AppleTalk: dropping corrupted frame (deh_len=%u, "
1461 "skb->len=%u)\n", len_hops & 1023, skb->len);
Mark Smith6885ffb32009-08-06 23:21:22 +00001462 goto drop;
Jean Delvare75559c12007-04-04 23:52:46 -07001463 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464
1465 /*
1466 * Any checksums. Note we don't do htons() on this == is assumed to be
1467 * valid for net byte orders all over the networking code...
1468 */
1469 if (ddp->deh_sum &&
Al Viro2a50f282006-09-26 21:22:08 -07001470 atalk_checksum(skb, len_hops & 1023) != ddp->deh_sum)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471 /* Not a valid AppleTalk frame - dustbin time */
Mark Smith6885ffb32009-08-06 23:21:22 +00001472 goto drop;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473
1474 /* Check the packet is aimed at us */
1475 if (!ddp->deh_dnet) /* Net 0 is 'this network' */
1476 atif = atalk_find_anynet(ddp->deh_dnode, dev);
1477 else
1478 atif = atalk_find_interface(ddp->deh_dnet, ddp->deh_dnode);
1479
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480 if (!atif) {
Oliver Dawid64233bf2005-09-27 16:11:29 -07001481 /* Not ours, so we route the packet via the correct
1482 * AppleTalk iface
1483 */
Arnaldo Carvalho de Meloffcfb8d2009-09-11 11:35:22 -07001484 return atalk_route_packet(skb, dev, ddp, len_hops, origlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485 }
1486
1487 /* if IP over DDP is not selected this code will be optimized out */
1488 if (is_ip_over_ddp(skb))
1489 return handle_ip_over_ddp(skb);
1490 /*
1491 * Which socket - atalk_search_socket() looks for a *full match*
1492 * of the <net, node, port> tuple.
1493 */
1494 tosat.sat_addr.s_net = ddp->deh_dnet;
1495 tosat.sat_addr.s_node = ddp->deh_dnode;
1496 tosat.sat_port = ddp->deh_dport;
1497
1498 sock = atalk_search_socket(&tosat, atif);
1499 if (!sock) /* But not one of our sockets */
Mark Smith6885ffb32009-08-06 23:21:22 +00001500 goto drop;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501
1502 /* Queue packet (standard) */
1503 skb->sk = sock;
1504
1505 if (sock_queue_rcv_skb(sock, skb) < 0)
Mark Smith6885ffb32009-08-06 23:21:22 +00001506 goto drop;
1507
1508 return NET_RX_SUCCESS;
1509
1510drop:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511 kfree_skb(skb);
Mark Smith6885ffb32009-08-06 23:21:22 +00001512out:
1513 return NET_RX_DROP;
1514
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515}
1516
1517/*
1518 * Receive a LocalTalk frame. We make some demands on the caller here.
1519 * Caller must provide enough headroom on the packet to pull the short
1520 * header and append a long one.
1521 */
1522static int ltalk_rcv(struct sk_buff *skb, struct net_device *dev,
David S. Millerf2ccd8f2005-08-09 19:34:12 -07001523 struct packet_type *pt, struct net_device *orig_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524{
YOSHIFUJI Hideaki721499e2008-07-19 22:34:43 -07001525 if (!net_eq(dev_net(dev), &init_net))
Eric W. Biedermane730c152007-09-17 11:53:39 -07001526 goto freeit;
1527
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528 /* Expand any short form frames */
Arnaldo Carvalho de Melo98e399f2007-03-19 15:33:04 -07001529 if (skb_mac_header(skb)[2] == 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530 struct ddpehdr *ddp;
1531 /* Find our address */
1532 struct atalk_addr *ap = atalk_find_dev_addr(dev);
1533
Al Viro2a50f282006-09-26 21:22:08 -07001534 if (!ap || skb->len < sizeof(__be16) || skb->len > 1023)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535 goto freeit;
1536
1537 /* Don't mangle buffer if shared */
YOSHIFUJI Hideakied4477b2007-02-09 23:24:27 +09001538 if (!(skb = skb_share_check(skb, GFP_ATOMIC)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539 return 0;
1540
1541 /*
1542 * The push leaves us with a ddephdr not an shdr, and
1543 * handily the port bytes in the right place preset.
1544 */
1545 ddp = (struct ddpehdr *) skb_push(skb, sizeof(*ddp) - 4);
1546
1547 /* Now fill in the long header */
1548
YOSHIFUJI Hideakied4477b2007-02-09 23:24:27 +09001549 /*
1550 * These two first. The mac overlays the new source/dest
1551 * network information so we MUST copy these before
1552 * we write the network numbers !
1553 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001554
Arnaldo Carvalho de Melo98e399f2007-03-19 15:33:04 -07001555 ddp->deh_dnode = skb_mac_header(skb)[0]; /* From physical header */
1556 ddp->deh_snode = skb_mac_header(skb)[1]; /* From physical header */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557
1558 ddp->deh_dnet = ap->s_net; /* Network number */
1559 ddp->deh_snet = ap->s_net;
1560 ddp->deh_sum = 0; /* No checksum */
1561 /*
1562 * Not sure about this bit...
1563 */
Al Viro2a50f282006-09-26 21:22:08 -07001564 /* Non routable, so force a drop if we slip up later */
1565 ddp->deh_len_hops = htons(skb->len + (DDP_MAXHOPS << 10));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566 }
Arnaldo Carvalho de Melobadff6d2007-03-13 13:06:52 -03001567 skb_reset_transport_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568
David S. Millerf2ccd8f2005-08-09 19:34:12 -07001569 return atalk_rcv(skb, dev, pt, orig_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570freeit:
1571 kfree_skb(skb);
1572 return 0;
1573}
1574
1575static int atalk_sendmsg(struct kiocb *iocb, struct socket *sock, struct msghdr *msg,
1576 size_t len)
1577{
1578 struct sock *sk = sock->sk;
1579 struct atalk_sock *at = at_sk(sk);
1580 struct sockaddr_at *usat = (struct sockaddr_at *)msg->msg_name;
1581 int flags = msg->msg_flags;
1582 int loopback = 0;
1583 struct sockaddr_at local_satalk, gsat;
1584 struct sk_buff *skb;
1585 struct net_device *dev;
1586 struct ddpehdr *ddp;
1587 int size;
1588 struct atalk_route *rt;
1589 int err;
1590
1591 if (flags & ~(MSG_DONTWAIT|MSG_CMSG_COMPAT))
1592 return -EINVAL;
1593
1594 if (len > DDP_MAXSZ)
1595 return -EMSGSIZE;
1596
Arnd Bergmannecced8b2009-11-05 04:37:26 +00001597 lock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598 if (usat) {
Arnd Bergmannecced8b2009-11-05 04:37:26 +00001599 err = -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600 if (sock_flag(sk, SOCK_ZAPPED))
1601 if (atalk_autobind(sk) < 0)
Arnd Bergmannecced8b2009-11-05 04:37:26 +00001602 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603
Arnd Bergmannecced8b2009-11-05 04:37:26 +00001604 err = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605 if (msg->msg_namelen < sizeof(*usat) ||
1606 usat->sat_family != AF_APPLETALK)
Arnd Bergmannecced8b2009-11-05 04:37:26 +00001607 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608
Arnd Bergmannecced8b2009-11-05 04:37:26 +00001609 err = -EPERM;
Alan Cox03ba9992009-03-27 00:27:18 -07001610 /* netatalk didn't implement this check */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611 if (usat->sat_addr.s_node == ATADDR_BCAST &&
1612 !sock_flag(sk, SOCK_BROADCAST)) {
Arnd Bergmannecced8b2009-11-05 04:37:26 +00001613 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614 }
1615 } else {
Arnd Bergmannecced8b2009-11-05 04:37:26 +00001616 err = -ENOTCONN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617 if (sk->sk_state != TCP_ESTABLISHED)
Arnd Bergmannecced8b2009-11-05 04:37:26 +00001618 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619 usat = &local_satalk;
1620 usat->sat_family = AF_APPLETALK;
1621 usat->sat_port = at->dest_port;
1622 usat->sat_addr.s_node = at->dest_node;
1623 usat->sat_addr.s_net = at->dest_net;
1624 }
1625
1626 /* Build a packet */
1627 SOCK_DEBUG(sk, "SK %p: Got address.\n", sk);
1628
1629 /* For headers */
1630 size = sizeof(struct ddpehdr) + len + ddp_dl->header_length;
1631
1632 if (usat->sat_addr.s_net || usat->sat_addr.s_node == ATADDR_ANYNODE) {
1633 rt = atrtr_find(&usat->sat_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634 } else {
1635 struct atalk_addr at_hint;
1636
1637 at_hint.s_node = 0;
1638 at_hint.s_net = at->src_net;
1639
1640 rt = atrtr_find(&at_hint);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641 }
Arnd Bergmannecced8b2009-11-05 04:37:26 +00001642 err = ENETUNREACH;
Oliver Dawid64233bf2005-09-27 16:11:29 -07001643 if (!rt)
Arnd Bergmannecced8b2009-11-05 04:37:26 +00001644 goto out;
Oliver Dawid64233bf2005-09-27 16:11:29 -07001645
1646 dev = rt->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647
1648 SOCK_DEBUG(sk, "SK %p: Size needed %d, device %s\n",
1649 sk, size, dev->name);
1650
1651 size += dev->hard_header_len;
1652 skb = sock_alloc_send_skb(sk, size, (flags & MSG_DONTWAIT), &err);
1653 if (!skb)
Arnd Bergmannecced8b2009-11-05 04:37:26 +00001654 goto out;
YOSHIFUJI Hideakied4477b2007-02-09 23:24:27 +09001655
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656 skb->sk = sk;
1657 skb_reserve(skb, ddp_dl->header_length);
1658 skb_reserve(skb, dev->hard_header_len);
1659 skb->dev = dev;
1660
1661 SOCK_DEBUG(sk, "SK %p: Begin build.\n", sk);
1662
1663 ddp = (struct ddpehdr *)skb_put(skb, sizeof(struct ddpehdr));
Al Viro2a50f282006-09-26 21:22:08 -07001664 ddp->deh_len_hops = htons(len + sizeof(*ddp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665 ddp->deh_dnet = usat->sat_addr.s_net;
1666 ddp->deh_snet = at->src_net;
1667 ddp->deh_dnode = usat->sat_addr.s_node;
1668 ddp->deh_snode = at->src_node;
1669 ddp->deh_dport = usat->sat_port;
1670 ddp->deh_sport = at->src_port;
1671
1672 SOCK_DEBUG(sk, "SK %p: Copy user data (%Zd bytes).\n", sk, len);
1673
1674 err = memcpy_fromiovec(skb_put(skb, len), msg->msg_iov, len);
1675 if (err) {
1676 kfree_skb(skb);
Arnd Bergmannecced8b2009-11-05 04:37:26 +00001677 err = -EFAULT;
1678 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679 }
1680
1681 if (sk->sk_no_check == 1)
1682 ddp->deh_sum = 0;
1683 else
1684 ddp->deh_sum = atalk_checksum(skb, len + sizeof(*ddp));
1685
1686 /*
1687 * Loopback broadcast packets to non gateway targets (ie routes
1688 * to group we are in)
1689 */
1690 if (ddp->deh_dnode == ATADDR_BCAST &&
1691 !(rt->flags & RTF_GATEWAY) && !(dev->flags & IFF_LOOPBACK)) {
1692 struct sk_buff *skb2 = skb_copy(skb, GFP_KERNEL);
1693
1694 if (skb2) {
1695 loopback = 1;
1696 SOCK_DEBUG(sk, "SK %p: send out(copy).\n", sk);
Arnaldo Carvalho de Meloffcfb8d2009-09-11 11:35:22 -07001697 /*
1698 * If it fails it is queued/sent above in the aarp queue
1699 */
1700 aarp_send_ddp(dev, skb2, &usat->sat_addr, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701 }
1702 }
1703
1704 if (dev->flags & IFF_LOOPBACK || loopback) {
1705 SOCK_DEBUG(sk, "SK %p: Loop back.\n", sk);
1706 /* loop back */
1707 skb_orphan(skb);
Oliver Dawid64233bf2005-09-27 16:11:29 -07001708 if (ddp->deh_dnode == ATADDR_BCAST) {
1709 struct atalk_addr at_lo;
1710
1711 at_lo.s_node = 0;
1712 at_lo.s_net = 0;
1713
1714 rt = atrtr_find(&at_lo);
1715 if (!rt) {
1716 kfree_skb(skb);
Arnd Bergmannecced8b2009-11-05 04:37:26 +00001717 err = -ENETUNREACH;
1718 goto out;
Oliver Dawid64233bf2005-09-27 16:11:29 -07001719 }
1720 dev = rt->dev;
1721 skb->dev = dev;
1722 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723 ddp_dl->request(ddp_dl, skb, dev->dev_addr);
1724 } else {
1725 SOCK_DEBUG(sk, "SK %p: send out.\n", sk);
1726 if (rt->flags & RTF_GATEWAY) {
1727 gsat.sat_addr = rt->gateway;
1728 usat = &gsat;
1729 }
1730
Arnaldo Carvalho de Meloffcfb8d2009-09-11 11:35:22 -07001731 /*
1732 * If it fails it is queued/sent above in the aarp queue
1733 */
1734 aarp_send_ddp(dev, skb, &usat->sat_addr, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735 }
1736 SOCK_DEBUG(sk, "SK %p: Done write (%Zd).\n", sk, len);
1737
Arnd Bergmannecced8b2009-11-05 04:37:26 +00001738out:
1739 unlock_kernel();
1740 return err ? : len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741}
1742
1743static int atalk_recvmsg(struct kiocb *iocb, struct socket *sock, struct msghdr *msg,
1744 size_t size, int flags)
1745{
1746 struct sock *sk = sock->sk;
1747 struct sockaddr_at *sat = (struct sockaddr_at *)msg->msg_name;
1748 struct ddpehdr *ddp;
1749 int copied = 0;
Al Viro2a50f282006-09-26 21:22:08 -07001750 int offset = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751 int err = 0;
Arnd Bergmannecced8b2009-11-05 04:37:26 +00001752 struct sk_buff *skb;
1753
1754 lock_kernel();
1755 skb = skb_recv_datagram(sk, flags & ~MSG_DONTWAIT,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756 flags & MSG_DONTWAIT, &err);
1757 if (!skb)
Arnd Bergmannecced8b2009-11-05 04:37:26 +00001758 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759
1760 /* FIXME: use skb->cb to be able to use shared skbs */
1761 ddp = ddp_hdr(skb);
Al Viro2a50f282006-09-26 21:22:08 -07001762 copied = ntohs(ddp->deh_len_hops) & 1023;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001763
Al Viro2a50f282006-09-26 21:22:08 -07001764 if (sk->sk_type != SOCK_RAW) {
1765 offset = sizeof(*ddp);
1766 copied -= offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767 }
1768
Al Viro2a50f282006-09-26 21:22:08 -07001769 if (copied > size) {
1770 copied = size;
1771 msg->msg_flags |= MSG_TRUNC;
1772 }
1773 err = skb_copy_datagram_iovec(skb, offset, msg->msg_iov, copied);
1774
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775 if (!err) {
1776 if (sat) {
1777 sat->sat_family = AF_APPLETALK;
1778 sat->sat_port = ddp->deh_sport;
1779 sat->sat_addr.s_node = ddp->deh_snode;
1780 sat->sat_addr.s_net = ddp->deh_snet;
1781 }
1782 msg->msg_namelen = sizeof(*sat);
1783 }
1784
1785 skb_free_datagram(sk, skb); /* Free the datagram. */
Arnd Bergmannecced8b2009-11-05 04:37:26 +00001786
1787out:
1788 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001789 return err ? : copied;
1790}
1791
1792
1793/*
1794 * AppleTalk ioctl calls.
1795 */
1796static int atalk_ioctl(struct socket *sock, unsigned int cmd, unsigned long arg)
1797{
Christoph Hellwigb5e5fa52006-01-03 14:18:33 -08001798 int rc = -ENOIOCTLCMD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799 struct sock *sk = sock->sk;
1800 void __user *argp = (void __user *)arg;
1801
1802 switch (cmd) {
1803 /* Protocol layer */
1804 case TIOCOUTQ: {
Eric Dumazet31e6d362009-06-17 19:05:41 -07001805 long amount = sk->sk_sndbuf - sk_wmem_alloc_get(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806
1807 if (amount < 0)
1808 amount = 0;
1809 rc = put_user(amount, (int __user *)argp);
1810 break;
1811 }
1812 case TIOCINQ: {
1813 /*
1814 * These two are safe on a single CPU system as only
1815 * user tasks fiddle here
1816 */
1817 struct sk_buff *skb = skb_peek(&sk->sk_receive_queue);
1818 long amount = 0;
1819
1820 if (skb)
1821 amount = skb->len - sizeof(struct ddpehdr);
1822 rc = put_user(amount, (int __user *)argp);
1823 break;
1824 }
1825 case SIOCGSTAMP:
1826 rc = sock_get_timestamp(sk, argp);
1827 break;
Eric Dumazetae40eb12007-03-18 17:33:16 -07001828 case SIOCGSTAMPNS:
1829 rc = sock_get_timestampns(sk, argp);
1830 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831 /* Routing */
1832 case SIOCADDRT:
1833 case SIOCDELRT:
1834 rc = -EPERM;
1835 if (capable(CAP_NET_ADMIN))
1836 rc = atrtr_ioctl(cmd, argp);
1837 break;
1838 /* Interface */
1839 case SIOCGIFADDR:
1840 case SIOCSIFADDR:
1841 case SIOCGIFBRDADDR:
1842 case SIOCATALKDIFADDR:
1843 case SIOCDIFADDR:
1844 case SIOCSARP: /* proxy AARP */
1845 case SIOCDARP: /* proxy AARP */
1846 rtnl_lock();
1847 rc = atif_ioctl(cmd, argp);
1848 rtnl_unlock();
1849 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850 }
1851
1852 return rc;
1853}
1854
Petr Vandrovecf6c90b72006-03-27 23:39:31 -08001855
1856#ifdef CONFIG_COMPAT
1857static int atalk_compat_ioctl(struct socket *sock, unsigned int cmd, unsigned long arg)
1858{
1859 /*
Arnd Bergmann20660222009-11-06 08:09:06 +00001860 * SIOCATALKDIFADDR is a SIOCPROTOPRIVATE ioctl number, so we
1861 * cannot handle it in common code. The data we access if ifreq
1862 * here is compatible, so we can simply call the native
1863 * handler.
Petr Vandrovecf6c90b72006-03-27 23:39:31 -08001864 */
Arnd Bergmann20660222009-11-06 08:09:06 +00001865 if (cmd == SIOCATALKDIFADDR)
1866 return atalk_ioctl(sock, cmd, (unsigned long)compat_ptr(arg));
1867
Petr Vandrovecf6c90b72006-03-27 23:39:31 -08001868 return -ENOIOCTLCMD;
1869}
1870#endif
1871
1872
Stephen Hemmingerec1b4cf2009-10-05 05:58:39 +00001873static const struct net_proto_family atalk_family_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874 .family = PF_APPLETALK,
1875 .create = atalk_create,
1876 .owner = THIS_MODULE,
1877};
1878
Arnd Bergmannecced8b2009-11-05 04:37:26 +00001879static const struct proto_ops atalk_dgram_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001880 .family = PF_APPLETALK,
1881 .owner = THIS_MODULE,
1882 .release = atalk_release,
1883 .bind = atalk_bind,
1884 .connect = atalk_connect,
1885 .socketpair = sock_no_socketpair,
1886 .accept = sock_no_accept,
1887 .getname = atalk_getname,
Arnd Bergmannecced8b2009-11-05 04:37:26 +00001888 .poll = atalk_poll,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001889 .ioctl = atalk_ioctl,
Petr Vandrovecf6c90b72006-03-27 23:39:31 -08001890#ifdef CONFIG_COMPAT
1891 .compat_ioctl = atalk_compat_ioctl,
1892#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001893 .listen = sock_no_listen,
1894 .shutdown = sock_no_shutdown,
1895 .setsockopt = sock_no_setsockopt,
1896 .getsockopt = sock_no_getsockopt,
1897 .sendmsg = atalk_sendmsg,
1898 .recvmsg = atalk_recvmsg,
1899 .mmap = sock_no_mmap,
1900 .sendpage = sock_no_sendpage,
1901};
1902
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903static struct notifier_block ddp_notifier = {
1904 .notifier_call = ddp_device_event,
1905};
1906
Stephen Hemminger7546dd92009-03-09 08:18:29 +00001907static struct packet_type ltalk_packet_type __read_mostly = {
Harvey Harrison09640e62009-02-01 00:45:17 -08001908 .type = cpu_to_be16(ETH_P_LOCALTALK),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909 .func = ltalk_rcv,
1910};
1911
Stephen Hemminger7546dd92009-03-09 08:18:29 +00001912static struct packet_type ppptalk_packet_type __read_mostly = {
Harvey Harrison09640e62009-02-01 00:45:17 -08001913 .type = cpu_to_be16(ETH_P_PPPTALK),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001914 .func = atalk_rcv,
1915};
1916
1917static unsigned char ddp_snap_id[] = { 0x08, 0x00, 0x07, 0x80, 0x9B };
1918
1919/* Export symbols for use by drivers when AppleTalk is a module */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920EXPORT_SYMBOL(atrtr_get_dev);
1921EXPORT_SYMBOL(atalk_find_dev_addr);
1922
Hannes Eder2db09602009-02-25 10:31:59 +00001923static const char atalk_err_snap[] __initconst =
Linus Torvalds1da177e2005-04-16 15:20:36 -07001924 KERN_CRIT "Unable to register DDP with SNAP.\n";
1925
1926/* Called by proto.c on kernel start up */
1927static int __init atalk_init(void)
1928{
1929 int rc = proto_register(&ddp_proto, 0);
1930
1931 if (rc != 0)
1932 goto out;
1933
1934 (void)sock_register(&atalk_family_ops);
1935 ddp_dl = register_snap_client(ddp_snap_id, atalk_rcv);
1936 if (!ddp_dl)
1937 printk(atalk_err_snap);
1938
1939 dev_add_pack(&ltalk_packet_type);
1940 dev_add_pack(&ppptalk_packet_type);
1941
1942 register_netdevice_notifier(&ddp_notifier);
1943 aarp_proto_init();
1944 atalk_proc_init();
1945 atalk_register_sysctl();
1946out:
1947 return rc;
1948}
1949module_init(atalk_init);
1950
1951/*
1952 * No explicit module reference count manipulation is needed in the
1953 * protocol. Socket layer sets module reference count for us
1954 * and interfaces reference counting is done
1955 * by the network device layer.
1956 *
1957 * Ergo, before the AppleTalk module can be removed, all AppleTalk
1958 * sockets be closed from user space.
1959 */
1960static void __exit atalk_exit(void)
1961{
1962#ifdef CONFIG_SYSCTL
1963 atalk_unregister_sysctl();
1964#endif /* CONFIG_SYSCTL */
1965 atalk_proc_exit();
1966 aarp_cleanup_module(); /* General aarp clean-up. */
1967 unregister_netdevice_notifier(&ddp_notifier);
1968 dev_remove_pack(&ltalk_packet_type);
1969 dev_remove_pack(&ppptalk_packet_type);
1970 unregister_snap_client(ddp_dl);
1971 sock_unregister(PF_APPLETALK);
1972 proto_unregister(&ddp_proto);
1973}
1974module_exit(atalk_exit);
1975
1976MODULE_LICENSE("GPL");
Alan Cox113aa832008-10-13 19:01:08 -07001977MODULE_AUTHOR("Alan Cox <alan@lxorguk.ukuu.org.uk>");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978MODULE_DESCRIPTION("AppleTalk 0.20\n");
1979MODULE_ALIAS_NETPROTO(PF_APPLETALK);