mfd: Copy the device pointer to the twl4030-madc structure
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / net / core / neighbour.c
blob16db887078047570afe7f3f7a1b0405bc0181aa2
1 /*
2 * Generic address resolution entity
4 * Authors:
5 * Pedro Roque <roque@di.fc.ul.pt>
6 * Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License
10 * as published by the Free Software Foundation; either version
11 * 2 of the License, or (at your option) any later version.
13 * Fixes:
14 * Vitaly E. Lavrov releasing NULL neighbor in neigh_add.
15 * Harald Welte Add neighbour cache statistics like rtstat
18 #include <linux/slab.h>
19 #include <linux/types.h>
20 #include <linux/kernel.h>
21 #include <linux/module.h>
22 #include <linux/socket.h>
23 #include <linux/netdevice.h>
24 #include <linux/proc_fs.h>
25 #ifdef CONFIG_SYSCTL
26 #include <linux/sysctl.h>
27 #endif
28 #include <linux/times.h>
29 #include <net/net_namespace.h>
30 #include <net/neighbour.h>
31 #include <net/dst.h>
32 #include <net/sock.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>
40 #define NEIGH_DEBUG 1
42 #define NEIGH_PRINTK(x...) printk(x)
43 #define NEIGH_NOPRINTK(x...) do { ; } while(0)
44 #define NEIGH_PRINTK1 NEIGH_NOPRINTK
45 #define NEIGH_PRINTK2 NEIGH_NOPRINTK
47 #if NEIGH_DEBUG >= 1
48 #undef NEIGH_PRINTK1
49 #define NEIGH_PRINTK1 NEIGH_PRINTK
50 #endif
51 #if NEIGH_DEBUG >= 2
52 #undef NEIGH_PRINTK2
53 #define NEIGH_PRINTK2 NEIGH_PRINTK
54 #endif
56 #define PNEIGH_HASHMASK 0xF
58 static void neigh_timer_handler(unsigned long arg);
59 static void __neigh_notify(struct neighbour *n, int type, int flags);
60 static void neigh_update_notify(struct neighbour *neigh);
61 static int pneigh_ifdown(struct neigh_table *tbl, struct net_device *dev);
63 static struct neigh_table *neigh_tables;
64 #ifdef CONFIG_PROC_FS
65 static const struct file_operations neigh_stat_seq_fops;
66 #endif
69 Neighbour hash table buckets are protected with rwlock tbl->lock.
71 - All the scans/updates to hash buckets MUST be made under this lock.
72 - NOTHING clever should be made under this lock: no callbacks
73 to protocol backends, no attempts to send something to network.
74 It will result in deadlocks, if backend/driver wants to use neighbour
75 cache.
76 - If the entry requires some non-trivial actions, increase
77 its reference count and release table lock.
79 Neighbour entries are protected:
80 - with reference count.
81 - with rwlock neigh->lock
83 Reference count prevents destruction.
85 neigh->lock mainly serializes ll address data and its validity state.
86 However, the same lock is used to protect another entry fields:
87 - timer
88 - resolution queue
90 Again, nothing clever shall be made under neigh->lock,
91 the most complicated procedure, which we allow is dev->hard_header.
92 It is supposed, that dev->hard_header is simplistic and does
93 not make callbacks to neighbour tables.
95 The last lock is neigh_tbl_lock. It is pure SMP lock, protecting
96 list of neighbour tables. This list is used only in process context,
99 static DEFINE_RWLOCK(neigh_tbl_lock);
101 static int neigh_blackhole(struct sk_buff *skb)
103 kfree_skb(skb);
104 return -ENETDOWN;
107 static void neigh_cleanup_and_release(struct neighbour *neigh)
109 if (neigh->parms->neigh_cleanup)
110 neigh->parms->neigh_cleanup(neigh);
112 __neigh_notify(neigh, RTM_DELNEIGH, 0);
113 neigh_release(neigh);
117 * It is random distribution in the interval (1/2)*base...(3/2)*base.
118 * It corresponds to default IPv6 settings and is not overridable,
119 * because it is really reasonable choice.
122 unsigned long neigh_rand_reach_time(unsigned long base)
124 return base ? (net_random() % base) + (base >> 1) : 0;
126 EXPORT_SYMBOL(neigh_rand_reach_time);
129 static int neigh_forced_gc(struct neigh_table *tbl)
131 int shrunk = 0;
132 int i;
133 struct neigh_hash_table *nht;
135 NEIGH_CACHE_STAT_INC(tbl, forced_gc_runs);
137 write_lock_bh(&tbl->lock);
138 nht = rcu_dereference_protected(tbl->nht,
139 lockdep_is_held(&tbl->lock));
140 for (i = 0; i <= nht->hash_mask; i++) {
141 struct neighbour *n;
142 struct neighbour __rcu **np;
144 np = &nht->hash_buckets[i];
145 while ((n = rcu_dereference_protected(*np,
146 lockdep_is_held(&tbl->lock))) != NULL) {
147 /* Neighbour record may be discarded if:
148 * - nobody refers to it.
149 * - it is not permanent
151 write_lock(&n->lock);
152 if (atomic_read(&n->refcnt) == 1 &&
153 !(n->nud_state & NUD_PERMANENT)) {
154 rcu_assign_pointer(*np,
155 rcu_dereference_protected(n->next,
156 lockdep_is_held(&tbl->lock)));
157 n->dead = 1;
158 shrunk = 1;
159 write_unlock(&n->lock);
160 neigh_cleanup_and_release(n);
161 continue;
163 write_unlock(&n->lock);
164 np = &n->next;
168 tbl->last_flush = jiffies;
170 write_unlock_bh(&tbl->lock);
172 return shrunk;
175 static void neigh_add_timer(struct neighbour *n, unsigned long when)
177 neigh_hold(n);
178 if (unlikely(mod_timer(&n->timer, when))) {
179 printk("NEIGH: BUG, double timer add, state is %x\n",
180 n->nud_state);
181 dump_stack();
185 static int neigh_del_timer(struct neighbour *n)
187 if ((n->nud_state & NUD_IN_TIMER) &&
188 del_timer(&n->timer)) {
189 neigh_release(n);
190 return 1;
192 return 0;
195 static void pneigh_queue_purge(struct sk_buff_head *list)
197 struct sk_buff *skb;
199 while ((skb = skb_dequeue(list)) != NULL) {
200 dev_put(skb->dev);
201 kfree_skb(skb);
205 static void neigh_flush_dev(struct neigh_table *tbl, struct net_device *dev)
207 int i;
208 struct neigh_hash_table *nht;
210 nht = rcu_dereference_protected(tbl->nht,
211 lockdep_is_held(&tbl->lock));
213 for (i = 0; i <= nht->hash_mask; i++) {
214 struct neighbour *n;
215 struct neighbour __rcu **np = &nht->hash_buckets[i];
217 while ((n = rcu_dereference_protected(*np,
218 lockdep_is_held(&tbl->lock))) != NULL) {
219 if (dev && n->dev != dev) {
220 np = &n->next;
221 continue;
223 rcu_assign_pointer(*np,
224 rcu_dereference_protected(n->next,
225 lockdep_is_held(&tbl->lock)));
226 write_lock(&n->lock);
227 neigh_del_timer(n);
228 n->dead = 1;
230 if (atomic_read(&n->refcnt) != 1) {
231 /* The most unpleasant situation.
232 We must destroy neighbour entry,
233 but someone still uses it.
235 The destroy will be delayed until
236 the last user releases us, but
237 we must kill timers etc. and move
238 it to safe state.
240 skb_queue_purge(&n->arp_queue);
241 n->output = neigh_blackhole;
242 if (n->nud_state & NUD_VALID)
243 n->nud_state = NUD_NOARP;
244 else
245 n->nud_state = NUD_NONE;
246 NEIGH_PRINTK2("neigh %p is stray.\n", n);
248 write_unlock(&n->lock);
249 neigh_cleanup_and_release(n);
254 void neigh_changeaddr(struct neigh_table *tbl, struct net_device *dev)
256 write_lock_bh(&tbl->lock);
257 neigh_flush_dev(tbl, dev);
258 write_unlock_bh(&tbl->lock);
260 EXPORT_SYMBOL(neigh_changeaddr);
262 int neigh_ifdown(struct neigh_table *tbl, struct net_device *dev)
264 write_lock_bh(&tbl->lock);
265 neigh_flush_dev(tbl, dev);
266 pneigh_ifdown(tbl, dev);
267 write_unlock_bh(&tbl->lock);
269 del_timer_sync(&tbl->proxy_timer);
270 pneigh_queue_purge(&tbl->proxy_queue);
271 return 0;
273 EXPORT_SYMBOL(neigh_ifdown);
275 static struct neighbour *neigh_alloc(struct neigh_table *tbl)
277 struct neighbour *n = NULL;
278 unsigned long now = jiffies;
279 int entries;
281 entries = atomic_inc_return(&tbl->entries) - 1;
282 if (entries >= tbl->gc_thresh3 ||
283 (entries >= tbl->gc_thresh2 &&
284 time_after(now, tbl->last_flush + 5 * HZ))) {
285 if (!neigh_forced_gc(tbl) &&
286 entries >= tbl->gc_thresh3)
287 goto out_entries;
290 n = kmem_cache_zalloc(tbl->kmem_cachep, GFP_ATOMIC);
291 if (!n)
292 goto out_entries;
294 skb_queue_head_init(&n->arp_queue);
295 rwlock_init(&n->lock);
296 seqlock_init(&n->ha_lock);
297 n->updated = n->used = now;
298 n->nud_state = NUD_NONE;
299 n->output = neigh_blackhole;
300 n->parms = neigh_parms_clone(&tbl->parms);
301 setup_timer(&n->timer, neigh_timer_handler, (unsigned long)n);
303 NEIGH_CACHE_STAT_INC(tbl, allocs);
304 n->tbl = tbl;
305 atomic_set(&n->refcnt, 1);
306 n->dead = 1;
307 out:
308 return n;
310 out_entries:
311 atomic_dec(&tbl->entries);
312 goto out;
315 static struct neigh_hash_table *neigh_hash_alloc(unsigned int entries)
317 size_t size = entries * sizeof(struct neighbour *);
318 struct neigh_hash_table *ret;
319 struct neighbour __rcu **buckets;
321 ret = kmalloc(sizeof(*ret), GFP_ATOMIC);
322 if (!ret)
323 return NULL;
324 if (size <= PAGE_SIZE)
325 buckets = kzalloc(size, GFP_ATOMIC);
326 else
327 buckets = (struct neighbour __rcu **)
328 __get_free_pages(GFP_ATOMIC | __GFP_ZERO,
329 get_order(size));
330 if (!buckets) {
331 kfree(ret);
332 return NULL;
334 ret->hash_buckets = buckets;
335 ret->hash_mask = entries - 1;
336 get_random_bytes(&ret->hash_rnd, sizeof(ret->hash_rnd));
337 return ret;
340 static void neigh_hash_free_rcu(struct rcu_head *head)
342 struct neigh_hash_table *nht = container_of(head,
343 struct neigh_hash_table,
344 rcu);
345 size_t size = (nht->hash_mask + 1) * sizeof(struct neighbour *);
346 struct neighbour __rcu **buckets = nht->hash_buckets;
348 if (size <= PAGE_SIZE)
349 kfree(buckets);
350 else
351 free_pages((unsigned long)buckets, get_order(size));
352 kfree(nht);
355 static struct neigh_hash_table *neigh_hash_grow(struct neigh_table *tbl,
356 unsigned long new_entries)
358 unsigned int i, hash;
359 struct neigh_hash_table *new_nht, *old_nht;
361 NEIGH_CACHE_STAT_INC(tbl, hash_grows);
363 BUG_ON(!is_power_of_2(new_entries));
364 old_nht = rcu_dereference_protected(tbl->nht,
365 lockdep_is_held(&tbl->lock));
366 new_nht = neigh_hash_alloc(new_entries);
367 if (!new_nht)
368 return old_nht;
370 for (i = 0; i <= old_nht->hash_mask; i++) {
371 struct neighbour *n, *next;
373 for (n = rcu_dereference_protected(old_nht->hash_buckets[i],
374 lockdep_is_held(&tbl->lock));
375 n != NULL;
376 n = next) {
377 hash = tbl->hash(n->primary_key, n->dev,
378 new_nht->hash_rnd);
380 hash &= new_nht->hash_mask;
381 next = rcu_dereference_protected(n->next,
382 lockdep_is_held(&tbl->lock));
384 rcu_assign_pointer(n->next,
385 rcu_dereference_protected(
386 new_nht->hash_buckets[hash],
387 lockdep_is_held(&tbl->lock)));
388 rcu_assign_pointer(new_nht->hash_buckets[hash], n);
392 rcu_assign_pointer(tbl->nht, new_nht);
393 call_rcu(&old_nht->rcu, neigh_hash_free_rcu);
394 return new_nht;
397 struct neighbour *neigh_lookup(struct neigh_table *tbl, const void *pkey,
398 struct net_device *dev)
400 struct neighbour *n;
401 int key_len = tbl->key_len;
402 u32 hash_val;
403 struct neigh_hash_table *nht;
405 NEIGH_CACHE_STAT_INC(tbl, lookups);
407 rcu_read_lock_bh();
408 nht = rcu_dereference_bh(tbl->nht);
409 hash_val = tbl->hash(pkey, dev, nht->hash_rnd) & nht->hash_mask;
411 for (n = rcu_dereference_bh(nht->hash_buckets[hash_val]);
412 n != NULL;
413 n = rcu_dereference_bh(n->next)) {
414 if (dev == n->dev && !memcmp(n->primary_key, pkey, key_len)) {
415 if (!atomic_inc_not_zero(&n->refcnt))
416 n = NULL;
417 NEIGH_CACHE_STAT_INC(tbl, hits);
418 break;
422 rcu_read_unlock_bh();
423 return n;
425 EXPORT_SYMBOL(neigh_lookup);
427 struct neighbour *neigh_lookup_nodev(struct neigh_table *tbl, struct net *net,
428 const void *pkey)
430 struct neighbour *n;
431 int key_len = tbl->key_len;
432 u32 hash_val;
433 struct neigh_hash_table *nht;
435 NEIGH_CACHE_STAT_INC(tbl, lookups);
437 rcu_read_lock_bh();
438 nht = rcu_dereference_bh(tbl->nht);
439 hash_val = tbl->hash(pkey, NULL, nht->hash_rnd) & nht->hash_mask;
441 for (n = rcu_dereference_bh(nht->hash_buckets[hash_val]);
442 n != NULL;
443 n = rcu_dereference_bh(n->next)) {
444 if (!memcmp(n->primary_key, pkey, key_len) &&
445 net_eq(dev_net(n->dev), net)) {
446 if (!atomic_inc_not_zero(&n->refcnt))
447 n = NULL;
448 NEIGH_CACHE_STAT_INC(tbl, hits);
449 break;
453 rcu_read_unlock_bh();
454 return n;
456 EXPORT_SYMBOL(neigh_lookup_nodev);
458 struct neighbour *neigh_create(struct neigh_table *tbl, const void *pkey,
459 struct net_device *dev)
461 u32 hash_val;
462 int key_len = tbl->key_len;
463 int error;
464 struct neighbour *n1, *rc, *n = neigh_alloc(tbl);
465 struct neigh_hash_table *nht;
467 if (!n) {
468 rc = ERR_PTR(-ENOBUFS);
469 goto out;
472 memcpy(n->primary_key, pkey, key_len);
473 n->dev = dev;
474 dev_hold(dev);
476 /* Protocol specific setup. */
477 if (tbl->constructor && (error = tbl->constructor(n)) < 0) {
478 rc = ERR_PTR(error);
479 goto out_neigh_release;
482 /* Device specific setup. */
483 if (n->parms->neigh_setup &&
484 (error = n->parms->neigh_setup(n)) < 0) {
485 rc = ERR_PTR(error);
486 goto out_neigh_release;
489 n->confirmed = jiffies - (n->parms->base_reachable_time << 1);
491 write_lock_bh(&tbl->lock);
492 nht = rcu_dereference_protected(tbl->nht,
493 lockdep_is_held(&tbl->lock));
495 if (atomic_read(&tbl->entries) > (nht->hash_mask + 1))
496 nht = neigh_hash_grow(tbl, (nht->hash_mask + 1) << 1);
498 hash_val = tbl->hash(pkey, dev, nht->hash_rnd) & nht->hash_mask;
500 if (n->parms->dead) {
501 rc = ERR_PTR(-EINVAL);
502 goto out_tbl_unlock;
505 for (n1 = rcu_dereference_protected(nht->hash_buckets[hash_val],
506 lockdep_is_held(&tbl->lock));
507 n1 != NULL;
508 n1 = rcu_dereference_protected(n1->next,
509 lockdep_is_held(&tbl->lock))) {
510 if (dev == n1->dev && !memcmp(n1->primary_key, pkey, key_len)) {
511 neigh_hold(n1);
512 rc = n1;
513 goto out_tbl_unlock;
517 n->dead = 0;
518 neigh_hold(n);
519 rcu_assign_pointer(n->next,
520 rcu_dereference_protected(nht->hash_buckets[hash_val],
521 lockdep_is_held(&tbl->lock)));
522 rcu_assign_pointer(nht->hash_buckets[hash_val], n);
523 write_unlock_bh(&tbl->lock);
524 NEIGH_PRINTK2("neigh %p is created.\n", n);
525 rc = n;
526 out:
527 return rc;
528 out_tbl_unlock:
529 write_unlock_bh(&tbl->lock);
530 out_neigh_release:
531 neigh_release(n);
532 goto out;
534 EXPORT_SYMBOL(neigh_create);
536 static u32 pneigh_hash(const void *pkey, int key_len)
538 u32 hash_val = *(u32 *)(pkey + key_len - 4);
539 hash_val ^= (hash_val >> 16);
540 hash_val ^= hash_val >> 8;
541 hash_val ^= hash_val >> 4;
542 hash_val &= PNEIGH_HASHMASK;
543 return hash_val;
546 static struct pneigh_entry *__pneigh_lookup_1(struct pneigh_entry *n,
547 struct net *net,
548 const void *pkey,
549 int key_len,
550 struct net_device *dev)
552 while (n) {
553 if (!memcmp(n->key, pkey, key_len) &&
554 net_eq(pneigh_net(n), net) &&
555 (n->dev == dev || !n->dev))
556 return n;
557 n = n->next;
559 return NULL;
562 struct pneigh_entry *__pneigh_lookup(struct neigh_table *tbl,
563 struct net *net, const void *pkey, struct net_device *dev)
565 int key_len = tbl->key_len;
566 u32 hash_val = pneigh_hash(pkey, key_len);
568 return __pneigh_lookup_1(tbl->phash_buckets[hash_val],
569 net, pkey, key_len, dev);
571 EXPORT_SYMBOL_GPL(__pneigh_lookup);
573 struct pneigh_entry * pneigh_lookup(struct neigh_table *tbl,
574 struct net *net, const void *pkey,
575 struct net_device *dev, int creat)
577 struct pneigh_entry *n;
578 int key_len = tbl->key_len;
579 u32 hash_val = pneigh_hash(pkey, key_len);
581 read_lock_bh(&tbl->lock);
582 n = __pneigh_lookup_1(tbl->phash_buckets[hash_val],
583 net, pkey, key_len, dev);
584 read_unlock_bh(&tbl->lock);
586 if (n || !creat)
587 goto out;
589 ASSERT_RTNL();
591 n = kmalloc(sizeof(*n) + key_len, GFP_KERNEL);
592 if (!n)
593 goto out;
595 write_pnet(&n->net, hold_net(net));
596 memcpy(n->key, pkey, key_len);
597 n->dev = dev;
598 if (dev)
599 dev_hold(dev);
601 if (tbl->pconstructor && tbl->pconstructor(n)) {
602 if (dev)
603 dev_put(dev);
604 release_net(net);
605 kfree(n);
606 n = NULL;
607 goto out;
610 write_lock_bh(&tbl->lock);
611 n->next = tbl->phash_buckets[hash_val];
612 tbl->phash_buckets[hash_val] = n;
613 write_unlock_bh(&tbl->lock);
614 out:
615 return n;
617 EXPORT_SYMBOL(pneigh_lookup);
620 int pneigh_delete(struct neigh_table *tbl, struct net *net, const void *pkey,
621 struct net_device *dev)
623 struct pneigh_entry *n, **np;
624 int key_len = tbl->key_len;
625 u32 hash_val = pneigh_hash(pkey, key_len);
627 write_lock_bh(&tbl->lock);
628 for (np = &tbl->phash_buckets[hash_val]; (n = *np) != NULL;
629 np = &n->next) {
630 if (!memcmp(n->key, pkey, key_len) && n->dev == dev &&
631 net_eq(pneigh_net(n), net)) {
632 *np = n->next;
633 write_unlock_bh(&tbl->lock);
634 if (tbl->pdestructor)
635 tbl->pdestructor(n);
636 if (n->dev)
637 dev_put(n->dev);
638 release_net(pneigh_net(n));
639 kfree(n);
640 return 0;
643 write_unlock_bh(&tbl->lock);
644 return -ENOENT;
647 static int pneigh_ifdown(struct neigh_table *tbl, struct net_device *dev)
649 struct pneigh_entry *n, **np;
650 u32 h;
652 for (h = 0; h <= PNEIGH_HASHMASK; h++) {
653 np = &tbl->phash_buckets[h];
654 while ((n = *np) != NULL) {
655 if (!dev || n->dev == dev) {
656 *np = n->next;
657 if (tbl->pdestructor)
658 tbl->pdestructor(n);
659 if (n->dev)
660 dev_put(n->dev);
661 release_net(pneigh_net(n));
662 kfree(n);
663 continue;
665 np = &n->next;
668 return -ENOENT;
671 static void neigh_parms_destroy(struct neigh_parms *parms);
673 static inline void neigh_parms_put(struct neigh_parms *parms)
675 if (atomic_dec_and_test(&parms->refcnt))
676 neigh_parms_destroy(parms);
679 static void neigh_destroy_rcu(struct rcu_head *head)
681 struct neighbour *neigh = container_of(head, struct neighbour, rcu);
683 kmem_cache_free(neigh->tbl->kmem_cachep, neigh);
686 * neighbour must already be out of the table;
689 void neigh_destroy(struct neighbour *neigh)
691 struct hh_cache *hh;
693 NEIGH_CACHE_STAT_INC(neigh->tbl, destroys);
695 if (!neigh->dead) {
696 printk(KERN_WARNING
697 "Destroying alive neighbour %p\n", neigh);
698 dump_stack();
699 return;
702 if (neigh_del_timer(neigh))
703 printk(KERN_WARNING "Impossible event.\n");
705 while ((hh = neigh->hh) != NULL) {
706 neigh->hh = hh->hh_next;
707 hh->hh_next = NULL;
709 write_seqlock_bh(&hh->hh_lock);
710 hh->hh_output = neigh_blackhole;
711 write_sequnlock_bh(&hh->hh_lock);
712 hh_cache_put(hh);
715 skb_queue_purge(&neigh->arp_queue);
717 dev_put(neigh->dev);
718 neigh_parms_put(neigh->parms);
720 NEIGH_PRINTK2("neigh %p is destroyed.\n", neigh);
722 atomic_dec(&neigh->tbl->entries);
723 call_rcu(&neigh->rcu, neigh_destroy_rcu);
725 EXPORT_SYMBOL(neigh_destroy);
727 /* Neighbour state is suspicious;
728 disable fast path.
730 Called with write_locked neigh.
732 static void neigh_suspect(struct neighbour *neigh)
734 struct hh_cache *hh;
736 NEIGH_PRINTK2("neigh %p is suspected.\n", neigh);
738 neigh->output = neigh->ops->output;
740 for (hh = neigh->hh; hh; hh = hh->hh_next)
741 hh->hh_output = neigh->ops->output;
744 /* Neighbour state is OK;
745 enable fast path.
747 Called with write_locked neigh.
749 static void neigh_connect(struct neighbour *neigh)
751 struct hh_cache *hh;
753 NEIGH_PRINTK2("neigh %p is connected.\n", neigh);
755 neigh->output = neigh->ops->connected_output;
757 for (hh = neigh->hh; hh; hh = hh->hh_next)
758 hh->hh_output = neigh->ops->hh_output;
761 static void neigh_periodic_work(struct work_struct *work)
763 struct neigh_table *tbl = container_of(work, struct neigh_table, gc_work.work);
764 struct neighbour *n;
765 struct neighbour __rcu **np;
766 unsigned int i;
767 struct neigh_hash_table *nht;
769 NEIGH_CACHE_STAT_INC(tbl, periodic_gc_runs);
771 write_lock_bh(&tbl->lock);
772 nht = rcu_dereference_protected(tbl->nht,
773 lockdep_is_held(&tbl->lock));
776 * periodically recompute ReachableTime from random function
779 if (time_after(jiffies, tbl->last_rand + 300 * HZ)) {
780 struct neigh_parms *p;
781 tbl->last_rand = jiffies;
782 for (p = &tbl->parms; p; p = p->next)
783 p->reachable_time =
784 neigh_rand_reach_time(p->base_reachable_time);
787 for (i = 0 ; i <= nht->hash_mask; i++) {
788 np = &nht->hash_buckets[i];
790 while ((n = rcu_dereference_protected(*np,
791 lockdep_is_held(&tbl->lock))) != NULL) {
792 unsigned int state;
794 write_lock(&n->lock);
796 state = n->nud_state;
797 if (state & (NUD_PERMANENT | NUD_IN_TIMER)) {
798 write_unlock(&n->lock);
799 goto next_elt;
802 if (time_before(n->used, n->confirmed))
803 n->used = n->confirmed;
805 if (atomic_read(&n->refcnt) == 1 &&
806 (state == NUD_FAILED ||
807 time_after(jiffies, n->used + n->parms->gc_staletime))) {
808 *np = n->next;
809 n->dead = 1;
810 write_unlock(&n->lock);
811 neigh_cleanup_and_release(n);
812 continue;
814 write_unlock(&n->lock);
816 next_elt:
817 np = &n->next;
820 * It's fine to release lock here, even if hash table
821 * grows while we are preempted.
823 write_unlock_bh(&tbl->lock);
824 cond_resched();
825 write_lock_bh(&tbl->lock);
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 schedule_delayed_work(&tbl->gc_work,
832 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 return (n->nud_state & NUD_PROBE) ?
840 p->ucast_probes :
841 p->ucast_probes + p->app_probes + p->mcast_probes;
844 static void neigh_invalidate(struct neighbour *neigh)
845 __releases(neigh->lock)
846 __acquires(neigh->lock)
848 struct sk_buff *skb;
850 NEIGH_CACHE_STAT_INC(neigh->tbl, res_failed);
851 NEIGH_PRINTK2("neigh %p is failed.\n", neigh);
852 neigh->updated = jiffies;
854 /* It is very thin place. report_unreachable is very complicated
855 routine. Particularly, it can hit the same neighbour entry!
857 So that, we try to be accurate and avoid dead loop. --ANK
859 while (neigh->nud_state == NUD_FAILED &&
860 (skb = __skb_dequeue(&neigh->arp_queue)) != NULL) {
861 write_unlock(&neigh->lock);
862 neigh->ops->error_report(neigh, skb);
863 write_lock(&neigh->lock);
865 skb_queue_purge(&neigh->arp_queue);
868 /* Called when a timer expires for a neighbour entry. */
870 static void neigh_timer_handler(unsigned long arg)
872 unsigned long now, next;
873 struct neighbour *neigh = (struct neighbour *)arg;
874 unsigned state;
875 int notify = 0;
877 write_lock(&neigh->lock);
879 state = neigh->nud_state;
880 now = jiffies;
881 next = now + HZ;
883 if (!(state & NUD_IN_TIMER)) {
884 #ifndef CONFIG_SMP
885 printk(KERN_WARNING "neigh: timer & !nud_in_timer\n");
886 #endif
887 goto out;
890 if (state & NUD_REACHABLE) {
891 if (time_before_eq(now,
892 neigh->confirmed + neigh->parms->reachable_time)) {
893 NEIGH_PRINTK2("neigh %p is still alive.\n", neigh);
894 next = neigh->confirmed + neigh->parms->reachable_time;
895 } else if (time_before_eq(now,
896 neigh->used + neigh->parms->delay_probe_time)) {
897 NEIGH_PRINTK2("neigh %p is delayed.\n", neigh);
898 neigh->nud_state = NUD_DELAY;
899 neigh->updated = jiffies;
900 neigh_suspect(neigh);
901 next = now + neigh->parms->delay_probe_time;
902 } else {
903 NEIGH_PRINTK2("neigh %p is suspected.\n", neigh);
904 neigh->nud_state = NUD_STALE;
905 neigh->updated = jiffies;
906 neigh_suspect(neigh);
907 notify = 1;
909 } else if (state & NUD_DELAY) {
910 if (time_before_eq(now,
911 neigh->confirmed + neigh->parms->delay_probe_time)) {
912 NEIGH_PRINTK2("neigh %p is now reachable.\n", neigh);
913 neigh->nud_state = NUD_REACHABLE;
914 neigh->updated = jiffies;
915 neigh_connect(neigh);
916 notify = 1;
917 next = neigh->confirmed + neigh->parms->reachable_time;
918 } else {
919 NEIGH_PRINTK2("neigh %p is probed.\n", neigh);
920 neigh->nud_state = NUD_PROBE;
921 neigh->updated = jiffies;
922 atomic_set(&neigh->probes, 0);
923 next = now + neigh->parms->retrans_time;
925 } else {
926 /* NUD_PROBE|NUD_INCOMPLETE */
927 next = now + neigh->parms->retrans_time;
930 if ((neigh->nud_state & (NUD_INCOMPLETE | NUD_PROBE)) &&
931 atomic_read(&neigh->probes) >= neigh_max_probes(neigh)) {
932 neigh->nud_state = NUD_FAILED;
933 notify = 1;
934 neigh_invalidate(neigh);
937 if (neigh->nud_state & NUD_IN_TIMER) {
938 if (time_before(next, jiffies + HZ/2))
939 next = jiffies + HZ/2;
940 if (!mod_timer(&neigh->timer, next))
941 neigh_hold(neigh);
943 if (neigh->nud_state & (NUD_INCOMPLETE | NUD_PROBE)) {
944 struct sk_buff *skb = skb_peek(&neigh->arp_queue);
945 /* keep skb alive even if arp_queue overflows */
946 if (skb)
947 skb = skb_copy(skb, GFP_ATOMIC);
948 write_unlock(&neigh->lock);
949 neigh->ops->solicit(neigh, skb);
950 atomic_inc(&neigh->probes);
951 kfree_skb(skb);
952 } else {
953 out:
954 write_unlock(&neigh->lock);
957 if (notify)
958 neigh_update_notify(neigh);
960 neigh_release(neigh);
963 int __neigh_event_send(struct neighbour *neigh, struct sk_buff *skb)
965 int rc;
966 unsigned long now;
968 write_lock_bh(&neigh->lock);
970 rc = 0;
971 if (neigh->nud_state & (NUD_CONNECTED | NUD_DELAY | NUD_PROBE))
972 goto out_unlock_bh;
974 now = jiffies;
976 if (!(neigh->nud_state & (NUD_STALE | NUD_INCOMPLETE))) {
977 if (neigh->parms->mcast_probes + neigh->parms->app_probes) {
978 atomic_set(&neigh->probes, neigh->parms->ucast_probes);
979 neigh->nud_state = NUD_INCOMPLETE;
980 neigh->updated = jiffies;
981 neigh_add_timer(neigh, now + 1);
982 } else {
983 neigh->nud_state = NUD_FAILED;
984 neigh->updated = jiffies;
985 write_unlock_bh(&neigh->lock);
987 kfree_skb(skb);
988 return 1;
990 } else if (neigh->nud_state & NUD_STALE) {
991 NEIGH_PRINTK2("neigh %p is delayed.\n", neigh);
992 neigh->nud_state = NUD_DELAY;
993 neigh->updated = jiffies;
994 neigh_add_timer(neigh,
995 jiffies + neigh->parms->delay_probe_time);
998 if (neigh->nud_state == NUD_INCOMPLETE) {
999 if (skb) {
1000 if (skb_queue_len(&neigh->arp_queue) >=
1001 neigh->parms->queue_len) {
1002 struct sk_buff *buff;
1003 buff = __skb_dequeue(&neigh->arp_queue);
1004 kfree_skb(buff);
1005 NEIGH_CACHE_STAT_INC(neigh->tbl, unres_discards);
1007 skb_dst_force(skb);
1008 __skb_queue_tail(&neigh->arp_queue, skb);
1010 rc = 1;
1012 out_unlock_bh:
1013 write_unlock_bh(&neigh->lock);
1014 return rc;
1016 EXPORT_SYMBOL(__neigh_event_send);
1018 static void neigh_update_hhs(const struct neighbour *neigh)
1020 struct hh_cache *hh;
1021 void (*update)(struct hh_cache*, const struct net_device*, const unsigned char *)
1022 = NULL;
1024 if (neigh->dev->header_ops)
1025 update = neigh->dev->header_ops->cache_update;
1027 if (update) {
1028 for (hh = neigh->hh; hh; hh = hh->hh_next) {
1029 write_seqlock_bh(&hh->hh_lock);
1030 update(hh, neigh->dev, neigh->ha);
1031 write_sequnlock_bh(&hh->hh_lock);
1038 /* Generic update routine.
1039 -- lladdr is new lladdr or NULL, if it is not supplied.
1040 -- new is new state.
1041 -- flags
1042 NEIGH_UPDATE_F_OVERRIDE allows to override existing lladdr,
1043 if it is different.
1044 NEIGH_UPDATE_F_WEAK_OVERRIDE will suspect existing "connected"
1045 lladdr instead of overriding it
1046 if it is different.
1047 It also allows to retain current state
1048 if lladdr is unchanged.
1049 NEIGH_UPDATE_F_ADMIN means that the change is administrative.
1051 NEIGH_UPDATE_F_OVERRIDE_ISROUTER allows to override existing
1052 NTF_ROUTER flag.
1053 NEIGH_UPDATE_F_ISROUTER indicates if the neighbour is known as
1054 a router.
1056 Caller MUST hold reference count on the entry.
1059 int neigh_update(struct neighbour *neigh, const u8 *lladdr, u8 new,
1060 u32 flags)
1062 u8 old;
1063 int err;
1064 int notify = 0;
1065 struct net_device *dev;
1066 int update_isrouter = 0;
1068 write_lock_bh(&neigh->lock);
1070 dev = neigh->dev;
1071 old = neigh->nud_state;
1072 err = -EPERM;
1074 if (!(flags & NEIGH_UPDATE_F_ADMIN) &&
1075 (old & (NUD_NOARP | NUD_PERMANENT)))
1076 goto out;
1078 if (!(new & NUD_VALID)) {
1079 neigh_del_timer(neigh);
1080 if (old & NUD_CONNECTED)
1081 neigh_suspect(neigh);
1082 neigh->nud_state = new;
1083 err = 0;
1084 notify = old & NUD_VALID;
1085 if ((old & (NUD_INCOMPLETE | NUD_PROBE)) &&
1086 (new & NUD_FAILED)) {
1087 neigh_invalidate(neigh);
1088 notify = 1;
1090 goto out;
1093 /* Compare new lladdr with cached one */
1094 if (!dev->addr_len) {
1095 /* First case: device needs no address. */
1096 lladdr = neigh->ha;
1097 } else if (lladdr) {
1098 /* The second case: if something is already cached
1099 and a new address is proposed:
1100 - compare new & old
1101 - if they are different, check override flag
1103 if ((old & NUD_VALID) &&
1104 !memcmp(lladdr, neigh->ha, dev->addr_len))
1105 lladdr = neigh->ha;
1106 } else {
1107 /* No address is supplied; if we know something,
1108 use it, otherwise discard the request.
1110 err = -EINVAL;
1111 if (!(old & NUD_VALID))
1112 goto out;
1113 lladdr = neigh->ha;
1116 if (new & NUD_CONNECTED)
1117 neigh->confirmed = jiffies;
1118 neigh->updated = jiffies;
1120 /* If entry was valid and address is not changed,
1121 do not change entry state, if new one is STALE.
1123 err = 0;
1124 update_isrouter = flags & NEIGH_UPDATE_F_OVERRIDE_ISROUTER;
1125 if (old & NUD_VALID) {
1126 if (lladdr != neigh->ha && !(flags & NEIGH_UPDATE_F_OVERRIDE)) {
1127 update_isrouter = 0;
1128 if ((flags & NEIGH_UPDATE_F_WEAK_OVERRIDE) &&
1129 (old & NUD_CONNECTED)) {
1130 lladdr = neigh->ha;
1131 new = NUD_STALE;
1132 } else
1133 goto out;
1134 } else {
1135 if (lladdr == neigh->ha && new == NUD_STALE &&
1136 ((flags & NEIGH_UPDATE_F_WEAK_OVERRIDE) ||
1137 (old & NUD_CONNECTED))
1139 new = old;
1143 if (new != old) {
1144 neigh_del_timer(neigh);
1145 if (new & NUD_IN_TIMER)
1146 neigh_add_timer(neigh, (jiffies +
1147 ((new & NUD_REACHABLE) ?
1148 neigh->parms->reachable_time :
1149 0)));
1150 neigh->nud_state = new;
1153 if (lladdr != neigh->ha) {
1154 write_seqlock(&neigh->ha_lock);
1155 memcpy(&neigh->ha, lladdr, dev->addr_len);
1156 write_sequnlock(&neigh->ha_lock);
1157 neigh_update_hhs(neigh);
1158 if (!(new & NUD_CONNECTED))
1159 neigh->confirmed = jiffies -
1160 (neigh->parms->base_reachable_time << 1);
1161 notify = 1;
1163 if (new == old)
1164 goto out;
1165 if (new & NUD_CONNECTED)
1166 neigh_connect(neigh);
1167 else
1168 neigh_suspect(neigh);
1169 if (!(old & NUD_VALID)) {
1170 struct sk_buff *skb;
1172 /* Again: avoid dead loop if something went wrong */
1174 while (neigh->nud_state & NUD_VALID &&
1175 (skb = __skb_dequeue(&neigh->arp_queue)) != NULL) {
1176 struct neighbour *n1 = neigh;
1177 write_unlock_bh(&neigh->lock);
1178 /* On shaper/eql skb->dst->neighbour != neigh :( */
1179 if (skb_dst(skb) && skb_dst(skb)->neighbour)
1180 n1 = skb_dst(skb)->neighbour;
1181 n1->output(skb);
1182 write_lock_bh(&neigh->lock);
1184 skb_queue_purge(&neigh->arp_queue);
1186 out:
1187 if (update_isrouter) {
1188 neigh->flags = (flags & NEIGH_UPDATE_F_ISROUTER) ?
1189 (neigh->flags | NTF_ROUTER) :
1190 (neigh->flags & ~NTF_ROUTER);
1192 write_unlock_bh(&neigh->lock);
1194 if (notify)
1195 neigh_update_notify(neigh);
1197 return err;
1199 EXPORT_SYMBOL(neigh_update);
1201 struct neighbour *neigh_event_ns(struct neigh_table *tbl,
1202 u8 *lladdr, void *saddr,
1203 struct net_device *dev)
1205 struct neighbour *neigh = __neigh_lookup(tbl, saddr, dev,
1206 lladdr || !dev->addr_len);
1207 if (neigh)
1208 neigh_update(neigh, lladdr, NUD_STALE,
1209 NEIGH_UPDATE_F_OVERRIDE);
1210 return neigh;
1212 EXPORT_SYMBOL(neigh_event_ns);
1214 static inline bool neigh_hh_lookup(struct neighbour *n, struct dst_entry *dst,
1215 __be16 protocol)
1217 struct hh_cache *hh;
1219 smp_rmb(); /* paired with smp_wmb() in neigh_hh_init() */
1220 for (hh = n->hh; hh; hh = hh->hh_next) {
1221 if (hh->hh_type == protocol) {
1222 atomic_inc(&hh->hh_refcnt);
1223 if (unlikely(cmpxchg(&dst->hh, NULL, hh) != NULL))
1224 hh_cache_put(hh);
1225 return true;
1228 return false;
1231 /* called with read_lock_bh(&n->lock); */
1232 static void neigh_hh_init(struct neighbour *n, struct dst_entry *dst,
1233 __be16 protocol)
1235 struct hh_cache *hh;
1236 struct net_device *dev = dst->dev;
1238 if (likely(neigh_hh_lookup(n, dst, protocol)))
1239 return;
1241 /* slow path */
1242 hh = kzalloc(sizeof(*hh), GFP_ATOMIC);
1243 if (!hh)
1244 return;
1246 seqlock_init(&hh->hh_lock);
1247 hh->hh_type = protocol;
1248 atomic_set(&hh->hh_refcnt, 2);
1250 if (dev->header_ops->cache(n, hh)) {
1251 kfree(hh);
1252 return;
1255 write_lock_bh(&n->lock);
1257 /* must check if another thread already did the insert */
1258 if (neigh_hh_lookup(n, dst, protocol)) {
1259 kfree(hh);
1260 goto end;
1263 if (n->nud_state & NUD_CONNECTED)
1264 hh->hh_output = n->ops->hh_output;
1265 else
1266 hh->hh_output = n->ops->output;
1268 hh->hh_next = n->hh;
1269 smp_wmb(); /* paired with smp_rmb() in neigh_hh_lookup() */
1270 n->hh = hh;
1272 if (unlikely(cmpxchg(&dst->hh, NULL, hh) != NULL))
1273 hh_cache_put(hh);
1274 end:
1275 write_unlock_bh(&n->lock);
1278 /* This function can be used in contexts, where only old dev_queue_xmit
1279 * worked, f.e. if you want to override normal output path (eql, shaper),
1280 * but resolution is not made yet.
1283 int neigh_compat_output(struct sk_buff *skb)
1285 struct net_device *dev = skb->dev;
1287 __skb_pull(skb, skb_network_offset(skb));
1289 if (dev_hard_header(skb, dev, ntohs(skb->protocol), NULL, NULL,
1290 skb->len) < 0 &&
1291 dev->header_ops->rebuild(skb))
1292 return 0;
1294 return dev_queue_xmit(skb);
1296 EXPORT_SYMBOL(neigh_compat_output);
1298 /* Slow and careful. */
1300 int neigh_resolve_output(struct sk_buff *skb)
1302 struct dst_entry *dst = skb_dst(skb);
1303 struct neighbour *neigh;
1304 int rc = 0;
1306 if (!dst || !(neigh = dst->neighbour))
1307 goto discard;
1309 __skb_pull(skb, skb_network_offset(skb));
1311 if (!neigh_event_send(neigh, skb)) {
1312 int err;
1313 struct net_device *dev = neigh->dev;
1314 unsigned int seq;
1316 if (dev->header_ops->cache &&
1317 !dst->hh &&
1318 !(dst->flags & DST_NOCACHE))
1319 neigh_hh_init(neigh, dst, dst->ops->protocol);
1321 do {
1322 seq = read_seqbegin(&neigh->ha_lock);
1323 err = dev_hard_header(skb, dev, ntohs(skb->protocol),
1324 neigh->ha, NULL, skb->len);
1325 } while (read_seqretry(&neigh->ha_lock, seq));
1327 if (err >= 0)
1328 rc = neigh->ops->queue_xmit(skb);
1329 else
1330 goto out_kfree_skb;
1332 out:
1333 return rc;
1334 discard:
1335 NEIGH_PRINTK1("neigh_resolve_output: dst=%p neigh=%p\n",
1336 dst, dst ? dst->neighbour : NULL);
1337 out_kfree_skb:
1338 rc = -EINVAL;
1339 kfree_skb(skb);
1340 goto out;
1342 EXPORT_SYMBOL(neigh_resolve_output);
1344 /* As fast as possible without hh cache */
1346 int neigh_connected_output(struct sk_buff *skb)
1348 int err;
1349 struct dst_entry *dst = skb_dst(skb);
1350 struct neighbour *neigh = dst->neighbour;
1351 struct net_device *dev = neigh->dev;
1352 unsigned int seq;
1354 __skb_pull(skb, skb_network_offset(skb));
1356 do {
1357 seq = read_seqbegin(&neigh->ha_lock);
1358 err = dev_hard_header(skb, dev, ntohs(skb->protocol),
1359 neigh->ha, NULL, skb->len);
1360 } while (read_seqretry(&neigh->ha_lock, seq));
1362 if (err >= 0)
1363 err = neigh->ops->queue_xmit(skb);
1364 else {
1365 err = -EINVAL;
1366 kfree_skb(skb);
1368 return err;
1370 EXPORT_SYMBOL(neigh_connected_output);
1372 static void neigh_proxy_process(unsigned long arg)
1374 struct neigh_table *tbl = (struct neigh_table *)arg;
1375 long sched_next = 0;
1376 unsigned long now = jiffies;
1377 struct sk_buff *skb, *n;
1379 spin_lock(&tbl->proxy_queue.lock);
1381 skb_queue_walk_safe(&tbl->proxy_queue, skb, n) {
1382 long tdif = NEIGH_CB(skb)->sched_next - now;
1384 if (tdif <= 0) {
1385 struct net_device *dev = skb->dev;
1387 __skb_unlink(skb, &tbl->proxy_queue);
1388 if (tbl->proxy_redo && netif_running(dev)) {
1389 rcu_read_lock();
1390 tbl->proxy_redo(skb);
1391 rcu_read_unlock();
1392 } else {
1393 kfree_skb(skb);
1396 dev_put(dev);
1397 } else if (!sched_next || tdif < sched_next)
1398 sched_next = tdif;
1400 del_timer(&tbl->proxy_timer);
1401 if (sched_next)
1402 mod_timer(&tbl->proxy_timer, jiffies + sched_next);
1403 spin_unlock(&tbl->proxy_queue.lock);
1406 void pneigh_enqueue(struct neigh_table *tbl, struct neigh_parms *p,
1407 struct sk_buff *skb)
1409 unsigned long now = jiffies;
1410 unsigned long sched_next = now + (net_random() % p->proxy_delay);
1412 if (tbl->proxy_queue.qlen > p->proxy_qlen) {
1413 kfree_skb(skb);
1414 return;
1417 NEIGH_CB(skb)->sched_next = sched_next;
1418 NEIGH_CB(skb)->flags |= LOCALLY_ENQUEUED;
1420 spin_lock(&tbl->proxy_queue.lock);
1421 if (del_timer(&tbl->proxy_timer)) {
1422 if (time_before(tbl->proxy_timer.expires, sched_next))
1423 sched_next = tbl->proxy_timer.expires;
1425 skb_dst_drop(skb);
1426 dev_hold(skb->dev);
1427 __skb_queue_tail(&tbl->proxy_queue, skb);
1428 mod_timer(&tbl->proxy_timer, sched_next);
1429 spin_unlock(&tbl->proxy_queue.lock);
1431 EXPORT_SYMBOL(pneigh_enqueue);
1433 static inline struct neigh_parms *lookup_neigh_parms(struct neigh_table *tbl,
1434 struct net *net, int ifindex)
1436 struct neigh_parms *p;
1438 for (p = &tbl->parms; p; p = p->next) {
1439 if ((p->dev && p->dev->ifindex == ifindex && net_eq(neigh_parms_net(p), net)) ||
1440 (!p->dev && !ifindex))
1441 return p;
1444 return NULL;
1447 struct neigh_parms *neigh_parms_alloc(struct net_device *dev,
1448 struct neigh_table *tbl)
1450 struct neigh_parms *p, *ref;
1451 struct net *net = dev_net(dev);
1452 const struct net_device_ops *ops = dev->netdev_ops;
1454 ref = lookup_neigh_parms(tbl, net, 0);
1455 if (!ref)
1456 return NULL;
1458 p = kmemdup(ref, sizeof(*p), GFP_KERNEL);
1459 if (p) {
1460 p->tbl = tbl;
1461 atomic_set(&p->refcnt, 1);
1462 p->reachable_time =
1463 neigh_rand_reach_time(p->base_reachable_time);
1465 if (ops->ndo_neigh_setup && ops->ndo_neigh_setup(dev, p)) {
1466 kfree(p);
1467 return NULL;
1470 dev_hold(dev);
1471 p->dev = dev;
1472 write_pnet(&p->net, hold_net(net));
1473 p->sysctl_table = NULL;
1474 write_lock_bh(&tbl->lock);
1475 p->next = tbl->parms.next;
1476 tbl->parms.next = p;
1477 write_unlock_bh(&tbl->lock);
1479 return p;
1481 EXPORT_SYMBOL(neigh_parms_alloc);
1483 static void neigh_rcu_free_parms(struct rcu_head *head)
1485 struct neigh_parms *parms =
1486 container_of(head, struct neigh_parms, rcu_head);
1488 neigh_parms_put(parms);
1491 void neigh_parms_release(struct neigh_table *tbl, struct neigh_parms *parms)
1493 struct neigh_parms **p;
1495 if (!parms || parms == &tbl->parms)
1496 return;
1497 write_lock_bh(&tbl->lock);
1498 for (p = &tbl->parms.next; *p; p = &(*p)->next) {
1499 if (*p == parms) {
1500 *p = parms->next;
1501 parms->dead = 1;
1502 write_unlock_bh(&tbl->lock);
1503 if (parms->dev)
1504 dev_put(parms->dev);
1505 call_rcu(&parms->rcu_head, neigh_rcu_free_parms);
1506 return;
1509 write_unlock_bh(&tbl->lock);
1510 NEIGH_PRINTK1("neigh_parms_release: not found\n");
1512 EXPORT_SYMBOL(neigh_parms_release);
1514 static void neigh_parms_destroy(struct neigh_parms *parms)
1516 release_net(neigh_parms_net(parms));
1517 kfree(parms);
1520 static struct lock_class_key neigh_table_proxy_queue_class;
1522 void neigh_table_init_no_netlink(struct neigh_table *tbl)
1524 unsigned long now = jiffies;
1525 unsigned long phsize;
1527 write_pnet(&tbl->parms.net, &init_net);
1528 atomic_set(&tbl->parms.refcnt, 1);
1529 tbl->parms.reachable_time =
1530 neigh_rand_reach_time(tbl->parms.base_reachable_time);
1532 if (!tbl->kmem_cachep)
1533 tbl->kmem_cachep =
1534 kmem_cache_create(tbl->id, tbl->entry_size, 0,
1535 SLAB_HWCACHE_ALIGN|SLAB_PANIC,
1536 NULL);
1537 tbl->stats = alloc_percpu(struct neigh_statistics);
1538 if (!tbl->stats)
1539 panic("cannot create neighbour cache statistics");
1541 #ifdef CONFIG_PROC_FS
1542 if (!proc_create_data(tbl->id, 0, init_net.proc_net_stat,
1543 &neigh_stat_seq_fops, tbl))
1544 panic("cannot create neighbour proc dir entry");
1545 #endif
1547 RCU_INIT_POINTER(tbl->nht, neigh_hash_alloc(8));
1549 phsize = (PNEIGH_HASHMASK + 1) * sizeof(struct pneigh_entry *);
1550 tbl->phash_buckets = kzalloc(phsize, GFP_KERNEL);
1552 if (!tbl->nht || !tbl->phash_buckets)
1553 panic("cannot allocate neighbour cache hashes");
1555 rwlock_init(&tbl->lock);
1556 INIT_DELAYED_WORK_DEFERRABLE(&tbl->gc_work, neigh_periodic_work);
1557 schedule_delayed_work(&tbl->gc_work, tbl->parms.reachable_time);
1558 setup_timer(&tbl->proxy_timer, neigh_proxy_process, (unsigned long)tbl);
1559 skb_queue_head_init_class(&tbl->proxy_queue,
1560 &neigh_table_proxy_queue_class);
1562 tbl->last_flush = now;
1563 tbl->last_rand = now + tbl->parms.reachable_time * 20;
1565 EXPORT_SYMBOL(neigh_table_init_no_netlink);
1567 void neigh_table_init(struct neigh_table *tbl)
1569 struct neigh_table *tmp;
1571 neigh_table_init_no_netlink(tbl);
1572 write_lock(&neigh_tbl_lock);
1573 for (tmp = neigh_tables; tmp; tmp = tmp->next) {
1574 if (tmp->family == tbl->family)
1575 break;
1577 tbl->next = neigh_tables;
1578 neigh_tables = tbl;
1579 write_unlock(&neigh_tbl_lock);
1581 if (unlikely(tmp)) {
1582 printk(KERN_ERR "NEIGH: Registering multiple tables for "
1583 "family %d\n", tbl->family);
1584 dump_stack();
1587 EXPORT_SYMBOL(neigh_table_init);
1589 int neigh_table_clear(struct neigh_table *tbl)
1591 struct neigh_table **tp;
1593 /* It is not clean... Fix it to unload IPv6 module safely */
1594 cancel_delayed_work_sync(&tbl->gc_work);
1595 del_timer_sync(&tbl->proxy_timer);
1596 pneigh_queue_purge(&tbl->proxy_queue);
1597 neigh_ifdown(tbl, NULL);
1598 if (atomic_read(&tbl->entries))
1599 printk(KERN_CRIT "neighbour leakage\n");
1600 write_lock(&neigh_tbl_lock);
1601 for (tp = &neigh_tables; *tp; tp = &(*tp)->next) {
1602 if (*tp == tbl) {
1603 *tp = tbl->next;
1604 break;
1607 write_unlock(&neigh_tbl_lock);
1609 call_rcu(&rcu_dereference_protected(tbl->nht, 1)->rcu,
1610 neigh_hash_free_rcu);
1611 tbl->nht = NULL;
1613 kfree(tbl->phash_buckets);
1614 tbl->phash_buckets = NULL;
1616 remove_proc_entry(tbl->id, init_net.proc_net_stat);
1618 free_percpu(tbl->stats);
1619 tbl->stats = NULL;
1621 kmem_cache_destroy(tbl->kmem_cachep);
1622 tbl->kmem_cachep = NULL;
1624 return 0;
1626 EXPORT_SYMBOL(neigh_table_clear);
1628 static int neigh_delete(struct sk_buff *skb, struct nlmsghdr *nlh, void *arg)
1630 struct net *net = sock_net(skb->sk);
1631 struct ndmsg *ndm;
1632 struct nlattr *dst_attr;
1633 struct neigh_table *tbl;
1634 struct net_device *dev = NULL;
1635 int err = -EINVAL;
1637 ASSERT_RTNL();
1638 if (nlmsg_len(nlh) < sizeof(*ndm))
1639 goto out;
1641 dst_attr = nlmsg_find_attr(nlh, sizeof(*ndm), NDA_DST);
1642 if (dst_attr == NULL)
1643 goto out;
1645 ndm = nlmsg_data(nlh);
1646 if (ndm->ndm_ifindex) {
1647 dev = __dev_get_by_index(net, ndm->ndm_ifindex);
1648 if (dev == NULL) {
1649 err = -ENODEV;
1650 goto out;
1654 read_lock(&neigh_tbl_lock);
1655 for (tbl = neigh_tables; tbl; tbl = tbl->next) {
1656 struct neighbour *neigh;
1658 if (tbl->family != ndm->ndm_family)
1659 continue;
1660 read_unlock(&neigh_tbl_lock);
1662 if (nla_len(dst_attr) < tbl->key_len)
1663 goto out;
1665 if (ndm->ndm_flags & NTF_PROXY) {
1666 err = pneigh_delete(tbl, net, nla_data(dst_attr), dev);
1667 goto out;
1670 if (dev == NULL)
1671 goto out;
1673 neigh = neigh_lookup(tbl, nla_data(dst_attr), dev);
1674 if (neigh == NULL) {
1675 err = -ENOENT;
1676 goto out;
1679 err = neigh_update(neigh, NULL, NUD_FAILED,
1680 NEIGH_UPDATE_F_OVERRIDE |
1681 NEIGH_UPDATE_F_ADMIN);
1682 neigh_release(neigh);
1683 goto out;
1685 read_unlock(&neigh_tbl_lock);
1686 err = -EAFNOSUPPORT;
1688 out:
1689 return err;
1692 static int neigh_add(struct sk_buff *skb, struct nlmsghdr *nlh, void *arg)
1694 struct net *net = sock_net(skb->sk);
1695 struct ndmsg *ndm;
1696 struct nlattr *tb[NDA_MAX+1];
1697 struct neigh_table *tbl;
1698 struct net_device *dev = NULL;
1699 int err;
1701 ASSERT_RTNL();
1702 err = nlmsg_parse(nlh, sizeof(*ndm), tb, NDA_MAX, NULL);
1703 if (err < 0)
1704 goto out;
1706 err = -EINVAL;
1707 if (tb[NDA_DST] == NULL)
1708 goto out;
1710 ndm = nlmsg_data(nlh);
1711 if (ndm->ndm_ifindex) {
1712 dev = __dev_get_by_index(net, ndm->ndm_ifindex);
1713 if (dev == NULL) {
1714 err = -ENODEV;
1715 goto out;
1718 if (tb[NDA_LLADDR] && nla_len(tb[NDA_LLADDR]) < dev->addr_len)
1719 goto out;
1722 read_lock(&neigh_tbl_lock);
1723 for (tbl = neigh_tables; tbl; tbl = tbl->next) {
1724 int flags = NEIGH_UPDATE_F_ADMIN | NEIGH_UPDATE_F_OVERRIDE;
1725 struct neighbour *neigh;
1726 void *dst, *lladdr;
1728 if (tbl->family != ndm->ndm_family)
1729 continue;
1730 read_unlock(&neigh_tbl_lock);
1732 if (nla_len(tb[NDA_DST]) < tbl->key_len)
1733 goto out;
1734 dst = nla_data(tb[NDA_DST]);
1735 lladdr = tb[NDA_LLADDR] ? nla_data(tb[NDA_LLADDR]) : NULL;
1737 if (ndm->ndm_flags & NTF_PROXY) {
1738 struct pneigh_entry *pn;
1740 err = -ENOBUFS;
1741 pn = pneigh_lookup(tbl, net, dst, dev, 1);
1742 if (pn) {
1743 pn->flags = ndm->ndm_flags;
1744 err = 0;
1746 goto out;
1749 if (dev == NULL)
1750 goto out;
1752 neigh = neigh_lookup(tbl, dst, dev);
1753 if (neigh == NULL) {
1754 if (!(nlh->nlmsg_flags & NLM_F_CREATE)) {
1755 err = -ENOENT;
1756 goto out;
1759 neigh = __neigh_lookup_errno(tbl, dst, dev);
1760 if (IS_ERR(neigh)) {
1761 err = PTR_ERR(neigh);
1762 goto out;
1764 } else {
1765 if (nlh->nlmsg_flags & NLM_F_EXCL) {
1766 err = -EEXIST;
1767 neigh_release(neigh);
1768 goto out;
1771 if (!(nlh->nlmsg_flags & NLM_F_REPLACE))
1772 flags &= ~NEIGH_UPDATE_F_OVERRIDE;
1775 if (ndm->ndm_flags & NTF_USE) {
1776 neigh_event_send(neigh, NULL);
1777 err = 0;
1778 } else
1779 err = neigh_update(neigh, lladdr, ndm->ndm_state, flags);
1780 neigh_release(neigh);
1781 goto out;
1784 read_unlock(&neigh_tbl_lock);
1785 err = -EAFNOSUPPORT;
1786 out:
1787 return err;
1790 static int neightbl_fill_parms(struct sk_buff *skb, struct neigh_parms *parms)
1792 struct nlattr *nest;
1794 nest = nla_nest_start(skb, NDTA_PARMS);
1795 if (nest == NULL)
1796 return -ENOBUFS;
1798 if (parms->dev)
1799 NLA_PUT_U32(skb, NDTPA_IFINDEX, parms->dev->ifindex);
1801 NLA_PUT_U32(skb, NDTPA_REFCNT, atomic_read(&parms->refcnt));
1802 NLA_PUT_U32(skb, NDTPA_QUEUE_LEN, parms->queue_len);
1803 NLA_PUT_U32(skb, NDTPA_PROXY_QLEN, parms->proxy_qlen);
1804 NLA_PUT_U32(skb, NDTPA_APP_PROBES, parms->app_probes);
1805 NLA_PUT_U32(skb, NDTPA_UCAST_PROBES, parms->ucast_probes);
1806 NLA_PUT_U32(skb, NDTPA_MCAST_PROBES, parms->mcast_probes);
1807 NLA_PUT_MSECS(skb, NDTPA_REACHABLE_TIME, parms->reachable_time);
1808 NLA_PUT_MSECS(skb, NDTPA_BASE_REACHABLE_TIME,
1809 parms->base_reachable_time);
1810 NLA_PUT_MSECS(skb, NDTPA_GC_STALETIME, parms->gc_staletime);
1811 NLA_PUT_MSECS(skb, NDTPA_DELAY_PROBE_TIME, parms->delay_probe_time);
1812 NLA_PUT_MSECS(skb, NDTPA_RETRANS_TIME, parms->retrans_time);
1813 NLA_PUT_MSECS(skb, NDTPA_ANYCAST_DELAY, parms->anycast_delay);
1814 NLA_PUT_MSECS(skb, NDTPA_PROXY_DELAY, parms->proxy_delay);
1815 NLA_PUT_MSECS(skb, NDTPA_LOCKTIME, parms->locktime);
1817 return nla_nest_end(skb, nest);
1819 nla_put_failure:
1820 nla_nest_cancel(skb, nest);
1821 return -EMSGSIZE;
1824 static int neightbl_fill_info(struct sk_buff *skb, struct neigh_table *tbl,
1825 u32 pid, u32 seq, int type, int flags)
1827 struct nlmsghdr *nlh;
1828 struct ndtmsg *ndtmsg;
1830 nlh = nlmsg_put(skb, pid, seq, type, sizeof(*ndtmsg), flags);
1831 if (nlh == NULL)
1832 return -EMSGSIZE;
1834 ndtmsg = nlmsg_data(nlh);
1836 read_lock_bh(&tbl->lock);
1837 ndtmsg->ndtm_family = tbl->family;
1838 ndtmsg->ndtm_pad1 = 0;
1839 ndtmsg->ndtm_pad2 = 0;
1841 NLA_PUT_STRING(skb, NDTA_NAME, tbl->id);
1842 NLA_PUT_MSECS(skb, NDTA_GC_INTERVAL, tbl->gc_interval);
1843 NLA_PUT_U32(skb, NDTA_THRESH1, tbl->gc_thresh1);
1844 NLA_PUT_U32(skb, NDTA_THRESH2, tbl->gc_thresh2);
1845 NLA_PUT_U32(skb, NDTA_THRESH3, tbl->gc_thresh3);
1848 unsigned long now = jiffies;
1849 unsigned int flush_delta = now - tbl->last_flush;
1850 unsigned int rand_delta = now - tbl->last_rand;
1851 struct neigh_hash_table *nht;
1852 struct ndt_config ndc = {
1853 .ndtc_key_len = tbl->key_len,
1854 .ndtc_entry_size = tbl->entry_size,
1855 .ndtc_entries = atomic_read(&tbl->entries),
1856 .ndtc_last_flush = jiffies_to_msecs(flush_delta),
1857 .ndtc_last_rand = jiffies_to_msecs(rand_delta),
1858 .ndtc_proxy_qlen = tbl->proxy_queue.qlen,
1861 rcu_read_lock_bh();
1862 nht = rcu_dereference_bh(tbl->nht);
1863 ndc.ndtc_hash_rnd = nht->hash_rnd;
1864 ndc.ndtc_hash_mask = nht->hash_mask;
1865 rcu_read_unlock_bh();
1867 NLA_PUT(skb, NDTA_CONFIG, sizeof(ndc), &ndc);
1871 int cpu;
1872 struct ndt_stats ndst;
1874 memset(&ndst, 0, sizeof(ndst));
1876 for_each_possible_cpu(cpu) {
1877 struct neigh_statistics *st;
1879 st = per_cpu_ptr(tbl->stats, cpu);
1880 ndst.ndts_allocs += st->allocs;
1881 ndst.ndts_destroys += st->destroys;
1882 ndst.ndts_hash_grows += st->hash_grows;
1883 ndst.ndts_res_failed += st->res_failed;
1884 ndst.ndts_lookups += st->lookups;
1885 ndst.ndts_hits += st->hits;
1886 ndst.ndts_rcv_probes_mcast += st->rcv_probes_mcast;
1887 ndst.ndts_rcv_probes_ucast += st->rcv_probes_ucast;
1888 ndst.ndts_periodic_gc_runs += st->periodic_gc_runs;
1889 ndst.ndts_forced_gc_runs += st->forced_gc_runs;
1892 NLA_PUT(skb, NDTA_STATS, sizeof(ndst), &ndst);
1895 BUG_ON(tbl->parms.dev);
1896 if (neightbl_fill_parms(skb, &tbl->parms) < 0)
1897 goto nla_put_failure;
1899 read_unlock_bh(&tbl->lock);
1900 return nlmsg_end(skb, nlh);
1902 nla_put_failure:
1903 read_unlock_bh(&tbl->lock);
1904 nlmsg_cancel(skb, nlh);
1905 return -EMSGSIZE;
1908 static int neightbl_fill_param_info(struct sk_buff *skb,
1909 struct neigh_table *tbl,
1910 struct neigh_parms *parms,
1911 u32 pid, u32 seq, int type,
1912 unsigned int flags)
1914 struct ndtmsg *ndtmsg;
1915 struct nlmsghdr *nlh;
1917 nlh = nlmsg_put(skb, pid, seq, type, sizeof(*ndtmsg), flags);
1918 if (nlh == NULL)
1919 return -EMSGSIZE;
1921 ndtmsg = nlmsg_data(nlh);
1923 read_lock_bh(&tbl->lock);
1924 ndtmsg->ndtm_family = tbl->family;
1925 ndtmsg->ndtm_pad1 = 0;
1926 ndtmsg->ndtm_pad2 = 0;
1928 if (nla_put_string(skb, NDTA_NAME, tbl->id) < 0 ||
1929 neightbl_fill_parms(skb, parms) < 0)
1930 goto errout;
1932 read_unlock_bh(&tbl->lock);
1933 return nlmsg_end(skb, nlh);
1934 errout:
1935 read_unlock_bh(&tbl->lock);
1936 nlmsg_cancel(skb, nlh);
1937 return -EMSGSIZE;
1940 static const struct nla_policy nl_neightbl_policy[NDTA_MAX+1] = {
1941 [NDTA_NAME] = { .type = NLA_STRING },
1942 [NDTA_THRESH1] = { .type = NLA_U32 },
1943 [NDTA_THRESH2] = { .type = NLA_U32 },
1944 [NDTA_THRESH3] = { .type = NLA_U32 },
1945 [NDTA_GC_INTERVAL] = { .type = NLA_U64 },
1946 [NDTA_PARMS] = { .type = NLA_NESTED },
1949 static const struct nla_policy nl_ntbl_parm_policy[NDTPA_MAX+1] = {
1950 [NDTPA_IFINDEX] = { .type = NLA_U32 },
1951 [NDTPA_QUEUE_LEN] = { .type = NLA_U32 },
1952 [NDTPA_PROXY_QLEN] = { .type = NLA_U32 },
1953 [NDTPA_APP_PROBES] = { .type = NLA_U32 },
1954 [NDTPA_UCAST_PROBES] = { .type = NLA_U32 },
1955 [NDTPA_MCAST_PROBES] = { .type = NLA_U32 },
1956 [NDTPA_BASE_REACHABLE_TIME] = { .type = NLA_U64 },
1957 [NDTPA_GC_STALETIME] = { .type = NLA_U64 },
1958 [NDTPA_DELAY_PROBE_TIME] = { .type = NLA_U64 },
1959 [NDTPA_RETRANS_TIME] = { .type = NLA_U64 },
1960 [NDTPA_ANYCAST_DELAY] = { .type = NLA_U64 },
1961 [NDTPA_PROXY_DELAY] = { .type = NLA_U64 },
1962 [NDTPA_LOCKTIME] = { .type = NLA_U64 },
1965 static int neightbl_set(struct sk_buff *skb, struct nlmsghdr *nlh, void *arg)
1967 struct net *net = sock_net(skb->sk);
1968 struct neigh_table *tbl;
1969 struct ndtmsg *ndtmsg;
1970 struct nlattr *tb[NDTA_MAX+1];
1971 int err;
1973 err = nlmsg_parse(nlh, sizeof(*ndtmsg), tb, NDTA_MAX,
1974 nl_neightbl_policy);
1975 if (err < 0)
1976 goto errout;
1978 if (tb[NDTA_NAME] == NULL) {
1979 err = -EINVAL;
1980 goto errout;
1983 ndtmsg = nlmsg_data(nlh);
1984 read_lock(&neigh_tbl_lock);
1985 for (tbl = neigh_tables; tbl; tbl = tbl->next) {
1986 if (ndtmsg->ndtm_family && tbl->family != ndtmsg->ndtm_family)
1987 continue;
1989 if (nla_strcmp(tb[NDTA_NAME], tbl->id) == 0)
1990 break;
1993 if (tbl == NULL) {
1994 err = -ENOENT;
1995 goto errout_locked;
1999 * We acquire tbl->lock to be nice to the periodic timers and
2000 * make sure they always see a consistent set of values.
2002 write_lock_bh(&tbl->lock);
2004 if (tb[NDTA_PARMS]) {
2005 struct nlattr *tbp[NDTPA_MAX+1];
2006 struct neigh_parms *p;
2007 int i, ifindex = 0;
2009 err = nla_parse_nested(tbp, NDTPA_MAX, tb[NDTA_PARMS],
2010 nl_ntbl_parm_policy);
2011 if (err < 0)
2012 goto errout_tbl_lock;
2014 if (tbp[NDTPA_IFINDEX])
2015 ifindex = nla_get_u32(tbp[NDTPA_IFINDEX]);
2017 p = lookup_neigh_parms(tbl, net, ifindex);
2018 if (p == NULL) {
2019 err = -ENOENT;
2020 goto errout_tbl_lock;
2023 for (i = 1; i <= NDTPA_MAX; i++) {
2024 if (tbp[i] == NULL)
2025 continue;
2027 switch (i) {
2028 case NDTPA_QUEUE_LEN:
2029 p->queue_len = nla_get_u32(tbp[i]);
2030 break;
2031 case NDTPA_PROXY_QLEN:
2032 p->proxy_qlen = nla_get_u32(tbp[i]);
2033 break;
2034 case NDTPA_APP_PROBES:
2035 p->app_probes = nla_get_u32(tbp[i]);
2036 break;
2037 case NDTPA_UCAST_PROBES:
2038 p->ucast_probes = nla_get_u32(tbp[i]);
2039 break;
2040 case NDTPA_MCAST_PROBES:
2041 p->mcast_probes = nla_get_u32(tbp[i]);
2042 break;
2043 case NDTPA_BASE_REACHABLE_TIME:
2044 p->base_reachable_time = nla_get_msecs(tbp[i]);
2045 break;
2046 case NDTPA_GC_STALETIME:
2047 p->gc_staletime = nla_get_msecs(tbp[i]);
2048 break;
2049 case NDTPA_DELAY_PROBE_TIME:
2050 p->delay_probe_time = nla_get_msecs(tbp[i]);
2051 break;
2052 case NDTPA_RETRANS_TIME:
2053 p->retrans_time = nla_get_msecs(tbp[i]);
2054 break;
2055 case NDTPA_ANYCAST_DELAY:
2056 p->anycast_delay = nla_get_msecs(tbp[i]);
2057 break;
2058 case NDTPA_PROXY_DELAY:
2059 p->proxy_delay = nla_get_msecs(tbp[i]);
2060 break;
2061 case NDTPA_LOCKTIME:
2062 p->locktime = nla_get_msecs(tbp[i]);
2063 break;
2068 if (tb[NDTA_THRESH1])
2069 tbl->gc_thresh1 = nla_get_u32(tb[NDTA_THRESH1]);
2071 if (tb[NDTA_THRESH2])
2072 tbl->gc_thresh2 = nla_get_u32(tb[NDTA_THRESH2]);
2074 if (tb[NDTA_THRESH3])
2075 tbl->gc_thresh3 = nla_get_u32(tb[NDTA_THRESH3]);
2077 if (tb[NDTA_GC_INTERVAL])
2078 tbl->gc_interval = nla_get_msecs(tb[NDTA_GC_INTERVAL]);
2080 err = 0;
2082 errout_tbl_lock:
2083 write_unlock_bh(&tbl->lock);
2084 errout_locked:
2085 read_unlock(&neigh_tbl_lock);
2086 errout:
2087 return err;
2090 static int neightbl_dump_info(struct sk_buff *skb, struct netlink_callback *cb)
2092 struct net *net = sock_net(skb->sk);
2093 int family, tidx, nidx = 0;
2094 int tbl_skip = cb->args[0];
2095 int neigh_skip = cb->args[1];
2096 struct neigh_table *tbl;
2098 family = ((struct rtgenmsg *) nlmsg_data(cb->nlh))->rtgen_family;
2100 read_lock(&neigh_tbl_lock);
2101 for (tbl = neigh_tables, tidx = 0; tbl; tbl = tbl->next, tidx++) {
2102 struct neigh_parms *p;
2104 if (tidx < tbl_skip || (family && tbl->family != family))
2105 continue;
2107 if (neightbl_fill_info(skb, tbl, NETLINK_CB(cb->skb).pid,
2108 cb->nlh->nlmsg_seq, RTM_NEWNEIGHTBL,
2109 NLM_F_MULTI) <= 0)
2110 break;
2112 for (nidx = 0, p = tbl->parms.next; p; p = p->next) {
2113 if (!net_eq(neigh_parms_net(p), net))
2114 continue;
2116 if (nidx < neigh_skip)
2117 goto next;
2119 if (neightbl_fill_param_info(skb, tbl, p,
2120 NETLINK_CB(cb->skb).pid,
2121 cb->nlh->nlmsg_seq,
2122 RTM_NEWNEIGHTBL,
2123 NLM_F_MULTI) <= 0)
2124 goto out;
2125 next:
2126 nidx++;
2129 neigh_skip = 0;
2131 out:
2132 read_unlock(&neigh_tbl_lock);
2133 cb->args[0] = tidx;
2134 cb->args[1] = nidx;
2136 return skb->len;
2139 static int neigh_fill_info(struct sk_buff *skb, struct neighbour *neigh,
2140 u32 pid, u32 seq, int type, unsigned int flags)
2142 unsigned long now = jiffies;
2143 struct nda_cacheinfo ci;
2144 struct nlmsghdr *nlh;
2145 struct ndmsg *ndm;
2147 nlh = nlmsg_put(skb, pid, seq, type, sizeof(*ndm), flags);
2148 if (nlh == NULL)
2149 return -EMSGSIZE;
2151 ndm = nlmsg_data(nlh);
2152 ndm->ndm_family = neigh->ops->family;
2153 ndm->ndm_pad1 = 0;
2154 ndm->ndm_pad2 = 0;
2155 ndm->ndm_flags = neigh->flags;
2156 ndm->ndm_type = neigh->type;
2157 ndm->ndm_ifindex = neigh->dev->ifindex;
2159 NLA_PUT(skb, NDA_DST, neigh->tbl->key_len, neigh->primary_key);
2161 read_lock_bh(&neigh->lock);
2162 ndm->ndm_state = neigh->nud_state;
2163 if (neigh->nud_state & NUD_VALID) {
2164 char haddr[MAX_ADDR_LEN];
2166 neigh_ha_snapshot(haddr, neigh, neigh->dev);
2167 if (nla_put(skb, NDA_LLADDR, neigh->dev->addr_len, haddr) < 0) {
2168 read_unlock_bh(&neigh->lock);
2169 goto nla_put_failure;
2173 ci.ndm_used = jiffies_to_clock_t(now - neigh->used);
2174 ci.ndm_confirmed = jiffies_to_clock_t(now - neigh->confirmed);
2175 ci.ndm_updated = jiffies_to_clock_t(now - neigh->updated);
2176 ci.ndm_refcnt = atomic_read(&neigh->refcnt) - 1;
2177 read_unlock_bh(&neigh->lock);
2179 NLA_PUT_U32(skb, NDA_PROBES, atomic_read(&neigh->probes));
2180 NLA_PUT(skb, NDA_CACHEINFO, sizeof(ci), &ci);
2182 return nlmsg_end(skb, nlh);
2184 nla_put_failure:
2185 nlmsg_cancel(skb, nlh);
2186 return -EMSGSIZE;
2189 static void neigh_update_notify(struct neighbour *neigh)
2191 call_netevent_notifiers(NETEVENT_NEIGH_UPDATE, neigh);
2192 __neigh_notify(neigh, RTM_NEWNEIGH, 0);
2195 static int neigh_dump_table(struct neigh_table *tbl, struct sk_buff *skb,
2196 struct netlink_callback *cb)
2198 struct net *net = sock_net(skb->sk);
2199 struct neighbour *n;
2200 int rc, h, s_h = cb->args[1];
2201 int idx, s_idx = idx = cb->args[2];
2202 struct neigh_hash_table *nht;
2204 rcu_read_lock_bh();
2205 nht = rcu_dereference_bh(tbl->nht);
2207 for (h = 0; h <= nht->hash_mask; h++) {
2208 if (h < s_h)
2209 continue;
2210 if (h > s_h)
2211 s_idx = 0;
2212 for (n = rcu_dereference_bh(nht->hash_buckets[h]), idx = 0;
2213 n != NULL;
2214 n = rcu_dereference_bh(n->next)) {
2215 if (!net_eq(dev_net(n->dev), net))
2216 continue;
2217 if (idx < s_idx)
2218 goto next;
2219 if (neigh_fill_info(skb, n, NETLINK_CB(cb->skb).pid,
2220 cb->nlh->nlmsg_seq,
2221 RTM_NEWNEIGH,
2222 NLM_F_MULTI) <= 0) {
2223 rc = -1;
2224 goto out;
2226 next:
2227 idx++;
2230 rc = skb->len;
2231 out:
2232 rcu_read_unlock_bh();
2233 cb->args[1] = h;
2234 cb->args[2] = idx;
2235 return rc;
2238 static int neigh_dump_info(struct sk_buff *skb, struct netlink_callback *cb)
2240 struct neigh_table *tbl;
2241 int t, family, s_t;
2243 read_lock(&neigh_tbl_lock);
2244 family = ((struct rtgenmsg *) nlmsg_data(cb->nlh))->rtgen_family;
2245 s_t = cb->args[0];
2247 for (tbl = neigh_tables, t = 0; tbl; tbl = tbl->next, t++) {
2248 if (t < s_t || (family && tbl->family != family))
2249 continue;
2250 if (t > s_t)
2251 memset(&cb->args[1], 0, sizeof(cb->args) -
2252 sizeof(cb->args[0]));
2253 if (neigh_dump_table(tbl, skb, cb) < 0)
2254 break;
2256 read_unlock(&neigh_tbl_lock);
2258 cb->args[0] = t;
2259 return skb->len;
2262 void neigh_for_each(struct neigh_table *tbl, void (*cb)(struct neighbour *, void *), void *cookie)
2264 int chain;
2265 struct neigh_hash_table *nht;
2267 rcu_read_lock_bh();
2268 nht = rcu_dereference_bh(tbl->nht);
2270 read_lock(&tbl->lock); /* avoid resizes */
2271 for (chain = 0; chain <= nht->hash_mask; chain++) {
2272 struct neighbour *n;
2274 for (n = rcu_dereference_bh(nht->hash_buckets[chain]);
2275 n != NULL;
2276 n = rcu_dereference_bh(n->next))
2277 cb(n, cookie);
2279 read_unlock(&tbl->lock);
2280 rcu_read_unlock_bh();
2282 EXPORT_SYMBOL(neigh_for_each);
2284 /* The tbl->lock must be held as a writer and BH disabled. */
2285 void __neigh_for_each_release(struct neigh_table *tbl,
2286 int (*cb)(struct neighbour *))
2288 int chain;
2289 struct neigh_hash_table *nht;
2291 nht = rcu_dereference_protected(tbl->nht,
2292 lockdep_is_held(&tbl->lock));
2293 for (chain = 0; chain <= nht->hash_mask; chain++) {
2294 struct neighbour *n;
2295 struct neighbour __rcu **np;
2297 np = &nht->hash_buckets[chain];
2298 while ((n = rcu_dereference_protected(*np,
2299 lockdep_is_held(&tbl->lock))) != NULL) {
2300 int release;
2302 write_lock(&n->lock);
2303 release = cb(n);
2304 if (release) {
2305 rcu_assign_pointer(*np,
2306 rcu_dereference_protected(n->next,
2307 lockdep_is_held(&tbl->lock)));
2308 n->dead = 1;
2309 } else
2310 np = &n->next;
2311 write_unlock(&n->lock);
2312 if (release)
2313 neigh_cleanup_and_release(n);
2317 EXPORT_SYMBOL(__neigh_for_each_release);
2319 #ifdef CONFIG_PROC_FS
2321 static struct neighbour *neigh_get_first(struct seq_file *seq)
2323 struct neigh_seq_state *state = seq->private;
2324 struct net *net = seq_file_net(seq);
2325 struct neigh_hash_table *nht = state->nht;
2326 struct neighbour *n = NULL;
2327 int bucket = state->bucket;
2329 state->flags &= ~NEIGH_SEQ_IS_PNEIGH;
2330 for (bucket = 0; bucket <= nht->hash_mask; bucket++) {
2331 n = rcu_dereference_bh(nht->hash_buckets[bucket]);
2333 while (n) {
2334 if (!net_eq(dev_net(n->dev), net))
2335 goto next;
2336 if (state->neigh_sub_iter) {
2337 loff_t fakep = 0;
2338 void *v;
2340 v = state->neigh_sub_iter(state, n, &fakep);
2341 if (!v)
2342 goto next;
2344 if (!(state->flags & NEIGH_SEQ_SKIP_NOARP))
2345 break;
2346 if (n->nud_state & ~NUD_NOARP)
2347 break;
2348 next:
2349 n = rcu_dereference_bh(n->next);
2352 if (n)
2353 break;
2355 state->bucket = bucket;
2357 return n;
2360 static struct neighbour *neigh_get_next(struct seq_file *seq,
2361 struct neighbour *n,
2362 loff_t *pos)
2364 struct neigh_seq_state *state = seq->private;
2365 struct net *net = seq_file_net(seq);
2366 struct neigh_hash_table *nht = state->nht;
2368 if (state->neigh_sub_iter) {
2369 void *v = state->neigh_sub_iter(state, n, pos);
2370 if (v)
2371 return n;
2373 n = rcu_dereference_bh(n->next);
2375 while (1) {
2376 while (n) {
2377 if (!net_eq(dev_net(n->dev), net))
2378 goto next;
2379 if (state->neigh_sub_iter) {
2380 void *v = state->neigh_sub_iter(state, n, pos);
2381 if (v)
2382 return n;
2383 goto next;
2385 if (!(state->flags & NEIGH_SEQ_SKIP_NOARP))
2386 break;
2388 if (n->nud_state & ~NUD_NOARP)
2389 break;
2390 next:
2391 n = rcu_dereference_bh(n->next);
2394 if (n)
2395 break;
2397 if (++state->bucket > nht->hash_mask)
2398 break;
2400 n = rcu_dereference_bh(nht->hash_buckets[state->bucket]);
2403 if (n && pos)
2404 --(*pos);
2405 return n;
2408 static struct neighbour *neigh_get_idx(struct seq_file *seq, loff_t *pos)
2410 struct neighbour *n = neigh_get_first(seq);
2412 if (n) {
2413 --(*pos);
2414 while (*pos) {
2415 n = neigh_get_next(seq, n, pos);
2416 if (!n)
2417 break;
2420 return *pos ? NULL : n;
2423 static struct pneigh_entry *pneigh_get_first(struct seq_file *seq)
2425 struct neigh_seq_state *state = seq->private;
2426 struct net *net = seq_file_net(seq);
2427 struct neigh_table *tbl = state->tbl;
2428 struct pneigh_entry *pn = NULL;
2429 int bucket = state->bucket;
2431 state->flags |= NEIGH_SEQ_IS_PNEIGH;
2432 for (bucket = 0; bucket <= PNEIGH_HASHMASK; bucket++) {
2433 pn = tbl->phash_buckets[bucket];
2434 while (pn && !net_eq(pneigh_net(pn), net))
2435 pn = pn->next;
2436 if (pn)
2437 break;
2439 state->bucket = bucket;
2441 return pn;
2444 static struct pneigh_entry *pneigh_get_next(struct seq_file *seq,
2445 struct pneigh_entry *pn,
2446 loff_t *pos)
2448 struct neigh_seq_state *state = seq->private;
2449 struct net *net = seq_file_net(seq);
2450 struct neigh_table *tbl = state->tbl;
2452 pn = pn->next;
2453 while (!pn) {
2454 if (++state->bucket > PNEIGH_HASHMASK)
2455 break;
2456 pn = tbl->phash_buckets[state->bucket];
2457 while (pn && !net_eq(pneigh_net(pn), net))
2458 pn = pn->next;
2459 if (pn)
2460 break;
2463 if (pn && pos)
2464 --(*pos);
2466 return pn;
2469 static struct pneigh_entry *pneigh_get_idx(struct seq_file *seq, loff_t *pos)
2471 struct pneigh_entry *pn = pneigh_get_first(seq);
2473 if (pn) {
2474 --(*pos);
2475 while (*pos) {
2476 pn = pneigh_get_next(seq, pn, pos);
2477 if (!pn)
2478 break;
2481 return *pos ? NULL : pn;
2484 static void *neigh_get_idx_any(struct seq_file *seq, loff_t *pos)
2486 struct neigh_seq_state *state = seq->private;
2487 void *rc;
2488 loff_t idxpos = *pos;
2490 rc = neigh_get_idx(seq, &idxpos);
2491 if (!rc && !(state->flags & NEIGH_SEQ_NEIGH_ONLY))
2492 rc = pneigh_get_idx(seq, &idxpos);
2494 return rc;
2497 void *neigh_seq_start(struct seq_file *seq, loff_t *pos, struct neigh_table *tbl, unsigned int neigh_seq_flags)
2498 __acquires(rcu_bh)
2500 struct neigh_seq_state *state = seq->private;
2502 state->tbl = tbl;
2503 state->bucket = 0;
2504 state->flags = (neigh_seq_flags & ~NEIGH_SEQ_IS_PNEIGH);
2506 rcu_read_lock_bh();
2507 state->nht = rcu_dereference_bh(tbl->nht);
2509 return *pos ? neigh_get_idx_any(seq, pos) : SEQ_START_TOKEN;
2511 EXPORT_SYMBOL(neigh_seq_start);
2513 void *neigh_seq_next(struct seq_file *seq, void *v, loff_t *pos)
2515 struct neigh_seq_state *state;
2516 void *rc;
2518 if (v == SEQ_START_TOKEN) {
2519 rc = neigh_get_first(seq);
2520 goto out;
2523 state = seq->private;
2524 if (!(state->flags & NEIGH_SEQ_IS_PNEIGH)) {
2525 rc = neigh_get_next(seq, v, NULL);
2526 if (rc)
2527 goto out;
2528 if (!(state->flags & NEIGH_SEQ_NEIGH_ONLY))
2529 rc = pneigh_get_first(seq);
2530 } else {
2531 BUG_ON(state->flags & NEIGH_SEQ_NEIGH_ONLY);
2532 rc = pneigh_get_next(seq, v, NULL);
2534 out:
2535 ++(*pos);
2536 return rc;
2538 EXPORT_SYMBOL(neigh_seq_next);
2540 void neigh_seq_stop(struct seq_file *seq, void *v)
2541 __releases(rcu_bh)
2543 rcu_read_unlock_bh();
2545 EXPORT_SYMBOL(neigh_seq_stop);
2547 /* statistics via seq_file */
2549 static void *neigh_stat_seq_start(struct seq_file *seq, loff_t *pos)
2551 struct neigh_table *tbl = seq->private;
2552 int cpu;
2554 if (*pos == 0)
2555 return SEQ_START_TOKEN;
2557 for (cpu = *pos-1; cpu < nr_cpu_ids; ++cpu) {
2558 if (!cpu_possible(cpu))
2559 continue;
2560 *pos = cpu+1;
2561 return per_cpu_ptr(tbl->stats, cpu);
2563 return NULL;
2566 static void *neigh_stat_seq_next(struct seq_file *seq, void *v, loff_t *pos)
2568 struct neigh_table *tbl = seq->private;
2569 int cpu;
2571 for (cpu = *pos; cpu < nr_cpu_ids; ++cpu) {
2572 if (!cpu_possible(cpu))
2573 continue;
2574 *pos = cpu+1;
2575 return per_cpu_ptr(tbl->stats, cpu);
2577 return NULL;
2580 static void neigh_stat_seq_stop(struct seq_file *seq, void *v)
2585 static int neigh_stat_seq_show(struct seq_file *seq, void *v)
2587 struct neigh_table *tbl = seq->private;
2588 struct neigh_statistics *st = v;
2590 if (v == SEQ_START_TOKEN) {
2591 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");
2592 return 0;
2595 seq_printf(seq, "%08x %08lx %08lx %08lx %08lx %08lx %08lx "
2596 "%08lx %08lx %08lx %08lx %08lx\n",
2597 atomic_read(&tbl->entries),
2599 st->allocs,
2600 st->destroys,
2601 st->hash_grows,
2603 st->lookups,
2604 st->hits,
2606 st->res_failed,
2608 st->rcv_probes_mcast,
2609 st->rcv_probes_ucast,
2611 st->periodic_gc_runs,
2612 st->forced_gc_runs,
2613 st->unres_discards
2616 return 0;
2619 static const struct seq_operations neigh_stat_seq_ops = {
2620 .start = neigh_stat_seq_start,
2621 .next = neigh_stat_seq_next,
2622 .stop = neigh_stat_seq_stop,
2623 .show = neigh_stat_seq_show,
2626 static int neigh_stat_seq_open(struct inode *inode, struct file *file)
2628 int ret = seq_open(file, &neigh_stat_seq_ops);
2630 if (!ret) {
2631 struct seq_file *sf = file->private_data;
2632 sf->private = PDE(inode)->data;
2634 return ret;
2637 static const struct file_operations neigh_stat_seq_fops = {
2638 .owner = THIS_MODULE,
2639 .open = neigh_stat_seq_open,
2640 .read = seq_read,
2641 .llseek = seq_lseek,
2642 .release = seq_release,
2645 #endif /* CONFIG_PROC_FS */
2647 static inline size_t neigh_nlmsg_size(void)
2649 return NLMSG_ALIGN(sizeof(struct ndmsg))
2650 + nla_total_size(MAX_ADDR_LEN) /* NDA_DST */
2651 + nla_total_size(MAX_ADDR_LEN) /* NDA_LLADDR */
2652 + nla_total_size(sizeof(struct nda_cacheinfo))
2653 + nla_total_size(4); /* NDA_PROBES */
2656 static void __neigh_notify(struct neighbour *n, int type, int flags)
2658 struct net *net = dev_net(n->dev);
2659 struct sk_buff *skb;
2660 int err = -ENOBUFS;
2662 skb = nlmsg_new(neigh_nlmsg_size(), GFP_ATOMIC);
2663 if (skb == NULL)
2664 goto errout;
2666 err = neigh_fill_info(skb, n, 0, 0, type, flags);
2667 if (err < 0) {
2668 /* -EMSGSIZE implies BUG in neigh_nlmsg_size() */
2669 WARN_ON(err == -EMSGSIZE);
2670 kfree_skb(skb);
2671 goto errout;
2673 rtnl_notify(skb, net, 0, RTNLGRP_NEIGH, NULL, GFP_ATOMIC);
2674 return;
2675 errout:
2676 if (err < 0)
2677 rtnl_set_sk_err(net, RTNLGRP_NEIGH, err);
2680 #ifdef CONFIG_ARPD
2681 void neigh_app_ns(struct neighbour *n)
2683 __neigh_notify(n, RTM_GETNEIGH, NLM_F_REQUEST);
2685 EXPORT_SYMBOL(neigh_app_ns);
2686 #endif /* CONFIG_ARPD */
2688 #ifdef CONFIG_SYSCTL
2690 #define NEIGH_VARS_MAX 19
2692 static struct neigh_sysctl_table {
2693 struct ctl_table_header *sysctl_header;
2694 struct ctl_table neigh_vars[NEIGH_VARS_MAX];
2695 char *dev_name;
2696 } neigh_sysctl_template __read_mostly = {
2697 .neigh_vars = {
2699 .procname = "mcast_solicit",
2700 .maxlen = sizeof(int),
2701 .mode = 0644,
2702 .proc_handler = proc_dointvec,
2705 .procname = "ucast_solicit",
2706 .maxlen = sizeof(int),
2707 .mode = 0644,
2708 .proc_handler = proc_dointvec,
2711 .procname = "app_solicit",
2712 .maxlen = sizeof(int),
2713 .mode = 0644,
2714 .proc_handler = proc_dointvec,
2717 .procname = "retrans_time",
2718 .maxlen = sizeof(int),
2719 .mode = 0644,
2720 .proc_handler = proc_dointvec_userhz_jiffies,
2723 .procname = "base_reachable_time",
2724 .maxlen = sizeof(int),
2725 .mode = 0644,
2726 .proc_handler = proc_dointvec_jiffies,
2729 .procname = "delay_first_probe_time",
2730 .maxlen = sizeof(int),
2731 .mode = 0644,
2732 .proc_handler = proc_dointvec_jiffies,
2735 .procname = "gc_stale_time",
2736 .maxlen = sizeof(int),
2737 .mode = 0644,
2738 .proc_handler = proc_dointvec_jiffies,
2741 .procname = "unres_qlen",
2742 .maxlen = sizeof(int),
2743 .mode = 0644,
2744 .proc_handler = proc_dointvec,
2747 .procname = "proxy_qlen",
2748 .maxlen = sizeof(int),
2749 .mode = 0644,
2750 .proc_handler = proc_dointvec,
2753 .procname = "anycast_delay",
2754 .maxlen = sizeof(int),
2755 .mode = 0644,
2756 .proc_handler = proc_dointvec_userhz_jiffies,
2759 .procname = "proxy_delay",
2760 .maxlen = sizeof(int),
2761 .mode = 0644,
2762 .proc_handler = proc_dointvec_userhz_jiffies,
2765 .procname = "locktime",
2766 .maxlen = sizeof(int),
2767 .mode = 0644,
2768 .proc_handler = proc_dointvec_userhz_jiffies,
2771 .procname = "retrans_time_ms",
2772 .maxlen = sizeof(int),
2773 .mode = 0644,
2774 .proc_handler = proc_dointvec_ms_jiffies,
2777 .procname = "base_reachable_time_ms",
2778 .maxlen = sizeof(int),
2779 .mode = 0644,
2780 .proc_handler = proc_dointvec_ms_jiffies,
2783 .procname = "gc_interval",
2784 .maxlen = sizeof(int),
2785 .mode = 0644,
2786 .proc_handler = proc_dointvec_jiffies,
2789 .procname = "gc_thresh1",
2790 .maxlen = sizeof(int),
2791 .mode = 0644,
2792 .proc_handler = proc_dointvec,
2795 .procname = "gc_thresh2",
2796 .maxlen = sizeof(int),
2797 .mode = 0644,
2798 .proc_handler = proc_dointvec,
2801 .procname = "gc_thresh3",
2802 .maxlen = sizeof(int),
2803 .mode = 0644,
2804 .proc_handler = proc_dointvec,
2810 int neigh_sysctl_register(struct net_device *dev, struct neigh_parms *p,
2811 char *p_name, proc_handler *handler)
2813 struct neigh_sysctl_table *t;
2814 const char *dev_name_source = NULL;
2816 #define NEIGH_CTL_PATH_ROOT 0
2817 #define NEIGH_CTL_PATH_PROTO 1
2818 #define NEIGH_CTL_PATH_NEIGH 2
2819 #define NEIGH_CTL_PATH_DEV 3
2821 struct ctl_path neigh_path[] = {
2822 { .procname = "net", },
2823 { .procname = "proto", },
2824 { .procname = "neigh", },
2825 { .procname = "default", },
2826 { },
2829 t = kmemdup(&neigh_sysctl_template, sizeof(*t), GFP_KERNEL);
2830 if (!t)
2831 goto err;
2833 t->neigh_vars[0].data = &p->mcast_probes;
2834 t->neigh_vars[1].data = &p->ucast_probes;
2835 t->neigh_vars[2].data = &p->app_probes;
2836 t->neigh_vars[3].data = &p->retrans_time;
2837 t->neigh_vars[4].data = &p->base_reachable_time;
2838 t->neigh_vars[5].data = &p->delay_probe_time;
2839 t->neigh_vars[6].data = &p->gc_staletime;
2840 t->neigh_vars[7].data = &p->queue_len;
2841 t->neigh_vars[8].data = &p->proxy_qlen;
2842 t->neigh_vars[9].data = &p->anycast_delay;
2843 t->neigh_vars[10].data = &p->proxy_delay;
2844 t->neigh_vars[11].data = &p->locktime;
2845 t->neigh_vars[12].data = &p->retrans_time;
2846 t->neigh_vars[13].data = &p->base_reachable_time;
2848 if (dev) {
2849 dev_name_source = dev->name;
2850 /* Terminate the table early */
2851 memset(&t->neigh_vars[14], 0, sizeof(t->neigh_vars[14]));
2852 } else {
2853 dev_name_source = neigh_path[NEIGH_CTL_PATH_DEV].procname;
2854 t->neigh_vars[14].data = (int *)(p + 1);
2855 t->neigh_vars[15].data = (int *)(p + 1) + 1;
2856 t->neigh_vars[16].data = (int *)(p + 1) + 2;
2857 t->neigh_vars[17].data = (int *)(p + 1) + 3;
2861 if (handler) {
2862 /* RetransTime */
2863 t->neigh_vars[3].proc_handler = handler;
2864 t->neigh_vars[3].extra1 = dev;
2865 /* ReachableTime */
2866 t->neigh_vars[4].proc_handler = handler;
2867 t->neigh_vars[4].extra1 = dev;
2868 /* RetransTime (in milliseconds)*/
2869 t->neigh_vars[12].proc_handler = handler;
2870 t->neigh_vars[12].extra1 = dev;
2871 /* ReachableTime (in milliseconds) */
2872 t->neigh_vars[13].proc_handler = handler;
2873 t->neigh_vars[13].extra1 = dev;
2876 t->dev_name = kstrdup(dev_name_source, GFP_KERNEL);
2877 if (!t->dev_name)
2878 goto free;
2880 neigh_path[NEIGH_CTL_PATH_DEV].procname = t->dev_name;
2881 neigh_path[NEIGH_CTL_PATH_PROTO].procname = p_name;
2883 t->sysctl_header =
2884 register_net_sysctl_table(neigh_parms_net(p), neigh_path, t->neigh_vars);
2885 if (!t->sysctl_header)
2886 goto free_procname;
2888 p->sysctl_table = t;
2889 return 0;
2891 free_procname:
2892 kfree(t->dev_name);
2893 free:
2894 kfree(t);
2895 err:
2896 return -ENOBUFS;
2898 EXPORT_SYMBOL(neigh_sysctl_register);
2900 void neigh_sysctl_unregister(struct neigh_parms *p)
2902 if (p->sysctl_table) {
2903 struct neigh_sysctl_table *t = p->sysctl_table;
2904 p->sysctl_table = NULL;
2905 unregister_sysctl_table(t->sysctl_header);
2906 kfree(t->dev_name);
2907 kfree(t);
2910 EXPORT_SYMBOL(neigh_sysctl_unregister);
2912 #endif /* CONFIG_SYSCTL */
2914 static int __init neigh_init(void)
2916 rtnl_register(PF_UNSPEC, RTM_NEWNEIGH, neigh_add, NULL);
2917 rtnl_register(PF_UNSPEC, RTM_DELNEIGH, neigh_delete, NULL);
2918 rtnl_register(PF_UNSPEC, RTM_GETNEIGH, NULL, neigh_dump_info);
2920 rtnl_register(PF_UNSPEC, RTM_GETNEIGHTBL, NULL, neightbl_dump_info);
2921 rtnl_register(PF_UNSPEC, RTM_SETNEIGHTBL, neightbl_set, NULL);
2923 return 0;
2926 subsys_initcall(neigh_init);