af_ipx.c 50 KB

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