clip.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:19k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /* net/atm/clip.c - RFC1577 Classical IP over ATM */
  2. /* Written 1995-2000 by Werner Almesberger, EPFL LRC/ICA */
  3. #include <linux/config.h>
  4. #include <linux/string.h>
  5. #include <linux/errno.h>
  6. #include <linux/kernel.h> /* for UINT_MAX */
  7. #include <linux/netdevice.h>
  8. #include <linux/skbuff.h>
  9. #include <linux/wait.h>
  10. #include <linux/timer.h>
  11. #include <linux/if_arp.h> /* for some manifest constants */
  12. #include <linux/notifier.h>
  13. #include <linux/atm.h>
  14. #include <linux/atmdev.h>
  15. #include <linux/atmclip.h>
  16. #include <linux/atmarp.h>
  17. #include <linux/ip.h> /* for net/route.h */
  18. #include <linux/in.h> /* for struct sockaddr_in */
  19. #include <linux/if.h> /* for IFF_UP */
  20. #include <linux/inetdevice.h>
  21. #include <linux/bitops.h>
  22. #include <net/route.h> /* for struct rtable and routing */
  23. #include <net/icmp.h> /* icmp_send */
  24. #include <asm/param.h> /* for HZ */
  25. #include <asm/byteorder.h> /* for htons etc. */
  26. #include <asm/system.h> /* save/restore_flags */
  27. #include <asm/uaccess.h>
  28. #include <asm/atomic.h>
  29. #include "common.h"
  30. #include "resources.h"
  31. #include "ipcommon.h"
  32. #include <net/atmclip.h>
  33. #if 0
  34. #define DPRINTK(format,args...) printk(format,##args)
  35. #else
  36. #define DPRINTK(format,args...)
  37. #endif
  38. struct net_device *clip_devs = NULL;
  39. struct atm_vcc *atmarpd = NULL;
  40. static struct timer_list idle_timer;
  41. static int start_timer = 1;
  42. static int to_atmarpd(enum atmarp_ctrl_type type,int itf,unsigned long ip)
  43. {
  44. struct atmarp_ctrl *ctrl;
  45. struct sk_buff *skb;
  46. DPRINTK("to_atmarpd(%d)n",type);
  47. if (!atmarpd) return -EUNATCH;
  48. skb = alloc_skb(sizeof(struct atmarp_ctrl),GFP_ATOMIC);
  49. if (!skb) return -ENOMEM;
  50. ctrl = (struct atmarp_ctrl *) skb_put(skb,sizeof(struct atmarp_ctrl));
  51. ctrl->type = type;
  52. ctrl->itf_num = itf;
  53. ctrl->ip = ip;
  54. atm_force_charge(atmarpd,skb->truesize);
  55. skb_queue_tail(&atmarpd->recvq,skb);
  56. wake_up(&atmarpd->sleep);
  57. return 0;
  58. }
  59. static void link_vcc(struct clip_vcc *clip_vcc,struct atmarp_entry *entry)
  60. {
  61. DPRINTK("link_vcc %p to entry %p (neigh %p)n",clip_vcc,entry,
  62.     entry->neigh);
  63. clip_vcc->entry = entry;
  64. clip_vcc->xoff = 0; /* @@@ may overrun buffer by one packet */
  65. clip_vcc->next = entry->vccs;
  66. entry->vccs = clip_vcc;
  67. entry->neigh->used = jiffies;
  68. }
  69. static void unlink_clip_vcc(struct clip_vcc *clip_vcc)
  70. {
  71. struct atmarp_entry *entry = clip_vcc->entry;
  72. struct clip_vcc **walk;
  73. if (!entry) {
  74. printk(KERN_CRIT "!clip_vcc->entry (clip_vcc %p)n",clip_vcc);
  75. return;
  76. }
  77. entry->neigh->used = jiffies;
  78. for (walk = &entry->vccs; *walk; walk = &(*walk)->next)
  79. if (*walk == clip_vcc) {
  80. int error;
  81. *walk = clip_vcc->next; /* atomic */
  82. clip_vcc->entry = NULL;
  83. if (clip_vcc->xoff)
  84. netif_wake_queue(entry->neigh->dev);
  85. if (entry->vccs) return;
  86. entry->expires = jiffies-1;
  87. /* force resolution or expiration */
  88. error = neigh_update(entry->neigh,NULL,NUD_NONE,0,0);
  89. if (error)
  90. printk(KERN_CRIT "unlink_clip_vcc: "
  91.     "neigh_update failed with %dn",error);
  92. return;
  93. }
  94. printk(KERN_CRIT "ATMARP: unlink_clip_vcc failed (entry %p, vcc "
  95.   "0x%p)n",entry,clip_vcc);
  96. }
  97. static void idle_timer_check(unsigned long dummy)
  98. {
  99. int i;
  100. /*DPRINTK("idle_timer_checkn");*/
  101. write_lock(&clip_tbl.lock);
  102. for (i = 0; i <= NEIGH_HASHMASK; i++) {
  103. struct neighbour **np;
  104. for (np = &clip_tbl.hash_buckets[i]; *np;) {
  105. struct neighbour *n = *np;
  106. struct atmarp_entry *entry = NEIGH2ENTRY(n);
  107. struct clip_vcc *clip_vcc;
  108. for (clip_vcc = entry->vccs; clip_vcc;
  109.     clip_vcc = clip_vcc->next)
  110. if (clip_vcc->idle_timeout &&
  111.     time_after(jiffies, clip_vcc->last_use+
  112.     clip_vcc->idle_timeout)) {
  113. DPRINTK("releasing vcc %p->%p of "
  114.     "entry %pn",clip_vcc,clip_vcc->vcc,
  115.     entry);
  116. atm_async_release_vcc(clip_vcc->vcc,
  117.     -ETIMEDOUT);
  118. }
  119. if (entry->vccs ||
  120.     time_before(jiffies, entry->expires)) {
  121. np = &n->next;
  122. continue;
  123. }
  124. if (atomic_read(&n->refcnt) > 1) {
  125. struct sk_buff *skb;
  126. DPRINTK("destruction postponed with ref %dn",
  127.     atomic_read(&n->refcnt));
  128. while ((skb = skb_dequeue(&n->arp_queue)) !=
  129.      NULL) 
  130. dev_kfree_skb(skb);
  131. np = &n->next;
  132. continue;
  133. }
  134. *np = n->next;
  135. DPRINTK("expired neigh %pn",n);
  136. n->dead = 1;
  137. neigh_release(n);
  138. }
  139. }
  140. mod_timer(&idle_timer, jiffies+CLIP_CHECK_INTERVAL*HZ);
  141. write_unlock(&clip_tbl.lock);
  142. }
  143. static int clip_arp_rcv(struct sk_buff *skb)
  144. {
  145. struct atm_vcc *vcc;
  146. DPRINTK("clip_arp_rcvn");
  147. vcc = ATM_SKB(skb)->vcc;
  148. if (!vcc || !atm_charge(vcc,skb->truesize)) {
  149. dev_kfree_skb_any(skb);
  150. return 0;
  151. }
  152. DPRINTK("pushing to %pn",vcc);
  153. DPRINTK("using %pn",CLIP_VCC(vcc)->old_push);
  154. CLIP_VCC(vcc)->old_push(vcc,skb);
  155. return 0;
  156. }
  157. void clip_push(struct atm_vcc *vcc,struct sk_buff *skb)
  158. {
  159. struct clip_vcc *clip_vcc = CLIP_VCC(vcc);
  160. DPRINTK("clip pushn");
  161. if (!skb) {
  162. DPRINTK("removing VCC %pn",clip_vcc);
  163. if (clip_vcc->entry) unlink_clip_vcc(clip_vcc);
  164. clip_vcc->old_push(vcc,NULL); /* pass on the bad news */
  165. kfree(clip_vcc);
  166. return;
  167. }
  168. atm_return(vcc,skb->truesize);
  169. skb->dev = clip_vcc->entry ? clip_vcc->entry->neigh->dev : clip_devs;
  170. /* clip_vcc->entry == NULL if we don't have an IP address yet */
  171. if (!skb->dev) {
  172. dev_kfree_skb_any(skb);
  173. return;
  174. }
  175. ATM_SKB(skb)->vcc = vcc;
  176. skb->mac.raw = skb->data;
  177. if (!clip_vcc->encap || skb->len < RFC1483LLC_LEN || memcmp(skb->data,
  178.     llc_oui,sizeof(llc_oui))) skb->protocol = htons(ETH_P_IP);
  179. else {
  180. skb->protocol = ((u16 *) skb->data)[3];
  181. skb_pull(skb,RFC1483LLC_LEN);
  182. if (skb->protocol == htons(ETH_P_ARP)) {
  183. PRIV(skb->dev)->stats.rx_packets++;
  184. PRIV(skb->dev)->stats.rx_bytes += skb->len;
  185. clip_arp_rcv(skb);
  186. return;
  187. }
  188. }
  189. clip_vcc->last_use = jiffies;
  190. PRIV(skb->dev)->stats.rx_packets++;
  191. PRIV(skb->dev)->stats.rx_bytes += skb->len;
  192. netif_rx(skb);
  193. }
  194. /*
  195.  * Note: these spinlocks _must_not_ block on non-SMP. The only goal is that
  196.  * clip_pop is atomic with respect to the critical section in clip_start_xmit.
  197.  */
  198. static void clip_pop(struct atm_vcc *vcc,struct sk_buff *skb)
  199. {
  200. struct clip_vcc *clip_vcc = CLIP_VCC(vcc);
  201. struct net_device *dev = skb->dev;
  202. int old;
  203. unsigned long flags;
  204. DPRINTK("clip_pop(vcc %p)n",vcc);
  205. clip_vcc->old_pop(vcc,skb);
  206. /* skb->dev == NULL in outbound ARP packets */
  207. if (!dev) return;
  208. spin_lock_irqsave(&PRIV(dev)->xoff_lock,flags);
  209. if (atm_may_send(vcc,0)) {
  210. old = xchg(&clip_vcc->xoff,0);
  211. if (old) netif_wake_queue(dev);
  212. }
  213. spin_unlock_irqrestore(&PRIV(dev)->xoff_lock,flags);
  214. }
  215. static void clip_neigh_destroy(struct neighbour *neigh)
  216. {
  217. DPRINTK("clip_neigh_destroy (neigh %p)n",neigh);
  218. if (NEIGH2ENTRY(neigh)->vccs)
  219. printk(KERN_CRIT "clip_neigh_destroy: vccs != NULL !!!n");
  220. NEIGH2ENTRY(neigh)->vccs = (void *) 0xdeadbeef;
  221. }
  222. static void clip_neigh_solicit(struct neighbour *neigh,struct sk_buff *skb)
  223. {
  224. DPRINTK("clip_neigh_solicit (neigh %p, skb %p)n",neigh,skb);
  225. to_atmarpd(act_need,PRIV(neigh->dev)->number,NEIGH2ENTRY(neigh)->ip);
  226. }
  227. static void clip_neigh_error(struct neighbour *neigh,struct sk_buff *skb)
  228. {
  229. #ifndef CONFIG_ATM_CLIP_NO_ICMP
  230. icmp_send(skb,ICMP_DEST_UNREACH,ICMP_HOST_UNREACH,0);
  231. #endif
  232. kfree_skb(skb);
  233. }
  234. static struct neigh_ops clip_neigh_ops = {
  235. family: AF_INET,
  236. destructor: clip_neigh_destroy,
  237. solicit: clip_neigh_solicit,
  238. error_report: clip_neigh_error,
  239. output: dev_queue_xmit,
  240. connected_output: dev_queue_xmit,
  241. hh_output: dev_queue_xmit,
  242. queue_xmit: dev_queue_xmit,
  243. };
  244. static int clip_constructor(struct neighbour *neigh)
  245. {
  246. struct atmarp_entry *entry = NEIGH2ENTRY(neigh);
  247. struct net_device *dev = neigh->dev;
  248. struct in_device *in_dev = dev->ip_ptr;
  249. DPRINTK("clip_constructor (neigh %p, entry %p)n",neigh,entry);
  250. if (!in_dev) return -EINVAL;
  251. neigh->type = inet_addr_type(entry->ip);
  252. if (neigh->type != RTN_UNICAST) return -EINVAL;
  253. if (in_dev->arp_parms) neigh->parms = in_dev->arp_parms;
  254. neigh->ops = &clip_neigh_ops;
  255. neigh->output = neigh->nud_state & NUD_VALID ?
  256.     neigh->ops->connected_output : neigh->ops->output;
  257. entry->neigh = neigh;
  258. entry->vccs = NULL;
  259. entry->expires = jiffies-1;
  260. return 0;
  261. }
  262. static u32 clip_hash(const void *pkey, const struct net_device *dev)
  263. {
  264. u32 hash_val;
  265. hash_val = *(u32*)pkey;
  266. hash_val ^= (hash_val>>16);
  267. hash_val ^= hash_val>>8;
  268. hash_val ^= hash_val>>3;
  269. hash_val = (hash_val^dev->ifindex)&NEIGH_HASHMASK;
  270. return hash_val;
  271. }
  272. struct neigh_table clip_tbl = {
  273. NULL, /* next */
  274. AF_INET, /* family */
  275. sizeof(struct neighbour)+sizeof(struct atmarp_entry), /* entry_size */
  276. 4, /* key_len */
  277. clip_hash,
  278. clip_constructor, /* constructor */
  279. NULL, /* pconstructor */
  280. NULL, /* pdestructor */
  281. NULL, /* proxy_redo */
  282. "clip_arp_cache",
  283. { /* neigh_parms */
  284. NULL, /* next */
  285. NULL, /* neigh_setup */
  286. &clip_tbl, /* tbl */
  287. 0, /* entries */
  288. NULL, /* priv */
  289. NULL, /* sysctl_table */
  290. 30*HZ, /* base_reachable_time */
  291. 1*HZ, /* retrans_time */
  292. 60*HZ, /* gc_staletime */
  293. 30*HZ, /* reachable_time */
  294. 5*HZ, /* delay_probe_time */
  295. 3, /* queue_len */
  296. 3, /* ucast_probes */
  297. 0, /* app_probes */
  298. 3, /* mcast_probes */
  299. 1*HZ, /* anycast_delay */
  300. (8*HZ)/10, /* proxy_delay */
  301. 1*HZ, /* proxy_qlen */
  302. 64 /* locktime */
  303. },
  304. 30*HZ,128,512,1024 /* copied from ARP ... */
  305. };
  306. /* @@@ copy bh locking from arp.c -- need to bh-enable atm code before */
  307. /*
  308.  * We play with the resolve flag: 0 and 1 have the usual meaning, but -1 means
  309.  * to allocate the neighbour entry but not to ask atmarpd for resolution. Also,
  310.  * don't increment the usage count. This is used to create entries in
  311.  * clip_setentry.
  312.  */
  313. int clip_encap(struct atm_vcc *vcc,int mode)
  314. {
  315. CLIP_VCC(vcc)->encap = mode;
  316. return 0;
  317. }
  318. static int clip_start_xmit(struct sk_buff *skb,struct net_device *dev)
  319. {
  320. struct clip_priv *clip_priv = PRIV(dev);
  321. struct atmarp_entry *entry;
  322. struct atm_vcc *vcc;
  323. int old;
  324. unsigned long flags;
  325. DPRINTK("clip_start_xmit (skb %p)n",skb);
  326. if (!skb->dst) {
  327. printk(KERN_ERR "clip_start_xmit: skb->dst == NULLn");
  328. dev_kfree_skb(skb);
  329. clip_priv->stats.tx_dropped++;
  330. return 0;
  331. }
  332. if (!skb->dst->neighbour) {
  333. #if 0
  334. skb->dst->neighbour = clip_find_neighbour(skb->dst,1);
  335. if (!skb->dst->neighbour) {
  336. dev_kfree_skb(skb); /* lost that one */
  337. clip_priv->stats.tx_dropped++;
  338. return 0;
  339. }
  340. #endif
  341. printk(KERN_ERR "clip_start_xmit: NO NEIGHBOUR !n");
  342. dev_kfree_skb(skb);
  343. clip_priv->stats.tx_dropped++;
  344. return 0;
  345. }
  346. entry = NEIGH2ENTRY(skb->dst->neighbour);
  347. if (!entry->vccs) {
  348. if (time_after(jiffies, entry->expires)) {
  349. /* should be resolved */
  350. entry->expires = jiffies+ATMARP_RETRY_DELAY*HZ;
  351. to_atmarpd(act_need,PRIV(dev)->number,entry->ip);
  352. }
  353. if (entry->neigh->arp_queue.qlen < ATMARP_MAX_UNRES_PACKETS)
  354. skb_queue_tail(&entry->neigh->arp_queue,skb);
  355. else {
  356. dev_kfree_skb(skb);
  357. clip_priv->stats.tx_dropped++;
  358. }
  359. return 0;
  360. }
  361. DPRINTK("neigh %p, vccs %pn",entry,entry->vccs);
  362. ATM_SKB(skb)->vcc = vcc = entry->vccs->vcc;
  363. DPRINTK("using neighbour %p, vcc %pn",skb->dst->neighbour,vcc);
  364. if (entry->vccs->encap) {
  365. void *here;
  366. here = skb_push(skb,RFC1483LLC_LEN);
  367. memcpy(here,llc_oui,sizeof(llc_oui));
  368. ((u16 *) here)[3] = skb->protocol;
  369. }
  370. atomic_add(skb->truesize,&vcc->tx_inuse);
  371. ATM_SKB(skb)->iovcnt = 0;
  372. ATM_SKB(skb)->atm_options = vcc->atm_options;
  373. entry->vccs->last_use = jiffies;
  374. DPRINTK("atm_skb(%p)->vcc(%p)->dev(%p)n",skb,vcc,vcc->dev);
  375. old = xchg(&entry->vccs->xoff,1); /* assume XOFF ... */
  376. if (old) {
  377. printk(KERN_WARNING "clip_start_xmit: XOFF->XOFF transitionn");
  378. return 0;
  379. }
  380. clip_priv->stats.tx_packets++;
  381. clip_priv->stats.tx_bytes += skb->len;
  382. (void) vcc->send(vcc,skb);
  383. if (atm_may_send(vcc,0)) {
  384. entry->vccs->xoff = 0;
  385. return 0;
  386. }
  387. spin_lock_irqsave(&clip_priv->xoff_lock,flags);
  388. netif_stop_queue(dev); /* XOFF -> throttle immediately */
  389. barrier();
  390. if (!entry->vccs->xoff)
  391. netif_start_queue(dev);
  392. /* Oh, we just raced with clip_pop. netif_start_queue should be
  393.    good enough, because nothing should really be asleep because
  394.    of the brief netif_stop_queue. If this isn't true or if it
  395.    changes, use netif_wake_queue instead. */
  396. spin_unlock_irqrestore(&clip_priv->xoff_lock,flags);
  397. return 0;
  398. }
  399. static struct net_device_stats *clip_get_stats(struct net_device *dev)
  400. {
  401. return &PRIV(dev)->stats;
  402. }
  403. int clip_mkip(struct atm_vcc *vcc,int timeout)
  404. {
  405. struct clip_vcc *clip_vcc;
  406. struct sk_buff_head copy;
  407. struct sk_buff *skb;
  408. if (!vcc->push) return -EBADFD;
  409. clip_vcc = kmalloc(sizeof(struct clip_vcc),GFP_KERNEL);
  410. if (!clip_vcc) return -ENOMEM;
  411. DPRINTK("mkip clip_vcc %p vcc %pn",clip_vcc,vcc);
  412. clip_vcc->vcc = vcc;
  413. vcc->user_back = clip_vcc;
  414. clip_vcc->entry = NULL;
  415. clip_vcc->xoff = 0;
  416. clip_vcc->encap = 1;
  417. clip_vcc->last_use = jiffies;
  418. clip_vcc->idle_timeout = timeout*HZ;
  419. clip_vcc->old_push = vcc->push;
  420. clip_vcc->old_pop = vcc->pop;
  421. vcc->push = clip_push;
  422. vcc->pop = clip_pop;
  423. skb_queue_head_init(&copy);
  424. skb_migrate(&vcc->recvq,&copy);
  425. /* re-process everything received between connection setup and MKIP */
  426. while ((skb = skb_dequeue(&copy)))
  427. if (!clip_devs) {
  428. atm_return(vcc,skb->truesize);
  429. kfree_skb(skb);
  430. }
  431. else {
  432. unsigned int len = skb->len;
  433. clip_push(vcc,skb);
  434. PRIV(skb->dev)->stats.rx_packets--;
  435. PRIV(skb->dev)->stats.rx_bytes -= len;
  436. }
  437. return 0;
  438. }
  439. int clip_setentry(struct atm_vcc *vcc,u32 ip)
  440. {
  441. struct neighbour *neigh;
  442. struct atmarp_entry *entry;
  443. int error;
  444. struct clip_vcc *clip_vcc;
  445. struct rtable *rt;
  446. if (vcc->push != clip_push) {
  447. printk(KERN_WARNING "clip_setentry: non-CLIP VCCn");
  448. return -EBADF;
  449. }
  450. clip_vcc = CLIP_VCC(vcc);
  451. if (!ip) {
  452. if (!clip_vcc->entry) {
  453. printk(KERN_ERR "hiding hidden ATMARP entryn");
  454. return 0;
  455. }
  456. DPRINTK("setentry: removen");
  457. unlink_clip_vcc(clip_vcc);
  458. return 0;
  459. }
  460. error = ip_route_output(&rt,ip,0,1,0);
  461. if (error) return error;
  462. neigh = __neigh_lookup(&clip_tbl,&ip,rt->u.dst.dev,1);
  463. ip_rt_put(rt);
  464. if (!neigh)
  465. return -ENOMEM;
  466. entry = NEIGH2ENTRY(neigh);
  467. if (entry != clip_vcc->entry) {
  468. if (!clip_vcc->entry) DPRINTK("setentry: addn");
  469. else {
  470. DPRINTK("setentry: updaten");
  471. unlink_clip_vcc(clip_vcc);
  472. }
  473. link_vcc(clip_vcc,entry);
  474. }
  475. error = neigh_update(neigh,llc_oui,NUD_PERMANENT,1,0);
  476. neigh_release(neigh);
  477. return error;
  478. }
  479. static int clip_init(struct net_device *dev)
  480. {
  481. DPRINTK("clip_init %sn",dev->name);
  482. dev->hard_start_xmit = clip_start_xmit;
  483. /* sg_xmit ... */
  484. dev->hard_header = NULL;
  485. dev->rebuild_header = NULL;
  486. dev->set_mac_address = NULL;
  487. dev->hard_header_parse = NULL;
  488. dev->hard_header_cache = NULL;
  489. dev->header_cache_update = NULL;
  490. dev->change_mtu = NULL;
  491. dev->do_ioctl = NULL;
  492. dev->get_stats = clip_get_stats;
  493. dev->type = ARPHRD_ATM;
  494. dev->hard_header_len = RFC1483LLC_LEN;
  495. dev->mtu = RFC1626_MTU;
  496. dev->addr_len = 0;
  497. dev->tx_queue_len = 100; /* "normal" queue (packets) */
  498.     /* When using a "real" qdisc, the qdisc determines the queue */
  499.     /* length. tx_queue_len is only used for the default case, */
  500.     /* without any more elaborate queuing. 100 is a reasonable */
  501.     /* compromise between decent burst-tolerance and protection */
  502.     /* against memory hogs. */
  503. dev->flags = 0;
  504. return 0;
  505. }
  506. int clip_create(int number)
  507. {
  508. struct net_device *dev;
  509. struct clip_priv *clip_priv;
  510. int error;
  511. if (number != -1) {
  512. for (dev = clip_devs; dev; dev = PRIV(dev)->next)
  513. if (PRIV(dev)->number == number) return -EEXIST;
  514. }
  515. else {
  516. number = 0;
  517. for (dev = clip_devs; dev; dev = PRIV(dev)->next)
  518. if (PRIV(dev)->number >= number)
  519. number = PRIV(dev)->number+1;
  520. }
  521. dev = kmalloc(sizeof(struct net_device)+sizeof(struct clip_priv),
  522.     GFP_KERNEL); 
  523. if (!dev) return -ENOMEM;
  524. memset(dev,0,sizeof(struct net_device)+sizeof(struct clip_priv));
  525. clip_priv = PRIV(dev);
  526. sprintf(dev->name,"atm%d",number);
  527. dev->init = clip_init;
  528. spin_lock_init(&clip_priv->xoff_lock);
  529. clip_priv->number = number;
  530. error = register_netdev(dev);
  531. if (error) {
  532. kfree(dev);
  533. return error;
  534. }
  535. clip_priv->next = clip_devs;
  536. clip_devs = dev;
  537. DPRINTK("registered (net:%s)n",dev->name);
  538. return number;
  539. }
  540. static int clip_device_event(struct notifier_block *this,unsigned long event,
  541.     void *dev)
  542. {
  543. /* ignore non-CLIP devices */
  544. if (((struct net_device *) dev)->type != ARPHRD_ATM ||
  545.     ((struct net_device *) dev)->init != clip_init)
  546. return NOTIFY_DONE;
  547. switch (event) {
  548. case NETDEV_UP:
  549. DPRINTK("clip_device_event NETDEV_UPn");
  550. (void) to_atmarpd(act_up,PRIV(dev)->number,0);
  551. break;
  552. case NETDEV_GOING_DOWN:
  553. DPRINTK("clip_device_event NETDEV_DOWNn");
  554. (void) to_atmarpd(act_down,PRIV(dev)->number,0);
  555. break;
  556. case NETDEV_CHANGE:
  557. case NETDEV_CHANGEMTU:
  558. DPRINTK("clip_device_event NETDEV_CHANGE*n");
  559. (void) to_atmarpd(act_change,PRIV(dev)->number,0);
  560. break;
  561. case NETDEV_REBOOT:
  562. case NETDEV_REGISTER:
  563. case NETDEV_DOWN:
  564. DPRINTK("clip_device_event %ldn",event);
  565. /* ignore */
  566. break;
  567. default:
  568. printk(KERN_WARNING "clip_device_event: unknown event "
  569.     "%ldn",event);
  570. break;
  571. }
  572. return NOTIFY_DONE;
  573. }
  574. static int clip_inet_event(struct notifier_block *this,unsigned long event,
  575.     void *ifa)
  576. {
  577. struct in_device *in_dev;
  578. in_dev = ((struct in_ifaddr *) ifa)->ifa_dev;
  579. if (!in_dev || !in_dev->dev) {
  580. printk(KERN_WARNING "clip_inet_event: no devicen");
  581. return NOTIFY_DONE;
  582. }
  583. /*
  584.  * Transitions are of the down-change-up type, so it's sufficient to
  585.  * handle the change on up.
  586.  */
  587. if (event != NETDEV_UP) return NOTIFY_DONE;
  588. return clip_device_event(this,NETDEV_CHANGE,in_dev->dev);
  589. }
  590. static struct notifier_block clip_dev_notifier = {
  591. clip_device_event,
  592. NULL,
  593. 0
  594. };
  595. static struct notifier_block clip_inet_notifier = {
  596. clip_inet_event,
  597. NULL,
  598. 0
  599. };
  600. static void atmarpd_close(struct atm_vcc *vcc)
  601. {
  602. DPRINTK("atmarpd_closen");
  603. atmarpd = NULL; /* assumed to be atomic */
  604. barrier();
  605. unregister_inetaddr_notifier(&clip_inet_notifier);
  606. unregister_netdevice_notifier(&clip_dev_notifier);
  607. if (skb_peek(&vcc->recvq))
  608. printk(KERN_ERR "atmarpd_close: closing with requests "
  609.     "pendingn");
  610. skb_queue_purge(&vcc->recvq);
  611. DPRINTK("(done)n");
  612. }
  613. static struct atmdev_ops atmarpd_dev_ops = {
  614. close: atmarpd_close,
  615. };
  616. static struct atm_dev atmarpd_dev = {
  617. &atmarpd_dev_ops,
  618. NULL, /* no PHY */
  619. "arpd", /* type */
  620. 999, /* dummy device number */
  621. NULL,NULL, /* pretend not to have any VCCs */
  622. NULL,NULL, /* no data */
  623. { 0 }, /* no flags */
  624. NULL, /* no local address */
  625. { 0 } /* no ESI, no statistics */
  626. };
  627. int atm_init_atmarp(struct atm_vcc *vcc)
  628. {
  629. struct net_device *dev;
  630. if (atmarpd) return -EADDRINUSE;
  631. if (start_timer) {
  632. start_timer = 0;
  633. init_timer(&idle_timer);
  634. idle_timer.expires = jiffies+CLIP_CHECK_INTERVAL*HZ;
  635. idle_timer.function = idle_timer_check;
  636. add_timer(&idle_timer);
  637. }
  638. atmarpd = vcc;
  639. set_bit(ATM_VF_META,&vcc->flags);
  640. set_bit(ATM_VF_READY,&vcc->flags);
  641.     /* allow replies and avoid getting closed if signaling dies */
  642. bind_vcc(vcc,&atmarpd_dev);
  643. vcc->push = NULL;
  644. vcc->pop = NULL; /* crash */
  645. vcc->push_oam = NULL; /* crash */
  646. if (register_netdevice_notifier(&clip_dev_notifier))
  647. printk(KERN_ERR "register_netdevice_notifier failedn");
  648. if (register_inetaddr_notifier(&clip_inet_notifier))
  649. printk(KERN_ERR "register_inetaddr_notifier failedn");
  650. for (dev = clip_devs; dev; dev = PRIV(dev)->next)
  651. if (dev->flags & IFF_UP)
  652. (void) to_atmarpd(act_up,PRIV(dev)->number,0);
  653. return 0;
  654. }
  655. void atm_clip_init(void)
  656. {
  657. clip_tbl.lock = RW_LOCK_UNLOCKED;
  658. clip_tbl.kmem_cachep = kmem_cache_create(clip_tbl.id,
  659.     clip_tbl.entry_size, 0, SLAB_HWCACHE_ALIGN, NULL, NULL);
  660. }