ddp.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:52k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * DDP: An implementation of the AppleTalk DDP protocol for
  3.  * Ethernet 'ELAP'.
  4.  *
  5.  * Alan Cox  <Alan.Cox@linux.org>
  6.  *
  7.  * With more than a little assistance from
  8.  *
  9.  * Wesley Craig <netatalk@umich.edu>
  10.  *
  11.  * Fixes:
  12.  * Michael Callahan : Made routing work
  13.  * Wesley Craig : Fix probing to listen to a
  14.  * passed node id.
  15.  * Alan Cox : Added send/recvmsg support
  16.  * Alan Cox : Moved at. to protinfo in
  17.  * socket.
  18.  * Alan Cox : Added firewall hooks.
  19.  * Alan Cox : Supports new ARPHRD_LOOPBACK
  20.  * Christer Weinigel :  Routing and /proc fixes.
  21.  * Bradford Johnson : LocalTalk.
  22.  * Tom Dyas : Module support.
  23.  * Alan Cox : Hooks for PPP (based on the
  24.  * LocalTalk hook).
  25.  * Alan Cox : Posix bits
  26.  * Alan Cox/Mike Freeman : Possible fix to NBP problems
  27.  * Bradford Johnson : IP-over-DDP (experimental)
  28.  * Jay Schulist : Moved IP-over-DDP to its own
  29.  * driver file. (ipddp.c & ipddp.h)
  30.  * Jay Schulist : Made work as module with 
  31.  * AppleTalk drivers, cleaned it.
  32.  * Rob Newberry : Added proxy AARP and AARP
  33.  * procfs, moved probing to AARP
  34.  * module.
  35.  *              Adrian Sun/ 
  36.  *              Michael Zuelsdorff      :       fix for net.0 packets. don't 
  37.  *                                              allow illegal ether/tokentalk
  38.  *                                              port assignment. we lose a 
  39.  *                                              valid localtalk port as a 
  40.  *                                              result.
  41.  * Arnaldo C. de Melo : Cleanup, in preparation for
  42.  * shared skb support 8)
  43.  *
  44.  * This program is free software; you can redistribute it and/or
  45.  * modify it under the terms of the GNU General Public License
  46.  * as published by the Free Software Foundation; either version
  47.  * 2 of the License, or (at your option) any later version.
  48.  * 
  49.  */
  50. #include <linux/config.h>
  51. #if defined(CONFIG_ATALK) || defined(CONFIG_ATALK_MODULE)
  52. #include <linux/module.h>
  53. #include <asm/uaccess.h>
  54. #include <asm/system.h>
  55. #include <asm/bitops.h>
  56. #include <linux/types.h>
  57. #include <linux/kernel.h>
  58. #include <linux/sched.h>
  59. #include <linux/string.h>
  60. #include <linux/mm.h>
  61. #include <linux/socket.h>
  62. #include <linux/sockios.h>
  63. #include <linux/in.h>
  64. #include <linux/errno.h>
  65. #include <linux/interrupt.h>
  66. #include <linux/if_ether.h>
  67. #include <linux/notifier.h>
  68. #include <linux/netdevice.h>
  69. #include <linux/inetdevice.h>
  70. #include <linux/route.h>
  71. #include <linux/inet.h>
  72. #include <linux/etherdevice.h>
  73. #include <linux/if_arp.h>
  74. #include <linux/skbuff.h>
  75. #include <linux/spinlock.h>
  76. #include <linux/termios.h> /* For TIOCOUTQ/INQ */
  77. #include <net/datalink.h>
  78. #include <net/p8022.h>
  79. #include <net/psnap.h>
  80. #include <net/sock.h>
  81. #include <linux/ip.h>
  82. #include <net/route.h>
  83. #include <linux/atalk.h>
  84. #include <linux/proc_fs.h>
  85. #include <linux/stat.h>
  86. #include <linux/init.h>
  87. #ifdef CONFIG_PROC_FS
  88. extern void aarp_register_proc_fs(void);
  89. extern void aarp_unregister_proc_fs(void);
  90. #endif
  91. extern void aarp_cleanup_module(void);
  92. extern void aarp_probe_network(struct atalk_iface *atif);
  93. extern int  aarp_proxy_probe_network(struct atalk_iface *atif,
  94. struct at_addr *sa);
  95. extern void aarp_proxy_remove(struct net_device *dev, struct at_addr *sa);
  96. #undef APPLETALK_DEBUG
  97. #ifdef APPLETALK_DEBUG
  98. #define DPRINT(x) print(x)
  99. #else
  100. #define DPRINT(x)
  101. #endif /* APPLETALK_DEBUG */
  102. #ifdef CONFIG_SYSCTL
  103. extern inline void atalk_register_sysctl(void);
  104. extern inline void atalk_unregister_sysctl(void);
  105. #endif /* CONFIG_SYSCTL */
  106. struct datalink_proto *ddp_dl, *aarp_dl;
  107. static struct proto_ops atalk_dgram_ops;
  108. /**************************************************************************
  109. *                                                                          *
  110. * Handlers for the socket list.                                            *
  111. *                                                                          *
  112. **************************************************************************/
  113. static struct sock *atalk_sockets;
  114. static spinlock_t atalk_sockets_lock = SPIN_LOCK_UNLOCKED;
  115. extern inline void atalk_insert_socket(struct sock *sk)
  116. {
  117. spin_lock_bh(&atalk_sockets_lock);
  118. sk->next = atalk_sockets;
  119. if (sk->next)
  120. atalk_sockets->pprev = &sk->next;
  121. atalk_sockets = sk;
  122. sk->pprev = &atalk_sockets;
  123. spin_unlock_bh(&atalk_sockets_lock);
  124. }
  125. extern inline void atalk_remove_socket(struct sock *sk)
  126. {
  127. spin_lock_bh(&atalk_sockets_lock);
  128. if (sk->pprev) {
  129. if (sk->next)
  130. sk->next->pprev = sk->pprev;
  131. *sk->pprev = sk->next;
  132. sk->pprev = NULL;
  133. }
  134. spin_unlock_bh(&atalk_sockets_lock);
  135. }
  136. static struct sock *atalk_search_socket(struct sockaddr_at *to,
  137. struct atalk_iface *atif)
  138. {
  139. struct sock *s;
  140. spin_lock_bh(&atalk_sockets_lock);
  141. for (s = atalk_sockets; s; s = s->next) {
  142. if (to->sat_port != s->protinfo.af_at.src_port)
  143. continue;
  144.      if (to->sat_addr.s_net == ATADDR_ANYNET &&
  145.     to->sat_addr.s_node == ATADDR_BCAST &&
  146.     s->protinfo.af_at.src_net == atif->address.s_net)
  147. break;
  148.      if (to->sat_addr.s_net == s->protinfo.af_at.src_net &&
  149.     (to->sat_addr.s_node == s->protinfo.af_at.src_node ||
  150.      to->sat_addr.s_node == ATADDR_BCAST ||
  151.      to->sat_addr.s_node == ATADDR_ANYNODE))
  152. break;
  153.      /* XXXX.0 -- we got a request for this router. make sure
  154.  * that the node is appropriately set. */
  155. if (to->sat_addr.s_node == ATADDR_ANYNODE &&
  156.     to->sat_addr.s_net != ATADDR_ANYNET &&
  157.     atif->address.s_node == s->protinfo.af_at.src_node) {
  158. to->sat_addr.s_node = atif->address.s_node;
  159. break; 
  160. }
  161. }
  162. spin_unlock_bh(&atalk_sockets_lock);
  163. return s;
  164. }
  165. /*
  166.  * Try to find a socket matching ADDR in the socket list,
  167.  * if found then return it.  If not, insert SK into the
  168.  * socket list.
  169.  *
  170.  * This entire operation must execute atomically.
  171.  */
  172. static struct sock *atalk_find_or_insert_socket(struct sock *sk,
  173. struct sockaddr_at *sat)
  174. {
  175. struct sock *s;
  176. spin_lock_bh(&atalk_sockets_lock);
  177. for (s = atalk_sockets; s; s = s->next)
  178. if (s->protinfo.af_at.src_net == sat->sat_addr.s_net &&
  179.     s->protinfo.af_at.src_node == sat->sat_addr.s_node &&
  180.     s->protinfo.af_at.src_port == sat->sat_port)
  181. break;
  182. if (!s) {
  183. /* Wheee, it's free, assign and insert. */
  184. sk->next = atalk_sockets;
  185. if (sk->next)
  186. atalk_sockets->pprev = &sk->next;
  187. atalk_sockets = sk;
  188. sk->pprev = &atalk_sockets;
  189. }
  190. spin_unlock_bh(&atalk_sockets_lock);
  191. return s;
  192. }
  193. static void atalk_destroy_timer(unsigned long data)
  194. {
  195. struct sock *sk = (struct sock *) data;
  196. if (!atomic_read(&sk->wmem_alloc) &&
  197.     !atomic_read(&sk->rmem_alloc) && sk->dead) {
  198. sock_put(sk);
  199. MOD_DEC_USE_COUNT;
  200. } else {
  201. sk->timer.expires = jiffies + SOCK_DESTROY_TIME;
  202. add_timer(&sk->timer);
  203. }
  204. }
  205. extern inline void atalk_destroy_socket(struct sock *sk)
  206. {
  207. atalk_remove_socket(sk);
  208. skb_queue_purge(&sk->receive_queue);
  209. if (!atomic_read(&sk->wmem_alloc) &&
  210.     !atomic_read(&sk->rmem_alloc) && sk->dead) {
  211. sock_put(sk);
  212. MOD_DEC_USE_COUNT;
  213. } else {
  214. init_timer(&sk->timer);
  215. sk->timer.expires = jiffies + SOCK_DESTROY_TIME;
  216. sk->timer.function = atalk_destroy_timer;
  217. sk->timer.data = (unsigned long) sk;
  218. add_timer(&sk->timer);
  219. }
  220. }
  221. /* Called from proc fs */
  222. static int atalk_get_info(char *buffer, char **start, off_t offset, int length)
  223. {
  224. off_t pos = 0;
  225. off_t begin = 0;
  226. int len = sprintf(buffer, "Type local_addr  remote_addr tx_queue "
  227.   "rx_queue st uidn");
  228. struct sock *s;
  229. /* Output the AppleTalk data for the /proc filesystem */
  230. spin_lock_bh(&atalk_sockets_lock);
  231. for (s = atalk_sockets; s; s = s->next) {
  232. len += sprintf(buffer + len,"%02X   ", s->type);
  233. len += sprintf(buffer + len,"%04X:%02X:%02X  ",
  234.        ntohs(s->protinfo.af_at.src_net),
  235.        s->protinfo.af_at.src_node,
  236.        s->protinfo.af_at.src_port);
  237. len += sprintf(buffer + len,"%04X:%02X:%02X  ",
  238.        ntohs(s->protinfo.af_at.dest_net),
  239.        s->protinfo.af_at.dest_node,
  240.        s->protinfo.af_at.dest_port);
  241. len += sprintf(buffer + len,"%08X:%08X ",
  242.        atomic_read(&s->wmem_alloc),
  243.        atomic_read(&s->rmem_alloc));
  244. len += sprintf(buffer + len,"%02X %dn", s->state, 
  245.        SOCK_INODE(s->socket)->i_uid);
  246. /* Are we still dumping unwanted data then discard the record */
  247. pos = begin + len;
  248. if (pos < offset) {
  249. len = 0; /* Keep dumping into the buffer start */
  250. begin = pos;
  251. }
  252. if (pos > offset + length) /* We have dumped enough */
  253. break;
  254. }
  255. spin_unlock_bh(&atalk_sockets_lock);
  256. /* The data in question runs from begin to begin+len */
  257. *start = buffer + offset - begin; /* Start of wanted data */
  258. len -= offset - begin;   /* Remove unwanted header data from length */
  259. if (len > length)
  260. len = length;    /* Remove unwanted tail data from length */
  261. return len;
  262. }
  263. /**************************************************************************
  264. *                                                                          *
  265. * Routing tables for the AppleTalk socket layer.                           *
  266. *                                                                          *
  267. **************************************************************************/
  268. /* Anti-deadlock ordering is router_lock --> iface_lock -DaveM */
  269. static struct atalk_route *atalk_router_list;
  270. static rwlock_t atalk_router_lock = RW_LOCK_UNLOCKED;
  271. static struct atalk_iface *atalk_iface_list;
  272. static spinlock_t atalk_iface_lock = SPIN_LOCK_UNLOCKED;
  273. /* For probing devices or in a routerless network */
  274. static struct atalk_route atrtr_default;
  275. /* AppleTalk interface control */
  276. /*
  277.  * Drop a device. Doesn't drop any of its routes - that is the caller's
  278.  * problem. Called when we down the interface or delete the address.
  279.  */
  280. static void atif_drop_device(struct net_device *dev)
  281. {
  282. struct atalk_iface **iface = &atalk_iface_list;
  283. struct atalk_iface *tmp;
  284. spin_lock_bh(&atalk_iface_lock);
  285. while ((tmp = *iface) != NULL) {
  286. if (tmp->dev == dev) {
  287. *iface = tmp->next;
  288. kfree(tmp);
  289. dev->atalk_ptr = NULL;
  290. MOD_DEC_USE_COUNT;
  291. } else
  292. iface = &tmp->next;
  293. }
  294. spin_unlock_bh(&atalk_iface_lock);
  295. }
  296. static struct atalk_iface *atif_add_device(struct net_device *dev,
  297.    struct at_addr *sa)
  298. {
  299. struct atalk_iface *iface = kmalloc(sizeof(*iface), GFP_KERNEL);
  300. if (!iface)
  301. return NULL;
  302. iface->dev = dev;
  303. dev->atalk_ptr = iface;
  304. iface->address = *sa;
  305. iface->status = 0;
  306. spin_lock_bh(&atalk_iface_lock);
  307. iface->next = atalk_iface_list;
  308. atalk_iface_list = iface;
  309. spin_unlock_bh(&atalk_iface_lock);
  310. MOD_INC_USE_COUNT;
  311. return iface;
  312. }
  313. /* Perform phase 2 AARP probing on our tentative address */
  314. static int atif_probe_device(struct atalk_iface *atif)
  315. {
  316. int netrange = ntohs(atif->nets.nr_lastnet) -
  317. ntohs(atif->nets.nr_firstnet) + 1;
  318. int probe_net = ntohs(atif->address.s_net);
  319. int probe_node = atif->address.s_node;
  320. int netct, nodect;
  321. /* Offset the network we start probing with */
  322. if (probe_net == ATADDR_ANYNET) {
  323. probe_net = ntohs(atif->nets.nr_firstnet);
  324. if (netrange)
  325. probe_net += jiffies % netrange;
  326. }
  327. if (probe_node == ATADDR_ANYNODE)
  328. probe_node = jiffies & 0xFF;
  329. /* Scan the networks */
  330. atif->status |= ATIF_PROBE;
  331. for (netct = 0; netct <= netrange; netct++) {
  332. /* Sweep the available nodes from a given start */
  333. atif->address.s_net = htons(probe_net);
  334. for (nodect = 0; nodect < 256; nodect++) {
  335. atif->address.s_node = ((nodect+probe_node) & 0xFF);
  336. if (atif->address.s_node > 0 &&
  337.     atif->address.s_node < 254) {
  338. /* Probe a proposed address */
  339. aarp_probe_network(atif);
  340. if (!(atif->status & ATIF_PROBE_FAIL)) {
  341. atif->status &= ~ATIF_PROBE;
  342. return 0;
  343. }
  344. }
  345. atif->status &= ~ATIF_PROBE_FAIL;
  346. }
  347. probe_net++;
  348. if (probe_net > ntohs(atif->nets.nr_lastnet))
  349. probe_net = ntohs(atif->nets.nr_firstnet);
  350. }
  351. atif->status &= ~ATIF_PROBE;
  352. return -EADDRINUSE; /* Network is full... */
  353. }
  354. /* Perform AARP probing for a proxy address */
  355. static int atif_proxy_probe_device(struct atalk_iface *atif,
  356.    struct at_addr* proxy_addr)
  357. {
  358. int netrange = ntohs(atif->nets.nr_lastnet) -
  359. ntohs(atif->nets.nr_firstnet) + 1;
  360. /* we probe the interface's network */
  361. int probe_net = ntohs(atif->address.s_net);
  362. int probe_node = ATADDR_ANYNODE;     /* we'll take anything */
  363. int netct, nodect;
  364. /* Offset the network we start probing with */
  365. if (probe_net == ATADDR_ANYNET) {
  366. probe_net = ntohs(atif->nets.nr_firstnet);
  367. if (netrange)
  368. probe_net += jiffies % netrange;
  369. }
  370. if (probe_node == ATADDR_ANYNODE)
  371. probe_node = jiffies & 0xFF;
  372. /* Scan the networks */
  373. for (netct = 0; netct <= netrange; netct++) {
  374. /* Sweep the available nodes from a given start */
  375. proxy_addr->s_net = htons(probe_net);
  376. for (nodect = 0; nodect < 256; nodect++) {
  377. proxy_addr->s_node = ((nodect + probe_node) & 0xFF);
  378. if (proxy_addr->s_node > 0 &&
  379.     proxy_addr->s_node < 254) {
  380. /* Tell AARP to probe a proposed address */
  381. int ret = aarp_proxy_probe_network(atif,
  382.     proxy_addr);
  383. if (ret != -EADDRINUSE)
  384. return ret;
  385. }
  386. }
  387. probe_net++;
  388. if (probe_net > ntohs(atif->nets.nr_lastnet))
  389. probe_net = ntohs(atif->nets.nr_firstnet);
  390. }
  391. return -EADDRINUSE; /* Network is full... */
  392. }
  393. struct at_addr *atalk_find_dev_addr(struct net_device *dev)
  394. {
  395. struct atalk_iface *iface = dev->atalk_ptr;
  396. return iface ? &iface->address : NULL;
  397. }
  398. static struct at_addr *atalk_find_primary(void)
  399. {
  400. struct atalk_iface *fiface = NULL;
  401. struct at_addr *retval;
  402. struct atalk_iface *iface;
  403. /*
  404.  * Return a point-to-point interface only if
  405.  * there is no non-ptp interface available.
  406.  */
  407. spin_lock_bh(&atalk_iface_lock);
  408. for (iface = atalk_iface_list; iface; iface = iface->next) {
  409. if (!fiface && !(iface->dev->flags & IFF_LOOPBACK))
  410. fiface = iface;
  411. if (!(iface->dev->flags & (IFF_LOOPBACK | IFF_POINTOPOINT))) {
  412. retval = &iface->address;
  413. goto out;
  414. }
  415. }
  416. if (fiface)
  417. retval = &fiface->address;
  418. else if (atalk_iface_list)
  419. retval = &atalk_iface_list->address;
  420. else
  421. retval = NULL;
  422. out: spin_unlock_bh(&atalk_iface_lock);
  423. return retval;
  424. }
  425. /*
  426.  * Find a match for 'any network' - ie any of our interfaces with that
  427.  * node number will do just nicely.
  428.  */
  429. static struct atalk_iface *atalk_find_anynet(int node, struct net_device *dev)
  430. {
  431. struct atalk_iface *iface = dev->atalk_ptr;
  432. if (!iface || iface->status & ATIF_PROBE)
  433. return NULL;
  434. if (node == ATADDR_BCAST ||
  435.     iface->address.s_node == node ||
  436.     node == ATADDR_ANYNODE)
  437. return iface;
  438. return NULL;
  439. }
  440. /* Find a match for a specific network:node pair */
  441. static struct atalk_iface *atalk_find_interface(int net, int node)
  442. {
  443. struct atalk_iface *iface;
  444. spin_lock_bh(&atalk_iface_lock);
  445. for (iface = atalk_iface_list; iface; iface = iface->next) {
  446. if ((node == ATADDR_BCAST ||
  447.      node == ATADDR_ANYNODE ||
  448.      iface->address.s_node == node) &&
  449.     iface->address.s_net == net &&
  450.     !(iface->status & ATIF_PROBE))
  451. break;
  452. /* XXXX.0 -- net.0 returns the iface associated with net */
  453. if (node == ATADDR_ANYNODE && net != ATADDR_ANYNET &&
  454.     ntohs(iface->nets.nr_firstnet) <= ntohs(net) &&
  455.     ntohs(net) <= ntohs(iface->nets.nr_lastnet))
  456.         break;
  457. }
  458. spin_unlock_bh(&atalk_iface_lock);
  459. return iface;
  460. }
  461. /*
  462.  * Find a route for an AppleTalk packet. This ought to get cached in
  463.  * the socket (later on...). We know about host routes and the fact
  464.  * that a route must be direct to broadcast.
  465.  */
  466. static struct atalk_route *atrtr_find(struct at_addr *target)
  467. {
  468. /*
  469.  * we must search through all routes unless we find a 
  470.  * host route, because some host routes might overlap
  471.  * network routes
  472.  */
  473. struct atalk_route *net_route = NULL;
  474. struct atalk_route *r;
  475. read_lock_bh(&atalk_router_lock);
  476. for (r = atalk_router_list; r; r = r->next) {
  477. if (!(r->flags & RTF_UP))
  478. continue;
  479. if (r->target.s_net == target->s_net) {
  480. if (r->flags & RTF_HOST) {
  481. /*
  482.  * if this host route is for the target,
  483.  * the we're done
  484.  */
  485. if (r->target.s_node == target->s_node)
  486. goto out;
  487. } else
  488. /*
  489.  * this route will work if there isn't a
  490.  * direct host route, so cache it
  491.  */
  492. net_route = r;
  493. }
  494. }
  495. /* 
  496.  * if we found a network route but not a direct host
  497.  * route, then return it
  498.  */
  499. if (net_route)
  500. r = net_route;
  501. else if (atrtr_default.dev)
  502. r = &atrtr_default;
  503. else /* No route can be found */
  504. r = NULL;
  505. out: read_unlock_bh(&atalk_router_lock);
  506. return r;
  507. }
  508. /*
  509.  * Given an AppleTalk network, find the device to use. This can be
  510.  * a simple lookup.
  511.  */
  512. struct net_device *atrtr_get_dev(struct at_addr *sa)
  513. {
  514. struct atalk_route *atr = atrtr_find(sa);
  515. return atr ? atr->dev : NULL;
  516. }
  517. /* Set up a default router */
  518. static void atrtr_set_default(struct net_device *dev)
  519. {
  520. atrtr_default.dev = dev;
  521. atrtr_default.flags = RTF_UP;
  522. atrtr_default.gateway.s_net = htons(0);
  523. atrtr_default.gateway.s_node = 0;
  524. }
  525. /*
  526.  * Add a router. Basically make sure it looks valid and stuff the
  527.  * entry in the list. While it uses netranges we always set them to one
  528.  * entry to work like netatalk.
  529.  */
  530. static int atrtr_create(struct rtentry *r, struct net_device *devhint)
  531. {
  532. struct sockaddr_at *ta = (struct sockaddr_at *)&r->rt_dst;
  533. struct sockaddr_at *ga = (struct sockaddr_at *)&r->rt_gateway;
  534. struct atalk_route *rt;
  535. struct atalk_iface *iface, *riface;
  536. int retval;
  537. /*
  538.  * Fixme: Raise/Lower a routing change semaphore for these
  539.  * operations.
  540.  */
  541. /* Validate the request */
  542. if (ta->sat_family != AF_APPLETALK)
  543. return -EINVAL;
  544. if (!devhint && ga->sat_family != AF_APPLETALK)
  545. return -EINVAL;
  546. /* Now walk the routing table and make our decisions */
  547. write_lock_bh(&atalk_router_lock);
  548. for (rt = atalk_router_list; rt; rt = rt->next) {
  549. if (r->rt_flags != rt->flags)
  550. continue;
  551. if (ta->sat_addr.s_net == rt->target.s_net) {
  552. if (!(rt->flags & RTF_HOST))
  553. break;
  554. if (ta->sat_addr.s_node == rt->target.s_node)
  555. break;
  556. }
  557. }
  558. if (!devhint) {
  559. riface = NULL;
  560. spin_lock_bh(&atalk_iface_lock);
  561. for (iface = atalk_iface_list; iface; iface = iface->next) {
  562. if (!riface &&
  563.     ntohs(ga->sat_addr.s_net) >=
  564.      ntohs(iface->nets.nr_firstnet) &&
  565.     ntohs(ga->sat_addr.s_net) <=
  566.      ntohs(iface->nets.nr_lastnet))
  567. riface = iface;
  568. if (ga->sat_addr.s_net == iface->address.s_net &&
  569.     ga->sat_addr.s_node == iface->address.s_node)
  570. riface = iface;
  571. }
  572. spin_unlock_bh(&atalk_iface_lock);
  573. retval = -ENETUNREACH;
  574. if (!riface)
  575. goto out;
  576. devhint = riface->dev;
  577. }
  578. if (!rt) {
  579. rt = kmalloc(sizeof(struct atalk_route), GFP_ATOMIC);
  580. retval = -ENOBUFS;
  581. if (!rt)
  582. goto out;
  583. rt->next = atalk_router_list;
  584. atalk_router_list = rt;
  585. }
  586. /* Fill in the routing entry */
  587. rt->target  = ta->sat_addr;
  588. rt->dev     = devhint;
  589. rt->flags   = r->rt_flags;
  590. rt->gateway = ga->sat_addr;
  591. retval = 0;
  592. out: write_unlock_bh(&atalk_router_lock);
  593. return retval;
  594. }
  595. /* Delete a route. Find it and discard it */
  596. static int atrtr_delete(struct at_addr * addr)
  597. {
  598. struct atalk_route **r = &atalk_router_list;
  599. int retval = 0;
  600. struct atalk_route *tmp;
  601. write_lock_bh(&atalk_router_lock);
  602. while ((tmp = *r) != NULL) {
  603. if (tmp->target.s_net == addr->s_net &&
  604.     (!(tmp->flags&RTF_GATEWAY) ||
  605.      tmp->target.s_node == addr->s_node)) {
  606. *r = tmp->next;
  607. kfree(tmp);
  608. goto out;
  609. }
  610. r = &tmp->next;
  611. }
  612. retval = -ENOENT;
  613. out: write_unlock_bh(&atalk_router_lock);
  614. return retval;
  615. }
  616. /*
  617.  * Called when a device is downed. Just throw away any routes
  618.  * via it.
  619.  */
  620. void atrtr_device_down(struct net_device *dev)
  621. {
  622. struct atalk_route **r = &atalk_router_list;
  623. struct atalk_route *tmp;
  624. write_lock_bh(&atalk_router_lock);
  625. while ((tmp = *r) != NULL) {
  626. if (tmp->dev == dev) {
  627. *r = tmp->next;
  628. kfree(tmp);
  629. } else
  630. r = &tmp->next;
  631. }
  632. write_unlock_bh(&atalk_router_lock);
  633. if (atrtr_default.dev == dev)
  634. atrtr_set_default(NULL);
  635. }
  636. /* Actually down the interface */
  637. static inline void atalk_dev_down(struct net_device *dev)
  638. {
  639. atrtr_device_down(dev); /* Remove all routes for the device */
  640. aarp_device_down(dev); /* Remove AARP entries for the device */
  641. atif_drop_device(dev); /* Remove the device */
  642. }
  643. /*
  644.  * A device event has occurred. Watch for devices going down and
  645.  * delete our use of them (iface and route).
  646.  */
  647. static int ddp_device_event(struct notifier_block *this, unsigned long event,
  648. void *ptr)
  649. {
  650. if (event == NETDEV_DOWN)
  651. /* Discard any use of this */
  652.         atalk_dev_down((struct net_device *) ptr);
  653. return NOTIFY_DONE;
  654. }
  655. /* ioctl calls. Shouldn't even need touching */
  656. /* Device configuration ioctl calls */
  657. static int atif_ioctl(int cmd, void *arg)
  658. {
  659. static char aarp_mcast[6] = {0x09, 0x00, 0x00, 0xFF, 0xFF, 0xFF};
  660. struct ifreq atreq;
  661. struct netrange *nr;
  662. struct sockaddr_at *sa;
  663. struct net_device *dev;
  664. struct atalk_iface *atif;
  665. int ct;
  666. int limit;
  667. struct rtentry rtdef;
  668. int add_route;
  669. if (copy_from_user(&atreq, arg, sizeof(atreq)))
  670. return -EFAULT;
  671. dev = __dev_get_by_name(atreq.ifr_name);
  672. if (!dev)
  673. return -ENODEV;
  674. sa = (struct sockaddr_at*) &atreq.ifr_addr;
  675. atif = atalk_find_dev(dev);
  676. switch (cmd) {
  677. case SIOCSIFADDR:
  678. if (!capable(CAP_NET_ADMIN))
  679. return -EPERM;
  680. if (sa->sat_family != AF_APPLETALK)
  681. return -EINVAL;
  682. if (dev->type != ARPHRD_ETHER &&
  683.     dev->type != ARPHRD_LOOPBACK &&
  684.     dev->type != ARPHRD_LOCALTLK &&
  685.     dev->type != ARPHRD_PPP)
  686. return -EPROTONOSUPPORT;
  687. nr = (struct netrange *) &sa->sat_zero[0];
  688. add_route = 1;
  689. /*
  690.  * if this is a point-to-point iface, and we already
  691.  * have an iface for this AppleTalk address, then we
  692.  * should not add a route
  693.  */
  694. if ((dev->flags & IFF_POINTOPOINT) &&
  695.     atalk_find_interface(sa->sat_addr.s_net,
  696.       sa->sat_addr.s_node)) {
  697. printk(KERN_DEBUG "AppleTalk: point-to-point "
  698.   "interface added with "
  699.   "existing addressn");
  700. add_route = 0;
  701. }
  702. /*
  703.  * Phase 1 is fine on LocalTalk but we don't do
  704.  * EtherTalk phase 1. Anyone wanting to add it go ahead.
  705.  */
  706. if (dev->type == ARPHRD_ETHER && nr->nr_phase != 2)
  707. return -EPROTONOSUPPORT;
  708. if (sa->sat_addr.s_node == ATADDR_BCAST ||
  709.     sa->sat_addr.s_node == 254)
  710. return -EINVAL;
  711. if (atif) {
  712. /* Already setting address */
  713. if (atif->status & ATIF_PROBE)
  714. return -EBUSY;
  715. atif->address.s_net  = sa->sat_addr.s_net;
  716. atif->address.s_node = sa->sat_addr.s_node;
  717. atrtr_device_down(dev); /* Flush old routes */
  718. } else {
  719. atif = atif_add_device(dev, &sa->sat_addr);
  720. if (!atif)
  721. return -ENOMEM;
  722. }
  723. atif->nets = *nr;
  724. /*
  725.  * Check if the chosen address is used. If so we
  726.  * error and atalkd will try another.
  727.  */
  728. if (!(dev->flags & IFF_LOOPBACK) &&
  729.     !(dev->flags & IFF_POINTOPOINT) &&
  730.     atif_probe_device(atif) < 0) {
  731. atif_drop_device(dev);
  732. return -EADDRINUSE;
  733. }
  734. /* Hey it worked - add the direct routes */
  735. sa = (struct sockaddr_at *) &rtdef.rt_gateway;
  736. sa->sat_family = AF_APPLETALK;
  737. sa->sat_addr.s_net  = atif->address.s_net;
  738. sa->sat_addr.s_node = atif->address.s_node;
  739. sa = (struct sockaddr_at *) &rtdef.rt_dst;
  740. rtdef.rt_flags = RTF_UP;
  741. sa->sat_family = AF_APPLETALK;
  742. sa->sat_addr.s_node = ATADDR_ANYNODE;
  743. if (dev->flags & IFF_LOOPBACK ||
  744.     dev->flags & IFF_POINTOPOINT)
  745. rtdef.rt_flags |= RTF_HOST;
  746. /* Routerless initial state */
  747. if (nr->nr_firstnet == htons(0) &&
  748.     nr->nr_lastnet == htons(0xFFFE)) {
  749. sa->sat_addr.s_net = atif->address.s_net;
  750. atrtr_create(&rtdef, dev);
  751. atrtr_set_default(dev);
  752. } else {
  753. limit = ntohs(nr->nr_lastnet);
  754. if (limit - ntohs(nr->nr_firstnet) > 4096) {
  755. printk(KERN_WARNING "Too many routes/"
  756.     "iface.n");
  757. return -EINVAL;
  758. }
  759. if (add_route)
  760. for (ct = ntohs(nr->nr_firstnet);
  761.      ct <= limit; ct++) {
  762. sa->sat_addr.s_net = htons(ct);
  763. atrtr_create(&rtdef, dev);
  764. }
  765. }
  766. dev_mc_add(dev, aarp_mcast, 6, 1);
  767. return 0;
  768. case SIOCGIFADDR:
  769. if (!atif)
  770. return -EADDRNOTAVAIL;
  771. sa->sat_family = AF_APPLETALK;
  772. sa->sat_addr = atif->address;
  773. break;
  774. case SIOCGIFBRDADDR:
  775. if (!atif)
  776. return -EADDRNOTAVAIL;
  777. sa->sat_family = AF_APPLETALK;
  778. sa->sat_addr.s_net = atif->address.s_net;
  779. sa->sat_addr.s_node = ATADDR_BCAST;
  780. break;
  781.         case SIOCATALKDIFADDR:
  782.         case SIOCDIFADDR:
  783. if (!capable(CAP_NET_ADMIN))
  784. return -EPERM;
  785. if (sa->sat_family != AF_APPLETALK)
  786. return -EINVAL;
  787. atalk_dev_down(dev);
  788. break;
  789. case SIOCSARP:
  790. if (!capable(CAP_NET_ADMIN))
  791.                                 return -EPERM;
  792.                         if (sa->sat_family != AF_APPLETALK)
  793.                                 return -EINVAL;
  794.                         if (!atif)
  795.                                 return -EADDRNOTAVAIL;
  796.                         /*
  797.                          * for now, we only support proxy AARP on ELAP;
  798.                          * we should be able to do it for LocalTalk, too.
  799.                          */
  800.                         if (dev->type != ARPHRD_ETHER)
  801.                                 return -EPROTONOSUPPORT;
  802.                         /*
  803.                          * atif points to the current interface on this network;
  804.                          * we aren't concerned about its current status (at
  805.  * least for now), but it has all the settings about
  806.  * the network we're going to probe. Consequently, it
  807.  * must exist.
  808.                          */
  809.                         if (!atif)
  810.                                 return -EADDRNOTAVAIL;
  811.                         nr = (struct netrange *) &(atif->nets);
  812.                         /*
  813.                          * Phase 1 is fine on Localtalk but we don't do
  814.                          * Ethertalk phase 1. Anyone wanting to add it go ahead.
  815.                          */
  816.                         if (dev->type == ARPHRD_ETHER && nr->nr_phase != 2)
  817.                                 return -EPROTONOSUPPORT;
  818.                         if (sa->sat_addr.s_node == ATADDR_BCAST ||
  819.     sa->sat_addr.s_node == 254)
  820.                                 return -EINVAL;
  821.                         /*
  822.                          * Check if the chosen address is used. If so we
  823.                          * error and ATCP will try another.
  824.                          */
  825.                        if (atif_proxy_probe_device(atif, &(sa->sat_addr)) < 0)
  826.                        return -EADDRINUSE;
  827.                       
  828. /*
  829.                          * We now have an address on the local network, and
  830.  * the AARP code will defend it for us until we take it
  831.  * down. We don't set up any routes right now, because
  832.  * ATCP will install them manually via SIOCADDRT.
  833.                          */
  834.                         break;
  835.                 case SIOCDARP:
  836.                         if (!capable(CAP_NET_ADMIN))
  837.                                 return -EPERM;
  838.                         if (sa->sat_family != AF_APPLETALK)
  839.                                 return -EINVAL;
  840.                         if (!atif)
  841.                                 return -EADDRNOTAVAIL;
  842.                         /* give to aarp module to remove proxy entry */
  843.                         aarp_proxy_remove(atif->dev, &(sa->sat_addr));
  844.                         return 0;
  845. }
  846. return copy_to_user(arg, &atreq, sizeof(atreq)) ? -EFAULT : 0;
  847. }
  848. /* Routing ioctl() calls */
  849. static int atrtr_ioctl(unsigned int cmd, void *arg)
  850. {
  851. struct net_device *dev = NULL;
  852. struct rtentry rt;
  853. if (copy_from_user(&rt, arg, sizeof(rt)))
  854. return -EFAULT;
  855. switch (cmd) {
  856. case SIOCDELRT:
  857. if (rt.rt_dst.sa_family != AF_APPLETALK)
  858. return -EINVAL;
  859. return atrtr_delete(&((struct sockaddr_at *)
  860. &rt.rt_dst)->sat_addr);
  861. case SIOCADDRT:
  862. /* FIXME: the name of the device is still in user
  863.  * space, isn't it? */
  864. if (rt.rt_dev) {
  865. dev = __dev_get_by_name(rt.rt_dev);
  866. if (!dev)
  867. return -ENODEV;
  868. }
  869. return atrtr_create(&rt, dev);
  870. }
  871. return -EINVAL;
  872. }
  873. /* Called from proc fs - just make it print the ifaces neatly */
  874. static int atalk_if_get_info(char *buffer, char **start, off_t offset,
  875.      int length)
  876. {
  877. off_t pos = 0;
  878. off_t begin = 0;
  879. struct atalk_iface *iface;
  880. int len = sprintf(buffer, "Interface   Address   "
  881.   "Networks   Statusn");
  882. spin_lock_bh(&atalk_iface_lock);
  883. for (iface = atalk_iface_list; iface; iface = iface->next) {
  884. len += sprintf(buffer+len,"%-16s %04X:%02X  %04X-%04X  %dn",
  885.        iface->dev->name, ntohs(iface->address.s_net),
  886.        iface->address.s_node,
  887.        ntohs(iface->nets.nr_firstnet),
  888.        ntohs(iface->nets.nr_lastnet), iface->status);
  889. pos = begin + len;
  890. if (pos < offset) {
  891. len   = 0;
  892. begin = pos;
  893. }
  894. if (pos > offset + length)
  895. break;
  896. }
  897. spin_unlock_bh(&atalk_iface_lock);
  898. *start = buffer + (offset - begin);
  899. len -= (offset - begin);
  900. if (len > length)
  901. len = length;
  902. return len;
  903. }
  904. /* Called from proc fs - just make it print the routes neatly */
  905. static int atalk_rt_get_info(char *buffer, char **start, off_t offset,
  906.      int length)
  907. {
  908. off_t pos = 0;
  909. off_t begin = 0;
  910. int len = sprintf(buffer, "Target        Router  Flags Devn");
  911. struct atalk_route *rt;
  912. if (atrtr_default.dev) {
  913. rt = &atrtr_default;
  914. len += sprintf(buffer + len,"Default     %04X:%02X  %-4d  %sn",
  915.        ntohs(rt->gateway.s_net), rt->gateway.s_node,
  916.        rt->flags, rt->dev->name);
  917. }
  918. read_lock_bh(&atalk_router_lock);
  919. for (rt = atalk_router_list; rt; rt = rt->next) {
  920. len += sprintf(buffer + len,
  921. "%04X:%02X     %04X:%02X  %-4d  %sn",
  922.        ntohs(rt->target.s_net), rt->target.s_node,
  923.        ntohs(rt->gateway.s_net), rt->gateway.s_node,
  924.        rt->flags, rt->dev->name);
  925. pos = begin + len;
  926. if (pos < offset) {
  927. len = 0;
  928. begin = pos;
  929. }
  930. if (pos > offset + length)
  931. break;
  932. }
  933. read_unlock_bh(&atalk_router_lock);
  934. *start = buffer + (offset - begin);
  935. len -= (offset - begin);
  936. if (len > length)
  937. len = length;
  938. return len;
  939. }
  940. /**************************************************************************
  941. *                                                                          *
  942. * Handling for system calls applied via the various interfaces to an       *
  943. * AppleTalk socket object.                                                 *
  944. *                                                                          *
  945. **************************************************************************/
  946. /*
  947.  * Checksum: This is 'optional'. It's quite likely also a good
  948.  * candidate for assembler hackery 8)
  949.  */
  950. unsigned short atalk_checksum(struct ddpehdr *ddp, int len)
  951. {
  952. unsigned long sum = 0; /* Assume unsigned long is >16 bits */
  953. unsigned char *data = (unsigned char *) ddp;
  954. len  -= 4; /* skip header 4 bytes */
  955. data += 4;
  956. /* This ought to be unwrapped neatly. I'll trust gcc for now */
  957. while (len--) {
  958. sum += *data;
  959. sum <<= 1;
  960. if (sum & 0x10000) {
  961. sum++;
  962. sum &= 0xFFFF;
  963. }
  964. data++;
  965. }
  966. /* Use 0xFFFF for 0. 0 itself means none */
  967. return sum ? htons((unsigned short) sum) : 0xFFFF;
  968. }
  969. /*
  970.  * Create a socket. Initialise the socket, blank the addresses
  971.  * set the state.
  972.  */
  973. static int atalk_create(struct socket *sock, int protocol)
  974. {
  975. struct sock *sk = sk_alloc(PF_APPLETALK, GFP_KERNEL, 1);
  976. if (!sk)
  977. return -ENOMEM;
  978. switch (sock->type) {
  979. /*
  980.  * We permit SOCK_DGRAM and RAW is an extension. It is
  981.  * trivial to do and gives you the full ELAP frame.
  982.  * Should be handy for CAP 8) 
  983.  */
  984. case SOCK_RAW:
  985. case SOCK_DGRAM:
  986. sock->ops = &atalk_dgram_ops;
  987. break;
  988. case SOCK_STREAM:
  989. /*
  990.  * TODO: if you want to implement ADSP, here's the
  991.  * place to start
  992.  */
  993. /*
  994. sock->ops = &atalk_stream_ops;
  995. break;
  996. */
  997. default:
  998. sk_free(sk);
  999. return -ESOCKTNOSUPPORT;
  1000. }
  1001. MOD_INC_USE_COUNT;
  1002. sock_init_data(sock, sk);
  1003. sk->destruct = NULL;
  1004. /* Checksums on by default */
  1005. sk->zapped = 1;
  1006. return 0;
  1007. }
  1008. /* Free a socket. No work needed */
  1009. static int atalk_release(struct socket *sock)
  1010. {
  1011. struct sock *sk = sock->sk;
  1012. if (!sk)
  1013. return 0;
  1014. if (!sk->dead)
  1015. sk->state_change(sk);
  1016. sk->dead = 1;
  1017. sock->sk = NULL;
  1018. atalk_destroy_socket(sk);
  1019. return 0;
  1020. }
  1021. /*
  1022.  * Pick a source port when one is not given. If we can
  1023.  * find a suitable free one, we insert the socket into
  1024.  * the tables using it.
  1025.  *
  1026.  * This whole operation must be atomic.
  1027.  */
  1028. static int atalk_pick_and_bind_port(struct sock *sk, struct sockaddr_at *sat)
  1029. {
  1030. struct sock *s;
  1031. int retval;
  1032. spin_lock_bh(&atalk_sockets_lock);
  1033. for (sat->sat_port = ATPORT_RESERVED;
  1034.      sat->sat_port < ATPORT_LAST;
  1035.      sat->sat_port++) {
  1036. for (s = atalk_sockets; s; s = s->next) {
  1037. if (s->protinfo.af_at.src_net == sat->sat_addr.s_net &&
  1038.     s->protinfo.af_at.src_node ==
  1039.      sat->sat_addr.s_node &&
  1040.     s->protinfo.af_at.src_port == sat->sat_port)
  1041. goto try_next_port;
  1042. }
  1043. /* Wheee, it's free, assign and insert. */
  1044. sk->next = atalk_sockets;
  1045. if (sk->next)
  1046. atalk_sockets->pprev = &sk->next;
  1047. atalk_sockets = sk;
  1048. sk->pprev = &atalk_sockets;
  1049. sk->protinfo.af_at.src_port = sat->sat_port;
  1050. retval = 0;
  1051. goto out;
  1052. try_next_port:
  1053. ;
  1054. }
  1055. retval = -EBUSY;
  1056. out: spin_unlock_bh(&atalk_sockets_lock);
  1057. return retval;
  1058. }
  1059. static int atalk_autobind(struct sock *sk)
  1060. {
  1061. struct sockaddr_at sat;
  1062. int n;
  1063. struct at_addr *ap = atalk_find_primary();
  1064. if (!ap || ap->s_net == htons(ATADDR_ANYNET))
  1065. return -EADDRNOTAVAIL;
  1066. sk->protinfo.af_at.src_net  = sat.sat_addr.s_net  = ap->s_net;
  1067. sk->protinfo.af_at.src_node = sat.sat_addr.s_node = ap->s_node;
  1068. n = atalk_pick_and_bind_port(sk, &sat);
  1069. if (n < 0)
  1070. return n;
  1071. sk->zapped = 0;
  1072. return 0;
  1073. }
  1074. /* Set the address 'our end' of the connection */
  1075. static int atalk_bind(struct socket *sock, struct sockaddr *uaddr, int addr_len)
  1076. {
  1077. struct sockaddr_at *addr = (struct sockaddr_at *)uaddr;
  1078. struct sock *sk = sock->sk;
  1079. if (!sk->zapped || addr_len != sizeof(struct sockaddr_at))
  1080. return -EINVAL;
  1081. if (addr->sat_family != AF_APPLETALK)
  1082. return -EAFNOSUPPORT;
  1083. if (addr->sat_addr.s_net == htons(ATADDR_ANYNET)) {
  1084. struct at_addr *ap = atalk_find_primary();
  1085. if (!ap)
  1086. return -EADDRNOTAVAIL;
  1087. sk->protinfo.af_at.src_net  = addr->sat_addr.s_net = ap->s_net;
  1088. sk->protinfo.af_at.src_node = addr->sat_addr.s_node= ap->s_node;
  1089. } else {
  1090. if (!atalk_find_interface(addr->sat_addr.s_net,
  1091.   addr->sat_addr.s_node))
  1092. return -EADDRNOTAVAIL;
  1093. sk->protinfo.af_at.src_net  = addr->sat_addr.s_net;
  1094. sk->protinfo.af_at.src_node = addr->sat_addr.s_node;
  1095. }
  1096. if (addr->sat_port == ATADDR_ANYPORT) {
  1097. int n = atalk_pick_and_bind_port(sk, addr);
  1098. if (n < 0)
  1099. return n;
  1100. } else {
  1101. sk->protinfo.af_at.src_port = addr->sat_port;
  1102. if (atalk_find_or_insert_socket(sk, addr))
  1103. return -EADDRINUSE;
  1104. }
  1105. sk->zapped = 0;
  1106. return 0;
  1107. }
  1108. /* Set the address we talk to */
  1109. static int atalk_connect(struct socket *sock, struct sockaddr *uaddr,
  1110.  int addr_len, int flags)
  1111. {
  1112. struct sock *sk = sock->sk;
  1113. struct sockaddr_at *addr;
  1114. sk->state   = TCP_CLOSE;
  1115. sock->state = SS_UNCONNECTED;
  1116. if (addr_len != sizeof(*addr))
  1117. return -EINVAL;
  1118. addr = (struct sockaddr_at *)uaddr;
  1119. if (addr->sat_family != AF_APPLETALK)
  1120. return -EAFNOSUPPORT;
  1121. if (addr->sat_addr.s_node == ATADDR_BCAST && !sk->broadcast) {
  1122. #if 1
  1123. printk(KERN_WARNING "%s is broken and did not set "
  1124.     "SO_BROADCAST. It will break when 2.2 is "
  1125.     "released.n",
  1126. current->comm);
  1127. #else
  1128. return -EACCES;
  1129. #endif
  1130. }
  1131. if (sk->zapped)
  1132. if (atalk_autobind(sk) < 0)
  1133. return -EBUSY;
  1134. if (!atrtr_get_dev(&addr->sat_addr))
  1135. return -ENETUNREACH;
  1136. sk->protinfo.af_at.dest_port = addr->sat_port;
  1137. sk->protinfo.af_at.dest_net  = addr->sat_addr.s_net;
  1138. sk->protinfo.af_at.dest_node = addr->sat_addr.s_node;
  1139. sock->state = SS_CONNECTED;
  1140. sk->state   = TCP_ESTABLISHED;
  1141. return 0;
  1142. }
  1143. /*
  1144.  * Find the name of an AppleTalk socket. Just copy the right
  1145.  * fields into the sockaddr.
  1146.  */
  1147. static int atalk_getname(struct socket *sock, struct sockaddr *uaddr,
  1148.  int *uaddr_len, int peer)
  1149. {
  1150. struct sockaddr_at sat;
  1151. struct sock *sk = sock->sk;
  1152. if (sk->zapped)
  1153. if (atalk_autobind(sk) < 0)
  1154. return -ENOBUFS;
  1155. *uaddr_len = sizeof(struct sockaddr_at);
  1156. if (peer) {
  1157. if (sk->state != TCP_ESTABLISHED)
  1158. return -ENOTCONN;
  1159. sat.sat_addr.s_net  = sk->protinfo.af_at.dest_net;
  1160. sat.sat_addr.s_node = sk->protinfo.af_at.dest_node;
  1161. sat.sat_port = sk->protinfo.af_at.dest_port;
  1162. } else {
  1163. sat.sat_addr.s_net  = sk->protinfo.af_at.src_net;
  1164. sat.sat_addr.s_node = sk->protinfo.af_at.src_node;
  1165. sat.sat_port = sk->protinfo.af_at.src_port;
  1166. }
  1167. sat.sat_family = AF_APPLETALK;
  1168. memcpy(uaddr, &sat, sizeof(sat));
  1169. return 0;
  1170. }
  1171. /*
  1172.  * Receive a packet (in skb) from device dev. This has come from the SNAP
  1173.  * decoder, and on entry skb->h.raw is the DDP header, skb->len is the DDP
  1174.  * header, skb->len is the DDP length. The physical headers have been
  1175.  * extracted. PPP should probably pass frames marked as for this layer.
  1176.  * [ie ARPHRD_ETHERTALK]
  1177.  */
  1178. static int atalk_rcv(struct sk_buff *skb, struct net_device *dev,
  1179. struct packet_type *pt)
  1180. {
  1181. struct ddpehdr *ddp = (void *) skb->h.raw;
  1182. struct sock *sock;
  1183. struct atalk_iface *atif;
  1184. struct sockaddr_at tosat;
  1185.         int origlen;
  1186.         struct ddpebits ddphv;
  1187. /* Size check */
  1188. if (skb->len < sizeof(*ddp))
  1189. goto freeit;
  1190. /*
  1191.  * Fix up the length field [Ok this is horrible but otherwise
  1192.  * I end up with unions of bit fields and messy bit field order
  1193.  * compiler/endian dependencies..]
  1194.  *
  1195.  * FIXME: This is a write to a shared object. Granted it
  1196.  * happens to be safe BUT.. (Its safe as user space will not
  1197.  * run until we put it back)
  1198.  */
  1199. *((__u16 *)&ddphv) = ntohs(*((__u16 *)ddp));
  1200. /* Trim buffer in case of stray trailing data */
  1201. origlen = skb->len;
  1202. skb_trim(skb, min_t(unsigned int, skb->len, ddphv.deh_len));
  1203. /*
  1204.  * Size check to see if ddp->deh_len was crap
  1205.  * (Otherwise we'll detonate most spectacularly
  1206.  * in the middle of recvmsg()).
  1207.  */
  1208. if (skb->len < sizeof(*ddp))
  1209. goto freeit;
  1210. /*
  1211.  * Any checksums. Note we don't do htons() on this == is assumed to be
  1212.  * valid for net byte orders all over the networking code...
  1213.  */
  1214. if (ddp->deh_sum &&
  1215.     atalk_checksum(ddp, ddphv.deh_len) != ddp->deh_sum)
  1216. /* Not a valid AppleTalk frame - dustbin time */
  1217. goto freeit;
  1218. /* Check the packet is aimed at us */
  1219. if (!ddp->deh_dnet) /* Net 0 is 'this network' */
  1220. atif = atalk_find_anynet(ddp->deh_dnode, dev);
  1221. else
  1222. atif = atalk_find_interface(ddp->deh_dnet, ddp->deh_dnode);
  1223. /* Not ours, so we route the packet via the correct AppleTalk iface */
  1224. if (!atif) {
  1225. struct atalk_route *rt;
  1226. struct at_addr ta;
  1227. /*
  1228.  * Don't route multicast, etc., packets, or packets
  1229.  * sent to "this network" 
  1230.  */
  1231. if (skb->pkt_type != PACKET_HOST || !ddp->deh_dnet) {
  1232. /* FIXME:
  1233.  * Can it ever happen that a packet is from a PPP
  1234.  * iface and needs to be broadcast onto the default
  1235.  * network? */
  1236. if (dev->type == ARPHRD_PPP)
  1237. printk(KERN_DEBUG "AppleTalk: didn't forward "
  1238.   "broadcast packet received "
  1239.   "from PPP ifacen");
  1240. goto freeit;
  1241. }
  1242. ta.s_net  = ddp->deh_dnet;
  1243. ta.s_node = ddp->deh_dnode;
  1244. /* Route the packet */
  1245. rt = atrtr_find(&ta);
  1246. if (!rt || ddphv.deh_hops == DDP_MAXHOPS)
  1247. goto freeit;
  1248. ddphv.deh_hops++;
  1249. /*
  1250.  * Route goes through another gateway, so
  1251.  * set the target to the gateway instead.
  1252.  */
  1253. if (rt->flags & RTF_GATEWAY) {
  1254. ta.s_net  = rt->gateway.s_net;
  1255. ta.s_node = rt->gateway.s_node;
  1256. }
  1257.                 /* Fix up skb->len field */
  1258.                 skb_trim(skb, min_t(unsigned int, origlen, rt->dev->hard_header_len +
  1259. ddp_dl->header_length + ddphv.deh_len));
  1260. /* Mend the byte order */
  1261. *((__u16 *)ddp) = ntohs(*((__u16 *)&ddphv));
  1262. /*
  1263.  * Send the buffer onwards
  1264.  *
  1265.  * Now we must always be careful. If it's come from 
  1266.  * LocalTalk to EtherTalk it might not fit
  1267.  *
  1268.  * Order matters here: If a packet has to be copied
  1269.  * to make a new headroom (rare hopefully) then it
  1270.  * won't need unsharing.
  1271.  *
  1272.  * Note. ddp-> becomes invalid at the realloc.
  1273.  */
  1274. if (skb_headroom(skb) < 22) {
  1275. /* 22 bytes - 12 ether, 2 len, 3 802.2 5 snap */
  1276. struct sk_buff *nskb = skb_realloc_headroom(skb, 32);
  1277. kfree_skb(skb);
  1278. if (!nskb) 
  1279. goto out;
  1280. skb = nskb;
  1281. } else
  1282. skb = skb_unshare(skb, GFP_ATOMIC);
  1283. /*
  1284.  * If the buffer didn't vanish into the lack of
  1285.  * space bitbucket we can send it.
  1286.  */
  1287. if (skb && aarp_send_ddp(rt->dev, skb, &ta, NULL) == -1)
  1288. goto freeit;
  1289. goto out;
  1290. }
  1291. #if defined(CONFIG_IPDDP) || defined(CONFIG_IPDDP_MODULE)
  1292.         /* Check if IP-over-DDP */
  1293.         if (skb->data[12] == 22) {
  1294.                 struct net_device *dev = __dev_get_by_name("ipddp0");
  1295. struct net_device_stats *stats;
  1296. /* This needs to be able to handle ipddp"N" devices */
  1297.                 if (!dev)
  1298.                         return -ENODEV;
  1299.                 skb->protocol = htons(ETH_P_IP);
  1300.                 skb_pull(skb, 13);
  1301.                 skb->dev = dev;
  1302.                 skb->h.raw = skb->data;
  1303. stats = dev->priv;
  1304.                 stats->rx_packets++;
  1305.                 stats->rx_bytes += skb->len + 13;
  1306.                 netif_rx(skb);  /* Send the SKB up to a higher place. */
  1307. goto out;
  1308.         }
  1309. #endif
  1310. /*
  1311.  * Which socket - atalk_search_socket() looks for a *full match*
  1312.  * of the <net,node,port> tuple.
  1313.  */
  1314. tosat.sat_addr.s_net  = ddp->deh_dnet;
  1315. tosat.sat_addr.s_node = ddp->deh_dnode;
  1316. tosat.sat_port = ddp->deh_dport;
  1317. sock = atalk_search_socket(&tosat, atif);
  1318. if (!sock) /* But not one of our sockets */
  1319. goto freeit;
  1320. /* Queue packet (standard) */
  1321. skb->sk = sock;
  1322. if (sock_queue_rcv_skb(sock, skb) < 0)
  1323. goto freeit;
  1324. goto out;
  1325. freeit: kfree_skb(skb);
  1326. out: return 0;
  1327. }
  1328. /*
  1329.  * Receive a LocalTalk frame. We make some demands on the caller here.
  1330.  * Caller must provide enough headroom on the packet to pull the short
  1331.  * header and append a long one.
  1332.  */
  1333. static int ltalk_rcv(struct sk_buff *skb, struct net_device *dev,
  1334. struct packet_type *pt)
  1335. {
  1336. struct ddpehdr *ddp;
  1337. struct at_addr *ap;
  1338. /* Expand any short form frames */
  1339. if (skb->mac.raw[2] == 1) {
  1340. /* Find our address */
  1341. ap = atalk_find_dev_addr(dev);
  1342. if (!ap || skb->len < sizeof(struct ddpshdr)) {
  1343. kfree_skb(skb);
  1344. return 0;
  1345. }
  1346. /*
  1347.  * The push leaves us with a ddephdr not an shdr, and
  1348.  * handily the port bytes in the right place preset.
  1349.  */
  1350. skb_push(skb, sizeof(*ddp) - 4);
  1351. ddp = (struct ddpehdr *)skb->data;
  1352. /* Now fill in the long header */
  1353.   /*
  1354.    * These two first. The mac overlays the new source/dest
  1355.    * network information so we MUST copy these before
  1356.    * we write the network numbers !
  1357.    */
  1358. ddp->deh_dnode = skb->mac.raw[0];     /* From physical header */
  1359. ddp->deh_snode = skb->mac.raw[1];     /* From physical header */
  1360. ddp->deh_dnet  = ap->s_net; /* Network number */
  1361. ddp->deh_snet  = ap->s_net;
  1362. ddp->deh_sum   = 0; /* No checksum */
  1363. /*
  1364.  * Not sure about this bit...
  1365.  */
  1366. ddp->deh_len   = skb->len;
  1367. ddp->deh_hops  = DDP_MAXHOPS; /* Non routable, so force a drop
  1368.    if we slip up later */
  1369. /* Mend the byte order */
  1370. *((__u16 *)ddp) = htons(*((__u16 *)ddp));
  1371. }
  1372. skb->h.raw = skb->data;
  1373. return atalk_rcv(skb, dev, pt);
  1374. }
  1375. static int atalk_sendmsg(struct socket *sock, struct msghdr *msg, int len,
  1376. struct scm_cookie *scm)
  1377. {
  1378. struct sock *sk = sock->sk;
  1379. struct sockaddr_at *usat = (struct sockaddr_at *)msg->msg_name;
  1380. int flags = msg->msg_flags;
  1381. int loopback = 0;
  1382. struct sockaddr_at local_satalk, gsat;
  1383. struct sk_buff *skb;
  1384. struct net_device *dev;
  1385. struct ddpehdr *ddp;
  1386. int size;
  1387. struct atalk_route *rt;
  1388. int err;
  1389. if (flags & ~MSG_DONTWAIT)
  1390. return -EINVAL;
  1391. if (len > DDP_MAXSZ)
  1392. return -EMSGSIZE;
  1393. if (usat) {
  1394. if (sk->zapped)
  1395. if (atalk_autobind(sk) < 0)
  1396. return -EBUSY;
  1397. if (msg->msg_namelen < sizeof(*usat) ||
  1398.     usat->sat_family != AF_APPLETALK)
  1399. return -EINVAL;
  1400. /* netatalk doesn't implement this check */
  1401. if (usat->sat_addr.s_node == ATADDR_BCAST && !sk->broadcast) {
  1402. printk(KERN_INFO "SO_BROADCAST: Fix your netatalk as "
  1403.  "it will break before 2.2n");
  1404. #if 0
  1405. return -EPERM;
  1406. #endif
  1407. }
  1408. } else {
  1409. if (sk->state != TCP_ESTABLISHED)
  1410. return -ENOTCONN;
  1411. usat = &local_satalk;
  1412. usat->sat_family = AF_APPLETALK;
  1413. usat->sat_port   = sk->protinfo.af_at.dest_port;
  1414. usat->sat_addr.s_node = sk->protinfo.af_at.dest_node;
  1415. usat->sat_addr.s_net  = sk->protinfo.af_at.dest_net;
  1416. }
  1417. /* Build a packet */
  1418. SOCK_DEBUG(sk, "SK %p: Got address.n", sk);
  1419. /* For headers */
  1420. size = sizeof(struct ddpehdr) + len + ddp_dl->header_length;
  1421. if (usat->sat_addr.s_net || usat->sat_addr.s_node == ATADDR_ANYNODE) {
  1422. rt = atrtr_find(&usat->sat_addr);
  1423. if (!rt)
  1424. return -ENETUNREACH;
  1425. dev = rt->dev;
  1426. } else {
  1427. struct at_addr at_hint;
  1428. at_hint.s_node = 0;
  1429. at_hint.s_net  = sk->protinfo.af_at.src_net;
  1430. rt = atrtr_find(&at_hint);
  1431. if (!rt)
  1432. return -ENETUNREACH;
  1433. dev = rt->dev;
  1434. }
  1435. SOCK_DEBUG(sk, "SK %p: Size needed %d, device %sn",
  1436. sk, size, dev->name);
  1437. size += dev->hard_header_len;
  1438. skb = sock_alloc_send_skb(sk, size, (flags & MSG_DONTWAIT), &err);
  1439. if (!skb)
  1440. return err;
  1441. skb->sk = sk;
  1442. skb_reserve(skb, ddp_dl->header_length);
  1443. skb_reserve(skb, dev->hard_header_len);
  1444. skb->dev = dev;
  1445. SOCK_DEBUG(sk, "SK %p: Begin build.n", sk);
  1446. ddp = (struct ddpehdr *)skb_put(skb, sizeof(struct ddpehdr));
  1447. ddp->deh_pad  = 0;
  1448. ddp->deh_hops = 0;
  1449. ddp->deh_len  = len + sizeof(*ddp);
  1450. /*
  1451.  * Fix up the length field [Ok this is horrible but otherwise
  1452.  * I end up with unions of bit fields and messy bit field order
  1453.  * compiler/endian dependencies..
  1454.  */
  1455. *((__u16 *)ddp) = ntohs(*((__u16 *)ddp));
  1456. ddp->deh_dnet  = usat->sat_addr.s_net;
  1457. ddp->deh_snet  = sk->protinfo.af_at.src_net;
  1458. ddp->deh_dnode = usat->sat_addr.s_node;
  1459. ddp->deh_snode = sk->protinfo.af_at.src_node;
  1460. ddp->deh_dport = usat->sat_port;
  1461. ddp->deh_sport = sk->protinfo.af_at.src_port;
  1462. SOCK_DEBUG(sk, "SK %p: Copy user data (%d bytes).n", sk, len);
  1463. err = memcpy_fromiovec(skb_put(skb, len), msg->msg_iov, len);
  1464. if (err) {
  1465. kfree_skb(skb);
  1466. return -EFAULT;
  1467. }
  1468. if (sk->no_check == 1)
  1469. ddp->deh_sum = 0;
  1470. else
  1471. ddp->deh_sum = atalk_checksum(ddp, len + sizeof(*ddp));
  1472. /*
  1473.  * Loopback broadcast packets to non gateway targets (ie routes
  1474.  * to group we are in)
  1475.  */
  1476. if (ddp->deh_dnode == ATADDR_BCAST &&
  1477.     !(rt->flags & RTF_GATEWAY) && !(dev->flags & IFF_LOOPBACK)) {
  1478. struct sk_buff *skb2 = skb_copy(skb, GFP_KERNEL);
  1479. if (skb2) {
  1480. loopback = 1;
  1481. SOCK_DEBUG(sk, "SK %p: send out(copy).n", sk);
  1482. if (aarp_send_ddp(dev, skb2,
  1483.   &usat->sat_addr, NULL) == -1)
  1484. kfree_skb(skb2);
  1485. /* else queued/sent above in the aarp queue */
  1486. }
  1487. }
  1488. if (dev->flags & IFF_LOOPBACK || loopback) {
  1489. SOCK_DEBUG(sk, "SK %p: Loop back.n", sk);
  1490. /* loop back */
  1491. skb_orphan(skb);
  1492. ddp_dl->datalink_header(ddp_dl, skb, dev->dev_addr);
  1493. skb->mac.raw = skb->data;
  1494. skb->h.raw   = skb->data + ddp_dl->header_length +
  1495. dev->hard_header_len;
  1496. skb_pull(skb, dev->hard_header_len);
  1497. skb_pull(skb, ddp_dl->header_length);
  1498. atalk_rcv(skb, dev, NULL);
  1499. } else {
  1500. SOCK_DEBUG(sk, "SK %p: send out.n", sk);
  1501. if (rt->flags & RTF_GATEWAY) {
  1502.     gsat.sat_addr = rt->gateway;
  1503.     usat = &gsat;
  1504. }
  1505. if (aarp_send_ddp(dev, skb, &usat->sat_addr, NULL) == -1)
  1506. kfree_skb(skb);
  1507. /* else queued/sent above in the aarp queue */
  1508. }
  1509. SOCK_DEBUG(sk, "SK %p: Done write (%d).n", sk, len);
  1510. return len;
  1511. }
  1512. static int atalk_recvmsg(struct socket *sock, struct msghdr *msg, int size,
  1513.  int flags, struct scm_cookie *scm)
  1514. {
  1515. struct sock *sk = sock->sk;
  1516. struct sockaddr_at *sat = (struct sockaddr_at *)msg->msg_name;
  1517. struct ddpehdr *ddp = NULL;
  1518. int copied = 0;
  1519. int err = 0;
  1520.         struct ddpebits ddphv;
  1521. struct sk_buff *skb;
  1522. skb = skb_recv_datagram(sk, flags & ~MSG_DONTWAIT,
  1523. flags & MSG_DONTWAIT, &err);
  1524. if (!skb)
  1525. return err;
  1526. ddp = (struct ddpehdr *)(skb->h.raw);
  1527. *((__u16 *)&ddphv) = ntohs(*((__u16 *)ddp));
  1528. if (sk->type == SOCK_RAW) {
  1529. copied = ddphv.deh_len;
  1530. if (copied > size) {
  1531. copied = size;
  1532. msg->msg_flags |= MSG_TRUNC;
  1533. }
  1534. err = skb_copy_datagram_iovec(skb, 0, msg->msg_iov, copied);
  1535. } else {
  1536. copied = ddphv.deh_len - sizeof(*ddp);
  1537. if (copied > size) {
  1538. copied = size;
  1539. msg->msg_flags |= MSG_TRUNC;
  1540. }
  1541. err = skb_copy_datagram_iovec(skb, sizeof(*ddp),
  1542. msg->msg_iov, copied);
  1543. }
  1544. if (!err) {
  1545. if (sat) {
  1546. sat->sat_family      = AF_APPLETALK;
  1547. sat->sat_port        = ddp->deh_sport;
  1548. sat->sat_addr.s_node = ddp->deh_snode;
  1549. sat->sat_addr.s_net  = ddp->deh_snet;
  1550. }
  1551. msg->msg_namelen = sizeof(*sat);
  1552. }
  1553. skb_free_datagram(sk, skb); /* Free the datagram. */
  1554. return err ? err : copied;
  1555. }
  1556. /*
  1557.  * AppleTalk ioctl calls.
  1558.  */
  1559. static int atalk_ioctl(struct socket *sock,unsigned int cmd, unsigned long arg)
  1560. {
  1561. long amount = 0;
  1562. struct sock *sk = sock->sk;
  1563. switch (cmd) {
  1564. /* Protocol layer */
  1565. case TIOCOUTQ:
  1566. amount = sk->sndbuf - atomic_read(&sk->wmem_alloc);
  1567. if (amount < 0)
  1568. amount = 0;
  1569. break;
  1570. case TIOCINQ:
  1571. {
  1572. /* These two are safe on a single CPU system as only
  1573.  * user tasks fiddle here */
  1574. struct sk_buff *skb = skb_peek(&sk->receive_queue);
  1575. if (skb)
  1576. amount = skb->len-sizeof(struct ddpehdr);
  1577. break;
  1578. }
  1579. case SIOCGSTAMP:
  1580. if (!sk)
  1581. return -EINVAL;
  1582. if (!sk->stamp.tv_sec)
  1583. return -ENOENT;
  1584. return copy_to_user((void *)arg, &sk->stamp,
  1585. sizeof(struct timeval)) ? -EFAULT : 0;
  1586. /* Routing */
  1587. case SIOCADDRT:
  1588. case SIOCDELRT:
  1589. if (!capable(CAP_NET_ADMIN))
  1590. return -EPERM;
  1591. return atrtr_ioctl(cmd, (void *)arg);
  1592. /* Interface */
  1593. case SIOCGIFADDR:
  1594. case SIOCSIFADDR:
  1595. case SIOCGIFBRDADDR:
  1596. case SIOCATALKDIFADDR:
  1597. case SIOCDIFADDR:
  1598. case SIOCSARP: /* proxy AARP */
  1599. case SIOCDARP: /* proxy AARP */
  1600. {
  1601. int ret;
  1602. rtnl_lock();
  1603. ret = atif_ioctl(cmd, (void *)arg);
  1604. rtnl_unlock();
  1605. return ret;
  1606. }
  1607. /* Physical layer ioctl calls */
  1608. case SIOCSIFLINK:
  1609. case SIOCGIFHWADDR:
  1610. case SIOCSIFHWADDR:
  1611. case SIOCGIFFLAGS:
  1612. case SIOCSIFFLAGS:
  1613. case SIOCGIFMTU:
  1614. case SIOCGIFCONF:
  1615. case SIOCADDMULTI:
  1616. case SIOCDELMULTI:
  1617. case SIOCGIFCOUNT:
  1618. case SIOCGIFINDEX:
  1619. case SIOCGIFNAME:
  1620. return dev_ioctl(cmd,(void *) arg);
  1621. case SIOCSIFMETRIC:
  1622. case SIOCSIFBRDADDR:
  1623. case SIOCGIFNETMASK:
  1624. case SIOCSIFNETMASK:
  1625. case SIOCGIFMEM:
  1626. case SIOCSIFMEM:
  1627. case SIOCGIFDSTADDR:
  1628. case SIOCSIFDSTADDR:
  1629. return -EINVAL;
  1630. default:
  1631. return -EINVAL;
  1632. }
  1633. return put_user(amount, (int *)arg);
  1634. }
  1635. static struct net_proto_family atalk_family_ops =
  1636. {
  1637. PF_APPLETALK,
  1638. atalk_create
  1639. };
  1640. static struct proto_ops SOCKOPS_WRAPPED(atalk_dgram_ops)=
  1641. {
  1642. family: PF_APPLETALK,
  1643. release: atalk_release,
  1644. bind: atalk_bind,
  1645. connect: atalk_connect,
  1646. socketpair: sock_no_socketpair,
  1647. accept: sock_no_accept,
  1648. getname: atalk_getname,
  1649. poll: datagram_poll,
  1650. ioctl: atalk_ioctl,
  1651. listen: sock_no_listen,
  1652. shutdown: sock_no_shutdown,
  1653. setsockopt: sock_no_setsockopt,
  1654. getsockopt: sock_no_getsockopt,
  1655. sendmsg: atalk_sendmsg,
  1656. recvmsg: atalk_recvmsg,
  1657. mmap: sock_no_mmap,
  1658. sendpage: sock_no_sendpage,
  1659. };
  1660. #include <linux/smp_lock.h>
  1661. SOCKOPS_WRAP(atalk_dgram, PF_APPLETALK);
  1662. static struct notifier_block ddp_notifier=
  1663. {
  1664. ddp_device_event,
  1665. NULL,
  1666. 0
  1667. };
  1668. struct packet_type ltalk_packet_type=
  1669. {
  1670. 0,
  1671. NULL,
  1672. ltalk_rcv,
  1673. NULL,
  1674. NULL
  1675. };
  1676. struct packet_type ppptalk_packet_type=
  1677. {
  1678. 0,
  1679. NULL,
  1680. atalk_rcv,
  1681. NULL,
  1682. NULL
  1683. };
  1684. static char ddp_snap_id[] = {0x08, 0x00, 0x07, 0x80, 0x9B};
  1685. /* Export symbols for use by drivers when AppleTalk is a module */
  1686. EXPORT_SYMBOL(aarp_send_ddp);
  1687. EXPORT_SYMBOL(atrtr_get_dev);
  1688. EXPORT_SYMBOL(atalk_find_dev_addr);
  1689. /* Called by proto.c on kernel start up */
  1690. static int __init atalk_init(void)
  1691. {
  1692. (void) sock_register(&atalk_family_ops);
  1693. ddp_dl = register_snap_client(ddp_snap_id, atalk_rcv);
  1694. if (!ddp_dl)
  1695. printk(KERN_CRIT "Unable to register DDP with SNAP.n");
  1696. ltalk_packet_type.type = htons(ETH_P_LOCALTALK);
  1697. dev_add_pack(&ltalk_packet_type);
  1698. ppptalk_packet_type.type = htons(ETH_P_PPPTALK);
  1699. dev_add_pack(&ppptalk_packet_type);
  1700. register_netdevice_notifier(&ddp_notifier);
  1701. aarp_proto_init();
  1702. proc_net_create("appletalk", 0, atalk_get_info);
  1703. proc_net_create("atalk_route", 0, atalk_rt_get_info);
  1704. proc_net_create("atalk_iface", 0, atalk_if_get_info);
  1705. #ifdef CONFIG_PROC_FS
  1706. aarp_register_proc_fs();
  1707. #endif /* CONFIG_PROC_FS */
  1708. #ifdef CONFIG_SYSCTL
  1709. atalk_register_sysctl();
  1710. #endif /* CONFIG_SYSCTL */
  1711. printk(KERN_INFO "NET4: AppleTalk 0.18a for Linux NET4.0n");
  1712. return 0;
  1713. }
  1714. module_init(atalk_init);
  1715. #ifdef MODULE
  1716. /*
  1717.  * Note on MOD_{INC,DEC}_USE_COUNT:
  1718.  *
  1719.  * Use counts are incremented/decremented when
  1720.  * sockets are created/deleted.
  1721.  *
  1722.  * AppleTalk interfaces are not incremented until atalkd is run
  1723.  * and are only decremented when they are downed.
  1724.  *
  1725.  * Ergo, before the AppleTalk module can be removed, all AppleTalk
  1726.  * sockets be closed from user space.
  1727.  */
  1728. static void __exit atalk_exit(void)
  1729. {
  1730. #ifdef CONFIG_SYSCTL
  1731. atalk_unregister_sysctl();
  1732. #endif /* CONFIG_SYSCTL */
  1733. proc_net_remove("appletalk");
  1734. proc_net_remove("atalk_route");
  1735. proc_net_remove("atalk_iface");
  1736. #ifdef CONFIG_PROC_FS
  1737. aarp_unregister_proc_fs();
  1738. #endif /* CONFIG_PROC_FS */
  1739. aarp_cleanup_module(); /* General aarp clean-up. */
  1740. unregister_netdevice_notifier(&ddp_notifier);
  1741. dev_remove_pack(&ltalk_packet_type);
  1742. dev_remove_pack(&ppptalk_packet_type);
  1743. unregister_snap_client(ddp_snap_id);
  1744. sock_unregister(PF_APPLETALK);
  1745. }
  1746. module_exit(atalk_exit);
  1747. #endif  /* MODULE */
  1748. #endif  /* CONFIG_ATALK || CONFIG_ATALK_MODULE */