blob: bf5736c1d4584ec977586eae44d36db0042f7132 [file] [log] [blame]
Thomas Gleixner2874c5f2019-05-27 08:55:01 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * DDP: An implementation of the AppleTalk DDP protocol for
4 * Ethernet 'ELAP'.
5 *
Alan Cox113aa832008-10-13 19:01:08 -07006 * Alan Cox <alan@lxorguk.ukuu.org.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 *
8 * With more than a little assistance from
9 *
10 * Wesley Craig <netatalk@umich.edu>
11 *
12 * Fixes:
13 * Neil Horman : Added missing device ioctls
14 * Michael Callahan : Made routing work
15 * Wesley Craig : Fix probing to listen to a
16 * passed node id.
17 * Alan Cox : Added send/recvmsg support
18 * Alan Cox : Moved at. to protinfo in
19 * socket.
20 * Alan Cox : Added firewall hooks.
21 * Alan Cox : Supports new ARPHRD_LOOPBACK
22 * Christer Weinigel : Routing and /proc fixes.
23 * Bradford Johnson : LocalTalk.
24 * Tom Dyas : Module support.
25 * Alan Cox : Hooks for PPP (based on the
26 * LocalTalk hook).
27 * Alan Cox : Posix bits
28 * Alan Cox/Mike Freeman : Possible fix to NBP problems
29 * Bradford Johnson : IP-over-DDP (experimental)
30 * Jay Schulist : Moved IP-over-DDP to its own
31 * driver file. (ipddp.c & ipddp.h)
YOSHIFUJI Hideakied4477b2007-02-09 23:24:27 +090032 * Jay Schulist : Made work as module with
Linus Torvalds1da177e2005-04-16 15:20:36 -070033 * AppleTalk drivers, cleaned it.
34 * Rob Newberry : Added proxy AARP and AARP
35 * procfs, moved probing to AARP
36 * module.
YOSHIFUJI Hideakied4477b2007-02-09 23:24:27 +090037 * Adrian Sun/
38 * Michael Zuelsdorff : fix for net.0 packets. don't
Linus Torvalds1da177e2005-04-16 15:20:36 -070039 * allow illegal ether/tokentalk
YOSHIFUJI Hideakied4477b2007-02-09 23:24:27 +090040 * port assignment. we lose a
41 * valid localtalk port as a
Linus Torvalds1da177e2005-04-16 15:20:36 -070042 * result.
43 * Arnaldo C. de Melo : Cleanup, in preparation for
44 * shared skb support 8)
45 * Arnaldo C. de Melo : Move proc stuff to atalk_proc.c,
46 * use seq_file
Linus Torvalds1da177e2005-04-16 15:20:36 -070047 */
48
Randy Dunlap4fc268d2006-01-11 12:17:47 -080049#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070050#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070051#include <linux/if_arp.h>
52#include <linux/termios.h> /* For TIOCOUTQ/INQ */
Stephen Rothwell415ce612009-11-08 20:41:03 -080053#include <linux/compat.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090054#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070055#include <net/datalink.h>
56#include <net/psnap.h>
57#include <net/sock.h>
Arnaldo Carvalho de Meloc752f072005-08-09 20:08:28 -070058#include <net/tcp_states.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070059#include <net/route.h>
Christoph Hellwigdc13c8762020-05-18 08:28:08 +020060#include <net/compat.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070061#include <linux/atalk.h>
Eric Dumazet51c56b02012-04-05 11:35:15 +020062#include <linux/highmem.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070063
64struct datalink_proto *ddp_dl, *aarp_dl;
Eric Dumazet90ddc4f2005-12-22 12:49:22 -080065static const struct proto_ops atalk_dgram_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -070066
67/**************************************************************************\
68* *
69* Handlers for the socket list. *
70* *
71\**************************************************************************/
72
73HLIST_HEAD(atalk_sockets);
74DEFINE_RWLOCK(atalk_sockets_lock);
75
76static inline void __atalk_insert_socket(struct sock *sk)
77{
78 sk_add_node(sk, &atalk_sockets);
79}
80
81static inline void atalk_remove_socket(struct sock *sk)
82{
83 write_lock_bh(&atalk_sockets_lock);
84 sk_del_node_init(sk);
85 write_unlock_bh(&atalk_sockets_lock);
86}
87
88static struct sock *atalk_search_socket(struct sockaddr_at *to,
89 struct atalk_iface *atif)
90{
91 struct sock *s;
Linus Torvalds1da177e2005-04-16 15:20:36 -070092
93 read_lock_bh(&atalk_sockets_lock);
Sasha Levinb67bfe02013-02-27 17:06:00 -080094 sk_for_each(s, &atalk_sockets) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 struct atalk_sock *at = at_sk(s);
96
97 if (to->sat_port != at->src_port)
98 continue;
99
YOSHIFUJI Hideakied4477b2007-02-09 23:24:27 +0900100 if (to->sat_addr.s_net == ATADDR_ANYNET &&
Oliver Dawid64233bf2005-09-27 16:11:29 -0700101 to->sat_addr.s_node == ATADDR_BCAST)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 goto found;
103
YOSHIFUJI Hideakied4477b2007-02-09 23:24:27 +0900104 if (to->sat_addr.s_net == at->src_net &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 (to->sat_addr.s_node == at->src_node ||
106 to->sat_addr.s_node == ATADDR_BCAST ||
107 to->sat_addr.s_node == ATADDR_ANYNODE))
108 goto found;
109
YOSHIFUJI Hideakied4477b2007-02-09 23:24:27 +0900110 /* XXXX.0 -- we got a request for this router. make sure
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 * that the node is appropriately set. */
112 if (to->sat_addr.s_node == ATADDR_ANYNODE &&
113 to->sat_addr.s_net != ATADDR_ANYNET &&
114 atif->address.s_node == at->src_node) {
115 to->sat_addr.s_node = atif->address.s_node;
116 goto found;
117 }
118 }
119 s = NULL;
120found:
121 read_unlock_bh(&atalk_sockets_lock);
122 return s;
123}
124
125/**
126 * atalk_find_or_insert_socket - Try to find a socket matching ADDR
Ben Hutchings2c530402012-07-10 10:55:09 +0000127 * @sk: socket to insert in the list if it is not there already
128 * @sat: address to search for
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 *
130 * Try to find a socket matching ADDR in the socket list, if found then return
131 * it. If not, insert SK into the socket list.
132 *
133 * This entire operation must execute atomically.
134 */
135static struct sock *atalk_find_or_insert_socket(struct sock *sk,
136 struct sockaddr_at *sat)
137{
138 struct sock *s;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 struct atalk_sock *at;
140
141 write_lock_bh(&atalk_sockets_lock);
Sasha Levinb67bfe02013-02-27 17:06:00 -0800142 sk_for_each(s, &atalk_sockets) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 at = at_sk(s);
144
145 if (at->src_net == sat->sat_addr.s_net &&
146 at->src_node == sat->sat_addr.s_node &&
147 at->src_port == sat->sat_port)
148 goto found;
149 }
150 s = NULL;
151 __atalk_insert_socket(sk); /* Wheee, it's free, assign and insert. */
152found:
153 write_unlock_bh(&atalk_sockets_lock);
154 return s;
155}
156
Kees Cooke99e88a2017-10-16 14:43:17 -0700157static void atalk_destroy_timer(struct timer_list *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158{
Kees Cooke99e88a2017-10-16 14:43:17 -0700159 struct sock *sk = from_timer(sk, t, sk_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160
Eric Dumazetc5640392009-06-16 10:12:03 +0000161 if (sk_has_allocations(sk)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 sk->sk_timer.expires = jiffies + SOCK_DESTROY_TIME;
163 add_timer(&sk->sk_timer);
164 } else
165 sock_put(sk);
166}
167
168static inline void atalk_destroy_socket(struct sock *sk)
169{
170 atalk_remove_socket(sk);
171 skb_queue_purge(&sk->sk_receive_queue);
172
Eric Dumazetc5640392009-06-16 10:12:03 +0000173 if (sk_has_allocations(sk)) {
Kees Cooke99e88a2017-10-16 14:43:17 -0700174 timer_setup(&sk->sk_timer, atalk_destroy_timer, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 sk->sk_timer.expires = jiffies + SOCK_DESTROY_TIME;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 add_timer(&sk->sk_timer);
177 } else
178 sock_put(sk);
179}
180
181/**************************************************************************\
182* *
183* Routing tables for the AppleTalk socket layer. *
184* *
185\**************************************************************************/
186
187/* Anti-deadlock ordering is atalk_routes_lock --> iface_lock -DaveM */
188struct atalk_route *atalk_routes;
189DEFINE_RWLOCK(atalk_routes_lock);
190
191struct atalk_iface *atalk_interfaces;
192DEFINE_RWLOCK(atalk_interfaces_lock);
193
194/* For probing devices or in a routerless network */
195struct atalk_route atrtr_default;
196
197/* AppleTalk interface control */
198/*
199 * Drop a device. Doesn't drop any of its routes - that is the caller's
200 * problem. Called when we down the interface or delete the address.
201 */
202static void atif_drop_device(struct net_device *dev)
203{
204 struct atalk_iface **iface = &atalk_interfaces;
205 struct atalk_iface *tmp;
206
207 write_lock_bh(&atalk_interfaces_lock);
208 while ((tmp = *iface) != NULL) {
209 if (tmp->dev == dev) {
210 *iface = tmp->next;
211 dev_put(dev);
212 kfree(tmp);
213 dev->atalk_ptr = NULL;
214 } else
215 iface = &tmp->next;
216 }
217 write_unlock_bh(&atalk_interfaces_lock);
218}
219
220static struct atalk_iface *atif_add_device(struct net_device *dev,
221 struct atalk_addr *sa)
222{
Panagiotis Issaris0da974f2006-07-21 14:51:30 -0700223 struct atalk_iface *iface = kzalloc(sizeof(*iface), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224
225 if (!iface)
226 goto out;
227
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 dev_hold(dev);
229 iface->dev = dev;
230 dev->atalk_ptr = iface;
231 iface->address = *sa;
232 iface->status = 0;
233
234 write_lock_bh(&atalk_interfaces_lock);
235 iface->next = atalk_interfaces;
236 atalk_interfaces = iface;
237 write_unlock_bh(&atalk_interfaces_lock);
238out:
239 return iface;
240}
241
242/* Perform phase 2 AARP probing on our tentative address */
243static int atif_probe_device(struct atalk_iface *atif)
244{
245 int netrange = ntohs(atif->nets.nr_lastnet) -
246 ntohs(atif->nets.nr_firstnet) + 1;
247 int probe_net = ntohs(atif->address.s_net);
248 int probe_node = atif->address.s_node;
249 int netct, nodect;
250
251 /* Offset the network we start probing with */
252 if (probe_net == ATADDR_ANYNET) {
253 probe_net = ntohs(atif->nets.nr_firstnet);
254 if (netrange)
255 probe_net += jiffies % netrange;
256 }
257 if (probe_node == ATADDR_ANYNODE)
258 probe_node = jiffies & 0xFF;
259
260 /* Scan the networks */
261 atif->status |= ATIF_PROBE;
262 for (netct = 0; netct <= netrange; netct++) {
263 /* Sweep the available nodes from a given start */
264 atif->address.s_net = htons(probe_net);
265 for (nodect = 0; nodect < 256; nodect++) {
266 atif->address.s_node = (nodect + probe_node) & 0xFF;
267 if (atif->address.s_node > 0 &&
268 atif->address.s_node < 254) {
269 /* Probe a proposed address */
270 aarp_probe_network(atif);
271
272 if (!(atif->status & ATIF_PROBE_FAIL)) {
273 atif->status &= ~ATIF_PROBE;
274 return 0;
275 }
276 }
277 atif->status &= ~ATIF_PROBE_FAIL;
278 }
279 probe_net++;
280 if (probe_net > ntohs(atif->nets.nr_lastnet))
281 probe_net = ntohs(atif->nets.nr_firstnet);
282 }
283 atif->status &= ~ATIF_PROBE;
284
285 return -EADDRINUSE; /* Network is full... */
286}
287
288
289/* Perform AARP probing for a proxy address */
290static int atif_proxy_probe_device(struct atalk_iface *atif,
wangweidong6f0984a2014-02-14 15:43:44 +0800291 struct atalk_addr *proxy_addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292{
293 int netrange = ntohs(atif->nets.nr_lastnet) -
294 ntohs(atif->nets.nr_firstnet) + 1;
295 /* we probe the interface's network */
296 int probe_net = ntohs(atif->address.s_net);
297 int probe_node = ATADDR_ANYNODE; /* we'll take anything */
298 int netct, nodect;
299
300 /* Offset the network we start probing with */
301 if (probe_net == ATADDR_ANYNET) {
302 probe_net = ntohs(atif->nets.nr_firstnet);
303 if (netrange)
304 probe_net += jiffies % netrange;
305 }
306
307 if (probe_node == ATADDR_ANYNODE)
308 probe_node = jiffies & 0xFF;
YOSHIFUJI Hideakied4477b2007-02-09 23:24:27 +0900309
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 /* Scan the networks */
311 for (netct = 0; netct <= netrange; netct++) {
312 /* Sweep the available nodes from a given start */
313 proxy_addr->s_net = htons(probe_net);
314 for (nodect = 0; nodect < 256; nodect++) {
315 proxy_addr->s_node = (nodect + probe_node) & 0xFF;
316 if (proxy_addr->s_node > 0 &&
317 proxy_addr->s_node < 254) {
318 /* Tell AARP to probe a proposed address */
319 int ret = aarp_proxy_probe_network(atif,
320 proxy_addr);
321
322 if (ret != -EADDRINUSE)
323 return ret;
324 }
325 }
326 probe_net++;
327 if (probe_net > ntohs(atif->nets.nr_lastnet))
328 probe_net = ntohs(atif->nets.nr_firstnet);
329 }
330
331 return -EADDRINUSE; /* Network is full... */
332}
333
334
335struct atalk_addr *atalk_find_dev_addr(struct net_device *dev)
336{
337 struct atalk_iface *iface = dev->atalk_ptr;
338 return iface ? &iface->address : NULL;
339}
340
341static struct atalk_addr *atalk_find_primary(void)
342{
343 struct atalk_iface *fiface = NULL;
344 struct atalk_addr *retval;
345 struct atalk_iface *iface;
346
347 /*
348 * Return a point-to-point interface only if
349 * there is no non-ptp interface available.
350 */
351 read_lock_bh(&atalk_interfaces_lock);
352 for (iface = atalk_interfaces; iface; iface = iface->next) {
353 if (!fiface && !(iface->dev->flags & IFF_LOOPBACK))
354 fiface = iface;
355 if (!(iface->dev->flags & (IFF_LOOPBACK | IFF_POINTOPOINT))) {
356 retval = &iface->address;
357 goto out;
358 }
359 }
360
361 if (fiface)
362 retval = &fiface->address;
363 else if (atalk_interfaces)
364 retval = &atalk_interfaces->address;
365 else
366 retval = NULL;
367out:
368 read_unlock_bh(&atalk_interfaces_lock);
369 return retval;
370}
371
372/*
373 * Find a match for 'any network' - ie any of our interfaces with that
374 * node number will do just nicely.
375 */
376static struct atalk_iface *atalk_find_anynet(int node, struct net_device *dev)
377{
378 struct atalk_iface *iface = dev->atalk_ptr;
379
380 if (!iface || iface->status & ATIF_PROBE)
381 goto out_err;
382
383 if (node != ATADDR_BCAST &&
384 iface->address.s_node != node &&
385 node != ATADDR_ANYNODE)
386 goto out_err;
387out:
388 return iface;
389out_err:
390 iface = NULL;
391 goto out;
392}
393
394/* Find a match for a specific network:node pair */
Alexey Dobriyanf6e276ee2005-06-20 13:32:05 -0700395static struct atalk_iface *atalk_find_interface(__be16 net, int node)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396{
397 struct atalk_iface *iface;
398
399 read_lock_bh(&atalk_interfaces_lock);
400 for (iface = atalk_interfaces; iface; iface = iface->next) {
401 if ((node == ATADDR_BCAST ||
402 node == ATADDR_ANYNODE ||
403 iface->address.s_node == node) &&
404 iface->address.s_net == net &&
405 !(iface->status & ATIF_PROBE))
406 break;
407
408 /* XXXX.0 -- net.0 returns the iface associated with net */
409 if (node == ATADDR_ANYNODE && net != ATADDR_ANYNET &&
410 ntohs(iface->nets.nr_firstnet) <= ntohs(net) &&
411 ntohs(net) <= ntohs(iface->nets.nr_lastnet))
YOSHIFUJI Hideakied4477b2007-02-09 23:24:27 +0900412 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 }
414 read_unlock_bh(&atalk_interfaces_lock);
415 return iface;
416}
417
418
419/*
420 * Find a route for an AppleTalk packet. This ought to get cached in
421 * the socket (later on...). We know about host routes and the fact
422 * that a route must be direct to broadcast.
423 */
424static struct atalk_route *atrtr_find(struct atalk_addr *target)
425{
426 /*
YOSHIFUJI Hideakied4477b2007-02-09 23:24:27 +0900427 * we must search through all routes unless we find a
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 * host route, because some host routes might overlap
429 * network routes
430 */
431 struct atalk_route *net_route = NULL;
432 struct atalk_route *r;
YOSHIFUJI Hideakied4477b2007-02-09 23:24:27 +0900433
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 read_lock_bh(&atalk_routes_lock);
435 for (r = atalk_routes; r; r = r->next) {
436 if (!(r->flags & RTF_UP))
437 continue;
438
439 if (r->target.s_net == target->s_net) {
440 if (r->flags & RTF_HOST) {
441 /*
442 * if this host route is for the target,
443 * the we're done
444 */
445 if (r->target.s_node == target->s_node)
446 goto out;
447 } else
448 /*
449 * this route will work if there isn't a
450 * direct host route, so cache it
451 */
452 net_route = r;
453 }
454 }
YOSHIFUJI Hideakied4477b2007-02-09 23:24:27 +0900455
456 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 * if we found a network route but not a direct host
458 * route, then return it
459 */
460 if (net_route)
461 r = net_route;
462 else if (atrtr_default.dev)
463 r = &atrtr_default;
464 else /* No route can be found */
465 r = NULL;
466out:
467 read_unlock_bh(&atalk_routes_lock);
468 return r;
469}
470
471
472/*
473 * Given an AppleTalk network, find the device to use. This can be
474 * a simple lookup.
475 */
476struct net_device *atrtr_get_dev(struct atalk_addr *sa)
477{
478 struct atalk_route *atr = atrtr_find(sa);
479 return atr ? atr->dev : NULL;
480}
481
482/* Set up a default router */
483static void atrtr_set_default(struct net_device *dev)
484{
485 atrtr_default.dev = dev;
486 atrtr_default.flags = RTF_UP;
487 atrtr_default.gateway.s_net = htons(0);
488 atrtr_default.gateway.s_node = 0;
489}
490
491/*
492 * Add a router. Basically make sure it looks valid and stuff the
493 * entry in the list. While it uses netranges we always set them to one
494 * entry to work like netatalk.
495 */
496static int atrtr_create(struct rtentry *r, struct net_device *devhint)
497{
498 struct sockaddr_at *ta = (struct sockaddr_at *)&r->rt_dst;
499 struct sockaddr_at *ga = (struct sockaddr_at *)&r->rt_gateway;
500 struct atalk_route *rt;
501 struct atalk_iface *iface, *riface;
502 int retval = -EINVAL;
503
504 /*
505 * Fixme: Raise/Lower a routing change semaphore for these
506 * operations.
507 */
508
509 /* Validate the request */
510 if (ta->sat_family != AF_APPLETALK ||
511 (!devhint && ga->sat_family != AF_APPLETALK))
512 goto out;
513
514 /* Now walk the routing table and make our decisions */
515 write_lock_bh(&atalk_routes_lock);
516 for (rt = atalk_routes; rt; rt = rt->next) {
517 if (r->rt_flags != rt->flags)
518 continue;
519
520 if (ta->sat_addr.s_net == rt->target.s_net) {
521 if (!(rt->flags & RTF_HOST))
522 break;
523 if (ta->sat_addr.s_node == rt->target.s_node)
524 break;
525 }
526 }
527
528 if (!devhint) {
529 riface = NULL;
530
531 read_lock_bh(&atalk_interfaces_lock);
532 for (iface = atalk_interfaces; iface; iface = iface->next) {
533 if (!riface &&
534 ntohs(ga->sat_addr.s_net) >=
YOSHIFUJI Hideakied4477b2007-02-09 23:24:27 +0900535 ntohs(iface->nets.nr_firstnet) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 ntohs(ga->sat_addr.s_net) <=
YOSHIFUJI Hideakied4477b2007-02-09 23:24:27 +0900537 ntohs(iface->nets.nr_lastnet))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 riface = iface;
539
540 if (ga->sat_addr.s_net == iface->address.s_net &&
541 ga->sat_addr.s_node == iface->address.s_node)
542 riface = iface;
YOSHIFUJI Hideakied4477b2007-02-09 23:24:27 +0900543 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 read_unlock_bh(&atalk_interfaces_lock);
545
546 retval = -ENETUNREACH;
547 if (!riface)
548 goto out_unlock;
549
550 devhint = riface->dev;
551 }
552
553 if (!rt) {
Panagiotis Issaris0da974f2006-07-21 14:51:30 -0700554 rt = kzalloc(sizeof(*rt), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555
556 retval = -ENOBUFS;
557 if (!rt)
558 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559
560 rt->next = atalk_routes;
561 atalk_routes = rt;
562 }
563
564 /* Fill in the routing entry */
565 rt->target = ta->sat_addr;
Herbert Xuc7f905f02005-04-19 22:44:17 -0700566 dev_hold(devhint);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 rt->dev = devhint;
568 rt->flags = r->rt_flags;
569 rt->gateway = ga->sat_addr;
570
571 retval = 0;
572out_unlock:
573 write_unlock_bh(&atalk_routes_lock);
574out:
575 return retval;
576}
577
578/* Delete a route. Find it and discard it */
wangweidong6f0984a2014-02-14 15:43:44 +0800579static int atrtr_delete(struct atalk_addr *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580{
581 struct atalk_route **r = &atalk_routes;
582 int retval = 0;
583 struct atalk_route *tmp;
584
585 write_lock_bh(&atalk_routes_lock);
586 while ((tmp = *r) != NULL) {
587 if (tmp->target.s_net == addr->s_net &&
588 (!(tmp->flags&RTF_GATEWAY) ||
589 tmp->target.s_node == addr->s_node)) {
590 *r = tmp->next;
591 dev_put(tmp->dev);
592 kfree(tmp);
593 goto out;
594 }
595 r = &tmp->next;
596 }
597 retval = -ENOENT;
598out:
599 write_unlock_bh(&atalk_routes_lock);
600 return retval;
601}
602
603/*
604 * Called when a device is downed. Just throw away any routes
605 * via it.
606 */
607static void atrtr_device_down(struct net_device *dev)
608{
609 struct atalk_route **r = &atalk_routes;
610 struct atalk_route *tmp;
611
612 write_lock_bh(&atalk_routes_lock);
613 while ((tmp = *r) != NULL) {
614 if (tmp->dev == dev) {
615 *r = tmp->next;
616 dev_put(dev);
617 kfree(tmp);
618 } else
619 r = &tmp->next;
620 }
621 write_unlock_bh(&atalk_routes_lock);
622
623 if (atrtr_default.dev == dev)
624 atrtr_set_default(NULL);
625}
626
627/* Actually down the interface */
628static inline void atalk_dev_down(struct net_device *dev)
629{
630 atrtr_device_down(dev); /* Remove all routes for the device */
631 aarp_device_down(dev); /* Remove AARP entries for the device */
632 atif_drop_device(dev); /* Remove the device */
633}
634
635/*
636 * A device event has occurred. Watch for devices going down and
637 * delete our use of them (iface and route).
638 */
639static int ddp_device_event(struct notifier_block *this, unsigned long event,
640 void *ptr)
641{
Jiri Pirko351638e2013-05-28 01:30:21 +0000642 struct net_device *dev = netdev_notifier_info_to_dev(ptr);
Eric W. Biederman890d52d2007-09-12 11:26:59 +0200643
YOSHIFUJI Hideaki721499e2008-07-19 22:34:43 -0700644 if (!net_eq(dev_net(dev), &init_net))
Eric W. Biedermane9dc8652007-09-12 13:02:17 +0200645 return NOTIFY_DONE;
646
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 if (event == NETDEV_DOWN)
648 /* Discard any use of this */
Eric W. Biederman890d52d2007-09-12 11:26:59 +0200649 atalk_dev_down(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650
651 return NOTIFY_DONE;
652}
653
654/* ioctl calls. Shouldn't even need touching */
655/* Device configuration ioctl calls */
656static int atif_ioctl(int cmd, void __user *arg)
657{
658 static char aarp_mcast[6] = { 0x09, 0x00, 0x00, 0xFF, 0xFF, 0xFF };
659 struct ifreq atreq;
660 struct atalk_netrange *nr;
661 struct sockaddr_at *sa;
662 struct net_device *dev;
663 struct atalk_iface *atif;
664 int ct;
665 int limit;
666 struct rtentry rtdef;
667 int add_route;
668
Arnd Bergmann29c49642021-07-22 16:29:03 +0200669 if (get_user_ifreq(&atreq, NULL, arg))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 return -EFAULT;
671
Eric W. Biederman881d9662007-09-17 11:56:21 -0700672 dev = __dev_get_by_name(&init_net, atreq.ifr_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 if (!dev)
674 return -ENODEV;
675
676 sa = (struct sockaddr_at *)&atreq.ifr_addr;
677 atif = atalk_find_dev(dev);
678
679 switch (cmd) {
Joe Perches4a9e4b02011-07-01 09:43:02 +0000680 case SIOCSIFADDR:
681 if (!capable(CAP_NET_ADMIN))
682 return -EPERM;
683 if (sa->sat_family != AF_APPLETALK)
684 return -EINVAL;
685 if (dev->type != ARPHRD_ETHER &&
686 dev->type != ARPHRD_LOOPBACK &&
687 dev->type != ARPHRD_LOCALTLK &&
688 dev->type != ARPHRD_PPP)
689 return -EPROTONOSUPPORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690
Joe Perches4a9e4b02011-07-01 09:43:02 +0000691 nr = (struct atalk_netrange *)&sa->sat_zero[0];
692 add_route = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693
Joe Perches4a9e4b02011-07-01 09:43:02 +0000694 /*
695 * if this is a point-to-point iface, and we already
696 * have an iface for this AppleTalk address, then we
697 * should not add a route
698 */
699 if ((dev->flags & IFF_POINTOPOINT) &&
700 atalk_find_interface(sa->sat_addr.s_net,
701 sa->sat_addr.s_node)) {
702 printk(KERN_DEBUG "AppleTalk: point-to-point "
703 "interface added with "
704 "existing address\n");
705 add_route = 0;
706 }
YOSHIFUJI Hideakied4477b2007-02-09 23:24:27 +0900707
Joe Perches4a9e4b02011-07-01 09:43:02 +0000708 /*
709 * Phase 1 is fine on LocalTalk but we don't do
gushengxian2aa8eca2021-06-08 18:52:57 -0700710 * EtherTalk phase 1. Anyone wanting to add it, go ahead.
Joe Perches4a9e4b02011-07-01 09:43:02 +0000711 */
712 if (dev->type == ARPHRD_ETHER && nr->nr_phase != 2)
713 return -EPROTONOSUPPORT;
714 if (sa->sat_addr.s_node == ATADDR_BCAST ||
715 sa->sat_addr.s_node == 254)
716 return -EINVAL;
717 if (atif) {
718 /* Already setting address */
719 if (atif->status & ATIF_PROBE)
720 return -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721
Joe Perches4a9e4b02011-07-01 09:43:02 +0000722 atif->address.s_net = sa->sat_addr.s_net;
723 atif->address.s_node = sa->sat_addr.s_node;
724 atrtr_device_down(dev); /* Flush old routes */
725 } else {
726 atif = atif_add_device(dev, &sa->sat_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 if (!atif)
Joe Perches4a9e4b02011-07-01 09:43:02 +0000728 return -ENOMEM;
729 }
730 atif->nets = *nr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731
Joe Perches4a9e4b02011-07-01 09:43:02 +0000732 /*
733 * Check if the chosen address is used. If so we
734 * error and atalkd will try another.
735 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736
Joe Perches4a9e4b02011-07-01 09:43:02 +0000737 if (!(dev->flags & IFF_LOOPBACK) &&
738 !(dev->flags & IFF_POINTOPOINT) &&
739 atif_probe_device(atif) < 0) {
740 atif_drop_device(dev);
741 return -EADDRINUSE;
742 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743
Joe Perches4a9e4b02011-07-01 09:43:02 +0000744 /* Hey it worked - add the direct routes */
745 sa = (struct sockaddr_at *)&rtdef.rt_gateway;
746 sa->sat_family = AF_APPLETALK;
747 sa->sat_addr.s_net = atif->address.s_net;
748 sa->sat_addr.s_node = atif->address.s_node;
749 sa = (struct sockaddr_at *)&rtdef.rt_dst;
750 rtdef.rt_flags = RTF_UP;
751 sa->sat_family = AF_APPLETALK;
752 sa->sat_addr.s_node = ATADDR_ANYNODE;
753 if (dev->flags & IFF_LOOPBACK ||
754 dev->flags & IFF_POINTOPOINT)
755 rtdef.rt_flags |= RTF_HOST;
756
757 /* Routerless initial state */
758 if (nr->nr_firstnet == htons(0) &&
759 nr->nr_lastnet == htons(0xFFFE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 sa->sat_addr.s_net = atif->address.s_net;
Joe Perches4a9e4b02011-07-01 09:43:02 +0000761 atrtr_create(&rtdef, dev);
762 atrtr_set_default(dev);
763 } else {
764 limit = ntohs(nr->nr_lastnet);
765 if (limit - ntohs(nr->nr_firstnet) > 4096) {
766 printk(KERN_WARNING "Too many routes/"
767 "iface.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 return -EINVAL;
Joe Perches4a9e4b02011-07-01 09:43:02 +0000769 }
770 if (add_route)
771 for (ct = ntohs(nr->nr_firstnet);
772 ct <= limit; ct++) {
773 sa->sat_addr.s_net = htons(ct);
774 atrtr_create(&rtdef, dev);
775 }
776 }
777 dev_mc_add_global(dev, aarp_mcast);
778 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779
Joe Perches4a9e4b02011-07-01 09:43:02 +0000780 case SIOCGIFADDR:
781 if (!atif)
782 return -EADDRNOTAVAIL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783
Joe Perches4a9e4b02011-07-01 09:43:02 +0000784 sa->sat_family = AF_APPLETALK;
785 sa->sat_addr = atif->address;
786 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787
Joe Perches4a9e4b02011-07-01 09:43:02 +0000788 case SIOCGIFBRDADDR:
789 if (!atif)
790 return -EADDRNOTAVAIL;
YOSHIFUJI Hideakied4477b2007-02-09 23:24:27 +0900791
Joe Perches4a9e4b02011-07-01 09:43:02 +0000792 sa->sat_family = AF_APPLETALK;
793 sa->sat_addr.s_net = atif->address.s_net;
794 sa->sat_addr.s_node = ATADDR_BCAST;
795 break;
YOSHIFUJI Hideakied4477b2007-02-09 23:24:27 +0900796
Joe Perches4a9e4b02011-07-01 09:43:02 +0000797 case SIOCATALKDIFADDR:
798 case SIOCDIFADDR:
799 if (!capable(CAP_NET_ADMIN))
800 return -EPERM;
801 if (sa->sat_family != AF_APPLETALK)
802 return -EINVAL;
803 atalk_dev_down(dev);
804 break;
YOSHIFUJI Hideakied4477b2007-02-09 23:24:27 +0900805
Joe Perches4a9e4b02011-07-01 09:43:02 +0000806 case SIOCSARP:
807 if (!capable(CAP_NET_ADMIN))
808 return -EPERM;
809 if (sa->sat_family != AF_APPLETALK)
810 return -EINVAL;
811 /*
812 * for now, we only support proxy AARP on ELAP;
813 * we should be able to do it for LocalTalk, too.
814 */
815 if (dev->type != ARPHRD_ETHER)
816 return -EPROTONOSUPPORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817
Joe Perches4a9e4b02011-07-01 09:43:02 +0000818 /*
819 * atif points to the current interface on this network;
820 * we aren't concerned about its current status (at
821 * least for now), but it has all the settings about
822 * the network we're going to probe. Consequently, it
823 * must exist.
824 */
825 if (!atif)
826 return -EADDRNOTAVAIL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827
Joe Perches4a9e4b02011-07-01 09:43:02 +0000828 nr = (struct atalk_netrange *)&(atif->nets);
829 /*
830 * Phase 1 is fine on Localtalk but we don't do
gushengxian2aa8eca2021-06-08 18:52:57 -0700831 * Ethertalk phase 1. Anyone wanting to add it, go ahead.
Joe Perches4a9e4b02011-07-01 09:43:02 +0000832 */
833 if (dev->type == ARPHRD_ETHER && nr->nr_phase != 2)
834 return -EPROTONOSUPPORT;
835
836 if (sa->sat_addr.s_node == ATADDR_BCAST ||
837 sa->sat_addr.s_node == 254)
838 return -EINVAL;
839
840 /*
841 * Check if the chosen address is used. If so we
842 * error and ATCP will try another.
843 */
844 if (atif_proxy_probe_device(atif, &(sa->sat_addr)) < 0)
845 return -EADDRINUSE;
846
847 /*
848 * We now have an address on the local network, and
849 * the AARP code will defend it for us until we take it
850 * down. We don't set up any routes right now, because
851 * ATCP will install them manually via SIOCADDRT.
852 */
853 break;
854
855 case SIOCDARP:
856 if (!capable(CAP_NET_ADMIN))
857 return -EPERM;
858 if (sa->sat_family != AF_APPLETALK)
859 return -EINVAL;
860 if (!atif)
861 return -EADDRNOTAVAIL;
862
863 /* give to aarp module to remove proxy entry */
864 aarp_proxy_remove(atif->dev, &(sa->sat_addr));
865 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 }
867
Arnd Bergmann29c49642021-07-22 16:29:03 +0200868 return put_user_ifreq(&atreq, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869}
870
Christoph Hellwiga5004922020-05-18 08:28:07 +0200871static int atrtr_ioctl_addrt(struct rtentry *rt)
872{
873 struct net_device *dev = NULL;
874
875 if (rt->rt_dev) {
876 char name[IFNAMSIZ];
877
878 if (copy_from_user(name, rt->rt_dev, IFNAMSIZ-1))
879 return -EFAULT;
880 name[IFNAMSIZ-1] = '\0';
881
882 dev = __dev_get_by_name(&init_net, name);
883 if (!dev)
884 return -ENODEV;
885 }
886 return atrtr_create(rt, dev);
887}
888
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889/* Routing ioctl() calls */
890static int atrtr_ioctl(unsigned int cmd, void __user *arg)
891{
892 struct rtentry rt;
893
894 if (copy_from_user(&rt, arg, sizeof(rt)))
895 return -EFAULT;
896
897 switch (cmd) {
Joe Perches4a9e4b02011-07-01 09:43:02 +0000898 case SIOCDELRT:
899 if (rt.rt_dst.sa_family != AF_APPLETALK)
900 return -EINVAL;
901 return atrtr_delete(&((struct sockaddr_at *)
902 &rt.rt_dst)->sat_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903
Christoph Hellwiga5004922020-05-18 08:28:07 +0200904 case SIOCADDRT:
905 return atrtr_ioctl_addrt(&rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906 }
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--) {
Joe Perchesf7a3a1d2009-11-04 10:26:13 +0000926 sum += *data++;
927 sum = rol16(sum, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928 }
929 return sum;
930}
931
932/* Checksum skb data -- similar to skb_checksum */
933static unsigned long atalk_sum_skb(const struct sk_buff *skb, int offset,
934 int len, unsigned long sum)
935{
David S. Miller1a028e52007-04-27 15:21:23 -0700936 int start = skb_headlen(skb);
David S. Millerc32ba3f2009-06-09 00:17:44 -0700937 struct sk_buff *frag_iter;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 int i, copy;
939
940 /* checksum stuff in header space */
wangweidongfd1dc262014-02-14 15:43:43 +0800941 if ((copy = start - offset) > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942 if (copy > len)
943 copy = len;
944 sum = atalk_sum_partial(skb->data + offset, copy, sum);
wangweidongfd1dc262014-02-14 15:43:43 +0800945 if ((len -= copy) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946 return sum;
947
948 offset += copy;
949 }
950
951 /* checksum stuff in frags */
952 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
David S. Miller1a028e52007-04-27 15:21:23 -0700953 int end;
Eric Dumazet9e903e02011-10-18 21:00:24 +0000954 const skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
Ilpo Järvinen547b7922008-07-25 21:43:18 -0700955 WARN_ON(start > offset + len);
David S. Miller1a028e52007-04-27 15:21:23 -0700956
Eric Dumazet9e903e02011-10-18 21:00:24 +0000957 end = start + skb_frag_size(frag);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958 if ((copy = end - offset) > 0) {
959 u8 *vaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960
961 if (copy > len)
962 copy = len;
Eric Dumazet51c56b02012-04-05 11:35:15 +0200963 vaddr = kmap_atomic(skb_frag_page(frag));
Jonathan Lemonb54c9d52019-07-30 07:40:33 -0700964 sum = atalk_sum_partial(vaddr + skb_frag_off(frag) +
965 offset - start, copy, sum);
Eric Dumazet51c56b02012-04-05 11:35:15 +0200966 kunmap_atomic(vaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967
968 if (!(len -= copy))
969 return sum;
970 offset += copy;
971 }
David S. Miller1a028e52007-04-27 15:21:23 -0700972 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973 }
974
David S. Millerc32ba3f2009-06-09 00:17:44 -0700975 skb_walk_frags(skb, frag_iter) {
976 int end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977
David S. Millerc32ba3f2009-06-09 00:17:44 -0700978 WARN_ON(start > offset + len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979
David S. Millerc32ba3f2009-06-09 00:17:44 -0700980 end = start + frag_iter->len;
981 if ((copy = end - offset) > 0) {
982 if (copy > len)
983 copy = len;
984 sum = atalk_sum_skb(frag_iter, offset - start,
985 copy, sum);
986 if ((len -= copy) == 0)
987 return sum;
988 offset += copy;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989 }
David S. Millerc32ba3f2009-06-09 00:17:44 -0700990 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991 }
992
993 BUG_ON(len > 0);
994
995 return sum;
996}
997
Al Viro2a50f282006-09-26 21:22:08 -0700998static __be16 atalk_checksum(const struct sk_buff *skb, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999{
1000 unsigned long sum;
1001
1002 /* skip header 4 bytes */
1003 sum = atalk_sum_skb(skb, 4, len-4, 0);
1004
1005 /* Use 0xFFFF for 0. 0 itself means none */
Al Viro2a50f282006-09-26 21:22:08 -07001006 return sum ? htons((unsigned short)sum) : htons(0xFFFF);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007}
1008
1009static struct proto ddp_proto = {
1010 .name = "DDP",
1011 .owner = THIS_MODULE,
1012 .obj_size = sizeof(struct atalk_sock),
1013};
1014
1015/*
1016 * Create a socket. Initialise the socket, blank the addresses
1017 * set the state.
1018 */
Eric Paris3f378b62009-11-05 22:18:14 -08001019static int atalk_create(struct net *net, struct socket *sock, int protocol,
1020 int kern)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021{
1022 struct sock *sk;
1023 int rc = -ESOCKTNOSUPPORT;
1024
Octavian Purdila09ad9bc2009-11-25 15:14:13 -08001025 if (!net_eq(net, &init_net))
Eric W. Biederman1b8d7ae2007-10-08 23:24:22 -07001026 return -EAFNOSUPPORT;
1027
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028 /*
1029 * We permit SOCK_DGRAM and RAW is an extension. It is trivial to do
YOSHIFUJI Hideakied4477b2007-02-09 23:24:27 +09001030 * and gives you the full ELAP frame. Should be handy for CAP 8)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031 */
1032 if (sock->type != SOCK_RAW && sock->type != SOCK_DGRAM)
1033 goto out;
Ori Nimron6cc03e82019-09-20 09:35:46 +02001034
1035 rc = -EPERM;
1036 if (sock->type == SOCK_RAW && !kern && !capable(CAP_NET_RAW))
1037 goto out;
1038
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039 rc = -ENOMEM;
Eric W. Biederman11aa9c22015-05-08 21:09:13 -05001040 sk = sk_alloc(net, PF_APPLETALK, GFP_KERNEL, &ddp_proto, kern);
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) {
David S. Millerc100c8f2011-03-31 18:59:10 -07001059 sock_hold(sk);
1060 lock_sock(sk);
1061
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062 sock_orphan(sk);
1063 sock->sk = NULL;
1064 atalk_destroy_socket(sk);
Arnd Bergmannb20e7bb2011-03-21 18:18:00 -07001065
David S. Millerc100c8f2011-03-31 18:59:10 -07001066 release_sock(sk);
1067 sock_put(sk);
1068 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069 return 0;
1070}
1071
1072/**
1073 * atalk_pick_and_bind_port - Pick a source port when one is not given
Ben Hutchings2c530402012-07-10 10:55:09 +00001074 * @sk: socket to insert into the tables
1075 * @sat: address to search for
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 *
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.
1079 *
1080 * This whole operation must be atomic.
1081 */
1082static int atalk_pick_and_bind_port(struct sock *sk, struct sockaddr_at *sat)
1083{
1084 int retval;
1085
1086 write_lock_bh(&atalk_sockets_lock);
1087
1088 for (sat->sat_port = ATPORT_RESERVED;
1089 sat->sat_port < ATPORT_LAST;
1090 sat->sat_port++) {
1091 struct sock *s;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092
Sasha Levinb67bfe02013-02-27 17:06:00 -08001093 sk_for_each(s, &atalk_sockets) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094 struct atalk_sock *at = at_sk(s);
1095
1096 if (at->src_net == sat->sat_addr.s_net &&
1097 at->src_node == sat->sat_addr.s_node &&
1098 at->src_port == sat->sat_port)
1099 goto try_next_port;
1100 }
1101
1102 /* Wheee, it's free, assign and insert. */
1103 __atalk_insert_socket(sk);
1104 at_sk(sk)->src_port = sat->sat_port;
1105 retval = 0;
1106 goto out;
1107
1108try_next_port:;
1109 }
1110
1111 retval = -EBUSY;
1112out:
1113 write_unlock_bh(&atalk_sockets_lock);
1114 return retval;
1115}
1116
1117static int atalk_autobind(struct sock *sk)
1118{
1119 struct atalk_sock *at = at_sk(sk);
1120 struct sockaddr_at sat;
1121 struct atalk_addr *ap = atalk_find_primary();
1122 int n = -EADDRNOTAVAIL;
1123
1124 if (!ap || ap->s_net == htons(ATADDR_ANYNET))
1125 goto out;
1126
1127 at->src_net = sat.sat_addr.s_net = ap->s_net;
1128 at->src_node = sat.sat_addr.s_node = ap->s_node;
1129
1130 n = atalk_pick_and_bind_port(sk, &sat);
1131 if (!n)
1132 sock_reset_flag(sk, SOCK_ZAPPED);
1133out:
1134 return n;
1135}
1136
1137/* Set the address 'our end' of the connection */
1138static int atalk_bind(struct socket *sock, struct sockaddr *uaddr, int addr_len)
1139{
1140 struct sockaddr_at *addr = (struct sockaddr_at *)uaddr;
1141 struct sock *sk = sock->sk;
1142 struct atalk_sock *at = at_sk(sk);
Arnd Bergmannecced8b2009-11-05 04:37:26 +00001143 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144
1145 if (!sock_flag(sk, SOCK_ZAPPED) ||
1146 addr_len != sizeof(struct sockaddr_at))
1147 return -EINVAL;
1148
1149 if (addr->sat_family != AF_APPLETALK)
1150 return -EAFNOSUPPORT;
1151
Arnd Bergmann60d9f462011-01-23 00:21:11 +01001152 lock_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153 if (addr->sat_addr.s_net == htons(ATADDR_ANYNET)) {
1154 struct atalk_addr *ap = atalk_find_primary();
1155
Arnd Bergmannecced8b2009-11-05 04:37:26 +00001156 err = -EADDRNOTAVAIL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157 if (!ap)
Arnd Bergmannecced8b2009-11-05 04:37:26 +00001158 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159
1160 at->src_net = addr->sat_addr.s_net = ap->s_net;
wangweidongfd1dc262014-02-14 15:43:43 +08001161 at->src_node = addr->sat_addr.s_node = ap->s_node;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162 } else {
Arnd Bergmannecced8b2009-11-05 04:37:26 +00001163 err = -EADDRNOTAVAIL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164 if (!atalk_find_interface(addr->sat_addr.s_net,
1165 addr->sat_addr.s_node))
Arnd Bergmannecced8b2009-11-05 04:37:26 +00001166 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167
1168 at->src_net = addr->sat_addr.s_net;
1169 at->src_node = addr->sat_addr.s_node;
1170 }
1171
1172 if (addr->sat_port == ATADDR_ANYPORT) {
Arnd Bergmannecced8b2009-11-05 04:37:26 +00001173 err = atalk_pick_and_bind_port(sk, addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174
Arnd Bergmannecced8b2009-11-05 04:37:26 +00001175 if (err < 0)
1176 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177 } else {
1178 at->src_port = addr->sat_port;
1179
Arnd Bergmannecced8b2009-11-05 04:37:26 +00001180 err = -EADDRINUSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181 if (atalk_find_or_insert_socket(sk, addr))
Arnd Bergmannecced8b2009-11-05 04:37:26 +00001182 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183 }
1184
1185 sock_reset_flag(sk, SOCK_ZAPPED);
Arnd Bergmannecced8b2009-11-05 04:37:26 +00001186 err = 0;
1187out:
Arnd Bergmann60d9f462011-01-23 00:21:11 +01001188 release_sock(sk);
Arnd Bergmannecced8b2009-11-05 04:37:26 +00001189 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190}
1191
1192/* Set the address we talk to */
1193static int atalk_connect(struct socket *sock, struct sockaddr *uaddr,
1194 int addr_len, int flags)
1195{
1196 struct sock *sk = sock->sk;
1197 struct atalk_sock *at = at_sk(sk);
1198 struct sockaddr_at *addr;
Arnd Bergmannecced8b2009-11-05 04:37:26 +00001199 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200
1201 sk->sk_state = TCP_CLOSE;
1202 sock->state = SS_UNCONNECTED;
1203
1204 if (addr_len != sizeof(*addr))
1205 return -EINVAL;
1206
1207 addr = (struct sockaddr_at *)uaddr;
1208
1209 if (addr->sat_family != AF_APPLETALK)
1210 return -EAFNOSUPPORT;
1211
1212 if (addr->sat_addr.s_node == ATADDR_BCAST &&
1213 !sock_flag(sk, SOCK_BROADCAST)) {
YOSHIFUJI Hideakied4477b2007-02-09 23:24:27 +09001214#if 1
Dave Jones278f0152012-06-06 08:45:59 +00001215 pr_warn("atalk_connect: %s is broken and did not set SO_BROADCAST.\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216 current->comm);
1217#else
1218 return -EACCES;
YOSHIFUJI Hideakied4477b2007-02-09 23:24:27 +09001219#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220 }
1221
Arnd Bergmann60d9f462011-01-23 00:21:11 +01001222 lock_sock(sk);
Arnd Bergmannecced8b2009-11-05 04:37:26 +00001223 err = -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224 if (sock_flag(sk, SOCK_ZAPPED))
1225 if (atalk_autobind(sk) < 0)
Arnd Bergmannecced8b2009-11-05 04:37:26 +00001226 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227
Arnd Bergmannecced8b2009-11-05 04:37:26 +00001228 err = -ENETUNREACH;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229 if (!atrtr_get_dev(&addr->sat_addr))
Arnd Bergmannecced8b2009-11-05 04:37:26 +00001230 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231
1232 at->dest_port = addr->sat_port;
1233 at->dest_net = addr->sat_addr.s_net;
1234 at->dest_node = addr->sat_addr.s_node;
1235
1236 sock->state = SS_CONNECTED;
1237 sk->sk_state = TCP_ESTABLISHED;
Arnd Bergmannecced8b2009-11-05 04:37:26 +00001238 err = 0;
1239out:
Arnd Bergmann60d9f462011-01-23 00:21:11 +01001240 release_sock(sk);
Arnd Bergmannecced8b2009-11-05 04:37:26 +00001241 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242}
1243
1244/*
1245 * Find the name of an AppleTalk socket. Just copy the right
1246 * fields into the sockaddr.
1247 */
1248static int atalk_getname(struct socket *sock, struct sockaddr *uaddr,
Denys Vlasenko9b2c45d2018-02-12 20:00:20 +01001249 int peer)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250{
1251 struct sockaddr_at sat;
1252 struct sock *sk = sock->sk;
1253 struct atalk_sock *at = at_sk(sk);
Arnd Bergmannecced8b2009-11-05 04:37:26 +00001254 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255
Arnd Bergmann60d9f462011-01-23 00:21:11 +01001256 lock_sock(sk);
Arnd Bergmannecced8b2009-11-05 04:37:26 +00001257 err = -ENOBUFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258 if (sock_flag(sk, SOCK_ZAPPED))
1259 if (atalk_autobind(sk) < 0)
Arnd Bergmannecced8b2009-11-05 04:37:26 +00001260 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261
Dan Carpenterfccc9f12013-04-22 20:22:15 +00001262 memset(&sat, 0, sizeof(sat));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263
1264 if (peer) {
Arnd Bergmannecced8b2009-11-05 04:37:26 +00001265 err = -ENOTCONN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266 if (sk->sk_state != TCP_ESTABLISHED)
Arnd Bergmannecced8b2009-11-05 04:37:26 +00001267 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268
1269 sat.sat_addr.s_net = at->dest_net;
1270 sat.sat_addr.s_node = at->dest_node;
1271 sat.sat_port = at->dest_port;
1272 } else {
1273 sat.sat_addr.s_net = at->src_net;
1274 sat.sat_addr.s_node = at->src_node;
1275 sat.sat_port = at->src_port;
1276 }
1277
1278 sat.sat_family = AF_APPLETALK;
1279 memcpy(uaddr, &sat, sizeof(sat));
Denys Vlasenko9b2c45d2018-02-12 20:00:20 +01001280 err = sizeof(struct sockaddr_at);
Arnd Bergmannecced8b2009-11-05 04:37:26 +00001281
1282out:
Arnd Bergmann60d9f462011-01-23 00:21:11 +01001283 release_sock(sk);
Arnd Bergmannecced8b2009-11-05 04:37:26 +00001284 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285}
1286
Javier Martinez Canillasa73ec312016-09-09 08:43:13 -04001287#if IS_ENABLED(CONFIG_IPDDP)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288static __inline__ int is_ip_over_ddp(struct sk_buff *skb)
1289{
YOSHIFUJI Hideakied4477b2007-02-09 23:24:27 +09001290 return skb->data[12] == 22;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291}
1292
1293static int handle_ip_over_ddp(struct sk_buff *skb)
1294{
Eric W. Biederman881d9662007-09-17 11:56:21 -07001295 struct net_device *dev = __dev_get_by_name(&init_net, "ipddp0");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296 struct net_device_stats *stats;
1297
1298 /* This needs to be able to handle ipddp"N" devices */
Arnaldo Carvalho de Meloffcfb8d2009-09-11 11:35:22 -07001299 if (!dev) {
1300 kfree_skb(skb);
1301 return NET_RX_DROP;
1302 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303
YOSHIFUJI Hideakied4477b2007-02-09 23:24:27 +09001304 skb->protocol = htons(ETH_P_IP);
1305 skb_pull(skb, 13);
1306 skb->dev = dev;
Arnaldo Carvalho de Melobadff6d2007-03-13 13:06:52 -03001307 skb_reset_transport_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308
Wang Chen524ad0a2008-11-12 23:39:10 -08001309 stats = netdev_priv(dev);
YOSHIFUJI Hideakied4477b2007-02-09 23:24:27 +09001310 stats->rx_packets++;
1311 stats->rx_bytes += skb->len + 13;
Arnaldo Carvalho de Meloffcfb8d2009-09-11 11:35:22 -07001312 return netif_rx(skb); /* Send the SKB up to a higher place. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313}
1314#else
1315/* make it easy for gcc to optimize this test out, i.e. kill the code */
1316#define is_ip_over_ddp(skb) 0
1317#define handle_ip_over_ddp(skb) 0
1318#endif
1319
Arnaldo Carvalho de Meloffcfb8d2009-09-11 11:35:22 -07001320static int atalk_route_packet(struct sk_buff *skb, struct net_device *dev,
1321 struct ddpehdr *ddp, __u16 len_hops, int origlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322{
1323 struct atalk_route *rt;
1324 struct atalk_addr ta;
1325
1326 /*
1327 * Don't route multicast, etc., packets, or packets sent to "this
YOSHIFUJI Hideakied4477b2007-02-09 23:24:27 +09001328 * network"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329 */
1330 if (skb->pkt_type != PACKET_HOST || !ddp->deh_dnet) {
1331 /*
1332 * FIXME:
1333 *
1334 * Can it ever happen that a packet is from a PPP iface and
1335 * needs to be broadcast onto the default network?
1336 */
1337 if (dev->type == ARPHRD_PPP)
1338 printk(KERN_DEBUG "AppleTalk: didn't forward broadcast "
1339 "packet received from PPP iface\n");
1340 goto free_it;
1341 }
1342
1343 ta.s_net = ddp->deh_dnet;
1344 ta.s_node = ddp->deh_dnode;
1345
1346 /* Route the packet */
1347 rt = atrtr_find(&ta);
Al Viro2a50f282006-09-26 21:22:08 -07001348 /* increment hops count */
1349 len_hops += 1 << 10;
1350 if (!rt || !(len_hops & (15 << 10)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351 goto free_it;
Al Viro2a50f282006-09-26 21:22:08 -07001352
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353 /* FIXME: use skb->cb to be able to use shared skbs */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354
1355 /*
1356 * Route goes through another gateway, so set the target to the
1357 * gateway instead.
1358 */
1359
1360 if (rt->flags & RTF_GATEWAY) {
1361 ta.s_net = rt->gateway.s_net;
1362 ta.s_node = rt->gateway.s_node;
1363 }
1364
YOSHIFUJI Hideakied4477b2007-02-09 23:24:27 +09001365 /* Fix up skb->len field */
1366 skb_trim(skb, min_t(unsigned int, origlen,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367 (rt->dev->hard_header_len +
Al Viro2a50f282006-09-26 21:22:08 -07001368 ddp_dl->header_length + (len_hops & 1023))));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370 /* FIXME: use skb->cb to be able to use shared skbs */
Al Viro2a50f282006-09-26 21:22:08 -07001371 ddp->deh_len_hops = htons(len_hops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372
1373 /*
1374 * Send the buffer onwards
1375 *
1376 * Now we must always be careful. If it's come from LocalTalk to
1377 * EtherTalk it might not fit
1378 *
1379 * Order matters here: If a packet has to be copied to make a new
1380 * headroom (rare hopefully) then it won't need unsharing.
1381 *
1382 * Note. ddp-> becomes invalid at the realloc.
1383 */
1384 if (skb_headroom(skb) < 22) {
1385 /* 22 bytes - 12 ether, 2 len, 3 802.2 5 snap */
1386 struct sk_buff *nskb = skb_realloc_headroom(skb, 32);
1387 kfree_skb(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388 skb = nskb;
1389 } else
1390 skb = skb_unshare(skb, GFP_ATOMIC);
YOSHIFUJI Hideakied4477b2007-02-09 23:24:27 +09001391
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392 /*
1393 * If the buffer didn't vanish into the lack of space bitbucket we can
1394 * send it.
1395 */
Arnaldo Carvalho de Meloffcfb8d2009-09-11 11:35:22 -07001396 if (skb == NULL)
1397 goto drop;
1398
1399 if (aarp_send_ddp(rt->dev, skb, &ta, NULL) == NET_XMIT_DROP)
1400 return NET_RX_DROP;
Mark Smith8be80572009-09-12 20:48:43 +00001401 return NET_RX_SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402free_it:
1403 kfree_skb(skb);
Arnaldo Carvalho de Meloffcfb8d2009-09-11 11:35:22 -07001404drop:
1405 return NET_RX_DROP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406}
1407
1408/**
1409 * atalk_rcv - Receive a packet (in skb) from device dev
Andrew Lunn709565a2020-10-28 01:55:27 +01001410 * @skb: packet received
1411 * @dev: network device where the packet comes from
1412 * @pt: packet type
1413 * @orig_dev: the original receive net device
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414 *
1415 * Receive a packet (in skb) from device dev. This has come from the SNAP
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -07001416 * decoder, and on entry skb->transport_header is the DDP header, skb->len
1417 * is the DDP header, skb->len is the DDP length. The physical headers
1418 * have been extracted. PPP should probably pass frames marked as for this
1419 * layer. [ie ARPHRD_ETHERTALK]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420 */
1421static int atalk_rcv(struct sk_buff *skb, struct net_device *dev,
David S. Millerf2ccd8f2005-08-09 19:34:12 -07001422 struct packet_type *pt, struct net_device *orig_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423{
1424 struct ddpehdr *ddp;
1425 struct sock *sock;
1426 struct atalk_iface *atif;
1427 struct sockaddr_at tosat;
YOSHIFUJI Hideakied4477b2007-02-09 23:24:27 +09001428 int origlen;
Al Viro2a50f282006-09-26 21:22:08 -07001429 __u16 len_hops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430
YOSHIFUJI Hideaki721499e2008-07-19 22:34:43 -07001431 if (!net_eq(dev_net(dev), &init_net))
Mark Smith6885ffb2009-08-06 23:21:22 +00001432 goto drop;
Eric W. Biedermane730c152007-09-17 11:53:39 -07001433
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434 /* Don't mangle buffer if shared */
YOSHIFUJI Hideakied4477b2007-02-09 23:24:27 +09001435 if (!(skb = skb_share_check(skb, GFP_ATOMIC)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436 goto out;
YOSHIFUJI Hideakied4477b2007-02-09 23:24:27 +09001437
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438 /* Size check and make sure header is contiguous */
1439 if (!pskb_may_pull(skb, sizeof(*ddp)))
Mark Smith6885ffb2009-08-06 23:21:22 +00001440 goto drop;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441
1442 ddp = ddp_hdr(skb);
1443
Al Viro2a50f282006-09-26 21:22:08 -07001444 len_hops = ntohs(ddp->deh_len_hops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445
1446 /* Trim buffer in case of stray trailing data */
1447 origlen = skb->len;
Al Viro2a50f282006-09-26 21:22:08 -07001448 skb_trim(skb, min_t(unsigned int, skb->len, len_hops & 1023));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449
1450 /*
1451 * Size check to see if ddp->deh_len was crap
1452 * (Otherwise we'll detonate most spectacularly
Jean Delvare75559c12007-04-04 23:52:46 -07001453 * in the middle of atalk_checksum() or recvmsg()).
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454 */
Jean Delvare75559c12007-04-04 23:52:46 -07001455 if (skb->len < sizeof(*ddp) || skb->len < (len_hops & 1023)) {
1456 pr_debug("AppleTalk: dropping corrupted frame (deh_len=%u, "
1457 "skb->len=%u)\n", len_hops & 1023, skb->len);
Mark Smith6885ffb2009-08-06 23:21:22 +00001458 goto drop;
Jean Delvare75559c12007-04-04 23:52:46 -07001459 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460
1461 /*
1462 * Any checksums. Note we don't do htons() on this == is assumed to be
1463 * valid for net byte orders all over the networking code...
1464 */
1465 if (ddp->deh_sum &&
Al Viro2a50f282006-09-26 21:22:08 -07001466 atalk_checksum(skb, len_hops & 1023) != ddp->deh_sum)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467 /* Not a valid AppleTalk frame - dustbin time */
Mark Smith6885ffb2009-08-06 23:21:22 +00001468 goto drop;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469
1470 /* Check the packet is aimed at us */
1471 if (!ddp->deh_dnet) /* Net 0 is 'this network' */
1472 atif = atalk_find_anynet(ddp->deh_dnode, dev);
1473 else
1474 atif = atalk_find_interface(ddp->deh_dnet, ddp->deh_dnode);
1475
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476 if (!atif) {
Oliver Dawid64233bf2005-09-27 16:11:29 -07001477 /* Not ours, so we route the packet via the correct
1478 * AppleTalk iface
1479 */
Arnaldo Carvalho de Meloffcfb8d2009-09-11 11:35:22 -07001480 return atalk_route_packet(skb, dev, ddp, len_hops, origlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481 }
1482
1483 /* if IP over DDP is not selected this code will be optimized out */
1484 if (is_ip_over_ddp(skb))
1485 return handle_ip_over_ddp(skb);
1486 /*
1487 * Which socket - atalk_search_socket() looks for a *full match*
1488 * of the <net, node, port> tuple.
1489 */
1490 tosat.sat_addr.s_net = ddp->deh_dnet;
1491 tosat.sat_addr.s_node = ddp->deh_dnode;
1492 tosat.sat_port = ddp->deh_dport;
1493
1494 sock = atalk_search_socket(&tosat, atif);
1495 if (!sock) /* But not one of our sockets */
Mark Smith6885ffb2009-08-06 23:21:22 +00001496 goto drop;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497
1498 /* Queue packet (standard) */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499 if (sock_queue_rcv_skb(sock, skb) < 0)
Mark Smith6885ffb2009-08-06 23:21:22 +00001500 goto drop;
1501
1502 return NET_RX_SUCCESS;
1503
1504drop:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505 kfree_skb(skb);
Mark Smith6885ffb2009-08-06 23:21:22 +00001506out:
1507 return NET_RX_DROP;
1508
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509}
1510
1511/*
1512 * Receive a LocalTalk frame. We make some demands on the caller here.
1513 * Caller must provide enough headroom on the packet to pull the short
1514 * header and append a long one.
1515 */
1516static int ltalk_rcv(struct sk_buff *skb, struct net_device *dev,
David S. Millerf2ccd8f2005-08-09 19:34:12 -07001517 struct packet_type *pt, struct net_device *orig_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518{
YOSHIFUJI Hideaki721499e2008-07-19 22:34:43 -07001519 if (!net_eq(dev_net(dev), &init_net))
Eric W. Biedermane730c152007-09-17 11:53:39 -07001520 goto freeit;
1521
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522 /* Expand any short form frames */
Arnaldo Carvalho de Melo98e399f2007-03-19 15:33:04 -07001523 if (skb_mac_header(skb)[2] == 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524 struct ddpehdr *ddp;
1525 /* Find our address */
1526 struct atalk_addr *ap = atalk_find_dev_addr(dev);
1527
Al Viro2a50f282006-09-26 21:22:08 -07001528 if (!ap || skb->len < sizeof(__be16) || skb->len > 1023)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529 goto freeit;
1530
1531 /* Don't mangle buffer if shared */
YOSHIFUJI Hideakied4477b2007-02-09 23:24:27 +09001532 if (!(skb = skb_share_check(skb, GFP_ATOMIC)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533 return 0;
1534
1535 /*
1536 * The push leaves us with a ddephdr not an shdr, and
1537 * handily the port bytes in the right place preset.
1538 */
Johannes Bergd58ff352017-06-16 14:29:23 +02001539 ddp = skb_push(skb, sizeof(*ddp) - 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540
1541 /* Now fill in the long header */
1542
YOSHIFUJI Hideakied4477b2007-02-09 23:24:27 +09001543 /*
1544 * These two first. The mac overlays the new source/dest
1545 * network information so we MUST copy these before
1546 * we write the network numbers !
1547 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548
Arnaldo Carvalho de Melo98e399f2007-03-19 15:33:04 -07001549 ddp->deh_dnode = skb_mac_header(skb)[0]; /* From physical header */
1550 ddp->deh_snode = skb_mac_header(skb)[1]; /* From physical header */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551
1552 ddp->deh_dnet = ap->s_net; /* Network number */
1553 ddp->deh_snet = ap->s_net;
1554 ddp->deh_sum = 0; /* No checksum */
1555 /*
1556 * Not sure about this bit...
1557 */
Al Viro2a50f282006-09-26 21:22:08 -07001558 /* Non routable, so force a drop if we slip up later */
1559 ddp->deh_len_hops = htons(skb->len + (DDP_MAXHOPS << 10));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560 }
Arnaldo Carvalho de Melobadff6d2007-03-13 13:06:52 -03001561 skb_reset_transport_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562
David S. Millerf2ccd8f2005-08-09 19:34:12 -07001563 return atalk_rcv(skb, dev, pt, orig_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564freeit:
1565 kfree_skb(skb);
1566 return 0;
1567}
1568
Ying Xue1b784142015-03-02 15:37:48 +08001569static int atalk_sendmsg(struct socket *sock, struct msghdr *msg, size_t len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570{
1571 struct sock *sk = sock->sk;
1572 struct atalk_sock *at = at_sk(sk);
Steffen Hurrle342dfc32014-01-17 22:53:15 +01001573 DECLARE_SOCKADDR(struct sockaddr_at *, usat, msg->msg_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574 int flags = msg->msg_flags;
1575 int loopback = 0;
1576 struct sockaddr_at local_satalk, gsat;
1577 struct sk_buff *skb;
1578 struct net_device *dev;
1579 struct ddpehdr *ddp;
Doug Brown39935dc2021-02-11 21:27:54 -08001580 int size, hard_header_len;
1581 struct atalk_route *rt, *rt_lo = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582 int err;
1583
1584 if (flags & ~(MSG_DONTWAIT|MSG_CMSG_COMPAT))
1585 return -EINVAL;
1586
1587 if (len > DDP_MAXSZ)
1588 return -EMSGSIZE;
1589
Arnd Bergmann60d9f462011-01-23 00:21:11 +01001590 lock_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591 if (usat) {
Arnd Bergmannecced8b2009-11-05 04:37:26 +00001592 err = -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593 if (sock_flag(sk, SOCK_ZAPPED))
1594 if (atalk_autobind(sk) < 0)
Arnd Bergmannecced8b2009-11-05 04:37:26 +00001595 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596
Arnd Bergmannecced8b2009-11-05 04:37:26 +00001597 err = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598 if (msg->msg_namelen < sizeof(*usat) ||
1599 usat->sat_family != AF_APPLETALK)
Arnd Bergmannecced8b2009-11-05 04:37:26 +00001600 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601
Arnd Bergmannecced8b2009-11-05 04:37:26 +00001602 err = -EPERM;
Alan Cox03ba9992009-03-27 00:27:18 -07001603 /* netatalk didn't implement this check */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604 if (usat->sat_addr.s_node == ATADDR_BCAST &&
1605 !sock_flag(sk, SOCK_BROADCAST)) {
Arnd Bergmannecced8b2009-11-05 04:37:26 +00001606 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607 }
1608 } else {
Arnd Bergmannecced8b2009-11-05 04:37:26 +00001609 err = -ENOTCONN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610 if (sk->sk_state != TCP_ESTABLISHED)
Arnd Bergmannecced8b2009-11-05 04:37:26 +00001611 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612 usat = &local_satalk;
1613 usat->sat_family = AF_APPLETALK;
1614 usat->sat_port = at->dest_port;
1615 usat->sat_addr.s_node = at->dest_node;
1616 usat->sat_addr.s_net = at->dest_net;
1617 }
1618
1619 /* Build a packet */
1620 SOCK_DEBUG(sk, "SK %p: Got address.\n", sk);
1621
1622 /* For headers */
1623 size = sizeof(struct ddpehdr) + len + ddp_dl->header_length;
1624
1625 if (usat->sat_addr.s_net || usat->sat_addr.s_node == ATADDR_ANYNODE) {
1626 rt = atrtr_find(&usat->sat_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627 } else {
1628 struct atalk_addr at_hint;
1629
1630 at_hint.s_node = 0;
1631 at_hint.s_net = at->src_net;
1632
1633 rt = atrtr_find(&at_hint);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634 }
Anton Protopopov48bb2302016-02-17 10:53:59 -05001635 err = -ENETUNREACH;
Oliver Dawid64233bf2005-09-27 16:11:29 -07001636 if (!rt)
Arnd Bergmannecced8b2009-11-05 04:37:26 +00001637 goto out;
Oliver Dawid64233bf2005-09-27 16:11:29 -07001638
1639 dev = rt->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640
1641 SOCK_DEBUG(sk, "SK %p: Size needed %d, device %s\n",
1642 sk, size, dev->name);
1643
Doug Brown39935dc2021-02-11 21:27:54 -08001644 hard_header_len = dev->hard_header_len;
1645 /* Leave room for loopback hardware header if necessary */
1646 if (usat->sat_addr.s_node == ATADDR_BCAST &&
1647 (dev->flags & IFF_LOOPBACK || !(rt->flags & RTF_GATEWAY))) {
1648 struct atalk_addr at_lo;
1649
1650 at_lo.s_node = 0;
1651 at_lo.s_net = 0;
1652
1653 rt_lo = atrtr_find(&at_lo);
1654
1655 if (rt_lo && rt_lo->dev->hard_header_len > hard_header_len)
1656 hard_header_len = rt_lo->dev->hard_header_len;
1657 }
1658
1659 size += hard_header_len;
Arnd Bergmann60d9f462011-01-23 00:21:11 +01001660 release_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661 skb = sock_alloc_send_skb(sk, size, (flags & MSG_DONTWAIT), &err);
Arnd Bergmann60d9f462011-01-23 00:21:11 +01001662 lock_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663 if (!skb)
Arnd Bergmannecced8b2009-11-05 04:37:26 +00001664 goto out;
YOSHIFUJI Hideakied4477b2007-02-09 23:24:27 +09001665
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666 skb_reserve(skb, ddp_dl->header_length);
Doug Brown39935dc2021-02-11 21:27:54 -08001667 skb_reserve(skb, hard_header_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668 skb->dev = dev;
1669
1670 SOCK_DEBUG(sk, "SK %p: Begin build.\n", sk);
1671
Johannes Berg4df864c2017-06-16 14:29:21 +02001672 ddp = skb_put(skb, sizeof(struct ddpehdr));
Al Viro2a50f282006-09-26 21:22:08 -07001673 ddp->deh_len_hops = htons(len + sizeof(*ddp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674 ddp->deh_dnet = usat->sat_addr.s_net;
1675 ddp->deh_snet = at->src_net;
1676 ddp->deh_dnode = usat->sat_addr.s_node;
1677 ddp->deh_snode = at->src_node;
1678 ddp->deh_dport = usat->sat_port;
1679 ddp->deh_sport = at->src_port;
1680
Alexey Dobriyan5b5e0922017-02-27 14:30:02 -08001681 SOCK_DEBUG(sk, "SK %p: Copy user data (%zd bytes).\n", sk, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001682
Al Viro6ce8e9c2014-04-06 21:25:44 -04001683 err = memcpy_from_msg(skb_put(skb, len), msg, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684 if (err) {
1685 kfree_skb(skb);
Arnd Bergmannecced8b2009-11-05 04:37:26 +00001686 err = -EFAULT;
1687 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688 }
1689
Tom Herbert28448b82014-05-23 08:47:19 -07001690 if (sk->sk_no_check_tx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691 ddp->deh_sum = 0;
1692 else
1693 ddp->deh_sum = atalk_checksum(skb, len + sizeof(*ddp));
1694
1695 /*
1696 * Loopback broadcast packets to non gateway targets (ie routes
1697 * to group we are in)
1698 */
1699 if (ddp->deh_dnode == ATADDR_BCAST &&
1700 !(rt->flags & RTF_GATEWAY) && !(dev->flags & IFF_LOOPBACK)) {
1701 struct sk_buff *skb2 = skb_copy(skb, GFP_KERNEL);
1702
1703 if (skb2) {
1704 loopback = 1;
1705 SOCK_DEBUG(sk, "SK %p: send out(copy).\n", sk);
Arnaldo Carvalho de Meloffcfb8d2009-09-11 11:35:22 -07001706 /*
1707 * If it fails it is queued/sent above in the aarp queue
1708 */
1709 aarp_send_ddp(dev, skb2, &usat->sat_addr, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001710 }
1711 }
1712
1713 if (dev->flags & IFF_LOOPBACK || loopback) {
1714 SOCK_DEBUG(sk, "SK %p: Loop back.\n", sk);
1715 /* loop back */
1716 skb_orphan(skb);
Oliver Dawid64233bf2005-09-27 16:11:29 -07001717 if (ddp->deh_dnode == ATADDR_BCAST) {
Doug Brown39935dc2021-02-11 21:27:54 -08001718 if (!rt_lo) {
Oliver Dawid64233bf2005-09-27 16:11:29 -07001719 kfree_skb(skb);
Arnd Bergmannecced8b2009-11-05 04:37:26 +00001720 err = -ENETUNREACH;
1721 goto out;
Oliver Dawid64233bf2005-09-27 16:11:29 -07001722 }
Doug Brown39935dc2021-02-11 21:27:54 -08001723 dev = rt_lo->dev;
Oliver Dawid64233bf2005-09-27 16:11:29 -07001724 skb->dev = dev;
1725 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726 ddp_dl->request(ddp_dl, skb, dev->dev_addr);
1727 } else {
1728 SOCK_DEBUG(sk, "SK %p: send out.\n", sk);
1729 if (rt->flags & RTF_GATEWAY) {
1730 gsat.sat_addr = rt->gateway;
1731 usat = &gsat;
1732 }
1733
Arnaldo Carvalho de Meloffcfb8d2009-09-11 11:35:22 -07001734 /*
1735 * If it fails it is queued/sent above in the aarp queue
1736 */
1737 aarp_send_ddp(dev, skb, &usat->sat_addr, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738 }
Alexey Dobriyan5b5e0922017-02-27 14:30:02 -08001739 SOCK_DEBUG(sk, "SK %p: Done write (%zd).\n", sk, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740
Arnd Bergmannecced8b2009-11-05 04:37:26 +00001741out:
Arnd Bergmann60d9f462011-01-23 00:21:11 +01001742 release_sock(sk);
Arnd Bergmannecced8b2009-11-05 04:37:26 +00001743 return err ? : len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744}
1745
Ying Xue1b784142015-03-02 15:37:48 +08001746static int atalk_recvmsg(struct socket *sock, struct msghdr *msg, size_t size,
1747 int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001748{
1749 struct sock *sk = sock->sk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750 struct ddpehdr *ddp;
1751 int copied = 0;
Al Viro2a50f282006-09-26 21:22:08 -07001752 int offset = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753 int err = 0;
Arnd Bergmannecced8b2009-11-05 04:37:26 +00001754 struct sk_buff *skb;
1755
Arnd Bergmannecced8b2009-11-05 04:37:26 +00001756 skb = skb_recv_datagram(sk, flags & ~MSG_DONTWAIT,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757 flags & MSG_DONTWAIT, &err);
Arnd Bergmann60d9f462011-01-23 00:21:11 +01001758 lock_sock(sk);
1759
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760 if (!skb)
Arnd Bergmannecced8b2009-11-05 04:37:26 +00001761 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762
1763 /* FIXME: use skb->cb to be able to use shared skbs */
1764 ddp = ddp_hdr(skb);
Al Viro2a50f282006-09-26 21:22:08 -07001765 copied = ntohs(ddp->deh_len_hops) & 1023;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766
Al Viro2a50f282006-09-26 21:22:08 -07001767 if (sk->sk_type != SOCK_RAW) {
1768 offset = sizeof(*ddp);
1769 copied -= offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770 }
1771
Al Viro2a50f282006-09-26 21:22:08 -07001772 if (copied > size) {
1773 copied = size;
1774 msg->msg_flags |= MSG_TRUNC;
1775 }
David S. Miller51f3d022014-11-05 16:46:40 -05001776 err = skb_copy_datagram_msg(skb, offset, msg, copied);
Al Viro2a50f282006-09-26 21:22:08 -07001777
Hannes Frederic Sowaf3d33422013-11-21 03:14:22 +01001778 if (!err && msg->msg_name) {
Steffen Hurrle342dfc32014-01-17 22:53:15 +01001779 DECLARE_SOCKADDR(struct sockaddr_at *, sat, msg->msg_name);
Hannes Frederic Sowaf3d33422013-11-21 03:14:22 +01001780 sat->sat_family = AF_APPLETALK;
1781 sat->sat_port = ddp->deh_sport;
1782 sat->sat_addr.s_node = ddp->deh_snode;
1783 sat->sat_addr.s_net = ddp->deh_snet;
1784 msg->msg_namelen = sizeof(*sat);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785 }
1786
1787 skb_free_datagram(sk, skb); /* Free the datagram. */
Arnd Bergmannecced8b2009-11-05 04:37:26 +00001788
1789out:
Arnd Bergmann60d9f462011-01-23 00:21:11 +01001790 release_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791 return err ? : copied;
1792}
1793
1794
1795/*
1796 * AppleTalk ioctl calls.
1797 */
1798static int atalk_ioctl(struct socket *sock, unsigned int cmd, unsigned long arg)
1799{
Christoph Hellwigb5e5fa52006-01-03 14:18:33 -08001800 int rc = -ENOIOCTLCMD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801 struct sock *sk = sock->sk;
1802 void __user *argp = (void __user *)arg;
1803
1804 switch (cmd) {
wangweidong7b306002014-02-14 15:43:46 +08001805 /* Protocol layer */
1806 case TIOCOUTQ: {
1807 long amount = sk->sk_sndbuf - sk_wmem_alloc_get(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808
wangweidong7b306002014-02-14 15:43:46 +08001809 if (amount < 0)
1810 amount = 0;
1811 rc = put_user(amount, (int __user *)argp);
1812 break;
1813 }
1814 case TIOCINQ: {
1815 /*
1816 * These two are safe on a single CPU system as only
1817 * user tasks fiddle here
1818 */
1819 struct sk_buff *skb = skb_peek(&sk->sk_receive_queue);
1820 long amount = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821
wangweidong7b306002014-02-14 15:43:46 +08001822 if (skb)
wangweidong63ae8892014-07-04 15:29:48 +08001823 amount = skb->len - sizeof(struct ddpehdr);
wangweidong7b306002014-02-14 15:43:46 +08001824 rc = put_user(amount, (int __user *)argp);
1825 break;
1826 }
wangweidong7b306002014-02-14 15:43:46 +08001827 /* Routing */
1828 case SIOCADDRT:
1829 case SIOCDELRT:
1830 rc = -EPERM;
1831 if (capable(CAP_NET_ADMIN))
1832 rc = atrtr_ioctl(cmd, argp);
1833 break;
1834 /* Interface */
1835 case SIOCGIFADDR:
1836 case SIOCSIFADDR:
1837 case SIOCGIFBRDADDR:
1838 case SIOCATALKDIFADDR:
1839 case SIOCDIFADDR:
1840 case SIOCSARP: /* proxy AARP */
1841 case SIOCDARP: /* proxy AARP */
1842 rtnl_lock();
1843 rc = atif_ioctl(cmd, argp);
1844 rtnl_unlock();
1845 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846 }
1847
1848 return rc;
1849}
1850
Petr Vandrovecf6c90b72006-03-27 23:39:31 -08001851
1852#ifdef CONFIG_COMPAT
Christoph Hellwigdc13c8762020-05-18 08:28:08 +02001853static int atalk_compat_routing_ioctl(struct sock *sk, unsigned int cmd,
1854 struct compat_rtentry __user *ur)
1855{
1856 compat_uptr_t rtdev;
1857 struct rtentry rt;
1858
1859 if (copy_from_user(&rt.rt_dst, &ur->rt_dst,
1860 3 * sizeof(struct sockaddr)) ||
1861 get_user(rt.rt_flags, &ur->rt_flags) ||
1862 get_user(rt.rt_metric, &ur->rt_metric) ||
1863 get_user(rt.rt_mtu, &ur->rt_mtu) ||
1864 get_user(rt.rt_window, &ur->rt_window) ||
1865 get_user(rt.rt_irtt, &ur->rt_irtt) ||
1866 get_user(rtdev, &ur->rt_dev))
1867 return -EFAULT;
1868
1869 switch (cmd) {
1870 case SIOCDELRT:
1871 if (rt.rt_dst.sa_family != AF_APPLETALK)
1872 return -EINVAL;
1873 return atrtr_delete(&((struct sockaddr_at *)
1874 &rt.rt_dst)->sat_addr);
1875
1876 case SIOCADDRT:
1877 rt.rt_dev = compat_ptr(rtdev);
1878 return atrtr_ioctl_addrt(&rt);
1879 default:
1880 return -EINVAL;
1881 }
1882}
Petr Vandrovecf6c90b72006-03-27 23:39:31 -08001883static int atalk_compat_ioctl(struct socket *sock, unsigned int cmd, unsigned long arg)
1884{
Christoph Hellwigdc13c8762020-05-18 08:28:08 +02001885 void __user *argp = compat_ptr(arg);
1886 struct sock *sk = sock->sk;
1887
1888 switch (cmd) {
1889 case SIOCADDRT:
1890 case SIOCDELRT:
1891 return atalk_compat_routing_ioctl(sk, cmd, argp);
Petr Vandrovecf6c90b72006-03-27 23:39:31 -08001892 /*
Arnd Bergmann20660222009-11-06 08:09:06 +00001893 * SIOCATALKDIFADDR is a SIOCPROTOPRIVATE ioctl number, so we
1894 * cannot handle it in common code. The data we access if ifreq
1895 * here is compatible, so we can simply call the native
1896 * handler.
Petr Vandrovecf6c90b72006-03-27 23:39:31 -08001897 */
Christoph Hellwigdc13c8762020-05-18 08:28:08 +02001898 case SIOCATALKDIFADDR:
1899 return atalk_ioctl(sock, cmd, (unsigned long)argp);
1900 default:
1901 return -ENOIOCTLCMD;
1902 }
Petr Vandrovecf6c90b72006-03-27 23:39:31 -08001903}
Christoph Hellwigdc13c8762020-05-18 08:28:08 +02001904#endif /* CONFIG_COMPAT */
Petr Vandrovecf6c90b72006-03-27 23:39:31 -08001905
1906
Stephen Hemmingerec1b4cf2009-10-05 05:58:39 +00001907static const struct net_proto_family atalk_family_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908 .family = PF_APPLETALK,
1909 .create = atalk_create,
1910 .owner = THIS_MODULE,
1911};
1912
Arnd Bergmannecced8b2009-11-05 04:37:26 +00001913static const struct proto_ops atalk_dgram_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001914 .family = PF_APPLETALK,
1915 .owner = THIS_MODULE,
1916 .release = atalk_release,
1917 .bind = atalk_bind,
1918 .connect = atalk_connect,
1919 .socketpair = sock_no_socketpair,
1920 .accept = sock_no_accept,
1921 .getname = atalk_getname,
Linus Torvaldsa11e1d42018-06-28 09:43:44 -07001922 .poll = datagram_poll,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923 .ioctl = atalk_ioctl,
Arnd Bergmannc7cbdbf2019-04-17 22:51:48 +02001924 .gettstamp = sock_gettstamp,
Petr Vandrovecf6c90b72006-03-27 23:39:31 -08001925#ifdef CONFIG_COMPAT
1926 .compat_ioctl = atalk_compat_ioctl,
1927#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928 .listen = sock_no_listen,
1929 .shutdown = sock_no_shutdown,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001930 .sendmsg = atalk_sendmsg,
1931 .recvmsg = atalk_recvmsg,
1932 .mmap = sock_no_mmap,
1933 .sendpage = sock_no_sendpage,
1934};
1935
Linus Torvalds1da177e2005-04-16 15:20:36 -07001936static struct notifier_block ddp_notifier = {
1937 .notifier_call = ddp_device_event,
1938};
1939
Stephen Hemminger7546dd92009-03-09 08:18:29 +00001940static struct packet_type ltalk_packet_type __read_mostly = {
Harvey Harrison09640e632009-02-01 00:45:17 -08001941 .type = cpu_to_be16(ETH_P_LOCALTALK),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001942 .func = ltalk_rcv,
1943};
1944
Stephen Hemminger7546dd92009-03-09 08:18:29 +00001945static struct packet_type ppptalk_packet_type __read_mostly = {
Harvey Harrison09640e632009-02-01 00:45:17 -08001946 .type = cpu_to_be16(ETH_P_PPPTALK),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001947 .func = atalk_rcv,
1948};
1949
1950static unsigned char ddp_snap_id[] = { 0x08, 0x00, 0x07, 0x80, 0x9B };
1951
1952/* Export symbols for use by drivers when AppleTalk is a module */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953EXPORT_SYMBOL(atrtr_get_dev);
1954EXPORT_SYMBOL(atalk_find_dev_addr);
1955
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956/* Called by proto.c on kernel start up */
1957static int __init atalk_init(void)
1958{
YueHaibing6377f782019-03-01 10:57:57 +08001959 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001960
YueHaibing6377f782019-03-01 10:57:57 +08001961 rc = proto_register(&ddp_proto, 0);
1962 if (rc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001963 goto out;
1964
YueHaibing6377f782019-03-01 10:57:57 +08001965 rc = sock_register(&atalk_family_ops);
1966 if (rc)
1967 goto out_proto;
1968
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969 ddp_dl = register_snap_client(ddp_snap_id, atalk_rcv);
YueHaibing98045012019-03-14 13:47:59 +08001970 if (!ddp_dl) {
1971 pr_crit("Unable to register DDP with SNAP.\n");
YueHaibingc93ad132019-04-30 19:34:08 +08001972 rc = -ENOMEM;
YueHaibing98045012019-03-14 13:47:59 +08001973 goto out_sock;
1974 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001975
1976 dev_add_pack(&ltalk_packet_type);
1977 dev_add_pack(&ppptalk_packet_type);
1978
YueHaibing6377f782019-03-01 10:57:57 +08001979 rc = register_netdevice_notifier(&ddp_notifier);
1980 if (rc)
YueHaibing98045012019-03-14 13:47:59 +08001981 goto out_snap;
YueHaibing6377f782019-03-01 10:57:57 +08001982
YueHaibing98045012019-03-14 13:47:59 +08001983 rc = aarp_proto_init();
1984 if (rc)
1985 goto out_dev;
1986
YueHaibing6377f782019-03-01 10:57:57 +08001987 rc = atalk_proc_init();
1988 if (rc)
1989 goto out_aarp;
1990
1991 rc = atalk_register_sysctl();
1992 if (rc)
1993 goto out_proc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001994out:
1995 return rc;
YueHaibing6377f782019-03-01 10:57:57 +08001996out_proc:
1997 atalk_proc_exit();
1998out_aarp:
1999 aarp_cleanup_module();
YueHaibing98045012019-03-14 13:47:59 +08002000out_dev:
YueHaibing6377f782019-03-01 10:57:57 +08002001 unregister_netdevice_notifier(&ddp_notifier);
YueHaibing98045012019-03-14 13:47:59 +08002002out_snap:
YueHaibing6377f782019-03-01 10:57:57 +08002003 dev_remove_pack(&ppptalk_packet_type);
2004 dev_remove_pack(&ltalk_packet_type);
2005 unregister_snap_client(ddp_dl);
YueHaibing98045012019-03-14 13:47:59 +08002006out_sock:
YueHaibing6377f782019-03-01 10:57:57 +08002007 sock_unregister(PF_APPLETALK);
2008out_proto:
2009 proto_unregister(&ddp_proto);
2010 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002011}
2012module_init(atalk_init);
2013
2014/*
2015 * No explicit module reference count manipulation is needed in the
2016 * protocol. Socket layer sets module reference count for us
2017 * and interfaces reference counting is done
2018 * by the network device layer.
2019 *
2020 * Ergo, before the AppleTalk module can be removed, all AppleTalk
gushengxian2aa8eca2021-06-08 18:52:57 -07002021 * sockets should be closed from user space.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002022 */
2023static void __exit atalk_exit(void)
2024{
2025#ifdef CONFIG_SYSCTL
2026 atalk_unregister_sysctl();
2027#endif /* CONFIG_SYSCTL */
2028 atalk_proc_exit();
2029 aarp_cleanup_module(); /* General aarp clean-up. */
2030 unregister_netdevice_notifier(&ddp_notifier);
2031 dev_remove_pack(&ltalk_packet_type);
2032 dev_remove_pack(&ppptalk_packet_type);
2033 unregister_snap_client(ddp_dl);
2034 sock_unregister(PF_APPLETALK);
2035 proto_unregister(&ddp_proto);
2036}
2037module_exit(atalk_exit);
2038
2039MODULE_LICENSE("GPL");
Alan Cox113aa832008-10-13 19:01:08 -07002040MODULE_AUTHOR("Alan Cox <alan@lxorguk.ukuu.org.uk>");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002041MODULE_DESCRIPTION("AppleTalk 0.20\n");
2042MODULE_ALIAS_NETPROTO(PF_APPLETALK);