2 * DDP: An implementation of the AppleTalk DDP protocol for
5 * Alan Cox <Alan.Cox@linux.org>
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/termios.h> /* For TIOCOUTQ/INQ */
58 #include <net/datalink.h>
59 #include <net/psnap.h>
61 #include <net/tcp_states.h>
62 #include <net/route.h>
63 #include <linux/atalk.h>
64 #include "../core/kmap_skb.h"
66 struct datalink_proto
*ddp_dl
, *aarp_dl
;
67 static const struct proto_ops atalk_dgram_ops
;
69 /**************************************************************************\
71 * Handlers for the socket list. *
73 \**************************************************************************/
75 HLIST_HEAD(atalk_sockets
);
76 DEFINE_RWLOCK(atalk_sockets_lock
);
78 static inline void __atalk_insert_socket(struct sock
*sk
)
80 sk_add_node(sk
, &atalk_sockets
);
83 static inline void atalk_remove_socket(struct sock
*sk
)
85 write_lock_bh(&atalk_sockets_lock
);
87 write_unlock_bh(&atalk_sockets_lock
);
90 static struct sock
*atalk_search_socket(struct sockaddr_at
*to
,
91 struct atalk_iface
*atif
)
94 struct hlist_node
*node
;
96 read_lock_bh(&atalk_sockets_lock
);
97 sk_for_each(s
, node
, &atalk_sockets
) {
98 struct atalk_sock
*at
= at_sk(s
);
100 if (to
->sat_port
!= at
->src_port
)
103 if (to
->sat_addr
.s_net
== ATADDR_ANYNET
&&
104 to
->sat_addr
.s_node
== ATADDR_BCAST
)
107 if (to
->sat_addr
.s_net
== at
->src_net
&&
108 (to
->sat_addr
.s_node
== at
->src_node
||
109 to
->sat_addr
.s_node
== ATADDR_BCAST
||
110 to
->sat_addr
.s_node
== ATADDR_ANYNODE
))
113 /* XXXX.0 -- we got a request for this router. make sure
114 * that the node is appropriately set. */
115 if (to
->sat_addr
.s_node
== ATADDR_ANYNODE
&&
116 to
->sat_addr
.s_net
!= ATADDR_ANYNET
&&
117 atif
->address
.s_node
== at
->src_node
) {
118 to
->sat_addr
.s_node
= atif
->address
.s_node
;
124 read_unlock_bh(&atalk_sockets_lock
);
129 * atalk_find_or_insert_socket - Try to find a socket matching ADDR
130 * @sk - socket to insert in the list if it is not there already
131 * @sat - address to search for
133 * Try to find a socket matching ADDR in the socket list, if found then return
134 * it. If not, insert SK into the socket list.
136 * This entire operation must execute atomically.
138 static struct sock
*atalk_find_or_insert_socket(struct sock
*sk
,
139 struct sockaddr_at
*sat
)
142 struct hlist_node
*node
;
143 struct atalk_sock
*at
;
145 write_lock_bh(&atalk_sockets_lock
);
146 sk_for_each(s
, node
, &atalk_sockets
) {
149 if (at
->src_net
== sat
->sat_addr
.s_net
&&
150 at
->src_node
== sat
->sat_addr
.s_node
&&
151 at
->src_port
== sat
->sat_port
)
155 __atalk_insert_socket(sk
); /* Wheee, it's free, assign and insert. */
157 write_unlock_bh(&atalk_sockets_lock
);
161 static void atalk_destroy_timer(unsigned long data
)
163 struct sock
*sk
= (struct sock
*)data
;
165 if (atomic_read(&sk
->sk_wmem_alloc
) ||
166 atomic_read(&sk
->sk_rmem_alloc
)) {
167 sk
->sk_timer
.expires
= jiffies
+ SOCK_DESTROY_TIME
;
168 add_timer(&sk
->sk_timer
);
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 (atomic_read(&sk
->sk_wmem_alloc
) ||
179 atomic_read(&sk
->sk_rmem_alloc
)) {
180 setup_timer(&sk
->sk_timer
, atalk_destroy_timer
,
182 sk
->sk_timer
.expires
= jiffies
+ SOCK_DESTROY_TIME
;
183 add_timer(&sk
->sk_timer
);
188 /**************************************************************************\
190 * Routing tables for the AppleTalk socket layer. *
192 \**************************************************************************/
194 /* Anti-deadlock ordering is atalk_routes_lock --> iface_lock -DaveM */
195 struct atalk_route
*atalk_routes
;
196 DEFINE_RWLOCK(atalk_routes_lock
);
198 struct atalk_iface
*atalk_interfaces
;
199 DEFINE_RWLOCK(atalk_interfaces_lock
);
201 /* For probing devices or in a routerless network */
202 struct atalk_route atrtr_default
;
204 /* AppleTalk interface control */
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.
209 static void atif_drop_device(struct net_device
*dev
)
211 struct atalk_iface
**iface
= &atalk_interfaces
;
212 struct atalk_iface
*tmp
;
214 write_lock_bh(&atalk_interfaces_lock
);
215 while ((tmp
= *iface
) != NULL
) {
216 if (tmp
->dev
== dev
) {
220 dev
->atalk_ptr
= NULL
;
224 write_unlock_bh(&atalk_interfaces_lock
);
227 static struct atalk_iface
*atif_add_device(struct net_device
*dev
,
228 struct atalk_addr
*sa
)
230 struct atalk_iface
*iface
= kzalloc(sizeof(*iface
), GFP_KERNEL
);
237 dev
->atalk_ptr
= iface
;
238 iface
->address
= *sa
;
241 write_lock_bh(&atalk_interfaces_lock
);
242 iface
->next
= atalk_interfaces
;
243 atalk_interfaces
= iface
;
244 write_unlock_bh(&atalk_interfaces_lock
);
249 /* Perform phase 2 AARP probing on our tentative address */
250 static int atif_probe_device(struct atalk_iface
*atif
)
252 int netrange
= ntohs(atif
->nets
.nr_lastnet
) -
253 ntohs(atif
->nets
.nr_firstnet
) + 1;
254 int probe_net
= ntohs(atif
->address
.s_net
);
255 int probe_node
= atif
->address
.s_node
;
258 /* Offset the network we start probing with */
259 if (probe_net
== ATADDR_ANYNET
) {
260 probe_net
= ntohs(atif
->nets
.nr_firstnet
);
262 probe_net
+= jiffies
% netrange
;
264 if (probe_node
== ATADDR_ANYNODE
)
265 probe_node
= jiffies
& 0xFF;
267 /* Scan the networks */
268 atif
->status
|= ATIF_PROBE
;
269 for (netct
= 0; netct
<= netrange
; netct
++) {
270 /* Sweep the available nodes from a given start */
271 atif
->address
.s_net
= htons(probe_net
);
272 for (nodect
= 0; nodect
< 256; nodect
++) {
273 atif
->address
.s_node
= (nodect
+ probe_node
) & 0xFF;
274 if (atif
->address
.s_node
> 0 &&
275 atif
->address
.s_node
< 254) {
276 /* Probe a proposed address */
277 aarp_probe_network(atif
);
279 if (!(atif
->status
& ATIF_PROBE_FAIL
)) {
280 atif
->status
&= ~ATIF_PROBE
;
284 atif
->status
&= ~ATIF_PROBE_FAIL
;
287 if (probe_net
> ntohs(atif
->nets
.nr_lastnet
))
288 probe_net
= ntohs(atif
->nets
.nr_firstnet
);
290 atif
->status
&= ~ATIF_PROBE
;
292 return -EADDRINUSE
; /* Network is full... */
296 /* Perform AARP probing for a proxy address */
297 static int atif_proxy_probe_device(struct atalk_iface
*atif
,
298 struct atalk_addr
* proxy_addr
)
300 int netrange
= ntohs(atif
->nets
.nr_lastnet
) -
301 ntohs(atif
->nets
.nr_firstnet
) + 1;
302 /* we probe the interface's network */
303 int probe_net
= ntohs(atif
->address
.s_net
);
304 int probe_node
= ATADDR_ANYNODE
; /* we'll take anything */
307 /* Offset the network we start probing with */
308 if (probe_net
== ATADDR_ANYNET
) {
309 probe_net
= ntohs(atif
->nets
.nr_firstnet
);
311 probe_net
+= jiffies
% netrange
;
314 if (probe_node
== ATADDR_ANYNODE
)
315 probe_node
= jiffies
& 0xFF;
317 /* Scan the networks */
318 for (netct
= 0; netct
<= netrange
; netct
++) {
319 /* Sweep the available nodes from a given start */
320 proxy_addr
->s_net
= htons(probe_net
);
321 for (nodect
= 0; nodect
< 256; nodect
++) {
322 proxy_addr
->s_node
= (nodect
+ probe_node
) & 0xFF;
323 if (proxy_addr
->s_node
> 0 &&
324 proxy_addr
->s_node
< 254) {
325 /* Tell AARP to probe a proposed address */
326 int ret
= aarp_proxy_probe_network(atif
,
329 if (ret
!= -EADDRINUSE
)
334 if (probe_net
> ntohs(atif
->nets
.nr_lastnet
))
335 probe_net
= ntohs(atif
->nets
.nr_firstnet
);
338 return -EADDRINUSE
; /* Network is full... */
342 struct atalk_addr
*atalk_find_dev_addr(struct net_device
*dev
)
344 struct atalk_iface
*iface
= dev
->atalk_ptr
;
345 return iface
? &iface
->address
: NULL
;
348 static struct atalk_addr
*atalk_find_primary(void)
350 struct atalk_iface
*fiface
= NULL
;
351 struct atalk_addr
*retval
;
352 struct atalk_iface
*iface
;
355 * Return a point-to-point interface only if
356 * there is no non-ptp interface available.
358 read_lock_bh(&atalk_interfaces_lock
);
359 for (iface
= atalk_interfaces
; iface
; iface
= iface
->next
) {
360 if (!fiface
&& !(iface
->dev
->flags
& IFF_LOOPBACK
))
362 if (!(iface
->dev
->flags
& (IFF_LOOPBACK
| IFF_POINTOPOINT
))) {
363 retval
= &iface
->address
;
369 retval
= &fiface
->address
;
370 else if (atalk_interfaces
)
371 retval
= &atalk_interfaces
->address
;
375 read_unlock_bh(&atalk_interfaces_lock
);
380 * Find a match for 'any network' - ie any of our interfaces with that
381 * node number will do just nicely.
383 static struct atalk_iface
*atalk_find_anynet(int node
, struct net_device
*dev
)
385 struct atalk_iface
*iface
= dev
->atalk_ptr
;
387 if (!iface
|| iface
->status
& ATIF_PROBE
)
390 if (node
!= ATADDR_BCAST
&&
391 iface
->address
.s_node
!= node
&&
392 node
!= ATADDR_ANYNODE
)
401 /* Find a match for a specific network:node pair */
402 static struct atalk_iface
*atalk_find_interface(__be16 net
, int node
)
404 struct atalk_iface
*iface
;
406 read_lock_bh(&atalk_interfaces_lock
);
407 for (iface
= atalk_interfaces
; iface
; iface
= iface
->next
) {
408 if ((node
== ATADDR_BCAST
||
409 node
== ATADDR_ANYNODE
||
410 iface
->address
.s_node
== node
) &&
411 iface
->address
.s_net
== net
&&
412 !(iface
->status
& ATIF_PROBE
))
415 /* XXXX.0 -- net.0 returns the iface associated with net */
416 if (node
== ATADDR_ANYNODE
&& net
!= ATADDR_ANYNET
&&
417 ntohs(iface
->nets
.nr_firstnet
) <= ntohs(net
) &&
418 ntohs(net
) <= ntohs(iface
->nets
.nr_lastnet
))
421 read_unlock_bh(&atalk_interfaces_lock
);
427 * Find a route for an AppleTalk packet. This ought to get cached in
428 * the socket (later on...). We know about host routes and the fact
429 * that a route must be direct to broadcast.
431 static struct atalk_route
*atrtr_find(struct atalk_addr
*target
)
434 * we must search through all routes unless we find a
435 * host route, because some host routes might overlap
438 struct atalk_route
*net_route
= NULL
;
439 struct atalk_route
*r
;
441 read_lock_bh(&atalk_routes_lock
);
442 for (r
= atalk_routes
; r
; r
= r
->next
) {
443 if (!(r
->flags
& RTF_UP
))
446 if (r
->target
.s_net
== target
->s_net
) {
447 if (r
->flags
& RTF_HOST
) {
449 * if this host route is for the target,
452 if (r
->target
.s_node
== target
->s_node
)
456 * this route will work if there isn't a
457 * direct host route, so cache it
464 * if we found a network route but not a direct host
465 * route, then return it
469 else if (atrtr_default
.dev
)
471 else /* No route can be found */
474 read_unlock_bh(&atalk_routes_lock
);
480 * Given an AppleTalk network, find the device to use. This can be
483 struct net_device
*atrtr_get_dev(struct atalk_addr
*sa
)
485 struct atalk_route
*atr
= atrtr_find(sa
);
486 return atr
? atr
->dev
: NULL
;
489 /* Set up a default router */
490 static void atrtr_set_default(struct net_device
*dev
)
492 atrtr_default
.dev
= dev
;
493 atrtr_default
.flags
= RTF_UP
;
494 atrtr_default
.gateway
.s_net
= htons(0);
495 atrtr_default
.gateway
.s_node
= 0;
499 * Add a router. Basically make sure it looks valid and stuff the
500 * entry in the list. While it uses netranges we always set them to one
501 * entry to work like netatalk.
503 static int atrtr_create(struct rtentry
*r
, struct net_device
*devhint
)
505 struct sockaddr_at
*ta
= (struct sockaddr_at
*)&r
->rt_dst
;
506 struct sockaddr_at
*ga
= (struct sockaddr_at
*)&r
->rt_gateway
;
507 struct atalk_route
*rt
;
508 struct atalk_iface
*iface
, *riface
;
509 int retval
= -EINVAL
;
512 * Fixme: Raise/Lower a routing change semaphore for these
516 /* Validate the request */
517 if (ta
->sat_family
!= AF_APPLETALK
||
518 (!devhint
&& ga
->sat_family
!= AF_APPLETALK
))
521 /* Now walk the routing table and make our decisions */
522 write_lock_bh(&atalk_routes_lock
);
523 for (rt
= atalk_routes
; rt
; rt
= rt
->next
) {
524 if (r
->rt_flags
!= rt
->flags
)
527 if (ta
->sat_addr
.s_net
== rt
->target
.s_net
) {
528 if (!(rt
->flags
& RTF_HOST
))
530 if (ta
->sat_addr
.s_node
== rt
->target
.s_node
)
538 read_lock_bh(&atalk_interfaces_lock
);
539 for (iface
= atalk_interfaces
; iface
; iface
= iface
->next
) {
541 ntohs(ga
->sat_addr
.s_net
) >=
542 ntohs(iface
->nets
.nr_firstnet
) &&
543 ntohs(ga
->sat_addr
.s_net
) <=
544 ntohs(iface
->nets
.nr_lastnet
))
547 if (ga
->sat_addr
.s_net
== iface
->address
.s_net
&&
548 ga
->sat_addr
.s_node
== iface
->address
.s_node
)
551 read_unlock_bh(&atalk_interfaces_lock
);
553 retval
= -ENETUNREACH
;
557 devhint
= riface
->dev
;
561 rt
= kzalloc(sizeof(*rt
), GFP_ATOMIC
);
567 rt
->next
= atalk_routes
;
571 /* Fill in the routing entry */
572 rt
->target
= ta
->sat_addr
;
575 rt
->flags
= r
->rt_flags
;
576 rt
->gateway
= ga
->sat_addr
;
580 write_unlock_bh(&atalk_routes_lock
);
585 /* Delete a route. Find it and discard it */
586 static int atrtr_delete(struct atalk_addr
* addr
)
588 struct atalk_route
**r
= &atalk_routes
;
590 struct atalk_route
*tmp
;
592 write_lock_bh(&atalk_routes_lock
);
593 while ((tmp
= *r
) != NULL
) {
594 if (tmp
->target
.s_net
== addr
->s_net
&&
595 (!(tmp
->flags
&RTF_GATEWAY
) ||
596 tmp
->target
.s_node
== addr
->s_node
)) {
606 write_unlock_bh(&atalk_routes_lock
);
611 * Called when a device is downed. Just throw away any routes
614 static void atrtr_device_down(struct net_device
*dev
)
616 struct atalk_route
**r
= &atalk_routes
;
617 struct atalk_route
*tmp
;
619 write_lock_bh(&atalk_routes_lock
);
620 while ((tmp
= *r
) != NULL
) {
621 if (tmp
->dev
== dev
) {
628 write_unlock_bh(&atalk_routes_lock
);
630 if (atrtr_default
.dev
== dev
)
631 atrtr_set_default(NULL
);
634 /* Actually down the interface */
635 static inline void atalk_dev_down(struct net_device
*dev
)
637 atrtr_device_down(dev
); /* Remove all routes for the device */
638 aarp_device_down(dev
); /* Remove AARP entries for the device */
639 atif_drop_device(dev
); /* Remove the device */
643 * A device event has occurred. Watch for devices going down and
644 * delete our use of them (iface and route).
646 static int ddp_device_event(struct notifier_block
*this, unsigned long event
,
649 struct net_device
*dev
= ptr
;
651 if (dev_net(dev
) != &init_net
)
654 if (event
== NETDEV_DOWN
)
655 /* Discard any use of this */
661 /* ioctl calls. Shouldn't even need touching */
662 /* Device configuration ioctl calls */
663 static int atif_ioctl(int cmd
, void __user
*arg
)
665 static char aarp_mcast
[6] = { 0x09, 0x00, 0x00, 0xFF, 0xFF, 0xFF };
667 struct atalk_netrange
*nr
;
668 struct sockaddr_at
*sa
;
669 struct net_device
*dev
;
670 struct atalk_iface
*atif
;
673 struct rtentry rtdef
;
676 if (copy_from_user(&atreq
, arg
, sizeof(atreq
)))
679 dev
= __dev_get_by_name(&init_net
, atreq
.ifr_name
);
683 sa
= (struct sockaddr_at
*)&atreq
.ifr_addr
;
684 atif
= atalk_find_dev(dev
);
688 if (!capable(CAP_NET_ADMIN
))
690 if (sa
->sat_family
!= AF_APPLETALK
)
692 if (dev
->type
!= ARPHRD_ETHER
&&
693 dev
->type
!= ARPHRD_LOOPBACK
&&
694 dev
->type
!= ARPHRD_LOCALTLK
&&
695 dev
->type
!= ARPHRD_PPP
)
696 return -EPROTONOSUPPORT
;
698 nr
= (struct atalk_netrange
*)&sa
->sat_zero
[0];
702 * if this is a point-to-point iface, and we already
703 * have an iface for this AppleTalk address, then we
704 * should not add a route
706 if ((dev
->flags
& IFF_POINTOPOINT
) &&
707 atalk_find_interface(sa
->sat_addr
.s_net
,
708 sa
->sat_addr
.s_node
)) {
709 printk(KERN_DEBUG
"AppleTalk: point-to-point "
710 "interface added with "
711 "existing address\n");
716 * Phase 1 is fine on LocalTalk but we don't do
717 * EtherTalk phase 1. Anyone wanting to add it go ahead.
719 if (dev
->type
== ARPHRD_ETHER
&& nr
->nr_phase
!= 2)
720 return -EPROTONOSUPPORT
;
721 if (sa
->sat_addr
.s_node
== ATADDR_BCAST
||
722 sa
->sat_addr
.s_node
== 254)
725 /* Already setting address */
726 if (atif
->status
& ATIF_PROBE
)
729 atif
->address
.s_net
= sa
->sat_addr
.s_net
;
730 atif
->address
.s_node
= sa
->sat_addr
.s_node
;
731 atrtr_device_down(dev
); /* Flush old routes */
733 atif
= atif_add_device(dev
, &sa
->sat_addr
);
740 * Check if the chosen address is used. If so we
741 * error and atalkd will try another.
744 if (!(dev
->flags
& IFF_LOOPBACK
) &&
745 !(dev
->flags
& IFF_POINTOPOINT
) &&
746 atif_probe_device(atif
) < 0) {
747 atif_drop_device(dev
);
751 /* Hey it worked - add the direct routes */
752 sa
= (struct sockaddr_at
*)&rtdef
.rt_gateway
;
753 sa
->sat_family
= AF_APPLETALK
;
754 sa
->sat_addr
.s_net
= atif
->address
.s_net
;
755 sa
->sat_addr
.s_node
= atif
->address
.s_node
;
756 sa
= (struct sockaddr_at
*)&rtdef
.rt_dst
;
757 rtdef
.rt_flags
= RTF_UP
;
758 sa
->sat_family
= AF_APPLETALK
;
759 sa
->sat_addr
.s_node
= ATADDR_ANYNODE
;
760 if (dev
->flags
& IFF_LOOPBACK
||
761 dev
->flags
& IFF_POINTOPOINT
)
762 rtdef
.rt_flags
|= RTF_HOST
;
764 /* Routerless initial state */
765 if (nr
->nr_firstnet
== htons(0) &&
766 nr
->nr_lastnet
== htons(0xFFFE)) {
767 sa
->sat_addr
.s_net
= atif
->address
.s_net
;
768 atrtr_create(&rtdef
, dev
);
769 atrtr_set_default(dev
);
771 limit
= ntohs(nr
->nr_lastnet
);
772 if (limit
- ntohs(nr
->nr_firstnet
) > 4096) {
773 printk(KERN_WARNING
"Too many routes/"
778 for (ct
= ntohs(nr
->nr_firstnet
);
780 sa
->sat_addr
.s_net
= htons(ct
);
781 atrtr_create(&rtdef
, dev
);
784 dev_mc_add(dev
, aarp_mcast
, 6, 1);
789 return -EADDRNOTAVAIL
;
791 sa
->sat_family
= AF_APPLETALK
;
792 sa
->sat_addr
= atif
->address
;
797 return -EADDRNOTAVAIL
;
799 sa
->sat_family
= AF_APPLETALK
;
800 sa
->sat_addr
.s_net
= atif
->address
.s_net
;
801 sa
->sat_addr
.s_node
= ATADDR_BCAST
;
804 case SIOCATALKDIFADDR
:
806 if (!capable(CAP_NET_ADMIN
))
808 if (sa
->sat_family
!= AF_APPLETALK
)
814 if (!capable(CAP_NET_ADMIN
))
816 if (sa
->sat_family
!= AF_APPLETALK
)
819 return -EADDRNOTAVAIL
;
822 * for now, we only support proxy AARP on ELAP;
823 * we should be able to do it for LocalTalk, too.
825 if (dev
->type
!= ARPHRD_ETHER
)
826 return -EPROTONOSUPPORT
;
829 * atif points to the current interface on this network;
830 * we aren't concerned about its current status (at
831 * least for now), but it has all the settings about
832 * the network we're going to probe. Consequently, it
836 return -EADDRNOTAVAIL
;
838 nr
= (struct atalk_netrange
*)&(atif
->nets
);
840 * Phase 1 is fine on Localtalk but we don't do
841 * Ethertalk phase 1. Anyone wanting to add it go ahead.
843 if (dev
->type
== ARPHRD_ETHER
&& nr
->nr_phase
!= 2)
844 return -EPROTONOSUPPORT
;
846 if (sa
->sat_addr
.s_node
== ATADDR_BCAST
||
847 sa
->sat_addr
.s_node
== 254)
851 * Check if the chosen address is used. If so we
852 * error and ATCP will try another.
854 if (atif_proxy_probe_device(atif
, &(sa
->sat_addr
)) < 0)
858 * We now have an address on the local network, and
859 * the AARP code will defend it for us until we take it
860 * down. We don't set up any routes right now, because
861 * ATCP will install them manually via SIOCADDRT.
866 if (!capable(CAP_NET_ADMIN
))
868 if (sa
->sat_family
!= AF_APPLETALK
)
871 return -EADDRNOTAVAIL
;
873 /* give to aarp module to remove proxy entry */
874 aarp_proxy_remove(atif
->dev
, &(sa
->sat_addr
));
878 return copy_to_user(arg
, &atreq
, sizeof(atreq
)) ? -EFAULT
: 0;
881 /* Routing ioctl() calls */
882 static int atrtr_ioctl(unsigned int cmd
, void __user
*arg
)
886 if (copy_from_user(&rt
, arg
, sizeof(rt
)))
891 if (rt
.rt_dst
.sa_family
!= AF_APPLETALK
)
893 return atrtr_delete(&((struct sockaddr_at
*)
894 &rt
.rt_dst
)->sat_addr
);
897 struct net_device
*dev
= NULL
;
900 if (copy_from_user(name
, rt
.rt_dev
, IFNAMSIZ
-1))
902 name
[IFNAMSIZ
-1] = '\0';
903 dev
= __dev_get_by_name(&init_net
, name
);
907 return atrtr_create(&rt
, dev
);
913 /**************************************************************************\
915 * Handling for system calls applied via the various interfaces to an *
916 * AppleTalk socket object. *
918 \**************************************************************************/
921 * Checksum: This is 'optional'. It's quite likely also a good
922 * candidate for assembler hackery 8)
924 static unsigned long atalk_sum_partial(const unsigned char *data
,
925 int len
, unsigned long sum
)
927 /* This ought to be unwrapped neatly. I'll trust gcc for now */
940 /* Checksum skb data -- similar to skb_checksum */
941 static unsigned long atalk_sum_skb(const struct sk_buff
*skb
, int offset
,
942 int len
, unsigned long sum
)
944 int start
= skb_headlen(skb
);
947 /* checksum stuff in header space */
948 if ( (copy
= start
- offset
) > 0) {
951 sum
= atalk_sum_partial(skb
->data
+ offset
, copy
, sum
);
952 if ( (len
-= copy
) == 0)
958 /* checksum stuff in frags */
959 for (i
= 0; i
< skb_shinfo(skb
)->nr_frags
; i
++) {
962 BUG_TRAP(start
<= offset
+ len
);
964 end
= start
+ skb_shinfo(skb
)->frags
[i
].size
;
965 if ((copy
= end
- offset
) > 0) {
967 skb_frag_t
*frag
= &skb_shinfo(skb
)->frags
[i
];
971 vaddr
= kmap_skb_frag(frag
);
972 sum
= atalk_sum_partial(vaddr
+ frag
->page_offset
+
973 offset
- start
, copy
, sum
);
974 kunmap_skb_frag(vaddr
);
983 if (skb_shinfo(skb
)->frag_list
) {
984 struct sk_buff
*list
= skb_shinfo(skb
)->frag_list
;
986 for (; list
; list
= list
->next
) {
989 BUG_TRAP(start
<= offset
+ len
);
991 end
= start
+ list
->len
;
992 if ((copy
= end
- offset
) > 0) {
995 sum
= atalk_sum_skb(list
, offset
- start
,
997 if ((len
-= copy
) == 0)
1010 static __be16
atalk_checksum(const struct sk_buff
*skb
, int len
)
1014 /* skip header 4 bytes */
1015 sum
= atalk_sum_skb(skb
, 4, len
-4, 0);
1017 /* Use 0xFFFF for 0. 0 itself means none */
1018 return sum
? htons((unsigned short)sum
) : htons(0xFFFF);
1021 static struct proto ddp_proto
= {
1023 .owner
= THIS_MODULE
,
1024 .obj_size
= sizeof(struct atalk_sock
),
1028 * Create a socket. Initialise the socket, blank the addresses
1031 static int atalk_create(struct net
*net
, struct socket
*sock
, int protocol
)
1034 int rc
= -ESOCKTNOSUPPORT
;
1036 if (net
!= &init_net
)
1037 return -EAFNOSUPPORT
;
1040 * We permit SOCK_DGRAM and RAW is an extension. It is trivial to do
1041 * and gives you the full ELAP frame. Should be handy for CAP 8)
1043 if (sock
->type
!= SOCK_RAW
&& sock
->type
!= SOCK_DGRAM
)
1046 sk
= sk_alloc(net
, PF_APPLETALK
, GFP_KERNEL
, &ddp_proto
);
1050 sock
->ops
= &atalk_dgram_ops
;
1051 sock_init_data(sock
, sk
);
1053 /* Checksums on by default */
1054 sock_set_flag(sk
, SOCK_ZAPPED
);
1059 /* Free a socket. No work needed */
1060 static int atalk_release(struct socket
*sock
)
1062 struct sock
*sk
= sock
->sk
;
1067 atalk_destroy_socket(sk
);
1073 * atalk_pick_and_bind_port - Pick a source port when one is not given
1074 * @sk - socket to insert into the tables
1075 * @sat - address to search for
1077 * Pick a source port when one is not given. If we can find a suitable free
1078 * one, we insert the socket into the tables using it.
1080 * This whole operation must be atomic.
1082 static int atalk_pick_and_bind_port(struct sock
*sk
, struct sockaddr_at
*sat
)
1086 write_lock_bh(&atalk_sockets_lock
);
1088 for (sat
->sat_port
= ATPORT_RESERVED
;
1089 sat
->sat_port
< ATPORT_LAST
;
1092 struct hlist_node
*node
;
1094 sk_for_each(s
, node
, &atalk_sockets
) {
1095 struct atalk_sock
*at
= at_sk(s
);
1097 if (at
->src_net
== sat
->sat_addr
.s_net
&&
1098 at
->src_node
== sat
->sat_addr
.s_node
&&
1099 at
->src_port
== sat
->sat_port
)
1103 /* Wheee, it's free, assign and insert. */
1104 __atalk_insert_socket(sk
);
1105 at_sk(sk
)->src_port
= sat
->sat_port
;
1114 write_unlock_bh(&atalk_sockets_lock
);
1118 static int atalk_autobind(struct sock
*sk
)
1120 struct atalk_sock
*at
= at_sk(sk
);
1121 struct sockaddr_at sat
;
1122 struct atalk_addr
*ap
= atalk_find_primary();
1123 int n
= -EADDRNOTAVAIL
;
1125 if (!ap
|| ap
->s_net
== htons(ATADDR_ANYNET
))
1128 at
->src_net
= sat
.sat_addr
.s_net
= ap
->s_net
;
1129 at
->src_node
= sat
.sat_addr
.s_node
= ap
->s_node
;
1131 n
= atalk_pick_and_bind_port(sk
, &sat
);
1133 sock_reset_flag(sk
, SOCK_ZAPPED
);
1138 /* Set the address 'our end' of the connection */
1139 static int atalk_bind(struct socket
*sock
, struct sockaddr
*uaddr
, int addr_len
)
1141 struct sockaddr_at
*addr
= (struct sockaddr_at
*)uaddr
;
1142 struct sock
*sk
= sock
->sk
;
1143 struct atalk_sock
*at
= at_sk(sk
);
1145 if (!sock_flag(sk
, SOCK_ZAPPED
) ||
1146 addr_len
!= sizeof(struct sockaddr_at
))
1149 if (addr
->sat_family
!= AF_APPLETALK
)
1150 return -EAFNOSUPPORT
;
1152 if (addr
->sat_addr
.s_net
== htons(ATADDR_ANYNET
)) {
1153 struct atalk_addr
*ap
= atalk_find_primary();
1156 return -EADDRNOTAVAIL
;
1158 at
->src_net
= addr
->sat_addr
.s_net
= ap
->s_net
;
1159 at
->src_node
= addr
->sat_addr
.s_node
= ap
->s_node
;
1161 if (!atalk_find_interface(addr
->sat_addr
.s_net
,
1162 addr
->sat_addr
.s_node
))
1163 return -EADDRNOTAVAIL
;
1165 at
->src_net
= addr
->sat_addr
.s_net
;
1166 at
->src_node
= addr
->sat_addr
.s_node
;
1169 if (addr
->sat_port
== ATADDR_ANYPORT
) {
1170 int n
= atalk_pick_and_bind_port(sk
, addr
);
1175 at
->src_port
= addr
->sat_port
;
1177 if (atalk_find_or_insert_socket(sk
, addr
))
1181 sock_reset_flag(sk
, SOCK_ZAPPED
);
1185 /* Set the address we talk to */
1186 static int atalk_connect(struct socket
*sock
, struct sockaddr
*uaddr
,
1187 int addr_len
, int flags
)
1189 struct sock
*sk
= sock
->sk
;
1190 struct atalk_sock
*at
= at_sk(sk
);
1191 struct sockaddr_at
*addr
;
1193 sk
->sk_state
= TCP_CLOSE
;
1194 sock
->state
= SS_UNCONNECTED
;
1196 if (addr_len
!= sizeof(*addr
))
1199 addr
= (struct sockaddr_at
*)uaddr
;
1201 if (addr
->sat_family
!= AF_APPLETALK
)
1202 return -EAFNOSUPPORT
;
1204 if (addr
->sat_addr
.s_node
== ATADDR_BCAST
&&
1205 !sock_flag(sk
, SOCK_BROADCAST
)) {
1207 printk(KERN_WARNING
"%s is broken and did not set "
1208 "SO_BROADCAST. It will break when 2.2 is "
1216 if (sock_flag(sk
, SOCK_ZAPPED
))
1217 if (atalk_autobind(sk
) < 0)
1220 if (!atrtr_get_dev(&addr
->sat_addr
))
1221 return -ENETUNREACH
;
1223 at
->dest_port
= addr
->sat_port
;
1224 at
->dest_net
= addr
->sat_addr
.s_net
;
1225 at
->dest_node
= addr
->sat_addr
.s_node
;
1227 sock
->state
= SS_CONNECTED
;
1228 sk
->sk_state
= TCP_ESTABLISHED
;
1233 * Find the name of an AppleTalk socket. Just copy the right
1234 * fields into the sockaddr.
1236 static int atalk_getname(struct socket
*sock
, struct sockaddr
*uaddr
,
1237 int *uaddr_len
, int peer
)
1239 struct sockaddr_at sat
;
1240 struct sock
*sk
= sock
->sk
;
1241 struct atalk_sock
*at
= at_sk(sk
);
1243 if (sock_flag(sk
, SOCK_ZAPPED
))
1244 if (atalk_autobind(sk
) < 0)
1247 *uaddr_len
= sizeof(struct sockaddr_at
);
1250 if (sk
->sk_state
!= TCP_ESTABLISHED
)
1253 sat
.sat_addr
.s_net
= at
->dest_net
;
1254 sat
.sat_addr
.s_node
= at
->dest_node
;
1255 sat
.sat_port
= at
->dest_port
;
1257 sat
.sat_addr
.s_net
= at
->src_net
;
1258 sat
.sat_addr
.s_node
= at
->src_node
;
1259 sat
.sat_port
= at
->src_port
;
1262 sat
.sat_family
= AF_APPLETALK
;
1263 memcpy(uaddr
, &sat
, sizeof(sat
));
1267 #if defined(CONFIG_IPDDP) || defined(CONFIG_IPDDP_MODULE)
1268 static __inline__
int is_ip_over_ddp(struct sk_buff
*skb
)
1270 return skb
->data
[12] == 22;
1273 static int handle_ip_over_ddp(struct sk_buff
*skb
)
1275 struct net_device
*dev
= __dev_get_by_name(&init_net
, "ipddp0");
1276 struct net_device_stats
*stats
;
1278 /* This needs to be able to handle ipddp"N" devices */
1282 skb
->protocol
= htons(ETH_P_IP
);
1285 skb_reset_transport_header(skb
);
1288 stats
->rx_packets
++;
1289 stats
->rx_bytes
+= skb
->len
+ 13;
1290 netif_rx(skb
); /* Send the SKB up to a higher place. */
1294 /* make it easy for gcc to optimize this test out, i.e. kill the code */
1295 #define is_ip_over_ddp(skb) 0
1296 #define handle_ip_over_ddp(skb) 0
1299 static void atalk_route_packet(struct sk_buff
*skb
, struct net_device
*dev
,
1300 struct ddpehdr
*ddp
, __u16 len_hops
,
1303 struct atalk_route
*rt
;
1304 struct atalk_addr ta
;
1307 * Don't route multicast, etc., packets, or packets sent to "this
1310 if (skb
->pkt_type
!= PACKET_HOST
|| !ddp
->deh_dnet
) {
1314 * Can it ever happen that a packet is from a PPP iface and
1315 * needs to be broadcast onto the default network?
1317 if (dev
->type
== ARPHRD_PPP
)
1318 printk(KERN_DEBUG
"AppleTalk: didn't forward broadcast "
1319 "packet received from PPP iface\n");
1323 ta
.s_net
= ddp
->deh_dnet
;
1324 ta
.s_node
= ddp
->deh_dnode
;
1326 /* Route the packet */
1327 rt
= atrtr_find(&ta
);
1328 /* increment hops count */
1329 len_hops
+= 1 << 10;
1330 if (!rt
|| !(len_hops
& (15 << 10)))
1333 /* FIXME: use skb->cb to be able to use shared skbs */
1336 * Route goes through another gateway, so set the target to the
1340 if (rt
->flags
& RTF_GATEWAY
) {
1341 ta
.s_net
= rt
->gateway
.s_net
;
1342 ta
.s_node
= rt
->gateway
.s_node
;
1345 /* Fix up skb->len field */
1346 skb_trim(skb
, min_t(unsigned int, origlen
,
1347 (rt
->dev
->hard_header_len
+
1348 ddp_dl
->header_length
+ (len_hops
& 1023))));
1350 /* FIXME: use skb->cb to be able to use shared skbs */
1351 ddp
->deh_len_hops
= htons(len_hops
);
1354 * Send the buffer onwards
1356 * Now we must always be careful. If it's come from LocalTalk to
1357 * EtherTalk it might not fit
1359 * Order matters here: If a packet has to be copied to make a new
1360 * headroom (rare hopefully) then it won't need unsharing.
1362 * Note. ddp-> becomes invalid at the realloc.
1364 if (skb_headroom(skb
) < 22) {
1365 /* 22 bytes - 12 ether, 2 len, 3 802.2 5 snap */
1366 struct sk_buff
*nskb
= skb_realloc_headroom(skb
, 32);
1372 skb
= skb_unshare(skb
, GFP_ATOMIC
);
1375 * If the buffer didn't vanish into the lack of space bitbucket we can
1378 if (skb
&& aarp_send_ddp(rt
->dev
, skb
, &ta
, NULL
) == -1)
1387 * atalk_rcv - Receive a packet (in skb) from device dev
1388 * @skb - packet received
1389 * @dev - network device where the packet comes from
1392 * Receive a packet (in skb) from device dev. This has come from the SNAP
1393 * decoder, and on entry skb->transport_header is the DDP header, skb->len
1394 * is the DDP header, skb->len is the DDP length. The physical headers
1395 * have been extracted. PPP should probably pass frames marked as for this
1396 * layer. [ie ARPHRD_ETHERTALK]
1398 static int atalk_rcv(struct sk_buff
*skb
, struct net_device
*dev
,
1399 struct packet_type
*pt
, struct net_device
*orig_dev
)
1401 struct ddpehdr
*ddp
;
1403 struct atalk_iface
*atif
;
1404 struct sockaddr_at tosat
;
1408 if (dev_net(dev
) != &init_net
)
1411 /* Don't mangle buffer if shared */
1412 if (!(skb
= skb_share_check(skb
, GFP_ATOMIC
)))
1415 /* Size check and make sure header is contiguous */
1416 if (!pskb_may_pull(skb
, sizeof(*ddp
)))
1421 len_hops
= ntohs(ddp
->deh_len_hops
);
1423 /* Trim buffer in case of stray trailing data */
1425 skb_trim(skb
, min_t(unsigned int, skb
->len
, len_hops
& 1023));
1428 * Size check to see if ddp->deh_len was crap
1429 * (Otherwise we'll detonate most spectacularly
1430 * in the middle of atalk_checksum() or recvmsg()).
1432 if (skb
->len
< sizeof(*ddp
) || skb
->len
< (len_hops
& 1023)) {
1433 pr_debug("AppleTalk: dropping corrupted frame (deh_len=%u, "
1434 "skb->len=%u)\n", len_hops
& 1023, skb
->len
);
1439 * Any checksums. Note we don't do htons() on this == is assumed to be
1440 * valid for net byte orders all over the networking code...
1443 atalk_checksum(skb
, len_hops
& 1023) != ddp
->deh_sum
)
1444 /* Not a valid AppleTalk frame - dustbin time */
1447 /* Check the packet is aimed at us */
1448 if (!ddp
->deh_dnet
) /* Net 0 is 'this network' */
1449 atif
= atalk_find_anynet(ddp
->deh_dnode
, dev
);
1451 atif
= atalk_find_interface(ddp
->deh_dnet
, ddp
->deh_dnode
);
1454 /* Not ours, so we route the packet via the correct
1457 atalk_route_packet(skb
, dev
, ddp
, len_hops
, origlen
);
1461 /* if IP over DDP is not selected this code will be optimized out */
1462 if (is_ip_over_ddp(skb
))
1463 return handle_ip_over_ddp(skb
);
1465 * Which socket - atalk_search_socket() looks for a *full match*
1466 * of the <net, node, port> tuple.
1468 tosat
.sat_addr
.s_net
= ddp
->deh_dnet
;
1469 tosat
.sat_addr
.s_node
= ddp
->deh_dnode
;
1470 tosat
.sat_port
= ddp
->deh_dport
;
1472 sock
= atalk_search_socket(&tosat
, atif
);
1473 if (!sock
) /* But not one of our sockets */
1476 /* Queue packet (standard) */
1479 if (sock_queue_rcv_skb(sock
, skb
) < 0)
1489 * Receive a LocalTalk frame. We make some demands on the caller here.
1490 * Caller must provide enough headroom on the packet to pull the short
1491 * header and append a long one.
1493 static int ltalk_rcv(struct sk_buff
*skb
, struct net_device
*dev
,
1494 struct packet_type
*pt
, struct net_device
*orig_dev
)
1496 if (dev_net(dev
) != &init_net
)
1499 /* Expand any short form frames */
1500 if (skb_mac_header(skb
)[2] == 1) {
1501 struct ddpehdr
*ddp
;
1502 /* Find our address */
1503 struct atalk_addr
*ap
= atalk_find_dev_addr(dev
);
1505 if (!ap
|| skb
->len
< sizeof(__be16
) || skb
->len
> 1023)
1508 /* Don't mangle buffer if shared */
1509 if (!(skb
= skb_share_check(skb
, GFP_ATOMIC
)))
1513 * The push leaves us with a ddephdr not an shdr, and
1514 * handily the port bytes in the right place preset.
1516 ddp
= (struct ddpehdr
*) skb_push(skb
, sizeof(*ddp
) - 4);
1518 /* Now fill in the long header */
1521 * These two first. The mac overlays the new source/dest
1522 * network information so we MUST copy these before
1523 * we write the network numbers !
1526 ddp
->deh_dnode
= skb_mac_header(skb
)[0]; /* From physical header */
1527 ddp
->deh_snode
= skb_mac_header(skb
)[1]; /* From physical header */
1529 ddp
->deh_dnet
= ap
->s_net
; /* Network number */
1530 ddp
->deh_snet
= ap
->s_net
;
1531 ddp
->deh_sum
= 0; /* No checksum */
1533 * Not sure about this bit...
1535 /* Non routable, so force a drop if we slip up later */
1536 ddp
->deh_len_hops
= htons(skb
->len
+ (DDP_MAXHOPS
<< 10));
1538 skb_reset_transport_header(skb
);
1540 return atalk_rcv(skb
, dev
, pt
, orig_dev
);
1546 static int atalk_sendmsg(struct kiocb
*iocb
, struct socket
*sock
, struct msghdr
*msg
,
1549 struct sock
*sk
= sock
->sk
;
1550 struct atalk_sock
*at
= at_sk(sk
);
1551 struct sockaddr_at
*usat
= (struct sockaddr_at
*)msg
->msg_name
;
1552 int flags
= msg
->msg_flags
;
1554 struct sockaddr_at local_satalk
, gsat
;
1555 struct sk_buff
*skb
;
1556 struct net_device
*dev
;
1557 struct ddpehdr
*ddp
;
1559 struct atalk_route
*rt
;
1562 if (flags
& ~(MSG_DONTWAIT
|MSG_CMSG_COMPAT
))
1565 if (len
> DDP_MAXSZ
)
1569 if (sock_flag(sk
, SOCK_ZAPPED
))
1570 if (atalk_autobind(sk
) < 0)
1573 if (msg
->msg_namelen
< sizeof(*usat
) ||
1574 usat
->sat_family
!= AF_APPLETALK
)
1577 /* netatalk doesn't implement this check */
1578 if (usat
->sat_addr
.s_node
== ATADDR_BCAST
&&
1579 !sock_flag(sk
, SOCK_BROADCAST
)) {
1580 printk(KERN_INFO
"SO_BROADCAST: Fix your netatalk as "
1581 "it will break before 2.2\n");
1587 if (sk
->sk_state
!= TCP_ESTABLISHED
)
1589 usat
= &local_satalk
;
1590 usat
->sat_family
= AF_APPLETALK
;
1591 usat
->sat_port
= at
->dest_port
;
1592 usat
->sat_addr
.s_node
= at
->dest_node
;
1593 usat
->sat_addr
.s_net
= at
->dest_net
;
1596 /* Build a packet */
1597 SOCK_DEBUG(sk
, "SK %p: Got address.\n", sk
);
1600 size
= sizeof(struct ddpehdr
) + len
+ ddp_dl
->header_length
;
1602 if (usat
->sat_addr
.s_net
|| usat
->sat_addr
.s_node
== ATADDR_ANYNODE
) {
1603 rt
= atrtr_find(&usat
->sat_addr
);
1605 struct atalk_addr at_hint
;
1608 at_hint
.s_net
= at
->src_net
;
1610 rt
= atrtr_find(&at_hint
);
1613 return -ENETUNREACH
;
1617 SOCK_DEBUG(sk
, "SK %p: Size needed %d, device %s\n",
1618 sk
, size
, dev
->name
);
1620 size
+= dev
->hard_header_len
;
1621 skb
= sock_alloc_send_skb(sk
, size
, (flags
& MSG_DONTWAIT
), &err
);
1626 skb_reserve(skb
, ddp_dl
->header_length
);
1627 skb_reserve(skb
, dev
->hard_header_len
);
1630 SOCK_DEBUG(sk
, "SK %p: Begin build.\n", sk
);
1632 ddp
= (struct ddpehdr
*)skb_put(skb
, sizeof(struct ddpehdr
));
1633 ddp
->deh_len_hops
= htons(len
+ sizeof(*ddp
));
1634 ddp
->deh_dnet
= usat
->sat_addr
.s_net
;
1635 ddp
->deh_snet
= at
->src_net
;
1636 ddp
->deh_dnode
= usat
->sat_addr
.s_node
;
1637 ddp
->deh_snode
= at
->src_node
;
1638 ddp
->deh_dport
= usat
->sat_port
;
1639 ddp
->deh_sport
= at
->src_port
;
1641 SOCK_DEBUG(sk
, "SK %p: Copy user data (%Zd bytes).\n", sk
, len
);
1643 err
= memcpy_fromiovec(skb_put(skb
, len
), msg
->msg_iov
, len
);
1649 if (sk
->sk_no_check
== 1)
1652 ddp
->deh_sum
= atalk_checksum(skb
, len
+ sizeof(*ddp
));
1655 * Loopback broadcast packets to non gateway targets (ie routes
1656 * to group we are in)
1658 if (ddp
->deh_dnode
== ATADDR_BCAST
&&
1659 !(rt
->flags
& RTF_GATEWAY
) && !(dev
->flags
& IFF_LOOPBACK
)) {
1660 struct sk_buff
*skb2
= skb_copy(skb
, GFP_KERNEL
);
1664 SOCK_DEBUG(sk
, "SK %p: send out(copy).\n", sk
);
1665 if (aarp_send_ddp(dev
, skb2
,
1666 &usat
->sat_addr
, NULL
) == -1)
1668 /* else queued/sent above in the aarp queue */
1672 if (dev
->flags
& IFF_LOOPBACK
|| loopback
) {
1673 SOCK_DEBUG(sk
, "SK %p: Loop back.\n", sk
);
1676 if (ddp
->deh_dnode
== ATADDR_BCAST
) {
1677 struct atalk_addr at_lo
;
1682 rt
= atrtr_find(&at_lo
);
1685 return -ENETUNREACH
;
1690 ddp_dl
->request(ddp_dl
, skb
, dev
->dev_addr
);
1692 SOCK_DEBUG(sk
, "SK %p: send out.\n", sk
);
1693 if (rt
->flags
& RTF_GATEWAY
) {
1694 gsat
.sat_addr
= rt
->gateway
;
1698 if (aarp_send_ddp(dev
, skb
, &usat
->sat_addr
, NULL
) == -1)
1700 /* else queued/sent above in the aarp queue */
1702 SOCK_DEBUG(sk
, "SK %p: Done write (%Zd).\n", sk
, len
);
1707 static int atalk_recvmsg(struct kiocb
*iocb
, struct socket
*sock
, struct msghdr
*msg
,
1708 size_t size
, int flags
)
1710 struct sock
*sk
= sock
->sk
;
1711 struct sockaddr_at
*sat
= (struct sockaddr_at
*)msg
->msg_name
;
1712 struct ddpehdr
*ddp
;
1716 struct sk_buff
*skb
= skb_recv_datagram(sk
, flags
& ~MSG_DONTWAIT
,
1717 flags
& MSG_DONTWAIT
, &err
);
1721 /* FIXME: use skb->cb to be able to use shared skbs */
1723 copied
= ntohs(ddp
->deh_len_hops
) & 1023;
1725 if (sk
->sk_type
!= SOCK_RAW
) {
1726 offset
= sizeof(*ddp
);
1730 if (copied
> size
) {
1732 msg
->msg_flags
|= MSG_TRUNC
;
1734 err
= skb_copy_datagram_iovec(skb
, offset
, msg
->msg_iov
, copied
);
1738 sat
->sat_family
= AF_APPLETALK
;
1739 sat
->sat_port
= ddp
->deh_sport
;
1740 sat
->sat_addr
.s_node
= ddp
->deh_snode
;
1741 sat
->sat_addr
.s_net
= ddp
->deh_snet
;
1743 msg
->msg_namelen
= sizeof(*sat
);
1746 skb_free_datagram(sk
, skb
); /* Free the datagram. */
1747 return err
? : copied
;
1752 * AppleTalk ioctl calls.
1754 static int atalk_ioctl(struct socket
*sock
, unsigned int cmd
, unsigned long arg
)
1756 int rc
= -ENOIOCTLCMD
;
1757 struct sock
*sk
= sock
->sk
;
1758 void __user
*argp
= (void __user
*)arg
;
1761 /* Protocol layer */
1763 long amount
= sk
->sk_sndbuf
-
1764 atomic_read(&sk
->sk_wmem_alloc
);
1768 rc
= put_user(amount
, (int __user
*)argp
);
1773 * These two are safe on a single CPU system as only
1774 * user tasks fiddle here
1776 struct sk_buff
*skb
= skb_peek(&sk
->sk_receive_queue
);
1780 amount
= skb
->len
- sizeof(struct ddpehdr
);
1781 rc
= put_user(amount
, (int __user
*)argp
);
1785 rc
= sock_get_timestamp(sk
, argp
);
1788 rc
= sock_get_timestampns(sk
, argp
);
1794 if (capable(CAP_NET_ADMIN
))
1795 rc
= atrtr_ioctl(cmd
, argp
);
1800 case SIOCGIFBRDADDR
:
1801 case SIOCATALKDIFADDR
:
1803 case SIOCSARP
: /* proxy AARP */
1804 case SIOCDARP
: /* proxy AARP */
1806 rc
= atif_ioctl(cmd
, argp
);
1815 #ifdef CONFIG_COMPAT
1816 static int atalk_compat_ioctl(struct socket
*sock
, unsigned int cmd
, unsigned long arg
)
1819 * All Appletalk ioctls except SIOCATALKDIFADDR are standard. And
1820 * SIOCATALKDIFADDR is handled by upper layer as well, so there is
1821 * nothing to do. Eventually SIOCATALKDIFADDR should be moved
1822 * here so there is no generic SIOCPROTOPRIVATE translation in the
1825 return -ENOIOCTLCMD
;
1830 static struct net_proto_family atalk_family_ops
= {
1831 .family
= PF_APPLETALK
,
1832 .create
= atalk_create
,
1833 .owner
= THIS_MODULE
,
1836 static const struct proto_ops
SOCKOPS_WRAPPED(atalk_dgram_ops
) = {
1837 .family
= PF_APPLETALK
,
1838 .owner
= THIS_MODULE
,
1839 .release
= atalk_release
,
1841 .connect
= atalk_connect
,
1842 .socketpair
= sock_no_socketpair
,
1843 .accept
= sock_no_accept
,
1844 .getname
= atalk_getname
,
1845 .poll
= datagram_poll
,
1846 .ioctl
= atalk_ioctl
,
1847 #ifdef CONFIG_COMPAT
1848 .compat_ioctl
= atalk_compat_ioctl
,
1850 .listen
= sock_no_listen
,
1851 .shutdown
= sock_no_shutdown
,
1852 .setsockopt
= sock_no_setsockopt
,
1853 .getsockopt
= sock_no_getsockopt
,
1854 .sendmsg
= atalk_sendmsg
,
1855 .recvmsg
= atalk_recvmsg
,
1856 .mmap
= sock_no_mmap
,
1857 .sendpage
= sock_no_sendpage
,
1860 SOCKOPS_WRAP(atalk_dgram
, PF_APPLETALK
);
1862 static struct notifier_block ddp_notifier
= {
1863 .notifier_call
= ddp_device_event
,
1866 static struct packet_type ltalk_packet_type
= {
1867 .type
= __constant_htons(ETH_P_LOCALTALK
),
1871 static struct packet_type ppptalk_packet_type
= {
1872 .type
= __constant_htons(ETH_P_PPPTALK
),
1876 static unsigned char ddp_snap_id
[] = { 0x08, 0x00, 0x07, 0x80, 0x9B };
1878 /* Export symbols for use by drivers when AppleTalk is a module */
1879 EXPORT_SYMBOL(aarp_send_ddp
);
1880 EXPORT_SYMBOL(atrtr_get_dev
);
1881 EXPORT_SYMBOL(atalk_find_dev_addr
);
1883 static char atalk_err_snap
[] __initdata
=
1884 KERN_CRIT
"Unable to register DDP with SNAP.\n";
1886 /* Called by proto.c on kernel start up */
1887 static int __init
atalk_init(void)
1889 int rc
= proto_register(&ddp_proto
, 0);
1894 (void)sock_register(&atalk_family_ops
);
1895 ddp_dl
= register_snap_client(ddp_snap_id
, atalk_rcv
);
1897 printk(atalk_err_snap
);
1899 dev_add_pack(<alk_packet_type
);
1900 dev_add_pack(&ppptalk_packet_type
);
1902 register_netdevice_notifier(&ddp_notifier
);
1905 atalk_register_sysctl();
1909 module_init(atalk_init
);
1912 * No explicit module reference count manipulation is needed in the
1913 * protocol. Socket layer sets module reference count for us
1914 * and interfaces reference counting is done
1915 * by the network device layer.
1917 * Ergo, before the AppleTalk module can be removed, all AppleTalk
1918 * sockets be closed from user space.
1920 static void __exit
atalk_exit(void)
1922 #ifdef CONFIG_SYSCTL
1923 atalk_unregister_sysctl();
1924 #endif /* CONFIG_SYSCTL */
1926 aarp_cleanup_module(); /* General aarp clean-up. */
1927 unregister_netdevice_notifier(&ddp_notifier
);
1928 dev_remove_pack(<alk_packet_type
);
1929 dev_remove_pack(&ppptalk_packet_type
);
1930 unregister_snap_client(ddp_dl
);
1931 sock_unregister(PF_APPLETALK
);
1932 proto_unregister(&ddp_proto
);
1934 module_exit(atalk_exit
);
1936 MODULE_LICENSE("GPL");
1937 MODULE_AUTHOR("Alan Cox <Alan.Cox@linux.org>");
1938 MODULE_DESCRIPTION("AppleTalk 0.20\n");
1939 MODULE_ALIAS_NETPROTO(PF_APPLETALK
);