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