• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // SPDX-License-Identifier: GPL-2.0
2 /* Generic nexthop implementation
3  *
4  * Copyright (c) 2017-19 Cumulus Networks
5  * Copyright (c) 2017-19 David Ahern <dsa@cumulusnetworks.com>
6  */
7 
8 #include <linux/nexthop.h>
9 #include <linux/rtnetlink.h>
10 #include <linux/slab.h>
11 #include <net/arp.h>
12 #include <net/ipv6_stubs.h>
13 #include <net/lwtunnel.h>
14 #include <net/ndisc.h>
15 #include <net/nexthop.h>
16 #include <net/route.h>
17 #include <net/sock.h>
18 
19 static void remove_nexthop(struct net *net, struct nexthop *nh,
20 			   struct nl_info *nlinfo);
21 
22 #define NH_DEV_HASHBITS  8
23 #define NH_DEV_HASHSIZE (1U << NH_DEV_HASHBITS)
24 
25 static const struct nla_policy rtm_nh_policy[NHA_MAX + 1] = {
26 	[NHA_ID]		= { .type = NLA_U32 },
27 	[NHA_GROUP]		= { .type = NLA_BINARY },
28 	[NHA_GROUP_TYPE]	= { .type = NLA_U16 },
29 	[NHA_BLACKHOLE]		= { .type = NLA_FLAG },
30 	[NHA_OIF]		= { .type = NLA_U32 },
31 	[NHA_GATEWAY]		= { .type = NLA_BINARY },
32 	[NHA_ENCAP_TYPE]	= { .type = NLA_U16 },
33 	[NHA_ENCAP]		= { .type = NLA_NESTED },
34 	[NHA_GROUPS]		= { .type = NLA_FLAG },
35 	[NHA_MASTER]		= { .type = NLA_U32 },
36 	[NHA_FDB]		= { .type = NLA_FLAG },
37 };
38 
call_nexthop_notifiers(struct net * net,enum nexthop_event_type event_type,struct nexthop * nh)39 static int call_nexthop_notifiers(struct net *net,
40 				  enum nexthop_event_type event_type,
41 				  struct nexthop *nh)
42 {
43 	int err;
44 
45 	err = blocking_notifier_call_chain(&net->nexthop.notifier_chain,
46 					   event_type, nh);
47 	return notifier_to_errno(err);
48 }
49 
nh_dev_hashfn(unsigned int val)50 static unsigned int nh_dev_hashfn(unsigned int val)
51 {
52 	unsigned int mask = NH_DEV_HASHSIZE - 1;
53 
54 	return (val ^
55 		(val >> NH_DEV_HASHBITS) ^
56 		(val >> (NH_DEV_HASHBITS * 2))) & mask;
57 }
58 
nexthop_devhash_add(struct net * net,struct nh_info * nhi)59 static void nexthop_devhash_add(struct net *net, struct nh_info *nhi)
60 {
61 	struct net_device *dev = nhi->fib_nhc.nhc_dev;
62 	struct hlist_head *head;
63 	unsigned int hash;
64 
65 	WARN_ON(!dev);
66 
67 	hash = nh_dev_hashfn(dev->ifindex);
68 	head = &net->nexthop.devhash[hash];
69 	hlist_add_head(&nhi->dev_hash, head);
70 }
71 
nexthop_free_mpath(struct nexthop * nh)72 static void nexthop_free_mpath(struct nexthop *nh)
73 {
74 	struct nh_group *nhg;
75 	int i;
76 
77 	nhg = rcu_dereference_raw(nh->nh_grp);
78 	for (i = 0; i < nhg->num_nh; ++i) {
79 		struct nh_grp_entry *nhge = &nhg->nh_entries[i];
80 
81 		WARN_ON(!list_empty(&nhge->nh_list));
82 		nexthop_put(nhge->nh);
83 	}
84 
85 	WARN_ON(nhg->spare == nhg);
86 
87 	kfree(nhg->spare);
88 	kfree(nhg);
89 }
90 
nexthop_free_single(struct nexthop * nh)91 static void nexthop_free_single(struct nexthop *nh)
92 {
93 	struct nh_info *nhi;
94 
95 	nhi = rcu_dereference_raw(nh->nh_info);
96 	switch (nhi->family) {
97 	case AF_INET:
98 		fib_nh_release(nh->net, &nhi->fib_nh);
99 		break;
100 	case AF_INET6:
101 		ipv6_stub->fib6_nh_release(&nhi->fib6_nh);
102 		break;
103 	}
104 	kfree(nhi);
105 }
106 
nexthop_free_rcu(struct rcu_head * head)107 void nexthop_free_rcu(struct rcu_head *head)
108 {
109 	struct nexthop *nh = container_of(head, struct nexthop, rcu);
110 
111 	if (nh->is_group)
112 		nexthop_free_mpath(nh);
113 	else
114 		nexthop_free_single(nh);
115 
116 	kfree(nh);
117 }
118 EXPORT_SYMBOL_GPL(nexthop_free_rcu);
119 
nexthop_alloc(void)120 static struct nexthop *nexthop_alloc(void)
121 {
122 	struct nexthop *nh;
123 
124 	nh = kzalloc(sizeof(struct nexthop), GFP_KERNEL);
125 	if (nh) {
126 		INIT_LIST_HEAD(&nh->fi_list);
127 		INIT_LIST_HEAD(&nh->f6i_list);
128 		INIT_LIST_HEAD(&nh->grp_list);
129 		INIT_LIST_HEAD(&nh->fdb_list);
130 	}
131 	return nh;
132 }
133 
nexthop_grp_alloc(u16 num_nh)134 static struct nh_group *nexthop_grp_alloc(u16 num_nh)
135 {
136 	struct nh_group *nhg;
137 
138 	nhg = kzalloc(struct_size(nhg, nh_entries, num_nh), GFP_KERNEL);
139 	if (nhg)
140 		nhg->num_nh = num_nh;
141 
142 	return nhg;
143 }
144 
nh_base_seq_inc(struct net * net)145 static void nh_base_seq_inc(struct net *net)
146 {
147 	while (++net->nexthop.seq == 0)
148 		;
149 }
150 
151 /* no reference taken; rcu lock or rtnl must be held */
nexthop_find_by_id(struct net * net,u32 id)152 struct nexthop *nexthop_find_by_id(struct net *net, u32 id)
153 {
154 	struct rb_node **pp, *parent = NULL, *next;
155 
156 	pp = &net->nexthop.rb_root.rb_node;
157 	while (1) {
158 		struct nexthop *nh;
159 
160 		next = rcu_dereference_raw(*pp);
161 		if (!next)
162 			break;
163 		parent = next;
164 
165 		nh = rb_entry(parent, struct nexthop, rb_node);
166 		if (id < nh->id)
167 			pp = &next->rb_left;
168 		else if (id > nh->id)
169 			pp = &next->rb_right;
170 		else
171 			return nh;
172 	}
173 	return NULL;
174 }
175 EXPORT_SYMBOL_GPL(nexthop_find_by_id);
176 
177 /* used for auto id allocation; called with rtnl held */
nh_find_unused_id(struct net * net)178 static u32 nh_find_unused_id(struct net *net)
179 {
180 	u32 id_start = net->nexthop.last_id_allocated;
181 
182 	while (1) {
183 		net->nexthop.last_id_allocated++;
184 		if (net->nexthop.last_id_allocated == id_start)
185 			break;
186 
187 		if (!nexthop_find_by_id(net, net->nexthop.last_id_allocated))
188 			return net->nexthop.last_id_allocated;
189 	}
190 	return 0;
191 }
192 
nla_put_nh_group(struct sk_buff * skb,struct nh_group * nhg)193 static int nla_put_nh_group(struct sk_buff *skb, struct nh_group *nhg)
194 {
195 	struct nexthop_grp *p;
196 	size_t len = nhg->num_nh * sizeof(*p);
197 	struct nlattr *nla;
198 	u16 group_type = 0;
199 	int i;
200 
201 	if (nhg->mpath)
202 		group_type = NEXTHOP_GRP_TYPE_MPATH;
203 
204 	if (nla_put_u16(skb, NHA_GROUP_TYPE, group_type))
205 		goto nla_put_failure;
206 
207 	nla = nla_reserve(skb, NHA_GROUP, len);
208 	if (!nla)
209 		goto nla_put_failure;
210 
211 	p = nla_data(nla);
212 	for (i = 0; i < nhg->num_nh; ++i) {
213 		p->id = nhg->nh_entries[i].nh->id;
214 		p->weight = nhg->nh_entries[i].weight - 1;
215 		p += 1;
216 	}
217 
218 	return 0;
219 
220 nla_put_failure:
221 	return -EMSGSIZE;
222 }
223 
nh_fill_node(struct sk_buff * skb,struct nexthop * nh,int event,u32 portid,u32 seq,unsigned int nlflags)224 static int nh_fill_node(struct sk_buff *skb, struct nexthop *nh,
225 			int event, u32 portid, u32 seq, unsigned int nlflags)
226 {
227 	struct fib6_nh *fib6_nh;
228 	struct fib_nh *fib_nh;
229 	struct nlmsghdr *nlh;
230 	struct nh_info *nhi;
231 	struct nhmsg *nhm;
232 
233 	nlh = nlmsg_put(skb, portid, seq, event, sizeof(*nhm), nlflags);
234 	if (!nlh)
235 		return -EMSGSIZE;
236 
237 	nhm = nlmsg_data(nlh);
238 	nhm->nh_family = AF_UNSPEC;
239 	nhm->nh_flags = nh->nh_flags;
240 	nhm->nh_protocol = nh->protocol;
241 	nhm->nh_scope = 0;
242 	nhm->resvd = 0;
243 
244 	if (nla_put_u32(skb, NHA_ID, nh->id))
245 		goto nla_put_failure;
246 
247 	if (nh->is_group) {
248 		struct nh_group *nhg = rtnl_dereference(nh->nh_grp);
249 
250 		if (nhg->fdb_nh && nla_put_flag(skb, NHA_FDB))
251 			goto nla_put_failure;
252 		if (nla_put_nh_group(skb, nhg))
253 			goto nla_put_failure;
254 		goto out;
255 	}
256 
257 	nhi = rtnl_dereference(nh->nh_info);
258 	nhm->nh_family = nhi->family;
259 	if (nhi->reject_nh) {
260 		if (nla_put_flag(skb, NHA_BLACKHOLE))
261 			goto nla_put_failure;
262 		goto out;
263 	} else if (nhi->fdb_nh) {
264 		if (nla_put_flag(skb, NHA_FDB))
265 			goto nla_put_failure;
266 	} else {
267 		const struct net_device *dev;
268 
269 		dev = nhi->fib_nhc.nhc_dev;
270 		if (dev && nla_put_u32(skb, NHA_OIF, dev->ifindex))
271 			goto nla_put_failure;
272 	}
273 
274 	nhm->nh_scope = nhi->fib_nhc.nhc_scope;
275 	switch (nhi->family) {
276 	case AF_INET:
277 		fib_nh = &nhi->fib_nh;
278 		if (fib_nh->fib_nh_gw_family &&
279 		    nla_put_be32(skb, NHA_GATEWAY, fib_nh->fib_nh_gw4))
280 			goto nla_put_failure;
281 		break;
282 
283 	case AF_INET6:
284 		fib6_nh = &nhi->fib6_nh;
285 		if (fib6_nh->fib_nh_gw_family &&
286 		    nla_put_in6_addr(skb, NHA_GATEWAY, &fib6_nh->fib_nh_gw6))
287 			goto nla_put_failure;
288 		break;
289 	}
290 
291 	if (nhi->fib_nhc.nhc_lwtstate &&
292 	    lwtunnel_fill_encap(skb, nhi->fib_nhc.nhc_lwtstate,
293 				NHA_ENCAP, NHA_ENCAP_TYPE) < 0)
294 		goto nla_put_failure;
295 
296 out:
297 	nlmsg_end(skb, nlh);
298 	return 0;
299 
300 nla_put_failure:
301 	nlmsg_cancel(skb, nlh);
302 	return -EMSGSIZE;
303 }
304 
nh_nlmsg_size_grp(struct nexthop * nh)305 static size_t nh_nlmsg_size_grp(struct nexthop *nh)
306 {
307 	struct nh_group *nhg = rtnl_dereference(nh->nh_grp);
308 	size_t sz = sizeof(struct nexthop_grp) * nhg->num_nh;
309 
310 	return nla_total_size(sz) +
311 	       nla_total_size(2);  /* NHA_GROUP_TYPE */
312 }
313 
nh_nlmsg_size_single(struct nexthop * nh)314 static size_t nh_nlmsg_size_single(struct nexthop *nh)
315 {
316 	struct nh_info *nhi = rtnl_dereference(nh->nh_info);
317 	size_t sz;
318 
319 	/* covers NHA_BLACKHOLE since NHA_OIF and BLACKHOLE
320 	 * are mutually exclusive
321 	 */
322 	sz = nla_total_size(4);  /* NHA_OIF */
323 
324 	switch (nhi->family) {
325 	case AF_INET:
326 		if (nhi->fib_nh.fib_nh_gw_family)
327 			sz += nla_total_size(4);  /* NHA_GATEWAY */
328 		break;
329 
330 	case AF_INET6:
331 		/* NHA_GATEWAY */
332 		if (nhi->fib6_nh.fib_nh_gw_family)
333 			sz += nla_total_size(sizeof(const struct in6_addr));
334 		break;
335 	}
336 
337 	if (nhi->fib_nhc.nhc_lwtstate) {
338 		sz += lwtunnel_get_encap_size(nhi->fib_nhc.nhc_lwtstate);
339 		sz += nla_total_size(2);  /* NHA_ENCAP_TYPE */
340 	}
341 
342 	return sz;
343 }
344 
nh_nlmsg_size(struct nexthop * nh)345 static size_t nh_nlmsg_size(struct nexthop *nh)
346 {
347 	size_t sz = NLMSG_ALIGN(sizeof(struct nhmsg));
348 
349 	sz += nla_total_size(4); /* NHA_ID */
350 
351 	if (nh->is_group)
352 		sz += nh_nlmsg_size_grp(nh);
353 	else
354 		sz += nh_nlmsg_size_single(nh);
355 
356 	return sz;
357 }
358 
nexthop_notify(int event,struct nexthop * nh,struct nl_info * info)359 static void nexthop_notify(int event, struct nexthop *nh, struct nl_info *info)
360 {
361 	unsigned int nlflags = info->nlh ? info->nlh->nlmsg_flags : 0;
362 	u32 seq = info->nlh ? info->nlh->nlmsg_seq : 0;
363 	struct sk_buff *skb;
364 	int err = -ENOBUFS;
365 
366 	skb = nlmsg_new(nh_nlmsg_size(nh), gfp_any());
367 	if (!skb)
368 		goto errout;
369 
370 	err = nh_fill_node(skb, nh, event, info->portid, seq, nlflags);
371 	if (err < 0) {
372 		/* -EMSGSIZE implies BUG in nh_nlmsg_size() */
373 		WARN_ON(err == -EMSGSIZE);
374 		kfree_skb(skb);
375 		goto errout;
376 	}
377 
378 	rtnl_notify(skb, info->nl_net, info->portid, RTNLGRP_NEXTHOP,
379 		    info->nlh, gfp_any());
380 	return;
381 errout:
382 	if (err < 0)
383 		rtnl_set_sk_err(info->nl_net, RTNLGRP_NEXTHOP, err);
384 }
385 
valid_group_nh(struct nexthop * nh,unsigned int npaths,bool * is_fdb,struct netlink_ext_ack * extack)386 static bool valid_group_nh(struct nexthop *nh, unsigned int npaths,
387 			   bool *is_fdb, struct netlink_ext_ack *extack)
388 {
389 	if (nh->is_group) {
390 		struct nh_group *nhg = rtnl_dereference(nh->nh_grp);
391 
392 		/* nested multipath (group within a group) is not
393 		 * supported
394 		 */
395 		if (nhg->mpath) {
396 			NL_SET_ERR_MSG(extack,
397 				       "Multipath group can not be a nexthop within a group");
398 			return false;
399 		}
400 		*is_fdb = nhg->fdb_nh;
401 	} else {
402 		struct nh_info *nhi = rtnl_dereference(nh->nh_info);
403 
404 		if (nhi->reject_nh && npaths > 1) {
405 			NL_SET_ERR_MSG(extack,
406 				       "Blackhole nexthop can not be used in a group with more than 1 path");
407 			return false;
408 		}
409 		*is_fdb = nhi->fdb_nh;
410 	}
411 
412 	return true;
413 }
414 
nh_check_attr_fdb_group(struct nexthop * nh,u8 * nh_family,struct netlink_ext_ack * extack)415 static int nh_check_attr_fdb_group(struct nexthop *nh, u8 *nh_family,
416 				   struct netlink_ext_ack *extack)
417 {
418 	struct nh_info *nhi;
419 
420 	nhi = rtnl_dereference(nh->nh_info);
421 
422 	if (!nhi->fdb_nh) {
423 		NL_SET_ERR_MSG(extack, "FDB nexthop group can only have fdb nexthops");
424 		return -EINVAL;
425 	}
426 
427 	if (*nh_family == AF_UNSPEC) {
428 		*nh_family = nhi->family;
429 	} else if (*nh_family != nhi->family) {
430 		NL_SET_ERR_MSG(extack, "FDB nexthop group cannot have mixed family nexthops");
431 		return -EINVAL;
432 	}
433 
434 	return 0;
435 }
436 
nh_check_attr_group(struct net * net,struct nlattr * tb[],struct netlink_ext_ack * extack)437 static int nh_check_attr_group(struct net *net, struct nlattr *tb[],
438 			       struct netlink_ext_ack *extack)
439 {
440 	unsigned int len = nla_len(tb[NHA_GROUP]);
441 	u8 nh_family = AF_UNSPEC;
442 	struct nexthop_grp *nhg;
443 	unsigned int i, j;
444 	u8 nhg_fdb = 0;
445 
446 	if (!len || len & (sizeof(struct nexthop_grp) - 1)) {
447 		NL_SET_ERR_MSG(extack,
448 			       "Invalid length for nexthop group attribute");
449 		return -EINVAL;
450 	}
451 
452 	/* convert len to number of nexthop ids */
453 	len /= sizeof(*nhg);
454 
455 	nhg = nla_data(tb[NHA_GROUP]);
456 	for (i = 0; i < len; ++i) {
457 		if (nhg[i].resvd1 || nhg[i].resvd2) {
458 			NL_SET_ERR_MSG(extack, "Reserved fields in nexthop_grp must be 0");
459 			return -EINVAL;
460 		}
461 		if (nhg[i].weight > 254) {
462 			NL_SET_ERR_MSG(extack, "Invalid value for weight");
463 			return -EINVAL;
464 		}
465 		for (j = i + 1; j < len; ++j) {
466 			if (nhg[i].id == nhg[j].id) {
467 				NL_SET_ERR_MSG(extack, "Nexthop id can not be used twice in a group");
468 				return -EINVAL;
469 			}
470 		}
471 	}
472 
473 	if (tb[NHA_FDB])
474 		nhg_fdb = 1;
475 	nhg = nla_data(tb[NHA_GROUP]);
476 	for (i = 0; i < len; ++i) {
477 		struct nexthop *nh;
478 		bool is_fdb_nh;
479 
480 		nh = nexthop_find_by_id(net, nhg[i].id);
481 		if (!nh) {
482 			NL_SET_ERR_MSG(extack, "Invalid nexthop id");
483 			return -EINVAL;
484 		}
485 		if (!valid_group_nh(nh, len, &is_fdb_nh, extack))
486 			return -EINVAL;
487 
488 		if (nhg_fdb && nh_check_attr_fdb_group(nh, &nh_family, extack))
489 			return -EINVAL;
490 
491 		if (!nhg_fdb && is_fdb_nh) {
492 			NL_SET_ERR_MSG(extack, "Non FDB nexthop group cannot have fdb nexthops");
493 			return -EINVAL;
494 		}
495 	}
496 	for (i = NHA_GROUP_TYPE + 1; i < __NHA_MAX; ++i) {
497 		if (!tb[i])
498 			continue;
499 		if (i == NHA_FDB)
500 			continue;
501 		NL_SET_ERR_MSG(extack,
502 			       "No other attributes can be set in nexthop groups");
503 		return -EINVAL;
504 	}
505 
506 	return 0;
507 }
508 
ipv6_good_nh(const struct fib6_nh * nh)509 static bool ipv6_good_nh(const struct fib6_nh *nh)
510 {
511 	int state = NUD_REACHABLE;
512 	struct neighbour *n;
513 
514 	rcu_read_lock_bh();
515 
516 	n = __ipv6_neigh_lookup_noref_stub(nh->fib_nh_dev, &nh->fib_nh_gw6);
517 	if (n)
518 		state = n->nud_state;
519 
520 	rcu_read_unlock_bh();
521 
522 	return !!(state & NUD_VALID);
523 }
524 
ipv4_good_nh(const struct fib_nh * nh)525 static bool ipv4_good_nh(const struct fib_nh *nh)
526 {
527 	int state = NUD_REACHABLE;
528 	struct neighbour *n;
529 
530 	rcu_read_lock_bh();
531 
532 	n = __ipv4_neigh_lookup_noref(nh->fib_nh_dev,
533 				      (__force u32)nh->fib_nh_gw4);
534 	if (n)
535 		state = n->nud_state;
536 
537 	rcu_read_unlock_bh();
538 
539 	return !!(state & NUD_VALID);
540 }
541 
nexthop_select_path(struct nexthop * nh,int hash)542 struct nexthop *nexthop_select_path(struct nexthop *nh, int hash)
543 {
544 	struct nexthop *rc = NULL;
545 	struct nh_group *nhg;
546 	int i;
547 
548 	if (!nh->is_group)
549 		return nh;
550 
551 	nhg = rcu_dereference(nh->nh_grp);
552 	for (i = 0; i < nhg->num_nh; ++i) {
553 		struct nh_grp_entry *nhge = &nhg->nh_entries[i];
554 		struct nh_info *nhi;
555 
556 		if (hash > atomic_read(&nhge->upper_bound))
557 			continue;
558 
559 		nhi = rcu_dereference(nhge->nh->nh_info);
560 		if (nhi->fdb_nh)
561 			return nhge->nh;
562 
563 		/* nexthops always check if it is good and does
564 		 * not rely on a sysctl for this behavior
565 		 */
566 		switch (nhi->family) {
567 		case AF_INET:
568 			if (ipv4_good_nh(&nhi->fib_nh))
569 				return nhge->nh;
570 			break;
571 		case AF_INET6:
572 			if (ipv6_good_nh(&nhi->fib6_nh))
573 				return nhge->nh;
574 			break;
575 		}
576 
577 		if (!rc)
578 			rc = nhge->nh;
579 	}
580 
581 	return rc;
582 }
583 EXPORT_SYMBOL_GPL(nexthop_select_path);
584 
nexthop_for_each_fib6_nh(struct nexthop * nh,int (* cb)(struct fib6_nh * nh,void * arg),void * arg)585 int nexthop_for_each_fib6_nh(struct nexthop *nh,
586 			     int (*cb)(struct fib6_nh *nh, void *arg),
587 			     void *arg)
588 {
589 	struct nh_info *nhi;
590 	int err;
591 
592 	if (nh->is_group) {
593 		struct nh_group *nhg;
594 		int i;
595 
596 		nhg = rcu_dereference_rtnl(nh->nh_grp);
597 		for (i = 0; i < nhg->num_nh; i++) {
598 			struct nh_grp_entry *nhge = &nhg->nh_entries[i];
599 
600 			nhi = rcu_dereference_rtnl(nhge->nh->nh_info);
601 			err = cb(&nhi->fib6_nh, arg);
602 			if (err)
603 				return err;
604 		}
605 	} else {
606 		nhi = rcu_dereference_rtnl(nh->nh_info);
607 		err = cb(&nhi->fib6_nh, arg);
608 		if (err)
609 			return err;
610 	}
611 
612 	return 0;
613 }
614 EXPORT_SYMBOL_GPL(nexthop_for_each_fib6_nh);
615 
check_src_addr(const struct in6_addr * saddr,struct netlink_ext_ack * extack)616 static int check_src_addr(const struct in6_addr *saddr,
617 			  struct netlink_ext_ack *extack)
618 {
619 	if (!ipv6_addr_any(saddr)) {
620 		NL_SET_ERR_MSG(extack, "IPv6 routes using source address can not use nexthop objects");
621 		return -EINVAL;
622 	}
623 	return 0;
624 }
625 
fib6_check_nexthop(struct nexthop * nh,struct fib6_config * cfg,struct netlink_ext_ack * extack)626 int fib6_check_nexthop(struct nexthop *nh, struct fib6_config *cfg,
627 		       struct netlink_ext_ack *extack)
628 {
629 	struct nh_info *nhi;
630 	bool is_fdb_nh;
631 
632 	/* fib6_src is unique to a fib6_info and limits the ability to cache
633 	 * routes in fib6_nh within a nexthop that is potentially shared
634 	 * across multiple fib entries. If the config wants to use source
635 	 * routing it can not use nexthop objects. mlxsw also does not allow
636 	 * fib6_src on routes.
637 	 */
638 	if (cfg && check_src_addr(&cfg->fc_src, extack) < 0)
639 		return -EINVAL;
640 
641 	if (nh->is_group) {
642 		struct nh_group *nhg;
643 
644 		nhg = rtnl_dereference(nh->nh_grp);
645 		if (nhg->has_v4)
646 			goto no_v4_nh;
647 		is_fdb_nh = nhg->fdb_nh;
648 	} else {
649 		nhi = rtnl_dereference(nh->nh_info);
650 		if (nhi->family == AF_INET)
651 			goto no_v4_nh;
652 		is_fdb_nh = nhi->fdb_nh;
653 	}
654 
655 	if (is_fdb_nh) {
656 		NL_SET_ERR_MSG(extack, "Route cannot point to a fdb nexthop");
657 		return -EINVAL;
658 	}
659 
660 	return 0;
661 no_v4_nh:
662 	NL_SET_ERR_MSG(extack, "IPv6 routes can not use an IPv4 nexthop");
663 	return -EINVAL;
664 }
665 EXPORT_SYMBOL_GPL(fib6_check_nexthop);
666 
667 /* if existing nexthop has ipv6 routes linked to it, need
668  * to verify this new spec works with ipv6
669  */
fib6_check_nh_list(struct nexthop * old,struct nexthop * new,struct netlink_ext_ack * extack)670 static int fib6_check_nh_list(struct nexthop *old, struct nexthop *new,
671 			      struct netlink_ext_ack *extack)
672 {
673 	struct fib6_info *f6i;
674 
675 	if (list_empty(&old->f6i_list))
676 		return 0;
677 
678 	list_for_each_entry(f6i, &old->f6i_list, nh_list) {
679 		if (check_src_addr(&f6i->fib6_src.addr, extack) < 0)
680 			return -EINVAL;
681 	}
682 
683 	return fib6_check_nexthop(new, NULL, extack);
684 }
685 
nexthop_check_scope(struct nh_info * nhi,u8 scope,struct netlink_ext_ack * extack)686 static int nexthop_check_scope(struct nh_info *nhi, u8 scope,
687 			       struct netlink_ext_ack *extack)
688 {
689 	if (scope == RT_SCOPE_HOST && nhi->fib_nhc.nhc_gw_family) {
690 		NL_SET_ERR_MSG(extack,
691 			       "Route with host scope can not have a gateway");
692 		return -EINVAL;
693 	}
694 
695 	if (nhi->fib_nhc.nhc_flags & RTNH_F_ONLINK && scope >= RT_SCOPE_LINK) {
696 		NL_SET_ERR_MSG(extack, "Scope mismatch with nexthop");
697 		return -EINVAL;
698 	}
699 
700 	return 0;
701 }
702 
703 /* Invoked by fib add code to verify nexthop by id is ok with
704  * config for prefix; parts of fib_check_nh not done when nexthop
705  * object is used.
706  */
fib_check_nexthop(struct nexthop * nh,u8 scope,struct netlink_ext_ack * extack)707 int fib_check_nexthop(struct nexthop *nh, u8 scope,
708 		      struct netlink_ext_ack *extack)
709 {
710 	struct nh_info *nhi;
711 	int err = 0;
712 
713 	if (nh->is_group) {
714 		struct nh_group *nhg;
715 
716 		nhg = rtnl_dereference(nh->nh_grp);
717 		if (nhg->fdb_nh) {
718 			NL_SET_ERR_MSG(extack, "Route cannot point to a fdb nexthop");
719 			err = -EINVAL;
720 			goto out;
721 		}
722 
723 		if (scope == RT_SCOPE_HOST) {
724 			NL_SET_ERR_MSG(extack, "Route with host scope can not have multiple nexthops");
725 			err = -EINVAL;
726 			goto out;
727 		}
728 
729 		/* all nexthops in a group have the same scope */
730 		nhi = rtnl_dereference(nhg->nh_entries[0].nh->nh_info);
731 		err = nexthop_check_scope(nhi, scope, extack);
732 	} else {
733 		nhi = rtnl_dereference(nh->nh_info);
734 		if (nhi->fdb_nh) {
735 			NL_SET_ERR_MSG(extack, "Route cannot point to a fdb nexthop");
736 			err = -EINVAL;
737 			goto out;
738 		}
739 		err = nexthop_check_scope(nhi, scope, extack);
740 	}
741 
742 out:
743 	return err;
744 }
745 
fib_check_nh_list(struct nexthop * old,struct nexthop * new,struct netlink_ext_ack * extack)746 static int fib_check_nh_list(struct nexthop *old, struct nexthop *new,
747 			     struct netlink_ext_ack *extack)
748 {
749 	struct fib_info *fi;
750 
751 	list_for_each_entry(fi, &old->fi_list, nh_list) {
752 		int err;
753 
754 		err = fib_check_nexthop(new, fi->fib_scope, extack);
755 		if (err)
756 			return err;
757 	}
758 	return 0;
759 }
760 
nh_group_rebalance(struct nh_group * nhg)761 static void nh_group_rebalance(struct nh_group *nhg)
762 {
763 	int total = 0;
764 	int w = 0;
765 	int i;
766 
767 	for (i = 0; i < nhg->num_nh; ++i)
768 		total += nhg->nh_entries[i].weight;
769 
770 	for (i = 0; i < nhg->num_nh; ++i) {
771 		struct nh_grp_entry *nhge = &nhg->nh_entries[i];
772 		int upper_bound;
773 
774 		w += nhge->weight;
775 		upper_bound = DIV_ROUND_CLOSEST_ULL((u64)w << 31, total) - 1;
776 		atomic_set(&nhge->upper_bound, upper_bound);
777 	}
778 }
779 
remove_nh_grp_entry(struct net * net,struct nh_grp_entry * nhge,struct nl_info * nlinfo)780 static void remove_nh_grp_entry(struct net *net, struct nh_grp_entry *nhge,
781 				struct nl_info *nlinfo)
782 {
783 	struct nh_grp_entry *nhges, *new_nhges;
784 	struct nexthop *nhp = nhge->nh_parent;
785 	struct nexthop *nh = nhge->nh;
786 	struct nh_group *nhg, *newg;
787 	int i, j;
788 
789 	WARN_ON(!nh);
790 
791 	nhg = rtnl_dereference(nhp->nh_grp);
792 	newg = nhg->spare;
793 
794 	/* last entry, keep it visible and remove the parent */
795 	if (nhg->num_nh == 1) {
796 		remove_nexthop(net, nhp, nlinfo);
797 		return;
798 	}
799 
800 	newg->has_v4 = false;
801 	newg->mpath = nhg->mpath;
802 	newg->fdb_nh = nhg->fdb_nh;
803 	newg->num_nh = nhg->num_nh;
804 
805 	/* copy old entries to new except the one getting removed */
806 	nhges = nhg->nh_entries;
807 	new_nhges = newg->nh_entries;
808 	for (i = 0, j = 0; i < nhg->num_nh; ++i) {
809 		struct nh_info *nhi;
810 
811 		/* current nexthop getting removed */
812 		if (nhg->nh_entries[i].nh == nh) {
813 			newg->num_nh--;
814 			continue;
815 		}
816 
817 		nhi = rtnl_dereference(nhges[i].nh->nh_info);
818 		if (nhi->family == AF_INET)
819 			newg->has_v4 = true;
820 
821 		list_del(&nhges[i].nh_list);
822 		new_nhges[j].nh_parent = nhges[i].nh_parent;
823 		new_nhges[j].nh = nhges[i].nh;
824 		new_nhges[j].weight = nhges[i].weight;
825 		list_add(&new_nhges[j].nh_list, &new_nhges[j].nh->grp_list);
826 		j++;
827 	}
828 
829 	nh_group_rebalance(newg);
830 	rcu_assign_pointer(nhp->nh_grp, newg);
831 
832 	list_del(&nhge->nh_list);
833 	nexthop_put(nhge->nh);
834 
835 	if (nlinfo)
836 		nexthop_notify(RTM_NEWNEXTHOP, nhp, nlinfo);
837 }
838 
remove_nexthop_from_groups(struct net * net,struct nexthop * nh,struct nl_info * nlinfo)839 static void remove_nexthop_from_groups(struct net *net, struct nexthop *nh,
840 				       struct nl_info *nlinfo)
841 {
842 	struct nh_grp_entry *nhge, *tmp;
843 
844 	list_for_each_entry_safe(nhge, tmp, &nh->grp_list, nh_list)
845 		remove_nh_grp_entry(net, nhge, nlinfo);
846 
847 	/* make sure all see the newly published array before releasing rtnl */
848 	synchronize_net();
849 }
850 
remove_nexthop_group(struct nexthop * nh,struct nl_info * nlinfo)851 static void remove_nexthop_group(struct nexthop *nh, struct nl_info *nlinfo)
852 {
853 	struct nh_group *nhg = rcu_dereference_rtnl(nh->nh_grp);
854 	int i, num_nh = nhg->num_nh;
855 
856 	for (i = 0; i < num_nh; ++i) {
857 		struct nh_grp_entry *nhge = &nhg->nh_entries[i];
858 
859 		if (WARN_ON(!nhge->nh))
860 			continue;
861 
862 		list_del_init(&nhge->nh_list);
863 	}
864 }
865 
866 /* not called for nexthop replace */
__remove_nexthop_fib(struct net * net,struct nexthop * nh)867 static void __remove_nexthop_fib(struct net *net, struct nexthop *nh)
868 {
869 	struct fib6_info *f6i, *tmp;
870 	bool do_flush = false;
871 	struct fib_info *fi;
872 
873 	list_for_each_entry(fi, &nh->fi_list, nh_list) {
874 		fi->fib_flags |= RTNH_F_DEAD;
875 		do_flush = true;
876 	}
877 	if (do_flush)
878 		fib_flush(net);
879 
880 	/* ip6_del_rt removes the entry from this list hence the _safe */
881 	list_for_each_entry_safe(f6i, tmp, &nh->f6i_list, nh_list) {
882 		/* __ip6_del_rt does a release, so do a hold here */
883 		fib6_info_hold(f6i);
884 		ipv6_stub->ip6_del_rt(net, f6i,
885 				      !READ_ONCE(net->ipv4.sysctl_nexthop_compat_mode));
886 	}
887 }
888 
__remove_nexthop(struct net * net,struct nexthop * nh,struct nl_info * nlinfo)889 static void __remove_nexthop(struct net *net, struct nexthop *nh,
890 			     struct nl_info *nlinfo)
891 {
892 	__remove_nexthop_fib(net, nh);
893 
894 	if (nh->is_group) {
895 		remove_nexthop_group(nh, nlinfo);
896 	} else {
897 		struct nh_info *nhi;
898 
899 		nhi = rtnl_dereference(nh->nh_info);
900 		if (nhi->fib_nhc.nhc_dev)
901 			hlist_del(&nhi->dev_hash);
902 
903 		remove_nexthop_from_groups(net, nh, nlinfo);
904 	}
905 }
906 
remove_nexthop(struct net * net,struct nexthop * nh,struct nl_info * nlinfo)907 static void remove_nexthop(struct net *net, struct nexthop *nh,
908 			   struct nl_info *nlinfo)
909 {
910 	call_nexthop_notifiers(net, NEXTHOP_EVENT_DEL, nh);
911 
912 	/* remove from the tree */
913 	rb_erase(&nh->rb_node, &net->nexthop.rb_root);
914 
915 	if (nlinfo)
916 		nexthop_notify(RTM_DELNEXTHOP, nh, nlinfo);
917 
918 	__remove_nexthop(net, nh, nlinfo);
919 	nh_base_seq_inc(net);
920 
921 	nexthop_put(nh);
922 }
923 
924 /* if any FIB entries reference this nexthop, any dst entries
925  * need to be regenerated
926  */
nh_rt_cache_flush(struct net * net,struct nexthop * nh)927 static void nh_rt_cache_flush(struct net *net, struct nexthop *nh)
928 {
929 	struct fib6_info *f6i;
930 
931 	if (!list_empty(&nh->fi_list))
932 		rt_cache_flush(net);
933 
934 	list_for_each_entry(f6i, &nh->f6i_list, nh_list)
935 		ipv6_stub->fib6_update_sernum(net, f6i);
936 }
937 
replace_nexthop_grp(struct net * net,struct nexthop * old,struct nexthop * new,struct netlink_ext_ack * extack)938 static int replace_nexthop_grp(struct net *net, struct nexthop *old,
939 			       struct nexthop *new,
940 			       struct netlink_ext_ack *extack)
941 {
942 	struct nh_group *oldg, *newg;
943 	int i;
944 
945 	if (!new->is_group) {
946 		NL_SET_ERR_MSG(extack, "Can not replace a nexthop group with a nexthop.");
947 		return -EINVAL;
948 	}
949 
950 	oldg = rtnl_dereference(old->nh_grp);
951 	newg = rtnl_dereference(new->nh_grp);
952 
953 	/* update parents - used by nexthop code for cleanup */
954 	for (i = 0; i < newg->num_nh; i++)
955 		newg->nh_entries[i].nh_parent = old;
956 
957 	rcu_assign_pointer(old->nh_grp, newg);
958 
959 	for (i = 0; i < oldg->num_nh; i++)
960 		oldg->nh_entries[i].nh_parent = new;
961 
962 	rcu_assign_pointer(new->nh_grp, oldg);
963 
964 	return 0;
965 }
966 
nh_group_v4_update(struct nh_group * nhg)967 static void nh_group_v4_update(struct nh_group *nhg)
968 {
969 	struct nh_grp_entry *nhges;
970 	bool has_v4 = false;
971 	int i;
972 
973 	nhges = nhg->nh_entries;
974 	for (i = 0; i < nhg->num_nh; i++) {
975 		struct nh_info *nhi;
976 
977 		nhi = rtnl_dereference(nhges[i].nh->nh_info);
978 		if (nhi->family == AF_INET)
979 			has_v4 = true;
980 	}
981 	nhg->has_v4 = has_v4;
982 }
983 
replace_nexthop_single(struct net * net,struct nexthop * old,struct nexthop * new,struct netlink_ext_ack * extack)984 static int replace_nexthop_single(struct net *net, struct nexthop *old,
985 				  struct nexthop *new,
986 				  struct netlink_ext_ack *extack)
987 {
988 	struct nh_info *oldi, *newi;
989 
990 	if (new->is_group) {
991 		NL_SET_ERR_MSG(extack, "Can not replace a nexthop with a nexthop group.");
992 		return -EINVAL;
993 	}
994 
995 	oldi = rtnl_dereference(old->nh_info);
996 	newi = rtnl_dereference(new->nh_info);
997 
998 	newi->nh_parent = old;
999 	oldi->nh_parent = new;
1000 
1001 	old->protocol = new->protocol;
1002 	old->nh_flags = new->nh_flags;
1003 
1004 	rcu_assign_pointer(old->nh_info, newi);
1005 	rcu_assign_pointer(new->nh_info, oldi);
1006 
1007 	/* When replacing an IPv4 nexthop with an IPv6 nexthop, potentially
1008 	 * update IPv4 indication in all the groups using the nexthop.
1009 	 */
1010 	if (oldi->family == AF_INET && newi->family == AF_INET6) {
1011 		struct nh_grp_entry *nhge;
1012 
1013 		list_for_each_entry(nhge, &old->grp_list, nh_list) {
1014 			struct nexthop *nhp = nhge->nh_parent;
1015 			struct nh_group *nhg;
1016 
1017 			nhg = rtnl_dereference(nhp->nh_grp);
1018 			nh_group_v4_update(nhg);
1019 		}
1020 	}
1021 
1022 	return 0;
1023 }
1024 
__nexthop_replace_notify(struct net * net,struct nexthop * nh,struct nl_info * info)1025 static void __nexthop_replace_notify(struct net *net, struct nexthop *nh,
1026 				     struct nl_info *info)
1027 {
1028 	struct fib6_info *f6i;
1029 
1030 	if (!list_empty(&nh->fi_list)) {
1031 		struct fib_info *fi;
1032 
1033 		/* expectation is a few fib_info per nexthop and then
1034 		 * a lot of routes per fib_info. So mark the fib_info
1035 		 * and then walk the fib tables once
1036 		 */
1037 		list_for_each_entry(fi, &nh->fi_list, nh_list)
1038 			fi->nh_updated = true;
1039 
1040 		fib_info_notify_update(net, info);
1041 
1042 		list_for_each_entry(fi, &nh->fi_list, nh_list)
1043 			fi->nh_updated = false;
1044 	}
1045 
1046 	list_for_each_entry(f6i, &nh->f6i_list, nh_list)
1047 		ipv6_stub->fib6_rt_update(net, f6i, info);
1048 }
1049 
1050 /* send RTM_NEWROUTE with REPLACE flag set for all FIB entries
1051  * linked to this nexthop and for all groups that the nexthop
1052  * is a member of
1053  */
nexthop_replace_notify(struct net * net,struct nexthop * nh,struct nl_info * info)1054 static void nexthop_replace_notify(struct net *net, struct nexthop *nh,
1055 				   struct nl_info *info)
1056 {
1057 	struct nh_grp_entry *nhge;
1058 
1059 	__nexthop_replace_notify(net, nh, info);
1060 
1061 	list_for_each_entry(nhge, &nh->grp_list, nh_list)
1062 		__nexthop_replace_notify(net, nhge->nh_parent, info);
1063 }
1064 
replace_nexthop(struct net * net,struct nexthop * old,struct nexthop * new,struct netlink_ext_ack * extack)1065 static int replace_nexthop(struct net *net, struct nexthop *old,
1066 			   struct nexthop *new, struct netlink_ext_ack *extack)
1067 {
1068 	bool new_is_reject = false;
1069 	struct nh_grp_entry *nhge;
1070 	int err;
1071 
1072 	/* check that existing FIB entries are ok with the
1073 	 * new nexthop definition
1074 	 */
1075 	err = fib_check_nh_list(old, new, extack);
1076 	if (err)
1077 		return err;
1078 
1079 	err = fib6_check_nh_list(old, new, extack);
1080 	if (err)
1081 		return err;
1082 
1083 	if (!new->is_group) {
1084 		struct nh_info *nhi = rtnl_dereference(new->nh_info);
1085 
1086 		new_is_reject = nhi->reject_nh;
1087 	}
1088 
1089 	list_for_each_entry(nhge, &old->grp_list, nh_list) {
1090 		/* if new nexthop is a blackhole, any groups using this
1091 		 * nexthop cannot have more than 1 path
1092 		 */
1093 		if (new_is_reject &&
1094 		    nexthop_num_path(nhge->nh_parent) > 1) {
1095 			NL_SET_ERR_MSG(extack, "Blackhole nexthop can not be a member of a group with more than one path");
1096 			return -EINVAL;
1097 		}
1098 
1099 		err = fib_check_nh_list(nhge->nh_parent, new, extack);
1100 		if (err)
1101 			return err;
1102 
1103 		err = fib6_check_nh_list(nhge->nh_parent, new, extack);
1104 		if (err)
1105 			return err;
1106 	}
1107 
1108 	if (old->is_group)
1109 		err = replace_nexthop_grp(net, old, new, extack);
1110 	else
1111 		err = replace_nexthop_single(net, old, new, extack);
1112 
1113 	if (!err) {
1114 		nh_rt_cache_flush(net, old);
1115 
1116 		__remove_nexthop(net, new, NULL);
1117 		nexthop_put(new);
1118 	}
1119 
1120 	return err;
1121 }
1122 
1123 /* called with rtnl_lock held */
insert_nexthop(struct net * net,struct nexthop * new_nh,struct nh_config * cfg,struct netlink_ext_ack * extack)1124 static int insert_nexthop(struct net *net, struct nexthop *new_nh,
1125 			  struct nh_config *cfg, struct netlink_ext_ack *extack)
1126 {
1127 	struct rb_node **pp, *parent = NULL, *next;
1128 	struct rb_root *root = &net->nexthop.rb_root;
1129 	bool replace = !!(cfg->nlflags & NLM_F_REPLACE);
1130 	bool create = !!(cfg->nlflags & NLM_F_CREATE);
1131 	u32 new_id = new_nh->id;
1132 	int replace_notify = 0;
1133 	int rc = -EEXIST;
1134 
1135 	pp = &root->rb_node;
1136 	while (1) {
1137 		struct nexthop *nh;
1138 
1139 		next = *pp;
1140 		if (!next)
1141 			break;
1142 
1143 		parent = next;
1144 
1145 		nh = rb_entry(parent, struct nexthop, rb_node);
1146 		if (new_id < nh->id) {
1147 			pp = &next->rb_left;
1148 		} else if (new_id > nh->id) {
1149 			pp = &next->rb_right;
1150 		} else if (replace) {
1151 			rc = replace_nexthop(net, nh, new_nh, extack);
1152 			if (!rc) {
1153 				new_nh = nh; /* send notification with old nh */
1154 				replace_notify = 1;
1155 			}
1156 			goto out;
1157 		} else {
1158 			/* id already exists and not a replace */
1159 			goto out;
1160 		}
1161 	}
1162 
1163 	if (replace && !create) {
1164 		NL_SET_ERR_MSG(extack, "Replace specified without create and no entry exists");
1165 		rc = -ENOENT;
1166 		goto out;
1167 	}
1168 
1169 	rb_link_node_rcu(&new_nh->rb_node, parent, pp);
1170 	rb_insert_color(&new_nh->rb_node, root);
1171 	rc = 0;
1172 out:
1173 	if (!rc) {
1174 		nh_base_seq_inc(net);
1175 		nexthop_notify(RTM_NEWNEXTHOP, new_nh, &cfg->nlinfo);
1176 		if (replace_notify &&
1177 		    READ_ONCE(net->ipv4.sysctl_nexthop_compat_mode))
1178 			nexthop_replace_notify(net, new_nh, &cfg->nlinfo);
1179 	}
1180 
1181 	return rc;
1182 }
1183 
1184 /* rtnl */
1185 /* remove all nexthops tied to a device being deleted */
nexthop_flush_dev(struct net_device * dev,unsigned long event)1186 static void nexthop_flush_dev(struct net_device *dev, unsigned long event)
1187 {
1188 	unsigned int hash = nh_dev_hashfn(dev->ifindex);
1189 	struct net *net = dev_net(dev);
1190 	struct hlist_head *head = &net->nexthop.devhash[hash];
1191 	struct hlist_node *n;
1192 	struct nh_info *nhi;
1193 
1194 	hlist_for_each_entry_safe(nhi, n, head, dev_hash) {
1195 		if (nhi->fib_nhc.nhc_dev != dev)
1196 			continue;
1197 
1198 		if (nhi->reject_nh &&
1199 		    (event == NETDEV_DOWN || event == NETDEV_CHANGE))
1200 			continue;
1201 
1202 		remove_nexthop(net, nhi->nh_parent, NULL);
1203 	}
1204 }
1205 
1206 /* rtnl; called when net namespace is deleted */
flush_all_nexthops(struct net * net)1207 static void flush_all_nexthops(struct net *net)
1208 {
1209 	struct rb_root *root = &net->nexthop.rb_root;
1210 	struct rb_node *node;
1211 	struct nexthop *nh;
1212 
1213 	while ((node = rb_first(root))) {
1214 		nh = rb_entry(node, struct nexthop, rb_node);
1215 		remove_nexthop(net, nh, NULL);
1216 		cond_resched();
1217 	}
1218 }
1219 
nexthop_create_group(struct net * net,struct nh_config * cfg)1220 static struct nexthop *nexthop_create_group(struct net *net,
1221 					    struct nh_config *cfg)
1222 {
1223 	struct nlattr *grps_attr = cfg->nh_grp;
1224 	struct nexthop_grp *entry = nla_data(grps_attr);
1225 	u16 num_nh = nla_len(grps_attr) / sizeof(*entry);
1226 	struct nh_group *nhg;
1227 	struct nexthop *nh;
1228 	int i;
1229 
1230 	if (WARN_ON(!num_nh))
1231 		return ERR_PTR(-EINVAL);
1232 
1233 	nh = nexthop_alloc();
1234 	if (!nh)
1235 		return ERR_PTR(-ENOMEM);
1236 
1237 	nh->is_group = 1;
1238 
1239 	nhg = nexthop_grp_alloc(num_nh);
1240 	if (!nhg) {
1241 		kfree(nh);
1242 		return ERR_PTR(-ENOMEM);
1243 	}
1244 
1245 	/* spare group used for removals */
1246 	nhg->spare = nexthop_grp_alloc(num_nh);
1247 	if (!nhg->spare) {
1248 		kfree(nhg);
1249 		kfree(nh);
1250 		return ERR_PTR(-ENOMEM);
1251 	}
1252 	nhg->spare->spare = nhg;
1253 
1254 	for (i = 0; i < nhg->num_nh; ++i) {
1255 		struct nexthop *nhe;
1256 		struct nh_info *nhi;
1257 
1258 		nhe = nexthop_find_by_id(net, entry[i].id);
1259 		if (!nexthop_get(nhe))
1260 			goto out_no_nh;
1261 
1262 		nhi = rtnl_dereference(nhe->nh_info);
1263 		if (nhi->family == AF_INET)
1264 			nhg->has_v4 = true;
1265 
1266 		nhg->nh_entries[i].nh = nhe;
1267 		nhg->nh_entries[i].weight = entry[i].weight + 1;
1268 		list_add(&nhg->nh_entries[i].nh_list, &nhe->grp_list);
1269 		nhg->nh_entries[i].nh_parent = nh;
1270 	}
1271 
1272 	if (cfg->nh_grp_type == NEXTHOP_GRP_TYPE_MPATH) {
1273 		nhg->mpath = 1;
1274 		nh_group_rebalance(nhg);
1275 	}
1276 
1277 	if (cfg->nh_fdb)
1278 		nhg->fdb_nh = 1;
1279 
1280 	rcu_assign_pointer(nh->nh_grp, nhg);
1281 
1282 	return nh;
1283 
1284 out_no_nh:
1285 	for (i--; i >= 0; --i) {
1286 		list_del(&nhg->nh_entries[i].nh_list);
1287 		nexthop_put(nhg->nh_entries[i].nh);
1288 	}
1289 
1290 	kfree(nhg->spare);
1291 	kfree(nhg);
1292 	kfree(nh);
1293 
1294 	return ERR_PTR(-ENOENT);
1295 }
1296 
nh_create_ipv4(struct net * net,struct nexthop * nh,struct nh_info * nhi,struct nh_config * cfg,struct netlink_ext_ack * extack)1297 static int nh_create_ipv4(struct net *net, struct nexthop *nh,
1298 			  struct nh_info *nhi, struct nh_config *cfg,
1299 			  struct netlink_ext_ack *extack)
1300 {
1301 	struct fib_nh *fib_nh = &nhi->fib_nh;
1302 	struct fib_config fib_cfg = {
1303 		.fc_oif   = cfg->nh_ifindex,
1304 		.fc_gw4   = cfg->gw.ipv4,
1305 		.fc_gw_family = cfg->gw.ipv4 ? AF_INET : 0,
1306 		.fc_flags = cfg->nh_flags,
1307 		.fc_nlinfo = cfg->nlinfo,
1308 		.fc_encap = cfg->nh_encap,
1309 		.fc_encap_type = cfg->nh_encap_type,
1310 	};
1311 	u32 tb_id = (cfg->dev ? l3mdev_fib_table(cfg->dev) : RT_TABLE_MAIN);
1312 	int err;
1313 
1314 	err = fib_nh_init(net, fib_nh, &fib_cfg, 1, extack);
1315 	if (err) {
1316 		fib_nh_release(net, fib_nh);
1317 		goto out;
1318 	}
1319 
1320 	if (nhi->fdb_nh)
1321 		goto out;
1322 
1323 	/* sets nh_dev if successful */
1324 	err = fib_check_nh(net, fib_nh, tb_id, 0, extack);
1325 	if (!err) {
1326 		nh->nh_flags = fib_nh->fib_nh_flags;
1327 		fib_info_update_nhc_saddr(net, &fib_nh->nh_common,
1328 					  !fib_nh->fib_nh_scope ? 0 : fib_nh->fib_nh_scope - 1);
1329 	} else {
1330 		fib_nh_release(net, fib_nh);
1331 	}
1332 out:
1333 	return err;
1334 }
1335 
nh_create_ipv6(struct net * net,struct nexthop * nh,struct nh_info * nhi,struct nh_config * cfg,struct netlink_ext_ack * extack)1336 static int nh_create_ipv6(struct net *net,  struct nexthop *nh,
1337 			  struct nh_info *nhi, struct nh_config *cfg,
1338 			  struct netlink_ext_ack *extack)
1339 {
1340 	struct fib6_nh *fib6_nh = &nhi->fib6_nh;
1341 	struct fib6_config fib6_cfg = {
1342 		.fc_table = l3mdev_fib_table(cfg->dev),
1343 		.fc_ifindex = cfg->nh_ifindex,
1344 		.fc_gateway = cfg->gw.ipv6,
1345 		.fc_flags = cfg->nh_flags,
1346 		.fc_nlinfo = cfg->nlinfo,
1347 		.fc_encap = cfg->nh_encap,
1348 		.fc_encap_type = cfg->nh_encap_type,
1349 		.fc_is_fdb = cfg->nh_fdb,
1350 	};
1351 	int err;
1352 
1353 	if (!ipv6_addr_any(&cfg->gw.ipv6))
1354 		fib6_cfg.fc_flags |= RTF_GATEWAY;
1355 
1356 	/* sets nh_dev if successful */
1357 	err = ipv6_stub->fib6_nh_init(net, fib6_nh, &fib6_cfg, GFP_KERNEL,
1358 				      extack);
1359 	if (err) {
1360 		/* IPv6 is not enabled, don't call fib6_nh_release */
1361 		if (err == -EAFNOSUPPORT)
1362 			goto out;
1363 		ipv6_stub->fib6_nh_release(fib6_nh);
1364 	} else {
1365 		nh->nh_flags = fib6_nh->fib_nh_flags;
1366 	}
1367 out:
1368 	return err;
1369 }
1370 
nexthop_create(struct net * net,struct nh_config * cfg,struct netlink_ext_ack * extack)1371 static struct nexthop *nexthop_create(struct net *net, struct nh_config *cfg,
1372 				      struct netlink_ext_ack *extack)
1373 {
1374 	struct nh_info *nhi;
1375 	struct nexthop *nh;
1376 	int err = 0;
1377 
1378 	nh = nexthop_alloc();
1379 	if (!nh)
1380 		return ERR_PTR(-ENOMEM);
1381 
1382 	nhi = kzalloc(sizeof(*nhi), GFP_KERNEL);
1383 	if (!nhi) {
1384 		kfree(nh);
1385 		return ERR_PTR(-ENOMEM);
1386 	}
1387 
1388 	nh->nh_flags = cfg->nh_flags;
1389 	nh->net = net;
1390 
1391 	nhi->nh_parent = nh;
1392 	nhi->family = cfg->nh_family;
1393 	nhi->fib_nhc.nhc_scope = RT_SCOPE_LINK;
1394 
1395 	if (cfg->nh_fdb)
1396 		nhi->fdb_nh = 1;
1397 
1398 	if (cfg->nh_blackhole) {
1399 		nhi->reject_nh = 1;
1400 		cfg->nh_ifindex = net->loopback_dev->ifindex;
1401 	}
1402 
1403 	switch (cfg->nh_family) {
1404 	case AF_INET:
1405 		err = nh_create_ipv4(net, nh, nhi, cfg, extack);
1406 		break;
1407 	case AF_INET6:
1408 		err = nh_create_ipv6(net, nh, nhi, cfg, extack);
1409 		break;
1410 	}
1411 
1412 	if (err) {
1413 		kfree(nhi);
1414 		kfree(nh);
1415 		return ERR_PTR(err);
1416 	}
1417 
1418 	/* add the entry to the device based hash */
1419 	if (!nhi->fdb_nh)
1420 		nexthop_devhash_add(net, nhi);
1421 
1422 	rcu_assign_pointer(nh->nh_info, nhi);
1423 
1424 	return nh;
1425 }
1426 
1427 /* called with rtnl lock held */
nexthop_add(struct net * net,struct nh_config * cfg,struct netlink_ext_ack * extack)1428 static struct nexthop *nexthop_add(struct net *net, struct nh_config *cfg,
1429 				   struct netlink_ext_ack *extack)
1430 {
1431 	struct nexthop *nh;
1432 	int err;
1433 
1434 	if (cfg->nlflags & NLM_F_REPLACE && !cfg->nh_id) {
1435 		NL_SET_ERR_MSG(extack, "Replace requires nexthop id");
1436 		return ERR_PTR(-EINVAL);
1437 	}
1438 
1439 	if (!cfg->nh_id) {
1440 		cfg->nh_id = nh_find_unused_id(net);
1441 		if (!cfg->nh_id) {
1442 			NL_SET_ERR_MSG(extack, "No unused id");
1443 			return ERR_PTR(-EINVAL);
1444 		}
1445 	}
1446 
1447 	if (cfg->nh_grp)
1448 		nh = nexthop_create_group(net, cfg);
1449 	else
1450 		nh = nexthop_create(net, cfg, extack);
1451 
1452 	if (IS_ERR(nh))
1453 		return nh;
1454 
1455 	refcount_set(&nh->refcnt, 1);
1456 	nh->id = cfg->nh_id;
1457 	nh->protocol = cfg->nh_protocol;
1458 	nh->net = net;
1459 
1460 	err = insert_nexthop(net, nh, cfg, extack);
1461 	if (err) {
1462 		__remove_nexthop(net, nh, NULL);
1463 		nexthop_put(nh);
1464 		nh = ERR_PTR(err);
1465 	}
1466 
1467 	return nh;
1468 }
1469 
rtm_to_nh_config(struct net * net,struct sk_buff * skb,struct nlmsghdr * nlh,struct nh_config * cfg,struct netlink_ext_ack * extack)1470 static int rtm_to_nh_config(struct net *net, struct sk_buff *skb,
1471 			    struct nlmsghdr *nlh, struct nh_config *cfg,
1472 			    struct netlink_ext_ack *extack)
1473 {
1474 	struct nhmsg *nhm = nlmsg_data(nlh);
1475 	struct nlattr *tb[NHA_MAX + 1];
1476 	int err;
1477 
1478 	err = nlmsg_parse(nlh, sizeof(*nhm), tb, NHA_MAX, rtm_nh_policy,
1479 			  extack);
1480 	if (err < 0)
1481 		return err;
1482 
1483 	err = -EINVAL;
1484 	if (nhm->resvd || nhm->nh_scope) {
1485 		NL_SET_ERR_MSG(extack, "Invalid values in ancillary header");
1486 		goto out;
1487 	}
1488 	if (nhm->nh_flags & ~NEXTHOP_VALID_USER_FLAGS) {
1489 		NL_SET_ERR_MSG(extack, "Invalid nexthop flags in ancillary header");
1490 		goto out;
1491 	}
1492 
1493 	switch (nhm->nh_family) {
1494 	case AF_INET:
1495 	case AF_INET6:
1496 		break;
1497 	case AF_UNSPEC:
1498 		if (tb[NHA_GROUP])
1499 			break;
1500 		fallthrough;
1501 	default:
1502 		NL_SET_ERR_MSG(extack, "Invalid address family");
1503 		goto out;
1504 	}
1505 
1506 	if (tb[NHA_GROUPS] || tb[NHA_MASTER]) {
1507 		NL_SET_ERR_MSG(extack, "Invalid attributes in request");
1508 		goto out;
1509 	}
1510 
1511 	memset(cfg, 0, sizeof(*cfg));
1512 	cfg->nlflags = nlh->nlmsg_flags;
1513 	cfg->nlinfo.portid = NETLINK_CB(skb).portid;
1514 	cfg->nlinfo.nlh = nlh;
1515 	cfg->nlinfo.nl_net = net;
1516 
1517 	cfg->nh_family = nhm->nh_family;
1518 	cfg->nh_protocol = nhm->nh_protocol;
1519 	cfg->nh_flags = nhm->nh_flags;
1520 
1521 	if (tb[NHA_ID])
1522 		cfg->nh_id = nla_get_u32(tb[NHA_ID]);
1523 
1524 	if (tb[NHA_FDB]) {
1525 		if (tb[NHA_OIF] || tb[NHA_BLACKHOLE] ||
1526 		    tb[NHA_ENCAP]   || tb[NHA_ENCAP_TYPE]) {
1527 			NL_SET_ERR_MSG(extack, "Fdb attribute can not be used with encap, oif or blackhole");
1528 			goto out;
1529 		}
1530 		if (nhm->nh_flags) {
1531 			NL_SET_ERR_MSG(extack, "Unsupported nexthop flags in ancillary header");
1532 			goto out;
1533 		}
1534 		cfg->nh_fdb = nla_get_flag(tb[NHA_FDB]);
1535 	}
1536 
1537 	if (tb[NHA_GROUP]) {
1538 		if (nhm->nh_family != AF_UNSPEC) {
1539 			NL_SET_ERR_MSG(extack, "Invalid family for group");
1540 			goto out;
1541 		}
1542 		cfg->nh_grp = tb[NHA_GROUP];
1543 
1544 		cfg->nh_grp_type = NEXTHOP_GRP_TYPE_MPATH;
1545 		if (tb[NHA_GROUP_TYPE])
1546 			cfg->nh_grp_type = nla_get_u16(tb[NHA_GROUP_TYPE]);
1547 
1548 		if (cfg->nh_grp_type > NEXTHOP_GRP_TYPE_MAX) {
1549 			NL_SET_ERR_MSG(extack, "Invalid group type");
1550 			goto out;
1551 		}
1552 		err = nh_check_attr_group(net, tb, extack);
1553 
1554 		/* no other attributes should be set */
1555 		goto out;
1556 	}
1557 
1558 	if (tb[NHA_BLACKHOLE]) {
1559 		if (tb[NHA_GATEWAY] || tb[NHA_OIF] ||
1560 		    tb[NHA_ENCAP]   || tb[NHA_ENCAP_TYPE] || tb[NHA_FDB]) {
1561 			NL_SET_ERR_MSG(extack, "Blackhole attribute can not be used with gateway, oif, encap or fdb");
1562 			goto out;
1563 		}
1564 
1565 		cfg->nh_blackhole = 1;
1566 		err = 0;
1567 		goto out;
1568 	}
1569 
1570 	if (!cfg->nh_fdb && !tb[NHA_OIF]) {
1571 		NL_SET_ERR_MSG(extack, "Device attribute required for non-blackhole and non-fdb nexthops");
1572 		goto out;
1573 	}
1574 
1575 	if (!cfg->nh_fdb && tb[NHA_OIF]) {
1576 		cfg->nh_ifindex = nla_get_u32(tb[NHA_OIF]);
1577 		if (cfg->nh_ifindex)
1578 			cfg->dev = __dev_get_by_index(net, cfg->nh_ifindex);
1579 
1580 		if (!cfg->dev) {
1581 			NL_SET_ERR_MSG(extack, "Invalid device index");
1582 			goto out;
1583 		} else if (!(cfg->dev->flags & IFF_UP)) {
1584 			NL_SET_ERR_MSG(extack, "Nexthop device is not up");
1585 			err = -ENETDOWN;
1586 			goto out;
1587 		} else if (!netif_carrier_ok(cfg->dev)) {
1588 			NL_SET_ERR_MSG(extack, "Carrier for nexthop device is down");
1589 			err = -ENETDOWN;
1590 			goto out;
1591 		}
1592 	}
1593 
1594 	err = -EINVAL;
1595 	if (tb[NHA_GATEWAY]) {
1596 		struct nlattr *gwa = tb[NHA_GATEWAY];
1597 
1598 		switch (cfg->nh_family) {
1599 		case AF_INET:
1600 			if (nla_len(gwa) != sizeof(u32)) {
1601 				NL_SET_ERR_MSG(extack, "Invalid gateway");
1602 				goto out;
1603 			}
1604 			cfg->gw.ipv4 = nla_get_be32(gwa);
1605 			break;
1606 		case AF_INET6:
1607 			if (nla_len(gwa) != sizeof(struct in6_addr)) {
1608 				NL_SET_ERR_MSG(extack, "Invalid gateway");
1609 				goto out;
1610 			}
1611 			cfg->gw.ipv6 = nla_get_in6_addr(gwa);
1612 			break;
1613 		default:
1614 			NL_SET_ERR_MSG(extack,
1615 				       "Unknown address family for gateway");
1616 			goto out;
1617 		}
1618 	} else {
1619 		/* device only nexthop (no gateway) */
1620 		if (cfg->nh_flags & RTNH_F_ONLINK) {
1621 			NL_SET_ERR_MSG(extack,
1622 				       "ONLINK flag can not be set for nexthop without a gateway");
1623 			goto out;
1624 		}
1625 	}
1626 
1627 	if (tb[NHA_ENCAP]) {
1628 		cfg->nh_encap = tb[NHA_ENCAP];
1629 
1630 		if (!tb[NHA_ENCAP_TYPE]) {
1631 			NL_SET_ERR_MSG(extack, "LWT encapsulation type is missing");
1632 			goto out;
1633 		}
1634 
1635 		cfg->nh_encap_type = nla_get_u16(tb[NHA_ENCAP_TYPE]);
1636 		err = lwtunnel_valid_encap_type(cfg->nh_encap_type, extack);
1637 		if (err < 0)
1638 			goto out;
1639 
1640 	} else if (tb[NHA_ENCAP_TYPE]) {
1641 		NL_SET_ERR_MSG(extack, "LWT encapsulation attribute is missing");
1642 		goto out;
1643 	}
1644 
1645 
1646 	err = 0;
1647 out:
1648 	return err;
1649 }
1650 
1651 /* rtnl */
rtm_new_nexthop(struct sk_buff * skb,struct nlmsghdr * nlh,struct netlink_ext_ack * extack)1652 static int rtm_new_nexthop(struct sk_buff *skb, struct nlmsghdr *nlh,
1653 			   struct netlink_ext_ack *extack)
1654 {
1655 	struct net *net = sock_net(skb->sk);
1656 	struct nh_config cfg;
1657 	struct nexthop *nh;
1658 	int err;
1659 
1660 	err = rtm_to_nh_config(net, skb, nlh, &cfg, extack);
1661 	if (!err) {
1662 		nh = nexthop_add(net, &cfg, extack);
1663 		if (IS_ERR(nh))
1664 			err = PTR_ERR(nh);
1665 	}
1666 
1667 	return err;
1668 }
1669 
nh_valid_get_del_req(struct nlmsghdr * nlh,u32 * id,struct netlink_ext_ack * extack)1670 static int nh_valid_get_del_req(struct nlmsghdr *nlh, u32 *id,
1671 				struct netlink_ext_ack *extack)
1672 {
1673 	struct nhmsg *nhm = nlmsg_data(nlh);
1674 	struct nlattr *tb[NHA_MAX + 1];
1675 	int err, i;
1676 
1677 	err = nlmsg_parse(nlh, sizeof(*nhm), tb, NHA_MAX, rtm_nh_policy,
1678 			  extack);
1679 	if (err < 0)
1680 		return err;
1681 
1682 	err = -EINVAL;
1683 	for (i = 0; i < __NHA_MAX; ++i) {
1684 		if (!tb[i])
1685 			continue;
1686 
1687 		switch (i) {
1688 		case NHA_ID:
1689 			break;
1690 		default:
1691 			NL_SET_ERR_MSG_ATTR(extack, tb[i],
1692 					    "Unexpected attribute in request");
1693 			goto out;
1694 		}
1695 	}
1696 	if (nhm->nh_protocol || nhm->resvd || nhm->nh_scope || nhm->nh_flags) {
1697 		NL_SET_ERR_MSG(extack, "Invalid values in header");
1698 		goto out;
1699 	}
1700 
1701 	if (!tb[NHA_ID]) {
1702 		NL_SET_ERR_MSG(extack, "Nexthop id is missing");
1703 		goto out;
1704 	}
1705 
1706 	*id = nla_get_u32(tb[NHA_ID]);
1707 	if (!(*id))
1708 		NL_SET_ERR_MSG(extack, "Invalid nexthop id");
1709 	else
1710 		err = 0;
1711 out:
1712 	return err;
1713 }
1714 
1715 /* rtnl */
rtm_del_nexthop(struct sk_buff * skb,struct nlmsghdr * nlh,struct netlink_ext_ack * extack)1716 static int rtm_del_nexthop(struct sk_buff *skb, struct nlmsghdr *nlh,
1717 			   struct netlink_ext_ack *extack)
1718 {
1719 	struct net *net = sock_net(skb->sk);
1720 	struct nl_info nlinfo = {
1721 		.nlh = nlh,
1722 		.nl_net = net,
1723 		.portid = NETLINK_CB(skb).portid,
1724 	};
1725 	struct nexthop *nh;
1726 	int err;
1727 	u32 id;
1728 
1729 	err = nh_valid_get_del_req(nlh, &id, extack);
1730 	if (err)
1731 		return err;
1732 
1733 	nh = nexthop_find_by_id(net, id);
1734 	if (!nh)
1735 		return -ENOENT;
1736 
1737 	remove_nexthop(net, nh, &nlinfo);
1738 
1739 	return 0;
1740 }
1741 
1742 /* rtnl */
rtm_get_nexthop(struct sk_buff * in_skb,struct nlmsghdr * nlh,struct netlink_ext_ack * extack)1743 static int rtm_get_nexthop(struct sk_buff *in_skb, struct nlmsghdr *nlh,
1744 			   struct netlink_ext_ack *extack)
1745 {
1746 	struct net *net = sock_net(in_skb->sk);
1747 	struct sk_buff *skb = NULL;
1748 	struct nexthop *nh;
1749 	int err;
1750 	u32 id;
1751 
1752 	err = nh_valid_get_del_req(nlh, &id, extack);
1753 	if (err)
1754 		return err;
1755 
1756 	err = -ENOBUFS;
1757 	skb = alloc_skb(NLMSG_GOODSIZE, GFP_KERNEL);
1758 	if (!skb)
1759 		goto out;
1760 
1761 	err = -ENOENT;
1762 	nh = nexthop_find_by_id(net, id);
1763 	if (!nh)
1764 		goto errout_free;
1765 
1766 	err = nh_fill_node(skb, nh, RTM_NEWNEXTHOP, NETLINK_CB(in_skb).portid,
1767 			   nlh->nlmsg_seq, 0);
1768 	if (err < 0) {
1769 		WARN_ON(err == -EMSGSIZE);
1770 		goto errout_free;
1771 	}
1772 
1773 	err = rtnl_unicast(skb, net, NETLINK_CB(in_skb).portid);
1774 out:
1775 	return err;
1776 errout_free:
1777 	kfree_skb(skb);
1778 	goto out;
1779 }
1780 
nh_dump_filtered(struct nexthop * nh,int dev_idx,int master_idx,bool group_filter,u8 family)1781 static bool nh_dump_filtered(struct nexthop *nh, int dev_idx, int master_idx,
1782 			     bool group_filter, u8 family)
1783 {
1784 	const struct net_device *dev;
1785 	const struct nh_info *nhi;
1786 
1787 	if (group_filter && !nh->is_group)
1788 		return true;
1789 
1790 	if (!dev_idx && !master_idx && !family)
1791 		return false;
1792 
1793 	if (nh->is_group)
1794 		return true;
1795 
1796 	nhi = rtnl_dereference(nh->nh_info);
1797 	if (family && nhi->family != family)
1798 		return true;
1799 
1800 	dev = nhi->fib_nhc.nhc_dev;
1801 	if (dev_idx && (!dev || dev->ifindex != dev_idx))
1802 		return true;
1803 
1804 	if (master_idx) {
1805 		struct net_device *master;
1806 
1807 		if (!dev)
1808 			return true;
1809 
1810 		master = netdev_master_upper_dev_get((struct net_device *)dev);
1811 		if (!master || master->ifindex != master_idx)
1812 			return true;
1813 	}
1814 
1815 	return false;
1816 }
1817 
nh_valid_dump_req(const struct nlmsghdr * nlh,int * dev_idx,int * master_idx,bool * group_filter,bool * fdb_filter,struct netlink_callback * cb)1818 static int nh_valid_dump_req(const struct nlmsghdr *nlh, int *dev_idx,
1819 			     int *master_idx, bool *group_filter,
1820 			     bool *fdb_filter, struct netlink_callback *cb)
1821 {
1822 	struct netlink_ext_ack *extack = cb->extack;
1823 	struct nlattr *tb[NHA_MAX + 1];
1824 	struct nhmsg *nhm;
1825 	int err, i;
1826 	u32 idx;
1827 
1828 	err = nlmsg_parse(nlh, sizeof(*nhm), tb, NHA_MAX, rtm_nh_policy,
1829 			  NULL);
1830 	if (err < 0)
1831 		return err;
1832 
1833 	for (i = 0; i <= NHA_MAX; ++i) {
1834 		if (!tb[i])
1835 			continue;
1836 
1837 		switch (i) {
1838 		case NHA_OIF:
1839 			idx = nla_get_u32(tb[i]);
1840 			if (idx > INT_MAX) {
1841 				NL_SET_ERR_MSG(extack, "Invalid device index");
1842 				return -EINVAL;
1843 			}
1844 			*dev_idx = idx;
1845 			break;
1846 		case NHA_MASTER:
1847 			idx = nla_get_u32(tb[i]);
1848 			if (idx > INT_MAX) {
1849 				NL_SET_ERR_MSG(extack, "Invalid master device index");
1850 				return -EINVAL;
1851 			}
1852 			*master_idx = idx;
1853 			break;
1854 		case NHA_GROUPS:
1855 			*group_filter = true;
1856 			break;
1857 		case NHA_FDB:
1858 			*fdb_filter = true;
1859 			break;
1860 		default:
1861 			NL_SET_ERR_MSG(extack, "Unsupported attribute in dump request");
1862 			return -EINVAL;
1863 		}
1864 	}
1865 
1866 	nhm = nlmsg_data(nlh);
1867 	if (nhm->nh_protocol || nhm->resvd || nhm->nh_scope || nhm->nh_flags) {
1868 		NL_SET_ERR_MSG(extack, "Invalid values in header for nexthop dump request");
1869 		return -EINVAL;
1870 	}
1871 
1872 	return 0;
1873 }
1874 
1875 /* rtnl */
rtm_dump_nexthop(struct sk_buff * skb,struct netlink_callback * cb)1876 static int rtm_dump_nexthop(struct sk_buff *skb, struct netlink_callback *cb)
1877 {
1878 	bool group_filter = false, fdb_filter = false;
1879 	struct nhmsg *nhm = nlmsg_data(cb->nlh);
1880 	int dev_filter_idx = 0, master_idx = 0;
1881 	struct net *net = sock_net(skb->sk);
1882 	struct rb_root *root = &net->nexthop.rb_root;
1883 	struct rb_node *node;
1884 	int idx = 0, s_idx;
1885 	int err;
1886 
1887 	err = nh_valid_dump_req(cb->nlh, &dev_filter_idx, &master_idx,
1888 				&group_filter, &fdb_filter, cb);
1889 	if (err < 0)
1890 		return err;
1891 
1892 	s_idx = cb->args[0];
1893 	for (node = rb_first(root); node; node = rb_next(node)) {
1894 		struct nexthop *nh;
1895 
1896 		if (idx < s_idx)
1897 			goto cont;
1898 
1899 		nh = rb_entry(node, struct nexthop, rb_node);
1900 		if (nh_dump_filtered(nh, dev_filter_idx, master_idx,
1901 				     group_filter, nhm->nh_family))
1902 			goto cont;
1903 
1904 		err = nh_fill_node(skb, nh, RTM_NEWNEXTHOP,
1905 				   NETLINK_CB(cb->skb).portid,
1906 				   cb->nlh->nlmsg_seq, NLM_F_MULTI);
1907 		if (err < 0) {
1908 			if (likely(skb->len))
1909 				goto out;
1910 
1911 			goto out_err;
1912 		}
1913 cont:
1914 		idx++;
1915 	}
1916 
1917 out:
1918 	err = skb->len;
1919 out_err:
1920 	cb->args[0] = idx;
1921 	cb->seq = net->nexthop.seq;
1922 	nl_dump_check_consistent(cb, nlmsg_hdr(skb));
1923 
1924 	return err;
1925 }
1926 
nexthop_sync_mtu(struct net_device * dev,u32 orig_mtu)1927 static void nexthop_sync_mtu(struct net_device *dev, u32 orig_mtu)
1928 {
1929 	unsigned int hash = nh_dev_hashfn(dev->ifindex);
1930 	struct net *net = dev_net(dev);
1931 	struct hlist_head *head = &net->nexthop.devhash[hash];
1932 	struct hlist_node *n;
1933 	struct nh_info *nhi;
1934 
1935 	hlist_for_each_entry_safe(nhi, n, head, dev_hash) {
1936 		if (nhi->fib_nhc.nhc_dev == dev) {
1937 			if (nhi->family == AF_INET)
1938 				fib_nhc_update_mtu(&nhi->fib_nhc, dev->mtu,
1939 						   orig_mtu);
1940 		}
1941 	}
1942 }
1943 
1944 /* rtnl */
nh_netdev_event(struct notifier_block * this,unsigned long event,void * ptr)1945 static int nh_netdev_event(struct notifier_block *this,
1946 			   unsigned long event, void *ptr)
1947 {
1948 	struct net_device *dev = netdev_notifier_info_to_dev(ptr);
1949 	struct netdev_notifier_info_ext *info_ext;
1950 
1951 	switch (event) {
1952 	case NETDEV_DOWN:
1953 	case NETDEV_UNREGISTER:
1954 		nexthop_flush_dev(dev, event);
1955 		break;
1956 	case NETDEV_CHANGE:
1957 		if (!(dev_get_flags(dev) & (IFF_RUNNING | IFF_LOWER_UP)))
1958 			nexthop_flush_dev(dev, event);
1959 		break;
1960 	case NETDEV_CHANGEMTU:
1961 		info_ext = ptr;
1962 		nexthop_sync_mtu(dev, info_ext->ext.mtu);
1963 		rt_cache_flush(dev_net(dev));
1964 		break;
1965 	}
1966 	return NOTIFY_DONE;
1967 }
1968 
1969 static struct notifier_block nh_netdev_notifier = {
1970 	.notifier_call = nh_netdev_event,
1971 };
1972 
register_nexthop_notifier(struct net * net,struct notifier_block * nb)1973 int register_nexthop_notifier(struct net *net, struct notifier_block *nb)
1974 {
1975 	return blocking_notifier_chain_register(&net->nexthop.notifier_chain,
1976 						nb);
1977 }
1978 EXPORT_SYMBOL(register_nexthop_notifier);
1979 
unregister_nexthop_notifier(struct net * net,struct notifier_block * nb)1980 int unregister_nexthop_notifier(struct net *net, struct notifier_block *nb)
1981 {
1982 	return blocking_notifier_chain_unregister(&net->nexthop.notifier_chain,
1983 						  nb);
1984 }
1985 EXPORT_SYMBOL(unregister_nexthop_notifier);
1986 
nexthop_net_exit(struct net * net)1987 static void __net_exit nexthop_net_exit(struct net *net)
1988 {
1989 	rtnl_lock();
1990 	flush_all_nexthops(net);
1991 	rtnl_unlock();
1992 	kfree(net->nexthop.devhash);
1993 }
1994 
nexthop_net_init(struct net * net)1995 static int __net_init nexthop_net_init(struct net *net)
1996 {
1997 	size_t sz = sizeof(struct hlist_head) * NH_DEV_HASHSIZE;
1998 
1999 	net->nexthop.rb_root = RB_ROOT;
2000 	net->nexthop.devhash = kzalloc(sz, GFP_KERNEL);
2001 	if (!net->nexthop.devhash)
2002 		return -ENOMEM;
2003 	BLOCKING_INIT_NOTIFIER_HEAD(&net->nexthop.notifier_chain);
2004 
2005 	return 0;
2006 }
2007 
2008 static struct pernet_operations nexthop_net_ops = {
2009 	.init = nexthop_net_init,
2010 	.exit = nexthop_net_exit,
2011 };
2012 
nexthop_init(void)2013 static int __init nexthop_init(void)
2014 {
2015 	register_pernet_subsys(&nexthop_net_ops);
2016 
2017 	register_netdevice_notifier(&nh_netdev_notifier);
2018 
2019 	rtnl_register(PF_UNSPEC, RTM_NEWNEXTHOP, rtm_new_nexthop, NULL, 0);
2020 	rtnl_register(PF_UNSPEC, RTM_DELNEXTHOP, rtm_del_nexthop, NULL, 0);
2021 	rtnl_register(PF_UNSPEC, RTM_GETNEXTHOP, rtm_get_nexthop,
2022 		      rtm_dump_nexthop, 0);
2023 
2024 	rtnl_register(PF_INET, RTM_NEWNEXTHOP, rtm_new_nexthop, NULL, 0);
2025 	rtnl_register(PF_INET, RTM_GETNEXTHOP, NULL, rtm_dump_nexthop, 0);
2026 
2027 	rtnl_register(PF_INET6, RTM_NEWNEXTHOP, rtm_new_nexthop, NULL, 0);
2028 	rtnl_register(PF_INET6, RTM_GETNEXTHOP, NULL, rtm_dump_nexthop, 0);
2029 
2030 	return 0;
2031 }
2032 subsys_initcall(nexthop_init);
2033