1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31#include <linux/capability.h>
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>
43#include <linux/slab.h>
44#include <linux/skbuff.h>
45#include <linux/smp_lock.h>
46#include <linux/socket.h>
47#include <linux/sockios.h>
48#include <linux/string.h>
49#include <linux/types.h>
50#include <linux/termios.h>
51
52#include <net/ipx.h>
53#include <net/p8022.h>
54#include <net/psnap.h>
55#include <net/sock.h>
56#include <net/tcp_states.h>
57
58#include <asm/uaccess.h>
59
60#ifdef CONFIG_SYSCTL
61extern void ipx_register_sysctl(void);
62extern void ipx_unregister_sysctl(void);
63#else
64#define ipx_register_sysctl()
65#define ipx_unregister_sysctl()
66#endif
67
68
69static unsigned char ipxcfg_max_hops = 16;
70static char ipxcfg_auto_select_primary;
71static char ipxcfg_auto_create_interfaces;
72int sysctl_ipx_pprop_broadcasting = 1;
73
74
75static struct datalink_proto *p8022_datalink;
76static struct datalink_proto *pEII_datalink;
77static struct datalink_proto *p8023_datalink;
78static struct datalink_proto *pSNAP_datalink;
79
80static const struct proto_ops ipx_dgram_ops;
81
82LIST_HEAD(ipx_interfaces);
83DEFINE_SPINLOCK(ipx_interfaces_lock);
84
85struct ipx_interface *ipx_primary_net;
86struct ipx_interface *ipx_internal_net;
87
88extern int ipxrtr_add_route(__be32 network, struct ipx_interface *intrfc,
89 unsigned char *node);
90extern void ipxrtr_del_routes(struct ipx_interface *intrfc);
91extern int ipxrtr_route_packet(struct sock *sk, struct sockaddr_ipx *usipx,
92 struct iovec *iov, size_t len, int noblock);
93extern int ipxrtr_route_skb(struct sk_buff *skb);
94extern struct ipx_route *ipxrtr_lookup(__be32 net);
95extern int ipxrtr_ioctl(unsigned int cmd, void __user *arg);
96
97struct ipx_interface *ipx_interfaces_head(void)
98{
99 struct ipx_interface *rc = NULL;
100
101 if (!list_empty(&ipx_interfaces))
102 rc = list_entry(ipx_interfaces.next,
103 struct ipx_interface, node);
104 return rc;
105}
106
107static void ipxcfg_set_auto_select(char val)
108{
109 ipxcfg_auto_select_primary = val;
110 if (val && !ipx_primary_net)
111 ipx_primary_net = ipx_interfaces_head();
112}
113
114static int ipxcfg_get_config_data(struct ipx_config_data __user *arg)
115{
116 struct ipx_config_data vals;
117
118 vals.ipxcfg_auto_create_interfaces = ipxcfg_auto_create_interfaces;
119 vals.ipxcfg_auto_select_primary = ipxcfg_auto_select_primary;
120
121 return copy_to_user(arg, &vals, sizeof(vals)) ? -EFAULT : 0;
122}
123
124
125
126
127
128
129
130static void ipx_remove_socket(struct sock *sk)
131{
132
133 struct ipx_interface *intrfc = ipx_sk(sk)->intrfc;
134
135 if (!intrfc)
136 goto out;
137
138 ipxitf_hold(intrfc);
139 spin_lock_bh(&intrfc->if_sklist_lock);
140 sk_del_node_init(sk);
141 spin_unlock_bh(&intrfc->if_sklist_lock);
142 ipxitf_put(intrfc);
143out:
144 return;
145}
146
147static void ipx_destroy_socket(struct sock *sk)
148{
149 ipx_remove_socket(sk);
150 skb_queue_purge(&sk->sk_receive_queue);
151 sk_refcnt_debug_dec(sk);
152 sock_put(sk);
153}
154
155
156
157
158
159
160
161
162static void ipxitf_clear_primary_net(void)
163{
164 ipx_primary_net = NULL;
165 if (ipxcfg_auto_select_primary)
166 ipx_primary_net = ipx_interfaces_head();
167}
168
169static struct ipx_interface *__ipxitf_find_using_phys(struct net_device *dev,
170 __be16 datalink)
171{
172 struct ipx_interface *i;
173
174 list_for_each_entry(i, &ipx_interfaces, node)
175 if (i->if_dev == dev && i->if_dlink_type == datalink)
176 goto out;
177 i = NULL;
178out:
179 return i;
180}
181
182static struct ipx_interface *ipxitf_find_using_phys(struct net_device *dev,
183 __be16 datalink)
184{
185 struct ipx_interface *i;
186
187 spin_lock_bh(&ipx_interfaces_lock);
188 i = __ipxitf_find_using_phys(dev, datalink);
189 if (i)
190 ipxitf_hold(i);
191 spin_unlock_bh(&ipx_interfaces_lock);
192 return i;
193}
194
195struct ipx_interface *ipxitf_find_using_net(__be32 net)
196{
197 struct ipx_interface *i;
198
199 spin_lock_bh(&ipx_interfaces_lock);
200 if (net) {
201 list_for_each_entry(i, &ipx_interfaces, node)
202 if (i->if_netnum == net)
203 goto hold;
204 i = NULL;
205 goto unlock;
206 }
207
208 i = ipx_primary_net;
209 if (i)
210hold:
211 ipxitf_hold(i);
212unlock:
213 spin_unlock_bh(&ipx_interfaces_lock);
214 return i;
215}
216
217
218static void ipxitf_insert_socket(struct ipx_interface *intrfc, struct sock *sk)
219{
220 ipxitf_hold(intrfc);
221 spin_lock_bh(&intrfc->if_sklist_lock);
222 ipx_sk(sk)->intrfc = intrfc;
223 sk_add_node(sk, &intrfc->if_sklist);
224 spin_unlock_bh(&intrfc->if_sklist_lock);
225 ipxitf_put(intrfc);
226}
227
228
229static struct sock *__ipxitf_find_socket(struct ipx_interface *intrfc,
230 __be16 port)
231{
232 struct sock *s;
233 struct hlist_node *node;
234
235 sk_for_each(s, node, &intrfc->if_sklist)
236 if (ipx_sk(s)->port == port)
237 goto found;
238 s = NULL;
239found:
240 return s;
241}
242
243
244static struct sock *ipxitf_find_socket(struct ipx_interface *intrfc,
245 __be16 port)
246{
247 struct sock *s;
248
249 spin_lock_bh(&intrfc->if_sklist_lock);
250 s = __ipxitf_find_socket(intrfc, port);
251 if (s)
252 sock_hold(s);
253 spin_unlock_bh(&intrfc->if_sklist_lock);
254
255 return s;
256}
257
258#ifdef CONFIG_IPX_INTERN
259static struct sock *ipxitf_find_internal_socket(struct ipx_interface *intrfc,
260 unsigned char *ipx_node,
261 __be16 port)
262{
263 struct sock *s;
264 struct hlist_node *node;
265
266 ipxitf_hold(intrfc);
267 spin_lock_bh(&intrfc->if_sklist_lock);
268
269 sk_for_each(s, node, &intrfc->if_sklist) {
270 struct ipx_sock *ipxs = ipx_sk(s);
271
272 if (ipxs->port == port &&
273 !memcmp(ipx_node, ipxs->node, IPX_NODE_LEN))
274 goto found;
275 }
276 s = NULL;
277found:
278 spin_unlock_bh(&intrfc->if_sklist_lock);
279 ipxitf_put(intrfc);
280 return s;
281}
282#endif
283
284static void __ipxitf_down(struct ipx_interface *intrfc)
285{
286 struct sock *s;
287 struct hlist_node *node, *t;
288
289
290 ipxrtr_del_routes(intrfc);
291
292 spin_lock_bh(&intrfc->if_sklist_lock);
293
294 sk_for_each_safe(s, node, t, &intrfc->if_sklist) {
295 struct ipx_sock *ipxs = ipx_sk(s);
296
297 s->sk_err = ENOLINK;
298 s->sk_error_report(s);
299 ipxs->intrfc = NULL;
300 ipxs->port = 0;
301 sock_set_flag(s, SOCK_ZAPPED);
302 sk_del_node_init(s);
303 }
304 INIT_HLIST_HEAD(&intrfc->if_sklist);
305 spin_unlock_bh(&intrfc->if_sklist_lock);
306
307
308 list_del(&intrfc->node);
309
310
311 if (intrfc == ipx_primary_net)
312 ipxitf_clear_primary_net();
313 if (intrfc == ipx_internal_net)
314 ipx_internal_net = NULL;
315
316 if (intrfc->if_dev)
317 dev_put(intrfc->if_dev);
318 kfree(intrfc);
319}
320
321void ipxitf_down(struct ipx_interface *intrfc)
322{
323 spin_lock_bh(&ipx_interfaces_lock);
324 __ipxitf_down(intrfc);
325 spin_unlock_bh(&ipx_interfaces_lock);
326}
327
328static __inline__ void __ipxitf_put(struct ipx_interface *intrfc)
329{
330 if (atomic_dec_and_test(&intrfc->refcnt))
331 __ipxitf_down(intrfc);
332}
333
334static int ipxitf_device_event(struct notifier_block *notifier,
335 unsigned long event, void *ptr)
336{
337 struct net_device *dev = ptr;
338 struct ipx_interface *i, *tmp;
339
340 if (!net_eq(dev_net(dev), &init_net))
341 return NOTIFY_DONE;
342
343 if (event != NETDEV_DOWN && event != NETDEV_UP)
344 goto out;
345
346 spin_lock_bh(&ipx_interfaces_lock);
347 list_for_each_entry_safe(i, tmp, &ipx_interfaces, node)
348 if (i->if_dev == dev) {
349 if (event == NETDEV_UP)
350 ipxitf_hold(i);
351 else
352 __ipxitf_put(i);
353 }
354 spin_unlock_bh(&ipx_interfaces_lock);
355out:
356 return NOTIFY_DONE;
357}
358
359
360static __exit void ipxitf_cleanup(void)
361{
362 struct ipx_interface *i, *tmp;
363
364 spin_lock_bh(&ipx_interfaces_lock);
365 list_for_each_entry_safe(i, tmp, &ipx_interfaces, node)
366 __ipxitf_put(i);
367 spin_unlock_bh(&ipx_interfaces_lock);
368}
369
370static void ipxitf_def_skb_handler(struct sock *sock, struct sk_buff *skb)
371{
372 if (sock_queue_rcv_skb(sock, skb) < 0)
373 kfree_skb(skb);
374}
375
376
377
378
379
380
381
382#ifdef CONFIG_IPX_INTERN
383static int ipxitf_demux_socket(struct ipx_interface *intrfc,
384 struct sk_buff *skb, int copy)
385{
386 struct ipxhdr *ipx = ipx_hdr(skb);
387 int is_broadcast = !memcmp(ipx->ipx_dest.node, ipx_broadcast_node,
388 IPX_NODE_LEN);
389 struct sock *s;
390 struct hlist_node *node;
391 int rc;
392
393 spin_lock_bh(&intrfc->if_sklist_lock);
394
395 sk_for_each(s, node, &intrfc->if_sklist) {
396 struct ipx_sock *ipxs = ipx_sk(s);
397
398 if (ipxs->port == ipx->ipx_dest.sock &&
399 (is_broadcast || !memcmp(ipx->ipx_dest.node,
400 ipxs->node, IPX_NODE_LEN))) {
401
402 struct sk_buff *skb1;
403
404 if (copy) {
405 skb1 = skb_clone(skb, GFP_ATOMIC);
406 rc = -ENOMEM;
407 if (!skb1)
408 goto out;
409 } else {
410 skb1 = skb;
411 copy = 1;
412 }
413 ipxitf_def_skb_handler(s, skb1);
414
415
416 if (intrfc != ipx_internal_net)
417 break;
418 }
419 }
420
421
422 if (!copy)
423 kfree_skb(skb);
424
425 rc = 0;
426out:
427 spin_unlock_bh(&intrfc->if_sklist_lock);
428 return rc;
429}
430#else
431static struct sock *ncp_connection_hack(struct ipx_interface *intrfc,
432 struct ipxhdr *ipx)
433{
434
435
436
437
438
439
440
441 struct sock *sk = NULL;
442 int connection = 0;
443 u8 *ncphdr = (u8 *)(ipx + 1);
444
445 if (*ncphdr == 0x22 && *(ncphdr + 1) == 0x22)
446 connection = (((int) *(ncphdr + 5)) << 8) | (int) *(ncphdr + 3);
447 else if (*ncphdr == 0x77 && *(ncphdr + 1) == 0x77)
448 connection = (((int) *(ncphdr + 9)) << 8) | (int) *(ncphdr + 8);
449
450 if (connection) {
451 struct hlist_node *node;
452
453
454
455 spin_lock_bh(&intrfc->if_sklist_lock);
456 sk_for_each(sk, node, &intrfc->if_sklist)
457 if (ipx_sk(sk)->ipx_ncp_conn == connection) {
458 sock_hold(sk);
459 goto found;
460 }
461 sk = NULL;
462 found:
463 spin_unlock_bh(&intrfc->if_sklist_lock);
464 }
465 return sk;
466}
467
468static int ipxitf_demux_socket(struct ipx_interface *intrfc,
469 struct sk_buff *skb, int copy)
470{
471 struct ipxhdr *ipx = ipx_hdr(skb);
472 struct sock *sock1 = NULL, *sock2 = NULL;
473 struct sk_buff *skb1 = NULL, *skb2 = NULL;
474 int rc;
475
476 if (intrfc == ipx_primary_net && ntohs(ipx->ipx_dest.sock) == 0x451)
477 sock1 = ncp_connection_hack(intrfc, ipx);
478 if (!sock1)
479
480 sock1 = ipxitf_find_socket(intrfc, ipx->ipx_dest.sock);
481
482
483
484
485
486
487
488
489
490 if (ipx_primary_net && intrfc != ipx_primary_net) {
491 const int dsock = ntohs(ipx->ipx_dest.sock);
492
493 if (dsock == 0x452 || dsock == 0x453 || dsock == 0x456)
494
495
496
497
498 sock2 = ipxitf_find_socket(ipx_primary_net,
499 ipx->ipx_dest.sock);
500 }
501
502
503
504
505 rc = 0;
506 if (!sock1 && !sock2) {
507 if (!copy)
508 kfree_skb(skb);
509 goto out;
510 }
511
512
513
514
515
516
517
518
519
520 if (copy)
521 skb1 = skb_clone(skb, GFP_ATOMIC);
522 else
523 skb1 = skb;
524
525 rc = -ENOMEM;
526 if (!skb1)
527 goto out_put;
528
529
530 if (sock1 && sock2)
531 skb2 = skb_clone(skb1, GFP_ATOMIC);
532 else
533 skb2 = skb1;
534
535 if (sock1)
536 ipxitf_def_skb_handler(sock1, skb1);
537
538 if (!skb2)
539 goto out_put;
540
541 if (sock2)
542 ipxitf_def_skb_handler(sock2, skb2);
543
544 rc = 0;
545out_put:
546 if (sock1)
547 sock_put(sock1);
548 if (sock2)
549 sock_put(sock2);
550out:
551 return rc;
552}
553#endif
554
555static struct sk_buff *ipxitf_adjust_skbuff(struct ipx_interface *intrfc,
556 struct sk_buff *skb)
557{
558 struct sk_buff *skb2;
559 int in_offset = (unsigned char *)ipx_hdr(skb) - skb->head;
560 int out_offset = intrfc->if_ipx_offset;
561 int len;
562
563
564 if (in_offset >= out_offset)
565 return skb;
566
567
568 len = skb->len + out_offset;
569 skb2 = alloc_skb(len, GFP_ATOMIC);
570 if (skb2) {
571 skb_reserve(skb2, out_offset);
572 skb_reset_network_header(skb2);
573 skb_reset_transport_header(skb2);
574 skb_put(skb2, skb->len);
575 memcpy(ipx_hdr(skb2), ipx_hdr(skb), skb->len);
576 memcpy(skb2->cb, skb->cb, sizeof(skb->cb));
577 }
578 kfree_skb(skb);
579 return skb2;
580}
581
582
583int ipxitf_send(struct ipx_interface *intrfc, struct sk_buff *skb, char *node)
584{
585 struct ipxhdr *ipx = ipx_hdr(skb);
586 struct net_device *dev = intrfc->if_dev;
587 struct datalink_proto *dl = intrfc->if_dlink;
588 char dest_node[IPX_NODE_LEN];
589 int send_to_wire = 1;
590 int addr_len;
591
592 ipx->ipx_tctrl = IPX_SKB_CB(skb)->ipx_tctrl;
593 ipx->ipx_dest.net = IPX_SKB_CB(skb)->ipx_dest_net;
594 ipx->ipx_source.net = IPX_SKB_CB(skb)->ipx_source_net;
595
596
597 if (IPX_SKB_CB(skb)->last_hop.index >= 0) {
598 __be32 *last_hop = (__be32 *)(((u8 *) skb->data) +
599 sizeof(struct ipxhdr) +
600 IPX_SKB_CB(skb)->last_hop.index *
601 sizeof(__be32));
602 *last_hop = IPX_SKB_CB(skb)->last_hop.netnum;
603 IPX_SKB_CB(skb)->last_hop.index = -1;
604 }
605
606
607
608
609
610
611 if (!dl || !dev || dev->flags & IFF_LOOPBACK)
612 send_to_wire = 0;
613
614
615
616
617
618
619
620
621 if (ipx->ipx_dest.net == intrfc->if_netnum) {
622
623
624
625
626 if (intrfc == ipx_internal_net ||
627 !memcmp(intrfc->if_node, node, IPX_NODE_LEN)) {
628
629 skb_orphan(skb);
630
631
632 return ipxitf_demux_socket(intrfc, skb, 0);
633 }
634
635
636 if (!memcmp(ipx_broadcast_node, node, IPX_NODE_LEN)) {
637 if (!send_to_wire)
638 skb_orphan(skb);
639 ipxitf_demux_socket(intrfc, skb, send_to_wire);
640 if (!send_to_wire)
641 goto out;
642 }
643 }
644
645
646
647
648
649
650 if (ipx->ipx_source.net != intrfc->if_netnum) {
651
652
653
654
655 skb = skb_unshare(skb, GFP_ATOMIC);
656 if (!skb)
657 goto out;
658 if (++ipx->ipx_tctrl > ipxcfg_max_hops)
659 send_to_wire = 0;
660 }
661
662 if (!send_to_wire) {
663 kfree_skb(skb);
664 goto out;
665 }
666
667
668 addr_len = dev->addr_len;
669 if (!memcmp(ipx_broadcast_node, node, IPX_NODE_LEN))
670 memcpy(dest_node, dev->broadcast, addr_len);
671 else
672 memcpy(dest_node, &(node[IPX_NODE_LEN-addr_len]), addr_len);
673
674
675 skb = ipxitf_adjust_skbuff(intrfc, skb);
676 if (!skb)
677 goto out;
678
679
680 skb->dev = dev;
681 skb->protocol = htons(ETH_P_IPX);
682
683
684 dl->request(dl, skb, dest_node);
685out:
686 return 0;
687}
688
689static int ipxitf_add_local_route(struct ipx_interface *intrfc)
690{
691 return ipxrtr_add_route(intrfc->if_netnum, intrfc, NULL);
692}
693
694static void ipxitf_discover_netnum(struct ipx_interface *intrfc,
695 struct sk_buff *skb);
696static int ipxitf_pprop(struct ipx_interface *intrfc, struct sk_buff *skb);
697
698static int ipxitf_rcv(struct ipx_interface *intrfc, struct sk_buff *skb)
699{
700 struct ipxhdr *ipx = ipx_hdr(skb);
701 int rc = 0;
702
703 ipxitf_hold(intrfc);
704
705
706 if (!intrfc->if_netnum)
707 ipxitf_discover_netnum(intrfc, skb);
708
709 IPX_SKB_CB(skb)->last_hop.index = -1;
710 if (ipx->ipx_type == IPX_TYPE_PPROP) {
711 rc = ipxitf_pprop(intrfc, skb);
712 if (rc)
713 goto out_free_skb;
714 }
715
716
717 if (!IPX_SKB_CB(skb)->ipx_dest_net)
718 IPX_SKB_CB(skb)->ipx_dest_net = intrfc->if_netnum;
719 if (!IPX_SKB_CB(skb)->ipx_source_net)
720 IPX_SKB_CB(skb)->ipx_source_net = intrfc->if_netnum;
721
722
723
724 if (ipx->ipx_type != IPX_TYPE_PPROP &&
725 intrfc->if_netnum != IPX_SKB_CB(skb)->ipx_dest_net) {
726
727 if (skb->pkt_type == PACKET_HOST) {
728 skb = skb_unshare(skb, GFP_ATOMIC);
729 if (skb)
730 rc = ipxrtr_route_skb(skb);
731 goto out_intrfc;
732 }
733
734 goto out_free_skb;
735 }
736
737
738 if (!memcmp(ipx_broadcast_node, ipx->ipx_dest.node, IPX_NODE_LEN) ||
739 !memcmp(intrfc->if_node, ipx->ipx_dest.node, IPX_NODE_LEN)) {
740 rc = ipxitf_demux_socket(intrfc, skb, 0);
741 goto out_intrfc;
742 }
743
744
745out_free_skb:
746 kfree_skb(skb);
747out_intrfc:
748 ipxitf_put(intrfc);
749 return rc;
750}
751
752static void ipxitf_discover_netnum(struct ipx_interface *intrfc,
753 struct sk_buff *skb)
754{
755 const struct ipx_cb *cb = IPX_SKB_CB(skb);
756
757
758 if (cb->ipx_source_net == cb->ipx_dest_net && cb->ipx_source_net) {
759 struct ipx_interface *i =
760 ipxitf_find_using_net(cb->ipx_source_net);
761
762
763
764 if (!i) {
765 intrfc->if_netnum = cb->ipx_source_net;
766 ipxitf_add_local_route(intrfc);
767 } else {
768 printk(KERN_WARNING "IPX: Network number collision "
769 "%lx\n %s %s and %s %s\n",
770 (unsigned long) ntohl(cb->ipx_source_net),
771 ipx_device_name(i),
772 ipx_frame_name(i->if_dlink_type),
773 ipx_device_name(intrfc),
774 ipx_frame_name(intrfc->if_dlink_type));
775 ipxitf_put(i);
776 }
777 }
778}
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804static int ipxitf_pprop(struct ipx_interface *intrfc, struct sk_buff *skb)
805{
806 struct ipxhdr *ipx = ipx_hdr(skb);
807 int i, rc = -EINVAL;
808 struct ipx_interface *ifcs;
809 char *c;
810 __be32 *l;
811
812
813
814
815
816 if (IPX_SKB_CB(skb)->ipx_tctrl > IPX_MAX_PPROP_HOPS ||
817 ntohs(ipx->ipx_pktsize) < sizeof(struct ipxhdr) +
818 IPX_MAX_PPROP_HOPS * sizeof(u32))
819 goto out;
820
821 rc = 0;
822 if (!sysctl_ipx_pprop_broadcasting)
823 goto out;
824
825
826
827 if (IPX_SKB_CB(skb)->ipx_tctrl == IPX_MAX_PPROP_HOPS)
828 goto out;
829
830 c = ((u8 *) ipx) + sizeof(struct ipxhdr);
831 l = (__be32 *) c;
832
833
834 for (i = 0; i < IPX_SKB_CB(skb)->ipx_tctrl; i++)
835 if (*l++ == intrfc->if_netnum)
836 goto out;
837
838
839
840
841 IPX_SKB_CB(skb)->last_hop.index = i;
842 IPX_SKB_CB(skb)->last_hop.netnum = intrfc->if_netnum;
843
844 spin_lock_bh(&ipx_interfaces_lock);
845 list_for_each_entry(ifcs, &ipx_interfaces, node) {
846
847 if (!ifcs->if_netnum)
848 continue;
849
850
851 if (ifcs == intrfc)
852 continue;
853 l = (__be32 *) c;
854
855
856 for (i = 0; i < IPX_SKB_CB(skb)->ipx_tctrl; i++)
857 if (ifcs->if_netnum == *l++)
858 break;
859 if (i == IPX_SKB_CB(skb)->ipx_tctrl) {
860 struct sk_buff *s = skb_copy(skb, GFP_ATOMIC);
861
862 if (s) {
863 IPX_SKB_CB(s)->ipx_dest_net = ifcs->if_netnum;
864 ipxrtr_route_skb(s);
865 }
866 }
867 }
868 spin_unlock_bh(&ipx_interfaces_lock);
869out:
870 return rc;
871}
872
873static void ipxitf_insert(struct ipx_interface *intrfc)
874{
875 spin_lock_bh(&ipx_interfaces_lock);
876 list_add_tail(&intrfc->node, &ipx_interfaces);
877 spin_unlock_bh(&ipx_interfaces_lock);
878
879 if (ipxcfg_auto_select_primary && !ipx_primary_net)
880 ipx_primary_net = intrfc;
881}
882
883static struct ipx_interface *ipxitf_alloc(struct net_device *dev, __be32 netnum,
884 __be16 dlink_type,
885 struct datalink_proto *dlink,
886 unsigned char internal,
887 int ipx_offset)
888{
889 struct ipx_interface *intrfc = kmalloc(sizeof(*intrfc), GFP_ATOMIC);
890
891 if (intrfc) {
892 intrfc->if_dev = dev;
893 intrfc->if_netnum = netnum;
894 intrfc->if_dlink_type = dlink_type;
895 intrfc->if_dlink = dlink;
896 intrfc->if_internal = internal;
897 intrfc->if_ipx_offset = ipx_offset;
898 intrfc->if_sknum = IPX_MIN_EPHEMERAL_SOCKET;
899 INIT_HLIST_HEAD(&intrfc->if_sklist);
900 atomic_set(&intrfc->refcnt, 1);
901 spin_lock_init(&intrfc->if_sklist_lock);
902 }
903
904 return intrfc;
905}
906
907static int ipxitf_create_internal(struct ipx_interface_definition *idef)
908{
909 struct ipx_interface *intrfc;
910 int rc = -EEXIST;
911
912
913 if (ipx_primary_net)
914 goto out;
915
916
917 rc = -EADDRNOTAVAIL;
918 if (!idef->ipx_network)
919 goto out;
920 intrfc = ipxitf_find_using_net(idef->ipx_network);
921 rc = -EADDRINUSE;
922 if (intrfc) {
923 ipxitf_put(intrfc);
924 goto out;
925 }
926 intrfc = ipxitf_alloc(NULL, idef->ipx_network, 0, NULL, 1, 0);
927 rc = -EAGAIN;
928 if (!intrfc)
929 goto out;
930 memcpy((char *)&(intrfc->if_node), idef->ipx_node, IPX_NODE_LEN);
931 ipx_internal_net = ipx_primary_net = intrfc;
932 ipxitf_hold(intrfc);
933 ipxitf_insert(intrfc);
934
935 rc = ipxitf_add_local_route(intrfc);
936 ipxitf_put(intrfc);
937out:
938 return rc;
939}
940
941static __be16 ipx_map_frame_type(unsigned char type)
942{
943 __be16 rc = 0;
944
945 switch (type) {
946 case IPX_FRAME_ETHERII: rc = htons(ETH_P_IPX); break;
947 case IPX_FRAME_8022: rc = htons(ETH_P_802_2); break;
948 case IPX_FRAME_SNAP: rc = htons(ETH_P_SNAP); break;
949 case IPX_FRAME_8023: rc = htons(ETH_P_802_3); break;
950 }
951
952 return rc;
953}
954
955static int ipxitf_create(struct ipx_interface_definition *idef)
956{
957 struct net_device *dev;
958 __be16 dlink_type = 0;
959 struct datalink_proto *datalink = NULL;
960 struct ipx_interface *intrfc;
961 int rc;
962
963 if (idef->ipx_special == IPX_INTERNAL) {
964 rc = ipxitf_create_internal(idef);
965 goto out;
966 }
967
968 rc = -EEXIST;
969 if (idef->ipx_special == IPX_PRIMARY && ipx_primary_net)
970 goto out;
971
972 intrfc = ipxitf_find_using_net(idef->ipx_network);
973 rc = -EADDRINUSE;
974 if (idef->ipx_network && intrfc) {
975 ipxitf_put(intrfc);
976 goto out;
977 }
978
979 if (intrfc)
980 ipxitf_put(intrfc);
981
982 dev = dev_get_by_name(&init_net, idef->ipx_device);
983 rc = -ENODEV;
984 if (!dev)
985 goto out;
986
987 switch (idef->ipx_dlink_type) {
988 case IPX_FRAME_TR_8022:
989 printk(KERN_WARNING "IPX frame type 802.2TR is "
990 "obsolete Use 802.2 instead.\n");
991
992 case IPX_FRAME_8022:
993 dlink_type = htons(ETH_P_802_2);
994 datalink = p8022_datalink;
995 break;
996 case IPX_FRAME_ETHERII:
997 if (dev->type != ARPHRD_IEEE802) {
998 dlink_type = htons(ETH_P_IPX);
999 datalink = pEII_datalink;
1000 break;
1001 } else
1002 printk(KERN_WARNING "IPX frame type EtherII over "
1003 "token-ring is obsolete. Use SNAP "
1004 "instead.\n");
1005
1006 case IPX_FRAME_SNAP:
1007 dlink_type = htons(ETH_P_SNAP);
1008 datalink = pSNAP_datalink;
1009 break;
1010 case IPX_FRAME_8023:
1011 dlink_type = htons(ETH_P_802_3);
1012 datalink = p8023_datalink;
1013 break;
1014 case IPX_FRAME_NONE:
1015 default:
1016 rc = -EPROTONOSUPPORT;
1017 goto out_dev;
1018 }
1019
1020 rc = -ENETDOWN;
1021 if (!(dev->flags & IFF_UP))
1022 goto out_dev;
1023
1024
1025 rc = -EINVAL;
1026 if (dev->addr_len > IPX_NODE_LEN)
1027 goto out_dev;
1028
1029 intrfc = ipxitf_find_using_phys(dev, dlink_type);
1030 if (!intrfc) {
1031
1032 intrfc = ipxitf_alloc(dev, idef->ipx_network, dlink_type,
1033 datalink, 0, dev->hard_header_len +
1034 datalink->header_length);
1035 rc = -EAGAIN;
1036 if (!intrfc)
1037 goto out_dev;
1038
1039 if (idef->ipx_special == IPX_PRIMARY)
1040 ipx_primary_net = intrfc;
1041 if (!memcmp(idef->ipx_node, "\000\000\000\000\000\000",
1042 IPX_NODE_LEN)) {
1043 memset(intrfc->if_node, 0, IPX_NODE_LEN);
1044 memcpy(intrfc->if_node + IPX_NODE_LEN - dev->addr_len,
1045 dev->dev_addr, dev->addr_len);
1046 } else
1047 memcpy(intrfc->if_node, idef->ipx_node, IPX_NODE_LEN);
1048 ipxitf_hold(intrfc);
1049 ipxitf_insert(intrfc);
1050 }
1051
1052
1053
1054 rc = 0;
1055 if (!intrfc->if_netnum)
1056 goto out_intrfc;
1057
1058 rc = ipxitf_add_local_route(intrfc);
1059out_intrfc:
1060 ipxitf_put(intrfc);
1061 goto out;
1062out_dev:
1063 dev_put(dev);
1064out:
1065 return rc;
1066}
1067
1068static int ipxitf_delete(struct ipx_interface_definition *idef)
1069{
1070 struct net_device *dev = NULL;
1071 __be16 dlink_type = 0;
1072 struct ipx_interface *intrfc;
1073 int rc = 0;
1074
1075 spin_lock_bh(&ipx_interfaces_lock);
1076 if (idef->ipx_special == IPX_INTERNAL) {
1077 if (ipx_internal_net) {
1078 __ipxitf_put(ipx_internal_net);
1079 goto out;
1080 }
1081 rc = -ENOENT;
1082 goto out;
1083 }
1084
1085 dlink_type = ipx_map_frame_type(idef->ipx_dlink_type);
1086 rc = -EPROTONOSUPPORT;
1087 if (!dlink_type)
1088 goto out;
1089
1090 dev = __dev_get_by_name(&init_net, idef->ipx_device);
1091 rc = -ENODEV;
1092 if (!dev)
1093 goto out;
1094
1095 intrfc = __ipxitf_find_using_phys(dev, dlink_type);
1096 rc = -EINVAL;
1097 if (!intrfc)
1098 goto out;
1099 __ipxitf_put(intrfc);
1100
1101 rc = 0;
1102out:
1103 spin_unlock_bh(&ipx_interfaces_lock);
1104 return rc;
1105}
1106
1107static struct ipx_interface *ipxitf_auto_create(struct net_device *dev,
1108 __be16 dlink_type)
1109{
1110 struct ipx_interface *intrfc = NULL;
1111 struct datalink_proto *datalink;
1112
1113 if (!dev)
1114 goto out;
1115
1116
1117 if (dev->addr_len > IPX_NODE_LEN)
1118 goto out;
1119
1120 switch (ntohs(dlink_type)) {
1121 case ETH_P_IPX: datalink = pEII_datalink; break;
1122 case ETH_P_802_2: datalink = p8022_datalink; break;
1123 case ETH_P_SNAP: datalink = pSNAP_datalink; break;
1124 case ETH_P_802_3: datalink = p8023_datalink; break;
1125 default: goto out;
1126 }
1127
1128 intrfc = ipxitf_alloc(dev, 0, dlink_type, datalink, 0,
1129 dev->hard_header_len + datalink->header_length);
1130
1131 if (intrfc) {
1132 memset(intrfc->if_node, 0, IPX_NODE_LEN);
1133 memcpy((char *)&(intrfc->if_node[IPX_NODE_LEN-dev->addr_len]),
1134 dev->dev_addr, dev->addr_len);
1135 spin_lock_init(&intrfc->if_sklist_lock);
1136 atomic_set(&intrfc->refcnt, 1);
1137 ipxitf_insert(intrfc);
1138 dev_hold(dev);
1139 }
1140
1141out:
1142 return intrfc;
1143}
1144
1145static int ipxitf_ioctl(unsigned int cmd, void __user *arg)
1146{
1147 int rc = -EINVAL;
1148 struct ifreq ifr;
1149 int val;
1150
1151 switch (cmd) {
1152 case SIOCSIFADDR: {
1153 struct sockaddr_ipx *sipx;
1154 struct ipx_interface_definition f;
1155
1156 rc = -EFAULT;
1157 if (copy_from_user(&ifr, arg, sizeof(ifr)))
1158 break;
1159 sipx = (struct sockaddr_ipx *)&ifr.ifr_addr;
1160 rc = -EINVAL;
1161 if (sipx->sipx_family != AF_IPX)
1162 break;
1163 f.ipx_network = sipx->sipx_network;
1164 memcpy(f.ipx_device, ifr.ifr_name,
1165 sizeof(f.ipx_device));
1166 memcpy(f.ipx_node, sipx->sipx_node, IPX_NODE_LEN);
1167 f.ipx_dlink_type = sipx->sipx_type;
1168 f.ipx_special = sipx->sipx_special;
1169
1170 if (sipx->sipx_action == IPX_DLTITF)
1171 rc = ipxitf_delete(&f);
1172 else
1173 rc = ipxitf_create(&f);
1174 break;
1175 }
1176 case SIOCGIFADDR: {
1177 struct sockaddr_ipx *sipx;
1178 struct ipx_interface *ipxif;
1179 struct net_device *dev;
1180
1181 rc = -EFAULT;
1182 if (copy_from_user(&ifr, arg, sizeof(ifr)))
1183 break;
1184 sipx = (struct sockaddr_ipx *)&ifr.ifr_addr;
1185 dev = __dev_get_by_name(&init_net, ifr.ifr_name);
1186 rc = -ENODEV;
1187 if (!dev)
1188 break;
1189 ipxif = ipxitf_find_using_phys(dev,
1190 ipx_map_frame_type(sipx->sipx_type));
1191 rc = -EADDRNOTAVAIL;
1192 if (!ipxif)
1193 break;
1194
1195 sipx->sipx_family = AF_IPX;
1196 sipx->sipx_network = ipxif->if_netnum;
1197 memcpy(sipx->sipx_node, ipxif->if_node,
1198 sizeof(sipx->sipx_node));
1199 rc = -EFAULT;
1200 if (copy_to_user(arg, &ifr, sizeof(ifr)))
1201 break;
1202 ipxitf_put(ipxif);
1203 rc = 0;
1204 break;
1205 }
1206 case SIOCAIPXITFCRT:
1207 rc = -EFAULT;
1208 if (get_user(val, (unsigned char __user *) arg))
1209 break;
1210 rc = 0;
1211 ipxcfg_auto_create_interfaces = val;
1212 break;
1213 case SIOCAIPXPRISLT:
1214 rc = -EFAULT;
1215 if (get_user(val, (unsigned char __user *) arg))
1216 break;
1217 rc = 0;
1218 ipxcfg_set_auto_select(val);
1219 break;
1220 }
1221
1222 return rc;
1223}
1224
1225
1226
1227
1228
1229
1230
1231
1232__be16 ipx_cksum(struct ipxhdr *packet, int length)
1233{
1234
1235
1236
1237
1238
1239
1240
1241 __u16 *p = (__u16 *)packet;
1242 __u32 sum = p[1] + (p[2] & (__force u16)htons(0x00ff));
1243 __u32 i = (length >> 1) - 3;
1244
1245
1246 p += 3;
1247 while (i--)
1248 sum += *p++;
1249
1250
1251 if (packet->ipx_pktsize & htons(1))
1252 sum += (__force u16)htons(0xff00) & *p;
1253
1254
1255 sum = (sum & 0xffff) + (sum >> 16);
1256
1257
1258 if (sum >= 0x10000)
1259 sum++;
1260
1261
1262
1263
1264
1265 if (sum)
1266 sum = ~sum;
1267
1268 return (__force __be16)sum;
1269}
1270
1271const char *ipx_frame_name(__be16 frame)
1272{
1273 char* rc = "None";
1274
1275 switch (ntohs(frame)) {
1276 case ETH_P_IPX: rc = "EtherII"; break;
1277 case ETH_P_802_2: rc = "802.2"; break;
1278 case ETH_P_SNAP: rc = "SNAP"; break;
1279 case ETH_P_802_3: rc = "802.3"; break;
1280 case ETH_P_TR_802_2: rc = "802.2TR"; break;
1281 }
1282
1283 return rc;
1284}
1285
1286const char *ipx_device_name(struct ipx_interface *intrfc)
1287{
1288 return intrfc->if_internal ? "Internal" :
1289 intrfc->if_dev ? intrfc->if_dev->name : "Unknown";
1290}
1291
1292
1293
1294
1295static int ipx_setsockopt(struct socket *sock, int level, int optname,
1296 char __user *optval, unsigned int optlen)
1297{
1298 struct sock *sk = sock->sk;
1299 int opt;
1300 int rc = -EINVAL;
1301
1302 lock_kernel();
1303 if (optlen != sizeof(int))
1304 goto out;
1305
1306 rc = -EFAULT;
1307 if (get_user(opt, (unsigned int __user *)optval))
1308 goto out;
1309
1310 rc = -ENOPROTOOPT;
1311 if (!(level == SOL_IPX && optname == IPX_TYPE))
1312 goto out;
1313
1314 ipx_sk(sk)->type = opt;
1315 rc = 0;
1316out:
1317 unlock_kernel();
1318 return rc;
1319}
1320
1321static int ipx_getsockopt(struct socket *sock, int level, int optname,
1322 char __user *optval, int __user *optlen)
1323{
1324 struct sock *sk = sock->sk;
1325 int val = 0;
1326 int len;
1327 int rc = -ENOPROTOOPT;
1328
1329 lock_kernel();
1330 if (!(level == SOL_IPX && optname == IPX_TYPE))
1331 goto out;
1332
1333 val = ipx_sk(sk)->type;
1334
1335 rc = -EFAULT;
1336 if (get_user(len, optlen))
1337 goto out;
1338
1339 len = min_t(unsigned int, len, sizeof(int));
1340 rc = -EINVAL;
1341 if(len < 0)
1342 goto out;
1343
1344 rc = -EFAULT;
1345 if (put_user(len, optlen) || copy_to_user(optval, &val, len))
1346 goto out;
1347
1348 rc = 0;
1349out:
1350 unlock_kernel();
1351 return rc;
1352}
1353
1354static struct proto ipx_proto = {
1355 .name = "IPX",
1356 .owner = THIS_MODULE,
1357 .obj_size = sizeof(struct ipx_sock),
1358};
1359
1360static int ipx_create(struct net *net, struct socket *sock, int protocol,
1361 int kern)
1362{
1363 int rc = -ESOCKTNOSUPPORT;
1364 struct sock *sk;
1365
1366 if (!net_eq(net, &init_net))
1367 return -EAFNOSUPPORT;
1368
1369
1370
1371
1372
1373
1374
1375 if (sock->type != SOCK_DGRAM)
1376 goto out;
1377
1378 rc = -ENOMEM;
1379 sk = sk_alloc(net, PF_IPX, GFP_KERNEL, &ipx_proto);
1380 if (!sk)
1381 goto out;
1382
1383 sk_refcnt_debug_inc(sk);
1384 sock_init_data(sock, sk);
1385 sk->sk_no_check = 1;
1386 sock->ops = &ipx_dgram_ops;
1387 rc = 0;
1388out:
1389 return rc;
1390}
1391
1392static int ipx_release(struct socket *sock)
1393{
1394 struct sock *sk = sock->sk;
1395
1396 if (!sk)
1397 goto out;
1398
1399 lock_kernel();
1400 if (!sock_flag(sk, SOCK_DEAD))
1401 sk->sk_state_change(sk);
1402
1403 sock_set_flag(sk, SOCK_DEAD);
1404 sock->sk = NULL;
1405 sk_refcnt_debug_release(sk);
1406 ipx_destroy_socket(sk);
1407 unlock_kernel();
1408out:
1409 return 0;
1410}
1411
1412
1413
1414static __be16 ipx_first_free_socketnum(struct ipx_interface *intrfc)
1415{
1416 unsigned short socketNum = intrfc->if_sknum;
1417
1418 spin_lock_bh(&intrfc->if_sklist_lock);
1419
1420 if (socketNum < IPX_MIN_EPHEMERAL_SOCKET)
1421 socketNum = IPX_MIN_EPHEMERAL_SOCKET;
1422
1423 while (__ipxitf_find_socket(intrfc, htons(socketNum)))
1424 if (socketNum > IPX_MAX_EPHEMERAL_SOCKET)
1425 socketNum = IPX_MIN_EPHEMERAL_SOCKET;
1426 else
1427 socketNum++;
1428
1429 spin_unlock_bh(&intrfc->if_sklist_lock);
1430 intrfc->if_sknum = socketNum;
1431
1432 return htons(socketNum);
1433}
1434
1435static int __ipx_bind(struct socket *sock,
1436 struct sockaddr *uaddr, int addr_len)
1437{
1438 struct sock *sk = sock->sk;
1439 struct ipx_sock *ipxs = ipx_sk(sk);
1440 struct ipx_interface *intrfc;
1441 struct sockaddr_ipx *addr = (struct sockaddr_ipx *)uaddr;
1442 int rc = -EINVAL;
1443
1444 if (!sock_flag(sk, SOCK_ZAPPED) || addr_len != sizeof(struct sockaddr_ipx))
1445 goto out;
1446
1447 intrfc = ipxitf_find_using_net(addr->sipx_network);
1448 rc = -EADDRNOTAVAIL;
1449 if (!intrfc)
1450 goto out;
1451
1452 if (!addr->sipx_port) {
1453 addr->sipx_port = ipx_first_free_socketnum(intrfc);
1454 rc = -EINVAL;
1455 if (!addr->sipx_port)
1456 goto out_put;
1457 }
1458
1459
1460 rc = -EACCES;
1461 if (ntohs(addr->sipx_port) < IPX_MIN_EPHEMERAL_SOCKET &&
1462 !capable(CAP_NET_ADMIN))
1463 goto out_put;
1464
1465 ipxs->port = addr->sipx_port;
1466
1467#ifdef CONFIG_IPX_INTERN
1468 if (intrfc == ipx_internal_net) {
1469
1470
1471
1472
1473
1474 rc = -EINVAL;
1475 if (!memcmp(addr->sipx_node, ipx_broadcast_node, IPX_NODE_LEN))
1476 goto out_put;
1477 if (!memcmp(addr->sipx_node, ipx_this_node, IPX_NODE_LEN))
1478 memcpy(ipxs->node, intrfc->if_node, IPX_NODE_LEN);
1479 else
1480 memcpy(ipxs->node, addr->sipx_node, IPX_NODE_LEN);
1481
1482 rc = -EADDRINUSE;
1483 if (ipxitf_find_internal_socket(intrfc, ipxs->node,
1484 ipxs->port)) {
1485 SOCK_DEBUG(sk,
1486 "IPX: bind failed because port %X in use.\n",
1487 ntohs(addr->sipx_port));
1488 goto out_put;
1489 }
1490 } else {
1491
1492
1493
1494
1495
1496 memcpy(ipxs->node, intrfc->if_node, IPX_NODE_LEN);
1497
1498 rc = -EADDRINUSE;
1499 if (ipxitf_find_socket(intrfc, addr->sipx_port)) {
1500 SOCK_DEBUG(sk,
1501 "IPX: bind failed because port %X in use.\n",
1502 ntohs(addr->sipx_port));
1503 goto out_put;
1504 }
1505 }
1506
1507#else
1508
1509
1510
1511
1512 rc = -EADDRINUSE;
1513 if (ipxitf_find_socket(intrfc, addr->sipx_port)) {
1514 SOCK_DEBUG(sk, "IPX: bind failed because port %X in use.\n",
1515 ntohs((int)addr->sipx_port));
1516 goto out_put;
1517 }
1518
1519#endif
1520
1521 ipxitf_insert_socket(intrfc, sk);
1522 sock_reset_flag(sk, SOCK_ZAPPED);
1523
1524 rc = 0;
1525out_put:
1526 ipxitf_put(intrfc);
1527out:
1528 return rc;
1529}
1530
1531static int ipx_bind(struct socket *sock, struct sockaddr *uaddr, int addr_len)
1532{
1533 int rc;
1534
1535 lock_kernel();
1536 rc = __ipx_bind(sock, uaddr, addr_len);
1537 unlock_kernel();
1538
1539 return rc;
1540}
1541
1542static int ipx_connect(struct socket *sock, struct sockaddr *uaddr,
1543 int addr_len, int flags)
1544{
1545 struct sock *sk = sock->sk;
1546 struct ipx_sock *ipxs = ipx_sk(sk);
1547 struct sockaddr_ipx *addr;
1548 int rc = -EINVAL;
1549 struct ipx_route *rt;
1550
1551 sk->sk_state = TCP_CLOSE;
1552 sock->state = SS_UNCONNECTED;
1553
1554 lock_kernel();
1555 if (addr_len != sizeof(*addr))
1556 goto out;
1557 addr = (struct sockaddr_ipx *)uaddr;
1558
1559
1560 if (!ipxs->port) {
1561 struct sockaddr_ipx uaddr;
1562
1563 uaddr.sipx_port = 0;
1564 uaddr.sipx_network = 0;
1565
1566#ifdef CONFIG_IPX_INTERN
1567 rc = -ENETDOWN;
1568 if (!ipxs->intrfc)
1569 goto out;
1570 memcpy(uaddr.sipx_node, ipxs->intrfc->if_node,
1571 IPX_NODE_LEN);
1572#endif
1573
1574 rc = __ipx_bind(sock, (struct sockaddr *)&uaddr,
1575 sizeof(struct sockaddr_ipx));
1576 if (rc)
1577 goto out;
1578 }
1579
1580
1581
1582 rt = ipxrtr_lookup(addr->sipx_network);
1583 rc = -ENETUNREACH;
1584 if (!rt && !(!addr->sipx_network && ipx_primary_net))
1585 goto out;
1586
1587 ipxs->dest_addr.net = addr->sipx_network;
1588 ipxs->dest_addr.sock = addr->sipx_port;
1589 memcpy(ipxs->dest_addr.node, addr->sipx_node, IPX_NODE_LEN);
1590 ipxs->type = addr->sipx_type;
1591
1592 if (sock->type == SOCK_DGRAM) {
1593 sock->state = SS_CONNECTED;
1594 sk->sk_state = TCP_ESTABLISHED;
1595 }
1596
1597 if (rt)
1598 ipxrtr_put(rt);
1599 rc = 0;
1600out:
1601 unlock_kernel();
1602 return rc;
1603}
1604
1605
1606static int ipx_getname(struct socket *sock, struct sockaddr *uaddr,
1607 int *uaddr_len, int peer)
1608{
1609 struct ipx_address *addr;
1610 struct sockaddr_ipx sipx;
1611 struct sock *sk = sock->sk;
1612 struct ipx_sock *ipxs = ipx_sk(sk);
1613 int rc;
1614
1615 *uaddr_len = sizeof(struct sockaddr_ipx);
1616
1617 lock_kernel();
1618 if (peer) {
1619 rc = -ENOTCONN;
1620 if (sk->sk_state != TCP_ESTABLISHED)
1621 goto out;
1622
1623 addr = &ipxs->dest_addr;
1624 sipx.sipx_network = addr->net;
1625 sipx.sipx_port = addr->sock;
1626 memcpy(sipx.sipx_node, addr->node, IPX_NODE_LEN);
1627 } else {
1628 if (ipxs->intrfc) {
1629 sipx.sipx_network = ipxs->intrfc->if_netnum;
1630#ifdef CONFIG_IPX_INTERN
1631 memcpy(sipx.sipx_node, ipxs->node, IPX_NODE_LEN);
1632#else
1633 memcpy(sipx.sipx_node, ipxs->intrfc->if_node,
1634 IPX_NODE_LEN);
1635#endif
1636
1637 } else {
1638 sipx.sipx_network = 0;
1639 memset(sipx.sipx_node, '\0', IPX_NODE_LEN);
1640 }
1641
1642 sipx.sipx_port = ipxs->port;
1643 }
1644
1645 sipx.sipx_family = AF_IPX;
1646 sipx.sipx_type = ipxs->type;
1647 sipx.sipx_zero = 0;
1648 memcpy(uaddr, &sipx, sizeof(sipx));
1649
1650 rc = 0;
1651out:
1652 unlock_kernel();
1653 return rc;
1654}
1655
1656static unsigned int ipx_datagram_poll(struct file *file, struct socket *sock,
1657 poll_table *wait)
1658{
1659 int rc;
1660
1661 lock_kernel();
1662 rc = datagram_poll(file, sock, wait);
1663 unlock_kernel();
1664
1665 return rc;
1666}
1667
1668static int ipx_rcv(struct sk_buff *skb, struct net_device *dev, struct packet_type *pt, struct net_device *orig_dev)
1669{
1670
1671 struct ipx_interface *intrfc;
1672 struct ipxhdr *ipx;
1673 u16 ipx_pktsize;
1674 int rc = 0;
1675
1676 if (!net_eq(dev_net(dev), &init_net))
1677 goto drop;
1678
1679
1680 if (skb->pkt_type == PACKET_OTHERHOST)
1681 goto drop;
1682
1683 if ((skb = skb_share_check(skb, GFP_ATOMIC)) == NULL)
1684 goto out;
1685
1686 if (!pskb_may_pull(skb, sizeof(struct ipxhdr)))
1687 goto drop;
1688
1689 ipx_pktsize = ntohs(ipx_hdr(skb)->ipx_pktsize);
1690
1691
1692 if (ipx_pktsize < sizeof(struct ipxhdr) ||
1693 !pskb_may_pull(skb, ipx_pktsize))
1694 goto drop;
1695
1696 ipx = ipx_hdr(skb);
1697 if (ipx->ipx_checksum != IPX_NO_CHECKSUM &&
1698 ipx->ipx_checksum != ipx_cksum(ipx, ipx_pktsize))
1699 goto drop;
1700
1701 IPX_SKB_CB(skb)->ipx_tctrl = ipx->ipx_tctrl;
1702 IPX_SKB_CB(skb)->ipx_dest_net = ipx->ipx_dest.net;
1703 IPX_SKB_CB(skb)->ipx_source_net = ipx->ipx_source.net;
1704
1705
1706 intrfc = ipxitf_find_using_phys(dev, pt->type);
1707 if (!intrfc) {
1708 if (ipxcfg_auto_create_interfaces &&
1709 IPX_SKB_CB(skb)->ipx_dest_net) {
1710 intrfc = ipxitf_auto_create(dev, pt->type);
1711 if (intrfc)
1712 ipxitf_hold(intrfc);
1713 }
1714
1715 if (!intrfc)
1716
1717 goto drop;
1718 }
1719
1720 rc = ipxitf_rcv(intrfc, skb);
1721 ipxitf_put(intrfc);
1722 goto out;
1723drop:
1724 kfree_skb(skb);
1725out:
1726 return rc;
1727}
1728
1729static int ipx_sendmsg(struct kiocb *iocb, struct socket *sock,
1730 struct msghdr *msg, size_t len)
1731{
1732 struct sock *sk = sock->sk;
1733 struct ipx_sock *ipxs = ipx_sk(sk);
1734 struct sockaddr_ipx *usipx = (struct sockaddr_ipx *)msg->msg_name;
1735 struct sockaddr_ipx local_sipx;
1736 int rc = -EINVAL;
1737 int flags = msg->msg_flags;
1738
1739 lock_kernel();
1740
1741
1742
1743 if (flags & ~(MSG_DONTWAIT|MSG_CMSG_COMPAT))
1744 goto out;
1745
1746
1747 if (len >= 65535 - sizeof(struct ipxhdr))
1748 goto out;
1749
1750 if (usipx) {
1751 if (!ipxs->port) {
1752 struct sockaddr_ipx uaddr;
1753
1754 uaddr.sipx_port = 0;
1755 uaddr.sipx_network = 0;
1756#ifdef CONFIG_IPX_INTERN
1757 rc = -ENETDOWN;
1758 if (!ipxs->intrfc)
1759 goto out;
1760 memcpy(uaddr.sipx_node, ipxs->intrfc->if_node,
1761 IPX_NODE_LEN);
1762#endif
1763 rc = __ipx_bind(sock, (struct sockaddr *)&uaddr,
1764 sizeof(struct sockaddr_ipx));
1765 if (rc)
1766 goto out;
1767 }
1768
1769 rc = -EINVAL;
1770 if (msg->msg_namelen < sizeof(*usipx) ||
1771 usipx->sipx_family != AF_IPX)
1772 goto out;
1773 } else {
1774 rc = -ENOTCONN;
1775 if (sk->sk_state != TCP_ESTABLISHED)
1776 goto out;
1777
1778 usipx = &local_sipx;
1779 usipx->sipx_family = AF_IPX;
1780 usipx->sipx_type = ipxs->type;
1781 usipx->sipx_port = ipxs->dest_addr.sock;
1782 usipx->sipx_network = ipxs->dest_addr.net;
1783 memcpy(usipx->sipx_node, ipxs->dest_addr.node, IPX_NODE_LEN);
1784 }
1785
1786 rc = ipxrtr_route_packet(sk, usipx, msg->msg_iov, len,
1787 flags & MSG_DONTWAIT);
1788 if (rc >= 0)
1789 rc = len;
1790out:
1791 unlock_kernel();
1792 return rc;
1793}
1794
1795
1796static int ipx_recvmsg(struct kiocb *iocb, struct socket *sock,
1797 struct msghdr *msg, size_t size, int flags)
1798{
1799 struct sock *sk = sock->sk;
1800 struct ipx_sock *ipxs = ipx_sk(sk);
1801 struct sockaddr_ipx *sipx = (struct sockaddr_ipx *)msg->msg_name;
1802 struct ipxhdr *ipx = NULL;
1803 struct sk_buff *skb;
1804 int copied, rc;
1805
1806 lock_kernel();
1807
1808 if (!ipxs->port) {
1809 struct sockaddr_ipx uaddr;
1810
1811 uaddr.sipx_port = 0;
1812 uaddr.sipx_network = 0;
1813
1814#ifdef CONFIG_IPX_INTERN
1815 rc = -ENETDOWN;
1816 if (!ipxs->intrfc)
1817 goto out;
1818 memcpy(uaddr.sipx_node, ipxs->intrfc->if_node, IPX_NODE_LEN);
1819#endif
1820
1821 rc = __ipx_bind(sock, (struct sockaddr *)&uaddr,
1822 sizeof(struct sockaddr_ipx));
1823 if (rc)
1824 goto out;
1825 }
1826
1827 rc = -ENOTCONN;
1828 if (sock_flag(sk, SOCK_ZAPPED))
1829 goto out;
1830
1831 skb = skb_recv_datagram(sk, flags & ~MSG_DONTWAIT,
1832 flags & MSG_DONTWAIT, &rc);
1833 if (!skb)
1834 goto out;
1835
1836 ipx = ipx_hdr(skb);
1837 copied = ntohs(ipx->ipx_pktsize) - sizeof(struct ipxhdr);
1838 if (copied > size) {
1839 copied = size;
1840 msg->msg_flags |= MSG_TRUNC;
1841 }
1842
1843 rc = skb_copy_datagram_iovec(skb, sizeof(struct ipxhdr), msg->msg_iov,
1844 copied);
1845 if (rc)
1846 goto out_free;
1847 if (skb->tstamp.tv64)
1848 sk->sk_stamp = skb->tstamp;
1849
1850 msg->msg_namelen = sizeof(*sipx);
1851
1852 if (sipx) {
1853 sipx->sipx_family = AF_IPX;
1854 sipx->sipx_port = ipx->ipx_source.sock;
1855 memcpy(sipx->sipx_node, ipx->ipx_source.node, IPX_NODE_LEN);
1856 sipx->sipx_network = IPX_SKB_CB(skb)->ipx_source_net;
1857 sipx->sipx_type = ipx->ipx_type;
1858 sipx->sipx_zero = 0;
1859 }
1860 rc = copied;
1861
1862out_free:
1863 skb_free_datagram(sk, skb);
1864out:
1865 unlock_kernel();
1866 return rc;
1867}
1868
1869
1870static int ipx_ioctl(struct socket *sock, unsigned int cmd, unsigned long arg)
1871{
1872 int rc = 0;
1873 long amount = 0;
1874 struct sock *sk = sock->sk;
1875 void __user *argp = (void __user *)arg;
1876
1877 lock_kernel();
1878 switch (cmd) {
1879 case TIOCOUTQ:
1880 amount = sk->sk_sndbuf - sk_wmem_alloc_get(sk);
1881 if (amount < 0)
1882 amount = 0;
1883 rc = put_user(amount, (int __user *)argp);
1884 break;
1885 case TIOCINQ: {
1886 struct sk_buff *skb = skb_peek(&sk->sk_receive_queue);
1887
1888
1889 if (skb)
1890 amount = skb->len - sizeof(struct ipxhdr);
1891 rc = put_user(amount, (int __user *)argp);
1892 break;
1893 }
1894 case SIOCADDRT:
1895 case SIOCDELRT:
1896 rc = -EPERM;
1897 if (capable(CAP_NET_ADMIN))
1898 rc = ipxrtr_ioctl(cmd, argp);
1899 break;
1900 case SIOCSIFADDR:
1901 case SIOCAIPXITFCRT:
1902 case SIOCAIPXPRISLT:
1903 rc = -EPERM;
1904 if (!capable(CAP_NET_ADMIN))
1905 break;
1906 case SIOCGIFADDR:
1907 rc = ipxitf_ioctl(cmd, argp);
1908 break;
1909 case SIOCIPXCFGDATA:
1910 rc = ipxcfg_get_config_data(argp);
1911 break;
1912 case SIOCIPXNCPCONN:
1913
1914
1915
1916
1917 rc = -EPERM;
1918 if (!capable(CAP_NET_ADMIN))
1919 break;
1920 rc = get_user(ipx_sk(sk)->ipx_ncp_conn,
1921 (const unsigned short __user *)argp);
1922 break;
1923 case SIOCGSTAMP:
1924 rc = -EINVAL;
1925 if (sk)
1926 rc = sock_get_timestamp(sk, argp);
1927 break;
1928 case SIOCGIFDSTADDR:
1929 case SIOCSIFDSTADDR:
1930 case SIOCGIFBRDADDR:
1931 case SIOCSIFBRDADDR:
1932 case SIOCGIFNETMASK:
1933 case SIOCSIFNETMASK:
1934 rc = -EINVAL;
1935 break;
1936 default:
1937 rc = -ENOIOCTLCMD;
1938 break;
1939 }
1940 unlock_kernel();
1941
1942 return rc;
1943}
1944
1945
1946#ifdef CONFIG_COMPAT
1947static int ipx_compat_ioctl(struct socket *sock, unsigned int cmd, unsigned long arg)
1948{
1949
1950
1951
1952
1953
1954
1955 switch (cmd) {
1956 case SIOCAIPXITFCRT:
1957 case SIOCAIPXPRISLT:
1958 case SIOCIPXCFGDATA:
1959 case SIOCIPXNCPCONN:
1960 return ipx_ioctl(sock, cmd, arg);
1961 default:
1962 return -ENOIOCTLCMD;
1963 }
1964}
1965#endif
1966
1967
1968
1969
1970
1971
1972static const struct net_proto_family ipx_family_ops = {
1973 .family = PF_IPX,
1974 .create = ipx_create,
1975 .owner = THIS_MODULE,
1976};
1977
1978static const struct proto_ops ipx_dgram_ops = {
1979 .family = PF_IPX,
1980 .owner = THIS_MODULE,
1981 .release = ipx_release,
1982 .bind = ipx_bind,
1983 .connect = ipx_connect,
1984 .socketpair = sock_no_socketpair,
1985 .accept = sock_no_accept,
1986 .getname = ipx_getname,
1987 .poll = ipx_datagram_poll,
1988 .ioctl = ipx_ioctl,
1989#ifdef CONFIG_COMPAT
1990 .compat_ioctl = ipx_compat_ioctl,
1991#endif
1992 .listen = sock_no_listen,
1993 .shutdown = sock_no_shutdown,
1994 .setsockopt = ipx_setsockopt,
1995 .getsockopt = ipx_getsockopt,
1996 .sendmsg = ipx_sendmsg,
1997 .recvmsg = ipx_recvmsg,
1998 .mmap = sock_no_mmap,
1999 .sendpage = sock_no_sendpage,
2000};
2001
2002static struct packet_type ipx_8023_packet_type __read_mostly = {
2003 .type = cpu_to_be16(ETH_P_802_3),
2004 .func = ipx_rcv,
2005};
2006
2007static struct packet_type ipx_dix_packet_type __read_mostly = {
2008 .type = cpu_to_be16(ETH_P_IPX),
2009 .func = ipx_rcv,
2010};
2011
2012static struct notifier_block ipx_dev_notifier = {
2013 .notifier_call = ipxitf_device_event,
2014};
2015
2016extern struct datalink_proto *make_EII_client(void);
2017extern void destroy_EII_client(struct datalink_proto *);
2018
2019static const unsigned char ipx_8022_type = 0xE0;
2020static const unsigned char ipx_snap_id[5] = { 0x0, 0x0, 0x0, 0x81, 0x37 };
2021static const char ipx_EII_err_msg[] __initconst =
2022 KERN_CRIT "IPX: Unable to register with Ethernet II\n";
2023static const char ipx_8023_err_msg[] __initconst =
2024 KERN_CRIT "IPX: Unable to register with 802.3\n";
2025static const char ipx_llc_err_msg[] __initconst =
2026 KERN_CRIT "IPX: Unable to register with 802.2\n";
2027static const char ipx_snap_err_msg[] __initconst =
2028 KERN_CRIT "IPX: Unable to register with SNAP\n";
2029
2030static int __init ipx_init(void)
2031{
2032 int rc = proto_register(&ipx_proto, 1);
2033
2034 if (rc != 0)
2035 goto out;
2036
2037 sock_register(&ipx_family_ops);
2038
2039 pEII_datalink = make_EII_client();
2040 if (pEII_datalink)
2041 dev_add_pack(&ipx_dix_packet_type);
2042 else
2043 printk(ipx_EII_err_msg);
2044
2045 p8023_datalink = make_8023_client();
2046 if (p8023_datalink)
2047 dev_add_pack(&ipx_8023_packet_type);
2048 else
2049 printk(ipx_8023_err_msg);
2050
2051 p8022_datalink = register_8022_client(ipx_8022_type, ipx_rcv);
2052 if (!p8022_datalink)
2053 printk(ipx_llc_err_msg);
2054
2055 pSNAP_datalink = register_snap_client(ipx_snap_id, ipx_rcv);
2056 if (!pSNAP_datalink)
2057 printk(ipx_snap_err_msg);
2058
2059 register_netdevice_notifier(&ipx_dev_notifier);
2060 ipx_register_sysctl();
2061 ipx_proc_init();
2062out:
2063 return rc;
2064}
2065
2066static void __exit ipx_proto_finito(void)
2067{
2068 ipx_proc_exit();
2069 ipx_unregister_sysctl();
2070
2071 unregister_netdevice_notifier(&ipx_dev_notifier);
2072
2073 ipxitf_cleanup();
2074
2075 if (pSNAP_datalink) {
2076 unregister_snap_client(pSNAP_datalink);
2077 pSNAP_datalink = NULL;
2078 }
2079
2080 if (p8022_datalink) {
2081 unregister_8022_client(p8022_datalink);
2082 p8022_datalink = NULL;
2083 }
2084
2085 dev_remove_pack(&ipx_8023_packet_type);
2086 if (p8023_datalink) {
2087 destroy_8023_client(p8023_datalink);
2088 p8023_datalink = NULL;
2089 }
2090
2091 dev_remove_pack(&ipx_dix_packet_type);
2092 if (pEII_datalink) {
2093 destroy_EII_client(pEII_datalink);
2094 pEII_datalink = NULL;
2095 }
2096
2097 proto_unregister(&ipx_proto);
2098 sock_unregister(ipx_family_ops.family);
2099}
2100
2101module_init(ipx_init);
2102module_exit(ipx_proto_finito);
2103MODULE_LICENSE("GPL");
2104MODULE_ALIAS_NETPROTO(PF_IPX);
2105