[NET]: Make /proc/net per network namespace
[deliverable/linux.git] / net / appletalk / ddp.c
CommitLineData
1da177e4
LT
1/*
2 * DDP: An implementation of the AppleTalk DDP protocol for
3 * Ethernet 'ELAP'.
4 *
5 * Alan Cox <Alan.Cox@linux.org>
6 *
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)
ed4477b9 31 * Jay Schulist : Made work as module with
1da177e4
LT
32 * AppleTalk drivers, cleaned it.
33 * Rob Newberry : Added proxy AARP and AARP
34 * procfs, moved probing to AARP
35 * module.
ed4477b9
YH
36 * Adrian Sun/
37 * Michael Zuelsdorff : fix for net.0 packets. don't
1da177e4 38 * allow illegal ether/tokentalk
ed4477b9
YH
39 * port assignment. we lose a
40 * valid localtalk port as a
1da177e4
LT
41 * 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.
ed4477b9 51 *
1da177e4
LT
52 */
53
4fc268d2 54#include <linux/capability.h>
1da177e4 55#include <linux/module.h>
1da177e4
LT
56#include <linux/if_arp.h>
57#include <linux/termios.h> /* For TIOCOUTQ/INQ */
58#include <net/datalink.h>
59#include <net/psnap.h>
60#include <net/sock.h>
c752f073 61#include <net/tcp_states.h>
1da177e4
LT
62#include <net/route.h>
63#include <linux/atalk.h>
a1f8e7f7 64#include "../core/kmap_skb.h"
1da177e4
LT
65
66struct datalink_proto *ddp_dl, *aarp_dl;
90ddc4f0 67static const struct proto_ops atalk_dgram_ops;
1da177e4
LT
68
69/**************************************************************************\
70* *
71* Handlers for the socket list. *
72* *
73\**************************************************************************/
74
75HLIST_HEAD(atalk_sockets);
76DEFINE_RWLOCK(atalk_sockets_lock);
77
78static inline void __atalk_insert_socket(struct sock *sk)
79{
80 sk_add_node(sk, &atalk_sockets);
81}
82
83static inline void atalk_remove_socket(struct sock *sk)
84{
85 write_lock_bh(&atalk_sockets_lock);
86 sk_del_node_init(sk);
87 write_unlock_bh(&atalk_sockets_lock);
88}
89
90static struct sock *atalk_search_socket(struct sockaddr_at *to,
91 struct atalk_iface *atif)
92{
93 struct sock *s;
94 struct hlist_node *node;
95
96 read_lock_bh(&atalk_sockets_lock);
97 sk_for_each(s, node, &atalk_sockets) {
98 struct atalk_sock *at = at_sk(s);
99
100 if (to->sat_port != at->src_port)
101 continue;
102
ed4477b9 103 if (to->sat_addr.s_net == ATADDR_ANYNET &&
64233bff 104 to->sat_addr.s_node == ATADDR_BCAST)
1da177e4
LT
105 goto found;
106
ed4477b9 107 if (to->sat_addr.s_net == at->src_net &&
1da177e4
LT
108 (to->sat_addr.s_node == at->src_node ||
109 to->sat_addr.s_node == ATADDR_BCAST ||
110 to->sat_addr.s_node == ATADDR_ANYNODE))
111 goto found;
112
ed4477b9 113 /* XXXX.0 -- we got a request for this router. make sure
1da177e4
LT
114 * that the node is appropriately set. */
115 if (to->sat_addr.s_node == ATADDR_ANYNODE &&
116 to->sat_addr.s_net != ATADDR_ANYNET &&
117 atif->address.s_node == at->src_node) {
118 to->sat_addr.s_node = atif->address.s_node;
119 goto found;
120 }
121 }
122 s = NULL;
123found:
124 read_unlock_bh(&atalk_sockets_lock);
125 return s;
126}
127
128/**
129 * atalk_find_or_insert_socket - Try to find a socket matching ADDR
130 * @sk - socket to insert in the list if it is not there already
131 * @sat - address to search for
132 *
133 * Try to find a socket matching ADDR in the socket list, if found then return
134 * it. If not, insert SK into the socket list.
135 *
136 * This entire operation must execute atomically.
137 */
138static struct sock *atalk_find_or_insert_socket(struct sock *sk,
139 struct sockaddr_at *sat)
140{
141 struct sock *s;
142 struct hlist_node *node;
143 struct atalk_sock *at;
144
145 write_lock_bh(&atalk_sockets_lock);
146 sk_for_each(s, node, &atalk_sockets) {
147 at = at_sk(s);
148
149 if (at->src_net == sat->sat_addr.s_net &&
150 at->src_node == sat->sat_addr.s_node &&
151 at->src_port == sat->sat_port)
152 goto found;
153 }
154 s = NULL;
155 __atalk_insert_socket(sk); /* Wheee, it's free, assign and insert. */
156found:
157 write_unlock_bh(&atalk_sockets_lock);
158 return s;
159}
160
161static void atalk_destroy_timer(unsigned long data)
162{
163 struct sock *sk = (struct sock *)data;
164
165 if (atomic_read(&sk->sk_wmem_alloc) ||
166 atomic_read(&sk->sk_rmem_alloc)) {
167 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
178 if (atomic_read(&sk->sk_wmem_alloc) ||
179 atomic_read(&sk->sk_rmem_alloc)) {
180 init_timer(&sk->sk_timer);
181 sk->sk_timer.expires = jiffies + SOCK_DESTROY_TIME;
182 sk->sk_timer.function = atalk_destroy_timer;
183 sk->sk_timer.data = (unsigned long)sk;
184 add_timer(&sk->sk_timer);
185 } else
186 sock_put(sk);
187}
188
189/**************************************************************************\
190* *
191* Routing tables for the AppleTalk socket layer. *
192* *
193\**************************************************************************/
194
195/* Anti-deadlock ordering is atalk_routes_lock --> iface_lock -DaveM */
196struct atalk_route *atalk_routes;
197DEFINE_RWLOCK(atalk_routes_lock);
198
199struct atalk_iface *atalk_interfaces;
200DEFINE_RWLOCK(atalk_interfaces_lock);
201
202/* For probing devices or in a routerless network */
203struct atalk_route atrtr_default;
204
205/* AppleTalk interface control */
206/*
207 * Drop a device. Doesn't drop any of its routes - that is the caller's
208 * problem. Called when we down the interface or delete the address.
209 */
210static void atif_drop_device(struct net_device *dev)
211{
212 struct atalk_iface **iface = &atalk_interfaces;
213 struct atalk_iface *tmp;
214
215 write_lock_bh(&atalk_interfaces_lock);
216 while ((tmp = *iface) != NULL) {
217 if (tmp->dev == dev) {
218 *iface = tmp->next;
219 dev_put(dev);
220 kfree(tmp);
221 dev->atalk_ptr = NULL;
222 } else
223 iface = &tmp->next;
224 }
225 write_unlock_bh(&atalk_interfaces_lock);
226}
227
228static struct atalk_iface *atif_add_device(struct net_device *dev,
229 struct atalk_addr *sa)
230{
0da974f4 231 struct atalk_iface *iface = kzalloc(sizeof(*iface), GFP_KERNEL);
1da177e4
LT
232
233 if (!iface)
234 goto out;
235
1da177e4
LT
236 dev_hold(dev);
237 iface->dev = dev;
238 dev->atalk_ptr = iface;
239 iface->address = *sa;
240 iface->status = 0;
241
242 write_lock_bh(&atalk_interfaces_lock);
243 iface->next = atalk_interfaces;
244 atalk_interfaces = iface;
245 write_unlock_bh(&atalk_interfaces_lock);
246out:
247 return iface;
248}
249
250/* Perform phase 2 AARP probing on our tentative address */
251static int atif_probe_device(struct atalk_iface *atif)
252{
253 int netrange = ntohs(atif->nets.nr_lastnet) -
254 ntohs(atif->nets.nr_firstnet) + 1;
255 int probe_net = ntohs(atif->address.s_net);
256 int probe_node = atif->address.s_node;
257 int netct, nodect;
258
259 /* Offset the network we start probing with */
260 if (probe_net == ATADDR_ANYNET) {
261 probe_net = ntohs(atif->nets.nr_firstnet);
262 if (netrange)
263 probe_net += jiffies % netrange;
264 }
265 if (probe_node == ATADDR_ANYNODE)
266 probe_node = jiffies & 0xFF;
267
268 /* Scan the networks */
269 atif->status |= ATIF_PROBE;
270 for (netct = 0; netct <= netrange; netct++) {
271 /* Sweep the available nodes from a given start */
272 atif->address.s_net = htons(probe_net);
273 for (nodect = 0; nodect < 256; nodect++) {
274 atif->address.s_node = (nodect + probe_node) & 0xFF;
275 if (atif->address.s_node > 0 &&
276 atif->address.s_node < 254) {
277 /* Probe a proposed address */
278 aarp_probe_network(atif);
279
280 if (!(atif->status & ATIF_PROBE_FAIL)) {
281 atif->status &= ~ATIF_PROBE;
282 return 0;
283 }
284 }
285 atif->status &= ~ATIF_PROBE_FAIL;
286 }
287 probe_net++;
288 if (probe_net > ntohs(atif->nets.nr_lastnet))
289 probe_net = ntohs(atif->nets.nr_firstnet);
290 }
291 atif->status &= ~ATIF_PROBE;
292
293 return -EADDRINUSE; /* Network is full... */
294}
295
296
297/* Perform AARP probing for a proxy address */
298static int atif_proxy_probe_device(struct atalk_iface *atif,
299 struct atalk_addr* proxy_addr)
300{
301 int netrange = ntohs(atif->nets.nr_lastnet) -
302 ntohs(atif->nets.nr_firstnet) + 1;
303 /* we probe the interface's network */
304 int probe_net = ntohs(atif->address.s_net);
305 int probe_node = ATADDR_ANYNODE; /* we'll take anything */
306 int netct, nodect;
307
308 /* Offset the network we start probing with */
309 if (probe_net == ATADDR_ANYNET) {
310 probe_net = ntohs(atif->nets.nr_firstnet);
311 if (netrange)
312 probe_net += jiffies % netrange;
313 }
314
315 if (probe_node == ATADDR_ANYNODE)
316 probe_node = jiffies & 0xFF;
ed4477b9 317
1da177e4
LT
318 /* Scan the networks */
319 for (netct = 0; netct <= netrange; netct++) {
320 /* Sweep the available nodes from a given start */
321 proxy_addr->s_net = htons(probe_net);
322 for (nodect = 0; nodect < 256; nodect++) {
323 proxy_addr->s_node = (nodect + probe_node) & 0xFF;
324 if (proxy_addr->s_node > 0 &&
325 proxy_addr->s_node < 254) {
326 /* Tell AARP to probe a proposed address */
327 int ret = aarp_proxy_probe_network(atif,
328 proxy_addr);
329
330 if (ret != -EADDRINUSE)
331 return ret;
332 }
333 }
334 probe_net++;
335 if (probe_net > ntohs(atif->nets.nr_lastnet))
336 probe_net = ntohs(atif->nets.nr_firstnet);
337 }
338
339 return -EADDRINUSE; /* Network is full... */
340}
341
342
343struct atalk_addr *atalk_find_dev_addr(struct net_device *dev)
344{
345 struct atalk_iface *iface = dev->atalk_ptr;
346 return iface ? &iface->address : NULL;
347}
348
349static struct atalk_addr *atalk_find_primary(void)
350{
351 struct atalk_iface *fiface = NULL;
352 struct atalk_addr *retval;
353 struct atalk_iface *iface;
354
355 /*
356 * Return a point-to-point interface only if
357 * there is no non-ptp interface available.
358 */
359 read_lock_bh(&atalk_interfaces_lock);
360 for (iface = atalk_interfaces; iface; iface = iface->next) {
361 if (!fiface && !(iface->dev->flags & IFF_LOOPBACK))
362 fiface = iface;
363 if (!(iface->dev->flags & (IFF_LOOPBACK | IFF_POINTOPOINT))) {
364 retval = &iface->address;
365 goto out;
366 }
367 }
368
369 if (fiface)
370 retval = &fiface->address;
371 else if (atalk_interfaces)
372 retval = &atalk_interfaces->address;
373 else
374 retval = NULL;
375out:
376 read_unlock_bh(&atalk_interfaces_lock);
377 return retval;
378}
379
380/*
381 * Find a match for 'any network' - ie any of our interfaces with that
382 * node number will do just nicely.
383 */
384static struct atalk_iface *atalk_find_anynet(int node, struct net_device *dev)
385{
386 struct atalk_iface *iface = dev->atalk_ptr;
387
388 if (!iface || iface->status & ATIF_PROBE)
389 goto out_err;
390
391 if (node != ATADDR_BCAST &&
392 iface->address.s_node != node &&
393 node != ATADDR_ANYNODE)
394 goto out_err;
395out:
396 return iface;
397out_err:
398 iface = NULL;
399 goto out;
400}
401
402/* Find a match for a specific network:node pair */
f6e276ee 403static struct atalk_iface *atalk_find_interface(__be16 net, int node)
1da177e4
LT
404{
405 struct atalk_iface *iface;
406
407 read_lock_bh(&atalk_interfaces_lock);
408 for (iface = atalk_interfaces; iface; iface = iface->next) {
409 if ((node == ATADDR_BCAST ||
410 node == ATADDR_ANYNODE ||
411 iface->address.s_node == node) &&
412 iface->address.s_net == net &&
413 !(iface->status & ATIF_PROBE))
414 break;
415
416 /* XXXX.0 -- net.0 returns the iface associated with net */
417 if (node == ATADDR_ANYNODE && net != ATADDR_ANYNET &&
418 ntohs(iface->nets.nr_firstnet) <= ntohs(net) &&
419 ntohs(net) <= ntohs(iface->nets.nr_lastnet))
ed4477b9 420 break;
1da177e4
LT
421 }
422 read_unlock_bh(&atalk_interfaces_lock);
423 return iface;
424}
425
426
427/*
428 * Find a route for an AppleTalk packet. This ought to get cached in
429 * the socket (later on...). We know about host routes and the fact
430 * that a route must be direct to broadcast.
431 */
432static struct atalk_route *atrtr_find(struct atalk_addr *target)
433{
434 /*
ed4477b9 435 * we must search through all routes unless we find a
1da177e4
LT
436 * host route, because some host routes might overlap
437 * network routes
438 */
439 struct atalk_route *net_route = NULL;
440 struct atalk_route *r;
ed4477b9 441
1da177e4
LT
442 read_lock_bh(&atalk_routes_lock);
443 for (r = atalk_routes; r; r = r->next) {
444 if (!(r->flags & RTF_UP))
445 continue;
446
447 if (r->target.s_net == target->s_net) {
448 if (r->flags & RTF_HOST) {
449 /*
450 * if this host route is for the target,
451 * the we're done
452 */
453 if (r->target.s_node == target->s_node)
454 goto out;
455 } else
456 /*
457 * this route will work if there isn't a
458 * direct host route, so cache it
459 */
460 net_route = r;
461 }
462 }
ed4477b9
YH
463
464 /*
1da177e4
LT
465 * if we found a network route but not a direct host
466 * route, then return it
467 */
468 if (net_route)
469 r = net_route;
470 else if (atrtr_default.dev)
471 r = &atrtr_default;
472 else /* No route can be found */
473 r = NULL;
474out:
475 read_unlock_bh(&atalk_routes_lock);
476 return r;
477}
478
479
480/*
481 * Given an AppleTalk network, find the device to use. This can be
482 * a simple lookup.
483 */
484struct net_device *atrtr_get_dev(struct atalk_addr *sa)
485{
486 struct atalk_route *atr = atrtr_find(sa);
487 return atr ? atr->dev : NULL;
488}
489
490/* Set up a default router */
491static void atrtr_set_default(struct net_device *dev)
492{
493 atrtr_default.dev = dev;
494 atrtr_default.flags = RTF_UP;
495 atrtr_default.gateway.s_net = htons(0);
496 atrtr_default.gateway.s_node = 0;
497}
498
499/*
500 * Add a router. Basically make sure it looks valid and stuff the
501 * entry in the list. While it uses netranges we always set them to one
502 * entry to work like netatalk.
503 */
504static int atrtr_create(struct rtentry *r, struct net_device *devhint)
505{
506 struct sockaddr_at *ta = (struct sockaddr_at *)&r->rt_dst;
507 struct sockaddr_at *ga = (struct sockaddr_at *)&r->rt_gateway;
508 struct atalk_route *rt;
509 struct atalk_iface *iface, *riface;
510 int retval = -EINVAL;
511
512 /*
513 * Fixme: Raise/Lower a routing change semaphore for these
514 * operations.
515 */
516
517 /* Validate the request */
518 if (ta->sat_family != AF_APPLETALK ||
519 (!devhint && ga->sat_family != AF_APPLETALK))
520 goto out;
521
522 /* Now walk the routing table and make our decisions */
523 write_lock_bh(&atalk_routes_lock);
524 for (rt = atalk_routes; rt; rt = rt->next) {
525 if (r->rt_flags != rt->flags)
526 continue;
527
528 if (ta->sat_addr.s_net == rt->target.s_net) {
529 if (!(rt->flags & RTF_HOST))
530 break;
531 if (ta->sat_addr.s_node == rt->target.s_node)
532 break;
533 }
534 }
535
536 if (!devhint) {
537 riface = NULL;
538
539 read_lock_bh(&atalk_interfaces_lock);
540 for (iface = atalk_interfaces; iface; iface = iface->next) {
541 if (!riface &&
542 ntohs(ga->sat_addr.s_net) >=
ed4477b9 543 ntohs(iface->nets.nr_firstnet) &&
1da177e4 544 ntohs(ga->sat_addr.s_net) <=
ed4477b9 545 ntohs(iface->nets.nr_lastnet))
1da177e4
LT
546 riface = iface;
547
548 if (ga->sat_addr.s_net == iface->address.s_net &&
549 ga->sat_addr.s_node == iface->address.s_node)
550 riface = iface;
ed4477b9 551 }
1da177e4
LT
552 read_unlock_bh(&atalk_interfaces_lock);
553
554 retval = -ENETUNREACH;
555 if (!riface)
556 goto out_unlock;
557
558 devhint = riface->dev;
559 }
560
561 if (!rt) {
0da974f4 562 rt = kzalloc(sizeof(*rt), GFP_ATOMIC);
1da177e4
LT
563
564 retval = -ENOBUFS;
565 if (!rt)
566 goto out_unlock;
1da177e4
LT
567
568 rt->next = atalk_routes;
569 atalk_routes = rt;
570 }
571
572 /* Fill in the routing entry */
573 rt->target = ta->sat_addr;
c7f905f0 574 dev_hold(devhint);
1da177e4
LT
575 rt->dev = devhint;
576 rt->flags = r->rt_flags;
577 rt->gateway = ga->sat_addr;
578
579 retval = 0;
580out_unlock:
581 write_unlock_bh(&atalk_routes_lock);
582out:
583 return retval;
584}
585
586/* Delete a route. Find it and discard it */
587static int atrtr_delete(struct atalk_addr * addr)
588{
589 struct atalk_route **r = &atalk_routes;
590 int retval = 0;
591 struct atalk_route *tmp;
592
593 write_lock_bh(&atalk_routes_lock);
594 while ((tmp = *r) != NULL) {
595 if (tmp->target.s_net == addr->s_net &&
596 (!(tmp->flags&RTF_GATEWAY) ||
597 tmp->target.s_node == addr->s_node)) {
598 *r = tmp->next;
599 dev_put(tmp->dev);
600 kfree(tmp);
601 goto out;
602 }
603 r = &tmp->next;
604 }
605 retval = -ENOENT;
606out:
607 write_unlock_bh(&atalk_routes_lock);
608 return retval;
609}
610
611/*
612 * Called when a device is downed. Just throw away any routes
613 * via it.
614 */
615static void atrtr_device_down(struct net_device *dev)
616{
617 struct atalk_route **r = &atalk_routes;
618 struct atalk_route *tmp;
619
620 write_lock_bh(&atalk_routes_lock);
621 while ((tmp = *r) != NULL) {
622 if (tmp->dev == dev) {
623 *r = tmp->next;
624 dev_put(dev);
625 kfree(tmp);
626 } else
627 r = &tmp->next;
628 }
629 write_unlock_bh(&atalk_routes_lock);
630
631 if (atrtr_default.dev == dev)
632 atrtr_set_default(NULL);
633}
634
635/* Actually down the interface */
636static inline void atalk_dev_down(struct net_device *dev)
637{
638 atrtr_device_down(dev); /* Remove all routes for the device */
639 aarp_device_down(dev); /* Remove AARP entries for the device */
640 atif_drop_device(dev); /* Remove the device */
641}
642
643/*
644 * A device event has occurred. Watch for devices going down and
645 * delete our use of them (iface and route).
646 */
647static int ddp_device_event(struct notifier_block *this, unsigned long event,
648 void *ptr)
649{
890d52d3
EB
650 struct net_device *dev = ptr;
651
1da177e4
LT
652 if (event == NETDEV_DOWN)
653 /* Discard any use of this */
890d52d3 654 atalk_dev_down(dev);
1da177e4
LT
655
656 return NOTIFY_DONE;
657}
658
659/* ioctl calls. Shouldn't even need touching */
660/* Device configuration ioctl calls */
661static int atif_ioctl(int cmd, void __user *arg)
662{
663 static char aarp_mcast[6] = { 0x09, 0x00, 0x00, 0xFF, 0xFF, 0xFF };
664 struct ifreq atreq;
665 struct atalk_netrange *nr;
666 struct sockaddr_at *sa;
667 struct net_device *dev;
668 struct atalk_iface *atif;
669 int ct;
670 int limit;
671 struct rtentry rtdef;
672 int add_route;
673
674 if (copy_from_user(&atreq, arg, sizeof(atreq)))
675 return -EFAULT;
676
677 dev = __dev_get_by_name(atreq.ifr_name);
678 if (!dev)
679 return -ENODEV;
680
681 sa = (struct sockaddr_at *)&atreq.ifr_addr;
682 atif = atalk_find_dev(dev);
683
684 switch (cmd) {
685 case SIOCSIFADDR:
686 if (!capable(CAP_NET_ADMIN))
687 return -EPERM;
688 if (sa->sat_family != AF_APPLETALK)
689 return -EINVAL;
690 if (dev->type != ARPHRD_ETHER &&
691 dev->type != ARPHRD_LOOPBACK &&
692 dev->type != ARPHRD_LOCALTLK &&
693 dev->type != ARPHRD_PPP)
694 return -EPROTONOSUPPORT;
695
696 nr = (struct atalk_netrange *)&sa->sat_zero[0];
697 add_route = 1;
698
699 /*
700 * if this is a point-to-point iface, and we already
701 * have an iface for this AppleTalk address, then we
702 * should not add a route
703 */
704 if ((dev->flags & IFF_POINTOPOINT) &&
705 atalk_find_interface(sa->sat_addr.s_net,
ed4477b9 706 sa->sat_addr.s_node)) {
1da177e4
LT
707 printk(KERN_DEBUG "AppleTalk: point-to-point "
708 "interface added with "
709 "existing address\n");
710 add_route = 0;
711 }
ed4477b9 712
1da177e4
LT
713 /*
714 * Phase 1 is fine on LocalTalk but we don't do
715 * EtherTalk phase 1. Anyone wanting to add it go ahead.
716 */
717 if (dev->type == ARPHRD_ETHER && nr->nr_phase != 2)
718 return -EPROTONOSUPPORT;
719 if (sa->sat_addr.s_node == ATADDR_BCAST ||
720 sa->sat_addr.s_node == 254)
721 return -EINVAL;
722 if (atif) {
723 /* Already setting address */
724 if (atif->status & ATIF_PROBE)
725 return -EBUSY;
726
727 atif->address.s_net = sa->sat_addr.s_net;
728 atif->address.s_node = sa->sat_addr.s_node;
729 atrtr_device_down(dev); /* Flush old routes */
730 } else {
731 atif = atif_add_device(dev, &sa->sat_addr);
732 if (!atif)
733 return -ENOMEM;
734 }
735 atif->nets = *nr;
736
737 /*
738 * Check if the chosen address is used. If so we
739 * error and atalkd will try another.
740 */
741
742 if (!(dev->flags & IFF_LOOPBACK) &&
743 !(dev->flags & IFF_POINTOPOINT) &&
744 atif_probe_device(atif) < 0) {
745 atif_drop_device(dev);
746 return -EADDRINUSE;
747 }
748
749 /* Hey it worked - add the direct routes */
750 sa = (struct sockaddr_at *)&rtdef.rt_gateway;
751 sa->sat_family = AF_APPLETALK;
752 sa->sat_addr.s_net = atif->address.s_net;
753 sa->sat_addr.s_node = atif->address.s_node;
754 sa = (struct sockaddr_at *)&rtdef.rt_dst;
755 rtdef.rt_flags = RTF_UP;
756 sa->sat_family = AF_APPLETALK;
757 sa->sat_addr.s_node = ATADDR_ANYNODE;
758 if (dev->flags & IFF_LOOPBACK ||
759 dev->flags & IFF_POINTOPOINT)
760 rtdef.rt_flags |= RTF_HOST;
761
762 /* Routerless initial state */
763 if (nr->nr_firstnet == htons(0) &&
764 nr->nr_lastnet == htons(0xFFFE)) {
765 sa->sat_addr.s_net = atif->address.s_net;
766 atrtr_create(&rtdef, dev);
767 atrtr_set_default(dev);
768 } else {
769 limit = ntohs(nr->nr_lastnet);
770 if (limit - ntohs(nr->nr_firstnet) > 4096) {
771 printk(KERN_WARNING "Too many routes/"
772 "iface.\n");
773 return -EINVAL;
774 }
775 if (add_route)
776 for (ct = ntohs(nr->nr_firstnet);
777 ct <= limit; ct++) {
778 sa->sat_addr.s_net = htons(ct);
779 atrtr_create(&rtdef, dev);
780 }
781 }
782 dev_mc_add(dev, aarp_mcast, 6, 1);
783 return 0;
784
785 case SIOCGIFADDR:
786 if (!atif)
787 return -EADDRNOTAVAIL;
788
789 sa->sat_family = AF_APPLETALK;
790 sa->sat_addr = atif->address;
791 break;
792
793 case SIOCGIFBRDADDR:
794 if (!atif)
795 return -EADDRNOTAVAIL;
796
797 sa->sat_family = AF_APPLETALK;
798 sa->sat_addr.s_net = atif->address.s_net;
799 sa->sat_addr.s_node = ATADDR_BCAST;
800 break;
801
ed4477b9
YH
802 case SIOCATALKDIFADDR:
803 case SIOCDIFADDR:
1da177e4
LT
804 if (!capable(CAP_NET_ADMIN))
805 return -EPERM;
806 if (sa->sat_family != AF_APPLETALK)
807 return -EINVAL;
808 atalk_dev_down(dev);
ed4477b9 809 break;
1da177e4
LT
810
811 case SIOCSARP:
812 if (!capable(CAP_NET_ADMIN))
ed4477b9
YH
813 return -EPERM;
814 if (sa->sat_family != AF_APPLETALK)
815 return -EINVAL;
816 if (!atif)
817 return -EADDRNOTAVAIL;
818
819 /*
820 * for now, we only support proxy AARP on ELAP;
821 * we should be able to do it for LocalTalk, too.
822 */
823 if (dev->type != ARPHRD_ETHER)
824 return -EPROTONOSUPPORT;
825
826 /*
827 * atif points to the current interface on this network;
828 * we aren't concerned about its current status (at
1da177e4
LT
829 * least for now), but it has all the settings about
830 * the network we're going to probe. Consequently, it
831 * must exist.
ed4477b9
YH
832 */
833 if (!atif)
834 return -EADDRNOTAVAIL;
835
836 nr = (struct atalk_netrange *)&(atif->nets);
837 /*
838 * Phase 1 is fine on Localtalk but we don't do
839 * Ethertalk phase 1. Anyone wanting to add it go ahead.
840 */
841 if (dev->type == ARPHRD_ETHER && nr->nr_phase != 2)
842 return -EPROTONOSUPPORT;
843
844 if (sa->sat_addr.s_node == ATADDR_BCAST ||
1da177e4 845 sa->sat_addr.s_node == 254)
ed4477b9
YH
846 return -EINVAL;
847
848 /*
849 * Check if the chosen address is used. If so we
850 * error and ATCP will try another.
851 */
852 if (atif_proxy_probe_device(atif, &(sa->sat_addr)) < 0)
853 return -EADDRINUSE;
854
1da177e4 855 /*
ed4477b9 856 * We now have an address on the local network, and
1da177e4
LT
857 * the AARP code will defend it for us until we take it
858 * down. We don't set up any routes right now, because
859 * ATCP will install them manually via SIOCADDRT.
ed4477b9
YH
860 */
861 break;
862
863 case SIOCDARP:
864 if (!capable(CAP_NET_ADMIN))
865 return -EPERM;
866 if (sa->sat_family != AF_APPLETALK)
867 return -EINVAL;
868 if (!atif)
869 return -EADDRNOTAVAIL;
870
871 /* give to aarp module to remove proxy entry */
872 aarp_proxy_remove(atif->dev, &(sa->sat_addr));
873 return 0;
1da177e4
LT
874 }
875
876 return copy_to_user(arg, &atreq, sizeof(atreq)) ? -EFAULT : 0;
877}
878
879/* Routing ioctl() calls */
880static int atrtr_ioctl(unsigned int cmd, void __user *arg)
881{
882 struct rtentry rt;
883
884 if (copy_from_user(&rt, arg, sizeof(rt)))
885 return -EFAULT;
886
887 switch (cmd) {
888 case SIOCDELRT:
889 if (rt.rt_dst.sa_family != AF_APPLETALK)
890 return -EINVAL;
891 return atrtr_delete(&((struct sockaddr_at *)
892 &rt.rt_dst)->sat_addr);
893
894 case SIOCADDRT: {
895 struct net_device *dev = NULL;
896 if (rt.rt_dev) {
897 char name[IFNAMSIZ];
898 if (copy_from_user(name, rt.rt_dev, IFNAMSIZ-1))
899 return -EFAULT;
900 name[IFNAMSIZ-1] = '\0';
901 dev = __dev_get_by_name(name);
902 if (!dev)
903 return -ENODEV;
ed4477b9 904 }
1da177e4
LT
905 return atrtr_create(&rt, dev);
906 }
907 }
908 return -EINVAL;
909}
910
911/**************************************************************************\
912* *
913* Handling for system calls applied via the various interfaces to an *
914* AppleTalk socket object. *
915* *
916\**************************************************************************/
917
918/*
919 * Checksum: This is 'optional'. It's quite likely also a good
920 * candidate for assembler hackery 8)
921 */
ed4477b9 922static unsigned long atalk_sum_partial(const unsigned char *data,
1da177e4
LT
923 int len, unsigned long sum)
924{
925 /* This ought to be unwrapped neatly. I'll trust gcc for now */
926 while (len--) {
927 sum += *data;
928 sum <<= 1;
929 if (sum & 0x10000) {
930 sum++;
931 sum &= 0xffff;
932 }
933 data++;
934 }
935 return sum;
936}
937
938/* Checksum skb data -- similar to skb_checksum */
939static unsigned long atalk_sum_skb(const struct sk_buff *skb, int offset,
940 int len, unsigned long sum)
941{
1a028e50 942 int start = skb_headlen(skb);
1da177e4
LT
943 int i, copy;
944
945 /* checksum stuff in header space */
1a028e50 946 if ( (copy = start - offset) > 0) {
1da177e4
LT
947 if (copy > len)
948 copy = len;
949 sum = atalk_sum_partial(skb->data + offset, copy, sum);
ed4477b9 950 if ( (len -= copy) == 0)
1da177e4
LT
951 return sum;
952
953 offset += copy;
954 }
955
956 /* checksum stuff in frags */
957 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
1a028e50 958 int end;
1da177e4 959
1a028e50
DM
960 BUG_TRAP(start <= offset + len);
961
962 end = start + skb_shinfo(skb)->frags[i].size;
1da177e4
LT
963 if ((copy = end - offset) > 0) {
964 u8 *vaddr;
965 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
966
967 if (copy > len)
968 copy = len;
969 vaddr = kmap_skb_frag(frag);
1a028e50
DM
970 sum = atalk_sum_partial(vaddr + frag->page_offset +
971 offset - start, copy, sum);
1da177e4
LT
972 kunmap_skb_frag(vaddr);
973
974 if (!(len -= copy))
975 return sum;
976 offset += copy;
977 }
1a028e50 978 start = end;
1da177e4
LT
979 }
980
981 if (skb_shinfo(skb)->frag_list) {
982 struct sk_buff *list = skb_shinfo(skb)->frag_list;
983
984 for (; list; list = list->next) {
1a028e50
DM
985 int end;
986
987 BUG_TRAP(start <= offset + len);
1da177e4 988
1a028e50 989 end = start + list->len;
1da177e4
LT
990 if ((copy = end - offset) > 0) {
991 if (copy > len)
992 copy = len;
1a028e50
DM
993 sum = atalk_sum_skb(list, offset - start,
994 copy, sum);
1da177e4
LT
995 if ((len -= copy) == 0)
996 return sum;
997 offset += copy;
998 }
1a028e50 999 start = end;
1da177e4
LT
1000 }
1001 }
1002
1003 BUG_ON(len > 0);
1004
1005 return sum;
1006}
1007
2a50f28c 1008static __be16 atalk_checksum(const struct sk_buff *skb, int len)
1da177e4
LT
1009{
1010 unsigned long sum;
1011
1012 /* skip header 4 bytes */
1013 sum = atalk_sum_skb(skb, 4, len-4, 0);
1014
1015 /* Use 0xFFFF for 0. 0 itself means none */
2a50f28c 1016 return sum ? htons((unsigned short)sum) : htons(0xFFFF);
1da177e4
LT
1017}
1018
1019static struct proto ddp_proto = {
1020 .name = "DDP",
1021 .owner = THIS_MODULE,
1022 .obj_size = sizeof(struct atalk_sock),
1023};
1024
1025/*
1026 * Create a socket. Initialise the socket, blank the addresses
1027 * set the state.
1028 */
1029static int atalk_create(struct socket *sock, int protocol)
1030{
1031 struct sock *sk;
1032 int rc = -ESOCKTNOSUPPORT;
1033
1034 /*
1035 * We permit SOCK_DGRAM and RAW is an extension. It is trivial to do
ed4477b9 1036 * and gives you the full ELAP frame. Should be handy for CAP 8)
1da177e4
LT
1037 */
1038 if (sock->type != SOCK_RAW && sock->type != SOCK_DGRAM)
1039 goto out;
1040 rc = -ENOMEM;
1041 sk = sk_alloc(PF_APPLETALK, GFP_KERNEL, &ddp_proto, 1);
1042 if (!sk)
1043 goto out;
1044 rc = 0;
1045 sock->ops = &atalk_dgram_ops;
1046 sock_init_data(sock, sk);
1047
1048 /* Checksums on by default */
1049 sock_set_flag(sk, SOCK_ZAPPED);
1050out:
1051 return rc;
1052}
1053
1054/* Free a socket. No work needed */
1055static int atalk_release(struct socket *sock)
1056{
1057 struct sock *sk = sock->sk;
1058
1059 if (sk) {
1060 sock_orphan(sk);
1061 sock->sk = NULL;
1062 atalk_destroy_socket(sk);
1063 }
1064 return 0;
1065}
1066
1067/**
1068 * atalk_pick_and_bind_port - Pick a source port when one is not given
1069 * @sk - socket to insert into the tables
1070 * @sat - address to search for
1071 *
1072 * Pick a source port when one is not given. If we can find a suitable free
1073 * one, we insert the socket into the tables using it.
1074 *
1075 * This whole operation must be atomic.
1076 */
1077static int atalk_pick_and_bind_port(struct sock *sk, struct sockaddr_at *sat)
1078{
1079 int retval;
1080
1081 write_lock_bh(&atalk_sockets_lock);
1082
1083 for (sat->sat_port = ATPORT_RESERVED;
1084 sat->sat_port < ATPORT_LAST;
1085 sat->sat_port++) {
1086 struct sock *s;
1087 struct hlist_node *node;
1088
1089 sk_for_each(s, node, &atalk_sockets) {
1090 struct atalk_sock *at = at_sk(s);
1091
1092 if (at->src_net == sat->sat_addr.s_net &&
1093 at->src_node == sat->sat_addr.s_node &&
1094 at->src_port == sat->sat_port)
1095 goto try_next_port;
1096 }
1097
1098 /* Wheee, it's free, assign and insert. */
1099 __atalk_insert_socket(sk);
1100 at_sk(sk)->src_port = sat->sat_port;
1101 retval = 0;
1102 goto out;
1103
1104try_next_port:;
1105 }
1106
1107 retval = -EBUSY;
1108out:
1109 write_unlock_bh(&atalk_sockets_lock);
1110 return retval;
1111}
1112
1113static int atalk_autobind(struct sock *sk)
1114{
1115 struct atalk_sock *at = at_sk(sk);
1116 struct sockaddr_at sat;
1117 struct atalk_addr *ap = atalk_find_primary();
1118 int n = -EADDRNOTAVAIL;
1119
1120 if (!ap || ap->s_net == htons(ATADDR_ANYNET))
1121 goto out;
1122
1123 at->src_net = sat.sat_addr.s_net = ap->s_net;
1124 at->src_node = sat.sat_addr.s_node = ap->s_node;
1125
1126 n = atalk_pick_and_bind_port(sk, &sat);
1127 if (!n)
1128 sock_reset_flag(sk, SOCK_ZAPPED);
1129out:
1130 return n;
1131}
1132
1133/* Set the address 'our end' of the connection */
1134static int atalk_bind(struct socket *sock, struct sockaddr *uaddr, int addr_len)
1135{
1136 struct sockaddr_at *addr = (struct sockaddr_at *)uaddr;
1137 struct sock *sk = sock->sk;
1138 struct atalk_sock *at = at_sk(sk);
1139
1140 if (!sock_flag(sk, SOCK_ZAPPED) ||
1141 addr_len != sizeof(struct sockaddr_at))
1142 return -EINVAL;
1143
1144 if (addr->sat_family != AF_APPLETALK)
1145 return -EAFNOSUPPORT;
1146
1147 if (addr->sat_addr.s_net == htons(ATADDR_ANYNET)) {
1148 struct atalk_addr *ap = atalk_find_primary();
1149
1150 if (!ap)
1151 return -EADDRNOTAVAIL;
1152
1153 at->src_net = addr->sat_addr.s_net = ap->s_net;
1154 at->src_node = addr->sat_addr.s_node= ap->s_node;
1155 } else {
1156 if (!atalk_find_interface(addr->sat_addr.s_net,
1157 addr->sat_addr.s_node))
1158 return -EADDRNOTAVAIL;
1159
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) {
1165 int n = atalk_pick_and_bind_port(sk, addr);
1166
1167 if (n < 0)
1168 return n;
1169 } else {
1170 at->src_port = addr->sat_port;
1171
1172 if (atalk_find_or_insert_socket(sk, addr))
1173 return -EADDRINUSE;
1174 }
1175
1176 sock_reset_flag(sk, SOCK_ZAPPED);
1177 return 0;
1178}
1179
1180/* Set the address we talk to */
1181static int atalk_connect(struct socket *sock, struct sockaddr *uaddr,
1182 int addr_len, int flags)
1183{
1184 struct sock *sk = sock->sk;
1185 struct atalk_sock *at = at_sk(sk);
1186 struct sockaddr_at *addr;
1187
1188 sk->sk_state = TCP_CLOSE;
1189 sock->state = SS_UNCONNECTED;
1190
1191 if (addr_len != sizeof(*addr))
1192 return -EINVAL;
1193
1194 addr = (struct sockaddr_at *)uaddr;
1195
1196 if (addr->sat_family != AF_APPLETALK)
1197 return -EAFNOSUPPORT;
1198
1199 if (addr->sat_addr.s_node == ATADDR_BCAST &&
1200 !sock_flag(sk, SOCK_BROADCAST)) {
ed4477b9 1201#if 1
1da177e4
LT
1202 printk(KERN_WARNING "%s is broken and did not set "
1203 "SO_BROADCAST. It will break when 2.2 is "
1204 "released.\n",
1205 current->comm);
1206#else
1207 return -EACCES;
ed4477b9 1208#endif
1da177e4
LT
1209 }
1210
1211 if (sock_flag(sk, SOCK_ZAPPED))
1212 if (atalk_autobind(sk) < 0)
1213 return -EBUSY;
1214
1215 if (!atrtr_get_dev(&addr->sat_addr))
1216 return -ENETUNREACH;
1217
1218 at->dest_port = addr->sat_port;
1219 at->dest_net = addr->sat_addr.s_net;
1220 at->dest_node = addr->sat_addr.s_node;
1221
1222 sock->state = SS_CONNECTED;
1223 sk->sk_state = TCP_ESTABLISHED;
1224 return 0;
1225}
1226
1227/*
1228 * Find the name of an AppleTalk socket. Just copy the right
1229 * fields into the sockaddr.
1230 */
1231static int atalk_getname(struct socket *sock, struct sockaddr *uaddr,
1232 int *uaddr_len, int peer)
1233{
1234 struct sockaddr_at sat;
1235 struct sock *sk = sock->sk;
1236 struct atalk_sock *at = at_sk(sk);
1237
1238 if (sock_flag(sk, SOCK_ZAPPED))
1239 if (atalk_autobind(sk) < 0)
1240 return -ENOBUFS;
1241
1242 *uaddr_len = sizeof(struct sockaddr_at);
1243
1244 if (peer) {
1245 if (sk->sk_state != TCP_ESTABLISHED)
1246 return -ENOTCONN;
1247
1248 sat.sat_addr.s_net = at->dest_net;
1249 sat.sat_addr.s_node = at->dest_node;
1250 sat.sat_port = at->dest_port;
1251 } else {
1252 sat.sat_addr.s_net = at->src_net;
1253 sat.sat_addr.s_node = at->src_node;
1254 sat.sat_port = at->src_port;
1255 }
1256
1257 sat.sat_family = AF_APPLETALK;
1258 memcpy(uaddr, &sat, sizeof(sat));
1259 return 0;
1260}
1261
1262#if defined(CONFIG_IPDDP) || defined(CONFIG_IPDDP_MODULE)
1263static __inline__ int is_ip_over_ddp(struct sk_buff *skb)
1264{
ed4477b9 1265 return skb->data[12] == 22;
1da177e4
LT
1266}
1267
1268static int handle_ip_over_ddp(struct sk_buff *skb)
1269{
ed4477b9 1270 struct net_device *dev = __dev_get_by_name("ipddp0");
1da177e4
LT
1271 struct net_device_stats *stats;
1272
1273 /* This needs to be able to handle ipddp"N" devices */
ed4477b9
YH
1274 if (!dev)
1275 return -ENODEV;
1da177e4 1276
ed4477b9
YH
1277 skb->protocol = htons(ETH_P_IP);
1278 skb_pull(skb, 13);
1279 skb->dev = dev;
badff6d0 1280 skb_reset_transport_header(skb);
1da177e4
LT
1281
1282 stats = dev->priv;
ed4477b9
YH
1283 stats->rx_packets++;
1284 stats->rx_bytes += skb->len + 13;
1285 netif_rx(skb); /* Send the SKB up to a higher place. */
1da177e4
LT
1286 return 0;
1287}
1288#else
1289/* make it easy for gcc to optimize this test out, i.e. kill the code */
1290#define is_ip_over_ddp(skb) 0
1291#define handle_ip_over_ddp(skb) 0
1292#endif
1293
1294static void atalk_route_packet(struct sk_buff *skb, struct net_device *dev,
2a50f28c 1295 struct ddpehdr *ddp, __u16 len_hops,
1da177e4
LT
1296 int origlen)
1297{
1298 struct atalk_route *rt;
1299 struct atalk_addr ta;
1300
1301 /*
1302 * Don't route multicast, etc., packets, or packets sent to "this
ed4477b9 1303 * network"
1da177e4
LT
1304 */
1305 if (skb->pkt_type != PACKET_HOST || !ddp->deh_dnet) {
1306 /*
1307 * FIXME:
1308 *
1309 * Can it ever happen that a packet is from a PPP iface and
1310 * needs to be broadcast onto the default network?
1311 */
1312 if (dev->type == ARPHRD_PPP)
1313 printk(KERN_DEBUG "AppleTalk: didn't forward broadcast "
1314 "packet received from PPP iface\n");
1315 goto free_it;
1316 }
1317
1318 ta.s_net = ddp->deh_dnet;
1319 ta.s_node = ddp->deh_dnode;
1320
1321 /* Route the packet */
1322 rt = atrtr_find(&ta);
2a50f28c
AV
1323 /* increment hops count */
1324 len_hops += 1 << 10;
1325 if (!rt || !(len_hops & (15 << 10)))
1da177e4 1326 goto free_it;
2a50f28c 1327
1da177e4 1328 /* FIXME: use skb->cb to be able to use shared skbs */
1da177e4
LT
1329
1330 /*
1331 * Route goes through another gateway, so set the target to the
1332 * gateway instead.
1333 */
1334
1335 if (rt->flags & RTF_GATEWAY) {
1336 ta.s_net = rt->gateway.s_net;
1337 ta.s_node = rt->gateway.s_node;
1338 }
1339
ed4477b9
YH
1340 /* Fix up skb->len field */
1341 skb_trim(skb, min_t(unsigned int, origlen,
1da177e4 1342 (rt->dev->hard_header_len +
2a50f28c 1343 ddp_dl->header_length + (len_hops & 1023))));
1da177e4 1344
1da177e4 1345 /* FIXME: use skb->cb to be able to use shared skbs */
2a50f28c 1346 ddp->deh_len_hops = htons(len_hops);
1da177e4
LT
1347
1348 /*
1349 * Send the buffer onwards
1350 *
1351 * Now we must always be careful. If it's come from LocalTalk to
1352 * EtherTalk it might not fit
1353 *
1354 * Order matters here: If a packet has to be copied to make a new
1355 * headroom (rare hopefully) then it won't need unsharing.
1356 *
1357 * Note. ddp-> becomes invalid at the realloc.
1358 */
1359 if (skb_headroom(skb) < 22) {
1360 /* 22 bytes - 12 ether, 2 len, 3 802.2 5 snap */
1361 struct sk_buff *nskb = skb_realloc_headroom(skb, 32);
1362 kfree_skb(skb);
ed4477b9 1363 if (!nskb)
1da177e4
LT
1364 goto out;
1365 skb = nskb;
1366 } else
1367 skb = skb_unshare(skb, GFP_ATOMIC);
ed4477b9 1368
1da177e4
LT
1369 /*
1370 * If the buffer didn't vanish into the lack of space bitbucket we can
1371 * send it.
1372 */
1373 if (skb && aarp_send_ddp(rt->dev, skb, &ta, NULL) == -1)
1374 goto free_it;
1375out:
1376 return;
1377free_it:
1378 kfree_skb(skb);
1379}
1380
1381/**
1382 * atalk_rcv - Receive a packet (in skb) from device dev
1383 * @skb - packet received
1384 * @dev - network device where the packet comes from
1385 * @pt - packet type
1386 *
1387 * Receive a packet (in skb) from device dev. This has come from the SNAP
b0e380b1
ACM
1388 * decoder, and on entry skb->transport_header is the DDP header, skb->len
1389 * is the DDP header, skb->len is the DDP length. The physical headers
1390 * have been extracted. PPP should probably pass frames marked as for this
1391 * layer. [ie ARPHRD_ETHERTALK]
1da177e4
LT
1392 */
1393static int atalk_rcv(struct sk_buff *skb, struct net_device *dev,
f2ccd8fa 1394 struct packet_type *pt, struct net_device *orig_dev)
1da177e4
LT
1395{
1396 struct ddpehdr *ddp;
1397 struct sock *sock;
1398 struct atalk_iface *atif;
1399 struct sockaddr_at tosat;
ed4477b9 1400 int origlen;
2a50f28c 1401 __u16 len_hops;
1da177e4
LT
1402
1403 /* Don't mangle buffer if shared */
ed4477b9 1404 if (!(skb = skb_share_check(skb, GFP_ATOMIC)))
1da177e4 1405 goto out;
ed4477b9 1406
1da177e4
LT
1407 /* Size check and make sure header is contiguous */
1408 if (!pskb_may_pull(skb, sizeof(*ddp)))
1409 goto freeit;
1410
1411 ddp = ddp_hdr(skb);
1412
2a50f28c 1413 len_hops = ntohs(ddp->deh_len_hops);
1da177e4
LT
1414
1415 /* Trim buffer in case of stray trailing data */
1416 origlen = skb->len;
2a50f28c 1417 skb_trim(skb, min_t(unsigned int, skb->len, len_hops & 1023));
1da177e4
LT
1418
1419 /*
1420 * Size check to see if ddp->deh_len was crap
1421 * (Otherwise we'll detonate most spectacularly
75559c16 1422 * in the middle of atalk_checksum() or recvmsg()).
1da177e4 1423 */
75559c16
JD
1424 if (skb->len < sizeof(*ddp) || skb->len < (len_hops & 1023)) {
1425 pr_debug("AppleTalk: dropping corrupted frame (deh_len=%u, "
1426 "skb->len=%u)\n", len_hops & 1023, skb->len);
1da177e4 1427 goto freeit;
75559c16 1428 }
1da177e4
LT
1429
1430 /*
1431 * Any checksums. Note we don't do htons() on this == is assumed to be
1432 * valid for net byte orders all over the networking code...
1433 */
1434 if (ddp->deh_sum &&
2a50f28c 1435 atalk_checksum(skb, len_hops & 1023) != ddp->deh_sum)
1da177e4
LT
1436 /* Not a valid AppleTalk frame - dustbin time */
1437 goto freeit;
1438
1439 /* Check the packet is aimed at us */
1440 if (!ddp->deh_dnet) /* Net 0 is 'this network' */
1441 atif = atalk_find_anynet(ddp->deh_dnode, dev);
1442 else
1443 atif = atalk_find_interface(ddp->deh_dnet, ddp->deh_dnode);
1444
1da177e4 1445 if (!atif) {
64233bff
OD
1446 /* Not ours, so we route the packet via the correct
1447 * AppleTalk iface
1448 */
2a50f28c 1449 atalk_route_packet(skb, dev, ddp, len_hops, origlen);
1da177e4
LT
1450 goto out;
1451 }
1452
1453 /* if IP over DDP is not selected this code will be optimized out */
1454 if (is_ip_over_ddp(skb))
1455 return handle_ip_over_ddp(skb);
1456 /*
1457 * Which socket - atalk_search_socket() looks for a *full match*
1458 * of the <net, node, port> tuple.
1459 */
1460 tosat.sat_addr.s_net = ddp->deh_dnet;
1461 tosat.sat_addr.s_node = ddp->deh_dnode;
1462 tosat.sat_port = ddp->deh_dport;
1463
1464 sock = atalk_search_socket(&tosat, atif);
1465 if (!sock) /* But not one of our sockets */
1466 goto freeit;
1467
1468 /* Queue packet (standard) */
1469 skb->sk = sock;
1470
1471 if (sock_queue_rcv_skb(sock, skb) < 0)
1472 goto freeit;
1473out:
1474 return 0;
1475freeit:
1476 kfree_skb(skb);
1477 goto out;
1478}
1479
1480/*
1481 * Receive a LocalTalk frame. We make some demands on the caller here.
1482 * Caller must provide enough headroom on the packet to pull the short
1483 * header and append a long one.
1484 */
1485static int ltalk_rcv(struct sk_buff *skb, struct net_device *dev,
f2ccd8fa 1486 struct packet_type *pt, struct net_device *orig_dev)
1da177e4
LT
1487{
1488 /* Expand any short form frames */
98e399f8 1489 if (skb_mac_header(skb)[2] == 1) {
1da177e4
LT
1490 struct ddpehdr *ddp;
1491 /* Find our address */
1492 struct atalk_addr *ap = atalk_find_dev_addr(dev);
1493
2a50f28c 1494 if (!ap || skb->len < sizeof(__be16) || skb->len > 1023)
1da177e4
LT
1495 goto freeit;
1496
1497 /* Don't mangle buffer if shared */
ed4477b9 1498 if (!(skb = skb_share_check(skb, GFP_ATOMIC)))
1da177e4
LT
1499 return 0;
1500
1501 /*
1502 * The push leaves us with a ddephdr not an shdr, and
1503 * handily the port bytes in the right place preset.
1504 */
1505 ddp = (struct ddpehdr *) skb_push(skb, sizeof(*ddp) - 4);
1506
1507 /* Now fill in the long header */
1508
ed4477b9
YH
1509 /*
1510 * These two first. The mac overlays the new source/dest
1511 * network information so we MUST copy these before
1512 * we write the network numbers !
1513 */
1da177e4 1514
98e399f8
ACM
1515 ddp->deh_dnode = skb_mac_header(skb)[0]; /* From physical header */
1516 ddp->deh_snode = skb_mac_header(skb)[1]; /* From physical header */
1da177e4
LT
1517
1518 ddp->deh_dnet = ap->s_net; /* Network number */
1519 ddp->deh_snet = ap->s_net;
1520 ddp->deh_sum = 0; /* No checksum */
1521 /*
1522 * Not sure about this bit...
1523 */
2a50f28c
AV
1524 /* Non routable, so force a drop if we slip up later */
1525 ddp->deh_len_hops = htons(skb->len + (DDP_MAXHOPS << 10));
1da177e4 1526 }
badff6d0 1527 skb_reset_transport_header(skb);
1da177e4 1528
f2ccd8fa 1529 return atalk_rcv(skb, dev, pt, orig_dev);
1da177e4
LT
1530freeit:
1531 kfree_skb(skb);
1532 return 0;
1533}
1534
1535static int atalk_sendmsg(struct kiocb *iocb, struct socket *sock, struct msghdr *msg,
1536 size_t len)
1537{
1538 struct sock *sk = sock->sk;
1539 struct atalk_sock *at = at_sk(sk);
1540 struct sockaddr_at *usat = (struct sockaddr_at *)msg->msg_name;
1541 int flags = msg->msg_flags;
1542 int loopback = 0;
1543 struct sockaddr_at local_satalk, gsat;
1544 struct sk_buff *skb;
1545 struct net_device *dev;
1546 struct ddpehdr *ddp;
1547 int size;
1548 struct atalk_route *rt;
1549 int err;
1550
1551 if (flags & ~(MSG_DONTWAIT|MSG_CMSG_COMPAT))
1552 return -EINVAL;
1553
1554 if (len > DDP_MAXSZ)
1555 return -EMSGSIZE;
1556
1557 if (usat) {
1558 if (sock_flag(sk, SOCK_ZAPPED))
1559 if (atalk_autobind(sk) < 0)
1560 return -EBUSY;
1561
1562 if (msg->msg_namelen < sizeof(*usat) ||
1563 usat->sat_family != AF_APPLETALK)
1564 return -EINVAL;
1565
1566 /* netatalk doesn't implement this check */
1567 if (usat->sat_addr.s_node == ATADDR_BCAST &&
1568 !sock_flag(sk, SOCK_BROADCAST)) {
1569 printk(KERN_INFO "SO_BROADCAST: Fix your netatalk as "
1570 "it will break before 2.2\n");
1571#if 0
1572 return -EPERM;
1573#endif
1574 }
1575 } else {
1576 if (sk->sk_state != TCP_ESTABLISHED)
1577 return -ENOTCONN;
1578 usat = &local_satalk;
1579 usat->sat_family = AF_APPLETALK;
1580 usat->sat_port = at->dest_port;
1581 usat->sat_addr.s_node = at->dest_node;
1582 usat->sat_addr.s_net = at->dest_net;
1583 }
1584
1585 /* Build a packet */
1586 SOCK_DEBUG(sk, "SK %p: Got address.\n", sk);
1587
1588 /* For headers */
1589 size = sizeof(struct ddpehdr) + len + ddp_dl->header_length;
1590
1591 if (usat->sat_addr.s_net || usat->sat_addr.s_node == ATADDR_ANYNODE) {
1592 rt = atrtr_find(&usat->sat_addr);
1da177e4
LT
1593 } else {
1594 struct atalk_addr at_hint;
1595
1596 at_hint.s_node = 0;
1597 at_hint.s_net = at->src_net;
1598
1599 rt = atrtr_find(&at_hint);
1da177e4 1600 }
64233bff
OD
1601 if (!rt)
1602 return -ENETUNREACH;
1603
1604 dev = rt->dev;
1da177e4
LT
1605
1606 SOCK_DEBUG(sk, "SK %p: Size needed %d, device %s\n",
1607 sk, size, dev->name);
1608
1609 size += dev->hard_header_len;
1610 skb = sock_alloc_send_skb(sk, size, (flags & MSG_DONTWAIT), &err);
1611 if (!skb)
1612 return err;
ed4477b9 1613
1da177e4
LT
1614 skb->sk = sk;
1615 skb_reserve(skb, ddp_dl->header_length);
1616 skb_reserve(skb, dev->hard_header_len);
1617 skb->dev = dev;
1618
1619 SOCK_DEBUG(sk, "SK %p: Begin build.\n", sk);
1620
1621 ddp = (struct ddpehdr *)skb_put(skb, sizeof(struct ddpehdr));
2a50f28c 1622 ddp->deh_len_hops = htons(len + sizeof(*ddp));
1da177e4
LT
1623 ddp->deh_dnet = usat->sat_addr.s_net;
1624 ddp->deh_snet = at->src_net;
1625 ddp->deh_dnode = usat->sat_addr.s_node;
1626 ddp->deh_snode = at->src_node;
1627 ddp->deh_dport = usat->sat_port;
1628 ddp->deh_sport = at->src_port;
1629
1630 SOCK_DEBUG(sk, "SK %p: Copy user data (%Zd bytes).\n", sk, len);
1631
1632 err = memcpy_fromiovec(skb_put(skb, len), msg->msg_iov, len);
1633 if (err) {
1634 kfree_skb(skb);
1635 return -EFAULT;
1636 }
1637
1638 if (sk->sk_no_check == 1)
1639 ddp->deh_sum = 0;
1640 else
1641 ddp->deh_sum = atalk_checksum(skb, len + sizeof(*ddp));
1642
1643 /*
1644 * Loopback broadcast packets to non gateway targets (ie routes
1645 * to group we are in)
1646 */
1647 if (ddp->deh_dnode == ATADDR_BCAST &&
1648 !(rt->flags & RTF_GATEWAY) && !(dev->flags & IFF_LOOPBACK)) {
1649 struct sk_buff *skb2 = skb_copy(skb, GFP_KERNEL);
1650
1651 if (skb2) {
1652 loopback = 1;
1653 SOCK_DEBUG(sk, "SK %p: send out(copy).\n", sk);
1654 if (aarp_send_ddp(dev, skb2,
1655 &usat->sat_addr, NULL) == -1)
1656 kfree_skb(skb2);
1657 /* else queued/sent above in the aarp queue */
1658 }
1659 }
1660
1661 if (dev->flags & IFF_LOOPBACK || loopback) {
1662 SOCK_DEBUG(sk, "SK %p: Loop back.\n", sk);
1663 /* loop back */
1664 skb_orphan(skb);
64233bff
OD
1665 if (ddp->deh_dnode == ATADDR_BCAST) {
1666 struct atalk_addr at_lo;
1667
1668 at_lo.s_node = 0;
1669 at_lo.s_net = 0;
1670
1671 rt = atrtr_find(&at_lo);
1672 if (!rt) {
1673 kfree_skb(skb);
1674 return -ENETUNREACH;
1675 }
1676 dev = rt->dev;
1677 skb->dev = dev;
1678 }
1da177e4
LT
1679 ddp_dl->request(ddp_dl, skb, dev->dev_addr);
1680 } else {
1681 SOCK_DEBUG(sk, "SK %p: send out.\n", sk);
1682 if (rt->flags & RTF_GATEWAY) {
1683 gsat.sat_addr = rt->gateway;
1684 usat = &gsat;
1685 }
1686
1687 if (aarp_send_ddp(dev, skb, &usat->sat_addr, NULL) == -1)
1688 kfree_skb(skb);
1689 /* else queued/sent above in the aarp queue */
1690 }
1691 SOCK_DEBUG(sk, "SK %p: Done write (%Zd).\n", sk, len);
1692
1693 return len;
1694}
1695
1696static int atalk_recvmsg(struct kiocb *iocb, struct socket *sock, struct msghdr *msg,
1697 size_t size, int flags)
1698{
1699 struct sock *sk = sock->sk;
1700 struct sockaddr_at *sat = (struct sockaddr_at *)msg->msg_name;
1701 struct ddpehdr *ddp;
1702 int copied = 0;
2a50f28c 1703 int offset = 0;
1da177e4 1704 int err = 0;
1da177e4
LT
1705 struct sk_buff *skb = skb_recv_datagram(sk, flags & ~MSG_DONTWAIT,
1706 flags & MSG_DONTWAIT, &err);
1707 if (!skb)
1708 return err;
1709
1710 /* FIXME: use skb->cb to be able to use shared skbs */
1711 ddp = ddp_hdr(skb);
2a50f28c 1712 copied = ntohs(ddp->deh_len_hops) & 1023;
1da177e4 1713
2a50f28c
AV
1714 if (sk->sk_type != SOCK_RAW) {
1715 offset = sizeof(*ddp);
1716 copied -= offset;
1717 }
1da177e4 1718
2a50f28c
AV
1719 if (copied > size) {
1720 copied = size;
1721 msg->msg_flags |= MSG_TRUNC;
1da177e4 1722 }
2a50f28c 1723 err = skb_copy_datagram_iovec(skb, offset, msg->msg_iov, copied);
1da177e4
LT
1724
1725 if (!err) {
1726 if (sat) {
1727 sat->sat_family = AF_APPLETALK;
1728 sat->sat_port = ddp->deh_sport;
1729 sat->sat_addr.s_node = ddp->deh_snode;
1730 sat->sat_addr.s_net = ddp->deh_snet;
1731 }
1732 msg->msg_namelen = sizeof(*sat);
1733 }
1734
1735 skb_free_datagram(sk, skb); /* Free the datagram. */
1736 return err ? : copied;
1737}
1738
1739
1740/*
1741 * AppleTalk ioctl calls.
1742 */
1743static int atalk_ioctl(struct socket *sock, unsigned int cmd, unsigned long arg)
1744{
b5e5fa5e 1745 int rc = -ENOIOCTLCMD;
1da177e4
LT
1746 struct sock *sk = sock->sk;
1747 void __user *argp = (void __user *)arg;
1748
1749 switch (cmd) {
1750 /* Protocol layer */
1751 case TIOCOUTQ: {
1752 long amount = sk->sk_sndbuf -
1753 atomic_read(&sk->sk_wmem_alloc);
1754
1755 if (amount < 0)
1756 amount = 0;
1757 rc = put_user(amount, (int __user *)argp);
1758 break;
1759 }
1760 case TIOCINQ: {
1761 /*
1762 * These two are safe on a single CPU system as only
1763 * user tasks fiddle here
1764 */
1765 struct sk_buff *skb = skb_peek(&sk->sk_receive_queue);
1766 long amount = 0;
1767
1768 if (skb)
1769 amount = skb->len - sizeof(struct ddpehdr);
1770 rc = put_user(amount, (int __user *)argp);
1771 break;
1772 }
1773 case SIOCGSTAMP:
1774 rc = sock_get_timestamp(sk, argp);
1775 break;
ae40eb1e
ED
1776 case SIOCGSTAMPNS:
1777 rc = sock_get_timestampns(sk, argp);
1778 break;
1da177e4
LT
1779 /* Routing */
1780 case SIOCADDRT:
1781 case SIOCDELRT:
1782 rc = -EPERM;
1783 if (capable(CAP_NET_ADMIN))
1784 rc = atrtr_ioctl(cmd, argp);
1785 break;
1786 /* Interface */
1787 case SIOCGIFADDR:
1788 case SIOCSIFADDR:
1789 case SIOCGIFBRDADDR:
1790 case SIOCATALKDIFADDR:
1791 case SIOCDIFADDR:
1792 case SIOCSARP: /* proxy AARP */
1793 case SIOCDARP: /* proxy AARP */
1794 rtnl_lock();
1795 rc = atif_ioctl(cmd, argp);
1796 rtnl_unlock();
1797 break;
1da177e4
LT
1798 }
1799
1800 return rc;
1801}
1802
f6c90b71
PV
1803
1804#ifdef CONFIG_COMPAT
1805static int atalk_compat_ioctl(struct socket *sock, unsigned int cmd, unsigned long arg)
1806{
1807 /*
1808 * All Appletalk ioctls except SIOCATALKDIFADDR are standard. And
1809 * SIOCATALKDIFADDR is handled by upper layer as well, so there is
1810 * nothing to do. Eventually SIOCATALKDIFADDR should be moved
1811 * here so there is no generic SIOCPROTOPRIVATE translation in the
1812 * system.
1813 */
1814 return -ENOIOCTLCMD;
1815}
1816#endif
1817
1818
1da177e4
LT
1819static struct net_proto_family atalk_family_ops = {
1820 .family = PF_APPLETALK,
1821 .create = atalk_create,
1822 .owner = THIS_MODULE,
1823};
1824
90ddc4f0 1825static const struct proto_ops SOCKOPS_WRAPPED(atalk_dgram_ops) = {
1da177e4
LT
1826 .family = PF_APPLETALK,
1827 .owner = THIS_MODULE,
1828 .release = atalk_release,
1829 .bind = atalk_bind,
1830 .connect = atalk_connect,
1831 .socketpair = sock_no_socketpair,
1832 .accept = sock_no_accept,
1833 .getname = atalk_getname,
1834 .poll = datagram_poll,
1835 .ioctl = atalk_ioctl,
f6c90b71
PV
1836#ifdef CONFIG_COMPAT
1837 .compat_ioctl = atalk_compat_ioctl,
1838#endif
1da177e4
LT
1839 .listen = sock_no_listen,
1840 .shutdown = sock_no_shutdown,
1841 .setsockopt = sock_no_setsockopt,
1842 .getsockopt = sock_no_getsockopt,
1843 .sendmsg = atalk_sendmsg,
1844 .recvmsg = atalk_recvmsg,
1845 .mmap = sock_no_mmap,
1846 .sendpage = sock_no_sendpage,
1847};
1848
1da177e4
LT
1849SOCKOPS_WRAP(atalk_dgram, PF_APPLETALK);
1850
1851static struct notifier_block ddp_notifier = {
1852 .notifier_call = ddp_device_event,
1853};
1854
1855static struct packet_type ltalk_packet_type = {
1856 .type = __constant_htons(ETH_P_LOCALTALK),
1857 .func = ltalk_rcv,
1858};
1859
1860static struct packet_type ppptalk_packet_type = {
1861 .type = __constant_htons(ETH_P_PPPTALK),
1862 .func = atalk_rcv,
1863};
1864
1865static unsigned char ddp_snap_id[] = { 0x08, 0x00, 0x07, 0x80, 0x9B };
1866
1867/* Export symbols for use by drivers when AppleTalk is a module */
1868EXPORT_SYMBOL(aarp_send_ddp);
1869EXPORT_SYMBOL(atrtr_get_dev);
1870EXPORT_SYMBOL(atalk_find_dev_addr);
1871
1872static char atalk_err_snap[] __initdata =
1873 KERN_CRIT "Unable to register DDP with SNAP.\n";
1874
1875/* Called by proto.c on kernel start up */
1876static int __init atalk_init(void)
1877{
1878 int rc = proto_register(&ddp_proto, 0);
1879
1880 if (rc != 0)
1881 goto out;
1882
1883 (void)sock_register(&atalk_family_ops);
1884 ddp_dl = register_snap_client(ddp_snap_id, atalk_rcv);
1885 if (!ddp_dl)
1886 printk(atalk_err_snap);
1887
1888 dev_add_pack(&ltalk_packet_type);
1889 dev_add_pack(&ppptalk_packet_type);
1890
1891 register_netdevice_notifier(&ddp_notifier);
1892 aarp_proto_init();
1893 atalk_proc_init();
1894 atalk_register_sysctl();
1895out:
1896 return rc;
1897}
1898module_init(atalk_init);
1899
1900/*
1901 * No explicit module reference count manipulation is needed in the
1902 * protocol. Socket layer sets module reference count for us
1903 * and interfaces reference counting is done
1904 * by the network device layer.
1905 *
1906 * Ergo, before the AppleTalk module can be removed, all AppleTalk
1907 * sockets be closed from user space.
1908 */
1909static void __exit atalk_exit(void)
1910{
1911#ifdef CONFIG_SYSCTL
1912 atalk_unregister_sysctl();
1913#endif /* CONFIG_SYSCTL */
1914 atalk_proc_exit();
1915 aarp_cleanup_module(); /* General aarp clean-up. */
1916 unregister_netdevice_notifier(&ddp_notifier);
1917 dev_remove_pack(&ltalk_packet_type);
1918 dev_remove_pack(&ppptalk_packet_type);
1919 unregister_snap_client(ddp_dl);
1920 sock_unregister(PF_APPLETALK);
1921 proto_unregister(&ddp_proto);
1922}
1923module_exit(atalk_exit);
1924
1925MODULE_LICENSE("GPL");
1926MODULE_AUTHOR("Alan Cox <Alan.Cox@linux.org>");
1927MODULE_DESCRIPTION("AppleTalk 0.20\n");
1928MODULE_ALIAS_NETPROTO(PF_APPLETALK);
This page took 0.622277 seconds and 5 git commands to generate.