blob: 4d5fc9433fd917e6b201e4d01c3162087420a16b [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)
Linus Torvalds1da177e2005-04-16 15:20:36 -070044#define NEIGH_PRINTK1 NEIGH_NOPRINTK
45#define NEIGH_PRINTK2 NEIGH_NOPRINTK
46
47#if NEIGH_DEBUG >= 1
48#undef NEIGH_PRINTK1
49#define NEIGH_PRINTK1 NEIGH_PRINTK
50#endif
51#if NEIGH_DEBUG >= 2
52#undef NEIGH_PRINTK2
53#define NEIGH_PRINTK2 NEIGH_PRINTK
54#endif
55
56#define PNEIGH_HASHMASK 0xF
57
58static void neigh_timer_handler(unsigned long arg);
Thomas Grafd961db32007-08-08 23:12:56 -070059static void __neigh_notify(struct neighbour *n, int type, int flags);
60static void neigh_update_notify(struct neighbour *neigh);
Linus Torvalds1da177e2005-04-16 15:20:36 -070061static int pneigh_ifdown(struct neigh_table *tbl, struct net_device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070062
63static struct neigh_table *neigh_tables;
Amos Waterland45fc3b12005-09-24 16:53:16 -070064#ifdef CONFIG_PROC_FS
Arjan van de Ven9a321442007-02-12 00:55:35 -080065static const struct file_operations neigh_stat_seq_fops;
Amos Waterland45fc3b12005-09-24 16:53:16 -070066#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070067
68/*
69 Neighbour hash table buckets are protected with rwlock tbl->lock.
70
71 - All the scans/updates to hash buckets MUST be made under this lock.
72 - NOTHING clever should be made under this lock: no callbacks
73 to protocol backends, no attempts to send something to network.
74 It will result in deadlocks, if backend/driver wants to use neighbour
75 cache.
76 - If the entry requires some non-trivial actions, increase
77 its reference count and release table lock.
78
79 Neighbour entries are protected:
80 - with reference count.
81 - with rwlock neigh->lock
82
83 Reference count prevents destruction.
84
85 neigh->lock mainly serializes ll address data and its validity state.
86 However, the same lock is used to protect another entry fields:
87 - timer
88 - resolution queue
89
90 Again, nothing clever shall be made under neigh->lock,
91 the most complicated procedure, which we allow is dev->hard_header.
92 It is supposed, that dev->hard_header is simplistic and does
93 not make callbacks to neighbour tables.
94
95 The last lock is neigh_tbl_lock. It is pure SMP lock, protecting
96 list of neighbour tables. This list is used only in process context,
97 */
98
99static DEFINE_RWLOCK(neigh_tbl_lock);
100
101static int neigh_blackhole(struct sk_buff *skb)
102{
103 kfree_skb(skb);
104 return -ENETDOWN;
105}
106
Thomas Graf4f494552007-08-08 23:12:36 -0700107static void neigh_cleanup_and_release(struct neighbour *neigh)
108{
109 if (neigh->parms->neigh_cleanup)
110 neigh->parms->neigh_cleanup(neigh);
111
Thomas Grafd961db32007-08-08 23:12:56 -0700112 __neigh_notify(neigh, RTM_DELNEIGH, 0);
Thomas Graf4f494552007-08-08 23:12:36 -0700113 neigh_release(neigh);
114}
115
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116/*
117 * It is random distribution in the interval (1/2)*base...(3/2)*base.
118 * It corresponds to default IPv6 settings and is not overridable,
119 * because it is really reasonable choice.
120 */
121
122unsigned long neigh_rand_reach_time(unsigned long base)
123{
Eric Dumazeta02cec22010-09-22 20:43:57 +0000124 return base ? (net_random() % base) + (base >> 1) : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125}
YOSHIFUJI Hideaki0a204502008-03-24 18:39:10 +0900126EXPORT_SYMBOL(neigh_rand_reach_time);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127
128
129static int neigh_forced_gc(struct neigh_table *tbl)
130{
131 int shrunk = 0;
132 int i;
Eric Dumazetd6bf7812010-10-04 06:15:44 +0000133 struct neigh_hash_table *nht;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134
135 NEIGH_CACHE_STAT_INC(tbl, forced_gc_runs);
136
137 write_lock_bh(&tbl->lock);
Eric Dumazetd6bf7812010-10-04 06:15:44 +0000138 nht = rcu_dereference_protected(tbl->nht,
139 lockdep_is_held(&tbl->lock));
David S. Millercd089332011-07-11 01:28:12 -0700140 for (i = 0; i < (1 << nht->hash_shift); i++) {
Eric Dumazet767e97e2010-10-06 17:49:21 -0700141 struct neighbour *n;
142 struct neighbour __rcu **np;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143
Eric Dumazetd6bf7812010-10-04 06:15:44 +0000144 np = &nht->hash_buckets[i];
Eric Dumazet767e97e2010-10-06 17:49:21 -0700145 while ((n = rcu_dereference_protected(*np,
146 lockdep_is_held(&tbl->lock))) != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 /* Neighbour record may be discarded if:
148 * - nobody refers to it.
149 * - it is not permanent
150 */
151 write_lock(&n->lock);
152 if (atomic_read(&n->refcnt) == 1 &&
153 !(n->nud_state & NUD_PERMANENT)) {
Eric Dumazet767e97e2010-10-06 17:49:21 -0700154 rcu_assign_pointer(*np,
155 rcu_dereference_protected(n->next,
156 lockdep_is_held(&tbl->lock)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 n->dead = 1;
158 shrunk = 1;
159 write_unlock(&n->lock);
Thomas Graf4f494552007-08-08 23:12:36 -0700160 neigh_cleanup_and_release(n);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 continue;
162 }
163 write_unlock(&n->lock);
164 np = &n->next;
165 }
166 }
167
168 tbl->last_flush = jiffies;
169
170 write_unlock_bh(&tbl->lock);
171
172 return shrunk;
173}
174
Pavel Emelyanova43d8992007-12-20 15:49:05 -0800175static void neigh_add_timer(struct neighbour *n, unsigned long when)
176{
177 neigh_hold(n);
178 if (unlikely(mod_timer(&n->timer, when))) {
179 printk("NEIGH: BUG, double timer add, state is %x\n",
180 n->nud_state);
181 dump_stack();
182 }
183}
184
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185static int neigh_del_timer(struct neighbour *n)
186{
187 if ((n->nud_state & NUD_IN_TIMER) &&
188 del_timer(&n->timer)) {
189 neigh_release(n);
190 return 1;
191 }
192 return 0;
193}
194
195static void pneigh_queue_purge(struct sk_buff_head *list)
196{
197 struct sk_buff *skb;
198
199 while ((skb = skb_dequeue(list)) != NULL) {
200 dev_put(skb->dev);
201 kfree_skb(skb);
202 }
203}
204
Herbert Xu49636bb2005-10-23 17:18:00 +1000205static void neigh_flush_dev(struct neigh_table *tbl, struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206{
207 int i;
Eric Dumazetd6bf7812010-10-04 06:15:44 +0000208 struct neigh_hash_table *nht;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209
Eric Dumazetd6bf7812010-10-04 06:15:44 +0000210 nht = rcu_dereference_protected(tbl->nht,
211 lockdep_is_held(&tbl->lock));
212
David S. Millercd089332011-07-11 01:28:12 -0700213 for (i = 0; i < (1 << nht->hash_shift); i++) {
Eric Dumazet767e97e2010-10-06 17:49:21 -0700214 struct neighbour *n;
215 struct neighbour __rcu **np = &nht->hash_buckets[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216
Eric Dumazet767e97e2010-10-06 17:49:21 -0700217 while ((n = rcu_dereference_protected(*np,
218 lockdep_is_held(&tbl->lock))) != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 if (dev && n->dev != dev) {
220 np = &n->next;
221 continue;
222 }
Eric Dumazet767e97e2010-10-06 17:49:21 -0700223 rcu_assign_pointer(*np,
224 rcu_dereference_protected(n->next,
225 lockdep_is_held(&tbl->lock)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 write_lock(&n->lock);
227 neigh_del_timer(n);
228 n->dead = 1;
229
230 if (atomic_read(&n->refcnt) != 1) {
231 /* The most unpleasant situation.
232 We must destroy neighbour entry,
233 but someone still uses it.
234
235 The destroy will be delayed until
236 the last user releases us, but
237 we must kill timers etc. and move
238 it to safe state.
239 */
240 skb_queue_purge(&n->arp_queue);
241 n->output = neigh_blackhole;
242 if (n->nud_state & NUD_VALID)
243 n->nud_state = NUD_NOARP;
244 else
245 n->nud_state = NUD_NONE;
246 NEIGH_PRINTK2("neigh %p is stray.\n", n);
247 }
248 write_unlock(&n->lock);
Thomas Graf4f494552007-08-08 23:12:36 -0700249 neigh_cleanup_and_release(n);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 }
251 }
Herbert Xu49636bb2005-10-23 17:18:00 +1000252}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253
Herbert Xu49636bb2005-10-23 17:18:00 +1000254void neigh_changeaddr(struct neigh_table *tbl, struct net_device *dev)
255{
256 write_lock_bh(&tbl->lock);
257 neigh_flush_dev(tbl, dev);
258 write_unlock_bh(&tbl->lock);
259}
YOSHIFUJI Hideaki0a204502008-03-24 18:39:10 +0900260EXPORT_SYMBOL(neigh_changeaddr);
Herbert Xu49636bb2005-10-23 17:18:00 +1000261
262int neigh_ifdown(struct neigh_table *tbl, struct net_device *dev)
263{
264 write_lock_bh(&tbl->lock);
265 neigh_flush_dev(tbl, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 pneigh_ifdown(tbl, dev);
267 write_unlock_bh(&tbl->lock);
268
269 del_timer_sync(&tbl->proxy_timer);
270 pneigh_queue_purge(&tbl->proxy_queue);
271 return 0;
272}
YOSHIFUJI Hideaki0a204502008-03-24 18:39:10 +0900273EXPORT_SYMBOL(neigh_ifdown);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274
275static struct neighbour *neigh_alloc(struct neigh_table *tbl)
276{
277 struct neighbour *n = NULL;
278 unsigned long now = jiffies;
279 int entries;
280
281 entries = atomic_inc_return(&tbl->entries) - 1;
282 if (entries >= tbl->gc_thresh3 ||
283 (entries >= tbl->gc_thresh2 &&
284 time_after(now, tbl->last_flush + 5 * HZ))) {
285 if (!neigh_forced_gc(tbl) &&
286 entries >= tbl->gc_thresh3)
287 goto out_entries;
288 }
289
Robert P. J. Dayc3762222007-02-10 01:45:03 -0800290 n = kmem_cache_zalloc(tbl->kmem_cachep, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 if (!n)
292 goto out_entries;
293
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 skb_queue_head_init(&n->arp_queue);
295 rwlock_init(&n->lock);
Eric Dumazet0ed8ddf2010-10-07 10:44:07 +0000296 seqlock_init(&n->ha_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 n->updated = n->used = now;
298 n->nud_state = NUD_NONE;
299 n->output = neigh_blackhole;
300 n->parms = neigh_parms_clone(&tbl->parms);
Pavel Emelyanovb24b8a22008-01-23 21:20:07 -0800301 setup_timer(&n->timer, neigh_timer_handler, (unsigned long)n);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302
303 NEIGH_CACHE_STAT_INC(tbl, allocs);
304 n->tbl = tbl;
305 atomic_set(&n->refcnt, 1);
306 n->dead = 1;
307out:
308 return n;
309
310out_entries:
311 atomic_dec(&tbl->entries);
312 goto out;
313}
314
David S. Millercd089332011-07-11 01:28:12 -0700315static struct neigh_hash_table *neigh_hash_alloc(unsigned int shift)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316{
David S. Millercd089332011-07-11 01:28:12 -0700317 size_t size = (1 << shift) * sizeof(struct neighbour *);
Eric Dumazetd6bf7812010-10-04 06:15:44 +0000318 struct neigh_hash_table *ret;
Eric Dumazet6193d2b2011-01-19 22:02:47 +0000319 struct neighbour __rcu **buckets;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320
Eric Dumazetd6bf7812010-10-04 06:15:44 +0000321 ret = kmalloc(sizeof(*ret), GFP_ATOMIC);
322 if (!ret)
323 return NULL;
324 if (size <= PAGE_SIZE)
325 buckets = kzalloc(size, GFP_ATOMIC);
326 else
Eric Dumazet6193d2b2011-01-19 22:02:47 +0000327 buckets = (struct neighbour __rcu **)
Eric Dumazetd6bf7812010-10-04 06:15:44 +0000328 __get_free_pages(GFP_ATOMIC | __GFP_ZERO,
329 get_order(size));
330 if (!buckets) {
331 kfree(ret);
332 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 }
Eric Dumazet6193d2b2011-01-19 22:02:47 +0000334 ret->hash_buckets = buckets;
David S. Millercd089332011-07-11 01:28:12 -0700335 ret->hash_shift = shift;
Eric Dumazetd6bf7812010-10-04 06:15:44 +0000336 get_random_bytes(&ret->hash_rnd, sizeof(ret->hash_rnd));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 return ret;
338}
339
Eric Dumazetd6bf7812010-10-04 06:15:44 +0000340static void neigh_hash_free_rcu(struct rcu_head *head)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341{
Eric Dumazetd6bf7812010-10-04 06:15:44 +0000342 struct neigh_hash_table *nht = container_of(head,
343 struct neigh_hash_table,
344 rcu);
David S. Millercd089332011-07-11 01:28:12 -0700345 size_t size = (1 << nht->hash_shift) * sizeof(struct neighbour *);
Eric Dumazet6193d2b2011-01-19 22:02:47 +0000346 struct neighbour __rcu **buckets = nht->hash_buckets;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347
348 if (size <= PAGE_SIZE)
Eric Dumazetd6bf7812010-10-04 06:15:44 +0000349 kfree(buckets);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 else
Eric Dumazetd6bf7812010-10-04 06:15:44 +0000351 free_pages((unsigned long)buckets, get_order(size));
352 kfree(nht);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353}
354
Eric Dumazetd6bf7812010-10-04 06:15:44 +0000355static struct neigh_hash_table *neigh_hash_grow(struct neigh_table *tbl,
David S. Millercd089332011-07-11 01:28:12 -0700356 unsigned long new_shift)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357{
Eric Dumazetd6bf7812010-10-04 06:15:44 +0000358 unsigned int i, hash;
359 struct neigh_hash_table *new_nht, *old_nht;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360
361 NEIGH_CACHE_STAT_INC(tbl, hash_grows);
362
Eric Dumazetd6bf7812010-10-04 06:15:44 +0000363 old_nht = rcu_dereference_protected(tbl->nht,
364 lockdep_is_held(&tbl->lock));
David S. Millercd089332011-07-11 01:28:12 -0700365 new_nht = neigh_hash_alloc(new_shift);
Eric Dumazetd6bf7812010-10-04 06:15:44 +0000366 if (!new_nht)
367 return old_nht;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368
David S. Millercd089332011-07-11 01:28:12 -0700369 for (i = 0; i < (1 << old_nht->hash_shift); i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 struct neighbour *n, *next;
371
Eric Dumazet767e97e2010-10-06 17:49:21 -0700372 for (n = rcu_dereference_protected(old_nht->hash_buckets[i],
373 lockdep_is_held(&tbl->lock));
Eric Dumazetd6bf7812010-10-04 06:15:44 +0000374 n != NULL;
375 n = next) {
376 hash = tbl->hash(n->primary_key, n->dev,
377 new_nht->hash_rnd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378
David S. Millercd089332011-07-11 01:28:12 -0700379 hash >>= (32 - new_nht->hash_shift);
Eric Dumazet767e97e2010-10-06 17:49:21 -0700380 next = rcu_dereference_protected(n->next,
381 lockdep_is_held(&tbl->lock));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382
Eric Dumazet767e97e2010-10-06 17:49:21 -0700383 rcu_assign_pointer(n->next,
384 rcu_dereference_protected(
385 new_nht->hash_buckets[hash],
386 lockdep_is_held(&tbl->lock)));
387 rcu_assign_pointer(new_nht->hash_buckets[hash], n);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 }
389 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390
Eric Dumazetd6bf7812010-10-04 06:15:44 +0000391 rcu_assign_pointer(tbl->nht, new_nht);
392 call_rcu(&old_nht->rcu, neigh_hash_free_rcu);
393 return new_nht;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394}
395
396struct neighbour *neigh_lookup(struct neigh_table *tbl, const void *pkey,
397 struct net_device *dev)
398{
399 struct neighbour *n;
400 int key_len = tbl->key_len;
Pavel Emelyanovbc4bf5f2008-02-23 19:57:02 -0800401 u32 hash_val;
Eric Dumazetd6bf7812010-10-04 06:15:44 +0000402 struct neigh_hash_table *nht;
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900403
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 NEIGH_CACHE_STAT_INC(tbl, lookups);
405
Eric Dumazetd6bf7812010-10-04 06:15:44 +0000406 rcu_read_lock_bh();
407 nht = rcu_dereference_bh(tbl->nht);
David S. Millercd089332011-07-11 01:28:12 -0700408 hash_val = tbl->hash(pkey, dev, nht->hash_rnd) >> (32 - nht->hash_shift);
Eric Dumazet767e97e2010-10-06 17:49:21 -0700409
410 for (n = rcu_dereference_bh(nht->hash_buckets[hash_val]);
411 n != NULL;
412 n = rcu_dereference_bh(n->next)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 if (dev == n->dev && !memcmp(n->primary_key, pkey, key_len)) {
Eric Dumazet767e97e2010-10-06 17:49:21 -0700414 if (!atomic_inc_not_zero(&n->refcnt))
415 n = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 NEIGH_CACHE_STAT_INC(tbl, hits);
417 break;
418 }
419 }
Eric Dumazet767e97e2010-10-06 17:49:21 -0700420
Eric Dumazetd6bf7812010-10-04 06:15:44 +0000421 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 return n;
423}
YOSHIFUJI Hideaki0a204502008-03-24 18:39:10 +0900424EXPORT_SYMBOL(neigh_lookup);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425
Eric W. Biederman426b5302008-01-24 00:13:18 -0800426struct neighbour *neigh_lookup_nodev(struct neigh_table *tbl, struct net *net,
427 const void *pkey)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428{
429 struct neighbour *n;
430 int key_len = tbl->key_len;
Pavel Emelyanovbc4bf5f2008-02-23 19:57:02 -0800431 u32 hash_val;
Eric Dumazetd6bf7812010-10-04 06:15:44 +0000432 struct neigh_hash_table *nht;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433
434 NEIGH_CACHE_STAT_INC(tbl, lookups);
435
Eric Dumazetd6bf7812010-10-04 06:15:44 +0000436 rcu_read_lock_bh();
437 nht = rcu_dereference_bh(tbl->nht);
David S. Millercd089332011-07-11 01:28:12 -0700438 hash_val = tbl->hash(pkey, NULL, nht->hash_rnd) >> (32 - nht->hash_shift);
Eric Dumazet767e97e2010-10-06 17:49:21 -0700439
440 for (n = rcu_dereference_bh(nht->hash_buckets[hash_val]);
441 n != NULL;
442 n = rcu_dereference_bh(n->next)) {
Eric W. Biederman426b5302008-01-24 00:13:18 -0800443 if (!memcmp(n->primary_key, pkey, key_len) &&
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +0900444 net_eq(dev_net(n->dev), net)) {
Eric Dumazet767e97e2010-10-06 17:49:21 -0700445 if (!atomic_inc_not_zero(&n->refcnt))
446 n = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 NEIGH_CACHE_STAT_INC(tbl, hits);
448 break;
449 }
450 }
Eric Dumazet767e97e2010-10-06 17:49:21 -0700451
Eric Dumazetd6bf7812010-10-04 06:15:44 +0000452 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 return n;
454}
YOSHIFUJI Hideaki0a204502008-03-24 18:39:10 +0900455EXPORT_SYMBOL(neigh_lookup_nodev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456
457struct neighbour *neigh_create(struct neigh_table *tbl, const void *pkey,
458 struct net_device *dev)
459{
460 u32 hash_val;
461 int key_len = tbl->key_len;
462 int error;
463 struct neighbour *n1, *rc, *n = neigh_alloc(tbl);
Eric Dumazetd6bf7812010-10-04 06:15:44 +0000464 struct neigh_hash_table *nht;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465
466 if (!n) {
467 rc = ERR_PTR(-ENOBUFS);
468 goto out;
469 }
470
471 memcpy(n->primary_key, pkey, key_len);
472 n->dev = dev;
473 dev_hold(dev);
474
475 /* Protocol specific setup. */
476 if (tbl->constructor && (error = tbl->constructor(n)) < 0) {
477 rc = ERR_PTR(error);
478 goto out_neigh_release;
479 }
480
481 /* Device specific setup. */
482 if (n->parms->neigh_setup &&
483 (error = n->parms->neigh_setup(n)) < 0) {
484 rc = ERR_PTR(error);
485 goto out_neigh_release;
486 }
487
488 n->confirmed = jiffies - (n->parms->base_reachable_time << 1);
489
490 write_lock_bh(&tbl->lock);
Eric Dumazetd6bf7812010-10-04 06:15:44 +0000491 nht = rcu_dereference_protected(tbl->nht,
492 lockdep_is_held(&tbl->lock));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493
David S. Millercd089332011-07-11 01:28:12 -0700494 if (atomic_read(&tbl->entries) > (1 << nht->hash_shift))
495 nht = neigh_hash_grow(tbl, nht->hash_shift + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496
David S. Millercd089332011-07-11 01:28:12 -0700497 hash_val = tbl->hash(pkey, dev, nht->hash_rnd) >> (32 - nht->hash_shift);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498
499 if (n->parms->dead) {
500 rc = ERR_PTR(-EINVAL);
501 goto out_tbl_unlock;
502 }
503
Eric Dumazet767e97e2010-10-06 17:49:21 -0700504 for (n1 = rcu_dereference_protected(nht->hash_buckets[hash_val],
505 lockdep_is_held(&tbl->lock));
506 n1 != NULL;
507 n1 = rcu_dereference_protected(n1->next,
508 lockdep_is_held(&tbl->lock))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 if (dev == n1->dev && !memcmp(n1->primary_key, pkey, key_len)) {
510 neigh_hold(n1);
511 rc = n1;
512 goto out_tbl_unlock;
513 }
514 }
515
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 n->dead = 0;
517 neigh_hold(n);
Eric Dumazet767e97e2010-10-06 17:49:21 -0700518 rcu_assign_pointer(n->next,
519 rcu_dereference_protected(nht->hash_buckets[hash_val],
520 lockdep_is_held(&tbl->lock)));
521 rcu_assign_pointer(nht->hash_buckets[hash_val], n);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 write_unlock_bh(&tbl->lock);
523 NEIGH_PRINTK2("neigh %p is created.\n", n);
524 rc = n;
525out:
526 return rc;
527out_tbl_unlock:
528 write_unlock_bh(&tbl->lock);
529out_neigh_release:
530 neigh_release(n);
531 goto out;
532}
YOSHIFUJI Hideaki0a204502008-03-24 18:39:10 +0900533EXPORT_SYMBOL(neigh_create);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534
YOSHIFUJI Hideakibe01d652008-03-28 12:46:53 +0900535static u32 pneigh_hash(const void *pkey, int key_len)
Pavel Emelyanovfa86d322008-03-24 14:48:59 -0700536{
Pavel Emelyanovfa86d322008-03-24 14:48:59 -0700537 u32 hash_val = *(u32 *)(pkey + key_len - 4);
Pavel Emelyanovfa86d322008-03-24 14:48:59 -0700538 hash_val ^= (hash_val >> 16);
539 hash_val ^= hash_val >> 8;
540 hash_val ^= hash_val >> 4;
541 hash_val &= PNEIGH_HASHMASK;
YOSHIFUJI Hideakibe01d652008-03-28 12:46:53 +0900542 return hash_val;
543}
Pavel Emelyanovfa86d322008-03-24 14:48:59 -0700544
YOSHIFUJI Hideakibe01d652008-03-28 12:46:53 +0900545static struct pneigh_entry *__pneigh_lookup_1(struct pneigh_entry *n,
546 struct net *net,
547 const void *pkey,
548 int key_len,
549 struct net_device *dev)
550{
551 while (n) {
Pavel Emelyanovfa86d322008-03-24 14:48:59 -0700552 if (!memcmp(n->key, pkey, key_len) &&
YOSHIFUJI Hideakibe01d652008-03-28 12:46:53 +0900553 net_eq(pneigh_net(n), net) &&
Pavel Emelyanovfa86d322008-03-24 14:48:59 -0700554 (n->dev == dev || !n->dev))
YOSHIFUJI Hideakibe01d652008-03-28 12:46:53 +0900555 return n;
556 n = n->next;
Pavel Emelyanovfa86d322008-03-24 14:48:59 -0700557 }
YOSHIFUJI Hideakibe01d652008-03-28 12:46:53 +0900558 return NULL;
559}
Pavel Emelyanovfa86d322008-03-24 14:48:59 -0700560
YOSHIFUJI Hideakibe01d652008-03-28 12:46:53 +0900561struct pneigh_entry *__pneigh_lookup(struct neigh_table *tbl,
562 struct net *net, const void *pkey, struct net_device *dev)
563{
564 int key_len = tbl->key_len;
565 u32 hash_val = pneigh_hash(pkey, key_len);
566
567 return __pneigh_lookup_1(tbl->phash_buckets[hash_val],
568 net, pkey, key_len, dev);
Pavel Emelyanovfa86d322008-03-24 14:48:59 -0700569}
YOSHIFUJI Hideaki0a204502008-03-24 18:39:10 +0900570EXPORT_SYMBOL_GPL(__pneigh_lookup);
Pavel Emelyanovfa86d322008-03-24 14:48:59 -0700571
Eric W. Biederman426b5302008-01-24 00:13:18 -0800572struct pneigh_entry * pneigh_lookup(struct neigh_table *tbl,
573 struct net *net, const void *pkey,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 struct net_device *dev, int creat)
575{
576 struct pneigh_entry *n;
577 int key_len = tbl->key_len;
YOSHIFUJI Hideakibe01d652008-03-28 12:46:53 +0900578 u32 hash_val = pneigh_hash(pkey, key_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579
580 read_lock_bh(&tbl->lock);
YOSHIFUJI Hideakibe01d652008-03-28 12:46:53 +0900581 n = __pneigh_lookup_1(tbl->phash_buckets[hash_val],
582 net, pkey, key_len, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 read_unlock_bh(&tbl->lock);
YOSHIFUJI Hideakibe01d652008-03-28 12:46:53 +0900584
585 if (n || !creat)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 goto out;
587
Pavel Emelyanov4ae28942007-10-15 12:54:15 -0700588 ASSERT_RTNL();
589
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 n = kmalloc(sizeof(*n) + key_len, GFP_KERNEL);
591 if (!n)
592 goto out;
593
Eric Dumazete42ea982008-11-12 00:54:54 -0800594 write_pnet(&n->net, hold_net(net));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 memcpy(n->key, pkey, key_len);
596 n->dev = dev;
597 if (dev)
598 dev_hold(dev);
599
600 if (tbl->pconstructor && tbl->pconstructor(n)) {
601 if (dev)
602 dev_put(dev);
Denis V. Lunevda12f732008-02-20 00:26:16 -0800603 release_net(net);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 kfree(n);
605 n = NULL;
606 goto out;
607 }
608
609 write_lock_bh(&tbl->lock);
610 n->next = tbl->phash_buckets[hash_val];
611 tbl->phash_buckets[hash_val] = n;
612 write_unlock_bh(&tbl->lock);
613out:
614 return n;
615}
YOSHIFUJI Hideaki0a204502008-03-24 18:39:10 +0900616EXPORT_SYMBOL(pneigh_lookup);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617
618
Eric W. Biederman426b5302008-01-24 00:13:18 -0800619int pneigh_delete(struct neigh_table *tbl, struct net *net, const void *pkey,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 struct net_device *dev)
621{
622 struct pneigh_entry *n, **np;
623 int key_len = tbl->key_len;
YOSHIFUJI Hideakibe01d652008-03-28 12:46:53 +0900624 u32 hash_val = pneigh_hash(pkey, key_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625
626 write_lock_bh(&tbl->lock);
627 for (np = &tbl->phash_buckets[hash_val]; (n = *np) != NULL;
628 np = &n->next) {
Eric W. Biederman426b5302008-01-24 00:13:18 -0800629 if (!memcmp(n->key, pkey, key_len) && n->dev == dev &&
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +0900630 net_eq(pneigh_net(n), net)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 *np = n->next;
632 write_unlock_bh(&tbl->lock);
633 if (tbl->pdestructor)
634 tbl->pdestructor(n);
635 if (n->dev)
636 dev_put(n->dev);
YOSHIFUJI Hideaki57da52c2008-03-26 03:49:59 +0900637 release_net(pneigh_net(n));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 kfree(n);
639 return 0;
640 }
641 }
642 write_unlock_bh(&tbl->lock);
643 return -ENOENT;
644}
645
646static int pneigh_ifdown(struct neigh_table *tbl, struct net_device *dev)
647{
648 struct pneigh_entry *n, **np;
649 u32 h;
650
651 for (h = 0; h <= PNEIGH_HASHMASK; h++) {
652 np = &tbl->phash_buckets[h];
653 while ((n = *np) != NULL) {
654 if (!dev || n->dev == dev) {
655 *np = n->next;
656 if (tbl->pdestructor)
657 tbl->pdestructor(n);
658 if (n->dev)
659 dev_put(n->dev);
YOSHIFUJI Hideaki57da52c2008-03-26 03:49:59 +0900660 release_net(pneigh_net(n));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 kfree(n);
662 continue;
663 }
664 np = &n->next;
665 }
666 }
667 return -ENOENT;
668}
669
Denis V. Lunev06f05112008-01-24 00:30:58 -0800670static void neigh_parms_destroy(struct neigh_parms *parms);
671
672static inline void neigh_parms_put(struct neigh_parms *parms)
673{
674 if (atomic_dec_and_test(&parms->refcnt))
675 neigh_parms_destroy(parms);
676}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677
Eric Dumazet767e97e2010-10-06 17:49:21 -0700678static void neigh_destroy_rcu(struct rcu_head *head)
679{
680 struct neighbour *neigh = container_of(head, struct neighbour, rcu);
681
682 kmem_cache_free(neigh->tbl->kmem_cachep, neigh);
683}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684/*
685 * neighbour must already be out of the table;
686 *
687 */
688void neigh_destroy(struct neighbour *neigh)
689{
690 struct hh_cache *hh;
691
692 NEIGH_CACHE_STAT_INC(neigh->tbl, destroys);
693
694 if (!neigh->dead) {
695 printk(KERN_WARNING
696 "Destroying alive neighbour %p\n", neigh);
697 dump_stack();
698 return;
699 }
700
701 if (neigh_del_timer(neigh))
702 printk(KERN_WARNING "Impossible event.\n");
703
704 while ((hh = neigh->hh) != NULL) {
705 neigh->hh = hh->hh_next;
706 hh->hh_next = NULL;
Stephen Hemminger3644f0c2006-12-07 15:08:17 -0800707
708 write_seqlock_bh(&hh->hh_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 hh->hh_output = neigh_blackhole;
Stephen Hemminger3644f0c2006-12-07 15:08:17 -0800710 write_sequnlock_bh(&hh->hh_lock);
Eric Dumazet34d101d2010-10-11 09:16:57 -0700711 hh_cache_put(hh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 }
713
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 skb_queue_purge(&neigh->arp_queue);
715
716 dev_put(neigh->dev);
717 neigh_parms_put(neigh->parms);
718
719 NEIGH_PRINTK2("neigh %p is destroyed.\n", neigh);
720
721 atomic_dec(&neigh->tbl->entries);
Eric Dumazet767e97e2010-10-06 17:49:21 -0700722 call_rcu(&neigh->rcu, neigh_destroy_rcu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723}
YOSHIFUJI Hideaki0a204502008-03-24 18:39:10 +0900724EXPORT_SYMBOL(neigh_destroy);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725
726/* Neighbour state is suspicious;
727 disable fast path.
728
729 Called with write_locked neigh.
730 */
731static void neigh_suspect(struct neighbour *neigh)
732{
733 struct hh_cache *hh;
734
735 NEIGH_PRINTK2("neigh %p is suspected.\n", neigh);
736
737 neigh->output = neigh->ops->output;
738
739 for (hh = neigh->hh; hh; hh = hh->hh_next)
740 hh->hh_output = neigh->ops->output;
741}
742
743/* Neighbour state is OK;
744 enable fast path.
745
746 Called with write_locked neigh.
747 */
748static void neigh_connect(struct neighbour *neigh)
749{
750 struct hh_cache *hh;
751
752 NEIGH_PRINTK2("neigh %p is connected.\n", neigh);
753
754 neigh->output = neigh->ops->connected_output;
755
756 for (hh = neigh->hh; hh; hh = hh->hh_next)
757 hh->hh_output = neigh->ops->hh_output;
758}
759
Eric Dumazete4c4e442009-07-30 03:15:07 +0000760static void neigh_periodic_work(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761{
Eric Dumazete4c4e442009-07-30 03:15:07 +0000762 struct neigh_table *tbl = container_of(work, struct neigh_table, gc_work.work);
Eric Dumazet767e97e2010-10-06 17:49:21 -0700763 struct neighbour *n;
764 struct neighbour __rcu **np;
Eric Dumazete4c4e442009-07-30 03:15:07 +0000765 unsigned int i;
Eric Dumazetd6bf7812010-10-04 06:15:44 +0000766 struct neigh_hash_table *nht;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767
768 NEIGH_CACHE_STAT_INC(tbl, periodic_gc_runs);
769
Eric Dumazete4c4e442009-07-30 03:15:07 +0000770 write_lock_bh(&tbl->lock);
Eric Dumazetd6bf7812010-10-04 06:15:44 +0000771 nht = rcu_dereference_protected(tbl->nht,
772 lockdep_is_held(&tbl->lock));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773
774 /*
775 * periodically recompute ReachableTime from random function
776 */
777
Eric Dumazete4c4e442009-07-30 03:15:07 +0000778 if (time_after(jiffies, tbl->last_rand + 300 * HZ)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 struct neigh_parms *p;
Eric Dumazete4c4e442009-07-30 03:15:07 +0000780 tbl->last_rand = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 for (p = &tbl->parms; p; p = p->next)
782 p->reachable_time =
783 neigh_rand_reach_time(p->base_reachable_time);
784 }
785
David S. Millercd089332011-07-11 01:28:12 -0700786 for (i = 0 ; i < (1 << nht->hash_shift); i++) {
Eric Dumazetd6bf7812010-10-04 06:15:44 +0000787 np = &nht->hash_buckets[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788
Eric Dumazet767e97e2010-10-06 17:49:21 -0700789 while ((n = rcu_dereference_protected(*np,
790 lockdep_is_held(&tbl->lock))) != NULL) {
Eric Dumazete4c4e442009-07-30 03:15:07 +0000791 unsigned int state;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792
Eric Dumazete4c4e442009-07-30 03:15:07 +0000793 write_lock(&n->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794
Eric Dumazete4c4e442009-07-30 03:15:07 +0000795 state = n->nud_state;
796 if (state & (NUD_PERMANENT | NUD_IN_TIMER)) {
797 write_unlock(&n->lock);
798 goto next_elt;
799 }
800
801 if (time_before(n->used, n->confirmed))
802 n->used = n->confirmed;
803
804 if (atomic_read(&n->refcnt) == 1 &&
805 (state == NUD_FAILED ||
806 time_after(jiffies, n->used + n->parms->gc_staletime))) {
807 *np = n->next;
808 n->dead = 1;
809 write_unlock(&n->lock);
810 neigh_cleanup_and_release(n);
811 continue;
812 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 write_unlock(&n->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814
815next_elt:
Eric Dumazete4c4e442009-07-30 03:15:07 +0000816 np = &n->next;
817 }
818 /*
819 * It's fine to release lock here, even if hash table
820 * grows while we are preempted.
821 */
822 write_unlock_bh(&tbl->lock);
823 cond_resched();
824 write_lock_bh(&tbl->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 }
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900826 /* Cycle through all hash buckets every base_reachable_time/2 ticks.
827 * ARP entry timeouts range from 1/2 base_reachable_time to 3/2
828 * base_reachable_time.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829 */
Eric Dumazete4c4e442009-07-30 03:15:07 +0000830 schedule_delayed_work(&tbl->gc_work,
831 tbl->parms.base_reachable_time >> 1);
832 write_unlock_bh(&tbl->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833}
834
835static __inline__ int neigh_max_probes(struct neighbour *n)
836{
837 struct neigh_parms *p = n->parms;
Eric Dumazeta02cec22010-09-22 20:43:57 +0000838 return (n->nud_state & NUD_PROBE) ?
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 p->ucast_probes :
Eric Dumazeta02cec22010-09-22 20:43:57 +0000840 p->ucast_probes + p->app_probes + p->mcast_probes;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841}
842
Timo Teras5ef12d92009-06-11 04:16:28 -0700843static void neigh_invalidate(struct neighbour *neigh)
Eric Dumazet0a141502010-03-09 19:40:54 +0000844 __releases(neigh->lock)
845 __acquires(neigh->lock)
Timo Teras5ef12d92009-06-11 04:16:28 -0700846{
847 struct sk_buff *skb;
848
849 NEIGH_CACHE_STAT_INC(neigh->tbl, res_failed);
850 NEIGH_PRINTK2("neigh %p is failed.\n", neigh);
851 neigh->updated = jiffies;
852
853 /* It is very thin place. report_unreachable is very complicated
854 routine. Particularly, it can hit the same neighbour entry!
855
856 So that, we try to be accurate and avoid dead loop. --ANK
857 */
858 while (neigh->nud_state == NUD_FAILED &&
859 (skb = __skb_dequeue(&neigh->arp_queue)) != NULL) {
860 write_unlock(&neigh->lock);
861 neigh->ops->error_report(neigh, skb);
862 write_lock(&neigh->lock);
863 }
864 skb_queue_purge(&neigh->arp_queue);
865}
866
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867/* Called when a timer expires for a neighbour entry. */
868
869static void neigh_timer_handler(unsigned long arg)
870{
871 unsigned long now, next;
872 struct neighbour *neigh = (struct neighbour *)arg;
873 unsigned state;
874 int notify = 0;
875
876 write_lock(&neigh->lock);
877
878 state = neigh->nud_state;
879 now = jiffies;
880 next = now + HZ;
881
882 if (!(state & NUD_IN_TIMER)) {
883#ifndef CONFIG_SMP
884 printk(KERN_WARNING "neigh: timer & !nud_in_timer\n");
885#endif
886 goto out;
887 }
888
889 if (state & NUD_REACHABLE) {
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900890 if (time_before_eq(now,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 neigh->confirmed + neigh->parms->reachable_time)) {
892 NEIGH_PRINTK2("neigh %p is still alive.\n", neigh);
893 next = neigh->confirmed + neigh->parms->reachable_time;
894 } else if (time_before_eq(now,
895 neigh->used + neigh->parms->delay_probe_time)) {
896 NEIGH_PRINTK2("neigh %p is delayed.\n", neigh);
897 neigh->nud_state = NUD_DELAY;
YOSHIFUJI Hideaki955aaa22006-03-20 16:52:52 -0800898 neigh->updated = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899 neigh_suspect(neigh);
900 next = now + neigh->parms->delay_probe_time;
901 } else {
902 NEIGH_PRINTK2("neigh %p is suspected.\n", neigh);
903 neigh->nud_state = NUD_STALE;
YOSHIFUJI Hideaki955aaa22006-03-20 16:52:52 -0800904 neigh->updated = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905 neigh_suspect(neigh);
Tom Tucker8d717402006-07-30 20:43:36 -0700906 notify = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907 }
908 } else if (state & NUD_DELAY) {
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900909 if (time_before_eq(now,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910 neigh->confirmed + neigh->parms->delay_probe_time)) {
911 NEIGH_PRINTK2("neigh %p is now reachable.\n", neigh);
912 neigh->nud_state = NUD_REACHABLE;
YOSHIFUJI Hideaki955aaa22006-03-20 16:52:52 -0800913 neigh->updated = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914 neigh_connect(neigh);
Tom Tucker8d717402006-07-30 20:43:36 -0700915 notify = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916 next = neigh->confirmed + neigh->parms->reachable_time;
917 } else {
918 NEIGH_PRINTK2("neigh %p is probed.\n", neigh);
919 neigh->nud_state = NUD_PROBE;
YOSHIFUJI Hideaki955aaa22006-03-20 16:52:52 -0800920 neigh->updated = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921 atomic_set(&neigh->probes, 0);
922 next = now + neigh->parms->retrans_time;
923 }
924 } else {
925 /* NUD_PROBE|NUD_INCOMPLETE */
926 next = now + neigh->parms->retrans_time;
927 }
928
929 if ((neigh->nud_state & (NUD_INCOMPLETE | NUD_PROBE)) &&
930 atomic_read(&neigh->probes) >= neigh_max_probes(neigh)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931 neigh->nud_state = NUD_FAILED;
932 notify = 1;
Timo Teras5ef12d92009-06-11 04:16:28 -0700933 neigh_invalidate(neigh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934 }
935
936 if (neigh->nud_state & NUD_IN_TIMER) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937 if (time_before(next, jiffies + HZ/2))
938 next = jiffies + HZ/2;
Herbert Xu6fb99742005-10-23 16:37:48 +1000939 if (!mod_timer(&neigh->timer, next))
940 neigh_hold(neigh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941 }
942 if (neigh->nud_state & (NUD_INCOMPLETE | NUD_PROBE)) {
943 struct sk_buff *skb = skb_peek(&neigh->arp_queue);
David S. Miller9ff56602008-02-17 18:39:54 -0800944 /* keep skb alive even if arp_queue overflows */
945 if (skb)
Frank Blaschka7e367632008-03-03 12:16:04 -0800946 skb = skb_copy(skb, GFP_ATOMIC);
David S. Miller9ff56602008-02-17 18:39:54 -0800947 write_unlock(&neigh->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948 neigh->ops->solicit(neigh, skb);
949 atomic_inc(&neigh->probes);
Wei Yongjunf3fbbe02009-02-25 00:37:32 +0000950 kfree_skb(skb);
David S. Miller9ff56602008-02-17 18:39:54 -0800951 } else {
David S. Miller69cc64d2008-02-11 21:45:44 -0800952out:
David S. Miller9ff56602008-02-17 18:39:54 -0800953 write_unlock(&neigh->lock);
954 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955
Thomas Grafd961db32007-08-08 23:12:56 -0700956 if (notify)
957 neigh_update_notify(neigh);
958
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959 neigh_release(neigh);
960}
961
962int __neigh_event_send(struct neighbour *neigh, struct sk_buff *skb)
963{
964 int rc;
965 unsigned long now;
966
967 write_lock_bh(&neigh->lock);
968
969 rc = 0;
970 if (neigh->nud_state & (NUD_CONNECTED | NUD_DELAY | NUD_PROBE))
971 goto out_unlock_bh;
972
973 now = jiffies;
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900974
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 if (!(neigh->nud_state & (NUD_STALE | NUD_INCOMPLETE))) {
976 if (neigh->parms->mcast_probes + neigh->parms->app_probes) {
977 atomic_set(&neigh->probes, neigh->parms->ucast_probes);
978 neigh->nud_state = NUD_INCOMPLETE;
YOSHIFUJI Hideaki955aaa22006-03-20 16:52:52 -0800979 neigh->updated = jiffies;
David S. Miller667347f2005-09-27 12:07:44 -0700980 neigh_add_timer(neigh, now + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981 } else {
982 neigh->nud_state = NUD_FAILED;
YOSHIFUJI Hideaki955aaa22006-03-20 16:52:52 -0800983 neigh->updated = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984 write_unlock_bh(&neigh->lock);
985
Wei Yongjunf3fbbe02009-02-25 00:37:32 +0000986 kfree_skb(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 return 1;
988 }
989 } else if (neigh->nud_state & NUD_STALE) {
990 NEIGH_PRINTK2("neigh %p is delayed.\n", neigh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991 neigh->nud_state = NUD_DELAY;
YOSHIFUJI Hideaki955aaa22006-03-20 16:52:52 -0800992 neigh->updated = jiffies;
David S. Miller667347f2005-09-27 12:07:44 -0700993 neigh_add_timer(neigh,
994 jiffies + neigh->parms->delay_probe_time);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995 }
996
997 if (neigh->nud_state == NUD_INCOMPLETE) {
998 if (skb) {
999 if (skb_queue_len(&neigh->arp_queue) >=
1000 neigh->parms->queue_len) {
1001 struct sk_buff *buff;
David S. Millerf72051b2008-09-23 01:11:18 -07001002 buff = __skb_dequeue(&neigh->arp_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 kfree_skb(buff);
Neil Horman9a6d2762008-07-16 20:50:49 -07001004 NEIGH_CACHE_STAT_INC(neigh->tbl, unres_discards);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005 }
Eric Dumazeta4731132010-05-27 16:09:39 -07001006 skb_dst_force(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007 __skb_queue_tail(&neigh->arp_queue, skb);
1008 }
1009 rc = 1;
1010 }
1011out_unlock_bh:
1012 write_unlock_bh(&neigh->lock);
1013 return rc;
1014}
YOSHIFUJI Hideaki0a204502008-03-24 18:39:10 +09001015EXPORT_SYMBOL(__neigh_event_send);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016
Eric Dumazet0ed8ddf2010-10-07 10:44:07 +00001017static void neigh_update_hhs(const struct neighbour *neigh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018{
1019 struct hh_cache *hh;
Stephen Hemminger3b04ddd2007-10-09 01:40:57 -07001020 void (*update)(struct hh_cache*, const struct net_device*, const unsigned char *)
Doug Kehn91a72a72010-07-14 18:02:16 -07001021 = NULL;
1022
1023 if (neigh->dev->header_ops)
1024 update = neigh->dev->header_ops->cache_update;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025
1026 if (update) {
1027 for (hh = neigh->hh; hh; hh = hh->hh_next) {
Stephen Hemminger3644f0c2006-12-07 15:08:17 -08001028 write_seqlock_bh(&hh->hh_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029 update(hh, neigh->dev, neigh->ha);
Stephen Hemminger3644f0c2006-12-07 15:08:17 -08001030 write_sequnlock_bh(&hh->hh_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031 }
1032 }
1033}
1034
1035
1036
1037/* Generic update routine.
1038 -- lladdr is new lladdr or NULL, if it is not supplied.
1039 -- new is new state.
1040 -- flags
1041 NEIGH_UPDATE_F_OVERRIDE allows to override existing lladdr,
1042 if it is different.
1043 NEIGH_UPDATE_F_WEAK_OVERRIDE will suspect existing "connected"
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09001044 lladdr instead of overriding it
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045 if it is different.
1046 It also allows to retain current state
1047 if lladdr is unchanged.
1048 NEIGH_UPDATE_F_ADMIN means that the change is administrative.
1049
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09001050 NEIGH_UPDATE_F_OVERRIDE_ISROUTER allows to override existing
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051 NTF_ROUTER flag.
1052 NEIGH_UPDATE_F_ISROUTER indicates if the neighbour is known as
1053 a router.
1054
1055 Caller MUST hold reference count on the entry.
1056 */
1057
1058int neigh_update(struct neighbour *neigh, const u8 *lladdr, u8 new,
1059 u32 flags)
1060{
1061 u8 old;
1062 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063 int notify = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064 struct net_device *dev;
1065 int update_isrouter = 0;
1066
1067 write_lock_bh(&neigh->lock);
1068
1069 dev = neigh->dev;
1070 old = neigh->nud_state;
1071 err = -EPERM;
1072
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09001073 if (!(flags & NEIGH_UPDATE_F_ADMIN) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074 (old & (NUD_NOARP | NUD_PERMANENT)))
1075 goto out;
1076
1077 if (!(new & NUD_VALID)) {
1078 neigh_del_timer(neigh);
1079 if (old & NUD_CONNECTED)
1080 neigh_suspect(neigh);
1081 neigh->nud_state = new;
1082 err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083 notify = old & NUD_VALID;
Timo Teras5ef12d92009-06-11 04:16:28 -07001084 if ((old & (NUD_INCOMPLETE | NUD_PROBE)) &&
1085 (new & NUD_FAILED)) {
1086 neigh_invalidate(neigh);
1087 notify = 1;
1088 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089 goto out;
1090 }
1091
1092 /* Compare new lladdr with cached one */
1093 if (!dev->addr_len) {
1094 /* First case: device needs no address. */
1095 lladdr = neigh->ha;
1096 } else if (lladdr) {
1097 /* The second case: if something is already cached
1098 and a new address is proposed:
1099 - compare new & old
1100 - if they are different, check override flag
1101 */
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09001102 if ((old & NUD_VALID) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103 !memcmp(lladdr, neigh->ha, dev->addr_len))
1104 lladdr = neigh->ha;
1105 } else {
1106 /* No address is supplied; if we know something,
1107 use it, otherwise discard the request.
1108 */
1109 err = -EINVAL;
1110 if (!(old & NUD_VALID))
1111 goto out;
1112 lladdr = neigh->ha;
1113 }
1114
1115 if (new & NUD_CONNECTED)
1116 neigh->confirmed = jiffies;
1117 neigh->updated = jiffies;
1118
1119 /* If entry was valid and address is not changed,
1120 do not change entry state, if new one is STALE.
1121 */
1122 err = 0;
1123 update_isrouter = flags & NEIGH_UPDATE_F_OVERRIDE_ISROUTER;
1124 if (old & NUD_VALID) {
1125 if (lladdr != neigh->ha && !(flags & NEIGH_UPDATE_F_OVERRIDE)) {
1126 update_isrouter = 0;
1127 if ((flags & NEIGH_UPDATE_F_WEAK_OVERRIDE) &&
1128 (old & NUD_CONNECTED)) {
1129 lladdr = neigh->ha;
1130 new = NUD_STALE;
1131 } else
1132 goto out;
1133 } else {
1134 if (lladdr == neigh->ha && new == NUD_STALE &&
1135 ((flags & NEIGH_UPDATE_F_WEAK_OVERRIDE) ||
1136 (old & NUD_CONNECTED))
1137 )
1138 new = old;
1139 }
1140 }
1141
1142 if (new != old) {
1143 neigh_del_timer(neigh);
Pavel Emelyanova43d8992007-12-20 15:49:05 -08001144 if (new & NUD_IN_TIMER)
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09001145 neigh_add_timer(neigh, (jiffies +
1146 ((new & NUD_REACHABLE) ?
David S. Miller667347f2005-09-27 12:07:44 -07001147 neigh->parms->reachable_time :
1148 0)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149 neigh->nud_state = new;
1150 }
1151
1152 if (lladdr != neigh->ha) {
Eric Dumazet0ed8ddf2010-10-07 10:44:07 +00001153 write_seqlock(&neigh->ha_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154 memcpy(&neigh->ha, lladdr, dev->addr_len);
Eric Dumazet0ed8ddf2010-10-07 10:44:07 +00001155 write_sequnlock(&neigh->ha_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156 neigh_update_hhs(neigh);
1157 if (!(new & NUD_CONNECTED))
1158 neigh->confirmed = jiffies -
1159 (neigh->parms->base_reachable_time << 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160 notify = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161 }
1162 if (new == old)
1163 goto out;
1164 if (new & NUD_CONNECTED)
1165 neigh_connect(neigh);
1166 else
1167 neigh_suspect(neigh);
1168 if (!(old & NUD_VALID)) {
1169 struct sk_buff *skb;
1170
1171 /* Again: avoid dead loop if something went wrong */
1172
1173 while (neigh->nud_state & NUD_VALID &&
1174 (skb = __skb_dequeue(&neigh->arp_queue)) != NULL) {
1175 struct neighbour *n1 = neigh;
1176 write_unlock_bh(&neigh->lock);
1177 /* On shaper/eql skb->dst->neighbour != neigh :( */
Eric Dumazetadf30902009-06-02 05:19:30 +00001178 if (skb_dst(skb) && skb_dst(skb)->neighbour)
1179 n1 = skb_dst(skb)->neighbour;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180 n1->output(skb);
1181 write_lock_bh(&neigh->lock);
1182 }
1183 skb_queue_purge(&neigh->arp_queue);
1184 }
1185out:
1186 if (update_isrouter) {
1187 neigh->flags = (flags & NEIGH_UPDATE_F_ISROUTER) ?
1188 (neigh->flags | NTF_ROUTER) :
1189 (neigh->flags & ~NTF_ROUTER);
1190 }
1191 write_unlock_bh(&neigh->lock);
Tom Tucker8d717402006-07-30 20:43:36 -07001192
1193 if (notify)
Thomas Grafd961db32007-08-08 23:12:56 -07001194 neigh_update_notify(neigh);
1195
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196 return err;
1197}
YOSHIFUJI Hideaki0a204502008-03-24 18:39:10 +09001198EXPORT_SYMBOL(neigh_update);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199
1200struct neighbour *neigh_event_ns(struct neigh_table *tbl,
1201 u8 *lladdr, void *saddr,
1202 struct net_device *dev)
1203{
1204 struct neighbour *neigh = __neigh_lookup(tbl, saddr, dev,
1205 lladdr || !dev->addr_len);
1206 if (neigh)
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09001207 neigh_update(neigh, lladdr, NUD_STALE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208 NEIGH_UPDATE_F_OVERRIDE);
1209 return neigh;
1210}
YOSHIFUJI Hideaki0a204502008-03-24 18:39:10 +09001211EXPORT_SYMBOL(neigh_event_ns);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212
Eric Dumazet34d101d2010-10-11 09:16:57 -07001213static inline bool neigh_hh_lookup(struct neighbour *n, struct dst_entry *dst,
1214 __be16 protocol)
1215{
1216 struct hh_cache *hh;
1217
Eric Dumazet0ed8ddf2010-10-07 10:44:07 +00001218 smp_rmb(); /* paired with smp_wmb() in neigh_hh_init() */
Eric Dumazet34d101d2010-10-11 09:16:57 -07001219 for (hh = n->hh; hh; hh = hh->hh_next) {
1220 if (hh->hh_type == protocol) {
1221 atomic_inc(&hh->hh_refcnt);
1222 if (unlikely(cmpxchg(&dst->hh, NULL, hh) != NULL))
1223 hh_cache_put(hh);
1224 return true;
1225 }
1226 }
1227 return false;
1228}
1229
1230/* called with read_lock_bh(&n->lock); */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231static void neigh_hh_init(struct neighbour *n, struct dst_entry *dst,
Al Virod77072e2006-09-28 14:20:34 -07001232 __be16 protocol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233{
1234 struct hh_cache *hh;
1235 struct net_device *dev = dst->dev;
1236
Eric Dumazet34d101d2010-10-11 09:16:57 -07001237 if (likely(neigh_hh_lookup(n, dst, protocol)))
1238 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239
Eric Dumazet34d101d2010-10-11 09:16:57 -07001240 /* slow path */
1241 hh = kzalloc(sizeof(*hh), GFP_ATOMIC);
1242 if (!hh)
1243 return;
Stephen Hemminger3b04ddd2007-10-09 01:40:57 -07001244
Eric Dumazet34d101d2010-10-11 09:16:57 -07001245 seqlock_init(&hh->hh_lock);
1246 hh->hh_type = protocol;
1247 atomic_set(&hh->hh_refcnt, 2);
1248
1249 if (dev->header_ops->cache(n, hh)) {
1250 kfree(hh);
1251 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252 }
Eric Dumazet0ed8ddf2010-10-07 10:44:07 +00001253
1254 write_lock_bh(&n->lock);
Eric Dumazet34d101d2010-10-11 09:16:57 -07001255
1256 /* must check if another thread already did the insert */
1257 if (neigh_hh_lookup(n, dst, protocol)) {
1258 kfree(hh);
1259 goto end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260 }
Eric Dumazet34d101d2010-10-11 09:16:57 -07001261
1262 if (n->nud_state & NUD_CONNECTED)
1263 hh->hh_output = n->ops->hh_output;
1264 else
1265 hh->hh_output = n->ops->output;
1266
1267 hh->hh_next = n->hh;
Eric Dumazet0ed8ddf2010-10-07 10:44:07 +00001268 smp_wmb(); /* paired with smp_rmb() in neigh_hh_lookup() */
Eric Dumazet34d101d2010-10-11 09:16:57 -07001269 n->hh = hh;
1270
1271 if (unlikely(cmpxchg(&dst->hh, NULL, hh) != NULL))
1272 hh_cache_put(hh);
1273end:
Eric Dumazet0ed8ddf2010-10-07 10:44:07 +00001274 write_unlock_bh(&n->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275}
1276
1277/* This function can be used in contexts, where only old dev_queue_xmit
Eric Dumazet767e97e2010-10-06 17:49:21 -07001278 * worked, f.e. if you want to override normal output path (eql, shaper),
1279 * but resolution is not made yet.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280 */
1281
1282int neigh_compat_output(struct sk_buff *skb)
1283{
1284 struct net_device *dev = skb->dev;
1285
Arnaldo Carvalho de Melobbe735e2007-03-10 22:16:10 -03001286 __skb_pull(skb, skb_network_offset(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287
Stephen Hemminger0c4e8582007-10-09 01:36:32 -07001288 if (dev_hard_header(skb, dev, ntohs(skb->protocol), NULL, NULL,
1289 skb->len) < 0 &&
Stephen Hemminger3b04ddd2007-10-09 01:40:57 -07001290 dev->header_ops->rebuild(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291 return 0;
1292
1293 return dev_queue_xmit(skb);
1294}
YOSHIFUJI Hideaki0a204502008-03-24 18:39:10 +09001295EXPORT_SYMBOL(neigh_compat_output);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296
1297/* Slow and careful. */
1298
1299int neigh_resolve_output(struct sk_buff *skb)
1300{
Eric Dumazetadf30902009-06-02 05:19:30 +00001301 struct dst_entry *dst = skb_dst(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302 struct neighbour *neigh;
1303 int rc = 0;
1304
1305 if (!dst || !(neigh = dst->neighbour))
1306 goto discard;
1307
Arnaldo Carvalho de Melobbe735e2007-03-10 22:16:10 -03001308 __skb_pull(skb, skb_network_offset(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309
1310 if (!neigh_event_send(neigh, skb)) {
1311 int err;
1312 struct net_device *dev = neigh->dev;
Eric Dumazet0ed8ddf2010-10-07 10:44:07 +00001313 unsigned int seq;
Eric Dumazet34d101d2010-10-11 09:16:57 -07001314
Eric Dumazetc7d44262010-10-03 22:17:54 -07001315 if (dev->header_ops->cache &&
1316 !dst->hh &&
Eric Dumazet34d101d2010-10-11 09:16:57 -07001317 !(dst->flags & DST_NOCACHE))
1318 neigh_hh_init(neigh, dst, dst->ops->protocol);
1319
Eric Dumazet0ed8ddf2010-10-07 10:44:07 +00001320 do {
1321 seq = read_seqbegin(&neigh->ha_lock);
1322 err = dev_hard_header(skb, dev, ntohs(skb->protocol),
1323 neigh->ha, NULL, skb->len);
1324 } while (read_seqretry(&neigh->ha_lock, seq));
Eric Dumazet34d101d2010-10-11 09:16:57 -07001325
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326 if (err >= 0)
1327 rc = neigh->ops->queue_xmit(skb);
1328 else
1329 goto out_kfree_skb;
1330 }
1331out:
1332 return rc;
1333discard:
1334 NEIGH_PRINTK1("neigh_resolve_output: dst=%p neigh=%p\n",
1335 dst, dst ? dst->neighbour : NULL);
1336out_kfree_skb:
1337 rc = -EINVAL;
1338 kfree_skb(skb);
1339 goto out;
1340}
YOSHIFUJI Hideaki0a204502008-03-24 18:39:10 +09001341EXPORT_SYMBOL(neigh_resolve_output);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342
1343/* As fast as possible without hh cache */
1344
1345int neigh_connected_output(struct sk_buff *skb)
1346{
1347 int err;
Eric Dumazetadf30902009-06-02 05:19:30 +00001348 struct dst_entry *dst = skb_dst(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349 struct neighbour *neigh = dst->neighbour;
1350 struct net_device *dev = neigh->dev;
Eric Dumazet0ed8ddf2010-10-07 10:44:07 +00001351 unsigned int seq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352
Arnaldo Carvalho de Melobbe735e2007-03-10 22:16:10 -03001353 __skb_pull(skb, skb_network_offset(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354
Eric Dumazet0ed8ddf2010-10-07 10:44:07 +00001355 do {
1356 seq = read_seqbegin(&neigh->ha_lock);
1357 err = dev_hard_header(skb, dev, ntohs(skb->protocol),
1358 neigh->ha, NULL, skb->len);
1359 } while (read_seqretry(&neigh->ha_lock, seq));
1360
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361 if (err >= 0)
1362 err = neigh->ops->queue_xmit(skb);
1363 else {
1364 err = -EINVAL;
1365 kfree_skb(skb);
1366 }
1367 return err;
1368}
YOSHIFUJI Hideaki0a204502008-03-24 18:39:10 +09001369EXPORT_SYMBOL(neigh_connected_output);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370
1371static void neigh_proxy_process(unsigned long arg)
1372{
1373 struct neigh_table *tbl = (struct neigh_table *)arg;
1374 long sched_next = 0;
1375 unsigned long now = jiffies;
David S. Millerf72051b2008-09-23 01:11:18 -07001376 struct sk_buff *skb, *n;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377
1378 spin_lock(&tbl->proxy_queue.lock);
1379
David S. Millerf72051b2008-09-23 01:11:18 -07001380 skb_queue_walk_safe(&tbl->proxy_queue, skb, n) {
1381 long tdif = NEIGH_CB(skb)->sched_next - now;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383 if (tdif <= 0) {
David S. Millerf72051b2008-09-23 01:11:18 -07001384 struct net_device *dev = skb->dev;
1385 __skb_unlink(skb, &tbl->proxy_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386 if (tbl->proxy_redo && netif_running(dev))
David S. Millerf72051b2008-09-23 01:11:18 -07001387 tbl->proxy_redo(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388 else
David S. Millerf72051b2008-09-23 01:11:18 -07001389 kfree_skb(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390
1391 dev_put(dev);
1392 } else if (!sched_next || tdif < sched_next)
1393 sched_next = tdif;
1394 }
1395 del_timer(&tbl->proxy_timer);
1396 if (sched_next)
1397 mod_timer(&tbl->proxy_timer, jiffies + sched_next);
1398 spin_unlock(&tbl->proxy_queue.lock);
1399}
1400
1401void pneigh_enqueue(struct neigh_table *tbl, struct neigh_parms *p,
1402 struct sk_buff *skb)
1403{
1404 unsigned long now = jiffies;
1405 unsigned long sched_next = now + (net_random() % p->proxy_delay);
1406
1407 if (tbl->proxy_queue.qlen > p->proxy_qlen) {
1408 kfree_skb(skb);
1409 return;
1410 }
Patrick McHardya61bbcf2005-08-14 17:24:31 -07001411
1412 NEIGH_CB(skb)->sched_next = sched_next;
1413 NEIGH_CB(skb)->flags |= LOCALLY_ENQUEUED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414
1415 spin_lock(&tbl->proxy_queue.lock);
1416 if (del_timer(&tbl->proxy_timer)) {
1417 if (time_before(tbl->proxy_timer.expires, sched_next))
1418 sched_next = tbl->proxy_timer.expires;
1419 }
Eric Dumazetadf30902009-06-02 05:19:30 +00001420 skb_dst_drop(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421 dev_hold(skb->dev);
1422 __skb_queue_tail(&tbl->proxy_queue, skb);
1423 mod_timer(&tbl->proxy_timer, sched_next);
1424 spin_unlock(&tbl->proxy_queue.lock);
1425}
YOSHIFUJI Hideaki0a204502008-03-24 18:39:10 +09001426EXPORT_SYMBOL(pneigh_enqueue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427
Tobias Klauser97fd5bc2009-07-13 11:17:49 -07001428static inline struct neigh_parms *lookup_neigh_parms(struct neigh_table *tbl,
Eric W. Biederman426b5302008-01-24 00:13:18 -08001429 struct net *net, int ifindex)
1430{
1431 struct neigh_parms *p;
1432
1433 for (p = &tbl->parms; p; p = p->next) {
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +09001434 if ((p->dev && p->dev->ifindex == ifindex && net_eq(neigh_parms_net(p), net)) ||
Eric W. Biederman426b5302008-01-24 00:13:18 -08001435 (!p->dev && !ifindex))
1436 return p;
1437 }
1438
1439 return NULL;
1440}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441
1442struct neigh_parms *neigh_parms_alloc(struct net_device *dev,
1443 struct neigh_table *tbl)
1444{
Eric W. Biederman426b5302008-01-24 00:13:18 -08001445 struct neigh_parms *p, *ref;
Stephen Hemminger00829822008-11-20 20:14:53 -08001446 struct net *net = dev_net(dev);
1447 const struct net_device_ops *ops = dev->netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448
Tobias Klauser97fd5bc2009-07-13 11:17:49 -07001449 ref = lookup_neigh_parms(tbl, net, 0);
Eric W. Biederman426b5302008-01-24 00:13:18 -08001450 if (!ref)
1451 return NULL;
1452
1453 p = kmemdup(ref, sizeof(*p), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454 if (p) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455 p->tbl = tbl;
1456 atomic_set(&p->refcnt, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457 p->reachable_time =
1458 neigh_rand_reach_time(p->base_reachable_time);
Thomas Grafc7fb64d2005-06-18 22:50:55 -07001459
Stephen Hemminger00829822008-11-20 20:14:53 -08001460 if (ops->ndo_neigh_setup && ops->ndo_neigh_setup(dev, p)) {
Denis V. Lunev486b51d2008-01-14 22:59:59 -08001461 kfree(p);
1462 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463 }
Denis V. Lunev486b51d2008-01-14 22:59:59 -08001464
1465 dev_hold(dev);
1466 p->dev = dev;
Eric Dumazete42ea982008-11-12 00:54:54 -08001467 write_pnet(&p->net, hold_net(net));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468 p->sysctl_table = NULL;
1469 write_lock_bh(&tbl->lock);
1470 p->next = tbl->parms.next;
1471 tbl->parms.next = p;
1472 write_unlock_bh(&tbl->lock);
1473 }
1474 return p;
1475}
YOSHIFUJI Hideaki0a204502008-03-24 18:39:10 +09001476EXPORT_SYMBOL(neigh_parms_alloc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477
1478static void neigh_rcu_free_parms(struct rcu_head *head)
1479{
1480 struct neigh_parms *parms =
1481 container_of(head, struct neigh_parms, rcu_head);
1482
1483 neigh_parms_put(parms);
1484}
1485
1486void neigh_parms_release(struct neigh_table *tbl, struct neigh_parms *parms)
1487{
1488 struct neigh_parms **p;
1489
1490 if (!parms || parms == &tbl->parms)
1491 return;
1492 write_lock_bh(&tbl->lock);
1493 for (p = &tbl->parms.next; *p; p = &(*p)->next) {
1494 if (*p == parms) {
1495 *p = parms->next;
1496 parms->dead = 1;
1497 write_unlock_bh(&tbl->lock);
David S. Millercecbb632008-01-20 16:39:03 -08001498 if (parms->dev)
1499 dev_put(parms->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500 call_rcu(&parms->rcu_head, neigh_rcu_free_parms);
1501 return;
1502 }
1503 }
1504 write_unlock_bh(&tbl->lock);
1505 NEIGH_PRINTK1("neigh_parms_release: not found\n");
1506}
YOSHIFUJI Hideaki0a204502008-03-24 18:39:10 +09001507EXPORT_SYMBOL(neigh_parms_release);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508
Denis V. Lunev06f05112008-01-24 00:30:58 -08001509static void neigh_parms_destroy(struct neigh_parms *parms)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510{
YOSHIFUJI Hideaki57da52c2008-03-26 03:49:59 +09001511 release_net(neigh_parms_net(parms));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512 kfree(parms);
1513}
1514
Pavel Emelianovc2ecba72007-04-17 12:45:31 -07001515static struct lock_class_key neigh_table_proxy_queue_class;
1516
Simon Kelleybd89efc2006-05-12 14:56:08 -07001517void neigh_table_init_no_netlink(struct neigh_table *tbl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518{
1519 unsigned long now = jiffies;
1520 unsigned long phsize;
1521
Eric Dumazete42ea982008-11-12 00:54:54 -08001522 write_pnet(&tbl->parms.net, &init_net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523 atomic_set(&tbl->parms.refcnt, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524 tbl->parms.reachable_time =
1525 neigh_rand_reach_time(tbl->parms.base_reachable_time);
1526
1527 if (!tbl->kmem_cachep)
Alexey Dobriyane5d679f332006-08-26 19:25:52 -07001528 tbl->kmem_cachep =
1529 kmem_cache_create(tbl->id, tbl->entry_size, 0,
1530 SLAB_HWCACHE_ALIGN|SLAB_PANIC,
Paul Mundt20c2df82007-07-20 10:11:58 +09001531 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532 tbl->stats = alloc_percpu(struct neigh_statistics);
1533 if (!tbl->stats)
1534 panic("cannot create neighbour cache statistics");
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09001535
Linus Torvalds1da177e2005-04-16 15:20:36 -07001536#ifdef CONFIG_PROC_FS
Alexey Dobriyan9b739ba2008-11-11 16:47:44 -08001537 if (!proc_create_data(tbl->id, 0, init_net.proc_net_stat,
1538 &neigh_stat_seq_fops, tbl))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539 panic("cannot create neighbour proc dir entry");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540#endif
1541
David S. Millercd089332011-07-11 01:28:12 -07001542 RCU_INIT_POINTER(tbl->nht, neigh_hash_alloc(3));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543
1544 phsize = (PNEIGH_HASHMASK + 1) * sizeof(struct pneigh_entry *);
Andrew Morton77d04bd2006-04-07 14:52:59 -07001545 tbl->phash_buckets = kzalloc(phsize, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546
Eric Dumazetd6bf7812010-10-04 06:15:44 +00001547 if (!tbl->nht || !tbl->phash_buckets)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548 panic("cannot allocate neighbour cache hashes");
1549
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550 rwlock_init(&tbl->lock);
Eric Dumazete4c4e442009-07-30 03:15:07 +00001551 INIT_DELAYED_WORK_DEFERRABLE(&tbl->gc_work, neigh_periodic_work);
1552 schedule_delayed_work(&tbl->gc_work, tbl->parms.reachable_time);
Pavel Emelyanovb24b8a22008-01-23 21:20:07 -08001553 setup_timer(&tbl->proxy_timer, neigh_proxy_process, (unsigned long)tbl);
Pavel Emelianovc2ecba72007-04-17 12:45:31 -07001554 skb_queue_head_init_class(&tbl->proxy_queue,
1555 &neigh_table_proxy_queue_class);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556
1557 tbl->last_flush = now;
1558 tbl->last_rand = now + tbl->parms.reachable_time * 20;
Simon Kelleybd89efc2006-05-12 14:56:08 -07001559}
YOSHIFUJI Hideaki0a204502008-03-24 18:39:10 +09001560EXPORT_SYMBOL(neigh_table_init_no_netlink);
Simon Kelleybd89efc2006-05-12 14:56:08 -07001561
1562void neigh_table_init(struct neigh_table *tbl)
1563{
1564 struct neigh_table *tmp;
1565
1566 neigh_table_init_no_netlink(tbl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567 write_lock(&neigh_tbl_lock);
Simon Kelleybd89efc2006-05-12 14:56:08 -07001568 for (tmp = neigh_tables; tmp; tmp = tmp->next) {
1569 if (tmp->family == tbl->family)
1570 break;
1571 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572 tbl->next = neigh_tables;
1573 neigh_tables = tbl;
1574 write_unlock(&neigh_tbl_lock);
Simon Kelleybd89efc2006-05-12 14:56:08 -07001575
1576 if (unlikely(tmp)) {
1577 printk(KERN_ERR "NEIGH: Registering multiple tables for "
1578 "family %d\n", tbl->family);
1579 dump_stack();
1580 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581}
YOSHIFUJI Hideaki0a204502008-03-24 18:39:10 +09001582EXPORT_SYMBOL(neigh_table_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583
1584int neigh_table_clear(struct neigh_table *tbl)
1585{
1586 struct neigh_table **tp;
1587
1588 /* It is not clean... Fix it to unload IPv6 module safely */
Tejun Heoa5c30b32010-10-19 06:04:42 +00001589 cancel_delayed_work_sync(&tbl->gc_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590 del_timer_sync(&tbl->proxy_timer);
1591 pneigh_queue_purge(&tbl->proxy_queue);
1592 neigh_ifdown(tbl, NULL);
1593 if (atomic_read(&tbl->entries))
1594 printk(KERN_CRIT "neighbour leakage\n");
1595 write_lock(&neigh_tbl_lock);
1596 for (tp = &neigh_tables; *tp; tp = &(*tp)->next) {
1597 if (*tp == tbl) {
1598 *tp = tbl->next;
1599 break;
1600 }
1601 }
1602 write_unlock(&neigh_tbl_lock);
1603
Eric Dumazet6193d2b2011-01-19 22:02:47 +00001604 call_rcu(&rcu_dereference_protected(tbl->nht, 1)->rcu,
1605 neigh_hash_free_rcu);
Eric Dumazetd6bf7812010-10-04 06:15:44 +00001606 tbl->nht = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607
1608 kfree(tbl->phash_buckets);
1609 tbl->phash_buckets = NULL;
1610
Alexey Dobriyan3f192b52007-11-05 21:28:13 -08001611 remove_proc_entry(tbl->id, init_net.proc_net_stat);
1612
Kirill Korotaev3fcde742006-09-01 01:34:10 -07001613 free_percpu(tbl->stats);
1614 tbl->stats = NULL;
1615
Randy Dunlapbfb85c92007-10-21 16:24:27 -07001616 kmem_cache_destroy(tbl->kmem_cachep);
1617 tbl->kmem_cachep = NULL;
1618
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619 return 0;
1620}
YOSHIFUJI Hideaki0a204502008-03-24 18:39:10 +09001621EXPORT_SYMBOL(neigh_table_clear);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622
Thomas Grafc8822a42007-03-22 11:50:06 -07001623static int neigh_delete(struct sk_buff *skb, struct nlmsghdr *nlh, void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001625 struct net *net = sock_net(skb->sk);
Thomas Grafa14a49d2006-08-07 17:53:08 -07001626 struct ndmsg *ndm;
1627 struct nlattr *dst_attr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628 struct neigh_table *tbl;
1629 struct net_device *dev = NULL;
Thomas Grafa14a49d2006-08-07 17:53:08 -07001630 int err = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631
Eric Dumazet110b2492010-10-04 04:27:36 +00001632 ASSERT_RTNL();
Thomas Grafa14a49d2006-08-07 17:53:08 -07001633 if (nlmsg_len(nlh) < sizeof(*ndm))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634 goto out;
1635
Thomas Grafa14a49d2006-08-07 17:53:08 -07001636 dst_attr = nlmsg_find_attr(nlh, sizeof(*ndm), NDA_DST);
1637 if (dst_attr == NULL)
1638 goto out;
1639
1640 ndm = nlmsg_data(nlh);
1641 if (ndm->ndm_ifindex) {
Eric Dumazet110b2492010-10-04 04:27:36 +00001642 dev = __dev_get_by_index(net, ndm->ndm_ifindex);
Thomas Grafa14a49d2006-08-07 17:53:08 -07001643 if (dev == NULL) {
1644 err = -ENODEV;
1645 goto out;
1646 }
1647 }
1648
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649 read_lock(&neigh_tbl_lock);
1650 for (tbl = neigh_tables; tbl; tbl = tbl->next) {
Thomas Grafa14a49d2006-08-07 17:53:08 -07001651 struct neighbour *neigh;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001652
1653 if (tbl->family != ndm->ndm_family)
1654 continue;
1655 read_unlock(&neigh_tbl_lock);
1656
Thomas Grafa14a49d2006-08-07 17:53:08 -07001657 if (nla_len(dst_attr) < tbl->key_len)
Eric Dumazet110b2492010-10-04 04:27:36 +00001658 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659
1660 if (ndm->ndm_flags & NTF_PROXY) {
Eric W. Biederman426b5302008-01-24 00:13:18 -08001661 err = pneigh_delete(tbl, net, nla_data(dst_attr), dev);
Eric Dumazet110b2492010-10-04 04:27:36 +00001662 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663 }
1664
Thomas Grafa14a49d2006-08-07 17:53:08 -07001665 if (dev == NULL)
Eric Dumazet110b2492010-10-04 04:27:36 +00001666 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667
Thomas Grafa14a49d2006-08-07 17:53:08 -07001668 neigh = neigh_lookup(tbl, nla_data(dst_attr), dev);
1669 if (neigh == NULL) {
1670 err = -ENOENT;
Eric Dumazet110b2492010-10-04 04:27:36 +00001671 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672 }
Thomas Grafa14a49d2006-08-07 17:53:08 -07001673
1674 err = neigh_update(neigh, NULL, NUD_FAILED,
1675 NEIGH_UPDATE_F_OVERRIDE |
1676 NEIGH_UPDATE_F_ADMIN);
1677 neigh_release(neigh);
Eric Dumazet110b2492010-10-04 04:27:36 +00001678 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679 }
1680 read_unlock(&neigh_tbl_lock);
Thomas Grafa14a49d2006-08-07 17:53:08 -07001681 err = -EAFNOSUPPORT;
1682
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683out:
1684 return err;
1685}
1686
Thomas Grafc8822a42007-03-22 11:50:06 -07001687static int neigh_add(struct sk_buff *skb, struct nlmsghdr *nlh, void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001689 struct net *net = sock_net(skb->sk);
Thomas Graf5208deb2006-08-07 17:55:40 -07001690 struct ndmsg *ndm;
1691 struct nlattr *tb[NDA_MAX+1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692 struct neigh_table *tbl;
1693 struct net_device *dev = NULL;
Thomas Graf5208deb2006-08-07 17:55:40 -07001694 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695
Eric Dumazet110b2492010-10-04 04:27:36 +00001696 ASSERT_RTNL();
Thomas Graf5208deb2006-08-07 17:55:40 -07001697 err = nlmsg_parse(nlh, sizeof(*ndm), tb, NDA_MAX, NULL);
1698 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699 goto out;
1700
Thomas Graf5208deb2006-08-07 17:55:40 -07001701 err = -EINVAL;
1702 if (tb[NDA_DST] == NULL)
1703 goto out;
1704
1705 ndm = nlmsg_data(nlh);
1706 if (ndm->ndm_ifindex) {
Eric Dumazet110b2492010-10-04 04:27:36 +00001707 dev = __dev_get_by_index(net, ndm->ndm_ifindex);
Thomas Graf5208deb2006-08-07 17:55:40 -07001708 if (dev == NULL) {
1709 err = -ENODEV;
1710 goto out;
1711 }
1712
1713 if (tb[NDA_LLADDR] && nla_len(tb[NDA_LLADDR]) < dev->addr_len)
Eric Dumazet110b2492010-10-04 04:27:36 +00001714 goto out;
Thomas Graf5208deb2006-08-07 17:55:40 -07001715 }
1716
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717 read_lock(&neigh_tbl_lock);
1718 for (tbl = neigh_tables; tbl; tbl = tbl->next) {
Thomas Graf5208deb2006-08-07 17:55:40 -07001719 int flags = NEIGH_UPDATE_F_ADMIN | NEIGH_UPDATE_F_OVERRIDE;
1720 struct neighbour *neigh;
1721 void *dst, *lladdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722
1723 if (tbl->family != ndm->ndm_family)
1724 continue;
1725 read_unlock(&neigh_tbl_lock);
1726
Thomas Graf5208deb2006-08-07 17:55:40 -07001727 if (nla_len(tb[NDA_DST]) < tbl->key_len)
Eric Dumazet110b2492010-10-04 04:27:36 +00001728 goto out;
Thomas Graf5208deb2006-08-07 17:55:40 -07001729 dst = nla_data(tb[NDA_DST]);
1730 lladdr = tb[NDA_LLADDR] ? nla_data(tb[NDA_LLADDR]) : NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001731
1732 if (ndm->ndm_flags & NTF_PROXY) {
Ville Nuorvala62dd9312006-09-22 14:43:19 -07001733 struct pneigh_entry *pn;
1734
1735 err = -ENOBUFS;
Eric W. Biederman426b5302008-01-24 00:13:18 -08001736 pn = pneigh_lookup(tbl, net, dst, dev, 1);
Ville Nuorvala62dd9312006-09-22 14:43:19 -07001737 if (pn) {
1738 pn->flags = ndm->ndm_flags;
1739 err = 0;
1740 }
Eric Dumazet110b2492010-10-04 04:27:36 +00001741 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742 }
1743
Thomas Graf5208deb2006-08-07 17:55:40 -07001744 if (dev == NULL)
Eric Dumazet110b2492010-10-04 04:27:36 +00001745 goto out;
Thomas Graf5208deb2006-08-07 17:55:40 -07001746
1747 neigh = neigh_lookup(tbl, dst, dev);
1748 if (neigh == NULL) {
1749 if (!(nlh->nlmsg_flags & NLM_F_CREATE)) {
1750 err = -ENOENT;
Eric Dumazet110b2492010-10-04 04:27:36 +00001751 goto out;
Thomas Graf5208deb2006-08-07 17:55:40 -07001752 }
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09001753
Thomas Graf5208deb2006-08-07 17:55:40 -07001754 neigh = __neigh_lookup_errno(tbl, dst, dev);
1755 if (IS_ERR(neigh)) {
1756 err = PTR_ERR(neigh);
Eric Dumazet110b2492010-10-04 04:27:36 +00001757 goto out;
Thomas Graf5208deb2006-08-07 17:55:40 -07001758 }
1759 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760 if (nlh->nlmsg_flags & NLM_F_EXCL) {
1761 err = -EEXIST;
Thomas Graf5208deb2006-08-07 17:55:40 -07001762 neigh_release(neigh);
Eric Dumazet110b2492010-10-04 04:27:36 +00001763 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764 }
Thomas Graf5208deb2006-08-07 17:55:40 -07001765
1766 if (!(nlh->nlmsg_flags & NLM_F_REPLACE))
1767 flags &= ~NEIGH_UPDATE_F_OVERRIDE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768 }
1769
Eric Biederman0c5c2d32009-03-04 00:03:08 -08001770 if (ndm->ndm_flags & NTF_USE) {
1771 neigh_event_send(neigh, NULL);
1772 err = 0;
1773 } else
1774 err = neigh_update(neigh, lladdr, ndm->ndm_state, flags);
Thomas Graf5208deb2006-08-07 17:55:40 -07001775 neigh_release(neigh);
Eric Dumazet110b2492010-10-04 04:27:36 +00001776 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001777 }
1778
1779 read_unlock(&neigh_tbl_lock);
Thomas Graf5208deb2006-08-07 17:55:40 -07001780 err = -EAFNOSUPPORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781out:
1782 return err;
1783}
1784
Thomas Grafc7fb64d2005-06-18 22:50:55 -07001785static int neightbl_fill_parms(struct sk_buff *skb, struct neigh_parms *parms)
1786{
Thomas Grafca860fb2006-08-07 18:00:18 -07001787 struct nlattr *nest;
1788
1789 nest = nla_nest_start(skb, NDTA_PARMS);
1790 if (nest == NULL)
1791 return -ENOBUFS;
Thomas Grafc7fb64d2005-06-18 22:50:55 -07001792
1793 if (parms->dev)
Thomas Grafca860fb2006-08-07 18:00:18 -07001794 NLA_PUT_U32(skb, NDTPA_IFINDEX, parms->dev->ifindex);
Thomas Grafc7fb64d2005-06-18 22:50:55 -07001795
Thomas Grafca860fb2006-08-07 18:00:18 -07001796 NLA_PUT_U32(skb, NDTPA_REFCNT, atomic_read(&parms->refcnt));
1797 NLA_PUT_U32(skb, NDTPA_QUEUE_LEN, parms->queue_len);
1798 NLA_PUT_U32(skb, NDTPA_PROXY_QLEN, parms->proxy_qlen);
1799 NLA_PUT_U32(skb, NDTPA_APP_PROBES, parms->app_probes);
1800 NLA_PUT_U32(skb, NDTPA_UCAST_PROBES, parms->ucast_probes);
1801 NLA_PUT_U32(skb, NDTPA_MCAST_PROBES, parms->mcast_probes);
1802 NLA_PUT_MSECS(skb, NDTPA_REACHABLE_TIME, parms->reachable_time);
1803 NLA_PUT_MSECS(skb, NDTPA_BASE_REACHABLE_TIME,
Thomas Grafc7fb64d2005-06-18 22:50:55 -07001804 parms->base_reachable_time);
Thomas Grafca860fb2006-08-07 18:00:18 -07001805 NLA_PUT_MSECS(skb, NDTPA_GC_STALETIME, parms->gc_staletime);
1806 NLA_PUT_MSECS(skb, NDTPA_DELAY_PROBE_TIME, parms->delay_probe_time);
1807 NLA_PUT_MSECS(skb, NDTPA_RETRANS_TIME, parms->retrans_time);
1808 NLA_PUT_MSECS(skb, NDTPA_ANYCAST_DELAY, parms->anycast_delay);
1809 NLA_PUT_MSECS(skb, NDTPA_PROXY_DELAY, parms->proxy_delay);
1810 NLA_PUT_MSECS(skb, NDTPA_LOCKTIME, parms->locktime);
Thomas Grafc7fb64d2005-06-18 22:50:55 -07001811
Thomas Grafca860fb2006-08-07 18:00:18 -07001812 return nla_nest_end(skb, nest);
Thomas Grafc7fb64d2005-06-18 22:50:55 -07001813
Thomas Grafca860fb2006-08-07 18:00:18 -07001814nla_put_failure:
Thomas Grafbc3ed282008-06-03 16:36:54 -07001815 nla_nest_cancel(skb, nest);
1816 return -EMSGSIZE;
Thomas Grafc7fb64d2005-06-18 22:50:55 -07001817}
1818
Thomas Grafca860fb2006-08-07 18:00:18 -07001819static int neightbl_fill_info(struct sk_buff *skb, struct neigh_table *tbl,
1820 u32 pid, u32 seq, int type, int flags)
Thomas Grafc7fb64d2005-06-18 22:50:55 -07001821{
1822 struct nlmsghdr *nlh;
1823 struct ndtmsg *ndtmsg;
1824
Thomas Grafca860fb2006-08-07 18:00:18 -07001825 nlh = nlmsg_put(skb, pid, seq, type, sizeof(*ndtmsg), flags);
1826 if (nlh == NULL)
Patrick McHardy26932562007-01-31 23:16:40 -08001827 return -EMSGSIZE;
Thomas Grafc7fb64d2005-06-18 22:50:55 -07001828
Thomas Grafca860fb2006-08-07 18:00:18 -07001829 ndtmsg = nlmsg_data(nlh);
Thomas Grafc7fb64d2005-06-18 22:50:55 -07001830
1831 read_lock_bh(&tbl->lock);
1832 ndtmsg->ndtm_family = tbl->family;
Patrick McHardy9ef1d4c2005-06-28 12:55:30 -07001833 ndtmsg->ndtm_pad1 = 0;
1834 ndtmsg->ndtm_pad2 = 0;
Thomas Grafc7fb64d2005-06-18 22:50:55 -07001835
Thomas Grafca860fb2006-08-07 18:00:18 -07001836 NLA_PUT_STRING(skb, NDTA_NAME, tbl->id);
1837 NLA_PUT_MSECS(skb, NDTA_GC_INTERVAL, tbl->gc_interval);
1838 NLA_PUT_U32(skb, NDTA_THRESH1, tbl->gc_thresh1);
1839 NLA_PUT_U32(skb, NDTA_THRESH2, tbl->gc_thresh2);
1840 NLA_PUT_U32(skb, NDTA_THRESH3, tbl->gc_thresh3);
Thomas Grafc7fb64d2005-06-18 22:50:55 -07001841
1842 {
1843 unsigned long now = jiffies;
1844 unsigned int flush_delta = now - tbl->last_flush;
1845 unsigned int rand_delta = now - tbl->last_rand;
Eric Dumazetd6bf7812010-10-04 06:15:44 +00001846 struct neigh_hash_table *nht;
Thomas Grafc7fb64d2005-06-18 22:50:55 -07001847 struct ndt_config ndc = {
1848 .ndtc_key_len = tbl->key_len,
1849 .ndtc_entry_size = tbl->entry_size,
1850 .ndtc_entries = atomic_read(&tbl->entries),
1851 .ndtc_last_flush = jiffies_to_msecs(flush_delta),
1852 .ndtc_last_rand = jiffies_to_msecs(rand_delta),
Thomas Grafc7fb64d2005-06-18 22:50:55 -07001853 .ndtc_proxy_qlen = tbl->proxy_queue.qlen,
1854 };
1855
Eric Dumazetd6bf7812010-10-04 06:15:44 +00001856 rcu_read_lock_bh();
1857 nht = rcu_dereference_bh(tbl->nht);
1858 ndc.ndtc_hash_rnd = nht->hash_rnd;
David S. Millercd089332011-07-11 01:28:12 -07001859 ndc.ndtc_hash_mask = ((1 << nht->hash_shift) - 1);
Eric Dumazetd6bf7812010-10-04 06:15:44 +00001860 rcu_read_unlock_bh();
1861
Thomas Grafca860fb2006-08-07 18:00:18 -07001862 NLA_PUT(skb, NDTA_CONFIG, sizeof(ndc), &ndc);
Thomas Grafc7fb64d2005-06-18 22:50:55 -07001863 }
1864
1865 {
1866 int cpu;
1867 struct ndt_stats ndst;
1868
1869 memset(&ndst, 0, sizeof(ndst));
1870
KAMEZAWA Hiroyuki6f912042006-04-10 22:52:50 -07001871 for_each_possible_cpu(cpu) {
Thomas Grafc7fb64d2005-06-18 22:50:55 -07001872 struct neigh_statistics *st;
1873
Thomas Grafc7fb64d2005-06-18 22:50:55 -07001874 st = per_cpu_ptr(tbl->stats, cpu);
1875 ndst.ndts_allocs += st->allocs;
1876 ndst.ndts_destroys += st->destroys;
1877 ndst.ndts_hash_grows += st->hash_grows;
1878 ndst.ndts_res_failed += st->res_failed;
1879 ndst.ndts_lookups += st->lookups;
1880 ndst.ndts_hits += st->hits;
1881 ndst.ndts_rcv_probes_mcast += st->rcv_probes_mcast;
1882 ndst.ndts_rcv_probes_ucast += st->rcv_probes_ucast;
1883 ndst.ndts_periodic_gc_runs += st->periodic_gc_runs;
1884 ndst.ndts_forced_gc_runs += st->forced_gc_runs;
1885 }
1886
Thomas Grafca860fb2006-08-07 18:00:18 -07001887 NLA_PUT(skb, NDTA_STATS, sizeof(ndst), &ndst);
Thomas Grafc7fb64d2005-06-18 22:50:55 -07001888 }
1889
1890 BUG_ON(tbl->parms.dev);
1891 if (neightbl_fill_parms(skb, &tbl->parms) < 0)
Thomas Grafca860fb2006-08-07 18:00:18 -07001892 goto nla_put_failure;
Thomas Grafc7fb64d2005-06-18 22:50:55 -07001893
1894 read_unlock_bh(&tbl->lock);
Thomas Grafca860fb2006-08-07 18:00:18 -07001895 return nlmsg_end(skb, nlh);
Thomas Grafc7fb64d2005-06-18 22:50:55 -07001896
Thomas Grafca860fb2006-08-07 18:00:18 -07001897nla_put_failure:
Thomas Grafc7fb64d2005-06-18 22:50:55 -07001898 read_unlock_bh(&tbl->lock);
Patrick McHardy26932562007-01-31 23:16:40 -08001899 nlmsg_cancel(skb, nlh);
1900 return -EMSGSIZE;
Thomas Grafc7fb64d2005-06-18 22:50:55 -07001901}
1902
Thomas Grafca860fb2006-08-07 18:00:18 -07001903static int neightbl_fill_param_info(struct sk_buff *skb,
1904 struct neigh_table *tbl,
Thomas Grafc7fb64d2005-06-18 22:50:55 -07001905 struct neigh_parms *parms,
Thomas Grafca860fb2006-08-07 18:00:18 -07001906 u32 pid, u32 seq, int type,
1907 unsigned int flags)
Thomas Grafc7fb64d2005-06-18 22:50:55 -07001908{
1909 struct ndtmsg *ndtmsg;
1910 struct nlmsghdr *nlh;
1911
Thomas Grafca860fb2006-08-07 18:00:18 -07001912 nlh = nlmsg_put(skb, pid, seq, type, sizeof(*ndtmsg), flags);
1913 if (nlh == NULL)
Patrick McHardy26932562007-01-31 23:16:40 -08001914 return -EMSGSIZE;
Thomas Grafc7fb64d2005-06-18 22:50:55 -07001915
Thomas Grafca860fb2006-08-07 18:00:18 -07001916 ndtmsg = nlmsg_data(nlh);
Thomas Grafc7fb64d2005-06-18 22:50:55 -07001917
1918 read_lock_bh(&tbl->lock);
1919 ndtmsg->ndtm_family = tbl->family;
Patrick McHardy9ef1d4c2005-06-28 12:55:30 -07001920 ndtmsg->ndtm_pad1 = 0;
1921 ndtmsg->ndtm_pad2 = 0;
Thomas Grafc7fb64d2005-06-18 22:50:55 -07001922
Thomas Grafca860fb2006-08-07 18:00:18 -07001923 if (nla_put_string(skb, NDTA_NAME, tbl->id) < 0 ||
1924 neightbl_fill_parms(skb, parms) < 0)
1925 goto errout;
Thomas Grafc7fb64d2005-06-18 22:50:55 -07001926
1927 read_unlock_bh(&tbl->lock);
Thomas Grafca860fb2006-08-07 18:00:18 -07001928 return nlmsg_end(skb, nlh);
1929errout:
Thomas Grafc7fb64d2005-06-18 22:50:55 -07001930 read_unlock_bh(&tbl->lock);
Patrick McHardy26932562007-01-31 23:16:40 -08001931 nlmsg_cancel(skb, nlh);
1932 return -EMSGSIZE;
Thomas Grafc7fb64d2005-06-18 22:50:55 -07001933}
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09001934
Patrick McHardyef7c79e2007-06-05 12:38:30 -07001935static const struct nla_policy nl_neightbl_policy[NDTA_MAX+1] = {
Thomas Graf6b3f8672006-08-07 17:58:53 -07001936 [NDTA_NAME] = { .type = NLA_STRING },
1937 [NDTA_THRESH1] = { .type = NLA_U32 },
1938 [NDTA_THRESH2] = { .type = NLA_U32 },
1939 [NDTA_THRESH3] = { .type = NLA_U32 },
1940 [NDTA_GC_INTERVAL] = { .type = NLA_U64 },
1941 [NDTA_PARMS] = { .type = NLA_NESTED },
1942};
1943
Patrick McHardyef7c79e2007-06-05 12:38:30 -07001944static const struct nla_policy nl_ntbl_parm_policy[NDTPA_MAX+1] = {
Thomas Graf6b3f8672006-08-07 17:58:53 -07001945 [NDTPA_IFINDEX] = { .type = NLA_U32 },
1946 [NDTPA_QUEUE_LEN] = { .type = NLA_U32 },
1947 [NDTPA_PROXY_QLEN] = { .type = NLA_U32 },
1948 [NDTPA_APP_PROBES] = { .type = NLA_U32 },
1949 [NDTPA_UCAST_PROBES] = { .type = NLA_U32 },
1950 [NDTPA_MCAST_PROBES] = { .type = NLA_U32 },
1951 [NDTPA_BASE_REACHABLE_TIME] = { .type = NLA_U64 },
1952 [NDTPA_GC_STALETIME] = { .type = NLA_U64 },
1953 [NDTPA_DELAY_PROBE_TIME] = { .type = NLA_U64 },
1954 [NDTPA_RETRANS_TIME] = { .type = NLA_U64 },
1955 [NDTPA_ANYCAST_DELAY] = { .type = NLA_U64 },
1956 [NDTPA_PROXY_DELAY] = { .type = NLA_U64 },
1957 [NDTPA_LOCKTIME] = { .type = NLA_U64 },
1958};
1959
Thomas Grafc8822a42007-03-22 11:50:06 -07001960static int neightbl_set(struct sk_buff *skb, struct nlmsghdr *nlh, void *arg)
Thomas Grafc7fb64d2005-06-18 22:50:55 -07001961{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001962 struct net *net = sock_net(skb->sk);
Thomas Grafc7fb64d2005-06-18 22:50:55 -07001963 struct neigh_table *tbl;
Thomas Graf6b3f8672006-08-07 17:58:53 -07001964 struct ndtmsg *ndtmsg;
1965 struct nlattr *tb[NDTA_MAX+1];
1966 int err;
Thomas Grafc7fb64d2005-06-18 22:50:55 -07001967
Thomas Graf6b3f8672006-08-07 17:58:53 -07001968 err = nlmsg_parse(nlh, sizeof(*ndtmsg), tb, NDTA_MAX,
1969 nl_neightbl_policy);
1970 if (err < 0)
1971 goto errout;
Thomas Grafc7fb64d2005-06-18 22:50:55 -07001972
Thomas Graf6b3f8672006-08-07 17:58:53 -07001973 if (tb[NDTA_NAME] == NULL) {
1974 err = -EINVAL;
1975 goto errout;
1976 }
1977
1978 ndtmsg = nlmsg_data(nlh);
Thomas Grafc7fb64d2005-06-18 22:50:55 -07001979 read_lock(&neigh_tbl_lock);
1980 for (tbl = neigh_tables; tbl; tbl = tbl->next) {
1981 if (ndtmsg->ndtm_family && tbl->family != ndtmsg->ndtm_family)
1982 continue;
1983
Thomas Graf6b3f8672006-08-07 17:58:53 -07001984 if (nla_strcmp(tb[NDTA_NAME], tbl->id) == 0)
Thomas Grafc7fb64d2005-06-18 22:50:55 -07001985 break;
1986 }
1987
1988 if (tbl == NULL) {
1989 err = -ENOENT;
Thomas Graf6b3f8672006-08-07 17:58:53 -07001990 goto errout_locked;
Thomas Grafc7fb64d2005-06-18 22:50:55 -07001991 }
1992
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09001993 /*
Thomas Grafc7fb64d2005-06-18 22:50:55 -07001994 * We acquire tbl->lock to be nice to the periodic timers and
1995 * make sure they always see a consistent set of values.
1996 */
1997 write_lock_bh(&tbl->lock);
1998
Thomas Graf6b3f8672006-08-07 17:58:53 -07001999 if (tb[NDTA_PARMS]) {
2000 struct nlattr *tbp[NDTPA_MAX+1];
Thomas Grafc7fb64d2005-06-18 22:50:55 -07002001 struct neigh_parms *p;
Thomas Graf6b3f8672006-08-07 17:58:53 -07002002 int i, ifindex = 0;
Thomas Grafc7fb64d2005-06-18 22:50:55 -07002003
Thomas Graf6b3f8672006-08-07 17:58:53 -07002004 err = nla_parse_nested(tbp, NDTPA_MAX, tb[NDTA_PARMS],
2005 nl_ntbl_parm_policy);
2006 if (err < 0)
2007 goto errout_tbl_lock;
Thomas Grafc7fb64d2005-06-18 22:50:55 -07002008
Thomas Graf6b3f8672006-08-07 17:58:53 -07002009 if (tbp[NDTPA_IFINDEX])
2010 ifindex = nla_get_u32(tbp[NDTPA_IFINDEX]);
Thomas Grafc7fb64d2005-06-18 22:50:55 -07002011
Tobias Klauser97fd5bc2009-07-13 11:17:49 -07002012 p = lookup_neigh_parms(tbl, net, ifindex);
Thomas Grafc7fb64d2005-06-18 22:50:55 -07002013 if (p == NULL) {
2014 err = -ENOENT;
Thomas Graf6b3f8672006-08-07 17:58:53 -07002015 goto errout_tbl_lock;
Thomas Grafc7fb64d2005-06-18 22:50:55 -07002016 }
Thomas Grafc7fb64d2005-06-18 22:50:55 -07002017
Thomas Graf6b3f8672006-08-07 17:58:53 -07002018 for (i = 1; i <= NDTPA_MAX; i++) {
2019 if (tbp[i] == NULL)
2020 continue;
Thomas Grafc7fb64d2005-06-18 22:50:55 -07002021
Thomas Graf6b3f8672006-08-07 17:58:53 -07002022 switch (i) {
2023 case NDTPA_QUEUE_LEN:
2024 p->queue_len = nla_get_u32(tbp[i]);
2025 break;
2026 case NDTPA_PROXY_QLEN:
2027 p->proxy_qlen = nla_get_u32(tbp[i]);
2028 break;
2029 case NDTPA_APP_PROBES:
2030 p->app_probes = nla_get_u32(tbp[i]);
2031 break;
2032 case NDTPA_UCAST_PROBES:
2033 p->ucast_probes = nla_get_u32(tbp[i]);
2034 break;
2035 case NDTPA_MCAST_PROBES:
2036 p->mcast_probes = nla_get_u32(tbp[i]);
2037 break;
2038 case NDTPA_BASE_REACHABLE_TIME:
2039 p->base_reachable_time = nla_get_msecs(tbp[i]);
2040 break;
2041 case NDTPA_GC_STALETIME:
2042 p->gc_staletime = nla_get_msecs(tbp[i]);
2043 break;
2044 case NDTPA_DELAY_PROBE_TIME:
2045 p->delay_probe_time = nla_get_msecs(tbp[i]);
2046 break;
2047 case NDTPA_RETRANS_TIME:
2048 p->retrans_time = nla_get_msecs(tbp[i]);
2049 break;
2050 case NDTPA_ANYCAST_DELAY:
2051 p->anycast_delay = nla_get_msecs(tbp[i]);
2052 break;
2053 case NDTPA_PROXY_DELAY:
2054 p->proxy_delay = nla_get_msecs(tbp[i]);
2055 break;
2056 case NDTPA_LOCKTIME:
2057 p->locktime = nla_get_msecs(tbp[i]);
2058 break;
2059 }
2060 }
Thomas Grafc7fb64d2005-06-18 22:50:55 -07002061 }
2062
Thomas Graf6b3f8672006-08-07 17:58:53 -07002063 if (tb[NDTA_THRESH1])
2064 tbl->gc_thresh1 = nla_get_u32(tb[NDTA_THRESH1]);
2065
2066 if (tb[NDTA_THRESH2])
2067 tbl->gc_thresh2 = nla_get_u32(tb[NDTA_THRESH2]);
2068
2069 if (tb[NDTA_THRESH3])
2070 tbl->gc_thresh3 = nla_get_u32(tb[NDTA_THRESH3]);
2071
2072 if (tb[NDTA_GC_INTERVAL])
2073 tbl->gc_interval = nla_get_msecs(tb[NDTA_GC_INTERVAL]);
2074
Thomas Grafc7fb64d2005-06-18 22:50:55 -07002075 err = 0;
2076
Thomas Graf6b3f8672006-08-07 17:58:53 -07002077errout_tbl_lock:
Thomas Grafc7fb64d2005-06-18 22:50:55 -07002078 write_unlock_bh(&tbl->lock);
Thomas Graf6b3f8672006-08-07 17:58:53 -07002079errout_locked:
Thomas Grafc7fb64d2005-06-18 22:50:55 -07002080 read_unlock(&neigh_tbl_lock);
Thomas Graf6b3f8672006-08-07 17:58:53 -07002081errout:
Thomas Grafc7fb64d2005-06-18 22:50:55 -07002082 return err;
2083}
2084
Thomas Grafc8822a42007-03-22 11:50:06 -07002085static int neightbl_dump_info(struct sk_buff *skb, struct netlink_callback *cb)
Thomas Grafc7fb64d2005-06-18 22:50:55 -07002086{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09002087 struct net *net = sock_net(skb->sk);
Thomas Grafca860fb2006-08-07 18:00:18 -07002088 int family, tidx, nidx = 0;
2089 int tbl_skip = cb->args[0];
2090 int neigh_skip = cb->args[1];
Thomas Grafc7fb64d2005-06-18 22:50:55 -07002091 struct neigh_table *tbl;
2092
Thomas Grafca860fb2006-08-07 18:00:18 -07002093 family = ((struct rtgenmsg *) nlmsg_data(cb->nlh))->rtgen_family;
Thomas Grafc7fb64d2005-06-18 22:50:55 -07002094
2095 read_lock(&neigh_tbl_lock);
Thomas Grafca860fb2006-08-07 18:00:18 -07002096 for (tbl = neigh_tables, tidx = 0; tbl; tbl = tbl->next, tidx++) {
Thomas Grafc7fb64d2005-06-18 22:50:55 -07002097 struct neigh_parms *p;
2098
Thomas Grafca860fb2006-08-07 18:00:18 -07002099 if (tidx < tbl_skip || (family && tbl->family != family))
Thomas Grafc7fb64d2005-06-18 22:50:55 -07002100 continue;
2101
Thomas Grafca860fb2006-08-07 18:00:18 -07002102 if (neightbl_fill_info(skb, tbl, NETLINK_CB(cb->skb).pid,
2103 cb->nlh->nlmsg_seq, RTM_NEWNEIGHTBL,
2104 NLM_F_MULTI) <= 0)
Thomas Grafc7fb64d2005-06-18 22:50:55 -07002105 break;
2106
Eric W. Biederman426b5302008-01-24 00:13:18 -08002107 for (nidx = 0, p = tbl->parms.next; p; p = p->next) {
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +09002108 if (!net_eq(neigh_parms_net(p), net))
Eric W. Biederman426b5302008-01-24 00:13:18 -08002109 continue;
2110
Gautam Kachrooefc683f2009-02-06 00:52:04 -08002111 if (nidx < neigh_skip)
2112 goto next;
Thomas Grafc7fb64d2005-06-18 22:50:55 -07002113
Thomas Grafca860fb2006-08-07 18:00:18 -07002114 if (neightbl_fill_param_info(skb, tbl, p,
2115 NETLINK_CB(cb->skb).pid,
2116 cb->nlh->nlmsg_seq,
2117 RTM_NEWNEIGHTBL,
2118 NLM_F_MULTI) <= 0)
Thomas Grafc7fb64d2005-06-18 22:50:55 -07002119 goto out;
Gautam Kachrooefc683f2009-02-06 00:52:04 -08002120 next:
2121 nidx++;
Thomas Grafc7fb64d2005-06-18 22:50:55 -07002122 }
2123
Thomas Grafca860fb2006-08-07 18:00:18 -07002124 neigh_skip = 0;
Thomas Grafc7fb64d2005-06-18 22:50:55 -07002125 }
2126out:
2127 read_unlock(&neigh_tbl_lock);
Thomas Grafca860fb2006-08-07 18:00:18 -07002128 cb->args[0] = tidx;
2129 cb->args[1] = nidx;
Thomas Grafc7fb64d2005-06-18 22:50:55 -07002130
2131 return skb->len;
2132}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002133
Thomas Graf8b8aec52006-08-07 17:56:37 -07002134static int neigh_fill_info(struct sk_buff *skb, struct neighbour *neigh,
2135 u32 pid, u32 seq, int type, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136{
2137 unsigned long now = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002138 struct nda_cacheinfo ci;
Thomas Graf8b8aec52006-08-07 17:56:37 -07002139 struct nlmsghdr *nlh;
2140 struct ndmsg *ndm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002141
Thomas Graf8b8aec52006-08-07 17:56:37 -07002142 nlh = nlmsg_put(skb, pid, seq, type, sizeof(*ndm), flags);
2143 if (nlh == NULL)
Patrick McHardy26932562007-01-31 23:16:40 -08002144 return -EMSGSIZE;
Thomas Graf8b8aec52006-08-07 17:56:37 -07002145
2146 ndm = nlmsg_data(nlh);
2147 ndm->ndm_family = neigh->ops->family;
Patrick McHardy9ef1d4c2005-06-28 12:55:30 -07002148 ndm->ndm_pad1 = 0;
2149 ndm->ndm_pad2 = 0;
Thomas Graf8b8aec52006-08-07 17:56:37 -07002150 ndm->ndm_flags = neigh->flags;
2151 ndm->ndm_type = neigh->type;
2152 ndm->ndm_ifindex = neigh->dev->ifindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002153
Thomas Graf8b8aec52006-08-07 17:56:37 -07002154 NLA_PUT(skb, NDA_DST, neigh->tbl->key_len, neigh->primary_key);
2155
2156 read_lock_bh(&neigh->lock);
2157 ndm->ndm_state = neigh->nud_state;
Eric Dumazet0ed8ddf2010-10-07 10:44:07 +00002158 if (neigh->nud_state & NUD_VALID) {
2159 char haddr[MAX_ADDR_LEN];
2160
2161 neigh_ha_snapshot(haddr, neigh, neigh->dev);
2162 if (nla_put(skb, NDA_LLADDR, neigh->dev->addr_len, haddr) < 0) {
2163 read_unlock_bh(&neigh->lock);
2164 goto nla_put_failure;
2165 }
Thomas Graf8b8aec52006-08-07 17:56:37 -07002166 }
2167
Stephen Hemmingerb9f5f522008-06-03 16:03:15 -07002168 ci.ndm_used = jiffies_to_clock_t(now - neigh->used);
2169 ci.ndm_confirmed = jiffies_to_clock_t(now - neigh->confirmed);
2170 ci.ndm_updated = jiffies_to_clock_t(now - neigh->updated);
Thomas Graf8b8aec52006-08-07 17:56:37 -07002171 ci.ndm_refcnt = atomic_read(&neigh->refcnt) - 1;
2172 read_unlock_bh(&neigh->lock);
2173
2174 NLA_PUT_U32(skb, NDA_PROBES, atomic_read(&neigh->probes));
2175 NLA_PUT(skb, NDA_CACHEINFO, sizeof(ci), &ci);
2176
2177 return nlmsg_end(skb, nlh);
2178
2179nla_put_failure:
Patrick McHardy26932562007-01-31 23:16:40 -08002180 nlmsg_cancel(skb, nlh);
2181 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002182}
2183
Thomas Grafd961db32007-08-08 23:12:56 -07002184static void neigh_update_notify(struct neighbour *neigh)
2185{
2186 call_netevent_notifiers(NETEVENT_NEIGH_UPDATE, neigh);
2187 __neigh_notify(neigh, RTM_NEWNEIGH, 0);
2188}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002189
2190static int neigh_dump_table(struct neigh_table *tbl, struct sk_buff *skb,
2191 struct netlink_callback *cb)
2192{
Eric Dumazet767e97e2010-10-06 17:49:21 -07002193 struct net *net = sock_net(skb->sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002194 struct neighbour *n;
2195 int rc, h, s_h = cb->args[1];
2196 int idx, s_idx = idx = cb->args[2];
Eric Dumazetd6bf7812010-10-04 06:15:44 +00002197 struct neigh_hash_table *nht;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002198
Eric Dumazetd6bf7812010-10-04 06:15:44 +00002199 rcu_read_lock_bh();
2200 nht = rcu_dereference_bh(tbl->nht);
2201
David S. Millercd089332011-07-11 01:28:12 -07002202 for (h = 0; h < (1 << nht->hash_shift); h++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002203 if (h < s_h)
2204 continue;
2205 if (h > s_h)
2206 s_idx = 0;
Eric Dumazet767e97e2010-10-06 17:49:21 -07002207 for (n = rcu_dereference_bh(nht->hash_buckets[h]), idx = 0;
2208 n != NULL;
2209 n = rcu_dereference_bh(n->next)) {
Octavian Purdila09ad9bc2009-11-25 15:14:13 -08002210 if (!net_eq(dev_net(n->dev), net))
Eric W. Biederman426b5302008-01-24 00:13:18 -08002211 continue;
Gautam Kachrooefc683f2009-02-06 00:52:04 -08002212 if (idx < s_idx)
2213 goto next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002214 if (neigh_fill_info(skb, n, NETLINK_CB(cb->skb).pid,
2215 cb->nlh->nlmsg_seq,
Jamal Hadi Salimb6544c02005-06-18 22:54:12 -07002216 RTM_NEWNEIGH,
2217 NLM_F_MULTI) <= 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002218 rc = -1;
2219 goto out;
2220 }
Eric Dumazet767e97e2010-10-06 17:49:21 -07002221next:
Gautam Kachrooefc683f2009-02-06 00:52:04 -08002222 idx++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002223 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002224 }
2225 rc = skb->len;
2226out:
Eric Dumazetd6bf7812010-10-04 06:15:44 +00002227 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002228 cb->args[1] = h;
2229 cb->args[2] = idx;
2230 return rc;
2231}
2232
Thomas Grafc8822a42007-03-22 11:50:06 -07002233static int neigh_dump_info(struct sk_buff *skb, struct netlink_callback *cb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002234{
2235 struct neigh_table *tbl;
2236 int t, family, s_t;
2237
2238 read_lock(&neigh_tbl_lock);
Thomas Graf8b8aec52006-08-07 17:56:37 -07002239 family = ((struct rtgenmsg *) nlmsg_data(cb->nlh))->rtgen_family;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240 s_t = cb->args[0];
2241
2242 for (tbl = neigh_tables, t = 0; tbl; tbl = tbl->next, t++) {
2243 if (t < s_t || (family && tbl->family != family))
2244 continue;
2245 if (t > s_t)
2246 memset(&cb->args[1], 0, sizeof(cb->args) -
2247 sizeof(cb->args[0]));
2248 if (neigh_dump_table(tbl, skb, cb) < 0)
2249 break;
2250 }
2251 read_unlock(&neigh_tbl_lock);
2252
2253 cb->args[0] = t;
2254 return skb->len;
2255}
2256
2257void neigh_for_each(struct neigh_table *tbl, void (*cb)(struct neighbour *, void *), void *cookie)
2258{
2259 int chain;
Eric Dumazetd6bf7812010-10-04 06:15:44 +00002260 struct neigh_hash_table *nht;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002261
Eric Dumazetd6bf7812010-10-04 06:15:44 +00002262 rcu_read_lock_bh();
2263 nht = rcu_dereference_bh(tbl->nht);
2264
Eric Dumazet767e97e2010-10-06 17:49:21 -07002265 read_lock(&tbl->lock); /* avoid resizes */
David S. Millercd089332011-07-11 01:28:12 -07002266 for (chain = 0; chain < (1 << nht->hash_shift); chain++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002267 struct neighbour *n;
2268
Eric Dumazet767e97e2010-10-06 17:49:21 -07002269 for (n = rcu_dereference_bh(nht->hash_buckets[chain]);
2270 n != NULL;
2271 n = rcu_dereference_bh(n->next))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002272 cb(n, cookie);
2273 }
Eric Dumazetd6bf7812010-10-04 06:15:44 +00002274 read_unlock(&tbl->lock);
2275 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002276}
2277EXPORT_SYMBOL(neigh_for_each);
2278
2279/* The tbl->lock must be held as a writer and BH disabled. */
2280void __neigh_for_each_release(struct neigh_table *tbl,
2281 int (*cb)(struct neighbour *))
2282{
2283 int chain;
Eric Dumazetd6bf7812010-10-04 06:15:44 +00002284 struct neigh_hash_table *nht;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002285
Eric Dumazetd6bf7812010-10-04 06:15:44 +00002286 nht = rcu_dereference_protected(tbl->nht,
2287 lockdep_is_held(&tbl->lock));
David S. Millercd089332011-07-11 01:28:12 -07002288 for (chain = 0; chain < (1 << nht->hash_shift); chain++) {
Eric Dumazet767e97e2010-10-06 17:49:21 -07002289 struct neighbour *n;
2290 struct neighbour __rcu **np;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002291
Eric Dumazetd6bf7812010-10-04 06:15:44 +00002292 np = &nht->hash_buckets[chain];
Eric Dumazet767e97e2010-10-06 17:49:21 -07002293 while ((n = rcu_dereference_protected(*np,
2294 lockdep_is_held(&tbl->lock))) != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002295 int release;
2296
2297 write_lock(&n->lock);
2298 release = cb(n);
2299 if (release) {
Eric Dumazet767e97e2010-10-06 17:49:21 -07002300 rcu_assign_pointer(*np,
2301 rcu_dereference_protected(n->next,
2302 lockdep_is_held(&tbl->lock)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002303 n->dead = 1;
2304 } else
2305 np = &n->next;
2306 write_unlock(&n->lock);
Thomas Graf4f494552007-08-08 23:12:36 -07002307 if (release)
2308 neigh_cleanup_and_release(n);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002309 }
2310 }
2311}
2312EXPORT_SYMBOL(__neigh_for_each_release);
2313
2314#ifdef CONFIG_PROC_FS
2315
2316static struct neighbour *neigh_get_first(struct seq_file *seq)
2317{
2318 struct neigh_seq_state *state = seq->private;
YOSHIFUJI Hideaki12188542008-03-26 02:36:06 +09002319 struct net *net = seq_file_net(seq);
Eric Dumazetd6bf7812010-10-04 06:15:44 +00002320 struct neigh_hash_table *nht = state->nht;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002321 struct neighbour *n = NULL;
2322 int bucket = state->bucket;
2323
2324 state->flags &= ~NEIGH_SEQ_IS_PNEIGH;
David S. Millercd089332011-07-11 01:28:12 -07002325 for (bucket = 0; bucket < (1 << nht->hash_shift); bucket++) {
Eric Dumazet767e97e2010-10-06 17:49:21 -07002326 n = rcu_dereference_bh(nht->hash_buckets[bucket]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002327
2328 while (n) {
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +09002329 if (!net_eq(dev_net(n->dev), net))
Eric W. Biederman426b5302008-01-24 00:13:18 -08002330 goto next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002331 if (state->neigh_sub_iter) {
2332 loff_t fakep = 0;
2333 void *v;
2334
2335 v = state->neigh_sub_iter(state, n, &fakep);
2336 if (!v)
2337 goto next;
2338 }
2339 if (!(state->flags & NEIGH_SEQ_SKIP_NOARP))
2340 break;
2341 if (n->nud_state & ~NUD_NOARP)
2342 break;
Eric Dumazet767e97e2010-10-06 17:49:21 -07002343next:
2344 n = rcu_dereference_bh(n->next);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002345 }
2346
2347 if (n)
2348 break;
2349 }
2350 state->bucket = bucket;
2351
2352 return n;
2353}
2354
2355static struct neighbour *neigh_get_next(struct seq_file *seq,
2356 struct neighbour *n,
2357 loff_t *pos)
2358{
2359 struct neigh_seq_state *state = seq->private;
YOSHIFUJI Hideaki12188542008-03-26 02:36:06 +09002360 struct net *net = seq_file_net(seq);
Eric Dumazetd6bf7812010-10-04 06:15:44 +00002361 struct neigh_hash_table *nht = state->nht;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002362
2363 if (state->neigh_sub_iter) {
2364 void *v = state->neigh_sub_iter(state, n, pos);
2365 if (v)
2366 return n;
2367 }
Eric Dumazet767e97e2010-10-06 17:49:21 -07002368 n = rcu_dereference_bh(n->next);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002369
2370 while (1) {
2371 while (n) {
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +09002372 if (!net_eq(dev_net(n->dev), net))
Eric W. Biederman426b5302008-01-24 00:13:18 -08002373 goto next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002374 if (state->neigh_sub_iter) {
2375 void *v = state->neigh_sub_iter(state, n, pos);
2376 if (v)
2377 return n;
2378 goto next;
2379 }
2380 if (!(state->flags & NEIGH_SEQ_SKIP_NOARP))
2381 break;
2382
2383 if (n->nud_state & ~NUD_NOARP)
2384 break;
Eric Dumazet767e97e2010-10-06 17:49:21 -07002385next:
2386 n = rcu_dereference_bh(n->next);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002387 }
2388
2389 if (n)
2390 break;
2391
David S. Millercd089332011-07-11 01:28:12 -07002392 if (++state->bucket >= (1 << nht->hash_shift))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002393 break;
2394
Eric Dumazet767e97e2010-10-06 17:49:21 -07002395 n = rcu_dereference_bh(nht->hash_buckets[state->bucket]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002396 }
2397
2398 if (n && pos)
2399 --(*pos);
2400 return n;
2401}
2402
2403static struct neighbour *neigh_get_idx(struct seq_file *seq, loff_t *pos)
2404{
2405 struct neighbour *n = neigh_get_first(seq);
2406
2407 if (n) {
Chris Larson745e2032008-08-03 01:10:55 -07002408 --(*pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002409 while (*pos) {
2410 n = neigh_get_next(seq, n, pos);
2411 if (!n)
2412 break;
2413 }
2414 }
2415 return *pos ? NULL : n;
2416}
2417
2418static struct pneigh_entry *pneigh_get_first(struct seq_file *seq)
2419{
2420 struct neigh_seq_state *state = seq->private;
YOSHIFUJI Hideaki12188542008-03-26 02:36:06 +09002421 struct net *net = seq_file_net(seq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002422 struct neigh_table *tbl = state->tbl;
2423 struct pneigh_entry *pn = NULL;
2424 int bucket = state->bucket;
2425
2426 state->flags |= NEIGH_SEQ_IS_PNEIGH;
2427 for (bucket = 0; bucket <= PNEIGH_HASHMASK; bucket++) {
2428 pn = tbl->phash_buckets[bucket];
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +09002429 while (pn && !net_eq(pneigh_net(pn), net))
Eric W. Biederman426b5302008-01-24 00:13:18 -08002430 pn = pn->next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002431 if (pn)
2432 break;
2433 }
2434 state->bucket = bucket;
2435
2436 return pn;
2437}
2438
2439static struct pneigh_entry *pneigh_get_next(struct seq_file *seq,
2440 struct pneigh_entry *pn,
2441 loff_t *pos)
2442{
2443 struct neigh_seq_state *state = seq->private;
YOSHIFUJI Hideaki12188542008-03-26 02:36:06 +09002444 struct net *net = seq_file_net(seq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002445 struct neigh_table *tbl = state->tbl;
2446
2447 pn = pn->next;
2448 while (!pn) {
2449 if (++state->bucket > PNEIGH_HASHMASK)
2450 break;
2451 pn = tbl->phash_buckets[state->bucket];
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +09002452 while (pn && !net_eq(pneigh_net(pn), net))
Eric W. Biederman426b5302008-01-24 00:13:18 -08002453 pn = pn->next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002454 if (pn)
2455 break;
2456 }
2457
2458 if (pn && pos)
2459 --(*pos);
2460
2461 return pn;
2462}
2463
2464static struct pneigh_entry *pneigh_get_idx(struct seq_file *seq, loff_t *pos)
2465{
2466 struct pneigh_entry *pn = pneigh_get_first(seq);
2467
2468 if (pn) {
Chris Larson745e2032008-08-03 01:10:55 -07002469 --(*pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002470 while (*pos) {
2471 pn = pneigh_get_next(seq, pn, pos);
2472 if (!pn)
2473 break;
2474 }
2475 }
2476 return *pos ? NULL : pn;
2477}
2478
2479static void *neigh_get_idx_any(struct seq_file *seq, loff_t *pos)
2480{
2481 struct neigh_seq_state *state = seq->private;
2482 void *rc;
Chris Larson745e2032008-08-03 01:10:55 -07002483 loff_t idxpos = *pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002484
Chris Larson745e2032008-08-03 01:10:55 -07002485 rc = neigh_get_idx(seq, &idxpos);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002486 if (!rc && !(state->flags & NEIGH_SEQ_NEIGH_ONLY))
Chris Larson745e2032008-08-03 01:10:55 -07002487 rc = pneigh_get_idx(seq, &idxpos);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002488
2489 return rc;
2490}
2491
2492void *neigh_seq_start(struct seq_file *seq, loff_t *pos, struct neigh_table *tbl, unsigned int neigh_seq_flags)
Eric Dumazetd6bf7812010-10-04 06:15:44 +00002493 __acquires(rcu_bh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002494{
2495 struct neigh_seq_state *state = seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002496
2497 state->tbl = tbl;
2498 state->bucket = 0;
2499 state->flags = (neigh_seq_flags & ~NEIGH_SEQ_IS_PNEIGH);
2500
Eric Dumazetd6bf7812010-10-04 06:15:44 +00002501 rcu_read_lock_bh();
2502 state->nht = rcu_dereference_bh(tbl->nht);
Eric Dumazet767e97e2010-10-06 17:49:21 -07002503
Chris Larson745e2032008-08-03 01:10:55 -07002504 return *pos ? neigh_get_idx_any(seq, pos) : SEQ_START_TOKEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002505}
2506EXPORT_SYMBOL(neigh_seq_start);
2507
2508void *neigh_seq_next(struct seq_file *seq, void *v, loff_t *pos)
2509{
2510 struct neigh_seq_state *state;
2511 void *rc;
2512
2513 if (v == SEQ_START_TOKEN) {
Chris Larsonbff69732008-08-03 01:02:41 -07002514 rc = neigh_get_first(seq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002515 goto out;
2516 }
2517
2518 state = seq->private;
2519 if (!(state->flags & NEIGH_SEQ_IS_PNEIGH)) {
2520 rc = neigh_get_next(seq, v, NULL);
2521 if (rc)
2522 goto out;
2523 if (!(state->flags & NEIGH_SEQ_NEIGH_ONLY))
2524 rc = pneigh_get_first(seq);
2525 } else {
2526 BUG_ON(state->flags & NEIGH_SEQ_NEIGH_ONLY);
2527 rc = pneigh_get_next(seq, v, NULL);
2528 }
2529out:
2530 ++(*pos);
2531 return rc;
2532}
2533EXPORT_SYMBOL(neigh_seq_next);
2534
2535void neigh_seq_stop(struct seq_file *seq, void *v)
Eric Dumazetd6bf7812010-10-04 06:15:44 +00002536 __releases(rcu_bh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002537{
Eric Dumazetd6bf7812010-10-04 06:15:44 +00002538 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002539}
2540EXPORT_SYMBOL(neigh_seq_stop);
2541
2542/* statistics via seq_file */
2543
2544static void *neigh_stat_seq_start(struct seq_file *seq, loff_t *pos)
2545{
Alexey Dobriyan81c1ebf2010-01-22 10:16:05 +00002546 struct neigh_table *tbl = seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002547 int cpu;
2548
2549 if (*pos == 0)
2550 return SEQ_START_TOKEN;
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09002551
Rusty Russell0f23174a2008-12-29 12:23:42 +00002552 for (cpu = *pos-1; cpu < nr_cpu_ids; ++cpu) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002553 if (!cpu_possible(cpu))
2554 continue;
2555 *pos = cpu+1;
2556 return per_cpu_ptr(tbl->stats, cpu);
2557 }
2558 return NULL;
2559}
2560
2561static void *neigh_stat_seq_next(struct seq_file *seq, void *v, loff_t *pos)
2562{
Alexey Dobriyan81c1ebf2010-01-22 10:16:05 +00002563 struct neigh_table *tbl = seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002564 int cpu;
2565
Rusty Russell0f23174a2008-12-29 12:23:42 +00002566 for (cpu = *pos; cpu < nr_cpu_ids; ++cpu) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002567 if (!cpu_possible(cpu))
2568 continue;
2569 *pos = cpu+1;
2570 return per_cpu_ptr(tbl->stats, cpu);
2571 }
2572 return NULL;
2573}
2574
2575static void neigh_stat_seq_stop(struct seq_file *seq, void *v)
2576{
2577
2578}
2579
2580static int neigh_stat_seq_show(struct seq_file *seq, void *v)
2581{
Alexey Dobriyan81c1ebf2010-01-22 10:16:05 +00002582 struct neigh_table *tbl = seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002583 struct neigh_statistics *st = v;
2584
2585 if (v == SEQ_START_TOKEN) {
Neil Horman9a6d2762008-07-16 20:50:49 -07002586 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 -07002587 return 0;
2588 }
2589
2590 seq_printf(seq, "%08x %08lx %08lx %08lx %08lx %08lx %08lx "
Neil Horman9a6d2762008-07-16 20:50:49 -07002591 "%08lx %08lx %08lx %08lx %08lx\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002592 atomic_read(&tbl->entries),
2593
2594 st->allocs,
2595 st->destroys,
2596 st->hash_grows,
2597
2598 st->lookups,
2599 st->hits,
2600
2601 st->res_failed,
2602
2603 st->rcv_probes_mcast,
2604 st->rcv_probes_ucast,
2605
2606 st->periodic_gc_runs,
Neil Horman9a6d2762008-07-16 20:50:49 -07002607 st->forced_gc_runs,
2608 st->unres_discards
Linus Torvalds1da177e2005-04-16 15:20:36 -07002609 );
2610
2611 return 0;
2612}
2613
Stephen Hemmingerf6908082007-03-12 14:34:29 -07002614static const struct seq_operations neigh_stat_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002615 .start = neigh_stat_seq_start,
2616 .next = neigh_stat_seq_next,
2617 .stop = neigh_stat_seq_stop,
2618 .show = neigh_stat_seq_show,
2619};
2620
2621static int neigh_stat_seq_open(struct inode *inode, struct file *file)
2622{
2623 int ret = seq_open(file, &neigh_stat_seq_ops);
2624
2625 if (!ret) {
2626 struct seq_file *sf = file->private_data;
Alexey Dobriyan81c1ebf2010-01-22 10:16:05 +00002627 sf->private = PDE(inode)->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002628 }
2629 return ret;
2630};
2631
Arjan van de Ven9a321442007-02-12 00:55:35 -08002632static const struct file_operations neigh_stat_seq_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002633 .owner = THIS_MODULE,
2634 .open = neigh_stat_seq_open,
2635 .read = seq_read,
2636 .llseek = seq_lseek,
2637 .release = seq_release,
2638};
2639
2640#endif /* CONFIG_PROC_FS */
2641
Thomas Graf339bf982006-11-10 14:10:15 -08002642static inline size_t neigh_nlmsg_size(void)
2643{
2644 return NLMSG_ALIGN(sizeof(struct ndmsg))
2645 + nla_total_size(MAX_ADDR_LEN) /* NDA_DST */
2646 + nla_total_size(MAX_ADDR_LEN) /* NDA_LLADDR */
2647 + nla_total_size(sizeof(struct nda_cacheinfo))
2648 + nla_total_size(4); /* NDA_PROBES */
2649}
2650
Thomas Grafb8673312006-08-15 00:33:14 -07002651static void __neigh_notify(struct neighbour *n, int type, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002652{
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09002653 struct net *net = dev_net(n->dev);
Thomas Graf8b8aec52006-08-07 17:56:37 -07002654 struct sk_buff *skb;
Thomas Grafb8673312006-08-15 00:33:14 -07002655 int err = -ENOBUFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002656
Thomas Graf339bf982006-11-10 14:10:15 -08002657 skb = nlmsg_new(neigh_nlmsg_size(), GFP_ATOMIC);
Thomas Graf8b8aec52006-08-07 17:56:37 -07002658 if (skb == NULL)
Thomas Grafb8673312006-08-15 00:33:14 -07002659 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002660
Thomas Grafb8673312006-08-15 00:33:14 -07002661 err = neigh_fill_info(skb, n, 0, 0, type, flags);
Patrick McHardy26932562007-01-31 23:16:40 -08002662 if (err < 0) {
2663 /* -EMSGSIZE implies BUG in neigh_nlmsg_size() */
2664 WARN_ON(err == -EMSGSIZE);
2665 kfree_skb(skb);
2666 goto errout;
2667 }
Pablo Neira Ayuso1ce85fe2009-02-24 23:18:28 -08002668 rtnl_notify(skb, net, 0, RTNLGRP_NEIGH, NULL, GFP_ATOMIC);
2669 return;
Thomas Grafb8673312006-08-15 00:33:14 -07002670errout:
2671 if (err < 0)
Eric W. Biederman426b5302008-01-24 00:13:18 -08002672 rtnl_set_sk_err(net, RTNLGRP_NEIGH, err);
Thomas Grafb8673312006-08-15 00:33:14 -07002673}
2674
Thomas Grafd961db32007-08-08 23:12:56 -07002675#ifdef CONFIG_ARPD
Thomas Grafb8673312006-08-15 00:33:14 -07002676void neigh_app_ns(struct neighbour *n)
2677{
2678 __neigh_notify(n, RTM_GETNEIGH, NLM_F_REQUEST);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002679}
YOSHIFUJI Hideaki0a204502008-03-24 18:39:10 +09002680EXPORT_SYMBOL(neigh_app_ns);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002681#endif /* CONFIG_ARPD */
2682
2683#ifdef CONFIG_SYSCTL
2684
Eric W. Biederman54716e32010-02-14 03:27:03 +00002685#define NEIGH_VARS_MAX 19
2686
Linus Torvalds1da177e2005-04-16 15:20:36 -07002687static struct neigh_sysctl_table {
2688 struct ctl_table_header *sysctl_header;
Eric W. Biederman54716e32010-02-14 03:27:03 +00002689 struct ctl_table neigh_vars[NEIGH_VARS_MAX];
Pavel Emelyanovc3bac5a2007-12-02 00:08:16 +11002690 char *dev_name;
Brian Haleyab32ea52006-09-22 14:15:41 -07002691} neigh_sysctl_template __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002692 .neigh_vars = {
2693 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002694 .procname = "mcast_solicit",
2695 .maxlen = sizeof(int),
2696 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08002697 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002698 },
2699 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002700 .procname = "ucast_solicit",
2701 .maxlen = sizeof(int),
2702 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08002703 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002704 },
2705 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002706 .procname = "app_solicit",
2707 .maxlen = sizeof(int),
2708 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08002709 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002710 },
2711 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002712 .procname = "retrans_time",
2713 .maxlen = sizeof(int),
2714 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08002715 .proc_handler = proc_dointvec_userhz_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002716 },
2717 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002718 .procname = "base_reachable_time",
2719 .maxlen = sizeof(int),
2720 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08002721 .proc_handler = proc_dointvec_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002722 },
2723 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002724 .procname = "delay_first_probe_time",
2725 .maxlen = sizeof(int),
2726 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08002727 .proc_handler = proc_dointvec_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002728 },
2729 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002730 .procname = "gc_stale_time",
2731 .maxlen = sizeof(int),
2732 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08002733 .proc_handler = proc_dointvec_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002734 },
2735 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002736 .procname = "unres_qlen",
2737 .maxlen = sizeof(int),
2738 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08002739 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002740 },
2741 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002742 .procname = "proxy_qlen",
2743 .maxlen = sizeof(int),
2744 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08002745 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002746 },
2747 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002748 .procname = "anycast_delay",
2749 .maxlen = sizeof(int),
2750 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08002751 .proc_handler = proc_dointvec_userhz_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002752 },
2753 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002754 .procname = "proxy_delay",
2755 .maxlen = sizeof(int),
2756 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08002757 .proc_handler = proc_dointvec_userhz_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002758 },
2759 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002760 .procname = "locktime",
2761 .maxlen = sizeof(int),
2762 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08002763 .proc_handler = proc_dointvec_userhz_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002764 },
2765 {
Eric W. Biedermand12af672007-10-18 03:05:25 -07002766 .procname = "retrans_time_ms",
2767 .maxlen = sizeof(int),
2768 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08002769 .proc_handler = proc_dointvec_ms_jiffies,
Eric W. Biedermand12af672007-10-18 03:05:25 -07002770 },
2771 {
Eric W. Biedermand12af672007-10-18 03:05:25 -07002772 .procname = "base_reachable_time_ms",
2773 .maxlen = sizeof(int),
2774 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08002775 .proc_handler = proc_dointvec_ms_jiffies,
Eric W. Biedermand12af672007-10-18 03:05:25 -07002776 },
2777 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002778 .procname = "gc_interval",
2779 .maxlen = sizeof(int),
2780 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08002781 .proc_handler = proc_dointvec_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002782 },
2783 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002784 .procname = "gc_thresh1",
2785 .maxlen = sizeof(int),
2786 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08002787 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002788 },
2789 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002790 .procname = "gc_thresh2",
2791 .maxlen = sizeof(int),
2792 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08002793 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002794 },
2795 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002796 .procname = "gc_thresh3",
2797 .maxlen = sizeof(int),
2798 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08002799 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002800 },
Pavel Emelyanovc3bac5a2007-12-02 00:08:16 +11002801 {},
Linus Torvalds1da177e2005-04-16 15:20:36 -07002802 },
2803};
2804
2805int neigh_sysctl_register(struct net_device *dev, struct neigh_parms *p,
Eric W. Biederman54716e32010-02-14 03:27:03 +00002806 char *p_name, proc_handler *handler)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002807{
Pavel Emelyanov3c607bb2007-12-02 00:06:34 +11002808 struct neigh_sysctl_table *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002809 const char *dev_name_source = NULL;
Pavel Emelyanovc3bac5a2007-12-02 00:08:16 +11002810
2811#define NEIGH_CTL_PATH_ROOT 0
2812#define NEIGH_CTL_PATH_PROTO 1
2813#define NEIGH_CTL_PATH_NEIGH 2
2814#define NEIGH_CTL_PATH_DEV 3
2815
2816 struct ctl_path neigh_path[] = {
Eric W. Biedermanf8572d82009-11-05 13:32:03 -08002817 { .procname = "net", },
2818 { .procname = "proto", },
2819 { .procname = "neigh", },
2820 { .procname = "default", },
Pavel Emelyanovc3bac5a2007-12-02 00:08:16 +11002821 { },
2822 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002823
Pavel Emelyanov3c607bb2007-12-02 00:06:34 +11002824 t = kmemdup(&neigh_sysctl_template, sizeof(*t), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002825 if (!t)
Pavel Emelyanov3c607bb2007-12-02 00:06:34 +11002826 goto err;
2827
Linus Torvalds1da177e2005-04-16 15:20:36 -07002828 t->neigh_vars[0].data = &p->mcast_probes;
2829 t->neigh_vars[1].data = &p->ucast_probes;
2830 t->neigh_vars[2].data = &p->app_probes;
2831 t->neigh_vars[3].data = &p->retrans_time;
2832 t->neigh_vars[4].data = &p->base_reachable_time;
2833 t->neigh_vars[5].data = &p->delay_probe_time;
2834 t->neigh_vars[6].data = &p->gc_staletime;
2835 t->neigh_vars[7].data = &p->queue_len;
2836 t->neigh_vars[8].data = &p->proxy_qlen;
2837 t->neigh_vars[9].data = &p->anycast_delay;
2838 t->neigh_vars[10].data = &p->proxy_delay;
2839 t->neigh_vars[11].data = &p->locktime;
Eric W. Biedermand12af672007-10-18 03:05:25 -07002840 t->neigh_vars[12].data = &p->retrans_time;
2841 t->neigh_vars[13].data = &p->base_reachable_time;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002842
2843 if (dev) {
2844 dev_name_source = dev->name;
Eric W. Biedermand12af672007-10-18 03:05:25 -07002845 /* Terminate the table early */
2846 memset(&t->neigh_vars[14], 0, sizeof(t->neigh_vars[14]));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002847 } else {
Pavel Emelyanovc3bac5a2007-12-02 00:08:16 +11002848 dev_name_source = neigh_path[NEIGH_CTL_PATH_DEV].procname;
Eric W. Biedermand12af672007-10-18 03:05:25 -07002849 t->neigh_vars[14].data = (int *)(p + 1);
2850 t->neigh_vars[15].data = (int *)(p + 1) + 1;
2851 t->neigh_vars[16].data = (int *)(p + 1) + 2;
2852 t->neigh_vars[17].data = (int *)(p + 1) + 3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002853 }
2854
Linus Torvalds1da177e2005-04-16 15:20:36 -07002855
Eric W. Biedermanf8572d82009-11-05 13:32:03 -08002856 if (handler) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002857 /* RetransTime */
2858 t->neigh_vars[3].proc_handler = handler;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002859 t->neigh_vars[3].extra1 = dev;
2860 /* ReachableTime */
2861 t->neigh_vars[4].proc_handler = handler;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002862 t->neigh_vars[4].extra1 = dev;
2863 /* RetransTime (in milliseconds)*/
Eric W. Biedermand12af672007-10-18 03:05:25 -07002864 t->neigh_vars[12].proc_handler = handler;
Eric W. Biedermand12af672007-10-18 03:05:25 -07002865 t->neigh_vars[12].extra1 = dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002866 /* ReachableTime (in milliseconds) */
Eric W. Biedermand12af672007-10-18 03:05:25 -07002867 t->neigh_vars[13].proc_handler = handler;
Eric W. Biedermand12af672007-10-18 03:05:25 -07002868 t->neigh_vars[13].extra1 = dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002869 }
2870
Pavel Emelyanovc3bac5a2007-12-02 00:08:16 +11002871 t->dev_name = kstrdup(dev_name_source, GFP_KERNEL);
2872 if (!t->dev_name)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002873 goto free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002874
Pavel Emelyanovc3bac5a2007-12-02 00:08:16 +11002875 neigh_path[NEIGH_CTL_PATH_DEV].procname = t->dev_name;
Pavel Emelyanovc3bac5a2007-12-02 00:08:16 +11002876 neigh_path[NEIGH_CTL_PATH_PROTO].procname = p_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002877
Denis V. Lunev4ab438f2008-02-28 20:48:01 -08002878 t->sysctl_header =
YOSHIFUJI Hideaki57da52c2008-03-26 03:49:59 +09002879 register_net_sysctl_table(neigh_parms_net(p), neigh_path, t->neigh_vars);
Pavel Emelyanov3c607bb2007-12-02 00:06:34 +11002880 if (!t->sysctl_header)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002881 goto free_procname;
Pavel Emelyanov3c607bb2007-12-02 00:06:34 +11002882
Linus Torvalds1da177e2005-04-16 15:20:36 -07002883 p->sysctl_table = t;
2884 return 0;
2885
Pavel Emelyanov3c607bb2007-12-02 00:06:34 +11002886free_procname:
Pavel Emelyanovc3bac5a2007-12-02 00:08:16 +11002887 kfree(t->dev_name);
Pavel Emelyanov3c607bb2007-12-02 00:06:34 +11002888free:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002889 kfree(t);
Pavel Emelyanov3c607bb2007-12-02 00:06:34 +11002890err:
2891 return -ENOBUFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002892}
YOSHIFUJI Hideaki0a204502008-03-24 18:39:10 +09002893EXPORT_SYMBOL(neigh_sysctl_register);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002894
2895void neigh_sysctl_unregister(struct neigh_parms *p)
2896{
2897 if (p->sysctl_table) {
2898 struct neigh_sysctl_table *t = p->sysctl_table;
2899 p->sysctl_table = NULL;
2900 unregister_sysctl_table(t->sysctl_header);
Pavel Emelyanovc3bac5a2007-12-02 00:08:16 +11002901 kfree(t->dev_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002902 kfree(t);
2903 }
2904}
YOSHIFUJI Hideaki0a204502008-03-24 18:39:10 +09002905EXPORT_SYMBOL(neigh_sysctl_unregister);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002906
2907#endif /* CONFIG_SYSCTL */
2908
Thomas Grafc8822a42007-03-22 11:50:06 -07002909static int __init neigh_init(void)
2910{
Greg Rosec7ac8672011-06-10 01:27:09 +00002911 rtnl_register(PF_UNSPEC, RTM_NEWNEIGH, neigh_add, NULL, NULL);
2912 rtnl_register(PF_UNSPEC, RTM_DELNEIGH, neigh_delete, NULL, NULL);
2913 rtnl_register(PF_UNSPEC, RTM_GETNEIGH, NULL, neigh_dump_info, NULL);
Thomas Grafc8822a42007-03-22 11:50:06 -07002914
Greg Rosec7ac8672011-06-10 01:27:09 +00002915 rtnl_register(PF_UNSPEC, RTM_GETNEIGHTBL, NULL, neightbl_dump_info,
2916 NULL);
2917 rtnl_register(PF_UNSPEC, RTM_SETNEIGHTBL, neightbl_set, NULL, NULL);
Thomas Grafc8822a42007-03-22 11:50:06 -07002918
2919 return 0;
2920}
2921
2922subsys_initcall(neigh_init);
2923