Btrfs: fix list transaction->pending_ordered corruption
[linux/fpc-iii.git] / net / core / neighbour.c
blob0478423afd29ca628b2591614ee35c814a62e45a
1 /*
2 * Generic address resolution entity
4 * Authors:
5 * Pedro Roque <roque@di.fc.ul.pt>
6 * Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License
10 * as published by the Free Software Foundation; either version
11 * 2 of the License, or (at your option) any later version.
13 * Fixes:
14 * Vitaly E. Lavrov releasing NULL neighbor in neigh_add.
15 * Harald Welte Add neighbour cache statistics like rtstat
18 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
20 #include <linux/slab.h>
21 #include <linux/types.h>
22 #include <linux/kernel.h>
23 #include <linux/module.h>
24 #include <linux/socket.h>
25 #include <linux/netdevice.h>
26 #include <linux/proc_fs.h>
27 #ifdef CONFIG_SYSCTL
28 #include <linux/sysctl.h>
29 #endif
30 #include <linux/times.h>
31 #include <net/net_namespace.h>
32 #include <net/neighbour.h>
33 #include <net/dst.h>
34 #include <net/sock.h>
35 #include <net/netevent.h>
36 #include <net/netlink.h>
37 #include <linux/rtnetlink.h>
38 #include <linux/random.h>
39 #include <linux/string.h>
40 #include <linux/log2.h>
41 #include <linux/inetdevice.h>
42 #include <net/addrconf.h>
44 #define DEBUG
45 #define NEIGH_DEBUG 1
46 #define neigh_dbg(level, fmt, ...) \
47 do { \
48 if (level <= NEIGH_DEBUG) \
49 pr_debug(fmt, ##__VA_ARGS__); \
50 } while (0)
52 #define PNEIGH_HASHMASK 0xF
54 static void neigh_timer_handler(unsigned long arg);
55 static void __neigh_notify(struct neighbour *n, int type, int flags);
56 static void neigh_update_notify(struct neighbour *neigh);
57 static int pneigh_ifdown(struct neigh_table *tbl, struct net_device *dev);
59 static struct neigh_table *neigh_tables;
60 #ifdef CONFIG_PROC_FS
61 static const struct file_operations neigh_stat_seq_fops;
62 #endif
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
71 cache.
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:
83 - timer
84 - resolution queue
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.
91 The last lock is neigh_tbl_lock. It is pure SMP lock, protecting
92 list of neighbour tables. This list is used only in process context,
95 static DEFINE_RWLOCK(neigh_tbl_lock);
97 static int neigh_blackhole(struct neighbour *neigh, struct sk_buff *skb)
99 kfree_skb(skb);
100 return -ENETDOWN;
103 static void neigh_cleanup_and_release(struct neighbour *neigh)
105 if (neigh->parms->neigh_cleanup)
106 neigh->parms->neigh_cleanup(neigh);
108 __neigh_notify(neigh, RTM_DELNEIGH, 0);
109 neigh_release(neigh);
113 * It is random distribution in the interval (1/2)*base...(3/2)*base.
114 * It corresponds to default IPv6 settings and is not overridable,
115 * because it is really reasonable choice.
118 unsigned long neigh_rand_reach_time(unsigned long base)
120 return base ? (prandom_u32() % base) + (base >> 1) : 0;
122 EXPORT_SYMBOL(neigh_rand_reach_time);
125 static int neigh_forced_gc(struct neigh_table *tbl)
127 int shrunk = 0;
128 int i;
129 struct neigh_hash_table *nht;
131 NEIGH_CACHE_STAT_INC(tbl, forced_gc_runs);
133 write_lock_bh(&tbl->lock);
134 nht = rcu_dereference_protected(tbl->nht,
135 lockdep_is_held(&tbl->lock));
136 for (i = 0; i < (1 << nht->hash_shift); i++) {
137 struct neighbour *n;
138 struct neighbour __rcu **np;
140 np = &nht->hash_buckets[i];
141 while ((n = rcu_dereference_protected(*np,
142 lockdep_is_held(&tbl->lock))) != NULL) {
143 /* Neighbour record may be discarded if:
144 * - nobody refers to it.
145 * - it is not permanent
147 write_lock(&n->lock);
148 if (atomic_read(&n->refcnt) == 1 &&
149 !(n->nud_state & NUD_PERMANENT)) {
150 rcu_assign_pointer(*np,
151 rcu_dereference_protected(n->next,
152 lockdep_is_held(&tbl->lock)));
153 n->dead = 1;
154 shrunk = 1;
155 write_unlock(&n->lock);
156 neigh_cleanup_and_release(n);
157 continue;
159 write_unlock(&n->lock);
160 np = &n->next;
164 tbl->last_flush = jiffies;
166 write_unlock_bh(&tbl->lock);
168 return shrunk;
171 static void neigh_add_timer(struct neighbour *n, unsigned long when)
173 neigh_hold(n);
174 if (unlikely(mod_timer(&n->timer, when))) {
175 printk("NEIGH: BUG, double timer add, state is %x\n",
176 n->nud_state);
177 dump_stack();
181 static int neigh_del_timer(struct neighbour *n)
183 if ((n->nud_state & NUD_IN_TIMER) &&
184 del_timer(&n->timer)) {
185 neigh_release(n);
186 return 1;
188 return 0;
191 static void pneigh_queue_purge(struct sk_buff_head *list)
193 struct sk_buff *skb;
195 while ((skb = skb_dequeue(list)) != NULL) {
196 dev_put(skb->dev);
197 kfree_skb(skb);
201 static void neigh_flush_dev(struct neigh_table *tbl, struct net_device *dev)
203 int i;
204 struct neigh_hash_table *nht;
206 nht = rcu_dereference_protected(tbl->nht,
207 lockdep_is_held(&tbl->lock));
209 for (i = 0; i < (1 << nht->hash_shift); i++) {
210 struct neighbour *n;
211 struct neighbour __rcu **np = &nht->hash_buckets[i];
213 while ((n = rcu_dereference_protected(*np,
214 lockdep_is_held(&tbl->lock))) != NULL) {
215 if (dev && n->dev != dev) {
216 np = &n->next;
217 continue;
219 rcu_assign_pointer(*np,
220 rcu_dereference_protected(n->next,
221 lockdep_is_held(&tbl->lock)));
222 write_lock(&n->lock);
223 neigh_del_timer(n);
224 n->dead = 1;
226 if (atomic_read(&n->refcnt) != 1) {
227 /* The most unpleasant situation.
228 We must destroy neighbour entry,
229 but someone still uses it.
231 The destroy will be delayed until
232 the last user releases us, but
233 we must kill timers etc. and move
234 it to safe state.
236 __skb_queue_purge(&n->arp_queue);
237 n->arp_queue_len_bytes = 0;
238 n->output = neigh_blackhole;
239 if (n->nud_state & NUD_VALID)
240 n->nud_state = NUD_NOARP;
241 else
242 n->nud_state = NUD_NONE;
243 neigh_dbg(2, "neigh %p is stray\n", n);
245 write_unlock(&n->lock);
246 neigh_cleanup_and_release(n);
251 void neigh_changeaddr(struct neigh_table *tbl, struct net_device *dev)
253 write_lock_bh(&tbl->lock);
254 neigh_flush_dev(tbl, dev);
255 write_unlock_bh(&tbl->lock);
257 EXPORT_SYMBOL(neigh_changeaddr);
259 int neigh_ifdown(struct neigh_table *tbl, struct net_device *dev)
261 write_lock_bh(&tbl->lock);
262 neigh_flush_dev(tbl, dev);
263 pneigh_ifdown(tbl, dev);
264 write_unlock_bh(&tbl->lock);
266 del_timer_sync(&tbl->proxy_timer);
267 pneigh_queue_purge(&tbl->proxy_queue);
268 return 0;
270 EXPORT_SYMBOL(neigh_ifdown);
272 static struct neighbour *neigh_alloc(struct neigh_table *tbl, struct net_device *dev)
274 struct neighbour *n = NULL;
275 unsigned long now = jiffies;
276 int entries;
278 entries = atomic_inc_return(&tbl->entries) - 1;
279 if (entries >= tbl->gc_thresh3 ||
280 (entries >= tbl->gc_thresh2 &&
281 time_after(now, tbl->last_flush + 5 * HZ))) {
282 if (!neigh_forced_gc(tbl) &&
283 entries >= tbl->gc_thresh3)
284 goto out_entries;
287 n = kzalloc(tbl->entry_size + dev->neigh_priv_len, GFP_ATOMIC);
288 if (!n)
289 goto out_entries;
291 __skb_queue_head_init(&n->arp_queue);
292 rwlock_init(&n->lock);
293 seqlock_init(&n->ha_lock);
294 n->updated = n->used = now;
295 n->nud_state = NUD_NONE;
296 n->output = neigh_blackhole;
297 seqlock_init(&n->hh.hh_lock);
298 n->parms = neigh_parms_clone(&tbl->parms);
299 setup_timer(&n->timer, neigh_timer_handler, (unsigned long)n);
301 NEIGH_CACHE_STAT_INC(tbl, allocs);
302 n->tbl = tbl;
303 atomic_set(&n->refcnt, 1);
304 n->dead = 1;
305 out:
306 return n;
308 out_entries:
309 atomic_dec(&tbl->entries);
310 goto out;
313 static void neigh_get_hash_rnd(u32 *x)
315 get_random_bytes(x, sizeof(*x));
316 *x |= 1;
319 static struct neigh_hash_table *neigh_hash_alloc(unsigned int shift)
321 size_t size = (1 << shift) * sizeof(struct neighbour *);
322 struct neigh_hash_table *ret;
323 struct neighbour __rcu **buckets;
324 int i;
326 ret = kmalloc(sizeof(*ret), GFP_ATOMIC);
327 if (!ret)
328 return NULL;
329 if (size <= PAGE_SIZE)
330 buckets = kzalloc(size, GFP_ATOMIC);
331 else
332 buckets = (struct neighbour __rcu **)
333 __get_free_pages(GFP_ATOMIC | __GFP_ZERO,
334 get_order(size));
335 if (!buckets) {
336 kfree(ret);
337 return NULL;
339 ret->hash_buckets = buckets;
340 ret->hash_shift = shift;
341 for (i = 0; i < NEIGH_NUM_HASH_RND; i++)
342 neigh_get_hash_rnd(&ret->hash_rnd[i]);
343 return ret;
346 static void neigh_hash_free_rcu(struct rcu_head *head)
348 struct neigh_hash_table *nht = container_of(head,
349 struct neigh_hash_table,
350 rcu);
351 size_t size = (1 << nht->hash_shift) * sizeof(struct neighbour *);
352 struct neighbour __rcu **buckets = nht->hash_buckets;
354 if (size <= PAGE_SIZE)
355 kfree(buckets);
356 else
357 free_pages((unsigned long)buckets, get_order(size));
358 kfree(nht);
361 static struct neigh_hash_table *neigh_hash_grow(struct neigh_table *tbl,
362 unsigned long new_shift)
364 unsigned int i, hash;
365 struct neigh_hash_table *new_nht, *old_nht;
367 NEIGH_CACHE_STAT_INC(tbl, hash_grows);
369 old_nht = rcu_dereference_protected(tbl->nht,
370 lockdep_is_held(&tbl->lock));
371 new_nht = neigh_hash_alloc(new_shift);
372 if (!new_nht)
373 return old_nht;
375 for (i = 0; i < (1 << old_nht->hash_shift); i++) {
376 struct neighbour *n, *next;
378 for (n = rcu_dereference_protected(old_nht->hash_buckets[i],
379 lockdep_is_held(&tbl->lock));
380 n != NULL;
381 n = next) {
382 hash = tbl->hash(n->primary_key, n->dev,
383 new_nht->hash_rnd);
385 hash >>= (32 - new_nht->hash_shift);
386 next = rcu_dereference_protected(n->next,
387 lockdep_is_held(&tbl->lock));
389 rcu_assign_pointer(n->next,
390 rcu_dereference_protected(
391 new_nht->hash_buckets[hash],
392 lockdep_is_held(&tbl->lock)));
393 rcu_assign_pointer(new_nht->hash_buckets[hash], n);
397 rcu_assign_pointer(tbl->nht, new_nht);
398 call_rcu(&old_nht->rcu, neigh_hash_free_rcu);
399 return new_nht;
402 struct neighbour *neigh_lookup(struct neigh_table *tbl, const void *pkey,
403 struct net_device *dev)
405 struct neighbour *n;
406 int key_len = tbl->key_len;
407 u32 hash_val;
408 struct neigh_hash_table *nht;
410 NEIGH_CACHE_STAT_INC(tbl, lookups);
412 rcu_read_lock_bh();
413 nht = rcu_dereference_bh(tbl->nht);
414 hash_val = tbl->hash(pkey, dev, nht->hash_rnd) >> (32 - nht->hash_shift);
416 for (n = rcu_dereference_bh(nht->hash_buckets[hash_val]);
417 n != NULL;
418 n = rcu_dereference_bh(n->next)) {
419 if (dev == n->dev && !memcmp(n->primary_key, pkey, key_len)) {
420 if (!atomic_inc_not_zero(&n->refcnt))
421 n = NULL;
422 NEIGH_CACHE_STAT_INC(tbl, hits);
423 break;
427 rcu_read_unlock_bh();
428 return n;
430 EXPORT_SYMBOL(neigh_lookup);
432 struct neighbour *neigh_lookup_nodev(struct neigh_table *tbl, struct net *net,
433 const void *pkey)
435 struct neighbour *n;
436 int key_len = tbl->key_len;
437 u32 hash_val;
438 struct neigh_hash_table *nht;
440 NEIGH_CACHE_STAT_INC(tbl, lookups);
442 rcu_read_lock_bh();
443 nht = rcu_dereference_bh(tbl->nht);
444 hash_val = tbl->hash(pkey, NULL, nht->hash_rnd) >> (32 - nht->hash_shift);
446 for (n = rcu_dereference_bh(nht->hash_buckets[hash_val]);
447 n != NULL;
448 n = rcu_dereference_bh(n->next)) {
449 if (!memcmp(n->primary_key, pkey, key_len) &&
450 net_eq(dev_net(n->dev), net)) {
451 if (!atomic_inc_not_zero(&n->refcnt))
452 n = NULL;
453 NEIGH_CACHE_STAT_INC(tbl, hits);
454 break;
458 rcu_read_unlock_bh();
459 return n;
461 EXPORT_SYMBOL(neigh_lookup_nodev);
463 struct neighbour *__neigh_create(struct neigh_table *tbl, const void *pkey,
464 struct net_device *dev, bool want_ref)
466 u32 hash_val;
467 int key_len = tbl->key_len;
468 int error;
469 struct neighbour *n1, *rc, *n = neigh_alloc(tbl, dev);
470 struct neigh_hash_table *nht;
472 if (!n) {
473 rc = ERR_PTR(-ENOBUFS);
474 goto out;
477 memcpy(n->primary_key, pkey, key_len);
478 n->dev = dev;
479 dev_hold(dev);
481 /* Protocol specific setup. */
482 if (tbl->constructor && (error = tbl->constructor(n)) < 0) {
483 rc = ERR_PTR(error);
484 goto out_neigh_release;
487 if (dev->netdev_ops->ndo_neigh_construct) {
488 error = dev->netdev_ops->ndo_neigh_construct(n);
489 if (error < 0) {
490 rc = ERR_PTR(error);
491 goto out_neigh_release;
495 /* Device specific setup. */
496 if (n->parms->neigh_setup &&
497 (error = n->parms->neigh_setup(n)) < 0) {
498 rc = ERR_PTR(error);
499 goto out_neigh_release;
502 n->confirmed = jiffies - (NEIGH_VAR(n->parms, BASE_REACHABLE_TIME) << 1);
504 write_lock_bh(&tbl->lock);
505 nht = rcu_dereference_protected(tbl->nht,
506 lockdep_is_held(&tbl->lock));
508 if (atomic_read(&tbl->entries) > (1 << nht->hash_shift))
509 nht = neigh_hash_grow(tbl, nht->hash_shift + 1);
511 hash_val = tbl->hash(pkey, dev, nht->hash_rnd) >> (32 - nht->hash_shift);
513 if (n->parms->dead) {
514 rc = ERR_PTR(-EINVAL);
515 goto out_tbl_unlock;
518 for (n1 = rcu_dereference_protected(nht->hash_buckets[hash_val],
519 lockdep_is_held(&tbl->lock));
520 n1 != NULL;
521 n1 = rcu_dereference_protected(n1->next,
522 lockdep_is_held(&tbl->lock))) {
523 if (dev == n1->dev && !memcmp(n1->primary_key, pkey, key_len)) {
524 if (want_ref)
525 neigh_hold(n1);
526 rc = n1;
527 goto out_tbl_unlock;
531 n->dead = 0;
532 if (want_ref)
533 neigh_hold(n);
534 rcu_assign_pointer(n->next,
535 rcu_dereference_protected(nht->hash_buckets[hash_val],
536 lockdep_is_held(&tbl->lock)));
537 rcu_assign_pointer(nht->hash_buckets[hash_val], n);
538 write_unlock_bh(&tbl->lock);
539 neigh_dbg(2, "neigh %p is created\n", n);
540 rc = n;
541 out:
542 return rc;
543 out_tbl_unlock:
544 write_unlock_bh(&tbl->lock);
545 out_neigh_release:
546 neigh_release(n);
547 goto out;
549 EXPORT_SYMBOL(__neigh_create);
551 static u32 pneigh_hash(const void *pkey, int key_len)
553 u32 hash_val = *(u32 *)(pkey + key_len - 4);
554 hash_val ^= (hash_val >> 16);
555 hash_val ^= hash_val >> 8;
556 hash_val ^= hash_val >> 4;
557 hash_val &= PNEIGH_HASHMASK;
558 return hash_val;
561 static struct pneigh_entry *__pneigh_lookup_1(struct pneigh_entry *n,
562 struct net *net,
563 const void *pkey,
564 int key_len,
565 struct net_device *dev)
567 while (n) {
568 if (!memcmp(n->key, pkey, key_len) &&
569 net_eq(pneigh_net(n), net) &&
570 (n->dev == dev || !n->dev))
571 return n;
572 n = n->next;
574 return NULL;
577 struct pneigh_entry *__pneigh_lookup(struct neigh_table *tbl,
578 struct net *net, const void *pkey, struct net_device *dev)
580 int key_len = tbl->key_len;
581 u32 hash_val = pneigh_hash(pkey, key_len);
583 return __pneigh_lookup_1(tbl->phash_buckets[hash_val],
584 net, pkey, key_len, dev);
586 EXPORT_SYMBOL_GPL(__pneigh_lookup);
588 struct pneigh_entry * pneigh_lookup(struct neigh_table *tbl,
589 struct net *net, const void *pkey,
590 struct net_device *dev, int creat)
592 struct pneigh_entry *n;
593 int key_len = tbl->key_len;
594 u32 hash_val = pneigh_hash(pkey, key_len);
596 read_lock_bh(&tbl->lock);
597 n = __pneigh_lookup_1(tbl->phash_buckets[hash_val],
598 net, pkey, key_len, dev);
599 read_unlock_bh(&tbl->lock);
601 if (n || !creat)
602 goto out;
604 ASSERT_RTNL();
606 n = kmalloc(sizeof(*n) + key_len, GFP_KERNEL);
607 if (!n)
608 goto out;
610 write_pnet(&n->net, hold_net(net));
611 memcpy(n->key, pkey, key_len);
612 n->dev = dev;
613 if (dev)
614 dev_hold(dev);
616 if (tbl->pconstructor && tbl->pconstructor(n)) {
617 if (dev)
618 dev_put(dev);
619 release_net(net);
620 kfree(n);
621 n = NULL;
622 goto out;
625 write_lock_bh(&tbl->lock);
626 n->next = tbl->phash_buckets[hash_val];
627 tbl->phash_buckets[hash_val] = n;
628 write_unlock_bh(&tbl->lock);
629 out:
630 return n;
632 EXPORT_SYMBOL(pneigh_lookup);
635 int pneigh_delete(struct neigh_table *tbl, struct net *net, const void *pkey,
636 struct net_device *dev)
638 struct pneigh_entry *n, **np;
639 int key_len = tbl->key_len;
640 u32 hash_val = pneigh_hash(pkey, key_len);
642 write_lock_bh(&tbl->lock);
643 for (np = &tbl->phash_buckets[hash_val]; (n = *np) != NULL;
644 np = &n->next) {
645 if (!memcmp(n->key, pkey, key_len) && n->dev == dev &&
646 net_eq(pneigh_net(n), net)) {
647 *np = n->next;
648 write_unlock_bh(&tbl->lock);
649 if (tbl->pdestructor)
650 tbl->pdestructor(n);
651 if (n->dev)
652 dev_put(n->dev);
653 release_net(pneigh_net(n));
654 kfree(n);
655 return 0;
658 write_unlock_bh(&tbl->lock);
659 return -ENOENT;
662 static int pneigh_ifdown(struct neigh_table *tbl, struct net_device *dev)
664 struct pneigh_entry *n, **np;
665 u32 h;
667 for (h = 0; h <= PNEIGH_HASHMASK; h++) {
668 np = &tbl->phash_buckets[h];
669 while ((n = *np) != NULL) {
670 if (!dev || n->dev == dev) {
671 *np = n->next;
672 if (tbl->pdestructor)
673 tbl->pdestructor(n);
674 if (n->dev)
675 dev_put(n->dev);
676 release_net(pneigh_net(n));
677 kfree(n);
678 continue;
680 np = &n->next;
683 return -ENOENT;
686 static void neigh_parms_destroy(struct neigh_parms *parms);
688 static inline void neigh_parms_put(struct neigh_parms *parms)
690 if (atomic_dec_and_test(&parms->refcnt))
691 neigh_parms_destroy(parms);
695 * neighbour must already be out of the table;
698 void neigh_destroy(struct neighbour *neigh)
700 struct net_device *dev = neigh->dev;
702 NEIGH_CACHE_STAT_INC(neigh->tbl, destroys);
704 if (!neigh->dead) {
705 pr_warn("Destroying alive neighbour %p\n", neigh);
706 dump_stack();
707 return;
710 if (neigh_del_timer(neigh))
711 pr_warn("Impossible event\n");
713 write_lock_bh(&neigh->lock);
714 __skb_queue_purge(&neigh->arp_queue);
715 write_unlock_bh(&neigh->lock);
716 neigh->arp_queue_len_bytes = 0;
718 if (dev->netdev_ops->ndo_neigh_destroy)
719 dev->netdev_ops->ndo_neigh_destroy(neigh);
721 dev_put(dev);
722 neigh_parms_put(neigh->parms);
724 neigh_dbg(2, "neigh %p is destroyed\n", neigh);
726 atomic_dec(&neigh->tbl->entries);
727 kfree_rcu(neigh, rcu);
729 EXPORT_SYMBOL(neigh_destroy);
731 /* Neighbour state is suspicious;
732 disable fast path.
734 Called with write_locked neigh.
736 static void neigh_suspect(struct neighbour *neigh)
738 neigh_dbg(2, "neigh %p is suspected\n", neigh);
740 neigh->output = neigh->ops->output;
743 /* Neighbour state is OK;
744 enable fast path.
746 Called with write_locked neigh.
748 static void neigh_connect(struct neighbour *neigh)
750 neigh_dbg(2, "neigh %p is connected\n", neigh);
752 neigh->output = neigh->ops->connected_output;
755 static void neigh_periodic_work(struct work_struct *work)
757 struct neigh_table *tbl = container_of(work, struct neigh_table, gc_work.work);
758 struct neighbour *n;
759 struct neighbour __rcu **np;
760 unsigned int i;
761 struct neigh_hash_table *nht;
763 NEIGH_CACHE_STAT_INC(tbl, periodic_gc_runs);
765 write_lock_bh(&tbl->lock);
766 nht = rcu_dereference_protected(tbl->nht,
767 lockdep_is_held(&tbl->lock));
770 * periodically recompute ReachableTime from random function
773 if (time_after(jiffies, tbl->last_rand + 300 * HZ)) {
774 struct neigh_parms *p;
775 tbl->last_rand = jiffies;
776 for (p = &tbl->parms; p; p = p->next)
777 p->reachable_time =
778 neigh_rand_reach_time(NEIGH_VAR(p, BASE_REACHABLE_TIME));
781 if (atomic_read(&tbl->entries) < tbl->gc_thresh1)
782 goto out;
784 for (i = 0 ; i < (1 << nht->hash_shift); i++) {
785 np = &nht->hash_buckets[i];
787 while ((n = rcu_dereference_protected(*np,
788 lockdep_is_held(&tbl->lock))) != NULL) {
789 unsigned int state;
791 write_lock(&n->lock);
793 state = n->nud_state;
794 if (state & (NUD_PERMANENT | NUD_IN_TIMER)) {
795 write_unlock(&n->lock);
796 goto next_elt;
799 if (time_before(n->used, n->confirmed))
800 n->used = n->confirmed;
802 if (atomic_read(&n->refcnt) == 1 &&
803 (state == NUD_FAILED ||
804 time_after(jiffies, n->used + NEIGH_VAR(n->parms, GC_STALETIME)))) {
805 *np = n->next;
806 n->dead = 1;
807 write_unlock(&n->lock);
808 neigh_cleanup_and_release(n);
809 continue;
811 write_unlock(&n->lock);
813 next_elt:
814 np = &n->next;
817 * It's fine to release lock here, even if hash table
818 * grows while we are preempted.
820 write_unlock_bh(&tbl->lock);
821 cond_resched();
822 write_lock_bh(&tbl->lock);
823 nht = rcu_dereference_protected(tbl->nht,
824 lockdep_is_held(&tbl->lock));
826 out:
827 /* Cycle through all hash buckets every BASE_REACHABLE_TIME/2 ticks.
828 * ARP entry timeouts range from 1/2 BASE_REACHABLE_TIME to 3/2
829 * BASE_REACHABLE_TIME.
831 queue_delayed_work(system_power_efficient_wq, &tbl->gc_work,
832 NEIGH_VAR(&tbl->parms, BASE_REACHABLE_TIME) >> 1);
833 write_unlock_bh(&tbl->lock);
836 static __inline__ int neigh_max_probes(struct neighbour *n)
838 struct neigh_parms *p = n->parms;
839 int max_probes = NEIGH_VAR(p, UCAST_PROBES) + NEIGH_VAR(p, APP_PROBES);
840 if (!(n->nud_state & NUD_PROBE))
841 max_probes += NEIGH_VAR(p, MCAST_PROBES);
842 return max_probes;
845 static void neigh_invalidate(struct neighbour *neigh)
846 __releases(neigh->lock)
847 __acquires(neigh->lock)
849 struct sk_buff *skb;
851 NEIGH_CACHE_STAT_INC(neigh->tbl, res_failed);
852 neigh_dbg(2, "neigh %p is failed\n", neigh);
853 neigh->updated = jiffies;
855 /* It is very thin place. report_unreachable is very complicated
856 routine. Particularly, it can hit the same neighbour entry!
858 So that, we try to be accurate and avoid dead loop. --ANK
860 while (neigh->nud_state == NUD_FAILED &&
861 (skb = __skb_dequeue(&neigh->arp_queue)) != NULL) {
862 write_unlock(&neigh->lock);
863 neigh->ops->error_report(neigh, skb);
864 write_lock(&neigh->lock);
866 __skb_queue_purge(&neigh->arp_queue);
867 neigh->arp_queue_len_bytes = 0;
870 static void neigh_probe(struct neighbour *neigh)
871 __releases(neigh->lock)
873 struct sk_buff *skb = skb_peek_tail(&neigh->arp_queue);
874 /* keep skb alive even if arp_queue overflows */
875 if (skb)
876 skb = skb_copy(skb, GFP_ATOMIC);
877 write_unlock(&neigh->lock);
878 neigh->ops->solicit(neigh, skb);
879 atomic_inc(&neigh->probes);
880 kfree_skb(skb);
883 /* Called when a timer expires for a neighbour entry. */
885 static void neigh_timer_handler(unsigned long arg)
887 unsigned long now, next;
888 struct neighbour *neigh = (struct neighbour *)arg;
889 unsigned int state;
890 int notify = 0;
892 write_lock(&neigh->lock);
894 state = neigh->nud_state;
895 now = jiffies;
896 next = now + HZ;
898 if (!(state & NUD_IN_TIMER))
899 goto out;
901 if (state & NUD_REACHABLE) {
902 if (time_before_eq(now,
903 neigh->confirmed + neigh->parms->reachable_time)) {
904 neigh_dbg(2, "neigh %p is still alive\n", neigh);
905 next = neigh->confirmed + neigh->parms->reachable_time;
906 } else if (time_before_eq(now,
907 neigh->used +
908 NEIGH_VAR(neigh->parms, DELAY_PROBE_TIME))) {
909 neigh_dbg(2, "neigh %p is delayed\n", neigh);
910 neigh->nud_state = NUD_DELAY;
911 neigh->updated = jiffies;
912 neigh_suspect(neigh);
913 next = now + NEIGH_VAR(neigh->parms, DELAY_PROBE_TIME);
914 } else {
915 neigh_dbg(2, "neigh %p is suspected\n", neigh);
916 neigh->nud_state = NUD_STALE;
917 neigh->updated = jiffies;
918 neigh_suspect(neigh);
919 notify = 1;
921 } else if (state & NUD_DELAY) {
922 if (time_before_eq(now,
923 neigh->confirmed +
924 NEIGH_VAR(neigh->parms, DELAY_PROBE_TIME))) {
925 neigh_dbg(2, "neigh %p is now reachable\n", neigh);
926 neigh->nud_state = NUD_REACHABLE;
927 neigh->updated = jiffies;
928 neigh_connect(neigh);
929 notify = 1;
930 next = neigh->confirmed + neigh->parms->reachable_time;
931 } else {
932 neigh_dbg(2, "neigh %p is probed\n", neigh);
933 neigh->nud_state = NUD_PROBE;
934 neigh->updated = jiffies;
935 atomic_set(&neigh->probes, 0);
936 next = now + NEIGH_VAR(neigh->parms, RETRANS_TIME);
938 } else {
939 /* NUD_PROBE|NUD_INCOMPLETE */
940 next = now + NEIGH_VAR(neigh->parms, RETRANS_TIME);
943 if ((neigh->nud_state & (NUD_INCOMPLETE | NUD_PROBE)) &&
944 atomic_read(&neigh->probes) >= neigh_max_probes(neigh)) {
945 neigh->nud_state = NUD_FAILED;
946 notify = 1;
947 neigh_invalidate(neigh);
948 goto out;
951 if (neigh->nud_state & NUD_IN_TIMER) {
952 if (time_before(next, jiffies + HZ/2))
953 next = jiffies + HZ/2;
954 if (!mod_timer(&neigh->timer, next))
955 neigh_hold(neigh);
957 if (neigh->nud_state & (NUD_INCOMPLETE | NUD_PROBE)) {
958 neigh_probe(neigh);
959 } else {
960 out:
961 write_unlock(&neigh->lock);
964 if (notify)
965 neigh_update_notify(neigh);
967 neigh_release(neigh);
970 int __neigh_event_send(struct neighbour *neigh, struct sk_buff *skb)
972 int rc;
973 bool immediate_probe = false;
975 write_lock_bh(&neigh->lock);
977 rc = 0;
978 if (neigh->nud_state & (NUD_CONNECTED | NUD_DELAY | NUD_PROBE))
979 goto out_unlock_bh;
980 if (neigh->dead)
981 goto out_dead;
983 if (!(neigh->nud_state & (NUD_STALE | NUD_INCOMPLETE))) {
984 if (NEIGH_VAR(neigh->parms, MCAST_PROBES) +
985 NEIGH_VAR(neigh->parms, APP_PROBES)) {
986 unsigned long next, now = jiffies;
988 atomic_set(&neigh->probes,
989 NEIGH_VAR(neigh->parms, UCAST_PROBES));
990 neigh->nud_state = NUD_INCOMPLETE;
991 neigh->updated = now;
992 next = now + max(NEIGH_VAR(neigh->parms, RETRANS_TIME),
993 HZ/2);
994 neigh_add_timer(neigh, next);
995 immediate_probe = true;
996 } else {
997 neigh->nud_state = NUD_FAILED;
998 neigh->updated = jiffies;
999 write_unlock_bh(&neigh->lock);
1001 kfree_skb(skb);
1002 return 1;
1004 } else if (neigh->nud_state & NUD_STALE) {
1005 neigh_dbg(2, "neigh %p is delayed\n", neigh);
1006 neigh->nud_state = NUD_DELAY;
1007 neigh->updated = jiffies;
1008 neigh_add_timer(neigh, jiffies +
1009 NEIGH_VAR(neigh->parms, DELAY_PROBE_TIME));
1012 if (neigh->nud_state == NUD_INCOMPLETE) {
1013 if (skb) {
1014 while (neigh->arp_queue_len_bytes + skb->truesize >
1015 NEIGH_VAR(neigh->parms, QUEUE_LEN_BYTES)) {
1016 struct sk_buff *buff;
1018 buff = __skb_dequeue(&neigh->arp_queue);
1019 if (!buff)
1020 break;
1021 neigh->arp_queue_len_bytes -= buff->truesize;
1022 kfree_skb(buff);
1023 NEIGH_CACHE_STAT_INC(neigh->tbl, unres_discards);
1025 skb_dst_force(skb);
1026 __skb_queue_tail(&neigh->arp_queue, skb);
1027 neigh->arp_queue_len_bytes += skb->truesize;
1029 rc = 1;
1031 out_unlock_bh:
1032 if (immediate_probe)
1033 neigh_probe(neigh);
1034 else
1035 write_unlock(&neigh->lock);
1036 local_bh_enable();
1037 return rc;
1039 out_dead:
1040 if (neigh->nud_state & NUD_STALE)
1041 goto out_unlock_bh;
1042 write_unlock_bh(&neigh->lock);
1043 kfree_skb(skb);
1044 return 1;
1046 EXPORT_SYMBOL(__neigh_event_send);
1048 static void neigh_update_hhs(struct neighbour *neigh)
1050 struct hh_cache *hh;
1051 void (*update)(struct hh_cache*, const struct net_device*, const unsigned char *)
1052 = NULL;
1054 if (neigh->dev->header_ops)
1055 update = neigh->dev->header_ops->cache_update;
1057 if (update) {
1058 hh = &neigh->hh;
1059 if (hh->hh_len) {
1060 write_seqlock_bh(&hh->hh_lock);
1061 update(hh, neigh->dev, neigh->ha);
1062 write_sequnlock_bh(&hh->hh_lock);
1069 /* Generic update routine.
1070 -- lladdr is new lladdr or NULL, if it is not supplied.
1071 -- new is new state.
1072 -- flags
1073 NEIGH_UPDATE_F_OVERRIDE allows to override existing lladdr,
1074 if it is different.
1075 NEIGH_UPDATE_F_WEAK_OVERRIDE will suspect existing "connected"
1076 lladdr instead of overriding it
1077 if it is different.
1078 It also allows to retain current state
1079 if lladdr is unchanged.
1080 NEIGH_UPDATE_F_ADMIN means that the change is administrative.
1082 NEIGH_UPDATE_F_OVERRIDE_ISROUTER allows to override existing
1083 NTF_ROUTER flag.
1084 NEIGH_UPDATE_F_ISROUTER indicates if the neighbour is known as
1085 a router.
1087 Caller MUST hold reference count on the entry.
1090 int neigh_update(struct neighbour *neigh, const u8 *lladdr, u8 new,
1091 u32 flags)
1093 u8 old;
1094 int err;
1095 int notify = 0;
1096 struct net_device *dev;
1097 int update_isrouter = 0;
1099 write_lock_bh(&neigh->lock);
1101 dev = neigh->dev;
1102 old = neigh->nud_state;
1103 err = -EPERM;
1105 if (!(flags & NEIGH_UPDATE_F_ADMIN) &&
1106 (old & (NUD_NOARP | NUD_PERMANENT)))
1107 goto out;
1108 if (neigh->dead)
1109 goto out;
1111 if (!(new & NUD_VALID)) {
1112 neigh_del_timer(neigh);
1113 if (old & NUD_CONNECTED)
1114 neigh_suspect(neigh);
1115 neigh->nud_state = new;
1116 err = 0;
1117 notify = old & NUD_VALID;
1118 if ((old & (NUD_INCOMPLETE | NUD_PROBE)) &&
1119 (new & NUD_FAILED)) {
1120 neigh_invalidate(neigh);
1121 notify = 1;
1123 goto out;
1126 /* Compare new lladdr with cached one */
1127 if (!dev->addr_len) {
1128 /* First case: device needs no address. */
1129 lladdr = neigh->ha;
1130 } else if (lladdr) {
1131 /* The second case: if something is already cached
1132 and a new address is proposed:
1133 - compare new & old
1134 - if they are different, check override flag
1136 if ((old & NUD_VALID) &&
1137 !memcmp(lladdr, neigh->ha, dev->addr_len))
1138 lladdr = neigh->ha;
1139 } else {
1140 /* No address is supplied; if we know something,
1141 use it, otherwise discard the request.
1143 err = -EINVAL;
1144 if (!(old & NUD_VALID))
1145 goto out;
1146 lladdr = neigh->ha;
1149 if (new & NUD_CONNECTED)
1150 neigh->confirmed = jiffies;
1151 neigh->updated = jiffies;
1153 /* If entry was valid and address is not changed,
1154 do not change entry state, if new one is STALE.
1156 err = 0;
1157 update_isrouter = flags & NEIGH_UPDATE_F_OVERRIDE_ISROUTER;
1158 if (old & NUD_VALID) {
1159 if (lladdr != neigh->ha && !(flags & NEIGH_UPDATE_F_OVERRIDE)) {
1160 update_isrouter = 0;
1161 if ((flags & NEIGH_UPDATE_F_WEAK_OVERRIDE) &&
1162 (old & NUD_CONNECTED)) {
1163 lladdr = neigh->ha;
1164 new = NUD_STALE;
1165 } else
1166 goto out;
1167 } else {
1168 if (lladdr == neigh->ha && new == NUD_STALE &&
1169 ((flags & NEIGH_UPDATE_F_WEAK_OVERRIDE) ||
1170 (old & NUD_CONNECTED))
1172 new = old;
1176 if (new != old) {
1177 neigh_del_timer(neigh);
1178 if (new & NUD_IN_TIMER)
1179 neigh_add_timer(neigh, (jiffies +
1180 ((new & NUD_REACHABLE) ?
1181 neigh->parms->reachable_time :
1182 0)));
1183 neigh->nud_state = new;
1184 notify = 1;
1187 if (lladdr != neigh->ha) {
1188 write_seqlock(&neigh->ha_lock);
1189 memcpy(&neigh->ha, lladdr, dev->addr_len);
1190 write_sequnlock(&neigh->ha_lock);
1191 neigh_update_hhs(neigh);
1192 if (!(new & NUD_CONNECTED))
1193 neigh->confirmed = jiffies -
1194 (NEIGH_VAR(neigh->parms, BASE_REACHABLE_TIME) << 1);
1195 notify = 1;
1197 if (new == old)
1198 goto out;
1199 if (new & NUD_CONNECTED)
1200 neigh_connect(neigh);
1201 else
1202 neigh_suspect(neigh);
1203 if (!(old & NUD_VALID)) {
1204 struct sk_buff *skb;
1206 /* Again: avoid dead loop if something went wrong */
1208 while (neigh->nud_state & NUD_VALID &&
1209 (skb = __skb_dequeue(&neigh->arp_queue)) != NULL) {
1210 struct dst_entry *dst = skb_dst(skb);
1211 struct neighbour *n2, *n1 = neigh;
1212 write_unlock_bh(&neigh->lock);
1214 rcu_read_lock();
1216 /* Why not just use 'neigh' as-is? The problem is that
1217 * things such as shaper, eql, and sch_teql can end up
1218 * using alternative, different, neigh objects to output
1219 * the packet in the output path. So what we need to do
1220 * here is re-lookup the top-level neigh in the path so
1221 * we can reinject the packet there.
1223 n2 = NULL;
1224 if (dst) {
1225 n2 = dst_neigh_lookup_skb(dst, skb);
1226 if (n2)
1227 n1 = n2;
1229 n1->output(n1, skb);
1230 if (n2)
1231 neigh_release(n2);
1232 rcu_read_unlock();
1234 write_lock_bh(&neigh->lock);
1236 __skb_queue_purge(&neigh->arp_queue);
1237 neigh->arp_queue_len_bytes = 0;
1239 out:
1240 if (update_isrouter) {
1241 neigh->flags = (flags & NEIGH_UPDATE_F_ISROUTER) ?
1242 (neigh->flags | NTF_ROUTER) :
1243 (neigh->flags & ~NTF_ROUTER);
1245 write_unlock_bh(&neigh->lock);
1247 if (notify)
1248 neigh_update_notify(neigh);
1250 return err;
1252 EXPORT_SYMBOL(neigh_update);
1254 /* Update the neigh to listen temporarily for probe responses, even if it is
1255 * in a NUD_FAILED state. The caller has to hold neigh->lock for writing.
1257 void __neigh_set_probe_once(struct neighbour *neigh)
1259 if (neigh->dead)
1260 return;
1261 neigh->updated = jiffies;
1262 if (!(neigh->nud_state & NUD_FAILED))
1263 return;
1264 neigh->nud_state = NUD_INCOMPLETE;
1265 atomic_set(&neigh->probes, neigh_max_probes(neigh));
1266 neigh_add_timer(neigh,
1267 jiffies + NEIGH_VAR(neigh->parms, RETRANS_TIME));
1269 EXPORT_SYMBOL(__neigh_set_probe_once);
1271 struct neighbour *neigh_event_ns(struct neigh_table *tbl,
1272 u8 *lladdr, void *saddr,
1273 struct net_device *dev)
1275 struct neighbour *neigh = __neigh_lookup(tbl, saddr, dev,
1276 lladdr || !dev->addr_len);
1277 if (neigh)
1278 neigh_update(neigh, lladdr, NUD_STALE,
1279 NEIGH_UPDATE_F_OVERRIDE);
1280 return neigh;
1282 EXPORT_SYMBOL(neigh_event_ns);
1284 /* called with read_lock_bh(&n->lock); */
1285 static void neigh_hh_init(struct neighbour *n, struct dst_entry *dst)
1287 struct net_device *dev = dst->dev;
1288 __be16 prot = dst->ops->protocol;
1289 struct hh_cache *hh = &n->hh;
1291 write_lock_bh(&n->lock);
1293 /* Only one thread can come in here and initialize the
1294 * hh_cache entry.
1296 if (!hh->hh_len)
1297 dev->header_ops->cache(n, hh, prot);
1299 write_unlock_bh(&n->lock);
1302 /* This function can be used in contexts, where only old dev_queue_xmit
1303 * worked, f.e. if you want to override normal output path (eql, shaper),
1304 * but resolution is not made yet.
1307 int neigh_compat_output(struct neighbour *neigh, struct sk_buff *skb)
1309 struct net_device *dev = skb->dev;
1311 __skb_pull(skb, skb_network_offset(skb));
1313 if (dev_hard_header(skb, dev, ntohs(skb->protocol), NULL, NULL,
1314 skb->len) < 0 &&
1315 dev_rebuild_header(skb))
1316 return 0;
1318 return dev_queue_xmit(skb);
1320 EXPORT_SYMBOL(neigh_compat_output);
1322 /* Slow and careful. */
1324 int neigh_resolve_output(struct neighbour *neigh, struct sk_buff *skb)
1326 struct dst_entry *dst = skb_dst(skb);
1327 int rc = 0;
1329 if (!dst)
1330 goto discard;
1332 if (!neigh_event_send(neigh, skb)) {
1333 int err;
1334 struct net_device *dev = neigh->dev;
1335 unsigned int seq;
1337 if (dev->header_ops->cache && !neigh->hh.hh_len)
1338 neigh_hh_init(neigh, dst);
1340 do {
1341 __skb_pull(skb, skb_network_offset(skb));
1342 seq = read_seqbegin(&neigh->ha_lock);
1343 err = dev_hard_header(skb, dev, ntohs(skb->protocol),
1344 neigh->ha, NULL, skb->len);
1345 } while (read_seqretry(&neigh->ha_lock, seq));
1347 if (err >= 0)
1348 rc = dev_queue_xmit(skb);
1349 else
1350 goto out_kfree_skb;
1352 out:
1353 return rc;
1354 discard:
1355 neigh_dbg(1, "%s: dst=%p neigh=%p\n", __func__, dst, neigh);
1356 out_kfree_skb:
1357 rc = -EINVAL;
1358 kfree_skb(skb);
1359 goto out;
1361 EXPORT_SYMBOL(neigh_resolve_output);
1363 /* As fast as possible without hh cache */
1365 int neigh_connected_output(struct neighbour *neigh, struct sk_buff *skb)
1367 struct net_device *dev = neigh->dev;
1368 unsigned int seq;
1369 int err;
1371 do {
1372 __skb_pull(skb, skb_network_offset(skb));
1373 seq = read_seqbegin(&neigh->ha_lock);
1374 err = dev_hard_header(skb, dev, ntohs(skb->protocol),
1375 neigh->ha, NULL, skb->len);
1376 } while (read_seqretry(&neigh->ha_lock, seq));
1378 if (err >= 0)
1379 err = dev_queue_xmit(skb);
1380 else {
1381 err = -EINVAL;
1382 kfree_skb(skb);
1384 return err;
1386 EXPORT_SYMBOL(neigh_connected_output);
1388 int neigh_direct_output(struct neighbour *neigh, struct sk_buff *skb)
1390 return dev_queue_xmit(skb);
1392 EXPORT_SYMBOL(neigh_direct_output);
1394 static void neigh_proxy_process(unsigned long arg)
1396 struct neigh_table *tbl = (struct neigh_table *)arg;
1397 long sched_next = 0;
1398 unsigned long now = jiffies;
1399 struct sk_buff *skb, *n;
1401 spin_lock(&tbl->proxy_queue.lock);
1403 skb_queue_walk_safe(&tbl->proxy_queue, skb, n) {
1404 long tdif = NEIGH_CB(skb)->sched_next - now;
1406 if (tdif <= 0) {
1407 struct net_device *dev = skb->dev;
1409 __skb_unlink(skb, &tbl->proxy_queue);
1410 if (tbl->proxy_redo && netif_running(dev)) {
1411 rcu_read_lock();
1412 tbl->proxy_redo(skb);
1413 rcu_read_unlock();
1414 } else {
1415 kfree_skb(skb);
1418 dev_put(dev);
1419 } else if (!sched_next || tdif < sched_next)
1420 sched_next = tdif;
1422 del_timer(&tbl->proxy_timer);
1423 if (sched_next)
1424 mod_timer(&tbl->proxy_timer, jiffies + sched_next);
1425 spin_unlock(&tbl->proxy_queue.lock);
1428 void pneigh_enqueue(struct neigh_table *tbl, struct neigh_parms *p,
1429 struct sk_buff *skb)
1431 unsigned long now = jiffies;
1433 unsigned long sched_next = now + (prandom_u32() %
1434 NEIGH_VAR(p, PROXY_DELAY));
1436 if (tbl->proxy_queue.qlen > NEIGH_VAR(p, PROXY_QLEN)) {
1437 kfree_skb(skb);
1438 return;
1441 NEIGH_CB(skb)->sched_next = sched_next;
1442 NEIGH_CB(skb)->flags |= LOCALLY_ENQUEUED;
1444 spin_lock(&tbl->proxy_queue.lock);
1445 if (del_timer(&tbl->proxy_timer)) {
1446 if (time_before(tbl->proxy_timer.expires, sched_next))
1447 sched_next = tbl->proxy_timer.expires;
1449 skb_dst_drop(skb);
1450 dev_hold(skb->dev);
1451 __skb_queue_tail(&tbl->proxy_queue, skb);
1452 mod_timer(&tbl->proxy_timer, sched_next);
1453 spin_unlock(&tbl->proxy_queue.lock);
1455 EXPORT_SYMBOL(pneigh_enqueue);
1457 static inline struct neigh_parms *lookup_neigh_parms(struct neigh_table *tbl,
1458 struct net *net, int ifindex)
1460 struct neigh_parms *p;
1462 for (p = &tbl->parms; p; p = p->next) {
1463 if ((p->dev && p->dev->ifindex == ifindex && net_eq(neigh_parms_net(p), net)) ||
1464 (!p->dev && !ifindex && net_eq(net, &init_net)))
1465 return p;
1468 return NULL;
1471 struct neigh_parms *neigh_parms_alloc(struct net_device *dev,
1472 struct neigh_table *tbl)
1474 struct neigh_parms *p;
1475 struct net *net = dev_net(dev);
1476 const struct net_device_ops *ops = dev->netdev_ops;
1478 p = kmemdup(&tbl->parms, sizeof(*p), GFP_KERNEL);
1479 if (p) {
1480 p->tbl = tbl;
1481 atomic_set(&p->refcnt, 1);
1482 p->reachable_time =
1483 neigh_rand_reach_time(NEIGH_VAR(p, BASE_REACHABLE_TIME));
1484 dev_hold(dev);
1485 p->dev = dev;
1486 write_pnet(&p->net, hold_net(net));
1487 p->sysctl_table = NULL;
1489 if (ops->ndo_neigh_setup && ops->ndo_neigh_setup(dev, p)) {
1490 release_net(net);
1491 dev_put(dev);
1492 kfree(p);
1493 return NULL;
1496 write_lock_bh(&tbl->lock);
1497 p->next = tbl->parms.next;
1498 tbl->parms.next = p;
1499 write_unlock_bh(&tbl->lock);
1501 neigh_parms_data_state_cleanall(p);
1503 return p;
1505 EXPORT_SYMBOL(neigh_parms_alloc);
1507 static void neigh_rcu_free_parms(struct rcu_head *head)
1509 struct neigh_parms *parms =
1510 container_of(head, struct neigh_parms, rcu_head);
1512 neigh_parms_put(parms);
1515 void neigh_parms_release(struct neigh_table *tbl, struct neigh_parms *parms)
1517 struct neigh_parms **p;
1519 if (!parms || parms == &tbl->parms)
1520 return;
1521 write_lock_bh(&tbl->lock);
1522 for (p = &tbl->parms.next; *p; p = &(*p)->next) {
1523 if (*p == parms) {
1524 *p = parms->next;
1525 parms->dead = 1;
1526 write_unlock_bh(&tbl->lock);
1527 if (parms->dev)
1528 dev_put(parms->dev);
1529 call_rcu(&parms->rcu_head, neigh_rcu_free_parms);
1530 return;
1533 write_unlock_bh(&tbl->lock);
1534 neigh_dbg(1, "%s: not found\n", __func__);
1536 EXPORT_SYMBOL(neigh_parms_release);
1538 static void neigh_parms_destroy(struct neigh_parms *parms)
1540 release_net(neigh_parms_net(parms));
1541 kfree(parms);
1544 static struct lock_class_key neigh_table_proxy_queue_class;
1546 static void neigh_table_init_no_netlink(struct neigh_table *tbl)
1548 unsigned long now = jiffies;
1549 unsigned long phsize;
1551 write_pnet(&tbl->parms.net, &init_net);
1552 atomic_set(&tbl->parms.refcnt, 1);
1553 tbl->parms.reachable_time =
1554 neigh_rand_reach_time(NEIGH_VAR(&tbl->parms, BASE_REACHABLE_TIME));
1556 tbl->stats = alloc_percpu(struct neigh_statistics);
1557 if (!tbl->stats)
1558 panic("cannot create neighbour cache statistics");
1560 #ifdef CONFIG_PROC_FS
1561 if (!proc_create_data(tbl->id, 0, init_net.proc_net_stat,
1562 &neigh_stat_seq_fops, tbl))
1563 panic("cannot create neighbour proc dir entry");
1564 #endif
1566 RCU_INIT_POINTER(tbl->nht, neigh_hash_alloc(3));
1568 phsize = (PNEIGH_HASHMASK + 1) * sizeof(struct pneigh_entry *);
1569 tbl->phash_buckets = kzalloc(phsize, GFP_KERNEL);
1571 if (!tbl->nht || !tbl->phash_buckets)
1572 panic("cannot allocate neighbour cache hashes");
1574 if (!tbl->entry_size)
1575 tbl->entry_size = ALIGN(offsetof(struct neighbour, primary_key) +
1576 tbl->key_len, NEIGH_PRIV_ALIGN);
1577 else
1578 WARN_ON(tbl->entry_size % NEIGH_PRIV_ALIGN);
1580 rwlock_init(&tbl->lock);
1581 INIT_DEFERRABLE_WORK(&tbl->gc_work, neigh_periodic_work);
1582 queue_delayed_work(system_power_efficient_wq, &tbl->gc_work,
1583 tbl->parms.reachable_time);
1584 setup_timer(&tbl->proxy_timer, neigh_proxy_process, (unsigned long)tbl);
1585 skb_queue_head_init_class(&tbl->proxy_queue,
1586 &neigh_table_proxy_queue_class);
1588 tbl->last_flush = now;
1589 tbl->last_rand = now + tbl->parms.reachable_time * 20;
1592 void neigh_table_init(struct neigh_table *tbl)
1594 struct neigh_table *tmp;
1596 neigh_table_init_no_netlink(tbl);
1597 write_lock(&neigh_tbl_lock);
1598 for (tmp = neigh_tables; tmp; tmp = tmp->next) {
1599 if (tmp->family == tbl->family)
1600 break;
1602 tbl->next = neigh_tables;
1603 neigh_tables = tbl;
1604 write_unlock(&neigh_tbl_lock);
1606 if (unlikely(tmp)) {
1607 pr_err("Registering multiple tables for family %d\n",
1608 tbl->family);
1609 dump_stack();
1612 EXPORT_SYMBOL(neigh_table_init);
1614 int neigh_table_clear(struct neigh_table *tbl)
1616 struct neigh_table **tp;
1618 /* It is not clean... Fix it to unload IPv6 module safely */
1619 cancel_delayed_work_sync(&tbl->gc_work);
1620 del_timer_sync(&tbl->proxy_timer);
1621 pneigh_queue_purge(&tbl->proxy_queue);
1622 neigh_ifdown(tbl, NULL);
1623 if (atomic_read(&tbl->entries))
1624 pr_crit("neighbour leakage\n");
1625 write_lock(&neigh_tbl_lock);
1626 for (tp = &neigh_tables; *tp; tp = &(*tp)->next) {
1627 if (*tp == tbl) {
1628 *tp = tbl->next;
1629 break;
1632 write_unlock(&neigh_tbl_lock);
1634 call_rcu(&rcu_dereference_protected(tbl->nht, 1)->rcu,
1635 neigh_hash_free_rcu);
1636 tbl->nht = NULL;
1638 kfree(tbl->phash_buckets);
1639 tbl->phash_buckets = NULL;
1641 remove_proc_entry(tbl->id, init_net.proc_net_stat);
1643 free_percpu(tbl->stats);
1644 tbl->stats = NULL;
1646 return 0;
1648 EXPORT_SYMBOL(neigh_table_clear);
1650 static int neigh_delete(struct sk_buff *skb, struct nlmsghdr *nlh)
1652 struct net *net = sock_net(skb->sk);
1653 struct ndmsg *ndm;
1654 struct nlattr *dst_attr;
1655 struct neigh_table *tbl;
1656 struct net_device *dev = NULL;
1657 int err = -EINVAL;
1659 ASSERT_RTNL();
1660 if (nlmsg_len(nlh) < sizeof(*ndm))
1661 goto out;
1663 dst_attr = nlmsg_find_attr(nlh, sizeof(*ndm), NDA_DST);
1664 if (dst_attr == NULL)
1665 goto out;
1667 ndm = nlmsg_data(nlh);
1668 if (ndm->ndm_ifindex) {
1669 dev = __dev_get_by_index(net, ndm->ndm_ifindex);
1670 if (dev == NULL) {
1671 err = -ENODEV;
1672 goto out;
1676 read_lock(&neigh_tbl_lock);
1677 for (tbl = neigh_tables; tbl; tbl = tbl->next) {
1678 struct neighbour *neigh;
1680 if (tbl->family != ndm->ndm_family)
1681 continue;
1682 read_unlock(&neigh_tbl_lock);
1684 if (nla_len(dst_attr) < tbl->key_len)
1685 goto out;
1687 if (ndm->ndm_flags & NTF_PROXY) {
1688 err = pneigh_delete(tbl, net, nla_data(dst_attr), dev);
1689 goto out;
1692 if (dev == NULL)
1693 goto out;
1695 neigh = neigh_lookup(tbl, nla_data(dst_attr), dev);
1696 if (neigh == NULL) {
1697 err = -ENOENT;
1698 goto out;
1701 err = neigh_update(neigh, NULL, NUD_FAILED,
1702 NEIGH_UPDATE_F_OVERRIDE |
1703 NEIGH_UPDATE_F_ADMIN);
1704 neigh_release(neigh);
1705 goto out;
1707 read_unlock(&neigh_tbl_lock);
1708 err = -EAFNOSUPPORT;
1710 out:
1711 return err;
1714 static int neigh_add(struct sk_buff *skb, struct nlmsghdr *nlh)
1716 struct net *net = sock_net(skb->sk);
1717 struct ndmsg *ndm;
1718 struct nlattr *tb[NDA_MAX+1];
1719 struct neigh_table *tbl;
1720 struct net_device *dev = NULL;
1721 int err;
1723 ASSERT_RTNL();
1724 err = nlmsg_parse(nlh, sizeof(*ndm), tb, NDA_MAX, NULL);
1725 if (err < 0)
1726 goto out;
1728 err = -EINVAL;
1729 if (tb[NDA_DST] == NULL)
1730 goto out;
1732 ndm = nlmsg_data(nlh);
1733 if (ndm->ndm_ifindex) {
1734 dev = __dev_get_by_index(net, ndm->ndm_ifindex);
1735 if (dev == NULL) {
1736 err = -ENODEV;
1737 goto out;
1740 if (tb[NDA_LLADDR] && nla_len(tb[NDA_LLADDR]) < dev->addr_len)
1741 goto out;
1744 read_lock(&neigh_tbl_lock);
1745 for (tbl = neigh_tables; tbl; tbl = tbl->next) {
1746 int flags = NEIGH_UPDATE_F_ADMIN | NEIGH_UPDATE_F_OVERRIDE;
1747 struct neighbour *neigh;
1748 void *dst, *lladdr;
1750 if (tbl->family != ndm->ndm_family)
1751 continue;
1752 read_unlock(&neigh_tbl_lock);
1754 if (nla_len(tb[NDA_DST]) < tbl->key_len)
1755 goto out;
1756 dst = nla_data(tb[NDA_DST]);
1757 lladdr = tb[NDA_LLADDR] ? nla_data(tb[NDA_LLADDR]) : NULL;
1759 if (ndm->ndm_flags & NTF_PROXY) {
1760 struct pneigh_entry *pn;
1762 err = -ENOBUFS;
1763 pn = pneigh_lookup(tbl, net, dst, dev, 1);
1764 if (pn) {
1765 pn->flags = ndm->ndm_flags;
1766 err = 0;
1768 goto out;
1771 if (dev == NULL)
1772 goto out;
1774 neigh = neigh_lookup(tbl, dst, dev);
1775 if (neigh == NULL) {
1776 if (!(nlh->nlmsg_flags & NLM_F_CREATE)) {
1777 err = -ENOENT;
1778 goto out;
1781 neigh = __neigh_lookup_errno(tbl, dst, dev);
1782 if (IS_ERR(neigh)) {
1783 err = PTR_ERR(neigh);
1784 goto out;
1786 } else {
1787 if (nlh->nlmsg_flags & NLM_F_EXCL) {
1788 err = -EEXIST;
1789 neigh_release(neigh);
1790 goto out;
1793 if (!(nlh->nlmsg_flags & NLM_F_REPLACE))
1794 flags &= ~NEIGH_UPDATE_F_OVERRIDE;
1797 if (ndm->ndm_flags & NTF_USE) {
1798 neigh_event_send(neigh, NULL);
1799 err = 0;
1800 } else
1801 err = neigh_update(neigh, lladdr, ndm->ndm_state, flags);
1802 neigh_release(neigh);
1803 goto out;
1806 read_unlock(&neigh_tbl_lock);
1807 err = -EAFNOSUPPORT;
1808 out:
1809 return err;
1812 static int neightbl_fill_parms(struct sk_buff *skb, struct neigh_parms *parms)
1814 struct nlattr *nest;
1816 nest = nla_nest_start(skb, NDTA_PARMS);
1817 if (nest == NULL)
1818 return -ENOBUFS;
1820 if ((parms->dev &&
1821 nla_put_u32(skb, NDTPA_IFINDEX, parms->dev->ifindex)) ||
1822 nla_put_u32(skb, NDTPA_REFCNT, atomic_read(&parms->refcnt)) ||
1823 nla_put_u32(skb, NDTPA_QUEUE_LENBYTES,
1824 NEIGH_VAR(parms, QUEUE_LEN_BYTES)) ||
1825 /* approximative value for deprecated QUEUE_LEN (in packets) */
1826 nla_put_u32(skb, NDTPA_QUEUE_LEN,
1827 NEIGH_VAR(parms, QUEUE_LEN_BYTES) / SKB_TRUESIZE(ETH_FRAME_LEN)) ||
1828 nla_put_u32(skb, NDTPA_PROXY_QLEN, NEIGH_VAR(parms, PROXY_QLEN)) ||
1829 nla_put_u32(skb, NDTPA_APP_PROBES, NEIGH_VAR(parms, APP_PROBES)) ||
1830 nla_put_u32(skb, NDTPA_UCAST_PROBES,
1831 NEIGH_VAR(parms, UCAST_PROBES)) ||
1832 nla_put_u32(skb, NDTPA_MCAST_PROBES,
1833 NEIGH_VAR(parms, MCAST_PROBES)) ||
1834 nla_put_msecs(skb, NDTPA_REACHABLE_TIME, parms->reachable_time) ||
1835 nla_put_msecs(skb, NDTPA_BASE_REACHABLE_TIME,
1836 NEIGH_VAR(parms, BASE_REACHABLE_TIME)) ||
1837 nla_put_msecs(skb, NDTPA_GC_STALETIME,
1838 NEIGH_VAR(parms, GC_STALETIME)) ||
1839 nla_put_msecs(skb, NDTPA_DELAY_PROBE_TIME,
1840 NEIGH_VAR(parms, DELAY_PROBE_TIME)) ||
1841 nla_put_msecs(skb, NDTPA_RETRANS_TIME,
1842 NEIGH_VAR(parms, RETRANS_TIME)) ||
1843 nla_put_msecs(skb, NDTPA_ANYCAST_DELAY,
1844 NEIGH_VAR(parms, ANYCAST_DELAY)) ||
1845 nla_put_msecs(skb, NDTPA_PROXY_DELAY,
1846 NEIGH_VAR(parms, PROXY_DELAY)) ||
1847 nla_put_msecs(skb, NDTPA_LOCKTIME,
1848 NEIGH_VAR(parms, LOCKTIME)))
1849 goto nla_put_failure;
1850 return nla_nest_end(skb, nest);
1852 nla_put_failure:
1853 nla_nest_cancel(skb, nest);
1854 return -EMSGSIZE;
1857 static int neightbl_fill_info(struct sk_buff *skb, struct neigh_table *tbl,
1858 u32 pid, u32 seq, int type, int flags)
1860 struct nlmsghdr *nlh;
1861 struct ndtmsg *ndtmsg;
1863 nlh = nlmsg_put(skb, pid, seq, type, sizeof(*ndtmsg), flags);
1864 if (nlh == NULL)
1865 return -EMSGSIZE;
1867 ndtmsg = nlmsg_data(nlh);
1869 read_lock_bh(&tbl->lock);
1870 ndtmsg->ndtm_family = tbl->family;
1871 ndtmsg->ndtm_pad1 = 0;
1872 ndtmsg->ndtm_pad2 = 0;
1874 if (nla_put_string(skb, NDTA_NAME, tbl->id) ||
1875 nla_put_msecs(skb, NDTA_GC_INTERVAL, tbl->gc_interval) ||
1876 nla_put_u32(skb, NDTA_THRESH1, tbl->gc_thresh1) ||
1877 nla_put_u32(skb, NDTA_THRESH2, tbl->gc_thresh2) ||
1878 nla_put_u32(skb, NDTA_THRESH3, tbl->gc_thresh3))
1879 goto nla_put_failure;
1881 unsigned long now = jiffies;
1882 unsigned int flush_delta = now - tbl->last_flush;
1883 unsigned int rand_delta = now - tbl->last_rand;
1884 struct neigh_hash_table *nht;
1885 struct ndt_config ndc = {
1886 .ndtc_key_len = tbl->key_len,
1887 .ndtc_entry_size = tbl->entry_size,
1888 .ndtc_entries = atomic_read(&tbl->entries),
1889 .ndtc_last_flush = jiffies_to_msecs(flush_delta),
1890 .ndtc_last_rand = jiffies_to_msecs(rand_delta),
1891 .ndtc_proxy_qlen = tbl->proxy_queue.qlen,
1894 rcu_read_lock_bh();
1895 nht = rcu_dereference_bh(tbl->nht);
1896 ndc.ndtc_hash_rnd = nht->hash_rnd[0];
1897 ndc.ndtc_hash_mask = ((1 << nht->hash_shift) - 1);
1898 rcu_read_unlock_bh();
1900 if (nla_put(skb, NDTA_CONFIG, sizeof(ndc), &ndc))
1901 goto nla_put_failure;
1905 int cpu;
1906 struct ndt_stats ndst;
1908 memset(&ndst, 0, sizeof(ndst));
1910 for_each_possible_cpu(cpu) {
1911 struct neigh_statistics *st;
1913 st = per_cpu_ptr(tbl->stats, cpu);
1914 ndst.ndts_allocs += st->allocs;
1915 ndst.ndts_destroys += st->destroys;
1916 ndst.ndts_hash_grows += st->hash_grows;
1917 ndst.ndts_res_failed += st->res_failed;
1918 ndst.ndts_lookups += st->lookups;
1919 ndst.ndts_hits += st->hits;
1920 ndst.ndts_rcv_probes_mcast += st->rcv_probes_mcast;
1921 ndst.ndts_rcv_probes_ucast += st->rcv_probes_ucast;
1922 ndst.ndts_periodic_gc_runs += st->periodic_gc_runs;
1923 ndst.ndts_forced_gc_runs += st->forced_gc_runs;
1926 if (nla_put(skb, NDTA_STATS, sizeof(ndst), &ndst))
1927 goto nla_put_failure;
1930 BUG_ON(tbl->parms.dev);
1931 if (neightbl_fill_parms(skb, &tbl->parms) < 0)
1932 goto nla_put_failure;
1934 read_unlock_bh(&tbl->lock);
1935 return nlmsg_end(skb, nlh);
1937 nla_put_failure:
1938 read_unlock_bh(&tbl->lock);
1939 nlmsg_cancel(skb, nlh);
1940 return -EMSGSIZE;
1943 static int neightbl_fill_param_info(struct sk_buff *skb,
1944 struct neigh_table *tbl,
1945 struct neigh_parms *parms,
1946 u32 pid, u32 seq, int type,
1947 unsigned int flags)
1949 struct ndtmsg *ndtmsg;
1950 struct nlmsghdr *nlh;
1952 nlh = nlmsg_put(skb, pid, seq, type, sizeof(*ndtmsg), flags);
1953 if (nlh == NULL)
1954 return -EMSGSIZE;
1956 ndtmsg = nlmsg_data(nlh);
1958 read_lock_bh(&tbl->lock);
1959 ndtmsg->ndtm_family = tbl->family;
1960 ndtmsg->ndtm_pad1 = 0;
1961 ndtmsg->ndtm_pad2 = 0;
1963 if (nla_put_string(skb, NDTA_NAME, tbl->id) < 0 ||
1964 neightbl_fill_parms(skb, parms) < 0)
1965 goto errout;
1967 read_unlock_bh(&tbl->lock);
1968 return nlmsg_end(skb, nlh);
1969 errout:
1970 read_unlock_bh(&tbl->lock);
1971 nlmsg_cancel(skb, nlh);
1972 return -EMSGSIZE;
1975 static const struct nla_policy nl_neightbl_policy[NDTA_MAX+1] = {
1976 [NDTA_NAME] = { .type = NLA_STRING },
1977 [NDTA_THRESH1] = { .type = NLA_U32 },
1978 [NDTA_THRESH2] = { .type = NLA_U32 },
1979 [NDTA_THRESH3] = { .type = NLA_U32 },
1980 [NDTA_GC_INTERVAL] = { .type = NLA_U64 },
1981 [NDTA_PARMS] = { .type = NLA_NESTED },
1984 static const struct nla_policy nl_ntbl_parm_policy[NDTPA_MAX+1] = {
1985 [NDTPA_IFINDEX] = { .type = NLA_U32 },
1986 [NDTPA_QUEUE_LEN] = { .type = NLA_U32 },
1987 [NDTPA_PROXY_QLEN] = { .type = NLA_U32 },
1988 [NDTPA_APP_PROBES] = { .type = NLA_U32 },
1989 [NDTPA_UCAST_PROBES] = { .type = NLA_U32 },
1990 [NDTPA_MCAST_PROBES] = { .type = NLA_U32 },
1991 [NDTPA_BASE_REACHABLE_TIME] = { .type = NLA_U64 },
1992 [NDTPA_GC_STALETIME] = { .type = NLA_U64 },
1993 [NDTPA_DELAY_PROBE_TIME] = { .type = NLA_U64 },
1994 [NDTPA_RETRANS_TIME] = { .type = NLA_U64 },
1995 [NDTPA_ANYCAST_DELAY] = { .type = NLA_U64 },
1996 [NDTPA_PROXY_DELAY] = { .type = NLA_U64 },
1997 [NDTPA_LOCKTIME] = { .type = NLA_U64 },
2000 static int neightbl_set(struct sk_buff *skb, struct nlmsghdr *nlh)
2002 struct net *net = sock_net(skb->sk);
2003 struct neigh_table *tbl;
2004 struct ndtmsg *ndtmsg;
2005 struct nlattr *tb[NDTA_MAX+1];
2006 int err;
2008 err = nlmsg_parse(nlh, sizeof(*ndtmsg), tb, NDTA_MAX,
2009 nl_neightbl_policy);
2010 if (err < 0)
2011 goto errout;
2013 if (tb[NDTA_NAME] == NULL) {
2014 err = -EINVAL;
2015 goto errout;
2018 ndtmsg = nlmsg_data(nlh);
2019 read_lock(&neigh_tbl_lock);
2020 for (tbl = neigh_tables; tbl; tbl = tbl->next) {
2021 if (ndtmsg->ndtm_family && tbl->family != ndtmsg->ndtm_family)
2022 continue;
2024 if (nla_strcmp(tb[NDTA_NAME], tbl->id) == 0)
2025 break;
2028 if (tbl == NULL) {
2029 err = -ENOENT;
2030 goto errout_locked;
2034 * We acquire tbl->lock to be nice to the periodic timers and
2035 * make sure they always see a consistent set of values.
2037 write_lock_bh(&tbl->lock);
2039 if (tb[NDTA_PARMS]) {
2040 struct nlattr *tbp[NDTPA_MAX+1];
2041 struct neigh_parms *p;
2042 int i, ifindex = 0;
2044 err = nla_parse_nested(tbp, NDTPA_MAX, tb[NDTA_PARMS],
2045 nl_ntbl_parm_policy);
2046 if (err < 0)
2047 goto errout_tbl_lock;
2049 if (tbp[NDTPA_IFINDEX])
2050 ifindex = nla_get_u32(tbp[NDTPA_IFINDEX]);
2052 p = lookup_neigh_parms(tbl, net, ifindex);
2053 if (p == NULL) {
2054 err = -ENOENT;
2055 goto errout_tbl_lock;
2058 for (i = 1; i <= NDTPA_MAX; i++) {
2059 if (tbp[i] == NULL)
2060 continue;
2062 switch (i) {
2063 case NDTPA_QUEUE_LEN:
2064 NEIGH_VAR_SET(p, QUEUE_LEN_BYTES,
2065 nla_get_u32(tbp[i]) *
2066 SKB_TRUESIZE(ETH_FRAME_LEN));
2067 break;
2068 case NDTPA_QUEUE_LENBYTES:
2069 NEIGH_VAR_SET(p, QUEUE_LEN_BYTES,
2070 nla_get_u32(tbp[i]));
2071 break;
2072 case NDTPA_PROXY_QLEN:
2073 NEIGH_VAR_SET(p, PROXY_QLEN,
2074 nla_get_u32(tbp[i]));
2075 break;
2076 case NDTPA_APP_PROBES:
2077 NEIGH_VAR_SET(p, APP_PROBES,
2078 nla_get_u32(tbp[i]));
2079 break;
2080 case NDTPA_UCAST_PROBES:
2081 NEIGH_VAR_SET(p, UCAST_PROBES,
2082 nla_get_u32(tbp[i]));
2083 break;
2084 case NDTPA_MCAST_PROBES:
2085 NEIGH_VAR_SET(p, MCAST_PROBES,
2086 nla_get_u32(tbp[i]));
2087 break;
2088 case NDTPA_BASE_REACHABLE_TIME:
2089 NEIGH_VAR_SET(p, BASE_REACHABLE_TIME,
2090 nla_get_msecs(tbp[i]));
2091 break;
2092 case NDTPA_GC_STALETIME:
2093 NEIGH_VAR_SET(p, GC_STALETIME,
2094 nla_get_msecs(tbp[i]));
2095 break;
2096 case NDTPA_DELAY_PROBE_TIME:
2097 NEIGH_VAR_SET(p, DELAY_PROBE_TIME,
2098 nla_get_msecs(tbp[i]));
2099 break;
2100 case NDTPA_RETRANS_TIME:
2101 NEIGH_VAR_SET(p, RETRANS_TIME,
2102 nla_get_msecs(tbp[i]));
2103 break;
2104 case NDTPA_ANYCAST_DELAY:
2105 NEIGH_VAR_SET(p, ANYCAST_DELAY,
2106 nla_get_msecs(tbp[i]));
2107 break;
2108 case NDTPA_PROXY_DELAY:
2109 NEIGH_VAR_SET(p, PROXY_DELAY,
2110 nla_get_msecs(tbp[i]));
2111 break;
2112 case NDTPA_LOCKTIME:
2113 NEIGH_VAR_SET(p, LOCKTIME,
2114 nla_get_msecs(tbp[i]));
2115 break;
2120 err = -ENOENT;
2121 if ((tb[NDTA_THRESH1] || tb[NDTA_THRESH2] ||
2122 tb[NDTA_THRESH3] || tb[NDTA_GC_INTERVAL]) &&
2123 !net_eq(net, &init_net))
2124 goto errout_tbl_lock;
2126 if (tb[NDTA_THRESH1])
2127 tbl->gc_thresh1 = nla_get_u32(tb[NDTA_THRESH1]);
2129 if (tb[NDTA_THRESH2])
2130 tbl->gc_thresh2 = nla_get_u32(tb[NDTA_THRESH2]);
2132 if (tb[NDTA_THRESH3])
2133 tbl->gc_thresh3 = nla_get_u32(tb[NDTA_THRESH3]);
2135 if (tb[NDTA_GC_INTERVAL])
2136 tbl->gc_interval = nla_get_msecs(tb[NDTA_GC_INTERVAL]);
2138 err = 0;
2140 errout_tbl_lock:
2141 write_unlock_bh(&tbl->lock);
2142 errout_locked:
2143 read_unlock(&neigh_tbl_lock);
2144 errout:
2145 return err;
2148 static int neightbl_dump_info(struct sk_buff *skb, struct netlink_callback *cb)
2150 struct net *net = sock_net(skb->sk);
2151 int family, tidx, nidx = 0;
2152 int tbl_skip = cb->args[0];
2153 int neigh_skip = cb->args[1];
2154 struct neigh_table *tbl;
2156 family = ((struct rtgenmsg *) nlmsg_data(cb->nlh))->rtgen_family;
2158 read_lock(&neigh_tbl_lock);
2159 for (tbl = neigh_tables, tidx = 0; tbl; tbl = tbl->next, tidx++) {
2160 struct neigh_parms *p;
2162 if (tidx < tbl_skip || (family && tbl->family != family))
2163 continue;
2165 if (neightbl_fill_info(skb, tbl, NETLINK_CB(cb->skb).portid,
2166 cb->nlh->nlmsg_seq, RTM_NEWNEIGHTBL,
2167 NLM_F_MULTI) <= 0)
2168 break;
2170 for (nidx = 0, p = tbl->parms.next; p; p = p->next) {
2171 if (!net_eq(neigh_parms_net(p), net))
2172 continue;
2174 if (nidx < neigh_skip)
2175 goto next;
2177 if (neightbl_fill_param_info(skb, tbl, p,
2178 NETLINK_CB(cb->skb).portid,
2179 cb->nlh->nlmsg_seq,
2180 RTM_NEWNEIGHTBL,
2181 NLM_F_MULTI) <= 0)
2182 goto out;
2183 next:
2184 nidx++;
2187 neigh_skip = 0;
2189 out:
2190 read_unlock(&neigh_tbl_lock);
2191 cb->args[0] = tidx;
2192 cb->args[1] = nidx;
2194 return skb->len;
2197 static int neigh_fill_info(struct sk_buff *skb, struct neighbour *neigh,
2198 u32 pid, u32 seq, int type, unsigned int flags)
2200 unsigned long now = jiffies;
2201 struct nda_cacheinfo ci;
2202 struct nlmsghdr *nlh;
2203 struct ndmsg *ndm;
2205 nlh = nlmsg_put(skb, pid, seq, type, sizeof(*ndm), flags);
2206 if (nlh == NULL)
2207 return -EMSGSIZE;
2209 ndm = nlmsg_data(nlh);
2210 ndm->ndm_family = neigh->ops->family;
2211 ndm->ndm_pad1 = 0;
2212 ndm->ndm_pad2 = 0;
2213 ndm->ndm_flags = neigh->flags;
2214 ndm->ndm_type = neigh->type;
2215 ndm->ndm_ifindex = neigh->dev->ifindex;
2217 if (nla_put(skb, NDA_DST, neigh->tbl->key_len, neigh->primary_key))
2218 goto nla_put_failure;
2220 read_lock_bh(&neigh->lock);
2221 ndm->ndm_state = neigh->nud_state;
2222 if (neigh->nud_state & NUD_VALID) {
2223 char haddr[MAX_ADDR_LEN];
2225 neigh_ha_snapshot(haddr, neigh, neigh->dev);
2226 if (nla_put(skb, NDA_LLADDR, neigh->dev->addr_len, haddr) < 0) {
2227 read_unlock_bh(&neigh->lock);
2228 goto nla_put_failure;
2232 ci.ndm_used = jiffies_to_clock_t(now - neigh->used);
2233 ci.ndm_confirmed = jiffies_to_clock_t(now - neigh->confirmed);
2234 ci.ndm_updated = jiffies_to_clock_t(now - neigh->updated);
2235 ci.ndm_refcnt = atomic_read(&neigh->refcnt) - 1;
2236 read_unlock_bh(&neigh->lock);
2238 if (nla_put_u32(skb, NDA_PROBES, atomic_read(&neigh->probes)) ||
2239 nla_put(skb, NDA_CACHEINFO, sizeof(ci), &ci))
2240 goto nla_put_failure;
2242 return nlmsg_end(skb, nlh);
2244 nla_put_failure:
2245 nlmsg_cancel(skb, nlh);
2246 return -EMSGSIZE;
2249 static int pneigh_fill_info(struct sk_buff *skb, struct pneigh_entry *pn,
2250 u32 pid, u32 seq, int type, unsigned int flags,
2251 struct neigh_table *tbl)
2253 struct nlmsghdr *nlh;
2254 struct ndmsg *ndm;
2256 nlh = nlmsg_put(skb, pid, seq, type, sizeof(*ndm), flags);
2257 if (nlh == NULL)
2258 return -EMSGSIZE;
2260 ndm = nlmsg_data(nlh);
2261 ndm->ndm_family = tbl->family;
2262 ndm->ndm_pad1 = 0;
2263 ndm->ndm_pad2 = 0;
2264 ndm->ndm_flags = pn->flags | NTF_PROXY;
2265 ndm->ndm_type = RTN_UNICAST;
2266 ndm->ndm_ifindex = pn->dev ? pn->dev->ifindex : 0;
2267 ndm->ndm_state = NUD_NONE;
2269 if (nla_put(skb, NDA_DST, tbl->key_len, pn->key))
2270 goto nla_put_failure;
2272 return nlmsg_end(skb, nlh);
2274 nla_put_failure:
2275 nlmsg_cancel(skb, nlh);
2276 return -EMSGSIZE;
2279 static void neigh_update_notify(struct neighbour *neigh)
2281 call_netevent_notifiers(NETEVENT_NEIGH_UPDATE, neigh);
2282 __neigh_notify(neigh, RTM_NEWNEIGH, 0);
2285 static int neigh_dump_table(struct neigh_table *tbl, struct sk_buff *skb,
2286 struct netlink_callback *cb)
2288 struct net *net = sock_net(skb->sk);
2289 struct neighbour *n;
2290 int rc, h, s_h = cb->args[1];
2291 int idx, s_idx = idx = cb->args[2];
2292 struct neigh_hash_table *nht;
2294 rcu_read_lock_bh();
2295 nht = rcu_dereference_bh(tbl->nht);
2297 for (h = s_h; h < (1 << nht->hash_shift); h++) {
2298 if (h > s_h)
2299 s_idx = 0;
2300 for (n = rcu_dereference_bh(nht->hash_buckets[h]), idx = 0;
2301 n != NULL;
2302 n = rcu_dereference_bh(n->next)) {
2303 if (!net_eq(dev_net(n->dev), net))
2304 continue;
2305 if (idx < s_idx)
2306 goto next;
2307 if (neigh_fill_info(skb, n, NETLINK_CB(cb->skb).portid,
2308 cb->nlh->nlmsg_seq,
2309 RTM_NEWNEIGH,
2310 NLM_F_MULTI) <= 0) {
2311 rc = -1;
2312 goto out;
2314 next:
2315 idx++;
2318 rc = skb->len;
2319 out:
2320 rcu_read_unlock_bh();
2321 cb->args[1] = h;
2322 cb->args[2] = idx;
2323 return rc;
2326 static int pneigh_dump_table(struct neigh_table *tbl, struct sk_buff *skb,
2327 struct netlink_callback *cb)
2329 struct pneigh_entry *n;
2330 struct net *net = sock_net(skb->sk);
2331 int rc, h, s_h = cb->args[3];
2332 int idx, s_idx = idx = cb->args[4];
2334 read_lock_bh(&tbl->lock);
2336 for (h = s_h; h <= PNEIGH_HASHMASK; h++) {
2337 if (h > s_h)
2338 s_idx = 0;
2339 for (n = tbl->phash_buckets[h], idx = 0; n; n = n->next) {
2340 if (pneigh_net(n) != net)
2341 continue;
2342 if (idx < s_idx)
2343 goto next;
2344 if (pneigh_fill_info(skb, n, NETLINK_CB(cb->skb).portid,
2345 cb->nlh->nlmsg_seq,
2346 RTM_NEWNEIGH,
2347 NLM_F_MULTI, tbl) <= 0) {
2348 read_unlock_bh(&tbl->lock);
2349 rc = -1;
2350 goto out;
2352 next:
2353 idx++;
2357 read_unlock_bh(&tbl->lock);
2358 rc = skb->len;
2359 out:
2360 cb->args[3] = h;
2361 cb->args[4] = idx;
2362 return rc;
2366 static int neigh_dump_info(struct sk_buff *skb, struct netlink_callback *cb)
2368 struct neigh_table *tbl;
2369 int t, family, s_t;
2370 int proxy = 0;
2371 int err;
2373 read_lock(&neigh_tbl_lock);
2374 family = ((struct rtgenmsg *) nlmsg_data(cb->nlh))->rtgen_family;
2376 /* check for full ndmsg structure presence, family member is
2377 * the same for both structures
2379 if (nlmsg_len(cb->nlh) >= sizeof(struct ndmsg) &&
2380 ((struct ndmsg *) nlmsg_data(cb->nlh))->ndm_flags == NTF_PROXY)
2381 proxy = 1;
2383 s_t = cb->args[0];
2385 for (tbl = neigh_tables, t = 0; tbl;
2386 tbl = tbl->next, t++) {
2387 if (t < s_t || (family && tbl->family != family))
2388 continue;
2389 if (t > s_t)
2390 memset(&cb->args[1], 0, sizeof(cb->args) -
2391 sizeof(cb->args[0]));
2392 if (proxy)
2393 err = pneigh_dump_table(tbl, skb, cb);
2394 else
2395 err = neigh_dump_table(tbl, skb, cb);
2396 if (err < 0)
2397 break;
2399 read_unlock(&neigh_tbl_lock);
2401 cb->args[0] = t;
2402 return skb->len;
2405 void neigh_for_each(struct neigh_table *tbl, void (*cb)(struct neighbour *, void *), void *cookie)
2407 int chain;
2408 struct neigh_hash_table *nht;
2410 rcu_read_lock_bh();
2411 nht = rcu_dereference_bh(tbl->nht);
2413 read_lock(&tbl->lock); /* avoid resizes */
2414 for (chain = 0; chain < (1 << nht->hash_shift); chain++) {
2415 struct neighbour *n;
2417 for (n = rcu_dereference_bh(nht->hash_buckets[chain]);
2418 n != NULL;
2419 n = rcu_dereference_bh(n->next))
2420 cb(n, cookie);
2422 read_unlock(&tbl->lock);
2423 rcu_read_unlock_bh();
2425 EXPORT_SYMBOL(neigh_for_each);
2427 /* The tbl->lock must be held as a writer and BH disabled. */
2428 void __neigh_for_each_release(struct neigh_table *tbl,
2429 int (*cb)(struct neighbour *))
2431 int chain;
2432 struct neigh_hash_table *nht;
2434 nht = rcu_dereference_protected(tbl->nht,
2435 lockdep_is_held(&tbl->lock));
2436 for (chain = 0; chain < (1 << nht->hash_shift); chain++) {
2437 struct neighbour *n;
2438 struct neighbour __rcu **np;
2440 np = &nht->hash_buckets[chain];
2441 while ((n = rcu_dereference_protected(*np,
2442 lockdep_is_held(&tbl->lock))) != NULL) {
2443 int release;
2445 write_lock(&n->lock);
2446 release = cb(n);
2447 if (release) {
2448 rcu_assign_pointer(*np,
2449 rcu_dereference_protected(n->next,
2450 lockdep_is_held(&tbl->lock)));
2451 n->dead = 1;
2452 } else
2453 np = &n->next;
2454 write_unlock(&n->lock);
2455 if (release)
2456 neigh_cleanup_and_release(n);
2460 EXPORT_SYMBOL(__neigh_for_each_release);
2462 #ifdef CONFIG_PROC_FS
2464 static struct neighbour *neigh_get_first(struct seq_file *seq)
2466 struct neigh_seq_state *state = seq->private;
2467 struct net *net = seq_file_net(seq);
2468 struct neigh_hash_table *nht = state->nht;
2469 struct neighbour *n = NULL;
2470 int bucket = state->bucket;
2472 state->flags &= ~NEIGH_SEQ_IS_PNEIGH;
2473 for (bucket = 0; bucket < (1 << nht->hash_shift); bucket++) {
2474 n = rcu_dereference_bh(nht->hash_buckets[bucket]);
2476 while (n) {
2477 if (!net_eq(dev_net(n->dev), net))
2478 goto next;
2479 if (state->neigh_sub_iter) {
2480 loff_t fakep = 0;
2481 void *v;
2483 v = state->neigh_sub_iter(state, n, &fakep);
2484 if (!v)
2485 goto next;
2487 if (!(state->flags & NEIGH_SEQ_SKIP_NOARP))
2488 break;
2489 if (n->nud_state & ~NUD_NOARP)
2490 break;
2491 next:
2492 n = rcu_dereference_bh(n->next);
2495 if (n)
2496 break;
2498 state->bucket = bucket;
2500 return n;
2503 static struct neighbour *neigh_get_next(struct seq_file *seq,
2504 struct neighbour *n,
2505 loff_t *pos)
2507 struct neigh_seq_state *state = seq->private;
2508 struct net *net = seq_file_net(seq);
2509 struct neigh_hash_table *nht = state->nht;
2511 if (state->neigh_sub_iter) {
2512 void *v = state->neigh_sub_iter(state, n, pos);
2513 if (v)
2514 return n;
2516 n = rcu_dereference_bh(n->next);
2518 while (1) {
2519 while (n) {
2520 if (!net_eq(dev_net(n->dev), net))
2521 goto next;
2522 if (state->neigh_sub_iter) {
2523 void *v = state->neigh_sub_iter(state, n, pos);
2524 if (v)
2525 return n;
2526 goto next;
2528 if (!(state->flags & NEIGH_SEQ_SKIP_NOARP))
2529 break;
2531 if (n->nud_state & ~NUD_NOARP)
2532 break;
2533 next:
2534 n = rcu_dereference_bh(n->next);
2537 if (n)
2538 break;
2540 if (++state->bucket >= (1 << nht->hash_shift))
2541 break;
2543 n = rcu_dereference_bh(nht->hash_buckets[state->bucket]);
2546 if (n && pos)
2547 --(*pos);
2548 return n;
2551 static struct neighbour *neigh_get_idx(struct seq_file *seq, loff_t *pos)
2553 struct neighbour *n = neigh_get_first(seq);
2555 if (n) {
2556 --(*pos);
2557 while (*pos) {
2558 n = neigh_get_next(seq, n, pos);
2559 if (!n)
2560 break;
2563 return *pos ? NULL : n;
2566 static struct pneigh_entry *pneigh_get_first(struct seq_file *seq)
2568 struct neigh_seq_state *state = seq->private;
2569 struct net *net = seq_file_net(seq);
2570 struct neigh_table *tbl = state->tbl;
2571 struct pneigh_entry *pn = NULL;
2572 int bucket = state->bucket;
2574 state->flags |= NEIGH_SEQ_IS_PNEIGH;
2575 for (bucket = 0; bucket <= PNEIGH_HASHMASK; bucket++) {
2576 pn = tbl->phash_buckets[bucket];
2577 while (pn && !net_eq(pneigh_net(pn), net))
2578 pn = pn->next;
2579 if (pn)
2580 break;
2582 state->bucket = bucket;
2584 return pn;
2587 static struct pneigh_entry *pneigh_get_next(struct seq_file *seq,
2588 struct pneigh_entry *pn,
2589 loff_t *pos)
2591 struct neigh_seq_state *state = seq->private;
2592 struct net *net = seq_file_net(seq);
2593 struct neigh_table *tbl = state->tbl;
2595 do {
2596 pn = pn->next;
2597 } while (pn && !net_eq(pneigh_net(pn), net));
2599 while (!pn) {
2600 if (++state->bucket > PNEIGH_HASHMASK)
2601 break;
2602 pn = tbl->phash_buckets[state->bucket];
2603 while (pn && !net_eq(pneigh_net(pn), net))
2604 pn = pn->next;
2605 if (pn)
2606 break;
2609 if (pn && pos)
2610 --(*pos);
2612 return pn;
2615 static struct pneigh_entry *pneigh_get_idx(struct seq_file *seq, loff_t *pos)
2617 struct pneigh_entry *pn = pneigh_get_first(seq);
2619 if (pn) {
2620 --(*pos);
2621 while (*pos) {
2622 pn = pneigh_get_next(seq, pn, pos);
2623 if (!pn)
2624 break;
2627 return *pos ? NULL : pn;
2630 static void *neigh_get_idx_any(struct seq_file *seq, loff_t *pos)
2632 struct neigh_seq_state *state = seq->private;
2633 void *rc;
2634 loff_t idxpos = *pos;
2636 rc = neigh_get_idx(seq, &idxpos);
2637 if (!rc && !(state->flags & NEIGH_SEQ_NEIGH_ONLY))
2638 rc = pneigh_get_idx(seq, &idxpos);
2640 return rc;
2643 void *neigh_seq_start(struct seq_file *seq, loff_t *pos, struct neigh_table *tbl, unsigned int neigh_seq_flags)
2644 __acquires(rcu_bh)
2646 struct neigh_seq_state *state = seq->private;
2648 state->tbl = tbl;
2649 state->bucket = 0;
2650 state->flags = (neigh_seq_flags & ~NEIGH_SEQ_IS_PNEIGH);
2652 rcu_read_lock_bh();
2653 state->nht = rcu_dereference_bh(tbl->nht);
2655 return *pos ? neigh_get_idx_any(seq, pos) : SEQ_START_TOKEN;
2657 EXPORT_SYMBOL(neigh_seq_start);
2659 void *neigh_seq_next(struct seq_file *seq, void *v, loff_t *pos)
2661 struct neigh_seq_state *state;
2662 void *rc;
2664 if (v == SEQ_START_TOKEN) {
2665 rc = neigh_get_first(seq);
2666 goto out;
2669 state = seq->private;
2670 if (!(state->flags & NEIGH_SEQ_IS_PNEIGH)) {
2671 rc = neigh_get_next(seq, v, NULL);
2672 if (rc)
2673 goto out;
2674 if (!(state->flags & NEIGH_SEQ_NEIGH_ONLY))
2675 rc = pneigh_get_first(seq);
2676 } else {
2677 BUG_ON(state->flags & NEIGH_SEQ_NEIGH_ONLY);
2678 rc = pneigh_get_next(seq, v, NULL);
2680 out:
2681 ++(*pos);
2682 return rc;
2684 EXPORT_SYMBOL(neigh_seq_next);
2686 void neigh_seq_stop(struct seq_file *seq, void *v)
2687 __releases(rcu_bh)
2689 rcu_read_unlock_bh();
2691 EXPORT_SYMBOL(neigh_seq_stop);
2693 /* statistics via seq_file */
2695 static void *neigh_stat_seq_start(struct seq_file *seq, loff_t *pos)
2697 struct neigh_table *tbl = seq->private;
2698 int cpu;
2700 if (*pos == 0)
2701 return SEQ_START_TOKEN;
2703 for (cpu = *pos-1; cpu < nr_cpu_ids; ++cpu) {
2704 if (!cpu_possible(cpu))
2705 continue;
2706 *pos = cpu+1;
2707 return per_cpu_ptr(tbl->stats, cpu);
2709 return NULL;
2712 static void *neigh_stat_seq_next(struct seq_file *seq, void *v, loff_t *pos)
2714 struct neigh_table *tbl = seq->private;
2715 int cpu;
2717 for (cpu = *pos; cpu < nr_cpu_ids; ++cpu) {
2718 if (!cpu_possible(cpu))
2719 continue;
2720 *pos = cpu+1;
2721 return per_cpu_ptr(tbl->stats, cpu);
2723 return NULL;
2726 static void neigh_stat_seq_stop(struct seq_file *seq, void *v)
2731 static int neigh_stat_seq_show(struct seq_file *seq, void *v)
2733 struct neigh_table *tbl = seq->private;
2734 struct neigh_statistics *st = v;
2736 if (v == SEQ_START_TOKEN) {
2737 seq_printf(seq, "entries allocs destroys hash_grows lookups hits res_failed rcv_probes_mcast rcv_probes_ucast periodic_gc_runs forced_gc_runs unresolved_discards\n");
2738 return 0;
2741 seq_printf(seq, "%08x %08lx %08lx %08lx %08lx %08lx %08lx "
2742 "%08lx %08lx %08lx %08lx %08lx\n",
2743 atomic_read(&tbl->entries),
2745 st->allocs,
2746 st->destroys,
2747 st->hash_grows,
2749 st->lookups,
2750 st->hits,
2752 st->res_failed,
2754 st->rcv_probes_mcast,
2755 st->rcv_probes_ucast,
2757 st->periodic_gc_runs,
2758 st->forced_gc_runs,
2759 st->unres_discards
2762 return 0;
2765 static const struct seq_operations neigh_stat_seq_ops = {
2766 .start = neigh_stat_seq_start,
2767 .next = neigh_stat_seq_next,
2768 .stop = neigh_stat_seq_stop,
2769 .show = neigh_stat_seq_show,
2772 static int neigh_stat_seq_open(struct inode *inode, struct file *file)
2774 int ret = seq_open(file, &neigh_stat_seq_ops);
2776 if (!ret) {
2777 struct seq_file *sf = file->private_data;
2778 sf->private = PDE_DATA(inode);
2780 return ret;
2783 static const struct file_operations neigh_stat_seq_fops = {
2784 .owner = THIS_MODULE,
2785 .open = neigh_stat_seq_open,
2786 .read = seq_read,
2787 .llseek = seq_lseek,
2788 .release = seq_release,
2791 #endif /* CONFIG_PROC_FS */
2793 static inline size_t neigh_nlmsg_size(void)
2795 return NLMSG_ALIGN(sizeof(struct ndmsg))
2796 + nla_total_size(MAX_ADDR_LEN) /* NDA_DST */
2797 + nla_total_size(MAX_ADDR_LEN) /* NDA_LLADDR */
2798 + nla_total_size(sizeof(struct nda_cacheinfo))
2799 + nla_total_size(4); /* NDA_PROBES */
2802 static void __neigh_notify(struct neighbour *n, int type, int flags)
2804 struct net *net = dev_net(n->dev);
2805 struct sk_buff *skb;
2806 int err = -ENOBUFS;
2808 skb = nlmsg_new(neigh_nlmsg_size(), GFP_ATOMIC);
2809 if (skb == NULL)
2810 goto errout;
2812 err = neigh_fill_info(skb, n, 0, 0, type, flags);
2813 if (err < 0) {
2814 /* -EMSGSIZE implies BUG in neigh_nlmsg_size() */
2815 WARN_ON(err == -EMSGSIZE);
2816 kfree_skb(skb);
2817 goto errout;
2819 rtnl_notify(skb, net, 0, RTNLGRP_NEIGH, NULL, GFP_ATOMIC);
2820 return;
2821 errout:
2822 if (err < 0)
2823 rtnl_set_sk_err(net, RTNLGRP_NEIGH, err);
2826 void neigh_app_ns(struct neighbour *n)
2828 __neigh_notify(n, RTM_GETNEIGH, NLM_F_REQUEST);
2830 EXPORT_SYMBOL(neigh_app_ns);
2832 #ifdef CONFIG_SYSCTL
2833 static int zero;
2834 static int int_max = INT_MAX;
2835 static int unres_qlen_max = INT_MAX / SKB_TRUESIZE(ETH_FRAME_LEN);
2837 static int proc_unres_qlen(struct ctl_table *ctl, int write,
2838 void __user *buffer, size_t *lenp, loff_t *ppos)
2840 int size, ret;
2841 struct ctl_table tmp = *ctl;
2843 tmp.extra1 = &zero;
2844 tmp.extra2 = &unres_qlen_max;
2845 tmp.data = &size;
2847 size = *(int *)ctl->data / SKB_TRUESIZE(ETH_FRAME_LEN);
2848 ret = proc_dointvec_minmax(&tmp, write, buffer, lenp, ppos);
2850 if (write && !ret)
2851 *(int *)ctl->data = size * SKB_TRUESIZE(ETH_FRAME_LEN);
2852 return ret;
2855 static struct neigh_parms *neigh_get_dev_parms_rcu(struct net_device *dev,
2856 int family)
2858 switch (family) {
2859 case AF_INET:
2860 return __in_dev_arp_parms_get_rcu(dev);
2861 case AF_INET6:
2862 return __in6_dev_nd_parms_get_rcu(dev);
2864 return NULL;
2867 static void neigh_copy_dflt_parms(struct net *net, struct neigh_parms *p,
2868 int index)
2870 struct net_device *dev;
2871 int family = neigh_parms_family(p);
2873 rcu_read_lock();
2874 for_each_netdev_rcu(net, dev) {
2875 struct neigh_parms *dst_p =
2876 neigh_get_dev_parms_rcu(dev, family);
2878 if (dst_p && !test_bit(index, dst_p->data_state))
2879 dst_p->data[index] = p->data[index];
2881 rcu_read_unlock();
2884 static void neigh_proc_update(struct ctl_table *ctl, int write)
2886 struct net_device *dev = ctl->extra1;
2887 struct neigh_parms *p = ctl->extra2;
2888 struct net *net = neigh_parms_net(p);
2889 int index = (int *) ctl->data - p->data;
2891 if (!write)
2892 return;
2894 set_bit(index, p->data_state);
2895 if (!dev) /* NULL dev means this is default value */
2896 neigh_copy_dflt_parms(net, p, index);
2899 static int neigh_proc_dointvec_zero_intmax(struct ctl_table *ctl, int write,
2900 void __user *buffer,
2901 size_t *lenp, loff_t *ppos)
2903 struct ctl_table tmp = *ctl;
2904 int ret;
2906 tmp.extra1 = &zero;
2907 tmp.extra2 = &int_max;
2909 ret = proc_dointvec_minmax(&tmp, write, buffer, lenp, ppos);
2910 neigh_proc_update(ctl, write);
2911 return ret;
2914 int neigh_proc_dointvec(struct ctl_table *ctl, int write,
2915 void __user *buffer, size_t *lenp, loff_t *ppos)
2917 int ret = proc_dointvec(ctl, write, buffer, lenp, ppos);
2919 neigh_proc_update(ctl, write);
2920 return ret;
2922 EXPORT_SYMBOL(neigh_proc_dointvec);
2924 int neigh_proc_dointvec_jiffies(struct ctl_table *ctl, int write,
2925 void __user *buffer,
2926 size_t *lenp, loff_t *ppos)
2928 int ret = proc_dointvec_jiffies(ctl, write, buffer, lenp, ppos);
2930 neigh_proc_update(ctl, write);
2931 return ret;
2933 EXPORT_SYMBOL(neigh_proc_dointvec_jiffies);
2935 static int neigh_proc_dointvec_userhz_jiffies(struct ctl_table *ctl, int write,
2936 void __user *buffer,
2937 size_t *lenp, loff_t *ppos)
2939 int ret = proc_dointvec_userhz_jiffies(ctl, write, buffer, lenp, ppos);
2941 neigh_proc_update(ctl, write);
2942 return ret;
2945 int neigh_proc_dointvec_ms_jiffies(struct ctl_table *ctl, int write,
2946 void __user *buffer,
2947 size_t *lenp, loff_t *ppos)
2949 int ret = proc_dointvec_ms_jiffies(ctl, write, buffer, lenp, ppos);
2951 neigh_proc_update(ctl, write);
2952 return ret;
2954 EXPORT_SYMBOL(neigh_proc_dointvec_ms_jiffies);
2956 static int neigh_proc_dointvec_unres_qlen(struct ctl_table *ctl, int write,
2957 void __user *buffer,
2958 size_t *lenp, loff_t *ppos)
2960 int ret = proc_unres_qlen(ctl, write, buffer, lenp, ppos);
2962 neigh_proc_update(ctl, write);
2963 return ret;
2966 #define NEIGH_PARMS_DATA_OFFSET(index) \
2967 (&((struct neigh_parms *) 0)->data[index])
2969 #define NEIGH_SYSCTL_ENTRY(attr, data_attr, name, mval, proc) \
2970 [NEIGH_VAR_ ## attr] = { \
2971 .procname = name, \
2972 .data = NEIGH_PARMS_DATA_OFFSET(NEIGH_VAR_ ## data_attr), \
2973 .maxlen = sizeof(int), \
2974 .mode = mval, \
2975 .proc_handler = proc, \
2978 #define NEIGH_SYSCTL_ZERO_INTMAX_ENTRY(attr, name) \
2979 NEIGH_SYSCTL_ENTRY(attr, attr, name, 0644, neigh_proc_dointvec_zero_intmax)
2981 #define NEIGH_SYSCTL_JIFFIES_ENTRY(attr, name) \
2982 NEIGH_SYSCTL_ENTRY(attr, attr, name, 0644, neigh_proc_dointvec_jiffies)
2984 #define NEIGH_SYSCTL_USERHZ_JIFFIES_ENTRY(attr, name) \
2985 NEIGH_SYSCTL_ENTRY(attr, attr, name, 0644, neigh_proc_dointvec_userhz_jiffies)
2987 #define NEIGH_SYSCTL_MS_JIFFIES_ENTRY(attr, name) \
2988 NEIGH_SYSCTL_ENTRY(attr, attr, name, 0644, neigh_proc_dointvec_ms_jiffies)
2990 #define NEIGH_SYSCTL_MS_JIFFIES_REUSED_ENTRY(attr, data_attr, name) \
2991 NEIGH_SYSCTL_ENTRY(attr, data_attr, name, 0644, neigh_proc_dointvec_ms_jiffies)
2993 #define NEIGH_SYSCTL_UNRES_QLEN_REUSED_ENTRY(attr, data_attr, name) \
2994 NEIGH_SYSCTL_ENTRY(attr, data_attr, name, 0644, neigh_proc_dointvec_unres_qlen)
2996 static struct neigh_sysctl_table {
2997 struct ctl_table_header *sysctl_header;
2998 struct ctl_table neigh_vars[NEIGH_VAR_MAX + 1];
2999 } neigh_sysctl_template __read_mostly = {
3000 .neigh_vars = {
3001 NEIGH_SYSCTL_ZERO_INTMAX_ENTRY(MCAST_PROBES, "mcast_solicit"),
3002 NEIGH_SYSCTL_ZERO_INTMAX_ENTRY(UCAST_PROBES, "ucast_solicit"),
3003 NEIGH_SYSCTL_ZERO_INTMAX_ENTRY(APP_PROBES, "app_solicit"),
3004 NEIGH_SYSCTL_USERHZ_JIFFIES_ENTRY(RETRANS_TIME, "retrans_time"),
3005 NEIGH_SYSCTL_JIFFIES_ENTRY(BASE_REACHABLE_TIME, "base_reachable_time"),
3006 NEIGH_SYSCTL_JIFFIES_ENTRY(DELAY_PROBE_TIME, "delay_first_probe_time"),
3007 NEIGH_SYSCTL_JIFFIES_ENTRY(GC_STALETIME, "gc_stale_time"),
3008 NEIGH_SYSCTL_ZERO_INTMAX_ENTRY(QUEUE_LEN_BYTES, "unres_qlen_bytes"),
3009 NEIGH_SYSCTL_ZERO_INTMAX_ENTRY(PROXY_QLEN, "proxy_qlen"),
3010 NEIGH_SYSCTL_USERHZ_JIFFIES_ENTRY(ANYCAST_DELAY, "anycast_delay"),
3011 NEIGH_SYSCTL_USERHZ_JIFFIES_ENTRY(PROXY_DELAY, "proxy_delay"),
3012 NEIGH_SYSCTL_USERHZ_JIFFIES_ENTRY(LOCKTIME, "locktime"),
3013 NEIGH_SYSCTL_UNRES_QLEN_REUSED_ENTRY(QUEUE_LEN, QUEUE_LEN_BYTES, "unres_qlen"),
3014 NEIGH_SYSCTL_MS_JIFFIES_REUSED_ENTRY(RETRANS_TIME_MS, RETRANS_TIME, "retrans_time_ms"),
3015 NEIGH_SYSCTL_MS_JIFFIES_REUSED_ENTRY(BASE_REACHABLE_TIME_MS, BASE_REACHABLE_TIME, "base_reachable_time_ms"),
3016 [NEIGH_VAR_GC_INTERVAL] = {
3017 .procname = "gc_interval",
3018 .maxlen = sizeof(int),
3019 .mode = 0644,
3020 .proc_handler = proc_dointvec_jiffies,
3022 [NEIGH_VAR_GC_THRESH1] = {
3023 .procname = "gc_thresh1",
3024 .maxlen = sizeof(int),
3025 .mode = 0644,
3026 .extra1 = &zero,
3027 .extra2 = &int_max,
3028 .proc_handler = proc_dointvec_minmax,
3030 [NEIGH_VAR_GC_THRESH2] = {
3031 .procname = "gc_thresh2",
3032 .maxlen = sizeof(int),
3033 .mode = 0644,
3034 .extra1 = &zero,
3035 .extra2 = &int_max,
3036 .proc_handler = proc_dointvec_minmax,
3038 [NEIGH_VAR_GC_THRESH3] = {
3039 .procname = "gc_thresh3",
3040 .maxlen = sizeof(int),
3041 .mode = 0644,
3042 .extra1 = &zero,
3043 .extra2 = &int_max,
3044 .proc_handler = proc_dointvec_minmax,
3050 int neigh_sysctl_register(struct net_device *dev, struct neigh_parms *p,
3051 proc_handler *handler)
3053 int i;
3054 struct neigh_sysctl_table *t;
3055 const char *dev_name_source;
3056 char neigh_path[ sizeof("net//neigh/") + IFNAMSIZ + IFNAMSIZ ];
3057 char *p_name;
3059 t = kmemdup(&neigh_sysctl_template, sizeof(*t), GFP_KERNEL);
3060 if (!t)
3061 goto err;
3063 for (i = 0; i < NEIGH_VAR_GC_INTERVAL; i++) {
3064 t->neigh_vars[i].data += (long) p;
3065 t->neigh_vars[i].extra1 = dev;
3066 t->neigh_vars[i].extra2 = p;
3069 if (dev) {
3070 dev_name_source = dev->name;
3071 /* Terminate the table early */
3072 memset(&t->neigh_vars[NEIGH_VAR_GC_INTERVAL], 0,
3073 sizeof(t->neigh_vars[NEIGH_VAR_GC_INTERVAL]));
3074 } else {
3075 struct neigh_table *tbl = p->tbl;
3076 dev_name_source = "default";
3077 t->neigh_vars[NEIGH_VAR_GC_INTERVAL].data = &tbl->gc_interval;
3078 t->neigh_vars[NEIGH_VAR_GC_THRESH1].data = &tbl->gc_thresh1;
3079 t->neigh_vars[NEIGH_VAR_GC_THRESH2].data = &tbl->gc_thresh2;
3080 t->neigh_vars[NEIGH_VAR_GC_THRESH3].data = &tbl->gc_thresh3;
3083 if (handler) {
3084 /* RetransTime */
3085 t->neigh_vars[NEIGH_VAR_RETRANS_TIME].proc_handler = handler;
3086 /* ReachableTime */
3087 t->neigh_vars[NEIGH_VAR_BASE_REACHABLE_TIME].proc_handler = handler;
3088 /* RetransTime (in milliseconds)*/
3089 t->neigh_vars[NEIGH_VAR_RETRANS_TIME_MS].proc_handler = handler;
3090 /* ReachableTime (in milliseconds) */
3091 t->neigh_vars[NEIGH_VAR_BASE_REACHABLE_TIME_MS].proc_handler = handler;
3094 /* Don't export sysctls to unprivileged users */
3095 if (neigh_parms_net(p)->user_ns != &init_user_ns)
3096 t->neigh_vars[0].procname = NULL;
3098 switch (neigh_parms_family(p)) {
3099 case AF_INET:
3100 p_name = "ipv4";
3101 break;
3102 case AF_INET6:
3103 p_name = "ipv6";
3104 break;
3105 default:
3106 BUG();
3109 snprintf(neigh_path, sizeof(neigh_path), "net/%s/neigh/%s",
3110 p_name, dev_name_source);
3111 t->sysctl_header =
3112 register_net_sysctl(neigh_parms_net(p), neigh_path, t->neigh_vars);
3113 if (!t->sysctl_header)
3114 goto free;
3116 p->sysctl_table = t;
3117 return 0;
3119 free:
3120 kfree(t);
3121 err:
3122 return -ENOBUFS;
3124 EXPORT_SYMBOL(neigh_sysctl_register);
3126 void neigh_sysctl_unregister(struct neigh_parms *p)
3128 if (p->sysctl_table) {
3129 struct neigh_sysctl_table *t = p->sysctl_table;
3130 p->sysctl_table = NULL;
3131 unregister_net_sysctl_table(t->sysctl_header);
3132 kfree(t);
3135 EXPORT_SYMBOL(neigh_sysctl_unregister);
3137 #endif /* CONFIG_SYSCTL */
3139 static int __init neigh_init(void)
3141 rtnl_register(PF_UNSPEC, RTM_NEWNEIGH, neigh_add, NULL, NULL);
3142 rtnl_register(PF_UNSPEC, RTM_DELNEIGH, neigh_delete, NULL, NULL);
3143 rtnl_register(PF_UNSPEC, RTM_GETNEIGH, NULL, neigh_dump_info, NULL);
3145 rtnl_register(PF_UNSPEC, RTM_GETNEIGHTBL, NULL, neightbl_dump_info,
3146 NULL);
3147 rtnl_register(PF_UNSPEC, RTM_SETNEIGHTBL, neightbl_set, NULL, NULL);
3149 return 0;
3152 subsys_initcall(neigh_init);