2 * DDP: An implementation of the AppleTalk DDP protocol for
5 * Alan Cox <alan@lxorguk.ukuu.org.uk>
7 * With more than a little assistance from
9 * Wesley Craig <netatalk@umich.edu>
12 * Neil Horman : Added missing device ioctls
13 * Michael Callahan : Made routing work
14 * Wesley Craig : Fix probing to listen to a
16 * Alan Cox : Added send/recvmsg support
17 * Alan Cox : Moved at. to protinfo in
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
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
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
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,
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.
54 #include <linux/capability.h>
55 #include <linux/module.h>
56 #include <linux/if_arp.h>
57 #include <linux/smp_lock.h>
58 #include <linux/termios.h> /* For TIOCOUTQ/INQ */
59 #include <net/datalink.h>
60 #include <net/psnap.h>
62 #include <net/tcp_states.h>
63 #include <net/route.h>
64 #include <linux/atalk.h>
65 #include "../core/kmap_skb.h"
67 struct datalink_proto
*ddp_dl
, *aarp_dl
;
68 static const struct proto_ops atalk_dgram_ops
;
70 /**************************************************************************\
72 * Handlers for the socket list. *
74 \**************************************************************************/
76 HLIST_HEAD(atalk_sockets
);
77 DEFINE_RWLOCK(atalk_sockets_lock
);
79 static inline void __atalk_insert_socket(struct sock
*sk
)
81 sk_add_node(sk
, &atalk_sockets
);
84 static inline void atalk_remove_socket(struct sock
*sk
)
86 write_lock_bh(&atalk_sockets_lock
);
88 write_unlock_bh(&atalk_sockets_lock
);
91 static struct sock
*atalk_search_socket(struct sockaddr_at
*to
,
92 struct atalk_iface
*atif
)
95 struct hlist_node
*node
;
97 read_lock_bh(&atalk_sockets_lock
);
98 sk_for_each(s
, node
, &atalk_sockets
) {
99 struct atalk_sock
*at
= at_sk(s
);
101 if (to
->sat_port
!= at
->src_port
)
104 if (to
->sat_addr
.s_net
== ATADDR_ANYNET
&&
105 to
->sat_addr
.s_node
== ATADDR_BCAST
)
108 if (to
->sat_addr
.s_net
== at
->src_net
&&
109 (to
->sat_addr
.s_node
== at
->src_node
||
110 to
->sat_addr
.s_node
== ATADDR_BCAST
||
111 to
->sat_addr
.s_node
== ATADDR_ANYNODE
))
114 /* XXXX.0 -- we got a request for this router. make sure
115 * that the node is appropriately set. */
116 if (to
->sat_addr
.s_node
== ATADDR_ANYNODE
&&
117 to
->sat_addr
.s_net
!= ATADDR_ANYNET
&&
118 atif
->address
.s_node
== at
->src_node
) {
119 to
->sat_addr
.s_node
= atif
->address
.s_node
;
125 read_unlock_bh(&atalk_sockets_lock
);
130 * atalk_find_or_insert_socket - Try to find a socket matching ADDR
131 * @sk - socket to insert in the list if it is not there already
132 * @sat - address to search for
134 * Try to find a socket matching ADDR in the socket list, if found then return
135 * it. If not, insert SK into the socket list.
137 * This entire operation must execute atomically.
139 static struct sock
*atalk_find_or_insert_socket(struct sock
*sk
,
140 struct sockaddr_at
*sat
)
143 struct hlist_node
*node
;
144 struct atalk_sock
*at
;
146 write_lock_bh(&atalk_sockets_lock
);
147 sk_for_each(s
, node
, &atalk_sockets
) {
150 if (at
->src_net
== sat
->sat_addr
.s_net
&&
151 at
->src_node
== sat
->sat_addr
.s_node
&&
152 at
->src_port
== sat
->sat_port
)
156 __atalk_insert_socket(sk
); /* Wheee, it's free, assign and insert. */
158 write_unlock_bh(&atalk_sockets_lock
);
162 static void atalk_destroy_timer(unsigned long data
)
164 struct sock
*sk
= (struct sock
*)data
;
166 if (sk_has_allocations(sk
)) {
167 sk
->sk_timer
.expires
= jiffies
+ SOCK_DESTROY_TIME
;
168 add_timer(&sk
->sk_timer
);
173 static inline void atalk_destroy_socket(struct sock
*sk
)
175 atalk_remove_socket(sk
);
176 skb_queue_purge(&sk
->sk_receive_queue
);
178 if (sk_has_allocations(sk
)) {
179 setup_timer(&sk
->sk_timer
, atalk_destroy_timer
,
181 sk
->sk_timer
.expires
= jiffies
+ SOCK_DESTROY_TIME
;
182 add_timer(&sk
->sk_timer
);
187 /**************************************************************************\
189 * Routing tables for the AppleTalk socket layer. *
191 \**************************************************************************/
193 /* Anti-deadlock ordering is atalk_routes_lock --> iface_lock -DaveM */
194 struct atalk_route
*atalk_routes
;
195 DEFINE_RWLOCK(atalk_routes_lock
);
197 struct atalk_iface
*atalk_interfaces
;
198 DEFINE_RWLOCK(atalk_interfaces_lock
);
200 /* For probing devices or in a routerless network */
201 struct atalk_route atrtr_default
;
203 /* AppleTalk interface control */
205 * Drop a device. Doesn't drop any of its routes - that is the caller's
206 * problem. Called when we down the interface or delete the address.
208 static void atif_drop_device(struct net_device
*dev
)
210 struct atalk_iface
**iface
= &atalk_interfaces
;
211 struct atalk_iface
*tmp
;
213 write_lock_bh(&atalk_interfaces_lock
);
214 while ((tmp
= *iface
) != NULL
) {
215 if (tmp
->dev
== dev
) {
219 dev
->atalk_ptr
= NULL
;
223 write_unlock_bh(&atalk_interfaces_lock
);
226 static struct atalk_iface
*atif_add_device(struct net_device
*dev
,
227 struct atalk_addr
*sa
)
229 struct atalk_iface
*iface
= kzalloc(sizeof(*iface
), GFP_KERNEL
);
236 dev
->atalk_ptr
= iface
;
237 iface
->address
= *sa
;
240 write_lock_bh(&atalk_interfaces_lock
);
241 iface
->next
= atalk_interfaces
;
242 atalk_interfaces
= iface
;
243 write_unlock_bh(&atalk_interfaces_lock
);
248 /* Perform phase 2 AARP probing on our tentative address */
249 static int atif_probe_device(struct atalk_iface
*atif
)
251 int netrange
= ntohs(atif
->nets
.nr_lastnet
) -
252 ntohs(atif
->nets
.nr_firstnet
) + 1;
253 int probe_net
= ntohs(atif
->address
.s_net
);
254 int probe_node
= atif
->address
.s_node
;
257 /* Offset the network we start probing with */
258 if (probe_net
== ATADDR_ANYNET
) {
259 probe_net
= ntohs(atif
->nets
.nr_firstnet
);
261 probe_net
+= jiffies
% netrange
;
263 if (probe_node
== ATADDR_ANYNODE
)
264 probe_node
= jiffies
& 0xFF;
266 /* Scan the networks */
267 atif
->status
|= ATIF_PROBE
;
268 for (netct
= 0; netct
<= netrange
; netct
++) {
269 /* Sweep the available nodes from a given start */
270 atif
->address
.s_net
= htons(probe_net
);
271 for (nodect
= 0; nodect
< 256; nodect
++) {
272 atif
->address
.s_node
= (nodect
+ probe_node
) & 0xFF;
273 if (atif
->address
.s_node
> 0 &&
274 atif
->address
.s_node
< 254) {
275 /* Probe a proposed address */
276 aarp_probe_network(atif
);
278 if (!(atif
->status
& ATIF_PROBE_FAIL
)) {
279 atif
->status
&= ~ATIF_PROBE
;
283 atif
->status
&= ~ATIF_PROBE_FAIL
;
286 if (probe_net
> ntohs(atif
->nets
.nr_lastnet
))
287 probe_net
= ntohs(atif
->nets
.nr_firstnet
);
289 atif
->status
&= ~ATIF_PROBE
;
291 return -EADDRINUSE
; /* Network is full... */
295 /* Perform AARP probing for a proxy address */
296 static int atif_proxy_probe_device(struct atalk_iface
*atif
,
297 struct atalk_addr
* proxy_addr
)
299 int netrange
= ntohs(atif
->nets
.nr_lastnet
) -
300 ntohs(atif
->nets
.nr_firstnet
) + 1;
301 /* we probe the interface's network */
302 int probe_net
= ntohs(atif
->address
.s_net
);
303 int probe_node
= ATADDR_ANYNODE
; /* we'll take anything */
306 /* Offset the network we start probing with */
307 if (probe_net
== ATADDR_ANYNET
) {
308 probe_net
= ntohs(atif
->nets
.nr_firstnet
);
310 probe_net
+= jiffies
% netrange
;
313 if (probe_node
== ATADDR_ANYNODE
)
314 probe_node
= jiffies
& 0xFF;
316 /* Scan the networks */
317 for (netct
= 0; netct
<= netrange
; netct
++) {
318 /* Sweep the available nodes from a given start */
319 proxy_addr
->s_net
= htons(probe_net
);
320 for (nodect
= 0; nodect
< 256; nodect
++) {
321 proxy_addr
->s_node
= (nodect
+ probe_node
) & 0xFF;
322 if (proxy_addr
->s_node
> 0 &&
323 proxy_addr
->s_node
< 254) {
324 /* Tell AARP to probe a proposed address */
325 int ret
= aarp_proxy_probe_network(atif
,
328 if (ret
!= -EADDRINUSE
)
333 if (probe_net
> ntohs(atif
->nets
.nr_lastnet
))
334 probe_net
= ntohs(atif
->nets
.nr_firstnet
);
337 return -EADDRINUSE
; /* Network is full... */
341 struct atalk_addr
*atalk_find_dev_addr(struct net_device
*dev
)
343 struct atalk_iface
*iface
= dev
->atalk_ptr
;
344 return iface
? &iface
->address
: NULL
;
347 static struct atalk_addr
*atalk_find_primary(void)
349 struct atalk_iface
*fiface
= NULL
;
350 struct atalk_addr
*retval
;
351 struct atalk_iface
*iface
;
354 * Return a point-to-point interface only if
355 * there is no non-ptp interface available.
357 read_lock_bh(&atalk_interfaces_lock
);
358 for (iface
= atalk_interfaces
; iface
; iface
= iface
->next
) {
359 if (!fiface
&& !(iface
->dev
->flags
& IFF_LOOPBACK
))
361 if (!(iface
->dev
->flags
& (IFF_LOOPBACK
| IFF_POINTOPOINT
))) {
362 retval
= &iface
->address
;
368 retval
= &fiface
->address
;
369 else if (atalk_interfaces
)
370 retval
= &atalk_interfaces
->address
;
374 read_unlock_bh(&atalk_interfaces_lock
);
379 * Find a match for 'any network' - ie any of our interfaces with that
380 * node number will do just nicely.
382 static struct atalk_iface
*atalk_find_anynet(int node
, struct net_device
*dev
)
384 struct atalk_iface
*iface
= dev
->atalk_ptr
;
386 if (!iface
|| iface
->status
& ATIF_PROBE
)
389 if (node
!= ATADDR_BCAST
&&
390 iface
->address
.s_node
!= node
&&
391 node
!= ATADDR_ANYNODE
)
400 /* Find a match for a specific network:node pair */
401 static struct atalk_iface
*atalk_find_interface(__be16 net
, int node
)
403 struct atalk_iface
*iface
;
405 read_lock_bh(&atalk_interfaces_lock
);
406 for (iface
= atalk_interfaces
; iface
; iface
= iface
->next
) {
407 if ((node
== ATADDR_BCAST
||
408 node
== ATADDR_ANYNODE
||
409 iface
->address
.s_node
== node
) &&
410 iface
->address
.s_net
== net
&&
411 !(iface
->status
& ATIF_PROBE
))
414 /* XXXX.0 -- net.0 returns the iface associated with net */
415 if (node
== ATADDR_ANYNODE
&& net
!= ATADDR_ANYNET
&&
416 ntohs(iface
->nets
.nr_firstnet
) <= ntohs(net
) &&
417 ntohs(net
) <= ntohs(iface
->nets
.nr_lastnet
))
420 read_unlock_bh(&atalk_interfaces_lock
);
426 * Find a route for an AppleTalk packet. This ought to get cached in
427 * the socket (later on...). We know about host routes and the fact
428 * that a route must be direct to broadcast.
430 static struct atalk_route
*atrtr_find(struct atalk_addr
*target
)
433 * we must search through all routes unless we find a
434 * host route, because some host routes might overlap
437 struct atalk_route
*net_route
= NULL
;
438 struct atalk_route
*r
;
440 read_lock_bh(&atalk_routes_lock
);
441 for (r
= atalk_routes
; r
; r
= r
->next
) {
442 if (!(r
->flags
& RTF_UP
))
445 if (r
->target
.s_net
== target
->s_net
) {
446 if (r
->flags
& RTF_HOST
) {
448 * if this host route is for the target,
451 if (r
->target
.s_node
== target
->s_node
)
455 * this route will work if there isn't a
456 * direct host route, so cache it
463 * if we found a network route but not a direct host
464 * route, then return it
468 else if (atrtr_default
.dev
)
470 else /* No route can be found */
473 read_unlock_bh(&atalk_routes_lock
);
479 * Given an AppleTalk network, find the device to use. This can be
482 struct net_device
*atrtr_get_dev(struct atalk_addr
*sa
)
484 struct atalk_route
*atr
= atrtr_find(sa
);
485 return atr
? atr
->dev
: NULL
;
488 /* Set up a default router */
489 static void atrtr_set_default(struct net_device
*dev
)
491 atrtr_default
.dev
= dev
;
492 atrtr_default
.flags
= RTF_UP
;
493 atrtr_default
.gateway
.s_net
= htons(0);
494 atrtr_default
.gateway
.s_node
= 0;
498 * Add a router. Basically make sure it looks valid and stuff the
499 * entry in the list. While it uses netranges we always set them to one
500 * entry to work like netatalk.
502 static int atrtr_create(struct rtentry
*r
, struct net_device
*devhint
)
504 struct sockaddr_at
*ta
= (struct sockaddr_at
*)&r
->rt_dst
;
505 struct sockaddr_at
*ga
= (struct sockaddr_at
*)&r
->rt_gateway
;
506 struct atalk_route
*rt
;
507 struct atalk_iface
*iface
, *riface
;
508 int retval
= -EINVAL
;
511 * Fixme: Raise/Lower a routing change semaphore for these
515 /* Validate the request */
516 if (ta
->sat_family
!= AF_APPLETALK
||
517 (!devhint
&& ga
->sat_family
!= AF_APPLETALK
))
520 /* Now walk the routing table and make our decisions */
521 write_lock_bh(&atalk_routes_lock
);
522 for (rt
= atalk_routes
; rt
; rt
= rt
->next
) {
523 if (r
->rt_flags
!= rt
->flags
)
526 if (ta
->sat_addr
.s_net
== rt
->target
.s_net
) {
527 if (!(rt
->flags
& RTF_HOST
))
529 if (ta
->sat_addr
.s_node
== rt
->target
.s_node
)
537 read_lock_bh(&atalk_interfaces_lock
);
538 for (iface
= atalk_interfaces
; iface
; iface
= iface
->next
) {
540 ntohs(ga
->sat_addr
.s_net
) >=
541 ntohs(iface
->nets
.nr_firstnet
) &&
542 ntohs(ga
->sat_addr
.s_net
) <=
543 ntohs(iface
->nets
.nr_lastnet
))
546 if (ga
->sat_addr
.s_net
== iface
->address
.s_net
&&
547 ga
->sat_addr
.s_node
== iface
->address
.s_node
)
550 read_unlock_bh(&atalk_interfaces_lock
);
552 retval
= -ENETUNREACH
;
556 devhint
= riface
->dev
;
560 rt
= kzalloc(sizeof(*rt
), GFP_ATOMIC
);
566 rt
->next
= atalk_routes
;
570 /* Fill in the routing entry */
571 rt
->target
= ta
->sat_addr
;
574 rt
->flags
= r
->rt_flags
;
575 rt
->gateway
= ga
->sat_addr
;
579 write_unlock_bh(&atalk_routes_lock
);
584 /* Delete a route. Find it and discard it */
585 static int atrtr_delete(struct atalk_addr
* addr
)
587 struct atalk_route
**r
= &atalk_routes
;
589 struct atalk_route
*tmp
;
591 write_lock_bh(&atalk_routes_lock
);
592 while ((tmp
= *r
) != NULL
) {
593 if (tmp
->target
.s_net
== addr
->s_net
&&
594 (!(tmp
->flags
&RTF_GATEWAY
) ||
595 tmp
->target
.s_node
== addr
->s_node
)) {
605 write_unlock_bh(&atalk_routes_lock
);
610 * Called when a device is downed. Just throw away any routes
613 static void atrtr_device_down(struct net_device
*dev
)
615 struct atalk_route
**r
= &atalk_routes
;
616 struct atalk_route
*tmp
;
618 write_lock_bh(&atalk_routes_lock
);
619 while ((tmp
= *r
) != NULL
) {
620 if (tmp
->dev
== dev
) {
627 write_unlock_bh(&atalk_routes_lock
);
629 if (atrtr_default
.dev
== dev
)
630 atrtr_set_default(NULL
);
633 /* Actually down the interface */
634 static inline void atalk_dev_down(struct net_device
*dev
)
636 atrtr_device_down(dev
); /* Remove all routes for the device */
637 aarp_device_down(dev
); /* Remove AARP entries for the device */
638 atif_drop_device(dev
); /* Remove the device */
642 * A device event has occurred. Watch for devices going down and
643 * delete our use of them (iface and route).
645 static int ddp_device_event(struct notifier_block
*this, unsigned long event
,
648 struct net_device
*dev
= ptr
;
650 if (!net_eq(dev_net(dev
), &init_net
))
653 if (event
== NETDEV_DOWN
)
654 /* Discard any use of this */
660 /* ioctl calls. Shouldn't even need touching */
661 /* Device configuration ioctl calls */
662 static int atif_ioctl(int cmd
, void __user
*arg
)
664 static char aarp_mcast
[6] = { 0x09, 0x00, 0x00, 0xFF, 0xFF, 0xFF };
666 struct atalk_netrange
*nr
;
667 struct sockaddr_at
*sa
;
668 struct net_device
*dev
;
669 struct atalk_iface
*atif
;
672 struct rtentry rtdef
;
675 if (copy_from_user(&atreq
, arg
, sizeof(atreq
)))
678 dev
= __dev_get_by_name(&init_net
, atreq
.ifr_name
);
682 sa
= (struct sockaddr_at
*)&atreq
.ifr_addr
;
683 atif
= atalk_find_dev(dev
);
687 if (!capable(CAP_NET_ADMIN
))
689 if (sa
->sat_family
!= AF_APPLETALK
)
691 if (dev
->type
!= ARPHRD_ETHER
&&
692 dev
->type
!= ARPHRD_LOOPBACK
&&
693 dev
->type
!= ARPHRD_LOCALTLK
&&
694 dev
->type
!= ARPHRD_PPP
)
695 return -EPROTONOSUPPORT
;
697 nr
= (struct atalk_netrange
*)&sa
->sat_zero
[0];
701 * if this is a point-to-point iface, and we already
702 * have an iface for this AppleTalk address, then we
703 * should not add a route
705 if ((dev
->flags
& IFF_POINTOPOINT
) &&
706 atalk_find_interface(sa
->sat_addr
.s_net
,
707 sa
->sat_addr
.s_node
)) {
708 printk(KERN_DEBUG
"AppleTalk: point-to-point "
709 "interface added with "
710 "existing address\n");
715 * Phase 1 is fine on LocalTalk but we don't do
716 * EtherTalk phase 1. Anyone wanting to add it go ahead.
718 if (dev
->type
== ARPHRD_ETHER
&& nr
->nr_phase
!= 2)
719 return -EPROTONOSUPPORT
;
720 if (sa
->sat_addr
.s_node
== ATADDR_BCAST
||
721 sa
->sat_addr
.s_node
== 254)
724 /* Already setting address */
725 if (atif
->status
& ATIF_PROBE
)
728 atif
->address
.s_net
= sa
->sat_addr
.s_net
;
729 atif
->address
.s_node
= sa
->sat_addr
.s_node
;
730 atrtr_device_down(dev
); /* Flush old routes */
732 atif
= atif_add_device(dev
, &sa
->sat_addr
);
739 * Check if the chosen address is used. If so we
740 * error and atalkd will try another.
743 if (!(dev
->flags
& IFF_LOOPBACK
) &&
744 !(dev
->flags
& IFF_POINTOPOINT
) &&
745 atif_probe_device(atif
) < 0) {
746 atif_drop_device(dev
);
750 /* Hey it worked - add the direct routes */
751 sa
= (struct sockaddr_at
*)&rtdef
.rt_gateway
;
752 sa
->sat_family
= AF_APPLETALK
;
753 sa
->sat_addr
.s_net
= atif
->address
.s_net
;
754 sa
->sat_addr
.s_node
= atif
->address
.s_node
;
755 sa
= (struct sockaddr_at
*)&rtdef
.rt_dst
;
756 rtdef
.rt_flags
= RTF_UP
;
757 sa
->sat_family
= AF_APPLETALK
;
758 sa
->sat_addr
.s_node
= ATADDR_ANYNODE
;
759 if (dev
->flags
& IFF_LOOPBACK
||
760 dev
->flags
& IFF_POINTOPOINT
)
761 rtdef
.rt_flags
|= RTF_HOST
;
763 /* Routerless initial state */
764 if (nr
->nr_firstnet
== htons(0) &&
765 nr
->nr_lastnet
== htons(0xFFFE)) {
766 sa
->sat_addr
.s_net
= atif
->address
.s_net
;
767 atrtr_create(&rtdef
, dev
);
768 atrtr_set_default(dev
);
770 limit
= ntohs(nr
->nr_lastnet
);
771 if (limit
- ntohs(nr
->nr_firstnet
) > 4096) {
772 printk(KERN_WARNING
"Too many routes/"
777 for (ct
= ntohs(nr
->nr_firstnet
);
779 sa
->sat_addr
.s_net
= htons(ct
);
780 atrtr_create(&rtdef
, dev
);
783 dev_mc_add(dev
, aarp_mcast
, 6, 1);
788 return -EADDRNOTAVAIL
;
790 sa
->sat_family
= AF_APPLETALK
;
791 sa
->sat_addr
= atif
->address
;
796 return -EADDRNOTAVAIL
;
798 sa
->sat_family
= AF_APPLETALK
;
799 sa
->sat_addr
.s_net
= atif
->address
.s_net
;
800 sa
->sat_addr
.s_node
= ATADDR_BCAST
;
803 case SIOCATALKDIFADDR
:
805 if (!capable(CAP_NET_ADMIN
))
807 if (sa
->sat_family
!= AF_APPLETALK
)
813 if (!capable(CAP_NET_ADMIN
))
815 if (sa
->sat_family
!= AF_APPLETALK
)
818 * for now, we only support proxy AARP on ELAP;
819 * we should be able to do it for LocalTalk, too.
821 if (dev
->type
!= ARPHRD_ETHER
)
822 return -EPROTONOSUPPORT
;
825 * atif points to the current interface on this network;
826 * we aren't concerned about its current status (at
827 * least for now), but it has all the settings about
828 * the network we're going to probe. Consequently, it
832 return -EADDRNOTAVAIL
;
834 nr
= (struct atalk_netrange
*)&(atif
->nets
);
836 * Phase 1 is fine on Localtalk but we don't do
837 * Ethertalk phase 1. Anyone wanting to add it go ahead.
839 if (dev
->type
== ARPHRD_ETHER
&& nr
->nr_phase
!= 2)
840 return -EPROTONOSUPPORT
;
842 if (sa
->sat_addr
.s_node
== ATADDR_BCAST
||
843 sa
->sat_addr
.s_node
== 254)
847 * Check if the chosen address is used. If so we
848 * error and ATCP will try another.
850 if (atif_proxy_probe_device(atif
, &(sa
->sat_addr
)) < 0)
854 * We now have an address on the local network, and
855 * the AARP code will defend it for us until we take it
856 * down. We don't set up any routes right now, because
857 * ATCP will install them manually via SIOCADDRT.
862 if (!capable(CAP_NET_ADMIN
))
864 if (sa
->sat_family
!= AF_APPLETALK
)
867 return -EADDRNOTAVAIL
;
869 /* give to aarp module to remove proxy entry */
870 aarp_proxy_remove(atif
->dev
, &(sa
->sat_addr
));
874 return copy_to_user(arg
, &atreq
, sizeof(atreq
)) ? -EFAULT
: 0;
877 /* Routing ioctl() calls */
878 static int atrtr_ioctl(unsigned int cmd
, void __user
*arg
)
882 if (copy_from_user(&rt
, arg
, sizeof(rt
)))
887 if (rt
.rt_dst
.sa_family
!= AF_APPLETALK
)
889 return atrtr_delete(&((struct sockaddr_at
*)
890 &rt
.rt_dst
)->sat_addr
);
893 struct net_device
*dev
= NULL
;
896 if (copy_from_user(name
, rt
.rt_dev
, IFNAMSIZ
-1))
898 name
[IFNAMSIZ
-1] = '\0';
899 dev
= __dev_get_by_name(&init_net
, name
);
903 return atrtr_create(&rt
, dev
);
909 /**************************************************************************\
911 * Handling for system calls applied via the various interfaces to an *
912 * AppleTalk socket object. *
914 \**************************************************************************/
917 * Checksum: This is 'optional'. It's quite likely also a good
918 * candidate for assembler hackery 8)
920 static unsigned long atalk_sum_partial(const unsigned char *data
,
921 int len
, unsigned long sum
)
923 /* This ought to be unwrapped neatly. I'll trust gcc for now */
936 /* Checksum skb data -- similar to skb_checksum */
937 static unsigned long atalk_sum_skb(const struct sk_buff
*skb
, int offset
,
938 int len
, unsigned long sum
)
940 int start
= skb_headlen(skb
);
941 struct sk_buff
*frag_iter
;
944 /* checksum stuff in header space */
945 if ( (copy
= start
- offset
) > 0) {
948 sum
= atalk_sum_partial(skb
->data
+ offset
, copy
, sum
);
949 if ( (len
-= copy
) == 0)
955 /* checksum stuff in frags */
956 for (i
= 0; i
< skb_shinfo(skb
)->nr_frags
; i
++) {
959 WARN_ON(start
> offset
+ len
);
961 end
= start
+ skb_shinfo(skb
)->frags
[i
].size
;
962 if ((copy
= end
- offset
) > 0) {
964 skb_frag_t
*frag
= &skb_shinfo(skb
)->frags
[i
];
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
);
980 skb_walk_frags(skb
, frag_iter
) {
983 WARN_ON(start
> offset
+ len
);
985 end
= start
+ frag_iter
->len
;
986 if ((copy
= end
- offset
) > 0) {
989 sum
= atalk_sum_skb(frag_iter
, offset
- start
,
991 if ((len
-= copy
) == 0)
1003 static __be16
atalk_checksum(const struct sk_buff
*skb
, int len
)
1007 /* skip header 4 bytes */
1008 sum
= atalk_sum_skb(skb
, 4, len
-4, 0);
1010 /* Use 0xFFFF for 0. 0 itself means none */
1011 return sum
? htons((unsigned short)sum
) : htons(0xFFFF);
1014 static struct proto ddp_proto
= {
1016 .owner
= THIS_MODULE
,
1017 .obj_size
= sizeof(struct atalk_sock
),
1021 * Create a socket. Initialise the socket, blank the addresses
1024 static int atalk_create(struct net
*net
, struct socket
*sock
, int protocol
)
1027 int rc
= -ESOCKTNOSUPPORT
;
1029 if (net
!= &init_net
)
1030 return -EAFNOSUPPORT
;
1033 * We permit SOCK_DGRAM and RAW is an extension. It is trivial to do
1034 * and gives you the full ELAP frame. Should be handy for CAP 8)
1036 if (sock
->type
!= SOCK_RAW
&& sock
->type
!= SOCK_DGRAM
)
1039 sk
= sk_alloc(net
, PF_APPLETALK
, GFP_KERNEL
, &ddp_proto
);
1043 sock
->ops
= &atalk_dgram_ops
;
1044 sock_init_data(sock
, sk
);
1046 /* Checksums on by default */
1047 sock_set_flag(sk
, SOCK_ZAPPED
);
1052 /* Free a socket. No work needed */
1053 static int atalk_release(struct socket
*sock
)
1055 struct sock
*sk
= sock
->sk
;
1060 atalk_destroy_socket(sk
);
1066 * atalk_pick_and_bind_port - Pick a source port when one is not given
1067 * @sk - socket to insert into the tables
1068 * @sat - address to search for
1070 * Pick a source port when one is not given. If we can find a suitable free
1071 * one, we insert the socket into the tables using it.
1073 * This whole operation must be atomic.
1075 static int atalk_pick_and_bind_port(struct sock
*sk
, struct sockaddr_at
*sat
)
1079 write_lock_bh(&atalk_sockets_lock
);
1081 for (sat
->sat_port
= ATPORT_RESERVED
;
1082 sat
->sat_port
< ATPORT_LAST
;
1085 struct hlist_node
*node
;
1087 sk_for_each(s
, node
, &atalk_sockets
) {
1088 struct atalk_sock
*at
= at_sk(s
);
1090 if (at
->src_net
== sat
->sat_addr
.s_net
&&
1091 at
->src_node
== sat
->sat_addr
.s_node
&&
1092 at
->src_port
== sat
->sat_port
)
1096 /* Wheee, it's free, assign and insert. */
1097 __atalk_insert_socket(sk
);
1098 at_sk(sk
)->src_port
= sat
->sat_port
;
1107 write_unlock_bh(&atalk_sockets_lock
);
1111 static int atalk_autobind(struct sock
*sk
)
1113 struct atalk_sock
*at
= at_sk(sk
);
1114 struct sockaddr_at sat
;
1115 struct atalk_addr
*ap
= atalk_find_primary();
1116 int n
= -EADDRNOTAVAIL
;
1118 if (!ap
|| ap
->s_net
== htons(ATADDR_ANYNET
))
1121 at
->src_net
= sat
.sat_addr
.s_net
= ap
->s_net
;
1122 at
->src_node
= sat
.sat_addr
.s_node
= ap
->s_node
;
1124 n
= atalk_pick_and_bind_port(sk
, &sat
);
1126 sock_reset_flag(sk
, SOCK_ZAPPED
);
1131 /* Set the address 'our end' of the connection */
1132 static int atalk_bind(struct socket
*sock
, struct sockaddr
*uaddr
, int addr_len
)
1134 struct sockaddr_at
*addr
= (struct sockaddr_at
*)uaddr
;
1135 struct sock
*sk
= sock
->sk
;
1136 struct atalk_sock
*at
= at_sk(sk
);
1138 if (!sock_flag(sk
, SOCK_ZAPPED
) ||
1139 addr_len
!= sizeof(struct sockaddr_at
))
1142 if (addr
->sat_family
!= AF_APPLETALK
)
1143 return -EAFNOSUPPORT
;
1145 if (addr
->sat_addr
.s_net
== htons(ATADDR_ANYNET
)) {
1146 struct atalk_addr
*ap
= atalk_find_primary();
1149 return -EADDRNOTAVAIL
;
1151 at
->src_net
= addr
->sat_addr
.s_net
= ap
->s_net
;
1152 at
->src_node
= addr
->sat_addr
.s_node
= ap
->s_node
;
1154 if (!atalk_find_interface(addr
->sat_addr
.s_net
,
1155 addr
->sat_addr
.s_node
))
1156 return -EADDRNOTAVAIL
;
1158 at
->src_net
= addr
->sat_addr
.s_net
;
1159 at
->src_node
= addr
->sat_addr
.s_node
;
1162 if (addr
->sat_port
== ATADDR_ANYPORT
) {
1163 int n
= atalk_pick_and_bind_port(sk
, addr
);
1168 at
->src_port
= addr
->sat_port
;
1170 if (atalk_find_or_insert_socket(sk
, addr
))
1174 sock_reset_flag(sk
, SOCK_ZAPPED
);
1178 /* Set the address we talk to */
1179 static int atalk_connect(struct socket
*sock
, struct sockaddr
*uaddr
,
1180 int addr_len
, int flags
)
1182 struct sock
*sk
= sock
->sk
;
1183 struct atalk_sock
*at
= at_sk(sk
);
1184 struct sockaddr_at
*addr
;
1186 sk
->sk_state
= TCP_CLOSE
;
1187 sock
->state
= SS_UNCONNECTED
;
1189 if (addr_len
!= sizeof(*addr
))
1192 addr
= (struct sockaddr_at
*)uaddr
;
1194 if (addr
->sat_family
!= AF_APPLETALK
)
1195 return -EAFNOSUPPORT
;
1197 if (addr
->sat_addr
.s_node
== ATADDR_BCAST
&&
1198 !sock_flag(sk
, SOCK_BROADCAST
)) {
1200 printk(KERN_WARNING
"%s is broken and did not set "
1201 "SO_BROADCAST. It will break when 2.2 is "
1209 if (sock_flag(sk
, SOCK_ZAPPED
))
1210 if (atalk_autobind(sk
) < 0)
1213 if (!atrtr_get_dev(&addr
->sat_addr
))
1214 return -ENETUNREACH
;
1216 at
->dest_port
= addr
->sat_port
;
1217 at
->dest_net
= addr
->sat_addr
.s_net
;
1218 at
->dest_node
= addr
->sat_addr
.s_node
;
1220 sock
->state
= SS_CONNECTED
;
1221 sk
->sk_state
= TCP_ESTABLISHED
;
1226 * Find the name of an AppleTalk socket. Just copy the right
1227 * fields into the sockaddr.
1229 static int atalk_getname(struct socket
*sock
, struct sockaddr
*uaddr
,
1230 int *uaddr_len
, int peer
)
1232 struct sockaddr_at sat
;
1233 struct sock
*sk
= sock
->sk
;
1234 struct atalk_sock
*at
= at_sk(sk
);
1236 if (sock_flag(sk
, SOCK_ZAPPED
))
1237 if (atalk_autobind(sk
) < 0)
1240 *uaddr_len
= sizeof(struct sockaddr_at
);
1241 memset(&sat
.sat_zero
, 0, sizeof(sat
.sat_zero
));
1244 if (sk
->sk_state
!= TCP_ESTABLISHED
)
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
;
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
;
1256 sat
.sat_family
= AF_APPLETALK
;
1257 memcpy(uaddr
, &sat
, sizeof(sat
));
1261 #if defined(CONFIG_IPDDP) || defined(CONFIG_IPDDP_MODULE)
1262 static __inline__
int is_ip_over_ddp(struct sk_buff
*skb
)
1264 return skb
->data
[12] == 22;
1267 static int handle_ip_over_ddp(struct sk_buff
*skb
)
1269 struct net_device
*dev
= __dev_get_by_name(&init_net
, "ipddp0");
1270 struct net_device_stats
*stats
;
1272 /* This needs to be able to handle ipddp"N" devices */
1278 skb
->protocol
= htons(ETH_P_IP
);
1281 skb_reset_transport_header(skb
);
1283 stats
= netdev_priv(dev
);
1284 stats
->rx_packets
++;
1285 stats
->rx_bytes
+= skb
->len
+ 13;
1286 return netif_rx(skb
); /* Send the SKB up to a higher place. */
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
1294 static int atalk_route_packet(struct sk_buff
*skb
, struct net_device
*dev
,
1295 struct ddpehdr
*ddp
, __u16 len_hops
, int origlen
)
1297 struct atalk_route
*rt
;
1298 struct atalk_addr ta
;
1301 * Don't route multicast, etc., packets, or packets sent to "this
1304 if (skb
->pkt_type
!= PACKET_HOST
|| !ddp
->deh_dnet
) {
1308 * Can it ever happen that a packet is from a PPP iface and
1309 * needs to be broadcast onto the default network?
1311 if (dev
->type
== ARPHRD_PPP
)
1312 printk(KERN_DEBUG
"AppleTalk: didn't forward broadcast "
1313 "packet received from PPP iface\n");
1317 ta
.s_net
= ddp
->deh_dnet
;
1318 ta
.s_node
= ddp
->deh_dnode
;
1320 /* Route the packet */
1321 rt
= atrtr_find(&ta
);
1322 /* increment hops count */
1323 len_hops
+= 1 << 10;
1324 if (!rt
|| !(len_hops
& (15 << 10)))
1327 /* FIXME: use skb->cb to be able to use shared skbs */
1330 * Route goes through another gateway, so set the target to the
1334 if (rt
->flags
& RTF_GATEWAY
) {
1335 ta
.s_net
= rt
->gateway
.s_net
;
1336 ta
.s_node
= rt
->gateway
.s_node
;
1339 /* Fix up skb->len field */
1340 skb_trim(skb
, min_t(unsigned int, origlen
,
1341 (rt
->dev
->hard_header_len
+
1342 ddp_dl
->header_length
+ (len_hops
& 1023))));
1344 /* FIXME: use skb->cb to be able to use shared skbs */
1345 ddp
->deh_len_hops
= htons(len_hops
);
1348 * Send the buffer onwards
1350 * Now we must always be careful. If it's come from LocalTalk to
1351 * EtherTalk it might not fit
1353 * Order matters here: If a packet has to be copied to make a new
1354 * headroom (rare hopefully) then it won't need unsharing.
1356 * Note. ddp-> becomes invalid at the realloc.
1358 if (skb_headroom(skb
) < 22) {
1359 /* 22 bytes - 12 ether, 2 len, 3 802.2 5 snap */
1360 struct sk_buff
*nskb
= skb_realloc_headroom(skb
, 32);
1364 skb
= skb_unshare(skb
, GFP_ATOMIC
);
1367 * If the buffer didn't vanish into the lack of space bitbucket we can
1373 if (aarp_send_ddp(rt
->dev
, skb
, &ta
, NULL
) == NET_XMIT_DROP
)
1375 return NET_RX_SUCCESS
;
1383 * atalk_rcv - Receive a packet (in skb) from device dev
1384 * @skb - packet received
1385 * @dev - network device where the packet comes from
1388 * Receive a packet (in skb) from device dev. This has come from the SNAP
1389 * decoder, and on entry skb->transport_header is the DDP header, skb->len
1390 * is the DDP header, skb->len is the DDP length. The physical headers
1391 * have been extracted. PPP should probably pass frames marked as for this
1392 * layer. [ie ARPHRD_ETHERTALK]
1394 static int atalk_rcv(struct sk_buff
*skb
, struct net_device
*dev
,
1395 struct packet_type
*pt
, struct net_device
*orig_dev
)
1397 struct ddpehdr
*ddp
;
1399 struct atalk_iface
*atif
;
1400 struct sockaddr_at tosat
;
1404 if (!net_eq(dev_net(dev
), &init_net
))
1407 /* Don't mangle buffer if shared */
1408 if (!(skb
= skb_share_check(skb
, GFP_ATOMIC
)))
1411 /* Size check and make sure header is contiguous */
1412 if (!pskb_may_pull(skb
, sizeof(*ddp
)))
1417 len_hops
= ntohs(ddp
->deh_len_hops
);
1419 /* Trim buffer in case of stray trailing data */
1421 skb_trim(skb
, min_t(unsigned int, skb
->len
, len_hops
& 1023));
1424 * Size check to see if ddp->deh_len was crap
1425 * (Otherwise we'll detonate most spectacularly
1426 * in the middle of atalk_checksum() or recvmsg()).
1428 if (skb
->len
< sizeof(*ddp
) || skb
->len
< (len_hops
& 1023)) {
1429 pr_debug("AppleTalk: dropping corrupted frame (deh_len=%u, "
1430 "skb->len=%u)\n", len_hops
& 1023, skb
->len
);
1435 * Any checksums. Note we don't do htons() on this == is assumed to be
1436 * valid for net byte orders all over the networking code...
1439 atalk_checksum(skb
, len_hops
& 1023) != ddp
->deh_sum
)
1440 /* Not a valid AppleTalk frame - dustbin time */
1443 /* Check the packet is aimed at us */
1444 if (!ddp
->deh_dnet
) /* Net 0 is 'this network' */
1445 atif
= atalk_find_anynet(ddp
->deh_dnode
, dev
);
1447 atif
= atalk_find_interface(ddp
->deh_dnet
, ddp
->deh_dnode
);
1450 /* Not ours, so we route the packet via the correct
1453 return atalk_route_packet(skb
, dev
, ddp
, len_hops
, origlen
);
1456 /* if IP over DDP is not selected this code will be optimized out */
1457 if (is_ip_over_ddp(skb
))
1458 return handle_ip_over_ddp(skb
);
1460 * Which socket - atalk_search_socket() looks for a *full match*
1461 * of the <net, node, port> tuple.
1463 tosat
.sat_addr
.s_net
= ddp
->deh_dnet
;
1464 tosat
.sat_addr
.s_node
= ddp
->deh_dnode
;
1465 tosat
.sat_port
= ddp
->deh_dport
;
1467 sock
= atalk_search_socket(&tosat
, atif
);
1468 if (!sock
) /* But not one of our sockets */
1471 /* Queue packet (standard) */
1474 if (sock_queue_rcv_skb(sock
, skb
) < 0)
1477 return NET_RX_SUCCESS
;
1487 * Receive a LocalTalk frame. We make some demands on the caller here.
1488 * Caller must provide enough headroom on the packet to pull the short
1489 * header and append a long one.
1491 static int ltalk_rcv(struct sk_buff
*skb
, struct net_device
*dev
,
1492 struct packet_type
*pt
, struct net_device
*orig_dev
)
1494 if (!net_eq(dev_net(dev
), &init_net
))
1497 /* Expand any short form frames */
1498 if (skb_mac_header(skb
)[2] == 1) {
1499 struct ddpehdr
*ddp
;
1500 /* Find our address */
1501 struct atalk_addr
*ap
= atalk_find_dev_addr(dev
);
1503 if (!ap
|| skb
->len
< sizeof(__be16
) || skb
->len
> 1023)
1506 /* Don't mangle buffer if shared */
1507 if (!(skb
= skb_share_check(skb
, GFP_ATOMIC
)))
1511 * The push leaves us with a ddephdr not an shdr, and
1512 * handily the port bytes in the right place preset.
1514 ddp
= (struct ddpehdr
*) skb_push(skb
, sizeof(*ddp
) - 4);
1516 /* Now fill in the long header */
1519 * These two first. The mac overlays the new source/dest
1520 * network information so we MUST copy these before
1521 * we write the network numbers !
1524 ddp
->deh_dnode
= skb_mac_header(skb
)[0]; /* From physical header */
1525 ddp
->deh_snode
= skb_mac_header(skb
)[1]; /* From physical header */
1527 ddp
->deh_dnet
= ap
->s_net
; /* Network number */
1528 ddp
->deh_snet
= ap
->s_net
;
1529 ddp
->deh_sum
= 0; /* No checksum */
1531 * Not sure about this bit...
1533 /* Non routable, so force a drop if we slip up later */
1534 ddp
->deh_len_hops
= htons(skb
->len
+ (DDP_MAXHOPS
<< 10));
1536 skb_reset_transport_header(skb
);
1538 return atalk_rcv(skb
, dev
, pt
, orig_dev
);
1544 static int atalk_sendmsg(struct kiocb
*iocb
, struct socket
*sock
, struct msghdr
*msg
,
1547 struct sock
*sk
= sock
->sk
;
1548 struct atalk_sock
*at
= at_sk(sk
);
1549 struct sockaddr_at
*usat
= (struct sockaddr_at
*)msg
->msg_name
;
1550 int flags
= msg
->msg_flags
;
1552 struct sockaddr_at local_satalk
, gsat
;
1553 struct sk_buff
*skb
;
1554 struct net_device
*dev
;
1555 struct ddpehdr
*ddp
;
1557 struct atalk_route
*rt
;
1560 if (flags
& ~(MSG_DONTWAIT
|MSG_CMSG_COMPAT
))
1563 if (len
> DDP_MAXSZ
)
1567 if (sock_flag(sk
, SOCK_ZAPPED
))
1568 if (atalk_autobind(sk
) < 0)
1571 if (msg
->msg_namelen
< sizeof(*usat
) ||
1572 usat
->sat_family
!= AF_APPLETALK
)
1575 /* netatalk didn't implement this check */
1576 if (usat
->sat_addr
.s_node
== ATADDR_BCAST
&&
1577 !sock_flag(sk
, SOCK_BROADCAST
)) {
1581 if (sk
->sk_state
!= TCP_ESTABLISHED
)
1583 usat
= &local_satalk
;
1584 usat
->sat_family
= AF_APPLETALK
;
1585 usat
->sat_port
= at
->dest_port
;
1586 usat
->sat_addr
.s_node
= at
->dest_node
;
1587 usat
->sat_addr
.s_net
= at
->dest_net
;
1590 /* Build a packet */
1591 SOCK_DEBUG(sk
, "SK %p: Got address.\n", sk
);
1594 size
= sizeof(struct ddpehdr
) + len
+ ddp_dl
->header_length
;
1596 if (usat
->sat_addr
.s_net
|| usat
->sat_addr
.s_node
== ATADDR_ANYNODE
) {
1597 rt
= atrtr_find(&usat
->sat_addr
);
1599 struct atalk_addr at_hint
;
1602 at_hint
.s_net
= at
->src_net
;
1604 rt
= atrtr_find(&at_hint
);
1607 return -ENETUNREACH
;
1611 SOCK_DEBUG(sk
, "SK %p: Size needed %d, device %s\n",
1612 sk
, size
, dev
->name
);
1614 size
+= dev
->hard_header_len
;
1615 skb
= sock_alloc_send_skb(sk
, size
, (flags
& MSG_DONTWAIT
), &err
);
1620 skb_reserve(skb
, ddp_dl
->header_length
);
1621 skb_reserve(skb
, dev
->hard_header_len
);
1624 SOCK_DEBUG(sk
, "SK %p: Begin build.\n", sk
);
1626 ddp
= (struct ddpehdr
*)skb_put(skb
, sizeof(struct ddpehdr
));
1627 ddp
->deh_len_hops
= htons(len
+ sizeof(*ddp
));
1628 ddp
->deh_dnet
= usat
->sat_addr
.s_net
;
1629 ddp
->deh_snet
= at
->src_net
;
1630 ddp
->deh_dnode
= usat
->sat_addr
.s_node
;
1631 ddp
->deh_snode
= at
->src_node
;
1632 ddp
->deh_dport
= usat
->sat_port
;
1633 ddp
->deh_sport
= at
->src_port
;
1635 SOCK_DEBUG(sk
, "SK %p: Copy user data (%Zd bytes).\n", sk
, len
);
1637 err
= memcpy_fromiovec(skb_put(skb
, len
), msg
->msg_iov
, len
);
1643 if (sk
->sk_no_check
== 1)
1646 ddp
->deh_sum
= atalk_checksum(skb
, len
+ sizeof(*ddp
));
1649 * Loopback broadcast packets to non gateway targets (ie routes
1650 * to group we are in)
1652 if (ddp
->deh_dnode
== ATADDR_BCAST
&&
1653 !(rt
->flags
& RTF_GATEWAY
) && !(dev
->flags
& IFF_LOOPBACK
)) {
1654 struct sk_buff
*skb2
= skb_copy(skb
, GFP_KERNEL
);
1658 SOCK_DEBUG(sk
, "SK %p: send out(copy).\n", sk
);
1660 * If it fails it is queued/sent above in the aarp queue
1662 aarp_send_ddp(dev
, skb2
, &usat
->sat_addr
, NULL
);
1666 if (dev
->flags
& IFF_LOOPBACK
|| loopback
) {
1667 SOCK_DEBUG(sk
, "SK %p: Loop back.\n", sk
);
1670 if (ddp
->deh_dnode
== ATADDR_BCAST
) {
1671 struct atalk_addr at_lo
;
1676 rt
= atrtr_find(&at_lo
);
1679 return -ENETUNREACH
;
1684 ddp_dl
->request(ddp_dl
, skb
, dev
->dev_addr
);
1686 SOCK_DEBUG(sk
, "SK %p: send out.\n", sk
);
1687 if (rt
->flags
& RTF_GATEWAY
) {
1688 gsat
.sat_addr
= rt
->gateway
;
1693 * If it fails it is queued/sent above in the aarp queue
1695 aarp_send_ddp(dev
, skb
, &usat
->sat_addr
, NULL
);
1697 SOCK_DEBUG(sk
, "SK %p: Done write (%Zd).\n", sk
, len
);
1702 static int atalk_recvmsg(struct kiocb
*iocb
, struct socket
*sock
, struct msghdr
*msg
,
1703 size_t size
, int flags
)
1705 struct sock
*sk
= sock
->sk
;
1706 struct sockaddr_at
*sat
= (struct sockaddr_at
*)msg
->msg_name
;
1707 struct ddpehdr
*ddp
;
1711 struct sk_buff
*skb
= skb_recv_datagram(sk
, flags
& ~MSG_DONTWAIT
,
1712 flags
& MSG_DONTWAIT
, &err
);
1716 /* FIXME: use skb->cb to be able to use shared skbs */
1718 copied
= ntohs(ddp
->deh_len_hops
) & 1023;
1720 if (sk
->sk_type
!= SOCK_RAW
) {
1721 offset
= sizeof(*ddp
);
1725 if (copied
> size
) {
1727 msg
->msg_flags
|= MSG_TRUNC
;
1729 err
= skb_copy_datagram_iovec(skb
, offset
, msg
->msg_iov
, copied
);
1733 sat
->sat_family
= AF_APPLETALK
;
1734 sat
->sat_port
= ddp
->deh_sport
;
1735 sat
->sat_addr
.s_node
= ddp
->deh_snode
;
1736 sat
->sat_addr
.s_net
= ddp
->deh_snet
;
1738 msg
->msg_namelen
= sizeof(*sat
);
1741 skb_free_datagram(sk
, skb
); /* Free the datagram. */
1742 return err
? : copied
;
1747 * AppleTalk ioctl calls.
1749 static int atalk_ioctl(struct socket
*sock
, unsigned int cmd
, unsigned long arg
)
1751 int rc
= -ENOIOCTLCMD
;
1752 struct sock
*sk
= sock
->sk
;
1753 void __user
*argp
= (void __user
*)arg
;
1756 /* Protocol layer */
1758 long amount
= sk
->sk_sndbuf
- sk_wmem_alloc_get(sk
);
1762 rc
= put_user(amount
, (int __user
*)argp
);
1767 * These two are safe on a single CPU system as only
1768 * user tasks fiddle here
1770 struct sk_buff
*skb
= skb_peek(&sk
->sk_receive_queue
);
1774 amount
= skb
->len
- sizeof(struct ddpehdr
);
1775 rc
= put_user(amount
, (int __user
*)argp
);
1779 rc
= sock_get_timestamp(sk
, argp
);
1782 rc
= sock_get_timestampns(sk
, argp
);
1788 if (capable(CAP_NET_ADMIN
))
1789 rc
= atrtr_ioctl(cmd
, argp
);
1794 case SIOCGIFBRDADDR
:
1795 case SIOCATALKDIFADDR
:
1797 case SIOCSARP
: /* proxy AARP */
1798 case SIOCDARP
: /* proxy AARP */
1800 rc
= atif_ioctl(cmd
, argp
);
1809 #ifdef CONFIG_COMPAT
1810 static int atalk_compat_ioctl(struct socket
*sock
, unsigned int cmd
, unsigned long arg
)
1813 * All Appletalk ioctls except SIOCATALKDIFADDR are standard. And
1814 * SIOCATALKDIFADDR is handled by upper layer as well, so there is
1815 * nothing to do. Eventually SIOCATALKDIFADDR should be moved
1816 * here so there is no generic SIOCPROTOPRIVATE translation in the
1819 return -ENOIOCTLCMD
;
1824 static struct net_proto_family atalk_family_ops
= {
1825 .family
= PF_APPLETALK
,
1826 .create
= atalk_create
,
1827 .owner
= THIS_MODULE
,
1830 static const struct proto_ops
SOCKOPS_WRAPPED(atalk_dgram_ops
) = {
1831 .family
= PF_APPLETALK
,
1832 .owner
= THIS_MODULE
,
1833 .release
= atalk_release
,
1835 .connect
= atalk_connect
,
1836 .socketpair
= sock_no_socketpair
,
1837 .accept
= sock_no_accept
,
1838 .getname
= atalk_getname
,
1839 .poll
= datagram_poll
,
1840 .ioctl
= atalk_ioctl
,
1841 #ifdef CONFIG_COMPAT
1842 .compat_ioctl
= atalk_compat_ioctl
,
1844 .listen
= sock_no_listen
,
1845 .shutdown
= sock_no_shutdown
,
1846 .setsockopt
= sock_no_setsockopt
,
1847 .getsockopt
= sock_no_getsockopt
,
1848 .sendmsg
= atalk_sendmsg
,
1849 .recvmsg
= atalk_recvmsg
,
1850 .mmap
= sock_no_mmap
,
1851 .sendpage
= sock_no_sendpage
,
1854 SOCKOPS_WRAP(atalk_dgram
, PF_APPLETALK
);
1856 static struct notifier_block ddp_notifier
= {
1857 .notifier_call
= ddp_device_event
,
1860 static struct packet_type ltalk_packet_type __read_mostly
= {
1861 .type
= cpu_to_be16(ETH_P_LOCALTALK
),
1865 static struct packet_type ppptalk_packet_type __read_mostly
= {
1866 .type
= cpu_to_be16(ETH_P_PPPTALK
),
1870 static unsigned char ddp_snap_id
[] = { 0x08, 0x00, 0x07, 0x80, 0x9B };
1872 /* Export symbols for use by drivers when AppleTalk is a module */
1873 EXPORT_SYMBOL(atrtr_get_dev
);
1874 EXPORT_SYMBOL(atalk_find_dev_addr
);
1876 static const char atalk_err_snap
[] __initconst
=
1877 KERN_CRIT
"Unable to register DDP with SNAP.\n";
1879 /* Called by proto.c on kernel start up */
1880 static int __init
atalk_init(void)
1882 int rc
= proto_register(&ddp_proto
, 0);
1887 (void)sock_register(&atalk_family_ops
);
1888 ddp_dl
= register_snap_client(ddp_snap_id
, atalk_rcv
);
1890 printk(atalk_err_snap
);
1892 dev_add_pack(<alk_packet_type
);
1893 dev_add_pack(&ppptalk_packet_type
);
1895 register_netdevice_notifier(&ddp_notifier
);
1898 atalk_register_sysctl();
1902 module_init(atalk_init
);
1905 * No explicit module reference count manipulation is needed in the
1906 * protocol. Socket layer sets module reference count for us
1907 * and interfaces reference counting is done
1908 * by the network device layer.
1910 * Ergo, before the AppleTalk module can be removed, all AppleTalk
1911 * sockets be closed from user space.
1913 static void __exit
atalk_exit(void)
1915 #ifdef CONFIG_SYSCTL
1916 atalk_unregister_sysctl();
1917 #endif /* CONFIG_SYSCTL */
1919 aarp_cleanup_module(); /* General aarp clean-up. */
1920 unregister_netdevice_notifier(&ddp_notifier
);
1921 dev_remove_pack(<alk_packet_type
);
1922 dev_remove_pack(&ppptalk_packet_type
);
1923 unregister_snap_client(ddp_dl
);
1924 sock_unregister(PF_APPLETALK
);
1925 proto_unregister(&ddp_proto
);
1927 module_exit(atalk_exit
);
1929 MODULE_LICENSE("GPL");
1930 MODULE_AUTHOR("Alan Cox <alan@lxorguk.ukuu.org.uk>");
1931 MODULE_DESCRIPTION("AppleTalk 0.20\n");
1932 MODULE_ALIAS_NETPROTO(PF_APPLETALK
);