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