net: ipv6: sit: fix rcu annotations
[linux-2.6-block.git] / net / core / neighbour.c
CommitLineData
1da177e4
LT
1/*
2 * Generic address resolution entity
3 *
4 * Authors:
5 * Pedro Roque <roque@di.fc.ul.pt>
6 * Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
7 *
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.
12 *
13 * Fixes:
14 * Vitaly E. Lavrov releasing NULL neighbor in neigh_add.
15 * Harald Welte Add neighbour cache statistics like rtstat
16 */
17
5a0e3ad6 18#include <linux/slab.h>
1da177e4
LT
19#include <linux/types.h>
20#include <linux/kernel.h>
21#include <linux/module.h>
22#include <linux/socket.h>
1da177e4
LT
23#include <linux/netdevice.h>
24#include <linux/proc_fs.h>
25#ifdef CONFIG_SYSCTL
26#include <linux/sysctl.h>
27#endif
28#include <linux/times.h>
457c4cbc 29#include <net/net_namespace.h>
1da177e4
LT
30#include <net/neighbour.h>
31#include <net/dst.h>
32#include <net/sock.h>
8d71740c 33#include <net/netevent.h>
a14a49d2 34#include <net/netlink.h>
1da177e4
LT
35#include <linux/rtnetlink.h>
36#include <linux/random.h>
543537bd 37#include <linux/string.h>
c3609d51 38#include <linux/log2.h>
1da177e4
LT
39
40#define NEIGH_DEBUG 1
41
42#define NEIGH_PRINTK(x...) printk(x)
43#define NEIGH_NOPRINTK(x...) do { ; } while(0)
1da177e4
LT
44#define NEIGH_PRINTK1 NEIGH_NOPRINTK
45#define NEIGH_PRINTK2 NEIGH_NOPRINTK
46
47#if NEIGH_DEBUG >= 1
48#undef NEIGH_PRINTK1
49#define NEIGH_PRINTK1 NEIGH_PRINTK
50#endif
51#if NEIGH_DEBUG >= 2
52#undef NEIGH_PRINTK2
53#define NEIGH_PRINTK2 NEIGH_PRINTK
54#endif
55
56#define PNEIGH_HASHMASK 0xF
57
58static void neigh_timer_handler(unsigned long arg);
d961db35
TG
59static void __neigh_notify(struct neighbour *n, int type, int flags);
60static void neigh_update_notify(struct neighbour *neigh);
1da177e4 61static int pneigh_ifdown(struct neigh_table *tbl, struct net_device *dev);
1da177e4
LT
62
63static struct neigh_table *neigh_tables;
45fc3b11 64#ifdef CONFIG_PROC_FS
9a32144e 65static const struct file_operations neigh_stat_seq_fops;
45fc3b11 66#endif
1da177e4
LT
67
68/*
69 Neighbour hash table buckets are protected with rwlock tbl->lock.
70
71 - All the scans/updates to hash buckets MUST be made under this lock.
72 - NOTHING clever should be made under this lock: no callbacks
73 to protocol backends, no attempts to send something to network.
74 It will result in deadlocks, if backend/driver wants to use neighbour
75 cache.
76 - If the entry requires some non-trivial actions, increase
77 its reference count and release table lock.
78
79 Neighbour entries are protected:
80 - with reference count.
81 - with rwlock neigh->lock
82
83 Reference count prevents destruction.
84
85 neigh->lock mainly serializes ll address data and its validity state.
86 However, the same lock is used to protect another entry fields:
87 - timer
88 - resolution queue
89
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.
94
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,
97 */
98
99static DEFINE_RWLOCK(neigh_tbl_lock);
100
101static int neigh_blackhole(struct sk_buff *skb)
102{
103 kfree_skb(skb);
104 return -ENETDOWN;
105}
106
4f494554
TG
107static void neigh_cleanup_and_release(struct neighbour *neigh)
108{
109 if (neigh->parms->neigh_cleanup)
110 neigh->parms->neigh_cleanup(neigh);
111
d961db35 112 __neigh_notify(neigh, RTM_DELNEIGH, 0);
4f494554
TG
113 neigh_release(neigh);
114}
115
1da177e4
LT
116/*
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.
120 */
121
122unsigned long neigh_rand_reach_time(unsigned long base)
123{
a02cec21 124 return base ? (net_random() % base) + (base >> 1) : 0;
1da177e4 125}
0a204500 126EXPORT_SYMBOL(neigh_rand_reach_time);
1da177e4
LT
127
128
129static int neigh_forced_gc(struct neigh_table *tbl)
130{
131 int shrunk = 0;
132 int i;
d6bf7817 133 struct neigh_hash_table *nht;
1da177e4
LT
134
135 NEIGH_CACHE_STAT_INC(tbl, forced_gc_runs);
136
137 write_lock_bh(&tbl->lock);
d6bf7817
ED
138 nht = rcu_dereference_protected(tbl->nht,
139 lockdep_is_held(&tbl->lock));
140 for (i = 0; i <= nht->hash_mask; i++) {
767e97e1
ED
141 struct neighbour *n;
142 struct neighbour __rcu **np;
1da177e4 143
d6bf7817 144 np = &nht->hash_buckets[i];
767e97e1
ED
145 while ((n = rcu_dereference_protected(*np,
146 lockdep_is_held(&tbl->lock))) != NULL) {
1da177e4
LT
147 /* Neighbour record may be discarded if:
148 * - nobody refers to it.
149 * - it is not permanent
150 */
151 write_lock(&n->lock);
152 if (atomic_read(&n->refcnt) == 1 &&
153 !(n->nud_state & NUD_PERMANENT)) {
767e97e1
ED
154 rcu_assign_pointer(*np,
155 rcu_dereference_protected(n->next,
156 lockdep_is_held(&tbl->lock)));
1da177e4
LT
157 n->dead = 1;
158 shrunk = 1;
159 write_unlock(&n->lock);
4f494554 160 neigh_cleanup_and_release(n);
1da177e4
LT
161 continue;
162 }
163 write_unlock(&n->lock);
164 np = &n->next;
165 }
166 }
167
168 tbl->last_flush = jiffies;
169
170 write_unlock_bh(&tbl->lock);
171
172 return shrunk;
173}
174
a43d8994
PE
175static void neigh_add_timer(struct neighbour *n, unsigned long when)
176{
177 neigh_hold(n);
178 if (unlikely(mod_timer(&n->timer, when))) {
179 printk("NEIGH: BUG, double timer add, state is %x\n",
180 n->nud_state);
181 dump_stack();
182 }
183}
184
1da177e4
LT
185static int neigh_del_timer(struct neighbour *n)
186{
187 if ((n->nud_state & NUD_IN_TIMER) &&
188 del_timer(&n->timer)) {
189 neigh_release(n);
190 return 1;
191 }
192 return 0;
193}
194
195static void pneigh_queue_purge(struct sk_buff_head *list)
196{
197 struct sk_buff *skb;
198
199 while ((skb = skb_dequeue(list)) != NULL) {
200 dev_put(skb->dev);
201 kfree_skb(skb);
202 }
203}
204
49636bb1 205static void neigh_flush_dev(struct neigh_table *tbl, struct net_device *dev)
1da177e4
LT
206{
207 int i;
d6bf7817 208 struct neigh_hash_table *nht;
1da177e4 209
d6bf7817
ED
210 nht = rcu_dereference_protected(tbl->nht,
211 lockdep_is_held(&tbl->lock));
212
213 for (i = 0; i <= nht->hash_mask; i++) {
767e97e1
ED
214 struct neighbour *n;
215 struct neighbour __rcu **np = &nht->hash_buckets[i];
1da177e4 216
767e97e1
ED
217 while ((n = rcu_dereference_protected(*np,
218 lockdep_is_held(&tbl->lock))) != NULL) {
1da177e4
LT
219 if (dev && n->dev != dev) {
220 np = &n->next;
221 continue;
222 }
767e97e1
ED
223 rcu_assign_pointer(*np,
224 rcu_dereference_protected(n->next,
225 lockdep_is_held(&tbl->lock)));
1da177e4
LT
226 write_lock(&n->lock);
227 neigh_del_timer(n);
228 n->dead = 1;
229
230 if (atomic_read(&n->refcnt) != 1) {
231 /* The most unpleasant situation.
232 We must destroy neighbour entry,
233 but someone still uses it.
234
235 The destroy will be delayed until
236 the last user releases us, but
237 we must kill timers etc. and move
238 it to safe state.
239 */
240 skb_queue_purge(&n->arp_queue);
241 n->output = neigh_blackhole;
242 if (n->nud_state & NUD_VALID)
243 n->nud_state = NUD_NOARP;
244 else
245 n->nud_state = NUD_NONE;
246 NEIGH_PRINTK2("neigh %p is stray.\n", n);
247 }
248 write_unlock(&n->lock);
4f494554 249 neigh_cleanup_and_release(n);
1da177e4
LT
250 }
251 }
49636bb1 252}
1da177e4 253
49636bb1
HX
254void neigh_changeaddr(struct neigh_table *tbl, struct net_device *dev)
255{
256 write_lock_bh(&tbl->lock);
257 neigh_flush_dev(tbl, dev);
258 write_unlock_bh(&tbl->lock);
259}
0a204500 260EXPORT_SYMBOL(neigh_changeaddr);
49636bb1
HX
261
262int neigh_ifdown(struct neigh_table *tbl, struct net_device *dev)
263{
264 write_lock_bh(&tbl->lock);
265 neigh_flush_dev(tbl, dev);
1da177e4
LT
266 pneigh_ifdown(tbl, dev);
267 write_unlock_bh(&tbl->lock);
268
269 del_timer_sync(&tbl->proxy_timer);
270 pneigh_queue_purge(&tbl->proxy_queue);
271 return 0;
272}
0a204500 273EXPORT_SYMBOL(neigh_ifdown);
1da177e4
LT
274
275static struct neighbour *neigh_alloc(struct neigh_table *tbl)
276{
277 struct neighbour *n = NULL;
278 unsigned long now = jiffies;
279 int entries;
280
281 entries = atomic_inc_return(&tbl->entries) - 1;
282 if (entries >= tbl->gc_thresh3 ||
283 (entries >= tbl->gc_thresh2 &&
284 time_after(now, tbl->last_flush + 5 * HZ))) {
285 if (!neigh_forced_gc(tbl) &&
286 entries >= tbl->gc_thresh3)
287 goto out_entries;
288 }
289
c3762229 290 n = kmem_cache_zalloc(tbl->kmem_cachep, GFP_ATOMIC);
1da177e4
LT
291 if (!n)
292 goto out_entries;
293
1da177e4
LT
294 skb_queue_head_init(&n->arp_queue);
295 rwlock_init(&n->lock);
0ed8ddf4 296 seqlock_init(&n->ha_lock);
1da177e4
LT
297 n->updated = n->used = now;
298 n->nud_state = NUD_NONE;
299 n->output = neigh_blackhole;
300 n->parms = neigh_parms_clone(&tbl->parms);
b24b8a24 301 setup_timer(&n->timer, neigh_timer_handler, (unsigned long)n);
1da177e4
LT
302
303 NEIGH_CACHE_STAT_INC(tbl, allocs);
304 n->tbl = tbl;
305 atomic_set(&n->refcnt, 1);
306 n->dead = 1;
307out:
308 return n;
309
310out_entries:
311 atomic_dec(&tbl->entries);
312 goto out;
313}
314
d6bf7817 315static struct neigh_hash_table *neigh_hash_alloc(unsigned int entries)
1da177e4 316{
d6bf7817
ED
317 size_t size = entries * sizeof(struct neighbour *);
318 struct neigh_hash_table *ret;
319 struct neighbour **buckets;
1da177e4 320
d6bf7817
ED
321 ret = kmalloc(sizeof(*ret), GFP_ATOMIC);
322 if (!ret)
323 return NULL;
324 if (size <= PAGE_SIZE)
325 buckets = kzalloc(size, GFP_ATOMIC);
326 else
327 buckets = (struct neighbour **)
328 __get_free_pages(GFP_ATOMIC | __GFP_ZERO,
329 get_order(size));
330 if (!buckets) {
331 kfree(ret);
332 return NULL;
1da177e4 333 }
767e97e1 334 rcu_assign_pointer(ret->hash_buckets, buckets);
d6bf7817
ED
335 ret->hash_mask = entries - 1;
336 get_random_bytes(&ret->hash_rnd, sizeof(ret->hash_rnd));
1da177e4
LT
337 return ret;
338}
339
d6bf7817 340static void neigh_hash_free_rcu(struct rcu_head *head)
1da177e4 341{
d6bf7817
ED
342 struct neigh_hash_table *nht = container_of(head,
343 struct neigh_hash_table,
344 rcu);
345 size_t size = (nht->hash_mask + 1) * sizeof(struct neighbour *);
346 struct neighbour **buckets = nht->hash_buckets;
1da177e4
LT
347
348 if (size <= PAGE_SIZE)
d6bf7817 349 kfree(buckets);
1da177e4 350 else
d6bf7817
ED
351 free_pages((unsigned long)buckets, get_order(size));
352 kfree(nht);
1da177e4
LT
353}
354
d6bf7817
ED
355static struct neigh_hash_table *neigh_hash_grow(struct neigh_table *tbl,
356 unsigned long new_entries)
1da177e4 357{
d6bf7817
ED
358 unsigned int i, hash;
359 struct neigh_hash_table *new_nht, *old_nht;
1da177e4
LT
360
361 NEIGH_CACHE_STAT_INC(tbl, hash_grows);
362
c3609d51 363 BUG_ON(!is_power_of_2(new_entries));
d6bf7817
ED
364 old_nht = rcu_dereference_protected(tbl->nht,
365 lockdep_is_held(&tbl->lock));
366 new_nht = neigh_hash_alloc(new_entries);
367 if (!new_nht)
368 return old_nht;
1da177e4 369
d6bf7817 370 for (i = 0; i <= old_nht->hash_mask; i++) {
1da177e4
LT
371 struct neighbour *n, *next;
372
767e97e1
ED
373 for (n = rcu_dereference_protected(old_nht->hash_buckets[i],
374 lockdep_is_held(&tbl->lock));
d6bf7817
ED
375 n != NULL;
376 n = next) {
377 hash = tbl->hash(n->primary_key, n->dev,
378 new_nht->hash_rnd);
1da177e4 379
d6bf7817 380 hash &= new_nht->hash_mask;
767e97e1
ED
381 next = rcu_dereference_protected(n->next,
382 lockdep_is_held(&tbl->lock));
383
384 rcu_assign_pointer(n->next,
385 rcu_dereference_protected(
386 new_nht->hash_buckets[hash],
387 lockdep_is_held(&tbl->lock)));
388 rcu_assign_pointer(new_nht->hash_buckets[hash], n);
1da177e4
LT
389 }
390 }
1da177e4 391
d6bf7817
ED
392 rcu_assign_pointer(tbl->nht, new_nht);
393 call_rcu(&old_nht->rcu, neigh_hash_free_rcu);
394 return new_nht;
1da177e4
LT
395}
396
397struct neighbour *neigh_lookup(struct neigh_table *tbl, const void *pkey,
398 struct net_device *dev)
399{
400 struct neighbour *n;
401 int key_len = tbl->key_len;
bc4bf5f3 402 u32 hash_val;
d6bf7817 403 struct neigh_hash_table *nht;
4ec93edb 404
1da177e4
LT
405 NEIGH_CACHE_STAT_INC(tbl, lookups);
406
d6bf7817
ED
407 rcu_read_lock_bh();
408 nht = rcu_dereference_bh(tbl->nht);
409 hash_val = tbl->hash(pkey, dev, nht->hash_rnd) & nht->hash_mask;
767e97e1
ED
410
411 for (n = rcu_dereference_bh(nht->hash_buckets[hash_val]);
412 n != NULL;
413 n = rcu_dereference_bh(n->next)) {
1da177e4 414 if (dev == n->dev && !memcmp(n->primary_key, pkey, key_len)) {
767e97e1
ED
415 if (!atomic_inc_not_zero(&n->refcnt))
416 n = NULL;
1da177e4
LT
417 NEIGH_CACHE_STAT_INC(tbl, hits);
418 break;
419 }
420 }
767e97e1 421
d6bf7817 422 rcu_read_unlock_bh();
1da177e4
LT
423 return n;
424}
0a204500 425EXPORT_SYMBOL(neigh_lookup);
1da177e4 426
426b5303
EB
427struct neighbour *neigh_lookup_nodev(struct neigh_table *tbl, struct net *net,
428 const void *pkey)
1da177e4
LT
429{
430 struct neighbour *n;
431 int key_len = tbl->key_len;
bc4bf5f3 432 u32 hash_val;
d6bf7817 433 struct neigh_hash_table *nht;
1da177e4
LT
434
435 NEIGH_CACHE_STAT_INC(tbl, lookups);
436
d6bf7817
ED
437 rcu_read_lock_bh();
438 nht = rcu_dereference_bh(tbl->nht);
439 hash_val = tbl->hash(pkey, NULL, nht->hash_rnd) & nht->hash_mask;
767e97e1
ED
440
441 for (n = rcu_dereference_bh(nht->hash_buckets[hash_val]);
442 n != NULL;
443 n = rcu_dereference_bh(n->next)) {
426b5303 444 if (!memcmp(n->primary_key, pkey, key_len) &&
878628fb 445 net_eq(dev_net(n->dev), net)) {
767e97e1
ED
446 if (!atomic_inc_not_zero(&n->refcnt))
447 n = NULL;
1da177e4
LT
448 NEIGH_CACHE_STAT_INC(tbl, hits);
449 break;
450 }
451 }
767e97e1 452
d6bf7817 453 rcu_read_unlock_bh();
1da177e4
LT
454 return n;
455}
0a204500 456EXPORT_SYMBOL(neigh_lookup_nodev);
1da177e4
LT
457
458struct neighbour *neigh_create(struct neigh_table *tbl, const void *pkey,
459 struct net_device *dev)
460{
461 u32 hash_val;
462 int key_len = tbl->key_len;
463 int error;
464 struct neighbour *n1, *rc, *n = neigh_alloc(tbl);
d6bf7817 465 struct neigh_hash_table *nht;
1da177e4
LT
466
467 if (!n) {
468 rc = ERR_PTR(-ENOBUFS);
469 goto out;
470 }
471
472 memcpy(n->primary_key, pkey, key_len);
473 n->dev = dev;
474 dev_hold(dev);
475
476 /* Protocol specific setup. */
477 if (tbl->constructor && (error = tbl->constructor(n)) < 0) {
478 rc = ERR_PTR(error);
479 goto out_neigh_release;
480 }
481
482 /* Device specific setup. */
483 if (n->parms->neigh_setup &&
484 (error = n->parms->neigh_setup(n)) < 0) {
485 rc = ERR_PTR(error);
486 goto out_neigh_release;
487 }
488
489 n->confirmed = jiffies - (n->parms->base_reachable_time << 1);
490
491 write_lock_bh(&tbl->lock);
d6bf7817
ED
492 nht = rcu_dereference_protected(tbl->nht,
493 lockdep_is_held(&tbl->lock));
1da177e4 494
d6bf7817
ED
495 if (atomic_read(&tbl->entries) > (nht->hash_mask + 1))
496 nht = neigh_hash_grow(tbl, (nht->hash_mask + 1) << 1);
1da177e4 497
d6bf7817 498 hash_val = tbl->hash(pkey, dev, nht->hash_rnd) & nht->hash_mask;
1da177e4
LT
499
500 if (n->parms->dead) {
501 rc = ERR_PTR(-EINVAL);
502 goto out_tbl_unlock;
503 }
504
767e97e1
ED
505 for (n1 = rcu_dereference_protected(nht->hash_buckets[hash_val],
506 lockdep_is_held(&tbl->lock));
507 n1 != NULL;
508 n1 = rcu_dereference_protected(n1->next,
509 lockdep_is_held(&tbl->lock))) {
1da177e4
LT
510 if (dev == n1->dev && !memcmp(n1->primary_key, pkey, key_len)) {
511 neigh_hold(n1);
512 rc = n1;
513 goto out_tbl_unlock;
514 }
515 }
516
1da177e4
LT
517 n->dead = 0;
518 neigh_hold(n);
767e97e1
ED
519 rcu_assign_pointer(n->next,
520 rcu_dereference_protected(nht->hash_buckets[hash_val],
521 lockdep_is_held(&tbl->lock)));
522 rcu_assign_pointer(nht->hash_buckets[hash_val], n);
1da177e4
LT
523 write_unlock_bh(&tbl->lock);
524 NEIGH_PRINTK2("neigh %p is created.\n", n);
525 rc = n;
526out:
527 return rc;
528out_tbl_unlock:
529 write_unlock_bh(&tbl->lock);
530out_neigh_release:
531 neigh_release(n);
532 goto out;
533}
0a204500 534EXPORT_SYMBOL(neigh_create);
1da177e4 535
be01d655 536static u32 pneigh_hash(const void *pkey, int key_len)
fa86d322 537{
fa86d322 538 u32 hash_val = *(u32 *)(pkey + key_len - 4);
fa86d322
PE
539 hash_val ^= (hash_val >> 16);
540 hash_val ^= hash_val >> 8;
541 hash_val ^= hash_val >> 4;
542 hash_val &= PNEIGH_HASHMASK;
be01d655
YH
543 return hash_val;
544}
fa86d322 545
be01d655
YH
546static struct pneigh_entry *__pneigh_lookup_1(struct pneigh_entry *n,
547 struct net *net,
548 const void *pkey,
549 int key_len,
550 struct net_device *dev)
551{
552 while (n) {
fa86d322 553 if (!memcmp(n->key, pkey, key_len) &&
be01d655 554 net_eq(pneigh_net(n), net) &&
fa86d322 555 (n->dev == dev || !n->dev))
be01d655
YH
556 return n;
557 n = n->next;
fa86d322 558 }
be01d655
YH
559 return NULL;
560}
fa86d322 561
be01d655
YH
562struct pneigh_entry *__pneigh_lookup(struct neigh_table *tbl,
563 struct net *net, const void *pkey, struct net_device *dev)
564{
565 int key_len = tbl->key_len;
566 u32 hash_val = pneigh_hash(pkey, key_len);
567
568 return __pneigh_lookup_1(tbl->phash_buckets[hash_val],
569 net, pkey, key_len, dev);
fa86d322 570}
0a204500 571EXPORT_SYMBOL_GPL(__pneigh_lookup);
fa86d322 572
426b5303
EB
573struct pneigh_entry * pneigh_lookup(struct neigh_table *tbl,
574 struct net *net, const void *pkey,
1da177e4
LT
575 struct net_device *dev, int creat)
576{
577 struct pneigh_entry *n;
578 int key_len = tbl->key_len;
be01d655 579 u32 hash_val = pneigh_hash(pkey, key_len);
1da177e4
LT
580
581 read_lock_bh(&tbl->lock);
be01d655
YH
582 n = __pneigh_lookup_1(tbl->phash_buckets[hash_val],
583 net, pkey, key_len, dev);
1da177e4 584 read_unlock_bh(&tbl->lock);
be01d655
YH
585
586 if (n || !creat)
1da177e4
LT
587 goto out;
588
4ae28944
PE
589 ASSERT_RTNL();
590
1da177e4
LT
591 n = kmalloc(sizeof(*n) + key_len, GFP_KERNEL);
592 if (!n)
593 goto out;
594
e42ea986 595 write_pnet(&n->net, hold_net(net));
1da177e4
LT
596 memcpy(n->key, pkey, key_len);
597 n->dev = dev;
598 if (dev)
599 dev_hold(dev);
600
601 if (tbl->pconstructor && tbl->pconstructor(n)) {
602 if (dev)
603 dev_put(dev);
da12f735 604 release_net(net);
1da177e4
LT
605 kfree(n);
606 n = NULL;
607 goto out;
608 }
609
610 write_lock_bh(&tbl->lock);
611 n->next = tbl->phash_buckets[hash_val];
612 tbl->phash_buckets[hash_val] = n;
613 write_unlock_bh(&tbl->lock);
614out:
615 return n;
616}
0a204500 617EXPORT_SYMBOL(pneigh_lookup);
1da177e4
LT
618
619
426b5303 620int pneigh_delete(struct neigh_table *tbl, struct net *net, const void *pkey,
1da177e4
LT
621 struct net_device *dev)
622{
623 struct pneigh_entry *n, **np;
624 int key_len = tbl->key_len;
be01d655 625 u32 hash_val = pneigh_hash(pkey, key_len);
1da177e4
LT
626
627 write_lock_bh(&tbl->lock);
628 for (np = &tbl->phash_buckets[hash_val]; (n = *np) != NULL;
629 np = &n->next) {
426b5303 630 if (!memcmp(n->key, pkey, key_len) && n->dev == dev &&
878628fb 631 net_eq(pneigh_net(n), net)) {
1da177e4
LT
632 *np = n->next;
633 write_unlock_bh(&tbl->lock);
634 if (tbl->pdestructor)
635 tbl->pdestructor(n);
636 if (n->dev)
637 dev_put(n->dev);
57da52c1 638 release_net(pneigh_net(n));
1da177e4
LT
639 kfree(n);
640 return 0;
641 }
642 }
643 write_unlock_bh(&tbl->lock);
644 return -ENOENT;
645}
646
647static int pneigh_ifdown(struct neigh_table *tbl, struct net_device *dev)
648{
649 struct pneigh_entry *n, **np;
650 u32 h;
651
652 for (h = 0; h <= PNEIGH_HASHMASK; h++) {
653 np = &tbl->phash_buckets[h];
654 while ((n = *np) != NULL) {
655 if (!dev || n->dev == dev) {
656 *np = n->next;
657 if (tbl->pdestructor)
658 tbl->pdestructor(n);
659 if (n->dev)
660 dev_put(n->dev);
57da52c1 661 release_net(pneigh_net(n));
1da177e4
LT
662 kfree(n);
663 continue;
664 }
665 np = &n->next;
666 }
667 }
668 return -ENOENT;
669}
670
06f0511d
DL
671static void neigh_parms_destroy(struct neigh_parms *parms);
672
673static inline void neigh_parms_put(struct neigh_parms *parms)
674{
675 if (atomic_dec_and_test(&parms->refcnt))
676 neigh_parms_destroy(parms);
677}
1da177e4 678
767e97e1
ED
679static void neigh_destroy_rcu(struct rcu_head *head)
680{
681 struct neighbour *neigh = container_of(head, struct neighbour, rcu);
682
683 kmem_cache_free(neigh->tbl->kmem_cachep, neigh);
684}
1da177e4
LT
685/*
686 * neighbour must already be out of the table;
687 *
688 */
689void neigh_destroy(struct neighbour *neigh)
690{
691 struct hh_cache *hh;
692
693 NEIGH_CACHE_STAT_INC(neigh->tbl, destroys);
694
695 if (!neigh->dead) {
696 printk(KERN_WARNING
697 "Destroying alive neighbour %p\n", neigh);
698 dump_stack();
699 return;
700 }
701
702 if (neigh_del_timer(neigh))
703 printk(KERN_WARNING "Impossible event.\n");
704
705 while ((hh = neigh->hh) != NULL) {
706 neigh->hh = hh->hh_next;
707 hh->hh_next = NULL;
3644f0ce
SH
708
709 write_seqlock_bh(&hh->hh_lock);
1da177e4 710 hh->hh_output = neigh_blackhole;
3644f0ce 711 write_sequnlock_bh(&hh->hh_lock);
34d101dd 712 hh_cache_put(hh);
1da177e4
LT
713 }
714
1da177e4
LT
715 skb_queue_purge(&neigh->arp_queue);
716
717 dev_put(neigh->dev);
718 neigh_parms_put(neigh->parms);
719
720 NEIGH_PRINTK2("neigh %p is destroyed.\n", neigh);
721
722 atomic_dec(&neigh->tbl->entries);
767e97e1 723 call_rcu(&neigh->rcu, neigh_destroy_rcu);
1da177e4 724}
0a204500 725EXPORT_SYMBOL(neigh_destroy);
1da177e4
LT
726
727/* Neighbour state is suspicious;
728 disable fast path.
729
730 Called with write_locked neigh.
731 */
732static void neigh_suspect(struct neighbour *neigh)
733{
734 struct hh_cache *hh;
735
736 NEIGH_PRINTK2("neigh %p is suspected.\n", neigh);
737
738 neigh->output = neigh->ops->output;
739
740 for (hh = neigh->hh; hh; hh = hh->hh_next)
741 hh->hh_output = neigh->ops->output;
742}
743
744/* Neighbour state is OK;
745 enable fast path.
746
747 Called with write_locked neigh.
748 */
749static void neigh_connect(struct neighbour *neigh)
750{
751 struct hh_cache *hh;
752
753 NEIGH_PRINTK2("neigh %p is connected.\n", neigh);
754
755 neigh->output = neigh->ops->connected_output;
756
757 for (hh = neigh->hh; hh; hh = hh->hh_next)
758 hh->hh_output = neigh->ops->hh_output;
759}
760
e4c4e448 761static void neigh_periodic_work(struct work_struct *work)
1da177e4 762{
e4c4e448 763 struct neigh_table *tbl = container_of(work, struct neigh_table, gc_work.work);
767e97e1
ED
764 struct neighbour *n;
765 struct neighbour __rcu **np;
e4c4e448 766 unsigned int i;
d6bf7817 767 struct neigh_hash_table *nht;
1da177e4
LT
768
769 NEIGH_CACHE_STAT_INC(tbl, periodic_gc_runs);
770
e4c4e448 771 write_lock_bh(&tbl->lock);
d6bf7817
ED
772 nht = rcu_dereference_protected(tbl->nht,
773 lockdep_is_held(&tbl->lock));
1da177e4
LT
774
775 /*
776 * periodically recompute ReachableTime from random function
777 */
778
e4c4e448 779 if (time_after(jiffies, tbl->last_rand + 300 * HZ)) {
1da177e4 780 struct neigh_parms *p;
e4c4e448 781 tbl->last_rand = jiffies;
1da177e4
LT
782 for (p = &tbl->parms; p; p = p->next)
783 p->reachable_time =
784 neigh_rand_reach_time(p->base_reachable_time);
785 }
786
d6bf7817
ED
787 for (i = 0 ; i <= nht->hash_mask; i++) {
788 np = &nht->hash_buckets[i];
1da177e4 789
767e97e1
ED
790 while ((n = rcu_dereference_protected(*np,
791 lockdep_is_held(&tbl->lock))) != NULL) {
e4c4e448 792 unsigned int state;
1da177e4 793
e4c4e448 794 write_lock(&n->lock);
1da177e4 795
e4c4e448
ED
796 state = n->nud_state;
797 if (state & (NUD_PERMANENT | NUD_IN_TIMER)) {
798 write_unlock(&n->lock);
799 goto next_elt;
800 }
1da177e4 801
e4c4e448
ED
802 if (time_before(n->used, n->confirmed))
803 n->used = n->confirmed;
1da177e4 804
e4c4e448
ED
805 if (atomic_read(&n->refcnt) == 1 &&
806 (state == NUD_FAILED ||
807 time_after(jiffies, n->used + n->parms->gc_staletime))) {
808 *np = n->next;
809 n->dead = 1;
810 write_unlock(&n->lock);
811 neigh_cleanup_and_release(n);
812 continue;
813 }
1da177e4 814 write_unlock(&n->lock);
1da177e4
LT
815
816next_elt:
e4c4e448
ED
817 np = &n->next;
818 }
819 /*
820 * It's fine to release lock here, even if hash table
821 * grows while we are preempted.
822 */
823 write_unlock_bh(&tbl->lock);
824 cond_resched();
825 write_lock_bh(&tbl->lock);
1da177e4 826 }
4ec93edb
YH
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.
1da177e4 830 */
e4c4e448
ED
831 schedule_delayed_work(&tbl->gc_work,
832 tbl->parms.base_reachable_time >> 1);
833 write_unlock_bh(&tbl->lock);
1da177e4
LT
834}
835
836static __inline__ int neigh_max_probes(struct neighbour *n)
837{
838 struct neigh_parms *p = n->parms;
a02cec21 839 return (n->nud_state & NUD_PROBE) ?
1da177e4 840 p->ucast_probes :
a02cec21 841 p->ucast_probes + p->app_probes + p->mcast_probes;
1da177e4
LT
842}
843
5ef12d98 844static void neigh_invalidate(struct neighbour *neigh)
0a141509
ED
845 __releases(neigh->lock)
846 __acquires(neigh->lock)
5ef12d98
TT
847{
848 struct sk_buff *skb;
849
850 NEIGH_CACHE_STAT_INC(neigh->tbl, res_failed);
851 NEIGH_PRINTK2("neigh %p is failed.\n", neigh);
852 neigh->updated = jiffies;
853
854 /* It is very thin place. report_unreachable is very complicated
855 routine. Particularly, it can hit the same neighbour entry!
856
857 So that, we try to be accurate and avoid dead loop. --ANK
858 */
859 while (neigh->nud_state == NUD_FAILED &&
860 (skb = __skb_dequeue(&neigh->arp_queue)) != NULL) {
861 write_unlock(&neigh->lock);
862 neigh->ops->error_report(neigh, skb);
863 write_lock(&neigh->lock);
864 }
865 skb_queue_purge(&neigh->arp_queue);
866}
867
1da177e4
LT
868/* Called when a timer expires for a neighbour entry. */
869
870static void neigh_timer_handler(unsigned long arg)
871{
872 unsigned long now, next;
873 struct neighbour *neigh = (struct neighbour *)arg;
874 unsigned state;
875 int notify = 0;
876
877 write_lock(&neigh->lock);
878
879 state = neigh->nud_state;
880 now = jiffies;
881 next = now + HZ;
882
883 if (!(state & NUD_IN_TIMER)) {
884#ifndef CONFIG_SMP
885 printk(KERN_WARNING "neigh: timer & !nud_in_timer\n");
886#endif
887 goto out;
888 }
889
890 if (state & NUD_REACHABLE) {
4ec93edb 891 if (time_before_eq(now,
1da177e4
LT
892 neigh->confirmed + neigh->parms->reachable_time)) {
893 NEIGH_PRINTK2("neigh %p is still alive.\n", neigh);
894 next = neigh->confirmed + neigh->parms->reachable_time;
895 } else if (time_before_eq(now,
896 neigh->used + neigh->parms->delay_probe_time)) {
897 NEIGH_PRINTK2("neigh %p is delayed.\n", neigh);
898 neigh->nud_state = NUD_DELAY;
955aaa2f 899 neigh->updated = jiffies;
1da177e4
LT
900 neigh_suspect(neigh);
901 next = now + neigh->parms->delay_probe_time;
902 } else {
903 NEIGH_PRINTK2("neigh %p is suspected.\n", neigh);
904 neigh->nud_state = NUD_STALE;
955aaa2f 905 neigh->updated = jiffies;
1da177e4 906 neigh_suspect(neigh);
8d71740c 907 notify = 1;
1da177e4
LT
908 }
909 } else if (state & NUD_DELAY) {
4ec93edb 910 if (time_before_eq(now,
1da177e4
LT
911 neigh->confirmed + neigh->parms->delay_probe_time)) {
912 NEIGH_PRINTK2("neigh %p is now reachable.\n", neigh);
913 neigh->nud_state = NUD_REACHABLE;
955aaa2f 914 neigh->updated = jiffies;
1da177e4 915 neigh_connect(neigh);
8d71740c 916 notify = 1;
1da177e4
LT
917 next = neigh->confirmed + neigh->parms->reachable_time;
918 } else {
919 NEIGH_PRINTK2("neigh %p is probed.\n", neigh);
920 neigh->nud_state = NUD_PROBE;
955aaa2f 921 neigh->updated = jiffies;
1da177e4
LT
922 atomic_set(&neigh->probes, 0);
923 next = now + neigh->parms->retrans_time;
924 }
925 } else {
926 /* NUD_PROBE|NUD_INCOMPLETE */
927 next = now + neigh->parms->retrans_time;
928 }
929
930 if ((neigh->nud_state & (NUD_INCOMPLETE | NUD_PROBE)) &&
931 atomic_read(&neigh->probes) >= neigh_max_probes(neigh)) {
1da177e4
LT
932 neigh->nud_state = NUD_FAILED;
933 notify = 1;
5ef12d98 934 neigh_invalidate(neigh);
1da177e4
LT
935 }
936
937 if (neigh->nud_state & NUD_IN_TIMER) {
1da177e4
LT
938 if (time_before(next, jiffies + HZ/2))
939 next = jiffies + HZ/2;
6fb9974f
HX
940 if (!mod_timer(&neigh->timer, next))
941 neigh_hold(neigh);
1da177e4
LT
942 }
943 if (neigh->nud_state & (NUD_INCOMPLETE | NUD_PROBE)) {
944 struct sk_buff *skb = skb_peek(&neigh->arp_queue);
9ff56607
DM
945 /* keep skb alive even if arp_queue overflows */
946 if (skb)
7e36763b 947 skb = skb_copy(skb, GFP_ATOMIC);
9ff56607 948 write_unlock(&neigh->lock);
1da177e4
LT
949 neigh->ops->solicit(neigh, skb);
950 atomic_inc(&neigh->probes);
f3fbbe0f 951 kfree_skb(skb);
9ff56607 952 } else {
69cc64d8 953out:
9ff56607
DM
954 write_unlock(&neigh->lock);
955 }
d961db35 956
8d71740c 957 if (notify)
d961db35 958 neigh_update_notify(neigh);
1da177e4 959
1da177e4
LT
960 neigh_release(neigh);
961}
962
963int __neigh_event_send(struct neighbour *neigh, struct sk_buff *skb)
964{
965 int rc;
966 unsigned long now;
967
968 write_lock_bh(&neigh->lock);
969
970 rc = 0;
971 if (neigh->nud_state & (NUD_CONNECTED | NUD_DELAY | NUD_PROBE))
972 goto out_unlock_bh;
973
974 now = jiffies;
4ec93edb 975
1da177e4
LT
976 if (!(neigh->nud_state & (NUD_STALE | NUD_INCOMPLETE))) {
977 if (neigh->parms->mcast_probes + neigh->parms->app_probes) {
978 atomic_set(&neigh->probes, neigh->parms->ucast_probes);
979 neigh->nud_state = NUD_INCOMPLETE;
955aaa2f 980 neigh->updated = jiffies;
667347f1 981 neigh_add_timer(neigh, now + 1);
1da177e4
LT
982 } else {
983 neigh->nud_state = NUD_FAILED;
955aaa2f 984 neigh->updated = jiffies;
1da177e4
LT
985 write_unlock_bh(&neigh->lock);
986
f3fbbe0f 987 kfree_skb(skb);
1da177e4
LT
988 return 1;
989 }
990 } else if (neigh->nud_state & NUD_STALE) {
991 NEIGH_PRINTK2("neigh %p is delayed.\n", neigh);
1da177e4 992 neigh->nud_state = NUD_DELAY;
955aaa2f 993 neigh->updated = jiffies;
667347f1
DM
994 neigh_add_timer(neigh,
995 jiffies + neigh->parms->delay_probe_time);
1da177e4
LT
996 }
997
998 if (neigh->nud_state == NUD_INCOMPLETE) {
999 if (skb) {
1000 if (skb_queue_len(&neigh->arp_queue) >=
1001 neigh->parms->queue_len) {
1002 struct sk_buff *buff;
f72051b0 1003 buff = __skb_dequeue(&neigh->arp_queue);
1da177e4 1004 kfree_skb(buff);
9a6d276e 1005 NEIGH_CACHE_STAT_INC(neigh->tbl, unres_discards);
1da177e4 1006 }
a4731138 1007 skb_dst_force(skb);
1da177e4
LT
1008 __skb_queue_tail(&neigh->arp_queue, skb);
1009 }
1010 rc = 1;
1011 }
1012out_unlock_bh:
1013 write_unlock_bh(&neigh->lock);
1014 return rc;
1015}
0a204500 1016EXPORT_SYMBOL(__neigh_event_send);
1da177e4 1017
0ed8ddf4 1018static void neigh_update_hhs(const struct neighbour *neigh)
1da177e4
LT
1019{
1020 struct hh_cache *hh;
3b04ddde 1021 void (*update)(struct hh_cache*, const struct net_device*, const unsigned char *)
91a72a70
DK
1022 = NULL;
1023
1024 if (neigh->dev->header_ops)
1025 update = neigh->dev->header_ops->cache_update;
1da177e4
LT
1026
1027 if (update) {
1028 for (hh = neigh->hh; hh; hh = hh->hh_next) {
3644f0ce 1029 write_seqlock_bh(&hh->hh_lock);
1da177e4 1030 update(hh, neigh->dev, neigh->ha);
3644f0ce 1031 write_sequnlock_bh(&hh->hh_lock);
1da177e4
LT
1032 }
1033 }
1034}
1035
1036
1037
1038/* Generic update routine.
1039 -- lladdr is new lladdr or NULL, if it is not supplied.
1040 -- new is new state.
1041 -- flags
1042 NEIGH_UPDATE_F_OVERRIDE allows to override existing lladdr,
1043 if it is different.
1044 NEIGH_UPDATE_F_WEAK_OVERRIDE will suspect existing "connected"
4ec93edb 1045 lladdr instead of overriding it
1da177e4
LT
1046 if it is different.
1047 It also allows to retain current state
1048 if lladdr is unchanged.
1049 NEIGH_UPDATE_F_ADMIN means that the change is administrative.
1050
4ec93edb 1051 NEIGH_UPDATE_F_OVERRIDE_ISROUTER allows to override existing
1da177e4
LT
1052 NTF_ROUTER flag.
1053 NEIGH_UPDATE_F_ISROUTER indicates if the neighbour is known as
1054 a router.
1055
1056 Caller MUST hold reference count on the entry.
1057 */
1058
1059int neigh_update(struct neighbour *neigh, const u8 *lladdr, u8 new,
1060 u32 flags)
1061{
1062 u8 old;
1063 int err;
1da177e4 1064 int notify = 0;
1da177e4
LT
1065 struct net_device *dev;
1066 int update_isrouter = 0;
1067
1068 write_lock_bh(&neigh->lock);
1069
1070 dev = neigh->dev;
1071 old = neigh->nud_state;
1072 err = -EPERM;
1073
4ec93edb 1074 if (!(flags & NEIGH_UPDATE_F_ADMIN) &&
1da177e4
LT
1075 (old & (NUD_NOARP | NUD_PERMANENT)))
1076 goto out;
1077
1078 if (!(new & NUD_VALID)) {
1079 neigh_del_timer(neigh);
1080 if (old & NUD_CONNECTED)
1081 neigh_suspect(neigh);
1082 neigh->nud_state = new;
1083 err = 0;
1da177e4 1084 notify = old & NUD_VALID;
5ef12d98
TT
1085 if ((old & (NUD_INCOMPLETE | NUD_PROBE)) &&
1086 (new & NUD_FAILED)) {
1087 neigh_invalidate(neigh);
1088 notify = 1;
1089 }
1da177e4
LT
1090 goto out;
1091 }
1092
1093 /* Compare new lladdr with cached one */
1094 if (!dev->addr_len) {
1095 /* First case: device needs no address. */
1096 lladdr = neigh->ha;
1097 } else if (lladdr) {
1098 /* The second case: if something is already cached
1099 and a new address is proposed:
1100 - compare new & old
1101 - if they are different, check override flag
1102 */
4ec93edb 1103 if ((old & NUD_VALID) &&
1da177e4
LT
1104 !memcmp(lladdr, neigh->ha, dev->addr_len))
1105 lladdr = neigh->ha;
1106 } else {
1107 /* No address is supplied; if we know something,
1108 use it, otherwise discard the request.
1109 */
1110 err = -EINVAL;
1111 if (!(old & NUD_VALID))
1112 goto out;
1113 lladdr = neigh->ha;
1114 }
1115
1116 if (new & NUD_CONNECTED)
1117 neigh->confirmed = jiffies;
1118 neigh->updated = jiffies;
1119
1120 /* If entry was valid and address is not changed,
1121 do not change entry state, if new one is STALE.
1122 */
1123 err = 0;
1124 update_isrouter = flags & NEIGH_UPDATE_F_OVERRIDE_ISROUTER;
1125 if (old & NUD_VALID) {
1126 if (lladdr != neigh->ha && !(flags & NEIGH_UPDATE_F_OVERRIDE)) {
1127 update_isrouter = 0;
1128 if ((flags & NEIGH_UPDATE_F_WEAK_OVERRIDE) &&
1129 (old & NUD_CONNECTED)) {
1130 lladdr = neigh->ha;
1131 new = NUD_STALE;
1132 } else
1133 goto out;
1134 } else {
1135 if (lladdr == neigh->ha && new == NUD_STALE &&
1136 ((flags & NEIGH_UPDATE_F_WEAK_OVERRIDE) ||
1137 (old & NUD_CONNECTED))
1138 )
1139 new = old;
1140 }
1141 }
1142
1143 if (new != old) {
1144 neigh_del_timer(neigh);
a43d8994 1145 if (new & NUD_IN_TIMER)
4ec93edb
YH
1146 neigh_add_timer(neigh, (jiffies +
1147 ((new & NUD_REACHABLE) ?
667347f1
DM
1148 neigh->parms->reachable_time :
1149 0)));
1da177e4
LT
1150 neigh->nud_state = new;
1151 }
1152
1153 if (lladdr != neigh->ha) {
0ed8ddf4 1154 write_seqlock(&neigh->ha_lock);
1da177e4 1155 memcpy(&neigh->ha, lladdr, dev->addr_len);
0ed8ddf4 1156 write_sequnlock(&neigh->ha_lock);
1da177e4
LT
1157 neigh_update_hhs(neigh);
1158 if (!(new & NUD_CONNECTED))
1159 neigh->confirmed = jiffies -
1160 (neigh->parms->base_reachable_time << 1);
1da177e4 1161 notify = 1;
1da177e4
LT
1162 }
1163 if (new == old)
1164 goto out;
1165 if (new & NUD_CONNECTED)
1166 neigh_connect(neigh);
1167 else
1168 neigh_suspect(neigh);
1169 if (!(old & NUD_VALID)) {
1170 struct sk_buff *skb;
1171
1172 /* Again: avoid dead loop if something went wrong */
1173
1174 while (neigh->nud_state & NUD_VALID &&
1175 (skb = __skb_dequeue(&neigh->arp_queue)) != NULL) {
1176 struct neighbour *n1 = neigh;
1177 write_unlock_bh(&neigh->lock);
1178 /* On shaper/eql skb->dst->neighbour != neigh :( */
adf30907
ED
1179 if (skb_dst(skb) && skb_dst(skb)->neighbour)
1180 n1 = skb_dst(skb)->neighbour;
1da177e4
LT
1181 n1->output(skb);
1182 write_lock_bh(&neigh->lock);
1183 }
1184 skb_queue_purge(&neigh->arp_queue);
1185 }
1186out:
1187 if (update_isrouter) {
1188 neigh->flags = (flags & NEIGH_UPDATE_F_ISROUTER) ?
1189 (neigh->flags | NTF_ROUTER) :
1190 (neigh->flags & ~NTF_ROUTER);
1191 }
1192 write_unlock_bh(&neigh->lock);
8d71740c
TT
1193
1194 if (notify)
d961db35
TG
1195 neigh_update_notify(neigh);
1196
1da177e4
LT
1197 return err;
1198}
0a204500 1199EXPORT_SYMBOL(neigh_update);
1da177e4
LT
1200
1201struct neighbour *neigh_event_ns(struct neigh_table *tbl,
1202 u8 *lladdr, void *saddr,
1203 struct net_device *dev)
1204{
1205 struct neighbour *neigh = __neigh_lookup(tbl, saddr, dev,
1206 lladdr || !dev->addr_len);
1207 if (neigh)
4ec93edb 1208 neigh_update(neigh, lladdr, NUD_STALE,
1da177e4
LT
1209 NEIGH_UPDATE_F_OVERRIDE);
1210 return neigh;
1211}
0a204500 1212EXPORT_SYMBOL(neigh_event_ns);
1da177e4 1213
34d101dd
ED
1214static inline bool neigh_hh_lookup(struct neighbour *n, struct dst_entry *dst,
1215 __be16 protocol)
1216{
1217 struct hh_cache *hh;
1218
0ed8ddf4 1219 smp_rmb(); /* paired with smp_wmb() in neigh_hh_init() */
34d101dd
ED
1220 for (hh = n->hh; hh; hh = hh->hh_next) {
1221 if (hh->hh_type == protocol) {
1222 atomic_inc(&hh->hh_refcnt);
1223 if (unlikely(cmpxchg(&dst->hh, NULL, hh) != NULL))
1224 hh_cache_put(hh);
1225 return true;
1226 }
1227 }
1228 return false;
1229}
1230
1231/* called with read_lock_bh(&n->lock); */
1da177e4 1232static void neigh_hh_init(struct neighbour *n, struct dst_entry *dst,
d77072ec 1233 __be16 protocol)
1da177e4
LT
1234{
1235 struct hh_cache *hh;
1236 struct net_device *dev = dst->dev;
1237
34d101dd
ED
1238 if (likely(neigh_hh_lookup(n, dst, protocol)))
1239 return;
1da177e4 1240
34d101dd
ED
1241 /* slow path */
1242 hh = kzalloc(sizeof(*hh), GFP_ATOMIC);
1243 if (!hh)
1244 return;
3b04ddde 1245
34d101dd
ED
1246 seqlock_init(&hh->hh_lock);
1247 hh->hh_type = protocol;
1248 atomic_set(&hh->hh_refcnt, 2);
1249
1250 if (dev->header_ops->cache(n, hh)) {
1251 kfree(hh);
1252 return;
1da177e4 1253 }
0ed8ddf4
ED
1254
1255 write_lock_bh(&n->lock);
34d101dd
ED
1256
1257 /* must check if another thread already did the insert */
1258 if (neigh_hh_lookup(n, dst, protocol)) {
1259 kfree(hh);
1260 goto end;
1da177e4 1261 }
34d101dd
ED
1262
1263 if (n->nud_state & NUD_CONNECTED)
1264 hh->hh_output = n->ops->hh_output;
1265 else
1266 hh->hh_output = n->ops->output;
1267
1268 hh->hh_next = n->hh;
0ed8ddf4 1269 smp_wmb(); /* paired with smp_rmb() in neigh_hh_lookup() */
34d101dd
ED
1270 n->hh = hh;
1271
1272 if (unlikely(cmpxchg(&dst->hh, NULL, hh) != NULL))
1273 hh_cache_put(hh);
1274end:
0ed8ddf4 1275 write_unlock_bh(&n->lock);
1da177e4
LT
1276}
1277
1278/* This function can be used in contexts, where only old dev_queue_xmit
767e97e1
ED
1279 * worked, f.e. if you want to override normal output path (eql, shaper),
1280 * but resolution is not made yet.
1da177e4
LT
1281 */
1282
1283int neigh_compat_output(struct sk_buff *skb)
1284{
1285 struct net_device *dev = skb->dev;
1286
bbe735e4 1287 __skb_pull(skb, skb_network_offset(skb));
1da177e4 1288
0c4e8581
SH
1289 if (dev_hard_header(skb, dev, ntohs(skb->protocol), NULL, NULL,
1290 skb->len) < 0 &&
3b04ddde 1291 dev->header_ops->rebuild(skb))
1da177e4
LT
1292 return 0;
1293
1294 return dev_queue_xmit(skb);
1295}
0a204500 1296EXPORT_SYMBOL(neigh_compat_output);
1da177e4
LT
1297
1298/* Slow and careful. */
1299
1300int neigh_resolve_output(struct sk_buff *skb)
1301{
adf30907 1302 struct dst_entry *dst = skb_dst(skb);
1da177e4
LT
1303 struct neighbour *neigh;
1304 int rc = 0;
1305
1306 if (!dst || !(neigh = dst->neighbour))
1307 goto discard;
1308
bbe735e4 1309 __skb_pull(skb, skb_network_offset(skb));
1da177e4
LT
1310
1311 if (!neigh_event_send(neigh, skb)) {
1312 int err;
1313 struct net_device *dev = neigh->dev;
0ed8ddf4 1314 unsigned int seq;
34d101dd 1315
c7d4426a
ED
1316 if (dev->header_ops->cache &&
1317 !dst->hh &&
34d101dd
ED
1318 !(dst->flags & DST_NOCACHE))
1319 neigh_hh_init(neigh, dst, dst->ops->protocol);
1320
0ed8ddf4
ED
1321 do {
1322 seq = read_seqbegin(&neigh->ha_lock);
1323 err = dev_hard_header(skb, dev, ntohs(skb->protocol),
1324 neigh->ha, NULL, skb->len);
1325 } while (read_seqretry(&neigh->ha_lock, seq));
34d101dd 1326
1da177e4
LT
1327 if (err >= 0)
1328 rc = neigh->ops->queue_xmit(skb);
1329 else
1330 goto out_kfree_skb;
1331 }
1332out:
1333 return rc;
1334discard:
1335 NEIGH_PRINTK1("neigh_resolve_output: dst=%p neigh=%p\n",
1336 dst, dst ? dst->neighbour : NULL);
1337out_kfree_skb:
1338 rc = -EINVAL;
1339 kfree_skb(skb);
1340 goto out;
1341}
0a204500 1342EXPORT_SYMBOL(neigh_resolve_output);
1da177e4
LT
1343
1344/* As fast as possible without hh cache */
1345
1346int neigh_connected_output(struct sk_buff *skb)
1347{
1348 int err;
adf30907 1349 struct dst_entry *dst = skb_dst(skb);
1da177e4
LT
1350 struct neighbour *neigh = dst->neighbour;
1351 struct net_device *dev = neigh->dev;
0ed8ddf4 1352 unsigned int seq;
1da177e4 1353
bbe735e4 1354 __skb_pull(skb, skb_network_offset(skb));
1da177e4 1355
0ed8ddf4
ED
1356 do {
1357 seq = read_seqbegin(&neigh->ha_lock);
1358 err = dev_hard_header(skb, dev, ntohs(skb->protocol),
1359 neigh->ha, NULL, skb->len);
1360 } while (read_seqretry(&neigh->ha_lock, seq));
1361
1da177e4
LT
1362 if (err >= 0)
1363 err = neigh->ops->queue_xmit(skb);
1364 else {
1365 err = -EINVAL;
1366 kfree_skb(skb);
1367 }
1368 return err;
1369}
0a204500 1370EXPORT_SYMBOL(neigh_connected_output);
1da177e4
LT
1371
1372static void neigh_proxy_process(unsigned long arg)
1373{
1374 struct neigh_table *tbl = (struct neigh_table *)arg;
1375 long sched_next = 0;
1376 unsigned long now = jiffies;
f72051b0 1377 struct sk_buff *skb, *n;
1da177e4
LT
1378
1379 spin_lock(&tbl->proxy_queue.lock);
1380
f72051b0
DM
1381 skb_queue_walk_safe(&tbl->proxy_queue, skb, n) {
1382 long tdif = NEIGH_CB(skb)->sched_next - now;
1da177e4 1383
1da177e4 1384 if (tdif <= 0) {
f72051b0
DM
1385 struct net_device *dev = skb->dev;
1386 __skb_unlink(skb, &tbl->proxy_queue);
1da177e4 1387 if (tbl->proxy_redo && netif_running(dev))
f72051b0 1388 tbl->proxy_redo(skb);
1da177e4 1389 else
f72051b0 1390 kfree_skb(skb);
1da177e4
LT
1391
1392 dev_put(dev);
1393 } else if (!sched_next || tdif < sched_next)
1394 sched_next = tdif;
1395 }
1396 del_timer(&tbl->proxy_timer);
1397 if (sched_next)
1398 mod_timer(&tbl->proxy_timer, jiffies + sched_next);
1399 spin_unlock(&tbl->proxy_queue.lock);
1400}
1401
1402void pneigh_enqueue(struct neigh_table *tbl, struct neigh_parms *p,
1403 struct sk_buff *skb)
1404{
1405 unsigned long now = jiffies;
1406 unsigned long sched_next = now + (net_random() % p->proxy_delay);
1407
1408 if (tbl->proxy_queue.qlen > p->proxy_qlen) {
1409 kfree_skb(skb);
1410 return;
1411 }
a61bbcf2
PM
1412
1413 NEIGH_CB(skb)->sched_next = sched_next;
1414 NEIGH_CB(skb)->flags |= LOCALLY_ENQUEUED;
1da177e4
LT
1415
1416 spin_lock(&tbl->proxy_queue.lock);
1417 if (del_timer(&tbl->proxy_timer)) {
1418 if (time_before(tbl->proxy_timer.expires, sched_next))
1419 sched_next = tbl->proxy_timer.expires;
1420 }
adf30907 1421 skb_dst_drop(skb);
1da177e4
LT
1422 dev_hold(skb->dev);
1423 __skb_queue_tail(&tbl->proxy_queue, skb);
1424 mod_timer(&tbl->proxy_timer, sched_next);
1425 spin_unlock(&tbl->proxy_queue.lock);
1426}
0a204500 1427EXPORT_SYMBOL(pneigh_enqueue);
1da177e4 1428
97fd5bc7 1429static inline struct neigh_parms *lookup_neigh_parms(struct neigh_table *tbl,
426b5303
EB
1430 struct net *net, int ifindex)
1431{
1432 struct neigh_parms *p;
1433
1434 for (p = &tbl->parms; p; p = p->next) {
878628fb 1435 if ((p->dev && p->dev->ifindex == ifindex && net_eq(neigh_parms_net(p), net)) ||
426b5303
EB
1436 (!p->dev && !ifindex))
1437 return p;
1438 }
1439
1440 return NULL;
1441}
1da177e4
LT
1442
1443struct neigh_parms *neigh_parms_alloc(struct net_device *dev,
1444 struct neigh_table *tbl)
1445{
426b5303 1446 struct neigh_parms *p, *ref;
00829823
SH
1447 struct net *net = dev_net(dev);
1448 const struct net_device_ops *ops = dev->netdev_ops;
426b5303 1449
97fd5bc7 1450 ref = lookup_neigh_parms(tbl, net, 0);
426b5303
EB
1451 if (!ref)
1452 return NULL;
1da177e4 1453
426b5303 1454 p = kmemdup(ref, sizeof(*p), GFP_KERNEL);
1da177e4 1455 if (p) {
1da177e4
LT
1456 p->tbl = tbl;
1457 atomic_set(&p->refcnt, 1);
1da177e4
LT
1458 p->reachable_time =
1459 neigh_rand_reach_time(p->base_reachable_time);
c7fb64db 1460
00829823 1461 if (ops->ndo_neigh_setup && ops->ndo_neigh_setup(dev, p)) {
486b51d3
DL
1462 kfree(p);
1463 return NULL;
1da177e4 1464 }
486b51d3
DL
1465
1466 dev_hold(dev);
1467 p->dev = dev;
e42ea986 1468 write_pnet(&p->net, hold_net(net));
1da177e4
LT
1469 p->sysctl_table = NULL;
1470 write_lock_bh(&tbl->lock);
1471 p->next = tbl->parms.next;
1472 tbl->parms.next = p;
1473 write_unlock_bh(&tbl->lock);
1474 }
1475 return p;
1476}
0a204500 1477EXPORT_SYMBOL(neigh_parms_alloc);
1da177e4
LT
1478
1479static void neigh_rcu_free_parms(struct rcu_head *head)
1480{
1481 struct neigh_parms *parms =
1482 container_of(head, struct neigh_parms, rcu_head);
1483
1484 neigh_parms_put(parms);
1485}
1486
1487void neigh_parms_release(struct neigh_table *tbl, struct neigh_parms *parms)
1488{
1489 struct neigh_parms **p;
1490
1491 if (!parms || parms == &tbl->parms)
1492 return;
1493 write_lock_bh(&tbl->lock);
1494 for (p = &tbl->parms.next; *p; p = &(*p)->next) {
1495 if (*p == parms) {
1496 *p = parms->next;
1497 parms->dead = 1;
1498 write_unlock_bh(&tbl->lock);
cecbb639
DM
1499 if (parms->dev)
1500 dev_put(parms->dev);
1da177e4
LT
1501 call_rcu(&parms->rcu_head, neigh_rcu_free_parms);
1502 return;
1503 }
1504 }
1505 write_unlock_bh(&tbl->lock);
1506 NEIGH_PRINTK1("neigh_parms_release: not found\n");
1507}
0a204500 1508EXPORT_SYMBOL(neigh_parms_release);
1da177e4 1509
06f0511d 1510static void neigh_parms_destroy(struct neigh_parms *parms)
1da177e4 1511{
57da52c1 1512 release_net(neigh_parms_net(parms));
1da177e4
LT
1513 kfree(parms);
1514}
1515
c2ecba71
PE
1516static struct lock_class_key neigh_table_proxy_queue_class;
1517
bd89efc5 1518void neigh_table_init_no_netlink(struct neigh_table *tbl)
1da177e4
LT
1519{
1520 unsigned long now = jiffies;
1521 unsigned long phsize;
1522
e42ea986 1523 write_pnet(&tbl->parms.net, &init_net);
1da177e4 1524 atomic_set(&tbl->parms.refcnt, 1);
1da177e4
LT
1525 tbl->parms.reachable_time =
1526 neigh_rand_reach_time(tbl->parms.base_reachable_time);
1527
1528 if (!tbl->kmem_cachep)
e5d679f3
AD
1529 tbl->kmem_cachep =
1530 kmem_cache_create(tbl->id, tbl->entry_size, 0,
1531 SLAB_HWCACHE_ALIGN|SLAB_PANIC,
20c2df83 1532 NULL);
1da177e4
LT
1533 tbl->stats = alloc_percpu(struct neigh_statistics);
1534 if (!tbl->stats)
1535 panic("cannot create neighbour cache statistics");
4ec93edb 1536
1da177e4 1537#ifdef CONFIG_PROC_FS
9b739ba5
AD
1538 if (!proc_create_data(tbl->id, 0, init_net.proc_net_stat,
1539 &neigh_stat_seq_fops, tbl))
1da177e4 1540 panic("cannot create neighbour proc dir entry");
1da177e4
LT
1541#endif
1542
d6bf7817 1543 tbl->nht = neigh_hash_alloc(8);
1da177e4
LT
1544
1545 phsize = (PNEIGH_HASHMASK + 1) * sizeof(struct pneigh_entry *);
77d04bd9 1546 tbl->phash_buckets = kzalloc(phsize, GFP_KERNEL);
1da177e4 1547
d6bf7817 1548 if (!tbl->nht || !tbl->phash_buckets)
1da177e4
LT
1549 panic("cannot allocate neighbour cache hashes");
1550
1da177e4 1551 rwlock_init(&tbl->lock);
e4c4e448
ED
1552 INIT_DELAYED_WORK_DEFERRABLE(&tbl->gc_work, neigh_periodic_work);
1553 schedule_delayed_work(&tbl->gc_work, tbl->parms.reachable_time);
b24b8a24 1554 setup_timer(&tbl->proxy_timer, neigh_proxy_process, (unsigned long)tbl);
c2ecba71
PE
1555 skb_queue_head_init_class(&tbl->proxy_queue,
1556 &neigh_table_proxy_queue_class);
1da177e4
LT
1557
1558 tbl->last_flush = now;
1559 tbl->last_rand = now + tbl->parms.reachable_time * 20;
bd89efc5 1560}
0a204500 1561EXPORT_SYMBOL(neigh_table_init_no_netlink);
bd89efc5
SK
1562
1563void neigh_table_init(struct neigh_table *tbl)
1564{
1565 struct neigh_table *tmp;
1566
1567 neigh_table_init_no_netlink(tbl);
1da177e4 1568 write_lock(&neigh_tbl_lock);
bd89efc5
SK
1569 for (tmp = neigh_tables; tmp; tmp = tmp->next) {
1570 if (tmp->family == tbl->family)
1571 break;
1572 }
1da177e4
LT
1573 tbl->next = neigh_tables;
1574 neigh_tables = tbl;
1575 write_unlock(&neigh_tbl_lock);
bd89efc5
SK
1576
1577 if (unlikely(tmp)) {
1578 printk(KERN_ERR "NEIGH: Registering multiple tables for "
1579 "family %d\n", tbl->family);
1580 dump_stack();
1581 }
1da177e4 1582}
0a204500 1583EXPORT_SYMBOL(neigh_table_init);
1da177e4
LT
1584
1585int neigh_table_clear(struct neigh_table *tbl)
1586{
1587 struct neigh_table **tp;
1588
1589 /* It is not clean... Fix it to unload IPv6 module safely */
a5c30b34 1590 cancel_delayed_work_sync(&tbl->gc_work);
1da177e4
LT
1591 del_timer_sync(&tbl->proxy_timer);
1592 pneigh_queue_purge(&tbl->proxy_queue);
1593 neigh_ifdown(tbl, NULL);
1594 if (atomic_read(&tbl->entries))
1595 printk(KERN_CRIT "neighbour leakage\n");
1596 write_lock(&neigh_tbl_lock);
1597 for (tp = &neigh_tables; *tp; tp = &(*tp)->next) {
1598 if (*tp == tbl) {
1599 *tp = tbl->next;
1600 break;
1601 }
1602 }
1603 write_unlock(&neigh_tbl_lock);
1604
d6bf7817
ED
1605 call_rcu(&tbl->nht->rcu, neigh_hash_free_rcu);
1606 tbl->nht = NULL;
1da177e4
LT
1607
1608 kfree(tbl->phash_buckets);
1609 tbl->phash_buckets = NULL;
1610
3f192b5c
AD
1611 remove_proc_entry(tbl->id, init_net.proc_net_stat);
1612
3fcde74b
KK
1613 free_percpu(tbl->stats);
1614 tbl->stats = NULL;
1615
bfb85c9f
RD
1616 kmem_cache_destroy(tbl->kmem_cachep);
1617 tbl->kmem_cachep = NULL;
1618
1da177e4
LT
1619 return 0;
1620}
0a204500 1621EXPORT_SYMBOL(neigh_table_clear);
1da177e4 1622
c8822a4e 1623static int neigh_delete(struct sk_buff *skb, struct nlmsghdr *nlh, void *arg)
1da177e4 1624{
3b1e0a65 1625 struct net *net = sock_net(skb->sk);
a14a49d2
TG
1626 struct ndmsg *ndm;
1627 struct nlattr *dst_attr;
1da177e4
LT
1628 struct neigh_table *tbl;
1629 struct net_device *dev = NULL;
a14a49d2 1630 int err = -EINVAL;
1da177e4 1631
110b2499 1632 ASSERT_RTNL();
a14a49d2 1633 if (nlmsg_len(nlh) < sizeof(*ndm))
1da177e4
LT
1634 goto out;
1635
a14a49d2
TG
1636 dst_attr = nlmsg_find_attr(nlh, sizeof(*ndm), NDA_DST);
1637 if (dst_attr == NULL)
1638 goto out;
1639
1640 ndm = nlmsg_data(nlh);
1641 if (ndm->ndm_ifindex) {
110b2499 1642 dev = __dev_get_by_index(net, ndm->ndm_ifindex);
a14a49d2
TG
1643 if (dev == NULL) {
1644 err = -ENODEV;
1645 goto out;
1646 }
1647 }
1648
1da177e4
LT
1649 read_lock(&neigh_tbl_lock);
1650 for (tbl = neigh_tables; tbl; tbl = tbl->next) {
a14a49d2 1651 struct neighbour *neigh;
1da177e4
LT
1652
1653 if (tbl->family != ndm->ndm_family)
1654 continue;
1655 read_unlock(&neigh_tbl_lock);
1656
a14a49d2 1657 if (nla_len(dst_attr) < tbl->key_len)
110b2499 1658 goto out;
1da177e4
LT
1659
1660 if (ndm->ndm_flags & NTF_PROXY) {
426b5303 1661 err = pneigh_delete(tbl, net, nla_data(dst_attr), dev);
110b2499 1662 goto out;
1da177e4
LT
1663 }
1664
a14a49d2 1665 if (dev == NULL)
110b2499 1666 goto out;
1da177e4 1667
a14a49d2
TG
1668 neigh = neigh_lookup(tbl, nla_data(dst_attr), dev);
1669 if (neigh == NULL) {
1670 err = -ENOENT;
110b2499 1671 goto out;
1da177e4 1672 }
a14a49d2
TG
1673
1674 err = neigh_update(neigh, NULL, NUD_FAILED,
1675 NEIGH_UPDATE_F_OVERRIDE |
1676 NEIGH_UPDATE_F_ADMIN);
1677 neigh_release(neigh);
110b2499 1678 goto out;
1da177e4
LT
1679 }
1680 read_unlock(&neigh_tbl_lock);
a14a49d2
TG
1681 err = -EAFNOSUPPORT;
1682
1da177e4
LT
1683out:
1684 return err;
1685}
1686
c8822a4e 1687static int neigh_add(struct sk_buff *skb, struct nlmsghdr *nlh, void *arg)
1da177e4 1688{
3b1e0a65 1689 struct net *net = sock_net(skb->sk);
5208debd
TG
1690 struct ndmsg *ndm;
1691 struct nlattr *tb[NDA_MAX+1];
1da177e4
LT
1692 struct neigh_table *tbl;
1693 struct net_device *dev = NULL;
5208debd 1694 int err;
1da177e4 1695
110b2499 1696 ASSERT_RTNL();
5208debd
TG
1697 err = nlmsg_parse(nlh, sizeof(*ndm), tb, NDA_MAX, NULL);
1698 if (err < 0)
1da177e4
LT
1699 goto out;
1700
5208debd
TG
1701 err = -EINVAL;
1702 if (tb[NDA_DST] == NULL)
1703 goto out;
1704
1705 ndm = nlmsg_data(nlh);
1706 if (ndm->ndm_ifindex) {
110b2499 1707 dev = __dev_get_by_index(net, ndm->ndm_ifindex);
5208debd
TG
1708 if (dev == NULL) {
1709 err = -ENODEV;
1710 goto out;
1711 }
1712
1713 if (tb[NDA_LLADDR] && nla_len(tb[NDA_LLADDR]) < dev->addr_len)
110b2499 1714 goto out;
5208debd
TG
1715 }
1716
1da177e4
LT
1717 read_lock(&neigh_tbl_lock);
1718 for (tbl = neigh_tables; tbl; tbl = tbl->next) {
5208debd
TG
1719 int flags = NEIGH_UPDATE_F_ADMIN | NEIGH_UPDATE_F_OVERRIDE;
1720 struct neighbour *neigh;
1721 void *dst, *lladdr;
1da177e4
LT
1722
1723 if (tbl->family != ndm->ndm_family)
1724 continue;
1725 read_unlock(&neigh_tbl_lock);
1726
5208debd 1727 if (nla_len(tb[NDA_DST]) < tbl->key_len)
110b2499 1728 goto out;
5208debd
TG
1729 dst = nla_data(tb[NDA_DST]);
1730 lladdr = tb[NDA_LLADDR] ? nla_data(tb[NDA_LLADDR]) : NULL;
1da177e4
LT
1731
1732 if (ndm->ndm_flags & NTF_PROXY) {
62dd9318
VN
1733 struct pneigh_entry *pn;
1734
1735 err = -ENOBUFS;
426b5303 1736 pn = pneigh_lookup(tbl, net, dst, dev, 1);
62dd9318
VN
1737 if (pn) {
1738 pn->flags = ndm->ndm_flags;
1739 err = 0;
1740 }
110b2499 1741 goto out;
1da177e4
LT
1742 }
1743
5208debd 1744 if (dev == NULL)
110b2499 1745 goto out;
5208debd
TG
1746
1747 neigh = neigh_lookup(tbl, dst, dev);
1748 if (neigh == NULL) {
1749 if (!(nlh->nlmsg_flags & NLM_F_CREATE)) {
1750 err = -ENOENT;
110b2499 1751 goto out;
5208debd 1752 }
4ec93edb 1753
5208debd
TG
1754 neigh = __neigh_lookup_errno(tbl, dst, dev);
1755 if (IS_ERR(neigh)) {
1756 err = PTR_ERR(neigh);
110b2499 1757 goto out;
1da177e4 1758 }
1da177e4 1759 } else {
5208debd
TG
1760 if (nlh->nlmsg_flags & NLM_F_EXCL) {
1761 err = -EEXIST;
1762 neigh_release(neigh);
110b2499 1763 goto out;
1da177e4 1764 }
1da177e4 1765
5208debd
TG
1766 if (!(nlh->nlmsg_flags & NLM_F_REPLACE))
1767 flags &= ~NEIGH_UPDATE_F_OVERRIDE;
1768 }
1da177e4 1769
0c5c2d30
EB
1770 if (ndm->ndm_flags & NTF_USE) {
1771 neigh_event_send(neigh, NULL);
1772 err = 0;
1773 } else
1774 err = neigh_update(neigh, lladdr, ndm->ndm_state, flags);
5208debd 1775 neigh_release(neigh);
110b2499 1776 goto out;
1da177e4
LT
1777 }
1778
1779 read_unlock(&neigh_tbl_lock);
5208debd 1780 err = -EAFNOSUPPORT;
1da177e4
LT
1781out:
1782 return err;
1783}
1784
c7fb64db
TG
1785static int neightbl_fill_parms(struct sk_buff *skb, struct neigh_parms *parms)
1786{
ca860fb3
TG
1787 struct nlattr *nest;
1788
1789 nest = nla_nest_start(skb, NDTA_PARMS);
1790 if (nest == NULL)
1791 return -ENOBUFS;
c7fb64db
TG
1792
1793 if (parms->dev)
ca860fb3
TG
1794 NLA_PUT_U32(skb, NDTPA_IFINDEX, parms->dev->ifindex);
1795
1796 NLA_PUT_U32(skb, NDTPA_REFCNT, atomic_read(&parms->refcnt));
1797 NLA_PUT_U32(skb, NDTPA_QUEUE_LEN, parms->queue_len);
1798 NLA_PUT_U32(skb, NDTPA_PROXY_QLEN, parms->proxy_qlen);
1799 NLA_PUT_U32(skb, NDTPA_APP_PROBES, parms->app_probes);
1800 NLA_PUT_U32(skb, NDTPA_UCAST_PROBES, parms->ucast_probes);
1801 NLA_PUT_U32(skb, NDTPA_MCAST_PROBES, parms->mcast_probes);
1802 NLA_PUT_MSECS(skb, NDTPA_REACHABLE_TIME, parms->reachable_time);
1803 NLA_PUT_MSECS(skb, NDTPA_BASE_REACHABLE_TIME,
c7fb64db 1804 parms->base_reachable_time);
ca860fb3
TG
1805 NLA_PUT_MSECS(skb, NDTPA_GC_STALETIME, parms->gc_staletime);
1806 NLA_PUT_MSECS(skb, NDTPA_DELAY_PROBE_TIME, parms->delay_probe_time);
1807 NLA_PUT_MSECS(skb, NDTPA_RETRANS_TIME, parms->retrans_time);
1808 NLA_PUT_MSECS(skb, NDTPA_ANYCAST_DELAY, parms->anycast_delay);
1809 NLA_PUT_MSECS(skb, NDTPA_PROXY_DELAY, parms->proxy_delay);
1810 NLA_PUT_MSECS(skb, NDTPA_LOCKTIME, parms->locktime);
c7fb64db 1811
ca860fb3 1812 return nla_nest_end(skb, nest);
c7fb64db 1813
ca860fb3 1814nla_put_failure:
bc3ed28c
TG
1815 nla_nest_cancel(skb, nest);
1816 return -EMSGSIZE;
c7fb64db
TG
1817}
1818
ca860fb3
TG
1819static int neightbl_fill_info(struct sk_buff *skb, struct neigh_table *tbl,
1820 u32 pid, u32 seq, int type, int flags)
c7fb64db
TG
1821{
1822 struct nlmsghdr *nlh;
1823 struct ndtmsg *ndtmsg;
1824
ca860fb3
TG
1825 nlh = nlmsg_put(skb, pid, seq, type, sizeof(*ndtmsg), flags);
1826 if (nlh == NULL)
26932566 1827 return -EMSGSIZE;
c7fb64db 1828
ca860fb3 1829 ndtmsg = nlmsg_data(nlh);
c7fb64db
TG
1830
1831 read_lock_bh(&tbl->lock);
1832 ndtmsg->ndtm_family = tbl->family;
9ef1d4c7
PM
1833 ndtmsg->ndtm_pad1 = 0;
1834 ndtmsg->ndtm_pad2 = 0;
c7fb64db 1835
ca860fb3
TG
1836 NLA_PUT_STRING(skb, NDTA_NAME, tbl->id);
1837 NLA_PUT_MSECS(skb, NDTA_GC_INTERVAL, tbl->gc_interval);
1838 NLA_PUT_U32(skb, NDTA_THRESH1, tbl->gc_thresh1);
1839 NLA_PUT_U32(skb, NDTA_THRESH2, tbl->gc_thresh2);
1840 NLA_PUT_U32(skb, NDTA_THRESH3, tbl->gc_thresh3);
c7fb64db
TG
1841
1842 {
1843 unsigned long now = jiffies;
1844 unsigned int flush_delta = now - tbl->last_flush;
1845 unsigned int rand_delta = now - tbl->last_rand;
d6bf7817 1846 struct neigh_hash_table *nht;
c7fb64db
TG
1847 struct ndt_config ndc = {
1848 .ndtc_key_len = tbl->key_len,
1849 .ndtc_entry_size = tbl->entry_size,
1850 .ndtc_entries = atomic_read(&tbl->entries),
1851 .ndtc_last_flush = jiffies_to_msecs(flush_delta),
1852 .ndtc_last_rand = jiffies_to_msecs(rand_delta),
c7fb64db
TG
1853 .ndtc_proxy_qlen = tbl->proxy_queue.qlen,
1854 };
1855
d6bf7817
ED
1856 rcu_read_lock_bh();
1857 nht = rcu_dereference_bh(tbl->nht);
1858 ndc.ndtc_hash_rnd = nht->hash_rnd;
1859 ndc.ndtc_hash_mask = nht->hash_mask;
1860 rcu_read_unlock_bh();
1861
ca860fb3 1862 NLA_PUT(skb, NDTA_CONFIG, sizeof(ndc), &ndc);
c7fb64db
TG
1863 }
1864
1865 {
1866 int cpu;
1867 struct ndt_stats ndst;
1868
1869 memset(&ndst, 0, sizeof(ndst));
1870
6f912042 1871 for_each_possible_cpu(cpu) {
c7fb64db
TG
1872 struct neigh_statistics *st;
1873
c7fb64db
TG
1874 st = per_cpu_ptr(tbl->stats, cpu);
1875 ndst.ndts_allocs += st->allocs;
1876 ndst.ndts_destroys += st->destroys;
1877 ndst.ndts_hash_grows += st->hash_grows;
1878 ndst.ndts_res_failed += st->res_failed;
1879 ndst.ndts_lookups += st->lookups;
1880 ndst.ndts_hits += st->hits;
1881 ndst.ndts_rcv_probes_mcast += st->rcv_probes_mcast;
1882 ndst.ndts_rcv_probes_ucast += st->rcv_probes_ucast;
1883 ndst.ndts_periodic_gc_runs += st->periodic_gc_runs;
1884 ndst.ndts_forced_gc_runs += st->forced_gc_runs;
1885 }
1886
ca860fb3 1887 NLA_PUT(skb, NDTA_STATS, sizeof(ndst), &ndst);
c7fb64db
TG
1888 }
1889
1890 BUG_ON(tbl->parms.dev);
1891 if (neightbl_fill_parms(skb, &tbl->parms) < 0)
ca860fb3 1892 goto nla_put_failure;
c7fb64db
TG
1893
1894 read_unlock_bh(&tbl->lock);
ca860fb3 1895 return nlmsg_end(skb, nlh);
c7fb64db 1896
ca860fb3 1897nla_put_failure:
c7fb64db 1898 read_unlock_bh(&tbl->lock);
26932566
PM
1899 nlmsg_cancel(skb, nlh);
1900 return -EMSGSIZE;
c7fb64db
TG
1901}
1902
ca860fb3
TG
1903static int neightbl_fill_param_info(struct sk_buff *skb,
1904 struct neigh_table *tbl,
c7fb64db 1905 struct neigh_parms *parms,
ca860fb3
TG
1906 u32 pid, u32 seq, int type,
1907 unsigned int flags)
c7fb64db
TG
1908{
1909 struct ndtmsg *ndtmsg;
1910 struct nlmsghdr *nlh;
1911
ca860fb3
TG
1912 nlh = nlmsg_put(skb, pid, seq, type, sizeof(*ndtmsg), flags);
1913 if (nlh == NULL)
26932566 1914 return -EMSGSIZE;
c7fb64db 1915
ca860fb3 1916 ndtmsg = nlmsg_data(nlh);
c7fb64db
TG
1917
1918 read_lock_bh(&tbl->lock);
1919 ndtmsg->ndtm_family = tbl->family;
9ef1d4c7
PM
1920 ndtmsg->ndtm_pad1 = 0;
1921 ndtmsg->ndtm_pad2 = 0;
c7fb64db 1922
ca860fb3
TG
1923 if (nla_put_string(skb, NDTA_NAME, tbl->id) < 0 ||
1924 neightbl_fill_parms(skb, parms) < 0)
1925 goto errout;
c7fb64db
TG
1926
1927 read_unlock_bh(&tbl->lock);
ca860fb3
TG
1928 return nlmsg_end(skb, nlh);
1929errout:
c7fb64db 1930 read_unlock_bh(&tbl->lock);
26932566
PM
1931 nlmsg_cancel(skb, nlh);
1932 return -EMSGSIZE;
c7fb64db 1933}
4ec93edb 1934
ef7c79ed 1935static const struct nla_policy nl_neightbl_policy[NDTA_MAX+1] = {
6b3f8674
TG
1936 [NDTA_NAME] = { .type = NLA_STRING },
1937 [NDTA_THRESH1] = { .type = NLA_U32 },
1938 [NDTA_THRESH2] = { .type = NLA_U32 },
1939 [NDTA_THRESH3] = { .type = NLA_U32 },
1940 [NDTA_GC_INTERVAL] = { .type = NLA_U64 },
1941 [NDTA_PARMS] = { .type = NLA_NESTED },
1942};
1943
ef7c79ed 1944static const struct nla_policy nl_ntbl_parm_policy[NDTPA_MAX+1] = {
6b3f8674
TG
1945 [NDTPA_IFINDEX] = { .type = NLA_U32 },
1946 [NDTPA_QUEUE_LEN] = { .type = NLA_U32 },
1947 [NDTPA_PROXY_QLEN] = { .type = NLA_U32 },
1948 [NDTPA_APP_PROBES] = { .type = NLA_U32 },
1949 [NDTPA_UCAST_PROBES] = { .type = NLA_U32 },
1950 [NDTPA_MCAST_PROBES] = { .type = NLA_U32 },
1951 [NDTPA_BASE_REACHABLE_TIME] = { .type = NLA_U64 },
1952 [NDTPA_GC_STALETIME] = { .type = NLA_U64 },
1953 [NDTPA_DELAY_PROBE_TIME] = { .type = NLA_U64 },
1954 [NDTPA_RETRANS_TIME] = { .type = NLA_U64 },
1955 [NDTPA_ANYCAST_DELAY] = { .type = NLA_U64 },
1956 [NDTPA_PROXY_DELAY] = { .type = NLA_U64 },
1957 [NDTPA_LOCKTIME] = { .type = NLA_U64 },
1958};
1959
c8822a4e 1960static int neightbl_set(struct sk_buff *skb, struct nlmsghdr *nlh, void *arg)
c7fb64db 1961{
3b1e0a65 1962 struct net *net = sock_net(skb->sk);
c7fb64db 1963 struct neigh_table *tbl;
6b3f8674
TG
1964 struct ndtmsg *ndtmsg;
1965 struct nlattr *tb[NDTA_MAX+1];
1966 int err;
c7fb64db 1967
6b3f8674
TG
1968 err = nlmsg_parse(nlh, sizeof(*ndtmsg), tb, NDTA_MAX,
1969 nl_neightbl_policy);
1970 if (err < 0)
1971 goto errout;
c7fb64db 1972
6b3f8674
TG
1973 if (tb[NDTA_NAME] == NULL) {
1974 err = -EINVAL;
1975 goto errout;
1976 }
1977
1978 ndtmsg = nlmsg_data(nlh);
c7fb64db
TG
1979 read_lock(&neigh_tbl_lock);
1980 for (tbl = neigh_tables; tbl; tbl = tbl->next) {
1981 if (ndtmsg->ndtm_family && tbl->family != ndtmsg->ndtm_family)
1982 continue;
1983
6b3f8674 1984 if (nla_strcmp(tb[NDTA_NAME], tbl->id) == 0)
c7fb64db
TG
1985 break;
1986 }
1987
1988 if (tbl == NULL) {
1989 err = -ENOENT;
6b3f8674 1990 goto errout_locked;
c7fb64db
TG
1991 }
1992
4ec93edb 1993 /*
c7fb64db
TG
1994 * We acquire tbl->lock to be nice to the periodic timers and
1995 * make sure they always see a consistent set of values.
1996 */
1997 write_lock_bh(&tbl->lock);
1998
6b3f8674
TG
1999 if (tb[NDTA_PARMS]) {
2000 struct nlattr *tbp[NDTPA_MAX+1];
c7fb64db 2001 struct neigh_parms *p;
6b3f8674 2002 int i, ifindex = 0;
c7fb64db 2003
6b3f8674
TG
2004 err = nla_parse_nested(tbp, NDTPA_MAX, tb[NDTA_PARMS],
2005 nl_ntbl_parm_policy);
2006 if (err < 0)
2007 goto errout_tbl_lock;
c7fb64db 2008
6b3f8674
TG
2009 if (tbp[NDTPA_IFINDEX])
2010 ifindex = nla_get_u32(tbp[NDTPA_IFINDEX]);
c7fb64db 2011
97fd5bc7 2012 p = lookup_neigh_parms(tbl, net, ifindex);
c7fb64db
TG
2013 if (p == NULL) {
2014 err = -ENOENT;
6b3f8674 2015 goto errout_tbl_lock;
c7fb64db 2016 }
c7fb64db 2017
6b3f8674
TG
2018 for (i = 1; i <= NDTPA_MAX; i++) {
2019 if (tbp[i] == NULL)
2020 continue;
c7fb64db 2021
6b3f8674
TG
2022 switch (i) {
2023 case NDTPA_QUEUE_LEN:
2024 p->queue_len = nla_get_u32(tbp[i]);
2025 break;
2026 case NDTPA_PROXY_QLEN:
2027 p->proxy_qlen = nla_get_u32(tbp[i]);
2028 break;
2029 case NDTPA_APP_PROBES:
2030 p->app_probes = nla_get_u32(tbp[i]);
2031 break;
2032 case NDTPA_UCAST_PROBES:
2033 p->ucast_probes = nla_get_u32(tbp[i]);
2034 break;
2035 case NDTPA_MCAST_PROBES:
2036 p->mcast_probes = nla_get_u32(tbp[i]);
2037 break;
2038 case NDTPA_BASE_REACHABLE_TIME:
2039 p->base_reachable_time = nla_get_msecs(tbp[i]);
2040 break;
2041 case NDTPA_GC_STALETIME:
2042 p->gc_staletime = nla_get_msecs(tbp[i]);
2043 break;
2044 case NDTPA_DELAY_PROBE_TIME:
2045 p->delay_probe_time = nla_get_msecs(tbp[i]);
2046 break;
2047 case NDTPA_RETRANS_TIME:
2048 p->retrans_time = nla_get_msecs(tbp[i]);
2049 break;
2050 case NDTPA_ANYCAST_DELAY:
2051 p->anycast_delay = nla_get_msecs(tbp[i]);
2052 break;
2053 case NDTPA_PROXY_DELAY:
2054 p->proxy_delay = nla_get_msecs(tbp[i]);
2055 break;
2056 case NDTPA_LOCKTIME:
2057 p->locktime = nla_get_msecs(tbp[i]);
2058 break;
2059 }
2060 }
2061 }
c7fb64db 2062
6b3f8674
TG
2063 if (tb[NDTA_THRESH1])
2064 tbl->gc_thresh1 = nla_get_u32(tb[NDTA_THRESH1]);
c7fb64db 2065
6b3f8674
TG
2066 if (tb[NDTA_THRESH2])
2067 tbl->gc_thresh2 = nla_get_u32(tb[NDTA_THRESH2]);
c7fb64db 2068
6b3f8674
TG
2069 if (tb[NDTA_THRESH3])
2070 tbl->gc_thresh3 = nla_get_u32(tb[NDTA_THRESH3]);
c7fb64db 2071
6b3f8674
TG
2072 if (tb[NDTA_GC_INTERVAL])
2073 tbl->gc_interval = nla_get_msecs(tb[NDTA_GC_INTERVAL]);
c7fb64db
TG
2074
2075 err = 0;
2076
6b3f8674 2077errout_tbl_lock:
c7fb64db 2078 write_unlock_bh(&tbl->lock);
6b3f8674 2079errout_locked:
c7fb64db 2080 read_unlock(&neigh_tbl_lock);
6b3f8674 2081errout:
c7fb64db
TG
2082 return err;
2083}
2084
c8822a4e 2085static int neightbl_dump_info(struct sk_buff *skb, struct netlink_callback *cb)
c7fb64db 2086{
3b1e0a65 2087 struct net *net = sock_net(skb->sk);
ca860fb3
TG
2088 int family, tidx, nidx = 0;
2089 int tbl_skip = cb->args[0];
2090 int neigh_skip = cb->args[1];
c7fb64db
TG
2091 struct neigh_table *tbl;
2092
ca860fb3 2093 family = ((struct rtgenmsg *) nlmsg_data(cb->nlh))->rtgen_family;
c7fb64db
TG
2094
2095 read_lock(&neigh_tbl_lock);
ca860fb3 2096 for (tbl = neigh_tables, tidx = 0; tbl; tbl = tbl->next, tidx++) {
c7fb64db
TG
2097 struct neigh_parms *p;
2098
ca860fb3 2099 if (tidx < tbl_skip || (family && tbl->family != family))
c7fb64db
TG
2100 continue;
2101
ca860fb3
TG
2102 if (neightbl_fill_info(skb, tbl, NETLINK_CB(cb->skb).pid,
2103 cb->nlh->nlmsg_seq, RTM_NEWNEIGHTBL,
2104 NLM_F_MULTI) <= 0)
c7fb64db
TG
2105 break;
2106
426b5303 2107 for (nidx = 0, p = tbl->parms.next; p; p = p->next) {
878628fb 2108 if (!net_eq(neigh_parms_net(p), net))
426b5303
EB
2109 continue;
2110
efc683fc
GK
2111 if (nidx < neigh_skip)
2112 goto next;
c7fb64db 2113
ca860fb3
TG
2114 if (neightbl_fill_param_info(skb, tbl, p,
2115 NETLINK_CB(cb->skb).pid,
2116 cb->nlh->nlmsg_seq,
2117 RTM_NEWNEIGHTBL,
2118 NLM_F_MULTI) <= 0)
c7fb64db 2119 goto out;
efc683fc
GK
2120 next:
2121 nidx++;
c7fb64db
TG
2122 }
2123
ca860fb3 2124 neigh_skip = 0;
c7fb64db
TG
2125 }
2126out:
2127 read_unlock(&neigh_tbl_lock);
ca860fb3
TG
2128 cb->args[0] = tidx;
2129 cb->args[1] = nidx;
c7fb64db
TG
2130
2131 return skb->len;
2132}
1da177e4 2133
8b8aec50
TG
2134static int neigh_fill_info(struct sk_buff *skb, struct neighbour *neigh,
2135 u32 pid, u32 seq, int type, unsigned int flags)
1da177e4
LT
2136{
2137 unsigned long now = jiffies;
1da177e4 2138 struct nda_cacheinfo ci;
8b8aec50
TG
2139 struct nlmsghdr *nlh;
2140 struct ndmsg *ndm;
2141
2142 nlh = nlmsg_put(skb, pid, seq, type, sizeof(*ndm), flags);
2143 if (nlh == NULL)
26932566 2144 return -EMSGSIZE;
1da177e4 2145
8b8aec50
TG
2146 ndm = nlmsg_data(nlh);
2147 ndm->ndm_family = neigh->ops->family;
9ef1d4c7
PM
2148 ndm->ndm_pad1 = 0;
2149 ndm->ndm_pad2 = 0;
8b8aec50
TG
2150 ndm->ndm_flags = neigh->flags;
2151 ndm->ndm_type = neigh->type;
2152 ndm->ndm_ifindex = neigh->dev->ifindex;
1da177e4 2153
8b8aec50
TG
2154 NLA_PUT(skb, NDA_DST, neigh->tbl->key_len, neigh->primary_key);
2155
2156 read_lock_bh(&neigh->lock);
2157 ndm->ndm_state = neigh->nud_state;
0ed8ddf4
ED
2158 if (neigh->nud_state & NUD_VALID) {
2159 char haddr[MAX_ADDR_LEN];
2160
2161 neigh_ha_snapshot(haddr, neigh, neigh->dev);
2162 if (nla_put(skb, NDA_LLADDR, neigh->dev->addr_len, haddr) < 0) {
2163 read_unlock_bh(&neigh->lock);
2164 goto nla_put_failure;
2165 }
8b8aec50
TG
2166 }
2167
b9f5f52c
SH
2168 ci.ndm_used = jiffies_to_clock_t(now - neigh->used);
2169 ci.ndm_confirmed = jiffies_to_clock_t(now - neigh->confirmed);
2170 ci.ndm_updated = jiffies_to_clock_t(now - neigh->updated);
8b8aec50
TG
2171 ci.ndm_refcnt = atomic_read(&neigh->refcnt) - 1;
2172 read_unlock_bh(&neigh->lock);
2173
2174 NLA_PUT_U32(skb, NDA_PROBES, atomic_read(&neigh->probes));
2175 NLA_PUT(skb, NDA_CACHEINFO, sizeof(ci), &ci);
2176
2177 return nlmsg_end(skb, nlh);
2178
2179nla_put_failure:
26932566
PM
2180 nlmsg_cancel(skb, nlh);
2181 return -EMSGSIZE;
1da177e4
LT
2182}
2183
d961db35
TG
2184static void neigh_update_notify(struct neighbour *neigh)
2185{
2186 call_netevent_notifiers(NETEVENT_NEIGH_UPDATE, neigh);
2187 __neigh_notify(neigh, RTM_NEWNEIGH, 0);
2188}
1da177e4
LT
2189
2190static int neigh_dump_table(struct neigh_table *tbl, struct sk_buff *skb,
2191 struct netlink_callback *cb)
2192{
767e97e1 2193 struct net *net = sock_net(skb->sk);
1da177e4
LT
2194 struct neighbour *n;
2195 int rc, h, s_h = cb->args[1];
2196 int idx, s_idx = idx = cb->args[2];
d6bf7817 2197 struct neigh_hash_table *nht;
1da177e4 2198
d6bf7817
ED
2199 rcu_read_lock_bh();
2200 nht = rcu_dereference_bh(tbl->nht);
2201
d6bf7817 2202 for (h = 0; h <= nht->hash_mask; h++) {
1da177e4
LT
2203 if (h < s_h)
2204 continue;
2205 if (h > s_h)
2206 s_idx = 0;
767e97e1
ED
2207 for (n = rcu_dereference_bh(nht->hash_buckets[h]), idx = 0;
2208 n != NULL;
2209 n = rcu_dereference_bh(n->next)) {
09ad9bc7 2210 if (!net_eq(dev_net(n->dev), net))
426b5303 2211 continue;
efc683fc
GK
2212 if (idx < s_idx)
2213 goto next;
1da177e4
LT
2214 if (neigh_fill_info(skb, n, NETLINK_CB(cb->skb).pid,
2215 cb->nlh->nlmsg_seq,
b6544c0b
JHS
2216 RTM_NEWNEIGH,
2217 NLM_F_MULTI) <= 0) {
1da177e4
LT
2218 rc = -1;
2219 goto out;
2220 }
767e97e1 2221next:
efc683fc 2222 idx++;
1da177e4 2223 }
1da177e4
LT
2224 }
2225 rc = skb->len;
2226out:
d6bf7817 2227 rcu_read_unlock_bh();
1da177e4
LT
2228 cb->args[1] = h;
2229 cb->args[2] = idx;
2230 return rc;
2231}
2232
c8822a4e 2233static int neigh_dump_info(struct sk_buff *skb, struct netlink_callback *cb)
1da177e4
LT
2234{
2235 struct neigh_table *tbl;
2236 int t, family, s_t;
2237
2238 read_lock(&neigh_tbl_lock);
8b8aec50 2239 family = ((struct rtgenmsg *) nlmsg_data(cb->nlh))->rtgen_family;
1da177e4
LT
2240 s_t = cb->args[0];
2241
2242 for (tbl = neigh_tables, t = 0; tbl; tbl = tbl->next, t++) {
2243 if (t < s_t || (family && tbl->family != family))
2244 continue;
2245 if (t > s_t)
2246 memset(&cb->args[1], 0, sizeof(cb->args) -
2247 sizeof(cb->args[0]));
2248 if (neigh_dump_table(tbl, skb, cb) < 0)
2249 break;
2250 }
2251 read_unlock(&neigh_tbl_lock);
2252
2253 cb->args[0] = t;
2254 return skb->len;
2255}
2256
2257void neigh_for_each(struct neigh_table *tbl, void (*cb)(struct neighbour *, void *), void *cookie)
2258{
2259 int chain;
d6bf7817 2260 struct neigh_hash_table *nht;
1da177e4 2261
d6bf7817
ED
2262 rcu_read_lock_bh();
2263 nht = rcu_dereference_bh(tbl->nht);
2264
767e97e1 2265 read_lock(&tbl->lock); /* avoid resizes */
d6bf7817 2266 for (chain = 0; chain <= nht->hash_mask; chain++) {
1da177e4
LT
2267 struct neighbour *n;
2268
767e97e1
ED
2269 for (n = rcu_dereference_bh(nht->hash_buckets[chain]);
2270 n != NULL;
2271 n = rcu_dereference_bh(n->next))
1da177e4
LT
2272 cb(n, cookie);
2273 }
d6bf7817
ED
2274 read_unlock(&tbl->lock);
2275 rcu_read_unlock_bh();
1da177e4
LT
2276}
2277EXPORT_SYMBOL(neigh_for_each);
2278
2279/* The tbl->lock must be held as a writer and BH disabled. */
2280void __neigh_for_each_release(struct neigh_table *tbl,
2281 int (*cb)(struct neighbour *))
2282{
2283 int chain;
d6bf7817 2284 struct neigh_hash_table *nht;
1da177e4 2285
d6bf7817
ED
2286 nht = rcu_dereference_protected(tbl->nht,
2287 lockdep_is_held(&tbl->lock));
2288 for (chain = 0; chain <= nht->hash_mask; chain++) {
767e97e1
ED
2289 struct neighbour *n;
2290 struct neighbour __rcu **np;
1da177e4 2291
d6bf7817 2292 np = &nht->hash_buckets[chain];
767e97e1
ED
2293 while ((n = rcu_dereference_protected(*np,
2294 lockdep_is_held(&tbl->lock))) != NULL) {
1da177e4
LT
2295 int release;
2296
2297 write_lock(&n->lock);
2298 release = cb(n);
2299 if (release) {
767e97e1
ED
2300 rcu_assign_pointer(*np,
2301 rcu_dereference_protected(n->next,
2302 lockdep_is_held(&tbl->lock)));
1da177e4
LT
2303 n->dead = 1;
2304 } else
2305 np = &n->next;
2306 write_unlock(&n->lock);
4f494554
TG
2307 if (release)
2308 neigh_cleanup_and_release(n);
1da177e4
LT
2309 }
2310 }
2311}
2312EXPORT_SYMBOL(__neigh_for_each_release);
2313
2314#ifdef CONFIG_PROC_FS
2315
2316static struct neighbour *neigh_get_first(struct seq_file *seq)
2317{
2318 struct neigh_seq_state *state = seq->private;
1218854a 2319 struct net *net = seq_file_net(seq);
d6bf7817 2320 struct neigh_hash_table *nht = state->nht;
1da177e4
LT
2321 struct neighbour *n = NULL;
2322 int bucket = state->bucket;
2323
2324 state->flags &= ~NEIGH_SEQ_IS_PNEIGH;
d6bf7817 2325 for (bucket = 0; bucket <= nht->hash_mask; bucket++) {
767e97e1 2326 n = rcu_dereference_bh(nht->hash_buckets[bucket]);
1da177e4
LT
2327
2328 while (n) {
878628fb 2329 if (!net_eq(dev_net(n->dev), net))
426b5303 2330 goto next;
1da177e4
LT
2331 if (state->neigh_sub_iter) {
2332 loff_t fakep = 0;
2333 void *v;
2334
2335 v = state->neigh_sub_iter(state, n, &fakep);
2336 if (!v)
2337 goto next;
2338 }
2339 if (!(state->flags & NEIGH_SEQ_SKIP_NOARP))
2340 break;
2341 if (n->nud_state & ~NUD_NOARP)
2342 break;
767e97e1
ED
2343next:
2344 n = rcu_dereference_bh(n->next);
1da177e4
LT
2345 }
2346
2347 if (n)
2348 break;
2349 }
2350 state->bucket = bucket;
2351
2352 return n;
2353}
2354
2355static struct neighbour *neigh_get_next(struct seq_file *seq,
2356 struct neighbour *n,
2357 loff_t *pos)
2358{
2359 struct neigh_seq_state *state = seq->private;
1218854a 2360 struct net *net = seq_file_net(seq);
d6bf7817 2361 struct neigh_hash_table *nht = state->nht;
1da177e4
LT
2362
2363 if (state->neigh_sub_iter) {
2364 void *v = state->neigh_sub_iter(state, n, pos);
2365 if (v)
2366 return n;
2367 }
767e97e1 2368 n = rcu_dereference_bh(n->next);
1da177e4
LT
2369
2370 while (1) {
2371 while (n) {
878628fb 2372 if (!net_eq(dev_net(n->dev), net))
426b5303 2373 goto next;
1da177e4
LT
2374 if (state->neigh_sub_iter) {
2375 void *v = state->neigh_sub_iter(state, n, pos);
2376 if (v)
2377 return n;
2378 goto next;
2379 }
2380 if (!(state->flags & NEIGH_SEQ_SKIP_NOARP))
2381 break;
2382
2383 if (n->nud_state & ~NUD_NOARP)
2384 break;
767e97e1
ED
2385next:
2386 n = rcu_dereference_bh(n->next);
1da177e4
LT
2387 }
2388
2389 if (n)
2390 break;
2391
d6bf7817 2392 if (++state->bucket > nht->hash_mask)
1da177e4
LT
2393 break;
2394
767e97e1 2395 n = rcu_dereference_bh(nht->hash_buckets[state->bucket]);
1da177e4
LT
2396 }
2397
2398 if (n && pos)
2399 --(*pos);
2400 return n;
2401}
2402
2403static struct neighbour *neigh_get_idx(struct seq_file *seq, loff_t *pos)
2404{
2405 struct neighbour *n = neigh_get_first(seq);
2406
2407 if (n) {
745e2031 2408 --(*pos);
1da177e4
LT
2409 while (*pos) {
2410 n = neigh_get_next(seq, n, pos);
2411 if (!n)
2412 break;
2413 }
2414 }
2415 return *pos ? NULL : n;
2416}
2417
2418static struct pneigh_entry *pneigh_get_first(struct seq_file *seq)
2419{
2420 struct neigh_seq_state *state = seq->private;
1218854a 2421 struct net *net = seq_file_net(seq);
1da177e4
LT
2422 struct neigh_table *tbl = state->tbl;
2423 struct pneigh_entry *pn = NULL;
2424 int bucket = state->bucket;
2425
2426 state->flags |= NEIGH_SEQ_IS_PNEIGH;
2427 for (bucket = 0; bucket <= PNEIGH_HASHMASK; bucket++) {
2428 pn = tbl->phash_buckets[bucket];
878628fb 2429 while (pn && !net_eq(pneigh_net(pn), net))
426b5303 2430 pn = pn->next;
1da177e4
LT
2431 if (pn)
2432 break;
2433 }
2434 state->bucket = bucket;
2435
2436 return pn;
2437}
2438
2439static struct pneigh_entry *pneigh_get_next(struct seq_file *seq,
2440 struct pneigh_entry *pn,
2441 loff_t *pos)
2442{
2443 struct neigh_seq_state *state = seq->private;
1218854a 2444 struct net *net = seq_file_net(seq);
1da177e4
LT
2445 struct neigh_table *tbl = state->tbl;
2446
2447 pn = pn->next;
2448 while (!pn) {
2449 if (++state->bucket > PNEIGH_HASHMASK)
2450 break;
2451 pn = tbl->phash_buckets[state->bucket];
878628fb 2452 while (pn && !net_eq(pneigh_net(pn), net))
426b5303 2453 pn = pn->next;
1da177e4
LT
2454 if (pn)
2455 break;
2456 }
2457
2458 if (pn && pos)
2459 --(*pos);
2460
2461 return pn;
2462}
2463
2464static struct pneigh_entry *pneigh_get_idx(struct seq_file *seq, loff_t *pos)
2465{
2466 struct pneigh_entry *pn = pneigh_get_first(seq);
2467
2468 if (pn) {
745e2031 2469 --(*pos);
1da177e4
LT
2470 while (*pos) {
2471 pn = pneigh_get_next(seq, pn, pos);
2472 if (!pn)
2473 break;
2474 }
2475 }
2476 return *pos ? NULL : pn;
2477}
2478
2479static void *neigh_get_idx_any(struct seq_file *seq, loff_t *pos)
2480{
2481 struct neigh_seq_state *state = seq->private;
2482 void *rc;
745e2031 2483 loff_t idxpos = *pos;
1da177e4 2484
745e2031 2485 rc = neigh_get_idx(seq, &idxpos);
1da177e4 2486 if (!rc && !(state->flags & NEIGH_SEQ_NEIGH_ONLY))
745e2031 2487 rc = pneigh_get_idx(seq, &idxpos);
1da177e4
LT
2488
2489 return rc;
2490}
2491
2492void *neigh_seq_start(struct seq_file *seq, loff_t *pos, struct neigh_table *tbl, unsigned int neigh_seq_flags)
d6bf7817 2493 __acquires(rcu_bh)
1da177e4
LT
2494{
2495 struct neigh_seq_state *state = seq->private;
1da177e4
LT
2496
2497 state->tbl = tbl;
2498 state->bucket = 0;
2499 state->flags = (neigh_seq_flags & ~NEIGH_SEQ_IS_PNEIGH);
2500
d6bf7817
ED
2501 rcu_read_lock_bh();
2502 state->nht = rcu_dereference_bh(tbl->nht);
767e97e1 2503
745e2031 2504 return *pos ? neigh_get_idx_any(seq, pos) : SEQ_START_TOKEN;
1da177e4
LT
2505}
2506EXPORT_SYMBOL(neigh_seq_start);
2507
2508void *neigh_seq_next(struct seq_file *seq, void *v, loff_t *pos)
2509{
2510 struct neigh_seq_state *state;
2511 void *rc;
2512
2513 if (v == SEQ_START_TOKEN) {
bff69732 2514 rc = neigh_get_first(seq);
1da177e4
LT
2515 goto out;
2516 }
2517
2518 state = seq->private;
2519 if (!(state->flags & NEIGH_SEQ_IS_PNEIGH)) {
2520 rc = neigh_get_next(seq, v, NULL);
2521 if (rc)
2522 goto out;
2523 if (!(state->flags & NEIGH_SEQ_NEIGH_ONLY))
2524 rc = pneigh_get_first(seq);
2525 } else {
2526 BUG_ON(state->flags & NEIGH_SEQ_NEIGH_ONLY);
2527 rc = pneigh_get_next(seq, v, NULL);
2528 }
2529out:
2530 ++(*pos);
2531 return rc;
2532}
2533EXPORT_SYMBOL(neigh_seq_next);
2534
2535void neigh_seq_stop(struct seq_file *seq, void *v)
d6bf7817 2536 __releases(rcu_bh)
1da177e4 2537{
d6bf7817 2538 rcu_read_unlock_bh();
1da177e4
LT
2539}
2540EXPORT_SYMBOL(neigh_seq_stop);
2541
2542/* statistics via seq_file */
2543
2544static void *neigh_stat_seq_start(struct seq_file *seq, loff_t *pos)
2545{
81c1ebfc 2546 struct neigh_table *tbl = seq->private;
1da177e4
LT
2547 int cpu;
2548
2549 if (*pos == 0)
2550 return SEQ_START_TOKEN;
4ec93edb 2551
0f23174a 2552 for (cpu = *pos-1; cpu < nr_cpu_ids; ++cpu) {
1da177e4
LT
2553 if (!cpu_possible(cpu))
2554 continue;
2555 *pos = cpu+1;
2556 return per_cpu_ptr(tbl->stats, cpu);
2557 }
2558 return NULL;
2559}
2560
2561static void *neigh_stat_seq_next(struct seq_file *seq, void *v, loff_t *pos)
2562{
81c1ebfc 2563 struct neigh_table *tbl = seq->private;
1da177e4
LT
2564 int cpu;
2565
0f23174a 2566 for (cpu = *pos; cpu < nr_cpu_ids; ++cpu) {
1da177e4
LT
2567 if (!cpu_possible(cpu))
2568 continue;
2569 *pos = cpu+1;
2570 return per_cpu_ptr(tbl->stats, cpu);
2571 }
2572 return NULL;
2573}
2574
2575static void neigh_stat_seq_stop(struct seq_file *seq, void *v)
2576{
2577
2578}
2579
2580static int neigh_stat_seq_show(struct seq_file *seq, void *v)
2581{
81c1ebfc 2582 struct neigh_table *tbl = seq->private;
1da177e4
LT
2583 struct neigh_statistics *st = v;
2584
2585 if (v == SEQ_START_TOKEN) {
9a6d276e 2586 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");
1da177e4
LT
2587 return 0;
2588 }
2589
2590 seq_printf(seq, "%08x %08lx %08lx %08lx %08lx %08lx %08lx "
9a6d276e 2591 "%08lx %08lx %08lx %08lx %08lx\n",
1da177e4
LT
2592 atomic_read(&tbl->entries),
2593
2594 st->allocs,
2595 st->destroys,
2596 st->hash_grows,
2597
2598 st->lookups,
2599 st->hits,
2600
2601 st->res_failed,
2602
2603 st->rcv_probes_mcast,
2604 st->rcv_probes_ucast,
2605
2606 st->periodic_gc_runs,
9a6d276e
NH
2607 st->forced_gc_runs,
2608 st->unres_discards
1da177e4
LT
2609 );
2610
2611 return 0;
2612}
2613
f690808e 2614static const struct seq_operations neigh_stat_seq_ops = {
1da177e4
LT
2615 .start = neigh_stat_seq_start,
2616 .next = neigh_stat_seq_next,
2617 .stop = neigh_stat_seq_stop,
2618 .show = neigh_stat_seq_show,
2619};
2620
2621static int neigh_stat_seq_open(struct inode *inode, struct file *file)
2622{
2623 int ret = seq_open(file, &neigh_stat_seq_ops);
2624
2625 if (!ret) {
2626 struct seq_file *sf = file->private_data;
81c1ebfc 2627 sf->private = PDE(inode)->data;
1da177e4
LT
2628 }
2629 return ret;
2630};
2631
9a32144e 2632static const struct file_operations neigh_stat_seq_fops = {
1da177e4
LT
2633 .owner = THIS_MODULE,
2634 .open = neigh_stat_seq_open,
2635 .read = seq_read,
2636 .llseek = seq_lseek,
2637 .release = seq_release,
2638};
2639
2640#endif /* CONFIG_PROC_FS */
2641
339bf98f
TG
2642static inline size_t neigh_nlmsg_size(void)
2643{
2644 return NLMSG_ALIGN(sizeof(struct ndmsg))
2645 + nla_total_size(MAX_ADDR_LEN) /* NDA_DST */
2646 + nla_total_size(MAX_ADDR_LEN) /* NDA_LLADDR */
2647 + nla_total_size(sizeof(struct nda_cacheinfo))
2648 + nla_total_size(4); /* NDA_PROBES */
2649}
2650
b8673311 2651static void __neigh_notify(struct neighbour *n, int type, int flags)
1da177e4 2652{
c346dca1 2653 struct net *net = dev_net(n->dev);
8b8aec50 2654 struct sk_buff *skb;
b8673311 2655 int err = -ENOBUFS;
1da177e4 2656
339bf98f 2657 skb = nlmsg_new(neigh_nlmsg_size(), GFP_ATOMIC);
8b8aec50 2658 if (skb == NULL)
b8673311 2659 goto errout;
1da177e4 2660
b8673311 2661 err = neigh_fill_info(skb, n, 0, 0, type, flags);
26932566
PM
2662 if (err < 0) {
2663 /* -EMSGSIZE implies BUG in neigh_nlmsg_size() */
2664 WARN_ON(err == -EMSGSIZE);
2665 kfree_skb(skb);
2666 goto errout;
2667 }
1ce85fe4
PNA
2668 rtnl_notify(skb, net, 0, RTNLGRP_NEIGH, NULL, GFP_ATOMIC);
2669 return;
b8673311
TG
2670errout:
2671 if (err < 0)
426b5303 2672 rtnl_set_sk_err(net, RTNLGRP_NEIGH, err);
1da177e4
LT
2673}
2674
d961db35 2675#ifdef CONFIG_ARPD
b8673311 2676void neigh_app_ns(struct neighbour *n)
1da177e4 2677{
b8673311
TG
2678 __neigh_notify(n, RTM_GETNEIGH, NLM_F_REQUEST);
2679}
0a204500 2680EXPORT_SYMBOL(neigh_app_ns);
1da177e4
LT
2681#endif /* CONFIG_ARPD */
2682
2683#ifdef CONFIG_SYSCTL
2684
54716e3b
EB
2685#define NEIGH_VARS_MAX 19
2686
1da177e4
LT
2687static struct neigh_sysctl_table {
2688 struct ctl_table_header *sysctl_header;
54716e3b 2689 struct ctl_table neigh_vars[NEIGH_VARS_MAX];
c3bac5a7 2690 char *dev_name;
ab32ea5d 2691} neigh_sysctl_template __read_mostly = {
1da177e4
LT
2692 .neigh_vars = {
2693 {
1da177e4
LT
2694 .procname = "mcast_solicit",
2695 .maxlen = sizeof(int),
2696 .mode = 0644,
6d9f239a 2697 .proc_handler = proc_dointvec,
1da177e4
LT
2698 },
2699 {
1da177e4
LT
2700 .procname = "ucast_solicit",
2701 .maxlen = sizeof(int),
2702 .mode = 0644,
6d9f239a 2703 .proc_handler = proc_dointvec,
1da177e4
LT
2704 },
2705 {
1da177e4
LT
2706 .procname = "app_solicit",
2707 .maxlen = sizeof(int),
2708 .mode = 0644,
6d9f239a 2709 .proc_handler = proc_dointvec,
1da177e4
LT
2710 },
2711 {
1da177e4
LT
2712 .procname = "retrans_time",
2713 .maxlen = sizeof(int),
2714 .mode = 0644,
6d9f239a 2715 .proc_handler = proc_dointvec_userhz_jiffies,
1da177e4
LT
2716 },
2717 {
1da177e4
LT
2718 .procname = "base_reachable_time",
2719 .maxlen = sizeof(int),
2720 .mode = 0644,
6d9f239a 2721 .proc_handler = proc_dointvec_jiffies,
1da177e4
LT
2722 },
2723 {
1da177e4
LT
2724 .procname = "delay_first_probe_time",
2725 .maxlen = sizeof(int),
2726 .mode = 0644,
6d9f239a 2727 .proc_handler = proc_dointvec_jiffies,
1da177e4
LT
2728 },
2729 {
1da177e4
LT
2730 .procname = "gc_stale_time",
2731 .maxlen = sizeof(int),
2732 .mode = 0644,
6d9f239a 2733 .proc_handler = proc_dointvec_jiffies,
1da177e4
LT
2734 },
2735 {
1da177e4
LT
2736 .procname = "unres_qlen",
2737 .maxlen = sizeof(int),
2738 .mode = 0644,
6d9f239a 2739 .proc_handler = proc_dointvec,
1da177e4
LT
2740 },
2741 {
1da177e4
LT
2742 .procname = "proxy_qlen",
2743 .maxlen = sizeof(int),
2744 .mode = 0644,
6d9f239a 2745 .proc_handler = proc_dointvec,
1da177e4
LT
2746 },
2747 {
1da177e4
LT
2748 .procname = "anycast_delay",
2749 .maxlen = sizeof(int),
2750 .mode = 0644,
6d9f239a 2751 .proc_handler = proc_dointvec_userhz_jiffies,
1da177e4
LT
2752 },
2753 {
1da177e4
LT
2754 .procname = "proxy_delay",
2755 .maxlen = sizeof(int),
2756 .mode = 0644,
6d9f239a 2757 .proc_handler = proc_dointvec_userhz_jiffies,
1da177e4
LT
2758 },
2759 {
1da177e4
LT
2760 .procname = "locktime",
2761 .maxlen = sizeof(int),
2762 .mode = 0644,
6d9f239a 2763 .proc_handler = proc_dointvec_userhz_jiffies,
1da177e4 2764 },
d12af679 2765 {
d12af679
EB
2766 .procname = "retrans_time_ms",
2767 .maxlen = sizeof(int),
2768 .mode = 0644,
6d9f239a 2769 .proc_handler = proc_dointvec_ms_jiffies,
d12af679
EB
2770 },
2771 {
d12af679
EB
2772 .procname = "base_reachable_time_ms",
2773 .maxlen = sizeof(int),
2774 .mode = 0644,
6d9f239a 2775 .proc_handler = proc_dointvec_ms_jiffies,
d12af679 2776 },
1da177e4 2777 {
1da177e4
LT
2778 .procname = "gc_interval",
2779 .maxlen = sizeof(int),
2780 .mode = 0644,
6d9f239a 2781 .proc_handler = proc_dointvec_jiffies,
1da177e4
LT
2782 },
2783 {
1da177e4
LT
2784 .procname = "gc_thresh1",
2785 .maxlen = sizeof(int),
2786 .mode = 0644,
6d9f239a 2787 .proc_handler = proc_dointvec,
1da177e4
LT
2788 },
2789 {
1da177e4
LT
2790 .procname = "gc_thresh2",
2791 .maxlen = sizeof(int),
2792 .mode = 0644,
6d9f239a 2793 .proc_handler = proc_dointvec,
1da177e4
LT
2794 },
2795 {
1da177e4
LT
2796 .procname = "gc_thresh3",
2797 .maxlen = sizeof(int),
2798 .mode = 0644,
6d9f239a 2799 .proc_handler = proc_dointvec,
1da177e4 2800 },
c3bac5a7 2801 {},
1da177e4
LT
2802 },
2803};
2804
2805int neigh_sysctl_register(struct net_device *dev, struct neigh_parms *p,
54716e3b 2806 char *p_name, proc_handler *handler)
1da177e4 2807{
3c607bbb 2808 struct neigh_sysctl_table *t;
1da177e4 2809 const char *dev_name_source = NULL;
c3bac5a7
PE
2810
2811#define NEIGH_CTL_PATH_ROOT 0
2812#define NEIGH_CTL_PATH_PROTO 1
2813#define NEIGH_CTL_PATH_NEIGH 2
2814#define NEIGH_CTL_PATH_DEV 3
2815
2816 struct ctl_path neigh_path[] = {
f8572d8f
EB
2817 { .procname = "net", },
2818 { .procname = "proto", },
2819 { .procname = "neigh", },
2820 { .procname = "default", },
c3bac5a7
PE
2821 { },
2822 };
1da177e4 2823
3c607bbb 2824 t = kmemdup(&neigh_sysctl_template, sizeof(*t), GFP_KERNEL);
1da177e4 2825 if (!t)
3c607bbb
PE
2826 goto err;
2827
1da177e4
LT
2828 t->neigh_vars[0].data = &p->mcast_probes;
2829 t->neigh_vars[1].data = &p->ucast_probes;
2830 t->neigh_vars[2].data = &p->app_probes;
2831 t->neigh_vars[3].data = &p->retrans_time;
2832 t->neigh_vars[4].data = &p->base_reachable_time;
2833 t->neigh_vars[5].data = &p->delay_probe_time;
2834 t->neigh_vars[6].data = &p->gc_staletime;
2835 t->neigh_vars[7].data = &p->queue_len;
2836 t->neigh_vars[8].data = &p->proxy_qlen;
2837 t->neigh_vars[9].data = &p->anycast_delay;
2838 t->neigh_vars[10].data = &p->proxy_delay;
2839 t->neigh_vars[11].data = &p->locktime;
d12af679
EB
2840 t->neigh_vars[12].data = &p->retrans_time;
2841 t->neigh_vars[13].data = &p->base_reachable_time;
1da177e4
LT
2842
2843 if (dev) {
2844 dev_name_source = dev->name;
d12af679
EB
2845 /* Terminate the table early */
2846 memset(&t->neigh_vars[14], 0, sizeof(t->neigh_vars[14]));
1da177e4 2847 } else {
c3bac5a7 2848 dev_name_source = neigh_path[NEIGH_CTL_PATH_DEV].procname;
d12af679
EB
2849 t->neigh_vars[14].data = (int *)(p + 1);
2850 t->neigh_vars[15].data = (int *)(p + 1) + 1;
2851 t->neigh_vars[16].data = (int *)(p + 1) + 2;
2852 t->neigh_vars[17].data = (int *)(p + 1) + 3;
1da177e4
LT
2853 }
2854
1da177e4 2855
f8572d8f 2856 if (handler) {
1da177e4
LT
2857 /* RetransTime */
2858 t->neigh_vars[3].proc_handler = handler;
1da177e4
LT
2859 t->neigh_vars[3].extra1 = dev;
2860 /* ReachableTime */
2861 t->neigh_vars[4].proc_handler = handler;
1da177e4
LT
2862 t->neigh_vars[4].extra1 = dev;
2863 /* RetransTime (in milliseconds)*/
d12af679 2864 t->neigh_vars[12].proc_handler = handler;
d12af679 2865 t->neigh_vars[12].extra1 = dev;
1da177e4 2866 /* ReachableTime (in milliseconds) */
d12af679 2867 t->neigh_vars[13].proc_handler = handler;
d12af679 2868 t->neigh_vars[13].extra1 = dev;
1da177e4
LT
2869 }
2870
c3bac5a7
PE
2871 t->dev_name = kstrdup(dev_name_source, GFP_KERNEL);
2872 if (!t->dev_name)
1da177e4 2873 goto free;
1da177e4 2874
c3bac5a7 2875 neigh_path[NEIGH_CTL_PATH_DEV].procname = t->dev_name;
c3bac5a7 2876 neigh_path[NEIGH_CTL_PATH_PROTO].procname = p_name;
1da177e4 2877
4ab438fc 2878 t->sysctl_header =
57da52c1 2879 register_net_sysctl_table(neigh_parms_net(p), neigh_path, t->neigh_vars);
3c607bbb 2880 if (!t->sysctl_header)
1da177e4 2881 goto free_procname;
3c607bbb 2882
1da177e4
LT
2883 p->sysctl_table = t;
2884 return 0;
2885
3c607bbb 2886free_procname:
c3bac5a7 2887 kfree(t->dev_name);
3c607bbb 2888free:
1da177e4 2889 kfree(t);
3c607bbb
PE
2890err:
2891 return -ENOBUFS;
1da177e4 2892}
0a204500 2893EXPORT_SYMBOL(neigh_sysctl_register);
1da177e4
LT
2894
2895void neigh_sysctl_unregister(struct neigh_parms *p)
2896{
2897 if (p->sysctl_table) {
2898 struct neigh_sysctl_table *t = p->sysctl_table;
2899 p->sysctl_table = NULL;
2900 unregister_sysctl_table(t->sysctl_header);
c3bac5a7 2901 kfree(t->dev_name);
1da177e4
LT
2902 kfree(t);
2903 }
2904}
0a204500 2905EXPORT_SYMBOL(neigh_sysctl_unregister);
1da177e4
LT
2906
2907#endif /* CONFIG_SYSCTL */
2908
c8822a4e
TG
2909static int __init neigh_init(void)
2910{
2911 rtnl_register(PF_UNSPEC, RTM_NEWNEIGH, neigh_add, NULL);
2912 rtnl_register(PF_UNSPEC, RTM_DELNEIGH, neigh_delete, NULL);
2913 rtnl_register(PF_UNSPEC, RTM_GETNEIGH, NULL, neigh_dump_info);
2914
2915 rtnl_register(PF_UNSPEC, RTM_GETNEIGHTBL, NULL, neightbl_dump_info);
2916 rtnl_register(PF_UNSPEC, RTM_SETNEIGHTBL, neightbl_set, NULL);
2917
2918 return 0;
2919}
2920
2921subsys_initcall(neigh_init);
2922