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