1 // SPDX-License-Identifier: GPL-2.0-or-later
2 /*
3 * Generic address resolution entity
4 *
5 * Authors:
6 * Pedro Roque <roque@di.fc.ul.pt>
7 * Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
8 *
9 * Fixes:
10 * Vitaly E. Lavrov releasing NULL neighbor in neigh_add.
11 * Harald Welte Add neighbour cache statistics like rtstat
12 */
13
14 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
15
16 #include <linux/slab.h>
17 #include <linux/kmemleak.h>
18 #include <linux/types.h>
19 #include <linux/kernel.h>
20 #include <linux/module.h>
21 #include <linux/socket.h>
22 #include <linux/netdevice.h>
23 #include <linux/proc_fs.h>
24 #ifdef CONFIG_SYSCTL
25 #include <linux/sysctl.h>
26 #endif
27 #include <linux/times.h>
28 #include <net/net_namespace.h>
29 #include <net/neighbour.h>
30 #include <net/arp.h>
31 #include <net/dst.h>
32 #include <net/sock.h>
33 #include <net/netevent.h>
34 #include <net/netlink.h>
35 #include <linux/rtnetlink.h>
36 #include <linux/random.h>
37 #include <linux/string.h>
38 #include <linux/log2.h>
39 #include <linux/inetdevice.h>
40 #include <net/addrconf.h>
41
42 #include <trace/events/neigh.h>
43
44 #define DEBUG
45 #define NEIGH_DEBUG 1
46 #define neigh_dbg(level, fmt, ...) \
47 do { \
48 if (level <= NEIGH_DEBUG) \
49 pr_debug(fmt, ##__VA_ARGS__); \
50 } while (0)
51
52 #define PNEIGH_HASHMASK 0xF
53
54 static void neigh_timer_handler(struct timer_list *t);
55 static void __neigh_notify(struct neighbour *n, int type, int flags,
56 u32 pid);
57 static void neigh_update_notify(struct neighbour *neigh, u32 nlmsg_pid);
58 static int pneigh_ifdown_and_unlock(struct neigh_table *tbl,
59 struct net_device *dev);
60
61 #ifdef CONFIG_PROC_FS
62 static const struct seq_operations neigh_stat_seq_ops;
63 #endif
64
65 /*
66 Neighbour hash table buckets are protected with rwlock tbl->lock.
67
68 - All the scans/updates to hash buckets MUST be made under this lock.
69 - NOTHING clever should be made under this lock: no callbacks
70 to protocol backends, no attempts to send something to network.
71 It will result in deadlocks, if backend/driver wants to use neighbour
72 cache.
73 - If the entry requires some non-trivial actions, increase
74 its reference count and release table lock.
75
76 Neighbour entries are protected:
77 - with reference count.
78 - with rwlock neigh->lock
79
80 Reference count prevents destruction.
81
82 neigh->lock mainly serializes ll address data and its validity state.
83 However, the same lock is used to protect another entry fields:
84 - timer
85 - resolution queue
86
87 Again, nothing clever shall be made under neigh->lock,
88 the most complicated procedure, which we allow is dev->hard_header.
89 It is supposed, that dev->hard_header is simplistic and does
90 not make callbacks to neighbour tables.
91 */
92
neigh_blackhole(struct neighbour * neigh,struct sk_buff * skb)93 static int neigh_blackhole(struct neighbour *neigh, struct sk_buff *skb)
94 {
95 kfree_skb(skb);
96 return -ENETDOWN;
97 }
98
neigh_cleanup_and_release(struct neighbour * neigh)99 static void neigh_cleanup_and_release(struct neighbour *neigh)
100 {
101 trace_neigh_cleanup_and_release(neigh, 0);
102 __neigh_notify(neigh, RTM_DELNEIGH, 0, 0);
103 call_netevent_notifiers(NETEVENT_NEIGH_UPDATE, neigh);
104 neigh_release(neigh);
105 }
106
107 /*
108 * It is random distribution in the interval (1/2)*base...(3/2)*base.
109 * It corresponds to default IPv6 settings and is not overridable,
110 * because it is really reasonable choice.
111 */
112
neigh_rand_reach_time(unsigned long base)113 unsigned long neigh_rand_reach_time(unsigned long base)
114 {
115 return base ? (prandom_u32() % base) + (base >> 1) : 0;
116 }
117 EXPORT_SYMBOL(neigh_rand_reach_time);
118
neigh_mark_dead(struct neighbour * n)119 static void neigh_mark_dead(struct neighbour *n)
120 {
121 n->dead = 1;
122 if (!list_empty(&n->gc_list)) {
123 list_del_init(&n->gc_list);
124 atomic_dec(&n->tbl->gc_entries);
125 }
126 }
127
neigh_update_gc_list(struct neighbour * n)128 static void neigh_update_gc_list(struct neighbour *n)
129 {
130 bool on_gc_list, exempt_from_gc;
131
132 write_lock_bh(&n->tbl->lock);
133 write_lock(&n->lock);
134
135 if (n->dead)
136 goto out;
137
138 /* remove from the gc list if new state is permanent or if neighbor
139 * is externally learned; otherwise entry should be on the gc list
140 */
141 exempt_from_gc = n->nud_state & NUD_PERMANENT ||
142 n->flags & NTF_EXT_LEARNED;
143 on_gc_list = !list_empty(&n->gc_list);
144
145 if (exempt_from_gc && on_gc_list) {
146 list_del_init(&n->gc_list);
147 atomic_dec(&n->tbl->gc_entries);
148 } else if (!exempt_from_gc && !on_gc_list) {
149 /* add entries to the tail; cleaning removes from the front */
150 list_add_tail(&n->gc_list, &n->tbl->gc_list);
151 atomic_inc(&n->tbl->gc_entries);
152 }
153
154 out:
155 write_unlock(&n->lock);
156 write_unlock_bh(&n->tbl->lock);
157 }
158
neigh_update_ext_learned(struct neighbour * neigh,u32 flags,int * notify)159 static bool neigh_update_ext_learned(struct neighbour *neigh, u32 flags,
160 int *notify)
161 {
162 bool rc = false;
163 u8 ndm_flags;
164
165 if (!(flags & NEIGH_UPDATE_F_ADMIN))
166 return rc;
167
168 ndm_flags = (flags & NEIGH_UPDATE_F_EXT_LEARNED) ? NTF_EXT_LEARNED : 0;
169 if ((neigh->flags ^ ndm_flags) & NTF_EXT_LEARNED) {
170 if (ndm_flags & NTF_EXT_LEARNED)
171 neigh->flags |= NTF_EXT_LEARNED;
172 else
173 neigh->flags &= ~NTF_EXT_LEARNED;
174 rc = true;
175 *notify = 1;
176 }
177
178 return rc;
179 }
180
neigh_del(struct neighbour * n,struct neighbour __rcu ** np,struct neigh_table * tbl)181 static bool neigh_del(struct neighbour *n, struct neighbour __rcu **np,
182 struct neigh_table *tbl)
183 {
184 bool retval = false;
185
186 write_lock(&n->lock);
187 if (refcount_read(&n->refcnt) == 1) {
188 struct neighbour *neigh;
189
190 neigh = rcu_dereference_protected(n->next,
191 lockdep_is_held(&tbl->lock));
192 rcu_assign_pointer(*np, neigh);
193 neigh_mark_dead(n);
194 retval = true;
195 }
196 write_unlock(&n->lock);
197 if (retval)
198 neigh_cleanup_and_release(n);
199 return retval;
200 }
201
neigh_remove_one(struct neighbour * ndel,struct neigh_table * tbl)202 bool neigh_remove_one(struct neighbour *ndel, struct neigh_table *tbl)
203 {
204 struct neigh_hash_table *nht;
205 void *pkey = ndel->primary_key;
206 u32 hash_val;
207 struct neighbour *n;
208 struct neighbour __rcu **np;
209
210 nht = rcu_dereference_protected(tbl->nht,
211 lockdep_is_held(&tbl->lock));
212 hash_val = tbl->hash(pkey, ndel->dev, nht->hash_rnd);
213 hash_val = hash_val >> (32 - nht->hash_shift);
214
215 np = &nht->hash_buckets[hash_val];
216 while ((n = rcu_dereference_protected(*np,
217 lockdep_is_held(&tbl->lock)))) {
218 if (n == ndel)
219 return neigh_del(n, np, tbl);
220 np = &n->next;
221 }
222 return false;
223 }
224
neigh_forced_gc(struct neigh_table * tbl)225 static int neigh_forced_gc(struct neigh_table *tbl)
226 {
227 int max_clean = atomic_read(&tbl->gc_entries) - tbl->gc_thresh2;
228 unsigned long tref = jiffies - 5 * HZ;
229 struct neighbour *n, *tmp;
230 int shrunk = 0;
231
232 NEIGH_CACHE_STAT_INC(tbl, forced_gc_runs);
233
234 write_lock_bh(&tbl->lock);
235
236 list_for_each_entry_safe(n, tmp, &tbl->gc_list, gc_list) {
237 if (refcount_read(&n->refcnt) == 1) {
238 bool remove = false;
239
240 write_lock(&n->lock);
241 if ((n->nud_state == NUD_FAILED) ||
242 (n->nud_state == NUD_NOARP) ||
243 (tbl->is_multicast &&
244 tbl->is_multicast(n->primary_key)) ||
245 time_after(tref, n->updated))
246 remove = true;
247 write_unlock(&n->lock);
248
249 if (remove && neigh_remove_one(n, tbl))
250 shrunk++;
251 if (shrunk >= max_clean)
252 break;
253 }
254 }
255
256 tbl->last_flush = jiffies;
257
258 write_unlock_bh(&tbl->lock);
259
260 return shrunk;
261 }
262
neigh_add_timer(struct neighbour * n,unsigned long when)263 static void neigh_add_timer(struct neighbour *n, unsigned long when)
264 {
265 neigh_hold(n);
266 if (unlikely(mod_timer(&n->timer, when))) {
267 printk("NEIGH: BUG, double timer add, state is %x\n",
268 n->nud_state);
269 dump_stack();
270 }
271 }
272
neigh_del_timer(struct neighbour * n)273 static int neigh_del_timer(struct neighbour *n)
274 {
275 if ((n->nud_state & NUD_IN_TIMER) &&
276 del_timer(&n->timer)) {
277 neigh_release(n);
278 return 1;
279 }
280 return 0;
281 }
282
pneigh_queue_purge(struct sk_buff_head * list,struct net * net)283 static void pneigh_queue_purge(struct sk_buff_head *list, struct net *net)
284 {
285 struct sk_buff_head tmp;
286 unsigned long flags;
287 struct sk_buff *skb;
288
289 skb_queue_head_init(&tmp);
290 spin_lock_irqsave(&list->lock, flags);
291 skb = skb_peek(list);
292 while (skb != NULL) {
293 struct sk_buff *skb_next = skb_peek_next(skb, list);
294 if (net == NULL || net_eq(dev_net(skb->dev), net)) {
295 __skb_unlink(skb, list);
296 __skb_queue_tail(&tmp, skb);
297 }
298 skb = skb_next;
299 }
300 spin_unlock_irqrestore(&list->lock, flags);
301
302 while ((skb = __skb_dequeue(&tmp))) {
303 dev_put(skb->dev);
304 kfree_skb(skb);
305 }
306 }
307
neigh_flush_dev(struct neigh_table * tbl,struct net_device * dev,bool skip_perm)308 static void neigh_flush_dev(struct neigh_table *tbl, struct net_device *dev,
309 bool skip_perm)
310 {
311 int i;
312 struct neigh_hash_table *nht;
313
314 nht = rcu_dereference_protected(tbl->nht,
315 lockdep_is_held(&tbl->lock));
316
317 for (i = 0; i < (1 << nht->hash_shift); i++) {
318 struct neighbour *n;
319 struct neighbour __rcu **np = &nht->hash_buckets[i];
320
321 while ((n = rcu_dereference_protected(*np,
322 lockdep_is_held(&tbl->lock))) != NULL) {
323 if (dev && n->dev != dev) {
324 np = &n->next;
325 continue;
326 }
327 if (skip_perm && n->nud_state & NUD_PERMANENT) {
328 np = &n->next;
329 continue;
330 }
331 rcu_assign_pointer(*np,
332 rcu_dereference_protected(n->next,
333 lockdep_is_held(&tbl->lock)));
334 write_lock(&n->lock);
335 neigh_del_timer(n);
336 neigh_mark_dead(n);
337 if (refcount_read(&n->refcnt) != 1) {
338 /* The most unpleasant situation.
339 We must destroy neighbour entry,
340 but someone still uses it.
341
342 The destroy will be delayed until
343 the last user releases us, but
344 we must kill timers etc. and move
345 it to safe state.
346 */
347 __skb_queue_purge(&n->arp_queue);
348 n->arp_queue_len_bytes = 0;
349 n->output = neigh_blackhole;
350 if (n->nud_state & NUD_VALID)
351 n->nud_state = NUD_NOARP;
352 else
353 n->nud_state = NUD_NONE;
354 neigh_dbg(2, "neigh %p is stray\n", n);
355 }
356 write_unlock(&n->lock);
357 neigh_cleanup_and_release(n);
358 }
359 }
360 }
361
neigh_changeaddr(struct neigh_table * tbl,struct net_device * dev)362 void neigh_changeaddr(struct neigh_table *tbl, struct net_device *dev)
363 {
364 write_lock_bh(&tbl->lock);
365 neigh_flush_dev(tbl, dev, false);
366 write_unlock_bh(&tbl->lock);
367 }
368 EXPORT_SYMBOL(neigh_changeaddr);
369
__neigh_ifdown(struct neigh_table * tbl,struct net_device * dev,bool skip_perm)370 static int __neigh_ifdown(struct neigh_table *tbl, struct net_device *dev,
371 bool skip_perm)
372 {
373 write_lock_bh(&tbl->lock);
374 neigh_flush_dev(tbl, dev, skip_perm);
375 pneigh_ifdown_and_unlock(tbl, dev);
376 pneigh_queue_purge(&tbl->proxy_queue, dev ? dev_net(dev) : NULL);
377 if (skb_queue_empty_lockless(&tbl->proxy_queue))
378 del_timer_sync(&tbl->proxy_timer);
379 return 0;
380 }
381
neigh_carrier_down(struct neigh_table * tbl,struct net_device * dev)382 int neigh_carrier_down(struct neigh_table *tbl, struct net_device *dev)
383 {
384 __neigh_ifdown(tbl, dev, true);
385 return 0;
386 }
387 EXPORT_SYMBOL(neigh_carrier_down);
388
neigh_ifdown(struct neigh_table * tbl,struct net_device * dev)389 int neigh_ifdown(struct neigh_table *tbl, struct net_device *dev)
390 {
391 __neigh_ifdown(tbl, dev, false);
392 return 0;
393 }
394 EXPORT_SYMBOL(neigh_ifdown);
395
neigh_alloc(struct neigh_table * tbl,struct net_device * dev,u8 flags,bool exempt_from_gc)396 static struct neighbour *neigh_alloc(struct neigh_table *tbl,
397 struct net_device *dev,
398 u8 flags, bool exempt_from_gc)
399 {
400 struct neighbour *n = NULL;
401 unsigned long now = jiffies;
402 int entries;
403
404 if (exempt_from_gc)
405 goto do_alloc;
406
407 entries = atomic_inc_return(&tbl->gc_entries) - 1;
408 if (entries >= tbl->gc_thresh3 ||
409 (entries >= tbl->gc_thresh2 &&
410 time_after(now, tbl->last_flush + 5 * HZ))) {
411 if (!neigh_forced_gc(tbl) &&
412 entries >= tbl->gc_thresh3) {
413 net_info_ratelimited("%s: neighbor table overflow!\n",
414 tbl->id);
415 NEIGH_CACHE_STAT_INC(tbl, table_fulls);
416 goto out_entries;
417 }
418 }
419
420 do_alloc:
421 n = kzalloc(tbl->entry_size + dev->neigh_priv_len, GFP_ATOMIC);
422 if (!n)
423 goto out_entries;
424
425 __skb_queue_head_init(&n->arp_queue);
426 rwlock_init(&n->lock);
427 seqlock_init(&n->ha_lock);
428 n->updated = n->used = now;
429 n->nud_state = NUD_NONE;
430 n->output = neigh_blackhole;
431 n->flags = flags;
432 seqlock_init(&n->hh.hh_lock);
433 n->parms = neigh_parms_clone(&tbl->parms);
434 timer_setup(&n->timer, neigh_timer_handler, 0);
435
436 NEIGH_CACHE_STAT_INC(tbl, allocs);
437 n->tbl = tbl;
438 refcount_set(&n->refcnt, 1);
439 n->dead = 1;
440 INIT_LIST_HEAD(&n->gc_list);
441
442 atomic_inc(&tbl->entries);
443 out:
444 return n;
445
446 out_entries:
447 if (!exempt_from_gc)
448 atomic_dec(&tbl->gc_entries);
449 goto out;
450 }
451
neigh_get_hash_rnd(u32 * x)452 static void neigh_get_hash_rnd(u32 *x)
453 {
454 *x = get_random_u32() | 1;
455 }
456
neigh_hash_alloc(unsigned int shift)457 static struct neigh_hash_table *neigh_hash_alloc(unsigned int shift)
458 {
459 size_t size = (1 << shift) * sizeof(struct neighbour *);
460 struct neigh_hash_table *ret;
461 struct neighbour __rcu **buckets;
462 int i;
463
464 ret = kmalloc(sizeof(*ret), GFP_ATOMIC);
465 if (!ret)
466 return NULL;
467 if (size <= PAGE_SIZE) {
468 buckets = kzalloc(size, GFP_ATOMIC);
469 } else {
470 buckets = (struct neighbour __rcu **)
471 __get_free_pages(GFP_ATOMIC | __GFP_ZERO,
472 get_order(size));
473 kmemleak_alloc(buckets, size, 1, GFP_ATOMIC);
474 }
475 if (!buckets) {
476 kfree(ret);
477 return NULL;
478 }
479 ret->hash_buckets = buckets;
480 ret->hash_shift = shift;
481 for (i = 0; i < NEIGH_NUM_HASH_RND; i++)
482 neigh_get_hash_rnd(&ret->hash_rnd[i]);
483 return ret;
484 }
485
neigh_hash_free_rcu(struct rcu_head * head)486 static void neigh_hash_free_rcu(struct rcu_head *head)
487 {
488 struct neigh_hash_table *nht = container_of(head,
489 struct neigh_hash_table,
490 rcu);
491 size_t size = (1 << nht->hash_shift) * sizeof(struct neighbour *);
492 struct neighbour __rcu **buckets = nht->hash_buckets;
493
494 if (size <= PAGE_SIZE) {
495 kfree(buckets);
496 } else {
497 kmemleak_free(buckets);
498 free_pages((unsigned long)buckets, get_order(size));
499 }
500 kfree(nht);
501 }
502
neigh_hash_grow(struct neigh_table * tbl,unsigned long new_shift)503 static struct neigh_hash_table *neigh_hash_grow(struct neigh_table *tbl,
504 unsigned long new_shift)
505 {
506 unsigned int i, hash;
507 struct neigh_hash_table *new_nht, *old_nht;
508
509 NEIGH_CACHE_STAT_INC(tbl, hash_grows);
510
511 old_nht = rcu_dereference_protected(tbl->nht,
512 lockdep_is_held(&tbl->lock));
513 new_nht = neigh_hash_alloc(new_shift);
514 if (!new_nht)
515 return old_nht;
516
517 for (i = 0; i < (1 << old_nht->hash_shift); i++) {
518 struct neighbour *n, *next;
519
520 for (n = rcu_dereference_protected(old_nht->hash_buckets[i],
521 lockdep_is_held(&tbl->lock));
522 n != NULL;
523 n = next) {
524 hash = tbl->hash(n->primary_key, n->dev,
525 new_nht->hash_rnd);
526
527 hash >>= (32 - new_nht->hash_shift);
528 next = rcu_dereference_protected(n->next,
529 lockdep_is_held(&tbl->lock));
530
531 rcu_assign_pointer(n->next,
532 rcu_dereference_protected(
533 new_nht->hash_buckets[hash],
534 lockdep_is_held(&tbl->lock)));
535 rcu_assign_pointer(new_nht->hash_buckets[hash], n);
536 }
537 }
538
539 rcu_assign_pointer(tbl->nht, new_nht);
540 call_rcu(&old_nht->rcu, neigh_hash_free_rcu);
541 return new_nht;
542 }
543
neigh_lookup(struct neigh_table * tbl,const void * pkey,struct net_device * dev)544 struct neighbour *neigh_lookup(struct neigh_table *tbl, const void *pkey,
545 struct net_device *dev)
546 {
547 struct neighbour *n;
548
549 NEIGH_CACHE_STAT_INC(tbl, lookups);
550
551 rcu_read_lock_bh();
552 n = __neigh_lookup_noref(tbl, pkey, dev);
553 if (n) {
554 if (!refcount_inc_not_zero(&n->refcnt))
555 n = NULL;
556 NEIGH_CACHE_STAT_INC(tbl, hits);
557 }
558
559 rcu_read_unlock_bh();
560 return n;
561 }
562 EXPORT_SYMBOL(neigh_lookup);
563
neigh_lookup_nodev(struct neigh_table * tbl,struct net * net,const void * pkey)564 struct neighbour *neigh_lookup_nodev(struct neigh_table *tbl, struct net *net,
565 const void *pkey)
566 {
567 struct neighbour *n;
568 unsigned int key_len = tbl->key_len;
569 u32 hash_val;
570 struct neigh_hash_table *nht;
571
572 NEIGH_CACHE_STAT_INC(tbl, lookups);
573
574 rcu_read_lock_bh();
575 nht = rcu_dereference_bh(tbl->nht);
576 hash_val = tbl->hash(pkey, NULL, nht->hash_rnd) >> (32 - nht->hash_shift);
577
578 for (n = rcu_dereference_bh(nht->hash_buckets[hash_val]);
579 n != NULL;
580 n = rcu_dereference_bh(n->next)) {
581 if (!memcmp(n->primary_key, pkey, key_len) &&
582 net_eq(dev_net(n->dev), net)) {
583 if (!refcount_inc_not_zero(&n->refcnt))
584 n = NULL;
585 NEIGH_CACHE_STAT_INC(tbl, hits);
586 break;
587 }
588 }
589
590 rcu_read_unlock_bh();
591 return n;
592 }
593 EXPORT_SYMBOL(neigh_lookup_nodev);
594
595 static struct neighbour *
___neigh_create(struct neigh_table * tbl,const void * pkey,struct net_device * dev,u8 flags,bool exempt_from_gc,bool want_ref)596 ___neigh_create(struct neigh_table *tbl, const void *pkey,
597 struct net_device *dev, u8 flags,
598 bool exempt_from_gc, bool want_ref)
599 {
600 u32 hash_val, key_len = tbl->key_len;
601 struct neighbour *n1, *rc, *n;
602 struct neigh_hash_table *nht;
603 int error;
604
605 n = neigh_alloc(tbl, dev, flags, exempt_from_gc);
606 trace_neigh_create(tbl, dev, pkey, n, exempt_from_gc);
607 if (!n) {
608 rc = ERR_PTR(-ENOBUFS);
609 goto out;
610 }
611
612 memcpy(n->primary_key, pkey, key_len);
613 n->dev = dev;
614 dev_hold(dev);
615
616 /* Protocol specific setup. */
617 if (tbl->constructor && (error = tbl->constructor(n)) < 0) {
618 rc = ERR_PTR(error);
619 goto out_neigh_release;
620 }
621
622 if (dev->netdev_ops->ndo_neigh_construct) {
623 error = dev->netdev_ops->ndo_neigh_construct(dev, n);
624 if (error < 0) {
625 rc = ERR_PTR(error);
626 goto out_neigh_release;
627 }
628 }
629
630 /* Device specific setup. */
631 if (n->parms->neigh_setup &&
632 (error = n->parms->neigh_setup(n)) < 0) {
633 rc = ERR_PTR(error);
634 goto out_neigh_release;
635 }
636
637 n->confirmed = jiffies - (NEIGH_VAR(n->parms, BASE_REACHABLE_TIME) << 1);
638
639 write_lock_bh(&tbl->lock);
640 nht = rcu_dereference_protected(tbl->nht,
641 lockdep_is_held(&tbl->lock));
642
643 if (atomic_read(&tbl->entries) > (1 << nht->hash_shift))
644 nht = neigh_hash_grow(tbl, nht->hash_shift + 1);
645
646 hash_val = tbl->hash(n->primary_key, dev, nht->hash_rnd) >> (32 - nht->hash_shift);
647
648 if (n->parms->dead) {
649 rc = ERR_PTR(-EINVAL);
650 goto out_tbl_unlock;
651 }
652
653 for (n1 = rcu_dereference_protected(nht->hash_buckets[hash_val],
654 lockdep_is_held(&tbl->lock));
655 n1 != NULL;
656 n1 = rcu_dereference_protected(n1->next,
657 lockdep_is_held(&tbl->lock))) {
658 if (dev == n1->dev && !memcmp(n1->primary_key, n->primary_key, key_len)) {
659 if (want_ref)
660 neigh_hold(n1);
661 rc = n1;
662 goto out_tbl_unlock;
663 }
664 }
665
666 n->dead = 0;
667 if (!exempt_from_gc)
668 list_add_tail(&n->gc_list, &n->tbl->gc_list);
669
670 if (want_ref)
671 neigh_hold(n);
672 rcu_assign_pointer(n->next,
673 rcu_dereference_protected(nht->hash_buckets[hash_val],
674 lockdep_is_held(&tbl->lock)));
675 rcu_assign_pointer(nht->hash_buckets[hash_val], n);
676 write_unlock_bh(&tbl->lock);
677 neigh_dbg(2, "neigh %p is created\n", n);
678 rc = n;
679 out:
680 return rc;
681 out_tbl_unlock:
682 write_unlock_bh(&tbl->lock);
683 out_neigh_release:
684 if (!exempt_from_gc)
685 atomic_dec(&tbl->gc_entries);
686 neigh_release(n);
687 goto out;
688 }
689
__neigh_create(struct neigh_table * tbl,const void * pkey,struct net_device * dev,bool want_ref)690 struct neighbour *__neigh_create(struct neigh_table *tbl, const void *pkey,
691 struct net_device *dev, bool want_ref)
692 {
693 return ___neigh_create(tbl, pkey, dev, 0, false, want_ref);
694 }
695 EXPORT_SYMBOL(__neigh_create);
696
pneigh_hash(const void * pkey,unsigned int key_len)697 static u32 pneigh_hash(const void *pkey, unsigned int key_len)
698 {
699 u32 hash_val = *(u32 *)(pkey + key_len - 4);
700 hash_val ^= (hash_val >> 16);
701 hash_val ^= hash_val >> 8;
702 hash_val ^= hash_val >> 4;
703 hash_val &= PNEIGH_HASHMASK;
704 return hash_val;
705 }
706
__pneigh_lookup_1(struct pneigh_entry * n,struct net * net,const void * pkey,unsigned int key_len,struct net_device * dev)707 static struct pneigh_entry *__pneigh_lookup_1(struct pneigh_entry *n,
708 struct net *net,
709 const void *pkey,
710 unsigned int key_len,
711 struct net_device *dev)
712 {
713 while (n) {
714 if (!memcmp(n->key, pkey, key_len) &&
715 net_eq(pneigh_net(n), net) &&
716 (n->dev == dev || !n->dev))
717 return n;
718 n = n->next;
719 }
720 return NULL;
721 }
722
__pneigh_lookup(struct neigh_table * tbl,struct net * net,const void * pkey,struct net_device * dev)723 struct pneigh_entry *__pneigh_lookup(struct neigh_table *tbl,
724 struct net *net, const void *pkey, struct net_device *dev)
725 {
726 unsigned int key_len = tbl->key_len;
727 u32 hash_val = pneigh_hash(pkey, key_len);
728
729 return __pneigh_lookup_1(tbl->phash_buckets[hash_val],
730 net, pkey, key_len, dev);
731 }
732 EXPORT_SYMBOL_GPL(__pneigh_lookup);
733
pneigh_lookup(struct neigh_table * tbl,struct net * net,const void * pkey,struct net_device * dev,int creat)734 struct pneigh_entry * pneigh_lookup(struct neigh_table *tbl,
735 struct net *net, const void *pkey,
736 struct net_device *dev, int creat)
737 {
738 struct pneigh_entry *n;
739 unsigned int key_len = tbl->key_len;
740 u32 hash_val = pneigh_hash(pkey, key_len);
741
742 read_lock_bh(&tbl->lock);
743 n = __pneigh_lookup_1(tbl->phash_buckets[hash_val],
744 net, pkey, key_len, dev);
745 read_unlock_bh(&tbl->lock);
746
747 if (n || !creat)
748 goto out;
749
750 ASSERT_RTNL();
751
752 n = kzalloc(sizeof(*n) + key_len, GFP_KERNEL);
753 if (!n)
754 goto out;
755
756 write_pnet(&n->net, net);
757 memcpy(n->key, pkey, key_len);
758 n->dev = dev;
759 if (dev)
760 dev_hold(dev);
761
762 if (tbl->pconstructor && tbl->pconstructor(n)) {
763 if (dev)
764 dev_put(dev);
765 kfree(n);
766 n = NULL;
767 goto out;
768 }
769
770 write_lock_bh(&tbl->lock);
771 n->next = tbl->phash_buckets[hash_val];
772 tbl->phash_buckets[hash_val] = n;
773 write_unlock_bh(&tbl->lock);
774 out:
775 return n;
776 }
777 EXPORT_SYMBOL(pneigh_lookup);
778
779
pneigh_delete(struct neigh_table * tbl,struct net * net,const void * pkey,struct net_device * dev)780 int pneigh_delete(struct neigh_table *tbl, struct net *net, const void *pkey,
781 struct net_device *dev)
782 {
783 struct pneigh_entry *n, **np;
784 unsigned int key_len = tbl->key_len;
785 u32 hash_val = pneigh_hash(pkey, key_len);
786
787 write_lock_bh(&tbl->lock);
788 for (np = &tbl->phash_buckets[hash_val]; (n = *np) != NULL;
789 np = &n->next) {
790 if (!memcmp(n->key, pkey, key_len) && n->dev == dev &&
791 net_eq(pneigh_net(n), net)) {
792 *np = n->next;
793 write_unlock_bh(&tbl->lock);
794 if (tbl->pdestructor)
795 tbl->pdestructor(n);
796 if (n->dev)
797 dev_put(n->dev);
798 kfree(n);
799 return 0;
800 }
801 }
802 write_unlock_bh(&tbl->lock);
803 return -ENOENT;
804 }
805
pneigh_ifdown_and_unlock(struct neigh_table * tbl,struct net_device * dev)806 static int pneigh_ifdown_and_unlock(struct neigh_table *tbl,
807 struct net_device *dev)
808 {
809 struct pneigh_entry *n, **np, *freelist = NULL;
810 u32 h;
811
812 for (h = 0; h <= PNEIGH_HASHMASK; h++) {
813 np = &tbl->phash_buckets[h];
814 while ((n = *np) != NULL) {
815 if (!dev || n->dev == dev) {
816 *np = n->next;
817 n->next = freelist;
818 freelist = n;
819 continue;
820 }
821 np = &n->next;
822 }
823 }
824 write_unlock_bh(&tbl->lock);
825 while ((n = freelist)) {
826 freelist = n->next;
827 n->next = NULL;
828 if (tbl->pdestructor)
829 tbl->pdestructor(n);
830 if (n->dev)
831 dev_put(n->dev);
832 kfree(n);
833 }
834 return -ENOENT;
835 }
836
837 static void neigh_parms_destroy(struct neigh_parms *parms);
838
neigh_parms_put(struct neigh_parms * parms)839 static inline void neigh_parms_put(struct neigh_parms *parms)
840 {
841 if (refcount_dec_and_test(&parms->refcnt))
842 neigh_parms_destroy(parms);
843 }
844
845 /*
846 * neighbour must already be out of the table;
847 *
848 */
neigh_destroy(struct neighbour * neigh)849 void neigh_destroy(struct neighbour *neigh)
850 {
851 struct net_device *dev = neigh->dev;
852
853 NEIGH_CACHE_STAT_INC(neigh->tbl, destroys);
854
855 if (!neigh->dead) {
856 pr_warn("Destroying alive neighbour %p\n", neigh);
857 dump_stack();
858 return;
859 }
860
861 if (neigh_del_timer(neigh))
862 pr_warn("Impossible event\n");
863
864 write_lock_bh(&neigh->lock);
865 __skb_queue_purge(&neigh->arp_queue);
866 write_unlock_bh(&neigh->lock);
867 neigh->arp_queue_len_bytes = 0;
868
869 if (dev->netdev_ops->ndo_neigh_destroy)
870 dev->netdev_ops->ndo_neigh_destroy(dev, neigh);
871
872 dev_put(dev);
873 neigh_parms_put(neigh->parms);
874
875 neigh_dbg(2, "neigh %p is destroyed\n", neigh);
876
877 atomic_dec(&neigh->tbl->entries);
878 kfree_rcu(neigh, rcu);
879 }
880 EXPORT_SYMBOL(neigh_destroy);
881
882 /* Neighbour state is suspicious;
883 disable fast path.
884
885 Called with write_locked neigh.
886 */
neigh_suspect(struct neighbour * neigh)887 static void neigh_suspect(struct neighbour *neigh)
888 {
889 neigh_dbg(2, "neigh %p is suspected\n", neigh);
890
891 neigh->output = neigh->ops->output;
892 }
893
894 /* Neighbour state is OK;
895 enable fast path.
896
897 Called with write_locked neigh.
898 */
neigh_connect(struct neighbour * neigh)899 static void neigh_connect(struct neighbour *neigh)
900 {
901 neigh_dbg(2, "neigh %p is connected\n", neigh);
902
903 neigh->output = neigh->ops->connected_output;
904 }
905
neigh_periodic_work(struct work_struct * work)906 static void neigh_periodic_work(struct work_struct *work)
907 {
908 struct neigh_table *tbl = container_of(work, struct neigh_table, gc_work.work);
909 struct neighbour *n;
910 struct neighbour __rcu **np;
911 unsigned int i;
912 struct neigh_hash_table *nht;
913
914 NEIGH_CACHE_STAT_INC(tbl, periodic_gc_runs);
915
916 write_lock_bh(&tbl->lock);
917 nht = rcu_dereference_protected(tbl->nht,
918 lockdep_is_held(&tbl->lock));
919
920 /*
921 * periodically recompute ReachableTime from random function
922 */
923
924 if (time_after(jiffies, tbl->last_rand + 300 * HZ)) {
925 struct neigh_parms *p;
926 tbl->last_rand = jiffies;
927 list_for_each_entry(p, &tbl->parms_list, list)
928 p->reachable_time =
929 neigh_rand_reach_time(NEIGH_VAR(p, BASE_REACHABLE_TIME));
930 }
931
932 if (atomic_read(&tbl->entries) < tbl->gc_thresh1)
933 goto out;
934
935 for (i = 0 ; i < (1 << nht->hash_shift); i++) {
936 np = &nht->hash_buckets[i];
937
938 while ((n = rcu_dereference_protected(*np,
939 lockdep_is_held(&tbl->lock))) != NULL) {
940 unsigned int state;
941
942 write_lock(&n->lock);
943
944 state = n->nud_state;
945 if ((state & (NUD_PERMANENT | NUD_IN_TIMER)) ||
946 (n->flags & NTF_EXT_LEARNED)) {
947 write_unlock(&n->lock);
948 goto next_elt;
949 }
950
951 if (time_before(n->used, n->confirmed))
952 n->used = n->confirmed;
953
954 if (refcount_read(&n->refcnt) == 1 &&
955 (state == NUD_FAILED ||
956 time_after(jiffies, n->used + NEIGH_VAR(n->parms, GC_STALETIME)))) {
957 rcu_assign_pointer(*np,
958 rcu_dereference_protected(n->next,
959 lockdep_is_held(&tbl->lock)));
960 neigh_mark_dead(n);
961 write_unlock(&n->lock);
962 neigh_cleanup_and_release(n);
963 continue;
964 }
965 write_unlock(&n->lock);
966
967 next_elt:
968 np = &n->next;
969 }
970 /*
971 * It's fine to release lock here, even if hash table
972 * grows while we are preempted.
973 */
974 write_unlock_bh(&tbl->lock);
975 cond_resched();
976 write_lock_bh(&tbl->lock);
977 nht = rcu_dereference_protected(tbl->nht,
978 lockdep_is_held(&tbl->lock));
979 }
980 out:
981 /* Cycle through all hash buckets every BASE_REACHABLE_TIME/2 ticks.
982 * ARP entry timeouts range from 1/2 BASE_REACHABLE_TIME to 3/2
983 * BASE_REACHABLE_TIME.
984 */
985 queue_delayed_work(system_power_efficient_wq, &tbl->gc_work,
986 NEIGH_VAR(&tbl->parms, BASE_REACHABLE_TIME) >> 1);
987 write_unlock_bh(&tbl->lock);
988 }
989
neigh_max_probes(struct neighbour * n)990 static __inline__ int neigh_max_probes(struct neighbour *n)
991 {
992 struct neigh_parms *p = n->parms;
993 return NEIGH_VAR(p, UCAST_PROBES) + NEIGH_VAR(p, APP_PROBES) +
994 (n->nud_state & NUD_PROBE ? NEIGH_VAR(p, MCAST_REPROBES) :
995 NEIGH_VAR(p, MCAST_PROBES));
996 }
997
neigh_invalidate(struct neighbour * neigh)998 static void neigh_invalidate(struct neighbour *neigh)
999 __releases(neigh->lock)
1000 __acquires(neigh->lock)
1001 {
1002 struct sk_buff *skb;
1003
1004 NEIGH_CACHE_STAT_INC(neigh->tbl, res_failed);
1005 neigh_dbg(2, "neigh %p is failed\n", neigh);
1006 neigh->updated = jiffies;
1007
1008 /* It is very thin place. report_unreachable is very complicated
1009 routine. Particularly, it can hit the same neighbour entry!
1010
1011 So that, we try to be accurate and avoid dead loop. --ANK
1012 */
1013 while (neigh->nud_state == NUD_FAILED &&
1014 (skb = __skb_dequeue(&neigh->arp_queue)) != NULL) {
1015 write_unlock(&neigh->lock);
1016 neigh->ops->error_report(neigh, skb);
1017 write_lock(&neigh->lock);
1018 }
1019 __skb_queue_purge(&neigh->arp_queue);
1020 neigh->arp_queue_len_bytes = 0;
1021 }
1022
neigh_probe(struct neighbour * neigh)1023 static void neigh_probe(struct neighbour *neigh)
1024 __releases(neigh->lock)
1025 {
1026 struct sk_buff *skb = skb_peek_tail(&neigh->arp_queue);
1027 /* keep skb alive even if arp_queue overflows */
1028 if (skb)
1029 skb = skb_clone(skb, GFP_ATOMIC);
1030 write_unlock(&neigh->lock);
1031 if (neigh->ops->solicit)
1032 neigh->ops->solicit(neigh, skb);
1033 atomic_inc(&neigh->probes);
1034 consume_skb(skb);
1035 }
1036
1037 /* Called when a timer expires for a neighbour entry. */
1038
neigh_timer_handler(struct timer_list * t)1039 static void neigh_timer_handler(struct timer_list *t)
1040 {
1041 unsigned long now, next;
1042 struct neighbour *neigh = from_timer(neigh, t, timer);
1043 unsigned int state;
1044 int notify = 0;
1045
1046 write_lock(&neigh->lock);
1047
1048 state = neigh->nud_state;
1049 now = jiffies;
1050 next = now + HZ;
1051
1052 if (!(state & NUD_IN_TIMER))
1053 goto out;
1054
1055 if (state & NUD_REACHABLE) {
1056 if (time_before_eq(now,
1057 neigh->confirmed + neigh->parms->reachable_time)) {
1058 neigh_dbg(2, "neigh %p is still alive\n", neigh);
1059 next = neigh->confirmed + neigh->parms->reachable_time;
1060 } else if (time_before_eq(now,
1061 neigh->used +
1062 NEIGH_VAR(neigh->parms, DELAY_PROBE_TIME))) {
1063 neigh_dbg(2, "neigh %p is delayed\n", neigh);
1064 neigh->nud_state = NUD_DELAY;
1065 neigh->updated = jiffies;
1066 neigh_suspect(neigh);
1067 next = now + NEIGH_VAR(neigh->parms, DELAY_PROBE_TIME);
1068 } else {
1069 neigh_dbg(2, "neigh %p is suspected\n", neigh);
1070 neigh->nud_state = NUD_STALE;
1071 neigh->updated = jiffies;
1072 neigh_suspect(neigh);
1073 notify = 1;
1074 }
1075 } else if (state & NUD_DELAY) {
1076 if (time_before_eq(now,
1077 neigh->confirmed +
1078 NEIGH_VAR(neigh->parms, DELAY_PROBE_TIME))) {
1079 neigh_dbg(2, "neigh %p is now reachable\n", neigh);
1080 neigh->nud_state = NUD_REACHABLE;
1081 neigh->updated = jiffies;
1082 neigh_connect(neigh);
1083 notify = 1;
1084 next = neigh->confirmed + neigh->parms->reachable_time;
1085 } else {
1086 neigh_dbg(2, "neigh %p is probed\n", neigh);
1087 neigh->nud_state = NUD_PROBE;
1088 neigh->updated = jiffies;
1089 atomic_set(&neigh->probes, 0);
1090 notify = 1;
1091 next = now + max(NEIGH_VAR(neigh->parms, RETRANS_TIME),
1092 HZ/100);
1093 }
1094 } else {
1095 /* NUD_PROBE|NUD_INCOMPLETE */
1096 next = now + max(NEIGH_VAR(neigh->parms, RETRANS_TIME), HZ/100);
1097 }
1098
1099 if ((neigh->nud_state & (NUD_INCOMPLETE | NUD_PROBE)) &&
1100 atomic_read(&neigh->probes) >= neigh_max_probes(neigh)) {
1101 neigh->nud_state = NUD_FAILED;
1102 notify = 1;
1103 neigh_invalidate(neigh);
1104 goto out;
1105 }
1106
1107 if (neigh->nud_state & NUD_IN_TIMER) {
1108 if (time_before(next, jiffies + HZ/100))
1109 next = jiffies + HZ/100;
1110 if (!mod_timer(&neigh->timer, next))
1111 neigh_hold(neigh);
1112 }
1113 if (neigh->nud_state & (NUD_INCOMPLETE | NUD_PROBE)) {
1114 neigh_probe(neigh);
1115 } else {
1116 out:
1117 write_unlock(&neigh->lock);
1118 }
1119
1120 if (notify)
1121 neigh_update_notify(neigh, 0);
1122
1123 trace_neigh_timer_handler(neigh, 0);
1124
1125 neigh_release(neigh);
1126 }
1127
__neigh_event_send(struct neighbour * neigh,struct sk_buff * skb)1128 int __neigh_event_send(struct neighbour *neigh, struct sk_buff *skb)
1129 {
1130 int rc;
1131 bool immediate_probe = false;
1132
1133 write_lock_bh(&neigh->lock);
1134
1135 rc = 0;
1136 if (neigh->nud_state & (NUD_CONNECTED | NUD_DELAY | NUD_PROBE))
1137 goto out_unlock_bh;
1138 if (neigh->dead)
1139 goto out_dead;
1140
1141 if (!(neigh->nud_state & (NUD_STALE | NUD_INCOMPLETE))) {
1142 if (NEIGH_VAR(neigh->parms, MCAST_PROBES) +
1143 NEIGH_VAR(neigh->parms, APP_PROBES)) {
1144 unsigned long next, now = jiffies;
1145
1146 atomic_set(&neigh->probes,
1147 NEIGH_VAR(neigh->parms, UCAST_PROBES));
1148 neigh_del_timer(neigh);
1149 neigh->nud_state = NUD_INCOMPLETE;
1150 neigh->updated = now;
1151 next = now + max(NEIGH_VAR(neigh->parms, RETRANS_TIME),
1152 HZ/100);
1153 neigh_add_timer(neigh, next);
1154 immediate_probe = true;
1155 } else {
1156 neigh->nud_state = NUD_FAILED;
1157 neigh->updated = jiffies;
1158 write_unlock_bh(&neigh->lock);
1159
1160 kfree_skb(skb);
1161 return 1;
1162 }
1163 } else if (neigh->nud_state & NUD_STALE) {
1164 neigh_dbg(2, "neigh %p is delayed\n", neigh);
1165 neigh_del_timer(neigh);
1166 neigh->nud_state = NUD_DELAY;
1167 neigh->updated = jiffies;
1168 neigh_add_timer(neigh, jiffies +
1169 NEIGH_VAR(neigh->parms, DELAY_PROBE_TIME));
1170 }
1171
1172 if (neigh->nud_state == NUD_INCOMPLETE) {
1173 if (skb) {
1174 while (neigh->arp_queue_len_bytes + skb->truesize >
1175 NEIGH_VAR(neigh->parms, QUEUE_LEN_BYTES)) {
1176 struct sk_buff *buff;
1177
1178 buff = __skb_dequeue(&neigh->arp_queue);
1179 if (!buff)
1180 break;
1181 neigh->arp_queue_len_bytes -= buff->truesize;
1182 kfree_skb(buff);
1183 NEIGH_CACHE_STAT_INC(neigh->tbl, unres_discards);
1184 }
1185 skb_dst_force(skb);
1186 __skb_queue_tail(&neigh->arp_queue, skb);
1187 neigh->arp_queue_len_bytes += skb->truesize;
1188 }
1189 rc = 1;
1190 }
1191 out_unlock_bh:
1192 if (immediate_probe)
1193 neigh_probe(neigh);
1194 else
1195 write_unlock(&neigh->lock);
1196 local_bh_enable();
1197 trace_neigh_event_send_done(neigh, rc);
1198 return rc;
1199
1200 out_dead:
1201 if (neigh->nud_state & NUD_STALE)
1202 goto out_unlock_bh;
1203 write_unlock_bh(&neigh->lock);
1204 kfree_skb(skb);
1205 trace_neigh_event_send_dead(neigh, 1);
1206 return 1;
1207 }
1208 EXPORT_SYMBOL(__neigh_event_send);
1209
neigh_update_hhs(struct neighbour * neigh)1210 static void neigh_update_hhs(struct neighbour *neigh)
1211 {
1212 struct hh_cache *hh;
1213 void (*update)(struct hh_cache*, const struct net_device*, const unsigned char *)
1214 = NULL;
1215
1216 if (neigh->dev->header_ops)
1217 update = neigh->dev->header_ops->cache_update;
1218
1219 if (update) {
1220 hh = &neigh->hh;
1221 if (READ_ONCE(hh->hh_len)) {
1222 write_seqlock_bh(&hh->hh_lock);
1223 update(hh, neigh->dev, neigh->ha);
1224 write_sequnlock_bh(&hh->hh_lock);
1225 }
1226 }
1227 }
1228
1229
1230
1231 /* Generic update routine.
1232 -- lladdr is new lladdr or NULL, if it is not supplied.
1233 -- new is new state.
1234 -- flags
1235 NEIGH_UPDATE_F_OVERRIDE allows to override existing lladdr,
1236 if it is different.
1237 NEIGH_UPDATE_F_WEAK_OVERRIDE will suspect existing "connected"
1238 lladdr instead of overriding it
1239 if it is different.
1240 NEIGH_UPDATE_F_ADMIN means that the change is administrative.
1241 NEIGH_UPDATE_F_USE means that the entry is user triggered.
1242 NEIGH_UPDATE_F_OVERRIDE_ISROUTER allows to override existing
1243 NTF_ROUTER flag.
1244 NEIGH_UPDATE_F_ISROUTER indicates if the neighbour is known as
1245 a router.
1246
1247 Caller MUST hold reference count on the entry.
1248 */
1249
__neigh_update(struct neighbour * neigh,const u8 * lladdr,u8 new,u32 flags,u32 nlmsg_pid,struct netlink_ext_ack * extack)1250 static int __neigh_update(struct neighbour *neigh, const u8 *lladdr,
1251 u8 new, u32 flags, u32 nlmsg_pid,
1252 struct netlink_ext_ack *extack)
1253 {
1254 bool ext_learn_change = false;
1255 u8 old;
1256 int err;
1257 int notify = 0;
1258 struct net_device *dev;
1259 int update_isrouter = 0;
1260
1261 trace_neigh_update(neigh, lladdr, new, flags, nlmsg_pid);
1262
1263 write_lock_bh(&neigh->lock);
1264
1265 dev = neigh->dev;
1266 old = neigh->nud_state;
1267 err = -EPERM;
1268
1269 if (neigh->dead) {
1270 NL_SET_ERR_MSG(extack, "Neighbor entry is now dead");
1271 new = old;
1272 goto out;
1273 }
1274 if (!(flags & NEIGH_UPDATE_F_ADMIN) &&
1275 (old & (NUD_NOARP | NUD_PERMANENT)))
1276 goto out;
1277
1278 ext_learn_change = neigh_update_ext_learned(neigh, flags, ¬ify);
1279 if (flags & NEIGH_UPDATE_F_USE) {
1280 new = old & ~NUD_PERMANENT;
1281 neigh->nud_state = new;
1282 err = 0;
1283 goto out;
1284 }
1285
1286 if (!(new & NUD_VALID)) {
1287 neigh_del_timer(neigh);
1288 if (old & NUD_CONNECTED)
1289 neigh_suspect(neigh);
1290 neigh->nud_state = new;
1291 err = 0;
1292 notify = old & NUD_VALID;
1293 if ((old & (NUD_INCOMPLETE | NUD_PROBE)) &&
1294 (new & NUD_FAILED)) {
1295 neigh_invalidate(neigh);
1296 notify = 1;
1297 }
1298 goto out;
1299 }
1300
1301 /* Compare new lladdr with cached one */
1302 if (!dev->addr_len) {
1303 /* First case: device needs no address. */
1304 lladdr = neigh->ha;
1305 } else if (lladdr) {
1306 /* The second case: if something is already cached
1307 and a new address is proposed:
1308 - compare new & old
1309 - if they are different, check override flag
1310 */
1311 if ((old & NUD_VALID) &&
1312 !memcmp(lladdr, neigh->ha, dev->addr_len))
1313 lladdr = neigh->ha;
1314 } else {
1315 /* No address is supplied; if we know something,
1316 use it, otherwise discard the request.
1317 */
1318 err = -EINVAL;
1319 if (!(old & NUD_VALID)) {
1320 NL_SET_ERR_MSG(extack, "No link layer address given");
1321 goto out;
1322 }
1323 lladdr = neigh->ha;
1324 }
1325
1326 /* Update confirmed timestamp for neighbour entry after we
1327 * received ARP packet even if it doesn't change IP to MAC binding.
1328 */
1329 if (new & NUD_CONNECTED)
1330 neigh->confirmed = jiffies;
1331
1332 /* If entry was valid and address is not changed,
1333 do not change entry state, if new one is STALE.
1334 */
1335 err = 0;
1336 update_isrouter = flags & NEIGH_UPDATE_F_OVERRIDE_ISROUTER;
1337 if (old & NUD_VALID) {
1338 if (lladdr != neigh->ha && !(flags & NEIGH_UPDATE_F_OVERRIDE)) {
1339 update_isrouter = 0;
1340 if ((flags & NEIGH_UPDATE_F_WEAK_OVERRIDE) &&
1341 (old & NUD_CONNECTED)) {
1342 lladdr = neigh->ha;
1343 new = NUD_STALE;
1344 } else
1345 goto out;
1346 } else {
1347 if (lladdr == neigh->ha && new == NUD_STALE &&
1348 !(flags & NEIGH_UPDATE_F_ADMIN))
1349 new = old;
1350 }
1351 }
1352
1353 /* Update timestamp only once we know we will make a change to the
1354 * neighbour entry. Otherwise we risk to move the locktime window with
1355 * noop updates and ignore relevant ARP updates.
1356 */
1357 if (new != old || lladdr != neigh->ha)
1358 neigh->updated = jiffies;
1359
1360 if (new != old) {
1361 neigh_del_timer(neigh);
1362 if (new & NUD_PROBE)
1363 atomic_set(&neigh->probes, 0);
1364 if (new & NUD_IN_TIMER)
1365 neigh_add_timer(neigh, (jiffies +
1366 ((new & NUD_REACHABLE) ?
1367 neigh->parms->reachable_time :
1368 0)));
1369 neigh->nud_state = new;
1370 notify = 1;
1371 }
1372
1373 if (lladdr != neigh->ha) {
1374 write_seqlock(&neigh->ha_lock);
1375 memcpy(&neigh->ha, lladdr, dev->addr_len);
1376 write_sequnlock(&neigh->ha_lock);
1377 neigh_update_hhs(neigh);
1378 if (!(new & NUD_CONNECTED))
1379 neigh->confirmed = jiffies -
1380 (NEIGH_VAR(neigh->parms, BASE_REACHABLE_TIME) << 1);
1381 notify = 1;
1382 }
1383 if (new == old)
1384 goto out;
1385 if (new & NUD_CONNECTED)
1386 neigh_connect(neigh);
1387 else
1388 neigh_suspect(neigh);
1389 if (!(old & NUD_VALID)) {
1390 struct sk_buff *skb;
1391
1392 /* Again: avoid dead loop if something went wrong */
1393
1394 while (neigh->nud_state & NUD_VALID &&
1395 (skb = __skb_dequeue(&neigh->arp_queue)) != NULL) {
1396 struct dst_entry *dst = skb_dst(skb);
1397 struct neighbour *n2, *n1 = neigh;
1398 write_unlock_bh(&neigh->lock);
1399
1400 rcu_read_lock();
1401
1402 /* Why not just use 'neigh' as-is? The problem is that
1403 * things such as shaper, eql, and sch_teql can end up
1404 * using alternative, different, neigh objects to output
1405 * the packet in the output path. So what we need to do
1406 * here is re-lookup the top-level neigh in the path so
1407 * we can reinject the packet there.
1408 */
1409 n2 = NULL;
1410 if (dst && dst->obsolete != DST_OBSOLETE_DEAD) {
1411 n2 = dst_neigh_lookup_skb(dst, skb);
1412 if (n2)
1413 n1 = n2;
1414 }
1415 n1->output(n1, skb);
1416 if (n2)
1417 neigh_release(n2);
1418 rcu_read_unlock();
1419
1420 write_lock_bh(&neigh->lock);
1421 }
1422 __skb_queue_purge(&neigh->arp_queue);
1423 neigh->arp_queue_len_bytes = 0;
1424 }
1425 out:
1426 if (update_isrouter)
1427 neigh_update_is_router(neigh, flags, ¬ify);
1428 write_unlock_bh(&neigh->lock);
1429
1430 if (((new ^ old) & NUD_PERMANENT) || ext_learn_change)
1431 neigh_update_gc_list(neigh);
1432
1433 if (notify)
1434 neigh_update_notify(neigh, nlmsg_pid);
1435
1436 trace_neigh_update_done(neigh, err);
1437
1438 return err;
1439 }
1440
neigh_update(struct neighbour * neigh,const u8 * lladdr,u8 new,u32 flags,u32 nlmsg_pid)1441 int neigh_update(struct neighbour *neigh, const u8 *lladdr, u8 new,
1442 u32 flags, u32 nlmsg_pid)
1443 {
1444 return __neigh_update(neigh, lladdr, new, flags, nlmsg_pid, NULL);
1445 }
1446 EXPORT_SYMBOL(neigh_update);
1447
1448 /* Update the neigh to listen temporarily for probe responses, even if it is
1449 * in a NUD_FAILED state. The caller has to hold neigh->lock for writing.
1450 */
__neigh_set_probe_once(struct neighbour * neigh)1451 void __neigh_set_probe_once(struct neighbour *neigh)
1452 {
1453 if (neigh->dead)
1454 return;
1455 neigh->updated = jiffies;
1456 if (!(neigh->nud_state & NUD_FAILED))
1457 return;
1458 neigh->nud_state = NUD_INCOMPLETE;
1459 atomic_set(&neigh->probes, neigh_max_probes(neigh));
1460 neigh_add_timer(neigh,
1461 jiffies + max(NEIGH_VAR(neigh->parms, RETRANS_TIME),
1462 HZ/100));
1463 }
1464 EXPORT_SYMBOL(__neigh_set_probe_once);
1465
neigh_event_ns(struct neigh_table * tbl,u8 * lladdr,void * saddr,struct net_device * dev)1466 struct neighbour *neigh_event_ns(struct neigh_table *tbl,
1467 u8 *lladdr, void *saddr,
1468 struct net_device *dev)
1469 {
1470 struct neighbour *neigh = __neigh_lookup(tbl, saddr, dev,
1471 lladdr || !dev->addr_len);
1472 if (neigh)
1473 neigh_update(neigh, lladdr, NUD_STALE,
1474 NEIGH_UPDATE_F_OVERRIDE, 0);
1475 return neigh;
1476 }
1477 EXPORT_SYMBOL(neigh_event_ns);
1478
1479 /* called with read_lock_bh(&n->lock); */
neigh_hh_init(struct neighbour * n)1480 static void neigh_hh_init(struct neighbour *n)
1481 {
1482 struct net_device *dev = n->dev;
1483 __be16 prot = n->tbl->protocol;
1484 struct hh_cache *hh = &n->hh;
1485
1486 write_lock_bh(&n->lock);
1487
1488 /* Only one thread can come in here and initialize the
1489 * hh_cache entry.
1490 */
1491 if (!hh->hh_len)
1492 dev->header_ops->cache(n, hh, prot);
1493
1494 write_unlock_bh(&n->lock);
1495 }
1496
1497 /* Slow and careful. */
1498
neigh_resolve_output(struct neighbour * neigh,struct sk_buff * skb)1499 int neigh_resolve_output(struct neighbour *neigh, struct sk_buff *skb)
1500 {
1501 int rc = 0;
1502
1503 if (!neigh_event_send(neigh, skb)) {
1504 int err;
1505 struct net_device *dev = neigh->dev;
1506 unsigned int seq;
1507
1508 if (dev->header_ops->cache && !READ_ONCE(neigh->hh.hh_len))
1509 neigh_hh_init(neigh);
1510
1511 do {
1512 __skb_pull(skb, skb_network_offset(skb));
1513 seq = read_seqbegin(&neigh->ha_lock);
1514 err = dev_hard_header(skb, dev, ntohs(skb->protocol),
1515 neigh->ha, NULL, skb->len);
1516 } while (read_seqretry(&neigh->ha_lock, seq));
1517
1518 if (err >= 0)
1519 rc = dev_queue_xmit(skb);
1520 else
1521 goto out_kfree_skb;
1522 }
1523 out:
1524 return rc;
1525 out_kfree_skb:
1526 rc = -EINVAL;
1527 kfree_skb(skb);
1528 goto out;
1529 }
1530 EXPORT_SYMBOL(neigh_resolve_output);
1531
1532 /* As fast as possible without hh cache */
1533
neigh_connected_output(struct neighbour * neigh,struct sk_buff * skb)1534 int neigh_connected_output(struct neighbour *neigh, struct sk_buff *skb)
1535 {
1536 struct net_device *dev = neigh->dev;
1537 unsigned int seq;
1538 int err;
1539
1540 do {
1541 __skb_pull(skb, skb_network_offset(skb));
1542 seq = read_seqbegin(&neigh->ha_lock);
1543 err = dev_hard_header(skb, dev, ntohs(skb->protocol),
1544 neigh->ha, NULL, skb->len);
1545 } while (read_seqretry(&neigh->ha_lock, seq));
1546
1547 if (err >= 0)
1548 err = dev_queue_xmit(skb);
1549 else {
1550 err = -EINVAL;
1551 kfree_skb(skb);
1552 }
1553 return err;
1554 }
1555 EXPORT_SYMBOL(neigh_connected_output);
1556
neigh_direct_output(struct neighbour * neigh,struct sk_buff * skb)1557 int neigh_direct_output(struct neighbour *neigh, struct sk_buff *skb)
1558 {
1559 return dev_queue_xmit(skb);
1560 }
1561 EXPORT_SYMBOL(neigh_direct_output);
1562
neigh_proxy_process(struct timer_list * t)1563 static void neigh_proxy_process(struct timer_list *t)
1564 {
1565 struct neigh_table *tbl = from_timer(tbl, t, proxy_timer);
1566 long sched_next = 0;
1567 unsigned long now = jiffies;
1568 struct sk_buff *skb, *n;
1569
1570 spin_lock(&tbl->proxy_queue.lock);
1571
1572 skb_queue_walk_safe(&tbl->proxy_queue, skb, n) {
1573 long tdif = NEIGH_CB(skb)->sched_next - now;
1574
1575 if (tdif <= 0) {
1576 struct net_device *dev = skb->dev;
1577
1578 __skb_unlink(skb, &tbl->proxy_queue);
1579 if (tbl->proxy_redo && netif_running(dev)) {
1580 rcu_read_lock();
1581 tbl->proxy_redo(skb);
1582 rcu_read_unlock();
1583 } else {
1584 kfree_skb(skb);
1585 }
1586
1587 dev_put(dev);
1588 } else if (!sched_next || tdif < sched_next)
1589 sched_next = tdif;
1590 }
1591 del_timer(&tbl->proxy_timer);
1592 if (sched_next)
1593 mod_timer(&tbl->proxy_timer, jiffies + sched_next);
1594 spin_unlock(&tbl->proxy_queue.lock);
1595 }
1596
pneigh_enqueue(struct neigh_table * tbl,struct neigh_parms * p,struct sk_buff * skb)1597 void pneigh_enqueue(struct neigh_table *tbl, struct neigh_parms *p,
1598 struct sk_buff *skb)
1599 {
1600 unsigned long now = jiffies;
1601
1602 unsigned long sched_next = now + (prandom_u32() %
1603 NEIGH_VAR(p, PROXY_DELAY));
1604
1605 if (tbl->proxy_queue.qlen > NEIGH_VAR(p, PROXY_QLEN)) {
1606 kfree_skb(skb);
1607 return;
1608 }
1609
1610 NEIGH_CB(skb)->sched_next = sched_next;
1611 NEIGH_CB(skb)->flags |= LOCALLY_ENQUEUED;
1612
1613 spin_lock(&tbl->proxy_queue.lock);
1614 if (del_timer(&tbl->proxy_timer)) {
1615 if (time_before(tbl->proxy_timer.expires, sched_next))
1616 sched_next = tbl->proxy_timer.expires;
1617 }
1618 skb_dst_drop(skb);
1619 dev_hold(skb->dev);
1620 __skb_queue_tail(&tbl->proxy_queue, skb);
1621 mod_timer(&tbl->proxy_timer, sched_next);
1622 spin_unlock(&tbl->proxy_queue.lock);
1623 }
1624 EXPORT_SYMBOL(pneigh_enqueue);
1625
lookup_neigh_parms(struct neigh_table * tbl,struct net * net,int ifindex)1626 static inline struct neigh_parms *lookup_neigh_parms(struct neigh_table *tbl,
1627 struct net *net, int ifindex)
1628 {
1629 struct neigh_parms *p;
1630
1631 list_for_each_entry(p, &tbl->parms_list, list) {
1632 if ((p->dev && p->dev->ifindex == ifindex && net_eq(neigh_parms_net(p), net)) ||
1633 (!p->dev && !ifindex && net_eq(net, &init_net)))
1634 return p;
1635 }
1636
1637 return NULL;
1638 }
1639
neigh_parms_alloc(struct net_device * dev,struct neigh_table * tbl)1640 struct neigh_parms *neigh_parms_alloc(struct net_device *dev,
1641 struct neigh_table *tbl)
1642 {
1643 struct neigh_parms *p;
1644 struct net *net = dev_net(dev);
1645 const struct net_device_ops *ops = dev->netdev_ops;
1646
1647 p = kmemdup(&tbl->parms, sizeof(*p), GFP_KERNEL);
1648 if (p) {
1649 p->tbl = tbl;
1650 refcount_set(&p->refcnt, 1);
1651 p->reachable_time =
1652 neigh_rand_reach_time(NEIGH_VAR(p, BASE_REACHABLE_TIME));
1653 dev_hold(dev);
1654 p->dev = dev;
1655 write_pnet(&p->net, net);
1656 p->sysctl_table = NULL;
1657
1658 if (ops->ndo_neigh_setup && ops->ndo_neigh_setup(dev, p)) {
1659 dev_put(dev);
1660 kfree(p);
1661 return NULL;
1662 }
1663
1664 write_lock_bh(&tbl->lock);
1665 list_add(&p->list, &tbl->parms.list);
1666 write_unlock_bh(&tbl->lock);
1667
1668 neigh_parms_data_state_cleanall(p);
1669 }
1670 return p;
1671 }
1672 EXPORT_SYMBOL(neigh_parms_alloc);
1673
neigh_rcu_free_parms(struct rcu_head * head)1674 static void neigh_rcu_free_parms(struct rcu_head *head)
1675 {
1676 struct neigh_parms *parms =
1677 container_of(head, struct neigh_parms, rcu_head);
1678
1679 neigh_parms_put(parms);
1680 }
1681
neigh_parms_release(struct neigh_table * tbl,struct neigh_parms * parms)1682 void neigh_parms_release(struct neigh_table *tbl, struct neigh_parms *parms)
1683 {
1684 if (!parms || parms == &tbl->parms)
1685 return;
1686 write_lock_bh(&tbl->lock);
1687 list_del(&parms->list);
1688 parms->dead = 1;
1689 write_unlock_bh(&tbl->lock);
1690 if (parms->dev)
1691 dev_put(parms->dev);
1692 call_rcu(&parms->rcu_head, neigh_rcu_free_parms);
1693 }
1694 EXPORT_SYMBOL(neigh_parms_release);
1695
neigh_parms_destroy(struct neigh_parms * parms)1696 static void neigh_parms_destroy(struct neigh_parms *parms)
1697 {
1698 kfree(parms);
1699 }
1700
1701 static struct lock_class_key neigh_table_proxy_queue_class;
1702
1703 static struct neigh_table *neigh_tables[NEIGH_NR_TABLES] __read_mostly;
1704
neigh_table_init(int index,struct neigh_table * tbl)1705 void neigh_table_init(int index, struct neigh_table *tbl)
1706 {
1707 unsigned long now = jiffies;
1708 unsigned long phsize;
1709
1710 INIT_LIST_HEAD(&tbl->parms_list);
1711 INIT_LIST_HEAD(&tbl->gc_list);
1712 list_add(&tbl->parms.list, &tbl->parms_list);
1713 write_pnet(&tbl->parms.net, &init_net);
1714 refcount_set(&tbl->parms.refcnt, 1);
1715 tbl->parms.reachable_time =
1716 neigh_rand_reach_time(NEIGH_VAR(&tbl->parms, BASE_REACHABLE_TIME));
1717
1718 tbl->stats = alloc_percpu(struct neigh_statistics);
1719 if (!tbl->stats)
1720 panic("cannot create neighbour cache statistics");
1721
1722 #ifdef CONFIG_PROC_FS
1723 if (!proc_create_seq_data(tbl->id, 0, init_net.proc_net_stat,
1724 &neigh_stat_seq_ops, tbl))
1725 panic("cannot create neighbour proc dir entry");
1726 #endif
1727
1728 RCU_INIT_POINTER(tbl->nht, neigh_hash_alloc(3));
1729
1730 phsize = (PNEIGH_HASHMASK + 1) * sizeof(struct pneigh_entry *);
1731 tbl->phash_buckets = kzalloc(phsize, GFP_KERNEL);
1732
1733 if (!tbl->nht || !tbl->phash_buckets)
1734 panic("cannot allocate neighbour cache hashes");
1735
1736 if (!tbl->entry_size)
1737 tbl->entry_size = ALIGN(offsetof(struct neighbour, primary_key) +
1738 tbl->key_len, NEIGH_PRIV_ALIGN);
1739 else
1740 WARN_ON(tbl->entry_size % NEIGH_PRIV_ALIGN);
1741
1742 rwlock_init(&tbl->lock);
1743 INIT_DEFERRABLE_WORK(&tbl->gc_work, neigh_periodic_work);
1744 queue_delayed_work(system_power_efficient_wq, &tbl->gc_work,
1745 tbl->parms.reachable_time);
1746 timer_setup(&tbl->proxy_timer, neigh_proxy_process, 0);
1747 skb_queue_head_init_class(&tbl->proxy_queue,
1748 &neigh_table_proxy_queue_class);
1749
1750 tbl->last_flush = now;
1751 tbl->last_rand = now + tbl->parms.reachable_time * 20;
1752
1753 neigh_tables[index] = tbl;
1754 }
1755 EXPORT_SYMBOL(neigh_table_init);
1756
neigh_table_clear(int index,struct neigh_table * tbl)1757 int neigh_table_clear(int index, struct neigh_table *tbl)
1758 {
1759 neigh_tables[index] = NULL;
1760 /* It is not clean... Fix it to unload IPv6 module safely */
1761 cancel_delayed_work_sync(&tbl->gc_work);
1762 del_timer_sync(&tbl->proxy_timer);
1763 pneigh_queue_purge(&tbl->proxy_queue, NULL);
1764 neigh_ifdown(tbl, NULL);
1765 if (atomic_read(&tbl->entries))
1766 pr_crit("neighbour leakage\n");
1767
1768 call_rcu(&rcu_dereference_protected(tbl->nht, 1)->rcu,
1769 neigh_hash_free_rcu);
1770 tbl->nht = NULL;
1771
1772 kfree(tbl->phash_buckets);
1773 tbl->phash_buckets = NULL;
1774
1775 remove_proc_entry(tbl->id, init_net.proc_net_stat);
1776
1777 free_percpu(tbl->stats);
1778 tbl->stats = NULL;
1779
1780 return 0;
1781 }
1782 EXPORT_SYMBOL(neigh_table_clear);
1783
neigh_find_table(int family)1784 static struct neigh_table *neigh_find_table(int family)
1785 {
1786 struct neigh_table *tbl = NULL;
1787
1788 switch (family) {
1789 case AF_INET:
1790 tbl = neigh_tables[NEIGH_ARP_TABLE];
1791 break;
1792 case AF_INET6:
1793 tbl = neigh_tables[NEIGH_ND_TABLE];
1794 break;
1795 case AF_DECnet:
1796 tbl = neigh_tables[NEIGH_DN_TABLE];
1797 break;
1798 #ifdef CONFIG_NEWIP
1799 case AF_NINET: /* NIP */
1800 tbl = neigh_tables[NEIGH_NND_TABLE];
1801 break;
1802 #endif
1803 }
1804
1805 return tbl;
1806 }
1807
1808 const struct nla_policy nda_policy[NDA_MAX+1] = {
1809 [NDA_UNSPEC] = { .strict_start_type = NDA_NH_ID },
1810 [NDA_DST] = { .type = NLA_BINARY, .len = MAX_ADDR_LEN },
1811 [NDA_LLADDR] = { .type = NLA_BINARY, .len = MAX_ADDR_LEN },
1812 [NDA_CACHEINFO] = { .len = sizeof(struct nda_cacheinfo) },
1813 [NDA_PROBES] = { .type = NLA_U32 },
1814 [NDA_VLAN] = { .type = NLA_U16 },
1815 [NDA_PORT] = { .type = NLA_U16 },
1816 [NDA_VNI] = { .type = NLA_U32 },
1817 [NDA_IFINDEX] = { .type = NLA_U32 },
1818 [NDA_MASTER] = { .type = NLA_U32 },
1819 [NDA_PROTOCOL] = { .type = NLA_U8 },
1820 [NDA_NH_ID] = { .type = NLA_U32 },
1821 [NDA_FDB_EXT_ATTRS] = { .type = NLA_NESTED },
1822 };
1823
neigh_delete(struct sk_buff * skb,struct nlmsghdr * nlh,struct netlink_ext_ack * extack)1824 static int neigh_delete(struct sk_buff *skb, struct nlmsghdr *nlh,
1825 struct netlink_ext_ack *extack)
1826 {
1827 struct net *net = sock_net(skb->sk);
1828 struct ndmsg *ndm;
1829 struct nlattr *dst_attr;
1830 struct neigh_table *tbl;
1831 struct neighbour *neigh;
1832 struct net_device *dev = NULL;
1833 int err = -EINVAL;
1834
1835 ASSERT_RTNL();
1836 if (nlmsg_len(nlh) < sizeof(*ndm))
1837 goto out;
1838
1839 dst_attr = nlmsg_find_attr(nlh, sizeof(*ndm), NDA_DST);
1840 if (!dst_attr) {
1841 NL_SET_ERR_MSG(extack, "Network address not specified");
1842 goto out;
1843 }
1844
1845 ndm = nlmsg_data(nlh);
1846 if (ndm->ndm_ifindex) {
1847 dev = __dev_get_by_index(net, ndm->ndm_ifindex);
1848 if (dev == NULL) {
1849 err = -ENODEV;
1850 goto out;
1851 }
1852 }
1853
1854 tbl = neigh_find_table(ndm->ndm_family);
1855 if (tbl == NULL)
1856 return -EAFNOSUPPORT;
1857
1858 if (nla_len(dst_attr) < (int)tbl->key_len) {
1859 NL_SET_ERR_MSG(extack, "Invalid network address");
1860 goto out;
1861 }
1862
1863 if (ndm->ndm_flags & NTF_PROXY) {
1864 err = pneigh_delete(tbl, net, nla_data(dst_attr), dev);
1865 goto out;
1866 }
1867
1868 if (dev == NULL)
1869 goto out;
1870
1871 neigh = neigh_lookup(tbl, nla_data(dst_attr), dev);
1872 if (neigh == NULL) {
1873 err = -ENOENT;
1874 goto out;
1875 }
1876
1877 err = __neigh_update(neigh, NULL, NUD_FAILED,
1878 NEIGH_UPDATE_F_OVERRIDE | NEIGH_UPDATE_F_ADMIN,
1879 NETLINK_CB(skb).portid, extack);
1880 write_lock_bh(&tbl->lock);
1881 neigh_release(neigh);
1882 neigh_remove_one(neigh, tbl);
1883 write_unlock_bh(&tbl->lock);
1884
1885 out:
1886 return err;
1887 }
1888
neigh_add(struct sk_buff * skb,struct nlmsghdr * nlh,struct netlink_ext_ack * extack)1889 static int neigh_add(struct sk_buff *skb, struct nlmsghdr *nlh,
1890 struct netlink_ext_ack *extack)
1891 {
1892 int flags = NEIGH_UPDATE_F_ADMIN | NEIGH_UPDATE_F_OVERRIDE |
1893 NEIGH_UPDATE_F_OVERRIDE_ISROUTER;
1894 struct net *net = sock_net(skb->sk);
1895 struct ndmsg *ndm;
1896 struct nlattr *tb[NDA_MAX+1];
1897 struct neigh_table *tbl;
1898 struct net_device *dev = NULL;
1899 struct neighbour *neigh;
1900 void *dst, *lladdr;
1901 u8 protocol = 0;
1902 int err;
1903
1904 ASSERT_RTNL();
1905 err = nlmsg_parse_deprecated(nlh, sizeof(*ndm), tb, NDA_MAX,
1906 nda_policy, extack);
1907 if (err < 0)
1908 goto out;
1909
1910 err = -EINVAL;
1911 if (!tb[NDA_DST]) {
1912 NL_SET_ERR_MSG(extack, "Network address not specified");
1913 goto out;
1914 }
1915
1916 ndm = nlmsg_data(nlh);
1917 if (ndm->ndm_ifindex) {
1918 dev = __dev_get_by_index(net, ndm->ndm_ifindex);
1919 if (dev == NULL) {
1920 err = -ENODEV;
1921 goto out;
1922 }
1923
1924 if (tb[NDA_LLADDR] && nla_len(tb[NDA_LLADDR]) < dev->addr_len) {
1925 NL_SET_ERR_MSG(extack, "Invalid link address");
1926 goto out;
1927 }
1928 }
1929
1930 tbl = neigh_find_table(ndm->ndm_family);
1931 if (tbl == NULL)
1932 return -EAFNOSUPPORT;
1933
1934 if (nla_len(tb[NDA_DST]) < (int)tbl->key_len) {
1935 NL_SET_ERR_MSG(extack, "Invalid network address");
1936 goto out;
1937 }
1938
1939 dst = nla_data(tb[NDA_DST]);
1940 lladdr = tb[NDA_LLADDR] ? nla_data(tb[NDA_LLADDR]) : NULL;
1941
1942 if (tb[NDA_PROTOCOL])
1943 protocol = nla_get_u8(tb[NDA_PROTOCOL]);
1944
1945 if (ndm->ndm_flags & NTF_PROXY) {
1946 struct pneigh_entry *pn;
1947
1948 err = -ENOBUFS;
1949 pn = pneigh_lookup(tbl, net, dst, dev, 1);
1950 if (pn) {
1951 pn->flags = ndm->ndm_flags;
1952 if (protocol)
1953 pn->protocol = protocol;
1954 err = 0;
1955 }
1956 goto out;
1957 }
1958
1959 if (!dev) {
1960 NL_SET_ERR_MSG(extack, "Device not specified");
1961 goto out;
1962 }
1963
1964 if (tbl->allow_add && !tbl->allow_add(dev, extack)) {
1965 err = -EINVAL;
1966 goto out;
1967 }
1968
1969 neigh = neigh_lookup(tbl, dst, dev);
1970 if (neigh == NULL) {
1971 bool exempt_from_gc;
1972
1973 if (!(nlh->nlmsg_flags & NLM_F_CREATE)) {
1974 err = -ENOENT;
1975 goto out;
1976 }
1977
1978 exempt_from_gc = ndm->ndm_state & NUD_PERMANENT ||
1979 ndm->ndm_flags & NTF_EXT_LEARNED;
1980 neigh = ___neigh_create(tbl, dst, dev,
1981 ndm->ndm_flags & NTF_EXT_LEARNED,
1982 exempt_from_gc, true);
1983 if (IS_ERR(neigh)) {
1984 err = PTR_ERR(neigh);
1985 goto out;
1986 }
1987 } else {
1988 if (nlh->nlmsg_flags & NLM_F_EXCL) {
1989 err = -EEXIST;
1990 neigh_release(neigh);
1991 goto out;
1992 }
1993
1994 if (!(nlh->nlmsg_flags & NLM_F_REPLACE))
1995 flags &= ~(NEIGH_UPDATE_F_OVERRIDE |
1996 NEIGH_UPDATE_F_OVERRIDE_ISROUTER);
1997 }
1998
1999 if (protocol)
2000 neigh->protocol = protocol;
2001 if (ndm->ndm_flags & NTF_EXT_LEARNED)
2002 flags |= NEIGH_UPDATE_F_EXT_LEARNED;
2003 if (ndm->ndm_flags & NTF_ROUTER)
2004 flags |= NEIGH_UPDATE_F_ISROUTER;
2005 if (ndm->ndm_flags & NTF_USE)
2006 flags |= NEIGH_UPDATE_F_USE;
2007
2008 err = __neigh_update(neigh, lladdr, ndm->ndm_state, flags,
2009 NETLINK_CB(skb).portid, extack);
2010 if (!err && ndm->ndm_flags & NTF_USE) {
2011 neigh_event_send(neigh, NULL);
2012 err = 0;
2013 }
2014 neigh_release(neigh);
2015 out:
2016 return err;
2017 }
2018
neightbl_fill_parms(struct sk_buff * skb,struct neigh_parms * parms)2019 static int neightbl_fill_parms(struct sk_buff *skb, struct neigh_parms *parms)
2020 {
2021 struct nlattr *nest;
2022
2023 nest = nla_nest_start_noflag(skb, NDTA_PARMS);
2024 if (nest == NULL)
2025 return -ENOBUFS;
2026
2027 if ((parms->dev &&
2028 nla_put_u32(skb, NDTPA_IFINDEX, parms->dev->ifindex)) ||
2029 nla_put_u32(skb, NDTPA_REFCNT, refcount_read(&parms->refcnt)) ||
2030 nla_put_u32(skb, NDTPA_QUEUE_LENBYTES,
2031 NEIGH_VAR(parms, QUEUE_LEN_BYTES)) ||
2032 /* approximative value for deprecated QUEUE_LEN (in packets) */
2033 nla_put_u32(skb, NDTPA_QUEUE_LEN,
2034 NEIGH_VAR(parms, QUEUE_LEN_BYTES) / SKB_TRUESIZE(ETH_FRAME_LEN)) ||
2035 nla_put_u32(skb, NDTPA_PROXY_QLEN, NEIGH_VAR(parms, PROXY_QLEN)) ||
2036 nla_put_u32(skb, NDTPA_APP_PROBES, NEIGH_VAR(parms, APP_PROBES)) ||
2037 nla_put_u32(skb, NDTPA_UCAST_PROBES,
2038 NEIGH_VAR(parms, UCAST_PROBES)) ||
2039 nla_put_u32(skb, NDTPA_MCAST_PROBES,
2040 NEIGH_VAR(parms, MCAST_PROBES)) ||
2041 nla_put_u32(skb, NDTPA_MCAST_REPROBES,
2042 NEIGH_VAR(parms, MCAST_REPROBES)) ||
2043 nla_put_msecs(skb, NDTPA_REACHABLE_TIME, parms->reachable_time,
2044 NDTPA_PAD) ||
2045 nla_put_msecs(skb, NDTPA_BASE_REACHABLE_TIME,
2046 NEIGH_VAR(parms, BASE_REACHABLE_TIME), NDTPA_PAD) ||
2047 nla_put_msecs(skb, NDTPA_GC_STALETIME,
2048 NEIGH_VAR(parms, GC_STALETIME), NDTPA_PAD) ||
2049 nla_put_msecs(skb, NDTPA_DELAY_PROBE_TIME,
2050 NEIGH_VAR(parms, DELAY_PROBE_TIME), NDTPA_PAD) ||
2051 nla_put_msecs(skb, NDTPA_RETRANS_TIME,
2052 NEIGH_VAR(parms, RETRANS_TIME), NDTPA_PAD) ||
2053 nla_put_msecs(skb, NDTPA_ANYCAST_DELAY,
2054 NEIGH_VAR(parms, ANYCAST_DELAY), NDTPA_PAD) ||
2055 nla_put_msecs(skb, NDTPA_PROXY_DELAY,
2056 NEIGH_VAR(parms, PROXY_DELAY), NDTPA_PAD) ||
2057 nla_put_msecs(skb, NDTPA_LOCKTIME,
2058 NEIGH_VAR(parms, LOCKTIME), NDTPA_PAD))
2059 goto nla_put_failure;
2060 return nla_nest_end(skb, nest);
2061
2062 nla_put_failure:
2063 nla_nest_cancel(skb, nest);
2064 return -EMSGSIZE;
2065 }
2066
neightbl_fill_info(struct sk_buff * skb,struct neigh_table * tbl,u32 pid,u32 seq,int type,int flags)2067 static int neightbl_fill_info(struct sk_buff *skb, struct neigh_table *tbl,
2068 u32 pid, u32 seq, int type, int flags)
2069 {
2070 struct nlmsghdr *nlh;
2071 struct ndtmsg *ndtmsg;
2072
2073 nlh = nlmsg_put(skb, pid, seq, type, sizeof(*ndtmsg), flags);
2074 if (nlh == NULL)
2075 return -EMSGSIZE;
2076
2077 ndtmsg = nlmsg_data(nlh);
2078
2079 read_lock_bh(&tbl->lock);
2080 ndtmsg->ndtm_family = tbl->family;
2081 ndtmsg->ndtm_pad1 = 0;
2082 ndtmsg->ndtm_pad2 = 0;
2083
2084 if (nla_put_string(skb, NDTA_NAME, tbl->id) ||
2085 nla_put_msecs(skb, NDTA_GC_INTERVAL, tbl->gc_interval, NDTA_PAD) ||
2086 nla_put_u32(skb, NDTA_THRESH1, tbl->gc_thresh1) ||
2087 nla_put_u32(skb, NDTA_THRESH2, tbl->gc_thresh2) ||
2088 nla_put_u32(skb, NDTA_THRESH3, tbl->gc_thresh3))
2089 goto nla_put_failure;
2090 {
2091 unsigned long now = jiffies;
2092 long flush_delta = now - tbl->last_flush;
2093 long rand_delta = now - tbl->last_rand;
2094 struct neigh_hash_table *nht;
2095 struct ndt_config ndc = {
2096 .ndtc_key_len = tbl->key_len,
2097 .ndtc_entry_size = tbl->entry_size,
2098 .ndtc_entries = atomic_read(&tbl->entries),
2099 .ndtc_last_flush = jiffies_to_msecs(flush_delta),
2100 .ndtc_last_rand = jiffies_to_msecs(rand_delta),
2101 .ndtc_proxy_qlen = tbl->proxy_queue.qlen,
2102 };
2103
2104 rcu_read_lock_bh();
2105 nht = rcu_dereference_bh(tbl->nht);
2106 ndc.ndtc_hash_rnd = nht->hash_rnd[0];
2107 ndc.ndtc_hash_mask = ((1 << nht->hash_shift) - 1);
2108 rcu_read_unlock_bh();
2109
2110 if (nla_put(skb, NDTA_CONFIG, sizeof(ndc), &ndc))
2111 goto nla_put_failure;
2112 }
2113
2114 {
2115 int cpu;
2116 struct ndt_stats ndst;
2117
2118 memset(&ndst, 0, sizeof(ndst));
2119
2120 for_each_possible_cpu(cpu) {
2121 struct neigh_statistics *st;
2122
2123 st = per_cpu_ptr(tbl->stats, cpu);
2124 ndst.ndts_allocs += st->allocs;
2125 ndst.ndts_destroys += st->destroys;
2126 ndst.ndts_hash_grows += st->hash_grows;
2127 ndst.ndts_res_failed += st->res_failed;
2128 ndst.ndts_lookups += st->lookups;
2129 ndst.ndts_hits += st->hits;
2130 ndst.ndts_rcv_probes_mcast += st->rcv_probes_mcast;
2131 ndst.ndts_rcv_probes_ucast += st->rcv_probes_ucast;
2132 ndst.ndts_periodic_gc_runs += st->periodic_gc_runs;
2133 ndst.ndts_forced_gc_runs += st->forced_gc_runs;
2134 ndst.ndts_table_fulls += st->table_fulls;
2135 }
2136
2137 if (nla_put_64bit(skb, NDTA_STATS, sizeof(ndst), &ndst,
2138 NDTA_PAD))
2139 goto nla_put_failure;
2140 }
2141
2142 BUG_ON(tbl->parms.dev);
2143 if (neightbl_fill_parms(skb, &tbl->parms) < 0)
2144 goto nla_put_failure;
2145
2146 read_unlock_bh(&tbl->lock);
2147 nlmsg_end(skb, nlh);
2148 return 0;
2149
2150 nla_put_failure:
2151 read_unlock_bh(&tbl->lock);
2152 nlmsg_cancel(skb, nlh);
2153 return -EMSGSIZE;
2154 }
2155
neightbl_fill_param_info(struct sk_buff * skb,struct neigh_table * tbl,struct neigh_parms * parms,u32 pid,u32 seq,int type,unsigned int flags)2156 static int neightbl_fill_param_info(struct sk_buff *skb,
2157 struct neigh_table *tbl,
2158 struct neigh_parms *parms,
2159 u32 pid, u32 seq, int type,
2160 unsigned int flags)
2161 {
2162 struct ndtmsg *ndtmsg;
2163 struct nlmsghdr *nlh;
2164
2165 nlh = nlmsg_put(skb, pid, seq, type, sizeof(*ndtmsg), flags);
2166 if (nlh == NULL)
2167 return -EMSGSIZE;
2168
2169 ndtmsg = nlmsg_data(nlh);
2170
2171 read_lock_bh(&tbl->lock);
2172 ndtmsg->ndtm_family = tbl->family;
2173 ndtmsg->ndtm_pad1 = 0;
2174 ndtmsg->ndtm_pad2 = 0;
2175
2176 if (nla_put_string(skb, NDTA_NAME, tbl->id) < 0 ||
2177 neightbl_fill_parms(skb, parms) < 0)
2178 goto errout;
2179
2180 read_unlock_bh(&tbl->lock);
2181 nlmsg_end(skb, nlh);
2182 return 0;
2183 errout:
2184 read_unlock_bh(&tbl->lock);
2185 nlmsg_cancel(skb, nlh);
2186 return -EMSGSIZE;
2187 }
2188
2189 static const struct nla_policy nl_neightbl_policy[NDTA_MAX+1] = {
2190 [NDTA_NAME] = { .type = NLA_STRING },
2191 [NDTA_THRESH1] = { .type = NLA_U32 },
2192 [NDTA_THRESH2] = { .type = NLA_U32 },
2193 [NDTA_THRESH3] = { .type = NLA_U32 },
2194 [NDTA_GC_INTERVAL] = { .type = NLA_U64 },
2195 [NDTA_PARMS] = { .type = NLA_NESTED },
2196 };
2197
2198 static const struct nla_policy nl_ntbl_parm_policy[NDTPA_MAX+1] = {
2199 [NDTPA_IFINDEX] = { .type = NLA_U32 },
2200 [NDTPA_QUEUE_LEN] = { .type = NLA_U32 },
2201 [NDTPA_PROXY_QLEN] = { .type = NLA_U32 },
2202 [NDTPA_APP_PROBES] = { .type = NLA_U32 },
2203 [NDTPA_UCAST_PROBES] = { .type = NLA_U32 },
2204 [NDTPA_MCAST_PROBES] = { .type = NLA_U32 },
2205 [NDTPA_MCAST_REPROBES] = { .type = NLA_U32 },
2206 [NDTPA_BASE_REACHABLE_TIME] = { .type = NLA_U64 },
2207 [NDTPA_GC_STALETIME] = { .type = NLA_U64 },
2208 [NDTPA_DELAY_PROBE_TIME] = { .type = NLA_U64 },
2209 [NDTPA_RETRANS_TIME] = { .type = NLA_U64 },
2210 [NDTPA_ANYCAST_DELAY] = { .type = NLA_U64 },
2211 [NDTPA_PROXY_DELAY] = { .type = NLA_U64 },
2212 [NDTPA_LOCKTIME] = { .type = NLA_U64 },
2213 };
2214
neightbl_set(struct sk_buff * skb,struct nlmsghdr * nlh,struct netlink_ext_ack * extack)2215 static int neightbl_set(struct sk_buff *skb, struct nlmsghdr *nlh,
2216 struct netlink_ext_ack *extack)
2217 {
2218 struct net *net = sock_net(skb->sk);
2219 struct neigh_table *tbl;
2220 struct ndtmsg *ndtmsg;
2221 struct nlattr *tb[NDTA_MAX+1];
2222 bool found = false;
2223 int err, tidx;
2224
2225 err = nlmsg_parse_deprecated(nlh, sizeof(*ndtmsg), tb, NDTA_MAX,
2226 nl_neightbl_policy, extack);
2227 if (err < 0)
2228 goto errout;
2229
2230 if (tb[NDTA_NAME] == NULL) {
2231 err = -EINVAL;
2232 goto errout;
2233 }
2234
2235 ndtmsg = nlmsg_data(nlh);
2236
2237 for (tidx = 0; tidx < NEIGH_NR_TABLES; tidx++) {
2238 tbl = neigh_tables[tidx];
2239 if (!tbl)
2240 continue;
2241 if (ndtmsg->ndtm_family && tbl->family != ndtmsg->ndtm_family)
2242 continue;
2243 if (nla_strcmp(tb[NDTA_NAME], tbl->id) == 0) {
2244 found = true;
2245 break;
2246 }
2247 }
2248
2249 if (!found)
2250 return -ENOENT;
2251
2252 /*
2253 * We acquire tbl->lock to be nice to the periodic timers and
2254 * make sure they always see a consistent set of values.
2255 */
2256 write_lock_bh(&tbl->lock);
2257
2258 if (tb[NDTA_PARMS]) {
2259 struct nlattr *tbp[NDTPA_MAX+1];
2260 struct neigh_parms *p;
2261 int i, ifindex = 0;
2262
2263 err = nla_parse_nested_deprecated(tbp, NDTPA_MAX,
2264 tb[NDTA_PARMS],
2265 nl_ntbl_parm_policy, extack);
2266 if (err < 0)
2267 goto errout_tbl_lock;
2268
2269 if (tbp[NDTPA_IFINDEX])
2270 ifindex = nla_get_u32(tbp[NDTPA_IFINDEX]);
2271
2272 p = lookup_neigh_parms(tbl, net, ifindex);
2273 if (p == NULL) {
2274 err = -ENOENT;
2275 goto errout_tbl_lock;
2276 }
2277
2278 for (i = 1; i <= NDTPA_MAX; i++) {
2279 if (tbp[i] == NULL)
2280 continue;
2281
2282 switch (i) {
2283 case NDTPA_QUEUE_LEN:
2284 NEIGH_VAR_SET(p, QUEUE_LEN_BYTES,
2285 nla_get_u32(tbp[i]) *
2286 SKB_TRUESIZE(ETH_FRAME_LEN));
2287 break;
2288 case NDTPA_QUEUE_LENBYTES:
2289 NEIGH_VAR_SET(p, QUEUE_LEN_BYTES,
2290 nla_get_u32(tbp[i]));
2291 break;
2292 case NDTPA_PROXY_QLEN:
2293 NEIGH_VAR_SET(p, PROXY_QLEN,
2294 nla_get_u32(tbp[i]));
2295 break;
2296 case NDTPA_APP_PROBES:
2297 NEIGH_VAR_SET(p, APP_PROBES,
2298 nla_get_u32(tbp[i]));
2299 break;
2300 case NDTPA_UCAST_PROBES:
2301 NEIGH_VAR_SET(p, UCAST_PROBES,
2302 nla_get_u32(tbp[i]));
2303 break;
2304 case NDTPA_MCAST_PROBES:
2305 NEIGH_VAR_SET(p, MCAST_PROBES,
2306 nla_get_u32(tbp[i]));
2307 break;
2308 case NDTPA_MCAST_REPROBES:
2309 NEIGH_VAR_SET(p, MCAST_REPROBES,
2310 nla_get_u32(tbp[i]));
2311 break;
2312 case NDTPA_BASE_REACHABLE_TIME:
2313 NEIGH_VAR_SET(p, BASE_REACHABLE_TIME,
2314 nla_get_msecs(tbp[i]));
2315 /* update reachable_time as well, otherwise, the change will
2316 * only be effective after the next time neigh_periodic_work
2317 * decides to recompute it (can be multiple minutes)
2318 */
2319 p->reachable_time =
2320 neigh_rand_reach_time(NEIGH_VAR(p, BASE_REACHABLE_TIME));
2321 break;
2322 case NDTPA_GC_STALETIME:
2323 NEIGH_VAR_SET(p, GC_STALETIME,
2324 nla_get_msecs(tbp[i]));
2325 break;
2326 case NDTPA_DELAY_PROBE_TIME:
2327 NEIGH_VAR_SET(p, DELAY_PROBE_TIME,
2328 nla_get_msecs(tbp[i]));
2329 call_netevent_notifiers(NETEVENT_DELAY_PROBE_TIME_UPDATE, p);
2330 break;
2331 case NDTPA_RETRANS_TIME:
2332 NEIGH_VAR_SET(p, RETRANS_TIME,
2333 nla_get_msecs(tbp[i]));
2334 break;
2335 case NDTPA_ANYCAST_DELAY:
2336 NEIGH_VAR_SET(p, ANYCAST_DELAY,
2337 nla_get_msecs(tbp[i]));
2338 break;
2339 case NDTPA_PROXY_DELAY:
2340 NEIGH_VAR_SET(p, PROXY_DELAY,
2341 nla_get_msecs(tbp[i]));
2342 break;
2343 case NDTPA_LOCKTIME:
2344 NEIGH_VAR_SET(p, LOCKTIME,
2345 nla_get_msecs(tbp[i]));
2346 break;
2347 }
2348 }
2349 }
2350
2351 err = -ENOENT;
2352 if ((tb[NDTA_THRESH1] || tb[NDTA_THRESH2] ||
2353 tb[NDTA_THRESH3] || tb[NDTA_GC_INTERVAL]) &&
2354 !net_eq(net, &init_net))
2355 goto errout_tbl_lock;
2356
2357 if (tb[NDTA_THRESH1])
2358 tbl->gc_thresh1 = nla_get_u32(tb[NDTA_THRESH1]);
2359
2360 if (tb[NDTA_THRESH2])
2361 tbl->gc_thresh2 = nla_get_u32(tb[NDTA_THRESH2]);
2362
2363 if (tb[NDTA_THRESH3])
2364 tbl->gc_thresh3 = nla_get_u32(tb[NDTA_THRESH3]);
2365
2366 if (tb[NDTA_GC_INTERVAL])
2367 tbl->gc_interval = nla_get_msecs(tb[NDTA_GC_INTERVAL]);
2368
2369 err = 0;
2370
2371 errout_tbl_lock:
2372 write_unlock_bh(&tbl->lock);
2373 errout:
2374 return err;
2375 }
2376
neightbl_valid_dump_info(const struct nlmsghdr * nlh,struct netlink_ext_ack * extack)2377 static int neightbl_valid_dump_info(const struct nlmsghdr *nlh,
2378 struct netlink_ext_ack *extack)
2379 {
2380 struct ndtmsg *ndtm;
2381
2382 if (nlh->nlmsg_len < nlmsg_msg_size(sizeof(*ndtm))) {
2383 NL_SET_ERR_MSG(extack, "Invalid header for neighbor table dump request");
2384 return -EINVAL;
2385 }
2386
2387 ndtm = nlmsg_data(nlh);
2388 if (ndtm->ndtm_pad1 || ndtm->ndtm_pad2) {
2389 NL_SET_ERR_MSG(extack, "Invalid values in header for neighbor table dump request");
2390 return -EINVAL;
2391 }
2392
2393 if (nlmsg_attrlen(nlh, sizeof(*ndtm))) {
2394 NL_SET_ERR_MSG(extack, "Invalid data after header in neighbor table dump request");
2395 return -EINVAL;
2396 }
2397
2398 return 0;
2399 }
2400
neightbl_dump_info(struct sk_buff * skb,struct netlink_callback * cb)2401 static int neightbl_dump_info(struct sk_buff *skb, struct netlink_callback *cb)
2402 {
2403 const struct nlmsghdr *nlh = cb->nlh;
2404 struct net *net = sock_net(skb->sk);
2405 int family, tidx, nidx = 0;
2406 int tbl_skip = cb->args[0];
2407 int neigh_skip = cb->args[1];
2408 struct neigh_table *tbl;
2409
2410 if (cb->strict_check) {
2411 int err = neightbl_valid_dump_info(nlh, cb->extack);
2412
2413 if (err < 0)
2414 return err;
2415 }
2416
2417 family = ((struct rtgenmsg *)nlmsg_data(nlh))->rtgen_family;
2418
2419 for (tidx = 0; tidx < NEIGH_NR_TABLES; tidx++) {
2420 struct neigh_parms *p;
2421
2422 tbl = neigh_tables[tidx];
2423 if (!tbl)
2424 continue;
2425
2426 if (tidx < tbl_skip || (family && tbl->family != family))
2427 continue;
2428
2429 if (neightbl_fill_info(skb, tbl, NETLINK_CB(cb->skb).portid,
2430 nlh->nlmsg_seq, RTM_NEWNEIGHTBL,
2431 NLM_F_MULTI) < 0)
2432 break;
2433
2434 nidx = 0;
2435 p = list_next_entry(&tbl->parms, list);
2436 list_for_each_entry_from(p, &tbl->parms_list, list) {
2437 if (!net_eq(neigh_parms_net(p), net))
2438 continue;
2439
2440 if (nidx < neigh_skip)
2441 goto next;
2442
2443 if (neightbl_fill_param_info(skb, tbl, p,
2444 NETLINK_CB(cb->skb).portid,
2445 nlh->nlmsg_seq,
2446 RTM_NEWNEIGHTBL,
2447 NLM_F_MULTI) < 0)
2448 goto out;
2449 next:
2450 nidx++;
2451 }
2452
2453 neigh_skip = 0;
2454 }
2455 out:
2456 cb->args[0] = tidx;
2457 cb->args[1] = nidx;
2458
2459 return skb->len;
2460 }
2461
neigh_fill_info(struct sk_buff * skb,struct neighbour * neigh,u32 pid,u32 seq,int type,unsigned int flags)2462 static int neigh_fill_info(struct sk_buff *skb, struct neighbour *neigh,
2463 u32 pid, u32 seq, int type, unsigned int flags)
2464 {
2465 unsigned long now = jiffies;
2466 struct nda_cacheinfo ci;
2467 struct nlmsghdr *nlh;
2468 struct ndmsg *ndm;
2469
2470 nlh = nlmsg_put(skb, pid, seq, type, sizeof(*ndm), flags);
2471 if (nlh == NULL)
2472 return -EMSGSIZE;
2473
2474 ndm = nlmsg_data(nlh);
2475 ndm->ndm_family = neigh->ops->family;
2476 ndm->ndm_pad1 = 0;
2477 ndm->ndm_pad2 = 0;
2478 ndm->ndm_flags = neigh->flags;
2479 ndm->ndm_type = neigh->type;
2480 ndm->ndm_ifindex = neigh->dev->ifindex;
2481
2482 if (nla_put(skb, NDA_DST, neigh->tbl->key_len, neigh->primary_key))
2483 goto nla_put_failure;
2484
2485 read_lock_bh(&neigh->lock);
2486 ndm->ndm_state = neigh->nud_state;
2487 if (neigh->nud_state & NUD_VALID) {
2488 char haddr[MAX_ADDR_LEN];
2489
2490 neigh_ha_snapshot(haddr, neigh, neigh->dev);
2491 if (nla_put(skb, NDA_LLADDR, neigh->dev->addr_len, haddr) < 0) {
2492 read_unlock_bh(&neigh->lock);
2493 goto nla_put_failure;
2494 }
2495 }
2496
2497 ci.ndm_used = jiffies_to_clock_t(now - neigh->used);
2498 ci.ndm_confirmed = jiffies_to_clock_t(now - neigh->confirmed);
2499 ci.ndm_updated = jiffies_to_clock_t(now - neigh->updated);
2500 ci.ndm_refcnt = refcount_read(&neigh->refcnt) - 1;
2501 read_unlock_bh(&neigh->lock);
2502
2503 if (nla_put_u32(skb, NDA_PROBES, atomic_read(&neigh->probes)) ||
2504 nla_put(skb, NDA_CACHEINFO, sizeof(ci), &ci))
2505 goto nla_put_failure;
2506
2507 if (neigh->protocol && nla_put_u8(skb, NDA_PROTOCOL, neigh->protocol))
2508 goto nla_put_failure;
2509
2510 nlmsg_end(skb, nlh);
2511 return 0;
2512
2513 nla_put_failure:
2514 nlmsg_cancel(skb, nlh);
2515 return -EMSGSIZE;
2516 }
2517
pneigh_fill_info(struct sk_buff * skb,struct pneigh_entry * pn,u32 pid,u32 seq,int type,unsigned int flags,struct neigh_table * tbl)2518 static int pneigh_fill_info(struct sk_buff *skb, struct pneigh_entry *pn,
2519 u32 pid, u32 seq, int type, unsigned int flags,
2520 struct neigh_table *tbl)
2521 {
2522 struct nlmsghdr *nlh;
2523 struct ndmsg *ndm;
2524
2525 nlh = nlmsg_put(skb, pid, seq, type, sizeof(*ndm), flags);
2526 if (nlh == NULL)
2527 return -EMSGSIZE;
2528
2529 ndm = nlmsg_data(nlh);
2530 ndm->ndm_family = tbl->family;
2531 ndm->ndm_pad1 = 0;
2532 ndm->ndm_pad2 = 0;
2533 ndm->ndm_flags = pn->flags | NTF_PROXY;
2534 ndm->ndm_type = RTN_UNICAST;
2535 ndm->ndm_ifindex = pn->dev ? pn->dev->ifindex : 0;
2536 ndm->ndm_state = NUD_NONE;
2537
2538 if (nla_put(skb, NDA_DST, tbl->key_len, pn->key))
2539 goto nla_put_failure;
2540
2541 if (pn->protocol && nla_put_u8(skb, NDA_PROTOCOL, pn->protocol))
2542 goto nla_put_failure;
2543
2544 nlmsg_end(skb, nlh);
2545 return 0;
2546
2547 nla_put_failure:
2548 nlmsg_cancel(skb, nlh);
2549 return -EMSGSIZE;
2550 }
2551
neigh_update_notify(struct neighbour * neigh,u32 nlmsg_pid)2552 static void neigh_update_notify(struct neighbour *neigh, u32 nlmsg_pid)
2553 {
2554 call_netevent_notifiers(NETEVENT_NEIGH_UPDATE, neigh);
2555 __neigh_notify(neigh, RTM_NEWNEIGH, 0, nlmsg_pid);
2556 }
2557
neigh_master_filtered(struct net_device * dev,int master_idx)2558 static bool neigh_master_filtered(struct net_device *dev, int master_idx)
2559 {
2560 struct net_device *master;
2561
2562 if (!master_idx)
2563 return false;
2564
2565 master = dev ? netdev_master_upper_dev_get(dev) : NULL;
2566 if (!master || master->ifindex != master_idx)
2567 return true;
2568
2569 return false;
2570 }
2571
neigh_ifindex_filtered(struct net_device * dev,int filter_idx)2572 static bool neigh_ifindex_filtered(struct net_device *dev, int filter_idx)
2573 {
2574 if (filter_idx && (!dev || dev->ifindex != filter_idx))
2575 return true;
2576
2577 return false;
2578 }
2579
2580 struct neigh_dump_filter {
2581 int master_idx;
2582 int dev_idx;
2583 };
2584
neigh_dump_table(struct neigh_table * tbl,struct sk_buff * skb,struct netlink_callback * cb,struct neigh_dump_filter * filter)2585 static int neigh_dump_table(struct neigh_table *tbl, struct sk_buff *skb,
2586 struct netlink_callback *cb,
2587 struct neigh_dump_filter *filter)
2588 {
2589 struct net *net = sock_net(skb->sk);
2590 struct neighbour *n;
2591 int rc, h, s_h = cb->args[1];
2592 int idx, s_idx = idx = cb->args[2];
2593 struct neigh_hash_table *nht;
2594 unsigned int flags = NLM_F_MULTI;
2595
2596 if (filter->dev_idx || filter->master_idx)
2597 flags |= NLM_F_DUMP_FILTERED;
2598
2599 rcu_read_lock_bh();
2600 nht = rcu_dereference_bh(tbl->nht);
2601
2602 for (h = s_h; h < (1 << nht->hash_shift); h++) {
2603 if (h > s_h)
2604 s_idx = 0;
2605 for (n = rcu_dereference_bh(nht->hash_buckets[h]), idx = 0;
2606 n != NULL;
2607 n = rcu_dereference_bh(n->next)) {
2608 if (idx < s_idx || !net_eq(dev_net(n->dev), net))
2609 goto next;
2610 if (neigh_ifindex_filtered(n->dev, filter->dev_idx) ||
2611 neigh_master_filtered(n->dev, filter->master_idx))
2612 goto next;
2613 if (neigh_fill_info(skb, n, NETLINK_CB(cb->skb).portid,
2614 cb->nlh->nlmsg_seq,
2615 RTM_NEWNEIGH,
2616 flags) < 0) {
2617 rc = -1;
2618 goto out;
2619 }
2620 next:
2621 idx++;
2622 }
2623 }
2624 rc = skb->len;
2625 out:
2626 rcu_read_unlock_bh();
2627 cb->args[1] = h;
2628 cb->args[2] = idx;
2629 return rc;
2630 }
2631
pneigh_dump_table(struct neigh_table * tbl,struct sk_buff * skb,struct netlink_callback * cb,struct neigh_dump_filter * filter)2632 static int pneigh_dump_table(struct neigh_table *tbl, struct sk_buff *skb,
2633 struct netlink_callback *cb,
2634 struct neigh_dump_filter *filter)
2635 {
2636 struct pneigh_entry *n;
2637 struct net *net = sock_net(skb->sk);
2638 int rc, h, s_h = cb->args[3];
2639 int idx, s_idx = idx = cb->args[4];
2640 unsigned int flags = NLM_F_MULTI;
2641
2642 if (filter->dev_idx || filter->master_idx)
2643 flags |= NLM_F_DUMP_FILTERED;
2644
2645 read_lock_bh(&tbl->lock);
2646
2647 for (h = s_h; h <= PNEIGH_HASHMASK; h++) {
2648 if (h > s_h)
2649 s_idx = 0;
2650 for (n = tbl->phash_buckets[h], idx = 0; n; n = n->next) {
2651 if (idx < s_idx || pneigh_net(n) != net)
2652 goto next;
2653 if (neigh_ifindex_filtered(n->dev, filter->dev_idx) ||
2654 neigh_master_filtered(n->dev, filter->master_idx))
2655 goto next;
2656 if (pneigh_fill_info(skb, n, NETLINK_CB(cb->skb).portid,
2657 cb->nlh->nlmsg_seq,
2658 RTM_NEWNEIGH, flags, tbl) < 0) {
2659 read_unlock_bh(&tbl->lock);
2660 rc = -1;
2661 goto out;
2662 }
2663 next:
2664 idx++;
2665 }
2666 }
2667
2668 read_unlock_bh(&tbl->lock);
2669 rc = skb->len;
2670 out:
2671 cb->args[3] = h;
2672 cb->args[4] = idx;
2673 return rc;
2674
2675 }
2676
neigh_valid_dump_req(const struct nlmsghdr * nlh,bool strict_check,struct neigh_dump_filter * filter,struct netlink_ext_ack * extack)2677 static int neigh_valid_dump_req(const struct nlmsghdr *nlh,
2678 bool strict_check,
2679 struct neigh_dump_filter *filter,
2680 struct netlink_ext_ack *extack)
2681 {
2682 struct nlattr *tb[NDA_MAX + 1];
2683 int err, i;
2684
2685 if (strict_check) {
2686 struct ndmsg *ndm;
2687
2688 if (nlh->nlmsg_len < nlmsg_msg_size(sizeof(*ndm))) {
2689 NL_SET_ERR_MSG(extack, "Invalid header for neighbor dump request");
2690 return -EINVAL;
2691 }
2692
2693 ndm = nlmsg_data(nlh);
2694 if (ndm->ndm_pad1 || ndm->ndm_pad2 || ndm->ndm_ifindex ||
2695 ndm->ndm_state || ndm->ndm_type) {
2696 NL_SET_ERR_MSG(extack, "Invalid values in header for neighbor dump request");
2697 return -EINVAL;
2698 }
2699
2700 if (ndm->ndm_flags & ~NTF_PROXY) {
2701 NL_SET_ERR_MSG(extack, "Invalid flags in header for neighbor dump request");
2702 return -EINVAL;
2703 }
2704
2705 err = nlmsg_parse_deprecated_strict(nlh, sizeof(struct ndmsg),
2706 tb, NDA_MAX, nda_policy,
2707 extack);
2708 } else {
2709 err = nlmsg_parse_deprecated(nlh, sizeof(struct ndmsg), tb,
2710 NDA_MAX, nda_policy, extack);
2711 }
2712 if (err < 0)
2713 return err;
2714
2715 for (i = 0; i <= NDA_MAX; ++i) {
2716 if (!tb[i])
2717 continue;
2718
2719 /* all new attributes should require strict_check */
2720 switch (i) {
2721 case NDA_IFINDEX:
2722 filter->dev_idx = nla_get_u32(tb[i]);
2723 break;
2724 case NDA_MASTER:
2725 filter->master_idx = nla_get_u32(tb[i]);
2726 break;
2727 default:
2728 if (strict_check) {
2729 NL_SET_ERR_MSG(extack, "Unsupported attribute in neighbor dump request");
2730 return -EINVAL;
2731 }
2732 }
2733 }
2734
2735 return 0;
2736 }
2737
neigh_dump_info(struct sk_buff * skb,struct netlink_callback * cb)2738 static int neigh_dump_info(struct sk_buff *skb, struct netlink_callback *cb)
2739 {
2740 const struct nlmsghdr *nlh = cb->nlh;
2741 struct neigh_dump_filter filter = {};
2742 struct neigh_table *tbl;
2743 int t, family, s_t;
2744 int proxy = 0;
2745 int err;
2746
2747 family = ((struct rtgenmsg *)nlmsg_data(nlh))->rtgen_family;
2748
2749 /* check for full ndmsg structure presence, family member is
2750 * the same for both structures
2751 */
2752 if (nlmsg_len(nlh) >= sizeof(struct ndmsg) &&
2753 ((struct ndmsg *)nlmsg_data(nlh))->ndm_flags == NTF_PROXY)
2754 proxy = 1;
2755
2756 err = neigh_valid_dump_req(nlh, cb->strict_check, &filter, cb->extack);
2757 if (err < 0 && cb->strict_check)
2758 return err;
2759
2760 s_t = cb->args[0];
2761
2762 for (t = 0; t < NEIGH_NR_TABLES; t++) {
2763 tbl = neigh_tables[t];
2764
2765 if (!tbl)
2766 continue;
2767 if (t < s_t || (family && tbl->family != family))
2768 continue;
2769 if (t > s_t)
2770 memset(&cb->args[1], 0, sizeof(cb->args) -
2771 sizeof(cb->args[0]));
2772 if (proxy)
2773 err = pneigh_dump_table(tbl, skb, cb, &filter);
2774 else
2775 err = neigh_dump_table(tbl, skb, cb, &filter);
2776 if (err < 0)
2777 break;
2778 }
2779
2780 cb->args[0] = t;
2781 return skb->len;
2782 }
2783
neigh_valid_get_req(const struct nlmsghdr * nlh,struct neigh_table ** tbl,void ** dst,int * dev_idx,u8 * ndm_flags,struct netlink_ext_ack * extack)2784 static int neigh_valid_get_req(const struct nlmsghdr *nlh,
2785 struct neigh_table **tbl,
2786 void **dst, int *dev_idx, u8 *ndm_flags,
2787 struct netlink_ext_ack *extack)
2788 {
2789 struct nlattr *tb[NDA_MAX + 1];
2790 struct ndmsg *ndm;
2791 int err, i;
2792
2793 if (nlh->nlmsg_len < nlmsg_msg_size(sizeof(*ndm))) {
2794 NL_SET_ERR_MSG(extack, "Invalid header for neighbor get request");
2795 return -EINVAL;
2796 }
2797
2798 ndm = nlmsg_data(nlh);
2799 if (ndm->ndm_pad1 || ndm->ndm_pad2 || ndm->ndm_state ||
2800 ndm->ndm_type) {
2801 NL_SET_ERR_MSG(extack, "Invalid values in header for neighbor get request");
2802 return -EINVAL;
2803 }
2804
2805 if (ndm->ndm_flags & ~NTF_PROXY) {
2806 NL_SET_ERR_MSG(extack, "Invalid flags in header for neighbor get request");
2807 return -EINVAL;
2808 }
2809
2810 err = nlmsg_parse_deprecated_strict(nlh, sizeof(struct ndmsg), tb,
2811 NDA_MAX, nda_policy, extack);
2812 if (err < 0)
2813 return err;
2814
2815 *ndm_flags = ndm->ndm_flags;
2816 *dev_idx = ndm->ndm_ifindex;
2817 *tbl = neigh_find_table(ndm->ndm_family);
2818 if (*tbl == NULL) {
2819 NL_SET_ERR_MSG(extack, "Unsupported family in header for neighbor get request");
2820 return -EAFNOSUPPORT;
2821 }
2822
2823 for (i = 0; i <= NDA_MAX; ++i) {
2824 if (!tb[i])
2825 continue;
2826
2827 switch (i) {
2828 case NDA_DST:
2829 if (nla_len(tb[i]) != (int)(*tbl)->key_len) {
2830 NL_SET_ERR_MSG(extack, "Invalid network address in neighbor get request");
2831 return -EINVAL;
2832 }
2833 *dst = nla_data(tb[i]);
2834 break;
2835 default:
2836 NL_SET_ERR_MSG(extack, "Unsupported attribute in neighbor get request");
2837 return -EINVAL;
2838 }
2839 }
2840
2841 return 0;
2842 }
2843
neigh_nlmsg_size(void)2844 static inline size_t neigh_nlmsg_size(void)
2845 {
2846 return NLMSG_ALIGN(sizeof(struct ndmsg))
2847 + nla_total_size(MAX_ADDR_LEN) /* NDA_DST */
2848 + nla_total_size(MAX_ADDR_LEN) /* NDA_LLADDR */
2849 + nla_total_size(sizeof(struct nda_cacheinfo))
2850 + nla_total_size(4) /* NDA_PROBES */
2851 + nla_total_size(1); /* NDA_PROTOCOL */
2852 }
2853
neigh_get_reply(struct net * net,struct neighbour * neigh,u32 pid,u32 seq)2854 static int neigh_get_reply(struct net *net, struct neighbour *neigh,
2855 u32 pid, u32 seq)
2856 {
2857 struct sk_buff *skb;
2858 int err = 0;
2859
2860 skb = nlmsg_new(neigh_nlmsg_size(), GFP_KERNEL);
2861 if (!skb)
2862 return -ENOBUFS;
2863
2864 err = neigh_fill_info(skb, neigh, pid, seq, RTM_NEWNEIGH, 0);
2865 if (err) {
2866 kfree_skb(skb);
2867 goto errout;
2868 }
2869
2870 err = rtnl_unicast(skb, net, pid);
2871 errout:
2872 return err;
2873 }
2874
pneigh_nlmsg_size(void)2875 static inline size_t pneigh_nlmsg_size(void)
2876 {
2877 return NLMSG_ALIGN(sizeof(struct ndmsg))
2878 + nla_total_size(MAX_ADDR_LEN) /* NDA_DST */
2879 + nla_total_size(1); /* NDA_PROTOCOL */
2880 }
2881
pneigh_get_reply(struct net * net,struct pneigh_entry * neigh,u32 pid,u32 seq,struct neigh_table * tbl)2882 static int pneigh_get_reply(struct net *net, struct pneigh_entry *neigh,
2883 u32 pid, u32 seq, struct neigh_table *tbl)
2884 {
2885 struct sk_buff *skb;
2886 int err = 0;
2887
2888 skb = nlmsg_new(pneigh_nlmsg_size(), GFP_KERNEL);
2889 if (!skb)
2890 return -ENOBUFS;
2891
2892 err = pneigh_fill_info(skb, neigh, pid, seq, RTM_NEWNEIGH, 0, tbl);
2893 if (err) {
2894 kfree_skb(skb);
2895 goto errout;
2896 }
2897
2898 err = rtnl_unicast(skb, net, pid);
2899 errout:
2900 return err;
2901 }
2902
neigh_get(struct sk_buff * in_skb,struct nlmsghdr * nlh,struct netlink_ext_ack * extack)2903 static int neigh_get(struct sk_buff *in_skb, struct nlmsghdr *nlh,
2904 struct netlink_ext_ack *extack)
2905 {
2906 struct net *net = sock_net(in_skb->sk);
2907 struct net_device *dev = NULL;
2908 struct neigh_table *tbl = NULL;
2909 struct neighbour *neigh;
2910 void *dst = NULL;
2911 u8 ndm_flags = 0;
2912 int dev_idx = 0;
2913 int err;
2914
2915 err = neigh_valid_get_req(nlh, &tbl, &dst, &dev_idx, &ndm_flags,
2916 extack);
2917 if (err < 0)
2918 return err;
2919
2920 if (dev_idx) {
2921 dev = __dev_get_by_index(net, dev_idx);
2922 if (!dev) {
2923 NL_SET_ERR_MSG(extack, "Unknown device ifindex");
2924 return -ENODEV;
2925 }
2926 }
2927
2928 if (!dst) {
2929 NL_SET_ERR_MSG(extack, "Network address not specified");
2930 return -EINVAL;
2931 }
2932
2933 if (ndm_flags & NTF_PROXY) {
2934 struct pneigh_entry *pn;
2935
2936 pn = pneigh_lookup(tbl, net, dst, dev, 0);
2937 if (!pn) {
2938 NL_SET_ERR_MSG(extack, "Proxy neighbour entry not found");
2939 return -ENOENT;
2940 }
2941 return pneigh_get_reply(net, pn, NETLINK_CB(in_skb).portid,
2942 nlh->nlmsg_seq, tbl);
2943 }
2944
2945 if (!dev) {
2946 NL_SET_ERR_MSG(extack, "No device specified");
2947 return -EINVAL;
2948 }
2949
2950 neigh = neigh_lookup(tbl, dst, dev);
2951 if (!neigh) {
2952 NL_SET_ERR_MSG(extack, "Neighbour entry not found");
2953 return -ENOENT;
2954 }
2955
2956 err = neigh_get_reply(net, neigh, NETLINK_CB(in_skb).portid,
2957 nlh->nlmsg_seq);
2958
2959 neigh_release(neigh);
2960
2961 return err;
2962 }
2963
neigh_for_each(struct neigh_table * tbl,void (* cb)(struct neighbour *,void *),void * cookie)2964 void neigh_for_each(struct neigh_table *tbl, void (*cb)(struct neighbour *, void *), void *cookie)
2965 {
2966 int chain;
2967 struct neigh_hash_table *nht;
2968
2969 rcu_read_lock_bh();
2970 nht = rcu_dereference_bh(tbl->nht);
2971
2972 read_lock(&tbl->lock); /* avoid resizes */
2973 for (chain = 0; chain < (1 << nht->hash_shift); chain++) {
2974 struct neighbour *n;
2975
2976 for (n = rcu_dereference_bh(nht->hash_buckets[chain]);
2977 n != NULL;
2978 n = rcu_dereference_bh(n->next))
2979 cb(n, cookie);
2980 }
2981 read_unlock(&tbl->lock);
2982 rcu_read_unlock_bh();
2983 }
2984 EXPORT_SYMBOL(neigh_for_each);
2985
2986 /* The tbl->lock must be held as a writer and BH disabled. */
__neigh_for_each_release(struct neigh_table * tbl,int (* cb)(struct neighbour *))2987 void __neigh_for_each_release(struct neigh_table *tbl,
2988 int (*cb)(struct neighbour *))
2989 {
2990 int chain;
2991 struct neigh_hash_table *nht;
2992
2993 nht = rcu_dereference_protected(tbl->nht,
2994 lockdep_is_held(&tbl->lock));
2995 for (chain = 0; chain < (1 << nht->hash_shift); chain++) {
2996 struct neighbour *n;
2997 struct neighbour __rcu **np;
2998
2999 np = &nht->hash_buckets[chain];
3000 while ((n = rcu_dereference_protected(*np,
3001 lockdep_is_held(&tbl->lock))) != NULL) {
3002 int release;
3003
3004 write_lock(&n->lock);
3005 release = cb(n);
3006 if (release) {
3007 rcu_assign_pointer(*np,
3008 rcu_dereference_protected(n->next,
3009 lockdep_is_held(&tbl->lock)));
3010 neigh_mark_dead(n);
3011 } else
3012 np = &n->next;
3013 write_unlock(&n->lock);
3014 if (release)
3015 neigh_cleanup_and_release(n);
3016 }
3017 }
3018 }
3019 EXPORT_SYMBOL(__neigh_for_each_release);
3020
neigh_xmit(int index,struct net_device * dev,const void * addr,struct sk_buff * skb)3021 int neigh_xmit(int index, struct net_device *dev,
3022 const void *addr, struct sk_buff *skb)
3023 {
3024 int err = -EAFNOSUPPORT;
3025 if (likely(index < NEIGH_NR_TABLES)) {
3026 struct neigh_table *tbl;
3027 struct neighbour *neigh;
3028
3029 tbl = neigh_tables[index];
3030 if (!tbl)
3031 goto out;
3032 rcu_read_lock_bh();
3033 if (index == NEIGH_ARP_TABLE) {
3034 u32 key = *((u32 *)addr);
3035
3036 neigh = __ipv4_neigh_lookup_noref(dev, key);
3037 } else {
3038 neigh = __neigh_lookup_noref(tbl, addr, dev);
3039 }
3040 if (!neigh)
3041 neigh = __neigh_create(tbl, addr, dev, false);
3042 err = PTR_ERR(neigh);
3043 if (IS_ERR(neigh)) {
3044 rcu_read_unlock_bh();
3045 goto out_kfree_skb;
3046 }
3047 err = neigh->output(neigh, skb);
3048 rcu_read_unlock_bh();
3049 }
3050 else if (index == NEIGH_LINK_TABLE) {
3051 err = dev_hard_header(skb, dev, ntohs(skb->protocol),
3052 addr, NULL, skb->len);
3053 if (err < 0)
3054 goto out_kfree_skb;
3055 err = dev_queue_xmit(skb);
3056 }
3057 out:
3058 return err;
3059 out_kfree_skb:
3060 kfree_skb(skb);
3061 goto out;
3062 }
3063 EXPORT_SYMBOL(neigh_xmit);
3064
3065 #ifdef CONFIG_PROC_FS
3066
neigh_get_first(struct seq_file * seq)3067 static struct neighbour *neigh_get_first(struct seq_file *seq)
3068 {
3069 struct neigh_seq_state *state = seq->private;
3070 struct net *net = seq_file_net(seq);
3071 struct neigh_hash_table *nht = state->nht;
3072 struct neighbour *n = NULL;
3073 int bucket;
3074
3075 state->flags &= ~NEIGH_SEQ_IS_PNEIGH;
3076 for (bucket = 0; bucket < (1 << nht->hash_shift); bucket++) {
3077 n = rcu_dereference_bh(nht->hash_buckets[bucket]);
3078
3079 while (n) {
3080 if (!net_eq(dev_net(n->dev), net))
3081 goto next;
3082 if (state->neigh_sub_iter) {
3083 loff_t fakep = 0;
3084 void *v;
3085
3086 v = state->neigh_sub_iter(state, n, &fakep);
3087 if (!v)
3088 goto next;
3089 }
3090 if (!(state->flags & NEIGH_SEQ_SKIP_NOARP))
3091 break;
3092 if (n->nud_state & ~NUD_NOARP)
3093 break;
3094 next:
3095 n = rcu_dereference_bh(n->next);
3096 }
3097
3098 if (n)
3099 break;
3100 }
3101 state->bucket = bucket;
3102
3103 return n;
3104 }
3105
neigh_get_next(struct seq_file * seq,struct neighbour * n,loff_t * pos)3106 static struct neighbour *neigh_get_next(struct seq_file *seq,
3107 struct neighbour *n,
3108 loff_t *pos)
3109 {
3110 struct neigh_seq_state *state = seq->private;
3111 struct net *net = seq_file_net(seq);
3112 struct neigh_hash_table *nht = state->nht;
3113
3114 if (state->neigh_sub_iter) {
3115 void *v = state->neigh_sub_iter(state, n, pos);
3116 if (v)
3117 return n;
3118 }
3119 n = rcu_dereference_bh(n->next);
3120
3121 while (1) {
3122 while (n) {
3123 if (!net_eq(dev_net(n->dev), net))
3124 goto next;
3125 if (state->neigh_sub_iter) {
3126 void *v = state->neigh_sub_iter(state, n, pos);
3127 if (v)
3128 return n;
3129 goto next;
3130 }
3131 if (!(state->flags & NEIGH_SEQ_SKIP_NOARP))
3132 break;
3133
3134 if (n->nud_state & ~NUD_NOARP)
3135 break;
3136 next:
3137 n = rcu_dereference_bh(n->next);
3138 }
3139
3140 if (n)
3141 break;
3142
3143 if (++state->bucket >= (1 << nht->hash_shift))
3144 break;
3145
3146 n = rcu_dereference_bh(nht->hash_buckets[state->bucket]);
3147 }
3148
3149 if (n && pos)
3150 --(*pos);
3151 return n;
3152 }
3153
neigh_get_idx(struct seq_file * seq,loff_t * pos)3154 static struct neighbour *neigh_get_idx(struct seq_file *seq, loff_t *pos)
3155 {
3156 struct neighbour *n = neigh_get_first(seq);
3157
3158 if (n) {
3159 --(*pos);
3160 while (*pos) {
3161 n = neigh_get_next(seq, n, pos);
3162 if (!n)
3163 break;
3164 }
3165 }
3166 return *pos ? NULL : n;
3167 }
3168
pneigh_get_first(struct seq_file * seq)3169 static struct pneigh_entry *pneigh_get_first(struct seq_file *seq)
3170 {
3171 struct neigh_seq_state *state = seq->private;
3172 struct net *net = seq_file_net(seq);
3173 struct neigh_table *tbl = state->tbl;
3174 struct pneigh_entry *pn = NULL;
3175 int bucket = state->bucket;
3176
3177 state->flags |= NEIGH_SEQ_IS_PNEIGH;
3178 for (bucket = 0; bucket <= PNEIGH_HASHMASK; bucket++) {
3179 pn = tbl->phash_buckets[bucket];
3180 while (pn && !net_eq(pneigh_net(pn), net))
3181 pn = pn->next;
3182 if (pn)
3183 break;
3184 }
3185 state->bucket = bucket;
3186
3187 return pn;
3188 }
3189
pneigh_get_next(struct seq_file * seq,struct pneigh_entry * pn,loff_t * pos)3190 static struct pneigh_entry *pneigh_get_next(struct seq_file *seq,
3191 struct pneigh_entry *pn,
3192 loff_t *pos)
3193 {
3194 struct neigh_seq_state *state = seq->private;
3195 struct net *net = seq_file_net(seq);
3196 struct neigh_table *tbl = state->tbl;
3197
3198 do {
3199 pn = pn->next;
3200 } while (pn && !net_eq(pneigh_net(pn), net));
3201
3202 while (!pn) {
3203 if (++state->bucket > PNEIGH_HASHMASK)
3204 break;
3205 pn = tbl->phash_buckets[state->bucket];
3206 while (pn && !net_eq(pneigh_net(pn), net))
3207 pn = pn->next;
3208 if (pn)
3209 break;
3210 }
3211
3212 if (pn && pos)
3213 --(*pos);
3214
3215 return pn;
3216 }
3217
pneigh_get_idx(struct seq_file * seq,loff_t * pos)3218 static struct pneigh_entry *pneigh_get_idx(struct seq_file *seq, loff_t *pos)
3219 {
3220 struct pneigh_entry *pn = pneigh_get_first(seq);
3221
3222 if (pn) {
3223 --(*pos);
3224 while (*pos) {
3225 pn = pneigh_get_next(seq, pn, pos);
3226 if (!pn)
3227 break;
3228 }
3229 }
3230 return *pos ? NULL : pn;
3231 }
3232
neigh_get_idx_any(struct seq_file * seq,loff_t * pos)3233 static void *neigh_get_idx_any(struct seq_file *seq, loff_t *pos)
3234 {
3235 struct neigh_seq_state *state = seq->private;
3236 void *rc;
3237 loff_t idxpos = *pos;
3238
3239 rc = neigh_get_idx(seq, &idxpos);
3240 if (!rc && !(state->flags & NEIGH_SEQ_NEIGH_ONLY))
3241 rc = pneigh_get_idx(seq, &idxpos);
3242
3243 return rc;
3244 }
3245
neigh_seq_start(struct seq_file * seq,loff_t * pos,struct neigh_table * tbl,unsigned int neigh_seq_flags)3246 void *neigh_seq_start(struct seq_file *seq, loff_t *pos, struct neigh_table *tbl, unsigned int neigh_seq_flags)
3247 __acquires(tbl->lock)
3248 __acquires(rcu_bh)
3249 {
3250 struct neigh_seq_state *state = seq->private;
3251
3252 state->tbl = tbl;
3253 state->bucket = 0;
3254 state->flags = (neigh_seq_flags & ~NEIGH_SEQ_IS_PNEIGH);
3255
3256 rcu_read_lock_bh();
3257 state->nht = rcu_dereference_bh(tbl->nht);
3258 read_lock(&tbl->lock);
3259
3260 return *pos ? neigh_get_idx_any(seq, pos) : SEQ_START_TOKEN;
3261 }
3262 EXPORT_SYMBOL(neigh_seq_start);
3263
neigh_seq_next(struct seq_file * seq,void * v,loff_t * pos)3264 void *neigh_seq_next(struct seq_file *seq, void *v, loff_t *pos)
3265 {
3266 struct neigh_seq_state *state;
3267 void *rc;
3268
3269 if (v == SEQ_START_TOKEN) {
3270 rc = neigh_get_first(seq);
3271 goto out;
3272 }
3273
3274 state = seq->private;
3275 if (!(state->flags & NEIGH_SEQ_IS_PNEIGH)) {
3276 rc = neigh_get_next(seq, v, NULL);
3277 if (rc)
3278 goto out;
3279 if (!(state->flags & NEIGH_SEQ_NEIGH_ONLY))
3280 rc = pneigh_get_first(seq);
3281 } else {
3282 BUG_ON(state->flags & NEIGH_SEQ_NEIGH_ONLY);
3283 rc = pneigh_get_next(seq, v, NULL);
3284 }
3285 out:
3286 ++(*pos);
3287 return rc;
3288 }
3289 EXPORT_SYMBOL(neigh_seq_next);
3290
neigh_seq_stop(struct seq_file * seq,void * v)3291 void neigh_seq_stop(struct seq_file *seq, void *v)
3292 __releases(tbl->lock)
3293 __releases(rcu_bh)
3294 {
3295 struct neigh_seq_state *state = seq->private;
3296 struct neigh_table *tbl = state->tbl;
3297
3298 read_unlock(&tbl->lock);
3299 rcu_read_unlock_bh();
3300 }
3301 EXPORT_SYMBOL(neigh_seq_stop);
3302
3303 /* statistics via seq_file */
3304
neigh_stat_seq_start(struct seq_file * seq,loff_t * pos)3305 static void *neigh_stat_seq_start(struct seq_file *seq, loff_t *pos)
3306 {
3307 struct neigh_table *tbl = PDE_DATA(file_inode(seq->file));
3308 int cpu;
3309
3310 if (*pos == 0)
3311 return SEQ_START_TOKEN;
3312
3313 for (cpu = *pos-1; cpu < nr_cpu_ids; ++cpu) {
3314 if (!cpu_possible(cpu))
3315 continue;
3316 *pos = cpu+1;
3317 return per_cpu_ptr(tbl->stats, cpu);
3318 }
3319 return NULL;
3320 }
3321
neigh_stat_seq_next(struct seq_file * seq,void * v,loff_t * pos)3322 static void *neigh_stat_seq_next(struct seq_file *seq, void *v, loff_t *pos)
3323 {
3324 struct neigh_table *tbl = PDE_DATA(file_inode(seq->file));
3325 int cpu;
3326
3327 for (cpu = *pos; cpu < nr_cpu_ids; ++cpu) {
3328 if (!cpu_possible(cpu))
3329 continue;
3330 *pos = cpu+1;
3331 return per_cpu_ptr(tbl->stats, cpu);
3332 }
3333 (*pos)++;
3334 return NULL;
3335 }
3336
neigh_stat_seq_stop(struct seq_file * seq,void * v)3337 static void neigh_stat_seq_stop(struct seq_file *seq, void *v)
3338 {
3339
3340 }
3341
neigh_stat_seq_show(struct seq_file * seq,void * v)3342 static int neigh_stat_seq_show(struct seq_file *seq, void *v)
3343 {
3344 struct neigh_table *tbl = PDE_DATA(file_inode(seq->file));
3345 struct neigh_statistics *st = v;
3346
3347 if (v == SEQ_START_TOKEN) {
3348 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 table_fulls\n");
3349 return 0;
3350 }
3351
3352 seq_printf(seq, "%08x %08lx %08lx %08lx %08lx %08lx %08lx "
3353 "%08lx %08lx %08lx %08lx %08lx %08lx\n",
3354 atomic_read(&tbl->entries),
3355
3356 st->allocs,
3357 st->destroys,
3358 st->hash_grows,
3359
3360 st->lookups,
3361 st->hits,
3362
3363 st->res_failed,
3364
3365 st->rcv_probes_mcast,
3366 st->rcv_probes_ucast,
3367
3368 st->periodic_gc_runs,
3369 st->forced_gc_runs,
3370 st->unres_discards,
3371 st->table_fulls
3372 );
3373
3374 return 0;
3375 }
3376
3377 static const struct seq_operations neigh_stat_seq_ops = {
3378 .start = neigh_stat_seq_start,
3379 .next = neigh_stat_seq_next,
3380 .stop = neigh_stat_seq_stop,
3381 .show = neigh_stat_seq_show,
3382 };
3383 #endif /* CONFIG_PROC_FS */
3384
__neigh_notify(struct neighbour * n,int type,int flags,u32 pid)3385 static void __neigh_notify(struct neighbour *n, int type, int flags,
3386 u32 pid)
3387 {
3388 struct net *net = dev_net(n->dev);
3389 struct sk_buff *skb;
3390 int err = -ENOBUFS;
3391
3392 skb = nlmsg_new(neigh_nlmsg_size(), GFP_ATOMIC);
3393 if (skb == NULL)
3394 goto errout;
3395
3396 err = neigh_fill_info(skb, n, pid, 0, type, flags);
3397 if (err < 0) {
3398 /* -EMSGSIZE implies BUG in neigh_nlmsg_size() */
3399 WARN_ON(err == -EMSGSIZE);
3400 kfree_skb(skb);
3401 goto errout;
3402 }
3403 rtnl_notify(skb, net, 0, RTNLGRP_NEIGH, NULL, GFP_ATOMIC);
3404 return;
3405 errout:
3406 if (err < 0)
3407 rtnl_set_sk_err(net, RTNLGRP_NEIGH, err);
3408 }
3409
neigh_app_ns(struct neighbour * n)3410 void neigh_app_ns(struct neighbour *n)
3411 {
3412 __neigh_notify(n, RTM_GETNEIGH, NLM_F_REQUEST, 0);
3413 }
3414 EXPORT_SYMBOL(neigh_app_ns);
3415
3416 #ifdef CONFIG_SYSCTL
3417 static int unres_qlen_max = INT_MAX / SKB_TRUESIZE(ETH_FRAME_LEN);
3418
proc_unres_qlen(struct ctl_table * ctl,int write,void * buffer,size_t * lenp,loff_t * ppos)3419 static int proc_unres_qlen(struct ctl_table *ctl, int write,
3420 void *buffer, size_t *lenp, loff_t *ppos)
3421 {
3422 int size, ret;
3423 struct ctl_table tmp = *ctl;
3424
3425 tmp.extra1 = SYSCTL_ZERO;
3426 tmp.extra2 = &unres_qlen_max;
3427 tmp.data = &size;
3428
3429 size = *(int *)ctl->data / SKB_TRUESIZE(ETH_FRAME_LEN);
3430 ret = proc_dointvec_minmax(&tmp, write, buffer, lenp, ppos);
3431
3432 if (write && !ret)
3433 *(int *)ctl->data = size * SKB_TRUESIZE(ETH_FRAME_LEN);
3434 return ret;
3435 }
3436
neigh_get_dev_parms_rcu(struct net_device * dev,int family)3437 static struct neigh_parms *neigh_get_dev_parms_rcu(struct net_device *dev,
3438 int family)
3439 {
3440 switch (family) {
3441 case AF_INET:
3442 return __in_dev_arp_parms_get_rcu(dev);
3443 case AF_INET6:
3444 return __in6_dev_nd_parms_get_rcu(dev);
3445 }
3446 return NULL;
3447 }
3448
neigh_copy_dflt_parms(struct net * net,struct neigh_parms * p,int index)3449 static void neigh_copy_dflt_parms(struct net *net, struct neigh_parms *p,
3450 int index)
3451 {
3452 struct net_device *dev;
3453 int family = neigh_parms_family(p);
3454
3455 rcu_read_lock();
3456 for_each_netdev_rcu(net, dev) {
3457 struct neigh_parms *dst_p =
3458 neigh_get_dev_parms_rcu(dev, family);
3459
3460 if (dst_p && !test_bit(index, dst_p->data_state))
3461 dst_p->data[index] = p->data[index];
3462 }
3463 rcu_read_unlock();
3464 }
3465
neigh_proc_update(struct ctl_table * ctl,int write)3466 static void neigh_proc_update(struct ctl_table *ctl, int write)
3467 {
3468 struct net_device *dev = ctl->extra1;
3469 struct neigh_parms *p = ctl->extra2;
3470 struct net *net = neigh_parms_net(p);
3471 int index = (int *) ctl->data - p->data;
3472
3473 if (!write)
3474 return;
3475
3476 set_bit(index, p->data_state);
3477 if (index == NEIGH_VAR_DELAY_PROBE_TIME)
3478 call_netevent_notifiers(NETEVENT_DELAY_PROBE_TIME_UPDATE, p);
3479 if (!dev) /* NULL dev means this is default value */
3480 neigh_copy_dflt_parms(net, p, index);
3481 }
3482
neigh_proc_dointvec_zero_intmax(struct ctl_table * ctl,int write,void * buffer,size_t * lenp,loff_t * ppos)3483 static int neigh_proc_dointvec_zero_intmax(struct ctl_table *ctl, int write,
3484 void *buffer, size_t *lenp,
3485 loff_t *ppos)
3486 {
3487 struct ctl_table tmp = *ctl;
3488 int ret;
3489
3490 tmp.extra1 = SYSCTL_ZERO;
3491 tmp.extra2 = SYSCTL_INT_MAX;
3492
3493 ret = proc_dointvec_minmax(&tmp, write, buffer, lenp, ppos);
3494 neigh_proc_update(ctl, write);
3495 return ret;
3496 }
3497
neigh_proc_dointvec(struct ctl_table * ctl,int write,void * buffer,size_t * lenp,loff_t * ppos)3498 int neigh_proc_dointvec(struct ctl_table *ctl, int write, void *buffer,
3499 size_t *lenp, loff_t *ppos)
3500 {
3501 int ret = proc_dointvec(ctl, write, buffer, lenp, ppos);
3502
3503 neigh_proc_update(ctl, write);
3504 return ret;
3505 }
3506 EXPORT_SYMBOL(neigh_proc_dointvec);
3507
neigh_proc_dointvec_jiffies(struct ctl_table * ctl,int write,void * buffer,size_t * lenp,loff_t * ppos)3508 int neigh_proc_dointvec_jiffies(struct ctl_table *ctl, int write, void *buffer,
3509 size_t *lenp, loff_t *ppos)
3510 {
3511 int ret = proc_dointvec_jiffies(ctl, write, buffer, lenp, ppos);
3512
3513 neigh_proc_update(ctl, write);
3514 return ret;
3515 }
3516 EXPORT_SYMBOL(neigh_proc_dointvec_jiffies);
3517
neigh_proc_dointvec_userhz_jiffies(struct ctl_table * ctl,int write,void * buffer,size_t * lenp,loff_t * ppos)3518 static int neigh_proc_dointvec_userhz_jiffies(struct ctl_table *ctl, int write,
3519 void *buffer, size_t *lenp,
3520 loff_t *ppos)
3521 {
3522 int ret = proc_dointvec_userhz_jiffies(ctl, write, buffer, lenp, ppos);
3523
3524 neigh_proc_update(ctl, write);
3525 return ret;
3526 }
3527
neigh_proc_dointvec_ms_jiffies(struct ctl_table * ctl,int write,void * buffer,size_t * lenp,loff_t * ppos)3528 int neigh_proc_dointvec_ms_jiffies(struct ctl_table *ctl, int write,
3529 void *buffer, size_t *lenp, loff_t *ppos)
3530 {
3531 int ret = proc_dointvec_ms_jiffies(ctl, write, buffer, lenp, ppos);
3532
3533 neigh_proc_update(ctl, write);
3534 return ret;
3535 }
3536 EXPORT_SYMBOL(neigh_proc_dointvec_ms_jiffies);
3537
neigh_proc_dointvec_unres_qlen(struct ctl_table * ctl,int write,void * buffer,size_t * lenp,loff_t * ppos)3538 static int neigh_proc_dointvec_unres_qlen(struct ctl_table *ctl, int write,
3539 void *buffer, size_t *lenp,
3540 loff_t *ppos)
3541 {
3542 int ret = proc_unres_qlen(ctl, write, buffer, lenp, ppos);
3543
3544 neigh_proc_update(ctl, write);
3545 return ret;
3546 }
3547
neigh_proc_base_reachable_time(struct ctl_table * ctl,int write,void * buffer,size_t * lenp,loff_t * ppos)3548 static int neigh_proc_base_reachable_time(struct ctl_table *ctl, int write,
3549 void *buffer, size_t *lenp,
3550 loff_t *ppos)
3551 {
3552 struct neigh_parms *p = ctl->extra2;
3553 int ret;
3554
3555 if (strcmp(ctl->procname, "base_reachable_time") == 0)
3556 ret = neigh_proc_dointvec_jiffies(ctl, write, buffer, lenp, ppos);
3557 else if (strcmp(ctl->procname, "base_reachable_time_ms") == 0)
3558 ret = neigh_proc_dointvec_ms_jiffies(ctl, write, buffer, lenp, ppos);
3559 else
3560 ret = -1;
3561
3562 if (write && ret == 0) {
3563 /* update reachable_time as well, otherwise, the change will
3564 * only be effective after the next time neigh_periodic_work
3565 * decides to recompute it
3566 */
3567 p->reachable_time =
3568 neigh_rand_reach_time(NEIGH_VAR(p, BASE_REACHABLE_TIME));
3569 }
3570 return ret;
3571 }
3572
3573 #define NEIGH_PARMS_DATA_OFFSET(index) \
3574 (&((struct neigh_parms *) 0)->data[index])
3575
3576 #define NEIGH_SYSCTL_ENTRY(attr, data_attr, name, mval, proc) \
3577 [NEIGH_VAR_ ## attr] = { \
3578 .procname = name, \
3579 .data = NEIGH_PARMS_DATA_OFFSET(NEIGH_VAR_ ## data_attr), \
3580 .maxlen = sizeof(int), \
3581 .mode = mval, \
3582 .proc_handler = proc, \
3583 }
3584
3585 #define NEIGH_SYSCTL_ZERO_INTMAX_ENTRY(attr, name) \
3586 NEIGH_SYSCTL_ENTRY(attr, attr, name, 0644, neigh_proc_dointvec_zero_intmax)
3587
3588 #define NEIGH_SYSCTL_JIFFIES_ENTRY(attr, name) \
3589 NEIGH_SYSCTL_ENTRY(attr, attr, name, 0644, neigh_proc_dointvec_jiffies)
3590
3591 #define NEIGH_SYSCTL_USERHZ_JIFFIES_ENTRY(attr, name) \
3592 NEIGH_SYSCTL_ENTRY(attr, attr, name, 0644, neigh_proc_dointvec_userhz_jiffies)
3593
3594 #define NEIGH_SYSCTL_MS_JIFFIES_REUSED_ENTRY(attr, data_attr, name) \
3595 NEIGH_SYSCTL_ENTRY(attr, data_attr, name, 0644, neigh_proc_dointvec_ms_jiffies)
3596
3597 #define NEIGH_SYSCTL_UNRES_QLEN_REUSED_ENTRY(attr, data_attr, name) \
3598 NEIGH_SYSCTL_ENTRY(attr, data_attr, name, 0644, neigh_proc_dointvec_unres_qlen)
3599
3600 static struct neigh_sysctl_table {
3601 struct ctl_table_header *sysctl_header;
3602 struct ctl_table neigh_vars[NEIGH_VAR_MAX + 1];
3603 } neigh_sysctl_template __read_mostly = {
3604 .neigh_vars = {
3605 NEIGH_SYSCTL_ZERO_INTMAX_ENTRY(MCAST_PROBES, "mcast_solicit"),
3606 NEIGH_SYSCTL_ZERO_INTMAX_ENTRY(UCAST_PROBES, "ucast_solicit"),
3607 NEIGH_SYSCTL_ZERO_INTMAX_ENTRY(APP_PROBES, "app_solicit"),
3608 NEIGH_SYSCTL_ZERO_INTMAX_ENTRY(MCAST_REPROBES, "mcast_resolicit"),
3609 NEIGH_SYSCTL_USERHZ_JIFFIES_ENTRY(RETRANS_TIME, "retrans_time"),
3610 NEIGH_SYSCTL_JIFFIES_ENTRY(BASE_REACHABLE_TIME, "base_reachable_time"),
3611 NEIGH_SYSCTL_JIFFIES_ENTRY(DELAY_PROBE_TIME, "delay_first_probe_time"),
3612 NEIGH_SYSCTL_JIFFIES_ENTRY(GC_STALETIME, "gc_stale_time"),
3613 NEIGH_SYSCTL_ZERO_INTMAX_ENTRY(QUEUE_LEN_BYTES, "unres_qlen_bytes"),
3614 NEIGH_SYSCTL_ZERO_INTMAX_ENTRY(PROXY_QLEN, "proxy_qlen"),
3615 NEIGH_SYSCTL_USERHZ_JIFFIES_ENTRY(ANYCAST_DELAY, "anycast_delay"),
3616 NEIGH_SYSCTL_USERHZ_JIFFIES_ENTRY(PROXY_DELAY, "proxy_delay"),
3617 NEIGH_SYSCTL_USERHZ_JIFFIES_ENTRY(LOCKTIME, "locktime"),
3618 NEIGH_SYSCTL_UNRES_QLEN_REUSED_ENTRY(QUEUE_LEN, QUEUE_LEN_BYTES, "unres_qlen"),
3619 NEIGH_SYSCTL_MS_JIFFIES_REUSED_ENTRY(RETRANS_TIME_MS, RETRANS_TIME, "retrans_time_ms"),
3620 NEIGH_SYSCTL_MS_JIFFIES_REUSED_ENTRY(BASE_REACHABLE_TIME_MS, BASE_REACHABLE_TIME, "base_reachable_time_ms"),
3621 [NEIGH_VAR_GC_INTERVAL] = {
3622 .procname = "gc_interval",
3623 .maxlen = sizeof(int),
3624 .mode = 0644,
3625 .proc_handler = proc_dointvec_jiffies,
3626 },
3627 [NEIGH_VAR_GC_THRESH1] = {
3628 .procname = "gc_thresh1",
3629 .maxlen = sizeof(int),
3630 .mode = 0644,
3631 .extra1 = SYSCTL_ZERO,
3632 .extra2 = SYSCTL_INT_MAX,
3633 .proc_handler = proc_dointvec_minmax,
3634 },
3635 [NEIGH_VAR_GC_THRESH2] = {
3636 .procname = "gc_thresh2",
3637 .maxlen = sizeof(int),
3638 .mode = 0644,
3639 .extra1 = SYSCTL_ZERO,
3640 .extra2 = SYSCTL_INT_MAX,
3641 .proc_handler = proc_dointvec_minmax,
3642 },
3643 [NEIGH_VAR_GC_THRESH3] = {
3644 .procname = "gc_thresh3",
3645 .maxlen = sizeof(int),
3646 .mode = 0644,
3647 .extra1 = SYSCTL_ZERO,
3648 .extra2 = SYSCTL_INT_MAX,
3649 .proc_handler = proc_dointvec_minmax,
3650 },
3651 {},
3652 },
3653 };
3654
neigh_sysctl_register(struct net_device * dev,struct neigh_parms * p,proc_handler * handler)3655 int neigh_sysctl_register(struct net_device *dev, struct neigh_parms *p,
3656 proc_handler *handler)
3657 {
3658 int i;
3659 struct neigh_sysctl_table *t;
3660 const char *dev_name_source;
3661 char neigh_path[ sizeof("net//neigh/") + IFNAMSIZ + IFNAMSIZ ];
3662 char *p_name;
3663
3664 t = kmemdup(&neigh_sysctl_template, sizeof(*t), GFP_KERNEL);
3665 if (!t)
3666 goto err;
3667
3668 for (i = 0; i < NEIGH_VAR_GC_INTERVAL; i++) {
3669 t->neigh_vars[i].data += (long) p;
3670 t->neigh_vars[i].extra1 = dev;
3671 t->neigh_vars[i].extra2 = p;
3672 }
3673
3674 if (dev) {
3675 dev_name_source = dev->name;
3676 /* Terminate the table early */
3677 memset(&t->neigh_vars[NEIGH_VAR_GC_INTERVAL], 0,
3678 sizeof(t->neigh_vars[NEIGH_VAR_GC_INTERVAL]));
3679 } else {
3680 struct neigh_table *tbl = p->tbl;
3681 dev_name_source = "default";
3682 t->neigh_vars[NEIGH_VAR_GC_INTERVAL].data = &tbl->gc_interval;
3683 t->neigh_vars[NEIGH_VAR_GC_THRESH1].data = &tbl->gc_thresh1;
3684 t->neigh_vars[NEIGH_VAR_GC_THRESH2].data = &tbl->gc_thresh2;
3685 t->neigh_vars[NEIGH_VAR_GC_THRESH3].data = &tbl->gc_thresh3;
3686 }
3687
3688 if (handler) {
3689 /* RetransTime */
3690 t->neigh_vars[NEIGH_VAR_RETRANS_TIME].proc_handler = handler;
3691 /* ReachableTime */
3692 t->neigh_vars[NEIGH_VAR_BASE_REACHABLE_TIME].proc_handler = handler;
3693 /* RetransTime (in milliseconds)*/
3694 t->neigh_vars[NEIGH_VAR_RETRANS_TIME_MS].proc_handler = handler;
3695 /* ReachableTime (in milliseconds) */
3696 t->neigh_vars[NEIGH_VAR_BASE_REACHABLE_TIME_MS].proc_handler = handler;
3697 } else {
3698 /* Those handlers will update p->reachable_time after
3699 * base_reachable_time(_ms) is set to ensure the new timer starts being
3700 * applied after the next neighbour update instead of waiting for
3701 * neigh_periodic_work to update its value (can be multiple minutes)
3702 * So any handler that replaces them should do this as well
3703 */
3704 /* ReachableTime */
3705 t->neigh_vars[NEIGH_VAR_BASE_REACHABLE_TIME].proc_handler =
3706 neigh_proc_base_reachable_time;
3707 /* ReachableTime (in milliseconds) */
3708 t->neigh_vars[NEIGH_VAR_BASE_REACHABLE_TIME_MS].proc_handler =
3709 neigh_proc_base_reachable_time;
3710 }
3711
3712 /* Don't export sysctls to unprivileged users */
3713 if (neigh_parms_net(p)->user_ns != &init_user_ns)
3714 t->neigh_vars[0].procname = NULL;
3715
3716 switch (neigh_parms_family(p)) {
3717 case AF_INET:
3718 p_name = "ipv4";
3719 break;
3720 case AF_INET6:
3721 p_name = "ipv6";
3722 break;
3723 default:
3724 BUG();
3725 }
3726
3727 snprintf(neigh_path, sizeof(neigh_path), "net/%s/neigh/%s",
3728 p_name, dev_name_source);
3729 t->sysctl_header =
3730 register_net_sysctl(neigh_parms_net(p), neigh_path, t->neigh_vars);
3731 if (!t->sysctl_header)
3732 goto free;
3733
3734 p->sysctl_table = t;
3735 return 0;
3736
3737 free:
3738 kfree(t);
3739 err:
3740 return -ENOBUFS;
3741 }
3742 EXPORT_SYMBOL(neigh_sysctl_register);
3743
neigh_sysctl_unregister(struct neigh_parms * p)3744 void neigh_sysctl_unregister(struct neigh_parms *p)
3745 {
3746 if (p->sysctl_table) {
3747 struct neigh_sysctl_table *t = p->sysctl_table;
3748 p->sysctl_table = NULL;
3749 unregister_net_sysctl_table(t->sysctl_header);
3750 kfree(t);
3751 }
3752 }
3753 EXPORT_SYMBOL(neigh_sysctl_unregister);
3754
3755 #endif /* CONFIG_SYSCTL */
3756
neigh_init(void)3757 static int __init neigh_init(void)
3758 {
3759 rtnl_register(PF_UNSPEC, RTM_NEWNEIGH, neigh_add, NULL, 0);
3760 rtnl_register(PF_UNSPEC, RTM_DELNEIGH, neigh_delete, NULL, 0);
3761 rtnl_register(PF_UNSPEC, RTM_GETNEIGH, neigh_get, neigh_dump_info, 0);
3762
3763 rtnl_register(PF_UNSPEC, RTM_GETNEIGHTBL, NULL, neightbl_dump_info,
3764 0);
3765 rtnl_register(PF_UNSPEC, RTM_SETNEIGHTBL, neightbl_set, NULL, 0);
3766
3767 return 0;
3768 }
3769
3770 subsys_initcall(neigh_init);
3771