.. | .. |
---|
| 1 | +// SPDX-License-Identifier: GPL-2.0-or-later |
---|
1 | 2 | /* |
---|
2 | 3 | * Linux INET6 implementation |
---|
3 | 4 | * FIB front-end. |
---|
4 | 5 | * |
---|
5 | 6 | * Authors: |
---|
6 | 7 | * Pedro Roque <roque@di.fc.ul.pt> |
---|
7 | | - * |
---|
8 | | - * This program is free software; you can redistribute it and/or |
---|
9 | | - * modify it under the terms of the GNU General Public License |
---|
10 | | - * as published by the Free Software Foundation; either version |
---|
11 | | - * 2 of the License, or (at your option) any later version. |
---|
12 | 8 | */ |
---|
13 | 9 | |
---|
14 | 10 | /* Changes: |
---|
.. | .. |
---|
60 | 56 | #include <net/xfrm.h> |
---|
61 | 57 | #include <net/netevent.h> |
---|
62 | 58 | #include <net/netlink.h> |
---|
63 | | -#include <net/nexthop.h> |
---|
| 59 | +#include <net/rtnh.h> |
---|
64 | 60 | #include <net/lwtunnel.h> |
---|
65 | 61 | #include <net/ip_tunnels.h> |
---|
66 | 62 | #include <net/l3mdev.h> |
---|
67 | 63 | #include <net/ip.h> |
---|
68 | 64 | #include <linux/uaccess.h> |
---|
| 65 | +#include <linux/btf_ids.h> |
---|
69 | 66 | |
---|
70 | 67 | #ifdef CONFIG_SYSCTL |
---|
71 | 68 | #include <linux/sysctl.h> |
---|
.. | .. |
---|
104 | 101 | bool confirm_neigh); |
---|
105 | 102 | static void rt6_do_redirect(struct dst_entry *dst, struct sock *sk, |
---|
106 | 103 | struct sk_buff *skb); |
---|
107 | | -static int rt6_score_route(struct fib6_info *rt, int oif, int strict); |
---|
108 | | -static size_t rt6_nlmsg_size(struct fib6_info *rt); |
---|
| 104 | +static int rt6_score_route(const struct fib6_nh *nh, u32 fib6_flags, int oif, |
---|
| 105 | + int strict); |
---|
| 106 | +static size_t rt6_nlmsg_size(struct fib6_info *f6i); |
---|
109 | 107 | static int rt6_fill_node(struct net *net, struct sk_buff *skb, |
---|
110 | 108 | struct fib6_info *rt, struct dst_entry *dst, |
---|
111 | 109 | struct in6_addr *dest, struct in6_addr *src, |
---|
112 | 110 | int iif, int type, u32 portid, u32 seq, |
---|
113 | 111 | unsigned int flags); |
---|
114 | | -static struct rt6_info *rt6_find_cached_rt(struct fib6_info *rt, |
---|
| 112 | +static struct rt6_info *rt6_find_cached_rt(const struct fib6_result *res, |
---|
115 | 113 | const struct in6_addr *daddr, |
---|
116 | 114 | const struct in6_addr *saddr); |
---|
117 | 115 | |
---|
.. | .. |
---|
181 | 179 | } |
---|
182 | 180 | |
---|
183 | 181 | if (rt_dev == dev) { |
---|
184 | | - rt->dst.dev = loopback_dev; |
---|
| 182 | + rt->dst.dev = blackhole_netdev; |
---|
185 | 183 | dev_hold(rt->dst.dev); |
---|
186 | 184 | dev_put(rt_dev); |
---|
187 | 185 | } |
---|
.. | .. |
---|
223 | 221 | { |
---|
224 | 222 | const struct rt6_info *rt = container_of(dst, struct rt6_info, dst); |
---|
225 | 223 | |
---|
226 | | - return ip6_neigh_lookup(&rt->rt6i_gateway, dst->dev, skb, daddr); |
---|
| 224 | + return ip6_neigh_lookup(rt6_nexthop(rt, &in6addr_any), |
---|
| 225 | + dst->dev, skb, daddr); |
---|
227 | 226 | } |
---|
228 | 227 | |
---|
229 | 228 | static void ip6_confirm_neigh(const struct dst_entry *dst, const void *daddr) |
---|
.. | .. |
---|
231 | 230 | struct net_device *dev = dst->dev; |
---|
232 | 231 | struct rt6_info *rt = (struct rt6_info *)dst; |
---|
233 | 232 | |
---|
234 | | - daddr = choose_neigh_daddr(&rt->rt6i_gateway, NULL, daddr); |
---|
| 233 | + daddr = choose_neigh_daddr(rt6_nexthop(rt, &in6addr_any), NULL, daddr); |
---|
235 | 234 | if (!daddr) |
---|
236 | 235 | return; |
---|
237 | 236 | if (dev->flags & (IFF_NOARP | IFF_LOOPBACK)) |
---|
.. | .. |
---|
260 | 259 | .confirm_neigh = ip6_confirm_neigh, |
---|
261 | 260 | }; |
---|
262 | 261 | |
---|
263 | | -static unsigned int ip6_blackhole_mtu(const struct dst_entry *dst) |
---|
264 | | -{ |
---|
265 | | - unsigned int mtu = dst_metric_raw(dst, RTAX_MTU); |
---|
266 | | - |
---|
267 | | - return mtu ? : dst->dev->mtu; |
---|
268 | | -} |
---|
269 | | - |
---|
270 | | -static void ip6_rt_blackhole_update_pmtu(struct dst_entry *dst, struct sock *sk, |
---|
271 | | - struct sk_buff *skb, u32 mtu, |
---|
272 | | - bool confirm_neigh) |
---|
273 | | -{ |
---|
274 | | -} |
---|
275 | | - |
---|
276 | | -static void ip6_rt_blackhole_redirect(struct dst_entry *dst, struct sock *sk, |
---|
277 | | - struct sk_buff *skb) |
---|
278 | | -{ |
---|
279 | | -} |
---|
280 | | - |
---|
281 | 262 | static struct dst_ops ip6_dst_blackhole_ops = { |
---|
282 | | - .family = AF_INET6, |
---|
283 | | - .destroy = ip6_dst_destroy, |
---|
284 | | - .check = ip6_dst_check, |
---|
285 | | - .mtu = ip6_blackhole_mtu, |
---|
286 | | - .default_advmss = ip6_default_advmss, |
---|
287 | | - .update_pmtu = ip6_rt_blackhole_update_pmtu, |
---|
288 | | - .redirect = ip6_rt_blackhole_redirect, |
---|
289 | | - .cow_metrics = dst_cow_metrics_generic, |
---|
290 | | - .neigh_lookup = ip6_dst_neigh_lookup, |
---|
| 263 | + .family = AF_INET6, |
---|
| 264 | + .default_advmss = ip6_default_advmss, |
---|
| 265 | + .neigh_lookup = ip6_dst_neigh_lookup, |
---|
| 266 | + .check = ip6_dst_check, |
---|
| 267 | + .destroy = ip6_dst_destroy, |
---|
| 268 | + .cow_metrics = dst_cow_metrics_generic, |
---|
| 269 | + .update_pmtu = dst_blackhole_update_pmtu, |
---|
| 270 | + .redirect = dst_blackhole_redirect, |
---|
| 271 | + .mtu = dst_blackhole_mtu, |
---|
291 | 272 | }; |
---|
292 | 273 | |
---|
293 | 274 | static const u32 ip6_template_metrics[RTAX_MAX] = { |
---|
.. | .. |
---|
298 | 279 | .fib6_flags = (RTF_REJECT | RTF_NONEXTHOP), |
---|
299 | 280 | .fib6_protocol = RTPROT_KERNEL, |
---|
300 | 281 | .fib6_metric = ~(u32)0, |
---|
301 | | - .fib6_ref = ATOMIC_INIT(1), |
---|
| 282 | + .fib6_ref = REFCOUNT_INIT(1), |
---|
302 | 283 | .fib6_type = RTN_UNREACHABLE, |
---|
303 | 284 | .fib6_metrics = (struct dst_metrics *)&dst_default_metrics, |
---|
304 | 285 | }; |
---|
.. | .. |
---|
369 | 350 | |
---|
370 | 351 | static void ip6_dst_destroy(struct dst_entry *dst) |
---|
371 | 352 | { |
---|
372 | | - struct dst_metrics *p = (struct dst_metrics *)DST_METRICS_PTR(dst); |
---|
373 | 353 | struct rt6_info *rt = (struct rt6_info *)dst; |
---|
374 | 354 | struct fib6_info *from; |
---|
375 | 355 | struct inet6_dev *idev; |
---|
376 | 356 | |
---|
377 | | - if (p != &dst_default_metrics && refcount_dec_and_test(&p->refcnt)) |
---|
378 | | - kfree(p); |
---|
379 | | - |
---|
| 357 | + ip_dst_metrics_put(dst); |
---|
380 | 358 | rt6_uncached_list_del(rt); |
---|
381 | 359 | |
---|
382 | 360 | idev = rt->rt6i_idev; |
---|
.. | .. |
---|
430 | 408 | return false; |
---|
431 | 409 | } |
---|
432 | 410 | |
---|
433 | | -struct fib6_info *fib6_multipath_select(const struct net *net, |
---|
434 | | - struct fib6_info *match, |
---|
435 | | - struct flowi6 *fl6, int oif, |
---|
436 | | - const struct sk_buff *skb, |
---|
437 | | - int strict) |
---|
| 411 | +void fib6_select_path(const struct net *net, struct fib6_result *res, |
---|
| 412 | + struct flowi6 *fl6, int oif, bool have_oif_match, |
---|
| 413 | + const struct sk_buff *skb, int strict) |
---|
438 | 414 | { |
---|
439 | 415 | struct fib6_info *sibling, *next_sibling; |
---|
| 416 | + struct fib6_info *match = res->f6i; |
---|
| 417 | + |
---|
| 418 | + if (!match->nh && (!match->fib6_nsiblings || have_oif_match)) |
---|
| 419 | + goto out; |
---|
| 420 | + |
---|
| 421 | + if (match->nh && have_oif_match && res->nh) |
---|
| 422 | + return; |
---|
440 | 423 | |
---|
441 | 424 | /* We might have already computed the hash for ICMPv6 errors. In such |
---|
442 | 425 | * case it will always be non-zero. Otherwise now is the time to do it. |
---|
443 | 426 | */ |
---|
444 | | - if (!fl6->mp_hash) |
---|
| 427 | + if (!fl6->mp_hash && |
---|
| 428 | + (!match->nh || nexthop_is_multipath(match->nh))) |
---|
445 | 429 | fl6->mp_hash = rt6_multipath_hash(net, fl6, skb, NULL); |
---|
446 | 430 | |
---|
447 | | - if (fl6->mp_hash <= atomic_read(&match->fib6_nh.nh_upper_bound)) |
---|
448 | | - return match; |
---|
| 431 | + if (unlikely(match->nh)) { |
---|
| 432 | + nexthop_path_fib6_result(res, fl6->mp_hash); |
---|
| 433 | + return; |
---|
| 434 | + } |
---|
| 435 | + |
---|
| 436 | + if (fl6->mp_hash <= atomic_read(&match->fib6_nh->fib_nh_upper_bound)) |
---|
| 437 | + goto out; |
---|
449 | 438 | |
---|
450 | 439 | list_for_each_entry_safe(sibling, next_sibling, &match->fib6_siblings, |
---|
451 | 440 | fib6_siblings) { |
---|
| 441 | + const struct fib6_nh *nh = sibling->fib6_nh; |
---|
452 | 442 | int nh_upper_bound; |
---|
453 | 443 | |
---|
454 | | - nh_upper_bound = atomic_read(&sibling->fib6_nh.nh_upper_bound); |
---|
| 444 | + nh_upper_bound = atomic_read(&nh->fib_nh_upper_bound); |
---|
455 | 445 | if (fl6->mp_hash > nh_upper_bound) |
---|
456 | 446 | continue; |
---|
457 | | - if (rt6_score_route(sibling, oif, strict) < 0) |
---|
| 447 | + if (rt6_score_route(nh, sibling->fib6_flags, oif, strict) < 0) |
---|
458 | 448 | break; |
---|
459 | 449 | match = sibling; |
---|
460 | 450 | break; |
---|
461 | 451 | } |
---|
462 | 452 | |
---|
463 | | - return match; |
---|
| 453 | +out: |
---|
| 454 | + res->f6i = match; |
---|
| 455 | + res->nh = match->fib6_nh; |
---|
464 | 456 | } |
---|
465 | 457 | |
---|
466 | 458 | /* |
---|
467 | 459 | * Route lookup. rcu_read_lock() should be held. |
---|
468 | 460 | */ |
---|
469 | 461 | |
---|
470 | | -static inline struct fib6_info *rt6_device_match(struct net *net, |
---|
471 | | - struct fib6_info *rt, |
---|
472 | | - const struct in6_addr *saddr, |
---|
473 | | - int oif, |
---|
474 | | - int flags) |
---|
| 462 | +static bool __rt6_device_match(struct net *net, const struct fib6_nh *nh, |
---|
| 463 | + const struct in6_addr *saddr, int oif, int flags) |
---|
475 | 464 | { |
---|
476 | | - struct fib6_info *sprt; |
---|
| 465 | + const struct net_device *dev; |
---|
477 | 466 | |
---|
478 | | - if (!oif && ipv6_addr_any(saddr) && |
---|
479 | | - !(rt->fib6_nh.nh_flags & RTNH_F_DEAD)) |
---|
480 | | - return rt; |
---|
| 467 | + if (nh->fib_nh_flags & RTNH_F_DEAD) |
---|
| 468 | + return false; |
---|
481 | 469 | |
---|
482 | | - for (sprt = rt; sprt; sprt = rcu_dereference(sprt->fib6_next)) { |
---|
483 | | - const struct net_device *dev = sprt->fib6_nh.nh_dev; |
---|
| 470 | + dev = nh->fib_nh_dev; |
---|
| 471 | + if (oif) { |
---|
| 472 | + if (dev->ifindex == oif) |
---|
| 473 | + return true; |
---|
| 474 | + } else { |
---|
| 475 | + if (ipv6_chk_addr(net, saddr, dev, |
---|
| 476 | + flags & RT6_LOOKUP_F_IFACE)) |
---|
| 477 | + return true; |
---|
| 478 | + } |
---|
484 | 479 | |
---|
485 | | - if (sprt->fib6_nh.nh_flags & RTNH_F_DEAD) |
---|
486 | | - continue; |
---|
| 480 | + return false; |
---|
| 481 | +} |
---|
487 | 482 | |
---|
488 | | - if (oif) { |
---|
489 | | - if (dev->ifindex == oif) |
---|
490 | | - return sprt; |
---|
| 483 | +struct fib6_nh_dm_arg { |
---|
| 484 | + struct net *net; |
---|
| 485 | + const struct in6_addr *saddr; |
---|
| 486 | + int oif; |
---|
| 487 | + int flags; |
---|
| 488 | + struct fib6_nh *nh; |
---|
| 489 | +}; |
---|
| 490 | + |
---|
| 491 | +static int __rt6_nh_dev_match(struct fib6_nh *nh, void *_arg) |
---|
| 492 | +{ |
---|
| 493 | + struct fib6_nh_dm_arg *arg = _arg; |
---|
| 494 | + |
---|
| 495 | + arg->nh = nh; |
---|
| 496 | + return __rt6_device_match(arg->net, nh, arg->saddr, arg->oif, |
---|
| 497 | + arg->flags); |
---|
| 498 | +} |
---|
| 499 | + |
---|
| 500 | +/* returns fib6_nh from nexthop or NULL */ |
---|
| 501 | +static struct fib6_nh *rt6_nh_dev_match(struct net *net, struct nexthop *nh, |
---|
| 502 | + struct fib6_result *res, |
---|
| 503 | + const struct in6_addr *saddr, |
---|
| 504 | + int oif, int flags) |
---|
| 505 | +{ |
---|
| 506 | + struct fib6_nh_dm_arg arg = { |
---|
| 507 | + .net = net, |
---|
| 508 | + .saddr = saddr, |
---|
| 509 | + .oif = oif, |
---|
| 510 | + .flags = flags, |
---|
| 511 | + }; |
---|
| 512 | + |
---|
| 513 | + if (nexthop_is_blackhole(nh)) |
---|
| 514 | + return NULL; |
---|
| 515 | + |
---|
| 516 | + if (nexthop_for_each_fib6_nh(nh, __rt6_nh_dev_match, &arg)) |
---|
| 517 | + return arg.nh; |
---|
| 518 | + |
---|
| 519 | + return NULL; |
---|
| 520 | +} |
---|
| 521 | + |
---|
| 522 | +static void rt6_device_match(struct net *net, struct fib6_result *res, |
---|
| 523 | + const struct in6_addr *saddr, int oif, int flags) |
---|
| 524 | +{ |
---|
| 525 | + struct fib6_info *f6i = res->f6i; |
---|
| 526 | + struct fib6_info *spf6i; |
---|
| 527 | + struct fib6_nh *nh; |
---|
| 528 | + |
---|
| 529 | + if (!oif && ipv6_addr_any(saddr)) { |
---|
| 530 | + if (unlikely(f6i->nh)) { |
---|
| 531 | + nh = nexthop_fib6_nh(f6i->nh); |
---|
| 532 | + if (nexthop_is_blackhole(f6i->nh)) |
---|
| 533 | + goto out_blackhole; |
---|
491 | 534 | } else { |
---|
492 | | - if (ipv6_chk_addr(net, saddr, dev, |
---|
493 | | - flags & RT6_LOOKUP_F_IFACE)) |
---|
494 | | - return sprt; |
---|
| 535 | + nh = f6i->fib6_nh; |
---|
| 536 | + } |
---|
| 537 | + if (!(nh->fib_nh_flags & RTNH_F_DEAD)) |
---|
| 538 | + goto out; |
---|
| 539 | + } |
---|
| 540 | + |
---|
| 541 | + for (spf6i = f6i; spf6i; spf6i = rcu_dereference(spf6i->fib6_next)) { |
---|
| 542 | + bool matched = false; |
---|
| 543 | + |
---|
| 544 | + if (unlikely(spf6i->nh)) { |
---|
| 545 | + nh = rt6_nh_dev_match(net, spf6i->nh, res, saddr, |
---|
| 546 | + oif, flags); |
---|
| 547 | + if (nh) |
---|
| 548 | + matched = true; |
---|
| 549 | + } else { |
---|
| 550 | + nh = spf6i->fib6_nh; |
---|
| 551 | + if (__rt6_device_match(net, nh, saddr, oif, flags)) |
---|
| 552 | + matched = true; |
---|
| 553 | + } |
---|
| 554 | + if (matched) { |
---|
| 555 | + res->f6i = spf6i; |
---|
| 556 | + goto out; |
---|
495 | 557 | } |
---|
496 | 558 | } |
---|
497 | 559 | |
---|
498 | | - if (oif && flags & RT6_LOOKUP_F_IFACE) |
---|
499 | | - return net->ipv6.fib6_null_entry; |
---|
| 560 | + if (oif && flags & RT6_LOOKUP_F_IFACE) { |
---|
| 561 | + res->f6i = net->ipv6.fib6_null_entry; |
---|
| 562 | + nh = res->f6i->fib6_nh; |
---|
| 563 | + goto out; |
---|
| 564 | + } |
---|
500 | 565 | |
---|
501 | | - return rt->fib6_nh.nh_flags & RTNH_F_DEAD ? net->ipv6.fib6_null_entry : rt; |
---|
| 566 | + if (unlikely(f6i->nh)) { |
---|
| 567 | + nh = nexthop_fib6_nh(f6i->nh); |
---|
| 568 | + if (nexthop_is_blackhole(f6i->nh)) |
---|
| 569 | + goto out_blackhole; |
---|
| 570 | + } else { |
---|
| 571 | + nh = f6i->fib6_nh; |
---|
| 572 | + } |
---|
| 573 | + |
---|
| 574 | + if (nh->fib_nh_flags & RTNH_F_DEAD) { |
---|
| 575 | + res->f6i = net->ipv6.fib6_null_entry; |
---|
| 576 | + nh = res->f6i->fib6_nh; |
---|
| 577 | + } |
---|
| 578 | +out: |
---|
| 579 | + res->nh = nh; |
---|
| 580 | + res->fib6_type = res->f6i->fib6_type; |
---|
| 581 | + res->fib6_flags = res->f6i->fib6_flags; |
---|
| 582 | + return; |
---|
| 583 | + |
---|
| 584 | +out_blackhole: |
---|
| 585 | + res->fib6_flags |= RTF_REJECT; |
---|
| 586 | + res->fib6_type = RTN_BLACKHOLE; |
---|
| 587 | + res->nh = nh; |
---|
502 | 588 | } |
---|
503 | 589 | |
---|
504 | 590 | #ifdef CONFIG_IPV6_ROUTER_PREF |
---|
.. | .. |
---|
520 | 606 | kfree(work); |
---|
521 | 607 | } |
---|
522 | 608 | |
---|
523 | | -static void rt6_probe(struct fib6_info *rt) |
---|
| 609 | +static void rt6_probe(struct fib6_nh *fib6_nh) |
---|
524 | 610 | { |
---|
525 | 611 | struct __rt6_probe_work *work = NULL; |
---|
526 | 612 | const struct in6_addr *nh_gw; |
---|
.. | .. |
---|
537 | 623 | * Router Reachability Probe MUST be rate-limited |
---|
538 | 624 | * to no more than one per minute. |
---|
539 | 625 | */ |
---|
540 | | - if (!rt || !(rt->fib6_flags & RTF_GATEWAY)) |
---|
| 626 | + if (!fib6_nh->fib_nh_gw_family) |
---|
541 | 627 | return; |
---|
542 | 628 | |
---|
543 | | - nh_gw = &rt->fib6_nh.nh_gw; |
---|
544 | | - dev = rt->fib6_nh.nh_dev; |
---|
| 629 | + nh_gw = &fib6_nh->fib_nh_gw6; |
---|
| 630 | + dev = fib6_nh->fib_nh_dev; |
---|
545 | 631 | rcu_read_lock_bh(); |
---|
546 | | - last_probe = READ_ONCE(rt->last_probe); |
---|
| 632 | + last_probe = READ_ONCE(fib6_nh->last_probe); |
---|
547 | 633 | idev = __in6_dev_get(dev); |
---|
548 | 634 | neigh = __ipv6_neigh_lookup_noref(dev, nh_gw); |
---|
549 | 635 | if (neigh) { |
---|
.. | .. |
---|
564 | 650 | work = kmalloc(sizeof(*work), GFP_ATOMIC); |
---|
565 | 651 | } |
---|
566 | 652 | |
---|
567 | | - if (!work || cmpxchg(&rt->last_probe, |
---|
| 653 | + if (!work || cmpxchg(&fib6_nh->last_probe, |
---|
568 | 654 | last_probe, jiffies) != last_probe) { |
---|
569 | 655 | kfree(work); |
---|
570 | 656 | } else { |
---|
.. | .. |
---|
579 | 665 | rcu_read_unlock_bh(); |
---|
580 | 666 | } |
---|
581 | 667 | #else |
---|
582 | | -static inline void rt6_probe(struct fib6_info *rt) |
---|
| 668 | +static inline void rt6_probe(struct fib6_nh *fib6_nh) |
---|
583 | 669 | { |
---|
584 | 670 | } |
---|
585 | 671 | #endif |
---|
.. | .. |
---|
587 | 673 | /* |
---|
588 | 674 | * Default Router Selection (RFC 2461 6.3.6) |
---|
589 | 675 | */ |
---|
590 | | -static inline int rt6_check_dev(struct fib6_info *rt, int oif) |
---|
591 | | -{ |
---|
592 | | - const struct net_device *dev = rt->fib6_nh.nh_dev; |
---|
593 | | - |
---|
594 | | - if (!oif || dev->ifindex == oif) |
---|
595 | | - return 2; |
---|
596 | | - return 0; |
---|
597 | | -} |
---|
598 | | - |
---|
599 | | -static inline enum rt6_nud_state rt6_check_neigh(struct fib6_info *rt) |
---|
| 676 | +static enum rt6_nud_state rt6_check_neigh(const struct fib6_nh *fib6_nh) |
---|
600 | 677 | { |
---|
601 | 678 | enum rt6_nud_state ret = RT6_NUD_FAIL_HARD; |
---|
602 | 679 | struct neighbour *neigh; |
---|
603 | 680 | |
---|
604 | | - if (rt->fib6_flags & RTF_NONEXTHOP || |
---|
605 | | - !(rt->fib6_flags & RTF_GATEWAY)) |
---|
606 | | - return RT6_NUD_SUCCEED; |
---|
607 | | - |
---|
608 | 681 | rcu_read_lock_bh(); |
---|
609 | | - neigh = __ipv6_neigh_lookup_noref(rt->fib6_nh.nh_dev, |
---|
610 | | - &rt->fib6_nh.nh_gw); |
---|
| 682 | + neigh = __ipv6_neigh_lookup_noref(fib6_nh->fib_nh_dev, |
---|
| 683 | + &fib6_nh->fib_nh_gw6); |
---|
611 | 684 | if (neigh) { |
---|
612 | 685 | read_lock(&neigh->lock); |
---|
613 | 686 | if (neigh->nud_state & NUD_VALID) |
---|
.. | .. |
---|
628 | 701 | return ret; |
---|
629 | 702 | } |
---|
630 | 703 | |
---|
631 | | -static int rt6_score_route(struct fib6_info *rt, int oif, int strict) |
---|
| 704 | +static int rt6_score_route(const struct fib6_nh *nh, u32 fib6_flags, int oif, |
---|
| 705 | + int strict) |
---|
632 | 706 | { |
---|
633 | | - int m; |
---|
| 707 | + int m = 0; |
---|
634 | 708 | |
---|
635 | | - m = rt6_check_dev(rt, oif); |
---|
| 709 | + if (!oif || nh->fib_nh_dev->ifindex == oif) |
---|
| 710 | + m = 2; |
---|
| 711 | + |
---|
636 | 712 | if (!m && (strict & RT6_LOOKUP_F_IFACE)) |
---|
637 | 713 | return RT6_NUD_FAIL_HARD; |
---|
638 | 714 | #ifdef CONFIG_IPV6_ROUTER_PREF |
---|
639 | | - m |= IPV6_DECODE_PREF(IPV6_EXTRACT_PREF(rt->fib6_flags)) << 2; |
---|
| 715 | + m |= IPV6_DECODE_PREF(IPV6_EXTRACT_PREF(fib6_flags)) << 2; |
---|
640 | 716 | #endif |
---|
641 | | - if (strict & RT6_LOOKUP_F_REACHABLE) { |
---|
642 | | - int n = rt6_check_neigh(rt); |
---|
| 717 | + if ((strict & RT6_LOOKUP_F_REACHABLE) && |
---|
| 718 | + !(fib6_flags & RTF_NONEXTHOP) && nh->fib_nh_gw_family) { |
---|
| 719 | + int n = rt6_check_neigh(nh); |
---|
643 | 720 | if (n < 0) |
---|
644 | 721 | return n; |
---|
645 | 722 | } |
---|
646 | 723 | return m; |
---|
647 | 724 | } |
---|
648 | 725 | |
---|
649 | | -/* called with rc_read_lock held */ |
---|
650 | | -static inline bool fib6_ignore_linkdown(const struct fib6_info *f6i) |
---|
| 726 | +static bool find_match(struct fib6_nh *nh, u32 fib6_flags, |
---|
| 727 | + int oif, int strict, int *mpri, bool *do_rr) |
---|
651 | 728 | { |
---|
652 | | - const struct net_device *dev = fib6_info_nh_dev(f6i); |
---|
653 | | - bool rc = false; |
---|
654 | | - |
---|
655 | | - if (dev) { |
---|
656 | | - const struct inet6_dev *idev = __in6_dev_get(dev); |
---|
657 | | - |
---|
658 | | - rc = !!idev->cnf.ignore_routes_with_linkdown; |
---|
659 | | - } |
---|
660 | | - |
---|
661 | | - return rc; |
---|
662 | | -} |
---|
663 | | - |
---|
664 | | -static struct fib6_info *find_match(struct fib6_info *rt, int oif, int strict, |
---|
665 | | - int *mpri, struct fib6_info *match, |
---|
666 | | - bool *do_rr) |
---|
667 | | -{ |
---|
668 | | - int m; |
---|
669 | 729 | bool match_do_rr = false; |
---|
| 730 | + bool rc = false; |
---|
| 731 | + int m; |
---|
670 | 732 | |
---|
671 | | - if (rt->fib6_nh.nh_flags & RTNH_F_DEAD) |
---|
| 733 | + if (nh->fib_nh_flags & RTNH_F_DEAD) |
---|
672 | 734 | goto out; |
---|
673 | 735 | |
---|
674 | | - if (fib6_ignore_linkdown(rt) && |
---|
675 | | - rt->fib6_nh.nh_flags & RTNH_F_LINKDOWN && |
---|
| 736 | + if (ip6_ignore_linkdown(nh->fib_nh_dev) && |
---|
| 737 | + nh->fib_nh_flags & RTNH_F_LINKDOWN && |
---|
676 | 738 | !(strict & RT6_LOOKUP_F_IGNORE_LINKSTATE)) |
---|
677 | 739 | goto out; |
---|
678 | 740 | |
---|
679 | | - if (fib6_check_expired(rt)) |
---|
680 | | - goto out; |
---|
681 | | - |
---|
682 | | - m = rt6_score_route(rt, oif, strict); |
---|
| 741 | + m = rt6_score_route(nh, fib6_flags, oif, strict); |
---|
683 | 742 | if (m == RT6_NUD_FAIL_DO_RR) { |
---|
684 | 743 | match_do_rr = true; |
---|
685 | 744 | m = 0; /* lowest valid score */ |
---|
.. | .. |
---|
688 | 747 | } |
---|
689 | 748 | |
---|
690 | 749 | if (strict & RT6_LOOKUP_F_REACHABLE) |
---|
691 | | - rt6_probe(rt); |
---|
| 750 | + rt6_probe(nh); |
---|
692 | 751 | |
---|
693 | 752 | /* note that m can be RT6_NUD_FAIL_PROBE at this point */ |
---|
694 | 753 | if (m > *mpri) { |
---|
695 | 754 | *do_rr = match_do_rr; |
---|
696 | 755 | *mpri = m; |
---|
697 | | - match = rt; |
---|
| 756 | + rc = true; |
---|
698 | 757 | } |
---|
699 | 758 | out: |
---|
700 | | - return match; |
---|
| 759 | + return rc; |
---|
701 | 760 | } |
---|
702 | 761 | |
---|
703 | | -static struct fib6_info *find_rr_leaf(struct fib6_node *fn, |
---|
704 | | - struct fib6_info *leaf, |
---|
705 | | - struct fib6_info *rr_head, |
---|
706 | | - u32 metric, int oif, int strict, |
---|
707 | | - bool *do_rr) |
---|
| 762 | +struct fib6_nh_frl_arg { |
---|
| 763 | + u32 flags; |
---|
| 764 | + int oif; |
---|
| 765 | + int strict; |
---|
| 766 | + int *mpri; |
---|
| 767 | + bool *do_rr; |
---|
| 768 | + struct fib6_nh *nh; |
---|
| 769 | +}; |
---|
| 770 | + |
---|
| 771 | +static int rt6_nh_find_match(struct fib6_nh *nh, void *_arg) |
---|
708 | 772 | { |
---|
709 | | - struct fib6_info *rt, *match, *cont; |
---|
| 773 | + struct fib6_nh_frl_arg *arg = _arg; |
---|
| 774 | + |
---|
| 775 | + arg->nh = nh; |
---|
| 776 | + return find_match(nh, arg->flags, arg->oif, arg->strict, |
---|
| 777 | + arg->mpri, arg->do_rr); |
---|
| 778 | +} |
---|
| 779 | + |
---|
| 780 | +static void __find_rr_leaf(struct fib6_info *f6i_start, |
---|
| 781 | + struct fib6_info *nomatch, u32 metric, |
---|
| 782 | + struct fib6_result *res, struct fib6_info **cont, |
---|
| 783 | + int oif, int strict, bool *do_rr, int *mpri) |
---|
| 784 | +{ |
---|
| 785 | + struct fib6_info *f6i; |
---|
| 786 | + |
---|
| 787 | + for (f6i = f6i_start; |
---|
| 788 | + f6i && f6i != nomatch; |
---|
| 789 | + f6i = rcu_dereference(f6i->fib6_next)) { |
---|
| 790 | + bool matched = false; |
---|
| 791 | + struct fib6_nh *nh; |
---|
| 792 | + |
---|
| 793 | + if (cont && f6i->fib6_metric != metric) { |
---|
| 794 | + *cont = f6i; |
---|
| 795 | + return; |
---|
| 796 | + } |
---|
| 797 | + |
---|
| 798 | + if (fib6_check_expired(f6i)) |
---|
| 799 | + continue; |
---|
| 800 | + |
---|
| 801 | + if (unlikely(f6i->nh)) { |
---|
| 802 | + struct fib6_nh_frl_arg arg = { |
---|
| 803 | + .flags = f6i->fib6_flags, |
---|
| 804 | + .oif = oif, |
---|
| 805 | + .strict = strict, |
---|
| 806 | + .mpri = mpri, |
---|
| 807 | + .do_rr = do_rr |
---|
| 808 | + }; |
---|
| 809 | + |
---|
| 810 | + if (nexthop_is_blackhole(f6i->nh)) { |
---|
| 811 | + res->fib6_flags = RTF_REJECT; |
---|
| 812 | + res->fib6_type = RTN_BLACKHOLE; |
---|
| 813 | + res->f6i = f6i; |
---|
| 814 | + res->nh = nexthop_fib6_nh(f6i->nh); |
---|
| 815 | + return; |
---|
| 816 | + } |
---|
| 817 | + if (nexthop_for_each_fib6_nh(f6i->nh, rt6_nh_find_match, |
---|
| 818 | + &arg)) { |
---|
| 819 | + matched = true; |
---|
| 820 | + nh = arg.nh; |
---|
| 821 | + } |
---|
| 822 | + } else { |
---|
| 823 | + nh = f6i->fib6_nh; |
---|
| 824 | + if (find_match(nh, f6i->fib6_flags, oif, strict, |
---|
| 825 | + mpri, do_rr)) |
---|
| 826 | + matched = true; |
---|
| 827 | + } |
---|
| 828 | + if (matched) { |
---|
| 829 | + res->f6i = f6i; |
---|
| 830 | + res->nh = nh; |
---|
| 831 | + res->fib6_flags = f6i->fib6_flags; |
---|
| 832 | + res->fib6_type = f6i->fib6_type; |
---|
| 833 | + } |
---|
| 834 | + } |
---|
| 835 | +} |
---|
| 836 | + |
---|
| 837 | +static void find_rr_leaf(struct fib6_node *fn, struct fib6_info *leaf, |
---|
| 838 | + struct fib6_info *rr_head, int oif, int strict, |
---|
| 839 | + bool *do_rr, struct fib6_result *res) |
---|
| 840 | +{ |
---|
| 841 | + u32 metric = rr_head->fib6_metric; |
---|
| 842 | + struct fib6_info *cont = NULL; |
---|
710 | 843 | int mpri = -1; |
---|
711 | 844 | |
---|
712 | | - match = NULL; |
---|
713 | | - cont = NULL; |
---|
714 | | - for (rt = rr_head; rt; rt = rcu_dereference(rt->fib6_next)) { |
---|
715 | | - if (rt->fib6_metric != metric) { |
---|
716 | | - cont = rt; |
---|
717 | | - break; |
---|
718 | | - } |
---|
| 845 | + __find_rr_leaf(rr_head, NULL, metric, res, &cont, |
---|
| 846 | + oif, strict, do_rr, &mpri); |
---|
719 | 847 | |
---|
720 | | - match = find_match(rt, oif, strict, &mpri, match, do_rr); |
---|
721 | | - } |
---|
| 848 | + __find_rr_leaf(leaf, rr_head, metric, res, &cont, |
---|
| 849 | + oif, strict, do_rr, &mpri); |
---|
722 | 850 | |
---|
723 | | - for (rt = leaf; rt && rt != rr_head; |
---|
724 | | - rt = rcu_dereference(rt->fib6_next)) { |
---|
725 | | - if (rt->fib6_metric != metric) { |
---|
726 | | - cont = rt; |
---|
727 | | - break; |
---|
728 | | - } |
---|
| 851 | + if (res->f6i || !cont) |
---|
| 852 | + return; |
---|
729 | 853 | |
---|
730 | | - match = find_match(rt, oif, strict, &mpri, match, do_rr); |
---|
731 | | - } |
---|
732 | | - |
---|
733 | | - if (match || !cont) |
---|
734 | | - return match; |
---|
735 | | - |
---|
736 | | - for (rt = cont; rt; rt = rcu_dereference(rt->fib6_next)) |
---|
737 | | - match = find_match(rt, oif, strict, &mpri, match, do_rr); |
---|
738 | | - |
---|
739 | | - return match; |
---|
| 854 | + __find_rr_leaf(cont, NULL, metric, res, NULL, |
---|
| 855 | + oif, strict, do_rr, &mpri); |
---|
740 | 856 | } |
---|
741 | 857 | |
---|
742 | | -static struct fib6_info *rt6_select(struct net *net, struct fib6_node *fn, |
---|
743 | | - int oif, int strict) |
---|
| 858 | +static void rt6_select(struct net *net, struct fib6_node *fn, int oif, |
---|
| 859 | + struct fib6_result *res, int strict) |
---|
744 | 860 | { |
---|
745 | 861 | struct fib6_info *leaf = rcu_dereference(fn->leaf); |
---|
746 | | - struct fib6_info *match, *rt0; |
---|
| 862 | + struct fib6_info *rt0; |
---|
747 | 863 | bool do_rr = false; |
---|
748 | 864 | int key_plen; |
---|
749 | 865 | |
---|
| 866 | + /* make sure this function or its helpers sets f6i */ |
---|
| 867 | + res->f6i = NULL; |
---|
| 868 | + |
---|
750 | 869 | if (!leaf || leaf == net->ipv6.fib6_null_entry) |
---|
751 | | - return net->ipv6.fib6_null_entry; |
---|
| 870 | + goto out; |
---|
752 | 871 | |
---|
753 | 872 | rt0 = rcu_dereference(fn->rr_ptr); |
---|
754 | 873 | if (!rt0) |
---|
.. | .. |
---|
765 | 884 | key_plen = rt0->fib6_src.plen; |
---|
766 | 885 | #endif |
---|
767 | 886 | if (fn->fn_bit != key_plen) |
---|
768 | | - return net->ipv6.fib6_null_entry; |
---|
| 887 | + goto out; |
---|
769 | 888 | |
---|
770 | | - match = find_rr_leaf(fn, leaf, rt0, rt0->fib6_metric, oif, strict, |
---|
771 | | - &do_rr); |
---|
772 | | - |
---|
| 889 | + find_rr_leaf(fn, leaf, rt0, oif, strict, &do_rr, res); |
---|
773 | 890 | if (do_rr) { |
---|
774 | 891 | struct fib6_info *next = rcu_dereference(rt0->fib6_next); |
---|
775 | 892 | |
---|
.. | .. |
---|
786 | 903 | } |
---|
787 | 904 | } |
---|
788 | 905 | |
---|
789 | | - return match ? match : net->ipv6.fib6_null_entry; |
---|
| 906 | +out: |
---|
| 907 | + if (!res->f6i) { |
---|
| 908 | + res->f6i = net->ipv6.fib6_null_entry; |
---|
| 909 | + res->nh = res->f6i->fib6_nh; |
---|
| 910 | + res->fib6_flags = res->f6i->fib6_flags; |
---|
| 911 | + res->fib6_type = res->f6i->fib6_type; |
---|
| 912 | + } |
---|
790 | 913 | } |
---|
791 | 914 | |
---|
792 | | -static bool rt6_is_gw_or_nonexthop(const struct fib6_info *rt) |
---|
| 915 | +static bool rt6_is_gw_or_nonexthop(const struct fib6_result *res) |
---|
793 | 916 | { |
---|
794 | | - return (rt->fib6_flags & (RTF_NONEXTHOP | RTF_GATEWAY)); |
---|
| 917 | + return (res->f6i->fib6_flags & RTF_NONEXTHOP) || |
---|
| 918 | + res->nh->fib_nh_gw_family; |
---|
795 | 919 | } |
---|
796 | 920 | |
---|
797 | 921 | #ifdef CONFIG_IPV6_ROUTE_INFO |
---|
.. | .. |
---|
847 | 971 | gwaddr, dev); |
---|
848 | 972 | |
---|
849 | 973 | if (rt && !lifetime) { |
---|
850 | | - ip6_del_rt(net, rt); |
---|
| 974 | + ip6_del_rt(net, rt, false); |
---|
851 | 975 | rt = NULL; |
---|
852 | 976 | } |
---|
853 | 977 | |
---|
.. | .. |
---|
875 | 999 | */ |
---|
876 | 1000 | |
---|
877 | 1001 | /* called with rcu_lock held */ |
---|
878 | | -static struct net_device *ip6_rt_get_dev_rcu(struct fib6_info *rt) |
---|
| 1002 | +static struct net_device *ip6_rt_get_dev_rcu(const struct fib6_result *res) |
---|
879 | 1003 | { |
---|
880 | | - struct net_device *dev = rt->fib6_nh.nh_dev; |
---|
| 1004 | + struct net_device *dev = res->nh->fib_nh_dev; |
---|
881 | 1005 | |
---|
882 | | - if (rt->fib6_flags & (RTF_LOCAL | RTF_ANYCAST)) { |
---|
| 1006 | + if (res->fib6_flags & (RTF_LOCAL | RTF_ANYCAST)) { |
---|
883 | 1007 | /* for copies of local routes, dst->dev needs to be the |
---|
884 | 1008 | * device if it is a master device, the master device if |
---|
885 | 1009 | * device is enslaved, and the loopback as the default |
---|
886 | 1010 | */ |
---|
887 | 1011 | if (netif_is_l3_slave(dev) && |
---|
888 | | - !rt6_need_strict(&rt->fib6_dst.addr)) |
---|
| 1012 | + !rt6_need_strict(&res->f6i->fib6_dst.addr)) |
---|
889 | 1013 | dev = l3mdev_master_dev_rcu(dev); |
---|
890 | 1014 | else if (!netif_is_l3_master(dev)) |
---|
891 | 1015 | dev = dev_net(dev)->loopback_dev; |
---|
.. | .. |
---|
925 | 1049 | flags |= DST_NOCOUNT; |
---|
926 | 1050 | if (rt->dst_nopolicy) |
---|
927 | 1051 | flags |= DST_NOPOLICY; |
---|
928 | | - if (rt->dst_host) |
---|
929 | | - flags |= DST_HOST; |
---|
930 | 1052 | |
---|
931 | 1053 | return flags; |
---|
932 | 1054 | } |
---|
933 | 1055 | |
---|
934 | | -static void ip6_rt_init_dst_reject(struct rt6_info *rt, struct fib6_info *ort) |
---|
| 1056 | +static void ip6_rt_init_dst_reject(struct rt6_info *rt, u8 fib6_type) |
---|
935 | 1057 | { |
---|
936 | | - rt->dst.error = ip6_rt_type_to_error(ort->fib6_type); |
---|
| 1058 | + rt->dst.error = ip6_rt_type_to_error(fib6_type); |
---|
937 | 1059 | |
---|
938 | | - switch (ort->fib6_type) { |
---|
| 1060 | + switch (fib6_type) { |
---|
939 | 1061 | case RTN_BLACKHOLE: |
---|
940 | 1062 | rt->dst.output = dst_discard_out; |
---|
941 | 1063 | rt->dst.input = dst_discard; |
---|
.. | .. |
---|
953 | 1075 | } |
---|
954 | 1076 | } |
---|
955 | 1077 | |
---|
956 | | -static void ip6_rt_init_dst(struct rt6_info *rt, struct fib6_info *ort) |
---|
| 1078 | +static void ip6_rt_init_dst(struct rt6_info *rt, const struct fib6_result *res) |
---|
957 | 1079 | { |
---|
958 | | - if (ort->fib6_flags & RTF_REJECT) { |
---|
959 | | - ip6_rt_init_dst_reject(rt, ort); |
---|
| 1080 | + struct fib6_info *f6i = res->f6i; |
---|
| 1081 | + |
---|
| 1082 | + if (res->fib6_flags & RTF_REJECT) { |
---|
| 1083 | + ip6_rt_init_dst_reject(rt, res->fib6_type); |
---|
960 | 1084 | return; |
---|
961 | 1085 | } |
---|
962 | 1086 | |
---|
963 | 1087 | rt->dst.error = 0; |
---|
964 | 1088 | rt->dst.output = ip6_output; |
---|
965 | 1089 | |
---|
966 | | - if (ort->fib6_type == RTN_LOCAL || ort->fib6_type == RTN_ANYCAST) { |
---|
| 1090 | + if (res->fib6_type == RTN_LOCAL || res->fib6_type == RTN_ANYCAST) { |
---|
967 | 1091 | rt->dst.input = ip6_input; |
---|
968 | | - } else if (ipv6_addr_type(&ort->fib6_dst.addr) & IPV6_ADDR_MULTICAST) { |
---|
| 1092 | + } else if (ipv6_addr_type(&f6i->fib6_dst.addr) & IPV6_ADDR_MULTICAST) { |
---|
969 | 1093 | rt->dst.input = ip6_mc_input; |
---|
970 | 1094 | } else { |
---|
971 | 1095 | rt->dst.input = ip6_forward; |
---|
972 | 1096 | } |
---|
973 | 1097 | |
---|
974 | | - if (ort->fib6_nh.nh_lwtstate) { |
---|
975 | | - rt->dst.lwtstate = lwtstate_get(ort->fib6_nh.nh_lwtstate); |
---|
| 1098 | + if (res->nh->fib_nh_lws) { |
---|
| 1099 | + rt->dst.lwtstate = lwtstate_get(res->nh->fib_nh_lws); |
---|
976 | 1100 | lwtunnel_set_redirect(&rt->dst); |
---|
977 | 1101 | } |
---|
978 | 1102 | |
---|
.. | .. |
---|
984 | 1108 | { |
---|
985 | 1109 | rt->rt6i_flags &= ~RTF_EXPIRES; |
---|
986 | 1110 | rcu_assign_pointer(rt->from, from); |
---|
987 | | - dst_init_metrics(&rt->dst, from->fib6_metrics->metrics, true); |
---|
988 | | - if (from->fib6_metrics != &dst_default_metrics) { |
---|
989 | | - rt->dst._metrics |= DST_METRICS_REFCOUNTED; |
---|
990 | | - refcount_inc(&from->fib6_metrics->refcnt); |
---|
991 | | - } |
---|
| 1111 | + ip_dst_init_metrics(&rt->dst, from->fib6_metrics); |
---|
992 | 1112 | } |
---|
993 | 1113 | |
---|
994 | | -/* Caller must already hold reference to @ort */ |
---|
995 | | -static void ip6_rt_copy_init(struct rt6_info *rt, struct fib6_info *ort) |
---|
| 1114 | +/* Caller must already hold reference to f6i in result */ |
---|
| 1115 | +static void ip6_rt_copy_init(struct rt6_info *rt, const struct fib6_result *res) |
---|
996 | 1116 | { |
---|
997 | | - struct net_device *dev = fib6_info_nh_dev(ort); |
---|
| 1117 | + const struct fib6_nh *nh = res->nh; |
---|
| 1118 | + const struct net_device *dev = nh->fib_nh_dev; |
---|
| 1119 | + struct fib6_info *f6i = res->f6i; |
---|
998 | 1120 | |
---|
999 | | - ip6_rt_init_dst(rt, ort); |
---|
| 1121 | + ip6_rt_init_dst(rt, res); |
---|
1000 | 1122 | |
---|
1001 | | - rt->rt6i_dst = ort->fib6_dst; |
---|
| 1123 | + rt->rt6i_dst = f6i->fib6_dst; |
---|
1002 | 1124 | rt->rt6i_idev = dev ? in6_dev_get(dev) : NULL; |
---|
1003 | | - rt->rt6i_gateway = ort->fib6_nh.nh_gw; |
---|
1004 | | - rt->rt6i_flags = ort->fib6_flags; |
---|
1005 | | - rt6_set_from(rt, ort); |
---|
| 1125 | + rt->rt6i_flags = res->fib6_flags; |
---|
| 1126 | + if (nh->fib_nh_gw_family) { |
---|
| 1127 | + rt->rt6i_gateway = nh->fib_nh_gw6; |
---|
| 1128 | + rt->rt6i_flags |= RTF_GATEWAY; |
---|
| 1129 | + } |
---|
| 1130 | + rt6_set_from(rt, f6i); |
---|
1006 | 1131 | #ifdef CONFIG_IPV6_SUBTREES |
---|
1007 | | - rt->rt6i_src = ort->fib6_src; |
---|
| 1132 | + rt->rt6i_src = f6i->fib6_src; |
---|
1008 | 1133 | #endif |
---|
1009 | | - rt->rt6i_prefsrc = ort->fib6_prefsrc; |
---|
1010 | 1134 | } |
---|
1011 | 1135 | |
---|
1012 | 1136 | static struct fib6_node* fib6_backtrack(struct fib6_node *fn, |
---|
.. | .. |
---|
1027 | 1151 | } |
---|
1028 | 1152 | } |
---|
1029 | 1153 | |
---|
1030 | | -static bool ip6_hold_safe(struct net *net, struct rt6_info **prt, |
---|
1031 | | - bool null_fallback) |
---|
| 1154 | +static bool ip6_hold_safe(struct net *net, struct rt6_info **prt) |
---|
1032 | 1155 | { |
---|
1033 | 1156 | struct rt6_info *rt = *prt; |
---|
1034 | 1157 | |
---|
1035 | 1158 | if (dst_hold_safe(&rt->dst)) |
---|
1036 | 1159 | return true; |
---|
1037 | | - if (null_fallback) { |
---|
| 1160 | + if (net) { |
---|
1038 | 1161 | rt = net->ipv6.ip6_null_entry; |
---|
1039 | 1162 | dst_hold(&rt->dst); |
---|
1040 | 1163 | } else { |
---|
.. | .. |
---|
1045 | 1168 | } |
---|
1046 | 1169 | |
---|
1047 | 1170 | /* called with rcu_lock held */ |
---|
1048 | | -static struct rt6_info *ip6_create_rt_rcu(struct fib6_info *rt) |
---|
| 1171 | +static struct rt6_info *ip6_create_rt_rcu(const struct fib6_result *res) |
---|
1049 | 1172 | { |
---|
1050 | | - unsigned short flags = fib6_info_dst_flags(rt); |
---|
1051 | | - struct net_device *dev = rt->fib6_nh.nh_dev; |
---|
| 1173 | + struct net_device *dev = res->nh->fib_nh_dev; |
---|
| 1174 | + struct fib6_info *f6i = res->f6i; |
---|
| 1175 | + unsigned short flags; |
---|
1052 | 1176 | struct rt6_info *nrt; |
---|
1053 | 1177 | |
---|
1054 | | - if (!fib6_info_hold_safe(rt)) |
---|
| 1178 | + if (!fib6_info_hold_safe(f6i)) |
---|
1055 | 1179 | goto fallback; |
---|
1056 | 1180 | |
---|
| 1181 | + flags = fib6_info_dst_flags(f6i); |
---|
1057 | 1182 | nrt = ip6_dst_alloc(dev_net(dev), dev, flags); |
---|
1058 | 1183 | if (!nrt) { |
---|
1059 | | - fib6_info_release(rt); |
---|
| 1184 | + fib6_info_release(f6i); |
---|
1060 | 1185 | goto fallback; |
---|
1061 | 1186 | } |
---|
1062 | 1187 | |
---|
1063 | | - ip6_rt_copy_init(nrt, rt); |
---|
| 1188 | + ip6_rt_copy_init(nrt, res); |
---|
1064 | 1189 | return nrt; |
---|
1065 | 1190 | |
---|
1066 | 1191 | fallback: |
---|
.. | .. |
---|
1069 | 1194 | return nrt; |
---|
1070 | 1195 | } |
---|
1071 | 1196 | |
---|
1072 | | -static struct rt6_info *ip6_pol_route_lookup(struct net *net, |
---|
| 1197 | +INDIRECT_CALLABLE_SCOPE struct rt6_info *ip6_pol_route_lookup(struct net *net, |
---|
1073 | 1198 | struct fib6_table *table, |
---|
1074 | 1199 | struct flowi6 *fl6, |
---|
1075 | 1200 | const struct sk_buff *skb, |
---|
1076 | 1201 | int flags) |
---|
1077 | 1202 | { |
---|
1078 | | - struct fib6_info *f6i; |
---|
| 1203 | + struct fib6_result res = {}; |
---|
1079 | 1204 | struct fib6_node *fn; |
---|
1080 | 1205 | struct rt6_info *rt; |
---|
1081 | 1206 | |
---|
.. | .. |
---|
1085 | 1210 | rcu_read_lock(); |
---|
1086 | 1211 | fn = fib6_node_lookup(&table->tb6_root, &fl6->daddr, &fl6->saddr); |
---|
1087 | 1212 | restart: |
---|
1088 | | - f6i = rcu_dereference(fn->leaf); |
---|
1089 | | - if (!f6i) { |
---|
1090 | | - f6i = net->ipv6.fib6_null_entry; |
---|
1091 | | - } else { |
---|
1092 | | - f6i = rt6_device_match(net, f6i, &fl6->saddr, |
---|
1093 | | - fl6->flowi6_oif, flags); |
---|
1094 | | - if (f6i->fib6_nsiblings && fl6->flowi6_oif == 0) |
---|
1095 | | - f6i = fib6_multipath_select(net, f6i, fl6, |
---|
1096 | | - fl6->flowi6_oif, skb, |
---|
1097 | | - flags); |
---|
1098 | | - } |
---|
1099 | | - if (f6i == net->ipv6.fib6_null_entry) { |
---|
| 1213 | + res.f6i = rcu_dereference(fn->leaf); |
---|
| 1214 | + if (!res.f6i) |
---|
| 1215 | + res.f6i = net->ipv6.fib6_null_entry; |
---|
| 1216 | + else |
---|
| 1217 | + rt6_device_match(net, &res, &fl6->saddr, fl6->flowi6_oif, |
---|
| 1218 | + flags); |
---|
| 1219 | + |
---|
| 1220 | + if (res.f6i == net->ipv6.fib6_null_entry) { |
---|
1100 | 1221 | fn = fib6_backtrack(fn, &fl6->saddr); |
---|
1101 | 1222 | if (fn) |
---|
1102 | 1223 | goto restart; |
---|
1103 | | - } |
---|
1104 | 1224 | |
---|
1105 | | - trace_fib6_table_lookup(net, f6i, table, fl6); |
---|
1106 | | - |
---|
1107 | | - /* Search through exception table */ |
---|
1108 | | - rt = rt6_find_cached_rt(f6i, &fl6->daddr, &fl6->saddr); |
---|
1109 | | - if (rt) { |
---|
1110 | | - if (ip6_hold_safe(net, &rt, true)) |
---|
1111 | | - dst_use_noref(&rt->dst, jiffies); |
---|
1112 | | - } else if (f6i == net->ipv6.fib6_null_entry) { |
---|
1113 | 1225 | rt = net->ipv6.ip6_null_entry; |
---|
1114 | 1226 | dst_hold(&rt->dst); |
---|
1115 | | - } else { |
---|
1116 | | - rt = ip6_create_rt_rcu(f6i); |
---|
| 1227 | + goto out; |
---|
| 1228 | + } else if (res.fib6_flags & RTF_REJECT) { |
---|
| 1229 | + goto do_create; |
---|
1117 | 1230 | } |
---|
| 1231 | + |
---|
| 1232 | + fib6_select_path(net, &res, fl6, fl6->flowi6_oif, |
---|
| 1233 | + fl6->flowi6_oif != 0, skb, flags); |
---|
| 1234 | + |
---|
| 1235 | + /* Search through exception table */ |
---|
| 1236 | + rt = rt6_find_cached_rt(&res, &fl6->daddr, &fl6->saddr); |
---|
| 1237 | + if (rt) { |
---|
| 1238 | + if (ip6_hold_safe(net, &rt)) |
---|
| 1239 | + dst_use_noref(&rt->dst, jiffies); |
---|
| 1240 | + } else { |
---|
| 1241 | +do_create: |
---|
| 1242 | + rt = ip6_create_rt_rcu(&res); |
---|
| 1243 | + } |
---|
| 1244 | + |
---|
| 1245 | +out: |
---|
| 1246 | + trace_fib6_table_lookup(net, &res, table, fl6); |
---|
1118 | 1247 | |
---|
1119 | 1248 | rcu_read_unlock(); |
---|
1120 | 1249 | |
---|
.. | .. |
---|
1181 | 1310 | return __ip6_ins_rt(rt, &info, NULL); |
---|
1182 | 1311 | } |
---|
1183 | 1312 | |
---|
1184 | | -static struct rt6_info *ip6_rt_cache_alloc(struct fib6_info *ort, |
---|
| 1313 | +static struct rt6_info *ip6_rt_cache_alloc(const struct fib6_result *res, |
---|
1185 | 1314 | const struct in6_addr *daddr, |
---|
1186 | 1315 | const struct in6_addr *saddr) |
---|
1187 | 1316 | { |
---|
| 1317 | + struct fib6_info *f6i = res->f6i; |
---|
1188 | 1318 | struct net_device *dev; |
---|
1189 | 1319 | struct rt6_info *rt; |
---|
1190 | 1320 | |
---|
.. | .. |
---|
1192 | 1322 | * Clone the route. |
---|
1193 | 1323 | */ |
---|
1194 | 1324 | |
---|
1195 | | - if (!fib6_info_hold_safe(ort)) |
---|
| 1325 | + if (!fib6_info_hold_safe(f6i)) |
---|
1196 | 1326 | return NULL; |
---|
1197 | 1327 | |
---|
1198 | | - dev = ip6_rt_get_dev_rcu(ort); |
---|
| 1328 | + dev = ip6_rt_get_dev_rcu(res); |
---|
1199 | 1329 | rt = ip6_dst_alloc(dev_net(dev), dev, 0); |
---|
1200 | 1330 | if (!rt) { |
---|
1201 | | - fib6_info_release(ort); |
---|
| 1331 | + fib6_info_release(f6i); |
---|
1202 | 1332 | return NULL; |
---|
1203 | 1333 | } |
---|
1204 | 1334 | |
---|
1205 | | - ip6_rt_copy_init(rt, ort); |
---|
| 1335 | + ip6_rt_copy_init(rt, res); |
---|
1206 | 1336 | rt->rt6i_flags |= RTF_CACHE; |
---|
1207 | | - rt->dst.flags |= DST_HOST; |
---|
1208 | 1337 | rt->rt6i_dst.addr = *daddr; |
---|
1209 | 1338 | rt->rt6i_dst.plen = 128; |
---|
1210 | 1339 | |
---|
1211 | | - if (!rt6_is_gw_or_nonexthop(ort)) { |
---|
1212 | | - if (ort->fib6_dst.plen != 128 && |
---|
1213 | | - ipv6_addr_equal(&ort->fib6_dst.addr, daddr)) |
---|
| 1340 | + if (!rt6_is_gw_or_nonexthop(res)) { |
---|
| 1341 | + if (f6i->fib6_dst.plen != 128 && |
---|
| 1342 | + ipv6_addr_equal(&f6i->fib6_dst.addr, daddr)) |
---|
1214 | 1343 | rt->rt6i_flags |= RTF_ANYCAST; |
---|
1215 | 1344 | #ifdef CONFIG_IPV6_SUBTREES |
---|
1216 | 1345 | if (rt->rt6i_src.plen && saddr) { |
---|
.. | .. |
---|
1223 | 1352 | return rt; |
---|
1224 | 1353 | } |
---|
1225 | 1354 | |
---|
1226 | | -static struct rt6_info *ip6_rt_pcpu_alloc(struct fib6_info *rt) |
---|
| 1355 | +static struct rt6_info *ip6_rt_pcpu_alloc(const struct fib6_result *res) |
---|
1227 | 1356 | { |
---|
1228 | | - unsigned short flags = fib6_info_dst_flags(rt); |
---|
| 1357 | + struct fib6_info *f6i = res->f6i; |
---|
| 1358 | + unsigned short flags = fib6_info_dst_flags(f6i); |
---|
1229 | 1359 | struct net_device *dev; |
---|
1230 | 1360 | struct rt6_info *pcpu_rt; |
---|
1231 | 1361 | |
---|
1232 | | - if (!fib6_info_hold_safe(rt)) |
---|
| 1362 | + if (!fib6_info_hold_safe(f6i)) |
---|
1233 | 1363 | return NULL; |
---|
1234 | 1364 | |
---|
1235 | 1365 | rcu_read_lock(); |
---|
1236 | | - dev = ip6_rt_get_dev_rcu(rt); |
---|
1237 | | - pcpu_rt = ip6_dst_alloc(dev_net(dev), dev, flags); |
---|
| 1366 | + dev = ip6_rt_get_dev_rcu(res); |
---|
| 1367 | + pcpu_rt = ip6_dst_alloc(dev_net(dev), dev, flags | DST_NOCOUNT); |
---|
1238 | 1368 | rcu_read_unlock(); |
---|
1239 | 1369 | if (!pcpu_rt) { |
---|
1240 | | - fib6_info_release(rt); |
---|
| 1370 | + fib6_info_release(f6i); |
---|
1241 | 1371 | return NULL; |
---|
1242 | 1372 | } |
---|
1243 | | - ip6_rt_copy_init(pcpu_rt, rt); |
---|
| 1373 | + ip6_rt_copy_init(pcpu_rt, res); |
---|
1244 | 1374 | pcpu_rt->rt6i_flags |= RTF_PCPU; |
---|
| 1375 | + |
---|
| 1376 | + if (f6i->nh) |
---|
| 1377 | + pcpu_rt->sernum = rt_genid_ipv6(dev_net(dev)); |
---|
| 1378 | + |
---|
1245 | 1379 | return pcpu_rt; |
---|
1246 | 1380 | } |
---|
1247 | 1381 | |
---|
1248 | | -/* It should be called with rcu_read_lock() acquired */ |
---|
1249 | | -static struct rt6_info *rt6_get_pcpu_route(struct fib6_info *rt) |
---|
| 1382 | +static bool rt6_is_valid(const struct rt6_info *rt6) |
---|
1250 | 1383 | { |
---|
1251 | | - struct rt6_info *pcpu_rt, **p; |
---|
| 1384 | + return rt6->sernum == rt_genid_ipv6(dev_net(rt6->dst.dev)); |
---|
| 1385 | +} |
---|
1252 | 1386 | |
---|
1253 | | - p = this_cpu_ptr(rt->rt6i_pcpu); |
---|
1254 | | - pcpu_rt = *p; |
---|
| 1387 | +/* It should be called with rcu_read_lock() acquired */ |
---|
| 1388 | +static struct rt6_info *rt6_get_pcpu_route(const struct fib6_result *res) |
---|
| 1389 | +{ |
---|
| 1390 | + struct rt6_info *pcpu_rt; |
---|
1255 | 1391 | |
---|
1256 | | - if (pcpu_rt) |
---|
1257 | | - ip6_hold_safe(NULL, &pcpu_rt, false); |
---|
| 1392 | + pcpu_rt = this_cpu_read(*res->nh->rt6i_pcpu); |
---|
| 1393 | + |
---|
| 1394 | + if (pcpu_rt && pcpu_rt->sernum && !rt6_is_valid(pcpu_rt)) { |
---|
| 1395 | + struct rt6_info *prev, **p; |
---|
| 1396 | + |
---|
| 1397 | + p = this_cpu_ptr(res->nh->rt6i_pcpu); |
---|
| 1398 | + prev = xchg(p, NULL); |
---|
| 1399 | + if (prev) { |
---|
| 1400 | + dst_dev_put(&prev->dst); |
---|
| 1401 | + dst_release(&prev->dst); |
---|
| 1402 | + } |
---|
| 1403 | + |
---|
| 1404 | + pcpu_rt = NULL; |
---|
| 1405 | + } |
---|
1258 | 1406 | |
---|
1259 | 1407 | return pcpu_rt; |
---|
1260 | 1408 | } |
---|
1261 | 1409 | |
---|
1262 | 1410 | static struct rt6_info *rt6_make_pcpu_route(struct net *net, |
---|
1263 | | - struct fib6_info *rt) |
---|
| 1411 | + const struct fib6_result *res) |
---|
1264 | 1412 | { |
---|
1265 | 1413 | struct rt6_info *pcpu_rt, *prev, **p; |
---|
1266 | 1414 | |
---|
1267 | | - pcpu_rt = ip6_rt_pcpu_alloc(rt); |
---|
1268 | | - if (!pcpu_rt) { |
---|
1269 | | - dst_hold(&net->ipv6.ip6_null_entry->dst); |
---|
1270 | | - return net->ipv6.ip6_null_entry; |
---|
1271 | | - } |
---|
| 1415 | + pcpu_rt = ip6_rt_pcpu_alloc(res); |
---|
| 1416 | + if (!pcpu_rt) |
---|
| 1417 | + return NULL; |
---|
1272 | 1418 | |
---|
1273 | | - dst_hold(&pcpu_rt->dst); |
---|
1274 | | - p = this_cpu_ptr(rt->rt6i_pcpu); |
---|
| 1419 | + p = this_cpu_ptr(res->nh->rt6i_pcpu); |
---|
1275 | 1420 | prev = cmpxchg(p, NULL, pcpu_rt); |
---|
1276 | 1421 | BUG_ON(prev); |
---|
1277 | 1422 | |
---|
1278 | | - if (rt->fib6_destroying) { |
---|
| 1423 | + if (res->f6i->fib6_destroying) { |
---|
1279 | 1424 | struct fib6_info *from; |
---|
1280 | 1425 | |
---|
1281 | 1426 | from = xchg((__force struct fib6_info **)&pcpu_rt->from, NULL); |
---|
.. | .. |
---|
1426 | 1571 | return NULL; |
---|
1427 | 1572 | } |
---|
1428 | 1573 | |
---|
1429 | | -static unsigned int fib6_mtu(const struct fib6_info *rt) |
---|
| 1574 | +static unsigned int fib6_mtu(const struct fib6_result *res) |
---|
1430 | 1575 | { |
---|
| 1576 | + const struct fib6_nh *nh = res->nh; |
---|
1431 | 1577 | unsigned int mtu; |
---|
1432 | 1578 | |
---|
1433 | | - if (rt->fib6_pmtu) { |
---|
1434 | | - mtu = rt->fib6_pmtu; |
---|
| 1579 | + if (res->f6i->fib6_pmtu) { |
---|
| 1580 | + mtu = res->f6i->fib6_pmtu; |
---|
1435 | 1581 | } else { |
---|
1436 | | - struct net_device *dev = fib6_info_nh_dev(rt); |
---|
| 1582 | + struct net_device *dev = nh->fib_nh_dev; |
---|
1437 | 1583 | struct inet6_dev *idev; |
---|
1438 | 1584 | |
---|
1439 | 1585 | rcu_read_lock(); |
---|
.. | .. |
---|
1444 | 1590 | |
---|
1445 | 1591 | mtu = min_t(unsigned int, mtu, IP6_MAX_MTU); |
---|
1446 | 1592 | |
---|
1447 | | - return mtu - lwtunnel_headroom(rt->fib6_nh.nh_lwtstate, mtu); |
---|
| 1593 | + return mtu - lwtunnel_headroom(nh->fib_nh_lws, mtu); |
---|
| 1594 | +} |
---|
| 1595 | + |
---|
| 1596 | +#define FIB6_EXCEPTION_BUCKET_FLUSHED 0x1UL |
---|
| 1597 | + |
---|
| 1598 | +/* used when the flushed bit is not relevant, only access to the bucket |
---|
| 1599 | + * (ie., all bucket users except rt6_insert_exception); |
---|
| 1600 | + * |
---|
| 1601 | + * called under rcu lock; sometimes called with rt6_exception_lock held |
---|
| 1602 | + */ |
---|
| 1603 | +static |
---|
| 1604 | +struct rt6_exception_bucket *fib6_nh_get_excptn_bucket(const struct fib6_nh *nh, |
---|
| 1605 | + spinlock_t *lock) |
---|
| 1606 | +{ |
---|
| 1607 | + struct rt6_exception_bucket *bucket; |
---|
| 1608 | + |
---|
| 1609 | + if (lock) |
---|
| 1610 | + bucket = rcu_dereference_protected(nh->rt6i_exception_bucket, |
---|
| 1611 | + lockdep_is_held(lock)); |
---|
| 1612 | + else |
---|
| 1613 | + bucket = rcu_dereference(nh->rt6i_exception_bucket); |
---|
| 1614 | + |
---|
| 1615 | + /* remove bucket flushed bit if set */ |
---|
| 1616 | + if (bucket) { |
---|
| 1617 | + unsigned long p = (unsigned long)bucket; |
---|
| 1618 | + |
---|
| 1619 | + p &= ~FIB6_EXCEPTION_BUCKET_FLUSHED; |
---|
| 1620 | + bucket = (struct rt6_exception_bucket *)p; |
---|
| 1621 | + } |
---|
| 1622 | + |
---|
| 1623 | + return bucket; |
---|
| 1624 | +} |
---|
| 1625 | + |
---|
| 1626 | +static bool fib6_nh_excptn_bucket_flushed(struct rt6_exception_bucket *bucket) |
---|
| 1627 | +{ |
---|
| 1628 | + unsigned long p = (unsigned long)bucket; |
---|
| 1629 | + |
---|
| 1630 | + return !!(p & FIB6_EXCEPTION_BUCKET_FLUSHED); |
---|
| 1631 | +} |
---|
| 1632 | + |
---|
| 1633 | +/* called with rt6_exception_lock held */ |
---|
| 1634 | +static void fib6_nh_excptn_bucket_set_flushed(struct fib6_nh *nh, |
---|
| 1635 | + spinlock_t *lock) |
---|
| 1636 | +{ |
---|
| 1637 | + struct rt6_exception_bucket *bucket; |
---|
| 1638 | + unsigned long p; |
---|
| 1639 | + |
---|
| 1640 | + bucket = rcu_dereference_protected(nh->rt6i_exception_bucket, |
---|
| 1641 | + lockdep_is_held(lock)); |
---|
| 1642 | + |
---|
| 1643 | + p = (unsigned long)bucket; |
---|
| 1644 | + p |= FIB6_EXCEPTION_BUCKET_FLUSHED; |
---|
| 1645 | + bucket = (struct rt6_exception_bucket *)p; |
---|
| 1646 | + rcu_assign_pointer(nh->rt6i_exception_bucket, bucket); |
---|
1448 | 1647 | } |
---|
1449 | 1648 | |
---|
1450 | 1649 | static int rt6_insert_exception(struct rt6_info *nrt, |
---|
1451 | | - struct fib6_info *ort) |
---|
| 1650 | + const struct fib6_result *res) |
---|
1452 | 1651 | { |
---|
1453 | 1652 | struct net *net = dev_net(nrt->dst.dev); |
---|
1454 | 1653 | struct rt6_exception_bucket *bucket; |
---|
| 1654 | + struct fib6_info *f6i = res->f6i; |
---|
1455 | 1655 | struct in6_addr *src_key = NULL; |
---|
1456 | 1656 | struct rt6_exception *rt6_ex; |
---|
| 1657 | + struct fib6_nh *nh = res->nh; |
---|
1457 | 1658 | int max_depth; |
---|
1458 | 1659 | int err = 0; |
---|
1459 | 1660 | |
---|
1460 | 1661 | spin_lock_bh(&rt6_exception_lock); |
---|
1461 | 1662 | |
---|
1462 | | - if (ort->exception_bucket_flushed) { |
---|
1463 | | - err = -EINVAL; |
---|
1464 | | - goto out; |
---|
1465 | | - } |
---|
1466 | | - |
---|
1467 | | - bucket = rcu_dereference_protected(ort->rt6i_exception_bucket, |
---|
1468 | | - lockdep_is_held(&rt6_exception_lock)); |
---|
| 1663 | + bucket = rcu_dereference_protected(nh->rt6i_exception_bucket, |
---|
| 1664 | + lockdep_is_held(&rt6_exception_lock)); |
---|
1469 | 1665 | if (!bucket) { |
---|
1470 | 1666 | bucket = kcalloc(FIB6_EXCEPTION_BUCKET_SIZE, sizeof(*bucket), |
---|
1471 | 1667 | GFP_ATOMIC); |
---|
.. | .. |
---|
1473 | 1669 | err = -ENOMEM; |
---|
1474 | 1670 | goto out; |
---|
1475 | 1671 | } |
---|
1476 | | - rcu_assign_pointer(ort->rt6i_exception_bucket, bucket); |
---|
| 1672 | + rcu_assign_pointer(nh->rt6i_exception_bucket, bucket); |
---|
| 1673 | + } else if (fib6_nh_excptn_bucket_flushed(bucket)) { |
---|
| 1674 | + err = -EINVAL; |
---|
| 1675 | + goto out; |
---|
1477 | 1676 | } |
---|
1478 | 1677 | |
---|
1479 | 1678 | #ifdef CONFIG_IPV6_SUBTREES |
---|
1480 | | - /* rt6i_src.plen != 0 indicates ort is in subtree |
---|
| 1679 | + /* fib6_src.plen != 0 indicates f6i is in subtree |
---|
1481 | 1680 | * and exception table is indexed by a hash of |
---|
1482 | | - * both rt6i_dst and rt6i_src. |
---|
| 1681 | + * both fib6_dst and fib6_src. |
---|
1483 | 1682 | * Otherwise, the exception table is indexed by |
---|
1484 | | - * a hash of only rt6i_dst. |
---|
| 1683 | + * a hash of only fib6_dst. |
---|
1485 | 1684 | */ |
---|
1486 | | - if (ort->fib6_src.plen) |
---|
| 1685 | + if (f6i->fib6_src.plen) |
---|
1487 | 1686 | src_key = &nrt->rt6i_src.addr; |
---|
1488 | 1687 | #endif |
---|
1489 | | - |
---|
1490 | | - /* Update rt6i_prefsrc as it could be changed |
---|
1491 | | - * in rt6_remove_prefsrc() |
---|
1492 | | - */ |
---|
1493 | | - nrt->rt6i_prefsrc = ort->fib6_prefsrc; |
---|
1494 | | - /* rt6_mtu_change() might lower mtu on ort. |
---|
| 1688 | + /* rt6_mtu_change() might lower mtu on f6i. |
---|
1495 | 1689 | * Only insert this exception route if its mtu |
---|
1496 | | - * is less than ort's mtu value. |
---|
| 1690 | + * is less than f6i's mtu value. |
---|
1497 | 1691 | */ |
---|
1498 | | - if (dst_metric_raw(&nrt->dst, RTAX_MTU) >= fib6_mtu(ort)) { |
---|
| 1692 | + if (dst_metric_raw(&nrt->dst, RTAX_MTU) >= fib6_mtu(res)) { |
---|
1499 | 1693 | err = -EINVAL; |
---|
1500 | 1694 | goto out; |
---|
1501 | 1695 | } |
---|
.. | .. |
---|
1526 | 1720 | |
---|
1527 | 1721 | /* Update fn->fn_sernum to invalidate all cached dst */ |
---|
1528 | 1722 | if (!err) { |
---|
1529 | | - spin_lock_bh(&ort->fib6_table->tb6_lock); |
---|
1530 | | - fib6_update_sernum(net, ort); |
---|
1531 | | - spin_unlock_bh(&ort->fib6_table->tb6_lock); |
---|
| 1723 | + spin_lock_bh(&f6i->fib6_table->tb6_lock); |
---|
| 1724 | + fib6_update_sernum(net, f6i); |
---|
| 1725 | + spin_unlock_bh(&f6i->fib6_table->tb6_lock); |
---|
1532 | 1726 | fib6_force_start_gc(net); |
---|
1533 | 1727 | } |
---|
1534 | 1728 | |
---|
1535 | 1729 | return err; |
---|
1536 | 1730 | } |
---|
1537 | 1731 | |
---|
1538 | | -void rt6_flush_exceptions(struct fib6_info *rt) |
---|
| 1732 | +static void fib6_nh_flush_exceptions(struct fib6_nh *nh, struct fib6_info *from) |
---|
1539 | 1733 | { |
---|
1540 | 1734 | struct rt6_exception_bucket *bucket; |
---|
1541 | 1735 | struct rt6_exception *rt6_ex; |
---|
.. | .. |
---|
1543 | 1737 | int i; |
---|
1544 | 1738 | |
---|
1545 | 1739 | spin_lock_bh(&rt6_exception_lock); |
---|
1546 | | - /* Prevent rt6_insert_exception() to recreate the bucket list */ |
---|
1547 | | - rt->exception_bucket_flushed = 1; |
---|
1548 | 1740 | |
---|
1549 | | - bucket = rcu_dereference_protected(rt->rt6i_exception_bucket, |
---|
1550 | | - lockdep_is_held(&rt6_exception_lock)); |
---|
| 1741 | + bucket = fib6_nh_get_excptn_bucket(nh, &rt6_exception_lock); |
---|
1551 | 1742 | if (!bucket) |
---|
1552 | 1743 | goto out; |
---|
1553 | 1744 | |
---|
| 1745 | + /* Prevent rt6_insert_exception() to recreate the bucket list */ |
---|
| 1746 | + if (!from) |
---|
| 1747 | + fib6_nh_excptn_bucket_set_flushed(nh, &rt6_exception_lock); |
---|
| 1748 | + |
---|
1554 | 1749 | for (i = 0; i < FIB6_EXCEPTION_BUCKET_SIZE; i++) { |
---|
1555 | | - hlist_for_each_entry_safe(rt6_ex, tmp, &bucket->chain, hlist) |
---|
1556 | | - rt6_remove_exception(bucket, rt6_ex); |
---|
1557 | | - WARN_ON_ONCE(bucket->depth); |
---|
| 1750 | + hlist_for_each_entry_safe(rt6_ex, tmp, &bucket->chain, hlist) { |
---|
| 1751 | + if (!from || |
---|
| 1752 | + rcu_access_pointer(rt6_ex->rt6i->from) == from) |
---|
| 1753 | + rt6_remove_exception(bucket, rt6_ex); |
---|
| 1754 | + } |
---|
| 1755 | + WARN_ON_ONCE(!from && bucket->depth); |
---|
1558 | 1756 | bucket++; |
---|
1559 | 1757 | } |
---|
1560 | | - |
---|
1561 | 1758 | out: |
---|
1562 | 1759 | spin_unlock_bh(&rt6_exception_lock); |
---|
| 1760 | +} |
---|
| 1761 | + |
---|
| 1762 | +static int rt6_nh_flush_exceptions(struct fib6_nh *nh, void *arg) |
---|
| 1763 | +{ |
---|
| 1764 | + struct fib6_info *f6i = arg; |
---|
| 1765 | + |
---|
| 1766 | + fib6_nh_flush_exceptions(nh, f6i); |
---|
| 1767 | + |
---|
| 1768 | + return 0; |
---|
| 1769 | +} |
---|
| 1770 | + |
---|
| 1771 | +void rt6_flush_exceptions(struct fib6_info *f6i) |
---|
| 1772 | +{ |
---|
| 1773 | + if (f6i->nh) |
---|
| 1774 | + nexthop_for_each_fib6_nh(f6i->nh, rt6_nh_flush_exceptions, |
---|
| 1775 | + f6i); |
---|
| 1776 | + else |
---|
| 1777 | + fib6_nh_flush_exceptions(f6i->fib6_nh, f6i); |
---|
1563 | 1778 | } |
---|
1564 | 1779 | |
---|
1565 | 1780 | /* Find cached rt in the hash table inside passed in rt |
---|
1566 | 1781 | * Caller has to hold rcu_read_lock() |
---|
1567 | 1782 | */ |
---|
1568 | | -static struct rt6_info *rt6_find_cached_rt(struct fib6_info *rt, |
---|
| 1783 | +static struct rt6_info *rt6_find_cached_rt(const struct fib6_result *res, |
---|
1569 | 1784 | const struct in6_addr *daddr, |
---|
1570 | 1785 | const struct in6_addr *saddr) |
---|
1571 | 1786 | { |
---|
1572 | 1787 | const struct in6_addr *src_key = NULL; |
---|
1573 | 1788 | struct rt6_exception_bucket *bucket; |
---|
1574 | 1789 | struct rt6_exception *rt6_ex; |
---|
1575 | | - struct rt6_info *res = NULL; |
---|
| 1790 | + struct rt6_info *ret = NULL; |
---|
1576 | 1791 | |
---|
1577 | 1792 | #ifdef CONFIG_IPV6_SUBTREES |
---|
1578 | | - /* rt6i_src.plen != 0 indicates rt is in subtree |
---|
| 1793 | + /* fib6i_src.plen != 0 indicates f6i is in subtree |
---|
1579 | 1794 | * and exception table is indexed by a hash of |
---|
1580 | | - * both rt6i_dst and rt6i_src. |
---|
| 1795 | + * both fib6_dst and fib6_src. |
---|
1581 | 1796 | * However, the src addr used to create the hash |
---|
1582 | 1797 | * might not be exactly the passed in saddr which |
---|
1583 | 1798 | * is a /128 addr from the flow. |
---|
.. | .. |
---|
1586 | 1801 | * (See the logic in ip6_rt_cache_alloc() on how |
---|
1587 | 1802 | * rt->rt6i_src is updated.) |
---|
1588 | 1803 | */ |
---|
1589 | | - if (rt->fib6_src.plen) |
---|
| 1804 | + if (res->f6i->fib6_src.plen) |
---|
1590 | 1805 | src_key = saddr; |
---|
1591 | 1806 | find_ex: |
---|
1592 | 1807 | #endif |
---|
1593 | | - bucket = rcu_dereference(rt->rt6i_exception_bucket); |
---|
| 1808 | + bucket = fib6_nh_get_excptn_bucket(res->nh, NULL); |
---|
1594 | 1809 | rt6_ex = __rt6_find_exception_rcu(&bucket, daddr, src_key); |
---|
1595 | 1810 | |
---|
1596 | 1811 | if (rt6_ex && !rt6_check_expired(rt6_ex->rt6i)) |
---|
1597 | | - res = rt6_ex->rt6i; |
---|
| 1812 | + ret = rt6_ex->rt6i; |
---|
1598 | 1813 | |
---|
1599 | 1814 | #ifdef CONFIG_IPV6_SUBTREES |
---|
1600 | 1815 | /* Use fib6_src as src_key and redo lookup */ |
---|
1601 | | - if (!res && src_key && src_key != &rt->fib6_src.addr) { |
---|
1602 | | - src_key = &rt->fib6_src.addr; |
---|
| 1816 | + if (!ret && src_key && src_key != &res->f6i->fib6_src.addr) { |
---|
| 1817 | + src_key = &res->f6i->fib6_src.addr; |
---|
1603 | 1818 | goto find_ex; |
---|
1604 | 1819 | } |
---|
1605 | 1820 | #endif |
---|
1606 | 1821 | |
---|
1607 | | - return res; |
---|
| 1822 | + return ret; |
---|
1608 | 1823 | } |
---|
1609 | 1824 | |
---|
1610 | 1825 | /* Remove the passed in cached rt from the hash table that contains it */ |
---|
1611 | | -static int rt6_remove_exception_rt(struct rt6_info *rt) |
---|
| 1826 | +static int fib6_nh_remove_exception(const struct fib6_nh *nh, int plen, |
---|
| 1827 | + const struct rt6_info *rt) |
---|
1612 | 1828 | { |
---|
| 1829 | + const struct in6_addr *src_key = NULL; |
---|
1613 | 1830 | struct rt6_exception_bucket *bucket; |
---|
1614 | | - struct in6_addr *src_key = NULL; |
---|
1615 | 1831 | struct rt6_exception *rt6_ex; |
---|
1616 | | - struct fib6_info *from; |
---|
1617 | 1832 | int err; |
---|
1618 | 1833 | |
---|
1619 | | - from = rcu_dereference(rt->from); |
---|
1620 | | - if (!from || |
---|
1621 | | - !(rt->rt6i_flags & RTF_CACHE)) |
---|
1622 | | - return -EINVAL; |
---|
1623 | | - |
---|
1624 | | - if (!rcu_access_pointer(from->rt6i_exception_bucket)) |
---|
| 1834 | + if (!rcu_access_pointer(nh->rt6i_exception_bucket)) |
---|
1625 | 1835 | return -ENOENT; |
---|
1626 | 1836 | |
---|
1627 | 1837 | spin_lock_bh(&rt6_exception_lock); |
---|
1628 | | - bucket = rcu_dereference_protected(from->rt6i_exception_bucket, |
---|
1629 | | - lockdep_is_held(&rt6_exception_lock)); |
---|
| 1838 | + bucket = fib6_nh_get_excptn_bucket(nh, &rt6_exception_lock); |
---|
| 1839 | + |
---|
1630 | 1840 | #ifdef CONFIG_IPV6_SUBTREES |
---|
1631 | 1841 | /* rt6i_src.plen != 0 indicates 'from' is in subtree |
---|
1632 | 1842 | * and exception table is indexed by a hash of |
---|
.. | .. |
---|
1634 | 1844 | * Otherwise, the exception table is indexed by |
---|
1635 | 1845 | * a hash of only rt6i_dst. |
---|
1636 | 1846 | */ |
---|
1637 | | - if (from->fib6_src.plen) |
---|
| 1847 | + if (plen) |
---|
1638 | 1848 | src_key = &rt->rt6i_src.addr; |
---|
1639 | 1849 | #endif |
---|
1640 | 1850 | rt6_ex = __rt6_find_exception_spinlock(&bucket, |
---|
.. | .. |
---|
1651 | 1861 | return err; |
---|
1652 | 1862 | } |
---|
1653 | 1863 | |
---|
| 1864 | +struct fib6_nh_excptn_arg { |
---|
| 1865 | + struct rt6_info *rt; |
---|
| 1866 | + int plen; |
---|
| 1867 | +}; |
---|
| 1868 | + |
---|
| 1869 | +static int rt6_nh_remove_exception_rt(struct fib6_nh *nh, void *_arg) |
---|
| 1870 | +{ |
---|
| 1871 | + struct fib6_nh_excptn_arg *arg = _arg; |
---|
| 1872 | + int err; |
---|
| 1873 | + |
---|
| 1874 | + err = fib6_nh_remove_exception(nh, arg->plen, arg->rt); |
---|
| 1875 | + if (err == 0) |
---|
| 1876 | + return 1; |
---|
| 1877 | + |
---|
| 1878 | + return 0; |
---|
| 1879 | +} |
---|
| 1880 | + |
---|
| 1881 | +static int rt6_remove_exception_rt(struct rt6_info *rt) |
---|
| 1882 | +{ |
---|
| 1883 | + struct fib6_info *from; |
---|
| 1884 | + |
---|
| 1885 | + from = rcu_dereference(rt->from); |
---|
| 1886 | + if (!from || !(rt->rt6i_flags & RTF_CACHE)) |
---|
| 1887 | + return -EINVAL; |
---|
| 1888 | + |
---|
| 1889 | + if (from->nh) { |
---|
| 1890 | + struct fib6_nh_excptn_arg arg = { |
---|
| 1891 | + .rt = rt, |
---|
| 1892 | + .plen = from->fib6_src.plen |
---|
| 1893 | + }; |
---|
| 1894 | + int rc; |
---|
| 1895 | + |
---|
| 1896 | + /* rc = 1 means an entry was found */ |
---|
| 1897 | + rc = nexthop_for_each_fib6_nh(from->nh, |
---|
| 1898 | + rt6_nh_remove_exception_rt, |
---|
| 1899 | + &arg); |
---|
| 1900 | + return rc ? 0 : -ENOENT; |
---|
| 1901 | + } |
---|
| 1902 | + |
---|
| 1903 | + return fib6_nh_remove_exception(from->fib6_nh, |
---|
| 1904 | + from->fib6_src.plen, rt); |
---|
| 1905 | +} |
---|
| 1906 | + |
---|
1654 | 1907 | /* Find rt6_ex which contains the passed in rt cache and |
---|
1655 | 1908 | * refresh its stamp |
---|
1656 | 1909 | */ |
---|
1657 | | -static void rt6_update_exception_stamp_rt(struct rt6_info *rt) |
---|
| 1910 | +static void fib6_nh_update_exception(const struct fib6_nh *nh, int plen, |
---|
| 1911 | + const struct rt6_info *rt) |
---|
1658 | 1912 | { |
---|
| 1913 | + const struct in6_addr *src_key = NULL; |
---|
1659 | 1914 | struct rt6_exception_bucket *bucket; |
---|
1660 | | - struct in6_addr *src_key = NULL; |
---|
1661 | 1915 | struct rt6_exception *rt6_ex; |
---|
1662 | | - struct fib6_info *from; |
---|
1663 | 1916 | |
---|
1664 | | - rcu_read_lock(); |
---|
1665 | | - from = rcu_dereference(rt->from); |
---|
1666 | | - if (!from || !(rt->rt6i_flags & RTF_CACHE)) |
---|
1667 | | - goto unlock; |
---|
1668 | | - |
---|
1669 | | - bucket = rcu_dereference(from->rt6i_exception_bucket); |
---|
1670 | | - |
---|
| 1917 | + bucket = fib6_nh_get_excptn_bucket(nh, NULL); |
---|
1671 | 1918 | #ifdef CONFIG_IPV6_SUBTREES |
---|
1672 | 1919 | /* rt6i_src.plen != 0 indicates 'from' is in subtree |
---|
1673 | 1920 | * and exception table is indexed by a hash of |
---|
.. | .. |
---|
1675 | 1922 | * Otherwise, the exception table is indexed by |
---|
1676 | 1923 | * a hash of only rt6i_dst. |
---|
1677 | 1924 | */ |
---|
1678 | | - if (from->fib6_src.plen) |
---|
| 1925 | + if (plen) |
---|
1679 | 1926 | src_key = &rt->rt6i_src.addr; |
---|
1680 | 1927 | #endif |
---|
1681 | | - rt6_ex = __rt6_find_exception_rcu(&bucket, |
---|
1682 | | - &rt->rt6i_dst.addr, |
---|
1683 | | - src_key); |
---|
| 1928 | + rt6_ex = __rt6_find_exception_rcu(&bucket, &rt->rt6i_dst.addr, src_key); |
---|
1684 | 1929 | if (rt6_ex) |
---|
1685 | 1930 | rt6_ex->stamp = jiffies; |
---|
1686 | | - |
---|
1687 | | -unlock: |
---|
1688 | | - rcu_read_unlock(); |
---|
1689 | 1931 | } |
---|
1690 | 1932 | |
---|
1691 | | -static void rt6_exceptions_remove_prefsrc(struct fib6_info *rt) |
---|
| 1933 | +struct fib6_nh_match_arg { |
---|
| 1934 | + const struct net_device *dev; |
---|
| 1935 | + const struct in6_addr *gw; |
---|
| 1936 | + struct fib6_nh *match; |
---|
| 1937 | +}; |
---|
| 1938 | + |
---|
| 1939 | +/* determine if fib6_nh has given device and gateway */ |
---|
| 1940 | +static int fib6_nh_find_match(struct fib6_nh *nh, void *_arg) |
---|
1692 | 1941 | { |
---|
1693 | | - struct rt6_exception_bucket *bucket; |
---|
1694 | | - struct rt6_exception *rt6_ex; |
---|
1695 | | - int i; |
---|
| 1942 | + struct fib6_nh_match_arg *arg = _arg; |
---|
1696 | 1943 | |
---|
1697 | | - bucket = rcu_dereference_protected(rt->rt6i_exception_bucket, |
---|
1698 | | - lockdep_is_held(&rt6_exception_lock)); |
---|
| 1944 | + if (arg->dev != nh->fib_nh_dev || |
---|
| 1945 | + (arg->gw && !nh->fib_nh_gw_family) || |
---|
| 1946 | + (!arg->gw && nh->fib_nh_gw_family) || |
---|
| 1947 | + (arg->gw && !ipv6_addr_equal(arg->gw, &nh->fib_nh_gw6))) |
---|
| 1948 | + return 0; |
---|
1699 | 1949 | |
---|
1700 | | - if (bucket) { |
---|
1701 | | - for (i = 0; i < FIB6_EXCEPTION_BUCKET_SIZE; i++) { |
---|
1702 | | - hlist_for_each_entry(rt6_ex, &bucket->chain, hlist) { |
---|
1703 | | - rt6_ex->rt6i->rt6i_prefsrc.plen = 0; |
---|
1704 | | - } |
---|
1705 | | - bucket++; |
---|
1706 | | - } |
---|
| 1950 | + arg->match = nh; |
---|
| 1951 | + |
---|
| 1952 | + /* found a match, break the loop */ |
---|
| 1953 | + return 1; |
---|
| 1954 | +} |
---|
| 1955 | + |
---|
| 1956 | +static void rt6_update_exception_stamp_rt(struct rt6_info *rt) |
---|
| 1957 | +{ |
---|
| 1958 | + struct fib6_info *from; |
---|
| 1959 | + struct fib6_nh *fib6_nh; |
---|
| 1960 | + |
---|
| 1961 | + rcu_read_lock(); |
---|
| 1962 | + |
---|
| 1963 | + from = rcu_dereference(rt->from); |
---|
| 1964 | + if (!from || !(rt->rt6i_flags & RTF_CACHE)) |
---|
| 1965 | + goto unlock; |
---|
| 1966 | + |
---|
| 1967 | + if (from->nh) { |
---|
| 1968 | + struct fib6_nh_match_arg arg = { |
---|
| 1969 | + .dev = rt->dst.dev, |
---|
| 1970 | + .gw = &rt->rt6i_gateway, |
---|
| 1971 | + }; |
---|
| 1972 | + |
---|
| 1973 | + nexthop_for_each_fib6_nh(from->nh, fib6_nh_find_match, &arg); |
---|
| 1974 | + |
---|
| 1975 | + if (!arg.match) |
---|
| 1976 | + goto unlock; |
---|
| 1977 | + fib6_nh = arg.match; |
---|
| 1978 | + } else { |
---|
| 1979 | + fib6_nh = from->fib6_nh; |
---|
1707 | 1980 | } |
---|
| 1981 | + fib6_nh_update_exception(fib6_nh, from->fib6_src.plen, rt); |
---|
| 1982 | +unlock: |
---|
| 1983 | + rcu_read_unlock(); |
---|
1708 | 1984 | } |
---|
1709 | 1985 | |
---|
1710 | 1986 | static bool rt6_mtu_change_route_allowed(struct inet6_dev *idev, |
---|
.. | .. |
---|
1730 | 2006 | } |
---|
1731 | 2007 | |
---|
1732 | 2008 | static void rt6_exceptions_update_pmtu(struct inet6_dev *idev, |
---|
1733 | | - struct fib6_info *rt, int mtu) |
---|
| 2009 | + const struct fib6_nh *nh, int mtu) |
---|
1734 | 2010 | { |
---|
1735 | 2011 | struct rt6_exception_bucket *bucket; |
---|
1736 | 2012 | struct rt6_exception *rt6_ex; |
---|
1737 | 2013 | int i; |
---|
1738 | 2014 | |
---|
1739 | | - bucket = rcu_dereference_protected(rt->rt6i_exception_bucket, |
---|
1740 | | - lockdep_is_held(&rt6_exception_lock)); |
---|
1741 | | - |
---|
| 2015 | + bucket = fib6_nh_get_excptn_bucket(nh, &rt6_exception_lock); |
---|
1742 | 2016 | if (!bucket) |
---|
1743 | 2017 | return; |
---|
1744 | 2018 | |
---|
.. | .. |
---|
1760 | 2034 | |
---|
1761 | 2035 | #define RTF_CACHE_GATEWAY (RTF_GATEWAY | RTF_CACHE) |
---|
1762 | 2036 | |
---|
1763 | | -static void rt6_exceptions_clean_tohost(struct fib6_info *rt, |
---|
1764 | | - struct in6_addr *gateway) |
---|
| 2037 | +static void fib6_nh_exceptions_clean_tohost(const struct fib6_nh *nh, |
---|
| 2038 | + const struct in6_addr *gateway) |
---|
1765 | 2039 | { |
---|
1766 | 2040 | struct rt6_exception_bucket *bucket; |
---|
1767 | 2041 | struct rt6_exception *rt6_ex; |
---|
1768 | 2042 | struct hlist_node *tmp; |
---|
1769 | 2043 | int i; |
---|
1770 | 2044 | |
---|
1771 | | - if (!rcu_access_pointer(rt->rt6i_exception_bucket)) |
---|
| 2045 | + if (!rcu_access_pointer(nh->rt6i_exception_bucket)) |
---|
1772 | 2046 | return; |
---|
1773 | 2047 | |
---|
1774 | 2048 | spin_lock_bh(&rt6_exception_lock); |
---|
1775 | | - bucket = rcu_dereference_protected(rt->rt6i_exception_bucket, |
---|
1776 | | - lockdep_is_held(&rt6_exception_lock)); |
---|
1777 | | - |
---|
| 2049 | + bucket = fib6_nh_get_excptn_bucket(nh, &rt6_exception_lock); |
---|
1778 | 2050 | if (bucket) { |
---|
1779 | 2051 | for (i = 0; i < FIB6_EXCEPTION_BUCKET_SIZE; i++) { |
---|
1780 | 2052 | hlist_for_each_entry_safe(rt6_ex, tmp, |
---|
.. | .. |
---|
1839 | 2111 | gc_args->more++; |
---|
1840 | 2112 | } |
---|
1841 | 2113 | |
---|
1842 | | -void rt6_age_exceptions(struct fib6_info *rt, |
---|
1843 | | - struct fib6_gc_args *gc_args, |
---|
1844 | | - unsigned long now) |
---|
| 2114 | +static void fib6_nh_age_exceptions(const struct fib6_nh *nh, |
---|
| 2115 | + struct fib6_gc_args *gc_args, |
---|
| 2116 | + unsigned long now) |
---|
1845 | 2117 | { |
---|
1846 | 2118 | struct rt6_exception_bucket *bucket; |
---|
1847 | 2119 | struct rt6_exception *rt6_ex; |
---|
1848 | 2120 | struct hlist_node *tmp; |
---|
1849 | 2121 | int i; |
---|
1850 | 2122 | |
---|
1851 | | - if (!rcu_access_pointer(rt->rt6i_exception_bucket)) |
---|
| 2123 | + if (!rcu_access_pointer(nh->rt6i_exception_bucket)) |
---|
1852 | 2124 | return; |
---|
1853 | 2125 | |
---|
1854 | 2126 | rcu_read_lock_bh(); |
---|
1855 | 2127 | spin_lock(&rt6_exception_lock); |
---|
1856 | | - bucket = rcu_dereference_protected(rt->rt6i_exception_bucket, |
---|
1857 | | - lockdep_is_held(&rt6_exception_lock)); |
---|
1858 | | - |
---|
| 2128 | + bucket = fib6_nh_get_excptn_bucket(nh, &rt6_exception_lock); |
---|
1859 | 2129 | if (bucket) { |
---|
1860 | 2130 | for (i = 0; i < FIB6_EXCEPTION_BUCKET_SIZE; i++) { |
---|
1861 | 2131 | hlist_for_each_entry_safe(rt6_ex, tmp, |
---|
.. | .. |
---|
1870 | 2140 | rcu_read_unlock_bh(); |
---|
1871 | 2141 | } |
---|
1872 | 2142 | |
---|
| 2143 | +struct fib6_nh_age_excptn_arg { |
---|
| 2144 | + struct fib6_gc_args *gc_args; |
---|
| 2145 | + unsigned long now; |
---|
| 2146 | +}; |
---|
| 2147 | + |
---|
| 2148 | +static int rt6_nh_age_exceptions(struct fib6_nh *nh, void *_arg) |
---|
| 2149 | +{ |
---|
| 2150 | + struct fib6_nh_age_excptn_arg *arg = _arg; |
---|
| 2151 | + |
---|
| 2152 | + fib6_nh_age_exceptions(nh, arg->gc_args, arg->now); |
---|
| 2153 | + return 0; |
---|
| 2154 | +} |
---|
| 2155 | + |
---|
| 2156 | +void rt6_age_exceptions(struct fib6_info *f6i, |
---|
| 2157 | + struct fib6_gc_args *gc_args, |
---|
| 2158 | + unsigned long now) |
---|
| 2159 | +{ |
---|
| 2160 | + if (f6i->nh) { |
---|
| 2161 | + struct fib6_nh_age_excptn_arg arg = { |
---|
| 2162 | + .gc_args = gc_args, |
---|
| 2163 | + .now = now |
---|
| 2164 | + }; |
---|
| 2165 | + |
---|
| 2166 | + nexthop_for_each_fib6_nh(f6i->nh, rt6_nh_age_exceptions, |
---|
| 2167 | + &arg); |
---|
| 2168 | + } else { |
---|
| 2169 | + fib6_nh_age_exceptions(f6i->fib6_nh, gc_args, now); |
---|
| 2170 | + } |
---|
| 2171 | +} |
---|
| 2172 | + |
---|
1873 | 2173 | /* must be called with rcu lock held */ |
---|
1874 | | -struct fib6_info *fib6_table_lookup(struct net *net, struct fib6_table *table, |
---|
1875 | | - int oif, struct flowi6 *fl6, int strict) |
---|
| 2174 | +int fib6_table_lookup(struct net *net, struct fib6_table *table, int oif, |
---|
| 2175 | + struct flowi6 *fl6, struct fib6_result *res, int strict) |
---|
1876 | 2176 | { |
---|
1877 | 2177 | struct fib6_node *fn, *saved_fn; |
---|
1878 | | - struct fib6_info *f6i; |
---|
1879 | 2178 | |
---|
1880 | 2179 | fn = fib6_node_lookup(&table->tb6_root, &fl6->daddr, &fl6->saddr); |
---|
1881 | 2180 | saved_fn = fn; |
---|
.. | .. |
---|
1884 | 2183 | oif = 0; |
---|
1885 | 2184 | |
---|
1886 | 2185 | redo_rt6_select: |
---|
1887 | | - f6i = rt6_select(net, fn, oif, strict); |
---|
1888 | | - if (f6i == net->ipv6.fib6_null_entry) { |
---|
| 2186 | + rt6_select(net, fn, oif, res, strict); |
---|
| 2187 | + if (res->f6i == net->ipv6.fib6_null_entry) { |
---|
1889 | 2188 | fn = fib6_backtrack(fn, &fl6->saddr); |
---|
1890 | 2189 | if (fn) |
---|
1891 | 2190 | goto redo_rt6_select; |
---|
.. | .. |
---|
1897 | 2196 | } |
---|
1898 | 2197 | } |
---|
1899 | 2198 | |
---|
1900 | | - trace_fib6_table_lookup(net, f6i, table, fl6); |
---|
| 2199 | + trace_fib6_table_lookup(net, res, table, fl6); |
---|
1901 | 2200 | |
---|
1902 | | - return f6i; |
---|
| 2201 | + return 0; |
---|
1903 | 2202 | } |
---|
1904 | 2203 | |
---|
1905 | 2204 | struct rt6_info *ip6_pol_route(struct net *net, struct fib6_table *table, |
---|
1906 | 2205 | int oif, struct flowi6 *fl6, |
---|
1907 | 2206 | const struct sk_buff *skb, int flags) |
---|
1908 | 2207 | { |
---|
1909 | | - struct fib6_info *f6i; |
---|
1910 | | - struct rt6_info *rt; |
---|
| 2208 | + struct fib6_result res = {}; |
---|
| 2209 | + struct rt6_info *rt = NULL; |
---|
1911 | 2210 | int strict = 0; |
---|
| 2211 | + |
---|
| 2212 | + WARN_ON_ONCE((flags & RT6_LOOKUP_F_DST_NOREF) && |
---|
| 2213 | + !rcu_read_lock_held()); |
---|
1912 | 2214 | |
---|
1913 | 2215 | strict |= flags & RT6_LOOKUP_F_IFACE; |
---|
1914 | 2216 | strict |= flags & RT6_LOOKUP_F_IGNORE_LINKSTATE; |
---|
.. | .. |
---|
1917 | 2219 | |
---|
1918 | 2220 | rcu_read_lock(); |
---|
1919 | 2221 | |
---|
1920 | | - f6i = fib6_table_lookup(net, table, oif, fl6, strict); |
---|
1921 | | - if (f6i->fib6_nsiblings) |
---|
1922 | | - f6i = fib6_multipath_select(net, f6i, fl6, oif, skb, strict); |
---|
| 2222 | + fib6_table_lookup(net, table, oif, fl6, &res, strict); |
---|
| 2223 | + if (res.f6i == net->ipv6.fib6_null_entry) |
---|
| 2224 | + goto out; |
---|
1923 | 2225 | |
---|
1924 | | - if (f6i == net->ipv6.fib6_null_entry) { |
---|
1925 | | - rt = net->ipv6.ip6_null_entry; |
---|
1926 | | - rcu_read_unlock(); |
---|
1927 | | - dst_hold(&rt->dst); |
---|
1928 | | - return rt; |
---|
1929 | | - } |
---|
| 2226 | + fib6_select_path(net, &res, fl6, oif, false, skb, strict); |
---|
1930 | 2227 | |
---|
1931 | 2228 | /*Search through exception table */ |
---|
1932 | | - rt = rt6_find_cached_rt(f6i, &fl6->daddr, &fl6->saddr); |
---|
| 2229 | + rt = rt6_find_cached_rt(&res, &fl6->daddr, &fl6->saddr); |
---|
1933 | 2230 | if (rt) { |
---|
1934 | | - if (ip6_hold_safe(net, &rt, true)) |
---|
1935 | | - dst_use_noref(&rt->dst, jiffies); |
---|
1936 | | - |
---|
1937 | | - rcu_read_unlock(); |
---|
1938 | | - return rt; |
---|
| 2231 | + goto out; |
---|
1939 | 2232 | } else if (unlikely((fl6->flowi6_flags & FLOWI_FLAG_KNOWN_NH) && |
---|
1940 | | - !(f6i->fib6_flags & RTF_GATEWAY))) { |
---|
| 2233 | + !res.nh->fib_nh_gw_family)) { |
---|
1941 | 2234 | /* Create a RTF_CACHE clone which will not be |
---|
1942 | 2235 | * owned by the fib6 tree. It is for the special case where |
---|
1943 | 2236 | * the daddr in the skb during the neighbor look-up is different |
---|
1944 | 2237 | * from the fl6->daddr used to look-up route here. |
---|
1945 | 2238 | */ |
---|
1946 | | - struct rt6_info *uncached_rt; |
---|
| 2239 | + rt = ip6_rt_cache_alloc(&res, &fl6->daddr, NULL); |
---|
1947 | 2240 | |
---|
1948 | | - uncached_rt = ip6_rt_cache_alloc(f6i, &fl6->daddr, NULL); |
---|
1949 | | - |
---|
1950 | | - rcu_read_unlock(); |
---|
1951 | | - |
---|
1952 | | - if (uncached_rt) { |
---|
1953 | | - /* Uncached_rt's refcnt is taken during ip6_rt_cache_alloc() |
---|
1954 | | - * No need for another dst_hold() |
---|
| 2241 | + if (rt) { |
---|
| 2242 | + /* 1 refcnt is taken during ip6_rt_cache_alloc(). |
---|
| 2243 | + * As rt6_uncached_list_add() does not consume refcnt, |
---|
| 2244 | + * this refcnt is always returned to the caller even |
---|
| 2245 | + * if caller sets RT6_LOOKUP_F_DST_NOREF flag. |
---|
1955 | 2246 | */ |
---|
1956 | | - rt6_uncached_list_add(uncached_rt); |
---|
| 2247 | + rt6_uncached_list_add(rt); |
---|
1957 | 2248 | atomic_inc(&net->ipv6.rt6_stats->fib_rt_uncache); |
---|
1958 | | - } else { |
---|
1959 | | - uncached_rt = net->ipv6.ip6_null_entry; |
---|
1960 | | - dst_hold(&uncached_rt->dst); |
---|
1961 | | - } |
---|
| 2249 | + rcu_read_unlock(); |
---|
1962 | 2250 | |
---|
1963 | | - return uncached_rt; |
---|
| 2251 | + return rt; |
---|
| 2252 | + } |
---|
1964 | 2253 | } else { |
---|
1965 | 2254 | /* Get a percpu copy */ |
---|
1966 | | - |
---|
1967 | | - struct rt6_info *pcpu_rt; |
---|
1968 | | - |
---|
1969 | 2255 | local_bh_disable(); |
---|
1970 | | - pcpu_rt = rt6_get_pcpu_route(f6i); |
---|
| 2256 | + rt = rt6_get_pcpu_route(&res); |
---|
1971 | 2257 | |
---|
1972 | | - if (!pcpu_rt) |
---|
1973 | | - pcpu_rt = rt6_make_pcpu_route(net, f6i); |
---|
| 2258 | + if (!rt) |
---|
| 2259 | + rt = rt6_make_pcpu_route(net, &res); |
---|
1974 | 2260 | |
---|
1975 | 2261 | local_bh_enable(); |
---|
1976 | | - rcu_read_unlock(); |
---|
1977 | | - |
---|
1978 | | - return pcpu_rt; |
---|
1979 | 2262 | } |
---|
| 2263 | +out: |
---|
| 2264 | + if (!rt) |
---|
| 2265 | + rt = net->ipv6.ip6_null_entry; |
---|
| 2266 | + if (!(flags & RT6_LOOKUP_F_DST_NOREF)) |
---|
| 2267 | + ip6_hold_safe(net, &rt); |
---|
| 2268 | + rcu_read_unlock(); |
---|
| 2269 | + |
---|
| 2270 | + return rt; |
---|
1980 | 2271 | } |
---|
1981 | 2272 | EXPORT_SYMBOL_GPL(ip6_pol_route); |
---|
1982 | 2273 | |
---|
1983 | | -static struct rt6_info *ip6_pol_route_input(struct net *net, |
---|
| 2274 | +INDIRECT_CALLABLE_SCOPE struct rt6_info *ip6_pol_route_input(struct net *net, |
---|
1984 | 2275 | struct fib6_table *table, |
---|
1985 | 2276 | struct flowi6 *fl6, |
---|
1986 | 2277 | const struct sk_buff *skb, |
---|
.. | .. |
---|
2022 | 2313 | if (!icmph) |
---|
2023 | 2314 | goto out; |
---|
2024 | 2315 | |
---|
2025 | | - if (icmph->icmp6_type != ICMPV6_DEST_UNREACH && |
---|
2026 | | - icmph->icmp6_type != ICMPV6_PKT_TOOBIG && |
---|
2027 | | - icmph->icmp6_type != ICMPV6_TIME_EXCEED && |
---|
2028 | | - icmph->icmp6_type != ICMPV6_PARAMPROB) |
---|
| 2316 | + if (!icmpv6_is_err(icmph->icmp6_type)) |
---|
2029 | 2317 | goto out; |
---|
2030 | 2318 | |
---|
2031 | 2319 | inner_iph = skb_header_pointer(skb, |
---|
.. | .. |
---|
2101 | 2389 | hash_keys.basic.ip_proto = fl6->flowi6_proto; |
---|
2102 | 2390 | } |
---|
2103 | 2391 | break; |
---|
| 2392 | + case 2: |
---|
| 2393 | + memset(&hash_keys, 0, sizeof(hash_keys)); |
---|
| 2394 | + hash_keys.control.addr_type = FLOW_DISSECTOR_KEY_IPV6_ADDRS; |
---|
| 2395 | + if (skb) { |
---|
| 2396 | + struct flow_keys keys; |
---|
| 2397 | + |
---|
| 2398 | + if (!flkeys) { |
---|
| 2399 | + skb_flow_dissect_flow_keys(skb, &keys, 0); |
---|
| 2400 | + flkeys = &keys; |
---|
| 2401 | + } |
---|
| 2402 | + |
---|
| 2403 | + /* Inner can be v4 or v6 */ |
---|
| 2404 | + if (flkeys->control.addr_type == FLOW_DISSECTOR_KEY_IPV4_ADDRS) { |
---|
| 2405 | + hash_keys.control.addr_type = FLOW_DISSECTOR_KEY_IPV4_ADDRS; |
---|
| 2406 | + hash_keys.addrs.v4addrs.src = flkeys->addrs.v4addrs.src; |
---|
| 2407 | + hash_keys.addrs.v4addrs.dst = flkeys->addrs.v4addrs.dst; |
---|
| 2408 | + } else if (flkeys->control.addr_type == FLOW_DISSECTOR_KEY_IPV6_ADDRS) { |
---|
| 2409 | + hash_keys.control.addr_type = FLOW_DISSECTOR_KEY_IPV6_ADDRS; |
---|
| 2410 | + hash_keys.addrs.v6addrs.src = flkeys->addrs.v6addrs.src; |
---|
| 2411 | + hash_keys.addrs.v6addrs.dst = flkeys->addrs.v6addrs.dst; |
---|
| 2412 | + hash_keys.tags.flow_label = flkeys->tags.flow_label; |
---|
| 2413 | + hash_keys.basic.ip_proto = flkeys->basic.ip_proto; |
---|
| 2414 | + } else { |
---|
| 2415 | + /* Same as case 0 */ |
---|
| 2416 | + hash_keys.control.addr_type = FLOW_DISSECTOR_KEY_IPV6_ADDRS; |
---|
| 2417 | + ip6_multipath_l3_keys(skb, &hash_keys, flkeys); |
---|
| 2418 | + } |
---|
| 2419 | + } else { |
---|
| 2420 | + /* Same as case 0 */ |
---|
| 2421 | + hash_keys.control.addr_type = FLOW_DISSECTOR_KEY_IPV6_ADDRS; |
---|
| 2422 | + hash_keys.addrs.v6addrs.src = fl6->saddr; |
---|
| 2423 | + hash_keys.addrs.v6addrs.dst = fl6->daddr; |
---|
| 2424 | + hash_keys.tags.flow_label = (__force u32)flowi6_get_flowlabel(fl6); |
---|
| 2425 | + hash_keys.basic.ip_proto = fl6->flowi6_proto; |
---|
| 2426 | + } |
---|
| 2427 | + break; |
---|
2104 | 2428 | } |
---|
2105 | 2429 | mhash = flow_hash_from_keys(&hash_keys); |
---|
2106 | 2430 | |
---|
2107 | 2431 | return mhash >> 1; |
---|
2108 | 2432 | } |
---|
2109 | 2433 | |
---|
| 2434 | +/* Called with rcu held */ |
---|
2110 | 2435 | void ip6_route_input(struct sk_buff *skb) |
---|
2111 | 2436 | { |
---|
2112 | 2437 | const struct ipv6hdr *iph = ipv6_hdr(skb); |
---|
2113 | 2438 | struct net *net = dev_net(skb->dev); |
---|
2114 | | - int flags = RT6_LOOKUP_F_HAS_SADDR; |
---|
| 2439 | + int flags = RT6_LOOKUP_F_HAS_SADDR | RT6_LOOKUP_F_DST_NOREF; |
---|
2115 | 2440 | struct ip_tunnel_info *tun_info; |
---|
2116 | 2441 | struct flowi6 fl6 = { |
---|
2117 | 2442 | .flowi6_iif = skb->dev->ifindex, |
---|
.. | .. |
---|
2133 | 2458 | if (unlikely(fl6.flowi6_proto == IPPROTO_ICMPV6)) |
---|
2134 | 2459 | fl6.mp_hash = rt6_multipath_hash(net, &fl6, skb, flkeys); |
---|
2135 | 2460 | skb_dst_drop(skb); |
---|
2136 | | - skb_dst_set(skb, |
---|
2137 | | - ip6_route_input_lookup(net, skb->dev, &fl6, skb, flags)); |
---|
| 2461 | + skb_dst_set_noref(skb, ip6_route_input_lookup(net, skb->dev, |
---|
| 2462 | + &fl6, skb, flags)); |
---|
2138 | 2463 | } |
---|
2139 | 2464 | |
---|
2140 | | -static struct rt6_info *ip6_pol_route_output(struct net *net, |
---|
| 2465 | +INDIRECT_CALLABLE_SCOPE struct rt6_info *ip6_pol_route_output(struct net *net, |
---|
2141 | 2466 | struct fib6_table *table, |
---|
2142 | 2467 | struct flowi6 *fl6, |
---|
2143 | 2468 | const struct sk_buff *skb, |
---|
.. | .. |
---|
2146 | 2471 | return ip6_pol_route(net, table, fl6->flowi6_oif, fl6, skb, flags); |
---|
2147 | 2472 | } |
---|
2148 | 2473 | |
---|
2149 | | -struct dst_entry *ip6_route_output_flags(struct net *net, const struct sock *sk, |
---|
2150 | | - struct flowi6 *fl6, int flags) |
---|
| 2474 | +struct dst_entry *ip6_route_output_flags_noref(struct net *net, |
---|
| 2475 | + const struct sock *sk, |
---|
| 2476 | + struct flowi6 *fl6, int flags) |
---|
2151 | 2477 | { |
---|
2152 | 2478 | bool any_src; |
---|
2153 | 2479 | |
---|
2154 | | - if (rt6_need_strict(&fl6->daddr)) { |
---|
| 2480 | + if (ipv6_addr_type(&fl6->daddr) & |
---|
| 2481 | + (IPV6_ADDR_MULTICAST | IPV6_ADDR_LINKLOCAL)) { |
---|
2155 | 2482 | struct dst_entry *dst; |
---|
2156 | 2483 | |
---|
| 2484 | + /* This function does not take refcnt on the dst */ |
---|
2157 | 2485 | dst = l3mdev_link_scope_lookup(net, fl6); |
---|
2158 | 2486 | if (dst) |
---|
2159 | 2487 | return dst; |
---|
.. | .. |
---|
2161 | 2489 | |
---|
2162 | 2490 | fl6->flowi6_iif = LOOPBACK_IFINDEX; |
---|
2163 | 2491 | |
---|
| 2492 | + flags |= RT6_LOOKUP_F_DST_NOREF; |
---|
2164 | 2493 | any_src = ipv6_addr_any(&fl6->saddr); |
---|
2165 | 2494 | if ((sk && sk->sk_bound_dev_if) || rt6_need_strict(&fl6->daddr) || |
---|
2166 | 2495 | (fl6->flowi6_oif && any_src)) |
---|
.. | .. |
---|
2172 | 2501 | flags |= rt6_srcprefs2flags(inet6_sk(sk)->srcprefs); |
---|
2173 | 2502 | |
---|
2174 | 2503 | return fib6_rule_lookup(net, fl6, NULL, flags, ip6_pol_route_output); |
---|
| 2504 | +} |
---|
| 2505 | +EXPORT_SYMBOL_GPL(ip6_route_output_flags_noref); |
---|
| 2506 | + |
---|
| 2507 | +struct dst_entry *ip6_route_output_flags(struct net *net, |
---|
| 2508 | + const struct sock *sk, |
---|
| 2509 | + struct flowi6 *fl6, |
---|
| 2510 | + int flags) |
---|
| 2511 | +{ |
---|
| 2512 | + struct dst_entry *dst; |
---|
| 2513 | + struct rt6_info *rt6; |
---|
| 2514 | + |
---|
| 2515 | + rcu_read_lock(); |
---|
| 2516 | + dst = ip6_route_output_flags_noref(net, sk, fl6, flags); |
---|
| 2517 | + rt6 = (struct rt6_info *)dst; |
---|
| 2518 | + /* For dst cached in uncached_list, refcnt is already taken. */ |
---|
| 2519 | + if (list_empty(&rt6->rt6i_uncached) && !dst_hold_safe(dst)) { |
---|
| 2520 | + dst = &net->ipv6.ip6_null_entry->dst; |
---|
| 2521 | + dst_hold(dst); |
---|
| 2522 | + } |
---|
| 2523 | + rcu_read_unlock(); |
---|
| 2524 | + |
---|
| 2525 | + return dst; |
---|
2175 | 2526 | } |
---|
2176 | 2527 | EXPORT_SYMBOL_GPL(ip6_route_output_flags); |
---|
2177 | 2528 | |
---|
.. | .. |
---|
2260 | 2611 | struct rt6_info *rt; |
---|
2261 | 2612 | |
---|
2262 | 2613 | rt = container_of(dst, struct rt6_info, dst); |
---|
| 2614 | + |
---|
| 2615 | + if (rt->sernum) |
---|
| 2616 | + return rt6_is_valid(rt) ? dst : NULL; |
---|
2263 | 2617 | |
---|
2264 | 2618 | rcu_read_lock(); |
---|
2265 | 2619 | |
---|
.. | .. |
---|
2354 | 2708 | |
---|
2355 | 2709 | static bool rt6_cache_allowed_for_pmtu(const struct rt6_info *rt) |
---|
2356 | 2710 | { |
---|
2357 | | - bool from_set; |
---|
2358 | | - |
---|
2359 | | - rcu_read_lock(); |
---|
2360 | | - from_set = !!rcu_dereference(rt->from); |
---|
2361 | | - rcu_read_unlock(); |
---|
2362 | | - |
---|
2363 | 2711 | return !(rt->rt6i_flags & RTF_CACHE) && |
---|
2364 | | - (rt->rt6i_flags & RTF_PCPU || from_set); |
---|
| 2712 | + (rt->rt6i_flags & RTF_PCPU || rcu_access_pointer(rt->from)); |
---|
2365 | 2713 | } |
---|
2366 | 2714 | |
---|
2367 | 2715 | static void __ip6_rt_update_pmtu(struct dst_entry *dst, const struct sock *sk, |
---|
.. | .. |
---|
2390 | 2738 | if (confirm_neigh) |
---|
2391 | 2739 | dst_confirm_neigh(dst, daddr); |
---|
2392 | 2740 | |
---|
2393 | | - mtu = max_t(u32, mtu, IPV6_MIN_MTU); |
---|
| 2741 | + if (mtu < IPV6_MIN_MTU) |
---|
| 2742 | + return; |
---|
2394 | 2743 | if (mtu >= dst_mtu(dst)) |
---|
2395 | 2744 | return; |
---|
2396 | 2745 | |
---|
.. | .. |
---|
2400 | 2749 | if (rt6->rt6i_flags & RTF_CACHE) |
---|
2401 | 2750 | rt6_update_exception_stamp_rt(rt6); |
---|
2402 | 2751 | } else if (daddr) { |
---|
2403 | | - struct fib6_info *from; |
---|
| 2752 | + struct fib6_result res = {}; |
---|
2404 | 2753 | struct rt6_info *nrt6; |
---|
2405 | 2754 | |
---|
2406 | 2755 | rcu_read_lock(); |
---|
2407 | | - from = rcu_dereference(rt6->from); |
---|
2408 | | - if (!from) { |
---|
2409 | | - rcu_read_unlock(); |
---|
2410 | | - return; |
---|
| 2756 | + res.f6i = rcu_dereference(rt6->from); |
---|
| 2757 | + if (!res.f6i) |
---|
| 2758 | + goto out_unlock; |
---|
| 2759 | + |
---|
| 2760 | + res.fib6_flags = res.f6i->fib6_flags; |
---|
| 2761 | + res.fib6_type = res.f6i->fib6_type; |
---|
| 2762 | + |
---|
| 2763 | + if (res.f6i->nh) { |
---|
| 2764 | + struct fib6_nh_match_arg arg = { |
---|
| 2765 | + .dev = dst->dev, |
---|
| 2766 | + .gw = &rt6->rt6i_gateway, |
---|
| 2767 | + }; |
---|
| 2768 | + |
---|
| 2769 | + nexthop_for_each_fib6_nh(res.f6i->nh, |
---|
| 2770 | + fib6_nh_find_match, &arg); |
---|
| 2771 | + |
---|
| 2772 | + /* fib6_info uses a nexthop that does not have fib6_nh |
---|
| 2773 | + * using the dst->dev + gw. Should be impossible. |
---|
| 2774 | + */ |
---|
| 2775 | + if (!arg.match) |
---|
| 2776 | + goto out_unlock; |
---|
| 2777 | + |
---|
| 2778 | + res.nh = arg.match; |
---|
| 2779 | + } else { |
---|
| 2780 | + res.nh = res.f6i->fib6_nh; |
---|
2411 | 2781 | } |
---|
2412 | | - nrt6 = ip6_rt_cache_alloc(from, daddr, saddr); |
---|
| 2782 | + |
---|
| 2783 | + nrt6 = ip6_rt_cache_alloc(&res, daddr, saddr); |
---|
2413 | 2784 | if (nrt6) { |
---|
2414 | 2785 | rt6_do_update_pmtu(nrt6, mtu); |
---|
2415 | | - if (rt6_insert_exception(nrt6, from)) |
---|
| 2786 | + if (rt6_insert_exception(nrt6, &res)) |
---|
2416 | 2787 | dst_release_immediate(&nrt6->dst); |
---|
2417 | 2788 | } |
---|
| 2789 | +out_unlock: |
---|
2418 | 2790 | rcu_read_unlock(); |
---|
2419 | 2791 | } |
---|
2420 | 2792 | } |
---|
.. | .. |
---|
2432 | 2804 | { |
---|
2433 | 2805 | const struct ipv6hdr *iph = (struct ipv6hdr *) skb->data; |
---|
2434 | 2806 | struct dst_entry *dst; |
---|
2435 | | - struct flowi6 fl6; |
---|
2436 | | - |
---|
2437 | | - memset(&fl6, 0, sizeof(fl6)); |
---|
2438 | | - fl6.flowi6_oif = oif; |
---|
2439 | | - fl6.flowi6_mark = mark ? mark : IP6_REPLY_MARK(net, skb->mark); |
---|
2440 | | - fl6.daddr = iph->daddr; |
---|
2441 | | - fl6.saddr = iph->saddr; |
---|
2442 | | - fl6.flowlabel = ip6_flowinfo(iph); |
---|
2443 | | - fl6.flowi6_uid = uid; |
---|
| 2807 | + struct flowi6 fl6 = { |
---|
| 2808 | + .flowi6_oif = oif, |
---|
| 2809 | + .flowi6_mark = mark ? mark : IP6_REPLY_MARK(net, skb->mark), |
---|
| 2810 | + .daddr = iph->daddr, |
---|
| 2811 | + .saddr = iph->saddr, |
---|
| 2812 | + .flowlabel = ip6_flowinfo(iph), |
---|
| 2813 | + .flowi6_uid = uid, |
---|
| 2814 | + }; |
---|
2444 | 2815 | |
---|
2445 | 2816 | dst = ip6_route_output(net, NULL, &fl6); |
---|
2446 | 2817 | if (!dst->error) |
---|
.. | .. |
---|
2488 | 2859 | NULL); |
---|
2489 | 2860 | } |
---|
2490 | 2861 | |
---|
| 2862 | +static bool ip6_redirect_nh_match(const struct fib6_result *res, |
---|
| 2863 | + struct flowi6 *fl6, |
---|
| 2864 | + const struct in6_addr *gw, |
---|
| 2865 | + struct rt6_info **ret) |
---|
| 2866 | +{ |
---|
| 2867 | + const struct fib6_nh *nh = res->nh; |
---|
| 2868 | + |
---|
| 2869 | + if (nh->fib_nh_flags & RTNH_F_DEAD || !nh->fib_nh_gw_family || |
---|
| 2870 | + fl6->flowi6_oif != nh->fib_nh_dev->ifindex) |
---|
| 2871 | + return false; |
---|
| 2872 | + |
---|
| 2873 | + /* rt_cache's gateway might be different from its 'parent' |
---|
| 2874 | + * in the case of an ip redirect. |
---|
| 2875 | + * So we keep searching in the exception table if the gateway |
---|
| 2876 | + * is different. |
---|
| 2877 | + */ |
---|
| 2878 | + if (!ipv6_addr_equal(gw, &nh->fib_nh_gw6)) { |
---|
| 2879 | + struct rt6_info *rt_cache; |
---|
| 2880 | + |
---|
| 2881 | + rt_cache = rt6_find_cached_rt(res, &fl6->daddr, &fl6->saddr); |
---|
| 2882 | + if (rt_cache && |
---|
| 2883 | + ipv6_addr_equal(gw, &rt_cache->rt6i_gateway)) { |
---|
| 2884 | + *ret = rt_cache; |
---|
| 2885 | + return true; |
---|
| 2886 | + } |
---|
| 2887 | + return false; |
---|
| 2888 | + } |
---|
| 2889 | + return true; |
---|
| 2890 | +} |
---|
| 2891 | + |
---|
| 2892 | +struct fib6_nh_rd_arg { |
---|
| 2893 | + struct fib6_result *res; |
---|
| 2894 | + struct flowi6 *fl6; |
---|
| 2895 | + const struct in6_addr *gw; |
---|
| 2896 | + struct rt6_info **ret; |
---|
| 2897 | +}; |
---|
| 2898 | + |
---|
| 2899 | +static int fib6_nh_redirect_match(struct fib6_nh *nh, void *_arg) |
---|
| 2900 | +{ |
---|
| 2901 | + struct fib6_nh_rd_arg *arg = _arg; |
---|
| 2902 | + |
---|
| 2903 | + arg->res->nh = nh; |
---|
| 2904 | + return ip6_redirect_nh_match(arg->res, arg->fl6, arg->gw, arg->ret); |
---|
| 2905 | +} |
---|
| 2906 | + |
---|
2491 | 2907 | /* Handle redirects */ |
---|
2492 | 2908 | struct ip6rd_flowi { |
---|
2493 | 2909 | struct flowi6 fl6; |
---|
2494 | 2910 | struct in6_addr gateway; |
---|
2495 | 2911 | }; |
---|
2496 | 2912 | |
---|
2497 | | -static struct rt6_info *__ip6_route_redirect(struct net *net, |
---|
| 2913 | +INDIRECT_CALLABLE_SCOPE struct rt6_info *__ip6_route_redirect(struct net *net, |
---|
2498 | 2914 | struct fib6_table *table, |
---|
2499 | 2915 | struct flowi6 *fl6, |
---|
2500 | 2916 | const struct sk_buff *skb, |
---|
2501 | 2917 | int flags) |
---|
2502 | 2918 | { |
---|
2503 | 2919 | struct ip6rd_flowi *rdfl = (struct ip6rd_flowi *)fl6; |
---|
2504 | | - struct rt6_info *ret = NULL, *rt_cache; |
---|
| 2920 | + struct rt6_info *ret = NULL; |
---|
| 2921 | + struct fib6_result res = {}; |
---|
| 2922 | + struct fib6_nh_rd_arg arg = { |
---|
| 2923 | + .res = &res, |
---|
| 2924 | + .fl6 = fl6, |
---|
| 2925 | + .gw = &rdfl->gateway, |
---|
| 2926 | + .ret = &ret |
---|
| 2927 | + }; |
---|
2505 | 2928 | struct fib6_info *rt; |
---|
2506 | 2929 | struct fib6_node *fn; |
---|
2507 | 2930 | |
---|
.. | .. |
---|
2525 | 2948 | fn = fib6_node_lookup(&table->tb6_root, &fl6->daddr, &fl6->saddr); |
---|
2526 | 2949 | restart: |
---|
2527 | 2950 | for_each_fib6_node_rt_rcu(fn) { |
---|
2528 | | - if (rt->fib6_nh.nh_flags & RTNH_F_DEAD) |
---|
2529 | | - continue; |
---|
| 2951 | + res.f6i = rt; |
---|
2530 | 2952 | if (fib6_check_expired(rt)) |
---|
2531 | 2953 | continue; |
---|
2532 | 2954 | if (rt->fib6_flags & RTF_REJECT) |
---|
2533 | 2955 | break; |
---|
2534 | | - if (!(rt->fib6_flags & RTF_GATEWAY)) |
---|
2535 | | - continue; |
---|
2536 | | - if (fl6->flowi6_oif != rt->fib6_nh.nh_dev->ifindex) |
---|
2537 | | - continue; |
---|
2538 | | - /* rt_cache's gateway might be different from its 'parent' |
---|
2539 | | - * in the case of an ip redirect. |
---|
2540 | | - * So we keep searching in the exception table if the gateway |
---|
2541 | | - * is different. |
---|
2542 | | - */ |
---|
2543 | | - if (!ipv6_addr_equal(&rdfl->gateway, &rt->fib6_nh.nh_gw)) { |
---|
2544 | | - rt_cache = rt6_find_cached_rt(rt, |
---|
2545 | | - &fl6->daddr, |
---|
2546 | | - &fl6->saddr); |
---|
2547 | | - if (rt_cache && |
---|
2548 | | - ipv6_addr_equal(&rdfl->gateway, |
---|
2549 | | - &rt_cache->rt6i_gateway)) { |
---|
2550 | | - ret = rt_cache; |
---|
2551 | | - break; |
---|
2552 | | - } |
---|
2553 | | - continue; |
---|
| 2956 | + if (unlikely(rt->nh)) { |
---|
| 2957 | + if (nexthop_is_blackhole(rt->nh)) |
---|
| 2958 | + continue; |
---|
| 2959 | + /* on match, res->nh is filled in and potentially ret */ |
---|
| 2960 | + if (nexthop_for_each_fib6_nh(rt->nh, |
---|
| 2961 | + fib6_nh_redirect_match, |
---|
| 2962 | + &arg)) |
---|
| 2963 | + goto out; |
---|
| 2964 | + } else { |
---|
| 2965 | + res.nh = rt->fib6_nh; |
---|
| 2966 | + if (ip6_redirect_nh_match(&res, fl6, &rdfl->gateway, |
---|
| 2967 | + &ret)) |
---|
| 2968 | + goto out; |
---|
2554 | 2969 | } |
---|
2555 | | - break; |
---|
2556 | 2970 | } |
---|
2557 | 2971 | |
---|
2558 | 2972 | if (!rt) |
---|
.. | .. |
---|
2568 | 2982 | goto restart; |
---|
2569 | 2983 | } |
---|
2570 | 2984 | |
---|
| 2985 | + res.f6i = rt; |
---|
| 2986 | + res.nh = rt->fib6_nh; |
---|
2571 | 2987 | out: |
---|
2572 | | - if (ret) |
---|
2573 | | - ip6_hold_safe(net, &ret, true); |
---|
2574 | | - else |
---|
2575 | | - ret = ip6_create_rt_rcu(rt); |
---|
| 2988 | + if (ret) { |
---|
| 2989 | + ip6_hold_safe(net, &ret); |
---|
| 2990 | + } else { |
---|
| 2991 | + res.fib6_flags = res.f6i->fib6_flags; |
---|
| 2992 | + res.fib6_type = res.f6i->fib6_type; |
---|
| 2993 | + ret = ip6_create_rt_rcu(&res); |
---|
| 2994 | + } |
---|
2576 | 2995 | |
---|
2577 | 2996 | rcu_read_unlock(); |
---|
2578 | 2997 | |
---|
2579 | | - trace_fib6_table_lookup(net, rt, table, fl6); |
---|
| 2998 | + trace_fib6_table_lookup(net, &res, table, fl6); |
---|
2580 | 2999 | return ret; |
---|
2581 | 3000 | }; |
---|
2582 | 3001 | |
---|
.. | .. |
---|
2600 | 3019 | { |
---|
2601 | 3020 | const struct ipv6hdr *iph = (struct ipv6hdr *) skb->data; |
---|
2602 | 3021 | struct dst_entry *dst; |
---|
2603 | | - struct flowi6 fl6; |
---|
2604 | | - |
---|
2605 | | - memset(&fl6, 0, sizeof(fl6)); |
---|
2606 | | - fl6.flowi6_iif = LOOPBACK_IFINDEX; |
---|
2607 | | - fl6.flowi6_oif = oif; |
---|
2608 | | - fl6.flowi6_mark = mark; |
---|
2609 | | - fl6.daddr = iph->daddr; |
---|
2610 | | - fl6.saddr = iph->saddr; |
---|
2611 | | - fl6.flowlabel = ip6_flowinfo(iph); |
---|
2612 | | - fl6.flowi6_uid = uid; |
---|
| 3022 | + struct flowi6 fl6 = { |
---|
| 3023 | + .flowi6_iif = LOOPBACK_IFINDEX, |
---|
| 3024 | + .flowi6_oif = oif, |
---|
| 3025 | + .flowi6_mark = mark, |
---|
| 3026 | + .daddr = iph->daddr, |
---|
| 3027 | + .saddr = iph->saddr, |
---|
| 3028 | + .flowlabel = ip6_flowinfo(iph), |
---|
| 3029 | + .flowi6_uid = uid, |
---|
| 3030 | + }; |
---|
2613 | 3031 | |
---|
2614 | 3032 | dst = ip6_route_redirect(net, &fl6, skb, &ipv6_hdr(skb)->saddr); |
---|
2615 | 3033 | rt6_do_redirect(dst, NULL, skb); |
---|
.. | .. |
---|
2617 | 3035 | } |
---|
2618 | 3036 | EXPORT_SYMBOL_GPL(ip6_redirect); |
---|
2619 | 3037 | |
---|
2620 | | -void ip6_redirect_no_header(struct sk_buff *skb, struct net *net, int oif, |
---|
2621 | | - u32 mark) |
---|
| 3038 | +void ip6_redirect_no_header(struct sk_buff *skb, struct net *net, int oif) |
---|
2622 | 3039 | { |
---|
2623 | 3040 | const struct ipv6hdr *iph = ipv6_hdr(skb); |
---|
2624 | 3041 | const struct rd_msg *msg = (struct rd_msg *)icmp6_hdr(skb); |
---|
2625 | 3042 | struct dst_entry *dst; |
---|
2626 | | - struct flowi6 fl6; |
---|
2627 | | - |
---|
2628 | | - memset(&fl6, 0, sizeof(fl6)); |
---|
2629 | | - fl6.flowi6_iif = LOOPBACK_IFINDEX; |
---|
2630 | | - fl6.flowi6_oif = oif; |
---|
2631 | | - fl6.flowi6_mark = mark; |
---|
2632 | | - fl6.daddr = msg->dest; |
---|
2633 | | - fl6.saddr = iph->daddr; |
---|
2634 | | - fl6.flowi6_uid = sock_net_uid(net, NULL); |
---|
| 3043 | + struct flowi6 fl6 = { |
---|
| 3044 | + .flowi6_iif = LOOPBACK_IFINDEX, |
---|
| 3045 | + .flowi6_oif = oif, |
---|
| 3046 | + .daddr = msg->dest, |
---|
| 3047 | + .saddr = iph->daddr, |
---|
| 3048 | + .flowi6_uid = sock_net_uid(net, NULL), |
---|
| 3049 | + }; |
---|
2635 | 3050 | |
---|
2636 | 3051 | dst = ip6_route_redirect(net, &fl6, skb, &iph->saddr); |
---|
2637 | 3052 | rt6_do_redirect(dst, NULL, skb); |
---|
.. | .. |
---|
2698 | 3113 | * based on ip6_dst_mtu_forward and exception logic of |
---|
2699 | 3114 | * rt6_find_cached_rt; called with rcu_read_lock |
---|
2700 | 3115 | */ |
---|
2701 | | -u32 ip6_mtu_from_fib6(struct fib6_info *f6i, struct in6_addr *daddr, |
---|
2702 | | - struct in6_addr *saddr) |
---|
| 3116 | +u32 ip6_mtu_from_fib6(const struct fib6_result *res, |
---|
| 3117 | + const struct in6_addr *daddr, |
---|
| 3118 | + const struct in6_addr *saddr) |
---|
2703 | 3119 | { |
---|
| 3120 | + const struct fib6_nh *nh = res->nh; |
---|
| 3121 | + struct fib6_info *f6i = res->f6i; |
---|
2704 | 3122 | struct inet6_dev *idev; |
---|
2705 | 3123 | struct rt6_info *rt; |
---|
2706 | 3124 | u32 mtu = 0; |
---|
.. | .. |
---|
2711 | 3129 | goto out; |
---|
2712 | 3130 | } |
---|
2713 | 3131 | |
---|
2714 | | - rt = rt6_find_cached_rt(f6i, daddr, saddr); |
---|
| 3132 | + rt = rt6_find_cached_rt(res, daddr, saddr); |
---|
2715 | 3133 | if (unlikely(rt)) { |
---|
2716 | 3134 | mtu = dst_metric_raw(&rt->dst, RTAX_MTU); |
---|
2717 | 3135 | } else { |
---|
2718 | | - struct net_device *dev = fib6_info_nh_dev(f6i); |
---|
| 3136 | + struct net_device *dev = nh->fib_nh_dev; |
---|
2719 | 3137 | |
---|
2720 | 3138 | mtu = IPV6_MIN_MTU; |
---|
2721 | 3139 | idev = __in6_dev_get(dev); |
---|
.. | .. |
---|
2725 | 3143 | |
---|
2726 | 3144 | mtu = min_t(unsigned int, mtu, IP6_MAX_MTU); |
---|
2727 | 3145 | out: |
---|
2728 | | - return mtu - lwtunnel_headroom(fib6_info_nh_lwt(f6i), mtu); |
---|
| 3146 | + return mtu - lwtunnel_headroom(nh->fib_nh_lws, mtu); |
---|
2729 | 3147 | } |
---|
2730 | 3148 | |
---|
2731 | 3149 | struct dst_entry *icmp6_dst_alloc(struct net_device *dev, |
---|
.. | .. |
---|
2746 | 3164 | goto out; |
---|
2747 | 3165 | } |
---|
2748 | 3166 | |
---|
2749 | | - rt->dst.flags |= DST_HOST; |
---|
2750 | 3167 | rt->dst.input = ip6_input; |
---|
2751 | 3168 | rt->dst.output = ip6_output; |
---|
2752 | 3169 | rt->rt6i_gateway = fl6->daddr; |
---|
.. | .. |
---|
2778 | 3195 | int entries; |
---|
2779 | 3196 | |
---|
2780 | 3197 | entries = dst_entries_get_fast(ops); |
---|
| 3198 | + if (entries > rt_max_size) |
---|
| 3199 | + entries = dst_entries_get_slow(ops); |
---|
| 3200 | + |
---|
2781 | 3201 | if (time_after(rt_last_gc + rt_min_interval, jiffies) && |
---|
2782 | 3202 | entries <= rt_max_size) |
---|
2783 | 3203 | goto out; |
---|
.. | .. |
---|
2792 | 3212 | return entries > rt_max_size; |
---|
2793 | 3213 | } |
---|
2794 | 3214 | |
---|
2795 | | -static int ip6_convert_metrics(struct net *net, struct fib6_info *rt, |
---|
2796 | | - struct fib6_config *cfg) |
---|
2797 | | -{ |
---|
2798 | | - struct dst_metrics *p; |
---|
2799 | | - |
---|
2800 | | - if (!cfg->fc_mx) |
---|
2801 | | - return 0; |
---|
2802 | | - |
---|
2803 | | - p = kzalloc(sizeof(*rt->fib6_metrics), GFP_KERNEL); |
---|
2804 | | - if (unlikely(!p)) |
---|
2805 | | - return -ENOMEM; |
---|
2806 | | - |
---|
2807 | | - refcount_set(&p->refcnt, 1); |
---|
2808 | | - rt->fib6_metrics = p; |
---|
2809 | | - |
---|
2810 | | - return ip_metrics_convert(net, cfg->fc_mx, cfg->fc_mx_len, p->metrics); |
---|
2811 | | -} |
---|
2812 | | - |
---|
2813 | | -static struct rt6_info *ip6_nh_lookup_table(struct net *net, |
---|
2814 | | - struct fib6_config *cfg, |
---|
2815 | | - const struct in6_addr *gw_addr, |
---|
2816 | | - u32 tbid, int flags) |
---|
| 3215 | +static int ip6_nh_lookup_table(struct net *net, struct fib6_config *cfg, |
---|
| 3216 | + const struct in6_addr *gw_addr, u32 tbid, |
---|
| 3217 | + int flags, struct fib6_result *res) |
---|
2817 | 3218 | { |
---|
2818 | 3219 | struct flowi6 fl6 = { |
---|
2819 | 3220 | .flowi6_oif = cfg->fc_ifindex, |
---|
.. | .. |
---|
2821 | 3222 | .saddr = cfg->fc_prefsrc, |
---|
2822 | 3223 | }; |
---|
2823 | 3224 | struct fib6_table *table; |
---|
2824 | | - struct rt6_info *rt; |
---|
| 3225 | + int err; |
---|
2825 | 3226 | |
---|
2826 | 3227 | table = fib6_get_table(net, tbid); |
---|
2827 | 3228 | if (!table) |
---|
2828 | | - return NULL; |
---|
| 3229 | + return -EINVAL; |
---|
2829 | 3230 | |
---|
2830 | 3231 | if (!ipv6_addr_any(&cfg->fc_prefsrc)) |
---|
2831 | 3232 | flags |= RT6_LOOKUP_F_HAS_SADDR; |
---|
2832 | 3233 | |
---|
2833 | 3234 | flags |= RT6_LOOKUP_F_IGNORE_LINKSTATE; |
---|
2834 | | - rt = ip6_pol_route(net, table, cfg->fc_ifindex, &fl6, NULL, flags); |
---|
2835 | 3235 | |
---|
2836 | | - /* if table lookup failed, fall back to full lookup */ |
---|
2837 | | - if (rt == net->ipv6.ip6_null_entry) { |
---|
2838 | | - ip6_rt_put(rt); |
---|
2839 | | - rt = NULL; |
---|
2840 | | - } |
---|
| 3236 | + err = fib6_table_lookup(net, table, cfg->fc_ifindex, &fl6, res, flags); |
---|
| 3237 | + if (!err && res->f6i != net->ipv6.fib6_null_entry) |
---|
| 3238 | + fib6_select_path(net, res, &fl6, cfg->fc_ifindex, |
---|
| 3239 | + cfg->fc_ifindex != 0, NULL, flags); |
---|
2841 | 3240 | |
---|
2842 | | - return rt; |
---|
| 3241 | + return err; |
---|
2843 | 3242 | } |
---|
2844 | 3243 | |
---|
2845 | 3244 | static int ip6_route_check_nh_onlink(struct net *net, |
---|
.. | .. |
---|
2847 | 3246 | const struct net_device *dev, |
---|
2848 | 3247 | struct netlink_ext_ack *extack) |
---|
2849 | 3248 | { |
---|
2850 | | - u32 tbid = l3mdev_fib_table(dev) ? : RT_TABLE_MAIN; |
---|
| 3249 | + u32 tbid = l3mdev_fib_table_rcu(dev) ? : RT_TABLE_MAIN; |
---|
2851 | 3250 | const struct in6_addr *gw_addr = &cfg->fc_gateway; |
---|
2852 | | - u32 flags = RTF_LOCAL | RTF_ANYCAST | RTF_REJECT; |
---|
2853 | | - struct fib6_info *from; |
---|
2854 | | - struct rt6_info *grt; |
---|
| 3251 | + struct fib6_result res = {}; |
---|
2855 | 3252 | int err; |
---|
2856 | 3253 | |
---|
2857 | | - err = 0; |
---|
2858 | | - grt = ip6_nh_lookup_table(net, cfg, gw_addr, tbid, 0); |
---|
2859 | | - if (grt) { |
---|
2860 | | - rcu_read_lock(); |
---|
2861 | | - from = rcu_dereference(grt->from); |
---|
2862 | | - if (!grt->dst.error && |
---|
2863 | | - /* ignore match if it is the default route */ |
---|
2864 | | - from && !ipv6_addr_any(&from->fib6_dst.addr) && |
---|
2865 | | - (grt->rt6i_flags & flags || dev != grt->dst.dev)) { |
---|
2866 | | - NL_SET_ERR_MSG(extack, |
---|
2867 | | - "Nexthop has invalid gateway or device mismatch"); |
---|
2868 | | - err = -EINVAL; |
---|
2869 | | - } |
---|
2870 | | - rcu_read_unlock(); |
---|
2871 | | - |
---|
2872 | | - ip6_rt_put(grt); |
---|
| 3254 | + err = ip6_nh_lookup_table(net, cfg, gw_addr, tbid, 0, &res); |
---|
| 3255 | + if (!err && !(res.fib6_flags & RTF_REJECT) && |
---|
| 3256 | + /* ignore match if it is the default route */ |
---|
| 3257 | + !ipv6_addr_any(&res.f6i->fib6_dst.addr) && |
---|
| 3258 | + (res.fib6_type != RTN_UNICAST || dev != res.nh->fib_nh_dev)) { |
---|
| 3259 | + NL_SET_ERR_MSG(extack, |
---|
| 3260 | + "Nexthop has invalid gateway or device mismatch"); |
---|
| 3261 | + err = -EINVAL; |
---|
2873 | 3262 | } |
---|
2874 | 3263 | |
---|
2875 | 3264 | return err; |
---|
.. | .. |
---|
2882 | 3271 | { |
---|
2883 | 3272 | const struct in6_addr *gw_addr = &cfg->fc_gateway; |
---|
2884 | 3273 | struct net_device *dev = _dev ? *_dev : NULL; |
---|
2885 | | - struct rt6_info *grt = NULL; |
---|
| 3274 | + int flags = RT6_LOOKUP_F_IFACE; |
---|
| 3275 | + struct fib6_result res = {}; |
---|
2886 | 3276 | int err = -EHOSTUNREACH; |
---|
2887 | 3277 | |
---|
2888 | 3278 | if (cfg->fc_table) { |
---|
2889 | | - int flags = RT6_LOOKUP_F_IFACE; |
---|
2890 | | - |
---|
2891 | | - grt = ip6_nh_lookup_table(net, cfg, gw_addr, |
---|
2892 | | - cfg->fc_table, flags); |
---|
2893 | | - if (grt) { |
---|
2894 | | - if (grt->rt6i_flags & RTF_GATEWAY || |
---|
2895 | | - (dev && dev != grt->dst.dev)) { |
---|
2896 | | - ip6_rt_put(grt); |
---|
2897 | | - grt = NULL; |
---|
2898 | | - } |
---|
2899 | | - } |
---|
| 3279 | + err = ip6_nh_lookup_table(net, cfg, gw_addr, |
---|
| 3280 | + cfg->fc_table, flags, &res); |
---|
| 3281 | + /* gw_addr can not require a gateway or resolve to a reject |
---|
| 3282 | + * route. If a device is given, it must match the result. |
---|
| 3283 | + */ |
---|
| 3284 | + if (err || res.fib6_flags & RTF_REJECT || |
---|
| 3285 | + res.nh->fib_nh_gw_family || |
---|
| 3286 | + (dev && dev != res.nh->fib_nh_dev)) |
---|
| 3287 | + err = -EHOSTUNREACH; |
---|
2900 | 3288 | } |
---|
2901 | 3289 | |
---|
2902 | | - if (!grt) |
---|
2903 | | - grt = rt6_lookup(net, gw_addr, NULL, cfg->fc_ifindex, NULL, 1); |
---|
| 3290 | + if (err < 0) { |
---|
| 3291 | + struct flowi6 fl6 = { |
---|
| 3292 | + .flowi6_oif = cfg->fc_ifindex, |
---|
| 3293 | + .daddr = *gw_addr, |
---|
| 3294 | + }; |
---|
2904 | 3295 | |
---|
2905 | | - if (!grt) |
---|
2906 | | - goto out; |
---|
| 3296 | + err = fib6_lookup(net, cfg->fc_ifindex, &fl6, &res, flags); |
---|
| 3297 | + if (err || res.fib6_flags & RTF_REJECT || |
---|
| 3298 | + res.nh->fib_nh_gw_family) |
---|
| 3299 | + err = -EHOSTUNREACH; |
---|
2907 | 3300 | |
---|
| 3301 | + if (err) |
---|
| 3302 | + return err; |
---|
| 3303 | + |
---|
| 3304 | + fib6_select_path(net, &res, &fl6, cfg->fc_ifindex, |
---|
| 3305 | + cfg->fc_ifindex != 0, NULL, flags); |
---|
| 3306 | + } |
---|
| 3307 | + |
---|
| 3308 | + err = 0; |
---|
2908 | 3309 | if (dev) { |
---|
2909 | | - if (dev != grt->dst.dev) { |
---|
2910 | | - ip6_rt_put(grt); |
---|
2911 | | - goto out; |
---|
2912 | | - } |
---|
| 3310 | + if (dev != res.nh->fib_nh_dev) |
---|
| 3311 | + err = -EHOSTUNREACH; |
---|
2913 | 3312 | } else { |
---|
2914 | | - *_dev = dev = grt->dst.dev; |
---|
2915 | | - *idev = grt->rt6i_idev; |
---|
| 3313 | + *_dev = dev = res.nh->fib_nh_dev; |
---|
2916 | 3314 | dev_hold(dev); |
---|
2917 | | - in6_dev_hold(grt->rt6i_idev); |
---|
| 3315 | + *idev = in6_dev_get(dev); |
---|
2918 | 3316 | } |
---|
2919 | 3317 | |
---|
2920 | | - if (!(grt->rt6i_flags & RTF_GATEWAY)) |
---|
2921 | | - err = 0; |
---|
2922 | | - |
---|
2923 | | - ip6_rt_put(grt); |
---|
2924 | | - |
---|
2925 | | -out: |
---|
2926 | 3318 | return err; |
---|
2927 | 3319 | } |
---|
2928 | 3320 | |
---|
.. | .. |
---|
2963 | 3355 | goto out; |
---|
2964 | 3356 | } |
---|
2965 | 3357 | |
---|
| 3358 | + rcu_read_lock(); |
---|
| 3359 | + |
---|
2966 | 3360 | if (cfg->fc_flags & RTNH_F_ONLINK) |
---|
2967 | 3361 | err = ip6_route_check_nh_onlink(net, cfg, dev, extack); |
---|
2968 | 3362 | else |
---|
2969 | 3363 | err = ip6_route_check_nh(net, cfg, _dev, idev); |
---|
| 3364 | + |
---|
| 3365 | + rcu_read_unlock(); |
---|
2970 | 3366 | |
---|
2971 | 3367 | if (err) |
---|
2972 | 3368 | goto out; |
---|
.. | .. |
---|
2999 | 3395 | return err; |
---|
3000 | 3396 | } |
---|
3001 | 3397 | |
---|
| 3398 | +static bool fib6_is_reject(u32 flags, struct net_device *dev, int addr_type) |
---|
| 3399 | +{ |
---|
| 3400 | + if ((flags & RTF_REJECT) || |
---|
| 3401 | + (dev && (dev->flags & IFF_LOOPBACK) && |
---|
| 3402 | + !(addr_type & IPV6_ADDR_LOOPBACK) && |
---|
| 3403 | + !(flags & (RTF_ANYCAST | RTF_LOCAL)))) |
---|
| 3404 | + return true; |
---|
| 3405 | + |
---|
| 3406 | + return false; |
---|
| 3407 | +} |
---|
| 3408 | + |
---|
| 3409 | +int fib6_nh_init(struct net *net, struct fib6_nh *fib6_nh, |
---|
| 3410 | + struct fib6_config *cfg, gfp_t gfp_flags, |
---|
| 3411 | + struct netlink_ext_ack *extack) |
---|
| 3412 | +{ |
---|
| 3413 | + struct net_device *dev = NULL; |
---|
| 3414 | + struct inet6_dev *idev = NULL; |
---|
| 3415 | + int addr_type; |
---|
| 3416 | + int err; |
---|
| 3417 | + |
---|
| 3418 | + fib6_nh->fib_nh_family = AF_INET6; |
---|
| 3419 | +#ifdef CONFIG_IPV6_ROUTER_PREF |
---|
| 3420 | + fib6_nh->last_probe = jiffies; |
---|
| 3421 | +#endif |
---|
| 3422 | + if (cfg->fc_is_fdb) { |
---|
| 3423 | + fib6_nh->fib_nh_gw6 = cfg->fc_gateway; |
---|
| 3424 | + fib6_nh->fib_nh_gw_family = AF_INET6; |
---|
| 3425 | + return 0; |
---|
| 3426 | + } |
---|
| 3427 | + |
---|
| 3428 | + err = -ENODEV; |
---|
| 3429 | + if (cfg->fc_ifindex) { |
---|
| 3430 | + dev = dev_get_by_index(net, cfg->fc_ifindex); |
---|
| 3431 | + if (!dev) |
---|
| 3432 | + goto out; |
---|
| 3433 | + idev = in6_dev_get(dev); |
---|
| 3434 | + if (!idev) |
---|
| 3435 | + goto out; |
---|
| 3436 | + } |
---|
| 3437 | + |
---|
| 3438 | + if (cfg->fc_flags & RTNH_F_ONLINK) { |
---|
| 3439 | + if (!dev) { |
---|
| 3440 | + NL_SET_ERR_MSG(extack, |
---|
| 3441 | + "Nexthop device required for onlink"); |
---|
| 3442 | + goto out; |
---|
| 3443 | + } |
---|
| 3444 | + |
---|
| 3445 | + if (!(dev->flags & IFF_UP)) { |
---|
| 3446 | + NL_SET_ERR_MSG(extack, "Nexthop device is not up"); |
---|
| 3447 | + err = -ENETDOWN; |
---|
| 3448 | + goto out; |
---|
| 3449 | + } |
---|
| 3450 | + |
---|
| 3451 | + fib6_nh->fib_nh_flags |= RTNH_F_ONLINK; |
---|
| 3452 | + } |
---|
| 3453 | + |
---|
| 3454 | + fib6_nh->fib_nh_weight = 1; |
---|
| 3455 | + |
---|
| 3456 | + /* We cannot add true routes via loopback here, |
---|
| 3457 | + * they would result in kernel looping; promote them to reject routes |
---|
| 3458 | + */ |
---|
| 3459 | + addr_type = ipv6_addr_type(&cfg->fc_dst); |
---|
| 3460 | + if (fib6_is_reject(cfg->fc_flags, dev, addr_type)) { |
---|
| 3461 | + /* hold loopback dev/idev if we haven't done so. */ |
---|
| 3462 | + if (dev != net->loopback_dev) { |
---|
| 3463 | + if (dev) { |
---|
| 3464 | + dev_put(dev); |
---|
| 3465 | + in6_dev_put(idev); |
---|
| 3466 | + } |
---|
| 3467 | + dev = net->loopback_dev; |
---|
| 3468 | + dev_hold(dev); |
---|
| 3469 | + idev = in6_dev_get(dev); |
---|
| 3470 | + if (!idev) { |
---|
| 3471 | + err = -ENODEV; |
---|
| 3472 | + goto out; |
---|
| 3473 | + } |
---|
| 3474 | + } |
---|
| 3475 | + goto pcpu_alloc; |
---|
| 3476 | + } |
---|
| 3477 | + |
---|
| 3478 | + if (cfg->fc_flags & RTF_GATEWAY) { |
---|
| 3479 | + err = ip6_validate_gw(net, cfg, &dev, &idev, extack); |
---|
| 3480 | + if (err) |
---|
| 3481 | + goto out; |
---|
| 3482 | + |
---|
| 3483 | + fib6_nh->fib_nh_gw6 = cfg->fc_gateway; |
---|
| 3484 | + fib6_nh->fib_nh_gw_family = AF_INET6; |
---|
| 3485 | + } |
---|
| 3486 | + |
---|
| 3487 | + err = -ENODEV; |
---|
| 3488 | + if (!dev) |
---|
| 3489 | + goto out; |
---|
| 3490 | + |
---|
| 3491 | + if (idev->cnf.disable_ipv6) { |
---|
| 3492 | + NL_SET_ERR_MSG(extack, "IPv6 is disabled on nexthop device"); |
---|
| 3493 | + err = -EACCES; |
---|
| 3494 | + goto out; |
---|
| 3495 | + } |
---|
| 3496 | + |
---|
| 3497 | + if (!(dev->flags & IFF_UP) && !cfg->fc_ignore_dev_down) { |
---|
| 3498 | + NL_SET_ERR_MSG(extack, "Nexthop device is not up"); |
---|
| 3499 | + err = -ENETDOWN; |
---|
| 3500 | + goto out; |
---|
| 3501 | + } |
---|
| 3502 | + |
---|
| 3503 | + if (!(cfg->fc_flags & (RTF_LOCAL | RTF_ANYCAST)) && |
---|
| 3504 | + !netif_carrier_ok(dev)) |
---|
| 3505 | + fib6_nh->fib_nh_flags |= RTNH_F_LINKDOWN; |
---|
| 3506 | + |
---|
| 3507 | + err = fib_nh_common_init(net, &fib6_nh->nh_common, cfg->fc_encap, |
---|
| 3508 | + cfg->fc_encap_type, cfg, gfp_flags, extack); |
---|
| 3509 | + if (err) |
---|
| 3510 | + goto out; |
---|
| 3511 | + |
---|
| 3512 | +pcpu_alloc: |
---|
| 3513 | + fib6_nh->rt6i_pcpu = alloc_percpu_gfp(struct rt6_info *, gfp_flags); |
---|
| 3514 | + if (!fib6_nh->rt6i_pcpu) { |
---|
| 3515 | + err = -ENOMEM; |
---|
| 3516 | + goto out; |
---|
| 3517 | + } |
---|
| 3518 | + |
---|
| 3519 | + fib6_nh->fib_nh_dev = dev; |
---|
| 3520 | + fib6_nh->fib_nh_oif = dev->ifindex; |
---|
| 3521 | + err = 0; |
---|
| 3522 | +out: |
---|
| 3523 | + if (idev) |
---|
| 3524 | + in6_dev_put(idev); |
---|
| 3525 | + |
---|
| 3526 | + if (err) { |
---|
| 3527 | + lwtstate_put(fib6_nh->fib_nh_lws); |
---|
| 3528 | + fib6_nh->fib_nh_lws = NULL; |
---|
| 3529 | + if (dev) |
---|
| 3530 | + dev_put(dev); |
---|
| 3531 | + } |
---|
| 3532 | + |
---|
| 3533 | + return err; |
---|
| 3534 | +} |
---|
| 3535 | + |
---|
| 3536 | +void fib6_nh_release(struct fib6_nh *fib6_nh) |
---|
| 3537 | +{ |
---|
| 3538 | + struct rt6_exception_bucket *bucket; |
---|
| 3539 | + |
---|
| 3540 | + rcu_read_lock(); |
---|
| 3541 | + |
---|
| 3542 | + fib6_nh_flush_exceptions(fib6_nh, NULL); |
---|
| 3543 | + bucket = fib6_nh_get_excptn_bucket(fib6_nh, NULL); |
---|
| 3544 | + if (bucket) { |
---|
| 3545 | + rcu_assign_pointer(fib6_nh->rt6i_exception_bucket, NULL); |
---|
| 3546 | + kfree(bucket); |
---|
| 3547 | + } |
---|
| 3548 | + |
---|
| 3549 | + rcu_read_unlock(); |
---|
| 3550 | + |
---|
| 3551 | + if (fib6_nh->rt6i_pcpu) { |
---|
| 3552 | + int cpu; |
---|
| 3553 | + |
---|
| 3554 | + for_each_possible_cpu(cpu) { |
---|
| 3555 | + struct rt6_info **ppcpu_rt; |
---|
| 3556 | + struct rt6_info *pcpu_rt; |
---|
| 3557 | + |
---|
| 3558 | + ppcpu_rt = per_cpu_ptr(fib6_nh->rt6i_pcpu, cpu); |
---|
| 3559 | + pcpu_rt = *ppcpu_rt; |
---|
| 3560 | + if (pcpu_rt) { |
---|
| 3561 | + dst_dev_put(&pcpu_rt->dst); |
---|
| 3562 | + dst_release(&pcpu_rt->dst); |
---|
| 3563 | + *ppcpu_rt = NULL; |
---|
| 3564 | + } |
---|
| 3565 | + } |
---|
| 3566 | + |
---|
| 3567 | + free_percpu(fib6_nh->rt6i_pcpu); |
---|
| 3568 | + } |
---|
| 3569 | + |
---|
| 3570 | + fib_nh_common_release(&fib6_nh->nh_common); |
---|
| 3571 | +} |
---|
| 3572 | + |
---|
3002 | 3573 | static struct fib6_info *ip6_route_info_create(struct fib6_config *cfg, |
---|
3003 | 3574 | gfp_t gfp_flags, |
---|
3004 | 3575 | struct netlink_ext_ack *extack) |
---|
3005 | 3576 | { |
---|
3006 | 3577 | struct net *net = cfg->fc_nlinfo.nl_net; |
---|
3007 | 3578 | struct fib6_info *rt = NULL; |
---|
3008 | | - struct net_device *dev = NULL; |
---|
3009 | | - struct inet6_dev *idev = NULL; |
---|
| 3579 | + struct nexthop *nh = NULL; |
---|
3010 | 3580 | struct fib6_table *table; |
---|
3011 | | - int addr_type; |
---|
| 3581 | + struct fib6_nh *fib6_nh; |
---|
3012 | 3582 | int err = -EINVAL; |
---|
| 3583 | + int addr_type; |
---|
3013 | 3584 | |
---|
3014 | 3585 | /* RTF_PCPU is an internal flag; can not be set by userspace */ |
---|
3015 | 3586 | if (cfg->fc_flags & RTF_PCPU) { |
---|
.. | .. |
---|
3043 | 3614 | goto out; |
---|
3044 | 3615 | } |
---|
3045 | 3616 | #endif |
---|
3046 | | - if (cfg->fc_ifindex) { |
---|
3047 | | - err = -ENODEV; |
---|
3048 | | - dev = dev_get_by_index(net, cfg->fc_ifindex); |
---|
3049 | | - if (!dev) |
---|
3050 | | - goto out; |
---|
3051 | | - idev = in6_dev_get(dev); |
---|
3052 | | - if (!idev) |
---|
3053 | | - goto out; |
---|
3054 | | - } |
---|
3055 | | - |
---|
3056 | | - if (cfg->fc_metric == 0) |
---|
3057 | | - cfg->fc_metric = IP6_RT_PRIO_USER; |
---|
3058 | | - |
---|
3059 | | - if (cfg->fc_flags & RTNH_F_ONLINK) { |
---|
3060 | | - if (!dev) { |
---|
3061 | | - NL_SET_ERR_MSG(extack, |
---|
3062 | | - "Nexthop device required for onlink"); |
---|
3063 | | - err = -ENODEV; |
---|
| 3617 | + if (cfg->fc_nh_id) { |
---|
| 3618 | + nh = nexthop_find_by_id(net, cfg->fc_nh_id); |
---|
| 3619 | + if (!nh) { |
---|
| 3620 | + NL_SET_ERR_MSG(extack, "Nexthop id does not exist"); |
---|
3064 | 3621 | goto out; |
---|
3065 | 3622 | } |
---|
3066 | | - |
---|
3067 | | - if (!(dev->flags & IFF_UP)) { |
---|
3068 | | - NL_SET_ERR_MSG(extack, "Nexthop device is not up"); |
---|
3069 | | - err = -ENETDOWN; |
---|
| 3623 | + err = fib6_check_nexthop(nh, cfg, extack); |
---|
| 3624 | + if (err) |
---|
3070 | 3625 | goto out; |
---|
3071 | | - } |
---|
3072 | 3626 | } |
---|
3073 | 3627 | |
---|
3074 | 3628 | err = -ENOBUFS; |
---|
.. | .. |
---|
3087 | 3641 | goto out; |
---|
3088 | 3642 | |
---|
3089 | 3643 | err = -ENOMEM; |
---|
3090 | | - rt = fib6_info_alloc(gfp_flags); |
---|
| 3644 | + rt = fib6_info_alloc(gfp_flags, !nh); |
---|
3091 | 3645 | if (!rt) |
---|
3092 | 3646 | goto out; |
---|
3093 | 3647 | |
---|
3094 | | -#ifdef CONFIG_IPV6_ROUTER_PREF |
---|
3095 | | - rt->last_probe = jiffies; |
---|
3096 | | -#endif |
---|
| 3648 | + rt->fib6_metrics = ip_fib_metrics_init(net, cfg->fc_mx, cfg->fc_mx_len, |
---|
| 3649 | + extack); |
---|
| 3650 | + if (IS_ERR(rt->fib6_metrics)) { |
---|
| 3651 | + err = PTR_ERR(rt->fib6_metrics); |
---|
| 3652 | + /* Do not leave garbage there. */ |
---|
| 3653 | + rt->fib6_metrics = (struct dst_metrics *)&dst_default_metrics; |
---|
| 3654 | + goto out_free; |
---|
| 3655 | + } |
---|
| 3656 | + |
---|
3097 | 3657 | if (cfg->fc_flags & RTF_ADDRCONF) |
---|
3098 | 3658 | rt->dst_nocount = true; |
---|
3099 | | - |
---|
3100 | | - err = ip6_convert_metrics(net, rt, cfg); |
---|
3101 | | - if (err < 0) |
---|
3102 | | - goto out; |
---|
3103 | 3659 | |
---|
3104 | 3660 | if (cfg->fc_flags & RTF_EXPIRES) |
---|
3105 | 3661 | fib6_set_expires(rt, jiffies + |
---|
.. | .. |
---|
3111 | 3667 | cfg->fc_protocol = RTPROT_BOOT; |
---|
3112 | 3668 | rt->fib6_protocol = cfg->fc_protocol; |
---|
3113 | 3669 | |
---|
3114 | | - addr_type = ipv6_addr_type(&cfg->fc_dst); |
---|
3115 | | - |
---|
3116 | | - if (cfg->fc_encap) { |
---|
3117 | | - struct lwtunnel_state *lwtstate; |
---|
3118 | | - |
---|
3119 | | - err = lwtunnel_build_state(cfg->fc_encap_type, |
---|
3120 | | - cfg->fc_encap, AF_INET6, cfg, |
---|
3121 | | - &lwtstate, extack); |
---|
3122 | | - if (err) |
---|
3123 | | - goto out; |
---|
3124 | | - rt->fib6_nh.nh_lwtstate = lwtstate_get(lwtstate); |
---|
3125 | | - } |
---|
| 3670 | + rt->fib6_table = table; |
---|
| 3671 | + rt->fib6_metric = cfg->fc_metric; |
---|
| 3672 | + rt->fib6_type = cfg->fc_type ? : RTN_UNICAST; |
---|
| 3673 | + rt->fib6_flags = cfg->fc_flags & ~RTF_GATEWAY; |
---|
3126 | 3674 | |
---|
3127 | 3675 | ipv6_addr_prefix(&rt->fib6_dst.addr, &cfg->fc_dst, cfg->fc_dst_len); |
---|
3128 | 3676 | rt->fib6_dst.plen = cfg->fc_dst_len; |
---|
3129 | | - if (rt->fib6_dst.plen == 128) |
---|
3130 | | - rt->dst_host = true; |
---|
3131 | 3677 | |
---|
3132 | 3678 | #ifdef CONFIG_IPV6_SUBTREES |
---|
3133 | 3679 | ipv6_addr_prefix(&rt->fib6_src.addr, &cfg->fc_src, cfg->fc_src_len); |
---|
3134 | 3680 | rt->fib6_src.plen = cfg->fc_src_len; |
---|
3135 | 3681 | #endif |
---|
3136 | | - |
---|
3137 | | - rt->fib6_metric = cfg->fc_metric; |
---|
3138 | | - rt->fib6_nh.nh_weight = 1; |
---|
3139 | | - |
---|
3140 | | - rt->fib6_type = cfg->fc_type ? : RTN_UNICAST; |
---|
3141 | | - |
---|
3142 | | - /* We cannot add true routes via loopback here, |
---|
3143 | | - they would result in kernel looping; promote them to reject routes |
---|
3144 | | - */ |
---|
3145 | | - if ((cfg->fc_flags & RTF_REJECT) || |
---|
3146 | | - (dev && (dev->flags & IFF_LOOPBACK) && |
---|
3147 | | - !(addr_type & IPV6_ADDR_LOOPBACK) && |
---|
3148 | | - !(cfg->fc_flags & RTF_LOCAL))) { |
---|
3149 | | - /* hold loopback dev/idev if we haven't done so. */ |
---|
3150 | | - if (dev != net->loopback_dev) { |
---|
3151 | | - if (dev) { |
---|
3152 | | - dev_put(dev); |
---|
3153 | | - in6_dev_put(idev); |
---|
3154 | | - } |
---|
3155 | | - dev = net->loopback_dev; |
---|
3156 | | - dev_hold(dev); |
---|
3157 | | - idev = in6_dev_get(dev); |
---|
3158 | | - if (!idev) { |
---|
3159 | | - err = -ENODEV; |
---|
3160 | | - goto out; |
---|
3161 | | - } |
---|
| 3682 | + if (nh) { |
---|
| 3683 | + if (rt->fib6_src.plen) { |
---|
| 3684 | + NL_SET_ERR_MSG(extack, "Nexthops can not be used with source routing"); |
---|
| 3685 | + goto out_free; |
---|
3162 | 3686 | } |
---|
3163 | | - rt->fib6_flags = RTF_REJECT|RTF_NONEXTHOP; |
---|
3164 | | - goto install_route; |
---|
3165 | | - } |
---|
3166 | | - |
---|
3167 | | - if (cfg->fc_flags & RTF_GATEWAY) { |
---|
3168 | | - err = ip6_validate_gw(net, cfg, &dev, &idev, extack); |
---|
| 3687 | + if (!nexthop_get(nh)) { |
---|
| 3688 | + NL_SET_ERR_MSG(extack, "Nexthop has been deleted"); |
---|
| 3689 | + goto out_free; |
---|
| 3690 | + } |
---|
| 3691 | + rt->nh = nh; |
---|
| 3692 | + fib6_nh = nexthop_fib6_nh(rt->nh); |
---|
| 3693 | + } else { |
---|
| 3694 | + err = fib6_nh_init(net, rt->fib6_nh, cfg, gfp_flags, extack); |
---|
3169 | 3695 | if (err) |
---|
3170 | 3696 | goto out; |
---|
3171 | 3697 | |
---|
3172 | | - rt->fib6_nh.nh_gw = cfg->fc_gateway; |
---|
3173 | | - } |
---|
| 3698 | + fib6_nh = rt->fib6_nh; |
---|
3174 | 3699 | |
---|
3175 | | - err = -ENODEV; |
---|
3176 | | - if (!dev) |
---|
3177 | | - goto out; |
---|
3178 | | - |
---|
3179 | | - if (idev->cnf.disable_ipv6) { |
---|
3180 | | - NL_SET_ERR_MSG(extack, "IPv6 is disabled on nexthop device"); |
---|
3181 | | - err = -EACCES; |
---|
3182 | | - goto out; |
---|
3183 | | - } |
---|
3184 | | - |
---|
3185 | | - if (!(dev->flags & IFF_UP)) { |
---|
3186 | | - NL_SET_ERR_MSG(extack, "Nexthop device is not up"); |
---|
3187 | | - err = -ENETDOWN; |
---|
3188 | | - goto out; |
---|
| 3700 | + /* We cannot add true routes via loopback here, they would |
---|
| 3701 | + * result in kernel looping; promote them to reject routes |
---|
| 3702 | + */ |
---|
| 3703 | + addr_type = ipv6_addr_type(&cfg->fc_dst); |
---|
| 3704 | + if (fib6_is_reject(cfg->fc_flags, rt->fib6_nh->fib_nh_dev, |
---|
| 3705 | + addr_type)) |
---|
| 3706 | + rt->fib6_flags = RTF_REJECT | RTF_NONEXTHOP; |
---|
3189 | 3707 | } |
---|
3190 | 3708 | |
---|
3191 | 3709 | if (!ipv6_addr_any(&cfg->fc_prefsrc)) { |
---|
| 3710 | + struct net_device *dev = fib6_nh->fib_nh_dev; |
---|
| 3711 | + |
---|
3192 | 3712 | if (!ipv6_chk_addr(net, &cfg->fc_prefsrc, dev, 0)) { |
---|
3193 | 3713 | NL_SET_ERR_MSG(extack, "Invalid source address"); |
---|
3194 | 3714 | err = -EINVAL; |
---|
.. | .. |
---|
3199 | 3719 | } else |
---|
3200 | 3720 | rt->fib6_prefsrc.plen = 0; |
---|
3201 | 3721 | |
---|
3202 | | - rt->fib6_flags = cfg->fc_flags; |
---|
3203 | | - |
---|
3204 | | -install_route: |
---|
3205 | | - if (!(rt->fib6_flags & (RTF_LOCAL | RTF_ANYCAST)) && |
---|
3206 | | - !netif_carrier_ok(dev)) |
---|
3207 | | - rt->fib6_nh.nh_flags |= RTNH_F_LINKDOWN; |
---|
3208 | | - rt->fib6_nh.nh_flags |= (cfg->fc_flags & RTNH_F_ONLINK); |
---|
3209 | | - rt->fib6_nh.nh_dev = dev; |
---|
3210 | | - rt->fib6_table = table; |
---|
3211 | | - |
---|
3212 | | - cfg->fc_nlinfo.nl_net = dev_net(dev); |
---|
3213 | | - |
---|
3214 | | - if (idev) |
---|
3215 | | - in6_dev_put(idev); |
---|
3216 | | - |
---|
3217 | 3722 | return rt; |
---|
3218 | 3723 | out: |
---|
3219 | | - if (dev) |
---|
3220 | | - dev_put(dev); |
---|
3221 | | - if (idev) |
---|
3222 | | - in6_dev_put(idev); |
---|
3223 | | - |
---|
3224 | 3724 | fib6_info_release(rt); |
---|
| 3725 | + return ERR_PTR(err); |
---|
| 3726 | +out_free: |
---|
| 3727 | + ip_fib_metrics_put(rt->fib6_metrics); |
---|
| 3728 | + kfree(rt); |
---|
3225 | 3729 | return ERR_PTR(err); |
---|
3226 | 3730 | } |
---|
3227 | 3731 | |
---|
.. | .. |
---|
3262 | 3766 | return err; |
---|
3263 | 3767 | } |
---|
3264 | 3768 | |
---|
3265 | | -int ip6_del_rt(struct net *net, struct fib6_info *rt) |
---|
| 3769 | +int ip6_del_rt(struct net *net, struct fib6_info *rt, bool skip_notify) |
---|
3266 | 3770 | { |
---|
3267 | | - struct nl_info info = { .nl_net = net }; |
---|
| 3771 | + struct nl_info info = { |
---|
| 3772 | + .nl_net = net, |
---|
| 3773 | + .skip_notify = skip_notify |
---|
| 3774 | + }; |
---|
3268 | 3775 | |
---|
3269 | 3776 | return __ip6_del_rt(rt, &info); |
---|
3270 | 3777 | } |
---|
.. | .. |
---|
3284 | 3791 | |
---|
3285 | 3792 | if (rt->fib6_nsiblings && cfg->fc_delete_all_nh) { |
---|
3286 | 3793 | struct fib6_info *sibling, *next_sibling; |
---|
| 3794 | + struct fib6_node *fn; |
---|
3287 | 3795 | |
---|
3288 | 3796 | /* prefer to send a single notification with all hops */ |
---|
3289 | 3797 | skb = nlmsg_new(rt6_nlmsg_size(rt), gfp_any()); |
---|
.. | .. |
---|
3299 | 3807 | info->skip_notify = 1; |
---|
3300 | 3808 | } |
---|
3301 | 3809 | |
---|
| 3810 | + /* 'rt' points to the first sibling route. If it is not the |
---|
| 3811 | + * leaf, then we do not need to send a notification. Otherwise, |
---|
| 3812 | + * we need to check if the last sibling has a next route or not |
---|
| 3813 | + * and emit a replace or delete notification, respectively. |
---|
| 3814 | + */ |
---|
| 3815 | + info->skip_notify_kernel = 1; |
---|
| 3816 | + fn = rcu_dereference_protected(rt->fib6_node, |
---|
| 3817 | + lockdep_is_held(&table->tb6_lock)); |
---|
| 3818 | + if (rcu_access_pointer(fn->leaf) == rt) { |
---|
| 3819 | + struct fib6_info *last_sibling, *replace_rt; |
---|
| 3820 | + |
---|
| 3821 | + last_sibling = list_last_entry(&rt->fib6_siblings, |
---|
| 3822 | + struct fib6_info, |
---|
| 3823 | + fib6_siblings); |
---|
| 3824 | + replace_rt = rcu_dereference_protected( |
---|
| 3825 | + last_sibling->fib6_next, |
---|
| 3826 | + lockdep_is_held(&table->tb6_lock)); |
---|
| 3827 | + if (replace_rt) |
---|
| 3828 | + call_fib6_entry_notifiers_replace(net, |
---|
| 3829 | + replace_rt); |
---|
| 3830 | + else |
---|
| 3831 | + call_fib6_multipath_entry_notifiers(net, |
---|
| 3832 | + FIB_EVENT_ENTRY_DEL, |
---|
| 3833 | + rt, rt->fib6_nsiblings, |
---|
| 3834 | + NULL); |
---|
| 3835 | + } |
---|
3302 | 3836 | list_for_each_entry_safe(sibling, next_sibling, |
---|
3303 | 3837 | &rt->fib6_siblings, |
---|
3304 | 3838 | fib6_siblings) { |
---|
.. | .. |
---|
3321 | 3855 | return err; |
---|
3322 | 3856 | } |
---|
3323 | 3857 | |
---|
3324 | | -static int ip6_del_cached_rt(struct rt6_info *rt, struct fib6_config *cfg) |
---|
| 3858 | +static int __ip6_del_cached_rt(struct rt6_info *rt, struct fib6_config *cfg) |
---|
3325 | 3859 | { |
---|
3326 | 3860 | int rc = -ESRCH; |
---|
3327 | 3861 | |
---|
.. | .. |
---|
3337 | 3871 | return rc; |
---|
3338 | 3872 | } |
---|
3339 | 3873 | |
---|
| 3874 | +static int ip6_del_cached_rt(struct fib6_config *cfg, struct fib6_info *rt, |
---|
| 3875 | + struct fib6_nh *nh) |
---|
| 3876 | +{ |
---|
| 3877 | + struct fib6_result res = { |
---|
| 3878 | + .f6i = rt, |
---|
| 3879 | + .nh = nh, |
---|
| 3880 | + }; |
---|
| 3881 | + struct rt6_info *rt_cache; |
---|
| 3882 | + |
---|
| 3883 | + rt_cache = rt6_find_cached_rt(&res, &cfg->fc_dst, &cfg->fc_src); |
---|
| 3884 | + if (rt_cache) |
---|
| 3885 | + return __ip6_del_cached_rt(rt_cache, cfg); |
---|
| 3886 | + |
---|
| 3887 | + return 0; |
---|
| 3888 | +} |
---|
| 3889 | + |
---|
| 3890 | +struct fib6_nh_del_cached_rt_arg { |
---|
| 3891 | + struct fib6_config *cfg; |
---|
| 3892 | + struct fib6_info *f6i; |
---|
| 3893 | +}; |
---|
| 3894 | + |
---|
| 3895 | +static int fib6_nh_del_cached_rt(struct fib6_nh *nh, void *_arg) |
---|
| 3896 | +{ |
---|
| 3897 | + struct fib6_nh_del_cached_rt_arg *arg = _arg; |
---|
| 3898 | + int rc; |
---|
| 3899 | + |
---|
| 3900 | + rc = ip6_del_cached_rt(arg->cfg, arg->f6i, nh); |
---|
| 3901 | + return rc != -ESRCH ? rc : 0; |
---|
| 3902 | +} |
---|
| 3903 | + |
---|
| 3904 | +static int ip6_del_cached_rt_nh(struct fib6_config *cfg, struct fib6_info *f6i) |
---|
| 3905 | +{ |
---|
| 3906 | + struct fib6_nh_del_cached_rt_arg arg = { |
---|
| 3907 | + .cfg = cfg, |
---|
| 3908 | + .f6i = f6i |
---|
| 3909 | + }; |
---|
| 3910 | + |
---|
| 3911 | + return nexthop_for_each_fib6_nh(f6i->nh, fib6_nh_del_cached_rt, &arg); |
---|
| 3912 | +} |
---|
| 3913 | + |
---|
3340 | 3914 | static int ip6_route_del(struct fib6_config *cfg, |
---|
3341 | 3915 | struct netlink_ext_ack *extack) |
---|
3342 | 3916 | { |
---|
3343 | | - struct rt6_info *rt_cache; |
---|
3344 | 3917 | struct fib6_table *table; |
---|
3345 | 3918 | struct fib6_info *rt; |
---|
3346 | 3919 | struct fib6_node *fn; |
---|
.. | .. |
---|
3361 | 3934 | |
---|
3362 | 3935 | if (fn) { |
---|
3363 | 3936 | for_each_fib6_node_rt_rcu(fn) { |
---|
3364 | | - if (cfg->fc_flags & RTF_CACHE) { |
---|
3365 | | - int rc; |
---|
| 3937 | + struct fib6_nh *nh; |
---|
3366 | 3938 | |
---|
3367 | | - rt_cache = rt6_find_cached_rt(rt, &cfg->fc_dst, |
---|
3368 | | - &cfg->fc_src); |
---|
3369 | | - if (rt_cache) { |
---|
3370 | | - rc = ip6_del_cached_rt(rt_cache, cfg); |
---|
3371 | | - if (rc != -ESRCH) { |
---|
3372 | | - rcu_read_unlock(); |
---|
3373 | | - return rc; |
---|
3374 | | - } |
---|
| 3939 | + if (rt->nh && cfg->fc_nh_id && |
---|
| 3940 | + rt->nh->id != cfg->fc_nh_id) |
---|
| 3941 | + continue; |
---|
| 3942 | + |
---|
| 3943 | + if (cfg->fc_flags & RTF_CACHE) { |
---|
| 3944 | + int rc = 0; |
---|
| 3945 | + |
---|
| 3946 | + if (rt->nh) { |
---|
| 3947 | + rc = ip6_del_cached_rt_nh(cfg, rt); |
---|
| 3948 | + } else if (cfg->fc_nh_id) { |
---|
| 3949 | + continue; |
---|
| 3950 | + } else { |
---|
| 3951 | + nh = rt->fib6_nh; |
---|
| 3952 | + rc = ip6_del_cached_rt(cfg, rt, nh); |
---|
| 3953 | + } |
---|
| 3954 | + if (rc != -ESRCH) { |
---|
| 3955 | + rcu_read_unlock(); |
---|
| 3956 | + return rc; |
---|
3375 | 3957 | } |
---|
3376 | 3958 | continue; |
---|
3377 | 3959 | } |
---|
3378 | | - if (cfg->fc_ifindex && |
---|
3379 | | - (!rt->fib6_nh.nh_dev || |
---|
3380 | | - rt->fib6_nh.nh_dev->ifindex != cfg->fc_ifindex)) |
---|
3381 | | - continue; |
---|
3382 | | - if (cfg->fc_flags & RTF_GATEWAY && |
---|
3383 | | - !ipv6_addr_equal(&cfg->fc_gateway, &rt->fib6_nh.nh_gw)) |
---|
3384 | | - continue; |
---|
| 3960 | + |
---|
3385 | 3961 | if (cfg->fc_metric && cfg->fc_metric != rt->fib6_metric) |
---|
3386 | 3962 | continue; |
---|
3387 | | - if (cfg->fc_protocol && cfg->fc_protocol != rt->fib6_protocol) |
---|
| 3963 | + if (cfg->fc_protocol && |
---|
| 3964 | + cfg->fc_protocol != rt->fib6_protocol) |
---|
| 3965 | + continue; |
---|
| 3966 | + |
---|
| 3967 | + if (rt->nh) { |
---|
| 3968 | + if (!fib6_info_hold_safe(rt)) |
---|
| 3969 | + continue; |
---|
| 3970 | + rcu_read_unlock(); |
---|
| 3971 | + |
---|
| 3972 | + return __ip6_del_rt(rt, &cfg->fc_nlinfo); |
---|
| 3973 | + } |
---|
| 3974 | + if (cfg->fc_nh_id) |
---|
| 3975 | + continue; |
---|
| 3976 | + |
---|
| 3977 | + nh = rt->fib6_nh; |
---|
| 3978 | + if (cfg->fc_ifindex && |
---|
| 3979 | + (!nh->fib_nh_dev || |
---|
| 3980 | + nh->fib_nh_dev->ifindex != cfg->fc_ifindex)) |
---|
| 3981 | + continue; |
---|
| 3982 | + if (cfg->fc_flags & RTF_GATEWAY && |
---|
| 3983 | + !ipv6_addr_equal(&cfg->fc_gateway, &nh->fib_nh_gw6)) |
---|
3388 | 3984 | continue; |
---|
3389 | 3985 | if (!fib6_info_hold_safe(rt)) |
---|
3390 | 3986 | continue; |
---|
.. | .. |
---|
3406 | 4002 | { |
---|
3407 | 4003 | struct netevent_redirect netevent; |
---|
3408 | 4004 | struct rt6_info *rt, *nrt = NULL; |
---|
| 4005 | + struct fib6_result res = {}; |
---|
3409 | 4006 | struct ndisc_options ndopts; |
---|
3410 | 4007 | struct inet6_dev *in6_dev; |
---|
3411 | 4008 | struct neighbour *neigh; |
---|
3412 | | - struct fib6_info *from; |
---|
3413 | 4009 | struct rd_msg *msg; |
---|
3414 | 4010 | int optlen, on_link; |
---|
3415 | 4011 | u8 *lladdr; |
---|
.. | .. |
---|
3492 | 4088 | NDISC_REDIRECT, &ndopts); |
---|
3493 | 4089 | |
---|
3494 | 4090 | rcu_read_lock(); |
---|
3495 | | - from = rcu_dereference(rt->from); |
---|
3496 | | - if (!from) |
---|
| 4091 | + res.f6i = rcu_dereference(rt->from); |
---|
| 4092 | + if (!res.f6i) |
---|
3497 | 4093 | goto out; |
---|
3498 | 4094 | |
---|
3499 | | - nrt = ip6_rt_cache_alloc(from, &msg->dest, NULL); |
---|
| 4095 | + if (res.f6i->nh) { |
---|
| 4096 | + struct fib6_nh_match_arg arg = { |
---|
| 4097 | + .dev = dst->dev, |
---|
| 4098 | + .gw = &rt->rt6i_gateway, |
---|
| 4099 | + }; |
---|
| 4100 | + |
---|
| 4101 | + nexthop_for_each_fib6_nh(res.f6i->nh, |
---|
| 4102 | + fib6_nh_find_match, &arg); |
---|
| 4103 | + |
---|
| 4104 | + /* fib6_info uses a nexthop that does not have fib6_nh |
---|
| 4105 | + * using the dst->dev. Should be impossible |
---|
| 4106 | + */ |
---|
| 4107 | + if (!arg.match) |
---|
| 4108 | + goto out; |
---|
| 4109 | + res.nh = arg.match; |
---|
| 4110 | + } else { |
---|
| 4111 | + res.nh = res.f6i->fib6_nh; |
---|
| 4112 | + } |
---|
| 4113 | + |
---|
| 4114 | + res.fib6_flags = res.f6i->fib6_flags; |
---|
| 4115 | + res.fib6_type = res.f6i->fib6_type; |
---|
| 4116 | + nrt = ip6_rt_cache_alloc(&res, &msg->dest, NULL); |
---|
3500 | 4117 | if (!nrt) |
---|
3501 | 4118 | goto out; |
---|
3502 | 4119 | |
---|
.. | .. |
---|
3507 | 4124 | nrt->rt6i_gateway = *(struct in6_addr *)neigh->primary_key; |
---|
3508 | 4125 | |
---|
3509 | 4126 | /* rt6_insert_exception() will take care of duplicated exceptions */ |
---|
3510 | | - if (rt6_insert_exception(nrt, from)) { |
---|
| 4127 | + if (rt6_insert_exception(nrt, &res)) { |
---|
3511 | 4128 | dst_release_immediate(&nrt->dst); |
---|
3512 | 4129 | goto out; |
---|
3513 | 4130 | } |
---|
.. | .. |
---|
3545 | 4162 | goto out; |
---|
3546 | 4163 | |
---|
3547 | 4164 | for_each_fib6_node_rt_rcu(fn) { |
---|
3548 | | - if (rt->fib6_nh.nh_dev->ifindex != ifindex) |
---|
| 4165 | + /* these routes do not use nexthops */ |
---|
| 4166 | + if (rt->nh) |
---|
3549 | 4167 | continue; |
---|
3550 | | - if ((rt->fib6_flags & (RTF_ROUTEINFO|RTF_GATEWAY)) != (RTF_ROUTEINFO|RTF_GATEWAY)) |
---|
| 4168 | + if (rt->fib6_nh->fib_nh_dev->ifindex != ifindex) |
---|
3551 | 4169 | continue; |
---|
3552 | | - if (!ipv6_addr_equal(&rt->fib6_nh.nh_gw, gwaddr)) |
---|
| 4170 | + if (!(rt->fib6_flags & RTF_ROUTEINFO) || |
---|
| 4171 | + !rt->fib6_nh->fib_nh_gw_family) |
---|
| 4172 | + continue; |
---|
| 4173 | + if (!ipv6_addr_equal(&rt->fib6_nh->fib_nh_gw6, gwaddr)) |
---|
3553 | 4174 | continue; |
---|
3554 | 4175 | if (!fib6_info_hold_safe(rt)) |
---|
3555 | 4176 | continue; |
---|
.. | .. |
---|
3579 | 4200 | .fc_nlinfo.nl_net = net, |
---|
3580 | 4201 | }; |
---|
3581 | 4202 | |
---|
3582 | | - cfg.fc_table = l3mdev_fib_table(dev) ? : addrconf_rt_table(dev, RT6_TABLE_INFO), |
---|
| 4203 | + cfg.fc_table = l3mdev_fib_table(dev) ? : addrconf_rt_table(dev, RT6_TABLE_INFO); |
---|
3583 | 4204 | cfg.fc_dst = *prefix; |
---|
3584 | 4205 | cfg.fc_gateway = *gwaddr; |
---|
3585 | 4206 | |
---|
.. | .. |
---|
3607 | 4228 | |
---|
3608 | 4229 | rcu_read_lock(); |
---|
3609 | 4230 | for_each_fib6_node_rt_rcu(&table->tb6_root) { |
---|
3610 | | - if (dev == rt->fib6_nh.nh_dev && |
---|
| 4231 | + struct fib6_nh *nh; |
---|
| 4232 | + |
---|
| 4233 | + /* RA routes do not use nexthops */ |
---|
| 4234 | + if (rt->nh) |
---|
| 4235 | + continue; |
---|
| 4236 | + |
---|
| 4237 | + nh = rt->fib6_nh; |
---|
| 4238 | + if (dev == nh->fib_nh_dev && |
---|
3611 | 4239 | ((rt->fib6_flags & (RTF_ADDRCONF | RTF_DEFAULT)) == (RTF_ADDRCONF | RTF_DEFAULT)) && |
---|
3612 | | - ipv6_addr_equal(&rt->fib6_nh.nh_gw, addr)) |
---|
| 4240 | + ipv6_addr_equal(&nh->fib_nh_gw6, addr)) |
---|
3613 | 4241 | break; |
---|
3614 | 4242 | } |
---|
3615 | 4243 | if (rt && !fib6_info_hold_safe(rt)) |
---|
.. | .. |
---|
3673 | 4301 | struct in6_rtmsg *rtmsg, |
---|
3674 | 4302 | struct fib6_config *cfg) |
---|
3675 | 4303 | { |
---|
3676 | | - memset(cfg, 0, sizeof(*cfg)); |
---|
| 4304 | + *cfg = (struct fib6_config){ |
---|
| 4305 | + .fc_table = l3mdev_fib_table_by_index(net, rtmsg->rtmsg_ifindex) ? |
---|
| 4306 | + : RT6_TABLE_MAIN, |
---|
| 4307 | + .fc_ifindex = rtmsg->rtmsg_ifindex, |
---|
| 4308 | + .fc_metric = rtmsg->rtmsg_metric ? : IP6_RT_PRIO_USER, |
---|
| 4309 | + .fc_expires = rtmsg->rtmsg_info, |
---|
| 4310 | + .fc_dst_len = rtmsg->rtmsg_dst_len, |
---|
| 4311 | + .fc_src_len = rtmsg->rtmsg_src_len, |
---|
| 4312 | + .fc_flags = rtmsg->rtmsg_flags, |
---|
| 4313 | + .fc_type = rtmsg->rtmsg_type, |
---|
3677 | 4314 | |
---|
3678 | | - cfg->fc_table = l3mdev_fib_table_by_index(net, rtmsg->rtmsg_ifindex) ? |
---|
3679 | | - : RT6_TABLE_MAIN; |
---|
3680 | | - cfg->fc_ifindex = rtmsg->rtmsg_ifindex; |
---|
3681 | | - cfg->fc_metric = rtmsg->rtmsg_metric; |
---|
3682 | | - cfg->fc_expires = rtmsg->rtmsg_info; |
---|
3683 | | - cfg->fc_dst_len = rtmsg->rtmsg_dst_len; |
---|
3684 | | - cfg->fc_src_len = rtmsg->rtmsg_src_len; |
---|
3685 | | - cfg->fc_flags = rtmsg->rtmsg_flags; |
---|
3686 | | - cfg->fc_type = rtmsg->rtmsg_type; |
---|
| 4315 | + .fc_nlinfo.nl_net = net, |
---|
3687 | 4316 | |
---|
3688 | | - cfg->fc_nlinfo.nl_net = net; |
---|
3689 | | - |
---|
3690 | | - cfg->fc_dst = rtmsg->rtmsg_dst; |
---|
3691 | | - cfg->fc_src = rtmsg->rtmsg_src; |
---|
3692 | | - cfg->fc_gateway = rtmsg->rtmsg_gateway; |
---|
| 4317 | + .fc_dst = rtmsg->rtmsg_dst, |
---|
| 4318 | + .fc_src = rtmsg->rtmsg_src, |
---|
| 4319 | + .fc_gateway = rtmsg->rtmsg_gateway, |
---|
| 4320 | + }; |
---|
3693 | 4321 | } |
---|
3694 | 4322 | |
---|
3695 | | -int ipv6_route_ioctl(struct net *net, unsigned int cmd, void __user *arg) |
---|
| 4323 | +int ipv6_route_ioctl(struct net *net, unsigned int cmd, struct in6_rtmsg *rtmsg) |
---|
3696 | 4324 | { |
---|
3697 | 4325 | struct fib6_config cfg; |
---|
3698 | | - struct in6_rtmsg rtmsg; |
---|
3699 | 4326 | int err; |
---|
3700 | 4327 | |
---|
| 4328 | + if (cmd != SIOCADDRT && cmd != SIOCDELRT) |
---|
| 4329 | + return -EINVAL; |
---|
| 4330 | + if (!ns_capable(net->user_ns, CAP_NET_ADMIN)) |
---|
| 4331 | + return -EPERM; |
---|
| 4332 | + |
---|
| 4333 | + rtmsg_to_fib6_config(net, rtmsg, &cfg); |
---|
| 4334 | + |
---|
| 4335 | + rtnl_lock(); |
---|
3701 | 4336 | switch (cmd) { |
---|
3702 | | - case SIOCADDRT: /* Add a route */ |
---|
3703 | | - case SIOCDELRT: /* Delete a route */ |
---|
3704 | | - if (!ns_capable(net->user_ns, CAP_NET_ADMIN)) |
---|
3705 | | - return -EPERM; |
---|
3706 | | - err = copy_from_user(&rtmsg, arg, |
---|
3707 | | - sizeof(struct in6_rtmsg)); |
---|
3708 | | - if (err) |
---|
3709 | | - return -EFAULT; |
---|
3710 | | - |
---|
3711 | | - rtmsg_to_fib6_config(net, &rtmsg, &cfg); |
---|
3712 | | - |
---|
3713 | | - rtnl_lock(); |
---|
3714 | | - switch (cmd) { |
---|
3715 | | - case SIOCADDRT: |
---|
3716 | | - err = ip6_route_add(&cfg, GFP_KERNEL, NULL); |
---|
3717 | | - break; |
---|
3718 | | - case SIOCDELRT: |
---|
3719 | | - err = ip6_route_del(&cfg, NULL); |
---|
3720 | | - break; |
---|
3721 | | - default: |
---|
3722 | | - err = -EINVAL; |
---|
3723 | | - } |
---|
3724 | | - rtnl_unlock(); |
---|
3725 | | - |
---|
3726 | | - return err; |
---|
| 4337 | + case SIOCADDRT: |
---|
| 4338 | + err = ip6_route_add(&cfg, GFP_KERNEL, NULL); |
---|
| 4339 | + break; |
---|
| 4340 | + case SIOCDELRT: |
---|
| 4341 | + err = ip6_route_del(&cfg, NULL); |
---|
| 4342 | + break; |
---|
3727 | 4343 | } |
---|
3728 | | - |
---|
3729 | | - return -EINVAL; |
---|
| 4344 | + rtnl_unlock(); |
---|
| 4345 | + return err; |
---|
3730 | 4346 | } |
---|
3731 | 4347 | |
---|
3732 | 4348 | /* |
---|
.. | .. |
---|
3735 | 4351 | |
---|
3736 | 4352 | static int ip6_pkt_drop(struct sk_buff *skb, u8 code, int ipstats_mib_noroutes) |
---|
3737 | 4353 | { |
---|
3738 | | - int type; |
---|
3739 | 4354 | struct dst_entry *dst = skb_dst(skb); |
---|
| 4355 | + struct net *net = dev_net(dst->dev); |
---|
| 4356 | + struct inet6_dev *idev; |
---|
| 4357 | + int type; |
---|
| 4358 | + |
---|
| 4359 | + if (netif_is_l3_master(skb->dev) || |
---|
| 4360 | + dst->dev == net->loopback_dev) |
---|
| 4361 | + idev = __in6_dev_get_safely(dev_get_by_index_rcu(net, IP6CB(skb)->iif)); |
---|
| 4362 | + else |
---|
| 4363 | + idev = ip6_dst_idev(dst); |
---|
| 4364 | + |
---|
3740 | 4365 | switch (ipstats_mib_noroutes) { |
---|
3741 | 4366 | case IPSTATS_MIB_INNOROUTES: |
---|
3742 | 4367 | type = ipv6_addr_type(&ipv6_hdr(skb)->daddr); |
---|
3743 | 4368 | if (type == IPV6_ADDR_ANY) { |
---|
3744 | | - IP6_INC_STATS(dev_net(dst->dev), |
---|
3745 | | - __in6_dev_get_safely(skb->dev), |
---|
3746 | | - IPSTATS_MIB_INADDRERRORS); |
---|
| 4369 | + IP6_INC_STATS(net, idev, IPSTATS_MIB_INADDRERRORS); |
---|
3747 | 4370 | break; |
---|
3748 | 4371 | } |
---|
3749 | | - /* FALLTHROUGH */ |
---|
| 4372 | + fallthrough; |
---|
3750 | 4373 | case IPSTATS_MIB_OUTNOROUTES: |
---|
3751 | | - IP6_INC_STATS(dev_net(dst->dev), ip6_dst_idev(dst), |
---|
3752 | | - ipstats_mib_noroutes); |
---|
| 4374 | + IP6_INC_STATS(net, idev, ipstats_mib_noroutes); |
---|
3753 | 4375 | break; |
---|
3754 | 4376 | } |
---|
| 4377 | + |
---|
| 4378 | + /* Start over by dropping the dst for l3mdev case */ |
---|
| 4379 | + if (netif_is_l3_master(skb->dev)) |
---|
| 4380 | + skb_dst_drop(skb); |
---|
| 4381 | + |
---|
3755 | 4382 | icmpv6_send(skb, ICMPV6_DEST_UNREACH, code, 0); |
---|
3756 | 4383 | kfree_skb(skb); |
---|
3757 | 4384 | return 0; |
---|
.. | .. |
---|
3788 | 4415 | const struct in6_addr *addr, |
---|
3789 | 4416 | bool anycast, gfp_t gfp_flags) |
---|
3790 | 4417 | { |
---|
3791 | | - u32 tb_id; |
---|
3792 | | - struct net_device *dev = idev->dev; |
---|
| 4418 | + struct fib6_config cfg = { |
---|
| 4419 | + .fc_table = l3mdev_fib_table(idev->dev) ? : RT6_TABLE_LOCAL, |
---|
| 4420 | + .fc_ifindex = idev->dev->ifindex, |
---|
| 4421 | + .fc_flags = RTF_UP | RTF_NONEXTHOP, |
---|
| 4422 | + .fc_dst = *addr, |
---|
| 4423 | + .fc_dst_len = 128, |
---|
| 4424 | + .fc_protocol = RTPROT_KERNEL, |
---|
| 4425 | + .fc_nlinfo.nl_net = net, |
---|
| 4426 | + .fc_ignore_dev_down = true, |
---|
| 4427 | + }; |
---|
3793 | 4428 | struct fib6_info *f6i; |
---|
3794 | 4429 | |
---|
3795 | | - f6i = fib6_info_alloc(gfp_flags); |
---|
3796 | | - if (!f6i) |
---|
3797 | | - return ERR_PTR(-ENOMEM); |
---|
3798 | | - |
---|
3799 | | - f6i->dst_nocount = true; |
---|
3800 | | - f6i->dst_host = true; |
---|
3801 | | - f6i->fib6_protocol = RTPROT_KERNEL; |
---|
3802 | | - f6i->fib6_flags = RTF_UP | RTF_NONEXTHOP; |
---|
3803 | 4430 | if (anycast) { |
---|
3804 | | - f6i->fib6_type = RTN_ANYCAST; |
---|
3805 | | - f6i->fib6_flags |= RTF_ANYCAST; |
---|
| 4431 | + cfg.fc_type = RTN_ANYCAST; |
---|
| 4432 | + cfg.fc_flags |= RTF_ANYCAST; |
---|
3806 | 4433 | } else { |
---|
3807 | | - f6i->fib6_type = RTN_LOCAL; |
---|
3808 | | - f6i->fib6_flags |= RTF_LOCAL; |
---|
| 4434 | + cfg.fc_type = RTN_LOCAL; |
---|
| 4435 | + cfg.fc_flags |= RTF_LOCAL; |
---|
3809 | 4436 | } |
---|
3810 | 4437 | |
---|
3811 | | - f6i->fib6_nh.nh_gw = *addr; |
---|
3812 | | - dev_hold(dev); |
---|
3813 | | - f6i->fib6_nh.nh_dev = dev; |
---|
3814 | | - f6i->fib6_dst.addr = *addr; |
---|
3815 | | - f6i->fib6_dst.plen = 128; |
---|
3816 | | - tb_id = l3mdev_fib_table(idev->dev) ? : RT6_TABLE_LOCAL; |
---|
3817 | | - f6i->fib6_table = fib6_get_table(net, tb_id); |
---|
| 4438 | + f6i = ip6_route_info_create(&cfg, gfp_flags, NULL); |
---|
| 4439 | + if (!IS_ERR(f6i)) { |
---|
| 4440 | + f6i->dst_nocount = true; |
---|
| 4441 | + |
---|
| 4442 | + if (!anycast && |
---|
| 4443 | + (net->ipv6.devconf_all->disable_policy || |
---|
| 4444 | + idev->cnf.disable_policy)) |
---|
| 4445 | + f6i->dst_nopolicy = true; |
---|
| 4446 | + } |
---|
3818 | 4447 | |
---|
3819 | 4448 | return f6i; |
---|
3820 | 4449 | } |
---|
.. | .. |
---|
3832 | 4461 | struct net *net = ((struct arg_dev_net_ip *)arg)->net; |
---|
3833 | 4462 | struct in6_addr *addr = ((struct arg_dev_net_ip *)arg)->addr; |
---|
3834 | 4463 | |
---|
3835 | | - if (((void *)rt->fib6_nh.nh_dev == dev || !dev) && |
---|
| 4464 | + if (!rt->nh && |
---|
| 4465 | + ((void *)rt->fib6_nh->fib_nh_dev == dev || !dev) && |
---|
3836 | 4466 | rt != net->ipv6.fib6_null_entry && |
---|
3837 | 4467 | ipv6_addr_equal(addr, &rt->fib6_prefsrc.addr)) { |
---|
3838 | 4468 | spin_lock_bh(&rt6_exception_lock); |
---|
3839 | 4469 | /* remove prefsrc entry */ |
---|
3840 | 4470 | rt->fib6_prefsrc.plen = 0; |
---|
3841 | | - /* need to update cache as well */ |
---|
3842 | | - rt6_exceptions_remove_prefsrc(rt); |
---|
3843 | 4471 | spin_unlock_bh(&rt6_exception_lock); |
---|
3844 | 4472 | } |
---|
3845 | 4473 | return 0; |
---|
.. | .. |
---|
3856 | 4484 | fib6_clean_all(net, fib6_remove_prefsrc, &adni); |
---|
3857 | 4485 | } |
---|
3858 | 4486 | |
---|
3859 | | -#define RTF_RA_ROUTER (RTF_ADDRCONF | RTF_DEFAULT | RTF_GATEWAY) |
---|
| 4487 | +#define RTF_RA_ROUTER (RTF_ADDRCONF | RTF_DEFAULT) |
---|
3860 | 4488 | |
---|
3861 | 4489 | /* Remove routers and update dst entries when gateway turn into host. */ |
---|
3862 | 4490 | static int fib6_clean_tohost(struct fib6_info *rt, void *arg) |
---|
3863 | 4491 | { |
---|
3864 | 4492 | struct in6_addr *gateway = (struct in6_addr *)arg; |
---|
| 4493 | + struct fib6_nh *nh; |
---|
3865 | 4494 | |
---|
| 4495 | + /* RA routes do not use nexthops */ |
---|
| 4496 | + if (rt->nh) |
---|
| 4497 | + return 0; |
---|
| 4498 | + |
---|
| 4499 | + nh = rt->fib6_nh; |
---|
3866 | 4500 | if (((rt->fib6_flags & RTF_RA_ROUTER) == RTF_RA_ROUTER) && |
---|
3867 | | - ipv6_addr_equal(gateway, &rt->fib6_nh.nh_gw)) { |
---|
| 4501 | + nh->fib_nh_gw_family && ipv6_addr_equal(gateway, &nh->fib_nh_gw6)) |
---|
3868 | 4502 | return -1; |
---|
3869 | | - } |
---|
3870 | 4503 | |
---|
3871 | 4504 | /* Further clean up cached routes in exception table. |
---|
3872 | 4505 | * This is needed because cached route may have a different |
---|
3873 | 4506 | * gateway than its 'parent' in the case of an ip redirect. |
---|
3874 | 4507 | */ |
---|
3875 | | - rt6_exceptions_clean_tohost(rt, gateway); |
---|
| 4508 | + fib6_nh_exceptions_clean_tohost(nh, gateway); |
---|
3876 | 4509 | |
---|
3877 | 4510 | return 0; |
---|
3878 | 4511 | } |
---|
.. | .. |
---|
3885 | 4518 | struct arg_netdev_event { |
---|
3886 | 4519 | const struct net_device *dev; |
---|
3887 | 4520 | union { |
---|
3888 | | - unsigned int nh_flags; |
---|
| 4521 | + unsigned char nh_flags; |
---|
3889 | 4522 | unsigned long event; |
---|
3890 | 4523 | }; |
---|
3891 | 4524 | }; |
---|
.. | .. |
---|
3910 | 4543 | return NULL; |
---|
3911 | 4544 | } |
---|
3912 | 4545 | |
---|
| 4546 | +/* only called for fib entries with builtin fib6_nh */ |
---|
3913 | 4547 | static bool rt6_is_dead(const struct fib6_info *rt) |
---|
3914 | 4548 | { |
---|
3915 | | - if (rt->fib6_nh.nh_flags & RTNH_F_DEAD || |
---|
3916 | | - (rt->fib6_nh.nh_flags & RTNH_F_LINKDOWN && |
---|
3917 | | - fib6_ignore_linkdown(rt))) |
---|
| 4549 | + if (rt->fib6_nh->fib_nh_flags & RTNH_F_DEAD || |
---|
| 4550 | + (rt->fib6_nh->fib_nh_flags & RTNH_F_LINKDOWN && |
---|
| 4551 | + ip6_ignore_linkdown(rt->fib6_nh->fib_nh_dev))) |
---|
3918 | 4552 | return true; |
---|
3919 | 4553 | |
---|
3920 | 4554 | return false; |
---|
.. | .. |
---|
3926 | 4560 | int total = 0; |
---|
3927 | 4561 | |
---|
3928 | 4562 | if (!rt6_is_dead(rt)) |
---|
3929 | | - total += rt->fib6_nh.nh_weight; |
---|
| 4563 | + total += rt->fib6_nh->fib_nh_weight; |
---|
3930 | 4564 | |
---|
3931 | 4565 | list_for_each_entry(iter, &rt->fib6_siblings, fib6_siblings) { |
---|
3932 | 4566 | if (!rt6_is_dead(iter)) |
---|
3933 | | - total += iter->fib6_nh.nh_weight; |
---|
| 4567 | + total += iter->fib6_nh->fib_nh_weight; |
---|
3934 | 4568 | } |
---|
3935 | 4569 | |
---|
3936 | 4570 | return total; |
---|
.. | .. |
---|
3941 | 4575 | int upper_bound = -1; |
---|
3942 | 4576 | |
---|
3943 | 4577 | if (!rt6_is_dead(rt)) { |
---|
3944 | | - *weight += rt->fib6_nh.nh_weight; |
---|
| 4578 | + *weight += rt->fib6_nh->fib_nh_weight; |
---|
3945 | 4579 | upper_bound = DIV_ROUND_CLOSEST_ULL((u64) (*weight) << 31, |
---|
3946 | 4580 | total) - 1; |
---|
3947 | 4581 | } |
---|
3948 | | - atomic_set(&rt->fib6_nh.nh_upper_bound, upper_bound); |
---|
| 4582 | + atomic_set(&rt->fib6_nh->fib_nh_upper_bound, upper_bound); |
---|
3949 | 4583 | } |
---|
3950 | 4584 | |
---|
3951 | 4585 | static void rt6_multipath_upper_bound_set(struct fib6_info *rt, int total) |
---|
.. | .. |
---|
3988 | 4622 | const struct arg_netdev_event *arg = p_arg; |
---|
3989 | 4623 | struct net *net = dev_net(arg->dev); |
---|
3990 | 4624 | |
---|
3991 | | - if (rt != net->ipv6.fib6_null_entry && rt->fib6_nh.nh_dev == arg->dev) { |
---|
3992 | | - rt->fib6_nh.nh_flags &= ~arg->nh_flags; |
---|
| 4625 | + if (rt != net->ipv6.fib6_null_entry && !rt->nh && |
---|
| 4626 | + rt->fib6_nh->fib_nh_dev == arg->dev) { |
---|
| 4627 | + rt->fib6_nh->fib_nh_flags &= ~arg->nh_flags; |
---|
3993 | 4628 | fib6_update_sernum_upto_root(net, rt); |
---|
3994 | 4629 | rt6_multipath_rebalance(rt); |
---|
3995 | 4630 | } |
---|
.. | .. |
---|
3997 | 4632 | return 0; |
---|
3998 | 4633 | } |
---|
3999 | 4634 | |
---|
4000 | | -void rt6_sync_up(struct net_device *dev, unsigned int nh_flags) |
---|
| 4635 | +void rt6_sync_up(struct net_device *dev, unsigned char nh_flags) |
---|
4001 | 4636 | { |
---|
4002 | 4637 | struct arg_netdev_event arg = { |
---|
4003 | 4638 | .dev = dev, |
---|
.. | .. |
---|
4012 | 4647 | fib6_clean_all(dev_net(dev), fib6_ifup, &arg); |
---|
4013 | 4648 | } |
---|
4014 | 4649 | |
---|
| 4650 | +/* only called for fib entries with inline fib6_nh */ |
---|
4015 | 4651 | static bool rt6_multipath_uses_dev(const struct fib6_info *rt, |
---|
4016 | 4652 | const struct net_device *dev) |
---|
4017 | 4653 | { |
---|
4018 | 4654 | struct fib6_info *iter; |
---|
4019 | 4655 | |
---|
4020 | | - if (rt->fib6_nh.nh_dev == dev) |
---|
| 4656 | + if (rt->fib6_nh->fib_nh_dev == dev) |
---|
4021 | 4657 | return true; |
---|
4022 | 4658 | list_for_each_entry(iter, &rt->fib6_siblings, fib6_siblings) |
---|
4023 | | - if (iter->fib6_nh.nh_dev == dev) |
---|
| 4659 | + if (iter->fib6_nh->fib_nh_dev == dev) |
---|
4024 | 4660 | return true; |
---|
4025 | 4661 | |
---|
4026 | 4662 | return false; |
---|
.. | .. |
---|
4041 | 4677 | struct fib6_info *iter; |
---|
4042 | 4678 | unsigned int dead = 0; |
---|
4043 | 4679 | |
---|
4044 | | - if (rt->fib6_nh.nh_dev == down_dev || |
---|
4045 | | - rt->fib6_nh.nh_flags & RTNH_F_DEAD) |
---|
| 4680 | + if (rt->fib6_nh->fib_nh_dev == down_dev || |
---|
| 4681 | + rt->fib6_nh->fib_nh_flags & RTNH_F_DEAD) |
---|
4046 | 4682 | dead++; |
---|
4047 | 4683 | list_for_each_entry(iter, &rt->fib6_siblings, fib6_siblings) |
---|
4048 | | - if (iter->fib6_nh.nh_dev == down_dev || |
---|
4049 | | - iter->fib6_nh.nh_flags & RTNH_F_DEAD) |
---|
| 4684 | + if (iter->fib6_nh->fib_nh_dev == down_dev || |
---|
| 4685 | + iter->fib6_nh->fib_nh_flags & RTNH_F_DEAD) |
---|
4050 | 4686 | dead++; |
---|
4051 | 4687 | |
---|
4052 | 4688 | return dead; |
---|
.. | .. |
---|
4054 | 4690 | |
---|
4055 | 4691 | static void rt6_multipath_nh_flags_set(struct fib6_info *rt, |
---|
4056 | 4692 | const struct net_device *dev, |
---|
4057 | | - unsigned int nh_flags) |
---|
| 4693 | + unsigned char nh_flags) |
---|
4058 | 4694 | { |
---|
4059 | 4695 | struct fib6_info *iter; |
---|
4060 | 4696 | |
---|
4061 | | - if (rt->fib6_nh.nh_dev == dev) |
---|
4062 | | - rt->fib6_nh.nh_flags |= nh_flags; |
---|
| 4697 | + if (rt->fib6_nh->fib_nh_dev == dev) |
---|
| 4698 | + rt->fib6_nh->fib_nh_flags |= nh_flags; |
---|
4063 | 4699 | list_for_each_entry(iter, &rt->fib6_siblings, fib6_siblings) |
---|
4064 | | - if (iter->fib6_nh.nh_dev == dev) |
---|
4065 | | - iter->fib6_nh.nh_flags |= nh_flags; |
---|
| 4700 | + if (iter->fib6_nh->fib_nh_dev == dev) |
---|
| 4701 | + iter->fib6_nh->fib_nh_flags |= nh_flags; |
---|
4066 | 4702 | } |
---|
4067 | 4703 | |
---|
4068 | 4704 | /* called with write lock held for table with rt */ |
---|
.. | .. |
---|
4072 | 4708 | const struct net_device *dev = arg->dev; |
---|
4073 | 4709 | struct net *net = dev_net(dev); |
---|
4074 | 4710 | |
---|
4075 | | - if (rt == net->ipv6.fib6_null_entry) |
---|
| 4711 | + if (rt == net->ipv6.fib6_null_entry || rt->nh) |
---|
4076 | 4712 | return 0; |
---|
4077 | 4713 | |
---|
4078 | 4714 | switch (arg->event) { |
---|
4079 | 4715 | case NETDEV_UNREGISTER: |
---|
4080 | | - return rt->fib6_nh.nh_dev == dev ? -1 : 0; |
---|
| 4716 | + return rt->fib6_nh->fib_nh_dev == dev ? -1 : 0; |
---|
4081 | 4717 | case NETDEV_DOWN: |
---|
4082 | 4718 | if (rt->should_flush) |
---|
4083 | 4719 | return -1; |
---|
4084 | 4720 | if (!rt->fib6_nsiblings) |
---|
4085 | | - return rt->fib6_nh.nh_dev == dev ? -1 : 0; |
---|
| 4721 | + return rt->fib6_nh->fib_nh_dev == dev ? -1 : 0; |
---|
4086 | 4722 | if (rt6_multipath_uses_dev(rt, dev)) { |
---|
4087 | 4723 | unsigned int count; |
---|
4088 | 4724 | |
---|
.. | .. |
---|
4098 | 4734 | } |
---|
4099 | 4735 | return -2; |
---|
4100 | 4736 | case NETDEV_CHANGE: |
---|
4101 | | - if (rt->fib6_nh.nh_dev != dev || |
---|
| 4737 | + if (rt->fib6_nh->fib_nh_dev != dev || |
---|
4102 | 4738 | rt->fib6_flags & (RTF_LOCAL | RTF_ANYCAST)) |
---|
4103 | 4739 | break; |
---|
4104 | | - rt->fib6_nh.nh_flags |= RTNH_F_LINKDOWN; |
---|
| 4740 | + rt->fib6_nh->fib_nh_flags |= RTNH_F_LINKDOWN; |
---|
4105 | 4741 | rt6_multipath_rebalance(rt); |
---|
4106 | 4742 | break; |
---|
4107 | 4743 | } |
---|
.. | .. |
---|
4117 | 4753 | .event = event, |
---|
4118 | 4754 | }, |
---|
4119 | 4755 | }; |
---|
| 4756 | + struct net *net = dev_net(dev); |
---|
4120 | 4757 | |
---|
4121 | | - fib6_clean_all(dev_net(dev), fib6_ifdown, &arg); |
---|
| 4758 | + if (net->ipv6.sysctl.skip_notify_on_dev_down) |
---|
| 4759 | + fib6_clean_all_skip_notify(net, fib6_ifdown, &arg); |
---|
| 4760 | + else |
---|
| 4761 | + fib6_clean_all(net, fib6_ifdown, &arg); |
---|
4122 | 4762 | } |
---|
4123 | 4763 | |
---|
4124 | 4764 | void rt6_disable_ip(struct net_device *dev, unsigned long event) |
---|
.. | .. |
---|
4131 | 4771 | struct rt6_mtu_change_arg { |
---|
4132 | 4772 | struct net_device *dev; |
---|
4133 | 4773 | unsigned int mtu; |
---|
| 4774 | + struct fib6_info *f6i; |
---|
4134 | 4775 | }; |
---|
4135 | 4776 | |
---|
4136 | | -static int rt6_mtu_change_route(struct fib6_info *rt, void *p_arg) |
---|
| 4777 | +static int fib6_nh_mtu_change(struct fib6_nh *nh, void *_arg) |
---|
| 4778 | +{ |
---|
| 4779 | + struct rt6_mtu_change_arg *arg = (struct rt6_mtu_change_arg *)_arg; |
---|
| 4780 | + struct fib6_info *f6i = arg->f6i; |
---|
| 4781 | + |
---|
| 4782 | + /* For administrative MTU increase, there is no way to discover |
---|
| 4783 | + * IPv6 PMTU increase, so PMTU increase should be updated here. |
---|
| 4784 | + * Since RFC 1981 doesn't include administrative MTU increase |
---|
| 4785 | + * update PMTU increase is a MUST. (i.e. jumbo frame) |
---|
| 4786 | + */ |
---|
| 4787 | + if (nh->fib_nh_dev == arg->dev) { |
---|
| 4788 | + struct inet6_dev *idev = __in6_dev_get(arg->dev); |
---|
| 4789 | + u32 mtu = f6i->fib6_pmtu; |
---|
| 4790 | + |
---|
| 4791 | + if (mtu >= arg->mtu || |
---|
| 4792 | + (mtu < arg->mtu && mtu == idev->cnf.mtu6)) |
---|
| 4793 | + fib6_metric_set(f6i, RTAX_MTU, arg->mtu); |
---|
| 4794 | + |
---|
| 4795 | + spin_lock_bh(&rt6_exception_lock); |
---|
| 4796 | + rt6_exceptions_update_pmtu(idev, nh, arg->mtu); |
---|
| 4797 | + spin_unlock_bh(&rt6_exception_lock); |
---|
| 4798 | + } |
---|
| 4799 | + |
---|
| 4800 | + return 0; |
---|
| 4801 | +} |
---|
| 4802 | + |
---|
| 4803 | +static int rt6_mtu_change_route(struct fib6_info *f6i, void *p_arg) |
---|
4137 | 4804 | { |
---|
4138 | 4805 | struct rt6_mtu_change_arg *arg = (struct rt6_mtu_change_arg *) p_arg; |
---|
4139 | 4806 | struct inet6_dev *idev; |
---|
.. | .. |
---|
4148 | 4815 | if (!idev) |
---|
4149 | 4816 | return 0; |
---|
4150 | 4817 | |
---|
4151 | | - /* For administrative MTU increase, there is no way to discover |
---|
4152 | | - IPv6 PMTU increase, so PMTU increase should be updated here. |
---|
4153 | | - Since RFC 1981 doesn't include administrative MTU increase |
---|
4154 | | - update PMTU increase is a MUST. (i.e. jumbo frame) |
---|
4155 | | - */ |
---|
4156 | | - if (rt->fib6_nh.nh_dev == arg->dev && |
---|
4157 | | - !fib6_metric_locked(rt, RTAX_MTU)) { |
---|
4158 | | - u32 mtu = rt->fib6_pmtu; |
---|
| 4818 | + if (fib6_metric_locked(f6i, RTAX_MTU)) |
---|
| 4819 | + return 0; |
---|
4159 | 4820 | |
---|
4160 | | - if (mtu >= arg->mtu || |
---|
4161 | | - (mtu < arg->mtu && mtu == idev->cnf.mtu6)) |
---|
4162 | | - fib6_metric_set(rt, RTAX_MTU, arg->mtu); |
---|
4163 | | - |
---|
4164 | | - spin_lock_bh(&rt6_exception_lock); |
---|
4165 | | - rt6_exceptions_update_pmtu(idev, rt, arg->mtu); |
---|
4166 | | - spin_unlock_bh(&rt6_exception_lock); |
---|
| 4821 | + arg->f6i = f6i; |
---|
| 4822 | + if (f6i->nh) { |
---|
| 4823 | + /* fib6_nh_mtu_change only returns 0, so this is safe */ |
---|
| 4824 | + return nexthop_for_each_fib6_nh(f6i->nh, fib6_nh_mtu_change, |
---|
| 4825 | + arg); |
---|
4167 | 4826 | } |
---|
4168 | | - return 0; |
---|
| 4827 | + |
---|
| 4828 | + return fib6_nh_mtu_change(f6i->fib6_nh, arg); |
---|
4169 | 4829 | } |
---|
4170 | 4830 | |
---|
4171 | 4831 | void rt6_mtu_change(struct net_device *dev, unsigned int mtu) |
---|
.. | .. |
---|
4179 | 4839 | } |
---|
4180 | 4840 | |
---|
4181 | 4841 | static const struct nla_policy rtm_ipv6_policy[RTA_MAX+1] = { |
---|
| 4842 | + [RTA_UNSPEC] = { .strict_start_type = RTA_DPORT + 1 }, |
---|
4182 | 4843 | [RTA_GATEWAY] = { .len = sizeof(struct in6_addr) }, |
---|
4183 | 4844 | [RTA_PREFSRC] = { .len = sizeof(struct in6_addr) }, |
---|
4184 | 4845 | [RTA_OIF] = { .type = NLA_U32 }, |
---|
.. | .. |
---|
4196 | 4857 | [RTA_IP_PROTO] = { .type = NLA_U8 }, |
---|
4197 | 4858 | [RTA_SPORT] = { .type = NLA_U16 }, |
---|
4198 | 4859 | [RTA_DPORT] = { .type = NLA_U16 }, |
---|
| 4860 | + [RTA_NH_ID] = { .type = NLA_U32 }, |
---|
4199 | 4861 | }; |
---|
4200 | 4862 | |
---|
4201 | 4863 | static int rtm_to_fib6_config(struct sk_buff *skb, struct nlmsghdr *nlh, |
---|
.. | .. |
---|
4207 | 4869 | unsigned int pref; |
---|
4208 | 4870 | int err; |
---|
4209 | 4871 | |
---|
4210 | | - err = nlmsg_parse(nlh, sizeof(*rtm), tb, RTA_MAX, rtm_ipv6_policy, |
---|
4211 | | - NULL); |
---|
| 4872 | + err = nlmsg_parse_deprecated(nlh, sizeof(*rtm), tb, RTA_MAX, |
---|
| 4873 | + rtm_ipv6_policy, extack); |
---|
4212 | 4874 | if (err < 0) |
---|
4213 | 4875 | goto errout; |
---|
4214 | 4876 | |
---|
4215 | 4877 | err = -EINVAL; |
---|
4216 | 4878 | rtm = nlmsg_data(nlh); |
---|
4217 | | - memset(cfg, 0, sizeof(*cfg)); |
---|
4218 | 4879 | |
---|
4219 | | - cfg->fc_table = rtm->rtm_table; |
---|
4220 | | - cfg->fc_dst_len = rtm->rtm_dst_len; |
---|
4221 | | - cfg->fc_src_len = rtm->rtm_src_len; |
---|
4222 | | - cfg->fc_flags = RTF_UP; |
---|
4223 | | - cfg->fc_protocol = rtm->rtm_protocol; |
---|
4224 | | - cfg->fc_type = rtm->rtm_type; |
---|
| 4880 | + *cfg = (struct fib6_config){ |
---|
| 4881 | + .fc_table = rtm->rtm_table, |
---|
| 4882 | + .fc_dst_len = rtm->rtm_dst_len, |
---|
| 4883 | + .fc_src_len = rtm->rtm_src_len, |
---|
| 4884 | + .fc_flags = RTF_UP, |
---|
| 4885 | + .fc_protocol = rtm->rtm_protocol, |
---|
| 4886 | + .fc_type = rtm->rtm_type, |
---|
| 4887 | + |
---|
| 4888 | + .fc_nlinfo.portid = NETLINK_CB(skb).portid, |
---|
| 4889 | + .fc_nlinfo.nlh = nlh, |
---|
| 4890 | + .fc_nlinfo.nl_net = sock_net(skb->sk), |
---|
| 4891 | + }; |
---|
4225 | 4892 | |
---|
4226 | 4893 | if (rtm->rtm_type == RTN_UNREACHABLE || |
---|
4227 | 4894 | rtm->rtm_type == RTN_BLACKHOLE || |
---|
.. | .. |
---|
4237 | 4904 | |
---|
4238 | 4905 | cfg->fc_flags |= (rtm->rtm_flags & RTNH_F_ONLINK); |
---|
4239 | 4906 | |
---|
4240 | | - cfg->fc_nlinfo.portid = NETLINK_CB(skb).portid; |
---|
4241 | | - cfg->fc_nlinfo.nlh = nlh; |
---|
4242 | | - cfg->fc_nlinfo.nl_net = sock_net(skb->sk); |
---|
| 4907 | + if (tb[RTA_NH_ID]) { |
---|
| 4908 | + if (tb[RTA_GATEWAY] || tb[RTA_OIF] || |
---|
| 4909 | + tb[RTA_MULTIPATH] || tb[RTA_ENCAP]) { |
---|
| 4910 | + NL_SET_ERR_MSG(extack, |
---|
| 4911 | + "Nexthop specification and nexthop id are mutually exclusive"); |
---|
| 4912 | + goto errout; |
---|
| 4913 | + } |
---|
| 4914 | + cfg->fc_nh_id = nla_get_u32(tb[RTA_NH_ID]); |
---|
| 4915 | + } |
---|
4243 | 4916 | |
---|
4244 | 4917 | if (tb[RTA_GATEWAY]) { |
---|
4245 | 4918 | cfg->fc_gateway = nla_get_in6_addr(tb[RTA_GATEWAY]); |
---|
.. | .. |
---|
4334 | 5007 | struct list_head next; |
---|
4335 | 5008 | }; |
---|
4336 | 5009 | |
---|
4337 | | -static void ip6_print_replace_route_err(struct list_head *rt6_nh_list) |
---|
4338 | | -{ |
---|
4339 | | - struct rt6_nh *nh; |
---|
4340 | | - |
---|
4341 | | - list_for_each_entry(nh, rt6_nh_list, next) { |
---|
4342 | | - pr_warn("IPV6: multipath route replace failed (check consistency of installed routes): %pI6c nexthop %pI6c ifi %d\n", |
---|
4343 | | - &nh->r_cfg.fc_dst, &nh->r_cfg.fc_gateway, |
---|
4344 | | - nh->r_cfg.fc_ifindex); |
---|
4345 | | - } |
---|
4346 | | -} |
---|
4347 | | - |
---|
4348 | 5010 | static int ip6_route_info_append(struct net *net, |
---|
4349 | 5011 | struct list_head *rt6_nh_list, |
---|
4350 | 5012 | struct fib6_info *rt, |
---|
.. | .. |
---|
4388 | 5050 | |
---|
4389 | 5051 | if (rt) |
---|
4390 | 5052 | inet6_rt_notify(RTM_NEWROUTE, rt, info, nlflags); |
---|
| 5053 | +} |
---|
| 5054 | + |
---|
| 5055 | +static bool ip6_route_mpath_should_notify(const struct fib6_info *rt) |
---|
| 5056 | +{ |
---|
| 5057 | + bool rt_can_ecmp = rt6_qualify_for_ecmp(rt); |
---|
| 5058 | + bool should_notify = false; |
---|
| 5059 | + struct fib6_info *leaf; |
---|
| 5060 | + struct fib6_node *fn; |
---|
| 5061 | + |
---|
| 5062 | + rcu_read_lock(); |
---|
| 5063 | + fn = rcu_dereference(rt->fib6_node); |
---|
| 5064 | + if (!fn) |
---|
| 5065 | + goto out; |
---|
| 5066 | + |
---|
| 5067 | + leaf = rcu_dereference(fn->leaf); |
---|
| 5068 | + if (!leaf) |
---|
| 5069 | + goto out; |
---|
| 5070 | + |
---|
| 5071 | + if (rt == leaf || |
---|
| 5072 | + (rt_can_ecmp && rt->fib6_metric == leaf->fib6_metric && |
---|
| 5073 | + rt6_qualify_for_ecmp(leaf))) |
---|
| 5074 | + should_notify = true; |
---|
| 5075 | +out: |
---|
| 5076 | + rcu_read_unlock(); |
---|
| 5077 | + |
---|
| 5078 | + return should_notify; |
---|
4391 | 5079 | } |
---|
4392 | 5080 | |
---|
4393 | 5081 | static int fib6_gw_from_attr(struct in6_addr *gw, struct nlattr *nla, |
---|
.. | .. |
---|
4451 | 5139 | r_cfg.fc_flags |= RTF_GATEWAY; |
---|
4452 | 5140 | } |
---|
4453 | 5141 | r_cfg.fc_encap = nla_find(attrs, attrlen, RTA_ENCAP); |
---|
| 5142 | + |
---|
| 5143 | + /* RTA_ENCAP_TYPE length checked in |
---|
| 5144 | + * lwtunnel_valid_encap_type_attr |
---|
| 5145 | + */ |
---|
4454 | 5146 | nla = nla_find(attrs, attrlen, RTA_ENCAP_TYPE); |
---|
4455 | 5147 | if (nla) |
---|
4456 | 5148 | r_cfg.fc_encap_type = nla_get_u16(nla); |
---|
.. | .. |
---|
4471 | 5163 | goto cleanup; |
---|
4472 | 5164 | } |
---|
4473 | 5165 | |
---|
4474 | | - rt->fib6_nh.nh_weight = rtnh->rtnh_hops + 1; |
---|
| 5166 | + rt->fib6_nh->fib_nh_weight = rtnh->rtnh_hops + 1; |
---|
4475 | 5167 | |
---|
4476 | 5168 | err = ip6_route_info_append(info->nl_net, &rt6_nh_list, |
---|
4477 | 5169 | rt, &r_cfg); |
---|
.. | .. |
---|
4483 | 5175 | rtnh = rtnh_next(rtnh, &remaining); |
---|
4484 | 5176 | } |
---|
4485 | 5177 | |
---|
| 5178 | + if (list_empty(&rt6_nh_list)) { |
---|
| 5179 | + NL_SET_ERR_MSG(extack, |
---|
| 5180 | + "Invalid nexthop configuration - no valid nexthops"); |
---|
| 5181 | + return -EINVAL; |
---|
| 5182 | + } |
---|
| 5183 | + |
---|
4486 | 5184 | /* for add and replace send one notification with all nexthops. |
---|
4487 | 5185 | * Skip the notification in fib6_add_rt2node and send one with |
---|
4488 | 5186 | * the full route when done |
---|
4489 | 5187 | */ |
---|
4490 | 5188 | info->skip_notify = 1; |
---|
| 5189 | + |
---|
| 5190 | + /* For add and replace, send one notification with all nexthops. For |
---|
| 5191 | + * append, send one notification with all appended nexthops. |
---|
| 5192 | + */ |
---|
| 5193 | + info->skip_notify_kernel = 1; |
---|
4491 | 5194 | |
---|
4492 | 5195 | err_nh = NULL; |
---|
4493 | 5196 | list_for_each_entry(nh, &rt6_nh_list, next) { |
---|
.. | .. |
---|
4507 | 5210 | nh->fib6_info = NULL; |
---|
4508 | 5211 | if (err) { |
---|
4509 | 5212 | if (replace && nhn) |
---|
4510 | | - ip6_print_replace_route_err(&rt6_nh_list); |
---|
| 5213 | + NL_SET_ERR_MSG_MOD(extack, |
---|
| 5214 | + "multipath route replace failed (check consistency of installed routes)"); |
---|
4511 | 5215 | err_nh = nh; |
---|
4512 | 5216 | goto add_errout; |
---|
4513 | 5217 | } |
---|
.. | .. |
---|
4525 | 5229 | cfg->fc_nlinfo.nlh->nlmsg_flags |= NLM_F_CREATE; |
---|
4526 | 5230 | } |
---|
4527 | 5231 | nhn++; |
---|
| 5232 | + } |
---|
| 5233 | + |
---|
| 5234 | + /* An in-kernel notification should only be sent in case the new |
---|
| 5235 | + * multipath route is added as the first route in the node, or if |
---|
| 5236 | + * it was appended to it. We pass 'rt_notif' since it is the first |
---|
| 5237 | + * sibling and might allow us to skip some checks in the replace case. |
---|
| 5238 | + */ |
---|
| 5239 | + if (ip6_route_mpath_should_notify(rt_notif)) { |
---|
| 5240 | + enum fib_event_type fib_event; |
---|
| 5241 | + |
---|
| 5242 | + if (rt_notif->fib6_nsiblings != nhn - 1) |
---|
| 5243 | + fib_event = FIB_EVENT_ENTRY_APPEND; |
---|
| 5244 | + else |
---|
| 5245 | + fib_event = FIB_EVENT_ENTRY_REPLACE; |
---|
| 5246 | + |
---|
| 5247 | + err = call_fib6_multipath_entry_notifiers(info->nl_net, |
---|
| 5248 | + fib_event, rt_notif, |
---|
| 5249 | + nhn - 1, extack); |
---|
| 5250 | + if (err) { |
---|
| 5251 | + /* Delete all the siblings that were just added */ |
---|
| 5252 | + err_nh = NULL; |
---|
| 5253 | + goto add_errout; |
---|
| 5254 | + } |
---|
4528 | 5255 | } |
---|
4529 | 5256 | |
---|
4530 | 5257 | /* success ... tell user about new route */ |
---|
.. | .. |
---|
4562 | 5289 | { |
---|
4563 | 5290 | struct fib6_config r_cfg; |
---|
4564 | 5291 | struct rtnexthop *rtnh; |
---|
| 5292 | + int last_err = 0; |
---|
4565 | 5293 | int remaining; |
---|
4566 | 5294 | int attrlen; |
---|
4567 | | - int err = 1, last_err = 0; |
---|
| 5295 | + int err; |
---|
4568 | 5296 | |
---|
4569 | 5297 | remaining = cfg->fc_mp_len; |
---|
4570 | 5298 | rtnh = (struct rtnexthop *)cfg->fc_mp; |
---|
.. | .. |
---|
4612 | 5340 | if (err < 0) |
---|
4613 | 5341 | return err; |
---|
4614 | 5342 | |
---|
| 5343 | + if (cfg.fc_nh_id && |
---|
| 5344 | + !nexthop_find_by_id(sock_net(skb->sk), cfg.fc_nh_id)) { |
---|
| 5345 | + NL_SET_ERR_MSG(extack, "Nexthop id does not exist"); |
---|
| 5346 | + return -EINVAL; |
---|
| 5347 | + } |
---|
| 5348 | + |
---|
4615 | 5349 | if (cfg.fc_mp) |
---|
4616 | 5350 | return ip6_route_multipath_del(&cfg, extack); |
---|
4617 | 5351 | else { |
---|
.. | .. |
---|
4630 | 5364 | if (err < 0) |
---|
4631 | 5365 | return err; |
---|
4632 | 5366 | |
---|
| 5367 | + if (cfg.fc_metric == 0) |
---|
| 5368 | + cfg.fc_metric = IP6_RT_PRIO_USER; |
---|
| 5369 | + |
---|
4633 | 5370 | if (cfg.fc_mp) |
---|
4634 | 5371 | return ip6_route_multipath_add(&cfg, extack); |
---|
4635 | 5372 | else |
---|
4636 | 5373 | return ip6_route_add(&cfg, GFP_KERNEL, extack); |
---|
4637 | 5374 | } |
---|
4638 | 5375 | |
---|
4639 | | -static size_t rt6_nlmsg_size(struct fib6_info *rt) |
---|
| 5376 | +/* add the overhead of this fib6_nh to nexthop_len */ |
---|
| 5377 | +static int rt6_nh_nlmsg_size(struct fib6_nh *nh, void *arg) |
---|
4640 | 5378 | { |
---|
4641 | | - int nexthop_len = 0; |
---|
| 5379 | + int *nexthop_len = arg; |
---|
4642 | 5380 | |
---|
4643 | | - if (rt->fib6_nsiblings) { |
---|
4644 | | - nexthop_len = nla_total_size(0) /* RTA_MULTIPATH */ |
---|
4645 | | - + NLA_ALIGN(sizeof(struct rtnexthop)) |
---|
4646 | | - + nla_total_size(16) /* RTA_GATEWAY */ |
---|
4647 | | - + lwtunnel_get_encap_size(rt->fib6_nh.nh_lwtstate); |
---|
| 5381 | + *nexthop_len += nla_total_size(0) /* RTA_MULTIPATH */ |
---|
| 5382 | + + NLA_ALIGN(sizeof(struct rtnexthop)) |
---|
| 5383 | + + nla_total_size(16); /* RTA_GATEWAY */ |
---|
4648 | 5384 | |
---|
4649 | | - nexthop_len *= rt->fib6_nsiblings; |
---|
| 5385 | + if (nh->fib_nh_lws) { |
---|
| 5386 | + /* RTA_ENCAP_TYPE */ |
---|
| 5387 | + *nexthop_len += lwtunnel_get_encap_size(nh->fib_nh_lws); |
---|
| 5388 | + /* RTA_ENCAP */ |
---|
| 5389 | + *nexthop_len += nla_total_size(2); |
---|
| 5390 | + } |
---|
| 5391 | + |
---|
| 5392 | + return 0; |
---|
| 5393 | +} |
---|
| 5394 | + |
---|
| 5395 | +static size_t rt6_nlmsg_size(struct fib6_info *f6i) |
---|
| 5396 | +{ |
---|
| 5397 | + int nexthop_len; |
---|
| 5398 | + |
---|
| 5399 | + if (f6i->nh) { |
---|
| 5400 | + nexthop_len = nla_total_size(4); /* RTA_NH_ID */ |
---|
| 5401 | + nexthop_for_each_fib6_nh(f6i->nh, rt6_nh_nlmsg_size, |
---|
| 5402 | + &nexthop_len); |
---|
| 5403 | + } else { |
---|
| 5404 | + struct fib6_info *sibling, *next_sibling; |
---|
| 5405 | + struct fib6_nh *nh = f6i->fib6_nh; |
---|
| 5406 | + |
---|
| 5407 | + nexthop_len = 0; |
---|
| 5408 | + if (f6i->fib6_nsiblings) { |
---|
| 5409 | + rt6_nh_nlmsg_size(nh, &nexthop_len); |
---|
| 5410 | + |
---|
| 5411 | + list_for_each_entry_safe(sibling, next_sibling, |
---|
| 5412 | + &f6i->fib6_siblings, fib6_siblings) { |
---|
| 5413 | + rt6_nh_nlmsg_size(sibling->fib6_nh, &nexthop_len); |
---|
| 5414 | + } |
---|
| 5415 | + } |
---|
| 5416 | + nexthop_len += lwtunnel_get_encap_size(nh->fib_nh_lws); |
---|
4650 | 5417 | } |
---|
4651 | 5418 | |
---|
4652 | 5419 | return NLMSG_ALIGN(sizeof(struct rtmsg)) |
---|
.. | .. |
---|
4662 | 5429 | + nla_total_size(sizeof(struct rta_cacheinfo)) |
---|
4663 | 5430 | + nla_total_size(TCP_CA_NAME_MAX) /* RTAX_CC_ALGO */ |
---|
4664 | 5431 | + nla_total_size(1) /* RTA_PREF */ |
---|
4665 | | - + lwtunnel_get_encap_size(rt->fib6_nh.nh_lwtstate) |
---|
4666 | 5432 | + nexthop_len; |
---|
4667 | 5433 | } |
---|
4668 | 5434 | |
---|
4669 | | -static int rt6_nexthop_info(struct sk_buff *skb, struct fib6_info *rt, |
---|
4670 | | - unsigned int *flags, bool skip_oif) |
---|
| 5435 | +static int rt6_fill_node_nexthop(struct sk_buff *skb, struct nexthop *nh, |
---|
| 5436 | + unsigned char *flags) |
---|
4671 | 5437 | { |
---|
4672 | | - if (rt->fib6_nh.nh_flags & RTNH_F_DEAD) |
---|
4673 | | - *flags |= RTNH_F_DEAD; |
---|
| 5438 | + if (nexthop_is_multipath(nh)) { |
---|
| 5439 | + struct nlattr *mp; |
---|
4674 | 5440 | |
---|
4675 | | - if (rt->fib6_nh.nh_flags & RTNH_F_LINKDOWN) { |
---|
4676 | | - *flags |= RTNH_F_LINKDOWN; |
---|
| 5441 | + mp = nla_nest_start_noflag(skb, RTA_MULTIPATH); |
---|
| 5442 | + if (!mp) |
---|
| 5443 | + goto nla_put_failure; |
---|
4677 | 5444 | |
---|
4678 | | - rcu_read_lock(); |
---|
4679 | | - if (fib6_ignore_linkdown(rt)) |
---|
4680 | | - *flags |= RTNH_F_DEAD; |
---|
4681 | | - rcu_read_unlock(); |
---|
4682 | | - } |
---|
| 5445 | + if (nexthop_mpath_fill_node(skb, nh, AF_INET6)) |
---|
| 5446 | + goto nla_put_failure; |
---|
4683 | 5447 | |
---|
4684 | | - if (rt->fib6_flags & RTF_GATEWAY) { |
---|
4685 | | - if (nla_put_in6_addr(skb, RTA_GATEWAY, &rt->fib6_nh.nh_gw) < 0) |
---|
| 5448 | + nla_nest_end(skb, mp); |
---|
| 5449 | + } else { |
---|
| 5450 | + struct fib6_nh *fib6_nh; |
---|
| 5451 | + |
---|
| 5452 | + fib6_nh = nexthop_fib6_nh(nh); |
---|
| 5453 | + if (fib_nexthop_info(skb, &fib6_nh->nh_common, AF_INET6, |
---|
| 5454 | + flags, false) < 0) |
---|
4686 | 5455 | goto nla_put_failure; |
---|
4687 | 5456 | } |
---|
4688 | | - |
---|
4689 | | - *flags |= (rt->fib6_nh.nh_flags & RTNH_F_ONLINK); |
---|
4690 | | - if (rt->fib6_nh.nh_flags & RTNH_F_OFFLOAD) |
---|
4691 | | - *flags |= RTNH_F_OFFLOAD; |
---|
4692 | | - |
---|
4693 | | - /* not needed for multipath encoding b/c it has a rtnexthop struct */ |
---|
4694 | | - if (!skip_oif && rt->fib6_nh.nh_dev && |
---|
4695 | | - nla_put_u32(skb, RTA_OIF, rt->fib6_nh.nh_dev->ifindex)) |
---|
4696 | | - goto nla_put_failure; |
---|
4697 | | - |
---|
4698 | | - if (rt->fib6_nh.nh_lwtstate && |
---|
4699 | | - lwtunnel_fill_encap(skb, rt->fib6_nh.nh_lwtstate) < 0) |
---|
4700 | | - goto nla_put_failure; |
---|
4701 | | - |
---|
4702 | | - return 0; |
---|
4703 | | - |
---|
4704 | | -nla_put_failure: |
---|
4705 | | - return -EMSGSIZE; |
---|
4706 | | -} |
---|
4707 | | - |
---|
4708 | | -/* add multipath next hop */ |
---|
4709 | | -static int rt6_add_nexthop(struct sk_buff *skb, struct fib6_info *rt) |
---|
4710 | | -{ |
---|
4711 | | - const struct net_device *dev = rt->fib6_nh.nh_dev; |
---|
4712 | | - struct rtnexthop *rtnh; |
---|
4713 | | - unsigned int flags = 0; |
---|
4714 | | - |
---|
4715 | | - rtnh = nla_reserve_nohdr(skb, sizeof(*rtnh)); |
---|
4716 | | - if (!rtnh) |
---|
4717 | | - goto nla_put_failure; |
---|
4718 | | - |
---|
4719 | | - rtnh->rtnh_hops = rt->fib6_nh.nh_weight - 1; |
---|
4720 | | - rtnh->rtnh_ifindex = dev ? dev->ifindex : 0; |
---|
4721 | | - |
---|
4722 | | - if (rt6_nexthop_info(skb, rt, &flags, true) < 0) |
---|
4723 | | - goto nla_put_failure; |
---|
4724 | | - |
---|
4725 | | - rtnh->rtnh_flags = flags; |
---|
4726 | | - |
---|
4727 | | - /* length of rtnetlink header + attributes */ |
---|
4728 | | - rtnh->rtnh_len = nlmsg_get_pos(skb) - (void *)rtnh; |
---|
4729 | 5457 | |
---|
4730 | 5458 | return 0; |
---|
4731 | 5459 | |
---|
.. | .. |
---|
4742 | 5470 | struct rt6_info *rt6 = (struct rt6_info *)dst; |
---|
4743 | 5471 | struct rt6key *rt6_dst, *rt6_src; |
---|
4744 | 5472 | u32 *pmetrics, table, rt6_flags; |
---|
| 5473 | + unsigned char nh_flags = 0; |
---|
4745 | 5474 | struct nlmsghdr *nlh; |
---|
4746 | 5475 | struct rtmsg *rtm; |
---|
4747 | 5476 | long expires = 0; |
---|
.. | .. |
---|
4845 | 5574 | struct fib6_info *sibling, *next_sibling; |
---|
4846 | 5575 | struct nlattr *mp; |
---|
4847 | 5576 | |
---|
4848 | | - mp = nla_nest_start(skb, RTA_MULTIPATH); |
---|
| 5577 | + mp = nla_nest_start_noflag(skb, RTA_MULTIPATH); |
---|
4849 | 5578 | if (!mp) |
---|
4850 | 5579 | goto nla_put_failure; |
---|
4851 | 5580 | |
---|
4852 | | - if (rt6_add_nexthop(skb, rt) < 0) |
---|
| 5581 | + if (fib_add_nexthop(skb, &rt->fib6_nh->nh_common, |
---|
| 5582 | + rt->fib6_nh->fib_nh_weight, AF_INET6, |
---|
| 5583 | + 0) < 0) |
---|
4853 | 5584 | goto nla_put_failure; |
---|
4854 | 5585 | |
---|
4855 | 5586 | list_for_each_entry_safe(sibling, next_sibling, |
---|
4856 | 5587 | &rt->fib6_siblings, fib6_siblings) { |
---|
4857 | | - if (rt6_add_nexthop(skb, sibling) < 0) |
---|
| 5588 | + if (fib_add_nexthop(skb, &sibling->fib6_nh->nh_common, |
---|
| 5589 | + sibling->fib6_nh->fib_nh_weight, |
---|
| 5590 | + AF_INET6, 0) < 0) |
---|
4858 | 5591 | goto nla_put_failure; |
---|
4859 | 5592 | } |
---|
4860 | 5593 | |
---|
4861 | 5594 | nla_nest_end(skb, mp); |
---|
4862 | | - } else { |
---|
4863 | | - if (rt6_nexthop_info(skb, rt, &rtm->rtm_flags, false) < 0) |
---|
| 5595 | + } else if (rt->nh) { |
---|
| 5596 | + if (nla_put_u32(skb, RTA_NH_ID, rt->nh->id)) |
---|
4864 | 5597 | goto nla_put_failure; |
---|
| 5598 | + |
---|
| 5599 | + if (nexthop_is_blackhole(rt->nh)) |
---|
| 5600 | + rtm->rtm_type = RTN_BLACKHOLE; |
---|
| 5601 | + |
---|
| 5602 | + if (READ_ONCE(net->ipv4.sysctl_nexthop_compat_mode) && |
---|
| 5603 | + rt6_fill_node_nexthop(skb, rt->nh, &nh_flags) < 0) |
---|
| 5604 | + goto nla_put_failure; |
---|
| 5605 | + |
---|
| 5606 | + rtm->rtm_flags |= nh_flags; |
---|
| 5607 | + } else { |
---|
| 5608 | + if (fib_nexthop_info(skb, &rt->fib6_nh->nh_common, AF_INET6, |
---|
| 5609 | + &nh_flags, false) < 0) |
---|
| 5610 | + goto nla_put_failure; |
---|
| 5611 | + |
---|
| 5612 | + rtm->rtm_flags |= nh_flags; |
---|
4865 | 5613 | } |
---|
4866 | 5614 | |
---|
4867 | 5615 | if (rt6_flags & RTF_EXPIRES) { |
---|
4868 | 5616 | expires = dst ? dst->expires : rt->expires; |
---|
4869 | 5617 | expires -= jiffies; |
---|
| 5618 | + } |
---|
| 5619 | + |
---|
| 5620 | + if (!dst) { |
---|
| 5621 | + if (rt->offload) |
---|
| 5622 | + rtm->rtm_flags |= RTM_F_OFFLOAD; |
---|
| 5623 | + if (rt->trap) |
---|
| 5624 | + rtm->rtm_flags |= RTM_F_TRAP; |
---|
4870 | 5625 | } |
---|
4871 | 5626 | |
---|
4872 | 5627 | if (rtnl_put_cacheinfo(skb, dst, 0, expires, dst ? dst->error : 0) < 0) |
---|
.. | .. |
---|
4884 | 5639 | return -EMSGSIZE; |
---|
4885 | 5640 | } |
---|
4886 | 5641 | |
---|
4887 | | -int rt6_dump_route(struct fib6_info *rt, void *p_arg) |
---|
| 5642 | +static int fib6_info_nh_uses_dev(struct fib6_nh *nh, void *arg) |
---|
4888 | 5643 | { |
---|
4889 | | - struct rt6_rtnl_dump_arg *arg = (struct rt6_rtnl_dump_arg *) p_arg; |
---|
4890 | | - struct net *net = arg->net; |
---|
| 5644 | + const struct net_device *dev = arg; |
---|
4891 | 5645 | |
---|
4892 | | - if (rt == net->ipv6.fib6_null_entry) |
---|
4893 | | - return 0; |
---|
| 5646 | + if (nh->fib_nh_dev == dev) |
---|
| 5647 | + return 1; |
---|
4894 | 5648 | |
---|
4895 | | - if (nlmsg_len(arg->cb->nlh) >= sizeof(struct rtmsg)) { |
---|
4896 | | - struct rtmsg *rtm = nlmsg_data(arg->cb->nlh); |
---|
| 5649 | + return 0; |
---|
| 5650 | +} |
---|
4897 | 5651 | |
---|
4898 | | - /* user wants prefix routes only */ |
---|
4899 | | - if (rtm->rtm_flags & RTM_F_PREFIX && |
---|
4900 | | - !(rt->fib6_flags & RTF_PREFIX_RT)) { |
---|
4901 | | - /* success since this is not a prefix route */ |
---|
4902 | | - return 1; |
---|
| 5652 | +static bool fib6_info_uses_dev(const struct fib6_info *f6i, |
---|
| 5653 | + const struct net_device *dev) |
---|
| 5654 | +{ |
---|
| 5655 | + if (f6i->nh) { |
---|
| 5656 | + struct net_device *_dev = (struct net_device *)dev; |
---|
| 5657 | + |
---|
| 5658 | + return !!nexthop_for_each_fib6_nh(f6i->nh, |
---|
| 5659 | + fib6_info_nh_uses_dev, |
---|
| 5660 | + _dev); |
---|
| 5661 | + } |
---|
| 5662 | + |
---|
| 5663 | + if (f6i->fib6_nh->fib_nh_dev == dev) |
---|
| 5664 | + return true; |
---|
| 5665 | + |
---|
| 5666 | + if (f6i->fib6_nsiblings) { |
---|
| 5667 | + struct fib6_info *sibling, *next_sibling; |
---|
| 5668 | + |
---|
| 5669 | + list_for_each_entry_safe(sibling, next_sibling, |
---|
| 5670 | + &f6i->fib6_siblings, fib6_siblings) { |
---|
| 5671 | + if (sibling->fib6_nh->fib_nh_dev == dev) |
---|
| 5672 | + return true; |
---|
4903 | 5673 | } |
---|
4904 | 5674 | } |
---|
4905 | 5675 | |
---|
4906 | | - return rt6_fill_node(net, arg->skb, rt, NULL, NULL, NULL, 0, |
---|
4907 | | - RTM_NEWROUTE, NETLINK_CB(arg->cb->skb).portid, |
---|
4908 | | - arg->cb->nlh->nlmsg_seq, NLM_F_MULTI); |
---|
| 5676 | + return false; |
---|
| 5677 | +} |
---|
| 5678 | + |
---|
| 5679 | +struct fib6_nh_exception_dump_walker { |
---|
| 5680 | + struct rt6_rtnl_dump_arg *dump; |
---|
| 5681 | + struct fib6_info *rt; |
---|
| 5682 | + unsigned int flags; |
---|
| 5683 | + unsigned int skip; |
---|
| 5684 | + unsigned int count; |
---|
| 5685 | +}; |
---|
| 5686 | + |
---|
| 5687 | +static int rt6_nh_dump_exceptions(struct fib6_nh *nh, void *arg) |
---|
| 5688 | +{ |
---|
| 5689 | + struct fib6_nh_exception_dump_walker *w = arg; |
---|
| 5690 | + struct rt6_rtnl_dump_arg *dump = w->dump; |
---|
| 5691 | + struct rt6_exception_bucket *bucket; |
---|
| 5692 | + struct rt6_exception *rt6_ex; |
---|
| 5693 | + int i, err; |
---|
| 5694 | + |
---|
| 5695 | + bucket = fib6_nh_get_excptn_bucket(nh, NULL); |
---|
| 5696 | + if (!bucket) |
---|
| 5697 | + return 0; |
---|
| 5698 | + |
---|
| 5699 | + for (i = 0; i < FIB6_EXCEPTION_BUCKET_SIZE; i++) { |
---|
| 5700 | + hlist_for_each_entry(rt6_ex, &bucket->chain, hlist) { |
---|
| 5701 | + if (w->skip) { |
---|
| 5702 | + w->skip--; |
---|
| 5703 | + continue; |
---|
| 5704 | + } |
---|
| 5705 | + |
---|
| 5706 | + /* Expiration of entries doesn't bump sernum, insertion |
---|
| 5707 | + * does. Removal is triggered by insertion, so we can |
---|
| 5708 | + * rely on the fact that if entries change between two |
---|
| 5709 | + * partial dumps, this node is scanned again completely, |
---|
| 5710 | + * see rt6_insert_exception() and fib6_dump_table(). |
---|
| 5711 | + * |
---|
| 5712 | + * Count expired entries we go through as handled |
---|
| 5713 | + * entries that we'll skip next time, in case of partial |
---|
| 5714 | + * node dump. Otherwise, if entries expire meanwhile, |
---|
| 5715 | + * we'll skip the wrong amount. |
---|
| 5716 | + */ |
---|
| 5717 | + if (rt6_check_expired(rt6_ex->rt6i)) { |
---|
| 5718 | + w->count++; |
---|
| 5719 | + continue; |
---|
| 5720 | + } |
---|
| 5721 | + |
---|
| 5722 | + err = rt6_fill_node(dump->net, dump->skb, w->rt, |
---|
| 5723 | + &rt6_ex->rt6i->dst, NULL, NULL, 0, |
---|
| 5724 | + RTM_NEWROUTE, |
---|
| 5725 | + NETLINK_CB(dump->cb->skb).portid, |
---|
| 5726 | + dump->cb->nlh->nlmsg_seq, w->flags); |
---|
| 5727 | + if (err) |
---|
| 5728 | + return err; |
---|
| 5729 | + |
---|
| 5730 | + w->count++; |
---|
| 5731 | + } |
---|
| 5732 | + bucket++; |
---|
| 5733 | + } |
---|
| 5734 | + |
---|
| 5735 | + return 0; |
---|
| 5736 | +} |
---|
| 5737 | + |
---|
| 5738 | +/* Return -1 if done with node, number of handled routes on partial dump */ |
---|
| 5739 | +int rt6_dump_route(struct fib6_info *rt, void *p_arg, unsigned int skip) |
---|
| 5740 | +{ |
---|
| 5741 | + struct rt6_rtnl_dump_arg *arg = (struct rt6_rtnl_dump_arg *) p_arg; |
---|
| 5742 | + struct fib_dump_filter *filter = &arg->filter; |
---|
| 5743 | + unsigned int flags = NLM_F_MULTI; |
---|
| 5744 | + struct net *net = arg->net; |
---|
| 5745 | + int count = 0; |
---|
| 5746 | + |
---|
| 5747 | + if (rt == net->ipv6.fib6_null_entry) |
---|
| 5748 | + return -1; |
---|
| 5749 | + |
---|
| 5750 | + if ((filter->flags & RTM_F_PREFIX) && |
---|
| 5751 | + !(rt->fib6_flags & RTF_PREFIX_RT)) { |
---|
| 5752 | + /* success since this is not a prefix route */ |
---|
| 5753 | + return -1; |
---|
| 5754 | + } |
---|
| 5755 | + if (filter->filter_set && |
---|
| 5756 | + ((filter->rt_type && rt->fib6_type != filter->rt_type) || |
---|
| 5757 | + (filter->dev && !fib6_info_uses_dev(rt, filter->dev)) || |
---|
| 5758 | + (filter->protocol && rt->fib6_protocol != filter->protocol))) { |
---|
| 5759 | + return -1; |
---|
| 5760 | + } |
---|
| 5761 | + |
---|
| 5762 | + if (filter->filter_set || |
---|
| 5763 | + !filter->dump_routes || !filter->dump_exceptions) { |
---|
| 5764 | + flags |= NLM_F_DUMP_FILTERED; |
---|
| 5765 | + } |
---|
| 5766 | + |
---|
| 5767 | + if (filter->dump_routes) { |
---|
| 5768 | + if (skip) { |
---|
| 5769 | + skip--; |
---|
| 5770 | + } else { |
---|
| 5771 | + if (rt6_fill_node(net, arg->skb, rt, NULL, NULL, NULL, |
---|
| 5772 | + 0, RTM_NEWROUTE, |
---|
| 5773 | + NETLINK_CB(arg->cb->skb).portid, |
---|
| 5774 | + arg->cb->nlh->nlmsg_seq, flags)) { |
---|
| 5775 | + return 0; |
---|
| 5776 | + } |
---|
| 5777 | + count++; |
---|
| 5778 | + } |
---|
| 5779 | + } |
---|
| 5780 | + |
---|
| 5781 | + if (filter->dump_exceptions) { |
---|
| 5782 | + struct fib6_nh_exception_dump_walker w = { .dump = arg, |
---|
| 5783 | + .rt = rt, |
---|
| 5784 | + .flags = flags, |
---|
| 5785 | + .skip = skip, |
---|
| 5786 | + .count = 0 }; |
---|
| 5787 | + int err; |
---|
| 5788 | + |
---|
| 5789 | + rcu_read_lock(); |
---|
| 5790 | + if (rt->nh) { |
---|
| 5791 | + err = nexthop_for_each_fib6_nh(rt->nh, |
---|
| 5792 | + rt6_nh_dump_exceptions, |
---|
| 5793 | + &w); |
---|
| 5794 | + } else { |
---|
| 5795 | + err = rt6_nh_dump_exceptions(rt->fib6_nh, &w); |
---|
| 5796 | + } |
---|
| 5797 | + rcu_read_unlock(); |
---|
| 5798 | + |
---|
| 5799 | + if (err) |
---|
| 5800 | + return count += w.count; |
---|
| 5801 | + } |
---|
| 5802 | + |
---|
| 5803 | + return -1; |
---|
| 5804 | +} |
---|
| 5805 | + |
---|
| 5806 | +static int inet6_rtm_valid_getroute_req(struct sk_buff *skb, |
---|
| 5807 | + const struct nlmsghdr *nlh, |
---|
| 5808 | + struct nlattr **tb, |
---|
| 5809 | + struct netlink_ext_ack *extack) |
---|
| 5810 | +{ |
---|
| 5811 | + struct rtmsg *rtm; |
---|
| 5812 | + int i, err; |
---|
| 5813 | + |
---|
| 5814 | + if (nlh->nlmsg_len < nlmsg_msg_size(sizeof(*rtm))) { |
---|
| 5815 | + NL_SET_ERR_MSG_MOD(extack, |
---|
| 5816 | + "Invalid header for get route request"); |
---|
| 5817 | + return -EINVAL; |
---|
| 5818 | + } |
---|
| 5819 | + |
---|
| 5820 | + if (!netlink_strict_get_check(skb)) |
---|
| 5821 | + return nlmsg_parse_deprecated(nlh, sizeof(*rtm), tb, RTA_MAX, |
---|
| 5822 | + rtm_ipv6_policy, extack); |
---|
| 5823 | + |
---|
| 5824 | + rtm = nlmsg_data(nlh); |
---|
| 5825 | + if ((rtm->rtm_src_len && rtm->rtm_src_len != 128) || |
---|
| 5826 | + (rtm->rtm_dst_len && rtm->rtm_dst_len != 128) || |
---|
| 5827 | + rtm->rtm_table || rtm->rtm_protocol || rtm->rtm_scope || |
---|
| 5828 | + rtm->rtm_type) { |
---|
| 5829 | + NL_SET_ERR_MSG_MOD(extack, "Invalid values in header for get route request"); |
---|
| 5830 | + return -EINVAL; |
---|
| 5831 | + } |
---|
| 5832 | + if (rtm->rtm_flags & ~RTM_F_FIB_MATCH) { |
---|
| 5833 | + NL_SET_ERR_MSG_MOD(extack, |
---|
| 5834 | + "Invalid flags for get route request"); |
---|
| 5835 | + return -EINVAL; |
---|
| 5836 | + } |
---|
| 5837 | + |
---|
| 5838 | + err = nlmsg_parse_deprecated_strict(nlh, sizeof(*rtm), tb, RTA_MAX, |
---|
| 5839 | + rtm_ipv6_policy, extack); |
---|
| 5840 | + if (err) |
---|
| 5841 | + return err; |
---|
| 5842 | + |
---|
| 5843 | + if ((tb[RTA_SRC] && !rtm->rtm_src_len) || |
---|
| 5844 | + (tb[RTA_DST] && !rtm->rtm_dst_len)) { |
---|
| 5845 | + NL_SET_ERR_MSG_MOD(extack, "rtm_src_len and rtm_dst_len must be 128 for IPv6"); |
---|
| 5846 | + return -EINVAL; |
---|
| 5847 | + } |
---|
| 5848 | + |
---|
| 5849 | + for (i = 0; i <= RTA_MAX; i++) { |
---|
| 5850 | + if (!tb[i]) |
---|
| 5851 | + continue; |
---|
| 5852 | + |
---|
| 5853 | + switch (i) { |
---|
| 5854 | + case RTA_SRC: |
---|
| 5855 | + case RTA_DST: |
---|
| 5856 | + case RTA_IIF: |
---|
| 5857 | + case RTA_OIF: |
---|
| 5858 | + case RTA_MARK: |
---|
| 5859 | + case RTA_UID: |
---|
| 5860 | + case RTA_SPORT: |
---|
| 5861 | + case RTA_DPORT: |
---|
| 5862 | + case RTA_IP_PROTO: |
---|
| 5863 | + break; |
---|
| 5864 | + default: |
---|
| 5865 | + NL_SET_ERR_MSG_MOD(extack, "Unsupported attribute in get route request"); |
---|
| 5866 | + return -EINVAL; |
---|
| 5867 | + } |
---|
| 5868 | + } |
---|
| 5869 | + |
---|
| 5870 | + return 0; |
---|
4909 | 5871 | } |
---|
4910 | 5872 | |
---|
4911 | 5873 | static int inet6_rtm_getroute(struct sk_buff *in_skb, struct nlmsghdr *nlh, |
---|
.. | .. |
---|
4919 | 5881 | struct rt6_info *rt; |
---|
4920 | 5882 | struct sk_buff *skb; |
---|
4921 | 5883 | struct rtmsg *rtm; |
---|
4922 | | - struct flowi6 fl6; |
---|
| 5884 | + struct flowi6 fl6 = {}; |
---|
4923 | 5885 | bool fibmatch; |
---|
4924 | 5886 | |
---|
4925 | | - err = nlmsg_parse(nlh, sizeof(*rtm), tb, RTA_MAX, rtm_ipv6_policy, |
---|
4926 | | - extack); |
---|
| 5887 | + err = inet6_rtm_valid_getroute_req(in_skb, nlh, tb, extack); |
---|
4927 | 5888 | if (err < 0) |
---|
4928 | 5889 | goto errout; |
---|
4929 | 5890 | |
---|
4930 | 5891 | err = -EINVAL; |
---|
4931 | | - memset(&fl6, 0, sizeof(fl6)); |
---|
4932 | 5892 | rtm = nlmsg_data(nlh); |
---|
4933 | 5893 | fl6.flowlabel = ip6_make_flowinfo(rtm->rtm_tos, 0); |
---|
4934 | 5894 | fibmatch = !!(rtm->rtm_flags & RTM_F_FIB_MATCH); |
---|
.. | .. |
---|
5085 | 6045 | rtnl_set_sk_err(net, RTNLGRP_IPV6_ROUTE, err); |
---|
5086 | 6046 | } |
---|
5087 | 6047 | |
---|
| 6048 | +void fib6_rt_update(struct net *net, struct fib6_info *rt, |
---|
| 6049 | + struct nl_info *info) |
---|
| 6050 | +{ |
---|
| 6051 | + u32 seq = info->nlh ? info->nlh->nlmsg_seq : 0; |
---|
| 6052 | + struct sk_buff *skb; |
---|
| 6053 | + int err = -ENOBUFS; |
---|
| 6054 | + |
---|
| 6055 | + /* call_fib6_entry_notifiers will be removed when in-kernel notifier |
---|
| 6056 | + * is implemented and supported for nexthop objects |
---|
| 6057 | + */ |
---|
| 6058 | + call_fib6_entry_notifiers(net, FIB_EVENT_ENTRY_REPLACE, rt, NULL); |
---|
| 6059 | + |
---|
| 6060 | + skb = nlmsg_new(rt6_nlmsg_size(rt), gfp_any()); |
---|
| 6061 | + if (!skb) |
---|
| 6062 | + goto errout; |
---|
| 6063 | + |
---|
| 6064 | + err = rt6_fill_node(net, skb, rt, NULL, NULL, NULL, 0, |
---|
| 6065 | + RTM_NEWROUTE, info->portid, seq, NLM_F_REPLACE); |
---|
| 6066 | + if (err < 0) { |
---|
| 6067 | + /* -EMSGSIZE implies BUG in rt6_nlmsg_size() */ |
---|
| 6068 | + WARN_ON(err == -EMSGSIZE); |
---|
| 6069 | + kfree_skb(skb); |
---|
| 6070 | + goto errout; |
---|
| 6071 | + } |
---|
| 6072 | + rtnl_notify(skb, net, info->portid, RTNLGRP_IPV6_ROUTE, |
---|
| 6073 | + info->nlh, gfp_any()); |
---|
| 6074 | + return; |
---|
| 6075 | +errout: |
---|
| 6076 | + if (err < 0) |
---|
| 6077 | + rtnl_set_sk_err(net, RTNLGRP_IPV6_ROUTE, err); |
---|
| 6078 | +} |
---|
| 6079 | + |
---|
5088 | 6080 | static int ip6_route_dev_notify(struct notifier_block *this, |
---|
5089 | 6081 | unsigned long event, void *ptr) |
---|
5090 | 6082 | { |
---|
.. | .. |
---|
5095 | 6087 | return NOTIFY_OK; |
---|
5096 | 6088 | |
---|
5097 | 6089 | if (event == NETDEV_REGISTER) { |
---|
5098 | | - net->ipv6.fib6_null_entry->fib6_nh.nh_dev = dev; |
---|
| 6090 | + net->ipv6.fib6_null_entry->fib6_nh->fib_nh_dev = dev; |
---|
5099 | 6091 | net->ipv6.ip6_null_entry->dst.dev = dev; |
---|
5100 | 6092 | net->ipv6.ip6_null_entry->rt6i_idev = in6_dev_get(dev); |
---|
5101 | 6093 | #ifdef CONFIG_IPV6_MULTIPLE_TABLES |
---|
.. | .. |
---|
5142 | 6134 | |
---|
5143 | 6135 | #ifdef CONFIG_SYSCTL |
---|
5144 | 6136 | |
---|
5145 | | -static |
---|
5146 | | -int ipv6_sysctl_rtcache_flush(struct ctl_table *ctl, int write, |
---|
5147 | | - void __user *buffer, size_t *lenp, loff_t *ppos) |
---|
| 6137 | +static int ipv6_sysctl_rtcache_flush(struct ctl_table *ctl, int write, |
---|
| 6138 | + void *buffer, size_t *lenp, loff_t *ppos) |
---|
5148 | 6139 | { |
---|
5149 | 6140 | struct net *net; |
---|
5150 | 6141 | int delay; |
---|
| 6142 | + int ret; |
---|
5151 | 6143 | if (!write) |
---|
5152 | 6144 | return -EINVAL; |
---|
5153 | 6145 | |
---|
5154 | 6146 | net = (struct net *)ctl->extra1; |
---|
5155 | 6147 | delay = net->ipv6.sysctl.flush_delay; |
---|
5156 | | - proc_dointvec(ctl, write, buffer, lenp, ppos); |
---|
| 6148 | + ret = proc_dointvec(ctl, write, buffer, lenp, ppos); |
---|
| 6149 | + if (ret) |
---|
| 6150 | + return ret; |
---|
| 6151 | + |
---|
5157 | 6152 | fib6_run_gc(delay <= 0 ? 0 : (unsigned long)delay, net, delay > 0); |
---|
5158 | 6153 | return 0; |
---|
5159 | 6154 | } |
---|
5160 | 6155 | |
---|
5161 | | -struct ctl_table ipv6_route_table_template[] = { |
---|
| 6156 | +static struct ctl_table ipv6_route_table_template[] = { |
---|
5162 | 6157 | { |
---|
5163 | 6158 | .procname = "flush", |
---|
5164 | 6159 | .data = &init_net.ipv6.sysctl.flush_delay, |
---|
.. | .. |
---|
5229 | 6224 | .mode = 0644, |
---|
5230 | 6225 | .proc_handler = proc_dointvec_ms_jiffies, |
---|
5231 | 6226 | }, |
---|
| 6227 | + { |
---|
| 6228 | + .procname = "skip_notify_on_dev_down", |
---|
| 6229 | + .data = &init_net.ipv6.sysctl.skip_notify_on_dev_down, |
---|
| 6230 | + .maxlen = sizeof(int), |
---|
| 6231 | + .mode = 0644, |
---|
| 6232 | + .proc_handler = proc_dointvec_minmax, |
---|
| 6233 | + .extra1 = SYSCTL_ZERO, |
---|
| 6234 | + .extra2 = SYSCTL_ONE, |
---|
| 6235 | + }, |
---|
5232 | 6236 | { } |
---|
5233 | 6237 | }; |
---|
5234 | 6238 | |
---|
.. | .. |
---|
5252 | 6256 | table[7].data = &net->ipv6.sysctl.ip6_rt_mtu_expires; |
---|
5253 | 6257 | table[8].data = &net->ipv6.sysctl.ip6_rt_min_advmss; |
---|
5254 | 6258 | table[9].data = &net->ipv6.sysctl.ip6_rt_gc_min_interval; |
---|
| 6259 | + table[10].data = &net->ipv6.sysctl.skip_notify_on_dev_down; |
---|
5255 | 6260 | |
---|
5256 | 6261 | /* Don't export sysctls to unprivileged users */ |
---|
5257 | 6262 | if (net->user_ns != &init_user_ns) |
---|
.. | .. |
---|
5272 | 6277 | if (dst_entries_init(&net->ipv6.ip6_dst_ops) < 0) |
---|
5273 | 6278 | goto out_ip6_dst_ops; |
---|
5274 | 6279 | |
---|
5275 | | - net->ipv6.fib6_null_entry = kmemdup(&fib6_null_entry_template, |
---|
5276 | | - sizeof(*net->ipv6.fib6_null_entry), |
---|
5277 | | - GFP_KERNEL); |
---|
| 6280 | + net->ipv6.fib6_null_entry = fib6_info_alloc(GFP_KERNEL, true); |
---|
5278 | 6281 | if (!net->ipv6.fib6_null_entry) |
---|
5279 | 6282 | goto out_ip6_dst_entries; |
---|
| 6283 | + memcpy(net->ipv6.fib6_null_entry, &fib6_null_entry_template, |
---|
| 6284 | + sizeof(*net->ipv6.fib6_null_entry)); |
---|
5280 | 6285 | |
---|
5281 | 6286 | net->ipv6.ip6_null_entry = kmemdup(&ip6_null_entry_template, |
---|
5282 | 6287 | sizeof(*net->ipv6.ip6_null_entry), |
---|
.. | .. |
---|
5286 | 6291 | net->ipv6.ip6_null_entry->dst.ops = &net->ipv6.ip6_dst_ops; |
---|
5287 | 6292 | dst_init_metrics(&net->ipv6.ip6_null_entry->dst, |
---|
5288 | 6293 | ip6_template_metrics, true); |
---|
| 6294 | + INIT_LIST_HEAD(&net->ipv6.ip6_null_entry->rt6i_uncached); |
---|
5289 | 6295 | |
---|
5290 | 6296 | #ifdef CONFIG_IPV6_MULTIPLE_TABLES |
---|
5291 | 6297 | net->ipv6.fib6_has_custom_rules = false; |
---|
.. | .. |
---|
5297 | 6303 | net->ipv6.ip6_prohibit_entry->dst.ops = &net->ipv6.ip6_dst_ops; |
---|
5298 | 6304 | dst_init_metrics(&net->ipv6.ip6_prohibit_entry->dst, |
---|
5299 | 6305 | ip6_template_metrics, true); |
---|
| 6306 | + INIT_LIST_HEAD(&net->ipv6.ip6_prohibit_entry->rt6i_uncached); |
---|
5300 | 6307 | |
---|
5301 | 6308 | net->ipv6.ip6_blk_hole_entry = kmemdup(&ip6_blk_hole_entry_template, |
---|
5302 | 6309 | sizeof(*net->ipv6.ip6_blk_hole_entry), |
---|
.. | .. |
---|
5306 | 6313 | net->ipv6.ip6_blk_hole_entry->dst.ops = &net->ipv6.ip6_dst_ops; |
---|
5307 | 6314 | dst_init_metrics(&net->ipv6.ip6_blk_hole_entry->dst, |
---|
5308 | 6315 | ip6_template_metrics, true); |
---|
| 6316 | + INIT_LIST_HEAD(&net->ipv6.ip6_blk_hole_entry->rt6i_uncached); |
---|
| 6317 | +#ifdef CONFIG_IPV6_SUBTREES |
---|
| 6318 | + net->ipv6.fib6_routes_require_src = 0; |
---|
| 6319 | +#endif |
---|
5309 | 6320 | #endif |
---|
5310 | 6321 | |
---|
5311 | 6322 | net->ipv6.sysctl.flush_delay = 0; |
---|
.. | .. |
---|
5316 | 6327 | net->ipv6.sysctl.ip6_rt_gc_elasticity = 9; |
---|
5317 | 6328 | net->ipv6.sysctl.ip6_rt_mtu_expires = 10*60*HZ; |
---|
5318 | 6329 | net->ipv6.sysctl.ip6_rt_min_advmss = IPV6_MIN_MTU - 20 - 40; |
---|
| 6330 | + net->ipv6.sysctl.skip_notify_on_dev_down = 0; |
---|
5319 | 6331 | |
---|
5320 | 6332 | net->ipv6.ip6_rt_gc_expire = 30*HZ; |
---|
5321 | 6333 | |
---|
.. | .. |
---|
5351 | 6363 | static int __net_init ip6_route_net_init_late(struct net *net) |
---|
5352 | 6364 | { |
---|
5353 | 6365 | #ifdef CONFIG_PROC_FS |
---|
5354 | | - proc_create_net("ipv6_route", 0, net->proc_net, &ipv6_route_seq_ops, |
---|
5355 | | - sizeof(struct ipv6_route_iter)); |
---|
5356 | | - proc_create_net_single("rt6_stats", 0444, net->proc_net, |
---|
5357 | | - rt6_stats_seq_show, NULL); |
---|
| 6366 | + if (!proc_create_net("ipv6_route", 0, net->proc_net, |
---|
| 6367 | + &ipv6_route_seq_ops, |
---|
| 6368 | + sizeof(struct ipv6_route_iter))) |
---|
| 6369 | + return -ENOMEM; |
---|
| 6370 | + |
---|
| 6371 | + if (!proc_create_net_single("rt6_stats", 0444, net->proc_net, |
---|
| 6372 | + rt6_stats_seq_show, NULL)) { |
---|
| 6373 | + remove_proc_entry("ipv6_route", net->proc_net); |
---|
| 6374 | + return -ENOMEM; |
---|
| 6375 | + } |
---|
5358 | 6376 | #endif |
---|
5359 | 6377 | return 0; |
---|
5360 | 6378 | } |
---|
.. | .. |
---|
5412 | 6430 | /* Registering of the loopback is done before this portion of code, |
---|
5413 | 6431 | * the loopback reference in rt6_info will not be taken, do it |
---|
5414 | 6432 | * manually for init_net */ |
---|
5415 | | - init_net.ipv6.fib6_null_entry->fib6_nh.nh_dev = init_net.loopback_dev; |
---|
| 6433 | + init_net.ipv6.fib6_null_entry->fib6_nh->fib_nh_dev = init_net.loopback_dev; |
---|
5416 | 6434 | init_net.ipv6.ip6_null_entry->dst.dev = init_net.loopback_dev; |
---|
5417 | 6435 | init_net.ipv6.ip6_null_entry->rt6i_idev = in6_dev_get(init_net.loopback_dev); |
---|
5418 | 6436 | #ifdef CONFIG_IPV6_MULTIPLE_TABLES |
---|
.. | .. |
---|
5422 | 6440 | init_net.ipv6.ip6_blk_hole_entry->rt6i_idev = in6_dev_get(init_net.loopback_dev); |
---|
5423 | 6441 | #endif |
---|
5424 | 6442 | } |
---|
| 6443 | + |
---|
| 6444 | +#if IS_BUILTIN(CONFIG_IPV6) |
---|
| 6445 | +#if defined(CONFIG_BPF_SYSCALL) && defined(CONFIG_PROC_FS) |
---|
| 6446 | +DEFINE_BPF_ITER_FUNC(ipv6_route, struct bpf_iter_meta *meta, struct fib6_info *rt) |
---|
| 6447 | + |
---|
| 6448 | +BTF_ID_LIST(btf_fib6_info_id) |
---|
| 6449 | +BTF_ID(struct, fib6_info) |
---|
| 6450 | + |
---|
| 6451 | +static const struct bpf_iter_seq_info ipv6_route_seq_info = { |
---|
| 6452 | + .seq_ops = &ipv6_route_seq_ops, |
---|
| 6453 | + .init_seq_private = bpf_iter_init_seq_net, |
---|
| 6454 | + .fini_seq_private = bpf_iter_fini_seq_net, |
---|
| 6455 | + .seq_priv_size = sizeof(struct ipv6_route_iter), |
---|
| 6456 | +}; |
---|
| 6457 | + |
---|
| 6458 | +static struct bpf_iter_reg ipv6_route_reg_info = { |
---|
| 6459 | + .target = "ipv6_route", |
---|
| 6460 | + .ctx_arg_info_size = 1, |
---|
| 6461 | + .ctx_arg_info = { |
---|
| 6462 | + { offsetof(struct bpf_iter__ipv6_route, rt), |
---|
| 6463 | + PTR_TO_BTF_ID_OR_NULL }, |
---|
| 6464 | + }, |
---|
| 6465 | + .seq_info = &ipv6_route_seq_info, |
---|
| 6466 | +}; |
---|
| 6467 | + |
---|
| 6468 | +static int __init bpf_iter_register(void) |
---|
| 6469 | +{ |
---|
| 6470 | + ipv6_route_reg_info.ctx_arg_info[0].btf_id = *btf_fib6_info_id; |
---|
| 6471 | + return bpf_iter_reg_target(&ipv6_route_reg_info); |
---|
| 6472 | +} |
---|
| 6473 | + |
---|
| 6474 | +static void bpf_iter_unregister(void) |
---|
| 6475 | +{ |
---|
| 6476 | + bpf_iter_unreg_target(&ipv6_route_reg_info); |
---|
| 6477 | +} |
---|
| 6478 | +#endif |
---|
| 6479 | +#endif |
---|
5425 | 6480 | |
---|
5426 | 6481 | int __init ip6_route_init(void) |
---|
5427 | 6482 | { |
---|
.. | .. |
---|
5485 | 6540 | if (ret) |
---|
5486 | 6541 | goto out_register_late_subsys; |
---|
5487 | 6542 | |
---|
| 6543 | +#if IS_BUILTIN(CONFIG_IPV6) |
---|
| 6544 | +#if defined(CONFIG_BPF_SYSCALL) && defined(CONFIG_PROC_FS) |
---|
| 6545 | + ret = bpf_iter_register(); |
---|
| 6546 | + if (ret) |
---|
| 6547 | + goto out_register_late_subsys; |
---|
| 6548 | +#endif |
---|
| 6549 | +#endif |
---|
| 6550 | + |
---|
5488 | 6551 | for_each_possible_cpu(cpu) { |
---|
5489 | 6552 | struct uncached_list *ul = per_cpu_ptr(&rt6_uncached_list, cpu); |
---|
5490 | 6553 | |
---|
.. | .. |
---|
5517 | 6580 | |
---|
5518 | 6581 | void ip6_route_cleanup(void) |
---|
5519 | 6582 | { |
---|
| 6583 | +#if IS_BUILTIN(CONFIG_IPV6) |
---|
| 6584 | +#if defined(CONFIG_BPF_SYSCALL) && defined(CONFIG_PROC_FS) |
---|
| 6585 | + bpf_iter_unregister(); |
---|
| 6586 | +#endif |
---|
| 6587 | +#endif |
---|
5520 | 6588 | unregister_netdevice_notifier(&ip6_route_dev_notifier); |
---|
5521 | 6589 | unregister_pernet_subsys(&ip6_route_net_late_ops); |
---|
5522 | 6590 | fib6_rules_cleanup(); |
---|