blob: b603cbacdc58eccf171c84599a9c2bfd426f74f4 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * DDP: An implementation of the AppleTalk DDP protocol for
3 * Ethernet 'ELAP'.
4 *
Alan Cox113aa832008-10-13 19:01:08 -07005 * Alan Cox <alan@lxorguk.ukuu.org.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 *
7 * With more than a little assistance from
8 *
9 * Wesley Craig <netatalk@umich.edu>
10 *
11 * Fixes:
12 * Neil Horman : Added missing device ioctls
13 * Michael Callahan : Made routing work
14 * Wesley Craig : Fix probing to listen to a
15 * passed node id.
16 * Alan Cox : Added send/recvmsg support
17 * Alan Cox : Moved at. to protinfo in
18 * socket.
19 * Alan Cox : Added firewall hooks.
20 * Alan Cox : Supports new ARPHRD_LOOPBACK
21 * Christer Weinigel : Routing and /proc fixes.
22 * Bradford Johnson : LocalTalk.
23 * Tom Dyas : Module support.
24 * Alan Cox : Hooks for PPP (based on the
25 * LocalTalk hook).
26 * Alan Cox : Posix bits
27 * Alan Cox/Mike Freeman : Possible fix to NBP problems
28 * Bradford Johnson : IP-over-DDP (experimental)
29 * Jay Schulist : Moved IP-over-DDP to its own
30 * driver file. (ipddp.c & ipddp.h)
YOSHIFUJI Hideakied4477b2007-02-09 23:24:27 +090031 * Jay Schulist : Made work as module with
Linus Torvalds1da177e2005-04-16 15:20:36 -070032 * AppleTalk drivers, cleaned it.
33 * Rob Newberry : Added proxy AARP and AARP
34 * procfs, moved probing to AARP
35 * module.
YOSHIFUJI Hideakied4477b2007-02-09 23:24:27 +090036 * Adrian Sun/
37 * Michael Zuelsdorff : fix for net.0 packets. don't
Linus Torvalds1da177e2005-04-16 15:20:36 -070038 * allow illegal ether/tokentalk
YOSHIFUJI Hideakied4477b2007-02-09 23:24:27 +090039 * port assignment. we lose a
40 * valid localtalk port as a
Linus Torvalds1da177e2005-04-16 15:20:36 -070041 * result.
42 * Arnaldo C. de Melo : Cleanup, in preparation for
43 * shared skb support 8)
44 * Arnaldo C. de Melo : Move proc stuff to atalk_proc.c,
45 * use seq_file
46 *
47 * This program is free software; you can redistribute it and/or
48 * modify it under the terms of the GNU General Public License
49 * as published by the Free Software Foundation; either version
50 * 2 of the License, or (at your option) any later version.
YOSHIFUJI Hideakied4477b2007-02-09 23:24:27 +090051 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070052 */
53
Randy Dunlap4fc268d2006-01-11 12:17:47 -080054#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070055#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070056#include <linux/if_arp.h>
57#include <linux/termios.h> /* For TIOCOUTQ/INQ */
58#include <net/datalink.h>
59#include <net/psnap.h>
60#include <net/sock.h>
Arnaldo Carvalho de Meloc752f072005-08-09 20:08:28 -070061#include <net/tcp_states.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070062#include <net/route.h>
63#include <linux/atalk.h>
Al Viroa1f8e7f72006-10-19 16:08:53 -040064#include "../core/kmap_skb.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070065
66struct datalink_proto *ddp_dl, *aarp_dl;
Eric Dumazet90ddc4f2005-12-22 12:49:22 -080067static const struct proto_ops atalk_dgram_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
69/**************************************************************************\
70* *
71* Handlers for the socket list. *
72* *
73\**************************************************************************/
74
75HLIST_HEAD(atalk_sockets);
76DEFINE_RWLOCK(atalk_sockets_lock);
77
78static inline void __atalk_insert_socket(struct sock *sk)
79{
80 sk_add_node(sk, &atalk_sockets);
81}
82
83static inline void atalk_remove_socket(struct sock *sk)
84{
85 write_lock_bh(&atalk_sockets_lock);
86 sk_del_node_init(sk);
87 write_unlock_bh(&atalk_sockets_lock);
88}
89
90static struct sock *atalk_search_socket(struct sockaddr_at *to,
91 struct atalk_iface *atif)
92{
93 struct sock *s;
94 struct hlist_node *node;
95
96 read_lock_bh(&atalk_sockets_lock);
97 sk_for_each(s, node, &atalk_sockets) {
98 struct atalk_sock *at = at_sk(s);
99
100 if (to->sat_port != at->src_port)
101 continue;
102
YOSHIFUJI Hideakied4477b2007-02-09 23:24:27 +0900103 if (to->sat_addr.s_net == ATADDR_ANYNET &&
Oliver Dawid64233bf2005-09-27 16:11:29 -0700104 to->sat_addr.s_node == ATADDR_BCAST)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 goto found;
106
YOSHIFUJI Hideakied4477b2007-02-09 23:24:27 +0900107 if (to->sat_addr.s_net == at->src_net &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 (to->sat_addr.s_node == at->src_node ||
109 to->sat_addr.s_node == ATADDR_BCAST ||
110 to->sat_addr.s_node == ATADDR_ANYNODE))
111 goto found;
112
YOSHIFUJI Hideakied4477b2007-02-09 23:24:27 +0900113 /* XXXX.0 -- we got a request for this router. make sure
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 * that the node is appropriately set. */
115 if (to->sat_addr.s_node == ATADDR_ANYNODE &&
116 to->sat_addr.s_net != ATADDR_ANYNET &&
117 atif->address.s_node == at->src_node) {
118 to->sat_addr.s_node = atif->address.s_node;
119 goto found;
120 }
121 }
122 s = NULL;
123found:
124 read_unlock_bh(&atalk_sockets_lock);
125 return s;
126}
127
128/**
129 * atalk_find_or_insert_socket - Try to find a socket matching ADDR
130 * @sk - socket to insert in the list if it is not there already
131 * @sat - address to search for
132 *
133 * Try to find a socket matching ADDR in the socket list, if found then return
134 * it. If not, insert SK into the socket list.
135 *
136 * This entire operation must execute atomically.
137 */
138static struct sock *atalk_find_or_insert_socket(struct sock *sk,
139 struct sockaddr_at *sat)
140{
141 struct sock *s;
142 struct hlist_node *node;
143 struct atalk_sock *at;
144
145 write_lock_bh(&atalk_sockets_lock);
146 sk_for_each(s, node, &atalk_sockets) {
147 at = at_sk(s);
148
149 if (at->src_net == sat->sat_addr.s_net &&
150 at->src_node == sat->sat_addr.s_node &&
151 at->src_port == sat->sat_port)
152 goto found;
153 }
154 s = NULL;
155 __atalk_insert_socket(sk); /* Wheee, it's free, assign and insert. */
156found:
157 write_unlock_bh(&atalk_sockets_lock);
158 return s;
159}
160
161static void atalk_destroy_timer(unsigned long data)
162{
163 struct sock *sk = (struct sock *)data;
164
165 if (atomic_read(&sk->sk_wmem_alloc) ||
166 atomic_read(&sk->sk_rmem_alloc)) {
167 sk->sk_timer.expires = jiffies + SOCK_DESTROY_TIME;
168 add_timer(&sk->sk_timer);
169 } else
170 sock_put(sk);
171}
172
173static inline void atalk_destroy_socket(struct sock *sk)
174{
175 atalk_remove_socket(sk);
176 skb_queue_purge(&sk->sk_receive_queue);
177
178 if (atomic_read(&sk->sk_wmem_alloc) ||
179 atomic_read(&sk->sk_rmem_alloc)) {
Pavel Emelyanovb24b8a22008-01-23 21:20:07 -0800180 setup_timer(&sk->sk_timer, atalk_destroy_timer,
181 (unsigned long)sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 sk->sk_timer.expires = jiffies + SOCK_DESTROY_TIME;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 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 */
195struct atalk_route *atalk_routes;
196DEFINE_RWLOCK(atalk_routes_lock);
197
198struct atalk_iface *atalk_interfaces;
199DEFINE_RWLOCK(atalk_interfaces_lock);
200
201/* For probing devices or in a routerless network */
202struct 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 */
209static 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
227static struct atalk_iface *atif_add_device(struct net_device *dev,
228 struct atalk_addr *sa)
229{
Panagiotis Issaris0da974f2006-07-21 14:51:30 -0700230 struct atalk_iface *iface = kzalloc(sizeof(*iface), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231
232 if (!iface)
233 goto out;
234
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 dev_hold(dev);
236 iface->dev = dev;
237 dev->atalk_ptr = iface;
238 iface->address = *sa;
239 iface->status = 0;
240
241 write_lock_bh(&atalk_interfaces_lock);
242 iface->next = atalk_interfaces;
243 atalk_interfaces = iface;
244 write_unlock_bh(&atalk_interfaces_lock);
245out:
246 return iface;
247}
248
249/* Perform phase 2 AARP probing on our tentative address */
250static int atif_probe_device(struct atalk_iface *atif)
251{
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;
256 int netct, nodect;
257
258 /* Offset the network we start probing with */
259 if (probe_net == ATADDR_ANYNET) {
260 probe_net = ntohs(atif->nets.nr_firstnet);
261 if (netrange)
262 probe_net += jiffies % netrange;
263 }
264 if (probe_node == ATADDR_ANYNODE)
265 probe_node = jiffies & 0xFF;
266
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);
278
279 if (!(atif->status & ATIF_PROBE_FAIL)) {
280 atif->status &= ~ATIF_PROBE;
281 return 0;
282 }
283 }
284 atif->status &= ~ATIF_PROBE_FAIL;
285 }
286 probe_net++;
287 if (probe_net > ntohs(atif->nets.nr_lastnet))
288 probe_net = ntohs(atif->nets.nr_firstnet);
289 }
290 atif->status &= ~ATIF_PROBE;
291
292 return -EADDRINUSE; /* Network is full... */
293}
294
295
296/* Perform AARP probing for a proxy address */
297static int atif_proxy_probe_device(struct atalk_iface *atif,
298 struct atalk_addr* proxy_addr)
299{
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 */
305 int netct, nodect;
306
307 /* Offset the network we start probing with */
308 if (probe_net == ATADDR_ANYNET) {
309 probe_net = ntohs(atif->nets.nr_firstnet);
310 if (netrange)
311 probe_net += jiffies % netrange;
312 }
313
314 if (probe_node == ATADDR_ANYNODE)
315 probe_node = jiffies & 0xFF;
YOSHIFUJI Hideakied4477b2007-02-09 23:24:27 +0900316
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 /* 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,
327 proxy_addr);
328
329 if (ret != -EADDRINUSE)
330 return ret;
331 }
332 }
333 probe_net++;
334 if (probe_net > ntohs(atif->nets.nr_lastnet))
335 probe_net = ntohs(atif->nets.nr_firstnet);
336 }
337
338 return -EADDRINUSE; /* Network is full... */
339}
340
341
342struct atalk_addr *atalk_find_dev_addr(struct net_device *dev)
343{
344 struct atalk_iface *iface = dev->atalk_ptr;
345 return iface ? &iface->address : NULL;
346}
347
348static struct atalk_addr *atalk_find_primary(void)
349{
350 struct atalk_iface *fiface = NULL;
351 struct atalk_addr *retval;
352 struct atalk_iface *iface;
353
354 /*
355 * Return a point-to-point interface only if
356 * there is no non-ptp interface available.
357 */
358 read_lock_bh(&atalk_interfaces_lock);
359 for (iface = atalk_interfaces; iface; iface = iface->next) {
360 if (!fiface && !(iface->dev->flags & IFF_LOOPBACK))
361 fiface = iface;
362 if (!(iface->dev->flags & (IFF_LOOPBACK | IFF_POINTOPOINT))) {
363 retval = &iface->address;
364 goto out;
365 }
366 }
367
368 if (fiface)
369 retval = &fiface->address;
370 else if (atalk_interfaces)
371 retval = &atalk_interfaces->address;
372 else
373 retval = NULL;
374out:
375 read_unlock_bh(&atalk_interfaces_lock);
376 return retval;
377}
378
379/*
380 * Find a match for 'any network' - ie any of our interfaces with that
381 * node number will do just nicely.
382 */
383static struct atalk_iface *atalk_find_anynet(int node, struct net_device *dev)
384{
385 struct atalk_iface *iface = dev->atalk_ptr;
386
387 if (!iface || iface->status & ATIF_PROBE)
388 goto out_err;
389
390 if (node != ATADDR_BCAST &&
391 iface->address.s_node != node &&
392 node != ATADDR_ANYNODE)
393 goto out_err;
394out:
395 return iface;
396out_err:
397 iface = NULL;
398 goto out;
399}
400
401/* Find a match for a specific network:node pair */
Alexey Dobriyanf6e276ee2005-06-20 13:32:05 -0700402static struct atalk_iface *atalk_find_interface(__be16 net, int node)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403{
404 struct atalk_iface *iface;
405
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))
413 break;
414
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))
YOSHIFUJI Hideakied4477b2007-02-09 23:24:27 +0900419 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 }
421 read_unlock_bh(&atalk_interfaces_lock);
422 return iface;
423}
424
425
426/*
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.
430 */
431static struct atalk_route *atrtr_find(struct atalk_addr *target)
432{
433 /*
YOSHIFUJI Hideakied4477b2007-02-09 23:24:27 +0900434 * we must search through all routes unless we find a
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 * host route, because some host routes might overlap
436 * network routes
437 */
438 struct atalk_route *net_route = NULL;
439 struct atalk_route *r;
YOSHIFUJI Hideakied4477b2007-02-09 23:24:27 +0900440
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 read_lock_bh(&atalk_routes_lock);
442 for (r = atalk_routes; r; r = r->next) {
443 if (!(r->flags & RTF_UP))
444 continue;
445
446 if (r->target.s_net == target->s_net) {
447 if (r->flags & RTF_HOST) {
448 /*
449 * if this host route is for the target,
450 * the we're done
451 */
452 if (r->target.s_node == target->s_node)
453 goto out;
454 } else
455 /*
456 * this route will work if there isn't a
457 * direct host route, so cache it
458 */
459 net_route = r;
460 }
461 }
YOSHIFUJI Hideakied4477b2007-02-09 23:24:27 +0900462
463 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 * if we found a network route but not a direct host
465 * route, then return it
466 */
467 if (net_route)
468 r = net_route;
469 else if (atrtr_default.dev)
470 r = &atrtr_default;
471 else /* No route can be found */
472 r = NULL;
473out:
474 read_unlock_bh(&atalk_routes_lock);
475 return r;
476}
477
478
479/*
480 * Given an AppleTalk network, find the device to use. This can be
481 * a simple lookup.
482 */
483struct net_device *atrtr_get_dev(struct atalk_addr *sa)
484{
485 struct atalk_route *atr = atrtr_find(sa);
486 return atr ? atr->dev : NULL;
487}
488
489/* Set up a default router */
490static void atrtr_set_default(struct net_device *dev)
491{
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;
496}
497
498/*
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.
502 */
503static int atrtr_create(struct rtentry *r, struct net_device *devhint)
504{
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;
510
511 /*
512 * Fixme: Raise/Lower a routing change semaphore for these
513 * operations.
514 */
515
516 /* Validate the request */
517 if (ta->sat_family != AF_APPLETALK ||
518 (!devhint && ga->sat_family != AF_APPLETALK))
519 goto out;
520
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)
525 continue;
526
527 if (ta->sat_addr.s_net == rt->target.s_net) {
528 if (!(rt->flags & RTF_HOST))
529 break;
530 if (ta->sat_addr.s_node == rt->target.s_node)
531 break;
532 }
533 }
534
535 if (!devhint) {
536 riface = NULL;
537
538 read_lock_bh(&atalk_interfaces_lock);
539 for (iface = atalk_interfaces; iface; iface = iface->next) {
540 if (!riface &&
541 ntohs(ga->sat_addr.s_net) >=
YOSHIFUJI Hideakied4477b2007-02-09 23:24:27 +0900542 ntohs(iface->nets.nr_firstnet) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 ntohs(ga->sat_addr.s_net) <=
YOSHIFUJI Hideakied4477b2007-02-09 23:24:27 +0900544 ntohs(iface->nets.nr_lastnet))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 riface = iface;
546
547 if (ga->sat_addr.s_net == iface->address.s_net &&
548 ga->sat_addr.s_node == iface->address.s_node)
549 riface = iface;
YOSHIFUJI Hideakied4477b2007-02-09 23:24:27 +0900550 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 read_unlock_bh(&atalk_interfaces_lock);
552
553 retval = -ENETUNREACH;
554 if (!riface)
555 goto out_unlock;
556
557 devhint = riface->dev;
558 }
559
560 if (!rt) {
Panagiotis Issaris0da974f2006-07-21 14:51:30 -0700561 rt = kzalloc(sizeof(*rt), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562
563 retval = -ENOBUFS;
564 if (!rt)
565 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566
567 rt->next = atalk_routes;
568 atalk_routes = rt;
569 }
570
571 /* Fill in the routing entry */
572 rt->target = ta->sat_addr;
Herbert Xuc7f905f02005-04-19 22:44:17 -0700573 dev_hold(devhint);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 rt->dev = devhint;
575 rt->flags = r->rt_flags;
576 rt->gateway = ga->sat_addr;
577
578 retval = 0;
579out_unlock:
580 write_unlock_bh(&atalk_routes_lock);
581out:
582 return retval;
583}
584
585/* Delete a route. Find it and discard it */
586static int atrtr_delete(struct atalk_addr * addr)
587{
588 struct atalk_route **r = &atalk_routes;
589 int retval = 0;
590 struct atalk_route *tmp;
591
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)) {
597 *r = tmp->next;
598 dev_put(tmp->dev);
599 kfree(tmp);
600 goto out;
601 }
602 r = &tmp->next;
603 }
604 retval = -ENOENT;
605out:
606 write_unlock_bh(&atalk_routes_lock);
607 return retval;
608}
609
610/*
611 * Called when a device is downed. Just throw away any routes
612 * via it.
613 */
614static void atrtr_device_down(struct net_device *dev)
615{
616 struct atalk_route **r = &atalk_routes;
617 struct atalk_route *tmp;
618
619 write_lock_bh(&atalk_routes_lock);
620 while ((tmp = *r) != NULL) {
621 if (tmp->dev == dev) {
622 *r = tmp->next;
623 dev_put(dev);
624 kfree(tmp);
625 } else
626 r = &tmp->next;
627 }
628 write_unlock_bh(&atalk_routes_lock);
629
630 if (atrtr_default.dev == dev)
631 atrtr_set_default(NULL);
632}
633
634/* Actually down the interface */
635static inline void atalk_dev_down(struct net_device *dev)
636{
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 */
640}
641
642/*
643 * A device event has occurred. Watch for devices going down and
644 * delete our use of them (iface and route).
645 */
646static int ddp_device_event(struct notifier_block *this, unsigned long event,
647 void *ptr)
648{
Eric W. Biederman890d52d2007-09-12 11:26:59 +0200649 struct net_device *dev = ptr;
650
YOSHIFUJI Hideaki721499e2008-07-19 22:34:43 -0700651 if (!net_eq(dev_net(dev), &init_net))
Eric W. Biedermane9dc8652007-09-12 13:02:17 +0200652 return NOTIFY_DONE;
653
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 if (event == NETDEV_DOWN)
655 /* Discard any use of this */
Eric W. Biederman890d52d2007-09-12 11:26:59 +0200656 atalk_dev_down(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657
658 return NOTIFY_DONE;
659}
660
661/* ioctl calls. Shouldn't even need touching */
662/* Device configuration ioctl calls */
663static int atif_ioctl(int cmd, void __user *arg)
664{
665 static char aarp_mcast[6] = { 0x09, 0x00, 0x00, 0xFF, 0xFF, 0xFF };
666 struct ifreq atreq;
667 struct atalk_netrange *nr;
668 struct sockaddr_at *sa;
669 struct net_device *dev;
670 struct atalk_iface *atif;
671 int ct;
672 int limit;
673 struct rtentry rtdef;
674 int add_route;
675
676 if (copy_from_user(&atreq, arg, sizeof(atreq)))
677 return -EFAULT;
678
Eric W. Biederman881d9662007-09-17 11:56:21 -0700679 dev = __dev_get_by_name(&init_net, atreq.ifr_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 if (!dev)
681 return -ENODEV;
682
683 sa = (struct sockaddr_at *)&atreq.ifr_addr;
684 atif = atalk_find_dev(dev);
685
686 switch (cmd) {
687 case SIOCSIFADDR:
688 if (!capable(CAP_NET_ADMIN))
689 return -EPERM;
690 if (sa->sat_family != AF_APPLETALK)
691 return -EINVAL;
692 if (dev->type != ARPHRD_ETHER &&
693 dev->type != ARPHRD_LOOPBACK &&
694 dev->type != ARPHRD_LOCALTLK &&
695 dev->type != ARPHRD_PPP)
696 return -EPROTONOSUPPORT;
697
698 nr = (struct atalk_netrange *)&sa->sat_zero[0];
699 add_route = 1;
700
701 /*
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
705 */
706 if ((dev->flags & IFF_POINTOPOINT) &&
707 atalk_find_interface(sa->sat_addr.s_net,
YOSHIFUJI Hideakied4477b2007-02-09 23:24:27 +0900708 sa->sat_addr.s_node)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 printk(KERN_DEBUG "AppleTalk: point-to-point "
710 "interface added with "
711 "existing address\n");
712 add_route = 0;
713 }
YOSHIFUJI Hideakied4477b2007-02-09 23:24:27 +0900714
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 /*
716 * Phase 1 is fine on LocalTalk but we don't do
717 * EtherTalk phase 1. Anyone wanting to add it go ahead.
718 */
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)
723 return -EINVAL;
724 if (atif) {
725 /* Already setting address */
726 if (atif->status & ATIF_PROBE)
727 return -EBUSY;
728
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 */
732 } else {
733 atif = atif_add_device(dev, &sa->sat_addr);
734 if (!atif)
735 return -ENOMEM;
736 }
737 atif->nets = *nr;
738
739 /*
740 * Check if the chosen address is used. If so we
741 * error and atalkd will try another.
742 */
743
744 if (!(dev->flags & IFF_LOOPBACK) &&
745 !(dev->flags & IFF_POINTOPOINT) &&
746 atif_probe_device(atif) < 0) {
747 atif_drop_device(dev);
748 return -EADDRINUSE;
749 }
750
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;
763
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);
770 } else {
771 limit = ntohs(nr->nr_lastnet);
772 if (limit - ntohs(nr->nr_firstnet) > 4096) {
773 printk(KERN_WARNING "Too many routes/"
774 "iface.\n");
775 return -EINVAL;
776 }
777 if (add_route)
778 for (ct = ntohs(nr->nr_firstnet);
779 ct <= limit; ct++) {
780 sa->sat_addr.s_net = htons(ct);
781 atrtr_create(&rtdef, dev);
782 }
783 }
784 dev_mc_add(dev, aarp_mcast, 6, 1);
785 return 0;
786
787 case SIOCGIFADDR:
788 if (!atif)
789 return -EADDRNOTAVAIL;
790
791 sa->sat_family = AF_APPLETALK;
792 sa->sat_addr = atif->address;
793 break;
794
795 case SIOCGIFBRDADDR:
796 if (!atif)
797 return -EADDRNOTAVAIL;
798
799 sa->sat_family = AF_APPLETALK;
800 sa->sat_addr.s_net = atif->address.s_net;
801 sa->sat_addr.s_node = ATADDR_BCAST;
802 break;
803
YOSHIFUJI Hideakied4477b2007-02-09 23:24:27 +0900804 case SIOCATALKDIFADDR:
805 case SIOCDIFADDR:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 if (!capable(CAP_NET_ADMIN))
807 return -EPERM;
808 if (sa->sat_family != AF_APPLETALK)
809 return -EINVAL;
810 atalk_dev_down(dev);
YOSHIFUJI Hideakied4477b2007-02-09 23:24:27 +0900811 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812
813 case SIOCSARP:
814 if (!capable(CAP_NET_ADMIN))
YOSHIFUJI Hideakied4477b2007-02-09 23:24:27 +0900815 return -EPERM;
816 if (sa->sat_family != AF_APPLETALK)
817 return -EINVAL;
YOSHIFUJI Hideakied4477b2007-02-09 23:24:27 +0900818 /*
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;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824
YOSHIFUJI Hideakied4477b2007-02-09 23:24:27 +0900825 /*
826 * atif points to the current interface on this network;
827 * we aren't concerned about its current status (at
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 * least for now), but it has all the settings about
829 * the network we're going to probe. Consequently, it
830 * must exist.
YOSHIFUJI Hideakied4477b2007-02-09 23:24:27 +0900831 */
832 if (!atif)
833 return -EADDRNOTAVAIL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834
YOSHIFUJI Hideakied4477b2007-02-09 23:24:27 +0900835 nr = (struct atalk_netrange *)&(atif->nets);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 /*
YOSHIFUJI Hideakied4477b2007-02-09 23:24:27 +0900837 * 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
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 * 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.
YOSHIFUJI Hideakied4477b2007-02-09 23:24:27 +0900859 */
860 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861
YOSHIFUJI Hideakied4477b2007-02-09 23:24:27 +0900862 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;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869
YOSHIFUJI Hideakied4477b2007-02-09 23:24:27 +0900870 /* give to aarp module to remove proxy entry */
871 aarp_proxy_remove(atif->dev, &(sa->sat_addr));
872 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 }
874
875 return copy_to_user(arg, &atreq, sizeof(atreq)) ? -EFAULT : 0;
876}
877
878/* Routing ioctl() calls */
879static 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';
Eric W. Biederman881d9662007-09-17 11:56:21 -0700900 dev = __dev_get_by_name(&init_net, name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901 if (!dev)
902 return -ENODEV;
YOSHIFUJI Hideakied4477b2007-02-09 23:24:27 +0900903 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904 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 */
YOSHIFUJI Hideakied4477b2007-02-09 23:24:27 +0900921static unsigned long atalk_sum_partial(const unsigned char *data,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 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 */
938static unsigned long atalk_sum_skb(const struct sk_buff *skb, int offset,
939 int len, unsigned long sum)
940{
David S. Miller1a028e52007-04-27 15:21:23 -0700941 int start = skb_headlen(skb);
David S. Millerc32ba3f2009-06-09 00:17:44 -0700942 struct sk_buff *frag_iter;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943 int i, copy;
944
945 /* checksum stuff in header space */
David S. Miller1a028e52007-04-27 15:21:23 -0700946 if ( (copy = start - offset) > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947 if (copy > len)
948 copy = len;
949 sum = atalk_sum_partial(skb->data + offset, copy, sum);
YOSHIFUJI Hideakied4477b2007-02-09 23:24:27 +0900950 if ( (len -= copy) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951 return sum;
952
953 offset += copy;
954 }
955
956 /* checksum stuff in frags */
957 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
David S. Miller1a028e52007-04-27 15:21:23 -0700958 int end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959
Ilpo Järvinen547b7922008-07-25 21:43:18 -0700960 WARN_ON(start > offset + len);
David S. Miller1a028e52007-04-27 15:21:23 -0700961
962 end = start + skb_shinfo(skb)->frags[i].size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963 if ((copy = end - offset) > 0) {
964 u8 *vaddr;
965 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
966
967 if (copy > len)
968 copy = len;
969 vaddr = kmap_skb_frag(frag);
David S. Miller1a028e52007-04-27 15:21:23 -0700970 sum = atalk_sum_partial(vaddr + frag->page_offset +
971 offset - start, copy, sum);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972 kunmap_skb_frag(vaddr);
973
974 if (!(len -= copy))
975 return sum;
976 offset += copy;
977 }
David S. Miller1a028e52007-04-27 15:21:23 -0700978 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 }
980
David S. Millerc32ba3f2009-06-09 00:17:44 -0700981 skb_walk_frags(skb, frag_iter) {
982 int end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983
David S. Millerc32ba3f2009-06-09 00:17:44 -0700984 WARN_ON(start > offset + len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985
David S. Millerc32ba3f2009-06-09 00:17:44 -0700986 end = start + frag_iter->len;
987 if ((copy = end - offset) > 0) {
988 if (copy > len)
989 copy = len;
990 sum = atalk_sum_skb(frag_iter, offset - start,
991 copy, sum);
992 if ((len -= copy) == 0)
993 return sum;
994 offset += copy;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995 }
David S. Millerc32ba3f2009-06-09 00:17:44 -0700996 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997 }
998
999 BUG_ON(len > 0);
1000
1001 return sum;
1002}
1003
Al Viro2a50f282006-09-26 21:22:08 -07001004static __be16 atalk_checksum(const struct sk_buff *skb, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005{
1006 unsigned long sum;
1007
1008 /* skip header 4 bytes */
1009 sum = atalk_sum_skb(skb, 4, len-4, 0);
1010
1011 /* Use 0xFFFF for 0. 0 itself means none */
Al Viro2a50f282006-09-26 21:22:08 -07001012 return sum ? htons((unsigned short)sum) : htons(0xFFFF);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013}
1014
1015static struct proto ddp_proto = {
1016 .name = "DDP",
1017 .owner = THIS_MODULE,
1018 .obj_size = sizeof(struct atalk_sock),
1019};
1020
1021/*
1022 * Create a socket. Initialise the socket, blank the addresses
1023 * set the state.
1024 */
Eric W. Biederman1b8d7ae2007-10-08 23:24:22 -07001025static int atalk_create(struct net *net, struct socket *sock, int protocol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026{
1027 struct sock *sk;
1028 int rc = -ESOCKTNOSUPPORT;
1029
Eric W. Biederman1b8d7ae2007-10-08 23:24:22 -07001030 if (net != &init_net)
1031 return -EAFNOSUPPORT;
1032
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033 /*
1034 * We permit SOCK_DGRAM and RAW is an extension. It is trivial to do
YOSHIFUJI Hideakied4477b2007-02-09 23:24:27 +09001035 * and gives you the full ELAP frame. Should be handy for CAP 8)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 */
1037 if (sock->type != SOCK_RAW && sock->type != SOCK_DGRAM)
1038 goto out;
1039 rc = -ENOMEM;
Pavel Emelyanov6257ff22007-11-01 00:39:31 -07001040 sk = sk_alloc(net, PF_APPLETALK, GFP_KERNEL, &ddp_proto);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041 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);
1049out:
1050 return rc;
1051}
1052
1053/* Free a socket. No work needed */
1054static 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 */
1076static 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
1103try_next_port:;
1104 }
1105
1106 retval = -EBUSY;
1107out:
1108 write_unlock_bh(&atalk_sockets_lock);
1109 return retval;
1110}
1111
1112static 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);
1128out:
1129 return n;
1130}
1131
1132/* Set the address 'our end' of the connection */
1133static 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 */
1180static 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)) {
YOSHIFUJI Hideakied4477b2007-02-09 23:24:27 +09001200#if 1
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201 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;
YOSHIFUJI Hideakied4477b2007-02-09 23:24:27 +09001207#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208 }
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 */
1230static 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)
1262static __inline__ int is_ip_over_ddp(struct sk_buff *skb)
1263{
YOSHIFUJI Hideakied4477b2007-02-09 23:24:27 +09001264 return skb->data[12] == 22;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265}
1266
1267static int handle_ip_over_ddp(struct sk_buff *skb)
1268{
Eric W. Biederman881d9662007-09-17 11:56:21 -07001269 struct net_device *dev = __dev_get_by_name(&init_net, "ipddp0");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270 struct net_device_stats *stats;
1271
1272 /* This needs to be able to handle ipddp"N" devices */
YOSHIFUJI Hideakied4477b2007-02-09 23:24:27 +09001273 if (!dev)
1274 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275
YOSHIFUJI Hideakied4477b2007-02-09 23:24:27 +09001276 skb->protocol = htons(ETH_P_IP);
1277 skb_pull(skb, 13);
1278 skb->dev = dev;
Arnaldo Carvalho de Melobadff6d2007-03-13 13:06:52 -03001279 skb_reset_transport_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280
Wang Chen524ad0a2008-11-12 23:39:10 -08001281 stats = netdev_priv(dev);
YOSHIFUJI Hideakied4477b2007-02-09 23:24:27 +09001282 stats->rx_packets++;
1283 stats->rx_bytes += skb->len + 13;
1284 netif_rx(skb); /* Send the SKB up to a higher place. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285 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
1293static void atalk_route_packet(struct sk_buff *skb, struct net_device *dev,
Al Viro2a50f282006-09-26 21:22:08 -07001294 struct ddpehdr *ddp, __u16 len_hops,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295 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
YOSHIFUJI Hideakied4477b2007-02-09 23:24:27 +09001302 * network"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303 */
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);
Al Viro2a50f282006-09-26 21:22:08 -07001322 /* increment hops count */
1323 len_hops += 1 << 10;
1324 if (!rt || !(len_hops & (15 << 10)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325 goto free_it;
Al Viro2a50f282006-09-26 21:22:08 -07001326
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327 /* FIXME: use skb->cb to be able to use shared skbs */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328
1329 /*
1330 * Route goes through another gateway, so set the target to the
1331 * gateway instead.
1332 */
1333
1334 if (rt->flags & RTF_GATEWAY) {
1335 ta.s_net = rt->gateway.s_net;
1336 ta.s_node = rt->gateway.s_node;
1337 }
1338
YOSHIFUJI Hideakied4477b2007-02-09 23:24:27 +09001339 /* Fix up skb->len field */
1340 skb_trim(skb, min_t(unsigned int, origlen,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341 (rt->dev->hard_header_len +
Al Viro2a50f282006-09-26 21:22:08 -07001342 ddp_dl->header_length + (len_hops & 1023))));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344 /* FIXME: use skb->cb to be able to use shared skbs */
Al Viro2a50f282006-09-26 21:22:08 -07001345 ddp->deh_len_hops = htons(len_hops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346
1347 /*
1348 * Send the buffer onwards
1349 *
1350 * Now we must always be careful. If it's come from LocalTalk to
1351 * EtherTalk it might not fit
1352 *
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.
1355 *
1356 * Note. ddp-> becomes invalid at the realloc.
1357 */
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);
1361 kfree_skb(skb);
YOSHIFUJI Hideakied4477b2007-02-09 23:24:27 +09001362 if (!nskb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363 goto out;
1364 skb = nskb;
1365 } else
1366 skb = skb_unshare(skb, GFP_ATOMIC);
YOSHIFUJI Hideakied4477b2007-02-09 23:24:27 +09001367
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368 /*
1369 * If the buffer didn't vanish into the lack of space bitbucket we can
1370 * send it.
1371 */
1372 if (skb && aarp_send_ddp(rt->dev, skb, &ta, NULL) == -1)
1373 goto free_it;
1374out:
1375 return;
1376free_it:
1377 kfree_skb(skb);
1378}
1379
1380/**
1381 * atalk_rcv - Receive a packet (in skb) from device dev
1382 * @skb - packet received
1383 * @dev - network device where the packet comes from
1384 * @pt - packet type
1385 *
1386 * Receive a packet (in skb) from device dev. This has come from the SNAP
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -07001387 * decoder, and on entry skb->transport_header is the DDP header, skb->len
1388 * is the DDP header, skb->len is the DDP length. The physical headers
1389 * have been extracted. PPP should probably pass frames marked as for this
1390 * layer. [ie ARPHRD_ETHERTALK]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391 */
1392static int atalk_rcv(struct sk_buff *skb, struct net_device *dev,
David S. Millerf2ccd8f2005-08-09 19:34:12 -07001393 struct packet_type *pt, struct net_device *orig_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394{
1395 struct ddpehdr *ddp;
1396 struct sock *sock;
1397 struct atalk_iface *atif;
1398 struct sockaddr_at tosat;
YOSHIFUJI Hideakied4477b2007-02-09 23:24:27 +09001399 int origlen;
Al Viro2a50f282006-09-26 21:22:08 -07001400 __u16 len_hops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401
YOSHIFUJI Hideaki721499e2008-07-19 22:34:43 -07001402 if (!net_eq(dev_net(dev), &init_net))
Eric W. Biedermane730c152007-09-17 11:53:39 -07001403 goto freeit;
1404
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405 /* Don't mangle buffer if shared */
YOSHIFUJI Hideakied4477b2007-02-09 23:24:27 +09001406 if (!(skb = skb_share_check(skb, GFP_ATOMIC)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407 goto out;
YOSHIFUJI Hideakied4477b2007-02-09 23:24:27 +09001408
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409 /* Size check and make sure header is contiguous */
1410 if (!pskb_may_pull(skb, sizeof(*ddp)))
1411 goto freeit;
1412
1413 ddp = ddp_hdr(skb);
1414
Al Viro2a50f282006-09-26 21:22:08 -07001415 len_hops = ntohs(ddp->deh_len_hops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416
1417 /* Trim buffer in case of stray trailing data */
1418 origlen = skb->len;
Al Viro2a50f282006-09-26 21:22:08 -07001419 skb_trim(skb, min_t(unsigned int, skb->len, len_hops & 1023));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420
1421 /*
1422 * Size check to see if ddp->deh_len was crap
1423 * (Otherwise we'll detonate most spectacularly
Jean Delvare75559c12007-04-04 23:52:46 -07001424 * in the middle of atalk_checksum() or recvmsg()).
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425 */
Jean Delvare75559c12007-04-04 23:52:46 -07001426 if (skb->len < sizeof(*ddp) || skb->len < (len_hops & 1023)) {
1427 pr_debug("AppleTalk: dropping corrupted frame (deh_len=%u, "
1428 "skb->len=%u)\n", len_hops & 1023, skb->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429 goto freeit;
Jean Delvare75559c12007-04-04 23:52:46 -07001430 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431
1432 /*
1433 * Any checksums. Note we don't do htons() on this == is assumed to be
1434 * valid for net byte orders all over the networking code...
1435 */
1436 if (ddp->deh_sum &&
Al Viro2a50f282006-09-26 21:22:08 -07001437 atalk_checksum(skb, len_hops & 1023) != ddp->deh_sum)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438 /* Not a valid AppleTalk frame - dustbin time */
1439 goto freeit;
1440
1441 /* Check the packet is aimed at us */
1442 if (!ddp->deh_dnet) /* Net 0 is 'this network' */
1443 atif = atalk_find_anynet(ddp->deh_dnode, dev);
1444 else
1445 atif = atalk_find_interface(ddp->deh_dnet, ddp->deh_dnode);
1446
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447 if (!atif) {
Oliver Dawid64233bf2005-09-27 16:11:29 -07001448 /* Not ours, so we route the packet via the correct
1449 * AppleTalk iface
1450 */
Al Viro2a50f282006-09-26 21:22:08 -07001451 atalk_route_packet(skb, dev, ddp, len_hops, origlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452 goto out;
1453 }
1454
1455 /* if IP over DDP is not selected this code will be optimized out */
1456 if (is_ip_over_ddp(skb))
1457 return handle_ip_over_ddp(skb);
1458 /*
1459 * Which socket - atalk_search_socket() looks for a *full match*
1460 * of the <net, node, port> tuple.
1461 */
1462 tosat.sat_addr.s_net = ddp->deh_dnet;
1463 tosat.sat_addr.s_node = ddp->deh_dnode;
1464 tosat.sat_port = ddp->deh_dport;
1465
1466 sock = atalk_search_socket(&tosat, atif);
1467 if (!sock) /* But not one of our sockets */
1468 goto freeit;
1469
1470 /* Queue packet (standard) */
1471 skb->sk = sock;
1472
1473 if (sock_queue_rcv_skb(sock, skb) < 0)
1474 goto freeit;
1475out:
1476 return 0;
1477freeit:
1478 kfree_skb(skb);
1479 goto out;
1480}
1481
1482/*
1483 * Receive a LocalTalk frame. We make some demands on the caller here.
1484 * Caller must provide enough headroom on the packet to pull the short
1485 * header and append a long one.
1486 */
1487static int ltalk_rcv(struct sk_buff *skb, struct net_device *dev,
David S. Millerf2ccd8f2005-08-09 19:34:12 -07001488 struct packet_type *pt, struct net_device *orig_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489{
YOSHIFUJI Hideaki721499e2008-07-19 22:34:43 -07001490 if (!net_eq(dev_net(dev), &init_net))
Eric W. Biedermane730c152007-09-17 11:53:39 -07001491 goto freeit;
1492
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493 /* Expand any short form frames */
Arnaldo Carvalho de Melo98e399f2007-03-19 15:33:04 -07001494 if (skb_mac_header(skb)[2] == 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495 struct ddpehdr *ddp;
1496 /* Find our address */
1497 struct atalk_addr *ap = atalk_find_dev_addr(dev);
1498
Al Viro2a50f282006-09-26 21:22:08 -07001499 if (!ap || skb->len < sizeof(__be16) || skb->len > 1023)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500 goto freeit;
1501
1502 /* Don't mangle buffer if shared */
YOSHIFUJI Hideakied4477b2007-02-09 23:24:27 +09001503 if (!(skb = skb_share_check(skb, GFP_ATOMIC)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504 return 0;
1505
1506 /*
1507 * The push leaves us with a ddephdr not an shdr, and
1508 * handily the port bytes in the right place preset.
1509 */
1510 ddp = (struct ddpehdr *) skb_push(skb, sizeof(*ddp) - 4);
1511
1512 /* Now fill in the long header */
1513
YOSHIFUJI Hideakied4477b2007-02-09 23:24:27 +09001514 /*
1515 * These two first. The mac overlays the new source/dest
1516 * network information so we MUST copy these before
1517 * we write the network numbers !
1518 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519
Arnaldo Carvalho de Melo98e399f2007-03-19 15:33:04 -07001520 ddp->deh_dnode = skb_mac_header(skb)[0]; /* From physical header */
1521 ddp->deh_snode = skb_mac_header(skb)[1]; /* From physical header */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522
1523 ddp->deh_dnet = ap->s_net; /* Network number */
1524 ddp->deh_snet = ap->s_net;
1525 ddp->deh_sum = 0; /* No checksum */
1526 /*
1527 * Not sure about this bit...
1528 */
Al Viro2a50f282006-09-26 21:22:08 -07001529 /* Non routable, so force a drop if we slip up later */
1530 ddp->deh_len_hops = htons(skb->len + (DDP_MAXHOPS << 10));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531 }
Arnaldo Carvalho de Melobadff6d2007-03-13 13:06:52 -03001532 skb_reset_transport_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533
David S. Millerf2ccd8f2005-08-09 19:34:12 -07001534 return atalk_rcv(skb, dev, pt, orig_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535freeit:
1536 kfree_skb(skb);
1537 return 0;
1538}
1539
1540static int atalk_sendmsg(struct kiocb *iocb, struct socket *sock, struct msghdr *msg,
1541 size_t len)
1542{
1543 struct sock *sk = sock->sk;
1544 struct atalk_sock *at = at_sk(sk);
1545 struct sockaddr_at *usat = (struct sockaddr_at *)msg->msg_name;
1546 int flags = msg->msg_flags;
1547 int loopback = 0;
1548 struct sockaddr_at local_satalk, gsat;
1549 struct sk_buff *skb;
1550 struct net_device *dev;
1551 struct ddpehdr *ddp;
1552 int size;
1553 struct atalk_route *rt;
1554 int err;
1555
1556 if (flags & ~(MSG_DONTWAIT|MSG_CMSG_COMPAT))
1557 return -EINVAL;
1558
1559 if (len > DDP_MAXSZ)
1560 return -EMSGSIZE;
1561
1562 if (usat) {
1563 if (sock_flag(sk, SOCK_ZAPPED))
1564 if (atalk_autobind(sk) < 0)
1565 return -EBUSY;
1566
1567 if (msg->msg_namelen < sizeof(*usat) ||
1568 usat->sat_family != AF_APPLETALK)
1569 return -EINVAL;
1570
Alan Cox03ba9992009-03-27 00:27:18 -07001571 /* netatalk didn't implement this check */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572 if (usat->sat_addr.s_node == ATADDR_BCAST &&
1573 !sock_flag(sk, SOCK_BROADCAST)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575 }
1576 } else {
1577 if (sk->sk_state != TCP_ESTABLISHED)
1578 return -ENOTCONN;
1579 usat = &local_satalk;
1580 usat->sat_family = AF_APPLETALK;
1581 usat->sat_port = at->dest_port;
1582 usat->sat_addr.s_node = at->dest_node;
1583 usat->sat_addr.s_net = at->dest_net;
1584 }
1585
1586 /* Build a packet */
1587 SOCK_DEBUG(sk, "SK %p: Got address.\n", sk);
1588
1589 /* For headers */
1590 size = sizeof(struct ddpehdr) + len + ddp_dl->header_length;
1591
1592 if (usat->sat_addr.s_net || usat->sat_addr.s_node == ATADDR_ANYNODE) {
1593 rt = atrtr_find(&usat->sat_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594 } else {
1595 struct atalk_addr at_hint;
1596
1597 at_hint.s_node = 0;
1598 at_hint.s_net = at->src_net;
1599
1600 rt = atrtr_find(&at_hint);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601 }
Oliver Dawid64233bf2005-09-27 16:11:29 -07001602 if (!rt)
1603 return -ENETUNREACH;
1604
1605 dev = rt->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606
1607 SOCK_DEBUG(sk, "SK %p: Size needed %d, device %s\n",
1608 sk, size, dev->name);
1609
1610 size += dev->hard_header_len;
1611 skb = sock_alloc_send_skb(sk, size, (flags & MSG_DONTWAIT), &err);
1612 if (!skb)
1613 return err;
YOSHIFUJI Hideakied4477b2007-02-09 23:24:27 +09001614
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615 skb->sk = sk;
1616 skb_reserve(skb, ddp_dl->header_length);
1617 skb_reserve(skb, dev->hard_header_len);
1618 skb->dev = dev;
1619
1620 SOCK_DEBUG(sk, "SK %p: Begin build.\n", sk);
1621
1622 ddp = (struct ddpehdr *)skb_put(skb, sizeof(struct ddpehdr));
Al Viro2a50f282006-09-26 21:22:08 -07001623 ddp->deh_len_hops = htons(len + sizeof(*ddp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624 ddp->deh_dnet = usat->sat_addr.s_net;
1625 ddp->deh_snet = at->src_net;
1626 ddp->deh_dnode = usat->sat_addr.s_node;
1627 ddp->deh_snode = at->src_node;
1628 ddp->deh_dport = usat->sat_port;
1629 ddp->deh_sport = at->src_port;
1630
1631 SOCK_DEBUG(sk, "SK %p: Copy user data (%Zd bytes).\n", sk, len);
1632
1633 err = memcpy_fromiovec(skb_put(skb, len), msg->msg_iov, len);
1634 if (err) {
1635 kfree_skb(skb);
1636 return -EFAULT;
1637 }
1638
1639 if (sk->sk_no_check == 1)
1640 ddp->deh_sum = 0;
1641 else
1642 ddp->deh_sum = atalk_checksum(skb, len + sizeof(*ddp));
1643
1644 /*
1645 * Loopback broadcast packets to non gateway targets (ie routes
1646 * to group we are in)
1647 */
1648 if (ddp->deh_dnode == ATADDR_BCAST &&
1649 !(rt->flags & RTF_GATEWAY) && !(dev->flags & IFF_LOOPBACK)) {
1650 struct sk_buff *skb2 = skb_copy(skb, GFP_KERNEL);
1651
1652 if (skb2) {
1653 loopback = 1;
1654 SOCK_DEBUG(sk, "SK %p: send out(copy).\n", sk);
1655 if (aarp_send_ddp(dev, skb2,
1656 &usat->sat_addr, NULL) == -1)
1657 kfree_skb(skb2);
1658 /* else queued/sent above in the aarp queue */
1659 }
1660 }
1661
1662 if (dev->flags & IFF_LOOPBACK || loopback) {
1663 SOCK_DEBUG(sk, "SK %p: Loop back.\n", sk);
1664 /* loop back */
1665 skb_orphan(skb);
Oliver Dawid64233bf2005-09-27 16:11:29 -07001666 if (ddp->deh_dnode == ATADDR_BCAST) {
1667 struct atalk_addr at_lo;
1668
1669 at_lo.s_node = 0;
1670 at_lo.s_net = 0;
1671
1672 rt = atrtr_find(&at_lo);
1673 if (!rt) {
1674 kfree_skb(skb);
1675 return -ENETUNREACH;
1676 }
1677 dev = rt->dev;
1678 skb->dev = dev;
1679 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680 ddp_dl->request(ddp_dl, skb, dev->dev_addr);
1681 } else {
1682 SOCK_DEBUG(sk, "SK %p: send out.\n", sk);
1683 if (rt->flags & RTF_GATEWAY) {
1684 gsat.sat_addr = rt->gateway;
1685 usat = &gsat;
1686 }
1687
1688 if (aarp_send_ddp(dev, skb, &usat->sat_addr, NULL) == -1)
1689 kfree_skb(skb);
1690 /* else queued/sent above in the aarp queue */
1691 }
1692 SOCK_DEBUG(sk, "SK %p: Done write (%Zd).\n", sk, len);
1693
1694 return len;
1695}
1696
1697static int atalk_recvmsg(struct kiocb *iocb, struct socket *sock, struct msghdr *msg,
1698 size_t size, int flags)
1699{
1700 struct sock *sk = sock->sk;
1701 struct sockaddr_at *sat = (struct sockaddr_at *)msg->msg_name;
1702 struct ddpehdr *ddp;
1703 int copied = 0;
Al Viro2a50f282006-09-26 21:22:08 -07001704 int offset = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706 struct sk_buff *skb = skb_recv_datagram(sk, flags & ~MSG_DONTWAIT,
1707 flags & MSG_DONTWAIT, &err);
1708 if (!skb)
1709 return err;
1710
1711 /* FIXME: use skb->cb to be able to use shared skbs */
1712 ddp = ddp_hdr(skb);
Al Viro2a50f282006-09-26 21:22:08 -07001713 copied = ntohs(ddp->deh_len_hops) & 1023;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714
Al Viro2a50f282006-09-26 21:22:08 -07001715 if (sk->sk_type != SOCK_RAW) {
1716 offset = sizeof(*ddp);
1717 copied -= offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718 }
1719
Al Viro2a50f282006-09-26 21:22:08 -07001720 if (copied > size) {
1721 copied = size;
1722 msg->msg_flags |= MSG_TRUNC;
1723 }
1724 err = skb_copy_datagram_iovec(skb, offset, msg->msg_iov, copied);
1725
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726 if (!err) {
1727 if (sat) {
1728 sat->sat_family = AF_APPLETALK;
1729 sat->sat_port = ddp->deh_sport;
1730 sat->sat_addr.s_node = ddp->deh_snode;
1731 sat->sat_addr.s_net = ddp->deh_snet;
1732 }
1733 msg->msg_namelen = sizeof(*sat);
1734 }
1735
1736 skb_free_datagram(sk, skb); /* Free the datagram. */
1737 return err ? : copied;
1738}
1739
1740
1741/*
1742 * AppleTalk ioctl calls.
1743 */
1744static int atalk_ioctl(struct socket *sock, unsigned int cmd, unsigned long arg)
1745{
Christoph Hellwigb5e5fa52006-01-03 14:18:33 -08001746 int rc = -ENOIOCTLCMD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747 struct sock *sk = sock->sk;
1748 void __user *argp = (void __user *)arg;
1749
1750 switch (cmd) {
1751 /* Protocol layer */
1752 case TIOCOUTQ: {
1753 long amount = sk->sk_sndbuf -
1754 atomic_read(&sk->sk_wmem_alloc);
1755
1756 if (amount < 0)
1757 amount = 0;
1758 rc = put_user(amount, (int __user *)argp);
1759 break;
1760 }
1761 case TIOCINQ: {
1762 /*
1763 * These two are safe on a single CPU system as only
1764 * user tasks fiddle here
1765 */
1766 struct sk_buff *skb = skb_peek(&sk->sk_receive_queue);
1767 long amount = 0;
1768
1769 if (skb)
1770 amount = skb->len - sizeof(struct ddpehdr);
1771 rc = put_user(amount, (int __user *)argp);
1772 break;
1773 }
1774 case SIOCGSTAMP:
1775 rc = sock_get_timestamp(sk, argp);
1776 break;
Eric Dumazetae40eb12007-03-18 17:33:16 -07001777 case SIOCGSTAMPNS:
1778 rc = sock_get_timestampns(sk, argp);
1779 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780 /* Routing */
1781 case SIOCADDRT:
1782 case SIOCDELRT:
1783 rc = -EPERM;
1784 if (capable(CAP_NET_ADMIN))
1785 rc = atrtr_ioctl(cmd, argp);
1786 break;
1787 /* Interface */
1788 case SIOCGIFADDR:
1789 case SIOCSIFADDR:
1790 case SIOCGIFBRDADDR:
1791 case SIOCATALKDIFADDR:
1792 case SIOCDIFADDR:
1793 case SIOCSARP: /* proxy AARP */
1794 case SIOCDARP: /* proxy AARP */
1795 rtnl_lock();
1796 rc = atif_ioctl(cmd, argp);
1797 rtnl_unlock();
1798 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799 }
1800
1801 return rc;
1802}
1803
Petr Vandrovecf6c90b72006-03-27 23:39:31 -08001804
1805#ifdef CONFIG_COMPAT
1806static int atalk_compat_ioctl(struct socket *sock, unsigned int cmd, unsigned long arg)
1807{
1808 /*
1809 * All Appletalk ioctls except SIOCATALKDIFADDR are standard. And
1810 * SIOCATALKDIFADDR is handled by upper layer as well, so there is
1811 * nothing to do. Eventually SIOCATALKDIFADDR should be moved
1812 * here so there is no generic SIOCPROTOPRIVATE translation in the
1813 * system.
1814 */
1815 return -ENOIOCTLCMD;
1816}
1817#endif
1818
1819
Linus Torvalds1da177e2005-04-16 15:20:36 -07001820static struct net_proto_family atalk_family_ops = {
1821 .family = PF_APPLETALK,
1822 .create = atalk_create,
1823 .owner = THIS_MODULE,
1824};
1825
Eric Dumazet90ddc4f2005-12-22 12:49:22 -08001826static const struct proto_ops SOCKOPS_WRAPPED(atalk_dgram_ops) = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827 .family = PF_APPLETALK,
1828 .owner = THIS_MODULE,
1829 .release = atalk_release,
1830 .bind = atalk_bind,
1831 .connect = atalk_connect,
1832 .socketpair = sock_no_socketpair,
1833 .accept = sock_no_accept,
1834 .getname = atalk_getname,
1835 .poll = datagram_poll,
1836 .ioctl = atalk_ioctl,
Petr Vandrovecf6c90b72006-03-27 23:39:31 -08001837#ifdef CONFIG_COMPAT
1838 .compat_ioctl = atalk_compat_ioctl,
1839#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001840 .listen = sock_no_listen,
1841 .shutdown = sock_no_shutdown,
1842 .setsockopt = sock_no_setsockopt,
1843 .getsockopt = sock_no_getsockopt,
1844 .sendmsg = atalk_sendmsg,
1845 .recvmsg = atalk_recvmsg,
1846 .mmap = sock_no_mmap,
1847 .sendpage = sock_no_sendpage,
1848};
1849
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850SOCKOPS_WRAP(atalk_dgram, PF_APPLETALK);
1851
1852static struct notifier_block ddp_notifier = {
1853 .notifier_call = ddp_device_event,
1854};
1855
Stephen Hemminger7546dd92009-03-09 08:18:29 +00001856static struct packet_type ltalk_packet_type __read_mostly = {
Harvey Harrison09640e62009-02-01 00:45:17 -08001857 .type = cpu_to_be16(ETH_P_LOCALTALK),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858 .func = ltalk_rcv,
1859};
1860
Stephen Hemminger7546dd92009-03-09 08:18:29 +00001861static struct packet_type ppptalk_packet_type __read_mostly = {
Harvey Harrison09640e62009-02-01 00:45:17 -08001862 .type = cpu_to_be16(ETH_P_PPPTALK),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863 .func = atalk_rcv,
1864};
1865
1866static unsigned char ddp_snap_id[] = { 0x08, 0x00, 0x07, 0x80, 0x9B };
1867
1868/* Export symbols for use by drivers when AppleTalk is a module */
1869EXPORT_SYMBOL(aarp_send_ddp);
1870EXPORT_SYMBOL(atrtr_get_dev);
1871EXPORT_SYMBOL(atalk_find_dev_addr);
1872
Hannes Eder2db09602009-02-25 10:31:59 +00001873static const char atalk_err_snap[] __initconst =
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874 KERN_CRIT "Unable to register DDP with SNAP.\n";
1875
1876/* Called by proto.c on kernel start up */
1877static int __init atalk_init(void)
1878{
1879 int rc = proto_register(&ddp_proto, 0);
1880
1881 if (rc != 0)
1882 goto out;
1883
1884 (void)sock_register(&atalk_family_ops);
1885 ddp_dl = register_snap_client(ddp_snap_id, atalk_rcv);
1886 if (!ddp_dl)
1887 printk(atalk_err_snap);
1888
1889 dev_add_pack(&ltalk_packet_type);
1890 dev_add_pack(&ppptalk_packet_type);
1891
1892 register_netdevice_notifier(&ddp_notifier);
1893 aarp_proto_init();
1894 atalk_proc_init();
1895 atalk_register_sysctl();
1896out:
1897 return rc;
1898}
1899module_init(atalk_init);
1900
1901/*
1902 * No explicit module reference count manipulation is needed in the
1903 * protocol. Socket layer sets module reference count for us
1904 * and interfaces reference counting is done
1905 * by the network device layer.
1906 *
1907 * Ergo, before the AppleTalk module can be removed, all AppleTalk
1908 * sockets be closed from user space.
1909 */
1910static void __exit atalk_exit(void)
1911{
1912#ifdef CONFIG_SYSCTL
1913 atalk_unregister_sysctl();
1914#endif /* CONFIG_SYSCTL */
1915 atalk_proc_exit();
1916 aarp_cleanup_module(); /* General aarp clean-up. */
1917 unregister_netdevice_notifier(&ddp_notifier);
1918 dev_remove_pack(&ltalk_packet_type);
1919 dev_remove_pack(&ppptalk_packet_type);
1920 unregister_snap_client(ddp_dl);
1921 sock_unregister(PF_APPLETALK);
1922 proto_unregister(&ddp_proto);
1923}
1924module_exit(atalk_exit);
1925
1926MODULE_LICENSE("GPL");
Alan Cox113aa832008-10-13 19:01:08 -07001927MODULE_AUTHOR("Alan Cox <alan@lxorguk.ukuu.org.uk>");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928MODULE_DESCRIPTION("AppleTalk 0.20\n");
1929MODULE_ALIAS_NETPROTO(PF_APPLETALK);