blob: b165b96355bfc05245b43fae754f8358942e217f [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090018#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <linux/types.h>
20#include <linux/kernel.h>
21#include <linux/module.h>
22#include <linux/socket.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#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>
Eric W. Biederman457c4cb2007-09-12 12:01:34 +020029#include <net/net_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <net/neighbour.h>
31#include <net/dst.h>
32#include <net/sock.h>
Tom Tucker8d717402006-07-30 20:43:36 -070033#include <net/netevent.h>
Thomas Grafa14a49d2006-08-07 17:53:08 -070034#include <net/netlink.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include <linux/rtnetlink.h>
36#include <linux/random.h>
Paulo Marques543537b2005-06-23 00:09:02 -070037#include <linux/string.h>
vignesh babuc3609d52007-08-24 22:27:55 -070038#include <linux/log2.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
40#define NEIGH_DEBUG 1
41
42#define NEIGH_PRINTK(x...) printk(x)
43#define NEIGH_NOPRINTK(x...) do { ; } while(0)
44#define NEIGH_PRINTK0 NEIGH_PRINTK
45#define NEIGH_PRINTK1 NEIGH_NOPRINTK
46#define NEIGH_PRINTK2 NEIGH_NOPRINTK
47
48#if NEIGH_DEBUG >= 1
49#undef NEIGH_PRINTK1
50#define NEIGH_PRINTK1 NEIGH_PRINTK
51#endif
52#if NEIGH_DEBUG >= 2
53#undef NEIGH_PRINTK2
54#define NEIGH_PRINTK2 NEIGH_PRINTK
55#endif
56
57#define PNEIGH_HASHMASK 0xF
58
59static void neigh_timer_handler(unsigned long arg);
Thomas Grafd961db32007-08-08 23:12:56 -070060static void __neigh_notify(struct neighbour *n, int type, int flags);
61static void neigh_update_notify(struct neighbour *neigh);
Linus Torvalds1da177e2005-04-16 15:20:36 -070062static int pneigh_ifdown(struct neigh_table *tbl, struct net_device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070063
64static struct neigh_table *neigh_tables;
Amos Waterland45fc3b12005-09-24 16:53:16 -070065#ifdef CONFIG_PROC_FS
Arjan van de Ven9a321442007-02-12 00:55:35 -080066static const struct file_operations neigh_stat_seq_fops;
Amos Waterland45fc3b12005-09-24 16:53:16 -070067#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
69/*
70 Neighbour hash table buckets are protected with rwlock tbl->lock.
71
72 - All the scans/updates to hash buckets MUST be made under this lock.
73 - NOTHING clever should be made under this lock: no callbacks
74 to protocol backends, no attempts to send something to network.
75 It will result in deadlocks, if backend/driver wants to use neighbour
76 cache.
77 - If the entry requires some non-trivial actions, increase
78 its reference count and release table lock.
79
80 Neighbour entries are protected:
81 - with reference count.
82 - with rwlock neigh->lock
83
84 Reference count prevents destruction.
85
86 neigh->lock mainly serializes ll address data and its validity state.
87 However, the same lock is used to protect another entry fields:
88 - timer
89 - resolution queue
90
91 Again, nothing clever shall be made under neigh->lock,
92 the most complicated procedure, which we allow is dev->hard_header.
93 It is supposed, that dev->hard_header is simplistic and does
94 not make callbacks to neighbour tables.
95
96 The last lock is neigh_tbl_lock. It is pure SMP lock, protecting
97 list of neighbour tables. This list is used only in process context,
98 */
99
100static DEFINE_RWLOCK(neigh_tbl_lock);
101
102static int neigh_blackhole(struct sk_buff *skb)
103{
104 kfree_skb(skb);
105 return -ENETDOWN;
106}
107
Thomas Graf4f494552007-08-08 23:12:36 -0700108static void neigh_cleanup_and_release(struct neighbour *neigh)
109{
110 if (neigh->parms->neigh_cleanup)
111 neigh->parms->neigh_cleanup(neigh);
112
Thomas Grafd961db32007-08-08 23:12:56 -0700113 __neigh_notify(neigh, RTM_DELNEIGH, 0);
Thomas Graf4f494552007-08-08 23:12:36 -0700114 neigh_release(neigh);
115}
116
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117/*
118 * It is random distribution in the interval (1/2)*base...(3/2)*base.
119 * It corresponds to default IPv6 settings and is not overridable,
120 * because it is really reasonable choice.
121 */
122
123unsigned long neigh_rand_reach_time(unsigned long base)
124{
Eric Dumazeta02cec22010-09-22 20:43:57 +0000125 return base ? (net_random() % base) + (base >> 1) : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126}
YOSHIFUJI Hideaki0a204502008-03-24 18:39:10 +0900127EXPORT_SYMBOL(neigh_rand_reach_time);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128
129
130static int neigh_forced_gc(struct neigh_table *tbl)
131{
132 int shrunk = 0;
133 int i;
Eric Dumazetd6bf7812010-10-04 06:15:44 +0000134 struct neigh_hash_table *nht;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135
136 NEIGH_CACHE_STAT_INC(tbl, forced_gc_runs);
137
138 write_lock_bh(&tbl->lock);
Eric Dumazetd6bf7812010-10-04 06:15:44 +0000139 nht = rcu_dereference_protected(tbl->nht,
140 lockdep_is_held(&tbl->lock));
141 for (i = 0; i <= nht->hash_mask; i++) {
Eric Dumazet767e97e2010-10-06 17:49:21 -0700142 struct neighbour *n;
143 struct neighbour __rcu **np;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144
Eric Dumazetd6bf7812010-10-04 06:15:44 +0000145 np = &nht->hash_buckets[i];
Eric Dumazet767e97e2010-10-06 17:49:21 -0700146 while ((n = rcu_dereference_protected(*np,
147 lockdep_is_held(&tbl->lock))) != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 /* Neighbour record may be discarded if:
149 * - nobody refers to it.
150 * - it is not permanent
151 */
152 write_lock(&n->lock);
153 if (atomic_read(&n->refcnt) == 1 &&
154 !(n->nud_state & NUD_PERMANENT)) {
Eric Dumazet767e97e2010-10-06 17:49:21 -0700155 rcu_assign_pointer(*np,
156 rcu_dereference_protected(n->next,
157 lockdep_is_held(&tbl->lock)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 n->dead = 1;
159 shrunk = 1;
160 write_unlock(&n->lock);
Thomas Graf4f494552007-08-08 23:12:36 -0700161 neigh_cleanup_and_release(n);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 continue;
163 }
164 write_unlock(&n->lock);
165 np = &n->next;
166 }
167 }
168
169 tbl->last_flush = jiffies;
170
171 write_unlock_bh(&tbl->lock);
172
173 return shrunk;
174}
175
Pavel Emelyanova43d8992007-12-20 15:49:05 -0800176static void neigh_add_timer(struct neighbour *n, unsigned long when)
177{
178 neigh_hold(n);
179 if (unlikely(mod_timer(&n->timer, when))) {
180 printk("NEIGH: BUG, double timer add, state is %x\n",
181 n->nud_state);
182 dump_stack();
183 }
184}
185
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186static int neigh_del_timer(struct neighbour *n)
187{
188 if ((n->nud_state & NUD_IN_TIMER) &&
189 del_timer(&n->timer)) {
190 neigh_release(n);
191 return 1;
192 }
193 return 0;
194}
195
196static void pneigh_queue_purge(struct sk_buff_head *list)
197{
198 struct sk_buff *skb;
199
200 while ((skb = skb_dequeue(list)) != NULL) {
201 dev_put(skb->dev);
202 kfree_skb(skb);
203 }
204}
205
Herbert Xu49636bb2005-10-23 17:18:00 +1000206static void neigh_flush_dev(struct neigh_table *tbl, struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207{
208 int i;
Eric Dumazetd6bf7812010-10-04 06:15:44 +0000209 struct neigh_hash_table *nht;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210
Eric Dumazetd6bf7812010-10-04 06:15:44 +0000211 nht = rcu_dereference_protected(tbl->nht,
212 lockdep_is_held(&tbl->lock));
213
214 for (i = 0; i <= nht->hash_mask; i++) {
Eric Dumazet767e97e2010-10-06 17:49:21 -0700215 struct neighbour *n;
216 struct neighbour __rcu **np = &nht->hash_buckets[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217
Eric Dumazet767e97e2010-10-06 17:49:21 -0700218 while ((n = rcu_dereference_protected(*np,
219 lockdep_is_held(&tbl->lock))) != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 if (dev && n->dev != dev) {
221 np = &n->next;
222 continue;
223 }
Eric Dumazet767e97e2010-10-06 17:49:21 -0700224 rcu_assign_pointer(*np,
225 rcu_dereference_protected(n->next,
226 lockdep_is_held(&tbl->lock)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 write_lock(&n->lock);
228 neigh_del_timer(n);
229 n->dead = 1;
230
231 if (atomic_read(&n->refcnt) != 1) {
232 /* The most unpleasant situation.
233 We must destroy neighbour entry,
234 but someone still uses it.
235
236 The destroy will be delayed until
237 the last user releases us, but
238 we must kill timers etc. and move
239 it to safe state.
240 */
241 skb_queue_purge(&n->arp_queue);
242 n->output = neigh_blackhole;
243 if (n->nud_state & NUD_VALID)
244 n->nud_state = NUD_NOARP;
245 else
246 n->nud_state = NUD_NONE;
247 NEIGH_PRINTK2("neigh %p is stray.\n", n);
248 }
249 write_unlock(&n->lock);
Thomas Graf4f494552007-08-08 23:12:36 -0700250 neigh_cleanup_and_release(n);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 }
252 }
Herbert Xu49636bb2005-10-23 17:18:00 +1000253}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254
Herbert Xu49636bb2005-10-23 17:18:00 +1000255void neigh_changeaddr(struct neigh_table *tbl, struct net_device *dev)
256{
257 write_lock_bh(&tbl->lock);
258 neigh_flush_dev(tbl, dev);
259 write_unlock_bh(&tbl->lock);
260}
YOSHIFUJI Hideaki0a204502008-03-24 18:39:10 +0900261EXPORT_SYMBOL(neigh_changeaddr);
Herbert Xu49636bb2005-10-23 17:18:00 +1000262
263int neigh_ifdown(struct neigh_table *tbl, struct net_device *dev)
264{
265 write_lock_bh(&tbl->lock);
266 neigh_flush_dev(tbl, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 pneigh_ifdown(tbl, dev);
268 write_unlock_bh(&tbl->lock);
269
270 del_timer_sync(&tbl->proxy_timer);
271 pneigh_queue_purge(&tbl->proxy_queue);
272 return 0;
273}
YOSHIFUJI Hideaki0a204502008-03-24 18:39:10 +0900274EXPORT_SYMBOL(neigh_ifdown);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275
276static struct neighbour *neigh_alloc(struct neigh_table *tbl)
277{
278 struct neighbour *n = NULL;
279 unsigned long now = jiffies;
280 int entries;
281
282 entries = atomic_inc_return(&tbl->entries) - 1;
283 if (entries >= tbl->gc_thresh3 ||
284 (entries >= tbl->gc_thresh2 &&
285 time_after(now, tbl->last_flush + 5 * HZ))) {
286 if (!neigh_forced_gc(tbl) &&
287 entries >= tbl->gc_thresh3)
288 goto out_entries;
289 }
290
Robert P. J. Dayc3762222007-02-10 01:45:03 -0800291 n = kmem_cache_zalloc(tbl->kmem_cachep, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 if (!n)
293 goto out_entries;
294
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 skb_queue_head_init(&n->arp_queue);
296 rwlock_init(&n->lock);
Eric Dumazet0ed8ddf2010-10-07 10:44:07 +0000297 seqlock_init(&n->ha_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 n->updated = n->used = now;
299 n->nud_state = NUD_NONE;
300 n->output = neigh_blackhole;
301 n->parms = neigh_parms_clone(&tbl->parms);
Pavel Emelyanovb24b8a22008-01-23 21:20:07 -0800302 setup_timer(&n->timer, neigh_timer_handler, (unsigned long)n);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303
304 NEIGH_CACHE_STAT_INC(tbl, allocs);
305 n->tbl = tbl;
306 atomic_set(&n->refcnt, 1);
307 n->dead = 1;
308out:
309 return n;
310
311out_entries:
312 atomic_dec(&tbl->entries);
313 goto out;
314}
315
Eric Dumazetd6bf7812010-10-04 06:15:44 +0000316static struct neigh_hash_table *neigh_hash_alloc(unsigned int entries)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317{
Eric Dumazetd6bf7812010-10-04 06:15:44 +0000318 size_t size = entries * sizeof(struct neighbour *);
319 struct neigh_hash_table *ret;
320 struct neighbour **buckets;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321
Eric Dumazetd6bf7812010-10-04 06:15:44 +0000322 ret = kmalloc(sizeof(*ret), GFP_ATOMIC);
323 if (!ret)
324 return NULL;
325 if (size <= PAGE_SIZE)
326 buckets = kzalloc(size, GFP_ATOMIC);
327 else
328 buckets = (struct neighbour **)
329 __get_free_pages(GFP_ATOMIC | __GFP_ZERO,
330 get_order(size));
331 if (!buckets) {
332 kfree(ret);
333 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 }
Eric Dumazet767e97e2010-10-06 17:49:21 -0700335 rcu_assign_pointer(ret->hash_buckets, buckets);
Eric Dumazetd6bf7812010-10-04 06:15:44 +0000336 ret->hash_mask = entries - 1;
337 get_random_bytes(&ret->hash_rnd, sizeof(ret->hash_rnd));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 return ret;
339}
340
Eric Dumazetd6bf7812010-10-04 06:15:44 +0000341static void neigh_hash_free_rcu(struct rcu_head *head)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342{
Eric Dumazetd6bf7812010-10-04 06:15:44 +0000343 struct neigh_hash_table *nht = container_of(head,
344 struct neigh_hash_table,
345 rcu);
346 size_t size = (nht->hash_mask + 1) * sizeof(struct neighbour *);
347 struct neighbour **buckets = nht->hash_buckets;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348
349 if (size <= PAGE_SIZE)
Eric Dumazetd6bf7812010-10-04 06:15:44 +0000350 kfree(buckets);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 else
Eric Dumazetd6bf7812010-10-04 06:15:44 +0000352 free_pages((unsigned long)buckets, get_order(size));
353 kfree(nht);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354}
355
Eric Dumazetd6bf7812010-10-04 06:15:44 +0000356static struct neigh_hash_table *neigh_hash_grow(struct neigh_table *tbl,
357 unsigned long new_entries)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358{
Eric Dumazetd6bf7812010-10-04 06:15:44 +0000359 unsigned int i, hash;
360 struct neigh_hash_table *new_nht, *old_nht;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361
362 NEIGH_CACHE_STAT_INC(tbl, hash_grows);
363
vignesh babuc3609d52007-08-24 22:27:55 -0700364 BUG_ON(!is_power_of_2(new_entries));
Eric Dumazetd6bf7812010-10-04 06:15:44 +0000365 old_nht = rcu_dereference_protected(tbl->nht,
366 lockdep_is_held(&tbl->lock));
367 new_nht = neigh_hash_alloc(new_entries);
368 if (!new_nht)
369 return old_nht;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370
Eric Dumazetd6bf7812010-10-04 06:15:44 +0000371 for (i = 0; i <= old_nht->hash_mask; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 struct neighbour *n, *next;
373
Eric Dumazet767e97e2010-10-06 17:49:21 -0700374 for (n = rcu_dereference_protected(old_nht->hash_buckets[i],
375 lockdep_is_held(&tbl->lock));
Eric Dumazetd6bf7812010-10-04 06:15:44 +0000376 n != NULL;
377 n = next) {
378 hash = tbl->hash(n->primary_key, n->dev,
379 new_nht->hash_rnd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380
Eric Dumazetd6bf7812010-10-04 06:15:44 +0000381 hash &= new_nht->hash_mask;
Eric Dumazet767e97e2010-10-06 17:49:21 -0700382 next = rcu_dereference_protected(n->next,
383 lockdep_is_held(&tbl->lock));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384
Eric Dumazet767e97e2010-10-06 17:49:21 -0700385 rcu_assign_pointer(n->next,
386 rcu_dereference_protected(
387 new_nht->hash_buckets[hash],
388 lockdep_is_held(&tbl->lock)));
389 rcu_assign_pointer(new_nht->hash_buckets[hash], n);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 }
391 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392
Eric Dumazetd6bf7812010-10-04 06:15:44 +0000393 rcu_assign_pointer(tbl->nht, new_nht);
394 call_rcu(&old_nht->rcu, neigh_hash_free_rcu);
395 return new_nht;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396}
397
398struct neighbour *neigh_lookup(struct neigh_table *tbl, const void *pkey,
399 struct net_device *dev)
400{
401 struct neighbour *n;
402 int key_len = tbl->key_len;
Pavel Emelyanovbc4bf5f2008-02-23 19:57:02 -0800403 u32 hash_val;
Eric Dumazetd6bf7812010-10-04 06:15:44 +0000404 struct neigh_hash_table *nht;
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900405
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 NEIGH_CACHE_STAT_INC(tbl, lookups);
407
Eric Dumazetd6bf7812010-10-04 06:15:44 +0000408 rcu_read_lock_bh();
409 nht = rcu_dereference_bh(tbl->nht);
410 hash_val = tbl->hash(pkey, dev, nht->hash_rnd) & nht->hash_mask;
Eric Dumazet767e97e2010-10-06 17:49:21 -0700411
412 for (n = rcu_dereference_bh(nht->hash_buckets[hash_val]);
413 n != NULL;
414 n = rcu_dereference_bh(n->next)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 if (dev == n->dev && !memcmp(n->primary_key, pkey, key_len)) {
Eric Dumazet767e97e2010-10-06 17:49:21 -0700416 if (!atomic_inc_not_zero(&n->refcnt))
417 n = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 NEIGH_CACHE_STAT_INC(tbl, hits);
419 break;
420 }
421 }
Eric Dumazet767e97e2010-10-06 17:49:21 -0700422
Eric Dumazetd6bf7812010-10-04 06:15:44 +0000423 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 return n;
425}
YOSHIFUJI Hideaki0a204502008-03-24 18:39:10 +0900426EXPORT_SYMBOL(neigh_lookup);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427
Eric W. Biederman426b5302008-01-24 00:13:18 -0800428struct neighbour *neigh_lookup_nodev(struct neigh_table *tbl, struct net *net,
429 const void *pkey)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430{
431 struct neighbour *n;
432 int key_len = tbl->key_len;
Pavel Emelyanovbc4bf5f2008-02-23 19:57:02 -0800433 u32 hash_val;
Eric Dumazetd6bf7812010-10-04 06:15:44 +0000434 struct neigh_hash_table *nht;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435
436 NEIGH_CACHE_STAT_INC(tbl, lookups);
437
Eric Dumazetd6bf7812010-10-04 06:15:44 +0000438 rcu_read_lock_bh();
439 nht = rcu_dereference_bh(tbl->nht);
440 hash_val = tbl->hash(pkey, NULL, nht->hash_rnd) & nht->hash_mask;
Eric Dumazet767e97e2010-10-06 17:49:21 -0700441
442 for (n = rcu_dereference_bh(nht->hash_buckets[hash_val]);
443 n != NULL;
444 n = rcu_dereference_bh(n->next)) {
Eric W. Biederman426b5302008-01-24 00:13:18 -0800445 if (!memcmp(n->primary_key, pkey, key_len) &&
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +0900446 net_eq(dev_net(n->dev), net)) {
Eric Dumazet767e97e2010-10-06 17:49:21 -0700447 if (!atomic_inc_not_zero(&n->refcnt))
448 n = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 NEIGH_CACHE_STAT_INC(tbl, hits);
450 break;
451 }
452 }
Eric Dumazet767e97e2010-10-06 17:49:21 -0700453
Eric Dumazetd6bf7812010-10-04 06:15:44 +0000454 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 return n;
456}
YOSHIFUJI Hideaki0a204502008-03-24 18:39:10 +0900457EXPORT_SYMBOL(neigh_lookup_nodev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458
459struct neighbour *neigh_create(struct neigh_table *tbl, const void *pkey,
460 struct net_device *dev)
461{
462 u32 hash_val;
463 int key_len = tbl->key_len;
464 int error;
465 struct neighbour *n1, *rc, *n = neigh_alloc(tbl);
Eric Dumazetd6bf7812010-10-04 06:15:44 +0000466 struct neigh_hash_table *nht;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467
468 if (!n) {
469 rc = ERR_PTR(-ENOBUFS);
470 goto out;
471 }
472
473 memcpy(n->primary_key, pkey, key_len);
474 n->dev = dev;
475 dev_hold(dev);
476
477 /* Protocol specific setup. */
478 if (tbl->constructor && (error = tbl->constructor(n)) < 0) {
479 rc = ERR_PTR(error);
480 goto out_neigh_release;
481 }
482
483 /* Device specific setup. */
484 if (n->parms->neigh_setup &&
485 (error = n->parms->neigh_setup(n)) < 0) {
486 rc = ERR_PTR(error);
487 goto out_neigh_release;
488 }
489
490 n->confirmed = jiffies - (n->parms->base_reachable_time << 1);
491
492 write_lock_bh(&tbl->lock);
Eric Dumazetd6bf7812010-10-04 06:15:44 +0000493 nht = rcu_dereference_protected(tbl->nht,
494 lockdep_is_held(&tbl->lock));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495
Eric Dumazetd6bf7812010-10-04 06:15:44 +0000496 if (atomic_read(&tbl->entries) > (nht->hash_mask + 1))
497 nht = neigh_hash_grow(tbl, (nht->hash_mask + 1) << 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498
Eric Dumazetd6bf7812010-10-04 06:15:44 +0000499 hash_val = tbl->hash(pkey, dev, nht->hash_rnd) & nht->hash_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500
501 if (n->parms->dead) {
502 rc = ERR_PTR(-EINVAL);
503 goto out_tbl_unlock;
504 }
505
Eric Dumazet767e97e2010-10-06 17:49:21 -0700506 for (n1 = rcu_dereference_protected(nht->hash_buckets[hash_val],
507 lockdep_is_held(&tbl->lock));
508 n1 != NULL;
509 n1 = rcu_dereference_protected(n1->next,
510 lockdep_is_held(&tbl->lock))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 if (dev == n1->dev && !memcmp(n1->primary_key, pkey, key_len)) {
512 neigh_hold(n1);
513 rc = n1;
514 goto out_tbl_unlock;
515 }
516 }
517
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 n->dead = 0;
519 neigh_hold(n);
Eric Dumazet767e97e2010-10-06 17:49:21 -0700520 rcu_assign_pointer(n->next,
521 rcu_dereference_protected(nht->hash_buckets[hash_val],
522 lockdep_is_held(&tbl->lock)));
523 rcu_assign_pointer(nht->hash_buckets[hash_val], n);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 write_unlock_bh(&tbl->lock);
525 NEIGH_PRINTK2("neigh %p is created.\n", n);
526 rc = n;
527out:
528 return rc;
529out_tbl_unlock:
530 write_unlock_bh(&tbl->lock);
531out_neigh_release:
532 neigh_release(n);
533 goto out;
534}
YOSHIFUJI Hideaki0a204502008-03-24 18:39:10 +0900535EXPORT_SYMBOL(neigh_create);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536
YOSHIFUJI Hideakibe01d652008-03-28 12:46:53 +0900537static u32 pneigh_hash(const void *pkey, int key_len)
Pavel Emelyanovfa86d322008-03-24 14:48:59 -0700538{
Pavel Emelyanovfa86d322008-03-24 14:48:59 -0700539 u32 hash_val = *(u32 *)(pkey + key_len - 4);
Pavel Emelyanovfa86d322008-03-24 14:48:59 -0700540 hash_val ^= (hash_val >> 16);
541 hash_val ^= hash_val >> 8;
542 hash_val ^= hash_val >> 4;
543 hash_val &= PNEIGH_HASHMASK;
YOSHIFUJI Hideakibe01d652008-03-28 12:46:53 +0900544 return hash_val;
545}
Pavel Emelyanovfa86d322008-03-24 14:48:59 -0700546
YOSHIFUJI Hideakibe01d652008-03-28 12:46:53 +0900547static struct pneigh_entry *__pneigh_lookup_1(struct pneigh_entry *n,
548 struct net *net,
549 const void *pkey,
550 int key_len,
551 struct net_device *dev)
552{
553 while (n) {
Pavel Emelyanovfa86d322008-03-24 14:48:59 -0700554 if (!memcmp(n->key, pkey, key_len) &&
YOSHIFUJI Hideakibe01d652008-03-28 12:46:53 +0900555 net_eq(pneigh_net(n), net) &&
Pavel Emelyanovfa86d322008-03-24 14:48:59 -0700556 (n->dev == dev || !n->dev))
YOSHIFUJI Hideakibe01d652008-03-28 12:46:53 +0900557 return n;
558 n = n->next;
Pavel Emelyanovfa86d322008-03-24 14:48:59 -0700559 }
YOSHIFUJI Hideakibe01d652008-03-28 12:46:53 +0900560 return NULL;
561}
Pavel Emelyanovfa86d322008-03-24 14:48:59 -0700562
YOSHIFUJI Hideakibe01d652008-03-28 12:46:53 +0900563struct pneigh_entry *__pneigh_lookup(struct neigh_table *tbl,
564 struct net *net, const void *pkey, struct net_device *dev)
565{
566 int key_len = tbl->key_len;
567 u32 hash_val = pneigh_hash(pkey, key_len);
568
569 return __pneigh_lookup_1(tbl->phash_buckets[hash_val],
570 net, pkey, key_len, dev);
Pavel Emelyanovfa86d322008-03-24 14:48:59 -0700571}
YOSHIFUJI Hideaki0a204502008-03-24 18:39:10 +0900572EXPORT_SYMBOL_GPL(__pneigh_lookup);
Pavel Emelyanovfa86d322008-03-24 14:48:59 -0700573
Eric W. Biederman426b5302008-01-24 00:13:18 -0800574struct pneigh_entry * pneigh_lookup(struct neigh_table *tbl,
575 struct net *net, const void *pkey,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 struct net_device *dev, int creat)
577{
578 struct pneigh_entry *n;
579 int key_len = tbl->key_len;
YOSHIFUJI Hideakibe01d652008-03-28 12:46:53 +0900580 u32 hash_val = pneigh_hash(pkey, key_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581
582 read_lock_bh(&tbl->lock);
YOSHIFUJI Hideakibe01d652008-03-28 12:46:53 +0900583 n = __pneigh_lookup_1(tbl->phash_buckets[hash_val],
584 net, pkey, key_len, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 read_unlock_bh(&tbl->lock);
YOSHIFUJI Hideakibe01d652008-03-28 12:46:53 +0900586
587 if (n || !creat)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 goto out;
589
Pavel Emelyanov4ae28942007-10-15 12:54:15 -0700590 ASSERT_RTNL();
591
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 n = kmalloc(sizeof(*n) + key_len, GFP_KERNEL);
593 if (!n)
594 goto out;
595
Eric Dumazete42ea982008-11-12 00:54:54 -0800596 write_pnet(&n->net, hold_net(net));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 memcpy(n->key, pkey, key_len);
598 n->dev = dev;
599 if (dev)
600 dev_hold(dev);
601
602 if (tbl->pconstructor && tbl->pconstructor(n)) {
603 if (dev)
604 dev_put(dev);
Denis V. Lunevda12f732008-02-20 00:26:16 -0800605 release_net(net);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 kfree(n);
607 n = NULL;
608 goto out;
609 }
610
611 write_lock_bh(&tbl->lock);
612 n->next = tbl->phash_buckets[hash_val];
613 tbl->phash_buckets[hash_val] = n;
614 write_unlock_bh(&tbl->lock);
615out:
616 return n;
617}
YOSHIFUJI Hideaki0a204502008-03-24 18:39:10 +0900618EXPORT_SYMBOL(pneigh_lookup);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619
620
Eric W. Biederman426b5302008-01-24 00:13:18 -0800621int pneigh_delete(struct neigh_table *tbl, struct net *net, const void *pkey,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 struct net_device *dev)
623{
624 struct pneigh_entry *n, **np;
625 int key_len = tbl->key_len;
YOSHIFUJI Hideakibe01d652008-03-28 12:46:53 +0900626 u32 hash_val = pneigh_hash(pkey, key_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627
628 write_lock_bh(&tbl->lock);
629 for (np = &tbl->phash_buckets[hash_val]; (n = *np) != NULL;
630 np = &n->next) {
Eric W. Biederman426b5302008-01-24 00:13:18 -0800631 if (!memcmp(n->key, pkey, key_len) && n->dev == dev &&
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +0900632 net_eq(pneigh_net(n), net)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 *np = n->next;
634 write_unlock_bh(&tbl->lock);
635 if (tbl->pdestructor)
636 tbl->pdestructor(n);
637 if (n->dev)
638 dev_put(n->dev);
YOSHIFUJI Hideaki57da52c2008-03-26 03:49:59 +0900639 release_net(pneigh_net(n));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 kfree(n);
641 return 0;
642 }
643 }
644 write_unlock_bh(&tbl->lock);
645 return -ENOENT;
646}
647
648static int pneigh_ifdown(struct neigh_table *tbl, struct net_device *dev)
649{
650 struct pneigh_entry *n, **np;
651 u32 h;
652
653 for (h = 0; h <= PNEIGH_HASHMASK; h++) {
654 np = &tbl->phash_buckets[h];
655 while ((n = *np) != NULL) {
656 if (!dev || n->dev == dev) {
657 *np = n->next;
658 if (tbl->pdestructor)
659 tbl->pdestructor(n);
660 if (n->dev)
661 dev_put(n->dev);
YOSHIFUJI Hideaki57da52c2008-03-26 03:49:59 +0900662 release_net(pneigh_net(n));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 kfree(n);
664 continue;
665 }
666 np = &n->next;
667 }
668 }
669 return -ENOENT;
670}
671
Denis V. Lunev06f05112008-01-24 00:30:58 -0800672static void neigh_parms_destroy(struct neigh_parms *parms);
673
674static inline void neigh_parms_put(struct neigh_parms *parms)
675{
676 if (atomic_dec_and_test(&parms->refcnt))
677 neigh_parms_destroy(parms);
678}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679
Eric Dumazet767e97e2010-10-06 17:49:21 -0700680static void neigh_destroy_rcu(struct rcu_head *head)
681{
682 struct neighbour *neigh = container_of(head, struct neighbour, rcu);
683
684 kmem_cache_free(neigh->tbl->kmem_cachep, neigh);
685}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686/*
687 * neighbour must already be out of the table;
688 *
689 */
690void neigh_destroy(struct neighbour *neigh)
691{
692 struct hh_cache *hh;
693
694 NEIGH_CACHE_STAT_INC(neigh->tbl, destroys);
695
696 if (!neigh->dead) {
697 printk(KERN_WARNING
698 "Destroying alive neighbour %p\n", neigh);
699 dump_stack();
700 return;
701 }
702
703 if (neigh_del_timer(neigh))
704 printk(KERN_WARNING "Impossible event.\n");
705
706 while ((hh = neigh->hh) != NULL) {
707 neigh->hh = hh->hh_next;
708 hh->hh_next = NULL;
Stephen Hemminger3644f0c2006-12-07 15:08:17 -0800709
710 write_seqlock_bh(&hh->hh_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 hh->hh_output = neigh_blackhole;
Stephen Hemminger3644f0c2006-12-07 15:08:17 -0800712 write_sequnlock_bh(&hh->hh_lock);
Eric Dumazet34d101d2010-10-11 09:16:57 -0700713 hh_cache_put(hh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 }
715
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 skb_queue_purge(&neigh->arp_queue);
717
718 dev_put(neigh->dev);
719 neigh_parms_put(neigh->parms);
720
721 NEIGH_PRINTK2("neigh %p is destroyed.\n", neigh);
722
723 atomic_dec(&neigh->tbl->entries);
Eric Dumazet767e97e2010-10-06 17:49:21 -0700724 call_rcu(&neigh->rcu, neigh_destroy_rcu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725}
YOSHIFUJI Hideaki0a204502008-03-24 18:39:10 +0900726EXPORT_SYMBOL(neigh_destroy);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727
728/* Neighbour state is suspicious;
729 disable fast path.
730
731 Called with write_locked neigh.
732 */
733static void neigh_suspect(struct neighbour *neigh)
734{
735 struct hh_cache *hh;
736
737 NEIGH_PRINTK2("neigh %p is suspected.\n", neigh);
738
739 neigh->output = neigh->ops->output;
740
741 for (hh = neigh->hh; hh; hh = hh->hh_next)
742 hh->hh_output = neigh->ops->output;
743}
744
745/* Neighbour state is OK;
746 enable fast path.
747
748 Called with write_locked neigh.
749 */
750static void neigh_connect(struct neighbour *neigh)
751{
752 struct hh_cache *hh;
753
754 NEIGH_PRINTK2("neigh %p is connected.\n", neigh);
755
756 neigh->output = neigh->ops->connected_output;
757
758 for (hh = neigh->hh; hh; hh = hh->hh_next)
759 hh->hh_output = neigh->ops->hh_output;
760}
761
Eric Dumazete4c4e442009-07-30 03:15:07 +0000762static void neigh_periodic_work(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763{
Eric Dumazete4c4e442009-07-30 03:15:07 +0000764 struct neigh_table *tbl = container_of(work, struct neigh_table, gc_work.work);
Eric Dumazet767e97e2010-10-06 17:49:21 -0700765 struct neighbour *n;
766 struct neighbour __rcu **np;
Eric Dumazete4c4e442009-07-30 03:15:07 +0000767 unsigned int i;
Eric Dumazetd6bf7812010-10-04 06:15:44 +0000768 struct neigh_hash_table *nht;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769
770 NEIGH_CACHE_STAT_INC(tbl, periodic_gc_runs);
771
Eric Dumazete4c4e442009-07-30 03:15:07 +0000772 write_lock_bh(&tbl->lock);
Eric Dumazetd6bf7812010-10-04 06:15:44 +0000773 nht = rcu_dereference_protected(tbl->nht,
774 lockdep_is_held(&tbl->lock));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775
776 /*
777 * periodically recompute ReachableTime from random function
778 */
779
Eric Dumazete4c4e442009-07-30 03:15:07 +0000780 if (time_after(jiffies, tbl->last_rand + 300 * HZ)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 struct neigh_parms *p;
Eric Dumazete4c4e442009-07-30 03:15:07 +0000782 tbl->last_rand = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 for (p = &tbl->parms; p; p = p->next)
784 p->reachable_time =
785 neigh_rand_reach_time(p->base_reachable_time);
786 }
787
Eric Dumazetd6bf7812010-10-04 06:15:44 +0000788 for (i = 0 ; i <= nht->hash_mask; i++) {
789 np = &nht->hash_buckets[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790
Eric Dumazet767e97e2010-10-06 17:49:21 -0700791 while ((n = rcu_dereference_protected(*np,
792 lockdep_is_held(&tbl->lock))) != NULL) {
Eric Dumazete4c4e442009-07-30 03:15:07 +0000793 unsigned int state;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794
Eric Dumazete4c4e442009-07-30 03:15:07 +0000795 write_lock(&n->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796
Eric Dumazete4c4e442009-07-30 03:15:07 +0000797 state = n->nud_state;
798 if (state & (NUD_PERMANENT | NUD_IN_TIMER)) {
799 write_unlock(&n->lock);
800 goto next_elt;
801 }
802
803 if (time_before(n->used, n->confirmed))
804 n->used = n->confirmed;
805
806 if (atomic_read(&n->refcnt) == 1 &&
807 (state == NUD_FAILED ||
808 time_after(jiffies, n->used + n->parms->gc_staletime))) {
809 *np = n->next;
810 n->dead = 1;
811 write_unlock(&n->lock);
812 neigh_cleanup_and_release(n);
813 continue;
814 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 write_unlock(&n->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816
817next_elt:
Eric Dumazete4c4e442009-07-30 03:15:07 +0000818 np = &n->next;
819 }
820 /*
821 * It's fine to release lock here, even if hash table
822 * grows while we are preempted.
823 */
824 write_unlock_bh(&tbl->lock);
825 cond_resched();
826 write_lock_bh(&tbl->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827 }
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900828 /* Cycle through all hash buckets every base_reachable_time/2 ticks.
829 * ARP entry timeouts range from 1/2 base_reachable_time to 3/2
830 * base_reachable_time.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 */
Eric Dumazete4c4e442009-07-30 03:15:07 +0000832 schedule_delayed_work(&tbl->gc_work,
833 tbl->parms.base_reachable_time >> 1);
834 write_unlock_bh(&tbl->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835}
836
837static __inline__ int neigh_max_probes(struct neighbour *n)
838{
839 struct neigh_parms *p = n->parms;
Eric Dumazeta02cec22010-09-22 20:43:57 +0000840 return (n->nud_state & NUD_PROBE) ?
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 p->ucast_probes :
Eric Dumazeta02cec22010-09-22 20:43:57 +0000842 p->ucast_probes + p->app_probes + p->mcast_probes;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843}
844
Timo Teras5ef12d92009-06-11 04:16:28 -0700845static void neigh_invalidate(struct neighbour *neigh)
Eric Dumazet0a141502010-03-09 19:40:54 +0000846 __releases(neigh->lock)
847 __acquires(neigh->lock)
Timo Teras5ef12d92009-06-11 04:16:28 -0700848{
849 struct sk_buff *skb;
850
851 NEIGH_CACHE_STAT_INC(neigh->tbl, res_failed);
852 NEIGH_PRINTK2("neigh %p is failed.\n", neigh);
853 neigh->updated = jiffies;
854
855 /* It is very thin place. report_unreachable is very complicated
856 routine. Particularly, it can hit the same neighbour entry!
857
858 So that, we try to be accurate and avoid dead loop. --ANK
859 */
860 while (neigh->nud_state == NUD_FAILED &&
861 (skb = __skb_dequeue(&neigh->arp_queue)) != NULL) {
862 write_unlock(&neigh->lock);
863 neigh->ops->error_report(neigh, skb);
864 write_lock(&neigh->lock);
865 }
866 skb_queue_purge(&neigh->arp_queue);
867}
868
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869/* Called when a timer expires for a neighbour entry. */
870
871static void neigh_timer_handler(unsigned long arg)
872{
873 unsigned long now, next;
874 struct neighbour *neigh = (struct neighbour *)arg;
875 unsigned state;
876 int notify = 0;
877
878 write_lock(&neigh->lock);
879
880 state = neigh->nud_state;
881 now = jiffies;
882 next = now + HZ;
883
884 if (!(state & NUD_IN_TIMER)) {
885#ifndef CONFIG_SMP
886 printk(KERN_WARNING "neigh: timer & !nud_in_timer\n");
887#endif
888 goto out;
889 }
890
891 if (state & NUD_REACHABLE) {
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900892 if (time_before_eq(now,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893 neigh->confirmed + neigh->parms->reachable_time)) {
894 NEIGH_PRINTK2("neigh %p is still alive.\n", neigh);
895 next = neigh->confirmed + neigh->parms->reachable_time;
896 } else if (time_before_eq(now,
897 neigh->used + neigh->parms->delay_probe_time)) {
898 NEIGH_PRINTK2("neigh %p is delayed.\n", neigh);
899 neigh->nud_state = NUD_DELAY;
YOSHIFUJI Hideaki955aaa22006-03-20 16:52:52 -0800900 neigh->updated = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901 neigh_suspect(neigh);
902 next = now + neigh->parms->delay_probe_time;
903 } else {
904 NEIGH_PRINTK2("neigh %p is suspected.\n", neigh);
905 neigh->nud_state = NUD_STALE;
YOSHIFUJI Hideaki955aaa22006-03-20 16:52:52 -0800906 neigh->updated = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907 neigh_suspect(neigh);
Tom Tucker8d717402006-07-30 20:43:36 -0700908 notify = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 }
910 } else if (state & NUD_DELAY) {
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900911 if (time_before_eq(now,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912 neigh->confirmed + neigh->parms->delay_probe_time)) {
913 NEIGH_PRINTK2("neigh %p is now reachable.\n", neigh);
914 neigh->nud_state = NUD_REACHABLE;
YOSHIFUJI Hideaki955aaa22006-03-20 16:52:52 -0800915 neigh->updated = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916 neigh_connect(neigh);
Tom Tucker8d717402006-07-30 20:43:36 -0700917 notify = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918 next = neigh->confirmed + neigh->parms->reachable_time;
919 } else {
920 NEIGH_PRINTK2("neigh %p is probed.\n", neigh);
921 neigh->nud_state = NUD_PROBE;
YOSHIFUJI Hideaki955aaa22006-03-20 16:52:52 -0800922 neigh->updated = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923 atomic_set(&neigh->probes, 0);
924 next = now + neigh->parms->retrans_time;
925 }
926 } else {
927 /* NUD_PROBE|NUD_INCOMPLETE */
928 next = now + neigh->parms->retrans_time;
929 }
930
931 if ((neigh->nud_state & (NUD_INCOMPLETE | NUD_PROBE)) &&
932 atomic_read(&neigh->probes) >= neigh_max_probes(neigh)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933 neigh->nud_state = NUD_FAILED;
934 notify = 1;
Timo Teras5ef12d92009-06-11 04:16:28 -0700935 neigh_invalidate(neigh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 }
937
938 if (neigh->nud_state & NUD_IN_TIMER) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939 if (time_before(next, jiffies + HZ/2))
940 next = jiffies + HZ/2;
Herbert Xu6fb99742005-10-23 16:37:48 +1000941 if (!mod_timer(&neigh->timer, next))
942 neigh_hold(neigh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943 }
944 if (neigh->nud_state & (NUD_INCOMPLETE | NUD_PROBE)) {
945 struct sk_buff *skb = skb_peek(&neigh->arp_queue);
David S. Miller9ff56602008-02-17 18:39:54 -0800946 /* keep skb alive even if arp_queue overflows */
947 if (skb)
Frank Blaschka7e367632008-03-03 12:16:04 -0800948 skb = skb_copy(skb, GFP_ATOMIC);
David S. Miller9ff56602008-02-17 18:39:54 -0800949 write_unlock(&neigh->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950 neigh->ops->solicit(neigh, skb);
951 atomic_inc(&neigh->probes);
Wei Yongjunf3fbbe02009-02-25 00:37:32 +0000952 kfree_skb(skb);
David S. Miller9ff56602008-02-17 18:39:54 -0800953 } else {
David S. Miller69cc64d2008-02-11 21:45:44 -0800954out:
David S. Miller9ff56602008-02-17 18:39:54 -0800955 write_unlock(&neigh->lock);
956 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957
Thomas Grafd961db32007-08-08 23:12:56 -0700958 if (notify)
959 neigh_update_notify(neigh);
960
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961 neigh_release(neigh);
962}
963
964int __neigh_event_send(struct neighbour *neigh, struct sk_buff *skb)
965{
966 int rc;
967 unsigned long now;
968
969 write_lock_bh(&neigh->lock);
970
971 rc = 0;
972 if (neigh->nud_state & (NUD_CONNECTED | NUD_DELAY | NUD_PROBE))
973 goto out_unlock_bh;
974
975 now = jiffies;
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900976
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977 if (!(neigh->nud_state & (NUD_STALE | NUD_INCOMPLETE))) {
978 if (neigh->parms->mcast_probes + neigh->parms->app_probes) {
979 atomic_set(&neigh->probes, neigh->parms->ucast_probes);
980 neigh->nud_state = NUD_INCOMPLETE;
YOSHIFUJI Hideaki955aaa22006-03-20 16:52:52 -0800981 neigh->updated = jiffies;
David S. Miller667347f2005-09-27 12:07:44 -0700982 neigh_add_timer(neigh, now + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983 } else {
984 neigh->nud_state = NUD_FAILED;
YOSHIFUJI Hideaki955aaa22006-03-20 16:52:52 -0800985 neigh->updated = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986 write_unlock_bh(&neigh->lock);
987
Wei Yongjunf3fbbe02009-02-25 00:37:32 +0000988 kfree_skb(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989 return 1;
990 }
991 } else if (neigh->nud_state & NUD_STALE) {
992 NEIGH_PRINTK2("neigh %p is delayed.\n", neigh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993 neigh->nud_state = NUD_DELAY;
YOSHIFUJI Hideaki955aaa22006-03-20 16:52:52 -0800994 neigh->updated = jiffies;
David S. Miller667347f2005-09-27 12:07:44 -0700995 neigh_add_timer(neigh,
996 jiffies + neigh->parms->delay_probe_time);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997 }
998
999 if (neigh->nud_state == NUD_INCOMPLETE) {
1000 if (skb) {
1001 if (skb_queue_len(&neigh->arp_queue) >=
1002 neigh->parms->queue_len) {
1003 struct sk_buff *buff;
David S. Millerf72051b2008-09-23 01:11:18 -07001004 buff = __skb_dequeue(&neigh->arp_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005 kfree_skb(buff);
Neil Horman9a6d2762008-07-16 20:50:49 -07001006 NEIGH_CACHE_STAT_INC(neigh->tbl, unres_discards);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007 }
Eric Dumazeta4731132010-05-27 16:09:39 -07001008 skb_dst_force(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009 __skb_queue_tail(&neigh->arp_queue, skb);
1010 }
1011 rc = 1;
1012 }
1013out_unlock_bh:
1014 write_unlock_bh(&neigh->lock);
1015 return rc;
1016}
YOSHIFUJI Hideaki0a204502008-03-24 18:39:10 +09001017EXPORT_SYMBOL(__neigh_event_send);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018
Eric Dumazet0ed8ddf2010-10-07 10:44:07 +00001019static void neigh_update_hhs(const struct neighbour *neigh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020{
1021 struct hh_cache *hh;
Stephen Hemminger3b04ddd2007-10-09 01:40:57 -07001022 void (*update)(struct hh_cache*, const struct net_device*, const unsigned char *)
Doug Kehn91a72a72010-07-14 18:02:16 -07001023 = NULL;
1024
1025 if (neigh->dev->header_ops)
1026 update = neigh->dev->header_ops->cache_update;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027
1028 if (update) {
1029 for (hh = neigh->hh; hh; hh = hh->hh_next) {
Stephen Hemminger3644f0c2006-12-07 15:08:17 -08001030 write_seqlock_bh(&hh->hh_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031 update(hh, neigh->dev, neigh->ha);
Stephen Hemminger3644f0c2006-12-07 15:08:17 -08001032 write_sequnlock_bh(&hh->hh_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033 }
1034 }
1035}
1036
1037
1038
1039/* Generic update routine.
1040 -- lladdr is new lladdr or NULL, if it is not supplied.
1041 -- new is new state.
1042 -- flags
1043 NEIGH_UPDATE_F_OVERRIDE allows to override existing lladdr,
1044 if it is different.
1045 NEIGH_UPDATE_F_WEAK_OVERRIDE will suspect existing "connected"
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09001046 lladdr instead of overriding it
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 if it is different.
1048 It also allows to retain current state
1049 if lladdr is unchanged.
1050 NEIGH_UPDATE_F_ADMIN means that the change is administrative.
1051
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09001052 NEIGH_UPDATE_F_OVERRIDE_ISROUTER allows to override existing
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053 NTF_ROUTER flag.
1054 NEIGH_UPDATE_F_ISROUTER indicates if the neighbour is known as
1055 a router.
1056
1057 Caller MUST hold reference count on the entry.
1058 */
1059
1060int neigh_update(struct neighbour *neigh, const u8 *lladdr, u8 new,
1061 u32 flags)
1062{
1063 u8 old;
1064 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065 int notify = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066 struct net_device *dev;
1067 int update_isrouter = 0;
1068
1069 write_lock_bh(&neigh->lock);
1070
1071 dev = neigh->dev;
1072 old = neigh->nud_state;
1073 err = -EPERM;
1074
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09001075 if (!(flags & NEIGH_UPDATE_F_ADMIN) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 (old & (NUD_NOARP | NUD_PERMANENT)))
1077 goto out;
1078
1079 if (!(new & NUD_VALID)) {
1080 neigh_del_timer(neigh);
1081 if (old & NUD_CONNECTED)
1082 neigh_suspect(neigh);
1083 neigh->nud_state = new;
1084 err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085 notify = old & NUD_VALID;
Timo Teras5ef12d92009-06-11 04:16:28 -07001086 if ((old & (NUD_INCOMPLETE | NUD_PROBE)) &&
1087 (new & NUD_FAILED)) {
1088 neigh_invalidate(neigh);
1089 notify = 1;
1090 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091 goto out;
1092 }
1093
1094 /* Compare new lladdr with cached one */
1095 if (!dev->addr_len) {
1096 /* First case: device needs no address. */
1097 lladdr = neigh->ha;
1098 } else if (lladdr) {
1099 /* The second case: if something is already cached
1100 and a new address is proposed:
1101 - compare new & old
1102 - if they are different, check override flag
1103 */
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09001104 if ((old & NUD_VALID) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105 !memcmp(lladdr, neigh->ha, dev->addr_len))
1106 lladdr = neigh->ha;
1107 } else {
1108 /* No address is supplied; if we know something,
1109 use it, otherwise discard the request.
1110 */
1111 err = -EINVAL;
1112 if (!(old & NUD_VALID))
1113 goto out;
1114 lladdr = neigh->ha;
1115 }
1116
1117 if (new & NUD_CONNECTED)
1118 neigh->confirmed = jiffies;
1119 neigh->updated = jiffies;
1120
1121 /* If entry was valid and address is not changed,
1122 do not change entry state, if new one is STALE.
1123 */
1124 err = 0;
1125 update_isrouter = flags & NEIGH_UPDATE_F_OVERRIDE_ISROUTER;
1126 if (old & NUD_VALID) {
1127 if (lladdr != neigh->ha && !(flags & NEIGH_UPDATE_F_OVERRIDE)) {
1128 update_isrouter = 0;
1129 if ((flags & NEIGH_UPDATE_F_WEAK_OVERRIDE) &&
1130 (old & NUD_CONNECTED)) {
1131 lladdr = neigh->ha;
1132 new = NUD_STALE;
1133 } else
1134 goto out;
1135 } else {
1136 if (lladdr == neigh->ha && new == NUD_STALE &&
1137 ((flags & NEIGH_UPDATE_F_WEAK_OVERRIDE) ||
1138 (old & NUD_CONNECTED))
1139 )
1140 new = old;
1141 }
1142 }
1143
1144 if (new != old) {
1145 neigh_del_timer(neigh);
Pavel Emelyanova43d8992007-12-20 15:49:05 -08001146 if (new & NUD_IN_TIMER)
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09001147 neigh_add_timer(neigh, (jiffies +
1148 ((new & NUD_REACHABLE) ?
David S. Miller667347f2005-09-27 12:07:44 -07001149 neigh->parms->reachable_time :
1150 0)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151 neigh->nud_state = new;
1152 }
1153
1154 if (lladdr != neigh->ha) {
Eric Dumazet0ed8ddf2010-10-07 10:44:07 +00001155 write_seqlock(&neigh->ha_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156 memcpy(&neigh->ha, lladdr, dev->addr_len);
Eric Dumazet0ed8ddf2010-10-07 10:44:07 +00001157 write_sequnlock(&neigh->ha_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158 neigh_update_hhs(neigh);
1159 if (!(new & NUD_CONNECTED))
1160 neigh->confirmed = jiffies -
1161 (neigh->parms->base_reachable_time << 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162 notify = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163 }
1164 if (new == old)
1165 goto out;
1166 if (new & NUD_CONNECTED)
1167 neigh_connect(neigh);
1168 else
1169 neigh_suspect(neigh);
1170 if (!(old & NUD_VALID)) {
1171 struct sk_buff *skb;
1172
1173 /* Again: avoid dead loop if something went wrong */
1174
1175 while (neigh->nud_state & NUD_VALID &&
1176 (skb = __skb_dequeue(&neigh->arp_queue)) != NULL) {
1177 struct neighbour *n1 = neigh;
1178 write_unlock_bh(&neigh->lock);
1179 /* On shaper/eql skb->dst->neighbour != neigh :( */
Eric Dumazetadf30902009-06-02 05:19:30 +00001180 if (skb_dst(skb) && skb_dst(skb)->neighbour)
1181 n1 = skb_dst(skb)->neighbour;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182 n1->output(skb);
1183 write_lock_bh(&neigh->lock);
1184 }
1185 skb_queue_purge(&neigh->arp_queue);
1186 }
1187out:
1188 if (update_isrouter) {
1189 neigh->flags = (flags & NEIGH_UPDATE_F_ISROUTER) ?
1190 (neigh->flags | NTF_ROUTER) :
1191 (neigh->flags & ~NTF_ROUTER);
1192 }
1193 write_unlock_bh(&neigh->lock);
Tom Tucker8d717402006-07-30 20:43:36 -07001194
1195 if (notify)
Thomas Grafd961db32007-08-08 23:12:56 -07001196 neigh_update_notify(neigh);
1197
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198 return err;
1199}
YOSHIFUJI Hideaki0a204502008-03-24 18:39:10 +09001200EXPORT_SYMBOL(neigh_update);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201
1202struct neighbour *neigh_event_ns(struct neigh_table *tbl,
1203 u8 *lladdr, void *saddr,
1204 struct net_device *dev)
1205{
1206 struct neighbour *neigh = __neigh_lookup(tbl, saddr, dev,
1207 lladdr || !dev->addr_len);
1208 if (neigh)
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09001209 neigh_update(neigh, lladdr, NUD_STALE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210 NEIGH_UPDATE_F_OVERRIDE);
1211 return neigh;
1212}
YOSHIFUJI Hideaki0a204502008-03-24 18:39:10 +09001213EXPORT_SYMBOL(neigh_event_ns);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214
Eric Dumazet34d101d2010-10-11 09:16:57 -07001215static inline bool neigh_hh_lookup(struct neighbour *n, struct dst_entry *dst,
1216 __be16 protocol)
1217{
1218 struct hh_cache *hh;
1219
Eric Dumazet0ed8ddf2010-10-07 10:44:07 +00001220 smp_rmb(); /* paired with smp_wmb() in neigh_hh_init() */
Eric Dumazet34d101d2010-10-11 09:16:57 -07001221 for (hh = n->hh; hh; hh = hh->hh_next) {
1222 if (hh->hh_type == protocol) {
1223 atomic_inc(&hh->hh_refcnt);
1224 if (unlikely(cmpxchg(&dst->hh, NULL, hh) != NULL))
1225 hh_cache_put(hh);
1226 return true;
1227 }
1228 }
1229 return false;
1230}
1231
1232/* called with read_lock_bh(&n->lock); */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233static void neigh_hh_init(struct neighbour *n, struct dst_entry *dst,
Al Virod77072e2006-09-28 14:20:34 -07001234 __be16 protocol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235{
1236 struct hh_cache *hh;
1237 struct net_device *dev = dst->dev;
1238
Eric Dumazet34d101d2010-10-11 09:16:57 -07001239 if (likely(neigh_hh_lookup(n, dst, protocol)))
1240 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241
Eric Dumazet34d101d2010-10-11 09:16:57 -07001242 /* slow path */
1243 hh = kzalloc(sizeof(*hh), GFP_ATOMIC);
1244 if (!hh)
1245 return;
Stephen Hemminger3b04ddd2007-10-09 01:40:57 -07001246
Eric Dumazet34d101d2010-10-11 09:16:57 -07001247 seqlock_init(&hh->hh_lock);
1248 hh->hh_type = protocol;
1249 atomic_set(&hh->hh_refcnt, 2);
1250
1251 if (dev->header_ops->cache(n, hh)) {
1252 kfree(hh);
1253 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254 }
Eric Dumazet0ed8ddf2010-10-07 10:44:07 +00001255
1256 write_lock_bh(&n->lock);
Eric Dumazet34d101d2010-10-11 09:16:57 -07001257
1258 /* must check if another thread already did the insert */
1259 if (neigh_hh_lookup(n, dst, protocol)) {
1260 kfree(hh);
1261 goto end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262 }
Eric Dumazet34d101d2010-10-11 09:16:57 -07001263
1264 if (n->nud_state & NUD_CONNECTED)
1265 hh->hh_output = n->ops->hh_output;
1266 else
1267 hh->hh_output = n->ops->output;
1268
1269 hh->hh_next = n->hh;
Eric Dumazet0ed8ddf2010-10-07 10:44:07 +00001270 smp_wmb(); /* paired with smp_rmb() in neigh_hh_lookup() */
Eric Dumazet34d101d2010-10-11 09:16:57 -07001271 n->hh = hh;
1272
1273 if (unlikely(cmpxchg(&dst->hh, NULL, hh) != NULL))
1274 hh_cache_put(hh);
1275end:
Eric Dumazet0ed8ddf2010-10-07 10:44:07 +00001276 write_unlock_bh(&n->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277}
1278
1279/* This function can be used in contexts, where only old dev_queue_xmit
Eric Dumazet767e97e2010-10-06 17:49:21 -07001280 * worked, f.e. if you want to override normal output path (eql, shaper),
1281 * but resolution is not made yet.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282 */
1283
1284int neigh_compat_output(struct sk_buff *skb)
1285{
1286 struct net_device *dev = skb->dev;
1287
Arnaldo Carvalho de Melobbe735e2007-03-10 22:16:10 -03001288 __skb_pull(skb, skb_network_offset(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289
Stephen Hemminger0c4e8582007-10-09 01:36:32 -07001290 if (dev_hard_header(skb, dev, ntohs(skb->protocol), NULL, NULL,
1291 skb->len) < 0 &&
Stephen Hemminger3b04ddd2007-10-09 01:40:57 -07001292 dev->header_ops->rebuild(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293 return 0;
1294
1295 return dev_queue_xmit(skb);
1296}
YOSHIFUJI Hideaki0a204502008-03-24 18:39:10 +09001297EXPORT_SYMBOL(neigh_compat_output);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298
1299/* Slow and careful. */
1300
1301int neigh_resolve_output(struct sk_buff *skb)
1302{
Eric Dumazetadf30902009-06-02 05:19:30 +00001303 struct dst_entry *dst = skb_dst(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304 struct neighbour *neigh;
1305 int rc = 0;
1306
1307 if (!dst || !(neigh = dst->neighbour))
1308 goto discard;
1309
Arnaldo Carvalho de Melobbe735e2007-03-10 22:16:10 -03001310 __skb_pull(skb, skb_network_offset(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311
1312 if (!neigh_event_send(neigh, skb)) {
1313 int err;
1314 struct net_device *dev = neigh->dev;
Eric Dumazet0ed8ddf2010-10-07 10:44:07 +00001315 unsigned int seq;
Eric Dumazet34d101d2010-10-11 09:16:57 -07001316
Eric Dumazetc7d44262010-10-03 22:17:54 -07001317 if (dev->header_ops->cache &&
1318 !dst->hh &&
Eric Dumazet34d101d2010-10-11 09:16:57 -07001319 !(dst->flags & DST_NOCACHE))
1320 neigh_hh_init(neigh, dst, dst->ops->protocol);
1321
Eric Dumazet0ed8ddf2010-10-07 10:44:07 +00001322 do {
1323 seq = read_seqbegin(&neigh->ha_lock);
1324 err = dev_hard_header(skb, dev, ntohs(skb->protocol),
1325 neigh->ha, NULL, skb->len);
1326 } while (read_seqretry(&neigh->ha_lock, seq));
Eric Dumazet34d101d2010-10-11 09:16:57 -07001327
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328 if (err >= 0)
1329 rc = neigh->ops->queue_xmit(skb);
1330 else
1331 goto out_kfree_skb;
1332 }
1333out:
1334 return rc;
1335discard:
1336 NEIGH_PRINTK1("neigh_resolve_output: dst=%p neigh=%p\n",
1337 dst, dst ? dst->neighbour : NULL);
1338out_kfree_skb:
1339 rc = -EINVAL;
1340 kfree_skb(skb);
1341 goto out;
1342}
YOSHIFUJI Hideaki0a204502008-03-24 18:39:10 +09001343EXPORT_SYMBOL(neigh_resolve_output);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344
1345/* As fast as possible without hh cache */
1346
1347int neigh_connected_output(struct sk_buff *skb)
1348{
1349 int err;
Eric Dumazetadf30902009-06-02 05:19:30 +00001350 struct dst_entry *dst = skb_dst(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351 struct neighbour *neigh = dst->neighbour;
1352 struct net_device *dev = neigh->dev;
Eric Dumazet0ed8ddf2010-10-07 10:44:07 +00001353 unsigned int seq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354
Arnaldo Carvalho de Melobbe735e2007-03-10 22:16:10 -03001355 __skb_pull(skb, skb_network_offset(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356
Eric Dumazet0ed8ddf2010-10-07 10:44:07 +00001357 do {
1358 seq = read_seqbegin(&neigh->ha_lock);
1359 err = dev_hard_header(skb, dev, ntohs(skb->protocol),
1360 neigh->ha, NULL, skb->len);
1361 } while (read_seqretry(&neigh->ha_lock, seq));
1362
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363 if (err >= 0)
1364 err = neigh->ops->queue_xmit(skb);
1365 else {
1366 err = -EINVAL;
1367 kfree_skb(skb);
1368 }
1369 return err;
1370}
YOSHIFUJI Hideaki0a204502008-03-24 18:39:10 +09001371EXPORT_SYMBOL(neigh_connected_output);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372
1373static void neigh_proxy_process(unsigned long arg)
1374{
1375 struct neigh_table *tbl = (struct neigh_table *)arg;
1376 long sched_next = 0;
1377 unsigned long now = jiffies;
David S. Millerf72051b2008-09-23 01:11:18 -07001378 struct sk_buff *skb, *n;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379
1380 spin_lock(&tbl->proxy_queue.lock);
1381
David S. Millerf72051b2008-09-23 01:11:18 -07001382 skb_queue_walk_safe(&tbl->proxy_queue, skb, n) {
1383 long tdif = NEIGH_CB(skb)->sched_next - now;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385 if (tdif <= 0) {
David S. Millerf72051b2008-09-23 01:11:18 -07001386 struct net_device *dev = skb->dev;
1387 __skb_unlink(skb, &tbl->proxy_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388 if (tbl->proxy_redo && netif_running(dev))
David S. Millerf72051b2008-09-23 01:11:18 -07001389 tbl->proxy_redo(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390 else
David S. Millerf72051b2008-09-23 01:11:18 -07001391 kfree_skb(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392
1393 dev_put(dev);
1394 } else if (!sched_next || tdif < sched_next)
1395 sched_next = tdif;
1396 }
1397 del_timer(&tbl->proxy_timer);
1398 if (sched_next)
1399 mod_timer(&tbl->proxy_timer, jiffies + sched_next);
1400 spin_unlock(&tbl->proxy_queue.lock);
1401}
1402
1403void pneigh_enqueue(struct neigh_table *tbl, struct neigh_parms *p,
1404 struct sk_buff *skb)
1405{
1406 unsigned long now = jiffies;
1407 unsigned long sched_next = now + (net_random() % p->proxy_delay);
1408
1409 if (tbl->proxy_queue.qlen > p->proxy_qlen) {
1410 kfree_skb(skb);
1411 return;
1412 }
Patrick McHardya61bbcf2005-08-14 17:24:31 -07001413
1414 NEIGH_CB(skb)->sched_next = sched_next;
1415 NEIGH_CB(skb)->flags |= LOCALLY_ENQUEUED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416
1417 spin_lock(&tbl->proxy_queue.lock);
1418 if (del_timer(&tbl->proxy_timer)) {
1419 if (time_before(tbl->proxy_timer.expires, sched_next))
1420 sched_next = tbl->proxy_timer.expires;
1421 }
Eric Dumazetadf30902009-06-02 05:19:30 +00001422 skb_dst_drop(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423 dev_hold(skb->dev);
1424 __skb_queue_tail(&tbl->proxy_queue, skb);
1425 mod_timer(&tbl->proxy_timer, sched_next);
1426 spin_unlock(&tbl->proxy_queue.lock);
1427}
YOSHIFUJI Hideaki0a204502008-03-24 18:39:10 +09001428EXPORT_SYMBOL(pneigh_enqueue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429
Tobias Klauser97fd5bc2009-07-13 11:17:49 -07001430static inline struct neigh_parms *lookup_neigh_parms(struct neigh_table *tbl,
Eric W. Biederman426b5302008-01-24 00:13:18 -08001431 struct net *net, int ifindex)
1432{
1433 struct neigh_parms *p;
1434
1435 for (p = &tbl->parms; p; p = p->next) {
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +09001436 if ((p->dev && p->dev->ifindex == ifindex && net_eq(neigh_parms_net(p), net)) ||
Eric W. Biederman426b5302008-01-24 00:13:18 -08001437 (!p->dev && !ifindex))
1438 return p;
1439 }
1440
1441 return NULL;
1442}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443
1444struct neigh_parms *neigh_parms_alloc(struct net_device *dev,
1445 struct neigh_table *tbl)
1446{
Eric W. Biederman426b5302008-01-24 00:13:18 -08001447 struct neigh_parms *p, *ref;
Stephen Hemminger00829822008-11-20 20:14:53 -08001448 struct net *net = dev_net(dev);
1449 const struct net_device_ops *ops = dev->netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450
Tobias Klauser97fd5bc2009-07-13 11:17:49 -07001451 ref = lookup_neigh_parms(tbl, net, 0);
Eric W. Biederman426b5302008-01-24 00:13:18 -08001452 if (!ref)
1453 return NULL;
1454
1455 p = kmemdup(ref, sizeof(*p), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456 if (p) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457 p->tbl = tbl;
1458 atomic_set(&p->refcnt, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459 p->reachable_time =
1460 neigh_rand_reach_time(p->base_reachable_time);
Thomas Grafc7fb64d2005-06-18 22:50:55 -07001461
Stephen Hemminger00829822008-11-20 20:14:53 -08001462 if (ops->ndo_neigh_setup && ops->ndo_neigh_setup(dev, p)) {
Denis V. Lunev486b51d2008-01-14 22:59:59 -08001463 kfree(p);
1464 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465 }
Denis V. Lunev486b51d2008-01-14 22:59:59 -08001466
1467 dev_hold(dev);
1468 p->dev = dev;
Eric Dumazete42ea982008-11-12 00:54:54 -08001469 write_pnet(&p->net, hold_net(net));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470 p->sysctl_table = NULL;
1471 write_lock_bh(&tbl->lock);
1472 p->next = tbl->parms.next;
1473 tbl->parms.next = p;
1474 write_unlock_bh(&tbl->lock);
1475 }
1476 return p;
1477}
YOSHIFUJI Hideaki0a204502008-03-24 18:39:10 +09001478EXPORT_SYMBOL(neigh_parms_alloc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479
1480static void neigh_rcu_free_parms(struct rcu_head *head)
1481{
1482 struct neigh_parms *parms =
1483 container_of(head, struct neigh_parms, rcu_head);
1484
1485 neigh_parms_put(parms);
1486}
1487
1488void neigh_parms_release(struct neigh_table *tbl, struct neigh_parms *parms)
1489{
1490 struct neigh_parms **p;
1491
1492 if (!parms || parms == &tbl->parms)
1493 return;
1494 write_lock_bh(&tbl->lock);
1495 for (p = &tbl->parms.next; *p; p = &(*p)->next) {
1496 if (*p == parms) {
1497 *p = parms->next;
1498 parms->dead = 1;
1499 write_unlock_bh(&tbl->lock);
David S. Millercecbb632008-01-20 16:39:03 -08001500 if (parms->dev)
1501 dev_put(parms->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502 call_rcu(&parms->rcu_head, neigh_rcu_free_parms);
1503 return;
1504 }
1505 }
1506 write_unlock_bh(&tbl->lock);
1507 NEIGH_PRINTK1("neigh_parms_release: not found\n");
1508}
YOSHIFUJI Hideaki0a204502008-03-24 18:39:10 +09001509EXPORT_SYMBOL(neigh_parms_release);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510
Denis V. Lunev06f05112008-01-24 00:30:58 -08001511static void neigh_parms_destroy(struct neigh_parms *parms)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512{
YOSHIFUJI Hideaki57da52c2008-03-26 03:49:59 +09001513 release_net(neigh_parms_net(parms));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514 kfree(parms);
1515}
1516
Pavel Emelianovc2ecba72007-04-17 12:45:31 -07001517static struct lock_class_key neigh_table_proxy_queue_class;
1518
Simon Kelleybd89efc2006-05-12 14:56:08 -07001519void neigh_table_init_no_netlink(struct neigh_table *tbl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520{
1521 unsigned long now = jiffies;
1522 unsigned long phsize;
1523
Eric Dumazete42ea982008-11-12 00:54:54 -08001524 write_pnet(&tbl->parms.net, &init_net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525 atomic_set(&tbl->parms.refcnt, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526 tbl->parms.reachable_time =
1527 neigh_rand_reach_time(tbl->parms.base_reachable_time);
1528
1529 if (!tbl->kmem_cachep)
Alexey Dobriyane5d679f332006-08-26 19:25:52 -07001530 tbl->kmem_cachep =
1531 kmem_cache_create(tbl->id, tbl->entry_size, 0,
1532 SLAB_HWCACHE_ALIGN|SLAB_PANIC,
Paul Mundt20c2df82007-07-20 10:11:58 +09001533 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534 tbl->stats = alloc_percpu(struct neigh_statistics);
1535 if (!tbl->stats)
1536 panic("cannot create neighbour cache statistics");
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09001537
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538#ifdef CONFIG_PROC_FS
Alexey Dobriyan9b739ba2008-11-11 16:47:44 -08001539 if (!proc_create_data(tbl->id, 0, init_net.proc_net_stat,
1540 &neigh_stat_seq_fops, tbl))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541 panic("cannot create neighbour proc dir entry");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542#endif
1543
Eric Dumazetd6bf7812010-10-04 06:15:44 +00001544 tbl->nht = neigh_hash_alloc(8);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545
1546 phsize = (PNEIGH_HASHMASK + 1) * sizeof(struct pneigh_entry *);
Andrew Morton77d04bd2006-04-07 14:52:59 -07001547 tbl->phash_buckets = kzalloc(phsize, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548
Eric Dumazetd6bf7812010-10-04 06:15:44 +00001549 if (!tbl->nht || !tbl->phash_buckets)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550 panic("cannot allocate neighbour cache hashes");
1551
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552 rwlock_init(&tbl->lock);
Eric Dumazete4c4e442009-07-30 03:15:07 +00001553 INIT_DELAYED_WORK_DEFERRABLE(&tbl->gc_work, neigh_periodic_work);
1554 schedule_delayed_work(&tbl->gc_work, tbl->parms.reachable_time);
Pavel Emelyanovb24b8a22008-01-23 21:20:07 -08001555 setup_timer(&tbl->proxy_timer, neigh_proxy_process, (unsigned long)tbl);
Pavel Emelianovc2ecba72007-04-17 12:45:31 -07001556 skb_queue_head_init_class(&tbl->proxy_queue,
1557 &neigh_table_proxy_queue_class);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558
1559 tbl->last_flush = now;
1560 tbl->last_rand = now + tbl->parms.reachable_time * 20;
Simon Kelleybd89efc2006-05-12 14:56:08 -07001561}
YOSHIFUJI Hideaki0a204502008-03-24 18:39:10 +09001562EXPORT_SYMBOL(neigh_table_init_no_netlink);
Simon Kelleybd89efc2006-05-12 14:56:08 -07001563
1564void neigh_table_init(struct neigh_table *tbl)
1565{
1566 struct neigh_table *tmp;
1567
1568 neigh_table_init_no_netlink(tbl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569 write_lock(&neigh_tbl_lock);
Simon Kelleybd89efc2006-05-12 14:56:08 -07001570 for (tmp = neigh_tables; tmp; tmp = tmp->next) {
1571 if (tmp->family == tbl->family)
1572 break;
1573 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574 tbl->next = neigh_tables;
1575 neigh_tables = tbl;
1576 write_unlock(&neigh_tbl_lock);
Simon Kelleybd89efc2006-05-12 14:56:08 -07001577
1578 if (unlikely(tmp)) {
1579 printk(KERN_ERR "NEIGH: Registering multiple tables for "
1580 "family %d\n", tbl->family);
1581 dump_stack();
1582 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583}
YOSHIFUJI Hideaki0a204502008-03-24 18:39:10 +09001584EXPORT_SYMBOL(neigh_table_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585
1586int neigh_table_clear(struct neigh_table *tbl)
1587{
1588 struct neigh_table **tp;
1589
1590 /* It is not clean... Fix it to unload IPv6 module safely */
Eric Dumazete4c4e442009-07-30 03:15:07 +00001591 cancel_delayed_work(&tbl->gc_work);
1592 flush_scheduled_work();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593 del_timer_sync(&tbl->proxy_timer);
1594 pneigh_queue_purge(&tbl->proxy_queue);
1595 neigh_ifdown(tbl, NULL);
1596 if (atomic_read(&tbl->entries))
1597 printk(KERN_CRIT "neighbour leakage\n");
1598 write_lock(&neigh_tbl_lock);
1599 for (tp = &neigh_tables; *tp; tp = &(*tp)->next) {
1600 if (*tp == tbl) {
1601 *tp = tbl->next;
1602 break;
1603 }
1604 }
1605 write_unlock(&neigh_tbl_lock);
1606
Eric Dumazetd6bf7812010-10-04 06:15:44 +00001607 call_rcu(&tbl->nht->rcu, neigh_hash_free_rcu);
1608 tbl->nht = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609
1610 kfree(tbl->phash_buckets);
1611 tbl->phash_buckets = NULL;
1612
Alexey Dobriyan3f192b52007-11-05 21:28:13 -08001613 remove_proc_entry(tbl->id, init_net.proc_net_stat);
1614
Kirill Korotaev3fcde742006-09-01 01:34:10 -07001615 free_percpu(tbl->stats);
1616 tbl->stats = NULL;
1617
Randy Dunlapbfb85c92007-10-21 16:24:27 -07001618 kmem_cache_destroy(tbl->kmem_cachep);
1619 tbl->kmem_cachep = NULL;
1620
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621 return 0;
1622}
YOSHIFUJI Hideaki0a204502008-03-24 18:39:10 +09001623EXPORT_SYMBOL(neigh_table_clear);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624
Thomas Grafc8822a42007-03-22 11:50:06 -07001625static int neigh_delete(struct sk_buff *skb, struct nlmsghdr *nlh, void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001627 struct net *net = sock_net(skb->sk);
Thomas Grafa14a49d2006-08-07 17:53:08 -07001628 struct ndmsg *ndm;
1629 struct nlattr *dst_attr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630 struct neigh_table *tbl;
1631 struct net_device *dev = NULL;
Thomas Grafa14a49d2006-08-07 17:53:08 -07001632 int err = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633
Eric Dumazet110b2492010-10-04 04:27:36 +00001634 ASSERT_RTNL();
Thomas Grafa14a49d2006-08-07 17:53:08 -07001635 if (nlmsg_len(nlh) < sizeof(*ndm))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636 goto out;
1637
Thomas Grafa14a49d2006-08-07 17:53:08 -07001638 dst_attr = nlmsg_find_attr(nlh, sizeof(*ndm), NDA_DST);
1639 if (dst_attr == NULL)
1640 goto out;
1641
1642 ndm = nlmsg_data(nlh);
1643 if (ndm->ndm_ifindex) {
Eric Dumazet110b2492010-10-04 04:27:36 +00001644 dev = __dev_get_by_index(net, ndm->ndm_ifindex);
Thomas Grafa14a49d2006-08-07 17:53:08 -07001645 if (dev == NULL) {
1646 err = -ENODEV;
1647 goto out;
1648 }
1649 }
1650
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651 read_lock(&neigh_tbl_lock);
1652 for (tbl = neigh_tables; tbl; tbl = tbl->next) {
Thomas Grafa14a49d2006-08-07 17:53:08 -07001653 struct neighbour *neigh;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654
1655 if (tbl->family != ndm->ndm_family)
1656 continue;
1657 read_unlock(&neigh_tbl_lock);
1658
Thomas Grafa14a49d2006-08-07 17:53:08 -07001659 if (nla_len(dst_attr) < tbl->key_len)
Eric Dumazet110b2492010-10-04 04:27:36 +00001660 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661
1662 if (ndm->ndm_flags & NTF_PROXY) {
Eric W. Biederman426b5302008-01-24 00:13:18 -08001663 err = pneigh_delete(tbl, net, nla_data(dst_attr), dev);
Eric Dumazet110b2492010-10-04 04:27:36 +00001664 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665 }
1666
Thomas Grafa14a49d2006-08-07 17:53:08 -07001667 if (dev == NULL)
Eric Dumazet110b2492010-10-04 04:27:36 +00001668 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669
Thomas Grafa14a49d2006-08-07 17:53:08 -07001670 neigh = neigh_lookup(tbl, nla_data(dst_attr), dev);
1671 if (neigh == NULL) {
1672 err = -ENOENT;
Eric Dumazet110b2492010-10-04 04:27:36 +00001673 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674 }
Thomas Grafa14a49d2006-08-07 17:53:08 -07001675
1676 err = neigh_update(neigh, NULL, NUD_FAILED,
1677 NEIGH_UPDATE_F_OVERRIDE |
1678 NEIGH_UPDATE_F_ADMIN);
1679 neigh_release(neigh);
Eric Dumazet110b2492010-10-04 04:27:36 +00001680 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681 }
1682 read_unlock(&neigh_tbl_lock);
Thomas Grafa14a49d2006-08-07 17:53:08 -07001683 err = -EAFNOSUPPORT;
1684
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685out:
1686 return err;
1687}
1688
Thomas Grafc8822a42007-03-22 11:50:06 -07001689static int neigh_add(struct sk_buff *skb, struct nlmsghdr *nlh, void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001691 struct net *net = sock_net(skb->sk);
Thomas Graf5208deb2006-08-07 17:55:40 -07001692 struct ndmsg *ndm;
1693 struct nlattr *tb[NDA_MAX+1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694 struct neigh_table *tbl;
1695 struct net_device *dev = NULL;
Thomas Graf5208deb2006-08-07 17:55:40 -07001696 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697
Eric Dumazet110b2492010-10-04 04:27:36 +00001698 ASSERT_RTNL();
Thomas Graf5208deb2006-08-07 17:55:40 -07001699 err = nlmsg_parse(nlh, sizeof(*ndm), tb, NDA_MAX, NULL);
1700 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701 goto out;
1702
Thomas Graf5208deb2006-08-07 17:55:40 -07001703 err = -EINVAL;
1704 if (tb[NDA_DST] == NULL)
1705 goto out;
1706
1707 ndm = nlmsg_data(nlh);
1708 if (ndm->ndm_ifindex) {
Eric Dumazet110b2492010-10-04 04:27:36 +00001709 dev = __dev_get_by_index(net, ndm->ndm_ifindex);
Thomas Graf5208deb2006-08-07 17:55:40 -07001710 if (dev == NULL) {
1711 err = -ENODEV;
1712 goto out;
1713 }
1714
1715 if (tb[NDA_LLADDR] && nla_len(tb[NDA_LLADDR]) < dev->addr_len)
Eric Dumazet110b2492010-10-04 04:27:36 +00001716 goto out;
Thomas Graf5208deb2006-08-07 17:55:40 -07001717 }
1718
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719 read_lock(&neigh_tbl_lock);
1720 for (tbl = neigh_tables; tbl; tbl = tbl->next) {
Thomas Graf5208deb2006-08-07 17:55:40 -07001721 int flags = NEIGH_UPDATE_F_ADMIN | NEIGH_UPDATE_F_OVERRIDE;
1722 struct neighbour *neigh;
1723 void *dst, *lladdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001724
1725 if (tbl->family != ndm->ndm_family)
1726 continue;
1727 read_unlock(&neigh_tbl_lock);
1728
Thomas Graf5208deb2006-08-07 17:55:40 -07001729 if (nla_len(tb[NDA_DST]) < tbl->key_len)
Eric Dumazet110b2492010-10-04 04:27:36 +00001730 goto out;
Thomas Graf5208deb2006-08-07 17:55:40 -07001731 dst = nla_data(tb[NDA_DST]);
1732 lladdr = tb[NDA_LLADDR] ? nla_data(tb[NDA_LLADDR]) : NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733
1734 if (ndm->ndm_flags & NTF_PROXY) {
Ville Nuorvala62dd9312006-09-22 14:43:19 -07001735 struct pneigh_entry *pn;
1736
1737 err = -ENOBUFS;
Eric W. Biederman426b5302008-01-24 00:13:18 -08001738 pn = pneigh_lookup(tbl, net, dst, dev, 1);
Ville Nuorvala62dd9312006-09-22 14:43:19 -07001739 if (pn) {
1740 pn->flags = ndm->ndm_flags;
1741 err = 0;
1742 }
Eric Dumazet110b2492010-10-04 04:27:36 +00001743 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744 }
1745
Thomas Graf5208deb2006-08-07 17:55:40 -07001746 if (dev == NULL)
Eric Dumazet110b2492010-10-04 04:27:36 +00001747 goto out;
Thomas Graf5208deb2006-08-07 17:55:40 -07001748
1749 neigh = neigh_lookup(tbl, dst, dev);
1750 if (neigh == NULL) {
1751 if (!(nlh->nlmsg_flags & NLM_F_CREATE)) {
1752 err = -ENOENT;
Eric Dumazet110b2492010-10-04 04:27:36 +00001753 goto out;
Thomas Graf5208deb2006-08-07 17:55:40 -07001754 }
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09001755
Thomas Graf5208deb2006-08-07 17:55:40 -07001756 neigh = __neigh_lookup_errno(tbl, dst, dev);
1757 if (IS_ERR(neigh)) {
1758 err = PTR_ERR(neigh);
Eric Dumazet110b2492010-10-04 04:27:36 +00001759 goto out;
Thomas Graf5208deb2006-08-07 17:55:40 -07001760 }
1761 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762 if (nlh->nlmsg_flags & NLM_F_EXCL) {
1763 err = -EEXIST;
Thomas Graf5208deb2006-08-07 17:55:40 -07001764 neigh_release(neigh);
Eric Dumazet110b2492010-10-04 04:27:36 +00001765 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766 }
Thomas Graf5208deb2006-08-07 17:55:40 -07001767
1768 if (!(nlh->nlmsg_flags & NLM_F_REPLACE))
1769 flags &= ~NEIGH_UPDATE_F_OVERRIDE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770 }
1771
Eric Biederman0c5c2d32009-03-04 00:03:08 -08001772 if (ndm->ndm_flags & NTF_USE) {
1773 neigh_event_send(neigh, NULL);
1774 err = 0;
1775 } else
1776 err = neigh_update(neigh, lladdr, ndm->ndm_state, flags);
Thomas Graf5208deb2006-08-07 17:55:40 -07001777 neigh_release(neigh);
Eric Dumazet110b2492010-10-04 04:27:36 +00001778 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779 }
1780
1781 read_unlock(&neigh_tbl_lock);
Thomas Graf5208deb2006-08-07 17:55:40 -07001782 err = -EAFNOSUPPORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783out:
1784 return err;
1785}
1786
Thomas Grafc7fb64d2005-06-18 22:50:55 -07001787static int neightbl_fill_parms(struct sk_buff *skb, struct neigh_parms *parms)
1788{
Thomas Grafca860fb2006-08-07 18:00:18 -07001789 struct nlattr *nest;
1790
1791 nest = nla_nest_start(skb, NDTA_PARMS);
1792 if (nest == NULL)
1793 return -ENOBUFS;
Thomas Grafc7fb64d2005-06-18 22:50:55 -07001794
1795 if (parms->dev)
Thomas Grafca860fb2006-08-07 18:00:18 -07001796 NLA_PUT_U32(skb, NDTPA_IFINDEX, parms->dev->ifindex);
Thomas Grafc7fb64d2005-06-18 22:50:55 -07001797
Thomas Grafca860fb2006-08-07 18:00:18 -07001798 NLA_PUT_U32(skb, NDTPA_REFCNT, atomic_read(&parms->refcnt));
1799 NLA_PUT_U32(skb, NDTPA_QUEUE_LEN, parms->queue_len);
1800 NLA_PUT_U32(skb, NDTPA_PROXY_QLEN, parms->proxy_qlen);
1801 NLA_PUT_U32(skb, NDTPA_APP_PROBES, parms->app_probes);
1802 NLA_PUT_U32(skb, NDTPA_UCAST_PROBES, parms->ucast_probes);
1803 NLA_PUT_U32(skb, NDTPA_MCAST_PROBES, parms->mcast_probes);
1804 NLA_PUT_MSECS(skb, NDTPA_REACHABLE_TIME, parms->reachable_time);
1805 NLA_PUT_MSECS(skb, NDTPA_BASE_REACHABLE_TIME,
Thomas Grafc7fb64d2005-06-18 22:50:55 -07001806 parms->base_reachable_time);
Thomas Grafca860fb2006-08-07 18:00:18 -07001807 NLA_PUT_MSECS(skb, NDTPA_GC_STALETIME, parms->gc_staletime);
1808 NLA_PUT_MSECS(skb, NDTPA_DELAY_PROBE_TIME, parms->delay_probe_time);
1809 NLA_PUT_MSECS(skb, NDTPA_RETRANS_TIME, parms->retrans_time);
1810 NLA_PUT_MSECS(skb, NDTPA_ANYCAST_DELAY, parms->anycast_delay);
1811 NLA_PUT_MSECS(skb, NDTPA_PROXY_DELAY, parms->proxy_delay);
1812 NLA_PUT_MSECS(skb, NDTPA_LOCKTIME, parms->locktime);
Thomas Grafc7fb64d2005-06-18 22:50:55 -07001813
Thomas Grafca860fb2006-08-07 18:00:18 -07001814 return nla_nest_end(skb, nest);
Thomas Grafc7fb64d2005-06-18 22:50:55 -07001815
Thomas Grafca860fb2006-08-07 18:00:18 -07001816nla_put_failure:
Thomas Grafbc3ed282008-06-03 16:36:54 -07001817 nla_nest_cancel(skb, nest);
1818 return -EMSGSIZE;
Thomas Grafc7fb64d2005-06-18 22:50:55 -07001819}
1820
Thomas Grafca860fb2006-08-07 18:00:18 -07001821static int neightbl_fill_info(struct sk_buff *skb, struct neigh_table *tbl,
1822 u32 pid, u32 seq, int type, int flags)
Thomas Grafc7fb64d2005-06-18 22:50:55 -07001823{
1824 struct nlmsghdr *nlh;
1825 struct ndtmsg *ndtmsg;
1826
Thomas Grafca860fb2006-08-07 18:00:18 -07001827 nlh = nlmsg_put(skb, pid, seq, type, sizeof(*ndtmsg), flags);
1828 if (nlh == NULL)
Patrick McHardy26932562007-01-31 23:16:40 -08001829 return -EMSGSIZE;
Thomas Grafc7fb64d2005-06-18 22:50:55 -07001830
Thomas Grafca860fb2006-08-07 18:00:18 -07001831 ndtmsg = nlmsg_data(nlh);
Thomas Grafc7fb64d2005-06-18 22:50:55 -07001832
1833 read_lock_bh(&tbl->lock);
1834 ndtmsg->ndtm_family = tbl->family;
Patrick McHardy9ef1d4c2005-06-28 12:55:30 -07001835 ndtmsg->ndtm_pad1 = 0;
1836 ndtmsg->ndtm_pad2 = 0;
Thomas Grafc7fb64d2005-06-18 22:50:55 -07001837
Thomas Grafca860fb2006-08-07 18:00:18 -07001838 NLA_PUT_STRING(skb, NDTA_NAME, tbl->id);
1839 NLA_PUT_MSECS(skb, NDTA_GC_INTERVAL, tbl->gc_interval);
1840 NLA_PUT_U32(skb, NDTA_THRESH1, tbl->gc_thresh1);
1841 NLA_PUT_U32(skb, NDTA_THRESH2, tbl->gc_thresh2);
1842 NLA_PUT_U32(skb, NDTA_THRESH3, tbl->gc_thresh3);
Thomas Grafc7fb64d2005-06-18 22:50:55 -07001843
1844 {
1845 unsigned long now = jiffies;
1846 unsigned int flush_delta = now - tbl->last_flush;
1847 unsigned int rand_delta = now - tbl->last_rand;
Eric Dumazetd6bf7812010-10-04 06:15:44 +00001848 struct neigh_hash_table *nht;
Thomas Grafc7fb64d2005-06-18 22:50:55 -07001849 struct ndt_config ndc = {
1850 .ndtc_key_len = tbl->key_len,
1851 .ndtc_entry_size = tbl->entry_size,
1852 .ndtc_entries = atomic_read(&tbl->entries),
1853 .ndtc_last_flush = jiffies_to_msecs(flush_delta),
1854 .ndtc_last_rand = jiffies_to_msecs(rand_delta),
Thomas Grafc7fb64d2005-06-18 22:50:55 -07001855 .ndtc_proxy_qlen = tbl->proxy_queue.qlen,
1856 };
1857
Eric Dumazetd6bf7812010-10-04 06:15:44 +00001858 rcu_read_lock_bh();
1859 nht = rcu_dereference_bh(tbl->nht);
1860 ndc.ndtc_hash_rnd = nht->hash_rnd;
1861 ndc.ndtc_hash_mask = nht->hash_mask;
1862 rcu_read_unlock_bh();
1863
Thomas Grafca860fb2006-08-07 18:00:18 -07001864 NLA_PUT(skb, NDTA_CONFIG, sizeof(ndc), &ndc);
Thomas Grafc7fb64d2005-06-18 22:50:55 -07001865 }
1866
1867 {
1868 int cpu;
1869 struct ndt_stats ndst;
1870
1871 memset(&ndst, 0, sizeof(ndst));
1872
KAMEZAWA Hiroyuki6f912042006-04-10 22:52:50 -07001873 for_each_possible_cpu(cpu) {
Thomas Grafc7fb64d2005-06-18 22:50:55 -07001874 struct neigh_statistics *st;
1875
Thomas Grafc7fb64d2005-06-18 22:50:55 -07001876 st = per_cpu_ptr(tbl->stats, cpu);
1877 ndst.ndts_allocs += st->allocs;
1878 ndst.ndts_destroys += st->destroys;
1879 ndst.ndts_hash_grows += st->hash_grows;
1880 ndst.ndts_res_failed += st->res_failed;
1881 ndst.ndts_lookups += st->lookups;
1882 ndst.ndts_hits += st->hits;
1883 ndst.ndts_rcv_probes_mcast += st->rcv_probes_mcast;
1884 ndst.ndts_rcv_probes_ucast += st->rcv_probes_ucast;
1885 ndst.ndts_periodic_gc_runs += st->periodic_gc_runs;
1886 ndst.ndts_forced_gc_runs += st->forced_gc_runs;
1887 }
1888
Thomas Grafca860fb2006-08-07 18:00:18 -07001889 NLA_PUT(skb, NDTA_STATS, sizeof(ndst), &ndst);
Thomas Grafc7fb64d2005-06-18 22:50:55 -07001890 }
1891
1892 BUG_ON(tbl->parms.dev);
1893 if (neightbl_fill_parms(skb, &tbl->parms) < 0)
Thomas Grafca860fb2006-08-07 18:00:18 -07001894 goto nla_put_failure;
Thomas Grafc7fb64d2005-06-18 22:50:55 -07001895
1896 read_unlock_bh(&tbl->lock);
Thomas Grafca860fb2006-08-07 18:00:18 -07001897 return nlmsg_end(skb, nlh);
Thomas Grafc7fb64d2005-06-18 22:50:55 -07001898
Thomas Grafca860fb2006-08-07 18:00:18 -07001899nla_put_failure:
Thomas Grafc7fb64d2005-06-18 22:50:55 -07001900 read_unlock_bh(&tbl->lock);
Patrick McHardy26932562007-01-31 23:16:40 -08001901 nlmsg_cancel(skb, nlh);
1902 return -EMSGSIZE;
Thomas Grafc7fb64d2005-06-18 22:50:55 -07001903}
1904
Thomas Grafca860fb2006-08-07 18:00:18 -07001905static int neightbl_fill_param_info(struct sk_buff *skb,
1906 struct neigh_table *tbl,
Thomas Grafc7fb64d2005-06-18 22:50:55 -07001907 struct neigh_parms *parms,
Thomas Grafca860fb2006-08-07 18:00:18 -07001908 u32 pid, u32 seq, int type,
1909 unsigned int flags)
Thomas Grafc7fb64d2005-06-18 22:50:55 -07001910{
1911 struct ndtmsg *ndtmsg;
1912 struct nlmsghdr *nlh;
1913
Thomas Grafca860fb2006-08-07 18:00:18 -07001914 nlh = nlmsg_put(skb, pid, seq, type, sizeof(*ndtmsg), flags);
1915 if (nlh == NULL)
Patrick McHardy26932562007-01-31 23:16:40 -08001916 return -EMSGSIZE;
Thomas Grafc7fb64d2005-06-18 22:50:55 -07001917
Thomas Grafca860fb2006-08-07 18:00:18 -07001918 ndtmsg = nlmsg_data(nlh);
Thomas Grafc7fb64d2005-06-18 22:50:55 -07001919
1920 read_lock_bh(&tbl->lock);
1921 ndtmsg->ndtm_family = tbl->family;
Patrick McHardy9ef1d4c2005-06-28 12:55:30 -07001922 ndtmsg->ndtm_pad1 = 0;
1923 ndtmsg->ndtm_pad2 = 0;
Thomas Grafc7fb64d2005-06-18 22:50:55 -07001924
Thomas Grafca860fb2006-08-07 18:00:18 -07001925 if (nla_put_string(skb, NDTA_NAME, tbl->id) < 0 ||
1926 neightbl_fill_parms(skb, parms) < 0)
1927 goto errout;
Thomas Grafc7fb64d2005-06-18 22:50:55 -07001928
1929 read_unlock_bh(&tbl->lock);
Thomas Grafca860fb2006-08-07 18:00:18 -07001930 return nlmsg_end(skb, nlh);
1931errout:
Thomas Grafc7fb64d2005-06-18 22:50:55 -07001932 read_unlock_bh(&tbl->lock);
Patrick McHardy26932562007-01-31 23:16:40 -08001933 nlmsg_cancel(skb, nlh);
1934 return -EMSGSIZE;
Thomas Grafc7fb64d2005-06-18 22:50:55 -07001935}
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09001936
Patrick McHardyef7c79e2007-06-05 12:38:30 -07001937static const struct nla_policy nl_neightbl_policy[NDTA_MAX+1] = {
Thomas Graf6b3f8672006-08-07 17:58:53 -07001938 [NDTA_NAME] = { .type = NLA_STRING },
1939 [NDTA_THRESH1] = { .type = NLA_U32 },
1940 [NDTA_THRESH2] = { .type = NLA_U32 },
1941 [NDTA_THRESH3] = { .type = NLA_U32 },
1942 [NDTA_GC_INTERVAL] = { .type = NLA_U64 },
1943 [NDTA_PARMS] = { .type = NLA_NESTED },
1944};
1945
Patrick McHardyef7c79e2007-06-05 12:38:30 -07001946static const struct nla_policy nl_ntbl_parm_policy[NDTPA_MAX+1] = {
Thomas Graf6b3f8672006-08-07 17:58:53 -07001947 [NDTPA_IFINDEX] = { .type = NLA_U32 },
1948 [NDTPA_QUEUE_LEN] = { .type = NLA_U32 },
1949 [NDTPA_PROXY_QLEN] = { .type = NLA_U32 },
1950 [NDTPA_APP_PROBES] = { .type = NLA_U32 },
1951 [NDTPA_UCAST_PROBES] = { .type = NLA_U32 },
1952 [NDTPA_MCAST_PROBES] = { .type = NLA_U32 },
1953 [NDTPA_BASE_REACHABLE_TIME] = { .type = NLA_U64 },
1954 [NDTPA_GC_STALETIME] = { .type = NLA_U64 },
1955 [NDTPA_DELAY_PROBE_TIME] = { .type = NLA_U64 },
1956 [NDTPA_RETRANS_TIME] = { .type = NLA_U64 },
1957 [NDTPA_ANYCAST_DELAY] = { .type = NLA_U64 },
1958 [NDTPA_PROXY_DELAY] = { .type = NLA_U64 },
1959 [NDTPA_LOCKTIME] = { .type = NLA_U64 },
1960};
1961
Thomas Grafc8822a42007-03-22 11:50:06 -07001962static int neightbl_set(struct sk_buff *skb, struct nlmsghdr *nlh, void *arg)
Thomas Grafc7fb64d2005-06-18 22:50:55 -07001963{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001964 struct net *net = sock_net(skb->sk);
Thomas Grafc7fb64d2005-06-18 22:50:55 -07001965 struct neigh_table *tbl;
Thomas Graf6b3f8672006-08-07 17:58:53 -07001966 struct ndtmsg *ndtmsg;
1967 struct nlattr *tb[NDTA_MAX+1];
1968 int err;
Thomas Grafc7fb64d2005-06-18 22:50:55 -07001969
Thomas Graf6b3f8672006-08-07 17:58:53 -07001970 err = nlmsg_parse(nlh, sizeof(*ndtmsg), tb, NDTA_MAX,
1971 nl_neightbl_policy);
1972 if (err < 0)
1973 goto errout;
Thomas Grafc7fb64d2005-06-18 22:50:55 -07001974
Thomas Graf6b3f8672006-08-07 17:58:53 -07001975 if (tb[NDTA_NAME] == NULL) {
1976 err = -EINVAL;
1977 goto errout;
1978 }
1979
1980 ndtmsg = nlmsg_data(nlh);
Thomas Grafc7fb64d2005-06-18 22:50:55 -07001981 read_lock(&neigh_tbl_lock);
1982 for (tbl = neigh_tables; tbl; tbl = tbl->next) {
1983 if (ndtmsg->ndtm_family && tbl->family != ndtmsg->ndtm_family)
1984 continue;
1985
Thomas Graf6b3f8672006-08-07 17:58:53 -07001986 if (nla_strcmp(tb[NDTA_NAME], tbl->id) == 0)
Thomas Grafc7fb64d2005-06-18 22:50:55 -07001987 break;
1988 }
1989
1990 if (tbl == NULL) {
1991 err = -ENOENT;
Thomas Graf6b3f8672006-08-07 17:58:53 -07001992 goto errout_locked;
Thomas Grafc7fb64d2005-06-18 22:50:55 -07001993 }
1994
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09001995 /*
Thomas Grafc7fb64d2005-06-18 22:50:55 -07001996 * We acquire tbl->lock to be nice to the periodic timers and
1997 * make sure they always see a consistent set of values.
1998 */
1999 write_lock_bh(&tbl->lock);
2000
Thomas Graf6b3f8672006-08-07 17:58:53 -07002001 if (tb[NDTA_PARMS]) {
2002 struct nlattr *tbp[NDTPA_MAX+1];
Thomas Grafc7fb64d2005-06-18 22:50:55 -07002003 struct neigh_parms *p;
Thomas Graf6b3f8672006-08-07 17:58:53 -07002004 int i, ifindex = 0;
Thomas Grafc7fb64d2005-06-18 22:50:55 -07002005
Thomas Graf6b3f8672006-08-07 17:58:53 -07002006 err = nla_parse_nested(tbp, NDTPA_MAX, tb[NDTA_PARMS],
2007 nl_ntbl_parm_policy);
2008 if (err < 0)
2009 goto errout_tbl_lock;
Thomas Grafc7fb64d2005-06-18 22:50:55 -07002010
Thomas Graf6b3f8672006-08-07 17:58:53 -07002011 if (tbp[NDTPA_IFINDEX])
2012 ifindex = nla_get_u32(tbp[NDTPA_IFINDEX]);
Thomas Grafc7fb64d2005-06-18 22:50:55 -07002013
Tobias Klauser97fd5bc2009-07-13 11:17:49 -07002014 p = lookup_neigh_parms(tbl, net, ifindex);
Thomas Grafc7fb64d2005-06-18 22:50:55 -07002015 if (p == NULL) {
2016 err = -ENOENT;
Thomas Graf6b3f8672006-08-07 17:58:53 -07002017 goto errout_tbl_lock;
Thomas Grafc7fb64d2005-06-18 22:50:55 -07002018 }
Thomas Grafc7fb64d2005-06-18 22:50:55 -07002019
Thomas Graf6b3f8672006-08-07 17:58:53 -07002020 for (i = 1; i <= NDTPA_MAX; i++) {
2021 if (tbp[i] == NULL)
2022 continue;
Thomas Grafc7fb64d2005-06-18 22:50:55 -07002023
Thomas Graf6b3f8672006-08-07 17:58:53 -07002024 switch (i) {
2025 case NDTPA_QUEUE_LEN:
2026 p->queue_len = nla_get_u32(tbp[i]);
2027 break;
2028 case NDTPA_PROXY_QLEN:
2029 p->proxy_qlen = nla_get_u32(tbp[i]);
2030 break;
2031 case NDTPA_APP_PROBES:
2032 p->app_probes = nla_get_u32(tbp[i]);
2033 break;
2034 case NDTPA_UCAST_PROBES:
2035 p->ucast_probes = nla_get_u32(tbp[i]);
2036 break;
2037 case NDTPA_MCAST_PROBES:
2038 p->mcast_probes = nla_get_u32(tbp[i]);
2039 break;
2040 case NDTPA_BASE_REACHABLE_TIME:
2041 p->base_reachable_time = nla_get_msecs(tbp[i]);
2042 break;
2043 case NDTPA_GC_STALETIME:
2044 p->gc_staletime = nla_get_msecs(tbp[i]);
2045 break;
2046 case NDTPA_DELAY_PROBE_TIME:
2047 p->delay_probe_time = nla_get_msecs(tbp[i]);
2048 break;
2049 case NDTPA_RETRANS_TIME:
2050 p->retrans_time = nla_get_msecs(tbp[i]);
2051 break;
2052 case NDTPA_ANYCAST_DELAY:
2053 p->anycast_delay = nla_get_msecs(tbp[i]);
2054 break;
2055 case NDTPA_PROXY_DELAY:
2056 p->proxy_delay = nla_get_msecs(tbp[i]);
2057 break;
2058 case NDTPA_LOCKTIME:
2059 p->locktime = nla_get_msecs(tbp[i]);
2060 break;
2061 }
2062 }
Thomas Grafc7fb64d2005-06-18 22:50:55 -07002063 }
2064
Thomas Graf6b3f8672006-08-07 17:58:53 -07002065 if (tb[NDTA_THRESH1])
2066 tbl->gc_thresh1 = nla_get_u32(tb[NDTA_THRESH1]);
2067
2068 if (tb[NDTA_THRESH2])
2069 tbl->gc_thresh2 = nla_get_u32(tb[NDTA_THRESH2]);
2070
2071 if (tb[NDTA_THRESH3])
2072 tbl->gc_thresh3 = nla_get_u32(tb[NDTA_THRESH3]);
2073
2074 if (tb[NDTA_GC_INTERVAL])
2075 tbl->gc_interval = nla_get_msecs(tb[NDTA_GC_INTERVAL]);
2076
Thomas Grafc7fb64d2005-06-18 22:50:55 -07002077 err = 0;
2078
Thomas Graf6b3f8672006-08-07 17:58:53 -07002079errout_tbl_lock:
Thomas Grafc7fb64d2005-06-18 22:50:55 -07002080 write_unlock_bh(&tbl->lock);
Thomas Graf6b3f8672006-08-07 17:58:53 -07002081errout_locked:
Thomas Grafc7fb64d2005-06-18 22:50:55 -07002082 read_unlock(&neigh_tbl_lock);
Thomas Graf6b3f8672006-08-07 17:58:53 -07002083errout:
Thomas Grafc7fb64d2005-06-18 22:50:55 -07002084 return err;
2085}
2086
Thomas Grafc8822a42007-03-22 11:50:06 -07002087static int neightbl_dump_info(struct sk_buff *skb, struct netlink_callback *cb)
Thomas Grafc7fb64d2005-06-18 22:50:55 -07002088{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09002089 struct net *net = sock_net(skb->sk);
Thomas Grafca860fb2006-08-07 18:00:18 -07002090 int family, tidx, nidx = 0;
2091 int tbl_skip = cb->args[0];
2092 int neigh_skip = cb->args[1];
Thomas Grafc7fb64d2005-06-18 22:50:55 -07002093 struct neigh_table *tbl;
2094
Thomas Grafca860fb2006-08-07 18:00:18 -07002095 family = ((struct rtgenmsg *) nlmsg_data(cb->nlh))->rtgen_family;
Thomas Grafc7fb64d2005-06-18 22:50:55 -07002096
2097 read_lock(&neigh_tbl_lock);
Thomas Grafca860fb2006-08-07 18:00:18 -07002098 for (tbl = neigh_tables, tidx = 0; tbl; tbl = tbl->next, tidx++) {
Thomas Grafc7fb64d2005-06-18 22:50:55 -07002099 struct neigh_parms *p;
2100
Thomas Grafca860fb2006-08-07 18:00:18 -07002101 if (tidx < tbl_skip || (family && tbl->family != family))
Thomas Grafc7fb64d2005-06-18 22:50:55 -07002102 continue;
2103
Thomas Grafca860fb2006-08-07 18:00:18 -07002104 if (neightbl_fill_info(skb, tbl, NETLINK_CB(cb->skb).pid,
2105 cb->nlh->nlmsg_seq, RTM_NEWNEIGHTBL,
2106 NLM_F_MULTI) <= 0)
Thomas Grafc7fb64d2005-06-18 22:50:55 -07002107 break;
2108
Eric W. Biederman426b5302008-01-24 00:13:18 -08002109 for (nidx = 0, p = tbl->parms.next; p; p = p->next) {
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +09002110 if (!net_eq(neigh_parms_net(p), net))
Eric W. Biederman426b5302008-01-24 00:13:18 -08002111 continue;
2112
Gautam Kachrooefc683f2009-02-06 00:52:04 -08002113 if (nidx < neigh_skip)
2114 goto next;
Thomas Grafc7fb64d2005-06-18 22:50:55 -07002115
Thomas Grafca860fb2006-08-07 18:00:18 -07002116 if (neightbl_fill_param_info(skb, tbl, p,
2117 NETLINK_CB(cb->skb).pid,
2118 cb->nlh->nlmsg_seq,
2119 RTM_NEWNEIGHTBL,
2120 NLM_F_MULTI) <= 0)
Thomas Grafc7fb64d2005-06-18 22:50:55 -07002121 goto out;
Gautam Kachrooefc683f2009-02-06 00:52:04 -08002122 next:
2123 nidx++;
Thomas Grafc7fb64d2005-06-18 22:50:55 -07002124 }
2125
Thomas Grafca860fb2006-08-07 18:00:18 -07002126 neigh_skip = 0;
Thomas Grafc7fb64d2005-06-18 22:50:55 -07002127 }
2128out:
2129 read_unlock(&neigh_tbl_lock);
Thomas Grafca860fb2006-08-07 18:00:18 -07002130 cb->args[0] = tidx;
2131 cb->args[1] = nidx;
Thomas Grafc7fb64d2005-06-18 22:50:55 -07002132
2133 return skb->len;
2134}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002135
Thomas Graf8b8aec52006-08-07 17:56:37 -07002136static int neigh_fill_info(struct sk_buff *skb, struct neighbour *neigh,
2137 u32 pid, u32 seq, int type, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002138{
2139 unsigned long now = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002140 struct nda_cacheinfo ci;
Thomas Graf8b8aec52006-08-07 17:56:37 -07002141 struct nlmsghdr *nlh;
2142 struct ndmsg *ndm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002143
Thomas Graf8b8aec52006-08-07 17:56:37 -07002144 nlh = nlmsg_put(skb, pid, seq, type, sizeof(*ndm), flags);
2145 if (nlh == NULL)
Patrick McHardy26932562007-01-31 23:16:40 -08002146 return -EMSGSIZE;
Thomas Graf8b8aec52006-08-07 17:56:37 -07002147
2148 ndm = nlmsg_data(nlh);
2149 ndm->ndm_family = neigh->ops->family;
Patrick McHardy9ef1d4c2005-06-28 12:55:30 -07002150 ndm->ndm_pad1 = 0;
2151 ndm->ndm_pad2 = 0;
Thomas Graf8b8aec52006-08-07 17:56:37 -07002152 ndm->ndm_flags = neigh->flags;
2153 ndm->ndm_type = neigh->type;
2154 ndm->ndm_ifindex = neigh->dev->ifindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002155
Thomas Graf8b8aec52006-08-07 17:56:37 -07002156 NLA_PUT(skb, NDA_DST, neigh->tbl->key_len, neigh->primary_key);
2157
2158 read_lock_bh(&neigh->lock);
2159 ndm->ndm_state = neigh->nud_state;
Eric Dumazet0ed8ddf2010-10-07 10:44:07 +00002160 if (neigh->nud_state & NUD_VALID) {
2161 char haddr[MAX_ADDR_LEN];
2162
2163 neigh_ha_snapshot(haddr, neigh, neigh->dev);
2164 if (nla_put(skb, NDA_LLADDR, neigh->dev->addr_len, haddr) < 0) {
2165 read_unlock_bh(&neigh->lock);
2166 goto nla_put_failure;
2167 }
Thomas Graf8b8aec52006-08-07 17:56:37 -07002168 }
2169
Stephen Hemmingerb9f5f522008-06-03 16:03:15 -07002170 ci.ndm_used = jiffies_to_clock_t(now - neigh->used);
2171 ci.ndm_confirmed = jiffies_to_clock_t(now - neigh->confirmed);
2172 ci.ndm_updated = jiffies_to_clock_t(now - neigh->updated);
Thomas Graf8b8aec52006-08-07 17:56:37 -07002173 ci.ndm_refcnt = atomic_read(&neigh->refcnt) - 1;
2174 read_unlock_bh(&neigh->lock);
2175
2176 NLA_PUT_U32(skb, NDA_PROBES, atomic_read(&neigh->probes));
2177 NLA_PUT(skb, NDA_CACHEINFO, sizeof(ci), &ci);
2178
2179 return nlmsg_end(skb, nlh);
2180
2181nla_put_failure:
Patrick McHardy26932562007-01-31 23:16:40 -08002182 nlmsg_cancel(skb, nlh);
2183 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002184}
2185
Thomas Grafd961db32007-08-08 23:12:56 -07002186static void neigh_update_notify(struct neighbour *neigh)
2187{
2188 call_netevent_notifiers(NETEVENT_NEIGH_UPDATE, neigh);
2189 __neigh_notify(neigh, RTM_NEWNEIGH, 0);
2190}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002191
2192static int neigh_dump_table(struct neigh_table *tbl, struct sk_buff *skb,
2193 struct netlink_callback *cb)
2194{
Eric Dumazet767e97e2010-10-06 17:49:21 -07002195 struct net *net = sock_net(skb->sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002196 struct neighbour *n;
2197 int rc, h, s_h = cb->args[1];
2198 int idx, s_idx = idx = cb->args[2];
Eric Dumazetd6bf7812010-10-04 06:15:44 +00002199 struct neigh_hash_table *nht;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002200
Eric Dumazetd6bf7812010-10-04 06:15:44 +00002201 rcu_read_lock_bh();
2202 nht = rcu_dereference_bh(tbl->nht);
2203
Eric Dumazetd6bf7812010-10-04 06:15:44 +00002204 for (h = 0; h <= nht->hash_mask; h++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002205 if (h < s_h)
2206 continue;
2207 if (h > s_h)
2208 s_idx = 0;
Eric Dumazet767e97e2010-10-06 17:49:21 -07002209 for (n = rcu_dereference_bh(nht->hash_buckets[h]), idx = 0;
2210 n != NULL;
2211 n = rcu_dereference_bh(n->next)) {
Octavian Purdila09ad9bc2009-11-25 15:14:13 -08002212 if (!net_eq(dev_net(n->dev), net))
Eric W. Biederman426b5302008-01-24 00:13:18 -08002213 continue;
Gautam Kachrooefc683f2009-02-06 00:52:04 -08002214 if (idx < s_idx)
2215 goto next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002216 if (neigh_fill_info(skb, n, NETLINK_CB(cb->skb).pid,
2217 cb->nlh->nlmsg_seq,
Jamal Hadi Salimb6544c02005-06-18 22:54:12 -07002218 RTM_NEWNEIGH,
2219 NLM_F_MULTI) <= 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002220 rc = -1;
2221 goto out;
2222 }
Eric Dumazet767e97e2010-10-06 17:49:21 -07002223next:
Gautam Kachrooefc683f2009-02-06 00:52:04 -08002224 idx++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002225 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002226 }
2227 rc = skb->len;
2228out:
Eric Dumazetd6bf7812010-10-04 06:15:44 +00002229 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002230 cb->args[1] = h;
2231 cb->args[2] = idx;
2232 return rc;
2233}
2234
Thomas Grafc8822a42007-03-22 11:50:06 -07002235static int neigh_dump_info(struct sk_buff *skb, struct netlink_callback *cb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002236{
2237 struct neigh_table *tbl;
2238 int t, family, s_t;
2239
2240 read_lock(&neigh_tbl_lock);
Thomas Graf8b8aec52006-08-07 17:56:37 -07002241 family = ((struct rtgenmsg *) nlmsg_data(cb->nlh))->rtgen_family;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002242 s_t = cb->args[0];
2243
2244 for (tbl = neigh_tables, t = 0; tbl; tbl = tbl->next, t++) {
2245 if (t < s_t || (family && tbl->family != family))
2246 continue;
2247 if (t > s_t)
2248 memset(&cb->args[1], 0, sizeof(cb->args) -
2249 sizeof(cb->args[0]));
2250 if (neigh_dump_table(tbl, skb, cb) < 0)
2251 break;
2252 }
2253 read_unlock(&neigh_tbl_lock);
2254
2255 cb->args[0] = t;
2256 return skb->len;
2257}
2258
2259void neigh_for_each(struct neigh_table *tbl, void (*cb)(struct neighbour *, void *), void *cookie)
2260{
2261 int chain;
Eric Dumazetd6bf7812010-10-04 06:15:44 +00002262 struct neigh_hash_table *nht;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002263
Eric Dumazetd6bf7812010-10-04 06:15:44 +00002264 rcu_read_lock_bh();
2265 nht = rcu_dereference_bh(tbl->nht);
2266
Eric Dumazet767e97e2010-10-06 17:49:21 -07002267 read_lock(&tbl->lock); /* avoid resizes */
Eric Dumazetd6bf7812010-10-04 06:15:44 +00002268 for (chain = 0; chain <= nht->hash_mask; chain++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002269 struct neighbour *n;
2270
Eric Dumazet767e97e2010-10-06 17:49:21 -07002271 for (n = rcu_dereference_bh(nht->hash_buckets[chain]);
2272 n != NULL;
2273 n = rcu_dereference_bh(n->next))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002274 cb(n, cookie);
2275 }
Eric Dumazetd6bf7812010-10-04 06:15:44 +00002276 read_unlock(&tbl->lock);
2277 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002278}
2279EXPORT_SYMBOL(neigh_for_each);
2280
2281/* The tbl->lock must be held as a writer and BH disabled. */
2282void __neigh_for_each_release(struct neigh_table *tbl,
2283 int (*cb)(struct neighbour *))
2284{
2285 int chain;
Eric Dumazetd6bf7812010-10-04 06:15:44 +00002286 struct neigh_hash_table *nht;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002287
Eric Dumazetd6bf7812010-10-04 06:15:44 +00002288 nht = rcu_dereference_protected(tbl->nht,
2289 lockdep_is_held(&tbl->lock));
2290 for (chain = 0; chain <= nht->hash_mask; chain++) {
Eric Dumazet767e97e2010-10-06 17:49:21 -07002291 struct neighbour *n;
2292 struct neighbour __rcu **np;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002293
Eric Dumazetd6bf7812010-10-04 06:15:44 +00002294 np = &nht->hash_buckets[chain];
Eric Dumazet767e97e2010-10-06 17:49:21 -07002295 while ((n = rcu_dereference_protected(*np,
2296 lockdep_is_held(&tbl->lock))) != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002297 int release;
2298
2299 write_lock(&n->lock);
2300 release = cb(n);
2301 if (release) {
Eric Dumazet767e97e2010-10-06 17:49:21 -07002302 rcu_assign_pointer(*np,
2303 rcu_dereference_protected(n->next,
2304 lockdep_is_held(&tbl->lock)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002305 n->dead = 1;
2306 } else
2307 np = &n->next;
2308 write_unlock(&n->lock);
Thomas Graf4f494552007-08-08 23:12:36 -07002309 if (release)
2310 neigh_cleanup_and_release(n);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002311 }
2312 }
2313}
2314EXPORT_SYMBOL(__neigh_for_each_release);
2315
2316#ifdef CONFIG_PROC_FS
2317
2318static struct neighbour *neigh_get_first(struct seq_file *seq)
2319{
2320 struct neigh_seq_state *state = seq->private;
YOSHIFUJI Hideaki12188542008-03-26 02:36:06 +09002321 struct net *net = seq_file_net(seq);
Eric Dumazetd6bf7812010-10-04 06:15:44 +00002322 struct neigh_hash_table *nht = state->nht;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002323 struct neighbour *n = NULL;
2324 int bucket = state->bucket;
2325
2326 state->flags &= ~NEIGH_SEQ_IS_PNEIGH;
Eric Dumazetd6bf7812010-10-04 06:15:44 +00002327 for (bucket = 0; bucket <= nht->hash_mask; bucket++) {
Eric Dumazet767e97e2010-10-06 17:49:21 -07002328 n = rcu_dereference_bh(nht->hash_buckets[bucket]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002329
2330 while (n) {
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +09002331 if (!net_eq(dev_net(n->dev), net))
Eric W. Biederman426b5302008-01-24 00:13:18 -08002332 goto next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002333 if (state->neigh_sub_iter) {
2334 loff_t fakep = 0;
2335 void *v;
2336
2337 v = state->neigh_sub_iter(state, n, &fakep);
2338 if (!v)
2339 goto next;
2340 }
2341 if (!(state->flags & NEIGH_SEQ_SKIP_NOARP))
2342 break;
2343 if (n->nud_state & ~NUD_NOARP)
2344 break;
Eric Dumazet767e97e2010-10-06 17:49:21 -07002345next:
2346 n = rcu_dereference_bh(n->next);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002347 }
2348
2349 if (n)
2350 break;
2351 }
2352 state->bucket = bucket;
2353
2354 return n;
2355}
2356
2357static struct neighbour *neigh_get_next(struct seq_file *seq,
2358 struct neighbour *n,
2359 loff_t *pos)
2360{
2361 struct neigh_seq_state *state = seq->private;
YOSHIFUJI Hideaki12188542008-03-26 02:36:06 +09002362 struct net *net = seq_file_net(seq);
Eric Dumazetd6bf7812010-10-04 06:15:44 +00002363 struct neigh_hash_table *nht = state->nht;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002364
2365 if (state->neigh_sub_iter) {
2366 void *v = state->neigh_sub_iter(state, n, pos);
2367 if (v)
2368 return n;
2369 }
Eric Dumazet767e97e2010-10-06 17:49:21 -07002370 n = rcu_dereference_bh(n->next);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002371
2372 while (1) {
2373 while (n) {
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +09002374 if (!net_eq(dev_net(n->dev), net))
Eric W. Biederman426b5302008-01-24 00:13:18 -08002375 goto next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002376 if (state->neigh_sub_iter) {
2377 void *v = state->neigh_sub_iter(state, n, pos);
2378 if (v)
2379 return n;
2380 goto next;
2381 }
2382 if (!(state->flags & NEIGH_SEQ_SKIP_NOARP))
2383 break;
2384
2385 if (n->nud_state & ~NUD_NOARP)
2386 break;
Eric Dumazet767e97e2010-10-06 17:49:21 -07002387next:
2388 n = rcu_dereference_bh(n->next);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002389 }
2390
2391 if (n)
2392 break;
2393
Eric Dumazetd6bf7812010-10-04 06:15:44 +00002394 if (++state->bucket > nht->hash_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002395 break;
2396
Eric Dumazet767e97e2010-10-06 17:49:21 -07002397 n = rcu_dereference_bh(nht->hash_buckets[state->bucket]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002398 }
2399
2400 if (n && pos)
2401 --(*pos);
2402 return n;
2403}
2404
2405static struct neighbour *neigh_get_idx(struct seq_file *seq, loff_t *pos)
2406{
2407 struct neighbour *n = neigh_get_first(seq);
2408
2409 if (n) {
Chris Larson745e2032008-08-03 01:10:55 -07002410 --(*pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002411 while (*pos) {
2412 n = neigh_get_next(seq, n, pos);
2413 if (!n)
2414 break;
2415 }
2416 }
2417 return *pos ? NULL : n;
2418}
2419
2420static struct pneigh_entry *pneigh_get_first(struct seq_file *seq)
2421{
2422 struct neigh_seq_state *state = seq->private;
YOSHIFUJI Hideaki12188542008-03-26 02:36:06 +09002423 struct net *net = seq_file_net(seq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002424 struct neigh_table *tbl = state->tbl;
2425 struct pneigh_entry *pn = NULL;
2426 int bucket = state->bucket;
2427
2428 state->flags |= NEIGH_SEQ_IS_PNEIGH;
2429 for (bucket = 0; bucket <= PNEIGH_HASHMASK; bucket++) {
2430 pn = tbl->phash_buckets[bucket];
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +09002431 while (pn && !net_eq(pneigh_net(pn), net))
Eric W. Biederman426b5302008-01-24 00:13:18 -08002432 pn = pn->next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002433 if (pn)
2434 break;
2435 }
2436 state->bucket = bucket;
2437
2438 return pn;
2439}
2440
2441static struct pneigh_entry *pneigh_get_next(struct seq_file *seq,
2442 struct pneigh_entry *pn,
2443 loff_t *pos)
2444{
2445 struct neigh_seq_state *state = seq->private;
YOSHIFUJI Hideaki12188542008-03-26 02:36:06 +09002446 struct net *net = seq_file_net(seq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002447 struct neigh_table *tbl = state->tbl;
2448
2449 pn = pn->next;
2450 while (!pn) {
2451 if (++state->bucket > PNEIGH_HASHMASK)
2452 break;
2453 pn = tbl->phash_buckets[state->bucket];
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +09002454 while (pn && !net_eq(pneigh_net(pn), net))
Eric W. Biederman426b5302008-01-24 00:13:18 -08002455 pn = pn->next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002456 if (pn)
2457 break;
2458 }
2459
2460 if (pn && pos)
2461 --(*pos);
2462
2463 return pn;
2464}
2465
2466static struct pneigh_entry *pneigh_get_idx(struct seq_file *seq, loff_t *pos)
2467{
2468 struct pneigh_entry *pn = pneigh_get_first(seq);
2469
2470 if (pn) {
Chris Larson745e2032008-08-03 01:10:55 -07002471 --(*pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002472 while (*pos) {
2473 pn = pneigh_get_next(seq, pn, pos);
2474 if (!pn)
2475 break;
2476 }
2477 }
2478 return *pos ? NULL : pn;
2479}
2480
2481static void *neigh_get_idx_any(struct seq_file *seq, loff_t *pos)
2482{
2483 struct neigh_seq_state *state = seq->private;
2484 void *rc;
Chris Larson745e2032008-08-03 01:10:55 -07002485 loff_t idxpos = *pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002486
Chris Larson745e2032008-08-03 01:10:55 -07002487 rc = neigh_get_idx(seq, &idxpos);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002488 if (!rc && !(state->flags & NEIGH_SEQ_NEIGH_ONLY))
Chris Larson745e2032008-08-03 01:10:55 -07002489 rc = pneigh_get_idx(seq, &idxpos);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002490
2491 return rc;
2492}
2493
2494void *neigh_seq_start(struct seq_file *seq, loff_t *pos, struct neigh_table *tbl, unsigned int neigh_seq_flags)
Eric Dumazetd6bf7812010-10-04 06:15:44 +00002495 __acquires(rcu_bh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002496{
2497 struct neigh_seq_state *state = seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002498
2499 state->tbl = tbl;
2500 state->bucket = 0;
2501 state->flags = (neigh_seq_flags & ~NEIGH_SEQ_IS_PNEIGH);
2502
Eric Dumazetd6bf7812010-10-04 06:15:44 +00002503 rcu_read_lock_bh();
2504 state->nht = rcu_dereference_bh(tbl->nht);
Eric Dumazet767e97e2010-10-06 17:49:21 -07002505
Chris Larson745e2032008-08-03 01:10:55 -07002506 return *pos ? neigh_get_idx_any(seq, pos) : SEQ_START_TOKEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002507}
2508EXPORT_SYMBOL(neigh_seq_start);
2509
2510void *neigh_seq_next(struct seq_file *seq, void *v, loff_t *pos)
2511{
2512 struct neigh_seq_state *state;
2513 void *rc;
2514
2515 if (v == SEQ_START_TOKEN) {
Chris Larsonbff69732008-08-03 01:02:41 -07002516 rc = neigh_get_first(seq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002517 goto out;
2518 }
2519
2520 state = seq->private;
2521 if (!(state->flags & NEIGH_SEQ_IS_PNEIGH)) {
2522 rc = neigh_get_next(seq, v, NULL);
2523 if (rc)
2524 goto out;
2525 if (!(state->flags & NEIGH_SEQ_NEIGH_ONLY))
2526 rc = pneigh_get_first(seq);
2527 } else {
2528 BUG_ON(state->flags & NEIGH_SEQ_NEIGH_ONLY);
2529 rc = pneigh_get_next(seq, v, NULL);
2530 }
2531out:
2532 ++(*pos);
2533 return rc;
2534}
2535EXPORT_SYMBOL(neigh_seq_next);
2536
2537void neigh_seq_stop(struct seq_file *seq, void *v)
Eric Dumazetd6bf7812010-10-04 06:15:44 +00002538 __releases(rcu_bh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002539{
Eric Dumazetd6bf7812010-10-04 06:15:44 +00002540 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002541}
2542EXPORT_SYMBOL(neigh_seq_stop);
2543
2544/* statistics via seq_file */
2545
2546static void *neigh_stat_seq_start(struct seq_file *seq, loff_t *pos)
2547{
Alexey Dobriyan81c1ebf2010-01-22 10:16:05 +00002548 struct neigh_table *tbl = seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002549 int cpu;
2550
2551 if (*pos == 0)
2552 return SEQ_START_TOKEN;
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09002553
Rusty Russell0f23174a2008-12-29 12:23:42 +00002554 for (cpu = *pos-1; cpu < nr_cpu_ids; ++cpu) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002555 if (!cpu_possible(cpu))
2556 continue;
2557 *pos = cpu+1;
2558 return per_cpu_ptr(tbl->stats, cpu);
2559 }
2560 return NULL;
2561}
2562
2563static void *neigh_stat_seq_next(struct seq_file *seq, void *v, loff_t *pos)
2564{
Alexey Dobriyan81c1ebf2010-01-22 10:16:05 +00002565 struct neigh_table *tbl = seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002566 int cpu;
2567
Rusty Russell0f23174a2008-12-29 12:23:42 +00002568 for (cpu = *pos; cpu < nr_cpu_ids; ++cpu) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002569 if (!cpu_possible(cpu))
2570 continue;
2571 *pos = cpu+1;
2572 return per_cpu_ptr(tbl->stats, cpu);
2573 }
2574 return NULL;
2575}
2576
2577static void neigh_stat_seq_stop(struct seq_file *seq, void *v)
2578{
2579
2580}
2581
2582static int neigh_stat_seq_show(struct seq_file *seq, void *v)
2583{
Alexey Dobriyan81c1ebf2010-01-22 10:16:05 +00002584 struct neigh_table *tbl = seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002585 struct neigh_statistics *st = v;
2586
2587 if (v == SEQ_START_TOKEN) {
Neil Horman9a6d2762008-07-16 20:50:49 -07002588 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");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002589 return 0;
2590 }
2591
2592 seq_printf(seq, "%08x %08lx %08lx %08lx %08lx %08lx %08lx "
Neil Horman9a6d2762008-07-16 20:50:49 -07002593 "%08lx %08lx %08lx %08lx %08lx\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002594 atomic_read(&tbl->entries),
2595
2596 st->allocs,
2597 st->destroys,
2598 st->hash_grows,
2599
2600 st->lookups,
2601 st->hits,
2602
2603 st->res_failed,
2604
2605 st->rcv_probes_mcast,
2606 st->rcv_probes_ucast,
2607
2608 st->periodic_gc_runs,
Neil Horman9a6d2762008-07-16 20:50:49 -07002609 st->forced_gc_runs,
2610 st->unres_discards
Linus Torvalds1da177e2005-04-16 15:20:36 -07002611 );
2612
2613 return 0;
2614}
2615
Stephen Hemmingerf6908082007-03-12 14:34:29 -07002616static const struct seq_operations neigh_stat_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002617 .start = neigh_stat_seq_start,
2618 .next = neigh_stat_seq_next,
2619 .stop = neigh_stat_seq_stop,
2620 .show = neigh_stat_seq_show,
2621};
2622
2623static int neigh_stat_seq_open(struct inode *inode, struct file *file)
2624{
2625 int ret = seq_open(file, &neigh_stat_seq_ops);
2626
2627 if (!ret) {
2628 struct seq_file *sf = file->private_data;
Alexey Dobriyan81c1ebf2010-01-22 10:16:05 +00002629 sf->private = PDE(inode)->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002630 }
2631 return ret;
2632};
2633
Arjan van de Ven9a321442007-02-12 00:55:35 -08002634static const struct file_operations neigh_stat_seq_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002635 .owner = THIS_MODULE,
2636 .open = neigh_stat_seq_open,
2637 .read = seq_read,
2638 .llseek = seq_lseek,
2639 .release = seq_release,
2640};
2641
2642#endif /* CONFIG_PROC_FS */
2643
Thomas Graf339bf982006-11-10 14:10:15 -08002644static inline size_t neigh_nlmsg_size(void)
2645{
2646 return NLMSG_ALIGN(sizeof(struct ndmsg))
2647 + nla_total_size(MAX_ADDR_LEN) /* NDA_DST */
2648 + nla_total_size(MAX_ADDR_LEN) /* NDA_LLADDR */
2649 + nla_total_size(sizeof(struct nda_cacheinfo))
2650 + nla_total_size(4); /* NDA_PROBES */
2651}
2652
Thomas Grafb8673312006-08-15 00:33:14 -07002653static void __neigh_notify(struct neighbour *n, int type, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002654{
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09002655 struct net *net = dev_net(n->dev);
Thomas Graf8b8aec52006-08-07 17:56:37 -07002656 struct sk_buff *skb;
Thomas Grafb8673312006-08-15 00:33:14 -07002657 int err = -ENOBUFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002658
Thomas Graf339bf982006-11-10 14:10:15 -08002659 skb = nlmsg_new(neigh_nlmsg_size(), GFP_ATOMIC);
Thomas Graf8b8aec52006-08-07 17:56:37 -07002660 if (skb == NULL)
Thomas Grafb8673312006-08-15 00:33:14 -07002661 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002662
Thomas Grafb8673312006-08-15 00:33:14 -07002663 err = neigh_fill_info(skb, n, 0, 0, type, flags);
Patrick McHardy26932562007-01-31 23:16:40 -08002664 if (err < 0) {
2665 /* -EMSGSIZE implies BUG in neigh_nlmsg_size() */
2666 WARN_ON(err == -EMSGSIZE);
2667 kfree_skb(skb);
2668 goto errout;
2669 }
Pablo Neira Ayuso1ce85fe2009-02-24 23:18:28 -08002670 rtnl_notify(skb, net, 0, RTNLGRP_NEIGH, NULL, GFP_ATOMIC);
2671 return;
Thomas Grafb8673312006-08-15 00:33:14 -07002672errout:
2673 if (err < 0)
Eric W. Biederman426b5302008-01-24 00:13:18 -08002674 rtnl_set_sk_err(net, RTNLGRP_NEIGH, err);
Thomas Grafb8673312006-08-15 00:33:14 -07002675}
2676
Thomas Grafd961db32007-08-08 23:12:56 -07002677#ifdef CONFIG_ARPD
Thomas Grafb8673312006-08-15 00:33:14 -07002678void neigh_app_ns(struct neighbour *n)
2679{
2680 __neigh_notify(n, RTM_GETNEIGH, NLM_F_REQUEST);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002681}
YOSHIFUJI Hideaki0a204502008-03-24 18:39:10 +09002682EXPORT_SYMBOL(neigh_app_ns);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002683#endif /* CONFIG_ARPD */
2684
2685#ifdef CONFIG_SYSCTL
2686
Eric W. Biederman54716e32010-02-14 03:27:03 +00002687#define NEIGH_VARS_MAX 19
2688
Linus Torvalds1da177e2005-04-16 15:20:36 -07002689static struct neigh_sysctl_table {
2690 struct ctl_table_header *sysctl_header;
Eric W. Biederman54716e32010-02-14 03:27:03 +00002691 struct ctl_table neigh_vars[NEIGH_VARS_MAX];
Pavel Emelyanovc3bac5a2007-12-02 00:08:16 +11002692 char *dev_name;
Brian Haleyab32ea52006-09-22 14:15:41 -07002693} neigh_sysctl_template __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002694 .neigh_vars = {
2695 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002696 .procname = "mcast_solicit",
2697 .maxlen = sizeof(int),
2698 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08002699 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002700 },
2701 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002702 .procname = "ucast_solicit",
2703 .maxlen = sizeof(int),
2704 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08002705 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002706 },
2707 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002708 .procname = "app_solicit",
2709 .maxlen = sizeof(int),
2710 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08002711 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002712 },
2713 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002714 .procname = "retrans_time",
2715 .maxlen = sizeof(int),
2716 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08002717 .proc_handler = proc_dointvec_userhz_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002718 },
2719 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002720 .procname = "base_reachable_time",
2721 .maxlen = sizeof(int),
2722 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08002723 .proc_handler = proc_dointvec_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002724 },
2725 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002726 .procname = "delay_first_probe_time",
2727 .maxlen = sizeof(int),
2728 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08002729 .proc_handler = proc_dointvec_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002730 },
2731 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002732 .procname = "gc_stale_time",
2733 .maxlen = sizeof(int),
2734 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08002735 .proc_handler = proc_dointvec_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002736 },
2737 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002738 .procname = "unres_qlen",
2739 .maxlen = sizeof(int),
2740 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08002741 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002742 },
2743 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002744 .procname = "proxy_qlen",
2745 .maxlen = sizeof(int),
2746 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08002747 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002748 },
2749 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002750 .procname = "anycast_delay",
2751 .maxlen = sizeof(int),
2752 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08002753 .proc_handler = proc_dointvec_userhz_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002754 },
2755 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002756 .procname = "proxy_delay",
2757 .maxlen = sizeof(int),
2758 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08002759 .proc_handler = proc_dointvec_userhz_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002760 },
2761 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002762 .procname = "locktime",
2763 .maxlen = sizeof(int),
2764 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08002765 .proc_handler = proc_dointvec_userhz_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002766 },
2767 {
Eric W. Biedermand12af672007-10-18 03:05:25 -07002768 .procname = "retrans_time_ms",
2769 .maxlen = sizeof(int),
2770 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08002771 .proc_handler = proc_dointvec_ms_jiffies,
Eric W. Biedermand12af672007-10-18 03:05:25 -07002772 },
2773 {
Eric W. Biedermand12af672007-10-18 03:05:25 -07002774 .procname = "base_reachable_time_ms",
2775 .maxlen = sizeof(int),
2776 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08002777 .proc_handler = proc_dointvec_ms_jiffies,
Eric W. Biedermand12af672007-10-18 03:05:25 -07002778 },
2779 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002780 .procname = "gc_interval",
2781 .maxlen = sizeof(int),
2782 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08002783 .proc_handler = proc_dointvec_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002784 },
2785 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002786 .procname = "gc_thresh1",
2787 .maxlen = sizeof(int),
2788 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08002789 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002790 },
2791 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002792 .procname = "gc_thresh2",
2793 .maxlen = sizeof(int),
2794 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08002795 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002796 },
2797 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002798 .procname = "gc_thresh3",
2799 .maxlen = sizeof(int),
2800 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08002801 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002802 },
Pavel Emelyanovc3bac5a2007-12-02 00:08:16 +11002803 {},
Linus Torvalds1da177e2005-04-16 15:20:36 -07002804 },
2805};
2806
2807int neigh_sysctl_register(struct net_device *dev, struct neigh_parms *p,
Eric W. Biederman54716e32010-02-14 03:27:03 +00002808 char *p_name, proc_handler *handler)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002809{
Pavel Emelyanov3c607bb2007-12-02 00:06:34 +11002810 struct neigh_sysctl_table *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002811 const char *dev_name_source = NULL;
Pavel Emelyanovc3bac5a2007-12-02 00:08:16 +11002812
2813#define NEIGH_CTL_PATH_ROOT 0
2814#define NEIGH_CTL_PATH_PROTO 1
2815#define NEIGH_CTL_PATH_NEIGH 2
2816#define NEIGH_CTL_PATH_DEV 3
2817
2818 struct ctl_path neigh_path[] = {
Eric W. Biedermanf8572d82009-11-05 13:32:03 -08002819 { .procname = "net", },
2820 { .procname = "proto", },
2821 { .procname = "neigh", },
2822 { .procname = "default", },
Pavel Emelyanovc3bac5a2007-12-02 00:08:16 +11002823 { },
2824 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002825
Pavel Emelyanov3c607bb2007-12-02 00:06:34 +11002826 t = kmemdup(&neigh_sysctl_template, sizeof(*t), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002827 if (!t)
Pavel Emelyanov3c607bb2007-12-02 00:06:34 +11002828 goto err;
2829
Linus Torvalds1da177e2005-04-16 15:20:36 -07002830 t->neigh_vars[0].data = &p->mcast_probes;
2831 t->neigh_vars[1].data = &p->ucast_probes;
2832 t->neigh_vars[2].data = &p->app_probes;
2833 t->neigh_vars[3].data = &p->retrans_time;
2834 t->neigh_vars[4].data = &p->base_reachable_time;
2835 t->neigh_vars[5].data = &p->delay_probe_time;
2836 t->neigh_vars[6].data = &p->gc_staletime;
2837 t->neigh_vars[7].data = &p->queue_len;
2838 t->neigh_vars[8].data = &p->proxy_qlen;
2839 t->neigh_vars[9].data = &p->anycast_delay;
2840 t->neigh_vars[10].data = &p->proxy_delay;
2841 t->neigh_vars[11].data = &p->locktime;
Eric W. Biedermand12af672007-10-18 03:05:25 -07002842 t->neigh_vars[12].data = &p->retrans_time;
2843 t->neigh_vars[13].data = &p->base_reachable_time;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002844
2845 if (dev) {
2846 dev_name_source = dev->name;
Eric W. Biedermand12af672007-10-18 03:05:25 -07002847 /* Terminate the table early */
2848 memset(&t->neigh_vars[14], 0, sizeof(t->neigh_vars[14]));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002849 } else {
Pavel Emelyanovc3bac5a2007-12-02 00:08:16 +11002850 dev_name_source = neigh_path[NEIGH_CTL_PATH_DEV].procname;
Eric W. Biedermand12af672007-10-18 03:05:25 -07002851 t->neigh_vars[14].data = (int *)(p + 1);
2852 t->neigh_vars[15].data = (int *)(p + 1) + 1;
2853 t->neigh_vars[16].data = (int *)(p + 1) + 2;
2854 t->neigh_vars[17].data = (int *)(p + 1) + 3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002855 }
2856
Linus Torvalds1da177e2005-04-16 15:20:36 -07002857
Eric W. Biedermanf8572d82009-11-05 13:32:03 -08002858 if (handler) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002859 /* RetransTime */
2860 t->neigh_vars[3].proc_handler = handler;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002861 t->neigh_vars[3].extra1 = dev;
2862 /* ReachableTime */
2863 t->neigh_vars[4].proc_handler = handler;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002864 t->neigh_vars[4].extra1 = dev;
2865 /* RetransTime (in milliseconds)*/
Eric W. Biedermand12af672007-10-18 03:05:25 -07002866 t->neigh_vars[12].proc_handler = handler;
Eric W. Biedermand12af672007-10-18 03:05:25 -07002867 t->neigh_vars[12].extra1 = dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002868 /* ReachableTime (in milliseconds) */
Eric W. Biedermand12af672007-10-18 03:05:25 -07002869 t->neigh_vars[13].proc_handler = handler;
Eric W. Biedermand12af672007-10-18 03:05:25 -07002870 t->neigh_vars[13].extra1 = dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002871 }
2872
Pavel Emelyanovc3bac5a2007-12-02 00:08:16 +11002873 t->dev_name = kstrdup(dev_name_source, GFP_KERNEL);
2874 if (!t->dev_name)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002875 goto free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002876
Pavel Emelyanovc3bac5a2007-12-02 00:08:16 +11002877 neigh_path[NEIGH_CTL_PATH_DEV].procname = t->dev_name;
Pavel Emelyanovc3bac5a2007-12-02 00:08:16 +11002878 neigh_path[NEIGH_CTL_PATH_PROTO].procname = p_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002879
Denis V. Lunev4ab438f2008-02-28 20:48:01 -08002880 t->sysctl_header =
YOSHIFUJI Hideaki57da52c2008-03-26 03:49:59 +09002881 register_net_sysctl_table(neigh_parms_net(p), neigh_path, t->neigh_vars);
Pavel Emelyanov3c607bb2007-12-02 00:06:34 +11002882 if (!t->sysctl_header)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002883 goto free_procname;
Pavel Emelyanov3c607bb2007-12-02 00:06:34 +11002884
Linus Torvalds1da177e2005-04-16 15:20:36 -07002885 p->sysctl_table = t;
2886 return 0;
2887
Pavel Emelyanov3c607bb2007-12-02 00:06:34 +11002888free_procname:
Pavel Emelyanovc3bac5a2007-12-02 00:08:16 +11002889 kfree(t->dev_name);
Pavel Emelyanov3c607bb2007-12-02 00:06:34 +11002890free:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002891 kfree(t);
Pavel Emelyanov3c607bb2007-12-02 00:06:34 +11002892err:
2893 return -ENOBUFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002894}
YOSHIFUJI Hideaki0a204502008-03-24 18:39:10 +09002895EXPORT_SYMBOL(neigh_sysctl_register);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002896
2897void neigh_sysctl_unregister(struct neigh_parms *p)
2898{
2899 if (p->sysctl_table) {
2900 struct neigh_sysctl_table *t = p->sysctl_table;
2901 p->sysctl_table = NULL;
2902 unregister_sysctl_table(t->sysctl_header);
Pavel Emelyanovc3bac5a2007-12-02 00:08:16 +11002903 kfree(t->dev_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002904 kfree(t);
2905 }
2906}
YOSHIFUJI Hideaki0a204502008-03-24 18:39:10 +09002907EXPORT_SYMBOL(neigh_sysctl_unregister);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002908
2909#endif /* CONFIG_SYSCTL */
2910
Thomas Grafc8822a42007-03-22 11:50:06 -07002911static int __init neigh_init(void)
2912{
2913 rtnl_register(PF_UNSPEC, RTM_NEWNEIGH, neigh_add, NULL);
2914 rtnl_register(PF_UNSPEC, RTM_DELNEIGH, neigh_delete, NULL);
2915 rtnl_register(PF_UNSPEC, RTM_GETNEIGH, NULL, neigh_dump_info);
2916
2917 rtnl_register(PF_UNSPEC, RTM_GETNEIGHTBL, NULL, neightbl_dump_info);
2918 rtnl_register(PF_UNSPEC, RTM_SETNEIGHTBL, neightbl_set, NULL);
2919
2920 return 0;
2921}
2922
2923subsys_initcall(neigh_init);
2924