Merge git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6
[wrt350n-kernel.git] / net / core / neighbour.c
blobbc58975f812f42d09e3eece9ca52f16d3367688f
1 /*
2 * Generic address resolution entity
4 * Authors:
5 * Pedro Roque <roque@di.fc.ul.pt>
6 * Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
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.
13 * Fixes:
14 * Vitaly E. Lavrov releasing NULL neighbor in neigh_add.
15 * Harald Welte Add neighbour cache statistics like rtstat
18 #include <linux/types.h>
19 #include <linux/kernel.h>
20 #include <linux/module.h>
21 #include <linux/socket.h>
22 #include <linux/netdevice.h>
23 #include <linux/proc_fs.h>
24 #ifdef CONFIG_SYSCTL
25 #include <linux/sysctl.h>
26 #endif
27 #include <linux/times.h>
28 #include <net/net_namespace.h>
29 #include <net/neighbour.h>
30 #include <net/dst.h>
31 #include <net/sock.h>
32 #include <net/netevent.h>
33 #include <net/netlink.h>
34 #include <linux/rtnetlink.h>
35 #include <linux/random.h>
36 #include <linux/string.h>
37 #include <linux/log2.h>
39 #define NEIGH_DEBUG 1
41 #define NEIGH_PRINTK(x...) printk(x)
42 #define NEIGH_NOPRINTK(x...) do { ; } while(0)
43 #define NEIGH_PRINTK0 NEIGH_PRINTK
44 #define NEIGH_PRINTK1 NEIGH_NOPRINTK
45 #define NEIGH_PRINTK2 NEIGH_NOPRINTK
47 #if NEIGH_DEBUG >= 1
48 #undef NEIGH_PRINTK1
49 #define NEIGH_PRINTK1 NEIGH_PRINTK
50 #endif
51 #if NEIGH_DEBUG >= 2
52 #undef NEIGH_PRINTK2
53 #define NEIGH_PRINTK2 NEIGH_PRINTK
54 #endif
56 #define PNEIGH_HASHMASK 0xF
58 static void neigh_timer_handler(unsigned long arg);
59 static void __neigh_notify(struct neighbour *n, int type, int flags);
60 static void neigh_update_notify(struct neighbour *neigh);
61 static int pneigh_ifdown(struct neigh_table *tbl, struct net_device *dev);
63 static struct neigh_table *neigh_tables;
64 #ifdef CONFIG_PROC_FS
65 static const struct file_operations neigh_stat_seq_fops;
66 #endif
69 Neighbour hash table buckets are protected with rwlock tbl->lock.
71 - All the scans/updates to hash buckets MUST be made under this lock.
72 - NOTHING clever should be made under this lock: no callbacks
73 to protocol backends, no attempts to send something to network.
74 It will result in deadlocks, if backend/driver wants to use neighbour
75 cache.
76 - If the entry requires some non-trivial actions, increase
77 its reference count and release table lock.
79 Neighbour entries are protected:
80 - with reference count.
81 - with rwlock neigh->lock
83 Reference count prevents destruction.
85 neigh->lock mainly serializes ll address data and its validity state.
86 However, the same lock is used to protect another entry fields:
87 - timer
88 - resolution queue
90 Again, nothing clever shall be made under neigh->lock,
91 the most complicated procedure, which we allow is dev->hard_header.
92 It is supposed, that dev->hard_header is simplistic and does
93 not make callbacks to neighbour tables.
95 The last lock is neigh_tbl_lock. It is pure SMP lock, protecting
96 list of neighbour tables. This list is used only in process context,
99 static DEFINE_RWLOCK(neigh_tbl_lock);
101 static int neigh_blackhole(struct sk_buff *skb)
103 kfree_skb(skb);
104 return -ENETDOWN;
107 static void neigh_cleanup_and_release(struct neighbour *neigh)
109 if (neigh->parms->neigh_cleanup)
110 neigh->parms->neigh_cleanup(neigh);
112 __neigh_notify(neigh, RTM_DELNEIGH, 0);
113 neigh_release(neigh);
117 * It is random distribution in the interval (1/2)*base...(3/2)*base.
118 * It corresponds to default IPv6 settings and is not overridable,
119 * because it is really reasonable choice.
122 unsigned long neigh_rand_reach_time(unsigned long base)
124 return (base ? (net_random() % base) + (base >> 1) : 0);
128 static int neigh_forced_gc(struct neigh_table *tbl)
130 int shrunk = 0;
131 int i;
133 NEIGH_CACHE_STAT_INC(tbl, forced_gc_runs);
135 write_lock_bh(&tbl->lock);
136 for (i = 0; i <= tbl->hash_mask; i++) {
137 struct neighbour *n, **np;
139 np = &tbl->hash_buckets[i];
140 while ((n = *np) != NULL) {
141 /* Neighbour record may be discarded if:
142 * - nobody refers to it.
143 * - it is not permanent
145 write_lock(&n->lock);
146 if (atomic_read(&n->refcnt) == 1 &&
147 !(n->nud_state & NUD_PERMANENT)) {
148 *np = n->next;
149 n->dead = 1;
150 shrunk = 1;
151 write_unlock(&n->lock);
152 neigh_cleanup_and_release(n);
153 continue;
155 write_unlock(&n->lock);
156 np = &n->next;
160 tbl->last_flush = jiffies;
162 write_unlock_bh(&tbl->lock);
164 return shrunk;
167 static void neigh_add_timer(struct neighbour *n, unsigned long when)
169 neigh_hold(n);
170 if (unlikely(mod_timer(&n->timer, when))) {
171 printk("NEIGH: BUG, double timer add, state is %x\n",
172 n->nud_state);
173 dump_stack();
177 static int neigh_del_timer(struct neighbour *n)
179 if ((n->nud_state & NUD_IN_TIMER) &&
180 del_timer(&n->timer)) {
181 neigh_release(n);
182 return 1;
184 return 0;
187 static void pneigh_queue_purge(struct sk_buff_head *list)
189 struct sk_buff *skb;
191 while ((skb = skb_dequeue(list)) != NULL) {
192 dev_put(skb->dev);
193 kfree_skb(skb);
197 static void neigh_flush_dev(struct neigh_table *tbl, struct net_device *dev)
199 int i;
201 for (i = 0; i <= tbl->hash_mask; i++) {
202 struct neighbour *n, **np = &tbl->hash_buckets[i];
204 while ((n = *np) != NULL) {
205 if (dev && n->dev != dev) {
206 np = &n->next;
207 continue;
209 *np = n->next;
210 write_lock(&n->lock);
211 neigh_del_timer(n);
212 n->dead = 1;
214 if (atomic_read(&n->refcnt) != 1) {
215 /* The most unpleasant situation.
216 We must destroy neighbour entry,
217 but someone still uses it.
219 The destroy will be delayed until
220 the last user releases us, but
221 we must kill timers etc. and move
222 it to safe state.
224 skb_queue_purge(&n->arp_queue);
225 n->output = neigh_blackhole;
226 if (n->nud_state & NUD_VALID)
227 n->nud_state = NUD_NOARP;
228 else
229 n->nud_state = NUD_NONE;
230 NEIGH_PRINTK2("neigh %p is stray.\n", n);
232 write_unlock(&n->lock);
233 neigh_cleanup_and_release(n);
238 void neigh_changeaddr(struct neigh_table *tbl, struct net_device *dev)
240 write_lock_bh(&tbl->lock);
241 neigh_flush_dev(tbl, dev);
242 write_unlock_bh(&tbl->lock);
245 int neigh_ifdown(struct neigh_table *tbl, struct net_device *dev)
247 write_lock_bh(&tbl->lock);
248 neigh_flush_dev(tbl, dev);
249 pneigh_ifdown(tbl, dev);
250 write_unlock_bh(&tbl->lock);
252 del_timer_sync(&tbl->proxy_timer);
253 pneigh_queue_purge(&tbl->proxy_queue);
254 return 0;
257 static struct neighbour *neigh_alloc(struct neigh_table *tbl)
259 struct neighbour *n = NULL;
260 unsigned long now = jiffies;
261 int entries;
263 entries = atomic_inc_return(&tbl->entries) - 1;
264 if (entries >= tbl->gc_thresh3 ||
265 (entries >= tbl->gc_thresh2 &&
266 time_after(now, tbl->last_flush + 5 * HZ))) {
267 if (!neigh_forced_gc(tbl) &&
268 entries >= tbl->gc_thresh3)
269 goto out_entries;
272 n = kmem_cache_zalloc(tbl->kmem_cachep, GFP_ATOMIC);
273 if (!n)
274 goto out_entries;
276 skb_queue_head_init(&n->arp_queue);
277 rwlock_init(&n->lock);
278 n->updated = n->used = now;
279 n->nud_state = NUD_NONE;
280 n->output = neigh_blackhole;
281 n->parms = neigh_parms_clone(&tbl->parms);
282 setup_timer(&n->timer, neigh_timer_handler, (unsigned long)n);
284 NEIGH_CACHE_STAT_INC(tbl, allocs);
285 n->tbl = tbl;
286 atomic_set(&n->refcnt, 1);
287 n->dead = 1;
288 out:
289 return n;
291 out_entries:
292 atomic_dec(&tbl->entries);
293 goto out;
296 static struct neighbour **neigh_hash_alloc(unsigned int entries)
298 unsigned long size = entries * sizeof(struct neighbour *);
299 struct neighbour **ret;
301 if (size <= PAGE_SIZE) {
302 ret = kzalloc(size, GFP_ATOMIC);
303 } else {
304 ret = (struct neighbour **)
305 __get_free_pages(GFP_ATOMIC|__GFP_ZERO, get_order(size));
307 return ret;
310 static void neigh_hash_free(struct neighbour **hash, unsigned int entries)
312 unsigned long size = entries * sizeof(struct neighbour *);
314 if (size <= PAGE_SIZE)
315 kfree(hash);
316 else
317 free_pages((unsigned long)hash, get_order(size));
320 static void neigh_hash_grow(struct neigh_table *tbl, unsigned long new_entries)
322 struct neighbour **new_hash, **old_hash;
323 unsigned int i, new_hash_mask, old_entries;
325 NEIGH_CACHE_STAT_INC(tbl, hash_grows);
327 BUG_ON(!is_power_of_2(new_entries));
328 new_hash = neigh_hash_alloc(new_entries);
329 if (!new_hash)
330 return;
332 old_entries = tbl->hash_mask + 1;
333 new_hash_mask = new_entries - 1;
334 old_hash = tbl->hash_buckets;
336 get_random_bytes(&tbl->hash_rnd, sizeof(tbl->hash_rnd));
337 for (i = 0; i < old_entries; i++) {
338 struct neighbour *n, *next;
340 for (n = old_hash[i]; n; n = next) {
341 unsigned int hash_val = tbl->hash(n->primary_key, n->dev);
343 hash_val &= new_hash_mask;
344 next = n->next;
346 n->next = new_hash[hash_val];
347 new_hash[hash_val] = n;
350 tbl->hash_buckets = new_hash;
351 tbl->hash_mask = new_hash_mask;
353 neigh_hash_free(old_hash, old_entries);
356 struct neighbour *neigh_lookup(struct neigh_table *tbl, const void *pkey,
357 struct net_device *dev)
359 struct neighbour *n;
360 int key_len = tbl->key_len;
361 <<<<<<< HEAD:net/core/neighbour.c
362 u32 hash_val = tbl->hash(pkey, dev);
363 =======
364 u32 hash_val;
365 >>>>>>> 264e3e889d86e552b4191d69bb60f4f3b383135a:net/core/neighbour.c
367 NEIGH_CACHE_STAT_INC(tbl, lookups);
369 read_lock_bh(&tbl->lock);
370 <<<<<<< HEAD:net/core/neighbour.c
371 =======
372 hash_val = tbl->hash(pkey, dev);
373 >>>>>>> 264e3e889d86e552b4191d69bb60f4f3b383135a:net/core/neighbour.c
374 for (n = tbl->hash_buckets[hash_val & tbl->hash_mask]; n; n = n->next) {
375 if (dev == n->dev && !memcmp(n->primary_key, pkey, key_len)) {
376 neigh_hold(n);
377 NEIGH_CACHE_STAT_INC(tbl, hits);
378 break;
381 read_unlock_bh(&tbl->lock);
382 return n;
385 struct neighbour *neigh_lookup_nodev(struct neigh_table *tbl, struct net *net,
386 const void *pkey)
388 struct neighbour *n;
389 int key_len = tbl->key_len;
390 <<<<<<< HEAD:net/core/neighbour.c
391 u32 hash_val = tbl->hash(pkey, NULL);
392 =======
393 u32 hash_val;
394 >>>>>>> 264e3e889d86e552b4191d69bb60f4f3b383135a:net/core/neighbour.c
396 NEIGH_CACHE_STAT_INC(tbl, lookups);
398 read_lock_bh(&tbl->lock);
399 <<<<<<< HEAD:net/core/neighbour.c
400 =======
401 hash_val = tbl->hash(pkey, NULL);
402 >>>>>>> 264e3e889d86e552b4191d69bb60f4f3b383135a:net/core/neighbour.c
403 for (n = tbl->hash_buckets[hash_val & tbl->hash_mask]; n; n = n->next) {
404 if (!memcmp(n->primary_key, pkey, key_len) &&
405 (net == n->dev->nd_net)) {
406 neigh_hold(n);
407 NEIGH_CACHE_STAT_INC(tbl, hits);
408 break;
411 read_unlock_bh(&tbl->lock);
412 return n;
415 struct neighbour *neigh_create(struct neigh_table *tbl, const void *pkey,
416 struct net_device *dev)
418 u32 hash_val;
419 int key_len = tbl->key_len;
420 int error;
421 struct neighbour *n1, *rc, *n = neigh_alloc(tbl);
423 if (!n) {
424 rc = ERR_PTR(-ENOBUFS);
425 goto out;
428 memcpy(n->primary_key, pkey, key_len);
429 n->dev = dev;
430 dev_hold(dev);
432 /* Protocol specific setup. */
433 if (tbl->constructor && (error = tbl->constructor(n)) < 0) {
434 rc = ERR_PTR(error);
435 goto out_neigh_release;
438 /* Device specific setup. */
439 if (n->parms->neigh_setup &&
440 (error = n->parms->neigh_setup(n)) < 0) {
441 rc = ERR_PTR(error);
442 goto out_neigh_release;
445 n->confirmed = jiffies - (n->parms->base_reachable_time << 1);
447 write_lock_bh(&tbl->lock);
449 if (atomic_read(&tbl->entries) > (tbl->hash_mask + 1))
450 neigh_hash_grow(tbl, (tbl->hash_mask + 1) << 1);
452 hash_val = tbl->hash(pkey, dev) & tbl->hash_mask;
454 if (n->parms->dead) {
455 rc = ERR_PTR(-EINVAL);
456 goto out_tbl_unlock;
459 for (n1 = tbl->hash_buckets[hash_val]; n1; n1 = n1->next) {
460 if (dev == n1->dev && !memcmp(n1->primary_key, pkey, key_len)) {
461 neigh_hold(n1);
462 rc = n1;
463 goto out_tbl_unlock;
467 n->next = tbl->hash_buckets[hash_val];
468 tbl->hash_buckets[hash_val] = n;
469 n->dead = 0;
470 neigh_hold(n);
471 write_unlock_bh(&tbl->lock);
472 NEIGH_PRINTK2("neigh %p is created.\n", n);
473 rc = n;
474 out:
475 return rc;
476 out_tbl_unlock:
477 write_unlock_bh(&tbl->lock);
478 out_neigh_release:
479 neigh_release(n);
480 goto out;
483 struct pneigh_entry * pneigh_lookup(struct neigh_table *tbl,
484 struct net *net, const void *pkey,
485 struct net_device *dev, int creat)
487 struct pneigh_entry *n;
488 int key_len = tbl->key_len;
489 u32 hash_val = *(u32 *)(pkey + key_len - 4);
491 hash_val ^= (hash_val >> 16);
492 hash_val ^= hash_val >> 8;
493 hash_val ^= hash_val >> 4;
494 hash_val &= PNEIGH_HASHMASK;
496 read_lock_bh(&tbl->lock);
498 for (n = tbl->phash_buckets[hash_val]; n; n = n->next) {
499 if (!memcmp(n->key, pkey, key_len) &&
500 (n->net == net) &&
501 (n->dev == dev || !n->dev)) {
502 read_unlock_bh(&tbl->lock);
503 goto out;
506 read_unlock_bh(&tbl->lock);
507 n = NULL;
508 if (!creat)
509 goto out;
511 ASSERT_RTNL();
513 n = kmalloc(sizeof(*n) + key_len, GFP_KERNEL);
514 if (!n)
515 goto out;
517 n->net = hold_net(net);
518 memcpy(n->key, pkey, key_len);
519 n->dev = dev;
520 if (dev)
521 dev_hold(dev);
523 if (tbl->pconstructor && tbl->pconstructor(n)) {
524 if (dev)
525 dev_put(dev);
526 <<<<<<< HEAD:net/core/neighbour.c
527 =======
528 release_net(net);
529 >>>>>>> 264e3e889d86e552b4191d69bb60f4f3b383135a:net/core/neighbour.c
530 kfree(n);
531 n = NULL;
532 goto out;
535 write_lock_bh(&tbl->lock);
536 n->next = tbl->phash_buckets[hash_val];
537 tbl->phash_buckets[hash_val] = n;
538 write_unlock_bh(&tbl->lock);
539 out:
540 return n;
544 int pneigh_delete(struct neigh_table *tbl, struct net *net, const void *pkey,
545 struct net_device *dev)
547 struct pneigh_entry *n, **np;
548 int key_len = tbl->key_len;
549 u32 hash_val = *(u32 *)(pkey + key_len - 4);
551 hash_val ^= (hash_val >> 16);
552 hash_val ^= hash_val >> 8;
553 hash_val ^= hash_val >> 4;
554 hash_val &= PNEIGH_HASHMASK;
556 write_lock_bh(&tbl->lock);
557 for (np = &tbl->phash_buckets[hash_val]; (n = *np) != NULL;
558 np = &n->next) {
559 if (!memcmp(n->key, pkey, key_len) && n->dev == dev &&
560 (n->net == net)) {
561 *np = n->next;
562 write_unlock_bh(&tbl->lock);
563 if (tbl->pdestructor)
564 tbl->pdestructor(n);
565 if (n->dev)
566 dev_put(n->dev);
567 release_net(n->net);
568 kfree(n);
569 return 0;
572 write_unlock_bh(&tbl->lock);
573 return -ENOENT;
576 static int pneigh_ifdown(struct neigh_table *tbl, struct net_device *dev)
578 struct pneigh_entry *n, **np;
579 u32 h;
581 for (h = 0; h <= PNEIGH_HASHMASK; h++) {
582 np = &tbl->phash_buckets[h];
583 while ((n = *np) != NULL) {
584 if (!dev || n->dev == dev) {
585 *np = n->next;
586 if (tbl->pdestructor)
587 tbl->pdestructor(n);
588 if (n->dev)
589 dev_put(n->dev);
590 release_net(n->net);
591 kfree(n);
592 continue;
594 np = &n->next;
597 return -ENOENT;
600 static void neigh_parms_destroy(struct neigh_parms *parms);
602 static inline void neigh_parms_put(struct neigh_parms *parms)
604 if (atomic_dec_and_test(&parms->refcnt))
605 neigh_parms_destroy(parms);
609 * neighbour must already be out of the table;
612 void neigh_destroy(struct neighbour *neigh)
614 struct hh_cache *hh;
616 NEIGH_CACHE_STAT_INC(neigh->tbl, destroys);
618 if (!neigh->dead) {
619 printk(KERN_WARNING
620 "Destroying alive neighbour %p\n", neigh);
621 dump_stack();
622 return;
625 if (neigh_del_timer(neigh))
626 printk(KERN_WARNING "Impossible event.\n");
628 while ((hh = neigh->hh) != NULL) {
629 neigh->hh = hh->hh_next;
630 hh->hh_next = NULL;
632 write_seqlock_bh(&hh->hh_lock);
633 hh->hh_output = neigh_blackhole;
634 write_sequnlock_bh(&hh->hh_lock);
635 if (atomic_dec_and_test(&hh->hh_refcnt))
636 kfree(hh);
639 skb_queue_purge(&neigh->arp_queue);
641 dev_put(neigh->dev);
642 neigh_parms_put(neigh->parms);
644 NEIGH_PRINTK2("neigh %p is destroyed.\n", neigh);
646 atomic_dec(&neigh->tbl->entries);
647 kmem_cache_free(neigh->tbl->kmem_cachep, neigh);
650 /* Neighbour state is suspicious;
651 disable fast path.
653 Called with write_locked neigh.
655 static void neigh_suspect(struct neighbour *neigh)
657 struct hh_cache *hh;
659 NEIGH_PRINTK2("neigh %p is suspected.\n", neigh);
661 neigh->output = neigh->ops->output;
663 for (hh = neigh->hh; hh; hh = hh->hh_next)
664 hh->hh_output = neigh->ops->output;
667 /* Neighbour state is OK;
668 enable fast path.
670 Called with write_locked neigh.
672 static void neigh_connect(struct neighbour *neigh)
674 struct hh_cache *hh;
676 NEIGH_PRINTK2("neigh %p is connected.\n", neigh);
678 neigh->output = neigh->ops->connected_output;
680 for (hh = neigh->hh; hh; hh = hh->hh_next)
681 hh->hh_output = neigh->ops->hh_output;
684 static void neigh_periodic_timer(unsigned long arg)
686 struct neigh_table *tbl = (struct neigh_table *)arg;
687 struct neighbour *n, **np;
688 unsigned long expire, now = jiffies;
690 NEIGH_CACHE_STAT_INC(tbl, periodic_gc_runs);
692 write_lock(&tbl->lock);
695 * periodically recompute ReachableTime from random function
698 if (time_after(now, tbl->last_rand + 300 * HZ)) {
699 struct neigh_parms *p;
700 tbl->last_rand = now;
701 for (p = &tbl->parms; p; p = p->next)
702 p->reachable_time =
703 neigh_rand_reach_time(p->base_reachable_time);
706 np = &tbl->hash_buckets[tbl->hash_chain_gc];
707 tbl->hash_chain_gc = ((tbl->hash_chain_gc + 1) & tbl->hash_mask);
709 while ((n = *np) != NULL) {
710 unsigned int state;
712 write_lock(&n->lock);
714 state = n->nud_state;
715 if (state & (NUD_PERMANENT | NUD_IN_TIMER)) {
716 write_unlock(&n->lock);
717 goto next_elt;
720 if (time_before(n->used, n->confirmed))
721 n->used = n->confirmed;
723 if (atomic_read(&n->refcnt) == 1 &&
724 (state == NUD_FAILED ||
725 time_after(now, n->used + n->parms->gc_staletime))) {
726 *np = n->next;
727 n->dead = 1;
728 write_unlock(&n->lock);
729 neigh_cleanup_and_release(n);
730 continue;
732 write_unlock(&n->lock);
734 next_elt:
735 np = &n->next;
738 /* Cycle through all hash buckets every base_reachable_time/2 ticks.
739 * ARP entry timeouts range from 1/2 base_reachable_time to 3/2
740 * base_reachable_time.
742 expire = tbl->parms.base_reachable_time >> 1;
743 expire /= (tbl->hash_mask + 1);
744 if (!expire)
745 expire = 1;
747 if (expire>HZ)
748 mod_timer(&tbl->gc_timer, round_jiffies(now + expire));
749 else
750 mod_timer(&tbl->gc_timer, now + expire);
752 write_unlock(&tbl->lock);
755 static __inline__ int neigh_max_probes(struct neighbour *n)
757 struct neigh_parms *p = n->parms;
758 return (n->nud_state & NUD_PROBE ?
759 p->ucast_probes :
760 p->ucast_probes + p->app_probes + p->mcast_probes);
763 /* Called when a timer expires for a neighbour entry. */
765 static void neigh_timer_handler(unsigned long arg)
767 unsigned long now, next;
768 struct neighbour *neigh = (struct neighbour *)arg;
769 unsigned state;
770 int notify = 0;
772 write_lock(&neigh->lock);
774 state = neigh->nud_state;
775 now = jiffies;
776 next = now + HZ;
778 if (!(state & NUD_IN_TIMER)) {
779 #ifndef CONFIG_SMP
780 printk(KERN_WARNING "neigh: timer & !nud_in_timer\n");
781 #endif
782 goto out;
785 if (state & NUD_REACHABLE) {
786 if (time_before_eq(now,
787 neigh->confirmed + neigh->parms->reachable_time)) {
788 NEIGH_PRINTK2("neigh %p is still alive.\n", neigh);
789 next = neigh->confirmed + neigh->parms->reachable_time;
790 } else if (time_before_eq(now,
791 neigh->used + neigh->parms->delay_probe_time)) {
792 NEIGH_PRINTK2("neigh %p is delayed.\n", neigh);
793 neigh->nud_state = NUD_DELAY;
794 neigh->updated = jiffies;
795 neigh_suspect(neigh);
796 next = now + neigh->parms->delay_probe_time;
797 } else {
798 NEIGH_PRINTK2("neigh %p is suspected.\n", neigh);
799 neigh->nud_state = NUD_STALE;
800 neigh->updated = jiffies;
801 neigh_suspect(neigh);
802 notify = 1;
804 } else if (state & NUD_DELAY) {
805 if (time_before_eq(now,
806 neigh->confirmed + neigh->parms->delay_probe_time)) {
807 NEIGH_PRINTK2("neigh %p is now reachable.\n", neigh);
808 neigh->nud_state = NUD_REACHABLE;
809 neigh->updated = jiffies;
810 neigh_connect(neigh);
811 notify = 1;
812 next = neigh->confirmed + neigh->parms->reachable_time;
813 } else {
814 NEIGH_PRINTK2("neigh %p is probed.\n", neigh);
815 neigh->nud_state = NUD_PROBE;
816 neigh->updated = jiffies;
817 atomic_set(&neigh->probes, 0);
818 next = now + neigh->parms->retrans_time;
820 } else {
821 /* NUD_PROBE|NUD_INCOMPLETE */
822 next = now + neigh->parms->retrans_time;
825 if ((neigh->nud_state & (NUD_INCOMPLETE | NUD_PROBE)) &&
826 atomic_read(&neigh->probes) >= neigh_max_probes(neigh)) {
827 struct sk_buff *skb;
829 neigh->nud_state = NUD_FAILED;
830 neigh->updated = jiffies;
831 notify = 1;
832 NEIGH_CACHE_STAT_INC(neigh->tbl, res_failed);
833 NEIGH_PRINTK2("neigh %p is failed.\n", neigh);
835 /* It is very thin place. report_unreachable is very complicated
836 routine. Particularly, it can hit the same neighbour entry!
838 So that, we try to be accurate and avoid dead loop. --ANK
840 while (neigh->nud_state == NUD_FAILED &&
841 (skb = __skb_dequeue(&neigh->arp_queue)) != NULL) {
842 write_unlock(&neigh->lock);
843 neigh->ops->error_report(neigh, skb);
844 write_lock(&neigh->lock);
846 skb_queue_purge(&neigh->arp_queue);
849 if (neigh->nud_state & NUD_IN_TIMER) {
850 if (time_before(next, jiffies + HZ/2))
851 next = jiffies + HZ/2;
852 if (!mod_timer(&neigh->timer, next))
853 neigh_hold(neigh);
855 if (neigh->nud_state & (NUD_INCOMPLETE | NUD_PROBE)) {
856 struct sk_buff *skb = skb_peek(&neigh->arp_queue);
857 <<<<<<< HEAD:net/core/neighbour.c
859 =======
860 /* keep skb alive even if arp_queue overflows */
861 if (skb)
862 skb = skb_copy(skb, GFP_ATOMIC);
863 write_unlock(&neigh->lock);
864 >>>>>>> 264e3e889d86e552b4191d69bb60f4f3b383135a:net/core/neighbour.c
865 neigh->ops->solicit(neigh, skb);
866 atomic_inc(&neigh->probes);
867 <<<<<<< HEAD:net/core/neighbour.c
869 =======
870 if (skb)
871 kfree_skb(skb);
872 } else {
873 >>>>>>> 264e3e889d86e552b4191d69bb60f4f3b383135a:net/core/neighbour.c
874 out:
875 <<<<<<< HEAD:net/core/neighbour.c
876 write_unlock(&neigh->lock);
877 =======
878 write_unlock(&neigh->lock);
880 >>>>>>> 264e3e889d86e552b4191d69bb60f4f3b383135a:net/core/neighbour.c
882 if (notify)
883 neigh_update_notify(neigh);
885 neigh_release(neigh);
888 int __neigh_event_send(struct neighbour *neigh, struct sk_buff *skb)
890 int rc;
891 unsigned long now;
893 write_lock_bh(&neigh->lock);
895 rc = 0;
896 if (neigh->nud_state & (NUD_CONNECTED | NUD_DELAY | NUD_PROBE))
897 goto out_unlock_bh;
899 now = jiffies;
901 if (!(neigh->nud_state & (NUD_STALE | NUD_INCOMPLETE))) {
902 if (neigh->parms->mcast_probes + neigh->parms->app_probes) {
903 atomic_set(&neigh->probes, neigh->parms->ucast_probes);
904 neigh->nud_state = NUD_INCOMPLETE;
905 neigh->updated = jiffies;
906 neigh_add_timer(neigh, now + 1);
907 } else {
908 neigh->nud_state = NUD_FAILED;
909 neigh->updated = jiffies;
910 write_unlock_bh(&neigh->lock);
912 if (skb)
913 kfree_skb(skb);
914 return 1;
916 } else if (neigh->nud_state & NUD_STALE) {
917 NEIGH_PRINTK2("neigh %p is delayed.\n", neigh);
918 neigh->nud_state = NUD_DELAY;
919 neigh->updated = jiffies;
920 neigh_add_timer(neigh,
921 jiffies + neigh->parms->delay_probe_time);
924 if (neigh->nud_state == NUD_INCOMPLETE) {
925 if (skb) {
926 if (skb_queue_len(&neigh->arp_queue) >=
927 neigh->parms->queue_len) {
928 struct sk_buff *buff;
929 buff = neigh->arp_queue.next;
930 __skb_unlink(buff, &neigh->arp_queue);
931 kfree_skb(buff);
933 __skb_queue_tail(&neigh->arp_queue, skb);
935 rc = 1;
937 out_unlock_bh:
938 write_unlock_bh(&neigh->lock);
939 return rc;
942 static void neigh_update_hhs(struct neighbour *neigh)
944 struct hh_cache *hh;
945 void (*update)(struct hh_cache*, const struct net_device*, const unsigned char *)
946 = neigh->dev->header_ops->cache_update;
948 if (update) {
949 for (hh = neigh->hh; hh; hh = hh->hh_next) {
950 write_seqlock_bh(&hh->hh_lock);
951 update(hh, neigh->dev, neigh->ha);
952 write_sequnlock_bh(&hh->hh_lock);
959 /* Generic update routine.
960 -- lladdr is new lladdr or NULL, if it is not supplied.
961 -- new is new state.
962 -- flags
963 NEIGH_UPDATE_F_OVERRIDE allows to override existing lladdr,
964 if it is different.
965 NEIGH_UPDATE_F_WEAK_OVERRIDE will suspect existing "connected"
966 lladdr instead of overriding it
967 if it is different.
968 It also allows to retain current state
969 if lladdr is unchanged.
970 NEIGH_UPDATE_F_ADMIN means that the change is administrative.
972 NEIGH_UPDATE_F_OVERRIDE_ISROUTER allows to override existing
973 NTF_ROUTER flag.
974 NEIGH_UPDATE_F_ISROUTER indicates if the neighbour is known as
975 a router.
977 Caller MUST hold reference count on the entry.
980 int neigh_update(struct neighbour *neigh, const u8 *lladdr, u8 new,
981 u32 flags)
983 u8 old;
984 int err;
985 int notify = 0;
986 struct net_device *dev;
987 int update_isrouter = 0;
989 write_lock_bh(&neigh->lock);
991 dev = neigh->dev;
992 old = neigh->nud_state;
993 err = -EPERM;
995 if (!(flags & NEIGH_UPDATE_F_ADMIN) &&
996 (old & (NUD_NOARP | NUD_PERMANENT)))
997 goto out;
999 if (!(new & NUD_VALID)) {
1000 neigh_del_timer(neigh);
1001 if (old & NUD_CONNECTED)
1002 neigh_suspect(neigh);
1003 neigh->nud_state = new;
1004 err = 0;
1005 notify = old & NUD_VALID;
1006 goto out;
1009 /* Compare new lladdr with cached one */
1010 if (!dev->addr_len) {
1011 /* First case: device needs no address. */
1012 lladdr = neigh->ha;
1013 } else if (lladdr) {
1014 /* The second case: if something is already cached
1015 and a new address is proposed:
1016 - compare new & old
1017 - if they are different, check override flag
1019 if ((old & NUD_VALID) &&
1020 !memcmp(lladdr, neigh->ha, dev->addr_len))
1021 lladdr = neigh->ha;
1022 } else {
1023 /* No address is supplied; if we know something,
1024 use it, otherwise discard the request.
1026 err = -EINVAL;
1027 if (!(old & NUD_VALID))
1028 goto out;
1029 lladdr = neigh->ha;
1032 if (new & NUD_CONNECTED)
1033 neigh->confirmed = jiffies;
1034 neigh->updated = jiffies;
1036 /* If entry was valid and address is not changed,
1037 do not change entry state, if new one is STALE.
1039 err = 0;
1040 update_isrouter = flags & NEIGH_UPDATE_F_OVERRIDE_ISROUTER;
1041 if (old & NUD_VALID) {
1042 if (lladdr != neigh->ha && !(flags & NEIGH_UPDATE_F_OVERRIDE)) {
1043 update_isrouter = 0;
1044 if ((flags & NEIGH_UPDATE_F_WEAK_OVERRIDE) &&
1045 (old & NUD_CONNECTED)) {
1046 lladdr = neigh->ha;
1047 new = NUD_STALE;
1048 } else
1049 goto out;
1050 } else {
1051 if (lladdr == neigh->ha && new == NUD_STALE &&
1052 ((flags & NEIGH_UPDATE_F_WEAK_OVERRIDE) ||
1053 (old & NUD_CONNECTED))
1055 new = old;
1059 if (new != old) {
1060 neigh_del_timer(neigh);
1061 if (new & NUD_IN_TIMER)
1062 neigh_add_timer(neigh, (jiffies +
1063 ((new & NUD_REACHABLE) ?
1064 neigh->parms->reachable_time :
1065 0)));
1066 neigh->nud_state = new;
1069 if (lladdr != neigh->ha) {
1070 memcpy(&neigh->ha, lladdr, dev->addr_len);
1071 neigh_update_hhs(neigh);
1072 if (!(new & NUD_CONNECTED))
1073 neigh->confirmed = jiffies -
1074 (neigh->parms->base_reachable_time << 1);
1075 notify = 1;
1077 if (new == old)
1078 goto out;
1079 if (new & NUD_CONNECTED)
1080 neigh_connect(neigh);
1081 else
1082 neigh_suspect(neigh);
1083 if (!(old & NUD_VALID)) {
1084 struct sk_buff *skb;
1086 /* Again: avoid dead loop if something went wrong */
1088 while (neigh->nud_state & NUD_VALID &&
1089 (skb = __skb_dequeue(&neigh->arp_queue)) != NULL) {
1090 struct neighbour *n1 = neigh;
1091 write_unlock_bh(&neigh->lock);
1092 /* On shaper/eql skb->dst->neighbour != neigh :( */
1093 if (skb->dst && skb->dst->neighbour)
1094 n1 = skb->dst->neighbour;
1095 n1->output(skb);
1096 write_lock_bh(&neigh->lock);
1098 skb_queue_purge(&neigh->arp_queue);
1100 out:
1101 if (update_isrouter) {
1102 neigh->flags = (flags & NEIGH_UPDATE_F_ISROUTER) ?
1103 (neigh->flags | NTF_ROUTER) :
1104 (neigh->flags & ~NTF_ROUTER);
1106 write_unlock_bh(&neigh->lock);
1108 if (notify)
1109 neigh_update_notify(neigh);
1111 return err;
1114 struct neighbour *neigh_event_ns(struct neigh_table *tbl,
1115 u8 *lladdr, void *saddr,
1116 struct net_device *dev)
1118 struct neighbour *neigh = __neigh_lookup(tbl, saddr, dev,
1119 lladdr || !dev->addr_len);
1120 if (neigh)
1121 neigh_update(neigh, lladdr, NUD_STALE,
1122 NEIGH_UPDATE_F_OVERRIDE);
1123 return neigh;
1126 static void neigh_hh_init(struct neighbour *n, struct dst_entry *dst,
1127 __be16 protocol)
1129 struct hh_cache *hh;
1130 struct net_device *dev = dst->dev;
1132 for (hh = n->hh; hh; hh = hh->hh_next)
1133 if (hh->hh_type == protocol)
1134 break;
1136 if (!hh && (hh = kzalloc(sizeof(*hh), GFP_ATOMIC)) != NULL) {
1137 seqlock_init(&hh->hh_lock);
1138 hh->hh_type = protocol;
1139 atomic_set(&hh->hh_refcnt, 0);
1140 hh->hh_next = NULL;
1142 if (dev->header_ops->cache(n, hh)) {
1143 kfree(hh);
1144 hh = NULL;
1145 } else {
1146 atomic_inc(&hh->hh_refcnt);
1147 hh->hh_next = n->hh;
1148 n->hh = hh;
1149 if (n->nud_state & NUD_CONNECTED)
1150 hh->hh_output = n->ops->hh_output;
1151 else
1152 hh->hh_output = n->ops->output;
1155 if (hh) {
1156 atomic_inc(&hh->hh_refcnt);
1157 dst->hh = hh;
1161 /* This function can be used in contexts, where only old dev_queue_xmit
1162 worked, f.e. if you want to override normal output path (eql, shaper),
1163 but resolution is not made yet.
1166 int neigh_compat_output(struct sk_buff *skb)
1168 struct net_device *dev = skb->dev;
1170 __skb_pull(skb, skb_network_offset(skb));
1172 if (dev_hard_header(skb, dev, ntohs(skb->protocol), NULL, NULL,
1173 skb->len) < 0 &&
1174 dev->header_ops->rebuild(skb))
1175 return 0;
1177 return dev_queue_xmit(skb);
1180 /* Slow and careful. */
1182 int neigh_resolve_output(struct sk_buff *skb)
1184 struct dst_entry *dst = skb->dst;
1185 struct neighbour *neigh;
1186 int rc = 0;
1188 if (!dst || !(neigh = dst->neighbour))
1189 goto discard;
1191 __skb_pull(skb, skb_network_offset(skb));
1193 if (!neigh_event_send(neigh, skb)) {
1194 int err;
1195 struct net_device *dev = neigh->dev;
1196 if (dev->header_ops->cache && !dst->hh) {
1197 write_lock_bh(&neigh->lock);
1198 if (!dst->hh)
1199 neigh_hh_init(neigh, dst, dst->ops->protocol);
1200 err = dev_hard_header(skb, dev, ntohs(skb->protocol),
1201 neigh->ha, NULL, skb->len);
1202 write_unlock_bh(&neigh->lock);
1203 } else {
1204 read_lock_bh(&neigh->lock);
1205 err = dev_hard_header(skb, dev, ntohs(skb->protocol),
1206 neigh->ha, NULL, skb->len);
1207 read_unlock_bh(&neigh->lock);
1209 if (err >= 0)
1210 rc = neigh->ops->queue_xmit(skb);
1211 else
1212 goto out_kfree_skb;
1214 out:
1215 return rc;
1216 discard:
1217 NEIGH_PRINTK1("neigh_resolve_output: dst=%p neigh=%p\n",
1218 dst, dst ? dst->neighbour : NULL);
1219 out_kfree_skb:
1220 rc = -EINVAL;
1221 kfree_skb(skb);
1222 goto out;
1225 /* As fast as possible without hh cache */
1227 int neigh_connected_output(struct sk_buff *skb)
1229 int err;
1230 struct dst_entry *dst = skb->dst;
1231 struct neighbour *neigh = dst->neighbour;
1232 struct net_device *dev = neigh->dev;
1234 __skb_pull(skb, skb_network_offset(skb));
1236 read_lock_bh(&neigh->lock);
1237 err = dev_hard_header(skb, dev, ntohs(skb->protocol),
1238 neigh->ha, NULL, skb->len);
1239 read_unlock_bh(&neigh->lock);
1240 if (err >= 0)
1241 err = neigh->ops->queue_xmit(skb);
1242 else {
1243 err = -EINVAL;
1244 kfree_skb(skb);
1246 return err;
1249 static void neigh_proxy_process(unsigned long arg)
1251 struct neigh_table *tbl = (struct neigh_table *)arg;
1252 long sched_next = 0;
1253 unsigned long now = jiffies;
1254 struct sk_buff *skb;
1256 spin_lock(&tbl->proxy_queue.lock);
1258 skb = tbl->proxy_queue.next;
1260 while (skb != (struct sk_buff *)&tbl->proxy_queue) {
1261 struct sk_buff *back = skb;
1262 long tdif = NEIGH_CB(back)->sched_next - now;
1264 skb = skb->next;
1265 if (tdif <= 0) {
1266 struct net_device *dev = back->dev;
1267 __skb_unlink(back, &tbl->proxy_queue);
1268 if (tbl->proxy_redo && netif_running(dev))
1269 tbl->proxy_redo(back);
1270 else
1271 kfree_skb(back);
1273 dev_put(dev);
1274 } else if (!sched_next || tdif < sched_next)
1275 sched_next = tdif;
1277 del_timer(&tbl->proxy_timer);
1278 if (sched_next)
1279 mod_timer(&tbl->proxy_timer, jiffies + sched_next);
1280 spin_unlock(&tbl->proxy_queue.lock);
1283 void pneigh_enqueue(struct neigh_table *tbl, struct neigh_parms *p,
1284 struct sk_buff *skb)
1286 unsigned long now = jiffies;
1287 unsigned long sched_next = now + (net_random() % p->proxy_delay);
1289 if (tbl->proxy_queue.qlen > p->proxy_qlen) {
1290 kfree_skb(skb);
1291 return;
1294 NEIGH_CB(skb)->sched_next = sched_next;
1295 NEIGH_CB(skb)->flags |= LOCALLY_ENQUEUED;
1297 spin_lock(&tbl->proxy_queue.lock);
1298 if (del_timer(&tbl->proxy_timer)) {
1299 if (time_before(tbl->proxy_timer.expires, sched_next))
1300 sched_next = tbl->proxy_timer.expires;
1302 dst_release(skb->dst);
1303 skb->dst = NULL;
1304 dev_hold(skb->dev);
1305 __skb_queue_tail(&tbl->proxy_queue, skb);
1306 mod_timer(&tbl->proxy_timer, sched_next);
1307 spin_unlock(&tbl->proxy_queue.lock);
1310 static inline struct neigh_parms *lookup_neigh_params(struct neigh_table *tbl,
1311 struct net *net, int ifindex)
1313 struct neigh_parms *p;
1315 for (p = &tbl->parms; p; p = p->next) {
1316 if (p->net != net)
1317 continue;
1318 if ((p->dev && p->dev->ifindex == ifindex) ||
1319 (!p->dev && !ifindex))
1320 return p;
1323 return NULL;
1326 struct neigh_parms *neigh_parms_alloc(struct net_device *dev,
1327 struct neigh_table *tbl)
1329 struct neigh_parms *p, *ref;
1330 struct net *net;
1332 net = dev->nd_net;
1333 ref = lookup_neigh_params(tbl, net, 0);
1334 if (!ref)
1335 return NULL;
1337 p = kmemdup(ref, sizeof(*p), GFP_KERNEL);
1338 if (p) {
1339 p->tbl = tbl;
1340 atomic_set(&p->refcnt, 1);
1341 INIT_RCU_HEAD(&p->rcu_head);
1342 p->reachable_time =
1343 neigh_rand_reach_time(p->base_reachable_time);
1345 if (dev->neigh_setup && dev->neigh_setup(dev, p)) {
1346 kfree(p);
1347 return NULL;
1350 dev_hold(dev);
1351 p->dev = dev;
1352 p->net = hold_net(net);
1353 p->sysctl_table = NULL;
1354 write_lock_bh(&tbl->lock);
1355 p->next = tbl->parms.next;
1356 tbl->parms.next = p;
1357 write_unlock_bh(&tbl->lock);
1359 return p;
1362 static void neigh_rcu_free_parms(struct rcu_head *head)
1364 struct neigh_parms *parms =
1365 container_of(head, struct neigh_parms, rcu_head);
1367 neigh_parms_put(parms);
1370 void neigh_parms_release(struct neigh_table *tbl, struct neigh_parms *parms)
1372 struct neigh_parms **p;
1374 if (!parms || parms == &tbl->parms)
1375 return;
1376 write_lock_bh(&tbl->lock);
1377 for (p = &tbl->parms.next; *p; p = &(*p)->next) {
1378 if (*p == parms) {
1379 *p = parms->next;
1380 parms->dead = 1;
1381 write_unlock_bh(&tbl->lock);
1382 if (parms->dev)
1383 dev_put(parms->dev);
1384 call_rcu(&parms->rcu_head, neigh_rcu_free_parms);
1385 return;
1388 write_unlock_bh(&tbl->lock);
1389 NEIGH_PRINTK1("neigh_parms_release: not found\n");
1392 static void neigh_parms_destroy(struct neigh_parms *parms)
1394 release_net(parms->net);
1395 kfree(parms);
1398 static struct lock_class_key neigh_table_proxy_queue_class;
1400 void neigh_table_init_no_netlink(struct neigh_table *tbl)
1402 unsigned long now = jiffies;
1403 unsigned long phsize;
1405 tbl->parms.net = &init_net;
1406 atomic_set(&tbl->parms.refcnt, 1);
1407 INIT_RCU_HEAD(&tbl->parms.rcu_head);
1408 tbl->parms.reachable_time =
1409 neigh_rand_reach_time(tbl->parms.base_reachable_time);
1411 if (!tbl->kmem_cachep)
1412 tbl->kmem_cachep =
1413 kmem_cache_create(tbl->id, tbl->entry_size, 0,
1414 SLAB_HWCACHE_ALIGN|SLAB_PANIC,
1415 NULL);
1416 tbl->stats = alloc_percpu(struct neigh_statistics);
1417 if (!tbl->stats)
1418 panic("cannot create neighbour cache statistics");
1420 #ifdef CONFIG_PROC_FS
1421 <<<<<<< HEAD:net/core/neighbour.c
1422 tbl->pde = create_proc_entry(tbl->id, 0, init_net.proc_net_stat);
1423 =======
1424 tbl->pde = proc_create(tbl->id, 0, init_net.proc_net_stat,
1425 &neigh_stat_seq_fops);
1426 >>>>>>> 264e3e889d86e552b4191d69bb60f4f3b383135a:net/core/neighbour.c
1427 if (!tbl->pde)
1428 panic("cannot create neighbour proc dir entry");
1429 <<<<<<< HEAD:net/core/neighbour.c
1430 tbl->pde->proc_fops = &neigh_stat_seq_fops;
1431 =======
1432 >>>>>>> 264e3e889d86e552b4191d69bb60f4f3b383135a:net/core/neighbour.c
1433 tbl->pde->data = tbl;
1434 #endif
1436 tbl->hash_mask = 1;
1437 tbl->hash_buckets = neigh_hash_alloc(tbl->hash_mask + 1);
1439 phsize = (PNEIGH_HASHMASK + 1) * sizeof(struct pneigh_entry *);
1440 tbl->phash_buckets = kzalloc(phsize, GFP_KERNEL);
1442 if (!tbl->hash_buckets || !tbl->phash_buckets)
1443 panic("cannot allocate neighbour cache hashes");
1445 get_random_bytes(&tbl->hash_rnd, sizeof(tbl->hash_rnd));
1447 rwlock_init(&tbl->lock);
1448 setup_timer(&tbl->gc_timer, neigh_periodic_timer, (unsigned long)tbl);
1449 tbl->gc_timer.expires = now + 1;
1450 add_timer(&tbl->gc_timer);
1452 setup_timer(&tbl->proxy_timer, neigh_proxy_process, (unsigned long)tbl);
1453 skb_queue_head_init_class(&tbl->proxy_queue,
1454 &neigh_table_proxy_queue_class);
1456 tbl->last_flush = now;
1457 tbl->last_rand = now + tbl->parms.reachable_time * 20;
1460 void neigh_table_init(struct neigh_table *tbl)
1462 struct neigh_table *tmp;
1464 neigh_table_init_no_netlink(tbl);
1465 write_lock(&neigh_tbl_lock);
1466 for (tmp = neigh_tables; tmp; tmp = tmp->next) {
1467 if (tmp->family == tbl->family)
1468 break;
1470 tbl->next = neigh_tables;
1471 neigh_tables = tbl;
1472 write_unlock(&neigh_tbl_lock);
1474 if (unlikely(tmp)) {
1475 printk(KERN_ERR "NEIGH: Registering multiple tables for "
1476 "family %d\n", tbl->family);
1477 dump_stack();
1481 int neigh_table_clear(struct neigh_table *tbl)
1483 struct neigh_table **tp;
1485 /* It is not clean... Fix it to unload IPv6 module safely */
1486 del_timer_sync(&tbl->gc_timer);
1487 del_timer_sync(&tbl->proxy_timer);
1488 pneigh_queue_purge(&tbl->proxy_queue);
1489 neigh_ifdown(tbl, NULL);
1490 if (atomic_read(&tbl->entries))
1491 printk(KERN_CRIT "neighbour leakage\n");
1492 write_lock(&neigh_tbl_lock);
1493 for (tp = &neigh_tables; *tp; tp = &(*tp)->next) {
1494 if (*tp == tbl) {
1495 *tp = tbl->next;
1496 break;
1499 write_unlock(&neigh_tbl_lock);
1501 neigh_hash_free(tbl->hash_buckets, tbl->hash_mask + 1);
1502 tbl->hash_buckets = NULL;
1504 kfree(tbl->phash_buckets);
1505 tbl->phash_buckets = NULL;
1507 remove_proc_entry(tbl->id, init_net.proc_net_stat);
1509 free_percpu(tbl->stats);
1510 tbl->stats = NULL;
1512 kmem_cache_destroy(tbl->kmem_cachep);
1513 tbl->kmem_cachep = NULL;
1515 return 0;
1518 static int neigh_delete(struct sk_buff *skb, struct nlmsghdr *nlh, void *arg)
1520 struct net *net = skb->sk->sk_net;
1521 struct ndmsg *ndm;
1522 struct nlattr *dst_attr;
1523 struct neigh_table *tbl;
1524 struct net_device *dev = NULL;
1525 int err = -EINVAL;
1527 if (nlmsg_len(nlh) < sizeof(*ndm))
1528 goto out;
1530 dst_attr = nlmsg_find_attr(nlh, sizeof(*ndm), NDA_DST);
1531 if (dst_attr == NULL)
1532 goto out;
1534 ndm = nlmsg_data(nlh);
1535 if (ndm->ndm_ifindex) {
1536 dev = dev_get_by_index(net, ndm->ndm_ifindex);
1537 if (dev == NULL) {
1538 err = -ENODEV;
1539 goto out;
1543 read_lock(&neigh_tbl_lock);
1544 for (tbl = neigh_tables; tbl; tbl = tbl->next) {
1545 struct neighbour *neigh;
1547 if (tbl->family != ndm->ndm_family)
1548 continue;
1549 read_unlock(&neigh_tbl_lock);
1551 if (nla_len(dst_attr) < tbl->key_len)
1552 goto out_dev_put;
1554 if (ndm->ndm_flags & NTF_PROXY) {
1555 err = pneigh_delete(tbl, net, nla_data(dst_attr), dev);
1556 goto out_dev_put;
1559 if (dev == NULL)
1560 goto out_dev_put;
1562 neigh = neigh_lookup(tbl, nla_data(dst_attr), dev);
1563 if (neigh == NULL) {
1564 err = -ENOENT;
1565 goto out_dev_put;
1568 err = neigh_update(neigh, NULL, NUD_FAILED,
1569 NEIGH_UPDATE_F_OVERRIDE |
1570 NEIGH_UPDATE_F_ADMIN);
1571 neigh_release(neigh);
1572 goto out_dev_put;
1574 read_unlock(&neigh_tbl_lock);
1575 err = -EAFNOSUPPORT;
1577 out_dev_put:
1578 if (dev)
1579 dev_put(dev);
1580 out:
1581 return err;
1584 static int neigh_add(struct sk_buff *skb, struct nlmsghdr *nlh, void *arg)
1586 struct net *net = skb->sk->sk_net;
1587 struct ndmsg *ndm;
1588 struct nlattr *tb[NDA_MAX+1];
1589 struct neigh_table *tbl;
1590 struct net_device *dev = NULL;
1591 int err;
1593 err = nlmsg_parse(nlh, sizeof(*ndm), tb, NDA_MAX, NULL);
1594 if (err < 0)
1595 goto out;
1597 err = -EINVAL;
1598 if (tb[NDA_DST] == NULL)
1599 goto out;
1601 ndm = nlmsg_data(nlh);
1602 if (ndm->ndm_ifindex) {
1603 dev = dev_get_by_index(net, ndm->ndm_ifindex);
1604 if (dev == NULL) {
1605 err = -ENODEV;
1606 goto out;
1609 if (tb[NDA_LLADDR] && nla_len(tb[NDA_LLADDR]) < dev->addr_len)
1610 goto out_dev_put;
1613 read_lock(&neigh_tbl_lock);
1614 for (tbl = neigh_tables; tbl; tbl = tbl->next) {
1615 int flags = NEIGH_UPDATE_F_ADMIN | NEIGH_UPDATE_F_OVERRIDE;
1616 struct neighbour *neigh;
1617 void *dst, *lladdr;
1619 if (tbl->family != ndm->ndm_family)
1620 continue;
1621 read_unlock(&neigh_tbl_lock);
1623 if (nla_len(tb[NDA_DST]) < tbl->key_len)
1624 goto out_dev_put;
1625 dst = nla_data(tb[NDA_DST]);
1626 lladdr = tb[NDA_LLADDR] ? nla_data(tb[NDA_LLADDR]) : NULL;
1628 if (ndm->ndm_flags & NTF_PROXY) {
1629 struct pneigh_entry *pn;
1631 err = -ENOBUFS;
1632 pn = pneigh_lookup(tbl, net, dst, dev, 1);
1633 if (pn) {
1634 pn->flags = ndm->ndm_flags;
1635 err = 0;
1637 goto out_dev_put;
1640 if (dev == NULL)
1641 goto out_dev_put;
1643 neigh = neigh_lookup(tbl, dst, dev);
1644 if (neigh == NULL) {
1645 if (!(nlh->nlmsg_flags & NLM_F_CREATE)) {
1646 err = -ENOENT;
1647 goto out_dev_put;
1650 neigh = __neigh_lookup_errno(tbl, dst, dev);
1651 if (IS_ERR(neigh)) {
1652 err = PTR_ERR(neigh);
1653 goto out_dev_put;
1655 } else {
1656 if (nlh->nlmsg_flags & NLM_F_EXCL) {
1657 err = -EEXIST;
1658 neigh_release(neigh);
1659 goto out_dev_put;
1662 if (!(nlh->nlmsg_flags & NLM_F_REPLACE))
1663 flags &= ~NEIGH_UPDATE_F_OVERRIDE;
1666 err = neigh_update(neigh, lladdr, ndm->ndm_state, flags);
1667 neigh_release(neigh);
1668 goto out_dev_put;
1671 read_unlock(&neigh_tbl_lock);
1672 err = -EAFNOSUPPORT;
1674 out_dev_put:
1675 if (dev)
1676 dev_put(dev);
1677 out:
1678 return err;
1681 static int neightbl_fill_parms(struct sk_buff *skb, struct neigh_parms *parms)
1683 struct nlattr *nest;
1685 nest = nla_nest_start(skb, NDTA_PARMS);
1686 if (nest == NULL)
1687 return -ENOBUFS;
1689 if (parms->dev)
1690 NLA_PUT_U32(skb, NDTPA_IFINDEX, parms->dev->ifindex);
1692 NLA_PUT_U32(skb, NDTPA_REFCNT, atomic_read(&parms->refcnt));
1693 NLA_PUT_U32(skb, NDTPA_QUEUE_LEN, parms->queue_len);
1694 NLA_PUT_U32(skb, NDTPA_PROXY_QLEN, parms->proxy_qlen);
1695 NLA_PUT_U32(skb, NDTPA_APP_PROBES, parms->app_probes);
1696 NLA_PUT_U32(skb, NDTPA_UCAST_PROBES, parms->ucast_probes);
1697 NLA_PUT_U32(skb, NDTPA_MCAST_PROBES, parms->mcast_probes);
1698 NLA_PUT_MSECS(skb, NDTPA_REACHABLE_TIME, parms->reachable_time);
1699 NLA_PUT_MSECS(skb, NDTPA_BASE_REACHABLE_TIME,
1700 parms->base_reachable_time);
1701 NLA_PUT_MSECS(skb, NDTPA_GC_STALETIME, parms->gc_staletime);
1702 NLA_PUT_MSECS(skb, NDTPA_DELAY_PROBE_TIME, parms->delay_probe_time);
1703 NLA_PUT_MSECS(skb, NDTPA_RETRANS_TIME, parms->retrans_time);
1704 NLA_PUT_MSECS(skb, NDTPA_ANYCAST_DELAY, parms->anycast_delay);
1705 NLA_PUT_MSECS(skb, NDTPA_PROXY_DELAY, parms->proxy_delay);
1706 NLA_PUT_MSECS(skb, NDTPA_LOCKTIME, parms->locktime);
1708 return nla_nest_end(skb, nest);
1710 nla_put_failure:
1711 return nla_nest_cancel(skb, nest);
1714 static int neightbl_fill_info(struct sk_buff *skb, struct neigh_table *tbl,
1715 u32 pid, u32 seq, int type, int flags)
1717 struct nlmsghdr *nlh;
1718 struct ndtmsg *ndtmsg;
1720 nlh = nlmsg_put(skb, pid, seq, type, sizeof(*ndtmsg), flags);
1721 if (nlh == NULL)
1722 return -EMSGSIZE;
1724 ndtmsg = nlmsg_data(nlh);
1726 read_lock_bh(&tbl->lock);
1727 ndtmsg->ndtm_family = tbl->family;
1728 ndtmsg->ndtm_pad1 = 0;
1729 ndtmsg->ndtm_pad2 = 0;
1731 NLA_PUT_STRING(skb, NDTA_NAME, tbl->id);
1732 NLA_PUT_MSECS(skb, NDTA_GC_INTERVAL, tbl->gc_interval);
1733 NLA_PUT_U32(skb, NDTA_THRESH1, tbl->gc_thresh1);
1734 NLA_PUT_U32(skb, NDTA_THRESH2, tbl->gc_thresh2);
1735 NLA_PUT_U32(skb, NDTA_THRESH3, tbl->gc_thresh3);
1738 unsigned long now = jiffies;
1739 unsigned int flush_delta = now - tbl->last_flush;
1740 unsigned int rand_delta = now - tbl->last_rand;
1742 struct ndt_config ndc = {
1743 .ndtc_key_len = tbl->key_len,
1744 .ndtc_entry_size = tbl->entry_size,
1745 .ndtc_entries = atomic_read(&tbl->entries),
1746 .ndtc_last_flush = jiffies_to_msecs(flush_delta),
1747 .ndtc_last_rand = jiffies_to_msecs(rand_delta),
1748 .ndtc_hash_rnd = tbl->hash_rnd,
1749 .ndtc_hash_mask = tbl->hash_mask,
1750 .ndtc_hash_chain_gc = tbl->hash_chain_gc,
1751 .ndtc_proxy_qlen = tbl->proxy_queue.qlen,
1754 NLA_PUT(skb, NDTA_CONFIG, sizeof(ndc), &ndc);
1758 int cpu;
1759 struct ndt_stats ndst;
1761 memset(&ndst, 0, sizeof(ndst));
1763 for_each_possible_cpu(cpu) {
1764 struct neigh_statistics *st;
1766 st = per_cpu_ptr(tbl->stats, cpu);
1767 ndst.ndts_allocs += st->allocs;
1768 ndst.ndts_destroys += st->destroys;
1769 ndst.ndts_hash_grows += st->hash_grows;
1770 ndst.ndts_res_failed += st->res_failed;
1771 ndst.ndts_lookups += st->lookups;
1772 ndst.ndts_hits += st->hits;
1773 ndst.ndts_rcv_probes_mcast += st->rcv_probes_mcast;
1774 ndst.ndts_rcv_probes_ucast += st->rcv_probes_ucast;
1775 ndst.ndts_periodic_gc_runs += st->periodic_gc_runs;
1776 ndst.ndts_forced_gc_runs += st->forced_gc_runs;
1779 NLA_PUT(skb, NDTA_STATS, sizeof(ndst), &ndst);
1782 BUG_ON(tbl->parms.dev);
1783 if (neightbl_fill_parms(skb, &tbl->parms) < 0)
1784 goto nla_put_failure;
1786 read_unlock_bh(&tbl->lock);
1787 return nlmsg_end(skb, nlh);
1789 nla_put_failure:
1790 read_unlock_bh(&tbl->lock);
1791 nlmsg_cancel(skb, nlh);
1792 return -EMSGSIZE;
1795 static int neightbl_fill_param_info(struct sk_buff *skb,
1796 struct neigh_table *tbl,
1797 struct neigh_parms *parms,
1798 u32 pid, u32 seq, int type,
1799 unsigned int flags)
1801 struct ndtmsg *ndtmsg;
1802 struct nlmsghdr *nlh;
1804 nlh = nlmsg_put(skb, pid, seq, type, sizeof(*ndtmsg), flags);
1805 if (nlh == NULL)
1806 return -EMSGSIZE;
1808 ndtmsg = nlmsg_data(nlh);
1810 read_lock_bh(&tbl->lock);
1811 ndtmsg->ndtm_family = tbl->family;
1812 ndtmsg->ndtm_pad1 = 0;
1813 ndtmsg->ndtm_pad2 = 0;
1815 if (nla_put_string(skb, NDTA_NAME, tbl->id) < 0 ||
1816 neightbl_fill_parms(skb, parms) < 0)
1817 goto errout;
1819 read_unlock_bh(&tbl->lock);
1820 return nlmsg_end(skb, nlh);
1821 errout:
1822 read_unlock_bh(&tbl->lock);
1823 nlmsg_cancel(skb, nlh);
1824 return -EMSGSIZE;
1827 static const struct nla_policy nl_neightbl_policy[NDTA_MAX+1] = {
1828 [NDTA_NAME] = { .type = NLA_STRING },
1829 [NDTA_THRESH1] = { .type = NLA_U32 },
1830 [NDTA_THRESH2] = { .type = NLA_U32 },
1831 [NDTA_THRESH3] = { .type = NLA_U32 },
1832 [NDTA_GC_INTERVAL] = { .type = NLA_U64 },
1833 [NDTA_PARMS] = { .type = NLA_NESTED },
1836 static const struct nla_policy nl_ntbl_parm_policy[NDTPA_MAX+1] = {
1837 [NDTPA_IFINDEX] = { .type = NLA_U32 },
1838 [NDTPA_QUEUE_LEN] = { .type = NLA_U32 },
1839 [NDTPA_PROXY_QLEN] = { .type = NLA_U32 },
1840 [NDTPA_APP_PROBES] = { .type = NLA_U32 },
1841 [NDTPA_UCAST_PROBES] = { .type = NLA_U32 },
1842 [NDTPA_MCAST_PROBES] = { .type = NLA_U32 },
1843 [NDTPA_BASE_REACHABLE_TIME] = { .type = NLA_U64 },
1844 [NDTPA_GC_STALETIME] = { .type = NLA_U64 },
1845 [NDTPA_DELAY_PROBE_TIME] = { .type = NLA_U64 },
1846 [NDTPA_RETRANS_TIME] = { .type = NLA_U64 },
1847 [NDTPA_ANYCAST_DELAY] = { .type = NLA_U64 },
1848 [NDTPA_PROXY_DELAY] = { .type = NLA_U64 },
1849 [NDTPA_LOCKTIME] = { .type = NLA_U64 },
1852 static int neightbl_set(struct sk_buff *skb, struct nlmsghdr *nlh, void *arg)
1854 struct net *net = skb->sk->sk_net;
1855 struct neigh_table *tbl;
1856 struct ndtmsg *ndtmsg;
1857 struct nlattr *tb[NDTA_MAX+1];
1858 int err;
1860 err = nlmsg_parse(nlh, sizeof(*ndtmsg), tb, NDTA_MAX,
1861 nl_neightbl_policy);
1862 if (err < 0)
1863 goto errout;
1865 if (tb[NDTA_NAME] == NULL) {
1866 err = -EINVAL;
1867 goto errout;
1870 ndtmsg = nlmsg_data(nlh);
1871 read_lock(&neigh_tbl_lock);
1872 for (tbl = neigh_tables; tbl; tbl = tbl->next) {
1873 if (ndtmsg->ndtm_family && tbl->family != ndtmsg->ndtm_family)
1874 continue;
1876 if (nla_strcmp(tb[NDTA_NAME], tbl->id) == 0)
1877 break;
1880 if (tbl == NULL) {
1881 err = -ENOENT;
1882 goto errout_locked;
1886 * We acquire tbl->lock to be nice to the periodic timers and
1887 * make sure they always see a consistent set of values.
1889 write_lock_bh(&tbl->lock);
1891 if (tb[NDTA_PARMS]) {
1892 struct nlattr *tbp[NDTPA_MAX+1];
1893 struct neigh_parms *p;
1894 int i, ifindex = 0;
1896 err = nla_parse_nested(tbp, NDTPA_MAX, tb[NDTA_PARMS],
1897 nl_ntbl_parm_policy);
1898 if (err < 0)
1899 goto errout_tbl_lock;
1901 if (tbp[NDTPA_IFINDEX])
1902 ifindex = nla_get_u32(tbp[NDTPA_IFINDEX]);
1904 p = lookup_neigh_params(tbl, net, ifindex);
1905 if (p == NULL) {
1906 err = -ENOENT;
1907 goto errout_tbl_lock;
1910 for (i = 1; i <= NDTPA_MAX; i++) {
1911 if (tbp[i] == NULL)
1912 continue;
1914 switch (i) {
1915 case NDTPA_QUEUE_LEN:
1916 p->queue_len = nla_get_u32(tbp[i]);
1917 break;
1918 case NDTPA_PROXY_QLEN:
1919 p->proxy_qlen = nla_get_u32(tbp[i]);
1920 break;
1921 case NDTPA_APP_PROBES:
1922 p->app_probes = nla_get_u32(tbp[i]);
1923 break;
1924 case NDTPA_UCAST_PROBES:
1925 p->ucast_probes = nla_get_u32(tbp[i]);
1926 break;
1927 case NDTPA_MCAST_PROBES:
1928 p->mcast_probes = nla_get_u32(tbp[i]);
1929 break;
1930 case NDTPA_BASE_REACHABLE_TIME:
1931 p->base_reachable_time = nla_get_msecs(tbp[i]);
1932 break;
1933 case NDTPA_GC_STALETIME:
1934 p->gc_staletime = nla_get_msecs(tbp[i]);
1935 break;
1936 case NDTPA_DELAY_PROBE_TIME:
1937 p->delay_probe_time = nla_get_msecs(tbp[i]);
1938 break;
1939 case NDTPA_RETRANS_TIME:
1940 p->retrans_time = nla_get_msecs(tbp[i]);
1941 break;
1942 case NDTPA_ANYCAST_DELAY:
1943 p->anycast_delay = nla_get_msecs(tbp[i]);
1944 break;
1945 case NDTPA_PROXY_DELAY:
1946 p->proxy_delay = nla_get_msecs(tbp[i]);
1947 break;
1948 case NDTPA_LOCKTIME:
1949 p->locktime = nla_get_msecs(tbp[i]);
1950 break;
1955 if (tb[NDTA_THRESH1])
1956 tbl->gc_thresh1 = nla_get_u32(tb[NDTA_THRESH1]);
1958 if (tb[NDTA_THRESH2])
1959 tbl->gc_thresh2 = nla_get_u32(tb[NDTA_THRESH2]);
1961 if (tb[NDTA_THRESH3])
1962 tbl->gc_thresh3 = nla_get_u32(tb[NDTA_THRESH3]);
1964 if (tb[NDTA_GC_INTERVAL])
1965 tbl->gc_interval = nla_get_msecs(tb[NDTA_GC_INTERVAL]);
1967 err = 0;
1969 errout_tbl_lock:
1970 write_unlock_bh(&tbl->lock);
1971 errout_locked:
1972 read_unlock(&neigh_tbl_lock);
1973 errout:
1974 return err;
1977 static int neightbl_dump_info(struct sk_buff *skb, struct netlink_callback *cb)
1979 struct net *net = skb->sk->sk_net;
1980 int family, tidx, nidx = 0;
1981 int tbl_skip = cb->args[0];
1982 int neigh_skip = cb->args[1];
1983 struct neigh_table *tbl;
1985 family = ((struct rtgenmsg *) nlmsg_data(cb->nlh))->rtgen_family;
1987 read_lock(&neigh_tbl_lock);
1988 for (tbl = neigh_tables, tidx = 0; tbl; tbl = tbl->next, tidx++) {
1989 struct neigh_parms *p;
1991 if (tidx < tbl_skip || (family && tbl->family != family))
1992 continue;
1994 if (neightbl_fill_info(skb, tbl, NETLINK_CB(cb->skb).pid,
1995 cb->nlh->nlmsg_seq, RTM_NEWNEIGHTBL,
1996 NLM_F_MULTI) <= 0)
1997 break;
1999 for (nidx = 0, p = tbl->parms.next; p; p = p->next) {
2000 if (net != p->net)
2001 continue;
2003 if (nidx++ < neigh_skip)
2004 continue;
2006 if (neightbl_fill_param_info(skb, tbl, p,
2007 NETLINK_CB(cb->skb).pid,
2008 cb->nlh->nlmsg_seq,
2009 RTM_NEWNEIGHTBL,
2010 NLM_F_MULTI) <= 0)
2011 goto out;
2014 neigh_skip = 0;
2016 out:
2017 read_unlock(&neigh_tbl_lock);
2018 cb->args[0] = tidx;
2019 cb->args[1] = nidx;
2021 return skb->len;
2024 static int neigh_fill_info(struct sk_buff *skb, struct neighbour *neigh,
2025 u32 pid, u32 seq, int type, unsigned int flags)
2027 unsigned long now = jiffies;
2028 struct nda_cacheinfo ci;
2029 struct nlmsghdr *nlh;
2030 struct ndmsg *ndm;
2032 nlh = nlmsg_put(skb, pid, seq, type, sizeof(*ndm), flags);
2033 if (nlh == NULL)
2034 return -EMSGSIZE;
2036 ndm = nlmsg_data(nlh);
2037 ndm->ndm_family = neigh->ops->family;
2038 ndm->ndm_pad1 = 0;
2039 ndm->ndm_pad2 = 0;
2040 ndm->ndm_flags = neigh->flags;
2041 ndm->ndm_type = neigh->type;
2042 ndm->ndm_ifindex = neigh->dev->ifindex;
2044 NLA_PUT(skb, NDA_DST, neigh->tbl->key_len, neigh->primary_key);
2046 read_lock_bh(&neigh->lock);
2047 ndm->ndm_state = neigh->nud_state;
2048 if ((neigh->nud_state & NUD_VALID) &&
2049 nla_put(skb, NDA_LLADDR, neigh->dev->addr_len, neigh->ha) < 0) {
2050 read_unlock_bh(&neigh->lock);
2051 goto nla_put_failure;
2054 ci.ndm_used = now - neigh->used;
2055 ci.ndm_confirmed = now - neigh->confirmed;
2056 ci.ndm_updated = now - neigh->updated;
2057 ci.ndm_refcnt = atomic_read(&neigh->refcnt) - 1;
2058 read_unlock_bh(&neigh->lock);
2060 NLA_PUT_U32(skb, NDA_PROBES, atomic_read(&neigh->probes));
2061 NLA_PUT(skb, NDA_CACHEINFO, sizeof(ci), &ci);
2063 return nlmsg_end(skb, nlh);
2065 nla_put_failure:
2066 nlmsg_cancel(skb, nlh);
2067 return -EMSGSIZE;
2070 static void neigh_update_notify(struct neighbour *neigh)
2072 call_netevent_notifiers(NETEVENT_NEIGH_UPDATE, neigh);
2073 __neigh_notify(neigh, RTM_NEWNEIGH, 0);
2076 static int neigh_dump_table(struct neigh_table *tbl, struct sk_buff *skb,
2077 struct netlink_callback *cb)
2079 struct net * net = skb->sk->sk_net;
2080 struct neighbour *n;
2081 int rc, h, s_h = cb->args[1];
2082 int idx, s_idx = idx = cb->args[2];
2084 read_lock_bh(&tbl->lock);
2085 for (h = 0; h <= tbl->hash_mask; h++) {
2086 if (h < s_h)
2087 continue;
2088 if (h > s_h)
2089 s_idx = 0;
2090 for (n = tbl->hash_buckets[h], idx = 0; n; n = n->next) {
2091 int lidx;
2092 if (n->dev->nd_net != net)
2093 continue;
2094 lidx = idx++;
2095 if (lidx < s_idx)
2096 continue;
2097 if (neigh_fill_info(skb, n, NETLINK_CB(cb->skb).pid,
2098 cb->nlh->nlmsg_seq,
2099 RTM_NEWNEIGH,
2100 NLM_F_MULTI) <= 0) {
2101 read_unlock_bh(&tbl->lock);
2102 rc = -1;
2103 goto out;
2107 read_unlock_bh(&tbl->lock);
2108 rc = skb->len;
2109 out:
2110 cb->args[1] = h;
2111 cb->args[2] = idx;
2112 return rc;
2115 static int neigh_dump_info(struct sk_buff *skb, struct netlink_callback *cb)
2117 struct neigh_table *tbl;
2118 int t, family, s_t;
2120 read_lock(&neigh_tbl_lock);
2121 family = ((struct rtgenmsg *) nlmsg_data(cb->nlh))->rtgen_family;
2122 s_t = cb->args[0];
2124 for (tbl = neigh_tables, t = 0; tbl; tbl = tbl->next, t++) {
2125 if (t < s_t || (family && tbl->family != family))
2126 continue;
2127 if (t > s_t)
2128 memset(&cb->args[1], 0, sizeof(cb->args) -
2129 sizeof(cb->args[0]));
2130 if (neigh_dump_table(tbl, skb, cb) < 0)
2131 break;
2133 read_unlock(&neigh_tbl_lock);
2135 cb->args[0] = t;
2136 return skb->len;
2139 void neigh_for_each(struct neigh_table *tbl, void (*cb)(struct neighbour *, void *), void *cookie)
2141 int chain;
2143 read_lock_bh(&tbl->lock);
2144 for (chain = 0; chain <= tbl->hash_mask; chain++) {
2145 struct neighbour *n;
2147 for (n = tbl->hash_buckets[chain]; n; n = n->next)
2148 cb(n, cookie);
2150 read_unlock_bh(&tbl->lock);
2152 EXPORT_SYMBOL(neigh_for_each);
2154 /* The tbl->lock must be held as a writer and BH disabled. */
2155 void __neigh_for_each_release(struct neigh_table *tbl,
2156 int (*cb)(struct neighbour *))
2158 int chain;
2160 for (chain = 0; chain <= tbl->hash_mask; chain++) {
2161 struct neighbour *n, **np;
2163 np = &tbl->hash_buckets[chain];
2164 while ((n = *np) != NULL) {
2165 int release;
2167 write_lock(&n->lock);
2168 release = cb(n);
2169 if (release) {
2170 *np = n->next;
2171 n->dead = 1;
2172 } else
2173 np = &n->next;
2174 write_unlock(&n->lock);
2175 if (release)
2176 neigh_cleanup_and_release(n);
2180 EXPORT_SYMBOL(__neigh_for_each_release);
2182 #ifdef CONFIG_PROC_FS
2184 static struct neighbour *neigh_get_first(struct seq_file *seq)
2186 struct neigh_seq_state *state = seq->private;
2187 struct net *net = state->p.net;
2188 struct neigh_table *tbl = state->tbl;
2189 struct neighbour *n = NULL;
2190 int bucket = state->bucket;
2192 state->flags &= ~NEIGH_SEQ_IS_PNEIGH;
2193 for (bucket = 0; bucket <= tbl->hash_mask; bucket++) {
2194 n = tbl->hash_buckets[bucket];
2196 while (n) {
2197 if (n->dev->nd_net != net)
2198 goto next;
2199 if (state->neigh_sub_iter) {
2200 loff_t fakep = 0;
2201 void *v;
2203 v = state->neigh_sub_iter(state, n, &fakep);
2204 if (!v)
2205 goto next;
2207 if (!(state->flags & NEIGH_SEQ_SKIP_NOARP))
2208 break;
2209 if (n->nud_state & ~NUD_NOARP)
2210 break;
2211 next:
2212 n = n->next;
2215 if (n)
2216 break;
2218 state->bucket = bucket;
2220 return n;
2223 static struct neighbour *neigh_get_next(struct seq_file *seq,
2224 struct neighbour *n,
2225 loff_t *pos)
2227 struct neigh_seq_state *state = seq->private;
2228 struct net *net = state->p.net;
2229 struct neigh_table *tbl = state->tbl;
2231 if (state->neigh_sub_iter) {
2232 void *v = state->neigh_sub_iter(state, n, pos);
2233 if (v)
2234 return n;
2236 n = n->next;
2238 while (1) {
2239 while (n) {
2240 if (n->dev->nd_net != net)
2241 goto next;
2242 if (state->neigh_sub_iter) {
2243 void *v = state->neigh_sub_iter(state, n, pos);
2244 if (v)
2245 return n;
2246 goto next;
2248 if (!(state->flags & NEIGH_SEQ_SKIP_NOARP))
2249 break;
2251 if (n->nud_state & ~NUD_NOARP)
2252 break;
2253 next:
2254 n = n->next;
2257 if (n)
2258 break;
2260 if (++state->bucket > tbl->hash_mask)
2261 break;
2263 n = tbl->hash_buckets[state->bucket];
2266 if (n && pos)
2267 --(*pos);
2268 return n;
2271 static struct neighbour *neigh_get_idx(struct seq_file *seq, loff_t *pos)
2273 struct neighbour *n = neigh_get_first(seq);
2275 if (n) {
2276 while (*pos) {
2277 n = neigh_get_next(seq, n, pos);
2278 if (!n)
2279 break;
2282 return *pos ? NULL : n;
2285 static struct pneigh_entry *pneigh_get_first(struct seq_file *seq)
2287 struct neigh_seq_state *state = seq->private;
2288 struct net * net = state->p.net;
2289 struct neigh_table *tbl = state->tbl;
2290 struct pneigh_entry *pn = NULL;
2291 int bucket = state->bucket;
2293 state->flags |= NEIGH_SEQ_IS_PNEIGH;
2294 for (bucket = 0; bucket <= PNEIGH_HASHMASK; bucket++) {
2295 pn = tbl->phash_buckets[bucket];
2296 while (pn && (pn->net != net))
2297 pn = pn->next;
2298 if (pn)
2299 break;
2301 state->bucket = bucket;
2303 return pn;
2306 static struct pneigh_entry *pneigh_get_next(struct seq_file *seq,
2307 struct pneigh_entry *pn,
2308 loff_t *pos)
2310 struct neigh_seq_state *state = seq->private;
2311 struct net * net = state->p.net;
2312 struct neigh_table *tbl = state->tbl;
2314 pn = pn->next;
2315 while (!pn) {
2316 if (++state->bucket > PNEIGH_HASHMASK)
2317 break;
2318 pn = tbl->phash_buckets[state->bucket];
2319 while (pn && (pn->net != net))
2320 pn = pn->next;
2321 if (pn)
2322 break;
2325 if (pn && pos)
2326 --(*pos);
2328 return pn;
2331 static struct pneigh_entry *pneigh_get_idx(struct seq_file *seq, loff_t *pos)
2333 struct pneigh_entry *pn = pneigh_get_first(seq);
2335 if (pn) {
2336 while (*pos) {
2337 pn = pneigh_get_next(seq, pn, pos);
2338 if (!pn)
2339 break;
2342 return *pos ? NULL : pn;
2345 static void *neigh_get_idx_any(struct seq_file *seq, loff_t *pos)
2347 struct neigh_seq_state *state = seq->private;
2348 void *rc;
2350 rc = neigh_get_idx(seq, pos);
2351 if (!rc && !(state->flags & NEIGH_SEQ_NEIGH_ONLY))
2352 rc = pneigh_get_idx(seq, pos);
2354 return rc;
2357 void *neigh_seq_start(struct seq_file *seq, loff_t *pos, struct neigh_table *tbl, unsigned int neigh_seq_flags)
2358 __acquires(tbl->lock)
2360 struct neigh_seq_state *state = seq->private;
2361 loff_t pos_minus_one;
2363 state->tbl = tbl;
2364 state->bucket = 0;
2365 state->flags = (neigh_seq_flags & ~NEIGH_SEQ_IS_PNEIGH);
2367 read_lock_bh(&tbl->lock);
2369 pos_minus_one = *pos - 1;
2370 return *pos ? neigh_get_idx_any(seq, &pos_minus_one) : SEQ_START_TOKEN;
2372 EXPORT_SYMBOL(neigh_seq_start);
2374 void *neigh_seq_next(struct seq_file *seq, void *v, loff_t *pos)
2376 struct neigh_seq_state *state;
2377 void *rc;
2379 if (v == SEQ_START_TOKEN) {
2380 rc = neigh_get_idx(seq, pos);
2381 goto out;
2384 state = seq->private;
2385 if (!(state->flags & NEIGH_SEQ_IS_PNEIGH)) {
2386 rc = neigh_get_next(seq, v, NULL);
2387 if (rc)
2388 goto out;
2389 if (!(state->flags & NEIGH_SEQ_NEIGH_ONLY))
2390 rc = pneigh_get_first(seq);
2391 } else {
2392 BUG_ON(state->flags & NEIGH_SEQ_NEIGH_ONLY);
2393 rc = pneigh_get_next(seq, v, NULL);
2395 out:
2396 ++(*pos);
2397 return rc;
2399 EXPORT_SYMBOL(neigh_seq_next);
2401 void neigh_seq_stop(struct seq_file *seq, void *v)
2402 __releases(tbl->lock)
2404 struct neigh_seq_state *state = seq->private;
2405 struct neigh_table *tbl = state->tbl;
2407 read_unlock_bh(&tbl->lock);
2409 EXPORT_SYMBOL(neigh_seq_stop);
2411 /* statistics via seq_file */
2413 static void *neigh_stat_seq_start(struct seq_file *seq, loff_t *pos)
2415 struct proc_dir_entry *pde = seq->private;
2416 struct neigh_table *tbl = pde->data;
2417 int cpu;
2419 if (*pos == 0)
2420 return SEQ_START_TOKEN;
2422 for (cpu = *pos-1; cpu < NR_CPUS; ++cpu) {
2423 if (!cpu_possible(cpu))
2424 continue;
2425 *pos = cpu+1;
2426 return per_cpu_ptr(tbl->stats, cpu);
2428 return NULL;
2431 static void *neigh_stat_seq_next(struct seq_file *seq, void *v, loff_t *pos)
2433 struct proc_dir_entry *pde = seq->private;
2434 struct neigh_table *tbl = pde->data;
2435 int cpu;
2437 for (cpu = *pos; cpu < NR_CPUS; ++cpu) {
2438 if (!cpu_possible(cpu))
2439 continue;
2440 *pos = cpu+1;
2441 return per_cpu_ptr(tbl->stats, cpu);
2443 return NULL;
2446 static void neigh_stat_seq_stop(struct seq_file *seq, void *v)
2451 static int neigh_stat_seq_show(struct seq_file *seq, void *v)
2453 struct proc_dir_entry *pde = seq->private;
2454 struct neigh_table *tbl = pde->data;
2455 struct neigh_statistics *st = v;
2457 if (v == SEQ_START_TOKEN) {
2458 seq_printf(seq, "entries allocs destroys hash_grows lookups hits res_failed rcv_probes_mcast rcv_probes_ucast periodic_gc_runs forced_gc_runs\n");
2459 return 0;
2462 seq_printf(seq, "%08x %08lx %08lx %08lx %08lx %08lx %08lx "
2463 "%08lx %08lx %08lx %08lx\n",
2464 atomic_read(&tbl->entries),
2466 st->allocs,
2467 st->destroys,
2468 st->hash_grows,
2470 st->lookups,
2471 st->hits,
2473 st->res_failed,
2475 st->rcv_probes_mcast,
2476 st->rcv_probes_ucast,
2478 st->periodic_gc_runs,
2479 st->forced_gc_runs
2482 return 0;
2485 static const struct seq_operations neigh_stat_seq_ops = {
2486 .start = neigh_stat_seq_start,
2487 .next = neigh_stat_seq_next,
2488 .stop = neigh_stat_seq_stop,
2489 .show = neigh_stat_seq_show,
2492 static int neigh_stat_seq_open(struct inode *inode, struct file *file)
2494 int ret = seq_open(file, &neigh_stat_seq_ops);
2496 if (!ret) {
2497 struct seq_file *sf = file->private_data;
2498 sf->private = PDE(inode);
2500 return ret;
2503 static const struct file_operations neigh_stat_seq_fops = {
2504 .owner = THIS_MODULE,
2505 .open = neigh_stat_seq_open,
2506 .read = seq_read,
2507 .llseek = seq_lseek,
2508 .release = seq_release,
2511 #endif /* CONFIG_PROC_FS */
2513 static inline size_t neigh_nlmsg_size(void)
2515 return NLMSG_ALIGN(sizeof(struct ndmsg))
2516 + nla_total_size(MAX_ADDR_LEN) /* NDA_DST */
2517 + nla_total_size(MAX_ADDR_LEN) /* NDA_LLADDR */
2518 + nla_total_size(sizeof(struct nda_cacheinfo))
2519 + nla_total_size(4); /* NDA_PROBES */
2522 static void __neigh_notify(struct neighbour *n, int type, int flags)
2524 struct net *net = n->dev->nd_net;
2525 struct sk_buff *skb;
2526 int err = -ENOBUFS;
2528 skb = nlmsg_new(neigh_nlmsg_size(), GFP_ATOMIC);
2529 if (skb == NULL)
2530 goto errout;
2532 err = neigh_fill_info(skb, n, 0, 0, type, flags);
2533 if (err < 0) {
2534 /* -EMSGSIZE implies BUG in neigh_nlmsg_size() */
2535 WARN_ON(err == -EMSGSIZE);
2536 kfree_skb(skb);
2537 goto errout;
2539 err = rtnl_notify(skb, net, 0, RTNLGRP_NEIGH, NULL, GFP_ATOMIC);
2540 errout:
2541 if (err < 0)
2542 rtnl_set_sk_err(net, RTNLGRP_NEIGH, err);
2545 #ifdef CONFIG_ARPD
2546 void neigh_app_ns(struct neighbour *n)
2548 __neigh_notify(n, RTM_GETNEIGH, NLM_F_REQUEST);
2550 #endif /* CONFIG_ARPD */
2552 #ifdef CONFIG_SYSCTL
2554 static struct neigh_sysctl_table {
2555 struct ctl_table_header *sysctl_header;
2556 struct ctl_table neigh_vars[__NET_NEIGH_MAX];
2557 char *dev_name;
2558 } neigh_sysctl_template __read_mostly = {
2559 .neigh_vars = {
2561 .ctl_name = NET_NEIGH_MCAST_SOLICIT,
2562 .procname = "mcast_solicit",
2563 .maxlen = sizeof(int),
2564 .mode = 0644,
2565 .proc_handler = &proc_dointvec,
2568 .ctl_name = NET_NEIGH_UCAST_SOLICIT,
2569 .procname = "ucast_solicit",
2570 .maxlen = sizeof(int),
2571 .mode = 0644,
2572 .proc_handler = &proc_dointvec,
2575 .ctl_name = NET_NEIGH_APP_SOLICIT,
2576 .procname = "app_solicit",
2577 .maxlen = sizeof(int),
2578 .mode = 0644,
2579 .proc_handler = &proc_dointvec,
2582 .procname = "retrans_time",
2583 .maxlen = sizeof(int),
2584 .mode = 0644,
2585 .proc_handler = &proc_dointvec_userhz_jiffies,
2588 .ctl_name = NET_NEIGH_REACHABLE_TIME,
2589 .procname = "base_reachable_time",
2590 .maxlen = sizeof(int),
2591 .mode = 0644,
2592 .proc_handler = &proc_dointvec_jiffies,
2593 .strategy = &sysctl_jiffies,
2596 .ctl_name = NET_NEIGH_DELAY_PROBE_TIME,
2597 .procname = "delay_first_probe_time",
2598 .maxlen = sizeof(int),
2599 .mode = 0644,
2600 .proc_handler = &proc_dointvec_jiffies,
2601 .strategy = &sysctl_jiffies,
2604 .ctl_name = NET_NEIGH_GC_STALE_TIME,
2605 .procname = "gc_stale_time",
2606 .maxlen = sizeof(int),
2607 .mode = 0644,
2608 .proc_handler = &proc_dointvec_jiffies,
2609 .strategy = &sysctl_jiffies,
2612 .ctl_name = NET_NEIGH_UNRES_QLEN,
2613 .procname = "unres_qlen",
2614 .maxlen = sizeof(int),
2615 .mode = 0644,
2616 .proc_handler = &proc_dointvec,
2619 .ctl_name = NET_NEIGH_PROXY_QLEN,
2620 .procname = "proxy_qlen",
2621 .maxlen = sizeof(int),
2622 .mode = 0644,
2623 .proc_handler = &proc_dointvec,
2626 .procname = "anycast_delay",
2627 .maxlen = sizeof(int),
2628 .mode = 0644,
2629 .proc_handler = &proc_dointvec_userhz_jiffies,
2632 .procname = "proxy_delay",
2633 .maxlen = sizeof(int),
2634 .mode = 0644,
2635 .proc_handler = &proc_dointvec_userhz_jiffies,
2638 .procname = "locktime",
2639 .maxlen = sizeof(int),
2640 .mode = 0644,
2641 .proc_handler = &proc_dointvec_userhz_jiffies,
2644 .ctl_name = NET_NEIGH_RETRANS_TIME_MS,
2645 .procname = "retrans_time_ms",
2646 .maxlen = sizeof(int),
2647 .mode = 0644,
2648 .proc_handler = &proc_dointvec_ms_jiffies,
2649 .strategy = &sysctl_ms_jiffies,
2652 .ctl_name = NET_NEIGH_REACHABLE_TIME_MS,
2653 .procname = "base_reachable_time_ms",
2654 .maxlen = sizeof(int),
2655 .mode = 0644,
2656 .proc_handler = &proc_dointvec_ms_jiffies,
2657 .strategy = &sysctl_ms_jiffies,
2660 .ctl_name = NET_NEIGH_GC_INTERVAL,
2661 .procname = "gc_interval",
2662 .maxlen = sizeof(int),
2663 .mode = 0644,
2664 .proc_handler = &proc_dointvec_jiffies,
2665 .strategy = &sysctl_jiffies,
2668 .ctl_name = NET_NEIGH_GC_THRESH1,
2669 .procname = "gc_thresh1",
2670 .maxlen = sizeof(int),
2671 .mode = 0644,
2672 .proc_handler = &proc_dointvec,
2675 .ctl_name = NET_NEIGH_GC_THRESH2,
2676 .procname = "gc_thresh2",
2677 .maxlen = sizeof(int),
2678 .mode = 0644,
2679 .proc_handler = &proc_dointvec,
2682 .ctl_name = NET_NEIGH_GC_THRESH3,
2683 .procname = "gc_thresh3",
2684 .maxlen = sizeof(int),
2685 .mode = 0644,
2686 .proc_handler = &proc_dointvec,
2692 int neigh_sysctl_register(struct net_device *dev, struct neigh_parms *p,
2693 int p_id, int pdev_id, char *p_name,
2694 proc_handler *handler, ctl_handler *strategy)
2696 struct neigh_sysctl_table *t;
2697 const char *dev_name_source = NULL;
2699 #define NEIGH_CTL_PATH_ROOT 0
2700 #define NEIGH_CTL_PATH_PROTO 1
2701 #define NEIGH_CTL_PATH_NEIGH 2
2702 #define NEIGH_CTL_PATH_DEV 3
2704 struct ctl_path neigh_path[] = {
2705 { .procname = "net", .ctl_name = CTL_NET, },
2706 { .procname = "proto", .ctl_name = 0, },
2707 { .procname = "neigh", .ctl_name = 0, },
2708 { .procname = "default", .ctl_name = NET_PROTO_CONF_DEFAULT, },
2709 { },
2712 t = kmemdup(&neigh_sysctl_template, sizeof(*t), GFP_KERNEL);
2713 if (!t)
2714 goto err;
2716 t->neigh_vars[0].data = &p->mcast_probes;
2717 t->neigh_vars[1].data = &p->ucast_probes;
2718 t->neigh_vars[2].data = &p->app_probes;
2719 t->neigh_vars[3].data = &p->retrans_time;
2720 t->neigh_vars[4].data = &p->base_reachable_time;
2721 t->neigh_vars[5].data = &p->delay_probe_time;
2722 t->neigh_vars[6].data = &p->gc_staletime;
2723 t->neigh_vars[7].data = &p->queue_len;
2724 t->neigh_vars[8].data = &p->proxy_qlen;
2725 t->neigh_vars[9].data = &p->anycast_delay;
2726 t->neigh_vars[10].data = &p->proxy_delay;
2727 t->neigh_vars[11].data = &p->locktime;
2728 t->neigh_vars[12].data = &p->retrans_time;
2729 t->neigh_vars[13].data = &p->base_reachable_time;
2731 if (dev) {
2732 dev_name_source = dev->name;
2733 neigh_path[NEIGH_CTL_PATH_DEV].ctl_name = dev->ifindex;
2734 /* Terminate the table early */
2735 memset(&t->neigh_vars[14], 0, sizeof(t->neigh_vars[14]));
2736 } else {
2737 dev_name_source = neigh_path[NEIGH_CTL_PATH_DEV].procname;
2738 t->neigh_vars[14].data = (int *)(p + 1);
2739 t->neigh_vars[15].data = (int *)(p + 1) + 1;
2740 t->neigh_vars[16].data = (int *)(p + 1) + 2;
2741 t->neigh_vars[17].data = (int *)(p + 1) + 3;
2745 if (handler || strategy) {
2746 /* RetransTime */
2747 t->neigh_vars[3].proc_handler = handler;
2748 t->neigh_vars[3].strategy = strategy;
2749 t->neigh_vars[3].extra1 = dev;
2750 if (!strategy)
2751 t->neigh_vars[3].ctl_name = CTL_UNNUMBERED;
2752 /* ReachableTime */
2753 t->neigh_vars[4].proc_handler = handler;
2754 t->neigh_vars[4].strategy = strategy;
2755 t->neigh_vars[4].extra1 = dev;
2756 if (!strategy)
2757 t->neigh_vars[4].ctl_name = CTL_UNNUMBERED;
2758 /* RetransTime (in milliseconds)*/
2759 t->neigh_vars[12].proc_handler = handler;
2760 t->neigh_vars[12].strategy = strategy;
2761 t->neigh_vars[12].extra1 = dev;
2762 if (!strategy)
2763 t->neigh_vars[12].ctl_name = CTL_UNNUMBERED;
2764 /* ReachableTime (in milliseconds) */
2765 t->neigh_vars[13].proc_handler = handler;
2766 t->neigh_vars[13].strategy = strategy;
2767 t->neigh_vars[13].extra1 = dev;
2768 if (!strategy)
2769 t->neigh_vars[13].ctl_name = CTL_UNNUMBERED;
2772 t->dev_name = kstrdup(dev_name_source, GFP_KERNEL);
2773 if (!t->dev_name)
2774 goto free;
2776 neigh_path[NEIGH_CTL_PATH_DEV].procname = t->dev_name;
2777 neigh_path[NEIGH_CTL_PATH_NEIGH].ctl_name = pdev_id;
2778 neigh_path[NEIGH_CTL_PATH_PROTO].procname = p_name;
2779 neigh_path[NEIGH_CTL_PATH_PROTO].ctl_name = p_id;
2781 t->sysctl_header = register_sysctl_paths(neigh_path, t->neigh_vars);
2782 if (!t->sysctl_header)
2783 goto free_procname;
2785 p->sysctl_table = t;
2786 return 0;
2788 free_procname:
2789 kfree(t->dev_name);
2790 free:
2791 kfree(t);
2792 err:
2793 return -ENOBUFS;
2796 void neigh_sysctl_unregister(struct neigh_parms *p)
2798 if (p->sysctl_table) {
2799 struct neigh_sysctl_table *t = p->sysctl_table;
2800 p->sysctl_table = NULL;
2801 unregister_sysctl_table(t->sysctl_header);
2802 kfree(t->dev_name);
2803 kfree(t);
2807 #endif /* CONFIG_SYSCTL */
2809 static int __init neigh_init(void)
2811 rtnl_register(PF_UNSPEC, RTM_NEWNEIGH, neigh_add, NULL);
2812 rtnl_register(PF_UNSPEC, RTM_DELNEIGH, neigh_delete, NULL);
2813 rtnl_register(PF_UNSPEC, RTM_GETNEIGH, NULL, neigh_dump_info);
2815 rtnl_register(PF_UNSPEC, RTM_GETNEIGHTBL, NULL, neightbl_dump_info);
2816 rtnl_register(PF_UNSPEC, RTM_SETNEIGHTBL, neightbl_set, NULL);
2818 return 0;
2821 subsys_initcall(neigh_init);
2823 EXPORT_SYMBOL(__neigh_event_send);
2824 EXPORT_SYMBOL(neigh_changeaddr);
2825 EXPORT_SYMBOL(neigh_compat_output);
2826 EXPORT_SYMBOL(neigh_connected_output);
2827 EXPORT_SYMBOL(neigh_create);
2828 EXPORT_SYMBOL(neigh_destroy);
2829 EXPORT_SYMBOL(neigh_event_ns);
2830 EXPORT_SYMBOL(neigh_ifdown);
2831 EXPORT_SYMBOL(neigh_lookup);
2832 EXPORT_SYMBOL(neigh_lookup_nodev);
2833 EXPORT_SYMBOL(neigh_parms_alloc);
2834 EXPORT_SYMBOL(neigh_parms_release);
2835 EXPORT_SYMBOL(neigh_rand_reach_time);
2836 EXPORT_SYMBOL(neigh_resolve_output);
2837 EXPORT_SYMBOL(neigh_table_clear);
2838 EXPORT_SYMBOL(neigh_table_init);
2839 EXPORT_SYMBOL(neigh_table_init_no_netlink);
2840 EXPORT_SYMBOL(neigh_update);
2841 EXPORT_SYMBOL(pneigh_enqueue);
2842 EXPORT_SYMBOL(pneigh_lookup);
2844 #ifdef CONFIG_ARPD
2845 EXPORT_SYMBOL(neigh_app_ns);
2846 #endif
2847 #ifdef CONFIG_SYSCTL
2848 EXPORT_SYMBOL(neigh_sysctl_register);
2849 EXPORT_SYMBOL(neigh_sysctl_unregister);
2850 #endif