1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * Generic address resolution entity
6 * Pedro Roque <roque@di.fc.ul.pt>
7 * Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
10 * Vitaly E. Lavrov releasing NULL neighbor in neigh_add.
11 * Harald Welte Add neighbour cache statistics like rtstat
14 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
16 #include <linux/slab.h>
17 #include <linux/kmemleak.h>
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>
33 #include <net/netevent.h>
34 #include <net/netlink.h>
35 #include <linux/rtnetlink.h>
36 #include <linux/random.h>
37 #include <linux/string.h>
38 #include <linux/log2.h>
39 #include <linux/inetdevice.h>
40 #include <net/addrconf.h>
42 #include <trace/events/neigh.h>
45 #define neigh_dbg(level, fmt, ...) \
47 if (level <= NEIGH_DEBUG) \
48 pr_debug(fmt, ##__VA_ARGS__); \
51 #define PNEIGH_HASHMASK 0xF
53 static void neigh_timer_handler(struct timer_list *t);
54 static void __neigh_notify(struct neighbour *n, int type, int flags,
56 static void neigh_update_notify(struct neighbour *neigh, u32 nlmsg_pid);
57 static int pneigh_ifdown_and_unlock(struct neigh_table *tbl,
58 struct net_device *dev);
61 static const struct seq_operations neigh_stat_seq_ops;
65 Neighbour hash table buckets are protected with rwlock tbl->lock.
67 - All the scans/updates to hash buckets MUST be made under this lock.
68 - NOTHING clever should be made under this lock: no callbacks
69 to protocol backends, no attempts to send something to network.
70 It will result in deadlocks, if backend/driver wants to use neighbour
72 - If the entry requires some non-trivial actions, increase
73 its reference count and release table lock.
75 Neighbour entries are protected:
76 - with reference count.
77 - with rwlock neigh->lock
79 Reference count prevents destruction.
81 neigh->lock mainly serializes ll address data and its validity state.
82 However, the same lock is used to protect another entry fields:
86 Again, nothing clever shall be made under neigh->lock,
87 the most complicated procedure, which we allow is dev->hard_header.
88 It is supposed, that dev->hard_header is simplistic and does
89 not make callbacks to neighbour tables.
92 static int neigh_blackhole(struct neighbour *neigh, struct sk_buff *skb)
98 static void neigh_cleanup_and_release(struct neighbour *neigh)
100 trace_neigh_cleanup_and_release(neigh, 0);
101 __neigh_notify(neigh, RTM_DELNEIGH, 0, 0);
102 call_netevent_notifiers(NETEVENT_NEIGH_UPDATE, neigh);
103 neigh_release(neigh);
107 * It is random distribution in the interval (1/2)*base...(3/2)*base.
108 * It corresponds to default IPv6 settings and is not overridable,
109 * because it is really reasonable choice.
112 unsigned long neigh_rand_reach_time(unsigned long base)
114 return base ? (prandom_u32() % base) + (base >> 1) : 0;
116 EXPORT_SYMBOL(neigh_rand_reach_time);
118 static void neigh_mark_dead(struct neighbour *n)
121 if (!list_empty(&n->gc_list)) {
122 list_del_init(&n->gc_list);
123 atomic_dec(&n->tbl->gc_entries);
127 static void neigh_update_gc_list(struct neighbour *n)
129 bool on_gc_list, exempt_from_gc;
131 write_lock_bh(&n->tbl->lock);
132 write_lock(&n->lock);
137 /* remove from the gc list if new state is permanent or if neighbor
138 * is externally learned; otherwise entry should be on the gc list
140 exempt_from_gc = n->nud_state & NUD_PERMANENT ||
141 n->flags & NTF_EXT_LEARNED;
142 on_gc_list = !list_empty(&n->gc_list);
144 if (exempt_from_gc && on_gc_list) {
145 list_del_init(&n->gc_list);
146 atomic_dec(&n->tbl->gc_entries);
147 } else if (!exempt_from_gc && !on_gc_list) {
148 /* add entries to the tail; cleaning removes from the front */
149 list_add_tail(&n->gc_list, &n->tbl->gc_list);
150 atomic_inc(&n->tbl->gc_entries);
154 write_unlock(&n->lock);
155 write_unlock_bh(&n->tbl->lock);
158 static bool neigh_update_ext_learned(struct neighbour *neigh, u32 flags,
164 if (!(flags & NEIGH_UPDATE_F_ADMIN))
167 ndm_flags = (flags & NEIGH_UPDATE_F_EXT_LEARNED) ? NTF_EXT_LEARNED : 0;
168 if ((neigh->flags ^ ndm_flags) & NTF_EXT_LEARNED) {
169 if (ndm_flags & NTF_EXT_LEARNED)
170 neigh->flags |= NTF_EXT_LEARNED;
172 neigh->flags &= ~NTF_EXT_LEARNED;
180 static bool neigh_del(struct neighbour *n, struct neighbour __rcu **np,
181 struct neigh_table *tbl)
185 write_lock(&n->lock);
186 if (refcount_read(&n->refcnt) == 1) {
187 struct neighbour *neigh;
189 neigh = rcu_dereference_protected(n->next,
190 lockdep_is_held(&tbl->lock));
191 rcu_assign_pointer(*np, neigh);
195 write_unlock(&n->lock);
197 neigh_cleanup_and_release(n);
201 bool neigh_remove_one(struct neighbour *ndel, struct neigh_table *tbl)
203 struct neigh_hash_table *nht;
204 void *pkey = ndel->primary_key;
207 struct neighbour __rcu **np;
209 nht = rcu_dereference_protected(tbl->nht,
210 lockdep_is_held(&tbl->lock));
211 hash_val = tbl->hash(pkey, ndel->dev, nht->hash_rnd);
212 hash_val = hash_val >> (32 - nht->hash_shift);
214 np = &nht->hash_buckets[hash_val];
215 while ((n = rcu_dereference_protected(*np,
216 lockdep_is_held(&tbl->lock)))) {
218 return neigh_del(n, np, tbl);
224 static int neigh_forced_gc(struct neigh_table *tbl)
226 int max_clean = atomic_read(&tbl->gc_entries) - tbl->gc_thresh2;
227 unsigned long tref = jiffies - 5 * HZ;
228 struct neighbour *n, *tmp;
231 NEIGH_CACHE_STAT_INC(tbl, forced_gc_runs);
233 write_lock_bh(&tbl->lock);
235 list_for_each_entry_safe(n, tmp, &tbl->gc_list, gc_list) {
236 if (refcount_read(&n->refcnt) == 1) {
239 write_lock(&n->lock);
240 if ((n->nud_state == NUD_FAILED) ||
241 (n->nud_state == NUD_NOARP) ||
242 (tbl->is_multicast &&
243 tbl->is_multicast(n->primary_key)) ||
244 time_after(tref, n->updated))
246 write_unlock(&n->lock);
248 if (remove && neigh_remove_one(n, tbl))
250 if (shrunk >= max_clean)
255 tbl->last_flush = jiffies;
257 write_unlock_bh(&tbl->lock);
262 static void neigh_add_timer(struct neighbour *n, unsigned long when)
265 if (unlikely(mod_timer(&n->timer, when))) {
266 printk("NEIGH: BUG, double timer add, state is %x\n",
272 static int neigh_del_timer(struct neighbour *n)
274 if ((n->nud_state & NUD_IN_TIMER) &&
275 del_timer(&n->timer)) {
282 static void pneigh_queue_purge(struct sk_buff_head *list)
286 while ((skb = skb_dequeue(list)) != NULL) {
292 static void neigh_flush_dev(struct neigh_table *tbl, struct net_device *dev,
296 struct neigh_hash_table *nht;
298 nht = rcu_dereference_protected(tbl->nht,
299 lockdep_is_held(&tbl->lock));
301 for (i = 0; i < (1 << nht->hash_shift); i++) {
303 struct neighbour __rcu **np = &nht->hash_buckets[i];
305 while ((n = rcu_dereference_protected(*np,
306 lockdep_is_held(&tbl->lock))) != NULL) {
307 if (dev && n->dev != dev) {
311 if (skip_perm && n->nud_state & NUD_PERMANENT) {
315 rcu_assign_pointer(*np,
316 rcu_dereference_protected(n->next,
317 lockdep_is_held(&tbl->lock)));
318 write_lock(&n->lock);
321 if (refcount_read(&n->refcnt) != 1) {
322 /* The most unpleasant situation.
323 We must destroy neighbour entry,
324 but someone still uses it.
326 The destroy will be delayed until
327 the last user releases us, but
328 we must kill timers etc. and move
331 __skb_queue_purge(&n->arp_queue);
332 n->arp_queue_len_bytes = 0;
333 n->output = neigh_blackhole;
334 if (n->nud_state & NUD_VALID)
335 n->nud_state = NUD_NOARP;
337 n->nud_state = NUD_NONE;
338 neigh_dbg(2, "neigh %p is stray\n", n);
340 write_unlock(&n->lock);
341 neigh_cleanup_and_release(n);
346 void neigh_changeaddr(struct neigh_table *tbl, struct net_device *dev)
348 write_lock_bh(&tbl->lock);
349 neigh_flush_dev(tbl, dev, false);
350 write_unlock_bh(&tbl->lock);
352 EXPORT_SYMBOL(neigh_changeaddr);
354 static int __neigh_ifdown(struct neigh_table *tbl, struct net_device *dev,
357 write_lock_bh(&tbl->lock);
358 neigh_flush_dev(tbl, dev, skip_perm);
359 pneigh_ifdown_and_unlock(tbl, dev);
361 del_timer_sync(&tbl->proxy_timer);
362 pneigh_queue_purge(&tbl->proxy_queue);
366 int neigh_carrier_down(struct neigh_table *tbl, struct net_device *dev)
368 __neigh_ifdown(tbl, dev, true);
371 EXPORT_SYMBOL(neigh_carrier_down);
373 int neigh_ifdown(struct neigh_table *tbl, struct net_device *dev)
375 __neigh_ifdown(tbl, dev, false);
378 EXPORT_SYMBOL(neigh_ifdown);
380 static struct neighbour *neigh_alloc(struct neigh_table *tbl,
381 struct net_device *dev,
382 u8 flags, bool exempt_from_gc)
384 struct neighbour *n = NULL;
385 unsigned long now = jiffies;
391 entries = atomic_inc_return(&tbl->gc_entries) - 1;
392 if (entries >= tbl->gc_thresh3 ||
393 (entries >= tbl->gc_thresh2 &&
394 time_after(now, tbl->last_flush + 5 * HZ))) {
395 if (!neigh_forced_gc(tbl) &&
396 entries >= tbl->gc_thresh3) {
397 net_info_ratelimited("%s: neighbor table overflow!\n",
399 NEIGH_CACHE_STAT_INC(tbl, table_fulls);
405 n = kzalloc(tbl->entry_size + dev->neigh_priv_len, GFP_ATOMIC);
409 __skb_queue_head_init(&n->arp_queue);
410 rwlock_init(&n->lock);
411 seqlock_init(&n->ha_lock);
412 n->updated = n->used = now;
413 n->nud_state = NUD_NONE;
414 n->output = neigh_blackhole;
416 seqlock_init(&n->hh.hh_lock);
417 n->parms = neigh_parms_clone(&tbl->parms);
418 timer_setup(&n->timer, neigh_timer_handler, 0);
420 NEIGH_CACHE_STAT_INC(tbl, allocs);
422 refcount_set(&n->refcnt, 1);
424 INIT_LIST_HEAD(&n->gc_list);
426 atomic_inc(&tbl->entries);
432 atomic_dec(&tbl->gc_entries);
436 static void neigh_get_hash_rnd(u32 *x)
438 *x = get_random_u32() | 1;
441 static struct neigh_hash_table *neigh_hash_alloc(unsigned int shift)
443 size_t size = (1 << shift) * sizeof(struct neighbour *);
444 struct neigh_hash_table *ret;
445 struct neighbour __rcu **buckets;
448 ret = kmalloc(sizeof(*ret), GFP_ATOMIC);
451 if (size <= PAGE_SIZE) {
452 buckets = kzalloc(size, GFP_ATOMIC);
454 buckets = (struct neighbour __rcu **)
455 __get_free_pages(GFP_ATOMIC | __GFP_ZERO,
457 kmemleak_alloc(buckets, size, 1, GFP_ATOMIC);
463 ret->hash_buckets = buckets;
464 ret->hash_shift = shift;
465 for (i = 0; i < NEIGH_NUM_HASH_RND; i++)
466 neigh_get_hash_rnd(&ret->hash_rnd[i]);
470 static void neigh_hash_free_rcu(struct rcu_head *head)
472 struct neigh_hash_table *nht = container_of(head,
473 struct neigh_hash_table,
475 size_t size = (1 << nht->hash_shift) * sizeof(struct neighbour *);
476 struct neighbour __rcu **buckets = nht->hash_buckets;
478 if (size <= PAGE_SIZE) {
481 kmemleak_free(buckets);
482 free_pages((unsigned long)buckets, get_order(size));
487 static struct neigh_hash_table *neigh_hash_grow(struct neigh_table *tbl,
488 unsigned long new_shift)
490 unsigned int i, hash;
491 struct neigh_hash_table *new_nht, *old_nht;
493 NEIGH_CACHE_STAT_INC(tbl, hash_grows);
495 old_nht = rcu_dereference_protected(tbl->nht,
496 lockdep_is_held(&tbl->lock));
497 new_nht = neigh_hash_alloc(new_shift);
501 for (i = 0; i < (1 << old_nht->hash_shift); i++) {
502 struct neighbour *n, *next;
504 for (n = rcu_dereference_protected(old_nht->hash_buckets[i],
505 lockdep_is_held(&tbl->lock));
508 hash = tbl->hash(n->primary_key, n->dev,
511 hash >>= (32 - new_nht->hash_shift);
512 next = rcu_dereference_protected(n->next,
513 lockdep_is_held(&tbl->lock));
515 rcu_assign_pointer(n->next,
516 rcu_dereference_protected(
517 new_nht->hash_buckets[hash],
518 lockdep_is_held(&tbl->lock)));
519 rcu_assign_pointer(new_nht->hash_buckets[hash], n);
523 rcu_assign_pointer(tbl->nht, new_nht);
524 call_rcu(&old_nht->rcu, neigh_hash_free_rcu);
528 struct neighbour *neigh_lookup(struct neigh_table *tbl, const void *pkey,
529 struct net_device *dev)
533 NEIGH_CACHE_STAT_INC(tbl, lookups);
536 n = __neigh_lookup_noref(tbl, pkey, dev);
538 if (!refcount_inc_not_zero(&n->refcnt))
540 NEIGH_CACHE_STAT_INC(tbl, hits);
543 rcu_read_unlock_bh();
546 EXPORT_SYMBOL(neigh_lookup);
548 struct neighbour *neigh_lookup_nodev(struct neigh_table *tbl, struct net *net,
552 unsigned int key_len = tbl->key_len;
554 struct neigh_hash_table *nht;
556 NEIGH_CACHE_STAT_INC(tbl, lookups);
559 nht = rcu_dereference_bh(tbl->nht);
560 hash_val = tbl->hash(pkey, NULL, nht->hash_rnd) >> (32 - nht->hash_shift);
562 for (n = rcu_dereference_bh(nht->hash_buckets[hash_val]);
564 n = rcu_dereference_bh(n->next)) {
565 if (!memcmp(n->primary_key, pkey, key_len) &&
566 net_eq(dev_net(n->dev), net)) {
567 if (!refcount_inc_not_zero(&n->refcnt))
569 NEIGH_CACHE_STAT_INC(tbl, hits);
574 rcu_read_unlock_bh();
577 EXPORT_SYMBOL(neigh_lookup_nodev);
579 static struct neighbour *
580 ___neigh_create(struct neigh_table *tbl, const void *pkey,
581 struct net_device *dev, u8 flags,
582 bool exempt_from_gc, bool want_ref)
584 u32 hash_val, key_len = tbl->key_len;
585 struct neighbour *n1, *rc, *n;
586 struct neigh_hash_table *nht;
589 n = neigh_alloc(tbl, dev, flags, exempt_from_gc);
590 trace_neigh_create(tbl, dev, pkey, n, exempt_from_gc);
592 rc = ERR_PTR(-ENOBUFS);
596 memcpy(n->primary_key, pkey, key_len);
600 /* Protocol specific setup. */
601 if (tbl->constructor && (error = tbl->constructor(n)) < 0) {
603 goto out_neigh_release;
606 if (dev->netdev_ops->ndo_neigh_construct) {
607 error = dev->netdev_ops->ndo_neigh_construct(dev, n);
610 goto out_neigh_release;
614 /* Device specific setup. */
615 if (n->parms->neigh_setup &&
616 (error = n->parms->neigh_setup(n)) < 0) {
618 goto out_neigh_release;
621 n->confirmed = jiffies - (NEIGH_VAR(n->parms, BASE_REACHABLE_TIME) << 1);
623 write_lock_bh(&tbl->lock);
624 nht = rcu_dereference_protected(tbl->nht,
625 lockdep_is_held(&tbl->lock));
627 if (atomic_read(&tbl->entries) > (1 << nht->hash_shift))
628 nht = neigh_hash_grow(tbl, nht->hash_shift + 1);
630 hash_val = tbl->hash(n->primary_key, dev, nht->hash_rnd) >> (32 - nht->hash_shift);
632 if (n->parms->dead) {
633 rc = ERR_PTR(-EINVAL);
637 for (n1 = rcu_dereference_protected(nht->hash_buckets[hash_val],
638 lockdep_is_held(&tbl->lock));
640 n1 = rcu_dereference_protected(n1->next,
641 lockdep_is_held(&tbl->lock))) {
642 if (dev == n1->dev && !memcmp(n1->primary_key, n->primary_key, key_len)) {
652 list_add_tail(&n->gc_list, &n->tbl->gc_list);
656 rcu_assign_pointer(n->next,
657 rcu_dereference_protected(nht->hash_buckets[hash_val],
658 lockdep_is_held(&tbl->lock)));
659 rcu_assign_pointer(nht->hash_buckets[hash_val], n);
660 write_unlock_bh(&tbl->lock);
661 neigh_dbg(2, "neigh %p is created\n", n);
666 write_unlock_bh(&tbl->lock);
669 atomic_dec(&tbl->gc_entries);
674 struct neighbour *__neigh_create(struct neigh_table *tbl, const void *pkey,
675 struct net_device *dev, bool want_ref)
677 return ___neigh_create(tbl, pkey, dev, 0, false, want_ref);
679 EXPORT_SYMBOL(__neigh_create);
681 static u32 pneigh_hash(const void *pkey, unsigned int key_len)
683 u32 hash_val = *(u32 *)(pkey + key_len - 4);
684 hash_val ^= (hash_val >> 16);
685 hash_val ^= hash_val >> 8;
686 hash_val ^= hash_val >> 4;
687 hash_val &= PNEIGH_HASHMASK;
691 static struct pneigh_entry *__pneigh_lookup_1(struct pneigh_entry *n,
694 unsigned int key_len,
695 struct net_device *dev)
698 if (!memcmp(n->key, pkey, key_len) &&
699 net_eq(pneigh_net(n), net) &&
700 (n->dev == dev || !n->dev))
707 struct pneigh_entry *__pneigh_lookup(struct neigh_table *tbl,
708 struct net *net, const void *pkey, struct net_device *dev)
710 unsigned int key_len = tbl->key_len;
711 u32 hash_val = pneigh_hash(pkey, key_len);
713 return __pneigh_lookup_1(tbl->phash_buckets[hash_val],
714 net, pkey, key_len, dev);
716 EXPORT_SYMBOL_GPL(__pneigh_lookup);
718 struct pneigh_entry * pneigh_lookup(struct neigh_table *tbl,
719 struct net *net, const void *pkey,
720 struct net_device *dev, int creat)
722 struct pneigh_entry *n;
723 unsigned int key_len = tbl->key_len;
724 u32 hash_val = pneigh_hash(pkey, key_len);
726 read_lock_bh(&tbl->lock);
727 n = __pneigh_lookup_1(tbl->phash_buckets[hash_val],
728 net, pkey, key_len, dev);
729 read_unlock_bh(&tbl->lock);
736 n = kzalloc(sizeof(*n) + key_len, GFP_KERNEL);
740 write_pnet(&n->net, net);
741 memcpy(n->key, pkey, key_len);
745 if (tbl->pconstructor && tbl->pconstructor(n)) {
752 write_lock_bh(&tbl->lock);
753 n->next = tbl->phash_buckets[hash_val];
754 tbl->phash_buckets[hash_val] = n;
755 write_unlock_bh(&tbl->lock);
759 EXPORT_SYMBOL(pneigh_lookup);
762 int pneigh_delete(struct neigh_table *tbl, struct net *net, const void *pkey,
763 struct net_device *dev)
765 struct pneigh_entry *n, **np;
766 unsigned int key_len = tbl->key_len;
767 u32 hash_val = pneigh_hash(pkey, key_len);
769 write_lock_bh(&tbl->lock);
770 for (np = &tbl->phash_buckets[hash_val]; (n = *np) != NULL;
772 if (!memcmp(n->key, pkey, key_len) && n->dev == dev &&
773 net_eq(pneigh_net(n), net)) {
775 write_unlock_bh(&tbl->lock);
776 if (tbl->pdestructor)
783 write_unlock_bh(&tbl->lock);
787 static int pneigh_ifdown_and_unlock(struct neigh_table *tbl,
788 struct net_device *dev)
790 struct pneigh_entry *n, **np, *freelist = NULL;
793 for (h = 0; h <= PNEIGH_HASHMASK; h++) {
794 np = &tbl->phash_buckets[h];
795 while ((n = *np) != NULL) {
796 if (!dev || n->dev == dev) {
805 write_unlock_bh(&tbl->lock);
806 while ((n = freelist)) {
809 if (tbl->pdestructor)
817 static void neigh_parms_destroy(struct neigh_parms *parms);
819 static inline void neigh_parms_put(struct neigh_parms *parms)
821 if (refcount_dec_and_test(&parms->refcnt))
822 neigh_parms_destroy(parms);
826 * neighbour must already be out of the table;
829 void neigh_destroy(struct neighbour *neigh)
831 struct net_device *dev = neigh->dev;
833 NEIGH_CACHE_STAT_INC(neigh->tbl, destroys);
836 pr_warn("Destroying alive neighbour %p\n", neigh);
841 if (neigh_del_timer(neigh))
842 pr_warn("Impossible event\n");
844 write_lock_bh(&neigh->lock);
845 __skb_queue_purge(&neigh->arp_queue);
846 write_unlock_bh(&neigh->lock);
847 neigh->arp_queue_len_bytes = 0;
849 if (dev->netdev_ops->ndo_neigh_destroy)
850 dev->netdev_ops->ndo_neigh_destroy(dev, neigh);
853 neigh_parms_put(neigh->parms);
855 neigh_dbg(2, "neigh %p is destroyed\n", neigh);
857 atomic_dec(&neigh->tbl->entries);
858 kfree_rcu(neigh, rcu);
860 EXPORT_SYMBOL(neigh_destroy);
862 /* Neighbour state is suspicious;
865 Called with write_locked neigh.
867 static void neigh_suspect(struct neighbour *neigh)
869 neigh_dbg(2, "neigh %p is suspected\n", neigh);
871 neigh->output = neigh->ops->output;
874 /* Neighbour state is OK;
877 Called with write_locked neigh.
879 static void neigh_connect(struct neighbour *neigh)
881 neigh_dbg(2, "neigh %p is connected\n", neigh);
883 neigh->output = neigh->ops->connected_output;
886 static void neigh_periodic_work(struct work_struct *work)
888 struct neigh_table *tbl = container_of(work, struct neigh_table, gc_work.work);
890 struct neighbour __rcu **np;
892 struct neigh_hash_table *nht;
894 NEIGH_CACHE_STAT_INC(tbl, periodic_gc_runs);
896 write_lock_bh(&tbl->lock);
897 nht = rcu_dereference_protected(tbl->nht,
898 lockdep_is_held(&tbl->lock));
901 * periodically recompute ReachableTime from random function
904 if (time_after(jiffies, tbl->last_rand + 300 * HZ)) {
905 struct neigh_parms *p;
906 tbl->last_rand = jiffies;
907 list_for_each_entry(p, &tbl->parms_list, list)
909 neigh_rand_reach_time(NEIGH_VAR(p, BASE_REACHABLE_TIME));
912 if (atomic_read(&tbl->entries) < tbl->gc_thresh1)
915 for (i = 0 ; i < (1 << nht->hash_shift); i++) {
916 np = &nht->hash_buckets[i];
918 while ((n = rcu_dereference_protected(*np,
919 lockdep_is_held(&tbl->lock))) != NULL) {
922 write_lock(&n->lock);
924 state = n->nud_state;
925 if ((state & (NUD_PERMANENT | NUD_IN_TIMER)) ||
926 (n->flags & NTF_EXT_LEARNED)) {
927 write_unlock(&n->lock);
931 if (time_before(n->used, n->confirmed))
932 n->used = n->confirmed;
934 if (refcount_read(&n->refcnt) == 1 &&
935 (state == NUD_FAILED ||
936 time_after(jiffies, n->used + NEIGH_VAR(n->parms, GC_STALETIME)))) {
939 write_unlock(&n->lock);
940 neigh_cleanup_and_release(n);
943 write_unlock(&n->lock);
949 * It's fine to release lock here, even if hash table
950 * grows while we are preempted.
952 write_unlock_bh(&tbl->lock);
954 write_lock_bh(&tbl->lock);
955 nht = rcu_dereference_protected(tbl->nht,
956 lockdep_is_held(&tbl->lock));
959 /* Cycle through all hash buckets every BASE_REACHABLE_TIME/2 ticks.
960 * ARP entry timeouts range from 1/2 BASE_REACHABLE_TIME to 3/2
961 * BASE_REACHABLE_TIME.
963 queue_delayed_work(system_power_efficient_wq, &tbl->gc_work,
964 NEIGH_VAR(&tbl->parms, BASE_REACHABLE_TIME) >> 1);
965 write_unlock_bh(&tbl->lock);
968 static __inline__ int neigh_max_probes(struct neighbour *n)
970 struct neigh_parms *p = n->parms;
971 return NEIGH_VAR(p, UCAST_PROBES) + NEIGH_VAR(p, APP_PROBES) +
972 (n->nud_state & NUD_PROBE ? NEIGH_VAR(p, MCAST_REPROBES) :
973 NEIGH_VAR(p, MCAST_PROBES));
976 static void neigh_invalidate(struct neighbour *neigh)
977 __releases(neigh->lock)
978 __acquires(neigh->lock)
982 NEIGH_CACHE_STAT_INC(neigh->tbl, res_failed);
983 neigh_dbg(2, "neigh %p is failed\n", neigh);
984 neigh->updated = jiffies;
986 /* It is very thin place. report_unreachable is very complicated
987 routine. Particularly, it can hit the same neighbour entry!
989 So that, we try to be accurate and avoid dead loop. --ANK
991 while (neigh->nud_state == NUD_FAILED &&
992 (skb = __skb_dequeue(&neigh->arp_queue)) != NULL) {
993 write_unlock(&neigh->lock);
994 neigh->ops->error_report(neigh, skb);
995 write_lock(&neigh->lock);
997 __skb_queue_purge(&neigh->arp_queue);
998 neigh->arp_queue_len_bytes = 0;
1001 static void neigh_probe(struct neighbour *neigh)
1002 __releases(neigh->lock)
1004 struct sk_buff *skb = skb_peek_tail(&neigh->arp_queue);
1005 /* keep skb alive even if arp_queue overflows */
1007 skb = skb_clone(skb, GFP_ATOMIC);
1008 write_unlock(&neigh->lock);
1009 if (neigh->ops->solicit)
1010 neigh->ops->solicit(neigh, skb);
1011 atomic_inc(&neigh->probes);
1015 /* Called when a timer expires for a neighbour entry. */
1017 static void neigh_timer_handler(struct timer_list *t)
1019 unsigned long now, next;
1020 struct neighbour *neigh = from_timer(neigh, t, timer);
1024 write_lock(&neigh->lock);
1026 state = neigh->nud_state;
1030 if (!(state & NUD_IN_TIMER))
1033 if (state & NUD_REACHABLE) {
1034 if (time_before_eq(now,
1035 neigh->confirmed + neigh->parms->reachable_time)) {
1036 neigh_dbg(2, "neigh %p is still alive\n", neigh);
1037 next = neigh->confirmed + neigh->parms->reachable_time;
1038 } else if (time_before_eq(now,
1040 NEIGH_VAR(neigh->parms, DELAY_PROBE_TIME))) {
1041 neigh_dbg(2, "neigh %p is delayed\n", neigh);
1042 neigh->nud_state = NUD_DELAY;
1043 neigh->updated = jiffies;
1044 neigh_suspect(neigh);
1045 next = now + NEIGH_VAR(neigh->parms, DELAY_PROBE_TIME);
1047 neigh_dbg(2, "neigh %p is suspected\n", neigh);
1048 neigh->nud_state = NUD_STALE;
1049 neigh->updated = jiffies;
1050 neigh_suspect(neigh);
1053 } else if (state & NUD_DELAY) {
1054 if (time_before_eq(now,
1056 NEIGH_VAR(neigh->parms, DELAY_PROBE_TIME))) {
1057 neigh_dbg(2, "neigh %p is now reachable\n", neigh);
1058 neigh->nud_state = NUD_REACHABLE;
1059 neigh->updated = jiffies;
1060 neigh_connect(neigh);
1062 next = neigh->confirmed + neigh->parms->reachable_time;
1064 neigh_dbg(2, "neigh %p is probed\n", neigh);
1065 neigh->nud_state = NUD_PROBE;
1066 neigh->updated = jiffies;
1067 atomic_set(&neigh->probes, 0);
1069 next = now + max(NEIGH_VAR(neigh->parms, RETRANS_TIME),
1073 /* NUD_PROBE|NUD_INCOMPLETE */
1074 next = now + max(NEIGH_VAR(neigh->parms, RETRANS_TIME), HZ/100);
1077 if ((neigh->nud_state & (NUD_INCOMPLETE | NUD_PROBE)) &&
1078 atomic_read(&neigh->probes) >= neigh_max_probes(neigh)) {
1079 neigh->nud_state = NUD_FAILED;
1081 neigh_invalidate(neigh);
1085 if (neigh->nud_state & NUD_IN_TIMER) {
1086 if (time_before(next, jiffies + HZ/100))
1087 next = jiffies + HZ/100;
1088 if (!mod_timer(&neigh->timer, next))
1091 if (neigh->nud_state & (NUD_INCOMPLETE | NUD_PROBE)) {
1095 write_unlock(&neigh->lock);
1099 neigh_update_notify(neigh, 0);
1101 trace_neigh_timer_handler(neigh, 0);
1103 neigh_release(neigh);
1106 int __neigh_event_send(struct neighbour *neigh, struct sk_buff *skb)
1109 bool immediate_probe = false;
1111 write_lock_bh(&neigh->lock);
1114 if (neigh->nud_state & (NUD_CONNECTED | NUD_DELAY | NUD_PROBE))
1119 if (!(neigh->nud_state & (NUD_STALE | NUD_INCOMPLETE))) {
1120 if (NEIGH_VAR(neigh->parms, MCAST_PROBES) +
1121 NEIGH_VAR(neigh->parms, APP_PROBES)) {
1122 unsigned long next, now = jiffies;
1124 atomic_set(&neigh->probes,
1125 NEIGH_VAR(neigh->parms, UCAST_PROBES));
1126 neigh_del_timer(neigh);
1127 neigh->nud_state = NUD_INCOMPLETE;
1128 neigh->updated = now;
1129 next = now + max(NEIGH_VAR(neigh->parms, RETRANS_TIME),
1131 neigh_add_timer(neigh, next);
1132 immediate_probe = true;
1134 neigh->nud_state = NUD_FAILED;
1135 neigh->updated = jiffies;
1136 write_unlock_bh(&neigh->lock);
1141 } else if (neigh->nud_state & NUD_STALE) {
1142 neigh_dbg(2, "neigh %p is delayed\n", neigh);
1143 neigh_del_timer(neigh);
1144 neigh->nud_state = NUD_DELAY;
1145 neigh->updated = jiffies;
1146 neigh_add_timer(neigh, jiffies +
1147 NEIGH_VAR(neigh->parms, DELAY_PROBE_TIME));
1150 if (neigh->nud_state == NUD_INCOMPLETE) {
1152 while (neigh->arp_queue_len_bytes + skb->truesize >
1153 NEIGH_VAR(neigh->parms, QUEUE_LEN_BYTES)) {
1154 struct sk_buff *buff;
1156 buff = __skb_dequeue(&neigh->arp_queue);
1159 neigh->arp_queue_len_bytes -= buff->truesize;
1161 NEIGH_CACHE_STAT_INC(neigh->tbl, unres_discards);
1164 __skb_queue_tail(&neigh->arp_queue, skb);
1165 neigh->arp_queue_len_bytes += skb->truesize;
1170 if (immediate_probe)
1173 write_unlock(&neigh->lock);
1175 trace_neigh_event_send_done(neigh, rc);
1179 if (neigh->nud_state & NUD_STALE)
1181 write_unlock_bh(&neigh->lock);
1183 trace_neigh_event_send_dead(neigh, 1);
1186 EXPORT_SYMBOL(__neigh_event_send);
1188 static void neigh_update_hhs(struct neighbour *neigh)
1190 struct hh_cache *hh;
1191 void (*update)(struct hh_cache*, const struct net_device*, const unsigned char *)
1194 if (neigh->dev->header_ops)
1195 update = neigh->dev->header_ops->cache_update;
1199 if (READ_ONCE(hh->hh_len)) {
1200 write_seqlock_bh(&hh->hh_lock);
1201 update(hh, neigh->dev, neigh->ha);
1202 write_sequnlock_bh(&hh->hh_lock);
1209 /* Generic update routine.
1210 -- lladdr is new lladdr or NULL, if it is not supplied.
1211 -- new is new state.
1213 NEIGH_UPDATE_F_OVERRIDE allows to override existing lladdr,
1215 NEIGH_UPDATE_F_WEAK_OVERRIDE will suspect existing "connected"
1216 lladdr instead of overriding it
1218 NEIGH_UPDATE_F_ADMIN means that the change is administrative.
1219 NEIGH_UPDATE_F_USE means that the entry is user triggered.
1220 NEIGH_UPDATE_F_OVERRIDE_ISROUTER allows to override existing
1222 NEIGH_UPDATE_F_ISROUTER indicates if the neighbour is known as
1225 Caller MUST hold reference count on the entry.
1228 static int __neigh_update(struct neighbour *neigh, const u8 *lladdr,
1229 u8 new, u32 flags, u32 nlmsg_pid,
1230 struct netlink_ext_ack *extack)
1232 bool ext_learn_change = false;
1236 struct net_device *dev;
1237 int update_isrouter = 0;
1239 trace_neigh_update(neigh, lladdr, new, flags, nlmsg_pid);
1241 write_lock_bh(&neigh->lock);
1244 old = neigh->nud_state;
1248 NL_SET_ERR_MSG(extack, "Neighbor entry is now dead");
1252 if (!(flags & NEIGH_UPDATE_F_ADMIN) &&
1253 (old & (NUD_NOARP | NUD_PERMANENT)))
1256 ext_learn_change = neigh_update_ext_learned(neigh, flags, ¬ify);
1257 if (flags & NEIGH_UPDATE_F_USE) {
1258 new = old & ~NUD_PERMANENT;
1259 neigh->nud_state = new;
1264 if (!(new & NUD_VALID)) {
1265 neigh_del_timer(neigh);
1266 if (old & NUD_CONNECTED)
1267 neigh_suspect(neigh);
1268 neigh->nud_state = new;
1270 notify = old & NUD_VALID;
1271 if ((old & (NUD_INCOMPLETE | NUD_PROBE)) &&
1272 (new & NUD_FAILED)) {
1273 neigh_invalidate(neigh);
1279 /* Compare new lladdr with cached one */
1280 if (!dev->addr_len) {
1281 /* First case: device needs no address. */
1283 } else if (lladdr) {
1284 /* The second case: if something is already cached
1285 and a new address is proposed:
1287 - if they are different, check override flag
1289 if ((old & NUD_VALID) &&
1290 !memcmp(lladdr, neigh->ha, dev->addr_len))
1293 /* No address is supplied; if we know something,
1294 use it, otherwise discard the request.
1297 if (!(old & NUD_VALID)) {
1298 NL_SET_ERR_MSG(extack, "No link layer address given");
1304 /* Update confirmed timestamp for neighbour entry after we
1305 * received ARP packet even if it doesn't change IP to MAC binding.
1307 if (new & NUD_CONNECTED)
1308 neigh->confirmed = jiffies;
1310 /* If entry was valid and address is not changed,
1311 do not change entry state, if new one is STALE.
1314 update_isrouter = flags & NEIGH_UPDATE_F_OVERRIDE_ISROUTER;
1315 if (old & NUD_VALID) {
1316 if (lladdr != neigh->ha && !(flags & NEIGH_UPDATE_F_OVERRIDE)) {
1317 update_isrouter = 0;
1318 if ((flags & NEIGH_UPDATE_F_WEAK_OVERRIDE) &&
1319 (old & NUD_CONNECTED)) {
1325 if (lladdr == neigh->ha && new == NUD_STALE &&
1326 !(flags & NEIGH_UPDATE_F_ADMIN))
1331 /* Update timestamp only once we know we will make a change to the
1332 * neighbour entry. Otherwise we risk to move the locktime window with
1333 * noop updates and ignore relevant ARP updates.
1335 if (new != old || lladdr != neigh->ha)
1336 neigh->updated = jiffies;
1339 neigh_del_timer(neigh);
1340 if (new & NUD_PROBE)
1341 atomic_set(&neigh->probes, 0);
1342 if (new & NUD_IN_TIMER)
1343 neigh_add_timer(neigh, (jiffies +
1344 ((new & NUD_REACHABLE) ?
1345 neigh->parms->reachable_time :
1347 neigh->nud_state = new;
1351 if (lladdr != neigh->ha) {
1352 write_seqlock(&neigh->ha_lock);
1353 memcpy(&neigh->ha, lladdr, dev->addr_len);
1354 write_sequnlock(&neigh->ha_lock);
1355 neigh_update_hhs(neigh);
1356 if (!(new & NUD_CONNECTED))
1357 neigh->confirmed = jiffies -
1358 (NEIGH_VAR(neigh->parms, BASE_REACHABLE_TIME) << 1);
1363 if (new & NUD_CONNECTED)
1364 neigh_connect(neigh);
1366 neigh_suspect(neigh);
1367 if (!(old & NUD_VALID)) {
1368 struct sk_buff *skb;
1370 /* Again: avoid dead loop if something went wrong */
1372 while (neigh->nud_state & NUD_VALID &&
1373 (skb = __skb_dequeue(&neigh->arp_queue)) != NULL) {
1374 struct dst_entry *dst = skb_dst(skb);
1375 struct neighbour *n2, *n1 = neigh;
1376 write_unlock_bh(&neigh->lock);
1380 /* Why not just use 'neigh' as-is? The problem is that
1381 * things such as shaper, eql, and sch_teql can end up
1382 * using alternative, different, neigh objects to output
1383 * the packet in the output path. So what we need to do
1384 * here is re-lookup the top-level neigh in the path so
1385 * we can reinject the packet there.
1388 if (dst && dst->obsolete != DST_OBSOLETE_DEAD) {
1389 n2 = dst_neigh_lookup_skb(dst, skb);
1393 n1->output(n1, skb);
1398 write_lock_bh(&neigh->lock);
1400 __skb_queue_purge(&neigh->arp_queue);
1401 neigh->arp_queue_len_bytes = 0;
1404 if (update_isrouter)
1405 neigh_update_is_router(neigh, flags, ¬ify);
1406 write_unlock_bh(&neigh->lock);
1408 if (((new ^ old) & NUD_PERMANENT) || ext_learn_change)
1409 neigh_update_gc_list(neigh);
1412 neigh_update_notify(neigh, nlmsg_pid);
1414 trace_neigh_update_done(neigh, err);
1419 int neigh_update(struct neighbour *neigh, const u8 *lladdr, u8 new,
1420 u32 flags, u32 nlmsg_pid)
1422 return __neigh_update(neigh, lladdr, new, flags, nlmsg_pid, NULL);
1424 EXPORT_SYMBOL(neigh_update);
1426 /* Update the neigh to listen temporarily for probe responses, even if it is
1427 * in a NUD_FAILED state. The caller has to hold neigh->lock for writing.
1429 void __neigh_set_probe_once(struct neighbour *neigh)
1433 neigh->updated = jiffies;
1434 if (!(neigh->nud_state & NUD_FAILED))
1436 neigh->nud_state = NUD_INCOMPLETE;
1437 atomic_set(&neigh->probes, neigh_max_probes(neigh));
1438 neigh_add_timer(neigh,
1439 jiffies + max(NEIGH_VAR(neigh->parms, RETRANS_TIME),
1442 EXPORT_SYMBOL(__neigh_set_probe_once);
1444 struct neighbour *neigh_event_ns(struct neigh_table *tbl,
1445 u8 *lladdr, void *saddr,
1446 struct net_device *dev)
1448 struct neighbour *neigh = __neigh_lookup(tbl, saddr, dev,
1449 lladdr || !dev->addr_len);
1451 neigh_update(neigh, lladdr, NUD_STALE,
1452 NEIGH_UPDATE_F_OVERRIDE, 0);
1455 EXPORT_SYMBOL(neigh_event_ns);
1457 /* called with read_lock_bh(&n->lock); */
1458 static void neigh_hh_init(struct neighbour *n)
1460 struct net_device *dev = n->dev;
1461 __be16 prot = n->tbl->protocol;
1462 struct hh_cache *hh = &n->hh;
1464 write_lock_bh(&n->lock);
1466 /* Only one thread can come in here and initialize the
1470 dev->header_ops->cache(n, hh, prot);
1472 write_unlock_bh(&n->lock);
1475 /* Slow and careful. */
1477 int neigh_resolve_output(struct neighbour *neigh, struct sk_buff *skb)
1481 if (!neigh_event_send(neigh, skb)) {
1483 struct net_device *dev = neigh->dev;
1486 if (dev->header_ops->cache && !READ_ONCE(neigh->hh.hh_len))
1487 neigh_hh_init(neigh);
1490 __skb_pull(skb, skb_network_offset(skb));
1491 seq = read_seqbegin(&neigh->ha_lock);
1492 err = dev_hard_header(skb, dev, ntohs(skb->protocol),
1493 neigh->ha, NULL, skb->len);
1494 } while (read_seqretry(&neigh->ha_lock, seq));
1497 rc = dev_queue_xmit(skb);
1508 EXPORT_SYMBOL(neigh_resolve_output);
1510 /* As fast as possible without hh cache */
1512 int neigh_connected_output(struct neighbour *neigh, struct sk_buff *skb)
1514 struct net_device *dev = neigh->dev;
1519 __skb_pull(skb, skb_network_offset(skb));
1520 seq = read_seqbegin(&neigh->ha_lock);
1521 err = dev_hard_header(skb, dev, ntohs(skb->protocol),
1522 neigh->ha, NULL, skb->len);
1523 } while (read_seqretry(&neigh->ha_lock, seq));
1526 err = dev_queue_xmit(skb);
1533 EXPORT_SYMBOL(neigh_connected_output);
1535 int neigh_direct_output(struct neighbour *neigh, struct sk_buff *skb)
1537 return dev_queue_xmit(skb);
1539 EXPORT_SYMBOL(neigh_direct_output);
1541 static void neigh_proxy_process(struct timer_list *t)
1543 struct neigh_table *tbl = from_timer(tbl, t, proxy_timer);
1544 long sched_next = 0;
1545 unsigned long now = jiffies;
1546 struct sk_buff *skb, *n;
1548 spin_lock(&tbl->proxy_queue.lock);
1550 skb_queue_walk_safe(&tbl->proxy_queue, skb, n) {
1551 long tdif = NEIGH_CB(skb)->sched_next - now;
1554 struct net_device *dev = skb->dev;
1556 __skb_unlink(skb, &tbl->proxy_queue);
1557 if (tbl->proxy_redo && netif_running(dev)) {
1559 tbl->proxy_redo(skb);
1566 } else if (!sched_next || tdif < sched_next)
1569 del_timer(&tbl->proxy_timer);
1571 mod_timer(&tbl->proxy_timer, jiffies + sched_next);
1572 spin_unlock(&tbl->proxy_queue.lock);
1575 void pneigh_enqueue(struct neigh_table *tbl, struct neigh_parms *p,
1576 struct sk_buff *skb)
1578 unsigned long sched_next = jiffies +
1579 prandom_u32_max(NEIGH_VAR(p, PROXY_DELAY));
1581 if (tbl->proxy_queue.qlen > NEIGH_VAR(p, PROXY_QLEN)) {
1586 NEIGH_CB(skb)->sched_next = sched_next;
1587 NEIGH_CB(skb)->flags |= LOCALLY_ENQUEUED;
1589 spin_lock(&tbl->proxy_queue.lock);
1590 if (del_timer(&tbl->proxy_timer)) {
1591 if (time_before(tbl->proxy_timer.expires, sched_next))
1592 sched_next = tbl->proxy_timer.expires;
1596 __skb_queue_tail(&tbl->proxy_queue, skb);
1597 mod_timer(&tbl->proxy_timer, sched_next);
1598 spin_unlock(&tbl->proxy_queue.lock);
1600 EXPORT_SYMBOL(pneigh_enqueue);
1602 static inline struct neigh_parms *lookup_neigh_parms(struct neigh_table *tbl,
1603 struct net *net, int ifindex)
1605 struct neigh_parms *p;
1607 list_for_each_entry(p, &tbl->parms_list, list) {
1608 if ((p->dev && p->dev->ifindex == ifindex && net_eq(neigh_parms_net(p), net)) ||
1609 (!p->dev && !ifindex && net_eq(net, &init_net)))
1616 struct neigh_parms *neigh_parms_alloc(struct net_device *dev,
1617 struct neigh_table *tbl)
1619 struct neigh_parms *p;
1620 struct net *net = dev_net(dev);
1621 const struct net_device_ops *ops = dev->netdev_ops;
1623 p = kmemdup(&tbl->parms, sizeof(*p), GFP_KERNEL);
1626 refcount_set(&p->refcnt, 1);
1628 neigh_rand_reach_time(NEIGH_VAR(p, BASE_REACHABLE_TIME));
1631 write_pnet(&p->net, net);
1632 p->sysctl_table = NULL;
1634 if (ops->ndo_neigh_setup && ops->ndo_neigh_setup(dev, p)) {
1640 write_lock_bh(&tbl->lock);
1641 list_add(&p->list, &tbl->parms.list);
1642 write_unlock_bh(&tbl->lock);
1644 neigh_parms_data_state_cleanall(p);
1648 EXPORT_SYMBOL(neigh_parms_alloc);
1650 static void neigh_rcu_free_parms(struct rcu_head *head)
1652 struct neigh_parms *parms =
1653 container_of(head, struct neigh_parms, rcu_head);
1655 neigh_parms_put(parms);
1658 void neigh_parms_release(struct neigh_table *tbl, struct neigh_parms *parms)
1660 if (!parms || parms == &tbl->parms)
1662 write_lock_bh(&tbl->lock);
1663 list_del(&parms->list);
1665 write_unlock_bh(&tbl->lock);
1666 dev_put(parms->dev);
1667 call_rcu(&parms->rcu_head, neigh_rcu_free_parms);
1669 EXPORT_SYMBOL(neigh_parms_release);
1671 static void neigh_parms_destroy(struct neigh_parms *parms)
1676 static struct lock_class_key neigh_table_proxy_queue_class;
1678 static struct neigh_table *neigh_tables[NEIGH_NR_TABLES] __read_mostly;
1680 void neigh_table_init(int index, struct neigh_table *tbl)
1682 unsigned long now = jiffies;
1683 unsigned long phsize;
1685 INIT_LIST_HEAD(&tbl->parms_list);
1686 INIT_LIST_HEAD(&tbl->gc_list);
1687 list_add(&tbl->parms.list, &tbl->parms_list);
1688 write_pnet(&tbl->parms.net, &init_net);
1689 refcount_set(&tbl->parms.refcnt, 1);
1690 tbl->parms.reachable_time =
1691 neigh_rand_reach_time(NEIGH_VAR(&tbl->parms, BASE_REACHABLE_TIME));
1693 tbl->stats = alloc_percpu(struct neigh_statistics);
1695 panic("cannot create neighbour cache statistics");
1697 #ifdef CONFIG_PROC_FS
1698 if (!proc_create_seq_data(tbl->id, 0, init_net.proc_net_stat,
1699 &neigh_stat_seq_ops, tbl))
1700 panic("cannot create neighbour proc dir entry");
1703 RCU_INIT_POINTER(tbl->nht, neigh_hash_alloc(3));
1705 phsize = (PNEIGH_HASHMASK + 1) * sizeof(struct pneigh_entry *);
1706 tbl->phash_buckets = kzalloc(phsize, GFP_KERNEL);
1708 if (!tbl->nht || !tbl->phash_buckets)
1709 panic("cannot allocate neighbour cache hashes");
1711 if (!tbl->entry_size)
1712 tbl->entry_size = ALIGN(offsetof(struct neighbour, primary_key) +
1713 tbl->key_len, NEIGH_PRIV_ALIGN);
1715 WARN_ON(tbl->entry_size % NEIGH_PRIV_ALIGN);
1717 rwlock_init(&tbl->lock);
1718 INIT_DEFERRABLE_WORK(&tbl->gc_work, neigh_periodic_work);
1719 queue_delayed_work(system_power_efficient_wq, &tbl->gc_work,
1720 tbl->parms.reachable_time);
1721 timer_setup(&tbl->proxy_timer, neigh_proxy_process, 0);
1722 skb_queue_head_init_class(&tbl->proxy_queue,
1723 &neigh_table_proxy_queue_class);
1725 tbl->last_flush = now;
1726 tbl->last_rand = now + tbl->parms.reachable_time * 20;
1728 neigh_tables[index] = tbl;
1730 EXPORT_SYMBOL(neigh_table_init);
1732 int neigh_table_clear(int index, struct neigh_table *tbl)
1734 neigh_tables[index] = NULL;
1735 /* It is not clean... Fix it to unload IPv6 module safely */
1736 cancel_delayed_work_sync(&tbl->gc_work);
1737 del_timer_sync(&tbl->proxy_timer);
1738 pneigh_queue_purge(&tbl->proxy_queue);
1739 neigh_ifdown(tbl, NULL);
1740 if (atomic_read(&tbl->entries))
1741 pr_crit("neighbour leakage\n");
1743 call_rcu(&rcu_dereference_protected(tbl->nht, 1)->rcu,
1744 neigh_hash_free_rcu);
1747 kfree(tbl->phash_buckets);
1748 tbl->phash_buckets = NULL;
1750 remove_proc_entry(tbl->id, init_net.proc_net_stat);
1752 free_percpu(tbl->stats);
1757 EXPORT_SYMBOL(neigh_table_clear);
1759 static struct neigh_table *neigh_find_table(int family)
1761 struct neigh_table *tbl = NULL;
1765 tbl = neigh_tables[NEIGH_ARP_TABLE];
1768 tbl = neigh_tables[NEIGH_ND_TABLE];
1771 tbl = neigh_tables[NEIGH_DN_TABLE];
1778 const struct nla_policy nda_policy[NDA_MAX+1] = {
1779 [NDA_UNSPEC] = { .strict_start_type = NDA_NH_ID },
1780 [NDA_DST] = { .type = NLA_BINARY, .len = MAX_ADDR_LEN },
1781 [NDA_LLADDR] = { .type = NLA_BINARY, .len = MAX_ADDR_LEN },
1782 [NDA_CACHEINFO] = { .len = sizeof(struct nda_cacheinfo) },
1783 [NDA_PROBES] = { .type = NLA_U32 },
1784 [NDA_VLAN] = { .type = NLA_U16 },
1785 [NDA_PORT] = { .type = NLA_U16 },
1786 [NDA_VNI] = { .type = NLA_U32 },
1787 [NDA_IFINDEX] = { .type = NLA_U32 },
1788 [NDA_MASTER] = { .type = NLA_U32 },
1789 [NDA_PROTOCOL] = { .type = NLA_U8 },
1790 [NDA_NH_ID] = { .type = NLA_U32 },
1791 [NDA_FDB_EXT_ATTRS] = { .type = NLA_NESTED },
1794 static int neigh_delete(struct sk_buff *skb, struct nlmsghdr *nlh,
1795 struct netlink_ext_ack *extack)
1797 struct net *net = sock_net(skb->sk);
1799 struct nlattr *dst_attr;
1800 struct neigh_table *tbl;
1801 struct neighbour *neigh;
1802 struct net_device *dev = NULL;
1806 if (nlmsg_len(nlh) < sizeof(*ndm))
1809 dst_attr = nlmsg_find_attr(nlh, sizeof(*ndm), NDA_DST);
1811 NL_SET_ERR_MSG(extack, "Network address not specified");
1815 ndm = nlmsg_data(nlh);
1816 if (ndm->ndm_ifindex) {
1817 dev = __dev_get_by_index(net, ndm->ndm_ifindex);
1824 tbl = neigh_find_table(ndm->ndm_family);
1826 return -EAFNOSUPPORT;
1828 if (nla_len(dst_attr) < (int)tbl->key_len) {
1829 NL_SET_ERR_MSG(extack, "Invalid network address");
1833 if (ndm->ndm_flags & NTF_PROXY) {
1834 err = pneigh_delete(tbl, net, nla_data(dst_attr), dev);
1841 neigh = neigh_lookup(tbl, nla_data(dst_attr), dev);
1842 if (neigh == NULL) {
1847 err = __neigh_update(neigh, NULL, NUD_FAILED,
1848 NEIGH_UPDATE_F_OVERRIDE | NEIGH_UPDATE_F_ADMIN,
1849 NETLINK_CB(skb).portid, extack);
1850 write_lock_bh(&tbl->lock);
1851 neigh_release(neigh);
1852 neigh_remove_one(neigh, tbl);
1853 write_unlock_bh(&tbl->lock);
1859 static int neigh_add(struct sk_buff *skb, struct nlmsghdr *nlh,
1860 struct netlink_ext_ack *extack)
1862 int flags = NEIGH_UPDATE_F_ADMIN | NEIGH_UPDATE_F_OVERRIDE |
1863 NEIGH_UPDATE_F_OVERRIDE_ISROUTER;
1864 struct net *net = sock_net(skb->sk);
1866 struct nlattr *tb[NDA_MAX+1];
1867 struct neigh_table *tbl;
1868 struct net_device *dev = NULL;
1869 struct neighbour *neigh;
1875 err = nlmsg_parse_deprecated(nlh, sizeof(*ndm), tb, NDA_MAX,
1876 nda_policy, extack);
1882 NL_SET_ERR_MSG(extack, "Network address not specified");
1886 ndm = nlmsg_data(nlh);
1887 if (ndm->ndm_ifindex) {
1888 dev = __dev_get_by_index(net, ndm->ndm_ifindex);
1894 if (tb[NDA_LLADDR] && nla_len(tb[NDA_LLADDR]) < dev->addr_len) {
1895 NL_SET_ERR_MSG(extack, "Invalid link address");
1900 tbl = neigh_find_table(ndm->ndm_family);
1902 return -EAFNOSUPPORT;
1904 if (nla_len(tb[NDA_DST]) < (int)tbl->key_len) {
1905 NL_SET_ERR_MSG(extack, "Invalid network address");
1909 dst = nla_data(tb[NDA_DST]);
1910 lladdr = tb[NDA_LLADDR] ? nla_data(tb[NDA_LLADDR]) : NULL;
1912 if (tb[NDA_PROTOCOL])
1913 protocol = nla_get_u8(tb[NDA_PROTOCOL]);
1915 if (ndm->ndm_flags & NTF_PROXY) {
1916 struct pneigh_entry *pn;
1919 pn = pneigh_lookup(tbl, net, dst, dev, 1);
1921 pn->flags = ndm->ndm_flags;
1923 pn->protocol = protocol;
1930 NL_SET_ERR_MSG(extack, "Device not specified");
1934 if (tbl->allow_add && !tbl->allow_add(dev, extack)) {
1939 neigh = neigh_lookup(tbl, dst, dev);
1940 if (neigh == NULL) {
1941 bool exempt_from_gc;
1943 if (!(nlh->nlmsg_flags & NLM_F_CREATE)) {
1948 exempt_from_gc = ndm->ndm_state & NUD_PERMANENT ||
1949 ndm->ndm_flags & NTF_EXT_LEARNED;
1950 neigh = ___neigh_create(tbl, dst, dev,
1951 ndm->ndm_flags & NTF_EXT_LEARNED,
1952 exempt_from_gc, true);
1953 if (IS_ERR(neigh)) {
1954 err = PTR_ERR(neigh);
1958 if (nlh->nlmsg_flags & NLM_F_EXCL) {
1960 neigh_release(neigh);
1964 if (!(nlh->nlmsg_flags & NLM_F_REPLACE))
1965 flags &= ~(NEIGH_UPDATE_F_OVERRIDE |
1966 NEIGH_UPDATE_F_OVERRIDE_ISROUTER);
1970 neigh->protocol = protocol;
1971 if (ndm->ndm_flags & NTF_EXT_LEARNED)
1972 flags |= NEIGH_UPDATE_F_EXT_LEARNED;
1973 if (ndm->ndm_flags & NTF_ROUTER)
1974 flags |= NEIGH_UPDATE_F_ISROUTER;
1975 if (ndm->ndm_flags & NTF_USE)
1976 flags |= NEIGH_UPDATE_F_USE;
1978 err = __neigh_update(neigh, lladdr, ndm->ndm_state, flags,
1979 NETLINK_CB(skb).portid, extack);
1980 if (!err && ndm->ndm_flags & NTF_USE) {
1981 neigh_event_send(neigh, NULL);
1984 neigh_release(neigh);
1989 static int neightbl_fill_parms(struct sk_buff *skb, struct neigh_parms *parms)
1991 struct nlattr *nest;
1993 nest = nla_nest_start_noflag(skb, NDTA_PARMS);
1998 nla_put_u32(skb, NDTPA_IFINDEX, parms->dev->ifindex)) ||
1999 nla_put_u32(skb, NDTPA_REFCNT, refcount_read(&parms->refcnt)) ||
2000 nla_put_u32(skb, NDTPA_QUEUE_LENBYTES,
2001 NEIGH_VAR(parms, QUEUE_LEN_BYTES)) ||
2002 /* approximative value for deprecated QUEUE_LEN (in packets) */
2003 nla_put_u32(skb, NDTPA_QUEUE_LEN,
2004 NEIGH_VAR(parms, QUEUE_LEN_BYTES) / SKB_TRUESIZE(ETH_FRAME_LEN)) ||
2005 nla_put_u32(skb, NDTPA_PROXY_QLEN, NEIGH_VAR(parms, PROXY_QLEN)) ||
2006 nla_put_u32(skb, NDTPA_APP_PROBES, NEIGH_VAR(parms, APP_PROBES)) ||
2007 nla_put_u32(skb, NDTPA_UCAST_PROBES,
2008 NEIGH_VAR(parms, UCAST_PROBES)) ||
2009 nla_put_u32(skb, NDTPA_MCAST_PROBES,
2010 NEIGH_VAR(parms, MCAST_PROBES)) ||
2011 nla_put_u32(skb, NDTPA_MCAST_REPROBES,
2012 NEIGH_VAR(parms, MCAST_REPROBES)) ||
2013 nla_put_msecs(skb, NDTPA_REACHABLE_TIME, parms->reachable_time,
2015 nla_put_msecs(skb, NDTPA_BASE_REACHABLE_TIME,
2016 NEIGH_VAR(parms, BASE_REACHABLE_TIME), NDTPA_PAD) ||
2017 nla_put_msecs(skb, NDTPA_GC_STALETIME,
2018 NEIGH_VAR(parms, GC_STALETIME), NDTPA_PAD) ||
2019 nla_put_msecs(skb, NDTPA_DELAY_PROBE_TIME,
2020 NEIGH_VAR(parms, DELAY_PROBE_TIME), NDTPA_PAD) ||
2021 nla_put_msecs(skb, NDTPA_RETRANS_TIME,
2022 NEIGH_VAR(parms, RETRANS_TIME), NDTPA_PAD) ||
2023 nla_put_msecs(skb, NDTPA_ANYCAST_DELAY,
2024 NEIGH_VAR(parms, ANYCAST_DELAY), NDTPA_PAD) ||
2025 nla_put_msecs(skb, NDTPA_PROXY_DELAY,
2026 NEIGH_VAR(parms, PROXY_DELAY), NDTPA_PAD) ||
2027 nla_put_msecs(skb, NDTPA_LOCKTIME,
2028 NEIGH_VAR(parms, LOCKTIME), NDTPA_PAD))
2029 goto nla_put_failure;
2030 return nla_nest_end(skb, nest);
2033 nla_nest_cancel(skb, nest);
2037 static int neightbl_fill_info(struct sk_buff *skb, struct neigh_table *tbl,
2038 u32 pid, u32 seq, int type, int flags)
2040 struct nlmsghdr *nlh;
2041 struct ndtmsg *ndtmsg;
2043 nlh = nlmsg_put(skb, pid, seq, type, sizeof(*ndtmsg), flags);
2047 ndtmsg = nlmsg_data(nlh);
2049 read_lock_bh(&tbl->lock);
2050 ndtmsg->ndtm_family = tbl->family;
2051 ndtmsg->ndtm_pad1 = 0;
2052 ndtmsg->ndtm_pad2 = 0;
2054 if (nla_put_string(skb, NDTA_NAME, tbl->id) ||
2055 nla_put_msecs(skb, NDTA_GC_INTERVAL, tbl->gc_interval, NDTA_PAD) ||
2056 nla_put_u32(skb, NDTA_THRESH1, tbl->gc_thresh1) ||
2057 nla_put_u32(skb, NDTA_THRESH2, tbl->gc_thresh2) ||
2058 nla_put_u32(skb, NDTA_THRESH3, tbl->gc_thresh3))
2059 goto nla_put_failure;
2061 unsigned long now = jiffies;
2062 long flush_delta = now - tbl->last_flush;
2063 long rand_delta = now - tbl->last_rand;
2064 struct neigh_hash_table *nht;
2065 struct ndt_config ndc = {
2066 .ndtc_key_len = tbl->key_len,
2067 .ndtc_entry_size = tbl->entry_size,
2068 .ndtc_entries = atomic_read(&tbl->entries),
2069 .ndtc_last_flush = jiffies_to_msecs(flush_delta),
2070 .ndtc_last_rand = jiffies_to_msecs(rand_delta),
2071 .ndtc_proxy_qlen = tbl->proxy_queue.qlen,
2075 nht = rcu_dereference_bh(tbl->nht);
2076 ndc.ndtc_hash_rnd = nht->hash_rnd[0];
2077 ndc.ndtc_hash_mask = ((1 << nht->hash_shift) - 1);
2078 rcu_read_unlock_bh();
2080 if (nla_put(skb, NDTA_CONFIG, sizeof(ndc), &ndc))
2081 goto nla_put_failure;
2086 struct ndt_stats ndst;
2088 memset(&ndst, 0, sizeof(ndst));
2090 for_each_possible_cpu(cpu) {
2091 struct neigh_statistics *st;
2093 st = per_cpu_ptr(tbl->stats, cpu);
2094 ndst.ndts_allocs += st->allocs;
2095 ndst.ndts_destroys += st->destroys;
2096 ndst.ndts_hash_grows += st->hash_grows;
2097 ndst.ndts_res_failed += st->res_failed;
2098 ndst.ndts_lookups += st->lookups;
2099 ndst.ndts_hits += st->hits;
2100 ndst.ndts_rcv_probes_mcast += st->rcv_probes_mcast;
2101 ndst.ndts_rcv_probes_ucast += st->rcv_probes_ucast;
2102 ndst.ndts_periodic_gc_runs += st->periodic_gc_runs;
2103 ndst.ndts_forced_gc_runs += st->forced_gc_runs;
2104 ndst.ndts_table_fulls += st->table_fulls;
2107 if (nla_put_64bit(skb, NDTA_STATS, sizeof(ndst), &ndst,
2109 goto nla_put_failure;
2112 BUG_ON(tbl->parms.dev);
2113 if (neightbl_fill_parms(skb, &tbl->parms) < 0)
2114 goto nla_put_failure;
2116 read_unlock_bh(&tbl->lock);
2117 nlmsg_end(skb, nlh);
2121 read_unlock_bh(&tbl->lock);
2122 nlmsg_cancel(skb, nlh);
2126 static int neightbl_fill_param_info(struct sk_buff *skb,
2127 struct neigh_table *tbl,
2128 struct neigh_parms *parms,
2129 u32 pid, u32 seq, int type,
2132 struct ndtmsg *ndtmsg;
2133 struct nlmsghdr *nlh;
2135 nlh = nlmsg_put(skb, pid, seq, type, sizeof(*ndtmsg), flags);
2139 ndtmsg = nlmsg_data(nlh);
2141 read_lock_bh(&tbl->lock);
2142 ndtmsg->ndtm_family = tbl->family;
2143 ndtmsg->ndtm_pad1 = 0;
2144 ndtmsg->ndtm_pad2 = 0;
2146 if (nla_put_string(skb, NDTA_NAME, tbl->id) < 0 ||
2147 neightbl_fill_parms(skb, parms) < 0)
2150 read_unlock_bh(&tbl->lock);
2151 nlmsg_end(skb, nlh);
2154 read_unlock_bh(&tbl->lock);
2155 nlmsg_cancel(skb, nlh);
2159 static const struct nla_policy nl_neightbl_policy[NDTA_MAX+1] = {
2160 [NDTA_NAME] = { .type = NLA_STRING },
2161 [NDTA_THRESH1] = { .type = NLA_U32 },
2162 [NDTA_THRESH2] = { .type = NLA_U32 },
2163 [NDTA_THRESH3] = { .type = NLA_U32 },
2164 [NDTA_GC_INTERVAL] = { .type = NLA_U64 },
2165 [NDTA_PARMS] = { .type = NLA_NESTED },
2168 static const struct nla_policy nl_ntbl_parm_policy[NDTPA_MAX+1] = {
2169 [NDTPA_IFINDEX] = { .type = NLA_U32 },
2170 [NDTPA_QUEUE_LEN] = { .type = NLA_U32 },
2171 [NDTPA_PROXY_QLEN] = { .type = NLA_U32 },
2172 [NDTPA_APP_PROBES] = { .type = NLA_U32 },
2173 [NDTPA_UCAST_PROBES] = { .type = NLA_U32 },
2174 [NDTPA_MCAST_PROBES] = { .type = NLA_U32 },
2175 [NDTPA_MCAST_REPROBES] = { .type = NLA_U32 },
2176 [NDTPA_BASE_REACHABLE_TIME] = { .type = NLA_U64 },
2177 [NDTPA_GC_STALETIME] = { .type = NLA_U64 },
2178 [NDTPA_DELAY_PROBE_TIME] = { .type = NLA_U64 },
2179 [NDTPA_RETRANS_TIME] = { .type = NLA_U64 },
2180 [NDTPA_ANYCAST_DELAY] = { .type = NLA_U64 },
2181 [NDTPA_PROXY_DELAY] = { .type = NLA_U64 },
2182 [NDTPA_LOCKTIME] = { .type = NLA_U64 },
2185 static int neightbl_set(struct sk_buff *skb, struct nlmsghdr *nlh,
2186 struct netlink_ext_ack *extack)
2188 struct net *net = sock_net(skb->sk);
2189 struct neigh_table *tbl;
2190 struct ndtmsg *ndtmsg;
2191 struct nlattr *tb[NDTA_MAX+1];
2195 err = nlmsg_parse_deprecated(nlh, sizeof(*ndtmsg), tb, NDTA_MAX,
2196 nl_neightbl_policy, extack);
2200 if (tb[NDTA_NAME] == NULL) {
2205 ndtmsg = nlmsg_data(nlh);
2207 for (tidx = 0; tidx < NEIGH_NR_TABLES; tidx++) {
2208 tbl = neigh_tables[tidx];
2211 if (ndtmsg->ndtm_family && tbl->family != ndtmsg->ndtm_family)
2213 if (nla_strcmp(tb[NDTA_NAME], tbl->id) == 0) {
2223 * We acquire tbl->lock to be nice to the periodic timers and
2224 * make sure they always see a consistent set of values.
2226 write_lock_bh(&tbl->lock);
2228 if (tb[NDTA_PARMS]) {
2229 struct nlattr *tbp[NDTPA_MAX+1];
2230 struct neigh_parms *p;
2233 err = nla_parse_nested_deprecated(tbp, NDTPA_MAX,
2235 nl_ntbl_parm_policy, extack);
2237 goto errout_tbl_lock;
2239 if (tbp[NDTPA_IFINDEX])
2240 ifindex = nla_get_u32(tbp[NDTPA_IFINDEX]);
2242 p = lookup_neigh_parms(tbl, net, ifindex);
2245 goto errout_tbl_lock;
2248 for (i = 1; i <= NDTPA_MAX; i++) {
2253 case NDTPA_QUEUE_LEN:
2254 NEIGH_VAR_SET(p, QUEUE_LEN_BYTES,
2255 nla_get_u32(tbp[i]) *
2256 SKB_TRUESIZE(ETH_FRAME_LEN));
2258 case NDTPA_QUEUE_LENBYTES:
2259 NEIGH_VAR_SET(p, QUEUE_LEN_BYTES,
2260 nla_get_u32(tbp[i]));
2262 case NDTPA_PROXY_QLEN:
2263 NEIGH_VAR_SET(p, PROXY_QLEN,
2264 nla_get_u32(tbp[i]));
2266 case NDTPA_APP_PROBES:
2267 NEIGH_VAR_SET(p, APP_PROBES,
2268 nla_get_u32(tbp[i]));
2270 case NDTPA_UCAST_PROBES:
2271 NEIGH_VAR_SET(p, UCAST_PROBES,
2272 nla_get_u32(tbp[i]));
2274 case NDTPA_MCAST_PROBES:
2275 NEIGH_VAR_SET(p, MCAST_PROBES,
2276 nla_get_u32(tbp[i]));
2278 case NDTPA_MCAST_REPROBES:
2279 NEIGH_VAR_SET(p, MCAST_REPROBES,
2280 nla_get_u32(tbp[i]));
2282 case NDTPA_BASE_REACHABLE_TIME:
2283 NEIGH_VAR_SET(p, BASE_REACHABLE_TIME,
2284 nla_get_msecs(tbp[i]));
2285 /* update reachable_time as well, otherwise, the change will
2286 * only be effective after the next time neigh_periodic_work
2287 * decides to recompute it (can be multiple minutes)
2290 neigh_rand_reach_time(NEIGH_VAR(p, BASE_REACHABLE_TIME));
2292 case NDTPA_GC_STALETIME:
2293 NEIGH_VAR_SET(p, GC_STALETIME,
2294 nla_get_msecs(tbp[i]));
2296 case NDTPA_DELAY_PROBE_TIME:
2297 NEIGH_VAR_SET(p, DELAY_PROBE_TIME,
2298 nla_get_msecs(tbp[i]));
2299 call_netevent_notifiers(NETEVENT_DELAY_PROBE_TIME_UPDATE, p);
2301 case NDTPA_RETRANS_TIME:
2302 NEIGH_VAR_SET(p, RETRANS_TIME,
2303 nla_get_msecs(tbp[i]));
2305 case NDTPA_ANYCAST_DELAY:
2306 NEIGH_VAR_SET(p, ANYCAST_DELAY,
2307 nla_get_msecs(tbp[i]));
2309 case NDTPA_PROXY_DELAY:
2310 NEIGH_VAR_SET(p, PROXY_DELAY,
2311 nla_get_msecs(tbp[i]));
2313 case NDTPA_LOCKTIME:
2314 NEIGH_VAR_SET(p, LOCKTIME,
2315 nla_get_msecs(tbp[i]));
2322 if ((tb[NDTA_THRESH1] || tb[NDTA_THRESH2] ||
2323 tb[NDTA_THRESH3] || tb[NDTA_GC_INTERVAL]) &&
2324 !net_eq(net, &init_net))
2325 goto errout_tbl_lock;
2327 if (tb[NDTA_THRESH1])
2328 tbl->gc_thresh1 = nla_get_u32(tb[NDTA_THRESH1]);
2330 if (tb[NDTA_THRESH2])
2331 tbl->gc_thresh2 = nla_get_u32(tb[NDTA_THRESH2]);
2333 if (tb[NDTA_THRESH3])
2334 tbl->gc_thresh3 = nla_get_u32(tb[NDTA_THRESH3]);
2336 if (tb[NDTA_GC_INTERVAL])
2337 tbl->gc_interval = nla_get_msecs(tb[NDTA_GC_INTERVAL]);
2342 write_unlock_bh(&tbl->lock);
2347 static int neightbl_valid_dump_info(const struct nlmsghdr *nlh,
2348 struct netlink_ext_ack *extack)
2350 struct ndtmsg *ndtm;
2352 if (nlh->nlmsg_len < nlmsg_msg_size(sizeof(*ndtm))) {
2353 NL_SET_ERR_MSG(extack, "Invalid header for neighbor table dump request");
2357 ndtm = nlmsg_data(nlh);
2358 if (ndtm->ndtm_pad1 || ndtm->ndtm_pad2) {
2359 NL_SET_ERR_MSG(extack, "Invalid values in header for neighbor table dump request");
2363 if (nlmsg_attrlen(nlh, sizeof(*ndtm))) {
2364 NL_SET_ERR_MSG(extack, "Invalid data after header in neighbor table dump request");
2371 static int neightbl_dump_info(struct sk_buff *skb, struct netlink_callback *cb)
2373 const struct nlmsghdr *nlh = cb->nlh;
2374 struct net *net = sock_net(skb->sk);
2375 int family, tidx, nidx = 0;
2376 int tbl_skip = cb->args[0];
2377 int neigh_skip = cb->args[1];
2378 struct neigh_table *tbl;
2380 if (cb->strict_check) {
2381 int err = neightbl_valid_dump_info(nlh, cb->extack);
2387 family = ((struct rtgenmsg *)nlmsg_data(nlh))->rtgen_family;
2389 for (tidx = 0; tidx < NEIGH_NR_TABLES; tidx++) {
2390 struct neigh_parms *p;
2392 tbl = neigh_tables[tidx];
2396 if (tidx < tbl_skip || (family && tbl->family != family))
2399 if (neightbl_fill_info(skb, tbl, NETLINK_CB(cb->skb).portid,
2400 nlh->nlmsg_seq, RTM_NEWNEIGHTBL,
2405 p = list_next_entry(&tbl->parms, list);
2406 list_for_each_entry_from(p, &tbl->parms_list, list) {
2407 if (!net_eq(neigh_parms_net(p), net))
2410 if (nidx < neigh_skip)
2413 if (neightbl_fill_param_info(skb, tbl, p,
2414 NETLINK_CB(cb->skb).portid,
2432 static int neigh_fill_info(struct sk_buff *skb, struct neighbour *neigh,
2433 u32 pid, u32 seq, int type, unsigned int flags)
2435 unsigned long now = jiffies;
2436 struct nda_cacheinfo ci;
2437 struct nlmsghdr *nlh;
2440 nlh = nlmsg_put(skb, pid, seq, type, sizeof(*ndm), flags);
2444 ndm = nlmsg_data(nlh);
2445 ndm->ndm_family = neigh->ops->family;
2448 ndm->ndm_flags = neigh->flags;
2449 ndm->ndm_type = neigh->type;
2450 ndm->ndm_ifindex = neigh->dev->ifindex;
2452 if (nla_put(skb, NDA_DST, neigh->tbl->key_len, neigh->primary_key))
2453 goto nla_put_failure;
2455 read_lock_bh(&neigh->lock);
2456 ndm->ndm_state = neigh->nud_state;
2457 if (neigh->nud_state & NUD_VALID) {
2458 char haddr[MAX_ADDR_LEN];
2460 neigh_ha_snapshot(haddr, neigh, neigh->dev);
2461 if (nla_put(skb, NDA_LLADDR, neigh->dev->addr_len, haddr) < 0) {
2462 read_unlock_bh(&neigh->lock);
2463 goto nla_put_failure;
2467 ci.ndm_used = jiffies_to_clock_t(now - neigh->used);
2468 ci.ndm_confirmed = jiffies_to_clock_t(now - neigh->confirmed);
2469 ci.ndm_updated = jiffies_to_clock_t(now - neigh->updated);
2470 ci.ndm_refcnt = refcount_read(&neigh->refcnt) - 1;
2471 read_unlock_bh(&neigh->lock);
2473 if (nla_put_u32(skb, NDA_PROBES, atomic_read(&neigh->probes)) ||
2474 nla_put(skb, NDA_CACHEINFO, sizeof(ci), &ci))
2475 goto nla_put_failure;
2477 if (neigh->protocol && nla_put_u8(skb, NDA_PROTOCOL, neigh->protocol))
2478 goto nla_put_failure;
2480 nlmsg_end(skb, nlh);
2484 nlmsg_cancel(skb, nlh);
2488 static int pneigh_fill_info(struct sk_buff *skb, struct pneigh_entry *pn,
2489 u32 pid, u32 seq, int type, unsigned int flags,
2490 struct neigh_table *tbl)
2492 struct nlmsghdr *nlh;
2495 nlh = nlmsg_put(skb, pid, seq, type, sizeof(*ndm), flags);
2499 ndm = nlmsg_data(nlh);
2500 ndm->ndm_family = tbl->family;
2503 ndm->ndm_flags = pn->flags | NTF_PROXY;
2504 ndm->ndm_type = RTN_UNICAST;
2505 ndm->ndm_ifindex = pn->dev ? pn->dev->ifindex : 0;
2506 ndm->ndm_state = NUD_NONE;
2508 if (nla_put(skb, NDA_DST, tbl->key_len, pn->key))
2509 goto nla_put_failure;
2511 if (pn->protocol && nla_put_u8(skb, NDA_PROTOCOL, pn->protocol))
2512 goto nla_put_failure;
2514 nlmsg_end(skb, nlh);
2518 nlmsg_cancel(skb, nlh);
2522 static void neigh_update_notify(struct neighbour *neigh, u32 nlmsg_pid)
2524 call_netevent_notifiers(NETEVENT_NEIGH_UPDATE, neigh);
2525 __neigh_notify(neigh, RTM_NEWNEIGH, 0, nlmsg_pid);
2528 static bool neigh_master_filtered(struct net_device *dev, int master_idx)
2530 struct net_device *master;
2535 master = dev ? netdev_master_upper_dev_get(dev) : NULL;
2537 /* 0 is already used to denote NDA_MASTER wasn't passed, therefore need another
2538 * invalid value for ifindex to denote "no master".
2540 if (master_idx == -1)
2543 if (!master || master->ifindex != master_idx)
2549 static bool neigh_ifindex_filtered(struct net_device *dev, int filter_idx)
2551 if (filter_idx && (!dev || dev->ifindex != filter_idx))
2557 struct neigh_dump_filter {
2562 static int neigh_dump_table(struct neigh_table *tbl, struct sk_buff *skb,
2563 struct netlink_callback *cb,
2564 struct neigh_dump_filter *filter)
2566 struct net *net = sock_net(skb->sk);
2567 struct neighbour *n;
2568 int rc, h, s_h = cb->args[1];
2569 int idx, s_idx = idx = cb->args[2];
2570 struct neigh_hash_table *nht;
2571 unsigned int flags = NLM_F_MULTI;
2573 if (filter->dev_idx || filter->master_idx)
2574 flags |= NLM_F_DUMP_FILTERED;
2577 nht = rcu_dereference_bh(tbl->nht);
2579 for (h = s_h; h < (1 << nht->hash_shift); h++) {
2582 for (n = rcu_dereference_bh(nht->hash_buckets[h]), idx = 0;
2584 n = rcu_dereference_bh(n->next)) {
2585 if (idx < s_idx || !net_eq(dev_net(n->dev), net))
2587 if (neigh_ifindex_filtered(n->dev, filter->dev_idx) ||
2588 neigh_master_filtered(n->dev, filter->master_idx))
2590 if (neigh_fill_info(skb, n, NETLINK_CB(cb->skb).portid,
2603 rcu_read_unlock_bh();
2609 static int pneigh_dump_table(struct neigh_table *tbl, struct sk_buff *skb,
2610 struct netlink_callback *cb,
2611 struct neigh_dump_filter *filter)
2613 struct pneigh_entry *n;
2614 struct net *net = sock_net(skb->sk);
2615 int rc, h, s_h = cb->args[3];
2616 int idx, s_idx = idx = cb->args[4];
2617 unsigned int flags = NLM_F_MULTI;
2619 if (filter->dev_idx || filter->master_idx)
2620 flags |= NLM_F_DUMP_FILTERED;
2622 read_lock_bh(&tbl->lock);
2624 for (h = s_h; h <= PNEIGH_HASHMASK; h++) {
2627 for (n = tbl->phash_buckets[h], idx = 0; n; n = n->next) {
2628 if (idx < s_idx || pneigh_net(n) != net)
2630 if (neigh_ifindex_filtered(n->dev, filter->dev_idx) ||
2631 neigh_master_filtered(n->dev, filter->master_idx))
2633 if (pneigh_fill_info(skb, n, NETLINK_CB(cb->skb).portid,
2635 RTM_NEWNEIGH, flags, tbl) < 0) {
2636 read_unlock_bh(&tbl->lock);
2645 read_unlock_bh(&tbl->lock);
2654 static int neigh_valid_dump_req(const struct nlmsghdr *nlh,
2656 struct neigh_dump_filter *filter,
2657 struct netlink_ext_ack *extack)
2659 struct nlattr *tb[NDA_MAX + 1];
2665 if (nlh->nlmsg_len < nlmsg_msg_size(sizeof(*ndm))) {
2666 NL_SET_ERR_MSG(extack, "Invalid header for neighbor dump request");
2670 ndm = nlmsg_data(nlh);
2671 if (ndm->ndm_pad1 || ndm->ndm_pad2 || ndm->ndm_ifindex ||
2672 ndm->ndm_state || ndm->ndm_type) {
2673 NL_SET_ERR_MSG(extack, "Invalid values in header for neighbor dump request");
2677 if (ndm->ndm_flags & ~NTF_PROXY) {
2678 NL_SET_ERR_MSG(extack, "Invalid flags in header for neighbor dump request");
2682 err = nlmsg_parse_deprecated_strict(nlh, sizeof(struct ndmsg),
2683 tb, NDA_MAX, nda_policy,
2686 err = nlmsg_parse_deprecated(nlh, sizeof(struct ndmsg), tb,
2687 NDA_MAX, nda_policy, extack);
2692 for (i = 0; i <= NDA_MAX; ++i) {
2696 /* all new attributes should require strict_check */
2699 filter->dev_idx = nla_get_u32(tb[i]);
2702 filter->master_idx = nla_get_u32(tb[i]);
2706 NL_SET_ERR_MSG(extack, "Unsupported attribute in neighbor dump request");
2715 static int neigh_dump_info(struct sk_buff *skb, struct netlink_callback *cb)
2717 const struct nlmsghdr *nlh = cb->nlh;
2718 struct neigh_dump_filter filter = {};
2719 struct neigh_table *tbl;
2724 family = ((struct rtgenmsg *)nlmsg_data(nlh))->rtgen_family;
2726 /* check for full ndmsg structure presence, family member is
2727 * the same for both structures
2729 if (nlmsg_len(nlh) >= sizeof(struct ndmsg) &&
2730 ((struct ndmsg *)nlmsg_data(nlh))->ndm_flags == NTF_PROXY)
2733 err = neigh_valid_dump_req(nlh, cb->strict_check, &filter, cb->extack);
2734 if (err < 0 && cb->strict_check)
2739 for (t = 0; t < NEIGH_NR_TABLES; t++) {
2740 tbl = neigh_tables[t];
2744 if (t < s_t || (family && tbl->family != family))
2747 memset(&cb->args[1], 0, sizeof(cb->args) -
2748 sizeof(cb->args[0]));
2750 err = pneigh_dump_table(tbl, skb, cb, &filter);
2752 err = neigh_dump_table(tbl, skb, cb, &filter);
2761 static int neigh_valid_get_req(const struct nlmsghdr *nlh,
2762 struct neigh_table **tbl,
2763 void **dst, int *dev_idx, u8 *ndm_flags,
2764 struct netlink_ext_ack *extack)
2766 struct nlattr *tb[NDA_MAX + 1];
2770 if (nlh->nlmsg_len < nlmsg_msg_size(sizeof(*ndm))) {
2771 NL_SET_ERR_MSG(extack, "Invalid header for neighbor get request");
2775 ndm = nlmsg_data(nlh);
2776 if (ndm->ndm_pad1 || ndm->ndm_pad2 || ndm->ndm_state ||
2778 NL_SET_ERR_MSG(extack, "Invalid values in header for neighbor get request");
2782 if (ndm->ndm_flags & ~NTF_PROXY) {
2783 NL_SET_ERR_MSG(extack, "Invalid flags in header for neighbor get request");
2787 err = nlmsg_parse_deprecated_strict(nlh, sizeof(struct ndmsg), tb,
2788 NDA_MAX, nda_policy, extack);
2792 *ndm_flags = ndm->ndm_flags;
2793 *dev_idx = ndm->ndm_ifindex;
2794 *tbl = neigh_find_table(ndm->ndm_family);
2796 NL_SET_ERR_MSG(extack, "Unsupported family in header for neighbor get request");
2797 return -EAFNOSUPPORT;
2800 for (i = 0; i <= NDA_MAX; ++i) {
2806 if (nla_len(tb[i]) != (int)(*tbl)->key_len) {
2807 NL_SET_ERR_MSG(extack, "Invalid network address in neighbor get request");
2810 *dst = nla_data(tb[i]);
2813 NL_SET_ERR_MSG(extack, "Unsupported attribute in neighbor get request");
2821 static inline size_t neigh_nlmsg_size(void)
2823 return NLMSG_ALIGN(sizeof(struct ndmsg))
2824 + nla_total_size(MAX_ADDR_LEN) /* NDA_DST */
2825 + nla_total_size(MAX_ADDR_LEN) /* NDA_LLADDR */
2826 + nla_total_size(sizeof(struct nda_cacheinfo))
2827 + nla_total_size(4) /* NDA_PROBES */
2828 + nla_total_size(1); /* NDA_PROTOCOL */
2831 static int neigh_get_reply(struct net *net, struct neighbour *neigh,
2834 struct sk_buff *skb;
2837 skb = nlmsg_new(neigh_nlmsg_size(), GFP_KERNEL);
2841 err = neigh_fill_info(skb, neigh, pid, seq, RTM_NEWNEIGH, 0);
2847 err = rtnl_unicast(skb, net, pid);
2852 static inline size_t pneigh_nlmsg_size(void)
2854 return NLMSG_ALIGN(sizeof(struct ndmsg))
2855 + nla_total_size(MAX_ADDR_LEN) /* NDA_DST */
2856 + nla_total_size(1); /* NDA_PROTOCOL */
2859 static int pneigh_get_reply(struct net *net, struct pneigh_entry *neigh,
2860 u32 pid, u32 seq, struct neigh_table *tbl)
2862 struct sk_buff *skb;
2865 skb = nlmsg_new(pneigh_nlmsg_size(), GFP_KERNEL);
2869 err = pneigh_fill_info(skb, neigh, pid, seq, RTM_NEWNEIGH, 0, tbl);
2875 err = rtnl_unicast(skb, net, pid);
2880 static int neigh_get(struct sk_buff *in_skb, struct nlmsghdr *nlh,
2881 struct netlink_ext_ack *extack)
2883 struct net *net = sock_net(in_skb->sk);
2884 struct net_device *dev = NULL;
2885 struct neigh_table *tbl = NULL;
2886 struct neighbour *neigh;
2892 err = neigh_valid_get_req(nlh, &tbl, &dst, &dev_idx, &ndm_flags,
2898 dev = __dev_get_by_index(net, dev_idx);
2900 NL_SET_ERR_MSG(extack, "Unknown device ifindex");
2906 NL_SET_ERR_MSG(extack, "Network address not specified");
2910 if (ndm_flags & NTF_PROXY) {
2911 struct pneigh_entry *pn;
2913 pn = pneigh_lookup(tbl, net, dst, dev, 0);
2915 NL_SET_ERR_MSG(extack, "Proxy neighbour entry not found");
2918 return pneigh_get_reply(net, pn, NETLINK_CB(in_skb).portid,
2919 nlh->nlmsg_seq, tbl);
2923 NL_SET_ERR_MSG(extack, "No device specified");
2927 neigh = neigh_lookup(tbl, dst, dev);
2929 NL_SET_ERR_MSG(extack, "Neighbour entry not found");
2933 err = neigh_get_reply(net, neigh, NETLINK_CB(in_skb).portid,
2936 neigh_release(neigh);
2941 void neigh_for_each(struct neigh_table *tbl, void (*cb)(struct neighbour *, void *), void *cookie)
2944 struct neigh_hash_table *nht;
2947 nht = rcu_dereference_bh(tbl->nht);
2949 read_lock(&tbl->lock); /* avoid resizes */
2950 for (chain = 0; chain < (1 << nht->hash_shift); chain++) {
2951 struct neighbour *n;
2953 for (n = rcu_dereference_bh(nht->hash_buckets[chain]);
2955 n = rcu_dereference_bh(n->next))
2958 read_unlock(&tbl->lock);
2959 rcu_read_unlock_bh();
2961 EXPORT_SYMBOL(neigh_for_each);
2963 /* The tbl->lock must be held as a writer and BH disabled. */
2964 void __neigh_for_each_release(struct neigh_table *tbl,
2965 int (*cb)(struct neighbour *))
2968 struct neigh_hash_table *nht;
2970 nht = rcu_dereference_protected(tbl->nht,
2971 lockdep_is_held(&tbl->lock));
2972 for (chain = 0; chain < (1 << nht->hash_shift); chain++) {
2973 struct neighbour *n;
2974 struct neighbour __rcu **np;
2976 np = &nht->hash_buckets[chain];
2977 while ((n = rcu_dereference_protected(*np,
2978 lockdep_is_held(&tbl->lock))) != NULL) {
2981 write_lock(&n->lock);
2984 rcu_assign_pointer(*np,
2985 rcu_dereference_protected(n->next,
2986 lockdep_is_held(&tbl->lock)));
2990 write_unlock(&n->lock);
2992 neigh_cleanup_and_release(n);
2996 EXPORT_SYMBOL(__neigh_for_each_release);
2998 int neigh_xmit(int index, struct net_device *dev,
2999 const void *addr, struct sk_buff *skb)
3001 int err = -EAFNOSUPPORT;
3002 if (likely(index < NEIGH_NR_TABLES)) {
3003 struct neigh_table *tbl;
3004 struct neighbour *neigh;
3006 tbl = neigh_tables[index];
3010 if (index == NEIGH_ARP_TABLE) {
3011 u32 key = *((u32 *)addr);
3013 neigh = __ipv4_neigh_lookup_noref(dev, key);
3015 neigh = __neigh_lookup_noref(tbl, addr, dev);
3018 neigh = __neigh_create(tbl, addr, dev, false);
3019 err = PTR_ERR(neigh);
3020 if (IS_ERR(neigh)) {
3021 rcu_read_unlock_bh();
3024 err = neigh->output(neigh, skb);
3025 rcu_read_unlock_bh();
3027 else if (index == NEIGH_LINK_TABLE) {
3028 err = dev_hard_header(skb, dev, ntohs(skb->protocol),
3029 addr, NULL, skb->len);
3032 err = dev_queue_xmit(skb);
3040 EXPORT_SYMBOL(neigh_xmit);
3042 #ifdef CONFIG_PROC_FS
3044 static struct neighbour *neigh_get_first(struct seq_file *seq)
3046 struct neigh_seq_state *state = seq->private;
3047 struct net *net = seq_file_net(seq);
3048 struct neigh_hash_table *nht = state->nht;
3049 struct neighbour *n = NULL;
3052 state->flags &= ~NEIGH_SEQ_IS_PNEIGH;
3053 for (bucket = 0; bucket < (1 << nht->hash_shift); bucket++) {
3054 n = rcu_dereference_bh(nht->hash_buckets[bucket]);
3057 if (!net_eq(dev_net(n->dev), net))
3059 if (state->neigh_sub_iter) {
3063 v = state->neigh_sub_iter(state, n, &fakep);
3067 if (!(state->flags & NEIGH_SEQ_SKIP_NOARP))
3069 if (n->nud_state & ~NUD_NOARP)
3072 n = rcu_dereference_bh(n->next);
3078 state->bucket = bucket;
3083 static struct neighbour *neigh_get_next(struct seq_file *seq,
3084 struct neighbour *n,
3087 struct neigh_seq_state *state = seq->private;
3088 struct net *net = seq_file_net(seq);
3089 struct neigh_hash_table *nht = state->nht;
3091 if (state->neigh_sub_iter) {
3092 void *v = state->neigh_sub_iter(state, n, pos);
3096 n = rcu_dereference_bh(n->next);
3100 if (!net_eq(dev_net(n->dev), net))
3102 if (state->neigh_sub_iter) {
3103 void *v = state->neigh_sub_iter(state, n, pos);
3108 if (!(state->flags & NEIGH_SEQ_SKIP_NOARP))
3111 if (n->nud_state & ~NUD_NOARP)
3114 n = rcu_dereference_bh(n->next);
3120 if (++state->bucket >= (1 << nht->hash_shift))
3123 n = rcu_dereference_bh(nht->hash_buckets[state->bucket]);
3131 static struct neighbour *neigh_get_idx(struct seq_file *seq, loff_t *pos)
3133 struct neighbour *n = neigh_get_first(seq);
3138 n = neigh_get_next(seq, n, pos);
3143 return *pos ? NULL : n;
3146 static struct pneigh_entry *pneigh_get_first(struct seq_file *seq)
3148 struct neigh_seq_state *state = seq->private;
3149 struct net *net = seq_file_net(seq);
3150 struct neigh_table *tbl = state->tbl;
3151 struct pneigh_entry *pn = NULL;
3154 state->flags |= NEIGH_SEQ_IS_PNEIGH;
3155 for (bucket = 0; bucket <= PNEIGH_HASHMASK; bucket++) {
3156 pn = tbl->phash_buckets[bucket];
3157 while (pn && !net_eq(pneigh_net(pn), net))
3162 state->bucket = bucket;
3167 static struct pneigh_entry *pneigh_get_next(struct seq_file *seq,
3168 struct pneigh_entry *pn,
3171 struct neigh_seq_state *state = seq->private;
3172 struct net *net = seq_file_net(seq);
3173 struct neigh_table *tbl = state->tbl;
3177 } while (pn && !net_eq(pneigh_net(pn), net));
3180 if (++state->bucket > PNEIGH_HASHMASK)
3182 pn = tbl->phash_buckets[state->bucket];
3183 while (pn && !net_eq(pneigh_net(pn), net))
3195 static struct pneigh_entry *pneigh_get_idx(struct seq_file *seq, loff_t *pos)
3197 struct pneigh_entry *pn = pneigh_get_first(seq);
3202 pn = pneigh_get_next(seq, pn, pos);
3207 return *pos ? NULL : pn;
3210 static void *neigh_get_idx_any(struct seq_file *seq, loff_t *pos)
3212 struct neigh_seq_state *state = seq->private;
3214 loff_t idxpos = *pos;
3216 rc = neigh_get_idx(seq, &idxpos);
3217 if (!rc && !(state->flags & NEIGH_SEQ_NEIGH_ONLY))
3218 rc = pneigh_get_idx(seq, &idxpos);
3223 void *neigh_seq_start(struct seq_file *seq, loff_t *pos, struct neigh_table *tbl, unsigned int neigh_seq_flags)
3224 __acquires(tbl->lock)
3227 struct neigh_seq_state *state = seq->private;
3231 state->flags = (neigh_seq_flags & ~NEIGH_SEQ_IS_PNEIGH);
3234 state->nht = rcu_dereference_bh(tbl->nht);
3235 read_lock(&tbl->lock);
3237 return *pos ? neigh_get_idx_any(seq, pos) : SEQ_START_TOKEN;
3239 EXPORT_SYMBOL(neigh_seq_start);
3241 void *neigh_seq_next(struct seq_file *seq, void *v, loff_t *pos)
3243 struct neigh_seq_state *state;
3246 if (v == SEQ_START_TOKEN) {
3247 rc = neigh_get_first(seq);
3251 state = seq->private;
3252 if (!(state->flags & NEIGH_SEQ_IS_PNEIGH)) {
3253 rc = neigh_get_next(seq, v, NULL);
3256 if (!(state->flags & NEIGH_SEQ_NEIGH_ONLY))
3257 rc = pneigh_get_first(seq);
3259 BUG_ON(state->flags & NEIGH_SEQ_NEIGH_ONLY);
3260 rc = pneigh_get_next(seq, v, NULL);
3266 EXPORT_SYMBOL(neigh_seq_next);
3268 void neigh_seq_stop(struct seq_file *seq, void *v)
3269 __releases(tbl->lock)
3272 struct neigh_seq_state *state = seq->private;
3273 struct neigh_table *tbl = state->tbl;
3275 read_unlock(&tbl->lock);
3276 rcu_read_unlock_bh();
3278 EXPORT_SYMBOL(neigh_seq_stop);
3280 /* statistics via seq_file */
3282 static void *neigh_stat_seq_start(struct seq_file *seq, loff_t *pos)
3284 struct neigh_table *tbl = PDE_DATA(file_inode(seq->file));
3288 return SEQ_START_TOKEN;
3290 for (cpu = *pos-1; cpu < nr_cpu_ids; ++cpu) {
3291 if (!cpu_possible(cpu))
3294 return per_cpu_ptr(tbl->stats, cpu);
3299 static void *neigh_stat_seq_next(struct seq_file *seq, void *v, loff_t *pos)
3301 struct neigh_table *tbl = PDE_DATA(file_inode(seq->file));
3304 for (cpu = *pos; cpu < nr_cpu_ids; ++cpu) {
3305 if (!cpu_possible(cpu))
3308 return per_cpu_ptr(tbl->stats, cpu);
3314 static void neigh_stat_seq_stop(struct seq_file *seq, void *v)
3319 static int neigh_stat_seq_show(struct seq_file *seq, void *v)
3321 struct neigh_table *tbl = PDE_DATA(file_inode(seq->file));
3322 struct neigh_statistics *st = v;
3324 if (v == SEQ_START_TOKEN) {
3325 seq_puts(seq, "entries allocs destroys hash_grows lookups hits res_failed rcv_probes_mcast rcv_probes_ucast periodic_gc_runs forced_gc_runs unresolved_discards table_fulls\n");
3329 seq_printf(seq, "%08x %08lx %08lx %08lx %08lx %08lx %08lx "
3330 "%08lx %08lx %08lx "
3331 "%08lx %08lx %08lx\n",
3332 atomic_read(&tbl->entries),
3343 st->rcv_probes_mcast,
3344 st->rcv_probes_ucast,
3346 st->periodic_gc_runs,
3355 static const struct seq_operations neigh_stat_seq_ops = {
3356 .start = neigh_stat_seq_start,
3357 .next = neigh_stat_seq_next,
3358 .stop = neigh_stat_seq_stop,
3359 .show = neigh_stat_seq_show,
3361 #endif /* CONFIG_PROC_FS */
3363 static void __neigh_notify(struct neighbour *n, int type, int flags,
3366 struct net *net = dev_net(n->dev);
3367 struct sk_buff *skb;
3370 skb = nlmsg_new(neigh_nlmsg_size(), GFP_ATOMIC);
3374 err = neigh_fill_info(skb, n, pid, 0, type, flags);
3376 /* -EMSGSIZE implies BUG in neigh_nlmsg_size() */
3377 WARN_ON(err == -EMSGSIZE);
3381 rtnl_notify(skb, net, 0, RTNLGRP_NEIGH, NULL, GFP_ATOMIC);
3385 rtnl_set_sk_err(net, RTNLGRP_NEIGH, err);
3388 void neigh_app_ns(struct neighbour *n)
3390 __neigh_notify(n, RTM_GETNEIGH, NLM_F_REQUEST, 0);
3392 EXPORT_SYMBOL(neigh_app_ns);
3394 #ifdef CONFIG_SYSCTL
3395 static int unres_qlen_max = INT_MAX / SKB_TRUESIZE(ETH_FRAME_LEN);
3397 static int proc_unres_qlen(struct ctl_table *ctl, int write,
3398 void *buffer, size_t *lenp, loff_t *ppos)
3401 struct ctl_table tmp = *ctl;
3403 tmp.extra1 = SYSCTL_ZERO;
3404 tmp.extra2 = &unres_qlen_max;
3407 size = *(int *)ctl->data / SKB_TRUESIZE(ETH_FRAME_LEN);
3408 ret = proc_dointvec_minmax(&tmp, write, buffer, lenp, ppos);
3411 *(int *)ctl->data = size * SKB_TRUESIZE(ETH_FRAME_LEN);
3415 static struct neigh_parms *neigh_get_dev_parms_rcu(struct net_device *dev,
3420 return __in_dev_arp_parms_get_rcu(dev);
3422 return __in6_dev_nd_parms_get_rcu(dev);
3427 static void neigh_copy_dflt_parms(struct net *net, struct neigh_parms *p,
3430 struct net_device *dev;
3431 int family = neigh_parms_family(p);
3434 for_each_netdev_rcu(net, dev) {
3435 struct neigh_parms *dst_p =
3436 neigh_get_dev_parms_rcu(dev, family);
3438 if (dst_p && !test_bit(index, dst_p->data_state))
3439 dst_p->data[index] = p->data[index];
3444 static void neigh_proc_update(struct ctl_table *ctl, int write)
3446 struct net_device *dev = ctl->extra1;
3447 struct neigh_parms *p = ctl->extra2;
3448 struct net *net = neigh_parms_net(p);
3449 int index = (int *) ctl->data - p->data;
3454 set_bit(index, p->data_state);
3455 if (index == NEIGH_VAR_DELAY_PROBE_TIME)
3456 call_netevent_notifiers(NETEVENT_DELAY_PROBE_TIME_UPDATE, p);
3457 if (!dev) /* NULL dev means this is default value */
3458 neigh_copy_dflt_parms(net, p, index);
3461 static int neigh_proc_dointvec_zero_intmax(struct ctl_table *ctl, int write,
3462 void *buffer, size_t *lenp,
3465 struct ctl_table tmp = *ctl;
3468 tmp.extra1 = SYSCTL_ZERO;
3469 tmp.extra2 = SYSCTL_INT_MAX;
3471 ret = proc_dointvec_minmax(&tmp, write, buffer, lenp, ppos);
3472 neigh_proc_update(ctl, write);
3476 int neigh_proc_dointvec(struct ctl_table *ctl, int write, void *buffer,
3477 size_t *lenp, loff_t *ppos)
3479 int ret = proc_dointvec(ctl, write, buffer, lenp, ppos);
3481 neigh_proc_update(ctl, write);
3484 EXPORT_SYMBOL(neigh_proc_dointvec);
3486 int neigh_proc_dointvec_jiffies(struct ctl_table *ctl, int write, void *buffer,
3487 size_t *lenp, loff_t *ppos)
3489 int ret = proc_dointvec_jiffies(ctl, write, buffer, lenp, ppos);
3491 neigh_proc_update(ctl, write);
3494 EXPORT_SYMBOL(neigh_proc_dointvec_jiffies);
3496 static int neigh_proc_dointvec_userhz_jiffies(struct ctl_table *ctl, int write,
3497 void *buffer, size_t *lenp,
3500 int ret = proc_dointvec_userhz_jiffies(ctl, write, buffer, lenp, ppos);
3502 neigh_proc_update(ctl, write);
3506 int neigh_proc_dointvec_ms_jiffies(struct ctl_table *ctl, int write,
3507 void *buffer, size_t *lenp, loff_t *ppos)
3509 int ret = proc_dointvec_ms_jiffies(ctl, write, buffer, lenp, ppos);
3511 neigh_proc_update(ctl, write);
3514 EXPORT_SYMBOL(neigh_proc_dointvec_ms_jiffies);
3516 static int neigh_proc_dointvec_unres_qlen(struct ctl_table *ctl, int write,
3517 void *buffer, size_t *lenp,
3520 int ret = proc_unres_qlen(ctl, write, buffer, lenp, ppos);
3522 neigh_proc_update(ctl, write);
3526 static int neigh_proc_base_reachable_time(struct ctl_table *ctl, int write,
3527 void *buffer, size_t *lenp,
3530 struct neigh_parms *p = ctl->extra2;
3533 if (strcmp(ctl->procname, "base_reachable_time") == 0)
3534 ret = neigh_proc_dointvec_jiffies(ctl, write, buffer, lenp, ppos);
3535 else if (strcmp(ctl->procname, "base_reachable_time_ms") == 0)
3536 ret = neigh_proc_dointvec_ms_jiffies(ctl, write, buffer, lenp, ppos);
3540 if (write && ret == 0) {
3541 /* update reachable_time as well, otherwise, the change will
3542 * only be effective after the next time neigh_periodic_work
3543 * decides to recompute it
3546 neigh_rand_reach_time(NEIGH_VAR(p, BASE_REACHABLE_TIME));
3551 #define NEIGH_PARMS_DATA_OFFSET(index) \
3552 (&((struct neigh_parms *) 0)->data[index])
3554 #define NEIGH_SYSCTL_ENTRY(attr, data_attr, name, mval, proc) \
3555 [NEIGH_VAR_ ## attr] = { \
3557 .data = NEIGH_PARMS_DATA_OFFSET(NEIGH_VAR_ ## data_attr), \
3558 .maxlen = sizeof(int), \
3560 .proc_handler = proc, \
3563 #define NEIGH_SYSCTL_ZERO_INTMAX_ENTRY(attr, name) \
3564 NEIGH_SYSCTL_ENTRY(attr, attr, name, 0644, neigh_proc_dointvec_zero_intmax)
3566 #define NEIGH_SYSCTL_JIFFIES_ENTRY(attr, name) \
3567 NEIGH_SYSCTL_ENTRY(attr, attr, name, 0644, neigh_proc_dointvec_jiffies)
3569 #define NEIGH_SYSCTL_USERHZ_JIFFIES_ENTRY(attr, name) \
3570 NEIGH_SYSCTL_ENTRY(attr, attr, name, 0644, neigh_proc_dointvec_userhz_jiffies)
3572 #define NEIGH_SYSCTL_MS_JIFFIES_REUSED_ENTRY(attr, data_attr, name) \
3573 NEIGH_SYSCTL_ENTRY(attr, data_attr, name, 0644, neigh_proc_dointvec_ms_jiffies)
3575 #define NEIGH_SYSCTL_UNRES_QLEN_REUSED_ENTRY(attr, data_attr, name) \
3576 NEIGH_SYSCTL_ENTRY(attr, data_attr, name, 0644, neigh_proc_dointvec_unres_qlen)
3578 static struct neigh_sysctl_table {
3579 struct ctl_table_header *sysctl_header;
3580 struct ctl_table neigh_vars[NEIGH_VAR_MAX + 1];
3581 } neigh_sysctl_template __read_mostly = {
3583 NEIGH_SYSCTL_ZERO_INTMAX_ENTRY(MCAST_PROBES, "mcast_solicit"),
3584 NEIGH_SYSCTL_ZERO_INTMAX_ENTRY(UCAST_PROBES, "ucast_solicit"),
3585 NEIGH_SYSCTL_ZERO_INTMAX_ENTRY(APP_PROBES, "app_solicit"),
3586 NEIGH_SYSCTL_ZERO_INTMAX_ENTRY(MCAST_REPROBES, "mcast_resolicit"),
3587 NEIGH_SYSCTL_USERHZ_JIFFIES_ENTRY(RETRANS_TIME, "retrans_time"),
3588 NEIGH_SYSCTL_JIFFIES_ENTRY(BASE_REACHABLE_TIME, "base_reachable_time"),
3589 NEIGH_SYSCTL_JIFFIES_ENTRY(DELAY_PROBE_TIME, "delay_first_probe_time"),
3590 NEIGH_SYSCTL_JIFFIES_ENTRY(GC_STALETIME, "gc_stale_time"),
3591 NEIGH_SYSCTL_ZERO_INTMAX_ENTRY(QUEUE_LEN_BYTES, "unres_qlen_bytes"),
3592 NEIGH_SYSCTL_ZERO_INTMAX_ENTRY(PROXY_QLEN, "proxy_qlen"),
3593 NEIGH_SYSCTL_USERHZ_JIFFIES_ENTRY(ANYCAST_DELAY, "anycast_delay"),
3594 NEIGH_SYSCTL_USERHZ_JIFFIES_ENTRY(PROXY_DELAY, "proxy_delay"),
3595 NEIGH_SYSCTL_USERHZ_JIFFIES_ENTRY(LOCKTIME, "locktime"),
3596 NEIGH_SYSCTL_UNRES_QLEN_REUSED_ENTRY(QUEUE_LEN, QUEUE_LEN_BYTES, "unres_qlen"),
3597 NEIGH_SYSCTL_MS_JIFFIES_REUSED_ENTRY(RETRANS_TIME_MS, RETRANS_TIME, "retrans_time_ms"),
3598 NEIGH_SYSCTL_MS_JIFFIES_REUSED_ENTRY(BASE_REACHABLE_TIME_MS, BASE_REACHABLE_TIME, "base_reachable_time_ms"),
3599 [NEIGH_VAR_GC_INTERVAL] = {
3600 .procname = "gc_interval",
3601 .maxlen = sizeof(int),
3603 .proc_handler = proc_dointvec_jiffies,
3605 [NEIGH_VAR_GC_THRESH1] = {
3606 .procname = "gc_thresh1",
3607 .maxlen = sizeof(int),
3609 .extra1 = SYSCTL_ZERO,
3610 .extra2 = SYSCTL_INT_MAX,
3611 .proc_handler = proc_dointvec_minmax,
3613 [NEIGH_VAR_GC_THRESH2] = {
3614 .procname = "gc_thresh2",
3615 .maxlen = sizeof(int),
3617 .extra1 = SYSCTL_ZERO,
3618 .extra2 = SYSCTL_INT_MAX,
3619 .proc_handler = proc_dointvec_minmax,
3621 [NEIGH_VAR_GC_THRESH3] = {
3622 .procname = "gc_thresh3",
3623 .maxlen = sizeof(int),
3625 .extra1 = SYSCTL_ZERO,
3626 .extra2 = SYSCTL_INT_MAX,
3627 .proc_handler = proc_dointvec_minmax,
3633 int neigh_sysctl_register(struct net_device *dev, struct neigh_parms *p,
3634 proc_handler *handler)
3637 struct neigh_sysctl_table *t;
3638 const char *dev_name_source;
3639 char neigh_path[ sizeof("net//neigh/") + IFNAMSIZ + IFNAMSIZ ];
3642 t = kmemdup(&neigh_sysctl_template, sizeof(*t), GFP_KERNEL);
3646 for (i = 0; i < NEIGH_VAR_GC_INTERVAL; i++) {
3647 t->neigh_vars[i].data += (long) p;
3648 t->neigh_vars[i].extra1 = dev;
3649 t->neigh_vars[i].extra2 = p;
3653 dev_name_source = dev->name;
3654 /* Terminate the table early */
3655 memset(&t->neigh_vars[NEIGH_VAR_GC_INTERVAL], 0,
3656 sizeof(t->neigh_vars[NEIGH_VAR_GC_INTERVAL]));
3658 struct neigh_table *tbl = p->tbl;
3659 dev_name_source = "default";
3660 t->neigh_vars[NEIGH_VAR_GC_INTERVAL].data = &tbl->gc_interval;
3661 t->neigh_vars[NEIGH_VAR_GC_THRESH1].data = &tbl->gc_thresh1;
3662 t->neigh_vars[NEIGH_VAR_GC_THRESH2].data = &tbl->gc_thresh2;
3663 t->neigh_vars[NEIGH_VAR_GC_THRESH3].data = &tbl->gc_thresh3;
3668 t->neigh_vars[NEIGH_VAR_RETRANS_TIME].proc_handler = handler;
3670 t->neigh_vars[NEIGH_VAR_BASE_REACHABLE_TIME].proc_handler = handler;
3671 /* RetransTime (in milliseconds)*/
3672 t->neigh_vars[NEIGH_VAR_RETRANS_TIME_MS].proc_handler = handler;
3673 /* ReachableTime (in milliseconds) */
3674 t->neigh_vars[NEIGH_VAR_BASE_REACHABLE_TIME_MS].proc_handler = handler;
3676 /* Those handlers will update p->reachable_time after
3677 * base_reachable_time(_ms) is set to ensure the new timer starts being
3678 * applied after the next neighbour update instead of waiting for
3679 * neigh_periodic_work to update its value (can be multiple minutes)
3680 * So any handler that replaces them should do this as well
3683 t->neigh_vars[NEIGH_VAR_BASE_REACHABLE_TIME].proc_handler =
3684 neigh_proc_base_reachable_time;
3685 /* ReachableTime (in milliseconds) */
3686 t->neigh_vars[NEIGH_VAR_BASE_REACHABLE_TIME_MS].proc_handler =
3687 neigh_proc_base_reachable_time;
3690 /* Don't export sysctls to unprivileged users */
3691 if (neigh_parms_net(p)->user_ns != &init_user_ns)
3692 t->neigh_vars[0].procname = NULL;
3694 switch (neigh_parms_family(p)) {
3705 snprintf(neigh_path, sizeof(neigh_path), "net/%s/neigh/%s",
3706 p_name, dev_name_source);
3708 register_net_sysctl(neigh_parms_net(p), neigh_path, t->neigh_vars);
3709 if (!t->sysctl_header)
3712 p->sysctl_table = t;
3720 EXPORT_SYMBOL(neigh_sysctl_register);
3722 void neigh_sysctl_unregister(struct neigh_parms *p)
3724 if (p->sysctl_table) {
3725 struct neigh_sysctl_table *t = p->sysctl_table;
3726 p->sysctl_table = NULL;
3727 unregister_net_sysctl_table(t->sysctl_header);
3731 EXPORT_SYMBOL(neigh_sysctl_unregister);
3733 #endif /* CONFIG_SYSCTL */
3735 static int __init neigh_init(void)
3737 rtnl_register(PF_UNSPEC, RTM_NEWNEIGH, neigh_add, NULL, 0);
3738 rtnl_register(PF_UNSPEC, RTM_DELNEIGH, neigh_delete, NULL, 0);
3739 rtnl_register(PF_UNSPEC, RTM_GETNEIGH, neigh_get, neigh_dump_info, 0);
3741 rtnl_register(PF_UNSPEC, RTM_GETNEIGHTBL, NULL, neightbl_dump_info,
3743 rtnl_register(PF_UNSPEC, RTM_SETNEIGHTBL, neightbl_set, NULL, 0);
3748 subsys_initcall(neigh_init);