2 * Generic address resolution entity
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.
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>
25 #include <linux/sysctl.h>
27 #include <linux/times.h>
28 #include <net/net_namespace.h>
29 #include <net/neighbour.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>
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
49 #define NEIGH_PRINTK1 NEIGH_PRINTK
53 #define NEIGH_PRINTK2 NEIGH_PRINTK
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;
65 static const struct file_operations neigh_stat_seq_fops;
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
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:
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)
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)
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)) {
151 write_unlock(&n->lock);
152 neigh_cleanup_and_release(n);
155 write_unlock(&n->lock);
160 tbl->last_flush = jiffies;
162 write_unlock_bh(&tbl->lock);
167 static void neigh_add_timer(struct neighbour *n, unsigned long when)
170 if (unlikely(mod_timer(&n->timer, when))) {
171 printk("NEIGH: BUG, double timer add, state is %x\n",
177 static int neigh_del_timer(struct neighbour *n)
179 if ((n->nud_state & NUD_IN_TIMER) &&
180 del_timer(&n->timer)) {
187 static void pneigh_queue_purge(struct sk_buff_head *list)
191 while ((skb = skb_dequeue(list)) != NULL) {
197 static void neigh_flush_dev(struct neigh_table *tbl, struct net_device *dev)
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) {
210 write_lock(&n->lock);
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
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;
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);
257 static struct neighbour *neigh_alloc(struct neigh_table *tbl)
259 struct neighbour *n = NULL;
260 unsigned long now = jiffies;
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)
272 n = kmem_cache_zalloc(tbl->kmem_cachep, GFP_ATOMIC);
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);
286 atomic_set(&n->refcnt, 1);
292 atomic_dec(&tbl->entries);
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);
304 ret = (struct neighbour **)
305 __get_free_pages(GFP_ATOMIC|__GFP_ZERO, get_order(size));
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)
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);
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;
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)
360 int key_len = tbl->key_len;
363 NEIGH_CACHE_STAT_INC(tbl, lookups);
365 read_lock_bh(&tbl->lock);
366 hash_val = tbl->hash(pkey, dev);
367 for (n = tbl->hash_buckets[hash_val & tbl->hash_mask]; n; n = n->next) {
368 if (dev == n->dev && !memcmp(n->primary_key, pkey, key_len)) {
370 NEIGH_CACHE_STAT_INC(tbl, hits);
374 read_unlock_bh(&tbl->lock);
378 struct neighbour *neigh_lookup_nodev(struct neigh_table *tbl, struct net *net,
382 int key_len = tbl->key_len;
385 NEIGH_CACHE_STAT_INC(tbl, lookups);
387 read_lock_bh(&tbl->lock);
388 hash_val = tbl->hash(pkey, NULL);
389 for (n = tbl->hash_buckets[hash_val & tbl->hash_mask]; n; n = n->next) {
390 if (!memcmp(n->primary_key, pkey, key_len) &&
391 (net == n->dev->nd_net)) {
393 NEIGH_CACHE_STAT_INC(tbl, hits);
397 read_unlock_bh(&tbl->lock);
401 struct neighbour *neigh_create(struct neigh_table *tbl, const void *pkey,
402 struct net_device *dev)
405 int key_len = tbl->key_len;
407 struct neighbour *n1, *rc, *n = neigh_alloc(tbl);
410 rc = ERR_PTR(-ENOBUFS);
414 memcpy(n->primary_key, pkey, key_len);
418 /* Protocol specific setup. */
419 if (tbl->constructor && (error = tbl->constructor(n)) < 0) {
421 goto out_neigh_release;
424 /* Device specific setup. */
425 if (n->parms->neigh_setup &&
426 (error = n->parms->neigh_setup(n)) < 0) {
428 goto out_neigh_release;
431 n->confirmed = jiffies - (n->parms->base_reachable_time << 1);
433 write_lock_bh(&tbl->lock);
435 if (atomic_read(&tbl->entries) > (tbl->hash_mask + 1))
436 neigh_hash_grow(tbl, (tbl->hash_mask + 1) << 1);
438 hash_val = tbl->hash(pkey, dev) & tbl->hash_mask;
440 if (n->parms->dead) {
441 rc = ERR_PTR(-EINVAL);
445 for (n1 = tbl->hash_buckets[hash_val]; n1; n1 = n1->next) {
446 if (dev == n1->dev && !memcmp(n1->primary_key, pkey, key_len)) {
453 n->next = tbl->hash_buckets[hash_val];
454 tbl->hash_buckets[hash_val] = n;
457 write_unlock_bh(&tbl->lock);
458 NEIGH_PRINTK2("neigh %p is created.\n", n);
463 write_unlock_bh(&tbl->lock);
469 struct pneigh_entry *__pneigh_lookup(struct neigh_table *tbl,
470 struct net *net, const void *pkey, struct net_device *dev)
472 struct pneigh_entry *n;
473 int key_len = tbl->key_len;
474 u32 hash_val = *(u32 *)(pkey + key_len - 4);
476 hash_val ^= (hash_val >> 16);
477 hash_val ^= hash_val >> 8;
478 hash_val ^= hash_val >> 4;
479 hash_val &= PNEIGH_HASHMASK;
481 for (n = tbl->phash_buckets[hash_val]; n; n = n->next) {
482 if (!memcmp(n->key, pkey, key_len) &&
484 (n->dev == dev || !n->dev))
491 struct pneigh_entry * pneigh_lookup(struct neigh_table *tbl,
492 struct net *net, const void *pkey,
493 struct net_device *dev, int creat)
495 struct pneigh_entry *n;
496 int key_len = tbl->key_len;
497 u32 hash_val = *(u32 *)(pkey + key_len - 4);
499 hash_val ^= (hash_val >> 16);
500 hash_val ^= hash_val >> 8;
501 hash_val ^= hash_val >> 4;
502 hash_val &= PNEIGH_HASHMASK;
504 read_lock_bh(&tbl->lock);
506 for (n = tbl->phash_buckets[hash_val]; n; n = n->next) {
507 if (!memcmp(n->key, pkey, key_len) &&
509 (n->dev == dev || !n->dev)) {
510 read_unlock_bh(&tbl->lock);
514 read_unlock_bh(&tbl->lock);
521 n = kmalloc(sizeof(*n) + key_len, GFP_KERNEL);
525 n->net = hold_net(net);
526 memcpy(n->key, pkey, key_len);
531 if (tbl->pconstructor && tbl->pconstructor(n)) {
540 write_lock_bh(&tbl->lock);
541 n->next = tbl->phash_buckets[hash_val];
542 tbl->phash_buckets[hash_val] = n;
543 write_unlock_bh(&tbl->lock);
549 int pneigh_delete(struct neigh_table *tbl, struct net *net, const void *pkey,
550 struct net_device *dev)
552 struct pneigh_entry *n, **np;
553 int key_len = tbl->key_len;
554 u32 hash_val = *(u32 *)(pkey + key_len - 4);
556 hash_val ^= (hash_val >> 16);
557 hash_val ^= hash_val >> 8;
558 hash_val ^= hash_val >> 4;
559 hash_val &= PNEIGH_HASHMASK;
561 write_lock_bh(&tbl->lock);
562 for (np = &tbl->phash_buckets[hash_val]; (n = *np) != NULL;
564 if (!memcmp(n->key, pkey, key_len) && n->dev == dev &&
567 write_unlock_bh(&tbl->lock);
568 if (tbl->pdestructor)
577 write_unlock_bh(&tbl->lock);
581 static int pneigh_ifdown(struct neigh_table *tbl, struct net_device *dev)
583 struct pneigh_entry *n, **np;
586 for (h = 0; h <= PNEIGH_HASHMASK; h++) {
587 np = &tbl->phash_buckets[h];
588 while ((n = *np) != NULL) {
589 if (!dev || n->dev == dev) {
591 if (tbl->pdestructor)
605 static void neigh_parms_destroy(struct neigh_parms *parms);
607 static inline void neigh_parms_put(struct neigh_parms *parms)
609 if (atomic_dec_and_test(&parms->refcnt))
610 neigh_parms_destroy(parms);
614 * neighbour must already be out of the table;
617 void neigh_destroy(struct neighbour *neigh)
621 NEIGH_CACHE_STAT_INC(neigh->tbl, destroys);
625 "Destroying alive neighbour %p\n", neigh);
630 if (neigh_del_timer(neigh))
631 printk(KERN_WARNING "Impossible event.\n");
633 while ((hh = neigh->hh) != NULL) {
634 neigh->hh = hh->hh_next;
637 write_seqlock_bh(&hh->hh_lock);
638 hh->hh_output = neigh_blackhole;
639 write_sequnlock_bh(&hh->hh_lock);
640 if (atomic_dec_and_test(&hh->hh_refcnt))
644 skb_queue_purge(&neigh->arp_queue);
647 neigh_parms_put(neigh->parms);
649 NEIGH_PRINTK2("neigh %p is destroyed.\n", neigh);
651 atomic_dec(&neigh->tbl->entries);
652 kmem_cache_free(neigh->tbl->kmem_cachep, neigh);
655 /* Neighbour state is suspicious;
658 Called with write_locked neigh.
660 static void neigh_suspect(struct neighbour *neigh)
664 NEIGH_PRINTK2("neigh %p is suspected.\n", neigh);
666 neigh->output = neigh->ops->output;
668 for (hh = neigh->hh; hh; hh = hh->hh_next)
669 hh->hh_output = neigh->ops->output;
672 /* Neighbour state is OK;
675 Called with write_locked neigh.
677 static void neigh_connect(struct neighbour *neigh)
681 NEIGH_PRINTK2("neigh %p is connected.\n", neigh);
683 neigh->output = neigh->ops->connected_output;
685 for (hh = neigh->hh; hh; hh = hh->hh_next)
686 hh->hh_output = neigh->ops->hh_output;
689 static void neigh_periodic_timer(unsigned long arg)
691 struct neigh_table *tbl = (struct neigh_table *)arg;
692 struct neighbour *n, **np;
693 unsigned long expire, now = jiffies;
695 NEIGH_CACHE_STAT_INC(tbl, periodic_gc_runs);
697 write_lock(&tbl->lock);
700 * periodically recompute ReachableTime from random function
703 if (time_after(now, tbl->last_rand + 300 * HZ)) {
704 struct neigh_parms *p;
705 tbl->last_rand = now;
706 for (p = &tbl->parms; p; p = p->next)
708 neigh_rand_reach_time(p->base_reachable_time);
711 np = &tbl->hash_buckets[tbl->hash_chain_gc];
712 tbl->hash_chain_gc = ((tbl->hash_chain_gc + 1) & tbl->hash_mask);
714 while ((n = *np) != NULL) {
717 write_lock(&n->lock);
719 state = n->nud_state;
720 if (state & (NUD_PERMANENT | NUD_IN_TIMER)) {
721 write_unlock(&n->lock);
725 if (time_before(n->used, n->confirmed))
726 n->used = n->confirmed;
728 if (atomic_read(&n->refcnt) == 1 &&
729 (state == NUD_FAILED ||
730 time_after(now, n->used + n->parms->gc_staletime))) {
733 write_unlock(&n->lock);
734 neigh_cleanup_and_release(n);
737 write_unlock(&n->lock);
743 /* Cycle through all hash buckets every base_reachable_time/2 ticks.
744 * ARP entry timeouts range from 1/2 base_reachable_time to 3/2
745 * base_reachable_time.
747 expire = tbl->parms.base_reachable_time >> 1;
748 expire /= (tbl->hash_mask + 1);
753 mod_timer(&tbl->gc_timer, round_jiffies(now + expire));
755 mod_timer(&tbl->gc_timer, now + expire);
757 write_unlock(&tbl->lock);
760 static __inline__ int neigh_max_probes(struct neighbour *n)
762 struct neigh_parms *p = n->parms;
763 return (n->nud_state & NUD_PROBE ?
765 p->ucast_probes + p->app_probes + p->mcast_probes);
768 /* Called when a timer expires for a neighbour entry. */
770 static void neigh_timer_handler(unsigned long arg)
772 unsigned long now, next;
773 struct neighbour *neigh = (struct neighbour *)arg;
777 write_lock(&neigh->lock);
779 state = neigh->nud_state;
783 if (!(state & NUD_IN_TIMER)) {
785 printk(KERN_WARNING "neigh: timer & !nud_in_timer\n");
790 if (state & NUD_REACHABLE) {
791 if (time_before_eq(now,
792 neigh->confirmed + neigh->parms->reachable_time)) {
793 NEIGH_PRINTK2("neigh %p is still alive.\n", neigh);
794 next = neigh->confirmed + neigh->parms->reachable_time;
795 } else if (time_before_eq(now,
796 neigh->used + neigh->parms->delay_probe_time)) {
797 NEIGH_PRINTK2("neigh %p is delayed.\n", neigh);
798 neigh->nud_state = NUD_DELAY;
799 neigh->updated = jiffies;
800 neigh_suspect(neigh);
801 next = now + neigh->parms->delay_probe_time;
803 NEIGH_PRINTK2("neigh %p is suspected.\n", neigh);
804 neigh->nud_state = NUD_STALE;
805 neigh->updated = jiffies;
806 neigh_suspect(neigh);
809 } else if (state & NUD_DELAY) {
810 if (time_before_eq(now,
811 neigh->confirmed + neigh->parms->delay_probe_time)) {
812 NEIGH_PRINTK2("neigh %p is now reachable.\n", neigh);
813 neigh->nud_state = NUD_REACHABLE;
814 neigh->updated = jiffies;
815 neigh_connect(neigh);
817 next = neigh->confirmed + neigh->parms->reachable_time;
819 NEIGH_PRINTK2("neigh %p is probed.\n", neigh);
820 neigh->nud_state = NUD_PROBE;
821 neigh->updated = jiffies;
822 atomic_set(&neigh->probes, 0);
823 next = now + neigh->parms->retrans_time;
826 /* NUD_PROBE|NUD_INCOMPLETE */
827 next = now + neigh->parms->retrans_time;
830 if ((neigh->nud_state & (NUD_INCOMPLETE | NUD_PROBE)) &&
831 atomic_read(&neigh->probes) >= neigh_max_probes(neigh)) {
834 neigh->nud_state = NUD_FAILED;
835 neigh->updated = jiffies;
837 NEIGH_CACHE_STAT_INC(neigh->tbl, res_failed);
838 NEIGH_PRINTK2("neigh %p is failed.\n", neigh);
840 /* It is very thin place. report_unreachable is very complicated
841 routine. Particularly, it can hit the same neighbour entry!
843 So that, we try to be accurate and avoid dead loop. --ANK
845 while (neigh->nud_state == NUD_FAILED &&
846 (skb = __skb_dequeue(&neigh->arp_queue)) != NULL) {
847 write_unlock(&neigh->lock);
848 neigh->ops->error_report(neigh, skb);
849 write_lock(&neigh->lock);
851 skb_queue_purge(&neigh->arp_queue);
854 if (neigh->nud_state & NUD_IN_TIMER) {
855 if (time_before(next, jiffies + HZ/2))
856 next = jiffies + HZ/2;
857 if (!mod_timer(&neigh->timer, next))
860 if (neigh->nud_state & (NUD_INCOMPLETE | NUD_PROBE)) {
861 struct sk_buff *skb = skb_peek(&neigh->arp_queue);
862 /* keep skb alive even if arp_queue overflows */
864 skb = skb_copy(skb, GFP_ATOMIC);
865 write_unlock(&neigh->lock);
866 neigh->ops->solicit(neigh, skb);
867 atomic_inc(&neigh->probes);
872 write_unlock(&neigh->lock);
876 neigh_update_notify(neigh);
878 neigh_release(neigh);
881 int __neigh_event_send(struct neighbour *neigh, struct sk_buff *skb)
886 write_lock_bh(&neigh->lock);
889 if (neigh->nud_state & (NUD_CONNECTED | NUD_DELAY | NUD_PROBE))
894 if (!(neigh->nud_state & (NUD_STALE | NUD_INCOMPLETE))) {
895 if (neigh->parms->mcast_probes + neigh->parms->app_probes) {
896 atomic_set(&neigh->probes, neigh->parms->ucast_probes);
897 neigh->nud_state = NUD_INCOMPLETE;
898 neigh->updated = jiffies;
899 neigh_add_timer(neigh, now + 1);
901 neigh->nud_state = NUD_FAILED;
902 neigh->updated = jiffies;
903 write_unlock_bh(&neigh->lock);
909 } else if (neigh->nud_state & NUD_STALE) {
910 NEIGH_PRINTK2("neigh %p is delayed.\n", neigh);
911 neigh->nud_state = NUD_DELAY;
912 neigh->updated = jiffies;
913 neigh_add_timer(neigh,
914 jiffies + neigh->parms->delay_probe_time);
917 if (neigh->nud_state == NUD_INCOMPLETE) {
919 if (skb_queue_len(&neigh->arp_queue) >=
920 neigh->parms->queue_len) {
921 struct sk_buff *buff;
922 buff = neigh->arp_queue.next;
923 __skb_unlink(buff, &neigh->arp_queue);
926 __skb_queue_tail(&neigh->arp_queue, skb);
931 write_unlock_bh(&neigh->lock);
935 static void neigh_update_hhs(struct neighbour *neigh)
938 void (*update)(struct hh_cache*, const struct net_device*, const unsigned char *)
939 = neigh->dev->header_ops->cache_update;
942 for (hh = neigh->hh; hh; hh = hh->hh_next) {
943 write_seqlock_bh(&hh->hh_lock);
944 update(hh, neigh->dev, neigh->ha);
945 write_sequnlock_bh(&hh->hh_lock);
952 /* Generic update routine.
953 -- lladdr is new lladdr or NULL, if it is not supplied.
956 NEIGH_UPDATE_F_OVERRIDE allows to override existing lladdr,
958 NEIGH_UPDATE_F_WEAK_OVERRIDE will suspect existing "connected"
959 lladdr instead of overriding it
961 It also allows to retain current state
962 if lladdr is unchanged.
963 NEIGH_UPDATE_F_ADMIN means that the change is administrative.
965 NEIGH_UPDATE_F_OVERRIDE_ISROUTER allows to override existing
967 NEIGH_UPDATE_F_ISROUTER indicates if the neighbour is known as
970 Caller MUST hold reference count on the entry.
973 int neigh_update(struct neighbour *neigh, const u8 *lladdr, u8 new,
979 struct net_device *dev;
980 int update_isrouter = 0;
982 write_lock_bh(&neigh->lock);
985 old = neigh->nud_state;
988 if (!(flags & NEIGH_UPDATE_F_ADMIN) &&
989 (old & (NUD_NOARP | NUD_PERMANENT)))
992 if (!(new & NUD_VALID)) {
993 neigh_del_timer(neigh);
994 if (old & NUD_CONNECTED)
995 neigh_suspect(neigh);
996 neigh->nud_state = new;
998 notify = old & NUD_VALID;
1002 /* Compare new lladdr with cached one */
1003 if (!dev->addr_len) {
1004 /* First case: device needs no address. */
1006 } else if (lladdr) {
1007 /* The second case: if something is already cached
1008 and a new address is proposed:
1010 - if they are different, check override flag
1012 if ((old & NUD_VALID) &&
1013 !memcmp(lladdr, neigh->ha, dev->addr_len))
1016 /* No address is supplied; if we know something,
1017 use it, otherwise discard the request.
1020 if (!(old & NUD_VALID))
1025 if (new & NUD_CONNECTED)
1026 neigh->confirmed = jiffies;
1027 neigh->updated = jiffies;
1029 /* If entry was valid and address is not changed,
1030 do not change entry state, if new one is STALE.
1033 update_isrouter = flags & NEIGH_UPDATE_F_OVERRIDE_ISROUTER;
1034 if (old & NUD_VALID) {
1035 if (lladdr != neigh->ha && !(flags & NEIGH_UPDATE_F_OVERRIDE)) {
1036 update_isrouter = 0;
1037 if ((flags & NEIGH_UPDATE_F_WEAK_OVERRIDE) &&
1038 (old & NUD_CONNECTED)) {
1044 if (lladdr == neigh->ha && new == NUD_STALE &&
1045 ((flags & NEIGH_UPDATE_F_WEAK_OVERRIDE) ||
1046 (old & NUD_CONNECTED))
1053 neigh_del_timer(neigh);
1054 if (new & NUD_IN_TIMER)
1055 neigh_add_timer(neigh, (jiffies +
1056 ((new & NUD_REACHABLE) ?
1057 neigh->parms->reachable_time :
1059 neigh->nud_state = new;
1062 if (lladdr != neigh->ha) {
1063 memcpy(&neigh->ha, lladdr, dev->addr_len);
1064 neigh_update_hhs(neigh);
1065 if (!(new & NUD_CONNECTED))
1066 neigh->confirmed = jiffies -
1067 (neigh->parms->base_reachable_time << 1);
1072 if (new & NUD_CONNECTED)
1073 neigh_connect(neigh);
1075 neigh_suspect(neigh);
1076 if (!(old & NUD_VALID)) {
1077 struct sk_buff *skb;
1079 /* Again: avoid dead loop if something went wrong */
1081 while (neigh->nud_state & NUD_VALID &&
1082 (skb = __skb_dequeue(&neigh->arp_queue)) != NULL) {
1083 struct neighbour *n1 = neigh;
1084 write_unlock_bh(&neigh->lock);
1085 /* On shaper/eql skb->dst->neighbour != neigh :( */
1086 if (skb->dst && skb->dst->neighbour)
1087 n1 = skb->dst->neighbour;
1089 write_lock_bh(&neigh->lock);
1091 skb_queue_purge(&neigh->arp_queue);
1094 if (update_isrouter) {
1095 neigh->flags = (flags & NEIGH_UPDATE_F_ISROUTER) ?
1096 (neigh->flags | NTF_ROUTER) :
1097 (neigh->flags & ~NTF_ROUTER);
1099 write_unlock_bh(&neigh->lock);
1102 neigh_update_notify(neigh);
1107 struct neighbour *neigh_event_ns(struct neigh_table *tbl,
1108 u8 *lladdr, void *saddr,
1109 struct net_device *dev)
1111 struct neighbour *neigh = __neigh_lookup(tbl, saddr, dev,
1112 lladdr || !dev->addr_len);
1114 neigh_update(neigh, lladdr, NUD_STALE,
1115 NEIGH_UPDATE_F_OVERRIDE);
1119 static void neigh_hh_init(struct neighbour *n, struct dst_entry *dst,
1122 struct hh_cache *hh;
1123 struct net_device *dev = dst->dev;
1125 for (hh = n->hh; hh; hh = hh->hh_next)
1126 if (hh->hh_type == protocol)
1129 if (!hh && (hh = kzalloc(sizeof(*hh), GFP_ATOMIC)) != NULL) {
1130 seqlock_init(&hh->hh_lock);
1131 hh->hh_type = protocol;
1132 atomic_set(&hh->hh_refcnt, 0);
1135 if (dev->header_ops->cache(n, hh)) {
1139 atomic_inc(&hh->hh_refcnt);
1140 hh->hh_next = n->hh;
1142 if (n->nud_state & NUD_CONNECTED)
1143 hh->hh_output = n->ops->hh_output;
1145 hh->hh_output = n->ops->output;
1149 atomic_inc(&hh->hh_refcnt);
1154 /* This function can be used in contexts, where only old dev_queue_xmit
1155 worked, f.e. if you want to override normal output path (eql, shaper),
1156 but resolution is not made yet.
1159 int neigh_compat_output(struct sk_buff *skb)
1161 struct net_device *dev = skb->dev;
1163 __skb_pull(skb, skb_network_offset(skb));
1165 if (dev_hard_header(skb, dev, ntohs(skb->protocol), NULL, NULL,
1167 dev->header_ops->rebuild(skb))
1170 return dev_queue_xmit(skb);
1173 /* Slow and careful. */
1175 int neigh_resolve_output(struct sk_buff *skb)
1177 struct dst_entry *dst = skb->dst;
1178 struct neighbour *neigh;
1181 if (!dst || !(neigh = dst->neighbour))
1184 __skb_pull(skb, skb_network_offset(skb));
1186 if (!neigh_event_send(neigh, skb)) {
1188 struct net_device *dev = neigh->dev;
1189 if (dev->header_ops->cache && !dst->hh) {
1190 write_lock_bh(&neigh->lock);
1192 neigh_hh_init(neigh, dst, dst->ops->protocol);
1193 err = dev_hard_header(skb, dev, ntohs(skb->protocol),
1194 neigh->ha, NULL, skb->len);
1195 write_unlock_bh(&neigh->lock);
1197 read_lock_bh(&neigh->lock);
1198 err = dev_hard_header(skb, dev, ntohs(skb->protocol),
1199 neigh->ha, NULL, skb->len);
1200 read_unlock_bh(&neigh->lock);
1203 rc = neigh->ops->queue_xmit(skb);
1210 NEIGH_PRINTK1("neigh_resolve_output: dst=%p neigh=%p\n",
1211 dst, dst ? dst->neighbour : NULL);
1218 /* As fast as possible without hh cache */
1220 int neigh_connected_output(struct sk_buff *skb)
1223 struct dst_entry *dst = skb->dst;
1224 struct neighbour *neigh = dst->neighbour;
1225 struct net_device *dev = neigh->dev;
1227 __skb_pull(skb, skb_network_offset(skb));
1229 read_lock_bh(&neigh->lock);
1230 err = dev_hard_header(skb, dev, ntohs(skb->protocol),
1231 neigh->ha, NULL, skb->len);
1232 read_unlock_bh(&neigh->lock);
1234 err = neigh->ops->queue_xmit(skb);
1242 static void neigh_proxy_process(unsigned long arg)
1244 struct neigh_table *tbl = (struct neigh_table *)arg;
1245 long sched_next = 0;
1246 unsigned long now = jiffies;
1247 struct sk_buff *skb;
1249 spin_lock(&tbl->proxy_queue.lock);
1251 skb = tbl->proxy_queue.next;
1253 while (skb != (struct sk_buff *)&tbl->proxy_queue) {
1254 struct sk_buff *back = skb;
1255 long tdif = NEIGH_CB(back)->sched_next - now;
1259 struct net_device *dev = back->dev;
1260 __skb_unlink(back, &tbl->proxy_queue);
1261 if (tbl->proxy_redo && netif_running(dev))
1262 tbl->proxy_redo(back);
1267 } else if (!sched_next || tdif < sched_next)
1270 del_timer(&tbl->proxy_timer);
1272 mod_timer(&tbl->proxy_timer, jiffies + sched_next);
1273 spin_unlock(&tbl->proxy_queue.lock);
1276 void pneigh_enqueue(struct neigh_table *tbl, struct neigh_parms *p,
1277 struct sk_buff *skb)
1279 unsigned long now = jiffies;
1280 unsigned long sched_next = now + (net_random() % p->proxy_delay);
1282 if (tbl->proxy_queue.qlen > p->proxy_qlen) {
1287 NEIGH_CB(skb)->sched_next = sched_next;
1288 NEIGH_CB(skb)->flags |= LOCALLY_ENQUEUED;
1290 spin_lock(&tbl->proxy_queue.lock);
1291 if (del_timer(&tbl->proxy_timer)) {
1292 if (time_before(tbl->proxy_timer.expires, sched_next))
1293 sched_next = tbl->proxy_timer.expires;
1295 dst_release(skb->dst);
1298 __skb_queue_tail(&tbl->proxy_queue, skb);
1299 mod_timer(&tbl->proxy_timer, sched_next);
1300 spin_unlock(&tbl->proxy_queue.lock);
1303 static inline struct neigh_parms *lookup_neigh_params(struct neigh_table *tbl,
1304 struct net *net, int ifindex)
1306 struct neigh_parms *p;
1308 for (p = &tbl->parms; p; p = p->next) {
1311 if ((p->dev && p->dev->ifindex == ifindex) ||
1312 (!p->dev && !ifindex))
1319 struct neigh_parms *neigh_parms_alloc(struct net_device *dev,
1320 struct neigh_table *tbl)
1322 struct neigh_parms *p, *ref;
1326 ref = lookup_neigh_params(tbl, net, 0);
1330 p = kmemdup(ref, sizeof(*p), GFP_KERNEL);
1333 atomic_set(&p->refcnt, 1);
1334 INIT_RCU_HEAD(&p->rcu_head);
1336 neigh_rand_reach_time(p->base_reachable_time);
1338 if (dev->neigh_setup && dev->neigh_setup(dev, p)) {
1345 p->net = hold_net(net);
1346 p->sysctl_table = NULL;
1347 write_lock_bh(&tbl->lock);
1348 p->next = tbl->parms.next;
1349 tbl->parms.next = p;
1350 write_unlock_bh(&tbl->lock);
1355 static void neigh_rcu_free_parms(struct rcu_head *head)
1357 struct neigh_parms *parms =
1358 container_of(head, struct neigh_parms, rcu_head);
1360 neigh_parms_put(parms);
1363 void neigh_parms_release(struct neigh_table *tbl, struct neigh_parms *parms)
1365 struct neigh_parms **p;
1367 if (!parms || parms == &tbl->parms)
1369 write_lock_bh(&tbl->lock);
1370 for (p = &tbl->parms.next; *p; p = &(*p)->next) {
1374 write_unlock_bh(&tbl->lock);
1376 dev_put(parms->dev);
1377 call_rcu(&parms->rcu_head, neigh_rcu_free_parms);
1381 write_unlock_bh(&tbl->lock);
1382 NEIGH_PRINTK1("neigh_parms_release: not found\n");
1385 static void neigh_parms_destroy(struct neigh_parms *parms)
1387 release_net(parms->net);
1391 static struct lock_class_key neigh_table_proxy_queue_class;
1393 void neigh_table_init_no_netlink(struct neigh_table *tbl)
1395 unsigned long now = jiffies;
1396 unsigned long phsize;
1398 tbl->parms.net = &init_net;
1399 atomic_set(&tbl->parms.refcnt, 1);
1400 INIT_RCU_HEAD(&tbl->parms.rcu_head);
1401 tbl->parms.reachable_time =
1402 neigh_rand_reach_time(tbl->parms.base_reachable_time);
1404 if (!tbl->kmem_cachep)
1406 kmem_cache_create(tbl->id, tbl->entry_size, 0,
1407 SLAB_HWCACHE_ALIGN|SLAB_PANIC,
1409 tbl->stats = alloc_percpu(struct neigh_statistics);
1411 panic("cannot create neighbour cache statistics");
1413 #ifdef CONFIG_PROC_FS
1414 tbl->pde = proc_create(tbl->id, 0, init_net.proc_net_stat,
1415 &neigh_stat_seq_fops);
1417 panic("cannot create neighbour proc dir entry");
1418 tbl->pde->data = tbl;
1422 tbl->hash_buckets = neigh_hash_alloc(tbl->hash_mask + 1);
1424 phsize = (PNEIGH_HASHMASK + 1) * sizeof(struct pneigh_entry *);
1425 tbl->phash_buckets = kzalloc(phsize, GFP_KERNEL);
1427 if (!tbl->hash_buckets || !tbl->phash_buckets)
1428 panic("cannot allocate neighbour cache hashes");
1430 get_random_bytes(&tbl->hash_rnd, sizeof(tbl->hash_rnd));
1432 rwlock_init(&tbl->lock);
1433 setup_timer(&tbl->gc_timer, neigh_periodic_timer, (unsigned long)tbl);
1434 tbl->gc_timer.expires = now + 1;
1435 add_timer(&tbl->gc_timer);
1437 setup_timer(&tbl->proxy_timer, neigh_proxy_process, (unsigned long)tbl);
1438 skb_queue_head_init_class(&tbl->proxy_queue,
1439 &neigh_table_proxy_queue_class);
1441 tbl->last_flush = now;
1442 tbl->last_rand = now + tbl->parms.reachable_time * 20;
1445 void neigh_table_init(struct neigh_table *tbl)
1447 struct neigh_table *tmp;
1449 neigh_table_init_no_netlink(tbl);
1450 write_lock(&neigh_tbl_lock);
1451 for (tmp = neigh_tables; tmp; tmp = tmp->next) {
1452 if (tmp->family == tbl->family)
1455 tbl->next = neigh_tables;
1457 write_unlock(&neigh_tbl_lock);
1459 if (unlikely(tmp)) {
1460 printk(KERN_ERR "NEIGH: Registering multiple tables for "
1461 "family %d\n", tbl->family);
1466 int neigh_table_clear(struct neigh_table *tbl)
1468 struct neigh_table **tp;
1470 /* It is not clean... Fix it to unload IPv6 module safely */
1471 del_timer_sync(&tbl->gc_timer);
1472 del_timer_sync(&tbl->proxy_timer);
1473 pneigh_queue_purge(&tbl->proxy_queue);
1474 neigh_ifdown(tbl, NULL);
1475 if (atomic_read(&tbl->entries))
1476 printk(KERN_CRIT "neighbour leakage\n");
1477 write_lock(&neigh_tbl_lock);
1478 for (tp = &neigh_tables; *tp; tp = &(*tp)->next) {
1484 write_unlock(&neigh_tbl_lock);
1486 neigh_hash_free(tbl->hash_buckets, tbl->hash_mask + 1);
1487 tbl->hash_buckets = NULL;
1489 kfree(tbl->phash_buckets);
1490 tbl->phash_buckets = NULL;
1492 remove_proc_entry(tbl->id, init_net.proc_net_stat);
1494 free_percpu(tbl->stats);
1497 kmem_cache_destroy(tbl->kmem_cachep);
1498 tbl->kmem_cachep = NULL;
1503 static int neigh_delete(struct sk_buff *skb, struct nlmsghdr *nlh, void *arg)
1505 struct net *net = skb->sk->sk_net;
1507 struct nlattr *dst_attr;
1508 struct neigh_table *tbl;
1509 struct net_device *dev = NULL;
1512 if (nlmsg_len(nlh) < sizeof(*ndm))
1515 dst_attr = nlmsg_find_attr(nlh, sizeof(*ndm), NDA_DST);
1516 if (dst_attr == NULL)
1519 ndm = nlmsg_data(nlh);
1520 if (ndm->ndm_ifindex) {
1521 dev = dev_get_by_index(net, ndm->ndm_ifindex);
1528 read_lock(&neigh_tbl_lock);
1529 for (tbl = neigh_tables; tbl; tbl = tbl->next) {
1530 struct neighbour *neigh;
1532 if (tbl->family != ndm->ndm_family)
1534 read_unlock(&neigh_tbl_lock);
1536 if (nla_len(dst_attr) < tbl->key_len)
1539 if (ndm->ndm_flags & NTF_PROXY) {
1540 err = pneigh_delete(tbl, net, nla_data(dst_attr), dev);
1547 neigh = neigh_lookup(tbl, nla_data(dst_attr), dev);
1548 if (neigh == NULL) {
1553 err = neigh_update(neigh, NULL, NUD_FAILED,
1554 NEIGH_UPDATE_F_OVERRIDE |
1555 NEIGH_UPDATE_F_ADMIN);
1556 neigh_release(neigh);
1559 read_unlock(&neigh_tbl_lock);
1560 err = -EAFNOSUPPORT;
1569 static int neigh_add(struct sk_buff *skb, struct nlmsghdr *nlh, void *arg)
1571 struct net *net = skb->sk->sk_net;
1573 struct nlattr *tb[NDA_MAX+1];
1574 struct neigh_table *tbl;
1575 struct net_device *dev = NULL;
1578 err = nlmsg_parse(nlh, sizeof(*ndm), tb, NDA_MAX, NULL);
1583 if (tb[NDA_DST] == NULL)
1586 ndm = nlmsg_data(nlh);
1587 if (ndm->ndm_ifindex) {
1588 dev = dev_get_by_index(net, ndm->ndm_ifindex);
1594 if (tb[NDA_LLADDR] && nla_len(tb[NDA_LLADDR]) < dev->addr_len)
1598 read_lock(&neigh_tbl_lock);
1599 for (tbl = neigh_tables; tbl; tbl = tbl->next) {
1600 int flags = NEIGH_UPDATE_F_ADMIN | NEIGH_UPDATE_F_OVERRIDE;
1601 struct neighbour *neigh;
1604 if (tbl->family != ndm->ndm_family)
1606 read_unlock(&neigh_tbl_lock);
1608 if (nla_len(tb[NDA_DST]) < tbl->key_len)
1610 dst = nla_data(tb[NDA_DST]);
1611 lladdr = tb[NDA_LLADDR] ? nla_data(tb[NDA_LLADDR]) : NULL;
1613 if (ndm->ndm_flags & NTF_PROXY) {
1614 struct pneigh_entry *pn;
1617 pn = pneigh_lookup(tbl, net, dst, dev, 1);
1619 pn->flags = ndm->ndm_flags;
1628 neigh = neigh_lookup(tbl, dst, dev);
1629 if (neigh == NULL) {
1630 if (!(nlh->nlmsg_flags & NLM_F_CREATE)) {
1635 neigh = __neigh_lookup_errno(tbl, dst, dev);
1636 if (IS_ERR(neigh)) {
1637 err = PTR_ERR(neigh);
1641 if (nlh->nlmsg_flags & NLM_F_EXCL) {
1643 neigh_release(neigh);
1647 if (!(nlh->nlmsg_flags & NLM_F_REPLACE))
1648 flags &= ~NEIGH_UPDATE_F_OVERRIDE;
1651 err = neigh_update(neigh, lladdr, ndm->ndm_state, flags);
1652 neigh_release(neigh);
1656 read_unlock(&neigh_tbl_lock);
1657 err = -EAFNOSUPPORT;
1666 static int neightbl_fill_parms(struct sk_buff *skb, struct neigh_parms *parms)
1668 struct nlattr *nest;
1670 nest = nla_nest_start(skb, NDTA_PARMS);
1675 NLA_PUT_U32(skb, NDTPA_IFINDEX, parms->dev->ifindex);
1677 NLA_PUT_U32(skb, NDTPA_REFCNT, atomic_read(&parms->refcnt));
1678 NLA_PUT_U32(skb, NDTPA_QUEUE_LEN, parms->queue_len);
1679 NLA_PUT_U32(skb, NDTPA_PROXY_QLEN, parms->proxy_qlen);
1680 NLA_PUT_U32(skb, NDTPA_APP_PROBES, parms->app_probes);
1681 NLA_PUT_U32(skb, NDTPA_UCAST_PROBES, parms->ucast_probes);
1682 NLA_PUT_U32(skb, NDTPA_MCAST_PROBES, parms->mcast_probes);
1683 NLA_PUT_MSECS(skb, NDTPA_REACHABLE_TIME, parms->reachable_time);
1684 NLA_PUT_MSECS(skb, NDTPA_BASE_REACHABLE_TIME,
1685 parms->base_reachable_time);
1686 NLA_PUT_MSECS(skb, NDTPA_GC_STALETIME, parms->gc_staletime);
1687 NLA_PUT_MSECS(skb, NDTPA_DELAY_PROBE_TIME, parms->delay_probe_time);
1688 NLA_PUT_MSECS(skb, NDTPA_RETRANS_TIME, parms->retrans_time);
1689 NLA_PUT_MSECS(skb, NDTPA_ANYCAST_DELAY, parms->anycast_delay);
1690 NLA_PUT_MSECS(skb, NDTPA_PROXY_DELAY, parms->proxy_delay);
1691 NLA_PUT_MSECS(skb, NDTPA_LOCKTIME, parms->locktime);
1693 return nla_nest_end(skb, nest);
1696 return nla_nest_cancel(skb, nest);
1699 static int neightbl_fill_info(struct sk_buff *skb, struct neigh_table *tbl,
1700 u32 pid, u32 seq, int type, int flags)
1702 struct nlmsghdr *nlh;
1703 struct ndtmsg *ndtmsg;
1705 nlh = nlmsg_put(skb, pid, seq, type, sizeof(*ndtmsg), flags);
1709 ndtmsg = nlmsg_data(nlh);
1711 read_lock_bh(&tbl->lock);
1712 ndtmsg->ndtm_family = tbl->family;
1713 ndtmsg->ndtm_pad1 = 0;
1714 ndtmsg->ndtm_pad2 = 0;
1716 NLA_PUT_STRING(skb, NDTA_NAME, tbl->id);
1717 NLA_PUT_MSECS(skb, NDTA_GC_INTERVAL, tbl->gc_interval);
1718 NLA_PUT_U32(skb, NDTA_THRESH1, tbl->gc_thresh1);
1719 NLA_PUT_U32(skb, NDTA_THRESH2, tbl->gc_thresh2);
1720 NLA_PUT_U32(skb, NDTA_THRESH3, tbl->gc_thresh3);
1723 unsigned long now = jiffies;
1724 unsigned int flush_delta = now - tbl->last_flush;
1725 unsigned int rand_delta = now - tbl->last_rand;
1727 struct ndt_config ndc = {
1728 .ndtc_key_len = tbl->key_len,
1729 .ndtc_entry_size = tbl->entry_size,
1730 .ndtc_entries = atomic_read(&tbl->entries),
1731 .ndtc_last_flush = jiffies_to_msecs(flush_delta),
1732 .ndtc_last_rand = jiffies_to_msecs(rand_delta),
1733 .ndtc_hash_rnd = tbl->hash_rnd,
1734 .ndtc_hash_mask = tbl->hash_mask,
1735 .ndtc_hash_chain_gc = tbl->hash_chain_gc,
1736 .ndtc_proxy_qlen = tbl->proxy_queue.qlen,
1739 NLA_PUT(skb, NDTA_CONFIG, sizeof(ndc), &ndc);
1744 struct ndt_stats ndst;
1746 memset(&ndst, 0, sizeof(ndst));
1748 for_each_possible_cpu(cpu) {
1749 struct neigh_statistics *st;
1751 st = per_cpu_ptr(tbl->stats, cpu);
1752 ndst.ndts_allocs += st->allocs;
1753 ndst.ndts_destroys += st->destroys;
1754 ndst.ndts_hash_grows += st->hash_grows;
1755 ndst.ndts_res_failed += st->res_failed;
1756 ndst.ndts_lookups += st->lookups;
1757 ndst.ndts_hits += st->hits;
1758 ndst.ndts_rcv_probes_mcast += st->rcv_probes_mcast;
1759 ndst.ndts_rcv_probes_ucast += st->rcv_probes_ucast;
1760 ndst.ndts_periodic_gc_runs += st->periodic_gc_runs;
1761 ndst.ndts_forced_gc_runs += st->forced_gc_runs;
1764 NLA_PUT(skb, NDTA_STATS, sizeof(ndst), &ndst);
1767 BUG_ON(tbl->parms.dev);
1768 if (neightbl_fill_parms(skb, &tbl->parms) < 0)
1769 goto nla_put_failure;
1771 read_unlock_bh(&tbl->lock);
1772 return nlmsg_end(skb, nlh);
1775 read_unlock_bh(&tbl->lock);
1776 nlmsg_cancel(skb, nlh);
1780 static int neightbl_fill_param_info(struct sk_buff *skb,
1781 struct neigh_table *tbl,
1782 struct neigh_parms *parms,
1783 u32 pid, u32 seq, int type,
1786 struct ndtmsg *ndtmsg;
1787 struct nlmsghdr *nlh;
1789 nlh = nlmsg_put(skb, pid, seq, type, sizeof(*ndtmsg), flags);
1793 ndtmsg = nlmsg_data(nlh);
1795 read_lock_bh(&tbl->lock);
1796 ndtmsg->ndtm_family = tbl->family;
1797 ndtmsg->ndtm_pad1 = 0;
1798 ndtmsg->ndtm_pad2 = 0;
1800 if (nla_put_string(skb, NDTA_NAME, tbl->id) < 0 ||
1801 neightbl_fill_parms(skb, parms) < 0)
1804 read_unlock_bh(&tbl->lock);
1805 return nlmsg_end(skb, nlh);
1807 read_unlock_bh(&tbl->lock);
1808 nlmsg_cancel(skb, nlh);
1812 static const struct nla_policy nl_neightbl_policy[NDTA_MAX+1] = {
1813 [NDTA_NAME] = { .type = NLA_STRING },
1814 [NDTA_THRESH1] = { .type = NLA_U32 },
1815 [NDTA_THRESH2] = { .type = NLA_U32 },
1816 [NDTA_THRESH3] = { .type = NLA_U32 },
1817 [NDTA_GC_INTERVAL] = { .type = NLA_U64 },
1818 [NDTA_PARMS] = { .type = NLA_NESTED },
1821 static const struct nla_policy nl_ntbl_parm_policy[NDTPA_MAX+1] = {
1822 [NDTPA_IFINDEX] = { .type = NLA_U32 },
1823 [NDTPA_QUEUE_LEN] = { .type = NLA_U32 },
1824 [NDTPA_PROXY_QLEN] = { .type = NLA_U32 },
1825 [NDTPA_APP_PROBES] = { .type = NLA_U32 },
1826 [NDTPA_UCAST_PROBES] = { .type = NLA_U32 },
1827 [NDTPA_MCAST_PROBES] = { .type = NLA_U32 },
1828 [NDTPA_BASE_REACHABLE_TIME] = { .type = NLA_U64 },
1829 [NDTPA_GC_STALETIME] = { .type = NLA_U64 },
1830 [NDTPA_DELAY_PROBE_TIME] = { .type = NLA_U64 },
1831 [NDTPA_RETRANS_TIME] = { .type = NLA_U64 },
1832 [NDTPA_ANYCAST_DELAY] = { .type = NLA_U64 },
1833 [NDTPA_PROXY_DELAY] = { .type = NLA_U64 },
1834 [NDTPA_LOCKTIME] = { .type = NLA_U64 },
1837 static int neightbl_set(struct sk_buff *skb, struct nlmsghdr *nlh, void *arg)
1839 struct net *net = skb->sk->sk_net;
1840 struct neigh_table *tbl;
1841 struct ndtmsg *ndtmsg;
1842 struct nlattr *tb[NDTA_MAX+1];
1845 err = nlmsg_parse(nlh, sizeof(*ndtmsg), tb, NDTA_MAX,
1846 nl_neightbl_policy);
1850 if (tb[NDTA_NAME] == NULL) {
1855 ndtmsg = nlmsg_data(nlh);
1856 read_lock(&neigh_tbl_lock);
1857 for (tbl = neigh_tables; tbl; tbl = tbl->next) {
1858 if (ndtmsg->ndtm_family && tbl->family != ndtmsg->ndtm_family)
1861 if (nla_strcmp(tb[NDTA_NAME], tbl->id) == 0)
1871 * We acquire tbl->lock to be nice to the periodic timers and
1872 * make sure they always see a consistent set of values.
1874 write_lock_bh(&tbl->lock);
1876 if (tb[NDTA_PARMS]) {
1877 struct nlattr *tbp[NDTPA_MAX+1];
1878 struct neigh_parms *p;
1881 err = nla_parse_nested(tbp, NDTPA_MAX, tb[NDTA_PARMS],
1882 nl_ntbl_parm_policy);
1884 goto errout_tbl_lock;
1886 if (tbp[NDTPA_IFINDEX])
1887 ifindex = nla_get_u32(tbp[NDTPA_IFINDEX]);
1889 p = lookup_neigh_params(tbl, net, ifindex);
1892 goto errout_tbl_lock;
1895 for (i = 1; i <= NDTPA_MAX; i++) {
1900 case NDTPA_QUEUE_LEN:
1901 p->queue_len = nla_get_u32(tbp[i]);
1903 case NDTPA_PROXY_QLEN:
1904 p->proxy_qlen = nla_get_u32(tbp[i]);
1906 case NDTPA_APP_PROBES:
1907 p->app_probes = nla_get_u32(tbp[i]);
1909 case NDTPA_UCAST_PROBES:
1910 p->ucast_probes = nla_get_u32(tbp[i]);
1912 case NDTPA_MCAST_PROBES:
1913 p->mcast_probes = nla_get_u32(tbp[i]);
1915 case NDTPA_BASE_REACHABLE_TIME:
1916 p->base_reachable_time = nla_get_msecs(tbp[i]);
1918 case NDTPA_GC_STALETIME:
1919 p->gc_staletime = nla_get_msecs(tbp[i]);
1921 case NDTPA_DELAY_PROBE_TIME:
1922 p->delay_probe_time = nla_get_msecs(tbp[i]);
1924 case NDTPA_RETRANS_TIME:
1925 p->retrans_time = nla_get_msecs(tbp[i]);
1927 case NDTPA_ANYCAST_DELAY:
1928 p->anycast_delay = nla_get_msecs(tbp[i]);
1930 case NDTPA_PROXY_DELAY:
1931 p->proxy_delay = nla_get_msecs(tbp[i]);
1933 case NDTPA_LOCKTIME:
1934 p->locktime = nla_get_msecs(tbp[i]);
1940 if (tb[NDTA_THRESH1])
1941 tbl->gc_thresh1 = nla_get_u32(tb[NDTA_THRESH1]);
1943 if (tb[NDTA_THRESH2])
1944 tbl->gc_thresh2 = nla_get_u32(tb[NDTA_THRESH2]);
1946 if (tb[NDTA_THRESH3])
1947 tbl->gc_thresh3 = nla_get_u32(tb[NDTA_THRESH3]);
1949 if (tb[NDTA_GC_INTERVAL])
1950 tbl->gc_interval = nla_get_msecs(tb[NDTA_GC_INTERVAL]);
1955 write_unlock_bh(&tbl->lock);
1957 read_unlock(&neigh_tbl_lock);
1962 static int neightbl_dump_info(struct sk_buff *skb, struct netlink_callback *cb)
1964 struct net *net = skb->sk->sk_net;
1965 int family, tidx, nidx = 0;
1966 int tbl_skip = cb->args[0];
1967 int neigh_skip = cb->args[1];
1968 struct neigh_table *tbl;
1970 family = ((struct rtgenmsg *) nlmsg_data(cb->nlh))->rtgen_family;
1972 read_lock(&neigh_tbl_lock);
1973 for (tbl = neigh_tables, tidx = 0; tbl; tbl = tbl->next, tidx++) {
1974 struct neigh_parms *p;
1976 if (tidx < tbl_skip || (family && tbl->family != family))
1979 if (neightbl_fill_info(skb, tbl, NETLINK_CB(cb->skb).pid,
1980 cb->nlh->nlmsg_seq, RTM_NEWNEIGHTBL,
1984 for (nidx = 0, p = tbl->parms.next; p; p = p->next) {
1988 if (nidx++ < neigh_skip)
1991 if (neightbl_fill_param_info(skb, tbl, p,
1992 NETLINK_CB(cb->skb).pid,
2002 read_unlock(&neigh_tbl_lock);
2009 static int neigh_fill_info(struct sk_buff *skb, struct neighbour *neigh,
2010 u32 pid, u32 seq, int type, unsigned int flags)
2012 unsigned long now = jiffies;
2013 struct nda_cacheinfo ci;
2014 struct nlmsghdr *nlh;
2017 nlh = nlmsg_put(skb, pid, seq, type, sizeof(*ndm), flags);
2021 ndm = nlmsg_data(nlh);
2022 ndm->ndm_family = neigh->ops->family;
2025 ndm->ndm_flags = neigh->flags;
2026 ndm->ndm_type = neigh->type;
2027 ndm->ndm_ifindex = neigh->dev->ifindex;
2029 NLA_PUT(skb, NDA_DST, neigh->tbl->key_len, neigh->primary_key);
2031 read_lock_bh(&neigh->lock);
2032 ndm->ndm_state = neigh->nud_state;
2033 if ((neigh->nud_state & NUD_VALID) &&
2034 nla_put(skb, NDA_LLADDR, neigh->dev->addr_len, neigh->ha) < 0) {
2035 read_unlock_bh(&neigh->lock);
2036 goto nla_put_failure;
2039 ci.ndm_used = now - neigh->used;
2040 ci.ndm_confirmed = now - neigh->confirmed;
2041 ci.ndm_updated = now - neigh->updated;
2042 ci.ndm_refcnt = atomic_read(&neigh->refcnt) - 1;
2043 read_unlock_bh(&neigh->lock);
2045 NLA_PUT_U32(skb, NDA_PROBES, atomic_read(&neigh->probes));
2046 NLA_PUT(skb, NDA_CACHEINFO, sizeof(ci), &ci);
2048 return nlmsg_end(skb, nlh);
2051 nlmsg_cancel(skb, nlh);
2055 static void neigh_update_notify(struct neighbour *neigh)
2057 call_netevent_notifiers(NETEVENT_NEIGH_UPDATE, neigh);
2058 __neigh_notify(neigh, RTM_NEWNEIGH, 0);
2061 static int neigh_dump_table(struct neigh_table *tbl, struct sk_buff *skb,
2062 struct netlink_callback *cb)
2064 struct net * net = skb->sk->sk_net;
2065 struct neighbour *n;
2066 int rc, h, s_h = cb->args[1];
2067 int idx, s_idx = idx = cb->args[2];
2069 read_lock_bh(&tbl->lock);
2070 for (h = 0; h <= tbl->hash_mask; h++) {
2075 for (n = tbl->hash_buckets[h], idx = 0; n; n = n->next) {
2077 if (n->dev->nd_net != net)
2082 if (neigh_fill_info(skb, n, NETLINK_CB(cb->skb).pid,
2085 NLM_F_MULTI) <= 0) {
2086 read_unlock_bh(&tbl->lock);
2092 read_unlock_bh(&tbl->lock);
2100 static int neigh_dump_info(struct sk_buff *skb, struct netlink_callback *cb)
2102 struct neigh_table *tbl;
2105 read_lock(&neigh_tbl_lock);
2106 family = ((struct rtgenmsg *) nlmsg_data(cb->nlh))->rtgen_family;
2109 for (tbl = neigh_tables, t = 0; tbl; tbl = tbl->next, t++) {
2110 if (t < s_t || (family && tbl->family != family))
2113 memset(&cb->args[1], 0, sizeof(cb->args) -
2114 sizeof(cb->args[0]));
2115 if (neigh_dump_table(tbl, skb, cb) < 0)
2118 read_unlock(&neigh_tbl_lock);
2124 void neigh_for_each(struct neigh_table *tbl, void (*cb)(struct neighbour *, void *), void *cookie)
2128 read_lock_bh(&tbl->lock);
2129 for (chain = 0; chain <= tbl->hash_mask; chain++) {
2130 struct neighbour *n;
2132 for (n = tbl->hash_buckets[chain]; n; n = n->next)
2135 read_unlock_bh(&tbl->lock);
2137 EXPORT_SYMBOL(neigh_for_each);
2139 /* The tbl->lock must be held as a writer and BH disabled. */
2140 void __neigh_for_each_release(struct neigh_table *tbl,
2141 int (*cb)(struct neighbour *))
2145 for (chain = 0; chain <= tbl->hash_mask; chain++) {
2146 struct neighbour *n, **np;
2148 np = &tbl->hash_buckets[chain];
2149 while ((n = *np) != NULL) {
2152 write_lock(&n->lock);
2159 write_unlock(&n->lock);
2161 neigh_cleanup_and_release(n);
2165 EXPORT_SYMBOL(__neigh_for_each_release);
2167 #ifdef CONFIG_PROC_FS
2169 static struct neighbour *neigh_get_first(struct seq_file *seq)
2171 struct neigh_seq_state *state = seq->private;
2172 struct net *net = state->p.net;
2173 struct neigh_table *tbl = state->tbl;
2174 struct neighbour *n = NULL;
2175 int bucket = state->bucket;
2177 state->flags &= ~NEIGH_SEQ_IS_PNEIGH;
2178 for (bucket = 0; bucket <= tbl->hash_mask; bucket++) {
2179 n = tbl->hash_buckets[bucket];
2182 if (n->dev->nd_net != net)
2184 if (state->neigh_sub_iter) {
2188 v = state->neigh_sub_iter(state, n, &fakep);
2192 if (!(state->flags & NEIGH_SEQ_SKIP_NOARP))
2194 if (n->nud_state & ~NUD_NOARP)
2203 state->bucket = bucket;
2208 static struct neighbour *neigh_get_next(struct seq_file *seq,
2209 struct neighbour *n,
2212 struct neigh_seq_state *state = seq->private;
2213 struct net *net = state->p.net;
2214 struct neigh_table *tbl = state->tbl;
2216 if (state->neigh_sub_iter) {
2217 void *v = state->neigh_sub_iter(state, n, pos);
2225 if (n->dev->nd_net != net)
2227 if (state->neigh_sub_iter) {
2228 void *v = state->neigh_sub_iter(state, n, pos);
2233 if (!(state->flags & NEIGH_SEQ_SKIP_NOARP))
2236 if (n->nud_state & ~NUD_NOARP)
2245 if (++state->bucket > tbl->hash_mask)
2248 n = tbl->hash_buckets[state->bucket];
2256 static struct neighbour *neigh_get_idx(struct seq_file *seq, loff_t *pos)
2258 struct neighbour *n = neigh_get_first(seq);
2262 n = neigh_get_next(seq, n, pos);
2267 return *pos ? NULL : n;
2270 static struct pneigh_entry *pneigh_get_first(struct seq_file *seq)
2272 struct neigh_seq_state *state = seq->private;
2273 struct net * net = state->p.net;
2274 struct neigh_table *tbl = state->tbl;
2275 struct pneigh_entry *pn = NULL;
2276 int bucket = state->bucket;
2278 state->flags |= NEIGH_SEQ_IS_PNEIGH;
2279 for (bucket = 0; bucket <= PNEIGH_HASHMASK; bucket++) {
2280 pn = tbl->phash_buckets[bucket];
2281 while (pn && (pn->net != net))
2286 state->bucket = bucket;
2291 static struct pneigh_entry *pneigh_get_next(struct seq_file *seq,
2292 struct pneigh_entry *pn,
2295 struct neigh_seq_state *state = seq->private;
2296 struct net * net = state->p.net;
2297 struct neigh_table *tbl = state->tbl;
2301 if (++state->bucket > PNEIGH_HASHMASK)
2303 pn = tbl->phash_buckets[state->bucket];
2304 while (pn && (pn->net != net))
2316 static struct pneigh_entry *pneigh_get_idx(struct seq_file *seq, loff_t *pos)
2318 struct pneigh_entry *pn = pneigh_get_first(seq);
2322 pn = pneigh_get_next(seq, pn, pos);
2327 return *pos ? NULL : pn;
2330 static void *neigh_get_idx_any(struct seq_file *seq, loff_t *pos)
2332 struct neigh_seq_state *state = seq->private;
2335 rc = neigh_get_idx(seq, pos);
2336 if (!rc && !(state->flags & NEIGH_SEQ_NEIGH_ONLY))
2337 rc = pneigh_get_idx(seq, pos);
2342 void *neigh_seq_start(struct seq_file *seq, loff_t *pos, struct neigh_table *tbl, unsigned int neigh_seq_flags)
2343 __acquires(tbl->lock)
2345 struct neigh_seq_state *state = seq->private;
2346 loff_t pos_minus_one;
2350 state->flags = (neigh_seq_flags & ~NEIGH_SEQ_IS_PNEIGH);
2352 read_lock_bh(&tbl->lock);
2354 pos_minus_one = *pos - 1;
2355 return *pos ? neigh_get_idx_any(seq, &pos_minus_one) : SEQ_START_TOKEN;
2357 EXPORT_SYMBOL(neigh_seq_start);
2359 void *neigh_seq_next(struct seq_file *seq, void *v, loff_t *pos)
2361 struct neigh_seq_state *state;
2364 if (v == SEQ_START_TOKEN) {
2365 rc = neigh_get_idx(seq, pos);
2369 state = seq->private;
2370 if (!(state->flags & NEIGH_SEQ_IS_PNEIGH)) {
2371 rc = neigh_get_next(seq, v, NULL);
2374 if (!(state->flags & NEIGH_SEQ_NEIGH_ONLY))
2375 rc = pneigh_get_first(seq);
2377 BUG_ON(state->flags & NEIGH_SEQ_NEIGH_ONLY);
2378 rc = pneigh_get_next(seq, v, NULL);
2384 EXPORT_SYMBOL(neigh_seq_next);
2386 void neigh_seq_stop(struct seq_file *seq, void *v)
2387 __releases(tbl->lock)
2389 struct neigh_seq_state *state = seq->private;
2390 struct neigh_table *tbl = state->tbl;
2392 read_unlock_bh(&tbl->lock);
2394 EXPORT_SYMBOL(neigh_seq_stop);
2396 /* statistics via seq_file */
2398 static void *neigh_stat_seq_start(struct seq_file *seq, loff_t *pos)
2400 struct proc_dir_entry *pde = seq->private;
2401 struct neigh_table *tbl = pde->data;
2405 return SEQ_START_TOKEN;
2407 for (cpu = *pos-1; cpu < NR_CPUS; ++cpu) {
2408 if (!cpu_possible(cpu))
2411 return per_cpu_ptr(tbl->stats, cpu);
2416 static void *neigh_stat_seq_next(struct seq_file *seq, void *v, loff_t *pos)
2418 struct proc_dir_entry *pde = seq->private;
2419 struct neigh_table *tbl = pde->data;
2422 for (cpu = *pos; cpu < NR_CPUS; ++cpu) {
2423 if (!cpu_possible(cpu))
2426 return per_cpu_ptr(tbl->stats, cpu);
2431 static void neigh_stat_seq_stop(struct seq_file *seq, void *v)
2436 static int neigh_stat_seq_show(struct seq_file *seq, void *v)
2438 struct proc_dir_entry *pde = seq->private;
2439 struct neigh_table *tbl = pde->data;
2440 struct neigh_statistics *st = v;
2442 if (v == SEQ_START_TOKEN) {
2443 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");
2447 seq_printf(seq, "%08x %08lx %08lx %08lx %08lx %08lx %08lx "
2448 "%08lx %08lx %08lx %08lx\n",
2449 atomic_read(&tbl->entries),
2460 st->rcv_probes_mcast,
2461 st->rcv_probes_ucast,
2463 st->periodic_gc_runs,
2470 static const struct seq_operations neigh_stat_seq_ops = {
2471 .start = neigh_stat_seq_start,
2472 .next = neigh_stat_seq_next,
2473 .stop = neigh_stat_seq_stop,
2474 .show = neigh_stat_seq_show,
2477 static int neigh_stat_seq_open(struct inode *inode, struct file *file)
2479 int ret = seq_open(file, &neigh_stat_seq_ops);
2482 struct seq_file *sf = file->private_data;
2483 sf->private = PDE(inode);
2488 static const struct file_operations neigh_stat_seq_fops = {
2489 .owner = THIS_MODULE,
2490 .open = neigh_stat_seq_open,
2492 .llseek = seq_lseek,
2493 .release = seq_release,
2496 #endif /* CONFIG_PROC_FS */
2498 static inline size_t neigh_nlmsg_size(void)
2500 return NLMSG_ALIGN(sizeof(struct ndmsg))
2501 + nla_total_size(MAX_ADDR_LEN) /* NDA_DST */
2502 + nla_total_size(MAX_ADDR_LEN) /* NDA_LLADDR */
2503 + nla_total_size(sizeof(struct nda_cacheinfo))
2504 + nla_total_size(4); /* NDA_PROBES */
2507 static void __neigh_notify(struct neighbour *n, int type, int flags)
2509 struct net *net = n->dev->nd_net;
2510 struct sk_buff *skb;
2513 skb = nlmsg_new(neigh_nlmsg_size(), GFP_ATOMIC);
2517 err = neigh_fill_info(skb, n, 0, 0, type, flags);
2519 /* -EMSGSIZE implies BUG in neigh_nlmsg_size() */
2520 WARN_ON(err == -EMSGSIZE);
2524 err = rtnl_notify(skb, net, 0, RTNLGRP_NEIGH, NULL, GFP_ATOMIC);
2527 rtnl_set_sk_err(net, RTNLGRP_NEIGH, err);
2531 void neigh_app_ns(struct neighbour *n)
2533 __neigh_notify(n, RTM_GETNEIGH, NLM_F_REQUEST);
2535 #endif /* CONFIG_ARPD */
2537 #ifdef CONFIG_SYSCTL
2539 static struct neigh_sysctl_table {
2540 struct ctl_table_header *sysctl_header;
2541 struct ctl_table neigh_vars[__NET_NEIGH_MAX];
2543 } neigh_sysctl_template __read_mostly = {
2546 .ctl_name = NET_NEIGH_MCAST_SOLICIT,
2547 .procname = "mcast_solicit",
2548 .maxlen = sizeof(int),
2550 .proc_handler = &proc_dointvec,
2553 .ctl_name = NET_NEIGH_UCAST_SOLICIT,
2554 .procname = "ucast_solicit",
2555 .maxlen = sizeof(int),
2557 .proc_handler = &proc_dointvec,
2560 .ctl_name = NET_NEIGH_APP_SOLICIT,
2561 .procname = "app_solicit",
2562 .maxlen = sizeof(int),
2564 .proc_handler = &proc_dointvec,
2567 .procname = "retrans_time",
2568 .maxlen = sizeof(int),
2570 .proc_handler = &proc_dointvec_userhz_jiffies,
2573 .ctl_name = NET_NEIGH_REACHABLE_TIME,
2574 .procname = "base_reachable_time",
2575 .maxlen = sizeof(int),
2577 .proc_handler = &proc_dointvec_jiffies,
2578 .strategy = &sysctl_jiffies,
2581 .ctl_name = NET_NEIGH_DELAY_PROBE_TIME,
2582 .procname = "delay_first_probe_time",
2583 .maxlen = sizeof(int),
2585 .proc_handler = &proc_dointvec_jiffies,
2586 .strategy = &sysctl_jiffies,
2589 .ctl_name = NET_NEIGH_GC_STALE_TIME,
2590 .procname = "gc_stale_time",
2591 .maxlen = sizeof(int),
2593 .proc_handler = &proc_dointvec_jiffies,
2594 .strategy = &sysctl_jiffies,
2597 .ctl_name = NET_NEIGH_UNRES_QLEN,
2598 .procname = "unres_qlen",
2599 .maxlen = sizeof(int),
2601 .proc_handler = &proc_dointvec,
2604 .ctl_name = NET_NEIGH_PROXY_QLEN,
2605 .procname = "proxy_qlen",
2606 .maxlen = sizeof(int),
2608 .proc_handler = &proc_dointvec,
2611 .procname = "anycast_delay",
2612 .maxlen = sizeof(int),
2614 .proc_handler = &proc_dointvec_userhz_jiffies,
2617 .procname = "proxy_delay",
2618 .maxlen = sizeof(int),
2620 .proc_handler = &proc_dointvec_userhz_jiffies,
2623 .procname = "locktime",
2624 .maxlen = sizeof(int),
2626 .proc_handler = &proc_dointvec_userhz_jiffies,
2629 .ctl_name = NET_NEIGH_RETRANS_TIME_MS,
2630 .procname = "retrans_time_ms",
2631 .maxlen = sizeof(int),
2633 .proc_handler = &proc_dointvec_ms_jiffies,
2634 .strategy = &sysctl_ms_jiffies,
2637 .ctl_name = NET_NEIGH_REACHABLE_TIME_MS,
2638 .procname = "base_reachable_time_ms",
2639 .maxlen = sizeof(int),
2641 .proc_handler = &proc_dointvec_ms_jiffies,
2642 .strategy = &sysctl_ms_jiffies,
2645 .ctl_name = NET_NEIGH_GC_INTERVAL,
2646 .procname = "gc_interval",
2647 .maxlen = sizeof(int),
2649 .proc_handler = &proc_dointvec_jiffies,
2650 .strategy = &sysctl_jiffies,
2653 .ctl_name = NET_NEIGH_GC_THRESH1,
2654 .procname = "gc_thresh1",
2655 .maxlen = sizeof(int),
2657 .proc_handler = &proc_dointvec,
2660 .ctl_name = NET_NEIGH_GC_THRESH2,
2661 .procname = "gc_thresh2",
2662 .maxlen = sizeof(int),
2664 .proc_handler = &proc_dointvec,
2667 .ctl_name = NET_NEIGH_GC_THRESH3,
2668 .procname = "gc_thresh3",
2669 .maxlen = sizeof(int),
2671 .proc_handler = &proc_dointvec,
2677 int neigh_sysctl_register(struct net_device *dev, struct neigh_parms *p,
2678 int p_id, int pdev_id, char *p_name,
2679 proc_handler *handler, ctl_handler *strategy)
2681 struct neigh_sysctl_table *t;
2682 const char *dev_name_source = NULL;
2684 #define NEIGH_CTL_PATH_ROOT 0
2685 #define NEIGH_CTL_PATH_PROTO 1
2686 #define NEIGH_CTL_PATH_NEIGH 2
2687 #define NEIGH_CTL_PATH_DEV 3
2689 struct ctl_path neigh_path[] = {
2690 { .procname = "net", .ctl_name = CTL_NET, },
2691 { .procname = "proto", .ctl_name = 0, },
2692 { .procname = "neigh", .ctl_name = 0, },
2693 { .procname = "default", .ctl_name = NET_PROTO_CONF_DEFAULT, },
2697 t = kmemdup(&neigh_sysctl_template, sizeof(*t), GFP_KERNEL);
2701 t->neigh_vars[0].data = &p->mcast_probes;
2702 t->neigh_vars[1].data = &p->ucast_probes;
2703 t->neigh_vars[2].data = &p->app_probes;
2704 t->neigh_vars[3].data = &p->retrans_time;
2705 t->neigh_vars[4].data = &p->base_reachable_time;
2706 t->neigh_vars[5].data = &p->delay_probe_time;
2707 t->neigh_vars[6].data = &p->gc_staletime;
2708 t->neigh_vars[7].data = &p->queue_len;
2709 t->neigh_vars[8].data = &p->proxy_qlen;
2710 t->neigh_vars[9].data = &p->anycast_delay;
2711 t->neigh_vars[10].data = &p->proxy_delay;
2712 t->neigh_vars[11].data = &p->locktime;
2713 t->neigh_vars[12].data = &p->retrans_time;
2714 t->neigh_vars[13].data = &p->base_reachable_time;
2717 dev_name_source = dev->name;
2718 neigh_path[NEIGH_CTL_PATH_DEV].ctl_name = dev->ifindex;
2719 /* Terminate the table early */
2720 memset(&t->neigh_vars[14], 0, sizeof(t->neigh_vars[14]));
2722 dev_name_source = neigh_path[NEIGH_CTL_PATH_DEV].procname;
2723 t->neigh_vars[14].data = (int *)(p + 1);
2724 t->neigh_vars[15].data = (int *)(p + 1) + 1;
2725 t->neigh_vars[16].data = (int *)(p + 1) + 2;
2726 t->neigh_vars[17].data = (int *)(p + 1) + 3;
2730 if (handler || strategy) {
2732 t->neigh_vars[3].proc_handler = handler;
2733 t->neigh_vars[3].strategy = strategy;
2734 t->neigh_vars[3].extra1 = dev;
2736 t->neigh_vars[3].ctl_name = CTL_UNNUMBERED;
2738 t->neigh_vars[4].proc_handler = handler;
2739 t->neigh_vars[4].strategy = strategy;
2740 t->neigh_vars[4].extra1 = dev;
2742 t->neigh_vars[4].ctl_name = CTL_UNNUMBERED;
2743 /* RetransTime (in milliseconds)*/
2744 t->neigh_vars[12].proc_handler = handler;
2745 t->neigh_vars[12].strategy = strategy;
2746 t->neigh_vars[12].extra1 = dev;
2748 t->neigh_vars[12].ctl_name = CTL_UNNUMBERED;
2749 /* ReachableTime (in milliseconds) */
2750 t->neigh_vars[13].proc_handler = handler;
2751 t->neigh_vars[13].strategy = strategy;
2752 t->neigh_vars[13].extra1 = dev;
2754 t->neigh_vars[13].ctl_name = CTL_UNNUMBERED;
2757 t->dev_name = kstrdup(dev_name_source, GFP_KERNEL);
2761 neigh_path[NEIGH_CTL_PATH_DEV].procname = t->dev_name;
2762 neigh_path[NEIGH_CTL_PATH_NEIGH].ctl_name = pdev_id;
2763 neigh_path[NEIGH_CTL_PATH_PROTO].procname = p_name;
2764 neigh_path[NEIGH_CTL_PATH_PROTO].ctl_name = p_id;
2766 t->sysctl_header = register_sysctl_paths(neigh_path, t->neigh_vars);
2767 if (!t->sysctl_header)
2770 p->sysctl_table = t;
2781 void neigh_sysctl_unregister(struct neigh_parms *p)
2783 if (p->sysctl_table) {
2784 struct neigh_sysctl_table *t = p->sysctl_table;
2785 p->sysctl_table = NULL;
2786 unregister_sysctl_table(t->sysctl_header);
2792 #endif /* CONFIG_SYSCTL */
2794 static int __init neigh_init(void)
2796 rtnl_register(PF_UNSPEC, RTM_NEWNEIGH, neigh_add, NULL);
2797 rtnl_register(PF_UNSPEC, RTM_DELNEIGH, neigh_delete, NULL);
2798 rtnl_register(PF_UNSPEC, RTM_GETNEIGH, NULL, neigh_dump_info);
2800 rtnl_register(PF_UNSPEC, RTM_GETNEIGHTBL, NULL, neightbl_dump_info);
2801 rtnl_register(PF_UNSPEC, RTM_SETNEIGHTBL, neightbl_set, NULL);
2806 subsys_initcall(neigh_init);
2808 EXPORT_SYMBOL(__neigh_event_send);
2809 EXPORT_SYMBOL(neigh_changeaddr);
2810 EXPORT_SYMBOL(neigh_compat_output);
2811 EXPORT_SYMBOL(neigh_connected_output);
2812 EXPORT_SYMBOL(neigh_create);
2813 EXPORT_SYMBOL(neigh_destroy);
2814 EXPORT_SYMBOL(neigh_event_ns);
2815 EXPORT_SYMBOL(neigh_ifdown);
2816 EXPORT_SYMBOL(neigh_lookup);
2817 EXPORT_SYMBOL(neigh_lookup_nodev);
2818 EXPORT_SYMBOL(neigh_parms_alloc);
2819 EXPORT_SYMBOL(neigh_parms_release);
2820 EXPORT_SYMBOL(neigh_rand_reach_time);
2821 EXPORT_SYMBOL(neigh_resolve_output);
2822 EXPORT_SYMBOL(neigh_table_clear);
2823 EXPORT_SYMBOL(neigh_table_init);
2824 EXPORT_SYMBOL(neigh_table_init_no_netlink);
2825 EXPORT_SYMBOL(neigh_update);
2826 EXPORT_SYMBOL(pneigh_enqueue);
2827 EXPORT_SYMBOL(pneigh_lookup);
2828 EXPORT_SYMBOL_GPL(__pneigh_lookup);
2831 EXPORT_SYMBOL(neigh_app_ns);
2833 #ifdef CONFIG_SYSCTL
2834 EXPORT_SYMBOL(neigh_sysctl_register);
2835 EXPORT_SYMBOL(neigh_sysctl_unregister);