2 * Generic address resolution entity
5 * Pedro Roque <roque@di.fc.ul.pt>
6 * Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License
10 * as published by the Free Software Foundation; either version
11 * 2 of the License, or (at your option) any later version.
14 * Vitaly E. Lavrov releasing NULL neighbor in neigh_add.
15 * Harald Welte Add neighbour cache statistics like rtstat
18 #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>
28 #include <linux/sysctl.h>
30 #include <linux/times.h>
31 #include <net/net_namespace.h>
32 #include <net/neighbour.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>
46 #define neigh_dbg(level, fmt, ...) \
48 if (level <= NEIGH_DEBUG) \
49 pr_debug(fmt, ##__VA_ARGS__); \
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
;
61 static const struct file_operations neigh_stat_seq_fops
;
65 Neighbour hash table buckets are protected with rwlock tbl->lock.
67 - All the scans/updates to hash buckets MUST be made under this lock.
68 - NOTHING clever should be made under this lock: no callbacks
69 to protocol backends, no attempts to send something to network.
70 It will result in deadlocks, if backend/driver wants to use neighbour
72 - If the entry requires some non-trivial actions, increase
73 its reference count and release table lock.
75 Neighbour entries are protected:
76 - with reference count.
77 - with rwlock neigh->lock
79 Reference count prevents destruction.
81 neigh->lock mainly serializes ll address data and its validity state.
82 However, the same lock is used to protect another entry fields:
86 Again, nothing clever shall be made under neigh->lock,
87 the most complicated procedure, which we allow is dev->hard_header.
88 It is supposed, that dev->hard_header is simplistic and does
89 not make callbacks to neighbour tables.
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
)
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
)
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
++) {
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
)));
155 write_unlock(&n
->lock
);
156 neigh_cleanup_and_release(n
);
159 write_unlock(&n
->lock
);
164 tbl
->last_flush
= jiffies
;
166 write_unlock_bh(&tbl
->lock
);
171 static void neigh_add_timer(struct neighbour
*n
, unsigned long when
)
174 if (unlikely(mod_timer(&n
->timer
, when
))) {
175 printk("NEIGH: BUG, double timer add, state is %x\n",
181 static int neigh_del_timer(struct neighbour
*n
)
183 if ((n
->nud_state
& NUD_IN_TIMER
) &&
184 del_timer(&n
->timer
)) {
191 static void pneigh_queue_purge(struct sk_buff_head
*list
)
195 while ((skb
= skb_dequeue(list
)) != NULL
) {
201 static void neigh_flush_dev(struct neigh_table
*tbl
, struct net_device
*dev
)
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
++) {
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
) {
219 rcu_assign_pointer(*np
,
220 rcu_dereference_protected(n
->next
,
221 lockdep_is_held(&tbl
->lock
)));
222 write_lock(&n
->lock
);
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
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
;
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
);
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
;
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
)
287 n
= kzalloc(tbl
->entry_size
+ dev
->neigh_priv_len
, GFP_ATOMIC
);
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
);
303 atomic_set(&n
->refcnt
, 1);
309 atomic_dec(&tbl
->entries
);
313 static void neigh_get_hash_rnd(u32
*x
)
315 get_random_bytes(x
, sizeof(*x
));
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
;
326 ret
= kmalloc(sizeof(*ret
), GFP_ATOMIC
);
329 if (size
<= PAGE_SIZE
)
330 buckets
= kzalloc(size
, GFP_ATOMIC
);
332 buckets
= (struct neighbour __rcu
**)
333 __get_free_pages(GFP_ATOMIC
| __GFP_ZERO
,
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
]);
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
,
351 size_t size
= (1 << nht
->hash_shift
) * sizeof(struct neighbour
*);
352 struct neighbour __rcu
**buckets
= nht
->hash_buckets
;
354 if (size
<= PAGE_SIZE
)
357 free_pages((unsigned long)buckets
, get_order(size
));
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
);
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
));
382 hash
= tbl
->hash(n
->primary_key
, n
->dev
,
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
);
402 struct neighbour
*neigh_lookup(struct neigh_table
*tbl
, const void *pkey
,
403 struct net_device
*dev
)
406 int key_len
= tbl
->key_len
;
408 struct neigh_hash_table
*nht
;
410 NEIGH_CACHE_STAT_INC(tbl
, lookups
);
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
]);
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
))
422 NEIGH_CACHE_STAT_INC(tbl
, hits
);
427 rcu_read_unlock_bh();
430 EXPORT_SYMBOL(neigh_lookup
);
432 struct neighbour
*neigh_lookup_nodev(struct neigh_table
*tbl
, struct net
*net
,
436 int key_len
= tbl
->key_len
;
438 struct neigh_hash_table
*nht
;
440 NEIGH_CACHE_STAT_INC(tbl
, lookups
);
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
]);
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
))
453 NEIGH_CACHE_STAT_INC(tbl
, hits
);
458 rcu_read_unlock_bh();
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
)
467 int key_len
= tbl
->key_len
;
469 struct neighbour
*n1
, *rc
, *n
= neigh_alloc(tbl
, dev
);
470 struct neigh_hash_table
*nht
;
473 rc
= ERR_PTR(-ENOBUFS
);
477 memcpy(n
->primary_key
, pkey
, key_len
);
481 /* Protocol specific setup. */
482 if (tbl
->constructor
&& (error
= tbl
->constructor(n
)) < 0) {
484 goto out_neigh_release
;
487 if (dev
->netdev_ops
->ndo_neigh_construct
) {
488 error
= dev
->netdev_ops
->ndo_neigh_construct(n
);
491 goto out_neigh_release
;
495 /* Device specific setup. */
496 if (n
->parms
->neigh_setup
&&
497 (error
= n
->parms
->neigh_setup(n
)) < 0) {
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
);
518 for (n1
= rcu_dereference_protected(nht
->hash_buckets
[hash_val
],
519 lockdep_is_held(&tbl
->lock
));
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
)) {
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
);
544 write_unlock_bh(&tbl
->lock
);
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
;
561 static struct pneigh_entry
*__pneigh_lookup_1(struct pneigh_entry
*n
,
565 struct net_device
*dev
)
568 if (!memcmp(n
->key
, pkey
, key_len
) &&
569 net_eq(pneigh_net(n
), net
) &&
570 (n
->dev
== dev
|| !n
->dev
))
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
);
606 n
= kmalloc(sizeof(*n
) + key_len
, GFP_KERNEL
);
610 write_pnet(&n
->net
, hold_net(net
));
611 memcpy(n
->key
, pkey
, key_len
);
616 if (tbl
->pconstructor
&& tbl
->pconstructor(n
)) {
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
);
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
;
645 if (!memcmp(n
->key
, pkey
, key_len
) && n
->dev
== dev
&&
646 net_eq(pneigh_net(n
), net
)) {
648 write_unlock_bh(&tbl
->lock
);
649 if (tbl
->pdestructor
)
653 release_net(pneigh_net(n
));
658 write_unlock_bh(&tbl
->lock
);
662 static int pneigh_ifdown(struct neigh_table
*tbl
, struct net_device
*dev
)
664 struct pneigh_entry
*n
, **np
;
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
) {
672 if (tbl
->pdestructor
)
676 release_net(pneigh_net(n
));
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
);
705 pr_warn("Destroying alive neighbour %p\n", neigh
);
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
);
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;
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;
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
);
759 struct neighbour __rcu
**np
;
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
)
778 neigh_rand_reach_time(NEIGH_VAR(p
, BASE_REACHABLE_TIME
));
781 if (atomic_read(&tbl
->entries
) < tbl
->gc_thresh1
)
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
) {
791 write_lock(&n
->lock
);
793 state
= n
->nud_state
;
794 if (state
& (NUD_PERMANENT
| NUD_IN_TIMER
)) {
795 write_unlock(&n
->lock
);
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
)))) {
807 write_unlock(&n
->lock
);
808 neigh_cleanup_and_release(n
);
811 write_unlock(&n
->lock
);
817 * It's fine to release lock here, even if hash table
818 * grows while we are preempted.
820 write_unlock_bh(&tbl
->lock
);
822 write_lock_bh(&tbl
->lock
);
823 nht
= rcu_dereference_protected(tbl
->nht
,
824 lockdep_is_held(&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 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
);
845 static void neigh_invalidate(struct neighbour
*neigh
)
846 __releases(neigh
->lock
)
847 __acquires(neigh
->lock
)
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 */
876 skb
= skb_copy(skb
, GFP_ATOMIC
);
877 write_unlock(&neigh
->lock
);
878 neigh
->ops
->solicit(neigh
, skb
);
879 atomic_inc(&neigh
->probes
);
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
;
892 write_lock(&neigh
->lock
);
894 state
= neigh
->nud_state
;
898 if (!(state
& NUD_IN_TIMER
))
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
,
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
);
915 neigh_dbg(2, "neigh %p is suspected\n", neigh
);
916 neigh
->nud_state
= NUD_STALE
;
917 neigh
->updated
= jiffies
;
918 neigh_suspect(neigh
);
921 } else if (state
& NUD_DELAY
) {
922 if (time_before_eq(now
,
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
);
930 next
= neigh
->confirmed
+ neigh
->parms
->reachable_time
;
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
);
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
;
947 neigh_invalidate(neigh
);
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
))
957 if (neigh
->nud_state
& (NUD_INCOMPLETE
| NUD_PROBE
)) {
961 write_unlock(&neigh
->lock
);
965 neigh_update_notify(neigh
);
967 neigh_release(neigh
);
970 int __neigh_event_send(struct neighbour
*neigh
, struct sk_buff
*skb
)
973 bool immediate_probe
= false;
975 write_lock_bh(&neigh
->lock
);
978 if (neigh
->nud_state
& (NUD_CONNECTED
| NUD_DELAY
| NUD_PROBE
))
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
),
994 neigh_add_timer(neigh
, next
);
995 immediate_probe
= true;
997 neigh
->nud_state
= NUD_FAILED
;
998 neigh
->updated
= jiffies
;
999 write_unlock_bh(&neigh
->lock
);
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
) {
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
);
1021 neigh
->arp_queue_len_bytes
-= buff
->truesize
;
1023 NEIGH_CACHE_STAT_INC(neigh
->tbl
, unres_discards
);
1026 __skb_queue_tail(&neigh
->arp_queue
, skb
);
1027 neigh
->arp_queue_len_bytes
+= skb
->truesize
;
1032 if (immediate_probe
)
1035 write_unlock(&neigh
->lock
);
1040 if (neigh
->nud_state
& NUD_STALE
)
1042 write_unlock_bh(&neigh
->lock
);
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 *)
1054 if (neigh
->dev
->header_ops
)
1055 update
= neigh
->dev
->header_ops
->cache_update
;
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.
1073 NEIGH_UPDATE_F_OVERRIDE allows to override existing lladdr,
1075 NEIGH_UPDATE_F_WEAK_OVERRIDE will suspect existing "connected"
1076 lladdr instead of overriding it
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
1084 NEIGH_UPDATE_F_ISROUTER indicates if the neighbour is known as
1087 Caller MUST hold reference count on the entry.
1090 int neigh_update(struct neighbour
*neigh
, const u8
*lladdr
, u8
new,
1096 struct net_device
*dev
;
1097 int update_isrouter
= 0;
1099 write_lock_bh(&neigh
->lock
);
1102 old
= neigh
->nud_state
;
1105 if (!(flags
& NEIGH_UPDATE_F_ADMIN
) &&
1106 (old
& (NUD_NOARP
| NUD_PERMANENT
)))
1111 if (!(new & NUD_VALID
)) {
1112 neigh_del_timer(neigh
);
1113 if (old
& NUD_CONNECTED
)
1114 neigh_suspect(neigh
);
1115 neigh
->nud_state
= new;
1117 notify
= old
& NUD_VALID
;
1118 if ((old
& (NUD_INCOMPLETE
| NUD_PROBE
)) &&
1119 (new & NUD_FAILED
)) {
1120 neigh_invalidate(neigh
);
1126 /* Compare new lladdr with cached one */
1127 if (!dev
->addr_len
) {
1128 /* First case: device needs no address. */
1130 } else if (lladdr
) {
1131 /* The second case: if something is already cached
1132 and a new address is proposed:
1134 - if they are different, check override flag
1136 if ((old
& NUD_VALID
) &&
1137 !memcmp(lladdr
, neigh
->ha
, dev
->addr_len
))
1140 /* No address is supplied; if we know something,
1141 use it, otherwise discard the request.
1144 if (!(old
& NUD_VALID
))
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.
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
)) {
1168 if (lladdr
== neigh
->ha
&& new == NUD_STALE
&&
1169 ((flags
& NEIGH_UPDATE_F_WEAK_OVERRIDE
) ||
1170 (old
& NUD_CONNECTED
))
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
:
1183 neigh
->nud_state
= new;
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);
1199 if (new & NUD_CONNECTED
)
1200 neigh_connect(neigh
);
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
);
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.
1225 n2
= dst_neigh_lookup_skb(dst
, skb
);
1229 n1
->output(n1
, skb
);
1234 write_lock_bh(&neigh
->lock
);
1236 __skb_queue_purge(&neigh
->arp_queue
);
1237 neigh
->arp_queue_len_bytes
= 0;
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
);
1248 neigh_update_notify(neigh
);
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
)
1261 neigh
->updated
= jiffies
;
1262 if (!(neigh
->nud_state
& NUD_FAILED
))
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
);
1278 neigh_update(neigh
, lladdr
, NUD_STALE
,
1279 NEIGH_UPDATE_F_OVERRIDE
);
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
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
,
1315 dev_rebuild_header(skb
))
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
);
1332 if (!neigh_event_send(neigh
, skb
)) {
1334 struct net_device
*dev
= neigh
->dev
;
1337 if (dev
->header_ops
->cache
&& !neigh
->hh
.hh_len
)
1338 neigh_hh_init(neigh
, dst
);
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
));
1348 rc
= dev_queue_xmit(skb
);
1355 neigh_dbg(1, "%s: dst=%p neigh=%p\n", __func__
, dst
, neigh
);
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
;
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
));
1379 err
= dev_queue_xmit(skb
);
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
;
1407 struct net_device
*dev
= skb
->dev
;
1409 __skb_unlink(skb
, &tbl
->proxy_queue
);
1410 if (tbl
->proxy_redo
&& netif_running(dev
)) {
1412 tbl
->proxy_redo(skb
);
1419 } else if (!sched_next
|| tdif
< sched_next
)
1422 del_timer(&tbl
->proxy_timer
);
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
)) {
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
;
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
)))
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
);
1481 atomic_set(&p
->refcnt
, 1);
1483 neigh_rand_reach_time(NEIGH_VAR(p
, BASE_REACHABLE_TIME
));
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
)) {
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
);
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
)
1521 write_lock_bh(&tbl
->lock
);
1522 for (p
= &tbl
->parms
.next
; *p
; p
= &(*p
)->next
) {
1526 write_unlock_bh(&tbl
->lock
);
1528 dev_put(parms
->dev
);
1529 call_rcu(&parms
->rcu_head
, neigh_rcu_free_parms
);
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
));
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
);
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");
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
);
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
)
1602 tbl
->next
= neigh_tables
;
1604 write_unlock(&neigh_tbl_lock
);
1606 if (unlikely(tmp
)) {
1607 pr_err("Registering multiple tables for family %d\n",
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
) {
1632 write_unlock(&neigh_tbl_lock
);
1634 call_rcu(&rcu_dereference_protected(tbl
->nht
, 1)->rcu
,
1635 neigh_hash_free_rcu
);
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
);
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
);
1654 struct nlattr
*dst_attr
;
1655 struct neigh_table
*tbl
;
1656 struct net_device
*dev
= NULL
;
1660 if (nlmsg_len(nlh
) < sizeof(*ndm
))
1663 dst_attr
= nlmsg_find_attr(nlh
, sizeof(*ndm
), NDA_DST
);
1664 if (dst_attr
== NULL
)
1667 ndm
= nlmsg_data(nlh
);
1668 if (ndm
->ndm_ifindex
) {
1669 dev
= __dev_get_by_index(net
, ndm
->ndm_ifindex
);
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
)
1682 read_unlock(&neigh_tbl_lock
);
1684 if (nla_len(dst_attr
) < tbl
->key_len
)
1687 if (ndm
->ndm_flags
& NTF_PROXY
) {
1688 err
= pneigh_delete(tbl
, net
, nla_data(dst_attr
), dev
);
1695 neigh
= neigh_lookup(tbl
, nla_data(dst_attr
), dev
);
1696 if (neigh
== NULL
) {
1701 err
= neigh_update(neigh
, NULL
, NUD_FAILED
,
1702 NEIGH_UPDATE_F_OVERRIDE
|
1703 NEIGH_UPDATE_F_ADMIN
);
1704 neigh_release(neigh
);
1707 read_unlock(&neigh_tbl_lock
);
1708 err
= -EAFNOSUPPORT
;
1714 static int neigh_add(struct sk_buff
*skb
, struct nlmsghdr
*nlh
)
1716 struct net
*net
= sock_net(skb
->sk
);
1718 struct nlattr
*tb
[NDA_MAX
+1];
1719 struct neigh_table
*tbl
;
1720 struct net_device
*dev
= NULL
;
1724 err
= nlmsg_parse(nlh
, sizeof(*ndm
), tb
, NDA_MAX
, NULL
);
1729 if (tb
[NDA_DST
] == NULL
)
1732 ndm
= nlmsg_data(nlh
);
1733 if (ndm
->ndm_ifindex
) {
1734 dev
= __dev_get_by_index(net
, ndm
->ndm_ifindex
);
1740 if (tb
[NDA_LLADDR
] && nla_len(tb
[NDA_LLADDR
]) < dev
->addr_len
)
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
;
1750 if (tbl
->family
!= ndm
->ndm_family
)
1752 read_unlock(&neigh_tbl_lock
);
1754 if (nla_len(tb
[NDA_DST
]) < tbl
->key_len
)
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
;
1763 pn
= pneigh_lookup(tbl
, net
, dst
, dev
, 1);
1765 pn
->flags
= ndm
->ndm_flags
;
1774 neigh
= neigh_lookup(tbl
, dst
, dev
);
1775 if (neigh
== NULL
) {
1776 if (!(nlh
->nlmsg_flags
& NLM_F_CREATE
)) {
1781 neigh
= __neigh_lookup_errno(tbl
, dst
, dev
);
1782 if (IS_ERR(neigh
)) {
1783 err
= PTR_ERR(neigh
);
1787 if (nlh
->nlmsg_flags
& NLM_F_EXCL
) {
1789 neigh_release(neigh
);
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
);
1801 err
= neigh_update(neigh
, lladdr
, ndm
->ndm_state
, flags
);
1802 neigh_release(neigh
);
1806 read_unlock(&neigh_tbl_lock
);
1807 err
= -EAFNOSUPPORT
;
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
);
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
);
1853 nla_nest_cancel(skb
, nest
);
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
);
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
,
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
;
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
);
1938 read_unlock_bh(&tbl
->lock
);
1939 nlmsg_cancel(skb
, nlh
);
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
,
1949 struct ndtmsg
*ndtmsg
;
1950 struct nlmsghdr
*nlh
;
1952 nlh
= nlmsg_put(skb
, pid
, seq
, type
, sizeof(*ndtmsg
), flags
);
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)
1967 read_unlock_bh(&tbl
->lock
);
1968 return nlmsg_end(skb
, nlh
);
1970 read_unlock_bh(&tbl
->lock
);
1971 nlmsg_cancel(skb
, nlh
);
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];
2008 err
= nlmsg_parse(nlh
, sizeof(*ndtmsg
), tb
, NDTA_MAX
,
2009 nl_neightbl_policy
);
2013 if (tb
[NDTA_NAME
] == NULL
) {
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
)
2024 if (nla_strcmp(tb
[NDTA_NAME
], tbl
->id
) == 0)
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
;
2044 err
= nla_parse_nested(tbp
, NDTPA_MAX
, tb
[NDTA_PARMS
],
2045 nl_ntbl_parm_policy
);
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
);
2055 goto errout_tbl_lock
;
2058 for (i
= 1; i
<= NDTPA_MAX
; 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
));
2068 case NDTPA_QUEUE_LENBYTES
:
2069 NEIGH_VAR_SET(p
, QUEUE_LEN_BYTES
,
2070 nla_get_u32(tbp
[i
]));
2072 case NDTPA_PROXY_QLEN
:
2073 NEIGH_VAR_SET(p
, PROXY_QLEN
,
2074 nla_get_u32(tbp
[i
]));
2076 case NDTPA_APP_PROBES
:
2077 NEIGH_VAR_SET(p
, APP_PROBES
,
2078 nla_get_u32(tbp
[i
]));
2080 case NDTPA_UCAST_PROBES
:
2081 NEIGH_VAR_SET(p
, UCAST_PROBES
,
2082 nla_get_u32(tbp
[i
]));
2084 case NDTPA_MCAST_PROBES
:
2085 NEIGH_VAR_SET(p
, MCAST_PROBES
,
2086 nla_get_u32(tbp
[i
]));
2088 case NDTPA_BASE_REACHABLE_TIME
:
2089 NEIGH_VAR_SET(p
, BASE_REACHABLE_TIME
,
2090 nla_get_msecs(tbp
[i
]));
2092 case NDTPA_GC_STALETIME
:
2093 NEIGH_VAR_SET(p
, GC_STALETIME
,
2094 nla_get_msecs(tbp
[i
]));
2096 case NDTPA_DELAY_PROBE_TIME
:
2097 NEIGH_VAR_SET(p
, DELAY_PROBE_TIME
,
2098 nla_get_msecs(tbp
[i
]));
2100 case NDTPA_RETRANS_TIME
:
2101 NEIGH_VAR_SET(p
, RETRANS_TIME
,
2102 nla_get_msecs(tbp
[i
]));
2104 case NDTPA_ANYCAST_DELAY
:
2105 NEIGH_VAR_SET(p
, ANYCAST_DELAY
,
2106 nla_get_msecs(tbp
[i
]));
2108 case NDTPA_PROXY_DELAY
:
2109 NEIGH_VAR_SET(p
, PROXY_DELAY
,
2110 nla_get_msecs(tbp
[i
]));
2112 case NDTPA_LOCKTIME
:
2113 NEIGH_VAR_SET(p
, LOCKTIME
,
2114 nla_get_msecs(tbp
[i
]));
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
]);
2141 write_unlock_bh(&tbl
->lock
);
2143 read_unlock(&neigh_tbl_lock
);
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
))
2165 if (neightbl_fill_info(skb
, tbl
, NETLINK_CB(cb
->skb
).portid
,
2166 cb
->nlh
->nlmsg_seq
, RTM_NEWNEIGHTBL
,
2170 for (nidx
= 0, p
= tbl
->parms
.next
; p
; p
= p
->next
) {
2171 if (!net_eq(neigh_parms_net(p
), net
))
2174 if (nidx
< neigh_skip
)
2177 if (neightbl_fill_param_info(skb
, tbl
, p
,
2178 NETLINK_CB(cb
->skb
).portid
,
2190 read_unlock(&neigh_tbl_lock
);
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
;
2205 nlh
= nlmsg_put(skb
, pid
, seq
, type
, sizeof(*ndm
), flags
);
2209 ndm
= nlmsg_data(nlh
);
2210 ndm
->ndm_family
= neigh
->ops
->family
;
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
);
2245 nlmsg_cancel(skb
, nlh
);
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
;
2256 nlh
= nlmsg_put(skb
, pid
, seq
, type
, sizeof(*ndm
), flags
);
2260 ndm
= nlmsg_data(nlh
);
2261 ndm
->ndm_family
= tbl
->family
;
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
);
2275 nlmsg_cancel(skb
, nlh
);
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
;
2295 nht
= rcu_dereference_bh(tbl
->nht
);
2297 for (h
= s_h
; h
< (1 << nht
->hash_shift
); h
++) {
2300 for (n
= rcu_dereference_bh(nht
->hash_buckets
[h
]), idx
= 0;
2302 n
= rcu_dereference_bh(n
->next
)) {
2303 if (!net_eq(dev_net(n
->dev
), net
))
2307 if (neigh_fill_info(skb
, n
, NETLINK_CB(cb
->skb
).portid
,
2310 NLM_F_MULTI
) <= 0) {
2320 rcu_read_unlock_bh();
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
++) {
2339 for (n
= tbl
->phash_buckets
[h
], idx
= 0; n
; n
= n
->next
) {
2340 if (pneigh_net(n
) != net
)
2344 if (pneigh_fill_info(skb
, n
, NETLINK_CB(cb
->skb
).portid
,
2347 NLM_F_MULTI
, tbl
) <= 0) {
2348 read_unlock_bh(&tbl
->lock
);
2357 read_unlock_bh(&tbl
->lock
);
2366 static int neigh_dump_info(struct sk_buff
*skb
, struct netlink_callback
*cb
)
2368 struct neigh_table
*tbl
;
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
)
2385 for (tbl
= neigh_tables
, t
= 0; tbl
;
2386 tbl
= tbl
->next
, t
++) {
2387 if (t
< s_t
|| (family
&& tbl
->family
!= family
))
2390 memset(&cb
->args
[1], 0, sizeof(cb
->args
) -
2391 sizeof(cb
->args
[0]));
2393 err
= pneigh_dump_table(tbl
, skb
, cb
);
2395 err
= neigh_dump_table(tbl
, skb
, cb
);
2399 read_unlock(&neigh_tbl_lock
);
2405 void neigh_for_each(struct neigh_table
*tbl
, void (*cb
)(struct neighbour
*, void *), void *cookie
)
2408 struct neigh_hash_table
*nht
;
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
]);
2419 n
= rcu_dereference_bh(n
->next
))
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
*))
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
) {
2445 write_lock(&n
->lock
);
2448 rcu_assign_pointer(*np
,
2449 rcu_dereference_protected(n
->next
,
2450 lockdep_is_held(&tbl
->lock
)));
2454 write_unlock(&n
->lock
);
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
]);
2477 if (!net_eq(dev_net(n
->dev
), net
))
2479 if (state
->neigh_sub_iter
) {
2483 v
= state
->neigh_sub_iter(state
, n
, &fakep
);
2487 if (!(state
->flags
& NEIGH_SEQ_SKIP_NOARP
))
2489 if (n
->nud_state
& ~NUD_NOARP
)
2492 n
= rcu_dereference_bh(n
->next
);
2498 state
->bucket
= bucket
;
2503 static struct neighbour
*neigh_get_next(struct seq_file
*seq
,
2504 struct neighbour
*n
,
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
);
2516 n
= rcu_dereference_bh(n
->next
);
2520 if (!net_eq(dev_net(n
->dev
), net
))
2522 if (state
->neigh_sub_iter
) {
2523 void *v
= state
->neigh_sub_iter(state
, n
, pos
);
2528 if (!(state
->flags
& NEIGH_SEQ_SKIP_NOARP
))
2531 if (n
->nud_state
& ~NUD_NOARP
)
2534 n
= rcu_dereference_bh(n
->next
);
2540 if (++state
->bucket
>= (1 << nht
->hash_shift
))
2543 n
= rcu_dereference_bh(nht
->hash_buckets
[state
->bucket
]);
2551 static struct neighbour
*neigh_get_idx(struct seq_file
*seq
, loff_t
*pos
)
2553 struct neighbour
*n
= neigh_get_first(seq
);
2558 n
= neigh_get_next(seq
, n
, pos
);
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
))
2582 state
->bucket
= bucket
;
2587 static struct pneigh_entry
*pneigh_get_next(struct seq_file
*seq
,
2588 struct pneigh_entry
*pn
,
2591 struct neigh_seq_state
*state
= seq
->private;
2592 struct net
*net
= seq_file_net(seq
);
2593 struct neigh_table
*tbl
= state
->tbl
;
2597 } while (pn
&& !net_eq(pneigh_net(pn
), net
));
2600 if (++state
->bucket
> PNEIGH_HASHMASK
)
2602 pn
= tbl
->phash_buckets
[state
->bucket
];
2603 while (pn
&& !net_eq(pneigh_net(pn
), net
))
2615 static struct pneigh_entry
*pneigh_get_idx(struct seq_file
*seq
, loff_t
*pos
)
2617 struct pneigh_entry
*pn
= pneigh_get_first(seq
);
2622 pn
= pneigh_get_next(seq
, pn
, pos
);
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;
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
);
2643 void *neigh_seq_start(struct seq_file
*seq
, loff_t
*pos
, struct neigh_table
*tbl
, unsigned int neigh_seq_flags
)
2646 struct neigh_seq_state
*state
= seq
->private;
2650 state
->flags
= (neigh_seq_flags
& ~NEIGH_SEQ_IS_PNEIGH
);
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
;
2664 if (v
== SEQ_START_TOKEN
) {
2665 rc
= neigh_get_first(seq
);
2669 state
= seq
->private;
2670 if (!(state
->flags
& NEIGH_SEQ_IS_PNEIGH
)) {
2671 rc
= neigh_get_next(seq
, v
, NULL
);
2674 if (!(state
->flags
& NEIGH_SEQ_NEIGH_ONLY
))
2675 rc
= pneigh_get_first(seq
);
2677 BUG_ON(state
->flags
& NEIGH_SEQ_NEIGH_ONLY
);
2678 rc
= pneigh_get_next(seq
, v
, NULL
);
2684 EXPORT_SYMBOL(neigh_seq_next
);
2686 void neigh_seq_stop(struct seq_file
*seq
, void *v
)
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;
2701 return SEQ_START_TOKEN
;
2703 for (cpu
= *pos
-1; cpu
< nr_cpu_ids
; ++cpu
) {
2704 if (!cpu_possible(cpu
))
2707 return per_cpu_ptr(tbl
->stats
, cpu
);
2712 static void *neigh_stat_seq_next(struct seq_file
*seq
, void *v
, loff_t
*pos
)
2714 struct neigh_table
*tbl
= seq
->private;
2717 for (cpu
= *pos
; cpu
< nr_cpu_ids
; ++cpu
) {
2718 if (!cpu_possible(cpu
))
2721 return per_cpu_ptr(tbl
->stats
, cpu
);
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");
2741 seq_printf(seq
, "%08x %08lx %08lx %08lx %08lx %08lx %08lx "
2742 "%08lx %08lx %08lx %08lx %08lx\n",
2743 atomic_read(&tbl
->entries
),
2754 st
->rcv_probes_mcast
,
2755 st
->rcv_probes_ucast
,
2757 st
->periodic_gc_runs
,
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
);
2777 struct seq_file
*sf
= file
->private_data
;
2778 sf
->private = PDE_DATA(inode
);
2783 static const struct file_operations neigh_stat_seq_fops
= {
2784 .owner
= THIS_MODULE
,
2785 .open
= neigh_stat_seq_open
,
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
;
2808 skb
= nlmsg_new(neigh_nlmsg_size(), GFP_ATOMIC
);
2812 err
= neigh_fill_info(skb
, n
, 0, 0, type
, flags
);
2814 /* -EMSGSIZE implies BUG in neigh_nlmsg_size() */
2815 WARN_ON(err
== -EMSGSIZE
);
2819 rtnl_notify(skb
, net
, 0, RTNLGRP_NEIGH
, NULL
, GFP_ATOMIC
);
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
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
)
2841 struct ctl_table tmp
= *ctl
;
2844 tmp
.extra2
= &unres_qlen_max
;
2847 size
= *(int *)ctl
->data
/ SKB_TRUESIZE(ETH_FRAME_LEN
);
2848 ret
= proc_dointvec_minmax(&tmp
, write
, buffer
, lenp
, ppos
);
2851 *(int *)ctl
->data
= size
* SKB_TRUESIZE(ETH_FRAME_LEN
);
2855 static struct neigh_parms
*neigh_get_dev_parms_rcu(struct net_device
*dev
,
2860 return __in_dev_arp_parms_get_rcu(dev
);
2862 return __in6_dev_nd_parms_get_rcu(dev
);
2867 static void neigh_copy_dflt_parms(struct net
*net
, struct neigh_parms
*p
,
2870 struct net_device
*dev
;
2871 int family
= neigh_parms_family(p
);
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
];
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
;
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
;
2907 tmp
.extra2
= &int_max
;
2909 ret
= proc_dointvec_minmax(&tmp
, write
, buffer
, lenp
, ppos
);
2910 neigh_proc_update(ctl
, write
);
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
);
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
);
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
);
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
);
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
);
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] = { \
2972 .data = NEIGH_PARMS_DATA_OFFSET(NEIGH_VAR_ ## data_attr), \
2973 .maxlen = sizeof(int), \
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
= {
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),
3020 .proc_handler
= proc_dointvec_jiffies
,
3022 [NEIGH_VAR_GC_THRESH1
] = {
3023 .procname
= "gc_thresh1",
3024 .maxlen
= sizeof(int),
3028 .proc_handler
= proc_dointvec_minmax
,
3030 [NEIGH_VAR_GC_THRESH2
] = {
3031 .procname
= "gc_thresh2",
3032 .maxlen
= sizeof(int),
3036 .proc_handler
= proc_dointvec_minmax
,
3038 [NEIGH_VAR_GC_THRESH3
] = {
3039 .procname
= "gc_thresh3",
3040 .maxlen
= sizeof(int),
3044 .proc_handler
= proc_dointvec_minmax
,
3050 int neigh_sysctl_register(struct net_device
*dev
, struct neigh_parms
*p
,
3051 proc_handler
*handler
)
3054 struct neigh_sysctl_table
*t
;
3055 const char *dev_name_source
;
3056 char neigh_path
[ sizeof("net//neigh/") + IFNAMSIZ
+ IFNAMSIZ
];
3059 t
= kmemdup(&neigh_sysctl_template
, sizeof(*t
), GFP_KERNEL
);
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
;
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
]));
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
;
3085 t
->neigh_vars
[NEIGH_VAR_RETRANS_TIME
].proc_handler
= handler
;
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
)) {
3109 snprintf(neigh_path
, sizeof(neigh_path
), "net/%s/neigh/%s",
3110 p_name
, dev_name_source
);
3112 register_net_sysctl(neigh_parms_net(p
), neigh_path
, t
->neigh_vars
);
3113 if (!t
->sysctl_header
)
3116 p
->sysctl_table
= t
;
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
);
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
,
3147 rtnl_register(PF_UNSPEC
, RTM_SETNEIGHTBL
, neightbl_set
, NULL
, NULL
);
3152 subsys_initcall(neigh_init
);