]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - net/ipx/af_ipx.c
net: Move prototype declaration to header file include/net/ipx.h from net/ipx/af_ipx.c
[mirror_ubuntu-bionic-kernel.git] / net / ipx / af_ipx.c
CommitLineData
1da177e4
LT
1/*
2 * Implements an IPX socket layer.
3 *
4 * This code is derived from work by
5 * Ross Biro : Writing the original IP stack
6 * Fred Van Kempen : Tidying up the TCP/IP
7 *
8 * Many thanks go to Keith Baker, Institute For Industrial Information
9 * Technology Ltd, Swansea University for allowing me to work on this
10 * in my own time even though it was in some ways related to commercial
11 * work I am currently employed to do there.
12 *
13 * All the material in this file is subject to the Gnu license version 2.
981c0ff6 14 * Neither Alan Cox nor the Swansea University Computer Society admit
1da177e4
LT
15 * liability nor provide warranty for any of this software. This material
16 * is provided as is and at no charge.
17 *
18 * Portions Copyright (c) 2000-2003 Conectiva, Inc. <acme@conectiva.com.br>
19 * Neither Arnaldo Carvalho de Melo nor Conectiva, Inc. admit liability nor
20 * provide warranty for any of this software. This material is provided
21 * "AS-IS" and at no charge.
22 *
23 * Portions Copyright (c) 1995 Caldera, Inc. <greg@caldera.com>
24 * Neither Greg Page nor Caldera, Inc. admit liability nor provide
25 * warranty for any of this software. This material is provided
26 * "AS-IS" and at no charge.
27 *
28 * See net/ipx/ChangeLog.
29 */
30
4fc268d2 31#include <linux/capability.h>
1da177e4
LT
32#include <linux/errno.h>
33#include <linux/if_arp.h>
34#include <linux/if_ether.h>
35#include <linux/init.h>
36#include <linux/ipx.h>
37#include <linux/kernel.h>
38#include <linux/list.h>
39#include <linux/module.h>
40#include <linux/net.h>
41#include <linux/netdevice.h>
42#include <linux/uio.h>
5a0e3ad6 43#include <linux/slab.h>
1da177e4
LT
44#include <linux/skbuff.h>
45#include <linux/socket.h>
46#include <linux/sockios.h>
47#include <linux/string.h>
1da177e4
LT
48#include <linux/types.h>
49#include <linux/termios.h>
50
51#include <net/ipx.h>
52#include <net/p8022.h>
53#include <net/psnap.h>
54#include <net/sock.h>
c752f073 55#include <net/tcp_states.h>
1da177e4
LT
56
57#include <asm/uaccess.h>
58
59#ifdef CONFIG_SYSCTL
60extern void ipx_register_sysctl(void);
61extern void ipx_unregister_sysctl(void);
62#else
63#define ipx_register_sysctl()
64#define ipx_unregister_sysctl()
65#endif
66
67/* Configuration Variables */
68static unsigned char ipxcfg_max_hops = 16;
69static char ipxcfg_auto_select_primary;
70static char ipxcfg_auto_create_interfaces;
71int sysctl_ipx_pprop_broadcasting = 1;
72
73/* Global Variables */
74static struct datalink_proto *p8022_datalink;
75static struct datalink_proto *pEII_datalink;
76static struct datalink_proto *p8023_datalink;
77static struct datalink_proto *pSNAP_datalink;
78
90ddc4f0 79static const struct proto_ops ipx_dgram_ops;
1da177e4
LT
80
81LIST_HEAD(ipx_interfaces);
82DEFINE_SPINLOCK(ipx_interfaces_lock);
83
84struct ipx_interface *ipx_primary_net;
85struct ipx_interface *ipx_internal_net;
86
1da177e4
LT
87struct ipx_interface *ipx_interfaces_head(void)
88{
89 struct ipx_interface *rc = NULL;
90
91 if (!list_empty(&ipx_interfaces))
92 rc = list_entry(ipx_interfaces.next,
93 struct ipx_interface, node);
94 return rc;
95}
96
97static void ipxcfg_set_auto_select(char val)
98{
99 ipxcfg_auto_select_primary = val;
100 if (val && !ipx_primary_net)
101 ipx_primary_net = ipx_interfaces_head();
102}
103
104static int ipxcfg_get_config_data(struct ipx_config_data __user *arg)
105{
106 struct ipx_config_data vals;
107
108 vals.ipxcfg_auto_create_interfaces = ipxcfg_auto_create_interfaces;
109 vals.ipxcfg_auto_select_primary = ipxcfg_auto_select_primary;
110
111 return copy_to_user(arg, &vals, sizeof(vals)) ? -EFAULT : 0;
112}
113
114/*
115 * Note: Sockets may not be removed _during_ an interrupt or inet_bh
116 * handler using this technique. They can be added although we do not
117 * use this facility.
118 */
119
120static void ipx_remove_socket(struct sock *sk)
121{
122 /* Determine interface with which socket is associated */
123 struct ipx_interface *intrfc = ipx_sk(sk)->intrfc;
124
125 if (!intrfc)
126 goto out;
127
128 ipxitf_hold(intrfc);
129 spin_lock_bh(&intrfc->if_sklist_lock);
130 sk_del_node_init(sk);
131 spin_unlock_bh(&intrfc->if_sklist_lock);
132 ipxitf_put(intrfc);
133out:
134 return;
135}
136
137static void ipx_destroy_socket(struct sock *sk)
138{
139 ipx_remove_socket(sk);
140 skb_queue_purge(&sk->sk_receive_queue);
c2b42336 141 sk_refcnt_debug_dec(sk);
1da177e4
LT
142}
143
981c0ff6 144/*
1da177e4
LT
145 * The following code is used to support IPX Interfaces (IPXITF). An
146 * IPX interface is defined by a physical device and a frame type.
147 */
148
149/* ipxitf_clear_primary_net has to be called with ipx_interfaces_lock held */
150
151static void ipxitf_clear_primary_net(void)
152{
153 ipx_primary_net = NULL;
154 if (ipxcfg_auto_select_primary)
155 ipx_primary_net = ipx_interfaces_head();
156}
157
158static struct ipx_interface *__ipxitf_find_using_phys(struct net_device *dev,
4833ed09 159 __be16 datalink)
1da177e4
LT
160{
161 struct ipx_interface *i;
162
163 list_for_each_entry(i, &ipx_interfaces, node)
164 if (i->if_dev == dev && i->if_dlink_type == datalink)
165 goto out;
166 i = NULL;
167out:
168 return i;
169}
170
171static struct ipx_interface *ipxitf_find_using_phys(struct net_device *dev,
4833ed09 172 __be16 datalink)
1da177e4
LT
173{
174 struct ipx_interface *i;
175
176 spin_lock_bh(&ipx_interfaces_lock);
177 i = __ipxitf_find_using_phys(dev, datalink);
178 if (i)
179 ipxitf_hold(i);
180 spin_unlock_bh(&ipx_interfaces_lock);
181 return i;
182}
183
4833ed09 184struct ipx_interface *ipxitf_find_using_net(__be32 net)
1da177e4
LT
185{
186 struct ipx_interface *i;
187
188 spin_lock_bh(&ipx_interfaces_lock);
189 if (net) {
190 list_for_each_entry(i, &ipx_interfaces, node)
191 if (i->if_netnum == net)
192 goto hold;
193 i = NULL;
194 goto unlock;
195 }
196
197 i = ipx_primary_net;
198 if (i)
199hold:
200 ipxitf_hold(i);
201unlock:
202 spin_unlock_bh(&ipx_interfaces_lock);
203 return i;
204}
205
206/* Sockets are bound to a particular IPX interface. */
207static void ipxitf_insert_socket(struct ipx_interface *intrfc, struct sock *sk)
208{
209 ipxitf_hold(intrfc);
210 spin_lock_bh(&intrfc->if_sklist_lock);
211 ipx_sk(sk)->intrfc = intrfc;
212 sk_add_node(sk, &intrfc->if_sklist);
213 spin_unlock_bh(&intrfc->if_sklist_lock);
214 ipxitf_put(intrfc);
215}
216
217/* caller must hold intrfc->if_sklist_lock */
218static struct sock *__ipxitf_find_socket(struct ipx_interface *intrfc,
4833ed09 219 __be16 port)
1da177e4
LT
220{
221 struct sock *s;
1da177e4 222
b67bfe0d 223 sk_for_each(s, &intrfc->if_sklist)
1da177e4
LT
224 if (ipx_sk(s)->port == port)
225 goto found;
226 s = NULL;
227found:
228 return s;
229}
230
231/* caller must hold a reference to intrfc */
232static struct sock *ipxitf_find_socket(struct ipx_interface *intrfc,
4833ed09 233 __be16 port)
1da177e4
LT
234{
235 struct sock *s;
236
237 spin_lock_bh(&intrfc->if_sklist_lock);
238 s = __ipxitf_find_socket(intrfc, port);
239 if (s)
240 sock_hold(s);
241 spin_unlock_bh(&intrfc->if_sklist_lock);
242
243 return s;
244}
245
246#ifdef CONFIG_IPX_INTERN
247static struct sock *ipxitf_find_internal_socket(struct ipx_interface *intrfc,
248 unsigned char *ipx_node,
4833ed09 249 __be16 port)
1da177e4
LT
250{
251 struct sock *s;
1da177e4
LT
252
253 ipxitf_hold(intrfc);
254 spin_lock_bh(&intrfc->if_sklist_lock);
255
b67bfe0d 256 sk_for_each(s, &intrfc->if_sklist) {
1da177e4
LT
257 struct ipx_sock *ipxs = ipx_sk(s);
258
259 if (ipxs->port == port &&
260 !memcmp(ipx_node, ipxs->node, IPX_NODE_LEN))
261 goto found;
262 }
263 s = NULL;
264found:
265 spin_unlock_bh(&intrfc->if_sklist_lock);
266 ipxitf_put(intrfc);
267 return s;
268}
269#endif
270
271static void __ipxitf_down(struct ipx_interface *intrfc)
272{
273 struct sock *s;
b67bfe0d 274 struct hlist_node *t;
1da177e4
LT
275
276 /* Delete all routes associated with this interface */
277 ipxrtr_del_routes(intrfc);
278
279 spin_lock_bh(&intrfc->if_sklist_lock);
280 /* error sockets */
b67bfe0d 281 sk_for_each_safe(s, t, &intrfc->if_sklist) {
1da177e4
LT
282 struct ipx_sock *ipxs = ipx_sk(s);
283
284 s->sk_err = ENOLINK;
285 s->sk_error_report(s);
286 ipxs->intrfc = NULL;
287 ipxs->port = 0;
288 sock_set_flag(s, SOCK_ZAPPED); /* Indicates it is no longer bound */
289 sk_del_node_init(s);
290 }
291 INIT_HLIST_HEAD(&intrfc->if_sklist);
292 spin_unlock_bh(&intrfc->if_sklist_lock);
293
294 /* remove this interface from list */
295 list_del(&intrfc->node);
296
297 /* remove this interface from *special* networks */
298 if (intrfc == ipx_primary_net)
299 ipxitf_clear_primary_net();
300 if (intrfc == ipx_internal_net)
301 ipx_internal_net = NULL;
302
303 if (intrfc->if_dev)
304 dev_put(intrfc->if_dev);
305 kfree(intrfc);
306}
307
308void ipxitf_down(struct ipx_interface *intrfc)
309{
310 spin_lock_bh(&ipx_interfaces_lock);
311 __ipxitf_down(intrfc);
312 spin_unlock_bh(&ipx_interfaces_lock);
313}
314
315static __inline__ void __ipxitf_put(struct ipx_interface *intrfc)
316{
317 if (atomic_dec_and_test(&intrfc->refcnt))
318 __ipxitf_down(intrfc);
319}
320
321static int ipxitf_device_event(struct notifier_block *notifier,
322 unsigned long event, void *ptr)
323{
351638e7 324 struct net_device *dev = netdev_notifier_info_to_dev(ptr);
1da177e4
LT
325 struct ipx_interface *i, *tmp;
326
721499e8 327 if (!net_eq(dev_net(dev), &init_net))
e9dc8653
EB
328 return NOTIFY_DONE;
329
1da177e4
LT
330 if (event != NETDEV_DOWN && event != NETDEV_UP)
331 goto out;
332
333 spin_lock_bh(&ipx_interfaces_lock);
334 list_for_each_entry_safe(i, tmp, &ipx_interfaces, node)
335 if (i->if_dev == dev) {
336 if (event == NETDEV_UP)
337 ipxitf_hold(i);
338 else
339 __ipxitf_put(i);
340 }
341 spin_unlock_bh(&ipx_interfaces_lock);
342out:
343 return NOTIFY_DONE;
344}
345
346
347static __exit void ipxitf_cleanup(void)
348{
349 struct ipx_interface *i, *tmp;
350
351 spin_lock_bh(&ipx_interfaces_lock);
981c0ff6 352 list_for_each_entry_safe(i, tmp, &ipx_interfaces, node)
1da177e4
LT
353 __ipxitf_put(i);
354 spin_unlock_bh(&ipx_interfaces_lock);
355}
356
357static void ipxitf_def_skb_handler(struct sock *sock, struct sk_buff *skb)
358{
359 if (sock_queue_rcv_skb(sock, skb) < 0)
360 kfree_skb(skb);
361}
362
363/*
364 * On input skb->sk is NULL. Nobody is charged for the memory.
365 */
366
367/* caller must hold a reference to intrfc */
368
369#ifdef CONFIG_IPX_INTERN
370static int ipxitf_demux_socket(struct ipx_interface *intrfc,
371 struct sk_buff *skb, int copy)
372{
373 struct ipxhdr *ipx = ipx_hdr(skb);
374 int is_broadcast = !memcmp(ipx->ipx_dest.node, ipx_broadcast_node,
375 IPX_NODE_LEN);
376 struct sock *s;
1da177e4
LT
377 int rc;
378
379 spin_lock_bh(&intrfc->if_sklist_lock);
380
b67bfe0d 381 sk_for_each(s, &intrfc->if_sklist) {
1da177e4
LT
382 struct ipx_sock *ipxs = ipx_sk(s);
383
384 if (ipxs->port == ipx->ipx_dest.sock &&
385 (is_broadcast || !memcmp(ipx->ipx_dest.node,
386 ipxs->node, IPX_NODE_LEN))) {
387 /* We found a socket to which to send */
388 struct sk_buff *skb1;
389
390 if (copy) {
391 skb1 = skb_clone(skb, GFP_ATOMIC);
392 rc = -ENOMEM;
393 if (!skb1)
394 goto out;
395 } else {
396 skb1 = skb;
397 copy = 1; /* skb may only be used once */
398 }
399 ipxitf_def_skb_handler(s, skb1);
400
401 /* On an external interface, one socket can listen */
402 if (intrfc != ipx_internal_net)
403 break;
404 }
405 }
406
407 /* skb was solely for us, and we did not make a copy, so free it. */
408 if (!copy)
409 kfree_skb(skb);
410
411 rc = 0;
412out:
413 spin_unlock_bh(&intrfc->if_sklist_lock);
414 return rc;
415}
416#else
417static struct sock *ncp_connection_hack(struct ipx_interface *intrfc,
418 struct ipxhdr *ipx)
419{
420 /* The packet's target is a NCP connection handler. We want to hand it
421 * to the correct socket directly within the kernel, so that the
422 * mars_nwe packet distribution process does not have to do it. Here we
423 * only care about NCP and BURST packets.
424 *
425 * You might call this a hack, but believe me, you do not want a
426 * complete NCP layer in the kernel, and this is VERY fast as well. */
427 struct sock *sk = NULL;
981c0ff6 428 int connection = 0;
1da177e4
LT
429 u8 *ncphdr = (u8 *)(ipx + 1);
430
981c0ff6 431 if (*ncphdr == 0x22 && *(ncphdr + 1) == 0x22) /* NCP request */
1da177e4
LT
432 connection = (((int) *(ncphdr + 5)) << 8) | (int) *(ncphdr + 3);
433 else if (*ncphdr == 0x77 && *(ncphdr + 1) == 0x77) /* BURST packet */
434 connection = (((int) *(ncphdr + 9)) << 8) | (int) *(ncphdr + 8);
435
436 if (connection) {
1da177e4
LT
437 /* Now we have to look for a special NCP connection handling
438 * socket. Only these sockets have ipx_ncp_conn != 0, set by
439 * SIOCIPXNCPCONN. */
440 spin_lock_bh(&intrfc->if_sklist_lock);
b67bfe0d 441 sk_for_each(sk, &intrfc->if_sklist)
1da177e4
LT
442 if (ipx_sk(sk)->ipx_ncp_conn == connection) {
443 sock_hold(sk);
444 goto found;
445 }
446 sk = NULL;
447 found:
448 spin_unlock_bh(&intrfc->if_sklist_lock);
449 }
450 return sk;
451}
452
453static int ipxitf_demux_socket(struct ipx_interface *intrfc,
454 struct sk_buff *skb, int copy)
455{
456 struct ipxhdr *ipx = ipx_hdr(skb);
457 struct sock *sock1 = NULL, *sock2 = NULL;
458 struct sk_buff *skb1 = NULL, *skb2 = NULL;
459 int rc;
460
461 if (intrfc == ipx_primary_net && ntohs(ipx->ipx_dest.sock) == 0x451)
462 sock1 = ncp_connection_hack(intrfc, ipx);
981c0ff6 463 if (!sock1)
1da177e4
LT
464 /* No special socket found, forward the packet the normal way */
465 sock1 = ipxitf_find_socket(intrfc, ipx->ipx_dest.sock);
466
467 /*
468 * We need to check if there is a primary net and if
469 * this is addressed to one of the *SPECIAL* sockets because
470 * these need to be propagated to the primary net.
471 * The *SPECIAL* socket list contains: 0x452(SAP), 0x453(RIP) and
472 * 0x456(Diagnostic).
473 */
474
475 if (ipx_primary_net && intrfc != ipx_primary_net) {
476 const int dsock = ntohs(ipx->ipx_dest.sock);
477
478 if (dsock == 0x452 || dsock == 0x453 || dsock == 0x456)
479 /* The appropriate thing to do here is to dup the
480 * packet and route to the primary net interface via
481 * ipxitf_send; however, we'll cheat and just demux it
482 * here. */
483 sock2 = ipxitf_find_socket(ipx_primary_net,
484 ipx->ipx_dest.sock);
485 }
486
487 /*
488 * If there is nothing to do return. The kfree will cancel any charging.
489 */
490 rc = 0;
491 if (!sock1 && !sock2) {
492 if (!copy)
493 kfree_skb(skb);
494 goto out;
495 }
496
497 /*
498 * This next segment of code is a little awkward, but it sets it up
499 * so that the appropriate number of copies of the SKB are made and
500 * that skb1 and skb2 point to it (them) so that it (they) can be
501 * demuxed to sock1 and/or sock2. If we are unable to make enough
502 * copies, we do as much as is possible.
503 */
504
505 if (copy)
506 skb1 = skb_clone(skb, GFP_ATOMIC);
507 else
508 skb1 = skb;
509
510 rc = -ENOMEM;
511 if (!skb1)
512 goto out_put;
513
514 /* Do we need 2 SKBs? */
515 if (sock1 && sock2)
516 skb2 = skb_clone(skb1, GFP_ATOMIC);
517 else
518 skb2 = skb1;
519
520 if (sock1)
521 ipxitf_def_skb_handler(sock1, skb1);
522
523 if (!skb2)
524 goto out_put;
525
526 if (sock2)
527 ipxitf_def_skb_handler(sock2, skb2);
528
529 rc = 0;
530out_put:
531 if (sock1)
532 sock_put(sock1);
533 if (sock2)
534 sock_put(sock2);
535out:
536 return rc;
537}
538#endif /* CONFIG_IPX_INTERN */
539
540static struct sk_buff *ipxitf_adjust_skbuff(struct ipx_interface *intrfc,
541 struct sk_buff *skb)
542{
543 struct sk_buff *skb2;
544 int in_offset = (unsigned char *)ipx_hdr(skb) - skb->head;
545 int out_offset = intrfc->if_ipx_offset;
546 int len;
547
548 /* Hopefully, most cases */
549 if (in_offset >= out_offset)
550 return skb;
551
552 /* Need new SKB */
553 len = skb->len + out_offset;
554 skb2 = alloc_skb(len, GFP_ATOMIC);
555 if (skb2) {
556 skb_reserve(skb2, out_offset);
7e28ecc2 557 skb_reset_network_header(skb2);
badff6d0 558 skb_reset_transport_header(skb2);
7e28ecc2 559 skb_put(skb2, skb->len);
1da177e4
LT
560 memcpy(ipx_hdr(skb2), ipx_hdr(skb), skb->len);
561 memcpy(skb2->cb, skb->cb, sizeof(skb->cb));
562 }
563 kfree_skb(skb);
564 return skb2;
565}
566
567/* caller must hold a reference to intrfc and the skb has to be unshared */
568int ipxitf_send(struct ipx_interface *intrfc, struct sk_buff *skb, char *node)
569{
570 struct ipxhdr *ipx = ipx_hdr(skb);
571 struct net_device *dev = intrfc->if_dev;
572 struct datalink_proto *dl = intrfc->if_dlink;
573 char dest_node[IPX_NODE_LEN];
574 int send_to_wire = 1;
575 int addr_len;
576
577 ipx->ipx_tctrl = IPX_SKB_CB(skb)->ipx_tctrl;
578 ipx->ipx_dest.net = IPX_SKB_CB(skb)->ipx_dest_net;
579 ipx->ipx_source.net = IPX_SKB_CB(skb)->ipx_source_net;
580
581 /* see if we need to include the netnum in the route list */
582 if (IPX_SKB_CB(skb)->last_hop.index >= 0) {
4833ed09 583 __be32 *last_hop = (__be32 *)(((u8 *) skb->data) +
1da177e4
LT
584 sizeof(struct ipxhdr) +
585 IPX_SKB_CB(skb)->last_hop.index *
4833ed09 586 sizeof(__be32));
1da177e4
LT
587 *last_hop = IPX_SKB_CB(skb)->last_hop.netnum;
588 IPX_SKB_CB(skb)->last_hop.index = -1;
589 }
981c0ff6
YH
590
591 /*
1da177e4
LT
592 * We need to know how many skbuffs it will take to send out this
593 * packet to avoid unnecessary copies.
594 */
981c0ff6
YH
595
596 if (!dl || !dev || dev->flags & IFF_LOOPBACK)
1da177e4
LT
597 send_to_wire = 0; /* No non looped */
598
599 /*
981c0ff6 600 * See if this should be demuxed to sockets on this interface
1da177e4
LT
601 *
602 * We want to ensure the original was eaten or that we only use
603 * up clones.
604 */
981c0ff6 605
1da177e4
LT
606 if (ipx->ipx_dest.net == intrfc->if_netnum) {
607 /*
608 * To our own node, loop and free the original.
609 * The internal net will receive on all node address.
610 */
611 if (intrfc == ipx_internal_net ||
612 !memcmp(intrfc->if_node, node, IPX_NODE_LEN)) {
613 /* Don't charge sender */
614 skb_orphan(skb);
615
616 /* Will charge receiver */
617 return ipxitf_demux_socket(intrfc, skb, 0);
618 }
619
620 /* Broadcast, loop and possibly keep to send on. */
621 if (!memcmp(ipx_broadcast_node, node, IPX_NODE_LEN)) {
622 if (!send_to_wire)
623 skb_orphan(skb);
624 ipxitf_demux_socket(intrfc, skb, send_to_wire);
625 if (!send_to_wire)
626 goto out;
627 }
628 }
629
630 /*
631 * If the originating net is not equal to our net; this is routed
632 * We are still charging the sender. Which is right - the driver
633 * free will handle this fairly.
634 */
635 if (ipx->ipx_source.net != intrfc->if_netnum) {
636 /*
637 * Unshare the buffer before modifying the count in
638 * case it's a flood or tcpdump
639 */
640 skb = skb_unshare(skb, GFP_ATOMIC);
641 if (!skb)
642 goto out;
643 if (++ipx->ipx_tctrl > ipxcfg_max_hops)
644 send_to_wire = 0;
645 }
646
647 if (!send_to_wire) {
648 kfree_skb(skb);
649 goto out;
650 }
651
652 /* Determine the appropriate hardware address */
653 addr_len = dev->addr_len;
654 if (!memcmp(ipx_broadcast_node, node, IPX_NODE_LEN))
655 memcpy(dest_node, dev->broadcast, addr_len);
656 else
657 memcpy(dest_node, &(node[IPX_NODE_LEN-addr_len]), addr_len);
658
659 /* Make any compensation for differing physical/data link size */
660 skb = ipxitf_adjust_skbuff(intrfc, skb);
661 if (!skb)
662 goto out;
663
664 /* set up data link and physical headers */
665 skb->dev = dev;
666 skb->protocol = htons(ETH_P_IPX);
667
668 /* Send it out */
669 dl->request(dl, skb, dest_node);
670out:
671 return 0;
672}
673
674static int ipxitf_add_local_route(struct ipx_interface *intrfc)
675{
676 return ipxrtr_add_route(intrfc->if_netnum, intrfc, NULL);
677}
678
679static void ipxitf_discover_netnum(struct ipx_interface *intrfc,
680 struct sk_buff *skb);
681static int ipxitf_pprop(struct ipx_interface *intrfc, struct sk_buff *skb);
682
683static int ipxitf_rcv(struct ipx_interface *intrfc, struct sk_buff *skb)
684{
685 struct ipxhdr *ipx = ipx_hdr(skb);
686 int rc = 0;
687
688 ipxitf_hold(intrfc);
689
690 /* See if we should update our network number */
691 if (!intrfc->if_netnum) /* net number of intrfc not known yet */
981c0ff6
YH
692 ipxitf_discover_netnum(intrfc, skb);
693
1da177e4
LT
694 IPX_SKB_CB(skb)->last_hop.index = -1;
695 if (ipx->ipx_type == IPX_TYPE_PPROP) {
696 rc = ipxitf_pprop(intrfc, skb);
697 if (rc)
698 goto out_free_skb;
699 }
700
701 /* local processing follows */
702 if (!IPX_SKB_CB(skb)->ipx_dest_net)
703 IPX_SKB_CB(skb)->ipx_dest_net = intrfc->if_netnum;
704 if (!IPX_SKB_CB(skb)->ipx_source_net)
705 IPX_SKB_CB(skb)->ipx_source_net = intrfc->if_netnum;
706
707 /* it doesn't make sense to route a pprop packet, there's no meaning
708 * in the ipx_dest_net for such packets */
709 if (ipx->ipx_type != IPX_TYPE_PPROP &&
710 intrfc->if_netnum != IPX_SKB_CB(skb)->ipx_dest_net) {
711 /* We only route point-to-point packets. */
712 if (skb->pkt_type == PACKET_HOST) {
713 skb = skb_unshare(skb, GFP_ATOMIC);
714 if (skb)
715 rc = ipxrtr_route_skb(skb);
716 goto out_intrfc;
717 }
718
719 goto out_free_skb;
720 }
721
722 /* see if we should keep it */
723 if (!memcmp(ipx_broadcast_node, ipx->ipx_dest.node, IPX_NODE_LEN) ||
724 !memcmp(intrfc->if_node, ipx->ipx_dest.node, IPX_NODE_LEN)) {
725 rc = ipxitf_demux_socket(intrfc, skb, 0);
726 goto out_intrfc;
727 }
728
729 /* we couldn't pawn it off so unload it */
730out_free_skb:
731 kfree_skb(skb);
732out_intrfc:
733 ipxitf_put(intrfc);
734 return rc;
735}
736
737static void ipxitf_discover_netnum(struct ipx_interface *intrfc,
738 struct sk_buff *skb)
981c0ff6 739{
1da177e4
LT
740 const struct ipx_cb *cb = IPX_SKB_CB(skb);
741
742 /* see if this is an intra packet: source_net == dest_net */
743 if (cb->ipx_source_net == cb->ipx_dest_net && cb->ipx_source_net) {
744 struct ipx_interface *i =
745 ipxitf_find_using_net(cb->ipx_source_net);
746 /* NB: NetWare servers lie about their hop count so we
747 * dropped the test based on it. This is the best way
748 * to determine this is a 0 hop count packet. */
749 if (!i) {
750 intrfc->if_netnum = cb->ipx_source_net;
751 ipxitf_add_local_route(intrfc);
752 } else {
753 printk(KERN_WARNING "IPX: Network number collision "
754 "%lx\n %s %s and %s %s\n",
4833ed09 755 (unsigned long) ntohl(cb->ipx_source_net),
1da177e4
LT
756 ipx_device_name(i),
757 ipx_frame_name(i->if_dlink_type),
758 ipx_device_name(intrfc),
759 ipx_frame_name(intrfc->if_dlink_type));
760 ipxitf_put(i);
761 }
762 }
763}
764
765/**
766 * ipxitf_pprop - Process packet propagation IPX packet type 0x14, used for
767 * NetBIOS broadcasts
768 * @intrfc: IPX interface receiving this packet
769 * @skb: Received packet
770 *
771 * Checks if packet is valid: if its more than %IPX_MAX_PPROP_HOPS hops or if it
772 * is smaller than a IPX header + the room for %IPX_MAX_PPROP_HOPS hops we drop
773 * it, not even processing it locally, if it has exact %IPX_MAX_PPROP_HOPS we
774 * don't broadcast it, but process it locally. See chapter 5 of Novell's "IPX
775 * RIP and SAP Router Specification", Part Number 107-000029-001.
981c0ff6 776 *
1da177e4
LT
777 * If it is valid, check if we have pprop broadcasting enabled by the user,
778 * if not, just return zero for local processing.
779 *
780 * If it is enabled check the packet and don't broadcast it if we have already
781 * seen this packet.
782 *
783 * Broadcast: send it to the interfaces that aren't on the packet visited nets
784 * array, just after the IPX header.
785 *
786 * Returns -EINVAL for invalid packets, so that the calling function drops
787 * the packet without local processing. 0 if packet is to be locally processed.
788 */
789static int ipxitf_pprop(struct ipx_interface *intrfc, struct sk_buff *skb)
790{
791 struct ipxhdr *ipx = ipx_hdr(skb);
792 int i, rc = -EINVAL;
793 struct ipx_interface *ifcs;
794 char *c;
4833ed09 795 __be32 *l;
1da177e4
LT
796
797 /* Illegal packet - too many hops or too short */
798 /* We decide to throw it away: no broadcasting, no local processing.
799 * NetBIOS unaware implementations route them as normal packets -
800 * tctrl <= 15, any data payload... */
801 if (IPX_SKB_CB(skb)->ipx_tctrl > IPX_MAX_PPROP_HOPS ||
802 ntohs(ipx->ipx_pktsize) < sizeof(struct ipxhdr) +
981c0ff6 803 IPX_MAX_PPROP_HOPS * sizeof(u32))
1da177e4
LT
804 goto out;
805 /* are we broadcasting this damn thing? */
806 rc = 0;
807 if (!sysctl_ipx_pprop_broadcasting)
808 goto out;
809 /* We do broadcast packet on the IPX_MAX_PPROP_HOPS hop, but we
810 * process it locally. All previous hops broadcasted it, and process it
811 * locally. */
812 if (IPX_SKB_CB(skb)->ipx_tctrl == IPX_MAX_PPROP_HOPS)
813 goto out;
981c0ff6 814
1da177e4 815 c = ((u8 *) ipx) + sizeof(struct ipxhdr);
4833ed09 816 l = (__be32 *) c;
1da177e4
LT
817
818 /* Don't broadcast packet if already seen this net */
819 for (i = 0; i < IPX_SKB_CB(skb)->ipx_tctrl; i++)
820 if (*l++ == intrfc->if_netnum)
821 goto out;
822
823 /* < IPX_MAX_PPROP_HOPS hops && input interface not in list. Save the
824 * position where we will insert recvd netnum into list, later on,
825 * in ipxitf_send */
826 IPX_SKB_CB(skb)->last_hop.index = i;
827 IPX_SKB_CB(skb)->last_hop.netnum = intrfc->if_netnum;
828 /* xmit on all other interfaces... */
829 spin_lock_bh(&ipx_interfaces_lock);
830 list_for_each_entry(ifcs, &ipx_interfaces, node) {
831 /* Except unconfigured interfaces */
832 if (!ifcs->if_netnum)
833 continue;
981c0ff6 834
1da177e4
LT
835 /* That aren't in the list */
836 if (ifcs == intrfc)
837 continue;
4833ed09 838 l = (__be32 *) c;
1da177e4
LT
839 /* don't consider the last entry in the packet list,
840 * it is our netnum, and it is not there yet */
841 for (i = 0; i < IPX_SKB_CB(skb)->ipx_tctrl; i++)
842 if (ifcs->if_netnum == *l++)
843 break;
844 if (i == IPX_SKB_CB(skb)->ipx_tctrl) {
845 struct sk_buff *s = skb_copy(skb, GFP_ATOMIC);
846
847 if (s) {
848 IPX_SKB_CB(s)->ipx_dest_net = ifcs->if_netnum;
849 ipxrtr_route_skb(s);
850 }
851 }
852 }
853 spin_unlock_bh(&ipx_interfaces_lock);
854out:
855 return rc;
856}
857
858static void ipxitf_insert(struct ipx_interface *intrfc)
859{
860 spin_lock_bh(&ipx_interfaces_lock);
861 list_add_tail(&intrfc->node, &ipx_interfaces);
862 spin_unlock_bh(&ipx_interfaces_lock);
863
864 if (ipxcfg_auto_select_primary && !ipx_primary_net)
865 ipx_primary_net = intrfc;
866}
867
4833ed09
AV
868static struct ipx_interface *ipxitf_alloc(struct net_device *dev, __be32 netnum,
869 __be16 dlink_type,
1da177e4
LT
870 struct datalink_proto *dlink,
871 unsigned char internal,
872 int ipx_offset)
873{
874 struct ipx_interface *intrfc = kmalloc(sizeof(*intrfc), GFP_ATOMIC);
875
876 if (intrfc) {
877 intrfc->if_dev = dev;
878 intrfc->if_netnum = netnum;
879 intrfc->if_dlink_type = dlink_type;
880 intrfc->if_dlink = dlink;
881 intrfc->if_internal = internal;
882 intrfc->if_ipx_offset = ipx_offset;
883 intrfc->if_sknum = IPX_MIN_EPHEMERAL_SOCKET;
884 INIT_HLIST_HEAD(&intrfc->if_sklist);
885 atomic_set(&intrfc->refcnt, 1);
886 spin_lock_init(&intrfc->if_sklist_lock);
887 }
888
889 return intrfc;
890}
891
892static int ipxitf_create_internal(struct ipx_interface_definition *idef)
893{
894 struct ipx_interface *intrfc;
895 int rc = -EEXIST;
896
897 /* Only one primary network allowed */
898 if (ipx_primary_net)
899 goto out;
900
901 /* Must have a valid network number */
902 rc = -EADDRNOTAVAIL;
903 if (!idef->ipx_network)
904 goto out;
905 intrfc = ipxitf_find_using_net(idef->ipx_network);
906 rc = -EADDRINUSE;
907 if (intrfc) {
908 ipxitf_put(intrfc);
909 goto out;
910 }
911 intrfc = ipxitf_alloc(NULL, idef->ipx_network, 0, NULL, 1, 0);
912 rc = -EAGAIN;
913 if (!intrfc)
914 goto out;
915 memcpy((char *)&(intrfc->if_node), idef->ipx_node, IPX_NODE_LEN);
916 ipx_internal_net = ipx_primary_net = intrfc;
917 ipxitf_hold(intrfc);
918 ipxitf_insert(intrfc);
919
920 rc = ipxitf_add_local_route(intrfc);
921 ipxitf_put(intrfc);
922out:
923 return rc;
924}
925
4ac396c0 926static __be16 ipx_map_frame_type(unsigned char type)
1da177e4 927{
4ac396c0 928 __be16 rc = 0;
1da177e4
LT
929
930 switch (type) {
931 case IPX_FRAME_ETHERII: rc = htons(ETH_P_IPX); break;
932 case IPX_FRAME_8022: rc = htons(ETH_P_802_2); break;
933 case IPX_FRAME_SNAP: rc = htons(ETH_P_SNAP); break;
934 case IPX_FRAME_8023: rc = htons(ETH_P_802_3); break;
935 }
936
937 return rc;
938}
939
940static int ipxitf_create(struct ipx_interface_definition *idef)
941{
942 struct net_device *dev;
4833ed09 943 __be16 dlink_type = 0;
1da177e4
LT
944 struct datalink_proto *datalink = NULL;
945 struct ipx_interface *intrfc;
946 int rc;
947
948 if (idef->ipx_special == IPX_INTERNAL) {
949 rc = ipxitf_create_internal(idef);
950 goto out;
951 }
952
953 rc = -EEXIST;
954 if (idef->ipx_special == IPX_PRIMARY && ipx_primary_net)
955 goto out;
956
957 intrfc = ipxitf_find_using_net(idef->ipx_network);
958 rc = -EADDRINUSE;
959 if (idef->ipx_network && intrfc) {
960 ipxitf_put(intrfc);
961 goto out;
962 }
963
964 if (intrfc)
965 ipxitf_put(intrfc);
966
881d966b 967 dev = dev_get_by_name(&init_net, idef->ipx_device);
1da177e4
LT
968 rc = -ENODEV;
969 if (!dev)
970 goto out;
971
972 switch (idef->ipx_dlink_type) {
1da177e4
LT
973 case IPX_FRAME_8022:
974 dlink_type = htons(ETH_P_802_2);
975 datalink = p8022_datalink;
976 break;
977 case IPX_FRAME_ETHERII:
978 if (dev->type != ARPHRD_IEEE802) {
979 dlink_type = htons(ETH_P_IPX);
980 datalink = pEII_datalink;
981 break;
211ed865 982 }
1da177e4
LT
983 /* fall through */
984 case IPX_FRAME_SNAP:
985 dlink_type = htons(ETH_P_SNAP);
986 datalink = pSNAP_datalink;
987 break;
988 case IPX_FRAME_8023:
989 dlink_type = htons(ETH_P_802_3);
990 datalink = p8023_datalink;
991 break;
992 case IPX_FRAME_NONE:
993 default:
994 rc = -EPROTONOSUPPORT;
995 goto out_dev;
996 }
997
998 rc = -ENETDOWN;
999 if (!(dev->flags & IFF_UP))
1000 goto out_dev;
1001
1002 /* Check addresses are suitable */
1003 rc = -EINVAL;
1004 if (dev->addr_len > IPX_NODE_LEN)
1005 goto out_dev;
1006
1007 intrfc = ipxitf_find_using_phys(dev, dlink_type);
1008 if (!intrfc) {
1009 /* Ok now create */
1010 intrfc = ipxitf_alloc(dev, idef->ipx_network, dlink_type,
1011 datalink, 0, dev->hard_header_len +
1012 datalink->header_length);
1013 rc = -EAGAIN;
1014 if (!intrfc)
1015 goto out_dev;
1016 /* Setup primary if necessary */
1017 if (idef->ipx_special == IPX_PRIMARY)
1018 ipx_primary_net = intrfc;
1019 if (!memcmp(idef->ipx_node, "\000\000\000\000\000\000",
1020 IPX_NODE_LEN)) {
1021 memset(intrfc->if_node, 0, IPX_NODE_LEN);
1022 memcpy(intrfc->if_node + IPX_NODE_LEN - dev->addr_len,
1023 dev->dev_addr, dev->addr_len);
1024 } else
1025 memcpy(intrfc->if_node, idef->ipx_node, IPX_NODE_LEN);
1026 ipxitf_hold(intrfc);
1027 ipxitf_insert(intrfc);
1028 }
1029
1030
1031 /* If the network number is known, add a route */
1032 rc = 0;
1033 if (!intrfc->if_netnum)
1034 goto out_intrfc;
1035
1036 rc = ipxitf_add_local_route(intrfc);
1037out_intrfc:
1038 ipxitf_put(intrfc);
1039 goto out;
1040out_dev:
1041 dev_put(dev);
1042out:
1043 return rc;
1044}
1045
1046static int ipxitf_delete(struct ipx_interface_definition *idef)
1047{
1048 struct net_device *dev = NULL;
4833ed09 1049 __be16 dlink_type = 0;
1da177e4
LT
1050 struct ipx_interface *intrfc;
1051 int rc = 0;
1052
1053 spin_lock_bh(&ipx_interfaces_lock);
1054 if (idef->ipx_special == IPX_INTERNAL) {
1055 if (ipx_internal_net) {
1056 __ipxitf_put(ipx_internal_net);
1057 goto out;
1058 }
1059 rc = -ENOENT;
1060 goto out;
1061 }
1062
1063 dlink_type = ipx_map_frame_type(idef->ipx_dlink_type);
1064 rc = -EPROTONOSUPPORT;
1065 if (!dlink_type)
1066 goto out;
1067
881d966b 1068 dev = __dev_get_by_name(&init_net, idef->ipx_device);
1da177e4
LT
1069 rc = -ENODEV;
1070 if (!dev)
1071 goto out;
1072
1073 intrfc = __ipxitf_find_using_phys(dev, dlink_type);
1074 rc = -EINVAL;
1075 if (!intrfc)
1076 goto out;
1077 __ipxitf_put(intrfc);
1078
1079 rc = 0;
1080out:
1081 spin_unlock_bh(&ipx_interfaces_lock);
1082 return rc;
1083}
1084
1085static struct ipx_interface *ipxitf_auto_create(struct net_device *dev,
4833ed09 1086 __be16 dlink_type)
1da177e4
LT
1087{
1088 struct ipx_interface *intrfc = NULL;
1089 struct datalink_proto *datalink;
1090
1091 if (!dev)
1092 goto out;
1093
1094 /* Check addresses are suitable */
1095 if (dev->addr_len > IPX_NODE_LEN)
1096 goto out;
1097
4833ed09 1098 switch (ntohs(dlink_type)) {
1da177e4
LT
1099 case ETH_P_IPX: datalink = pEII_datalink; break;
1100 case ETH_P_802_2: datalink = p8022_datalink; break;
1101 case ETH_P_SNAP: datalink = pSNAP_datalink; break;
1102 case ETH_P_802_3: datalink = p8023_datalink; break;
1103 default: goto out;
1104 }
1105
1106 intrfc = ipxitf_alloc(dev, 0, dlink_type, datalink, 0,
1107 dev->hard_header_len + datalink->header_length);
1108
1109 if (intrfc) {
1110 memset(intrfc->if_node, 0, IPX_NODE_LEN);
1111 memcpy((char *)&(intrfc->if_node[IPX_NODE_LEN-dev->addr_len]),
1112 dev->dev_addr, dev->addr_len);
1113 spin_lock_init(&intrfc->if_sklist_lock);
1114 atomic_set(&intrfc->refcnt, 1);
1115 ipxitf_insert(intrfc);
1116 dev_hold(dev);
1117 }
1118
1119out:
1120 return intrfc;
1121}
1122
1123static int ipxitf_ioctl(unsigned int cmd, void __user *arg)
1124{
1125 int rc = -EINVAL;
1126 struct ifreq ifr;
1127 int val;
1128
1129 switch (cmd) {
1130 case SIOCSIFADDR: {
1131 struct sockaddr_ipx *sipx;
1132 struct ipx_interface_definition f;
1133
1134 rc = -EFAULT;
1135 if (copy_from_user(&ifr, arg, sizeof(ifr)))
1136 break;
1137 sipx = (struct sockaddr_ipx *)&ifr.ifr_addr;
1138 rc = -EINVAL;
1139 if (sipx->sipx_family != AF_IPX)
1140 break;
1141 f.ipx_network = sipx->sipx_network;
1142 memcpy(f.ipx_device, ifr.ifr_name,
1143 sizeof(f.ipx_device));
1144 memcpy(f.ipx_node, sipx->sipx_node, IPX_NODE_LEN);
1145 f.ipx_dlink_type = sipx->sipx_type;
1146 f.ipx_special = sipx->sipx_special;
1147
1148 if (sipx->sipx_action == IPX_DLTITF)
1149 rc = ipxitf_delete(&f);
1150 else
1151 rc = ipxitf_create(&f);
1152 break;
1153 }
1154 case SIOCGIFADDR: {
1155 struct sockaddr_ipx *sipx;
1156 struct ipx_interface *ipxif;
1157 struct net_device *dev;
1158
1159 rc = -EFAULT;
1160 if (copy_from_user(&ifr, arg, sizeof(ifr)))
1161 break;
1162 sipx = (struct sockaddr_ipx *)&ifr.ifr_addr;
881d966b 1163 dev = __dev_get_by_name(&init_net, ifr.ifr_name);
1da177e4
LT
1164 rc = -ENODEV;
1165 if (!dev)
1166 break;
1167 ipxif = ipxitf_find_using_phys(dev,
1168 ipx_map_frame_type(sipx->sipx_type));
1169 rc = -EADDRNOTAVAIL;
1170 if (!ipxif)
1171 break;
1172
1173 sipx->sipx_family = AF_IPX;
1174 sipx->sipx_network = ipxif->if_netnum;
1175 memcpy(sipx->sipx_node, ipxif->if_node,
1176 sizeof(sipx->sipx_node));
1177 rc = -EFAULT;
1178 if (copy_to_user(arg, &ifr, sizeof(ifr)))
1179 break;
1180 ipxitf_put(ipxif);
1181 rc = 0;
1182 break;
1183 }
981c0ff6 1184 case SIOCAIPXITFCRT:
1da177e4
LT
1185 rc = -EFAULT;
1186 if (get_user(val, (unsigned char __user *) arg))
1187 break;
1188 rc = 0;
1189 ipxcfg_auto_create_interfaces = val;
1190 break;
981c0ff6 1191 case SIOCAIPXPRISLT:
1da177e4
LT
1192 rc = -EFAULT;
1193 if (get_user(val, (unsigned char __user *) arg))
1194 break;
1195 rc = 0;
1196 ipxcfg_set_auto_select(val);
1197 break;
1198 }
1199
1200 return rc;
1201}
1202
1203/*
1204 * Checksum routine for IPX
1205 */
981c0ff6 1206
1da177e4
LT
1207/* Note: We assume ipx_tctrl==0 and htons(length)==ipx_pktsize */
1208/* This functions should *not* mess with packet contents */
1209
02e60370 1210__be16 ipx_cksum(struct ipxhdr *packet, int length)
1da177e4 1211{
981c0ff6
YH
1212 /*
1213 * NOTE: sum is a net byte order quantity, which optimizes the
1da177e4
LT
1214 * loop. This only works on big and little endian machines. (I
1215 * don't know of a machine that isn't.)
1216 */
02e60370
AV
1217 /* handle the first 3 words separately; checksum should be skipped
1218 * and ipx_tctrl masked out */
1219 __u16 *p = (__u16 *)packet;
1220 __u32 sum = p[1] + (p[2] & (__force u16)htons(0x00ff));
1221 __u32 i = (length >> 1) - 3; /* Number of remaining complete words */
1222
1223 /* Loop through them */
1224 p += 3;
1225 while (i--)
1da177e4
LT
1226 sum += *p++;
1227
1228 /* Add on the last part word if it exists */
1229 if (packet->ipx_pktsize & htons(1))
02e60370 1230 sum += (__force u16)htons(0xff00) & *p;
1da177e4
LT
1231
1232 /* Do final fixup */
1233 sum = (sum & 0xffff) + (sum >> 16);
1234
1235 /* It's a pity there's no concept of carry in C */
1236 if (sum >= 0x10000)
1237 sum++;
1238
02e60370
AV
1239 /*
1240 * Leave 0 alone; we don't want 0xffff here. Note that we can't get
1241 * here with 0x10000, so this check is the same as ((__u16)sum)
1242 */
1243 if (sum)
1244 sum = ~sum;
1245
1246 return (__force __be16)sum;
1da177e4
LT
1247}
1248
4833ed09 1249const char *ipx_frame_name(__be16 frame)
1da177e4
LT
1250{
1251 char* rc = "None";
1252
1253 switch (ntohs(frame)) {
1254 case ETH_P_IPX: rc = "EtherII"; break;
1255 case ETH_P_802_2: rc = "802.2"; break;
1256 case ETH_P_SNAP: rc = "SNAP"; break;
1257 case ETH_P_802_3: rc = "802.3"; break;
1da177e4
LT
1258 }
1259
1260 return rc;
1261}
1262
1263const char *ipx_device_name(struct ipx_interface *intrfc)
1264{
1265 return intrfc->if_internal ? "Internal" :
1266 intrfc->if_dev ? intrfc->if_dev->name : "Unknown";
1267}
1268
1269/* Handling for system calls applied via the various interfaces to an IPX
1270 * socket object. */
1271
1272static int ipx_setsockopt(struct socket *sock, int level, int optname,
b7058842 1273 char __user *optval, unsigned int optlen)
1da177e4
LT
1274{
1275 struct sock *sk = sock->sk;
1276 int opt;
1277 int rc = -EINVAL;
1278
b0d0d915 1279 lock_sock(sk);
1da177e4
LT
1280 if (optlen != sizeof(int))
1281 goto out;
1282
1283 rc = -EFAULT;
1284 if (get_user(opt, (unsigned int __user *)optval))
1285 goto out;
1286
1287 rc = -ENOPROTOOPT;
1288 if (!(level == SOL_IPX && optname == IPX_TYPE))
1289 goto out;
1290
1291 ipx_sk(sk)->type = opt;
1292 rc = 0;
1293out:
b0d0d915 1294 release_sock(sk);
1da177e4
LT
1295 return rc;
1296}
1297
1298static int ipx_getsockopt(struct socket *sock, int level, int optname,
1299 char __user *optval, int __user *optlen)
1300{
1301 struct sock *sk = sock->sk;
1302 int val = 0;
1303 int len;
1304 int rc = -ENOPROTOOPT;
1305
b0d0d915 1306 lock_sock(sk);
1da177e4
LT
1307 if (!(level == SOL_IPX && optname == IPX_TYPE))
1308 goto out;
1309
1310 val = ipx_sk(sk)->type;
1311
1312 rc = -EFAULT;
1313 if (get_user(len, optlen))
1314 goto out;
1315
1316 len = min_t(unsigned int, len, sizeof(int));
1317 rc = -EINVAL;
1318 if(len < 0)
1319 goto out;
981c0ff6 1320
1da177e4
LT
1321 rc = -EFAULT;
1322 if (put_user(len, optlen) || copy_to_user(optval, &val, len))
1323 goto out;
1324
1325 rc = 0;
1326out:
b0d0d915 1327 release_sock(sk);
1da177e4
LT
1328 return rc;
1329}
1330
1331static struct proto ipx_proto = {
1332 .name = "IPX",
1333 .owner = THIS_MODULE,
1334 .obj_size = sizeof(struct ipx_sock),
1335};
1336
3f378b68
EP
1337static int ipx_create(struct net *net, struct socket *sock, int protocol,
1338 int kern)
1da177e4
LT
1339{
1340 int rc = -ESOCKTNOSUPPORT;
1341 struct sock *sk;
1342
09ad9bc7 1343 if (!net_eq(net, &init_net))
1b8d7ae4
EB
1344 return -EAFNOSUPPORT;
1345
1da177e4
LT
1346 /*
1347 * SPX support is not anymore in the kernel sources. If you want to
1348 * ressurrect it, completing it and making it understand shared skbs,
1349 * be fully multithreaded, etc, grab the sources in an early 2.5 kernel
1350 * tree.
1351 */
1352 if (sock->type != SOCK_DGRAM)
1353 goto out;
1354
981c0ff6 1355 rc = -ENOMEM;
6257ff21 1356 sk = sk_alloc(net, PF_IPX, GFP_KERNEL, &ipx_proto);
1da177e4
LT
1357 if (!sk)
1358 goto out;
c2b42336
PE
1359
1360 sk_refcnt_debug_inc(sk);
1da177e4
LT
1361 sock_init_data(sock, sk);
1362 sk->sk_no_check = 1; /* Checksum off by default */
1363 sock->ops = &ipx_dgram_ops;
1364 rc = 0;
1365out:
1366 return rc;
1367}
1368
1369static int ipx_release(struct socket *sock)
1370{
1371 struct sock *sk = sock->sk;
1372
1373 if (!sk)
1374 goto out;
1375
b0d0d915 1376 lock_sock(sk);
1da177e4
LT
1377 if (!sock_flag(sk, SOCK_DEAD))
1378 sk->sk_state_change(sk);
1379
1380 sock_set_flag(sk, SOCK_DEAD);
1381 sock->sk = NULL;
c2b42336 1382 sk_refcnt_debug_release(sk);
1da177e4 1383 ipx_destroy_socket(sk);
b0d0d915 1384 release_sock(sk);
674f2115 1385 sock_put(sk);
1da177e4
LT
1386out:
1387 return 0;
1388}
1389
1390/* caller must hold a reference to intrfc */
1391
4833ed09 1392static __be16 ipx_first_free_socketnum(struct ipx_interface *intrfc)
1da177e4
LT
1393{
1394 unsigned short socketNum = intrfc->if_sknum;
1395
1396 spin_lock_bh(&intrfc->if_sklist_lock);
1397
1398 if (socketNum < IPX_MIN_EPHEMERAL_SOCKET)
1399 socketNum = IPX_MIN_EPHEMERAL_SOCKET;
1400
4833ed09 1401 while (__ipxitf_find_socket(intrfc, htons(socketNum)))
1da177e4
LT
1402 if (socketNum > IPX_MAX_EPHEMERAL_SOCKET)
1403 socketNum = IPX_MIN_EPHEMERAL_SOCKET;
1404 else
1405 socketNum++;
1406
1407 spin_unlock_bh(&intrfc->if_sklist_lock);
1408 intrfc->if_sknum = socketNum;
1409
4833ed09 1410 return htons(socketNum);
1da177e4
LT
1411}
1412
83927ba0
AB
1413static int __ipx_bind(struct socket *sock,
1414 struct sockaddr *uaddr, int addr_len)
1da177e4
LT
1415{
1416 struct sock *sk = sock->sk;
1417 struct ipx_sock *ipxs = ipx_sk(sk);
1418 struct ipx_interface *intrfc;
1419 struct sockaddr_ipx *addr = (struct sockaddr_ipx *)uaddr;
1420 int rc = -EINVAL;
1421
1422 if (!sock_flag(sk, SOCK_ZAPPED) || addr_len != sizeof(struct sockaddr_ipx))
1423 goto out;
1424
1425 intrfc = ipxitf_find_using_net(addr->sipx_network);
1426 rc = -EADDRNOTAVAIL;
1427 if (!intrfc)
1428 goto out;
1429
1430 if (!addr->sipx_port) {
1431 addr->sipx_port = ipx_first_free_socketnum(intrfc);
1432 rc = -EINVAL;
1433 if (!addr->sipx_port)
1434 goto out_put;
1435 }
1436
1437 /* protect IPX system stuff like routing/sap */
1438 rc = -EACCES;
1439 if (ntohs(addr->sipx_port) < IPX_MIN_EPHEMERAL_SOCKET &&
1440 !capable(CAP_NET_ADMIN))
1441 goto out_put;
1442
1443 ipxs->port = addr->sipx_port;
1444
1445#ifdef CONFIG_IPX_INTERN
1446 if (intrfc == ipx_internal_net) {
1447 /* The source address is to be set explicitly if the
1448 * socket is to be bound on the internal network. If a
1449 * node number 0 was specified, the default is used.
1450 */
1451
1452 rc = -EINVAL;
1453 if (!memcmp(addr->sipx_node, ipx_broadcast_node, IPX_NODE_LEN))
1454 goto out_put;
1455 if (!memcmp(addr->sipx_node, ipx_this_node, IPX_NODE_LEN))
1456 memcpy(ipxs->node, intrfc->if_node, IPX_NODE_LEN);
1457 else
1458 memcpy(ipxs->node, addr->sipx_node, IPX_NODE_LEN);
1459
1460 rc = -EADDRINUSE;
1461 if (ipxitf_find_internal_socket(intrfc, ipxs->node,
1462 ipxs->port)) {
1463 SOCK_DEBUG(sk,
1464 "IPX: bind failed because port %X in use.\n",
4833ed09 1465 ntohs(addr->sipx_port));
1da177e4
LT
1466 goto out_put;
1467 }
1468 } else {
1469 /* Source addresses are easy. It must be our
1470 * network:node pair for an interface routed to IPX
1471 * with the ipx routing ioctl()
1472 */
1473
1474 memcpy(ipxs->node, intrfc->if_node, IPX_NODE_LEN);
1475
1476 rc = -EADDRINUSE;
1477 if (ipxitf_find_socket(intrfc, addr->sipx_port)) {
1478 SOCK_DEBUG(sk,
1479 "IPX: bind failed because port %X in use.\n",
4833ed09 1480 ntohs(addr->sipx_port));
1da177e4
LT
1481 goto out_put;
1482 }
1483 }
1484
1485#else /* !def CONFIG_IPX_INTERN */
1486
1487 /* Source addresses are easy. It must be our network:node pair for
1488 an interface routed to IPX with the ipx routing ioctl() */
1489
1490 rc = -EADDRINUSE;
1491 if (ipxitf_find_socket(intrfc, addr->sipx_port)) {
1492 SOCK_DEBUG(sk, "IPX: bind failed because port %X in use.\n",
1493 ntohs((int)addr->sipx_port));
1494 goto out_put;
1495 }
1496
1497#endif /* CONFIG_IPX_INTERN */
1498
1499 ipxitf_insert_socket(intrfc, sk);
1500 sock_reset_flag(sk, SOCK_ZAPPED);
1501
1502 rc = 0;
1503out_put:
1504 ipxitf_put(intrfc);
1505out:
1506 return rc;
1507}
1508
83927ba0
AB
1509static int ipx_bind(struct socket *sock, struct sockaddr *uaddr, int addr_len)
1510{
b0d0d915 1511 struct sock *sk = sock->sk;
83927ba0
AB
1512 int rc;
1513
b0d0d915 1514 lock_sock(sk);
83927ba0 1515 rc = __ipx_bind(sock, uaddr, addr_len);
b0d0d915 1516 release_sock(sk);
83927ba0
AB
1517
1518 return rc;
1519}
1520
1da177e4
LT
1521static int ipx_connect(struct socket *sock, struct sockaddr *uaddr,
1522 int addr_len, int flags)
1523{
1524 struct sock *sk = sock->sk;
1525 struct ipx_sock *ipxs = ipx_sk(sk);
1526 struct sockaddr_ipx *addr;
1527 int rc = -EINVAL;
1528 struct ipx_route *rt;
1529
1530 sk->sk_state = TCP_CLOSE;
1531 sock->state = SS_UNCONNECTED;
1532
b0d0d915 1533 lock_sock(sk);
1da177e4
LT
1534 if (addr_len != sizeof(*addr))
1535 goto out;
1536 addr = (struct sockaddr_ipx *)uaddr;
1537
1538 /* put the autobinding in */
1539 if (!ipxs->port) {
1540 struct sockaddr_ipx uaddr;
1541
1542 uaddr.sipx_port = 0;
1543 uaddr.sipx_network = 0;
1544
1545#ifdef CONFIG_IPX_INTERN
1546 rc = -ENETDOWN;
1547 if (!ipxs->intrfc)
1548 goto out; /* Someone zonked the iface */
1549 memcpy(uaddr.sipx_node, ipxs->intrfc->if_node,
1550 IPX_NODE_LEN);
1551#endif /* CONFIG_IPX_INTERN */
1552
83927ba0 1553 rc = __ipx_bind(sock, (struct sockaddr *)&uaddr,
1da177e4
LT
1554 sizeof(struct sockaddr_ipx));
1555 if (rc)
1556 goto out;
1557 }
1558
981c0ff6 1559 /* We can either connect to primary network or somewhere
1da177e4
LT
1560 * we can route to */
1561 rt = ipxrtr_lookup(addr->sipx_network);
1562 rc = -ENETUNREACH;
1563 if (!rt && !(!addr->sipx_network && ipx_primary_net))
1564 goto out;
1565
1566 ipxs->dest_addr.net = addr->sipx_network;
1567 ipxs->dest_addr.sock = addr->sipx_port;
1568 memcpy(ipxs->dest_addr.node, addr->sipx_node, IPX_NODE_LEN);
1569 ipxs->type = addr->sipx_type;
1570
1571 if (sock->type == SOCK_DGRAM) {
1572 sock->state = SS_CONNECTED;
1573 sk->sk_state = TCP_ESTABLISHED;
1574 }
1575
1576 if (rt)
1577 ipxrtr_put(rt);
1578 rc = 0;
1579out:
b0d0d915 1580 release_sock(sk);
1da177e4
LT
1581 return rc;
1582}
1583
1584
1585static int ipx_getname(struct socket *sock, struct sockaddr *uaddr,
1586 int *uaddr_len, int peer)
1587{
1588 struct ipx_address *addr;
1589 struct sockaddr_ipx sipx;
1590 struct sock *sk = sock->sk;
1591 struct ipx_sock *ipxs = ipx_sk(sk);
1592 int rc;
1593
1594 *uaddr_len = sizeof(struct sockaddr_ipx);
1595
b0d0d915 1596 lock_sock(sk);
1da177e4
LT
1597 if (peer) {
1598 rc = -ENOTCONN;
1599 if (sk->sk_state != TCP_ESTABLISHED)
1600 goto out;
1601
1602 addr = &ipxs->dest_addr;
1603 sipx.sipx_network = addr->net;
1604 sipx.sipx_port = addr->sock;
1605 memcpy(sipx.sipx_node, addr->node, IPX_NODE_LEN);
1606 } else {
1607 if (ipxs->intrfc) {
1608 sipx.sipx_network = ipxs->intrfc->if_netnum;
1609#ifdef CONFIG_IPX_INTERN
1610 memcpy(sipx.sipx_node, ipxs->node, IPX_NODE_LEN);
1611#else
1612 memcpy(sipx.sipx_node, ipxs->intrfc->if_node,
1613 IPX_NODE_LEN);
1614#endif /* CONFIG_IPX_INTERN */
1615
1616 } else {
1617 sipx.sipx_network = 0;
1618 memset(sipx.sipx_node, '\0', IPX_NODE_LEN);
1619 }
1620
1621 sipx.sipx_port = ipxs->port;
1622 }
1623
1624 sipx.sipx_family = AF_IPX;
1625 sipx.sipx_type = ipxs->type;
1626 sipx.sipx_zero = 0;
1627 memcpy(uaddr, &sipx, sizeof(sipx));
1628
1629 rc = 0;
1630out:
b0d0d915 1631 release_sock(sk);
1da177e4
LT
1632 return rc;
1633}
1634
f2ccd8fa 1635static int ipx_rcv(struct sk_buff *skb, struct net_device *dev, struct packet_type *pt, struct net_device *orig_dev)
1da177e4
LT
1636{
1637 /* NULL here for pt means the packet was looped back */
1638 struct ipx_interface *intrfc;
1639 struct ipxhdr *ipx;
1640 u16 ipx_pktsize;
1641 int rc = 0;
981c0ff6 1642
721499e8 1643 if (!net_eq(dev_net(dev), &init_net))
e730c155
EB
1644 goto drop;
1645
981c0ff6
YH
1646 /* Not ours */
1647 if (skb->pkt_type == PACKET_OTHERHOST)
1648 goto drop;
1da177e4
LT
1649
1650 if ((skb = skb_share_check(skb, GFP_ATOMIC)) == NULL)
1651 goto out;
1652
7b1ba8de
SH
1653 if (!pskb_may_pull(skb, sizeof(struct ipxhdr)))
1654 goto drop;
1655
fff64257 1656 ipx_pktsize = ntohs(ipx_hdr(skb)->ipx_pktsize);
981c0ff6 1657
1da177e4 1658 /* Too small or invalid header? */
8b5cc5ef
SH
1659 if (ipx_pktsize < sizeof(struct ipxhdr) ||
1660 !pskb_may_pull(skb, ipx_pktsize))
1da177e4 1661 goto drop;
981c0ff6 1662
7b1ba8de 1663 ipx = ipx_hdr(skb);
1da177e4
LT
1664 if (ipx->ipx_checksum != IPX_NO_CHECKSUM &&
1665 ipx->ipx_checksum != ipx_cksum(ipx, ipx_pktsize))
1666 goto drop;
1667
1668 IPX_SKB_CB(skb)->ipx_tctrl = ipx->ipx_tctrl;
1669 IPX_SKB_CB(skb)->ipx_dest_net = ipx->ipx_dest.net;
1670 IPX_SKB_CB(skb)->ipx_source_net = ipx->ipx_source.net;
1671
1672 /* Determine what local ipx endpoint this is */
1673 intrfc = ipxitf_find_using_phys(dev, pt->type);
1674 if (!intrfc) {
1675 if (ipxcfg_auto_create_interfaces &&
4833ed09 1676 IPX_SKB_CB(skb)->ipx_dest_net) {
1da177e4
LT
1677 intrfc = ipxitf_auto_create(dev, pt->type);
1678 if (intrfc)
1679 ipxitf_hold(intrfc);
1680 }
1681
1682 if (!intrfc) /* Not one of ours */
1683 /* or invalid packet for auto creation */
1684 goto drop;
1685 }
1686
1687 rc = ipxitf_rcv(intrfc, skb);
1688 ipxitf_put(intrfc);
1689 goto out;
1690drop:
1691 kfree_skb(skb);
1692out:
1693 return rc;
1694}
1695
1696static int ipx_sendmsg(struct kiocb *iocb, struct socket *sock,
1697 struct msghdr *msg, size_t len)
1698{
1699 struct sock *sk = sock->sk;
1700 struct ipx_sock *ipxs = ipx_sk(sk);
342dfc30 1701 DECLARE_SOCKADDR(struct sockaddr_ipx *, usipx, msg->msg_name);
1da177e4
LT
1702 struct sockaddr_ipx local_sipx;
1703 int rc = -EINVAL;
1704 int flags = msg->msg_flags;
1705
b0d0d915 1706 lock_sock(sk);
1da177e4
LT
1707 /* Socket gets bound below anyway */
1708/* if (sk->sk_zapped)
1709 return -EIO; */ /* Socket not bound */
1710 if (flags & ~(MSG_DONTWAIT|MSG_CMSG_COMPAT))
1711 goto out;
1712
1713 /* Max possible packet size limited by 16 bit pktsize in header */
1714 if (len >= 65535 - sizeof(struct ipxhdr))
1715 goto out;
1716
1717 if (usipx) {
1718 if (!ipxs->port) {
1719 struct sockaddr_ipx uaddr;
1720
1721 uaddr.sipx_port = 0;
1722 uaddr.sipx_network = 0;
1723#ifdef CONFIG_IPX_INTERN
1724 rc = -ENETDOWN;
1725 if (!ipxs->intrfc)
1726 goto out; /* Someone zonked the iface */
1727 memcpy(uaddr.sipx_node, ipxs->intrfc->if_node,
1728 IPX_NODE_LEN);
1729#endif
83927ba0 1730 rc = __ipx_bind(sock, (struct sockaddr *)&uaddr,
1da177e4
LT
1731 sizeof(struct sockaddr_ipx));
1732 if (rc)
1733 goto out;
1734 }
1735
1736 rc = -EINVAL;
1737 if (msg->msg_namelen < sizeof(*usipx) ||
1738 usipx->sipx_family != AF_IPX)
1739 goto out;
1740 } else {
1741 rc = -ENOTCONN;
1742 if (sk->sk_state != TCP_ESTABLISHED)
1743 goto out;
1744
1745 usipx = &local_sipx;
1746 usipx->sipx_family = AF_IPX;
1747 usipx->sipx_type = ipxs->type;
1748 usipx->sipx_port = ipxs->dest_addr.sock;
1749 usipx->sipx_network = ipxs->dest_addr.net;
1750 memcpy(usipx->sipx_node, ipxs->dest_addr.node, IPX_NODE_LEN);
1751 }
1752
1753 rc = ipxrtr_route_packet(sk, usipx, msg->msg_iov, len,
1754 flags & MSG_DONTWAIT);
1755 if (rc >= 0)
1756 rc = len;
1757out:
b0d0d915 1758 release_sock(sk);
1da177e4
LT
1759 return rc;
1760}
1761
1762
1763static int ipx_recvmsg(struct kiocb *iocb, struct socket *sock,
1764 struct msghdr *msg, size_t size, int flags)
1765{
1766 struct sock *sk = sock->sk;
1767 struct ipx_sock *ipxs = ipx_sk(sk);
342dfc30 1768 DECLARE_SOCKADDR(struct sockaddr_ipx *, sipx, msg->msg_name);
1da177e4
LT
1769 struct ipxhdr *ipx = NULL;
1770 struct sk_buff *skb;
1771 int copied, rc;
1772
b0d0d915 1773 lock_sock(sk);
1da177e4
LT
1774 /* put the autobinding in */
1775 if (!ipxs->port) {
1776 struct sockaddr_ipx uaddr;
1777
1778 uaddr.sipx_port = 0;
1779 uaddr.sipx_network = 0;
1780
1781#ifdef CONFIG_IPX_INTERN
1782 rc = -ENETDOWN;
1783 if (!ipxs->intrfc)
1784 goto out; /* Someone zonked the iface */
1785 memcpy(uaddr.sipx_node, ipxs->intrfc->if_node, IPX_NODE_LEN);
1786#endif /* CONFIG_IPX_INTERN */
1787
83927ba0 1788 rc = __ipx_bind(sock, (struct sockaddr *)&uaddr,
1da177e4
LT
1789 sizeof(struct sockaddr_ipx));
1790 if (rc)
1791 goto out;
1792 }
981c0ff6 1793
1da177e4
LT
1794 rc = -ENOTCONN;
1795 if (sock_flag(sk, SOCK_ZAPPED))
1796 goto out;
1797
1798 skb = skb_recv_datagram(sk, flags & ~MSG_DONTWAIT,
1799 flags & MSG_DONTWAIT, &rc);
1800 if (!skb)
1801 goto out;
1802
1803 ipx = ipx_hdr(skb);
1804 copied = ntohs(ipx->ipx_pktsize) - sizeof(struct ipxhdr);
1805 if (copied > size) {
1806 copied = size;
1807 msg->msg_flags |= MSG_TRUNC;
1808 }
1809
1810 rc = skb_copy_datagram_iovec(skb, sizeof(struct ipxhdr), msg->msg_iov,
1811 copied);
1812 if (rc)
1813 goto out_free;
b7aa0bf7
ED
1814 if (skb->tstamp.tv64)
1815 sk->sk_stamp = skb->tstamp;
1da177e4 1816
1da177e4
LT
1817 if (sipx) {
1818 sipx->sipx_family = AF_IPX;
1819 sipx->sipx_port = ipx->ipx_source.sock;
1820 memcpy(sipx->sipx_node, ipx->ipx_source.node, IPX_NODE_LEN);
1821 sipx->sipx_network = IPX_SKB_CB(skb)->ipx_source_net;
1822 sipx->sipx_type = ipx->ipx_type;
1823 sipx->sipx_zero = 0;
f3d33426 1824 msg->msg_namelen = sizeof(*sipx);
1da177e4
LT
1825 }
1826 rc = copied;
1827
1828out_free:
1829 skb_free_datagram(sk, skb);
1830out:
b0d0d915 1831 release_sock(sk);
1da177e4
LT
1832 return rc;
1833}
1834
1835
1836static int ipx_ioctl(struct socket *sock, unsigned int cmd, unsigned long arg)
1837{
1838 int rc = 0;
1839 long amount = 0;
1840 struct sock *sk = sock->sk;
1841 void __user *argp = (void __user *)arg;
1842
b0d0d915 1843 lock_sock(sk);
1da177e4
LT
1844 switch (cmd) {
1845 case TIOCOUTQ:
31e6d363 1846 amount = sk->sk_sndbuf - sk_wmem_alloc_get(sk);
1da177e4
LT
1847 if (amount < 0)
1848 amount = 0;
1849 rc = put_user(amount, (int __user *)argp);
1850 break;
1851 case TIOCINQ: {
1852 struct sk_buff *skb = skb_peek(&sk->sk_receive_queue);
1853 /* These two are safe on a single CPU system as only
1854 * user tasks fiddle here */
1855 if (skb)
1856 amount = skb->len - sizeof(struct ipxhdr);
1857 rc = put_user(amount, (int __user *)argp);
1858 break;
1859 }
1860 case SIOCADDRT:
1861 case SIOCDELRT:
1862 rc = -EPERM;
1863 if (capable(CAP_NET_ADMIN))
1864 rc = ipxrtr_ioctl(cmd, argp);
1865 break;
1866 case SIOCSIFADDR:
1867 case SIOCAIPXITFCRT:
1868 case SIOCAIPXPRISLT:
1869 rc = -EPERM;
1870 if (!capable(CAP_NET_ADMIN))
1871 break;
1872 case SIOCGIFADDR:
1873 rc = ipxitf_ioctl(cmd, argp);
1874 break;
1875 case SIOCIPXCFGDATA:
1876 rc = ipxcfg_get_config_data(argp);
1877 break;
1878 case SIOCIPXNCPCONN:
1879 /*
1880 * This socket wants to take care of the NCP connection
1881 * handed to us in arg.
1882 */
981c0ff6
YH
1883 rc = -EPERM;
1884 if (!capable(CAP_NET_ADMIN))
1da177e4
LT
1885 break;
1886 rc = get_user(ipx_sk(sk)->ipx_ncp_conn,
1887 (const unsigned short __user *)argp);
1888 break;
1889 case SIOCGSTAMP:
32e9072b 1890 rc = sock_get_timestamp(sk, argp);
1da177e4
LT
1891 break;
1892 case SIOCGIFDSTADDR:
1893 case SIOCSIFDSTADDR:
1894 case SIOCGIFBRDADDR:
1895 case SIOCSIFBRDADDR:
1896 case SIOCGIFNETMASK:
1897 case SIOCSIFNETMASK:
1898 rc = -EINVAL;
1899 break;
1900 default:
b5e5fa5e 1901 rc = -ENOIOCTLCMD;
1da177e4
LT
1902 break;
1903 }
b0d0d915 1904 release_sock(sk);
1da177e4
LT
1905
1906 return rc;
1907}
1908
f6c90b71
PV
1909
1910#ifdef CONFIG_COMPAT
1911static int ipx_compat_ioctl(struct socket *sock, unsigned int cmd, unsigned long arg)
1912{
1913 /*
1914 * These 4 commands use same structure on 32bit and 64bit. Rest of IPX
1915 * commands is handled by generic ioctl code. As these commands are
1916 * SIOCPROTOPRIVATE..SIOCPROTOPRIVATE+3, they cannot be handled by generic
1917 * code.
1918 */
1919 switch (cmd) {
1920 case SIOCAIPXITFCRT:
1921 case SIOCAIPXPRISLT:
1922 case SIOCIPXCFGDATA:
1923 case SIOCIPXNCPCONN:
1924 return ipx_ioctl(sock, cmd, arg);
1925 default:
1926 return -ENOIOCTLCMD;
1927 }
1928}
1929#endif
1930
1931
1da177e4
LT
1932/*
1933 * Socket family declarations
1934 */
1935
ec1b4cf7 1936static const struct net_proto_family ipx_family_ops = {
1da177e4
LT
1937 .family = PF_IPX,
1938 .create = ipx_create,
1939 .owner = THIS_MODULE,
1940};
1941
83927ba0 1942static const struct proto_ops ipx_dgram_ops = {
1da177e4
LT
1943 .family = PF_IPX,
1944 .owner = THIS_MODULE,
1945 .release = ipx_release,
1946 .bind = ipx_bind,
1947 .connect = ipx_connect,
1948 .socketpair = sock_no_socketpair,
1949 .accept = sock_no_accept,
1950 .getname = ipx_getname,
b0d0d915 1951 .poll = datagram_poll,
1da177e4 1952 .ioctl = ipx_ioctl,
f6c90b71
PV
1953#ifdef CONFIG_COMPAT
1954 .compat_ioctl = ipx_compat_ioctl,
1955#endif
1da177e4
LT
1956 .listen = sock_no_listen,
1957 .shutdown = sock_no_shutdown, /* FIXME: support shutdown */
1958 .setsockopt = ipx_setsockopt,
1959 .getsockopt = ipx_getsockopt,
1960 .sendmsg = ipx_sendmsg,
1961 .recvmsg = ipx_recvmsg,
1962 .mmap = sock_no_mmap,
1963 .sendpage = sock_no_sendpage,
1964};
1965
7546dd97 1966static struct packet_type ipx_8023_packet_type __read_mostly = {
09640e63 1967 .type = cpu_to_be16(ETH_P_802_3),
1da177e4
LT
1968 .func = ipx_rcv,
1969};
1970
7546dd97 1971static struct packet_type ipx_dix_packet_type __read_mostly = {
09640e63 1972 .type = cpu_to_be16(ETH_P_IPX),
1da177e4
LT
1973 .func = ipx_rcv,
1974};
1975
1976static struct notifier_block ipx_dev_notifier = {
1977 .notifier_call = ipxitf_device_event,
1978};
1979
1980extern struct datalink_proto *make_EII_client(void);
1da177e4 1981extern void destroy_EII_client(struct datalink_proto *);
1da177e4 1982
fa665ccf
SH
1983static const unsigned char ipx_8022_type = 0xE0;
1984static const unsigned char ipx_snap_id[5] = { 0x0, 0x0, 0x0, 0x81, 0x37 };
1985static const char ipx_EII_err_msg[] __initconst =
1da177e4 1986 KERN_CRIT "IPX: Unable to register with Ethernet II\n";
fa665ccf 1987static const char ipx_8023_err_msg[] __initconst =
1da177e4 1988 KERN_CRIT "IPX: Unable to register with 802.3\n";
fa665ccf 1989static const char ipx_llc_err_msg[] __initconst =
1da177e4 1990 KERN_CRIT "IPX: Unable to register with 802.2\n";
fa665ccf 1991static const char ipx_snap_err_msg[] __initconst =
1da177e4
LT
1992 KERN_CRIT "IPX: Unable to register with SNAP\n";
1993
1994static int __init ipx_init(void)
1995{
1996 int rc = proto_register(&ipx_proto, 1);
1997
1998 if (rc != 0)
1999 goto out;
2000
2001 sock_register(&ipx_family_ops);
2002
2003 pEII_datalink = make_EII_client();
2004 if (pEII_datalink)
2005 dev_add_pack(&ipx_dix_packet_type);
2006 else
2007 printk(ipx_EII_err_msg);
2008
2009 p8023_datalink = make_8023_client();
2010 if (p8023_datalink)
2011 dev_add_pack(&ipx_8023_packet_type);
2012 else
2013 printk(ipx_8023_err_msg);
2014
2015 p8022_datalink = register_8022_client(ipx_8022_type, ipx_rcv);
2016 if (!p8022_datalink)
2017 printk(ipx_llc_err_msg);
2018
2019 pSNAP_datalink = register_snap_client(ipx_snap_id, ipx_rcv);
2020 if (!pSNAP_datalink)
2021 printk(ipx_snap_err_msg);
2022
2023 register_netdevice_notifier(&ipx_dev_notifier);
2024 ipx_register_sysctl();
2025 ipx_proc_init();
2026out:
2027 return rc;
2028}
2029
2030static void __exit ipx_proto_finito(void)
2031{
2032 ipx_proc_exit();
2033 ipx_unregister_sysctl();
2034
2035 unregister_netdevice_notifier(&ipx_dev_notifier);
2036
2037 ipxitf_cleanup();
2038
1539b98b
JB
2039 if (pSNAP_datalink) {
2040 unregister_snap_client(pSNAP_datalink);
2041 pSNAP_datalink = NULL;
2042 }
1da177e4 2043
1539b98b
JB
2044 if (p8022_datalink) {
2045 unregister_8022_client(p8022_datalink);
2046 p8022_datalink = NULL;
2047 }
1da177e4
LT
2048
2049 dev_remove_pack(&ipx_8023_packet_type);
1539b98b
JB
2050 if (p8023_datalink) {
2051 destroy_8023_client(p8023_datalink);
2052 p8023_datalink = NULL;
2053 }
1da177e4
LT
2054
2055 dev_remove_pack(&ipx_dix_packet_type);
1539b98b
JB
2056 if (pEII_datalink) {
2057 destroy_EII_client(pEII_datalink);
2058 pEII_datalink = NULL;
2059 }
1da177e4
LT
2060
2061 proto_unregister(&ipx_proto);
2062 sock_unregister(ipx_family_ops.family);
2063}
2064
2065module_init(ipx_init);
2066module_exit(ipx_proto_finito);
2067MODULE_LICENSE("GPL");
2068MODULE_ALIAS_NETPROTO(PF_IPX);