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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * Generic address resolution entity
  3.  *
  4.  * Authors:
  5.  * Pedro Roque <roque@di.fc.ul.pt>
  6.  * Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
  7.  *
  8.  * This program is free software; you can redistribute it and/or
  9.  *      modify it under the terms of the GNU General Public License
  10.  *      as published by the Free Software Foundation; either version
  11.  *      2 of the License, or (at your option) any later version.
  12.  *
  13.  * Fixes:
  14.  * Vitaly E. Lavrov releasing NULL neighbor in neigh_add.
  15.  */
  16. #include <linux/config.h>
  17. #include <linux/types.h>
  18. #include <linux/kernel.h>
  19. #include <linux/socket.h>
  20. #include <linux/sched.h>
  21. #include <linux/netdevice.h>
  22. #ifdef CONFIG_SYSCTL
  23. #include <linux/sysctl.h>
  24. #endif
  25. #include <net/neighbour.h>
  26. #include <net/dst.h>
  27. #include <net/sock.h>
  28. #include <linux/rtnetlink.h>
  29. #define NEIGH_DEBUG 1
  30. #define NEIGH_PRINTK(x...) printk(x)
  31. #define NEIGH_NOPRINTK(x...) do { ; } while(0)
  32. #define NEIGH_PRINTK0 NEIGH_PRINTK
  33. #define NEIGH_PRINTK1 NEIGH_NOPRINTK
  34. #define NEIGH_PRINTK2 NEIGH_NOPRINTK
  35. #if NEIGH_DEBUG >= 1
  36. #undef NEIGH_PRINTK1
  37. #define NEIGH_PRINTK1 NEIGH_PRINTK
  38. #endif
  39. #if NEIGH_DEBUG >= 2
  40. #undef NEIGH_PRINTK2
  41. #define NEIGH_PRINTK2 NEIGH_PRINTK
  42. #endif
  43. static void neigh_timer_handler(unsigned long arg);
  44. #ifdef CONFIG_ARPD
  45. static void neigh_app_notify(struct neighbour *n);
  46. #endif
  47. static int pneigh_ifdown(struct neigh_table *tbl, struct net_device *dev);
  48. static int neigh_glbl_allocs;
  49. static struct neigh_table *neigh_tables;
  50. #if defined(__i386__) && defined(CONFIG_SMP)
  51. #define ASSERT_WL(n) if ((int)((n)->lock.lock) > 0) { printk("WL assertion failed at " __FILE__ "(%d):" __FUNCTION__ "n", __LINE__); }
  52. #else
  53. #define ASSERT_WL(n) do { } while(0)
  54. #endif
  55. /*
  56.    Neighbour hash table buckets are protected with rwlock tbl->lock.
  57.    - All the scans/updates to hash buckets MUST be made under this lock.
  58.    - NOTHING clever should be made under this lock: no callbacks
  59.      to protocol backends, no attempts to send something to network.
  60.      It will result in deadlocks, if backend/driver wants to use neighbour
  61.      cache.
  62.    - If the entry requires some non-trivial actions, increase
  63.      its reference count and release table lock.
  64.  
  65.    Neighbour entries are protected:
  66.    - with reference count.
  67.    - with rwlock neigh->lock
  68.    Reference count prevents destruction.
  69.    neigh->lock mainly serializes ll address data and its validity state.
  70.    However, the same lock is used to protect another entry fields:
  71.     - timer
  72.     - resolution queue
  73.    Again, nothing clever shall be made under neigh->lock,
  74.    the most complicated procedure, which we allow is dev->hard_header.
  75.    It is supposed, that dev->hard_header is simplistic and does
  76.    not make callbacks to neighbour tables.
  77.    The last lock is neigh_tbl_lock. It is pure SMP lock, protecting
  78.    list of neighbour tables. This list is used only in process context,
  79.  */
  80. static rwlock_t neigh_tbl_lock = RW_LOCK_UNLOCKED;
  81. static int neigh_blackhole(struct sk_buff *skb)
  82. {
  83. kfree_skb(skb);
  84. return -ENETDOWN;
  85. }
  86. /*
  87.  * It is random distribution in the interval (1/2)*base...(3/2)*base.
  88.  * It corresponds to default IPv6 settings and is not overridable,
  89.  * because it is really reasonbale choice.
  90.  */
  91. unsigned long neigh_rand_reach_time(unsigned long base)
  92. {
  93. return (net_random() % base) + (base>>1);
  94. }
  95. static int neigh_forced_gc(struct neigh_table *tbl)
  96. {
  97. int shrunk = 0;
  98. int i;
  99. for (i=0; i<=NEIGH_HASHMASK; i++) {
  100. struct neighbour *n, **np;
  101. np = &tbl->hash_buckets[i];
  102. write_lock_bh(&tbl->lock);
  103. while ((n = *np) != NULL) {
  104. /* Neighbour record may be discarded if:
  105.    - nobody refers to it.
  106.    - it is not premanent
  107.    - (NEW and probably wrong)
  108.      INCOMPLETE entries are kept at least for
  109.      n->parms->retrans_time, otherwise we could
  110.      flood network with resolution requests.
  111.      It is not clear, what is better table overflow
  112.      or flooding.
  113.  */
  114. write_lock(&n->lock);
  115. if (atomic_read(&n->refcnt) == 1 &&
  116.     !(n->nud_state&NUD_PERMANENT) &&
  117.     (n->nud_state != NUD_INCOMPLETE ||
  118.      jiffies - n->used > n->parms->retrans_time)) {
  119. *np = n->next;
  120. n->dead = 1;
  121. shrunk = 1;
  122. write_unlock(&n->lock);
  123. neigh_release(n);
  124. continue;
  125. }
  126. write_unlock(&n->lock);
  127. np = &n->next;
  128. }
  129. write_unlock_bh(&tbl->lock);
  130. }
  131. tbl->last_flush = jiffies;
  132. return shrunk;
  133. }
  134. static int neigh_del_timer(struct neighbour *n)
  135. {
  136. if (n->nud_state & NUD_IN_TIMER) {
  137. if (del_timer(&n->timer)) {
  138. neigh_release(n);
  139. return 1;
  140. }
  141. }
  142. return 0;
  143. }
  144. static void pneigh_queue_purge(struct sk_buff_head *list)
  145. {
  146. struct sk_buff *skb;
  147. while ((skb = skb_dequeue(list)) != NULL) {
  148. dev_put(skb->dev);
  149. kfree_skb(skb);
  150. }
  151. }
  152. int neigh_ifdown(struct neigh_table *tbl, struct net_device *dev)
  153. {
  154. int i;
  155. write_lock_bh(&tbl->lock);
  156. for (i=0; i<=NEIGH_HASHMASK; i++) {
  157. struct neighbour *n, **np;
  158. np = &tbl->hash_buckets[i];
  159. while ((n = *np) != NULL) {
  160. if (dev && n->dev != dev) {
  161. np = &n->next;
  162. continue;
  163. }
  164. *np = n->next;
  165. write_lock(&n->lock);
  166. neigh_del_timer(n);
  167. n->dead = 1;
  168. if (atomic_read(&n->refcnt) != 1) {
  169. /* The most unpleasant situation.
  170.    We must destroy neighbour entry,
  171.    but someone still uses it.
  172.    The destroy will be delayed until
  173.    the last user releases us, but
  174.    we must kill timers etc. and move
  175.    it to safe state.
  176.  */
  177. n->parms = &tbl->parms;
  178. skb_queue_purge(&n->arp_queue);
  179. n->output = neigh_blackhole;
  180. if (n->nud_state&NUD_VALID)
  181. n->nud_state = NUD_NOARP;
  182. else
  183. n->nud_state = NUD_NONE;
  184. NEIGH_PRINTK2("neigh %p is stray.n", n);
  185. }
  186. write_unlock(&n->lock);
  187. neigh_release(n);
  188. }
  189. }
  190. pneigh_ifdown(tbl, dev);
  191. write_unlock_bh(&tbl->lock);
  192. del_timer_sync(&tbl->proxy_timer);
  193. pneigh_queue_purge(&tbl->proxy_queue);
  194. return 0;
  195. }
  196. static struct neighbour *neigh_alloc(struct neigh_table *tbl)
  197. {
  198. struct neighbour *n;
  199. unsigned long now = jiffies;
  200. if (tbl->entries > tbl->gc_thresh3 ||
  201.     (tbl->entries > tbl->gc_thresh2 &&
  202.      now - tbl->last_flush > 5*HZ)) {
  203. if (neigh_forced_gc(tbl) == 0 &&
  204.     tbl->entries > tbl->gc_thresh3)
  205. return NULL;
  206. }
  207. n = kmem_cache_alloc(tbl->kmem_cachep, SLAB_ATOMIC);
  208. if (n == NULL)
  209. return NULL;
  210. memset(n, 0, tbl->entry_size);
  211. skb_queue_head_init(&n->arp_queue);
  212. n->lock = RW_LOCK_UNLOCKED;
  213. n->updated = n->used = now;
  214. n->nud_state = NUD_NONE;
  215. n->output = neigh_blackhole;
  216. n->parms = &tbl->parms;
  217. init_timer(&n->timer);
  218. n->timer.function = neigh_timer_handler;
  219. n->timer.data = (unsigned long)n;
  220. tbl->stats.allocs++;
  221. neigh_glbl_allocs++;
  222. tbl->entries++;
  223. n->tbl = tbl;
  224. atomic_set(&n->refcnt, 1);
  225. n->dead = 1;
  226. return n;
  227. }
  228. struct neighbour *neigh_lookup(struct neigh_table *tbl, const void *pkey,
  229.        struct net_device *dev)
  230. {
  231. struct neighbour *n;
  232. u32 hash_val;
  233. int key_len = tbl->key_len;
  234. hash_val = tbl->hash(pkey, dev);
  235. read_lock_bh(&tbl->lock);
  236. for (n = tbl->hash_buckets[hash_val]; n; n = n->next) {
  237. if (dev == n->dev &&
  238.     memcmp(n->primary_key, pkey, key_len) == 0) {
  239. neigh_hold(n);
  240. break;
  241. }
  242. }
  243. read_unlock_bh(&tbl->lock);
  244. return n;
  245. }
  246. struct neighbour * neigh_create(struct neigh_table *tbl, const void *pkey,
  247. struct net_device *dev)
  248. {
  249. struct neighbour *n, *n1;
  250. u32 hash_val;
  251. int key_len = tbl->key_len;
  252. int error;
  253. n = neigh_alloc(tbl);
  254. if (n == NULL)
  255. return ERR_PTR(-ENOBUFS);
  256. memcpy(n->primary_key, pkey, key_len);
  257. n->dev = dev;
  258. dev_hold(dev);
  259. /* Protocol specific setup. */
  260. if (tbl->constructor && (error = tbl->constructor(n)) < 0) {
  261. neigh_release(n);
  262. return ERR_PTR(error);
  263. }
  264. /* Device specific setup. */
  265. if (n->parms->neigh_setup &&
  266.     (error = n->parms->neigh_setup(n)) < 0) {
  267. neigh_release(n);
  268. return ERR_PTR(error);
  269. }
  270. n->confirmed = jiffies - (n->parms->base_reachable_time<<1);
  271. hash_val = tbl->hash(pkey, dev);
  272. write_lock_bh(&tbl->lock);
  273. for (n1 = tbl->hash_buckets[hash_val]; n1; n1 = n1->next) {
  274. if (dev == n1->dev &&
  275.     memcmp(n1->primary_key, pkey, key_len) == 0) {
  276. neigh_hold(n1);
  277. write_unlock_bh(&tbl->lock);
  278. neigh_release(n);
  279. return n1;
  280. }
  281. }
  282. n->next = tbl->hash_buckets[hash_val];
  283. tbl->hash_buckets[hash_val] = n;
  284. n->dead = 0;
  285. neigh_hold(n);
  286. write_unlock_bh(&tbl->lock);
  287. NEIGH_PRINTK2("neigh %p is created.n", n);
  288. return n;
  289. }
  290. struct pneigh_entry * pneigh_lookup(struct neigh_table *tbl, const void *pkey,
  291.     struct net_device *dev, int creat)
  292. {
  293. struct pneigh_entry *n;
  294. u32 hash_val;
  295. int key_len = tbl->key_len;
  296. hash_val = *(u32*)(pkey + key_len - 4);
  297. hash_val ^= (hash_val>>16);
  298. hash_val ^= hash_val>>8;
  299. hash_val ^= hash_val>>4;
  300. hash_val &= PNEIGH_HASHMASK;
  301. read_lock_bh(&tbl->lock);
  302. for (n = tbl->phash_buckets[hash_val]; n; n = n->next) {
  303. if (memcmp(n->key, pkey, key_len) == 0 &&
  304.     (n->dev == dev || !n->dev)) {
  305. read_unlock_bh(&tbl->lock);
  306. return n;
  307. }
  308. }
  309. read_unlock_bh(&tbl->lock);
  310. if (!creat)
  311. return NULL;
  312. n = kmalloc(sizeof(*n) + key_len, GFP_KERNEL);
  313. if (n == NULL)
  314. return NULL;
  315. memcpy(n->key, pkey, key_len);
  316. n->dev = dev;
  317. if (tbl->pconstructor && tbl->pconstructor(n)) {
  318. kfree(n);
  319. return NULL;
  320. }
  321. write_lock_bh(&tbl->lock);
  322. n->next = tbl->phash_buckets[hash_val];
  323. tbl->phash_buckets[hash_val] = n;
  324. write_unlock_bh(&tbl->lock);
  325. return n;
  326. }
  327. int pneigh_delete(struct neigh_table *tbl, const void *pkey, struct net_device *dev)
  328. {
  329. struct pneigh_entry *n, **np;
  330. u32 hash_val;
  331. int key_len = tbl->key_len;
  332. hash_val = *(u32*)(pkey + key_len - 4);
  333. hash_val ^= (hash_val>>16);
  334. hash_val ^= hash_val>>8;
  335. hash_val ^= hash_val>>4;
  336. hash_val &= PNEIGH_HASHMASK;
  337. for (np = &tbl->phash_buckets[hash_val]; (n=*np) != NULL; np = &n->next) {
  338. if (memcmp(n->key, pkey, key_len) == 0 && n->dev == dev) {
  339. write_lock_bh(&tbl->lock);
  340. *np = n->next;
  341. write_unlock_bh(&tbl->lock);
  342. if (tbl->pdestructor)
  343. tbl->pdestructor(n);
  344. kfree(n);
  345. return 0;
  346. }
  347. }
  348. return -ENOENT;
  349. }
  350. static int pneigh_ifdown(struct neigh_table *tbl, struct net_device *dev)
  351. {
  352. struct pneigh_entry *n, **np;
  353. u32 h;
  354. for (h=0; h<=PNEIGH_HASHMASK; h++) {
  355. np = &tbl->phash_buckets[h]; 
  356. while ((n=*np) != NULL) {
  357. if (n->dev == dev || dev == NULL) {
  358. *np = n->next;
  359. if (tbl->pdestructor)
  360. tbl->pdestructor(n);
  361. kfree(n);
  362. continue;
  363. }
  364. np = &n->next;
  365. }
  366. }
  367. return -ENOENT;
  368. }
  369. /*
  370.  * neighbour must already be out of the table;
  371.  *
  372.  */
  373. void neigh_destroy(struct neighbour *neigh)
  374. {
  375. struct hh_cache *hh;
  376. if (!neigh->dead) {
  377. printk("Destroying alive neighbour %p from %08lxn", neigh,
  378.        *(((unsigned long*)&neigh)-1));
  379. return;
  380. }
  381. if (neigh_del_timer(neigh))
  382. printk("Impossible event.n");
  383. while ((hh = neigh->hh) != NULL) {
  384. neigh->hh = hh->hh_next;
  385. hh->hh_next = NULL;
  386. write_lock_bh(&hh->hh_lock);
  387. hh->hh_output = neigh_blackhole;
  388. write_unlock_bh(&hh->hh_lock);
  389. if (atomic_dec_and_test(&hh->hh_refcnt))
  390. kfree(hh);
  391. }
  392. if (neigh->ops && neigh->ops->destructor)
  393. (neigh->ops->destructor)(neigh);
  394. skb_queue_purge(&neigh->arp_queue);
  395. dev_put(neigh->dev);
  396. NEIGH_PRINTK2("neigh %p is destroyed.n", neigh);
  397. neigh_glbl_allocs--;
  398. neigh->tbl->entries--;
  399. kmem_cache_free(neigh->tbl->kmem_cachep, neigh);
  400. }
  401. /* Neighbour state is suspicious;
  402.    disable fast path.
  403.    Called with write_locked neigh.
  404.  */
  405. static void neigh_suspect(struct neighbour *neigh)
  406. {
  407. struct hh_cache *hh;
  408. NEIGH_PRINTK2("neigh %p is suspecteded.n", neigh);
  409. ASSERT_WL(neigh);
  410. neigh->output = neigh->ops->output;
  411. for (hh = neigh->hh; hh; hh = hh->hh_next)
  412. hh->hh_output = neigh->ops->output;
  413. }
  414. /* Neighbour state is OK;
  415.    enable fast path.
  416.    Called with write_locked neigh.
  417.  */
  418. static void neigh_connect(struct neighbour *neigh)
  419. {
  420. struct hh_cache *hh;
  421. NEIGH_PRINTK2("neigh %p is connected.n", neigh);
  422. ASSERT_WL(neigh);
  423. neigh->output = neigh->ops->connected_output;
  424. for (hh = neigh->hh; hh; hh = hh->hh_next)
  425. hh->hh_output = neigh->ops->hh_output;
  426. }
  427. /*
  428.    Transitions NUD_STALE <-> NUD_REACHABLE do not occur
  429.    when fast path is built: we have no timers assotiated with
  430.    these states, we do not have time to check state when sending.
  431.    neigh_periodic_timer check periodically neigh->confirmed
  432.    time and moves NUD_REACHABLE -> NUD_STALE.
  433.    If a routine wants to know TRUE entry state, it calls
  434.    neigh_sync before checking state.
  435.    Called with write_locked neigh.
  436.  */
  437. static void neigh_sync(struct neighbour *n)
  438. {
  439. unsigned long now = jiffies;
  440. u8 state = n->nud_state;
  441. ASSERT_WL(n);
  442. if (state&(NUD_NOARP|NUD_PERMANENT))
  443. return;
  444. if (state&NUD_REACHABLE) {
  445. if (now - n->confirmed > n->parms->reachable_time) {
  446. n->nud_state = NUD_STALE;
  447. neigh_suspect(n);
  448. }
  449. } else if (state&NUD_VALID) {
  450. if (now - n->confirmed < n->parms->reachable_time) {
  451. neigh_del_timer(n);
  452. n->nud_state = NUD_REACHABLE;
  453. neigh_connect(n);
  454. }
  455. }
  456. }
  457. static void SMP_TIMER_NAME(neigh_periodic_timer)(unsigned long arg)
  458. {
  459. struct neigh_table *tbl = (struct neigh_table*)arg;
  460. unsigned long now = jiffies;
  461. int i;
  462. write_lock(&tbl->lock);
  463. /*
  464.  * periodicly recompute ReachableTime from random function
  465.  */
  466. if (now - tbl->last_rand > 300*HZ) {
  467. struct neigh_parms *p;
  468. tbl->last_rand = now;
  469. for (p=&tbl->parms; p; p = p->next)
  470. p->reachable_time = neigh_rand_reach_time(p->base_reachable_time);
  471. }
  472. for (i=0; i <= NEIGH_HASHMASK; i++) {
  473. struct neighbour *n, **np;
  474. np = &tbl->hash_buckets[i];
  475. while ((n = *np) != NULL) {
  476. unsigned state;
  477. write_lock(&n->lock);
  478. state = n->nud_state;
  479. if (state&(NUD_PERMANENT|NUD_IN_TIMER)) {
  480. write_unlock(&n->lock);
  481. goto next_elt;
  482. }
  483. if ((long)(n->used - n->confirmed) < 0)
  484. n->used = n->confirmed;
  485. if (atomic_read(&n->refcnt) == 1 &&
  486.     (state == NUD_FAILED || now - n->used > n->parms->gc_staletime)) {
  487. *np = n->next;
  488. n->dead = 1;
  489. write_unlock(&n->lock);
  490. neigh_release(n);
  491. continue;
  492. }
  493. if (n->nud_state&NUD_REACHABLE &&
  494.     now - n->confirmed > n->parms->reachable_time) {
  495. n->nud_state = NUD_STALE;
  496. neigh_suspect(n);
  497. }
  498. write_unlock(&n->lock);
  499. next_elt:
  500. np = &n->next;
  501. }
  502. }
  503. mod_timer(&tbl->gc_timer, now + tbl->gc_interval);
  504. write_unlock(&tbl->lock);
  505. }
  506. #ifdef CONFIG_SMP
  507. static void neigh_periodic_timer(unsigned long arg)
  508. {
  509. struct neigh_table *tbl = (struct neigh_table*)arg;
  510. tasklet_schedule(&tbl->gc_task);
  511. }
  512. #endif
  513. static __inline__ int neigh_max_probes(struct neighbour *n)
  514. {
  515. struct neigh_parms *p = n->parms;
  516. return p->ucast_probes + p->app_probes + p->mcast_probes;
  517. }
  518. /* Called when a timer expires for a neighbour entry. */
  519. static void neigh_timer_handler(unsigned long arg) 
  520. {
  521. unsigned long now = jiffies;
  522. struct neighbour *neigh = (struct neighbour*)arg;
  523. unsigned state;
  524. int notify = 0;
  525. write_lock(&neigh->lock);
  526. state = neigh->nud_state;
  527. if (!(state&NUD_IN_TIMER)) {
  528. #ifndef CONFIG_SMP
  529. printk("neigh: timer & !nud_in_timern");
  530. #endif
  531. goto out;
  532. }
  533. if ((state&NUD_VALID) &&
  534.     now - neigh->confirmed < neigh->parms->reachable_time) {
  535. neigh->nud_state = NUD_REACHABLE;
  536. NEIGH_PRINTK2("neigh %p is still alive.n", neigh);
  537. neigh_connect(neigh);
  538. goto out;
  539. }
  540. if (state == NUD_DELAY) {
  541. NEIGH_PRINTK2("neigh %p is probed.n", neigh);
  542. neigh->nud_state = NUD_PROBE;
  543. atomic_set(&neigh->probes, 0);
  544. }
  545. if (atomic_read(&neigh->probes) >= neigh_max_probes(neigh)) {
  546. struct sk_buff *skb;
  547. neigh->nud_state = NUD_FAILED;
  548. notify = 1;
  549. neigh->tbl->stats.res_failed++;
  550. NEIGH_PRINTK2("neigh %p is failed.n", neigh);
  551. /* It is very thin place. report_unreachable is very complicated
  552.    routine. Particularly, it can hit the same neighbour entry!
  553.    
  554.    So that, we try to be accurate and avoid dead loop. --ANK
  555.  */
  556. while(neigh->nud_state==NUD_FAILED && (skb=__skb_dequeue(&neigh->arp_queue)) != NULL) {
  557. write_unlock(&neigh->lock);
  558. neigh->ops->error_report(neigh, skb);
  559. write_lock(&neigh->lock);
  560. }
  561. skb_queue_purge(&neigh->arp_queue);
  562. goto out;
  563. }
  564. neigh->timer.expires = now + neigh->parms->retrans_time;
  565. add_timer(&neigh->timer);
  566. write_unlock(&neigh->lock);
  567. neigh->ops->solicit(neigh, skb_peek(&neigh->arp_queue));
  568. atomic_inc(&neigh->probes);
  569. return;
  570. out:
  571. write_unlock(&neigh->lock);
  572. #ifdef CONFIG_ARPD
  573. if (notify && neigh->parms->app_probes)
  574. neigh_app_notify(neigh);
  575. #endif
  576. neigh_release(neigh);
  577. }
  578. int __neigh_event_send(struct neighbour *neigh, struct sk_buff *skb)
  579. {
  580. write_lock_bh(&neigh->lock);
  581. if (!(neigh->nud_state&(NUD_CONNECTED|NUD_DELAY|NUD_PROBE))) {
  582. if (!(neigh->nud_state&(NUD_STALE|NUD_INCOMPLETE))) {
  583. if (neigh->parms->mcast_probes + neigh->parms->app_probes) {
  584. atomic_set(&neigh->probes, neigh->parms->ucast_probes);
  585. neigh->nud_state = NUD_INCOMPLETE;
  586. neigh_hold(neigh);
  587. neigh->timer.expires = jiffies + neigh->parms->retrans_time;
  588. add_timer(&neigh->timer);
  589. write_unlock_bh(&neigh->lock);
  590. neigh->ops->solicit(neigh, skb);
  591. atomic_inc(&neigh->probes);
  592. write_lock_bh(&neigh->lock);
  593. } else {
  594. neigh->nud_state = NUD_FAILED;
  595. write_unlock_bh(&neigh->lock);
  596. if (skb)
  597. kfree_skb(skb);
  598. return 1;
  599. }
  600. }
  601. if (neigh->nud_state == NUD_INCOMPLETE) {
  602. if (skb) {
  603. if (skb_queue_len(&neigh->arp_queue) >= neigh->parms->queue_len) {
  604. struct sk_buff *buff;
  605. buff = neigh->arp_queue.next;
  606. __skb_unlink(buff, &neigh->arp_queue);
  607. kfree_skb(buff);
  608. }
  609. __skb_queue_tail(&neigh->arp_queue, skb);
  610. }
  611. write_unlock_bh(&neigh->lock);
  612. return 1;
  613. }
  614. if (neigh->nud_state == NUD_STALE) {
  615. NEIGH_PRINTK2("neigh %p is delayed.n", neigh);
  616. neigh_hold(neigh);
  617. neigh->nud_state = NUD_DELAY;
  618. neigh->timer.expires = jiffies + neigh->parms->delay_probe_time;
  619. add_timer(&neigh->timer);
  620. }
  621. }
  622. write_unlock_bh(&neigh->lock);
  623. return 0;
  624. }
  625. static __inline__ void neigh_update_hhs(struct neighbour *neigh)
  626. {
  627. struct hh_cache *hh;
  628. void (*update)(struct hh_cache*, struct net_device*, unsigned char*) =
  629. neigh->dev->header_cache_update;
  630. if (update) {
  631. for (hh=neigh->hh; hh; hh=hh->hh_next) {
  632. write_lock_bh(&hh->hh_lock);
  633. update(hh, neigh->dev, neigh->ha);
  634. write_unlock_bh(&hh->hh_lock);
  635. }
  636. }
  637. }
  638. /* Generic update routine.
  639.    -- lladdr is new lladdr or NULL, if it is not supplied.
  640.    -- new    is new state.
  641.    -- override==1 allows to override existing lladdr, if it is different.
  642.    -- arp==0 means that the change is administrative.
  643.    Caller MUST hold reference count on the entry.
  644.  */
  645. int neigh_update(struct neighbour *neigh, const u8 *lladdr, u8 new, int override, int arp)
  646. {
  647. u8 old;
  648. int err;
  649. int notify = 0;
  650. struct net_device *dev = neigh->dev;
  651. write_lock_bh(&neigh->lock);
  652. old = neigh->nud_state;
  653. err = -EPERM;
  654. if (arp && (old&(NUD_NOARP|NUD_PERMANENT)))
  655. goto out;
  656. if (!(new&NUD_VALID)) {
  657. neigh_del_timer(neigh);
  658. if (old&NUD_CONNECTED)
  659. neigh_suspect(neigh);
  660. neigh->nud_state = new;
  661. err = 0;
  662. notify = old&NUD_VALID;
  663. goto out;
  664. }
  665. /* Compare new lladdr with cached one */
  666. if (dev->addr_len == 0) {
  667. /* First case: device needs no address. */
  668. lladdr = neigh->ha;
  669. } else if (lladdr) {
  670. /* The second case: if something is already cached
  671.    and a new address is proposed:
  672.    - compare new & old
  673.    - if they are different, check override flag
  674.  */
  675. if (old&NUD_VALID) {
  676. if (memcmp(lladdr, neigh->ha, dev->addr_len) == 0)
  677. lladdr = neigh->ha;
  678. else if (!override)
  679. goto out;
  680. }
  681. } else {
  682. /* No address is supplied; if we know something,
  683.    use it, otherwise discard the request.
  684.  */
  685. err = -EINVAL;
  686. if (!(old&NUD_VALID))
  687. goto out;
  688. lladdr = neigh->ha;
  689. }
  690. neigh_sync(neigh);
  691. old = neigh->nud_state;
  692. if (new&NUD_CONNECTED)
  693. neigh->confirmed = jiffies;
  694. neigh->updated = jiffies;
  695. /* If entry was valid and address is not changed,
  696.    do not change entry state, if new one is STALE.
  697.  */
  698. err = 0;
  699. if (old&NUD_VALID) {
  700. if (lladdr == neigh->ha)
  701. if (new == old || (new == NUD_STALE && (old&NUD_CONNECTED)))
  702. goto out;
  703. }
  704. neigh_del_timer(neigh);
  705. neigh->nud_state = new;
  706. if (lladdr != neigh->ha) {
  707. memcpy(&neigh->ha, lladdr, dev->addr_len);
  708. neigh_update_hhs(neigh);
  709. if (!(new&NUD_CONNECTED))
  710. neigh->confirmed = jiffies - (neigh->parms->base_reachable_time<<1);
  711. #ifdef CONFIG_ARPD
  712. notify = 1;
  713. #endif
  714. }
  715. if (new == old)
  716. goto out;
  717. if (new&NUD_CONNECTED)
  718. neigh_connect(neigh);
  719. else
  720. neigh_suspect(neigh);
  721. if (!(old&NUD_VALID)) {
  722. struct sk_buff *skb;
  723. /* Again: avoid dead loop if something went wrong */
  724. while (neigh->nud_state&NUD_VALID &&
  725.        (skb=__skb_dequeue(&neigh->arp_queue)) != NULL) {
  726. struct neighbour *n1 = neigh;
  727. write_unlock_bh(&neigh->lock);
  728. /* On shaper/eql skb->dst->neighbour != neigh :( */
  729. if (skb->dst && skb->dst->neighbour)
  730. n1 = skb->dst->neighbour;
  731. n1->output(skb);
  732. write_lock_bh(&neigh->lock);
  733. }
  734. skb_queue_purge(&neigh->arp_queue);
  735. }
  736. out:
  737. write_unlock_bh(&neigh->lock);
  738. #ifdef CONFIG_ARPD
  739. if (notify && neigh->parms->app_probes)
  740. neigh_app_notify(neigh);
  741. #endif
  742. return err;
  743. }
  744. struct neighbour * neigh_event_ns(struct neigh_table *tbl,
  745.   u8 *lladdr, void *saddr,
  746.   struct net_device *dev)
  747. {
  748. struct neighbour *neigh;
  749. neigh = __neigh_lookup(tbl, saddr, dev, lladdr || !dev->addr_len);
  750. if (neigh)
  751. neigh_update(neigh, lladdr, NUD_STALE, 1, 1);
  752. return neigh;
  753. }
  754. static void neigh_hh_init(struct neighbour *n, struct dst_entry *dst, u16 protocol)
  755. {
  756. struct hh_cache *hh = NULL;
  757. struct net_device *dev = dst->dev;
  758. for (hh=n->hh; hh; hh = hh->hh_next)
  759. if (hh->hh_type == protocol)
  760. break;
  761. if (!hh && (hh = kmalloc(sizeof(*hh), GFP_ATOMIC)) != NULL) {
  762. memset(hh, 0, sizeof(struct hh_cache));
  763. hh->hh_lock = RW_LOCK_UNLOCKED;
  764. hh->hh_type = protocol;
  765. atomic_set(&hh->hh_refcnt, 0);
  766. hh->hh_next = NULL;
  767. if (dev->hard_header_cache(n, hh)) {
  768. kfree(hh);
  769. hh = NULL;
  770. } else {
  771. atomic_inc(&hh->hh_refcnt);
  772. hh->hh_next = n->hh;
  773. n->hh = hh;
  774. if (n->nud_state&NUD_CONNECTED)
  775. hh->hh_output = n->ops->hh_output;
  776. else
  777. hh->hh_output = n->ops->output;
  778. }
  779. }
  780. if (hh) {
  781. atomic_inc(&hh->hh_refcnt);
  782. dst->hh = hh;
  783. }
  784. }
  785. /* This function can be used in contexts, where only old dev_queue_xmit
  786.    worked, f.e. if you want to override normal output path (eql, shaper),
  787.    but resoltution is not made yet.
  788.  */
  789. int neigh_compat_output(struct sk_buff *skb)
  790. {
  791. struct net_device *dev = skb->dev;
  792. __skb_pull(skb, skb->nh.raw - skb->data);
  793. if (dev->hard_header &&
  794.     dev->hard_header(skb, dev, ntohs(skb->protocol), NULL, NULL, skb->len) < 0 &&
  795.     dev->rebuild_header(skb))
  796. return 0;
  797. return dev_queue_xmit(skb);
  798. }
  799. /* Slow and careful. */
  800. int neigh_resolve_output(struct sk_buff *skb)
  801. {
  802. struct dst_entry *dst = skb->dst;
  803. struct neighbour *neigh;
  804. if (!dst || !(neigh = dst->neighbour))
  805. goto discard;
  806. __skb_pull(skb, skb->nh.raw - skb->data);
  807. if (neigh_event_send(neigh, skb) == 0) {
  808. int err;
  809. struct net_device *dev = neigh->dev;
  810. if (dev->hard_header_cache && dst->hh == NULL) {
  811. write_lock_bh(&neigh->lock);
  812. if (dst->hh == NULL)
  813. neigh_hh_init(neigh, dst, dst->ops->protocol);
  814. err = dev->hard_header(skb, dev, ntohs(skb->protocol), neigh->ha, NULL, skb->len);
  815. write_unlock_bh(&neigh->lock);
  816. } else {
  817. read_lock_bh(&neigh->lock);
  818. err = dev->hard_header(skb, dev, ntohs(skb->protocol), neigh->ha, NULL, skb->len);
  819. read_unlock_bh(&neigh->lock);
  820. }
  821. if (err >= 0)
  822. return neigh->ops->queue_xmit(skb);
  823. kfree_skb(skb);
  824. return -EINVAL;
  825. }
  826. return 0;
  827. discard:
  828. NEIGH_PRINTK1("neigh_resolve_output: dst=%p neigh=%pn", dst, dst ? dst->neighbour : NULL);
  829. kfree_skb(skb);
  830. return -EINVAL;
  831. }
  832. /* As fast as possible without hh cache */
  833. int neigh_connected_output(struct sk_buff *skb)
  834. {
  835. int err;
  836. struct dst_entry *dst = skb->dst;
  837. struct neighbour *neigh = dst->neighbour;
  838. struct net_device *dev = neigh->dev;
  839. __skb_pull(skb, skb->nh.raw - skb->data);
  840. read_lock_bh(&neigh->lock);
  841. err = dev->hard_header(skb, dev, ntohs(skb->protocol), neigh->ha, NULL, skb->len);
  842. read_unlock_bh(&neigh->lock);
  843. if (err >= 0)
  844. return neigh->ops->queue_xmit(skb);
  845. kfree_skb(skb);
  846. return -EINVAL;
  847. }
  848. static void neigh_proxy_process(unsigned long arg)
  849. {
  850. struct neigh_table *tbl = (struct neigh_table *)arg;
  851. long sched_next = 0;
  852. unsigned long now = jiffies;
  853. struct sk_buff *skb;
  854. spin_lock(&tbl->proxy_queue.lock);
  855. skb = tbl->proxy_queue.next;
  856. while (skb != (struct sk_buff*)&tbl->proxy_queue) {
  857. struct sk_buff *back = skb;
  858. long tdif = back->stamp.tv_usec - now;
  859. skb = skb->next;
  860. if (tdif <= 0) {
  861. struct net_device *dev = back->dev;
  862. __skb_unlink(back, &tbl->proxy_queue);
  863. if (tbl->proxy_redo && netif_running(dev))
  864. tbl->proxy_redo(back);
  865. else
  866. kfree_skb(back);
  867. dev_put(dev);
  868. } else if (!sched_next || tdif < sched_next)
  869. sched_next = tdif;
  870. }
  871. del_timer(&tbl->proxy_timer);
  872. if (sched_next)
  873. mod_timer(&tbl->proxy_timer, jiffies + sched_next);
  874. spin_unlock(&tbl->proxy_queue.lock);
  875. }
  876. void pneigh_enqueue(struct neigh_table *tbl, struct neigh_parms *p,
  877.     struct sk_buff *skb)
  878. {
  879. unsigned long now = jiffies;
  880. long sched_next = net_random()%p->proxy_delay;
  881. if (tbl->proxy_queue.qlen > p->proxy_qlen) {
  882. kfree_skb(skb);
  883. return;
  884. }
  885. skb->stamp.tv_sec = 0;
  886. skb->stamp.tv_usec = now + sched_next;
  887. spin_lock(&tbl->proxy_queue.lock);
  888. if (del_timer(&tbl->proxy_timer)) {
  889. long tval = tbl->proxy_timer.expires - now;
  890. if (tval < sched_next)
  891. sched_next = tval;
  892. }
  893. dst_release(skb->dst);
  894. skb->dst = NULL;
  895. dev_hold(skb->dev);
  896. __skb_queue_tail(&tbl->proxy_queue, skb);
  897. mod_timer(&tbl->proxy_timer, now + sched_next);
  898. spin_unlock(&tbl->proxy_queue.lock);
  899. }
  900. struct neigh_parms *neigh_parms_alloc(struct net_device *dev, struct neigh_table *tbl)
  901. {
  902. struct neigh_parms *p;
  903. p = kmalloc(sizeof(*p), GFP_KERNEL);
  904. if (p) {
  905. memcpy(p, &tbl->parms, sizeof(*p));
  906. p->tbl = tbl;
  907. p->reachable_time = neigh_rand_reach_time(p->base_reachable_time);
  908. if (dev && dev->neigh_setup) {
  909. if (dev->neigh_setup(dev, p)) {
  910. kfree(p);
  911. return NULL;
  912. }
  913. }
  914. write_lock_bh(&tbl->lock);
  915. p->next = tbl->parms.next;
  916. tbl->parms.next = p;
  917. write_unlock_bh(&tbl->lock);
  918. }
  919. return p;
  920. }
  921. void neigh_parms_release(struct neigh_table *tbl, struct neigh_parms *parms)
  922. {
  923. struct neigh_parms **p;
  924. if (parms == NULL || parms == &tbl->parms)
  925. return;
  926. write_lock_bh(&tbl->lock);
  927. for (p = &tbl->parms.next; *p; p = &(*p)->next) {
  928. if (*p == parms) {
  929. *p = parms->next;
  930. write_unlock_bh(&tbl->lock);
  931. #ifdef CONFIG_SYSCTL
  932. neigh_sysctl_unregister(parms);
  933. #endif
  934. kfree(parms);
  935. return;
  936. }
  937. }
  938. write_unlock_bh(&tbl->lock);
  939. NEIGH_PRINTK1("neigh_parms_release: not foundn");
  940. }
  941. void neigh_table_init(struct neigh_table *tbl)
  942. {
  943. unsigned long now = jiffies;
  944. tbl->parms.reachable_time = neigh_rand_reach_time(tbl->parms.base_reachable_time);
  945. if (tbl->kmem_cachep == NULL)
  946. tbl->kmem_cachep = kmem_cache_create(tbl->id,
  947.      (tbl->entry_size+15)&~15,
  948.      0, SLAB_HWCACHE_ALIGN,
  949.      NULL, NULL);
  950. #ifdef CONFIG_SMP
  951. tasklet_init(&tbl->gc_task, SMP_TIMER_NAME(neigh_periodic_timer), (unsigned long)tbl);
  952. #endif
  953. init_timer(&tbl->gc_timer);
  954. tbl->lock = RW_LOCK_UNLOCKED;
  955. tbl->gc_timer.data = (unsigned long)tbl;
  956. tbl->gc_timer.function = neigh_periodic_timer;
  957. tbl->gc_timer.expires = now + tbl->gc_interval + tbl->parms.reachable_time;
  958. add_timer(&tbl->gc_timer);
  959. init_timer(&tbl->proxy_timer);
  960. tbl->proxy_timer.data = (unsigned long)tbl;
  961. tbl->proxy_timer.function = neigh_proxy_process;
  962. skb_queue_head_init(&tbl->proxy_queue);
  963. tbl->last_flush = now;
  964. tbl->last_rand = now + tbl->parms.reachable_time*20;
  965. write_lock(&neigh_tbl_lock);
  966. tbl->next = neigh_tables;
  967. neigh_tables = tbl;
  968. write_unlock(&neigh_tbl_lock);
  969. }
  970. int neigh_table_clear(struct neigh_table *tbl)
  971. {
  972. struct neigh_table **tp;
  973. /* It is not clean... Fix it to unload IPv6 module safely */
  974. del_timer_sync(&tbl->gc_timer);
  975. tasklet_kill(&tbl->gc_task);
  976. del_timer_sync(&tbl->proxy_timer);
  977. pneigh_queue_purge(&tbl->proxy_queue);
  978. neigh_ifdown(tbl, NULL);
  979. if (tbl->entries)
  980. printk(KERN_CRIT "neighbour leakagen");
  981. write_lock(&neigh_tbl_lock);
  982. for (tp = &neigh_tables; *tp; tp = &(*tp)->next) {
  983. if (*tp == tbl) {
  984. *tp = tbl->next;
  985. break;
  986. }
  987. }
  988. write_unlock(&neigh_tbl_lock);
  989. #ifdef CONFIG_SYSCTL
  990. neigh_sysctl_unregister(&tbl->parms);
  991. #endif
  992. return 0;
  993. }
  994. int neigh_delete(struct sk_buff *skb, struct nlmsghdr *nlh, void *arg)
  995. {
  996. struct ndmsg *ndm = NLMSG_DATA(nlh);
  997. struct rtattr **nda = arg;
  998. struct neigh_table *tbl;
  999. struct net_device *dev = NULL;
  1000. int err = 0;
  1001. if (ndm->ndm_ifindex) {
  1002. if ((dev = dev_get_by_index(ndm->ndm_ifindex)) == NULL)
  1003. return -ENODEV;
  1004. }
  1005. read_lock(&neigh_tbl_lock);
  1006. for (tbl=neigh_tables; tbl; tbl = tbl->next) {
  1007. struct neighbour *n;
  1008. if (tbl->family != ndm->ndm_family)
  1009. continue;
  1010. read_unlock(&neigh_tbl_lock);
  1011. err = -EINVAL;
  1012. if (nda[NDA_DST-1] == NULL ||
  1013.     nda[NDA_DST-1]->rta_len != RTA_LENGTH(tbl->key_len))
  1014. goto out;
  1015. if (ndm->ndm_flags&NTF_PROXY) {
  1016. err = pneigh_delete(tbl, RTA_DATA(nda[NDA_DST-1]), dev);
  1017. goto out;
  1018. }
  1019. if (dev == NULL)
  1020. return -EINVAL;
  1021. n = neigh_lookup(tbl, RTA_DATA(nda[NDA_DST-1]), dev);
  1022. if (n) {
  1023. err = neigh_update(n, NULL, NUD_FAILED, 1, 0);
  1024. neigh_release(n);
  1025. }
  1026. out:
  1027. if (dev)
  1028. dev_put(dev);
  1029. return err;
  1030. }
  1031. read_unlock(&neigh_tbl_lock);
  1032. if (dev)
  1033. dev_put(dev);
  1034. return -EADDRNOTAVAIL;
  1035. }
  1036. int neigh_add(struct sk_buff *skb, struct nlmsghdr *nlh, void *arg)
  1037. {
  1038. struct ndmsg *ndm = NLMSG_DATA(nlh);
  1039. struct rtattr **nda = arg;
  1040. struct neigh_table *tbl;
  1041. struct net_device *dev = NULL;
  1042. if (ndm->ndm_ifindex) {
  1043. if ((dev = dev_get_by_index(ndm->ndm_ifindex)) == NULL)
  1044. return -ENODEV;
  1045. }
  1046. read_lock(&neigh_tbl_lock);
  1047. for (tbl=neigh_tables; tbl; tbl = tbl->next) {
  1048. int err = 0;
  1049. struct neighbour *n;
  1050. if (tbl->family != ndm->ndm_family)
  1051. continue;
  1052. read_unlock(&neigh_tbl_lock);
  1053. err = -EINVAL;
  1054. if (nda[NDA_DST-1] == NULL ||
  1055.     nda[NDA_DST-1]->rta_len != RTA_LENGTH(tbl->key_len))
  1056. goto out;
  1057. if (ndm->ndm_flags&NTF_PROXY) {
  1058. err = -ENOBUFS;
  1059. if (pneigh_lookup(tbl, RTA_DATA(nda[NDA_DST-1]), dev, 1))
  1060. err = 0;
  1061. goto out;
  1062. }
  1063. if (dev == NULL)
  1064. return -EINVAL;
  1065. err = -EINVAL;
  1066. if (nda[NDA_LLADDR-1] != NULL &&
  1067.     nda[NDA_LLADDR-1]->rta_len != RTA_LENGTH(dev->addr_len))
  1068. goto out;
  1069. err = 0;
  1070. n = neigh_lookup(tbl, RTA_DATA(nda[NDA_DST-1]), dev);
  1071. if (n) {
  1072. if (nlh->nlmsg_flags&NLM_F_EXCL)
  1073. err = -EEXIST;
  1074. } else if (!(nlh->nlmsg_flags&NLM_F_CREATE))
  1075. err = -ENOENT;
  1076. else {
  1077. n = __neigh_lookup_errno(tbl, RTA_DATA(nda[NDA_DST-1]), dev);
  1078. if (IS_ERR(n)) {
  1079. err = PTR_ERR(n);
  1080. n = NULL;
  1081. }
  1082. }
  1083. if (err == 0) {
  1084. err = neigh_update(n, nda[NDA_LLADDR-1] ? RTA_DATA(nda[NDA_LLADDR-1]) : NULL,
  1085.    ndm->ndm_state,
  1086.    nlh->nlmsg_flags&NLM_F_REPLACE, 0);
  1087. }
  1088. if (n)
  1089. neigh_release(n);
  1090. out:
  1091. if (dev)
  1092. dev_put(dev);
  1093. return err;
  1094. }
  1095. read_unlock(&neigh_tbl_lock);
  1096. if (dev)
  1097. dev_put(dev);
  1098. return -EADDRNOTAVAIL;
  1099. }
  1100. static int neigh_fill_info(struct sk_buff *skb, struct neighbour *n,
  1101.    u32 pid, u32 seq, int event)
  1102. {
  1103. unsigned long now = jiffies;
  1104. struct ndmsg *ndm;
  1105. struct nlmsghdr  *nlh;
  1106. unsigned char  *b = skb->tail;
  1107. struct nda_cacheinfo ci;
  1108. int locked = 0;
  1109. nlh = NLMSG_PUT(skb, pid, seq, event, sizeof(*ndm));
  1110. ndm = NLMSG_DATA(nlh);
  1111. ndm->ndm_family = n->ops->family;
  1112. ndm->ndm_flags = n->flags;
  1113. ndm->ndm_type = n->type;
  1114. ndm->ndm_ifindex = n->dev->ifindex;
  1115. RTA_PUT(skb, NDA_DST, n->tbl->key_len, n->primary_key);
  1116. read_lock_bh(&n->lock);
  1117. locked=1;
  1118. ndm->ndm_state = n->nud_state;
  1119. if (n->nud_state&NUD_VALID)
  1120. RTA_PUT(skb, NDA_LLADDR, n->dev->addr_len, n->ha);
  1121. ci.ndm_used = now - n->used;
  1122. ci.ndm_confirmed = now - n->confirmed;
  1123. ci.ndm_updated = now - n->updated;
  1124. ci.ndm_refcnt = atomic_read(&n->refcnt) - 1;
  1125. read_unlock_bh(&n->lock);
  1126. locked=0;
  1127. RTA_PUT(skb, NDA_CACHEINFO, sizeof(ci), &ci);
  1128. nlh->nlmsg_len = skb->tail - b;
  1129. return skb->len;
  1130. nlmsg_failure:
  1131. rtattr_failure:
  1132. if (locked)
  1133. read_unlock_bh(&n->lock);
  1134. skb_trim(skb, b - skb->data);
  1135. return -1;
  1136. }
  1137. static int neigh_dump_table(struct neigh_table *tbl, struct sk_buff *skb, struct netlink_callback *cb)
  1138. {
  1139. struct neighbour *n;
  1140. int h, s_h;
  1141. int idx, s_idx;
  1142. s_h = cb->args[1];
  1143. s_idx = idx = cb->args[2];
  1144. for (h=0; h <= NEIGH_HASHMASK; h++) {
  1145. if (h < s_h) continue;
  1146. if (h > s_h)
  1147. s_idx = 0;
  1148. read_lock_bh(&tbl->lock);
  1149. for (n = tbl->hash_buckets[h], idx = 0; n;
  1150.      n = n->next, idx++) {
  1151. if (idx < s_idx)
  1152. continue;
  1153. if (neigh_fill_info(skb, n, NETLINK_CB(cb->skb).pid,
  1154.     cb->nlh->nlmsg_seq, RTM_NEWNEIGH) <= 0) {
  1155. read_unlock_bh(&tbl->lock);
  1156. cb->args[1] = h;
  1157. cb->args[2] = idx;
  1158. return -1;
  1159. }
  1160. }
  1161. read_unlock_bh(&tbl->lock);
  1162. }
  1163. cb->args[1] = h;
  1164. cb->args[2] = idx;
  1165. return skb->len;
  1166. }
  1167. int neigh_dump_info(struct sk_buff *skb, struct netlink_callback *cb)
  1168. {
  1169. int t;
  1170. int s_t;
  1171. struct neigh_table *tbl;
  1172. int family = ((struct rtgenmsg*)NLMSG_DATA(cb->nlh))->rtgen_family;
  1173. s_t = cb->args[0];
  1174. read_lock(&neigh_tbl_lock);
  1175. for (tbl=neigh_tables, t=0; tbl; tbl = tbl->next, t++) {
  1176. if (t < s_t) continue;
  1177. if (family && tbl->family != family)
  1178. continue;
  1179. if (t > s_t)
  1180. memset(&cb->args[1], 0, sizeof(cb->args)-sizeof(cb->args[0]));
  1181. if (neigh_dump_table(tbl, skb, cb) < 0) 
  1182. break;
  1183. }
  1184. read_unlock(&neigh_tbl_lock);
  1185. cb->args[0] = t;
  1186. return skb->len;
  1187. }
  1188. #ifdef CONFIG_ARPD
  1189. void neigh_app_ns(struct neighbour *n)
  1190. {
  1191. struct sk_buff *skb;
  1192. struct nlmsghdr  *nlh;
  1193. int size = NLMSG_SPACE(sizeof(struct ndmsg)+256);
  1194. skb = alloc_skb(size, GFP_ATOMIC);
  1195. if (!skb)
  1196. return;
  1197. if (neigh_fill_info(skb, n, 0, 0, RTM_GETNEIGH) < 0) {
  1198. kfree_skb(skb);
  1199. return;
  1200. }
  1201. nlh = (struct nlmsghdr*)skb->data;
  1202. nlh->nlmsg_flags = NLM_F_REQUEST;
  1203. NETLINK_CB(skb).dst_groups = RTMGRP_NEIGH;
  1204. netlink_broadcast(rtnl, skb, 0, RTMGRP_NEIGH, GFP_ATOMIC);
  1205. }
  1206. static void neigh_app_notify(struct neighbour *n)
  1207. {
  1208. struct sk_buff *skb;
  1209. struct nlmsghdr  *nlh;
  1210. int size = NLMSG_SPACE(sizeof(struct ndmsg)+256);
  1211. skb = alloc_skb(size, GFP_ATOMIC);
  1212. if (!skb)
  1213. return;
  1214. if (neigh_fill_info(skb, n, 0, 0, RTM_NEWNEIGH) < 0) {
  1215. kfree_skb(skb);
  1216. return;
  1217. }
  1218. nlh = (struct nlmsghdr*)skb->data;
  1219. NETLINK_CB(skb).dst_groups = RTMGRP_NEIGH;
  1220. netlink_broadcast(rtnl, skb, 0, RTMGRP_NEIGH, GFP_ATOMIC);
  1221. }
  1222. #endif /* CONFIG_ARPD */
  1223. #ifdef CONFIG_SYSCTL
  1224. struct neigh_sysctl_table
  1225. {
  1226. struct ctl_table_header *sysctl_header;
  1227. ctl_table neigh_vars[17];
  1228. ctl_table neigh_dev[2];
  1229. ctl_table neigh_neigh_dir[2];
  1230. ctl_table neigh_proto_dir[2];
  1231. ctl_table neigh_root_dir[2];
  1232. } neigh_sysctl_template = {
  1233. NULL,
  1234.         {{NET_NEIGH_MCAST_SOLICIT, "mcast_solicit",
  1235.          NULL, sizeof(int), 0644, NULL,
  1236.          &proc_dointvec},
  1237. {NET_NEIGH_UCAST_SOLICIT, "ucast_solicit",
  1238.          NULL, sizeof(int), 0644, NULL,
  1239.          &proc_dointvec},
  1240. {NET_NEIGH_APP_SOLICIT, "app_solicit",
  1241.          NULL, sizeof(int), 0644, NULL,
  1242.          &proc_dointvec},
  1243. {NET_NEIGH_RETRANS_TIME, "retrans_time",
  1244.          NULL, sizeof(int), 0644, NULL,
  1245.          &proc_dointvec},
  1246. {NET_NEIGH_REACHABLE_TIME, "base_reachable_time",
  1247.          NULL, sizeof(int), 0644, NULL,
  1248.          &proc_dointvec_jiffies},
  1249. {NET_NEIGH_DELAY_PROBE_TIME, "delay_first_probe_time",
  1250.          NULL, sizeof(int), 0644, NULL,
  1251.          &proc_dointvec_jiffies},
  1252. {NET_NEIGH_GC_STALE_TIME, "gc_stale_time",
  1253.          NULL, sizeof(int), 0644, NULL,
  1254.          &proc_dointvec_jiffies},
  1255. {NET_NEIGH_UNRES_QLEN, "unres_qlen",
  1256.          NULL, sizeof(int), 0644, NULL,
  1257.          &proc_dointvec},
  1258. {NET_NEIGH_PROXY_QLEN, "proxy_qlen",
  1259.          NULL, sizeof(int), 0644, NULL,
  1260.          &proc_dointvec},
  1261. {NET_NEIGH_ANYCAST_DELAY, "anycast_delay",
  1262.          NULL, sizeof(int), 0644, NULL,
  1263.          &proc_dointvec},
  1264. {NET_NEIGH_PROXY_DELAY, "proxy_delay",
  1265.          NULL, sizeof(int), 0644, NULL,
  1266.          &proc_dointvec},
  1267. {NET_NEIGH_LOCKTIME, "locktime",
  1268.          NULL, sizeof(int), 0644, NULL,
  1269.          &proc_dointvec},
  1270. {NET_NEIGH_GC_INTERVAL, "gc_interval",
  1271.          NULL, sizeof(int), 0644, NULL,
  1272.          &proc_dointvec_jiffies},
  1273. {NET_NEIGH_GC_THRESH1, "gc_thresh1",
  1274.          NULL, sizeof(int), 0644, NULL,
  1275.          &proc_dointvec},
  1276. {NET_NEIGH_GC_THRESH2, "gc_thresh2",
  1277.          NULL, sizeof(int), 0644, NULL,
  1278.          &proc_dointvec},
  1279. {NET_NEIGH_GC_THRESH3, "gc_thresh3",
  1280.          NULL, sizeof(int), 0644, NULL,
  1281.          &proc_dointvec},
  1282.  {0}},
  1283. {{NET_PROTO_CONF_DEFAULT, "default", NULL, 0, 0555, NULL},{0}},
  1284. {{0, "neigh", NULL, 0, 0555, NULL},{0}},
  1285. {{0, NULL, NULL, 0, 0555, NULL},{0}},
  1286. {{CTL_NET, "net", NULL, 0, 0555, NULL},{0}}
  1287. };
  1288. int neigh_sysctl_register(struct net_device *dev, struct neigh_parms *p,
  1289.   int p_id, int pdev_id, char *p_name)
  1290. {
  1291. struct neigh_sysctl_table *t;
  1292. t = kmalloc(sizeof(*t), GFP_KERNEL);
  1293. if (t == NULL)
  1294. return -ENOBUFS;
  1295. memcpy(t, &neigh_sysctl_template, sizeof(*t));
  1296. t->neigh_vars[0].data = &p->mcast_probes;
  1297. t->neigh_vars[1].data = &p->ucast_probes;
  1298. t->neigh_vars[2].data = &p->app_probes;
  1299. t->neigh_vars[3].data = &p->retrans_time;
  1300. t->neigh_vars[4].data = &p->base_reachable_time;
  1301. t->neigh_vars[5].data = &p->delay_probe_time;
  1302. t->neigh_vars[6].data = &p->gc_staletime;
  1303. t->neigh_vars[7].data = &p->queue_len;
  1304. t->neigh_vars[8].data = &p->proxy_qlen;
  1305. t->neigh_vars[9].data = &p->anycast_delay;
  1306. t->neigh_vars[10].data = &p->proxy_delay;
  1307. t->neigh_vars[11].data = &p->locktime;
  1308. if (dev) {
  1309. t->neigh_dev[0].procname = dev->name;
  1310. t->neigh_dev[0].ctl_name = dev->ifindex;
  1311. memset(&t->neigh_vars[12], 0, sizeof(ctl_table));
  1312. } else {
  1313. t->neigh_vars[12].data = (int*)(p+1);
  1314. t->neigh_vars[13].data = (int*)(p+1) + 1;
  1315. t->neigh_vars[14].data = (int*)(p+1) + 2;
  1316. t->neigh_vars[15].data = (int*)(p+1) + 3;
  1317. }
  1318. t->neigh_neigh_dir[0].ctl_name = pdev_id;
  1319. t->neigh_proto_dir[0].procname = p_name;
  1320. t->neigh_proto_dir[0].ctl_name = p_id;
  1321. t->neigh_dev[0].child = t->neigh_vars;
  1322. t->neigh_neigh_dir[0].child = t->neigh_dev;
  1323. t->neigh_proto_dir[0].child = t->neigh_neigh_dir;
  1324. t->neigh_root_dir[0].child = t->neigh_proto_dir;
  1325. t->sysctl_header = register_sysctl_table(t->neigh_root_dir, 0);
  1326. if (t->sysctl_header == NULL) {
  1327. kfree(t);
  1328. return -ENOBUFS;
  1329. }
  1330. p->sysctl_table = t;
  1331. return 0;
  1332. }
  1333. void neigh_sysctl_unregister(struct neigh_parms *p)
  1334. {
  1335. if (p->sysctl_table) {
  1336. struct neigh_sysctl_table *t = p->sysctl_table;
  1337. p->sysctl_table = NULL;
  1338. unregister_sysctl_table(t->sysctl_header);
  1339. kfree(t);
  1340. }
  1341. }
  1342. #endif /* CONFIG_SYSCTL */