2 * Generic address resolution entity
5 * Pedro Roque <roque@di.fc.ul.pt>
6 * Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License
10 * as published by the Free Software Foundation; either version
11 * 2 of the License, or (at your option) any later version.
14 * Vitaly E. Lavrov releasing NULL neighbor in neigh_add.
15 * Harald Welte Add neighbour cache statistics like rtstat
18 #include <linux/types.h>
19 #include <linux/kernel.h>
20 #include <linux/module.h>
21 #include <linux/socket.h>
22 #include <linux/netdevice.h>
23 #include <linux/proc_fs.h>
25 #include <linux/sysctl.h>
27 #include <linux/times.h>
28 #include <net/net_namespace.h>
29 #include <net/neighbour.h>
32 #include <net/netevent.h>
33 #include <net/netlink.h>
34 #include <linux/rtnetlink.h>
35 #include <linux/random.h>
36 #include <linux/string.h>
37 #include <linux/log2.h>
41 #define NEIGH_PRINTK(x...) printk(x)
42 #define NEIGH_NOPRINTK(x...) do { ; } while(0)
43 #define NEIGH_PRINTK0 NEIGH_PRINTK
44 #define NEIGH_PRINTK1 NEIGH_NOPRINTK
45 #define NEIGH_PRINTK2 NEIGH_NOPRINTK
49 #define NEIGH_PRINTK1 NEIGH_PRINTK
53 #define NEIGH_PRINTK2 NEIGH_PRINTK
56 #define PNEIGH_HASHMASK 0xF
58 static void neigh_timer_handler(unsigned long arg
);
59 static void __neigh_notify(struct neighbour
*n
, int type
, int flags
);
60 static void neigh_update_notify(struct neighbour
*neigh
);
61 static int pneigh_ifdown(struct neigh_table
*tbl
, struct net_device
*dev
);
63 static struct neigh_table
*neigh_tables
;
65 static const struct file_operations neigh_stat_seq_fops
;
69 Neighbour hash table buckets are protected with rwlock tbl->lock.
71 - All the scans/updates to hash buckets MUST be made under this lock.
72 - NOTHING clever should be made under this lock: no callbacks
73 to protocol backends, no attempts to send something to network.
74 It will result in deadlocks, if backend/driver wants to use neighbour
76 - If the entry requires some non-trivial actions, increase
77 its reference count and release table lock.
79 Neighbour entries are protected:
80 - with reference count.
81 - with rwlock neigh->lock
83 Reference count prevents destruction.
85 neigh->lock mainly serializes ll address data and its validity state.
86 However, the same lock is used to protect another entry fields:
90 Again, nothing clever shall be made under neigh->lock,
91 the most complicated procedure, which we allow is dev->hard_header.
92 It is supposed, that dev->hard_header is simplistic and does
93 not make callbacks to neighbour tables.
95 The last lock is neigh_tbl_lock. It is pure SMP lock, protecting
96 list of neighbour tables. This list is used only in process context,
99 static DEFINE_RWLOCK(neigh_tbl_lock
);
101 static int neigh_blackhole(struct sk_buff
*skb
)
107 static void neigh_cleanup_and_release(struct neighbour
*neigh
)
109 if (neigh
->parms
->neigh_cleanup
)
110 neigh
->parms
->neigh_cleanup(neigh
);
112 __neigh_notify(neigh
, RTM_DELNEIGH
, 0);
113 neigh_release(neigh
);
117 * It is random distribution in the interval (1/2)*base...(3/2)*base.
118 * It corresponds to default IPv6 settings and is not overridable,
119 * because it is really reasonable choice.
122 unsigned long neigh_rand_reach_time(unsigned long base
)
124 return (base
? (net_random() % base
) + (base
>> 1) : 0);
128 static int neigh_forced_gc(struct neigh_table
*tbl
)
133 NEIGH_CACHE_STAT_INC(tbl
, forced_gc_runs
);
135 write_lock_bh(&tbl
->lock
);
136 for (i
= 0; i
<= tbl
->hash_mask
; i
++) {
137 struct neighbour
*n
, **np
;
139 np
= &tbl
->hash_buckets
[i
];
140 while ((n
= *np
) != NULL
) {
141 /* Neighbour record may be discarded if:
142 * - nobody refers to it.
143 * - it is not permanent
145 write_lock(&n
->lock
);
146 if (atomic_read(&n
->refcnt
) == 1 &&
147 !(n
->nud_state
& NUD_PERMANENT
)) {
151 write_unlock(&n
->lock
);
152 neigh_cleanup_and_release(n
);
155 write_unlock(&n
->lock
);
160 tbl
->last_flush
= jiffies
;
162 write_unlock_bh(&tbl
->lock
);
167 static void neigh_add_timer(struct neighbour
*n
, unsigned long when
)
170 if (unlikely(mod_timer(&n
->timer
, when
))) {
171 printk("NEIGH: BUG, double timer add, state is %x\n",
177 static int neigh_del_timer(struct neighbour
*n
)
179 if ((n
->nud_state
& NUD_IN_TIMER
) &&
180 del_timer(&n
->timer
)) {
187 static void pneigh_queue_purge(struct sk_buff_head
*list
)
191 while ((skb
= skb_dequeue(list
)) != NULL
) {
197 static void neigh_flush_dev(struct neigh_table
*tbl
, struct net_device
*dev
)
201 for (i
= 0; i
<= tbl
->hash_mask
; i
++) {
202 struct neighbour
*n
, **np
= &tbl
->hash_buckets
[i
];
204 while ((n
= *np
) != NULL
) {
205 if (dev
&& n
->dev
!= dev
) {
210 write_lock(&n
->lock
);
214 if (atomic_read(&n
->refcnt
) != 1) {
215 /* The most unpleasant situation.
216 We must destroy neighbour entry,
217 but someone still uses it.
219 The destroy will be delayed until
220 the last user releases us, but
221 we must kill timers etc. and move
224 skb_queue_purge(&n
->arp_queue
);
225 n
->output
= neigh_blackhole
;
226 if (n
->nud_state
& NUD_VALID
)
227 n
->nud_state
= NUD_NOARP
;
229 n
->nud_state
= NUD_NONE
;
230 NEIGH_PRINTK2("neigh %p is stray.\n", n
);
232 write_unlock(&n
->lock
);
233 neigh_cleanup_and_release(n
);
238 void neigh_changeaddr(struct neigh_table
*tbl
, struct net_device
*dev
)
240 write_lock_bh(&tbl
->lock
);
241 neigh_flush_dev(tbl
, dev
);
242 write_unlock_bh(&tbl
->lock
);
245 int neigh_ifdown(struct neigh_table
*tbl
, struct net_device
*dev
)
247 write_lock_bh(&tbl
->lock
);
248 neigh_flush_dev(tbl
, dev
);
249 pneigh_ifdown(tbl
, dev
);
250 write_unlock_bh(&tbl
->lock
);
252 del_timer_sync(&tbl
->proxy_timer
);
253 pneigh_queue_purge(&tbl
->proxy_queue
);
257 static struct neighbour
*neigh_alloc(struct neigh_table
*tbl
)
259 struct neighbour
*n
= NULL
;
260 unsigned long now
= jiffies
;
263 entries
= atomic_inc_return(&tbl
->entries
) - 1;
264 if (entries
>= tbl
->gc_thresh3
||
265 (entries
>= tbl
->gc_thresh2
&&
266 time_after(now
, tbl
->last_flush
+ 5 * HZ
))) {
267 if (!neigh_forced_gc(tbl
) &&
268 entries
>= tbl
->gc_thresh3
)
272 n
= kmem_cache_zalloc(tbl
->kmem_cachep
, GFP_ATOMIC
);
276 skb_queue_head_init(&n
->arp_queue
);
277 rwlock_init(&n
->lock
);
278 n
->updated
= n
->used
= now
;
279 n
->nud_state
= NUD_NONE
;
280 n
->output
= neigh_blackhole
;
281 n
->parms
= neigh_parms_clone(&tbl
->parms
);
282 setup_timer(&n
->timer
, neigh_timer_handler
, (unsigned long)n
);
284 NEIGH_CACHE_STAT_INC(tbl
, allocs
);
286 atomic_set(&n
->refcnt
, 1);
292 atomic_dec(&tbl
->entries
);
296 static struct neighbour
**neigh_hash_alloc(unsigned int entries
)
298 unsigned long size
= entries
* sizeof(struct neighbour
*);
299 struct neighbour
**ret
;
301 if (size
<= PAGE_SIZE
) {
302 ret
= kzalloc(size
, GFP_ATOMIC
);
304 ret
= (struct neighbour
**)
305 __get_free_pages(GFP_ATOMIC
|__GFP_ZERO
, get_order(size
));
310 static void neigh_hash_free(struct neighbour
**hash
, unsigned int entries
)
312 unsigned long size
= entries
* sizeof(struct neighbour
*);
314 if (size
<= PAGE_SIZE
)
317 free_pages((unsigned long)hash
, get_order(size
));
320 static void neigh_hash_grow(struct neigh_table
*tbl
, unsigned long new_entries
)
322 struct neighbour
**new_hash
, **old_hash
;
323 unsigned int i
, new_hash_mask
, old_entries
;
325 NEIGH_CACHE_STAT_INC(tbl
, hash_grows
);
327 BUG_ON(!is_power_of_2(new_entries
));
328 new_hash
= neigh_hash_alloc(new_entries
);
332 old_entries
= tbl
->hash_mask
+ 1;
333 new_hash_mask
= new_entries
- 1;
334 old_hash
= tbl
->hash_buckets
;
336 get_random_bytes(&tbl
->hash_rnd
, sizeof(tbl
->hash_rnd
));
337 for (i
= 0; i
< old_entries
; i
++) {
338 struct neighbour
*n
, *next
;
340 for (n
= old_hash
[i
]; n
; n
= next
) {
341 unsigned int hash_val
= tbl
->hash(n
->primary_key
, n
->dev
);
343 hash_val
&= new_hash_mask
;
346 n
->next
= new_hash
[hash_val
];
347 new_hash
[hash_val
] = n
;
350 tbl
->hash_buckets
= new_hash
;
351 tbl
->hash_mask
= new_hash_mask
;
353 neigh_hash_free(old_hash
, old_entries
);
356 struct neighbour
*neigh_lookup(struct neigh_table
*tbl
, const void *pkey
,
357 struct net_device
*dev
)
360 int key_len
= tbl
->key_len
;
361 <<<<<<< HEAD
:net
/core
/neighbour
.c
362 u32 hash_val
= tbl
->hash(pkey
, dev
);
365 >>>>>>> 264e3e889d86e552b4191d69bb60f4f3b383135a
:net
/core
/neighbour
.c
367 NEIGH_CACHE_STAT_INC(tbl
, lookups
);
369 read_lock_bh(&tbl
->lock
);
370 <<<<<<< HEAD
:net
/core
/neighbour
.c
372 hash_val
= tbl
->hash(pkey
, dev
);
373 >>>>>>> 264e3e889d86e552b4191d69bb60f4f3b383135a
:net
/core
/neighbour
.c
374 for (n
= tbl
->hash_buckets
[hash_val
& tbl
->hash_mask
]; n
; n
= n
->next
) {
375 if (dev
== n
->dev
&& !memcmp(n
->primary_key
, pkey
, key_len
)) {
377 NEIGH_CACHE_STAT_INC(tbl
, hits
);
381 read_unlock_bh(&tbl
->lock
);
385 struct neighbour
*neigh_lookup_nodev(struct neigh_table
*tbl
, struct net
*net
,
389 int key_len
= tbl
->key_len
;
390 <<<<<<< HEAD
:net
/core
/neighbour
.c
391 u32 hash_val
= tbl
->hash(pkey
, NULL
);
394 >>>>>>> 264e3e889d86e552b4191d69bb60f4f3b383135a
:net
/core
/neighbour
.c
396 NEIGH_CACHE_STAT_INC(tbl
, lookups
);
398 read_lock_bh(&tbl
->lock
);
399 <<<<<<< HEAD
:net
/core
/neighbour
.c
401 hash_val
= tbl
->hash(pkey
, NULL
);
402 >>>>>>> 264e3e889d86e552b4191d69bb60f4f3b383135a
:net
/core
/neighbour
.c
403 for (n
= tbl
->hash_buckets
[hash_val
& tbl
->hash_mask
]; n
; n
= n
->next
) {
404 if (!memcmp(n
->primary_key
, pkey
, key_len
) &&
405 (net
== n
->dev
->nd_net
)) {
407 NEIGH_CACHE_STAT_INC(tbl
, hits
);
411 read_unlock_bh(&tbl
->lock
);
415 struct neighbour
*neigh_create(struct neigh_table
*tbl
, const void *pkey
,
416 struct net_device
*dev
)
419 int key_len
= tbl
->key_len
;
421 struct neighbour
*n1
, *rc
, *n
= neigh_alloc(tbl
);
424 rc
= ERR_PTR(-ENOBUFS
);
428 memcpy(n
->primary_key
, pkey
, key_len
);
432 /* Protocol specific setup. */
433 if (tbl
->constructor
&& (error
= tbl
->constructor(n
)) < 0) {
435 goto out_neigh_release
;
438 /* Device specific setup. */
439 if (n
->parms
->neigh_setup
&&
440 (error
= n
->parms
->neigh_setup(n
)) < 0) {
442 goto out_neigh_release
;
445 n
->confirmed
= jiffies
- (n
->parms
->base_reachable_time
<< 1);
447 write_lock_bh(&tbl
->lock
);
449 if (atomic_read(&tbl
->entries
) > (tbl
->hash_mask
+ 1))
450 neigh_hash_grow(tbl
, (tbl
->hash_mask
+ 1) << 1);
452 hash_val
= tbl
->hash(pkey
, dev
) & tbl
->hash_mask
;
454 if (n
->parms
->dead
) {
455 rc
= ERR_PTR(-EINVAL
);
459 for (n1
= tbl
->hash_buckets
[hash_val
]; n1
; n1
= n1
->next
) {
460 if (dev
== n1
->dev
&& !memcmp(n1
->primary_key
, pkey
, key_len
)) {
467 n
->next
= tbl
->hash_buckets
[hash_val
];
468 tbl
->hash_buckets
[hash_val
] = n
;
471 write_unlock_bh(&tbl
->lock
);
472 NEIGH_PRINTK2("neigh %p is created.\n", n
);
477 write_unlock_bh(&tbl
->lock
);
483 struct pneigh_entry
* pneigh_lookup(struct neigh_table
*tbl
,
484 struct net
*net
, const void *pkey
,
485 struct net_device
*dev
, int creat
)
487 struct pneigh_entry
*n
;
488 int key_len
= tbl
->key_len
;
489 u32 hash_val
= *(u32
*)(pkey
+ key_len
- 4);
491 hash_val
^= (hash_val
>> 16);
492 hash_val
^= hash_val
>> 8;
493 hash_val
^= hash_val
>> 4;
494 hash_val
&= PNEIGH_HASHMASK
;
496 read_lock_bh(&tbl
->lock
);
498 for (n
= tbl
->phash_buckets
[hash_val
]; n
; n
= n
->next
) {
499 if (!memcmp(n
->key
, pkey
, key_len
) &&
501 (n
->dev
== dev
|| !n
->dev
)) {
502 read_unlock_bh(&tbl
->lock
);
506 read_unlock_bh(&tbl
->lock
);
513 n
= kmalloc(sizeof(*n
) + key_len
, GFP_KERNEL
);
517 n
->net
= hold_net(net
);
518 memcpy(n
->key
, pkey
, key_len
);
523 if (tbl
->pconstructor
&& tbl
->pconstructor(n
)) {
526 <<<<<<< HEAD
:net
/core
/neighbour
.c
529 >>>>>>> 264e3e889d86e552b4191d69bb60f4f3b383135a
:net
/core
/neighbour
.c
535 write_lock_bh(&tbl
->lock
);
536 n
->next
= tbl
->phash_buckets
[hash_val
];
537 tbl
->phash_buckets
[hash_val
] = n
;
538 write_unlock_bh(&tbl
->lock
);
544 int pneigh_delete(struct neigh_table
*tbl
, struct net
*net
, const void *pkey
,
545 struct net_device
*dev
)
547 struct pneigh_entry
*n
, **np
;
548 int key_len
= tbl
->key_len
;
549 u32 hash_val
= *(u32
*)(pkey
+ key_len
- 4);
551 hash_val
^= (hash_val
>> 16);
552 hash_val
^= hash_val
>> 8;
553 hash_val
^= hash_val
>> 4;
554 hash_val
&= PNEIGH_HASHMASK
;
556 write_lock_bh(&tbl
->lock
);
557 for (np
= &tbl
->phash_buckets
[hash_val
]; (n
= *np
) != NULL
;
559 if (!memcmp(n
->key
, pkey
, key_len
) && n
->dev
== dev
&&
562 write_unlock_bh(&tbl
->lock
);
563 if (tbl
->pdestructor
)
572 write_unlock_bh(&tbl
->lock
);
576 static int pneigh_ifdown(struct neigh_table
*tbl
, struct net_device
*dev
)
578 struct pneigh_entry
*n
, **np
;
581 for (h
= 0; h
<= PNEIGH_HASHMASK
; h
++) {
582 np
= &tbl
->phash_buckets
[h
];
583 while ((n
= *np
) != NULL
) {
584 if (!dev
|| n
->dev
== dev
) {
586 if (tbl
->pdestructor
)
600 static void neigh_parms_destroy(struct neigh_parms
*parms
);
602 static inline void neigh_parms_put(struct neigh_parms
*parms
)
604 if (atomic_dec_and_test(&parms
->refcnt
))
605 neigh_parms_destroy(parms
);
609 * neighbour must already be out of the table;
612 void neigh_destroy(struct neighbour
*neigh
)
616 NEIGH_CACHE_STAT_INC(neigh
->tbl
, destroys
);
620 "Destroying alive neighbour %p\n", neigh
);
625 if (neigh_del_timer(neigh
))
626 printk(KERN_WARNING
"Impossible event.\n");
628 while ((hh
= neigh
->hh
) != NULL
) {
629 neigh
->hh
= hh
->hh_next
;
632 write_seqlock_bh(&hh
->hh_lock
);
633 hh
->hh_output
= neigh_blackhole
;
634 write_sequnlock_bh(&hh
->hh_lock
);
635 if (atomic_dec_and_test(&hh
->hh_refcnt
))
639 skb_queue_purge(&neigh
->arp_queue
);
642 neigh_parms_put(neigh
->parms
);
644 NEIGH_PRINTK2("neigh %p is destroyed.\n", neigh
);
646 atomic_dec(&neigh
->tbl
->entries
);
647 kmem_cache_free(neigh
->tbl
->kmem_cachep
, neigh
);
650 /* Neighbour state is suspicious;
653 Called with write_locked neigh.
655 static void neigh_suspect(struct neighbour
*neigh
)
659 NEIGH_PRINTK2("neigh %p is suspected.\n", neigh
);
661 neigh
->output
= neigh
->ops
->output
;
663 for (hh
= neigh
->hh
; hh
; hh
= hh
->hh_next
)
664 hh
->hh_output
= neigh
->ops
->output
;
667 /* Neighbour state is OK;
670 Called with write_locked neigh.
672 static void neigh_connect(struct neighbour
*neigh
)
676 NEIGH_PRINTK2("neigh %p is connected.\n", neigh
);
678 neigh
->output
= neigh
->ops
->connected_output
;
680 for (hh
= neigh
->hh
; hh
; hh
= hh
->hh_next
)
681 hh
->hh_output
= neigh
->ops
->hh_output
;
684 static void neigh_periodic_timer(unsigned long arg
)
686 struct neigh_table
*tbl
= (struct neigh_table
*)arg
;
687 struct neighbour
*n
, **np
;
688 unsigned long expire
, now
= jiffies
;
690 NEIGH_CACHE_STAT_INC(tbl
, periodic_gc_runs
);
692 write_lock(&tbl
->lock
);
695 * periodically recompute ReachableTime from random function
698 if (time_after(now
, tbl
->last_rand
+ 300 * HZ
)) {
699 struct neigh_parms
*p
;
700 tbl
->last_rand
= now
;
701 for (p
= &tbl
->parms
; p
; p
= p
->next
)
703 neigh_rand_reach_time(p
->base_reachable_time
);
706 np
= &tbl
->hash_buckets
[tbl
->hash_chain_gc
];
707 tbl
->hash_chain_gc
= ((tbl
->hash_chain_gc
+ 1) & tbl
->hash_mask
);
709 while ((n
= *np
) != NULL
) {
712 write_lock(&n
->lock
);
714 state
= n
->nud_state
;
715 if (state
& (NUD_PERMANENT
| NUD_IN_TIMER
)) {
716 write_unlock(&n
->lock
);
720 if (time_before(n
->used
, n
->confirmed
))
721 n
->used
= n
->confirmed
;
723 if (atomic_read(&n
->refcnt
) == 1 &&
724 (state
== NUD_FAILED
||
725 time_after(now
, n
->used
+ n
->parms
->gc_staletime
))) {
728 write_unlock(&n
->lock
);
729 neigh_cleanup_and_release(n
);
732 write_unlock(&n
->lock
);
738 /* Cycle through all hash buckets every base_reachable_time/2 ticks.
739 * ARP entry timeouts range from 1/2 base_reachable_time to 3/2
740 * base_reachable_time.
742 expire
= tbl
->parms
.base_reachable_time
>> 1;
743 expire
/= (tbl
->hash_mask
+ 1);
748 mod_timer(&tbl
->gc_timer
, round_jiffies(now
+ expire
));
750 mod_timer(&tbl
->gc_timer
, now
+ expire
);
752 write_unlock(&tbl
->lock
);
755 static __inline__
int neigh_max_probes(struct neighbour
*n
)
757 struct neigh_parms
*p
= n
->parms
;
758 return (n
->nud_state
& NUD_PROBE
?
760 p
->ucast_probes
+ p
->app_probes
+ p
->mcast_probes
);
763 /* Called when a timer expires for a neighbour entry. */
765 static void neigh_timer_handler(unsigned long arg
)
767 unsigned long now
, next
;
768 struct neighbour
*neigh
= (struct neighbour
*)arg
;
772 write_lock(&neigh
->lock
);
774 state
= neigh
->nud_state
;
778 if (!(state
& NUD_IN_TIMER
)) {
780 printk(KERN_WARNING
"neigh: timer & !nud_in_timer\n");
785 if (state
& NUD_REACHABLE
) {
786 if (time_before_eq(now
,
787 neigh
->confirmed
+ neigh
->parms
->reachable_time
)) {
788 NEIGH_PRINTK2("neigh %p is still alive.\n", neigh
);
789 next
= neigh
->confirmed
+ neigh
->parms
->reachable_time
;
790 } else if (time_before_eq(now
,
791 neigh
->used
+ neigh
->parms
->delay_probe_time
)) {
792 NEIGH_PRINTK2("neigh %p is delayed.\n", neigh
);
793 neigh
->nud_state
= NUD_DELAY
;
794 neigh
->updated
= jiffies
;
795 neigh_suspect(neigh
);
796 next
= now
+ neigh
->parms
->delay_probe_time
;
798 NEIGH_PRINTK2("neigh %p is suspected.\n", neigh
);
799 neigh
->nud_state
= NUD_STALE
;
800 neigh
->updated
= jiffies
;
801 neigh_suspect(neigh
);
804 } else if (state
& NUD_DELAY
) {
805 if (time_before_eq(now
,
806 neigh
->confirmed
+ neigh
->parms
->delay_probe_time
)) {
807 NEIGH_PRINTK2("neigh %p is now reachable.\n", neigh
);
808 neigh
->nud_state
= NUD_REACHABLE
;
809 neigh
->updated
= jiffies
;
810 neigh_connect(neigh
);
812 next
= neigh
->confirmed
+ neigh
->parms
->reachable_time
;
814 NEIGH_PRINTK2("neigh %p is probed.\n", neigh
);
815 neigh
->nud_state
= NUD_PROBE
;
816 neigh
->updated
= jiffies
;
817 atomic_set(&neigh
->probes
, 0);
818 next
= now
+ neigh
->parms
->retrans_time
;
821 /* NUD_PROBE|NUD_INCOMPLETE */
822 next
= now
+ neigh
->parms
->retrans_time
;
825 if ((neigh
->nud_state
& (NUD_INCOMPLETE
| NUD_PROBE
)) &&
826 atomic_read(&neigh
->probes
) >= neigh_max_probes(neigh
)) {
829 neigh
->nud_state
= NUD_FAILED
;
830 neigh
->updated
= jiffies
;
832 NEIGH_CACHE_STAT_INC(neigh
->tbl
, res_failed
);
833 NEIGH_PRINTK2("neigh %p is failed.\n", neigh
);
835 /* It is very thin place. report_unreachable is very complicated
836 routine. Particularly, it can hit the same neighbour entry!
838 So that, we try to be accurate and avoid dead loop. --ANK
840 while (neigh
->nud_state
== NUD_FAILED
&&
841 (skb
= __skb_dequeue(&neigh
->arp_queue
)) != NULL
) {
842 write_unlock(&neigh
->lock
);
843 neigh
->ops
->error_report(neigh
, skb
);
844 write_lock(&neigh
->lock
);
846 skb_queue_purge(&neigh
->arp_queue
);
849 if (neigh
->nud_state
& NUD_IN_TIMER
) {
850 if (time_before(next
, jiffies
+ HZ
/2))
851 next
= jiffies
+ HZ
/2;
852 if (!mod_timer(&neigh
->timer
, next
))
855 if (neigh
->nud_state
& (NUD_INCOMPLETE
| NUD_PROBE
)) {
856 struct sk_buff
*skb
= skb_peek(&neigh
->arp_queue
);
857 <<<<<<< HEAD
:net
/core
/neighbour
.c
860 /* keep skb alive even if arp_queue overflows */
862 skb
= skb_copy(skb
, GFP_ATOMIC
);
863 write_unlock(&neigh
->lock
);
864 >>>>>>> 264e3e889d86e552b4191d69bb60f4f3b383135a
:net
/core
/neighbour
.c
865 neigh
->ops
->solicit(neigh
, skb
);
866 atomic_inc(&neigh
->probes
);
867 <<<<<<< HEAD
:net
/core
/neighbour
.c
873 >>>>>>> 264e3e889d86e552b4191d69bb60f4f3b383135a
:net
/core
/neighbour
.c
875 <<<<<<< HEAD
:net
/core
/neighbour
.c
876 write_unlock(&neigh
->lock
);
878 write_unlock(&neigh
->lock
);
880 >>>>>>> 264e3e889d86e552b4191d69bb60f4f3b383135a
:net
/core
/neighbour
.c
883 neigh_update_notify(neigh
);
885 neigh_release(neigh
);
888 int __neigh_event_send(struct neighbour
*neigh
, struct sk_buff
*skb
)
893 write_lock_bh(&neigh
->lock
);
896 if (neigh
->nud_state
& (NUD_CONNECTED
| NUD_DELAY
| NUD_PROBE
))
901 if (!(neigh
->nud_state
& (NUD_STALE
| NUD_INCOMPLETE
))) {
902 if (neigh
->parms
->mcast_probes
+ neigh
->parms
->app_probes
) {
903 atomic_set(&neigh
->probes
, neigh
->parms
->ucast_probes
);
904 neigh
->nud_state
= NUD_INCOMPLETE
;
905 neigh
->updated
= jiffies
;
906 neigh_add_timer(neigh
, now
+ 1);
908 neigh
->nud_state
= NUD_FAILED
;
909 neigh
->updated
= jiffies
;
910 write_unlock_bh(&neigh
->lock
);
916 } else if (neigh
->nud_state
& NUD_STALE
) {
917 NEIGH_PRINTK2("neigh %p is delayed.\n", neigh
);
918 neigh
->nud_state
= NUD_DELAY
;
919 neigh
->updated
= jiffies
;
920 neigh_add_timer(neigh
,
921 jiffies
+ neigh
->parms
->delay_probe_time
);
924 if (neigh
->nud_state
== NUD_INCOMPLETE
) {
926 if (skb_queue_len(&neigh
->arp_queue
) >=
927 neigh
->parms
->queue_len
) {
928 struct sk_buff
*buff
;
929 buff
= neigh
->arp_queue
.next
;
930 __skb_unlink(buff
, &neigh
->arp_queue
);
933 __skb_queue_tail(&neigh
->arp_queue
, skb
);
938 write_unlock_bh(&neigh
->lock
);
942 static void neigh_update_hhs(struct neighbour
*neigh
)
945 void (*update
)(struct hh_cache
*, const struct net_device
*, const unsigned char *)
946 = neigh
->dev
->header_ops
->cache_update
;
949 for (hh
= neigh
->hh
; hh
; hh
= hh
->hh_next
) {
950 write_seqlock_bh(&hh
->hh_lock
);
951 update(hh
, neigh
->dev
, neigh
->ha
);
952 write_sequnlock_bh(&hh
->hh_lock
);
959 /* Generic update routine.
960 -- lladdr is new lladdr or NULL, if it is not supplied.
963 NEIGH_UPDATE_F_OVERRIDE allows to override existing lladdr,
965 NEIGH_UPDATE_F_WEAK_OVERRIDE will suspect existing "connected"
966 lladdr instead of overriding it
968 It also allows to retain current state
969 if lladdr is unchanged.
970 NEIGH_UPDATE_F_ADMIN means that the change is administrative.
972 NEIGH_UPDATE_F_OVERRIDE_ISROUTER allows to override existing
974 NEIGH_UPDATE_F_ISROUTER indicates if the neighbour is known as
977 Caller MUST hold reference count on the entry.
980 int neigh_update(struct neighbour
*neigh
, const u8
*lladdr
, u8
new,
986 struct net_device
*dev
;
987 int update_isrouter
= 0;
989 write_lock_bh(&neigh
->lock
);
992 old
= neigh
->nud_state
;
995 if (!(flags
& NEIGH_UPDATE_F_ADMIN
) &&
996 (old
& (NUD_NOARP
| NUD_PERMANENT
)))
999 if (!(new & NUD_VALID
)) {
1000 neigh_del_timer(neigh
);
1001 if (old
& NUD_CONNECTED
)
1002 neigh_suspect(neigh
);
1003 neigh
->nud_state
= new;
1005 notify
= old
& NUD_VALID
;
1009 /* Compare new lladdr with cached one */
1010 if (!dev
->addr_len
) {
1011 /* First case: device needs no address. */
1013 } else if (lladdr
) {
1014 /* The second case: if something is already cached
1015 and a new address is proposed:
1017 - if they are different, check override flag
1019 if ((old
& NUD_VALID
) &&
1020 !memcmp(lladdr
, neigh
->ha
, dev
->addr_len
))
1023 /* No address is supplied; if we know something,
1024 use it, otherwise discard the request.
1027 if (!(old
& NUD_VALID
))
1032 if (new & NUD_CONNECTED
)
1033 neigh
->confirmed
= jiffies
;
1034 neigh
->updated
= jiffies
;
1036 /* If entry was valid and address is not changed,
1037 do not change entry state, if new one is STALE.
1040 update_isrouter
= flags
& NEIGH_UPDATE_F_OVERRIDE_ISROUTER
;
1041 if (old
& NUD_VALID
) {
1042 if (lladdr
!= neigh
->ha
&& !(flags
& NEIGH_UPDATE_F_OVERRIDE
)) {
1043 update_isrouter
= 0;
1044 if ((flags
& NEIGH_UPDATE_F_WEAK_OVERRIDE
) &&
1045 (old
& NUD_CONNECTED
)) {
1051 if (lladdr
== neigh
->ha
&& new == NUD_STALE
&&
1052 ((flags
& NEIGH_UPDATE_F_WEAK_OVERRIDE
) ||
1053 (old
& NUD_CONNECTED
))
1060 neigh_del_timer(neigh
);
1061 if (new & NUD_IN_TIMER
)
1062 neigh_add_timer(neigh
, (jiffies
+
1063 ((new & NUD_REACHABLE
) ?
1064 neigh
->parms
->reachable_time
:
1066 neigh
->nud_state
= new;
1069 if (lladdr
!= neigh
->ha
) {
1070 memcpy(&neigh
->ha
, lladdr
, dev
->addr_len
);
1071 neigh_update_hhs(neigh
);
1072 if (!(new & NUD_CONNECTED
))
1073 neigh
->confirmed
= jiffies
-
1074 (neigh
->parms
->base_reachable_time
<< 1);
1079 if (new & NUD_CONNECTED
)
1080 neigh_connect(neigh
);
1082 neigh_suspect(neigh
);
1083 if (!(old
& NUD_VALID
)) {
1084 struct sk_buff
*skb
;
1086 /* Again: avoid dead loop if something went wrong */
1088 while (neigh
->nud_state
& NUD_VALID
&&
1089 (skb
= __skb_dequeue(&neigh
->arp_queue
)) != NULL
) {
1090 struct neighbour
*n1
= neigh
;
1091 write_unlock_bh(&neigh
->lock
);
1092 /* On shaper/eql skb->dst->neighbour != neigh :( */
1093 if (skb
->dst
&& skb
->dst
->neighbour
)
1094 n1
= skb
->dst
->neighbour
;
1096 write_lock_bh(&neigh
->lock
);
1098 skb_queue_purge(&neigh
->arp_queue
);
1101 if (update_isrouter
) {
1102 neigh
->flags
= (flags
& NEIGH_UPDATE_F_ISROUTER
) ?
1103 (neigh
->flags
| NTF_ROUTER
) :
1104 (neigh
->flags
& ~NTF_ROUTER
);
1106 write_unlock_bh(&neigh
->lock
);
1109 neigh_update_notify(neigh
);
1114 struct neighbour
*neigh_event_ns(struct neigh_table
*tbl
,
1115 u8
*lladdr
, void *saddr
,
1116 struct net_device
*dev
)
1118 struct neighbour
*neigh
= __neigh_lookup(tbl
, saddr
, dev
,
1119 lladdr
|| !dev
->addr_len
);
1121 neigh_update(neigh
, lladdr
, NUD_STALE
,
1122 NEIGH_UPDATE_F_OVERRIDE
);
1126 static void neigh_hh_init(struct neighbour
*n
, struct dst_entry
*dst
,
1129 struct hh_cache
*hh
;
1130 struct net_device
*dev
= dst
->dev
;
1132 for (hh
= n
->hh
; hh
; hh
= hh
->hh_next
)
1133 if (hh
->hh_type
== protocol
)
1136 if (!hh
&& (hh
= kzalloc(sizeof(*hh
), GFP_ATOMIC
)) != NULL
) {
1137 seqlock_init(&hh
->hh_lock
);
1138 hh
->hh_type
= protocol
;
1139 atomic_set(&hh
->hh_refcnt
, 0);
1142 if (dev
->header_ops
->cache(n
, hh
)) {
1146 atomic_inc(&hh
->hh_refcnt
);
1147 hh
->hh_next
= n
->hh
;
1149 if (n
->nud_state
& NUD_CONNECTED
)
1150 hh
->hh_output
= n
->ops
->hh_output
;
1152 hh
->hh_output
= n
->ops
->output
;
1156 atomic_inc(&hh
->hh_refcnt
);
1161 /* This function can be used in contexts, where only old dev_queue_xmit
1162 worked, f.e. if you want to override normal output path (eql, shaper),
1163 but resolution is not made yet.
1166 int neigh_compat_output(struct sk_buff
*skb
)
1168 struct net_device
*dev
= skb
->dev
;
1170 __skb_pull(skb
, skb_network_offset(skb
));
1172 if (dev_hard_header(skb
, dev
, ntohs(skb
->protocol
), NULL
, NULL
,
1174 dev
->header_ops
->rebuild(skb
))
1177 return dev_queue_xmit(skb
);
1180 /* Slow and careful. */
1182 int neigh_resolve_output(struct sk_buff
*skb
)
1184 struct dst_entry
*dst
= skb
->dst
;
1185 struct neighbour
*neigh
;
1188 if (!dst
|| !(neigh
= dst
->neighbour
))
1191 __skb_pull(skb
, skb_network_offset(skb
));
1193 if (!neigh_event_send(neigh
, skb
)) {
1195 struct net_device
*dev
= neigh
->dev
;
1196 if (dev
->header_ops
->cache
&& !dst
->hh
) {
1197 write_lock_bh(&neigh
->lock
);
1199 neigh_hh_init(neigh
, dst
, dst
->ops
->protocol
);
1200 err
= dev_hard_header(skb
, dev
, ntohs(skb
->protocol
),
1201 neigh
->ha
, NULL
, skb
->len
);
1202 write_unlock_bh(&neigh
->lock
);
1204 read_lock_bh(&neigh
->lock
);
1205 err
= dev_hard_header(skb
, dev
, ntohs(skb
->protocol
),
1206 neigh
->ha
, NULL
, skb
->len
);
1207 read_unlock_bh(&neigh
->lock
);
1210 rc
= neigh
->ops
->queue_xmit(skb
);
1217 NEIGH_PRINTK1("neigh_resolve_output: dst=%p neigh=%p\n",
1218 dst
, dst
? dst
->neighbour
: NULL
);
1225 /* As fast as possible without hh cache */
1227 int neigh_connected_output(struct sk_buff
*skb
)
1230 struct dst_entry
*dst
= skb
->dst
;
1231 struct neighbour
*neigh
= dst
->neighbour
;
1232 struct net_device
*dev
= neigh
->dev
;
1234 __skb_pull(skb
, skb_network_offset(skb
));
1236 read_lock_bh(&neigh
->lock
);
1237 err
= dev_hard_header(skb
, dev
, ntohs(skb
->protocol
),
1238 neigh
->ha
, NULL
, skb
->len
);
1239 read_unlock_bh(&neigh
->lock
);
1241 err
= neigh
->ops
->queue_xmit(skb
);
1249 static void neigh_proxy_process(unsigned long arg
)
1251 struct neigh_table
*tbl
= (struct neigh_table
*)arg
;
1252 long sched_next
= 0;
1253 unsigned long now
= jiffies
;
1254 struct sk_buff
*skb
;
1256 spin_lock(&tbl
->proxy_queue
.lock
);
1258 skb
= tbl
->proxy_queue
.next
;
1260 while (skb
!= (struct sk_buff
*)&tbl
->proxy_queue
) {
1261 struct sk_buff
*back
= skb
;
1262 long tdif
= NEIGH_CB(back
)->sched_next
- now
;
1266 struct net_device
*dev
= back
->dev
;
1267 __skb_unlink(back
, &tbl
->proxy_queue
);
1268 if (tbl
->proxy_redo
&& netif_running(dev
))
1269 tbl
->proxy_redo(back
);
1274 } else if (!sched_next
|| tdif
< sched_next
)
1277 del_timer(&tbl
->proxy_timer
);
1279 mod_timer(&tbl
->proxy_timer
, jiffies
+ sched_next
);
1280 spin_unlock(&tbl
->proxy_queue
.lock
);
1283 void pneigh_enqueue(struct neigh_table
*tbl
, struct neigh_parms
*p
,
1284 struct sk_buff
*skb
)
1286 unsigned long now
= jiffies
;
1287 unsigned long sched_next
= now
+ (net_random() % p
->proxy_delay
);
1289 if (tbl
->proxy_queue
.qlen
> p
->proxy_qlen
) {
1294 NEIGH_CB(skb
)->sched_next
= sched_next
;
1295 NEIGH_CB(skb
)->flags
|= LOCALLY_ENQUEUED
;
1297 spin_lock(&tbl
->proxy_queue
.lock
);
1298 if (del_timer(&tbl
->proxy_timer
)) {
1299 if (time_before(tbl
->proxy_timer
.expires
, sched_next
))
1300 sched_next
= tbl
->proxy_timer
.expires
;
1302 dst_release(skb
->dst
);
1305 __skb_queue_tail(&tbl
->proxy_queue
, skb
);
1306 mod_timer(&tbl
->proxy_timer
, sched_next
);
1307 spin_unlock(&tbl
->proxy_queue
.lock
);
1310 static inline struct neigh_parms
*lookup_neigh_params(struct neigh_table
*tbl
,
1311 struct net
*net
, int ifindex
)
1313 struct neigh_parms
*p
;
1315 for (p
= &tbl
->parms
; p
; p
= p
->next
) {
1318 if ((p
->dev
&& p
->dev
->ifindex
== ifindex
) ||
1319 (!p
->dev
&& !ifindex
))
1326 struct neigh_parms
*neigh_parms_alloc(struct net_device
*dev
,
1327 struct neigh_table
*tbl
)
1329 struct neigh_parms
*p
, *ref
;
1333 ref
= lookup_neigh_params(tbl
, net
, 0);
1337 p
= kmemdup(ref
, sizeof(*p
), GFP_KERNEL
);
1340 atomic_set(&p
->refcnt
, 1);
1341 INIT_RCU_HEAD(&p
->rcu_head
);
1343 neigh_rand_reach_time(p
->base_reachable_time
);
1345 if (dev
->neigh_setup
&& dev
->neigh_setup(dev
, p
)) {
1352 p
->net
= hold_net(net
);
1353 p
->sysctl_table
= NULL
;
1354 write_lock_bh(&tbl
->lock
);
1355 p
->next
= tbl
->parms
.next
;
1356 tbl
->parms
.next
= p
;
1357 write_unlock_bh(&tbl
->lock
);
1362 static void neigh_rcu_free_parms(struct rcu_head
*head
)
1364 struct neigh_parms
*parms
=
1365 container_of(head
, struct neigh_parms
, rcu_head
);
1367 neigh_parms_put(parms
);
1370 void neigh_parms_release(struct neigh_table
*tbl
, struct neigh_parms
*parms
)
1372 struct neigh_parms
**p
;
1374 if (!parms
|| parms
== &tbl
->parms
)
1376 write_lock_bh(&tbl
->lock
);
1377 for (p
= &tbl
->parms
.next
; *p
; p
= &(*p
)->next
) {
1381 write_unlock_bh(&tbl
->lock
);
1383 dev_put(parms
->dev
);
1384 call_rcu(&parms
->rcu_head
, neigh_rcu_free_parms
);
1388 write_unlock_bh(&tbl
->lock
);
1389 NEIGH_PRINTK1("neigh_parms_release: not found\n");
1392 static void neigh_parms_destroy(struct neigh_parms
*parms
)
1394 release_net(parms
->net
);
1398 static struct lock_class_key neigh_table_proxy_queue_class
;
1400 void neigh_table_init_no_netlink(struct neigh_table
*tbl
)
1402 unsigned long now
= jiffies
;
1403 unsigned long phsize
;
1405 tbl
->parms
.net
= &init_net
;
1406 atomic_set(&tbl
->parms
.refcnt
, 1);
1407 INIT_RCU_HEAD(&tbl
->parms
.rcu_head
);
1408 tbl
->parms
.reachable_time
=
1409 neigh_rand_reach_time(tbl
->parms
.base_reachable_time
);
1411 if (!tbl
->kmem_cachep
)
1413 kmem_cache_create(tbl
->id
, tbl
->entry_size
, 0,
1414 SLAB_HWCACHE_ALIGN
|SLAB_PANIC
,
1416 tbl
->stats
= alloc_percpu(struct neigh_statistics
);
1418 panic("cannot create neighbour cache statistics");
1420 #ifdef CONFIG_PROC_FS
1421 <<<<<<< HEAD
:net
/core
/neighbour
.c
1422 tbl
->pde
= create_proc_entry(tbl
->id
, 0, init_net
.proc_net_stat
);
1424 tbl
->pde
= proc_create(tbl
->id
, 0, init_net
.proc_net_stat
,
1425 &neigh_stat_seq_fops
);
1426 >>>>>>> 264e3e889d86e552b4191d69bb60f4f3b383135a
:net
/core
/neighbour
.c
1428 panic("cannot create neighbour proc dir entry");
1429 <<<<<<< HEAD
:net
/core
/neighbour
.c
1430 tbl
->pde
->proc_fops
= &neigh_stat_seq_fops
;
1432 >>>>>>> 264e3e889d86e552b4191d69bb60f4f3b383135a
:net
/core
/neighbour
.c
1433 tbl
->pde
->data
= tbl
;
1437 tbl
->hash_buckets
= neigh_hash_alloc(tbl
->hash_mask
+ 1);
1439 phsize
= (PNEIGH_HASHMASK
+ 1) * sizeof(struct pneigh_entry
*);
1440 tbl
->phash_buckets
= kzalloc(phsize
, GFP_KERNEL
);
1442 if (!tbl
->hash_buckets
|| !tbl
->phash_buckets
)
1443 panic("cannot allocate neighbour cache hashes");
1445 get_random_bytes(&tbl
->hash_rnd
, sizeof(tbl
->hash_rnd
));
1447 rwlock_init(&tbl
->lock
);
1448 setup_timer(&tbl
->gc_timer
, neigh_periodic_timer
, (unsigned long)tbl
);
1449 tbl
->gc_timer
.expires
= now
+ 1;
1450 add_timer(&tbl
->gc_timer
);
1452 setup_timer(&tbl
->proxy_timer
, neigh_proxy_process
, (unsigned long)tbl
);
1453 skb_queue_head_init_class(&tbl
->proxy_queue
,
1454 &neigh_table_proxy_queue_class
);
1456 tbl
->last_flush
= now
;
1457 tbl
->last_rand
= now
+ tbl
->parms
.reachable_time
* 20;
1460 void neigh_table_init(struct neigh_table
*tbl
)
1462 struct neigh_table
*tmp
;
1464 neigh_table_init_no_netlink(tbl
);
1465 write_lock(&neigh_tbl_lock
);
1466 for (tmp
= neigh_tables
; tmp
; tmp
= tmp
->next
) {
1467 if (tmp
->family
== tbl
->family
)
1470 tbl
->next
= neigh_tables
;
1472 write_unlock(&neigh_tbl_lock
);
1474 if (unlikely(tmp
)) {
1475 printk(KERN_ERR
"NEIGH: Registering multiple tables for "
1476 "family %d\n", tbl
->family
);
1481 int neigh_table_clear(struct neigh_table
*tbl
)
1483 struct neigh_table
**tp
;
1485 /* It is not clean... Fix it to unload IPv6 module safely */
1486 del_timer_sync(&tbl
->gc_timer
);
1487 del_timer_sync(&tbl
->proxy_timer
);
1488 pneigh_queue_purge(&tbl
->proxy_queue
);
1489 neigh_ifdown(tbl
, NULL
);
1490 if (atomic_read(&tbl
->entries
))
1491 printk(KERN_CRIT
"neighbour leakage\n");
1492 write_lock(&neigh_tbl_lock
);
1493 for (tp
= &neigh_tables
; *tp
; tp
= &(*tp
)->next
) {
1499 write_unlock(&neigh_tbl_lock
);
1501 neigh_hash_free(tbl
->hash_buckets
, tbl
->hash_mask
+ 1);
1502 tbl
->hash_buckets
= NULL
;
1504 kfree(tbl
->phash_buckets
);
1505 tbl
->phash_buckets
= NULL
;
1507 remove_proc_entry(tbl
->id
, init_net
.proc_net_stat
);
1509 free_percpu(tbl
->stats
);
1512 kmem_cache_destroy(tbl
->kmem_cachep
);
1513 tbl
->kmem_cachep
= NULL
;
1518 static int neigh_delete(struct sk_buff
*skb
, struct nlmsghdr
*nlh
, void *arg
)
1520 struct net
*net
= skb
->sk
->sk_net
;
1522 struct nlattr
*dst_attr
;
1523 struct neigh_table
*tbl
;
1524 struct net_device
*dev
= NULL
;
1527 if (nlmsg_len(nlh
) < sizeof(*ndm
))
1530 dst_attr
= nlmsg_find_attr(nlh
, sizeof(*ndm
), NDA_DST
);
1531 if (dst_attr
== NULL
)
1534 ndm
= nlmsg_data(nlh
);
1535 if (ndm
->ndm_ifindex
) {
1536 dev
= dev_get_by_index(net
, ndm
->ndm_ifindex
);
1543 read_lock(&neigh_tbl_lock
);
1544 for (tbl
= neigh_tables
; tbl
; tbl
= tbl
->next
) {
1545 struct neighbour
*neigh
;
1547 if (tbl
->family
!= ndm
->ndm_family
)
1549 read_unlock(&neigh_tbl_lock
);
1551 if (nla_len(dst_attr
) < tbl
->key_len
)
1554 if (ndm
->ndm_flags
& NTF_PROXY
) {
1555 err
= pneigh_delete(tbl
, net
, nla_data(dst_attr
), dev
);
1562 neigh
= neigh_lookup(tbl
, nla_data(dst_attr
), dev
);
1563 if (neigh
== NULL
) {
1568 err
= neigh_update(neigh
, NULL
, NUD_FAILED
,
1569 NEIGH_UPDATE_F_OVERRIDE
|
1570 NEIGH_UPDATE_F_ADMIN
);
1571 neigh_release(neigh
);
1574 read_unlock(&neigh_tbl_lock
);
1575 err
= -EAFNOSUPPORT
;
1584 static int neigh_add(struct sk_buff
*skb
, struct nlmsghdr
*nlh
, void *arg
)
1586 struct net
*net
= skb
->sk
->sk_net
;
1588 struct nlattr
*tb
[NDA_MAX
+1];
1589 struct neigh_table
*tbl
;
1590 struct net_device
*dev
= NULL
;
1593 err
= nlmsg_parse(nlh
, sizeof(*ndm
), tb
, NDA_MAX
, NULL
);
1598 if (tb
[NDA_DST
] == NULL
)
1601 ndm
= nlmsg_data(nlh
);
1602 if (ndm
->ndm_ifindex
) {
1603 dev
= dev_get_by_index(net
, ndm
->ndm_ifindex
);
1609 if (tb
[NDA_LLADDR
] && nla_len(tb
[NDA_LLADDR
]) < dev
->addr_len
)
1613 read_lock(&neigh_tbl_lock
);
1614 for (tbl
= neigh_tables
; tbl
; tbl
= tbl
->next
) {
1615 int flags
= NEIGH_UPDATE_F_ADMIN
| NEIGH_UPDATE_F_OVERRIDE
;
1616 struct neighbour
*neigh
;
1619 if (tbl
->family
!= ndm
->ndm_family
)
1621 read_unlock(&neigh_tbl_lock
);
1623 if (nla_len(tb
[NDA_DST
]) < tbl
->key_len
)
1625 dst
= nla_data(tb
[NDA_DST
]);
1626 lladdr
= tb
[NDA_LLADDR
] ? nla_data(tb
[NDA_LLADDR
]) : NULL
;
1628 if (ndm
->ndm_flags
& NTF_PROXY
) {
1629 struct pneigh_entry
*pn
;
1632 pn
= pneigh_lookup(tbl
, net
, dst
, dev
, 1);
1634 pn
->flags
= ndm
->ndm_flags
;
1643 neigh
= neigh_lookup(tbl
, dst
, dev
);
1644 if (neigh
== NULL
) {
1645 if (!(nlh
->nlmsg_flags
& NLM_F_CREATE
)) {
1650 neigh
= __neigh_lookup_errno(tbl
, dst
, dev
);
1651 if (IS_ERR(neigh
)) {
1652 err
= PTR_ERR(neigh
);
1656 if (nlh
->nlmsg_flags
& NLM_F_EXCL
) {
1658 neigh_release(neigh
);
1662 if (!(nlh
->nlmsg_flags
& NLM_F_REPLACE
))
1663 flags
&= ~NEIGH_UPDATE_F_OVERRIDE
;
1666 err
= neigh_update(neigh
, lladdr
, ndm
->ndm_state
, flags
);
1667 neigh_release(neigh
);
1671 read_unlock(&neigh_tbl_lock
);
1672 err
= -EAFNOSUPPORT
;
1681 static int neightbl_fill_parms(struct sk_buff
*skb
, struct neigh_parms
*parms
)
1683 struct nlattr
*nest
;
1685 nest
= nla_nest_start(skb
, NDTA_PARMS
);
1690 NLA_PUT_U32(skb
, NDTPA_IFINDEX
, parms
->dev
->ifindex
);
1692 NLA_PUT_U32(skb
, NDTPA_REFCNT
, atomic_read(&parms
->refcnt
));
1693 NLA_PUT_U32(skb
, NDTPA_QUEUE_LEN
, parms
->queue_len
);
1694 NLA_PUT_U32(skb
, NDTPA_PROXY_QLEN
, parms
->proxy_qlen
);
1695 NLA_PUT_U32(skb
, NDTPA_APP_PROBES
, parms
->app_probes
);
1696 NLA_PUT_U32(skb
, NDTPA_UCAST_PROBES
, parms
->ucast_probes
);
1697 NLA_PUT_U32(skb
, NDTPA_MCAST_PROBES
, parms
->mcast_probes
);
1698 NLA_PUT_MSECS(skb
, NDTPA_REACHABLE_TIME
, parms
->reachable_time
);
1699 NLA_PUT_MSECS(skb
, NDTPA_BASE_REACHABLE_TIME
,
1700 parms
->base_reachable_time
);
1701 NLA_PUT_MSECS(skb
, NDTPA_GC_STALETIME
, parms
->gc_staletime
);
1702 NLA_PUT_MSECS(skb
, NDTPA_DELAY_PROBE_TIME
, parms
->delay_probe_time
);
1703 NLA_PUT_MSECS(skb
, NDTPA_RETRANS_TIME
, parms
->retrans_time
);
1704 NLA_PUT_MSECS(skb
, NDTPA_ANYCAST_DELAY
, parms
->anycast_delay
);
1705 NLA_PUT_MSECS(skb
, NDTPA_PROXY_DELAY
, parms
->proxy_delay
);
1706 NLA_PUT_MSECS(skb
, NDTPA_LOCKTIME
, parms
->locktime
);
1708 return nla_nest_end(skb
, nest
);
1711 return nla_nest_cancel(skb
, nest
);
1714 static int neightbl_fill_info(struct sk_buff
*skb
, struct neigh_table
*tbl
,
1715 u32 pid
, u32 seq
, int type
, int flags
)
1717 struct nlmsghdr
*nlh
;
1718 struct ndtmsg
*ndtmsg
;
1720 nlh
= nlmsg_put(skb
, pid
, seq
, type
, sizeof(*ndtmsg
), flags
);
1724 ndtmsg
= nlmsg_data(nlh
);
1726 read_lock_bh(&tbl
->lock
);
1727 ndtmsg
->ndtm_family
= tbl
->family
;
1728 ndtmsg
->ndtm_pad1
= 0;
1729 ndtmsg
->ndtm_pad2
= 0;
1731 NLA_PUT_STRING(skb
, NDTA_NAME
, tbl
->id
);
1732 NLA_PUT_MSECS(skb
, NDTA_GC_INTERVAL
, tbl
->gc_interval
);
1733 NLA_PUT_U32(skb
, NDTA_THRESH1
, tbl
->gc_thresh1
);
1734 NLA_PUT_U32(skb
, NDTA_THRESH2
, tbl
->gc_thresh2
);
1735 NLA_PUT_U32(skb
, NDTA_THRESH3
, tbl
->gc_thresh3
);
1738 unsigned long now
= jiffies
;
1739 unsigned int flush_delta
= now
- tbl
->last_flush
;
1740 unsigned int rand_delta
= now
- tbl
->last_rand
;
1742 struct ndt_config ndc
= {
1743 .ndtc_key_len
= tbl
->key_len
,
1744 .ndtc_entry_size
= tbl
->entry_size
,
1745 .ndtc_entries
= atomic_read(&tbl
->entries
),
1746 .ndtc_last_flush
= jiffies_to_msecs(flush_delta
),
1747 .ndtc_last_rand
= jiffies_to_msecs(rand_delta
),
1748 .ndtc_hash_rnd
= tbl
->hash_rnd
,
1749 .ndtc_hash_mask
= tbl
->hash_mask
,
1750 .ndtc_hash_chain_gc
= tbl
->hash_chain_gc
,
1751 .ndtc_proxy_qlen
= tbl
->proxy_queue
.qlen
,
1754 NLA_PUT(skb
, NDTA_CONFIG
, sizeof(ndc
), &ndc
);
1759 struct ndt_stats ndst
;
1761 memset(&ndst
, 0, sizeof(ndst
));
1763 for_each_possible_cpu(cpu
) {
1764 struct neigh_statistics
*st
;
1766 st
= per_cpu_ptr(tbl
->stats
, cpu
);
1767 ndst
.ndts_allocs
+= st
->allocs
;
1768 ndst
.ndts_destroys
+= st
->destroys
;
1769 ndst
.ndts_hash_grows
+= st
->hash_grows
;
1770 ndst
.ndts_res_failed
+= st
->res_failed
;
1771 ndst
.ndts_lookups
+= st
->lookups
;
1772 ndst
.ndts_hits
+= st
->hits
;
1773 ndst
.ndts_rcv_probes_mcast
+= st
->rcv_probes_mcast
;
1774 ndst
.ndts_rcv_probes_ucast
+= st
->rcv_probes_ucast
;
1775 ndst
.ndts_periodic_gc_runs
+= st
->periodic_gc_runs
;
1776 ndst
.ndts_forced_gc_runs
+= st
->forced_gc_runs
;
1779 NLA_PUT(skb
, NDTA_STATS
, sizeof(ndst
), &ndst
);
1782 BUG_ON(tbl
->parms
.dev
);
1783 if (neightbl_fill_parms(skb
, &tbl
->parms
) < 0)
1784 goto nla_put_failure
;
1786 read_unlock_bh(&tbl
->lock
);
1787 return nlmsg_end(skb
, nlh
);
1790 read_unlock_bh(&tbl
->lock
);
1791 nlmsg_cancel(skb
, nlh
);
1795 static int neightbl_fill_param_info(struct sk_buff
*skb
,
1796 struct neigh_table
*tbl
,
1797 struct neigh_parms
*parms
,
1798 u32 pid
, u32 seq
, int type
,
1801 struct ndtmsg
*ndtmsg
;
1802 struct nlmsghdr
*nlh
;
1804 nlh
= nlmsg_put(skb
, pid
, seq
, type
, sizeof(*ndtmsg
), flags
);
1808 ndtmsg
= nlmsg_data(nlh
);
1810 read_lock_bh(&tbl
->lock
);
1811 ndtmsg
->ndtm_family
= tbl
->family
;
1812 ndtmsg
->ndtm_pad1
= 0;
1813 ndtmsg
->ndtm_pad2
= 0;
1815 if (nla_put_string(skb
, NDTA_NAME
, tbl
->id
) < 0 ||
1816 neightbl_fill_parms(skb
, parms
) < 0)
1819 read_unlock_bh(&tbl
->lock
);
1820 return nlmsg_end(skb
, nlh
);
1822 read_unlock_bh(&tbl
->lock
);
1823 nlmsg_cancel(skb
, nlh
);
1827 static const struct nla_policy nl_neightbl_policy
[NDTA_MAX
+1] = {
1828 [NDTA_NAME
] = { .type
= NLA_STRING
},
1829 [NDTA_THRESH1
] = { .type
= NLA_U32
},
1830 [NDTA_THRESH2
] = { .type
= NLA_U32
},
1831 [NDTA_THRESH3
] = { .type
= NLA_U32
},
1832 [NDTA_GC_INTERVAL
] = { .type
= NLA_U64
},
1833 [NDTA_PARMS
] = { .type
= NLA_NESTED
},
1836 static const struct nla_policy nl_ntbl_parm_policy
[NDTPA_MAX
+1] = {
1837 [NDTPA_IFINDEX
] = { .type
= NLA_U32
},
1838 [NDTPA_QUEUE_LEN
] = { .type
= NLA_U32
},
1839 [NDTPA_PROXY_QLEN
] = { .type
= NLA_U32
},
1840 [NDTPA_APP_PROBES
] = { .type
= NLA_U32
},
1841 [NDTPA_UCAST_PROBES
] = { .type
= NLA_U32
},
1842 [NDTPA_MCAST_PROBES
] = { .type
= NLA_U32
},
1843 [NDTPA_BASE_REACHABLE_TIME
] = { .type
= NLA_U64
},
1844 [NDTPA_GC_STALETIME
] = { .type
= NLA_U64
},
1845 [NDTPA_DELAY_PROBE_TIME
] = { .type
= NLA_U64
},
1846 [NDTPA_RETRANS_TIME
] = { .type
= NLA_U64
},
1847 [NDTPA_ANYCAST_DELAY
] = { .type
= NLA_U64
},
1848 [NDTPA_PROXY_DELAY
] = { .type
= NLA_U64
},
1849 [NDTPA_LOCKTIME
] = { .type
= NLA_U64
},
1852 static int neightbl_set(struct sk_buff
*skb
, struct nlmsghdr
*nlh
, void *arg
)
1854 struct net
*net
= skb
->sk
->sk_net
;
1855 struct neigh_table
*tbl
;
1856 struct ndtmsg
*ndtmsg
;
1857 struct nlattr
*tb
[NDTA_MAX
+1];
1860 err
= nlmsg_parse(nlh
, sizeof(*ndtmsg
), tb
, NDTA_MAX
,
1861 nl_neightbl_policy
);
1865 if (tb
[NDTA_NAME
] == NULL
) {
1870 ndtmsg
= nlmsg_data(nlh
);
1871 read_lock(&neigh_tbl_lock
);
1872 for (tbl
= neigh_tables
; tbl
; tbl
= tbl
->next
) {
1873 if (ndtmsg
->ndtm_family
&& tbl
->family
!= ndtmsg
->ndtm_family
)
1876 if (nla_strcmp(tb
[NDTA_NAME
], tbl
->id
) == 0)
1886 * We acquire tbl->lock to be nice to the periodic timers and
1887 * make sure they always see a consistent set of values.
1889 write_lock_bh(&tbl
->lock
);
1891 if (tb
[NDTA_PARMS
]) {
1892 struct nlattr
*tbp
[NDTPA_MAX
+1];
1893 struct neigh_parms
*p
;
1896 err
= nla_parse_nested(tbp
, NDTPA_MAX
, tb
[NDTA_PARMS
],
1897 nl_ntbl_parm_policy
);
1899 goto errout_tbl_lock
;
1901 if (tbp
[NDTPA_IFINDEX
])
1902 ifindex
= nla_get_u32(tbp
[NDTPA_IFINDEX
]);
1904 p
= lookup_neigh_params(tbl
, net
, ifindex
);
1907 goto errout_tbl_lock
;
1910 for (i
= 1; i
<= NDTPA_MAX
; i
++) {
1915 case NDTPA_QUEUE_LEN
:
1916 p
->queue_len
= nla_get_u32(tbp
[i
]);
1918 case NDTPA_PROXY_QLEN
:
1919 p
->proxy_qlen
= nla_get_u32(tbp
[i
]);
1921 case NDTPA_APP_PROBES
:
1922 p
->app_probes
= nla_get_u32(tbp
[i
]);
1924 case NDTPA_UCAST_PROBES
:
1925 p
->ucast_probes
= nla_get_u32(tbp
[i
]);
1927 case NDTPA_MCAST_PROBES
:
1928 p
->mcast_probes
= nla_get_u32(tbp
[i
]);
1930 case NDTPA_BASE_REACHABLE_TIME
:
1931 p
->base_reachable_time
= nla_get_msecs(tbp
[i
]);
1933 case NDTPA_GC_STALETIME
:
1934 p
->gc_staletime
= nla_get_msecs(tbp
[i
]);
1936 case NDTPA_DELAY_PROBE_TIME
:
1937 p
->delay_probe_time
= nla_get_msecs(tbp
[i
]);
1939 case NDTPA_RETRANS_TIME
:
1940 p
->retrans_time
= nla_get_msecs(tbp
[i
]);
1942 case NDTPA_ANYCAST_DELAY
:
1943 p
->anycast_delay
= nla_get_msecs(tbp
[i
]);
1945 case NDTPA_PROXY_DELAY
:
1946 p
->proxy_delay
= nla_get_msecs(tbp
[i
]);
1948 case NDTPA_LOCKTIME
:
1949 p
->locktime
= nla_get_msecs(tbp
[i
]);
1955 if (tb
[NDTA_THRESH1
])
1956 tbl
->gc_thresh1
= nla_get_u32(tb
[NDTA_THRESH1
]);
1958 if (tb
[NDTA_THRESH2
])
1959 tbl
->gc_thresh2
= nla_get_u32(tb
[NDTA_THRESH2
]);
1961 if (tb
[NDTA_THRESH3
])
1962 tbl
->gc_thresh3
= nla_get_u32(tb
[NDTA_THRESH3
]);
1964 if (tb
[NDTA_GC_INTERVAL
])
1965 tbl
->gc_interval
= nla_get_msecs(tb
[NDTA_GC_INTERVAL
]);
1970 write_unlock_bh(&tbl
->lock
);
1972 read_unlock(&neigh_tbl_lock
);
1977 static int neightbl_dump_info(struct sk_buff
*skb
, struct netlink_callback
*cb
)
1979 struct net
*net
= skb
->sk
->sk_net
;
1980 int family
, tidx
, nidx
= 0;
1981 int tbl_skip
= cb
->args
[0];
1982 int neigh_skip
= cb
->args
[1];
1983 struct neigh_table
*tbl
;
1985 family
= ((struct rtgenmsg
*) nlmsg_data(cb
->nlh
))->rtgen_family
;
1987 read_lock(&neigh_tbl_lock
);
1988 for (tbl
= neigh_tables
, tidx
= 0; tbl
; tbl
= tbl
->next
, tidx
++) {
1989 struct neigh_parms
*p
;
1991 if (tidx
< tbl_skip
|| (family
&& tbl
->family
!= family
))
1994 if (neightbl_fill_info(skb
, tbl
, NETLINK_CB(cb
->skb
).pid
,
1995 cb
->nlh
->nlmsg_seq
, RTM_NEWNEIGHTBL
,
1999 for (nidx
= 0, p
= tbl
->parms
.next
; p
; p
= p
->next
) {
2003 if (nidx
++ < neigh_skip
)
2006 if (neightbl_fill_param_info(skb
, tbl
, p
,
2007 NETLINK_CB(cb
->skb
).pid
,
2017 read_unlock(&neigh_tbl_lock
);
2024 static int neigh_fill_info(struct sk_buff
*skb
, struct neighbour
*neigh
,
2025 u32 pid
, u32 seq
, int type
, unsigned int flags
)
2027 unsigned long now
= jiffies
;
2028 struct nda_cacheinfo ci
;
2029 struct nlmsghdr
*nlh
;
2032 nlh
= nlmsg_put(skb
, pid
, seq
, type
, sizeof(*ndm
), flags
);
2036 ndm
= nlmsg_data(nlh
);
2037 ndm
->ndm_family
= neigh
->ops
->family
;
2040 ndm
->ndm_flags
= neigh
->flags
;
2041 ndm
->ndm_type
= neigh
->type
;
2042 ndm
->ndm_ifindex
= neigh
->dev
->ifindex
;
2044 NLA_PUT(skb
, NDA_DST
, neigh
->tbl
->key_len
, neigh
->primary_key
);
2046 read_lock_bh(&neigh
->lock
);
2047 ndm
->ndm_state
= neigh
->nud_state
;
2048 if ((neigh
->nud_state
& NUD_VALID
) &&
2049 nla_put(skb
, NDA_LLADDR
, neigh
->dev
->addr_len
, neigh
->ha
) < 0) {
2050 read_unlock_bh(&neigh
->lock
);
2051 goto nla_put_failure
;
2054 ci
.ndm_used
= now
- neigh
->used
;
2055 ci
.ndm_confirmed
= now
- neigh
->confirmed
;
2056 ci
.ndm_updated
= now
- neigh
->updated
;
2057 ci
.ndm_refcnt
= atomic_read(&neigh
->refcnt
) - 1;
2058 read_unlock_bh(&neigh
->lock
);
2060 NLA_PUT_U32(skb
, NDA_PROBES
, atomic_read(&neigh
->probes
));
2061 NLA_PUT(skb
, NDA_CACHEINFO
, sizeof(ci
), &ci
);
2063 return nlmsg_end(skb
, nlh
);
2066 nlmsg_cancel(skb
, nlh
);
2070 static void neigh_update_notify(struct neighbour
*neigh
)
2072 call_netevent_notifiers(NETEVENT_NEIGH_UPDATE
, neigh
);
2073 __neigh_notify(neigh
, RTM_NEWNEIGH
, 0);
2076 static int neigh_dump_table(struct neigh_table
*tbl
, struct sk_buff
*skb
,
2077 struct netlink_callback
*cb
)
2079 struct net
* net
= skb
->sk
->sk_net
;
2080 struct neighbour
*n
;
2081 int rc
, h
, s_h
= cb
->args
[1];
2082 int idx
, s_idx
= idx
= cb
->args
[2];
2084 read_lock_bh(&tbl
->lock
);
2085 for (h
= 0; h
<= tbl
->hash_mask
; h
++) {
2090 for (n
= tbl
->hash_buckets
[h
], idx
= 0; n
; n
= n
->next
) {
2092 if (n
->dev
->nd_net
!= net
)
2097 if (neigh_fill_info(skb
, n
, NETLINK_CB(cb
->skb
).pid
,
2100 NLM_F_MULTI
) <= 0) {
2101 read_unlock_bh(&tbl
->lock
);
2107 read_unlock_bh(&tbl
->lock
);
2115 static int neigh_dump_info(struct sk_buff
*skb
, struct netlink_callback
*cb
)
2117 struct neigh_table
*tbl
;
2120 read_lock(&neigh_tbl_lock
);
2121 family
= ((struct rtgenmsg
*) nlmsg_data(cb
->nlh
))->rtgen_family
;
2124 for (tbl
= neigh_tables
, t
= 0; tbl
; tbl
= tbl
->next
, t
++) {
2125 if (t
< s_t
|| (family
&& tbl
->family
!= family
))
2128 memset(&cb
->args
[1], 0, sizeof(cb
->args
) -
2129 sizeof(cb
->args
[0]));
2130 if (neigh_dump_table(tbl
, skb
, cb
) < 0)
2133 read_unlock(&neigh_tbl_lock
);
2139 void neigh_for_each(struct neigh_table
*tbl
, void (*cb
)(struct neighbour
*, void *), void *cookie
)
2143 read_lock_bh(&tbl
->lock
);
2144 for (chain
= 0; chain
<= tbl
->hash_mask
; chain
++) {
2145 struct neighbour
*n
;
2147 for (n
= tbl
->hash_buckets
[chain
]; n
; n
= n
->next
)
2150 read_unlock_bh(&tbl
->lock
);
2152 EXPORT_SYMBOL(neigh_for_each
);
2154 /* The tbl->lock must be held as a writer and BH disabled. */
2155 void __neigh_for_each_release(struct neigh_table
*tbl
,
2156 int (*cb
)(struct neighbour
*))
2160 for (chain
= 0; chain
<= tbl
->hash_mask
; chain
++) {
2161 struct neighbour
*n
, **np
;
2163 np
= &tbl
->hash_buckets
[chain
];
2164 while ((n
= *np
) != NULL
) {
2167 write_lock(&n
->lock
);
2174 write_unlock(&n
->lock
);
2176 neigh_cleanup_and_release(n
);
2180 EXPORT_SYMBOL(__neigh_for_each_release
);
2182 #ifdef CONFIG_PROC_FS
2184 static struct neighbour
*neigh_get_first(struct seq_file
*seq
)
2186 struct neigh_seq_state
*state
= seq
->private;
2187 struct net
*net
= state
->p
.net
;
2188 struct neigh_table
*tbl
= state
->tbl
;
2189 struct neighbour
*n
= NULL
;
2190 int bucket
= state
->bucket
;
2192 state
->flags
&= ~NEIGH_SEQ_IS_PNEIGH
;
2193 for (bucket
= 0; bucket
<= tbl
->hash_mask
; bucket
++) {
2194 n
= tbl
->hash_buckets
[bucket
];
2197 if (n
->dev
->nd_net
!= net
)
2199 if (state
->neigh_sub_iter
) {
2203 v
= state
->neigh_sub_iter(state
, n
, &fakep
);
2207 if (!(state
->flags
& NEIGH_SEQ_SKIP_NOARP
))
2209 if (n
->nud_state
& ~NUD_NOARP
)
2218 state
->bucket
= bucket
;
2223 static struct neighbour
*neigh_get_next(struct seq_file
*seq
,
2224 struct neighbour
*n
,
2227 struct neigh_seq_state
*state
= seq
->private;
2228 struct net
*net
= state
->p
.net
;
2229 struct neigh_table
*tbl
= state
->tbl
;
2231 if (state
->neigh_sub_iter
) {
2232 void *v
= state
->neigh_sub_iter(state
, n
, pos
);
2240 if (n
->dev
->nd_net
!= net
)
2242 if (state
->neigh_sub_iter
) {
2243 void *v
= state
->neigh_sub_iter(state
, n
, pos
);
2248 if (!(state
->flags
& NEIGH_SEQ_SKIP_NOARP
))
2251 if (n
->nud_state
& ~NUD_NOARP
)
2260 if (++state
->bucket
> tbl
->hash_mask
)
2263 n
= tbl
->hash_buckets
[state
->bucket
];
2271 static struct neighbour
*neigh_get_idx(struct seq_file
*seq
, loff_t
*pos
)
2273 struct neighbour
*n
= neigh_get_first(seq
);
2277 n
= neigh_get_next(seq
, n
, pos
);
2282 return *pos
? NULL
: n
;
2285 static struct pneigh_entry
*pneigh_get_first(struct seq_file
*seq
)
2287 struct neigh_seq_state
*state
= seq
->private;
2288 struct net
* net
= state
->p
.net
;
2289 struct neigh_table
*tbl
= state
->tbl
;
2290 struct pneigh_entry
*pn
= NULL
;
2291 int bucket
= state
->bucket
;
2293 state
->flags
|= NEIGH_SEQ_IS_PNEIGH
;
2294 for (bucket
= 0; bucket
<= PNEIGH_HASHMASK
; bucket
++) {
2295 pn
= tbl
->phash_buckets
[bucket
];
2296 while (pn
&& (pn
->net
!= net
))
2301 state
->bucket
= bucket
;
2306 static struct pneigh_entry
*pneigh_get_next(struct seq_file
*seq
,
2307 struct pneigh_entry
*pn
,
2310 struct neigh_seq_state
*state
= seq
->private;
2311 struct net
* net
= state
->p
.net
;
2312 struct neigh_table
*tbl
= state
->tbl
;
2316 if (++state
->bucket
> PNEIGH_HASHMASK
)
2318 pn
= tbl
->phash_buckets
[state
->bucket
];
2319 while (pn
&& (pn
->net
!= net
))
2331 static struct pneigh_entry
*pneigh_get_idx(struct seq_file
*seq
, loff_t
*pos
)
2333 struct pneigh_entry
*pn
= pneigh_get_first(seq
);
2337 pn
= pneigh_get_next(seq
, pn
, pos
);
2342 return *pos
? NULL
: pn
;
2345 static void *neigh_get_idx_any(struct seq_file
*seq
, loff_t
*pos
)
2347 struct neigh_seq_state
*state
= seq
->private;
2350 rc
= neigh_get_idx(seq
, pos
);
2351 if (!rc
&& !(state
->flags
& NEIGH_SEQ_NEIGH_ONLY
))
2352 rc
= pneigh_get_idx(seq
, pos
);
2357 void *neigh_seq_start(struct seq_file
*seq
, loff_t
*pos
, struct neigh_table
*tbl
, unsigned int neigh_seq_flags
)
2358 __acquires(tbl
->lock
)
2360 struct neigh_seq_state
*state
= seq
->private;
2361 loff_t pos_minus_one
;
2365 state
->flags
= (neigh_seq_flags
& ~NEIGH_SEQ_IS_PNEIGH
);
2367 read_lock_bh(&tbl
->lock
);
2369 pos_minus_one
= *pos
- 1;
2370 return *pos
? neigh_get_idx_any(seq
, &pos_minus_one
) : SEQ_START_TOKEN
;
2372 EXPORT_SYMBOL(neigh_seq_start
);
2374 void *neigh_seq_next(struct seq_file
*seq
, void *v
, loff_t
*pos
)
2376 struct neigh_seq_state
*state
;
2379 if (v
== SEQ_START_TOKEN
) {
2380 rc
= neigh_get_idx(seq
, pos
);
2384 state
= seq
->private;
2385 if (!(state
->flags
& NEIGH_SEQ_IS_PNEIGH
)) {
2386 rc
= neigh_get_next(seq
, v
, NULL
);
2389 if (!(state
->flags
& NEIGH_SEQ_NEIGH_ONLY
))
2390 rc
= pneigh_get_first(seq
);
2392 BUG_ON(state
->flags
& NEIGH_SEQ_NEIGH_ONLY
);
2393 rc
= pneigh_get_next(seq
, v
, NULL
);
2399 EXPORT_SYMBOL(neigh_seq_next
);
2401 void neigh_seq_stop(struct seq_file
*seq
, void *v
)
2402 __releases(tbl
->lock
)
2404 struct neigh_seq_state
*state
= seq
->private;
2405 struct neigh_table
*tbl
= state
->tbl
;
2407 read_unlock_bh(&tbl
->lock
);
2409 EXPORT_SYMBOL(neigh_seq_stop
);
2411 /* statistics via seq_file */
2413 static void *neigh_stat_seq_start(struct seq_file
*seq
, loff_t
*pos
)
2415 struct proc_dir_entry
*pde
= seq
->private;
2416 struct neigh_table
*tbl
= pde
->data
;
2420 return SEQ_START_TOKEN
;
2422 for (cpu
= *pos
-1; cpu
< NR_CPUS
; ++cpu
) {
2423 if (!cpu_possible(cpu
))
2426 return per_cpu_ptr(tbl
->stats
, cpu
);
2431 static void *neigh_stat_seq_next(struct seq_file
*seq
, void *v
, loff_t
*pos
)
2433 struct proc_dir_entry
*pde
= seq
->private;
2434 struct neigh_table
*tbl
= pde
->data
;
2437 for (cpu
= *pos
; cpu
< NR_CPUS
; ++cpu
) {
2438 if (!cpu_possible(cpu
))
2441 return per_cpu_ptr(tbl
->stats
, cpu
);
2446 static void neigh_stat_seq_stop(struct seq_file
*seq
, void *v
)
2451 static int neigh_stat_seq_show(struct seq_file
*seq
, void *v
)
2453 struct proc_dir_entry
*pde
= seq
->private;
2454 struct neigh_table
*tbl
= pde
->data
;
2455 struct neigh_statistics
*st
= v
;
2457 if (v
== SEQ_START_TOKEN
) {
2458 seq_printf(seq
, "entries allocs destroys hash_grows lookups hits res_failed rcv_probes_mcast rcv_probes_ucast periodic_gc_runs forced_gc_runs\n");
2462 seq_printf(seq
, "%08x %08lx %08lx %08lx %08lx %08lx %08lx "
2463 "%08lx %08lx %08lx %08lx\n",
2464 atomic_read(&tbl
->entries
),
2475 st
->rcv_probes_mcast
,
2476 st
->rcv_probes_ucast
,
2478 st
->periodic_gc_runs
,
2485 static const struct seq_operations neigh_stat_seq_ops
= {
2486 .start
= neigh_stat_seq_start
,
2487 .next
= neigh_stat_seq_next
,
2488 .stop
= neigh_stat_seq_stop
,
2489 .show
= neigh_stat_seq_show
,
2492 static int neigh_stat_seq_open(struct inode
*inode
, struct file
*file
)
2494 int ret
= seq_open(file
, &neigh_stat_seq_ops
);
2497 struct seq_file
*sf
= file
->private_data
;
2498 sf
->private = PDE(inode
);
2503 static const struct file_operations neigh_stat_seq_fops
= {
2504 .owner
= THIS_MODULE
,
2505 .open
= neigh_stat_seq_open
,
2507 .llseek
= seq_lseek
,
2508 .release
= seq_release
,
2511 #endif /* CONFIG_PROC_FS */
2513 static inline size_t neigh_nlmsg_size(void)
2515 return NLMSG_ALIGN(sizeof(struct ndmsg
))
2516 + nla_total_size(MAX_ADDR_LEN
) /* NDA_DST */
2517 + nla_total_size(MAX_ADDR_LEN
) /* NDA_LLADDR */
2518 + nla_total_size(sizeof(struct nda_cacheinfo
))
2519 + nla_total_size(4); /* NDA_PROBES */
2522 static void __neigh_notify(struct neighbour
*n
, int type
, int flags
)
2524 struct net
*net
= n
->dev
->nd_net
;
2525 struct sk_buff
*skb
;
2528 skb
= nlmsg_new(neigh_nlmsg_size(), GFP_ATOMIC
);
2532 err
= neigh_fill_info(skb
, n
, 0, 0, type
, flags
);
2534 /* -EMSGSIZE implies BUG in neigh_nlmsg_size() */
2535 WARN_ON(err
== -EMSGSIZE
);
2539 err
= rtnl_notify(skb
, net
, 0, RTNLGRP_NEIGH
, NULL
, GFP_ATOMIC
);
2542 rtnl_set_sk_err(net
, RTNLGRP_NEIGH
, err
);
2546 void neigh_app_ns(struct neighbour
*n
)
2548 __neigh_notify(n
, RTM_GETNEIGH
, NLM_F_REQUEST
);
2550 #endif /* CONFIG_ARPD */
2552 #ifdef CONFIG_SYSCTL
2554 static struct neigh_sysctl_table
{
2555 struct ctl_table_header
*sysctl_header
;
2556 struct ctl_table neigh_vars
[__NET_NEIGH_MAX
];
2558 } neigh_sysctl_template __read_mostly
= {
2561 .ctl_name
= NET_NEIGH_MCAST_SOLICIT
,
2562 .procname
= "mcast_solicit",
2563 .maxlen
= sizeof(int),
2565 .proc_handler
= &proc_dointvec
,
2568 .ctl_name
= NET_NEIGH_UCAST_SOLICIT
,
2569 .procname
= "ucast_solicit",
2570 .maxlen
= sizeof(int),
2572 .proc_handler
= &proc_dointvec
,
2575 .ctl_name
= NET_NEIGH_APP_SOLICIT
,
2576 .procname
= "app_solicit",
2577 .maxlen
= sizeof(int),
2579 .proc_handler
= &proc_dointvec
,
2582 .procname
= "retrans_time",
2583 .maxlen
= sizeof(int),
2585 .proc_handler
= &proc_dointvec_userhz_jiffies
,
2588 .ctl_name
= NET_NEIGH_REACHABLE_TIME
,
2589 .procname
= "base_reachable_time",
2590 .maxlen
= sizeof(int),
2592 .proc_handler
= &proc_dointvec_jiffies
,
2593 .strategy
= &sysctl_jiffies
,
2596 .ctl_name
= NET_NEIGH_DELAY_PROBE_TIME
,
2597 .procname
= "delay_first_probe_time",
2598 .maxlen
= sizeof(int),
2600 .proc_handler
= &proc_dointvec_jiffies
,
2601 .strategy
= &sysctl_jiffies
,
2604 .ctl_name
= NET_NEIGH_GC_STALE_TIME
,
2605 .procname
= "gc_stale_time",
2606 .maxlen
= sizeof(int),
2608 .proc_handler
= &proc_dointvec_jiffies
,
2609 .strategy
= &sysctl_jiffies
,
2612 .ctl_name
= NET_NEIGH_UNRES_QLEN
,
2613 .procname
= "unres_qlen",
2614 .maxlen
= sizeof(int),
2616 .proc_handler
= &proc_dointvec
,
2619 .ctl_name
= NET_NEIGH_PROXY_QLEN
,
2620 .procname
= "proxy_qlen",
2621 .maxlen
= sizeof(int),
2623 .proc_handler
= &proc_dointvec
,
2626 .procname
= "anycast_delay",
2627 .maxlen
= sizeof(int),
2629 .proc_handler
= &proc_dointvec_userhz_jiffies
,
2632 .procname
= "proxy_delay",
2633 .maxlen
= sizeof(int),
2635 .proc_handler
= &proc_dointvec_userhz_jiffies
,
2638 .procname
= "locktime",
2639 .maxlen
= sizeof(int),
2641 .proc_handler
= &proc_dointvec_userhz_jiffies
,
2644 .ctl_name
= NET_NEIGH_RETRANS_TIME_MS
,
2645 .procname
= "retrans_time_ms",
2646 .maxlen
= sizeof(int),
2648 .proc_handler
= &proc_dointvec_ms_jiffies
,
2649 .strategy
= &sysctl_ms_jiffies
,
2652 .ctl_name
= NET_NEIGH_REACHABLE_TIME_MS
,
2653 .procname
= "base_reachable_time_ms",
2654 .maxlen
= sizeof(int),
2656 .proc_handler
= &proc_dointvec_ms_jiffies
,
2657 .strategy
= &sysctl_ms_jiffies
,
2660 .ctl_name
= NET_NEIGH_GC_INTERVAL
,
2661 .procname
= "gc_interval",
2662 .maxlen
= sizeof(int),
2664 .proc_handler
= &proc_dointvec_jiffies
,
2665 .strategy
= &sysctl_jiffies
,
2668 .ctl_name
= NET_NEIGH_GC_THRESH1
,
2669 .procname
= "gc_thresh1",
2670 .maxlen
= sizeof(int),
2672 .proc_handler
= &proc_dointvec
,
2675 .ctl_name
= NET_NEIGH_GC_THRESH2
,
2676 .procname
= "gc_thresh2",
2677 .maxlen
= sizeof(int),
2679 .proc_handler
= &proc_dointvec
,
2682 .ctl_name
= NET_NEIGH_GC_THRESH3
,
2683 .procname
= "gc_thresh3",
2684 .maxlen
= sizeof(int),
2686 .proc_handler
= &proc_dointvec
,
2692 int neigh_sysctl_register(struct net_device
*dev
, struct neigh_parms
*p
,
2693 int p_id
, int pdev_id
, char *p_name
,
2694 proc_handler
*handler
, ctl_handler
*strategy
)
2696 struct neigh_sysctl_table
*t
;
2697 const char *dev_name_source
= NULL
;
2699 #define NEIGH_CTL_PATH_ROOT 0
2700 #define NEIGH_CTL_PATH_PROTO 1
2701 #define NEIGH_CTL_PATH_NEIGH 2
2702 #define NEIGH_CTL_PATH_DEV 3
2704 struct ctl_path neigh_path
[] = {
2705 { .procname
= "net", .ctl_name
= CTL_NET
, },
2706 { .procname
= "proto", .ctl_name
= 0, },
2707 { .procname
= "neigh", .ctl_name
= 0, },
2708 { .procname
= "default", .ctl_name
= NET_PROTO_CONF_DEFAULT
, },
2712 t
= kmemdup(&neigh_sysctl_template
, sizeof(*t
), GFP_KERNEL
);
2716 t
->neigh_vars
[0].data
= &p
->mcast_probes
;
2717 t
->neigh_vars
[1].data
= &p
->ucast_probes
;
2718 t
->neigh_vars
[2].data
= &p
->app_probes
;
2719 t
->neigh_vars
[3].data
= &p
->retrans_time
;
2720 t
->neigh_vars
[4].data
= &p
->base_reachable_time
;
2721 t
->neigh_vars
[5].data
= &p
->delay_probe_time
;
2722 t
->neigh_vars
[6].data
= &p
->gc_staletime
;
2723 t
->neigh_vars
[7].data
= &p
->queue_len
;
2724 t
->neigh_vars
[8].data
= &p
->proxy_qlen
;
2725 t
->neigh_vars
[9].data
= &p
->anycast_delay
;
2726 t
->neigh_vars
[10].data
= &p
->proxy_delay
;
2727 t
->neigh_vars
[11].data
= &p
->locktime
;
2728 t
->neigh_vars
[12].data
= &p
->retrans_time
;
2729 t
->neigh_vars
[13].data
= &p
->base_reachable_time
;
2732 dev_name_source
= dev
->name
;
2733 neigh_path
[NEIGH_CTL_PATH_DEV
].ctl_name
= dev
->ifindex
;
2734 /* Terminate the table early */
2735 memset(&t
->neigh_vars
[14], 0, sizeof(t
->neigh_vars
[14]));
2737 dev_name_source
= neigh_path
[NEIGH_CTL_PATH_DEV
].procname
;
2738 t
->neigh_vars
[14].data
= (int *)(p
+ 1);
2739 t
->neigh_vars
[15].data
= (int *)(p
+ 1) + 1;
2740 t
->neigh_vars
[16].data
= (int *)(p
+ 1) + 2;
2741 t
->neigh_vars
[17].data
= (int *)(p
+ 1) + 3;
2745 if (handler
|| strategy
) {
2747 t
->neigh_vars
[3].proc_handler
= handler
;
2748 t
->neigh_vars
[3].strategy
= strategy
;
2749 t
->neigh_vars
[3].extra1
= dev
;
2751 t
->neigh_vars
[3].ctl_name
= CTL_UNNUMBERED
;
2753 t
->neigh_vars
[4].proc_handler
= handler
;
2754 t
->neigh_vars
[4].strategy
= strategy
;
2755 t
->neigh_vars
[4].extra1
= dev
;
2757 t
->neigh_vars
[4].ctl_name
= CTL_UNNUMBERED
;
2758 /* RetransTime (in milliseconds)*/
2759 t
->neigh_vars
[12].proc_handler
= handler
;
2760 t
->neigh_vars
[12].strategy
= strategy
;
2761 t
->neigh_vars
[12].extra1
= dev
;
2763 t
->neigh_vars
[12].ctl_name
= CTL_UNNUMBERED
;
2764 /* ReachableTime (in milliseconds) */
2765 t
->neigh_vars
[13].proc_handler
= handler
;
2766 t
->neigh_vars
[13].strategy
= strategy
;
2767 t
->neigh_vars
[13].extra1
= dev
;
2769 t
->neigh_vars
[13].ctl_name
= CTL_UNNUMBERED
;
2772 t
->dev_name
= kstrdup(dev_name_source
, GFP_KERNEL
);
2776 neigh_path
[NEIGH_CTL_PATH_DEV
].procname
= t
->dev_name
;
2777 neigh_path
[NEIGH_CTL_PATH_NEIGH
].ctl_name
= pdev_id
;
2778 neigh_path
[NEIGH_CTL_PATH_PROTO
].procname
= p_name
;
2779 neigh_path
[NEIGH_CTL_PATH_PROTO
].ctl_name
= p_id
;
2781 t
->sysctl_header
= register_sysctl_paths(neigh_path
, t
->neigh_vars
);
2782 if (!t
->sysctl_header
)
2785 p
->sysctl_table
= t
;
2796 void neigh_sysctl_unregister(struct neigh_parms
*p
)
2798 if (p
->sysctl_table
) {
2799 struct neigh_sysctl_table
*t
= p
->sysctl_table
;
2800 p
->sysctl_table
= NULL
;
2801 unregister_sysctl_table(t
->sysctl_header
);
2807 #endif /* CONFIG_SYSCTL */
2809 static int __init
neigh_init(void)
2811 rtnl_register(PF_UNSPEC
, RTM_NEWNEIGH
, neigh_add
, NULL
);
2812 rtnl_register(PF_UNSPEC
, RTM_DELNEIGH
, neigh_delete
, NULL
);
2813 rtnl_register(PF_UNSPEC
, RTM_GETNEIGH
, NULL
, neigh_dump_info
);
2815 rtnl_register(PF_UNSPEC
, RTM_GETNEIGHTBL
, NULL
, neightbl_dump_info
);
2816 rtnl_register(PF_UNSPEC
, RTM_SETNEIGHTBL
, neightbl_set
, NULL
);
2821 subsys_initcall(neigh_init
);
2823 EXPORT_SYMBOL(__neigh_event_send
);
2824 EXPORT_SYMBOL(neigh_changeaddr
);
2825 EXPORT_SYMBOL(neigh_compat_output
);
2826 EXPORT_SYMBOL(neigh_connected_output
);
2827 EXPORT_SYMBOL(neigh_create
);
2828 EXPORT_SYMBOL(neigh_destroy
);
2829 EXPORT_SYMBOL(neigh_event_ns
);
2830 EXPORT_SYMBOL(neigh_ifdown
);
2831 EXPORT_SYMBOL(neigh_lookup
);
2832 EXPORT_SYMBOL(neigh_lookup_nodev
);
2833 EXPORT_SYMBOL(neigh_parms_alloc
);
2834 EXPORT_SYMBOL(neigh_parms_release
);
2835 EXPORT_SYMBOL(neigh_rand_reach_time
);
2836 EXPORT_SYMBOL(neigh_resolve_output
);
2837 EXPORT_SYMBOL(neigh_table_clear
);
2838 EXPORT_SYMBOL(neigh_table_init
);
2839 EXPORT_SYMBOL(neigh_table_init_no_netlink
);
2840 EXPORT_SYMBOL(neigh_update
);
2841 EXPORT_SYMBOL(pneigh_enqueue
);
2842 EXPORT_SYMBOL(pneigh_lookup
);
2845 EXPORT_SYMBOL(neigh_app_ns
);
2847 #ifdef CONFIG_SYSCTL
2848 EXPORT_SYMBOL(neigh_sysctl_register
);
2849 EXPORT_SYMBOL(neigh_sysctl_unregister
);