Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Linux INET6 implementation |
| 3 | * FIB front-end. |
| 4 | * |
| 5 | * Authors: |
YOSHIFUJI Hideaki | 1ab1457 | 2007-02-09 23:24:49 +0900 | [diff] [blame] | 6 | * Pedro Roque <roque@di.fc.ul.pt> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 | */ |
| 13 | |
| 14 | /* Changes: |
| 15 | * |
| 16 | * YOSHIFUJI Hideaki @USAGI |
| 17 | * reworked default router selection. |
| 18 | * - respect outgoing interface |
| 19 | * - select from (probably) reachable routers (i.e. |
| 20 | * routers in REACHABLE, STALE, DELAY or PROBE states). |
| 21 | * - always select the same router if it is (probably) |
| 22 | * reachable. otherwise, round-robin the list. |
YOSHIFUJI Hideaki | c0bece9 | 2006-08-23 17:23:25 -0700 | [diff] [blame] | 23 | * Ville Nuorvala |
| 24 | * Fixed routing subtrees. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 | */ |
| 26 | |
Joe Perches | f321383 | 2012-05-15 14:11:53 +0000 | [diff] [blame] | 27 | #define pr_fmt(fmt) "IPv6: " fmt |
| 28 | |
Randy Dunlap | 4fc268d | 2006-01-11 12:17:47 -0800 | [diff] [blame] | 29 | #include <linux/capability.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | #include <linux/errno.h> |
Paul Gortmaker | bc3b2d7 | 2011-07-15 11:47:34 -0400 | [diff] [blame] | 31 | #include <linux/export.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | #include <linux/types.h> |
| 33 | #include <linux/times.h> |
| 34 | #include <linux/socket.h> |
| 35 | #include <linux/sockios.h> |
| 36 | #include <linux/net.h> |
| 37 | #include <linux/route.h> |
| 38 | #include <linux/netdevice.h> |
| 39 | #include <linux/in6.h> |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 40 | #include <linux/mroute6.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 | #include <linux/init.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 42 | #include <linux/if_arp.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | #include <linux/proc_fs.h> |
| 44 | #include <linux/seq_file.h> |
Daniel Lezcano | 5b7c931 | 2008-03-03 23:28:58 -0800 | [diff] [blame] | 45 | #include <linux/nsproxy.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 46 | #include <linux/slab.h> |
Wei Wang | 35732d0 | 2017-10-06 12:05:57 -0700 | [diff] [blame] | 47 | #include <linux/jhash.h> |
Eric W. Biederman | 457c4cb | 2007-09-12 12:01:34 +0200 | [diff] [blame] | 48 | #include <net/net_namespace.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 49 | #include <net/snmp.h> |
| 50 | #include <net/ipv6.h> |
| 51 | #include <net/ip6_fib.h> |
| 52 | #include <net/ip6_route.h> |
| 53 | #include <net/ndisc.h> |
| 54 | #include <net/addrconf.h> |
| 55 | #include <net/tcp.h> |
| 56 | #include <linux/rtnetlink.h> |
| 57 | #include <net/dst.h> |
Jiri Benc | 904af04 | 2015-08-20 13:56:31 +0200 | [diff] [blame] | 58 | #include <net/dst_metadata.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 59 | #include <net/xfrm.h> |
Tom Tucker | 8d71740 | 2006-07-30 20:43:36 -0700 | [diff] [blame] | 60 | #include <net/netevent.h> |
Thomas Graf | 21713eb | 2006-08-15 00:35:24 -0700 | [diff] [blame] | 61 | #include <net/netlink.h> |
Nicolas Dichtel | 51ebd31 | 2012-10-22 03:42:09 +0000 | [diff] [blame] | 62 | #include <net/nexthop.h> |
Roopa Prabhu | 19e42e4 | 2015-07-21 10:43:48 +0200 | [diff] [blame] | 63 | #include <net/lwtunnel.h> |
Jiri Benc | 904af04 | 2015-08-20 13:56:31 +0200 | [diff] [blame] | 64 | #include <net/ip_tunnels.h> |
David Ahern | ca25449 | 2015-10-12 11:47:10 -0700 | [diff] [blame] | 65 | #include <net/l3mdev.h> |
David Ahern | b811580 | 2015-11-19 12:24:22 -0800 | [diff] [blame] | 66 | #include <trace/events/fib6.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 67 | |
Linus Torvalds | 7c0f6ba | 2016-12-24 11:46:01 -0800 | [diff] [blame] | 68 | #include <linux/uaccess.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 69 | |
| 70 | #ifdef CONFIG_SYSCTL |
| 71 | #include <linux/sysctl.h> |
| 72 | #endif |
| 73 | |
Hannes Frederic Sowa | afc154e | 2013-07-11 12:43:42 +0200 | [diff] [blame] | 74 | enum rt6_nud_state { |
Jiri Benc | 7e98056 | 2013-12-11 13:48:20 +0100 | [diff] [blame] | 75 | RT6_NUD_FAIL_HARD = -3, |
| 76 | RT6_NUD_FAIL_PROBE = -2, |
| 77 | RT6_NUD_FAIL_DO_RR = -1, |
Hannes Frederic Sowa | afc154e | 2013-07-11 12:43:42 +0200 | [diff] [blame] | 78 | RT6_NUD_SUCCEED = 1 |
| 79 | }; |
| 80 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 81 | static struct dst_entry *ip6_dst_check(struct dst_entry *dst, u32 cookie); |
David S. Miller | 0dbaee3 | 2010-12-13 12:52:14 -0800 | [diff] [blame] | 82 | static unsigned int ip6_default_advmss(const struct dst_entry *dst); |
Steffen Klassert | ebb762f | 2011-11-23 02:12:51 +0000 | [diff] [blame] | 83 | static unsigned int ip6_mtu(const struct dst_entry *dst); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 84 | static struct dst_entry *ip6_negative_advice(struct dst_entry *); |
| 85 | static void ip6_dst_destroy(struct dst_entry *); |
| 86 | static void ip6_dst_ifdown(struct dst_entry *, |
| 87 | struct net_device *dev, int how); |
Daniel Lezcano | 569d364 | 2008-01-18 03:56:57 -0800 | [diff] [blame] | 88 | static int ip6_dst_gc(struct dst_ops *ops); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 89 | |
| 90 | static int ip6_pkt_discard(struct sk_buff *skb); |
Eric W. Biederman | ede2059 | 2015-10-07 16:48:47 -0500 | [diff] [blame] | 91 | static int ip6_pkt_discard_out(struct net *net, struct sock *sk, struct sk_buff *skb); |
Kamala R | 7150aed | 2013-12-02 19:55:21 +0530 | [diff] [blame] | 92 | static int ip6_pkt_prohibit(struct sk_buff *skb); |
Eric W. Biederman | ede2059 | 2015-10-07 16:48:47 -0500 | [diff] [blame] | 93 | static int ip6_pkt_prohibit_out(struct net *net, struct sock *sk, struct sk_buff *skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 94 | static void ip6_link_failure(struct sk_buff *skb); |
David S. Miller | 6700c27 | 2012-07-17 03:29:28 -0700 | [diff] [blame] | 95 | static void ip6_rt_update_pmtu(struct dst_entry *dst, struct sock *sk, |
| 96 | struct sk_buff *skb, u32 mtu); |
| 97 | static void rt6_do_redirect(struct dst_entry *dst, struct sock *sk, |
| 98 | struct sk_buff *skb); |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame^] | 99 | static int rt6_score_route(struct fib6_info *rt, int oif, int strict); |
| 100 | static size_t rt6_nlmsg_size(struct fib6_info *rt); |
David Ahern | d4ead6b | 2018-04-17 17:33:16 -0700 | [diff] [blame] | 101 | static int rt6_fill_node(struct net *net, struct sk_buff *skb, |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame^] | 102 | struct fib6_info *rt, struct dst_entry *dst, |
David Ahern | d4ead6b | 2018-04-17 17:33:16 -0700 | [diff] [blame] | 103 | struct in6_addr *dest, struct in6_addr *src, |
David Ahern | 16a16cd | 2017-02-02 12:37:11 -0800 | [diff] [blame] | 104 | int iif, int type, u32 portid, u32 seq, |
| 105 | unsigned int flags); |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame^] | 106 | static struct rt6_info *rt6_find_cached_rt(struct fib6_info *rt, |
Wei Wang | 35732d0 | 2017-10-06 12:05:57 -0700 | [diff] [blame] | 107 | struct in6_addr *daddr, |
| 108 | struct in6_addr *saddr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 109 | |
YOSHIFUJI Hideaki | 70ceb4f | 2006-03-20 17:06:24 -0800 | [diff] [blame] | 110 | #ifdef CONFIG_IPV6_ROUTE_INFO |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame^] | 111 | static struct fib6_info *rt6_add_route_info(struct net *net, |
Eric Dumazet | b71d1d4 | 2011-04-22 04:53:02 +0000 | [diff] [blame] | 112 | const struct in6_addr *prefix, int prefixlen, |
David Ahern | 830218c | 2016-10-24 10:52:35 -0700 | [diff] [blame] | 113 | const struct in6_addr *gwaddr, |
| 114 | struct net_device *dev, |
Eric Dumazet | 95c9617 | 2012-04-15 05:58:06 +0000 | [diff] [blame] | 115 | unsigned int pref); |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame^] | 116 | static struct fib6_info *rt6_get_route_info(struct net *net, |
Eric Dumazet | b71d1d4 | 2011-04-22 04:53:02 +0000 | [diff] [blame] | 117 | const struct in6_addr *prefix, int prefixlen, |
David Ahern | 830218c | 2016-10-24 10:52:35 -0700 | [diff] [blame] | 118 | const struct in6_addr *gwaddr, |
| 119 | struct net_device *dev); |
YOSHIFUJI Hideaki | 70ceb4f | 2006-03-20 17:06:24 -0800 | [diff] [blame] | 120 | #endif |
| 121 | |
Martin KaFai Lau | 8d0b94a | 2015-05-22 20:56:04 -0700 | [diff] [blame] | 122 | struct uncached_list { |
| 123 | spinlock_t lock; |
| 124 | struct list_head head; |
| 125 | }; |
| 126 | |
| 127 | static DEFINE_PER_CPU_ALIGNED(struct uncached_list, rt6_uncached_list); |
| 128 | |
Xin Long | 510c321 | 2018-02-14 19:06:02 +0800 | [diff] [blame] | 129 | void rt6_uncached_list_add(struct rt6_info *rt) |
Martin KaFai Lau | 8d0b94a | 2015-05-22 20:56:04 -0700 | [diff] [blame] | 130 | { |
| 131 | struct uncached_list *ul = raw_cpu_ptr(&rt6_uncached_list); |
| 132 | |
Martin KaFai Lau | 8d0b94a | 2015-05-22 20:56:04 -0700 | [diff] [blame] | 133 | rt->rt6i_uncached_list = ul; |
| 134 | |
| 135 | spin_lock_bh(&ul->lock); |
| 136 | list_add_tail(&rt->rt6i_uncached, &ul->head); |
| 137 | spin_unlock_bh(&ul->lock); |
| 138 | } |
| 139 | |
Xin Long | 510c321 | 2018-02-14 19:06:02 +0800 | [diff] [blame] | 140 | void rt6_uncached_list_del(struct rt6_info *rt) |
Martin KaFai Lau | 8d0b94a | 2015-05-22 20:56:04 -0700 | [diff] [blame] | 141 | { |
| 142 | if (!list_empty(&rt->rt6i_uncached)) { |
| 143 | struct uncached_list *ul = rt->rt6i_uncached_list; |
Wei Wang | 81eb844 | 2017-10-06 12:06:11 -0700 | [diff] [blame] | 144 | struct net *net = dev_net(rt->dst.dev); |
Martin KaFai Lau | 8d0b94a | 2015-05-22 20:56:04 -0700 | [diff] [blame] | 145 | |
| 146 | spin_lock_bh(&ul->lock); |
| 147 | list_del(&rt->rt6i_uncached); |
Wei Wang | 81eb844 | 2017-10-06 12:06:11 -0700 | [diff] [blame] | 148 | atomic_dec(&net->ipv6.rt6_stats->fib_rt_uncache); |
Martin KaFai Lau | 8d0b94a | 2015-05-22 20:56:04 -0700 | [diff] [blame] | 149 | spin_unlock_bh(&ul->lock); |
| 150 | } |
| 151 | } |
| 152 | |
| 153 | static void rt6_uncached_list_flush_dev(struct net *net, struct net_device *dev) |
| 154 | { |
| 155 | struct net_device *loopback_dev = net->loopback_dev; |
| 156 | int cpu; |
| 157 | |
Eric W. Biederman | e332bc6 | 2015-10-12 11:02:08 -0500 | [diff] [blame] | 158 | if (dev == loopback_dev) |
| 159 | return; |
| 160 | |
Martin KaFai Lau | 8d0b94a | 2015-05-22 20:56:04 -0700 | [diff] [blame] | 161 | for_each_possible_cpu(cpu) { |
| 162 | struct uncached_list *ul = per_cpu_ptr(&rt6_uncached_list, cpu); |
| 163 | struct rt6_info *rt; |
| 164 | |
| 165 | spin_lock_bh(&ul->lock); |
| 166 | list_for_each_entry(rt, &ul->head, rt6i_uncached) { |
| 167 | struct inet6_dev *rt_idev = rt->rt6i_idev; |
| 168 | struct net_device *rt_dev = rt->dst.dev; |
| 169 | |
Eric W. Biederman | e332bc6 | 2015-10-12 11:02:08 -0500 | [diff] [blame] | 170 | if (rt_idev->dev == dev) { |
Martin KaFai Lau | 8d0b94a | 2015-05-22 20:56:04 -0700 | [diff] [blame] | 171 | rt->rt6i_idev = in6_dev_get(loopback_dev); |
| 172 | in6_dev_put(rt_idev); |
| 173 | } |
| 174 | |
Eric W. Biederman | e332bc6 | 2015-10-12 11:02:08 -0500 | [diff] [blame] | 175 | if (rt_dev == dev) { |
Martin KaFai Lau | 8d0b94a | 2015-05-22 20:56:04 -0700 | [diff] [blame] | 176 | rt->dst.dev = loopback_dev; |
| 177 | dev_hold(rt->dst.dev); |
| 178 | dev_put(rt_dev); |
| 179 | } |
| 180 | } |
| 181 | spin_unlock_bh(&ul->lock); |
| 182 | } |
| 183 | } |
| 184 | |
David Ahern | f8a1b43 | 2018-04-17 17:33:21 -0700 | [diff] [blame] | 185 | static inline const void *choose_neigh_daddr(const struct in6_addr *p, |
David S. Miller | f894cbf | 2012-07-02 21:52:24 -0700 | [diff] [blame] | 186 | struct sk_buff *skb, |
| 187 | const void *daddr) |
David S. Miller | 3923297 | 2012-01-26 15:22:32 -0500 | [diff] [blame] | 188 | { |
David S. Miller | a7563f3 | 2012-01-26 16:29:16 -0500 | [diff] [blame] | 189 | if (!ipv6_addr_any(p)) |
David S. Miller | 3923297 | 2012-01-26 15:22:32 -0500 | [diff] [blame] | 190 | return (const void *) p; |
David S. Miller | f894cbf | 2012-07-02 21:52:24 -0700 | [diff] [blame] | 191 | else if (skb) |
| 192 | return &ipv6_hdr(skb)->daddr; |
David S. Miller | 3923297 | 2012-01-26 15:22:32 -0500 | [diff] [blame] | 193 | return daddr; |
| 194 | } |
| 195 | |
David Ahern | f8a1b43 | 2018-04-17 17:33:21 -0700 | [diff] [blame] | 196 | struct neighbour *ip6_neigh_lookup(const struct in6_addr *gw, |
| 197 | struct net_device *dev, |
| 198 | struct sk_buff *skb, |
| 199 | const void *daddr) |
David S. Miller | d3aaeb3 | 2011-07-18 00:40:17 -0700 | [diff] [blame] | 200 | { |
David S. Miller | 3923297 | 2012-01-26 15:22:32 -0500 | [diff] [blame] | 201 | struct neighbour *n; |
| 202 | |
David Ahern | f8a1b43 | 2018-04-17 17:33:21 -0700 | [diff] [blame] | 203 | daddr = choose_neigh_daddr(gw, skb, daddr); |
| 204 | n = __ipv6_neigh_lookup(dev, daddr); |
David S. Miller | f83c779 | 2011-12-28 15:41:23 -0500 | [diff] [blame] | 205 | if (n) |
| 206 | return n; |
David Ahern | f8a1b43 | 2018-04-17 17:33:21 -0700 | [diff] [blame] | 207 | return neigh_create(&nd_tbl, daddr, dev); |
| 208 | } |
| 209 | |
| 210 | static struct neighbour *ip6_dst_neigh_lookup(const struct dst_entry *dst, |
| 211 | struct sk_buff *skb, |
| 212 | const void *daddr) |
| 213 | { |
| 214 | const struct rt6_info *rt = container_of(dst, struct rt6_info, dst); |
| 215 | |
| 216 | return ip6_neigh_lookup(&rt->rt6i_gateway, dst->dev, skb, daddr); |
David S. Miller | f83c779 | 2011-12-28 15:41:23 -0500 | [diff] [blame] | 217 | } |
| 218 | |
Julian Anastasov | 63fca65 | 2017-02-06 23:14:15 +0200 | [diff] [blame] | 219 | static void ip6_confirm_neigh(const struct dst_entry *dst, const void *daddr) |
| 220 | { |
| 221 | struct net_device *dev = dst->dev; |
| 222 | struct rt6_info *rt = (struct rt6_info *)dst; |
| 223 | |
David Ahern | f8a1b43 | 2018-04-17 17:33:21 -0700 | [diff] [blame] | 224 | daddr = choose_neigh_daddr(&rt->rt6i_gateway, NULL, daddr); |
Julian Anastasov | 63fca65 | 2017-02-06 23:14:15 +0200 | [diff] [blame] | 225 | if (!daddr) |
| 226 | return; |
| 227 | if (dev->flags & (IFF_NOARP | IFF_LOOPBACK)) |
| 228 | return; |
| 229 | if (ipv6_addr_is_multicast((const struct in6_addr *)daddr)) |
| 230 | return; |
| 231 | __ipv6_confirm_neigh(dev, daddr); |
| 232 | } |
| 233 | |
Daniel Lezcano | 9a7ec3a | 2008-03-04 13:48:53 -0800 | [diff] [blame] | 234 | static struct dst_ops ip6_dst_ops_template = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 235 | .family = AF_INET6, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 236 | .gc = ip6_dst_gc, |
| 237 | .gc_thresh = 1024, |
| 238 | .check = ip6_dst_check, |
David S. Miller | 0dbaee3 | 2010-12-13 12:52:14 -0800 | [diff] [blame] | 239 | .default_advmss = ip6_default_advmss, |
Steffen Klassert | ebb762f | 2011-11-23 02:12:51 +0000 | [diff] [blame] | 240 | .mtu = ip6_mtu, |
David Ahern | d4ead6b | 2018-04-17 17:33:16 -0700 | [diff] [blame] | 241 | .cow_metrics = dst_cow_metrics_generic, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 242 | .destroy = ip6_dst_destroy, |
| 243 | .ifdown = ip6_dst_ifdown, |
| 244 | .negative_advice = ip6_negative_advice, |
| 245 | .link_failure = ip6_link_failure, |
| 246 | .update_pmtu = ip6_rt_update_pmtu, |
David S. Miller | 6e157b6 | 2012-07-12 00:05:02 -0700 | [diff] [blame] | 247 | .redirect = rt6_do_redirect, |
Eric W. Biederman | 9f8955c | 2015-10-07 16:48:39 -0500 | [diff] [blame] | 248 | .local_out = __ip6_local_out, |
David Ahern | f8a1b43 | 2018-04-17 17:33:21 -0700 | [diff] [blame] | 249 | .neigh_lookup = ip6_dst_neigh_lookup, |
Julian Anastasov | 63fca65 | 2017-02-06 23:14:15 +0200 | [diff] [blame] | 250 | .confirm_neigh = ip6_confirm_neigh, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 251 | }; |
| 252 | |
Steffen Klassert | ebb762f | 2011-11-23 02:12:51 +0000 | [diff] [blame] | 253 | static unsigned int ip6_blackhole_mtu(const struct dst_entry *dst) |
Roland Dreier | ec831ea | 2011-01-31 13:16:00 -0800 | [diff] [blame] | 254 | { |
Steffen Klassert | 618f9bc | 2011-11-23 02:13:31 +0000 | [diff] [blame] | 255 | unsigned int mtu = dst_metric_raw(dst, RTAX_MTU); |
| 256 | |
| 257 | return mtu ? : dst->dev->mtu; |
Roland Dreier | ec831ea | 2011-01-31 13:16:00 -0800 | [diff] [blame] | 258 | } |
| 259 | |
David S. Miller | 6700c27 | 2012-07-17 03:29:28 -0700 | [diff] [blame] | 260 | static void ip6_rt_blackhole_update_pmtu(struct dst_entry *dst, struct sock *sk, |
| 261 | struct sk_buff *skb, u32 mtu) |
David S. Miller | 14e50e5 | 2007-05-24 18:17:54 -0700 | [diff] [blame] | 262 | { |
| 263 | } |
| 264 | |
David S. Miller | 6700c27 | 2012-07-17 03:29:28 -0700 | [diff] [blame] | 265 | static void ip6_rt_blackhole_redirect(struct dst_entry *dst, struct sock *sk, |
| 266 | struct sk_buff *skb) |
David S. Miller | b587ee3 | 2012-07-12 00:39:24 -0700 | [diff] [blame] | 267 | { |
| 268 | } |
| 269 | |
David S. Miller | 14e50e5 | 2007-05-24 18:17:54 -0700 | [diff] [blame] | 270 | static struct dst_ops ip6_dst_blackhole_ops = { |
| 271 | .family = AF_INET6, |
David S. Miller | 14e50e5 | 2007-05-24 18:17:54 -0700 | [diff] [blame] | 272 | .destroy = ip6_dst_destroy, |
| 273 | .check = ip6_dst_check, |
Steffen Klassert | ebb762f | 2011-11-23 02:12:51 +0000 | [diff] [blame] | 274 | .mtu = ip6_blackhole_mtu, |
Eric Dumazet | 214f45c | 2011-02-18 11:39:01 -0800 | [diff] [blame] | 275 | .default_advmss = ip6_default_advmss, |
David S. Miller | 14e50e5 | 2007-05-24 18:17:54 -0700 | [diff] [blame] | 276 | .update_pmtu = ip6_rt_blackhole_update_pmtu, |
David S. Miller | b587ee3 | 2012-07-12 00:39:24 -0700 | [diff] [blame] | 277 | .redirect = ip6_rt_blackhole_redirect, |
Martin KaFai Lau | 0a1f596 | 2015-10-15 16:39:58 -0700 | [diff] [blame] | 278 | .cow_metrics = dst_cow_metrics_generic, |
David Ahern | f8a1b43 | 2018-04-17 17:33:21 -0700 | [diff] [blame] | 279 | .neigh_lookup = ip6_dst_neigh_lookup, |
David S. Miller | 14e50e5 | 2007-05-24 18:17:54 -0700 | [diff] [blame] | 280 | }; |
| 281 | |
David S. Miller | 62fa8a8 | 2011-01-26 20:51:05 -0800 | [diff] [blame] | 282 | static const u32 ip6_template_metrics[RTAX_MAX] = { |
Li RongQing | 14edd87 | 2012-10-24 14:01:18 +0800 | [diff] [blame] | 283 | [RTAX_HOPLIMIT - 1] = 0, |
David S. Miller | 62fa8a8 | 2011-01-26 20:51:05 -0800 | [diff] [blame] | 284 | }; |
| 285 | |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame^] | 286 | static const struct fib6_info fib6_null_entry_template = { |
David Ahern | 421842e | 2018-04-17 17:33:18 -0700 | [diff] [blame] | 287 | .rt6i_flags = (RTF_REJECT | RTF_NONEXTHOP), |
| 288 | .rt6i_protocol = RTPROT_KERNEL, |
| 289 | .rt6i_metric = ~(u32)0, |
| 290 | .rt6i_ref = ATOMIC_INIT(1), |
| 291 | .fib6_type = RTN_UNREACHABLE, |
| 292 | .fib6_metrics = (struct dst_metrics *)&dst_default_metrics, |
| 293 | }; |
| 294 | |
Eric Dumazet | fb0af4c | 2012-09-11 21:47:51 +0000 | [diff] [blame] | 295 | static const struct rt6_info ip6_null_entry_template = { |
Changli Gao | d8d1f30 | 2010-06-10 23:31:35 -0700 | [diff] [blame] | 296 | .dst = { |
| 297 | .__refcnt = ATOMIC_INIT(1), |
| 298 | .__use = 1, |
Nicolas Dichtel | 2c20cbd | 2012-09-10 22:09:47 +0000 | [diff] [blame] | 299 | .obsolete = DST_OBSOLETE_FORCE_CHK, |
Changli Gao | d8d1f30 | 2010-06-10 23:31:35 -0700 | [diff] [blame] | 300 | .error = -ENETUNREACH, |
Changli Gao | d8d1f30 | 2010-06-10 23:31:35 -0700 | [diff] [blame] | 301 | .input = ip6_pkt_discard, |
| 302 | .output = ip6_pkt_discard_out, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 303 | }, |
| 304 | .rt6i_flags = (RTF_REJECT | RTF_NONEXTHOP), |
Jean-Mickael Guerin | 4f72427 | 2009-05-20 17:38:59 -0700 | [diff] [blame] | 305 | .rt6i_protocol = RTPROT_KERNEL, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 306 | .rt6i_metric = ~(u32) 0, |
| 307 | .rt6i_ref = ATOMIC_INIT(1), |
David Ahern | e8478e8 | 2018-04-17 17:33:13 -0700 | [diff] [blame] | 308 | .fib6_type = RTN_UNREACHABLE, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 309 | }; |
| 310 | |
Thomas Graf | 101367c | 2006-08-04 03:39:02 -0700 | [diff] [blame] | 311 | #ifdef CONFIG_IPV6_MULTIPLE_TABLES |
| 312 | |
Eric Dumazet | fb0af4c | 2012-09-11 21:47:51 +0000 | [diff] [blame] | 313 | static const struct rt6_info ip6_prohibit_entry_template = { |
Changli Gao | d8d1f30 | 2010-06-10 23:31:35 -0700 | [diff] [blame] | 314 | .dst = { |
| 315 | .__refcnt = ATOMIC_INIT(1), |
| 316 | .__use = 1, |
Nicolas Dichtel | 2c20cbd | 2012-09-10 22:09:47 +0000 | [diff] [blame] | 317 | .obsolete = DST_OBSOLETE_FORCE_CHK, |
Changli Gao | d8d1f30 | 2010-06-10 23:31:35 -0700 | [diff] [blame] | 318 | .error = -EACCES, |
Changli Gao | d8d1f30 | 2010-06-10 23:31:35 -0700 | [diff] [blame] | 319 | .input = ip6_pkt_prohibit, |
| 320 | .output = ip6_pkt_prohibit_out, |
Thomas Graf | 101367c | 2006-08-04 03:39:02 -0700 | [diff] [blame] | 321 | }, |
| 322 | .rt6i_flags = (RTF_REJECT | RTF_NONEXTHOP), |
Jean-Mickael Guerin | 4f72427 | 2009-05-20 17:38:59 -0700 | [diff] [blame] | 323 | .rt6i_protocol = RTPROT_KERNEL, |
Thomas Graf | 101367c | 2006-08-04 03:39:02 -0700 | [diff] [blame] | 324 | .rt6i_metric = ~(u32) 0, |
| 325 | .rt6i_ref = ATOMIC_INIT(1), |
David Ahern | e8478e8 | 2018-04-17 17:33:13 -0700 | [diff] [blame] | 326 | .fib6_type = RTN_PROHIBIT, |
Thomas Graf | 101367c | 2006-08-04 03:39:02 -0700 | [diff] [blame] | 327 | }; |
| 328 | |
Eric Dumazet | fb0af4c | 2012-09-11 21:47:51 +0000 | [diff] [blame] | 329 | static const struct rt6_info ip6_blk_hole_entry_template = { |
Changli Gao | d8d1f30 | 2010-06-10 23:31:35 -0700 | [diff] [blame] | 330 | .dst = { |
| 331 | .__refcnt = ATOMIC_INIT(1), |
| 332 | .__use = 1, |
Nicolas Dichtel | 2c20cbd | 2012-09-10 22:09:47 +0000 | [diff] [blame] | 333 | .obsolete = DST_OBSOLETE_FORCE_CHK, |
Changli Gao | d8d1f30 | 2010-06-10 23:31:35 -0700 | [diff] [blame] | 334 | .error = -EINVAL, |
Changli Gao | d8d1f30 | 2010-06-10 23:31:35 -0700 | [diff] [blame] | 335 | .input = dst_discard, |
Eric W. Biederman | ede2059 | 2015-10-07 16:48:47 -0500 | [diff] [blame] | 336 | .output = dst_discard_out, |
Thomas Graf | 101367c | 2006-08-04 03:39:02 -0700 | [diff] [blame] | 337 | }, |
| 338 | .rt6i_flags = (RTF_REJECT | RTF_NONEXTHOP), |
Jean-Mickael Guerin | 4f72427 | 2009-05-20 17:38:59 -0700 | [diff] [blame] | 339 | .rt6i_protocol = RTPROT_KERNEL, |
Thomas Graf | 101367c | 2006-08-04 03:39:02 -0700 | [diff] [blame] | 340 | .rt6i_metric = ~(u32) 0, |
| 341 | .rt6i_ref = ATOMIC_INIT(1), |
David Ahern | e8478e8 | 2018-04-17 17:33:13 -0700 | [diff] [blame] | 342 | .fib6_type = RTN_BLACKHOLE, |
Thomas Graf | 101367c | 2006-08-04 03:39:02 -0700 | [diff] [blame] | 343 | }; |
| 344 | |
| 345 | #endif |
| 346 | |
Martin KaFai Lau | ebfa45f | 2015-10-15 16:39:57 -0700 | [diff] [blame] | 347 | static void rt6_info_init(struct rt6_info *rt) |
| 348 | { |
| 349 | struct dst_entry *dst = &rt->dst; |
| 350 | |
| 351 | memset(dst + 1, 0, sizeof(*rt) - sizeof(*dst)); |
| 352 | INIT_LIST_HEAD(&rt->rt6i_siblings); |
| 353 | INIT_LIST_HEAD(&rt->rt6i_uncached); |
| 354 | } |
| 355 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 356 | /* allocate dst with ip6_dst_ops */ |
David Ahern | 93531c6 | 2018-04-17 17:33:25 -0700 | [diff] [blame] | 357 | struct rt6_info *ip6_dst_alloc(struct net *net, struct net_device *dev, |
| 358 | int flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 359 | { |
David S. Miller | 97bab73 | 2012-06-09 22:36:36 -0700 | [diff] [blame] | 360 | struct rt6_info *rt = dst_alloc(&net->ipv6.ip6_dst_ops, dev, |
Wei Wang | b2a9c0e | 2017-06-17 10:42:41 -0700 | [diff] [blame] | 361 | 1, DST_OBSOLETE_FORCE_CHK, flags); |
David S. Miller | cf91166 | 2011-04-28 14:31:47 -0700 | [diff] [blame] | 362 | |
Wei Wang | 81eb844 | 2017-10-06 12:06:11 -0700 | [diff] [blame] | 363 | if (rt) { |
Martin KaFai Lau | ebfa45f | 2015-10-15 16:39:57 -0700 | [diff] [blame] | 364 | rt6_info_init(rt); |
Wei Wang | 81eb844 | 2017-10-06 12:06:11 -0700 | [diff] [blame] | 365 | atomic_inc(&net->ipv6.rt6_stats->fib_rt_alloc); |
| 366 | } |
Steffen Klassert | 8104891 | 2012-07-05 23:37:09 +0000 | [diff] [blame] | 367 | |
David S. Miller | cf91166 | 2011-04-28 14:31:47 -0700 | [diff] [blame] | 368 | return rt; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 369 | } |
David Ahern | 9ab179d | 2016-04-07 11:10:06 -0700 | [diff] [blame] | 370 | EXPORT_SYMBOL(ip6_dst_alloc); |
Martin KaFai Lau | d52d399 | 2015-05-22 20:56:06 -0700 | [diff] [blame] | 371 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 372 | static void ip6_dst_destroy(struct dst_entry *dst) |
| 373 | { |
| 374 | struct rt6_info *rt = (struct rt6_info *)dst; |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame^] | 375 | struct fib6_info *from = rt->from; |
Martin KaFai Lau | 8d0b94a | 2015-05-22 20:56:04 -0700 | [diff] [blame] | 376 | struct inet6_dev *idev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 377 | |
Martin KaFai Lau | 4b32b5a | 2015-04-28 13:03:06 -0700 | [diff] [blame] | 378 | dst_destroy_metrics_generic(dst); |
Martin KaFai Lau | 8d0b94a | 2015-05-22 20:56:04 -0700 | [diff] [blame] | 379 | rt6_uncached_list_del(rt); |
| 380 | |
| 381 | idev = rt->rt6i_idev; |
David S. Miller | 3830847 | 2011-12-03 18:02:47 -0500 | [diff] [blame] | 382 | if (idev) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 383 | rt->rt6i_idev = NULL; |
| 384 | in6_dev_put(idev); |
YOSHIFUJI Hideaki | 1ab1457 | 2007-02-09 23:24:49 +0900 | [diff] [blame] | 385 | } |
David Ahern | d4ead6b | 2018-04-17 17:33:16 -0700 | [diff] [blame] | 386 | |
David Miller | 3a2232e | 2017-11-28 15:40:40 -0500 | [diff] [blame] | 387 | rt->from = NULL; |
David Ahern | 93531c6 | 2018-04-17 17:33:25 -0700 | [diff] [blame] | 388 | fib6_info_release(from); |
David S. Miller | b341936 | 2010-11-30 12:27:11 -0800 | [diff] [blame] | 389 | } |
| 390 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 391 | static void ip6_dst_ifdown(struct dst_entry *dst, struct net_device *dev, |
| 392 | int how) |
| 393 | { |
| 394 | struct rt6_info *rt = (struct rt6_info *)dst; |
| 395 | struct inet6_dev *idev = rt->rt6i_idev; |
Denis V. Lunev | 5a3e55d | 2007-12-07 00:38:10 -0800 | [diff] [blame] | 396 | struct net_device *loopback_dev = |
YOSHIFUJI Hideaki | c346dca | 2008-03-25 21:47:49 +0900 | [diff] [blame] | 397 | dev_net(dev)->loopback_dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 398 | |
Wei Wang | e5645f5 | 2017-08-14 10:44:59 -0700 | [diff] [blame] | 399 | if (idev && idev->dev != loopback_dev) { |
| 400 | struct inet6_dev *loopback_idev = in6_dev_get(loopback_dev); |
| 401 | if (loopback_idev) { |
| 402 | rt->rt6i_idev = loopback_idev; |
| 403 | in6_dev_put(idev); |
David S. Miller | 97cac08 | 2012-07-02 22:43:47 -0700 | [diff] [blame] | 404 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 405 | } |
| 406 | } |
| 407 | |
Martin KaFai Lau | 5973fb1 | 2015-11-11 11:51:07 -0800 | [diff] [blame] | 408 | static bool __rt6_check_expired(const struct rt6_info *rt) |
| 409 | { |
| 410 | if (rt->rt6i_flags & RTF_EXPIRES) |
| 411 | return time_after(jiffies, rt->dst.expires); |
| 412 | else |
| 413 | return false; |
| 414 | } |
| 415 | |
Eric Dumazet | a50feda | 2012-05-18 18:57:34 +0000 | [diff] [blame] | 416 | static bool rt6_check_expired(const struct rt6_info *rt) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 417 | { |
Gao feng | 1716a96 | 2012-04-06 00:13:10 +0000 | [diff] [blame] | 418 | if (rt->rt6i_flags & RTF_EXPIRES) { |
| 419 | if (time_after(jiffies, rt->dst.expires)) |
Eric Dumazet | a50feda | 2012-05-18 18:57:34 +0000 | [diff] [blame] | 420 | return true; |
David Miller | 3a2232e | 2017-11-28 15:40:40 -0500 | [diff] [blame] | 421 | } else if (rt->from) { |
Xin Long | 1e2ea8a | 2017-08-26 20:10:10 +0800 | [diff] [blame] | 422 | return rt->dst.obsolete != DST_OBSOLETE_FORCE_CHK || |
David Ahern | 1489568 | 2018-04-17 17:33:17 -0700 | [diff] [blame] | 423 | fib6_check_expired(rt->from); |
Gao feng | 1716a96 | 2012-04-06 00:13:10 +0000 | [diff] [blame] | 424 | } |
Eric Dumazet | a50feda | 2012-05-18 18:57:34 +0000 | [diff] [blame] | 425 | return false; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 426 | } |
| 427 | |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame^] | 428 | static struct fib6_info *rt6_multipath_select(const struct net *net, |
| 429 | struct fib6_info *match, |
Nicolas Dichtel | 52bd4c0 | 2013-06-28 17:35:48 +0200 | [diff] [blame] | 430 | struct flowi6 *fl6, int oif, |
David Ahern | b75cc8f | 2018-03-02 08:32:17 -0800 | [diff] [blame] | 431 | const struct sk_buff *skb, |
Nicolas Dichtel | 52bd4c0 | 2013-06-28 17:35:48 +0200 | [diff] [blame] | 432 | int strict) |
Nicolas Dichtel | 51ebd31 | 2012-10-22 03:42:09 +0000 | [diff] [blame] | 433 | { |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame^] | 434 | struct fib6_info *sibling, *next_sibling; |
Nicolas Dichtel | 51ebd31 | 2012-10-22 03:42:09 +0000 | [diff] [blame] | 435 | |
Jakub Sitnicki | b673d6c | 2017-08-23 09:58:31 +0200 | [diff] [blame] | 436 | /* We might have already computed the hash for ICMPv6 errors. In such |
| 437 | * case it will always be non-zero. Otherwise now is the time to do it. |
| 438 | */ |
| 439 | if (!fl6->mp_hash) |
David Ahern | b4bac17 | 2018-03-02 08:32:18 -0800 | [diff] [blame] | 440 | fl6->mp_hash = rt6_multipath_hash(net, fl6, skb, NULL); |
Jakub Sitnicki | b673d6c | 2017-08-23 09:58:31 +0200 | [diff] [blame] | 441 | |
David Ahern | 5e670d8 | 2018-04-17 17:33:14 -0700 | [diff] [blame] | 442 | if (fl6->mp_hash <= atomic_read(&match->fib6_nh.nh_upper_bound)) |
Ido Schimmel | 3d709f6 | 2018-01-09 16:40:27 +0200 | [diff] [blame] | 443 | return match; |
Ido Schimmel | bbfcd77 | 2017-11-21 09:50:12 +0200 | [diff] [blame] | 444 | |
Ido Schimmel | 3d709f6 | 2018-01-09 16:40:27 +0200 | [diff] [blame] | 445 | list_for_each_entry_safe(sibling, next_sibling, &match->rt6i_siblings, |
| 446 | rt6i_siblings) { |
David Ahern | 5e670d8 | 2018-04-17 17:33:14 -0700 | [diff] [blame] | 447 | int nh_upper_bound; |
| 448 | |
| 449 | nh_upper_bound = atomic_read(&sibling->fib6_nh.nh_upper_bound); |
| 450 | if (fl6->mp_hash > nh_upper_bound) |
Ido Schimmel | 3d709f6 | 2018-01-09 16:40:27 +0200 | [diff] [blame] | 451 | continue; |
| 452 | if (rt6_score_route(sibling, oif, strict) < 0) |
| 453 | break; |
| 454 | match = sibling; |
| 455 | break; |
| 456 | } |
| 457 | |
Nicolas Dichtel | 51ebd31 | 2012-10-22 03:42:09 +0000 | [diff] [blame] | 458 | return match; |
| 459 | } |
| 460 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 461 | /* |
Wei Wang | 66f5d6c | 2017-10-06 12:06:10 -0700 | [diff] [blame] | 462 | * Route lookup. rcu_read_lock() should be held. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 463 | */ |
| 464 | |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame^] | 465 | static inline struct fib6_info *rt6_device_match(struct net *net, |
| 466 | struct fib6_info *rt, |
Eric Dumazet | b71d1d4 | 2011-04-22 04:53:02 +0000 | [diff] [blame] | 467 | const struct in6_addr *saddr, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 468 | int oif, |
YOSHIFUJI Hideaki | d420895 | 2008-06-27 20:14:54 -0700 | [diff] [blame] | 469 | int flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 470 | { |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame^] | 471 | struct fib6_info *local = NULL; |
| 472 | struct fib6_info *sprt; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 473 | |
David Ahern | 5e670d8 | 2018-04-17 17:33:14 -0700 | [diff] [blame] | 474 | if (!oif && ipv6_addr_any(saddr) && |
| 475 | !(rt->fib6_nh.nh_flags & RTNH_F_DEAD)) |
Ido Schimmel | 8067bb8 | 2018-01-07 12:45:09 +0200 | [diff] [blame] | 476 | return rt; |
YOSHIFUJI Hideaki | dd3abc4 | 2008-07-02 18:30:18 +0900 | [diff] [blame] | 477 | |
David Miller | 071fb37 | 2017-11-28 15:40:15 -0500 | [diff] [blame] | 478 | for (sprt = rt; sprt; sprt = rcu_dereference(sprt->rt6_next)) { |
David Ahern | 5e670d8 | 2018-04-17 17:33:14 -0700 | [diff] [blame] | 479 | const struct net_device *dev = sprt->fib6_nh.nh_dev; |
YOSHIFUJI Hideaki | dd3abc4 | 2008-07-02 18:30:18 +0900 | [diff] [blame] | 480 | |
David Ahern | 5e670d8 | 2018-04-17 17:33:14 -0700 | [diff] [blame] | 481 | if (sprt->fib6_nh.nh_flags & RTNH_F_DEAD) |
Ido Schimmel | 8067bb8 | 2018-01-07 12:45:09 +0200 | [diff] [blame] | 482 | continue; |
| 483 | |
YOSHIFUJI Hideaki | dd3abc4 | 2008-07-02 18:30:18 +0900 | [diff] [blame] | 484 | if (oif) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 485 | if (dev->ifindex == oif) |
| 486 | return sprt; |
| 487 | if (dev->flags & IFF_LOOPBACK) { |
David S. Miller | 3830847 | 2011-12-03 18:02:47 -0500 | [diff] [blame] | 488 | if (!sprt->rt6i_idev || |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 489 | sprt->rt6i_idev->dev->ifindex != oif) { |
David Ahern | 17fb0b2 | 2015-09-25 15:22:54 -0600 | [diff] [blame] | 490 | if (flags & RT6_LOOKUP_F_IFACE) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 491 | continue; |
David Ahern | 17fb0b2 | 2015-09-25 15:22:54 -0600 | [diff] [blame] | 492 | if (local && |
| 493 | local->rt6i_idev->dev->ifindex == oif) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 494 | continue; |
| 495 | } |
| 496 | local = sprt; |
| 497 | } |
YOSHIFUJI Hideaki | dd3abc4 | 2008-07-02 18:30:18 +0900 | [diff] [blame] | 498 | } else { |
| 499 | if (ipv6_chk_addr(net, saddr, dev, |
| 500 | flags & RT6_LOOKUP_F_IFACE)) |
| 501 | return sprt; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 502 | } |
YOSHIFUJI Hideaki | dd3abc4 | 2008-07-02 18:30:18 +0900 | [diff] [blame] | 503 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 504 | |
YOSHIFUJI Hideaki | dd3abc4 | 2008-07-02 18:30:18 +0900 | [diff] [blame] | 505 | if (oif) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 506 | if (local) |
| 507 | return local; |
| 508 | |
YOSHIFUJI Hideaki | d420895 | 2008-06-27 20:14:54 -0700 | [diff] [blame] | 509 | if (flags & RT6_LOOKUP_F_IFACE) |
David Ahern | 421842e | 2018-04-17 17:33:18 -0700 | [diff] [blame] | 510 | return net->ipv6.fib6_null_entry; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 511 | } |
Ido Schimmel | 8067bb8 | 2018-01-07 12:45:09 +0200 | [diff] [blame] | 512 | |
David Ahern | 421842e | 2018-04-17 17:33:18 -0700 | [diff] [blame] | 513 | return rt->fib6_nh.nh_flags & RTNH_F_DEAD ? net->ipv6.fib6_null_entry : rt; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 514 | } |
| 515 | |
YOSHIFUJI Hideaki | 2709725 | 2006-03-20 17:05:13 -0800 | [diff] [blame] | 516 | #ifdef CONFIG_IPV6_ROUTER_PREF |
Hannes Frederic Sowa | c2f17e8 | 2013-10-21 06:17:15 +0200 | [diff] [blame] | 517 | struct __rt6_probe_work { |
| 518 | struct work_struct work; |
| 519 | struct in6_addr target; |
| 520 | struct net_device *dev; |
| 521 | }; |
| 522 | |
| 523 | static void rt6_probe_deferred(struct work_struct *w) |
| 524 | { |
| 525 | struct in6_addr mcaddr; |
| 526 | struct __rt6_probe_work *work = |
| 527 | container_of(w, struct __rt6_probe_work, work); |
| 528 | |
| 529 | addrconf_addr_solict_mult(&work->target, &mcaddr); |
Erik Nordmark | adc176c | 2016-12-02 14:00:08 -0800 | [diff] [blame] | 530 | ndisc_send_ns(work->dev, &work->target, &mcaddr, NULL, 0); |
Hannes Frederic Sowa | c2f17e8 | 2013-10-21 06:17:15 +0200 | [diff] [blame] | 531 | dev_put(work->dev); |
Michael Büsch | 662f553 | 2015-02-08 10:14:07 +0100 | [diff] [blame] | 532 | kfree(work); |
Hannes Frederic Sowa | c2f17e8 | 2013-10-21 06:17:15 +0200 | [diff] [blame] | 533 | } |
| 534 | |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame^] | 535 | static void rt6_probe(struct fib6_info *rt) |
YOSHIFUJI Hideaki | 2709725 | 2006-03-20 17:05:13 -0800 | [diff] [blame] | 536 | { |
Martin KaFai Lau | 990edb4 | 2015-07-24 09:57:42 -0700 | [diff] [blame] | 537 | struct __rt6_probe_work *work; |
David Ahern | 5e670d8 | 2018-04-17 17:33:14 -0700 | [diff] [blame] | 538 | const struct in6_addr *nh_gw; |
Eric Dumazet | f2c31e3 | 2011-07-29 19:00:53 +0000 | [diff] [blame] | 539 | struct neighbour *neigh; |
David Ahern | 5e670d8 | 2018-04-17 17:33:14 -0700 | [diff] [blame] | 540 | struct net_device *dev; |
| 541 | |
YOSHIFUJI Hideaki | 2709725 | 2006-03-20 17:05:13 -0800 | [diff] [blame] | 542 | /* |
| 543 | * Okay, this does not seem to be appropriate |
| 544 | * for now, however, we need to check if it |
| 545 | * is really so; aka Router Reachability Probing. |
| 546 | * |
| 547 | * Router Reachability Probe MUST be rate-limited |
| 548 | * to no more than one per minute. |
| 549 | */ |
YOSHIFUJI Hideaki / 吉藤英明 | 2152cae | 2013-01-17 12:53:43 +0000 | [diff] [blame] | 550 | if (!rt || !(rt->rt6i_flags & RTF_GATEWAY)) |
Amerigo Wang | fdd6681 | 2012-09-10 02:48:44 +0000 | [diff] [blame] | 551 | return; |
David Ahern | 5e670d8 | 2018-04-17 17:33:14 -0700 | [diff] [blame] | 552 | |
| 553 | nh_gw = &rt->fib6_nh.nh_gw; |
| 554 | dev = rt->fib6_nh.nh_dev; |
YOSHIFUJI Hideaki / 吉藤英明 | 2152cae | 2013-01-17 12:53:43 +0000 | [diff] [blame] | 555 | rcu_read_lock_bh(); |
David Ahern | 5e670d8 | 2018-04-17 17:33:14 -0700 | [diff] [blame] | 556 | neigh = __ipv6_neigh_lookup_noref(dev, nh_gw); |
YOSHIFUJI Hideaki / 吉藤英明 | 2152cae | 2013-01-17 12:53:43 +0000 | [diff] [blame] | 557 | if (neigh) { |
Martin KaFai Lau | 8d6c31b | 2015-07-24 09:57:43 -0700 | [diff] [blame] | 558 | if (neigh->nud_state & NUD_VALID) |
| 559 | goto out; |
| 560 | |
Martin KaFai Lau | 990edb4 | 2015-07-24 09:57:42 -0700 | [diff] [blame] | 561 | work = NULL; |
YOSHIFUJI Hideaki / 吉藤英明 | 2152cae | 2013-01-17 12:53:43 +0000 | [diff] [blame] | 562 | write_lock(&neigh->lock); |
Martin KaFai Lau | 990edb4 | 2015-07-24 09:57:42 -0700 | [diff] [blame] | 563 | if (!(neigh->nud_state & NUD_VALID) && |
| 564 | time_after(jiffies, |
| 565 | neigh->updated + |
| 566 | rt->rt6i_idev->cnf.rtr_probe_interval)) { |
| 567 | work = kmalloc(sizeof(*work), GFP_ATOMIC); |
| 568 | if (work) |
| 569 | __neigh_set_probe_once(neigh); |
Hannes Frederic Sowa | c2f17e8 | 2013-10-21 06:17:15 +0200 | [diff] [blame] | 570 | } |
YOSHIFUJI Hideaki / 吉藤英明 | 2152cae | 2013-01-17 12:53:43 +0000 | [diff] [blame] | 571 | write_unlock(&neigh->lock); |
Martin KaFai Lau | 990edb4 | 2015-07-24 09:57:42 -0700 | [diff] [blame] | 572 | } else { |
| 573 | work = kmalloc(sizeof(*work), GFP_ATOMIC); |
Eric Dumazet | f2c31e3 | 2011-07-29 19:00:53 +0000 | [diff] [blame] | 574 | } |
Martin KaFai Lau | 990edb4 | 2015-07-24 09:57:42 -0700 | [diff] [blame] | 575 | |
| 576 | if (work) { |
| 577 | INIT_WORK(&work->work, rt6_probe_deferred); |
David Ahern | 5e670d8 | 2018-04-17 17:33:14 -0700 | [diff] [blame] | 578 | work->target = *nh_gw; |
| 579 | dev_hold(dev); |
| 580 | work->dev = dev; |
Martin KaFai Lau | 990edb4 | 2015-07-24 09:57:42 -0700 | [diff] [blame] | 581 | schedule_work(&work->work); |
| 582 | } |
| 583 | |
Martin KaFai Lau | 8d6c31b | 2015-07-24 09:57:43 -0700 | [diff] [blame] | 584 | out: |
YOSHIFUJI Hideaki / 吉藤英明 | 2152cae | 2013-01-17 12:53:43 +0000 | [diff] [blame] | 585 | rcu_read_unlock_bh(); |
YOSHIFUJI Hideaki | 2709725 | 2006-03-20 17:05:13 -0800 | [diff] [blame] | 586 | } |
| 587 | #else |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame^] | 588 | static inline void rt6_probe(struct fib6_info *rt) |
YOSHIFUJI Hideaki | 2709725 | 2006-03-20 17:05:13 -0800 | [diff] [blame] | 589 | { |
YOSHIFUJI Hideaki | 2709725 | 2006-03-20 17:05:13 -0800 | [diff] [blame] | 590 | } |
| 591 | #endif |
| 592 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 593 | /* |
YOSHIFUJI Hideaki | 554cfb7 | 2006-03-20 17:00:26 -0800 | [diff] [blame] | 594 | * Default Router Selection (RFC 2461 6.3.6) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 595 | */ |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame^] | 596 | static inline int rt6_check_dev(struct fib6_info *rt, int oif) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 597 | { |
David Ahern | 5e670d8 | 2018-04-17 17:33:14 -0700 | [diff] [blame] | 598 | const struct net_device *dev = rt->fib6_nh.nh_dev; |
| 599 | |
David S. Miller | 161980f | 2007-04-06 11:42:27 -0700 | [diff] [blame] | 600 | if (!oif || dev->ifindex == oif) |
YOSHIFUJI Hideaki | 554cfb7 | 2006-03-20 17:00:26 -0800 | [diff] [blame] | 601 | return 2; |
David S. Miller | 161980f | 2007-04-06 11:42:27 -0700 | [diff] [blame] | 602 | if ((dev->flags & IFF_LOOPBACK) && |
| 603 | rt->rt6i_idev && rt->rt6i_idev->dev->ifindex == oif) |
| 604 | return 1; |
| 605 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 606 | } |
| 607 | |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame^] | 608 | static inline enum rt6_nud_state rt6_check_neigh(struct fib6_info *rt) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 609 | { |
Hannes Frederic Sowa | afc154e | 2013-07-11 12:43:42 +0200 | [diff] [blame] | 610 | enum rt6_nud_state ret = RT6_NUD_FAIL_HARD; |
David Ahern | 5e670d8 | 2018-04-17 17:33:14 -0700 | [diff] [blame] | 611 | struct neighbour *neigh; |
Eric Dumazet | f2c31e3 | 2011-07-29 19:00:53 +0000 | [diff] [blame] | 612 | |
YOSHIFUJI Hideaki | 4d0c591 | 2006-05-26 13:23:41 -0700 | [diff] [blame] | 613 | if (rt->rt6i_flags & RTF_NONEXTHOP || |
| 614 | !(rt->rt6i_flags & RTF_GATEWAY)) |
Hannes Frederic Sowa | afc154e | 2013-07-11 12:43:42 +0200 | [diff] [blame] | 615 | return RT6_NUD_SUCCEED; |
YOSHIFUJI Hideaki / 吉藤英明 | 145a362 | 2013-01-17 12:53:38 +0000 | [diff] [blame] | 616 | |
| 617 | rcu_read_lock_bh(); |
David Ahern | 5e670d8 | 2018-04-17 17:33:14 -0700 | [diff] [blame] | 618 | neigh = __ipv6_neigh_lookup_noref(rt->fib6_nh.nh_dev, |
| 619 | &rt->fib6_nh.nh_gw); |
YOSHIFUJI Hideaki / 吉藤英明 | 145a362 | 2013-01-17 12:53:38 +0000 | [diff] [blame] | 620 | if (neigh) { |
| 621 | read_lock(&neigh->lock); |
YOSHIFUJI Hideaki | 554cfb7 | 2006-03-20 17:00:26 -0800 | [diff] [blame] | 622 | if (neigh->nud_state & NUD_VALID) |
Hannes Frederic Sowa | afc154e | 2013-07-11 12:43:42 +0200 | [diff] [blame] | 623 | ret = RT6_NUD_SUCCEED; |
YOSHIFUJI Hideaki | 398bcbe | 2008-01-19 00:35:16 -0800 | [diff] [blame] | 624 | #ifdef CONFIG_IPV6_ROUTER_PREF |
Paul Marks | a5a81f0 | 2012-12-03 10:26:54 +0000 | [diff] [blame] | 625 | else if (!(neigh->nud_state & NUD_FAILED)) |
Hannes Frederic Sowa | afc154e | 2013-07-11 12:43:42 +0200 | [diff] [blame] | 626 | ret = RT6_NUD_SUCCEED; |
Jiri Benc | 7e98056 | 2013-12-11 13:48:20 +0100 | [diff] [blame] | 627 | else |
| 628 | ret = RT6_NUD_FAIL_PROBE; |
YOSHIFUJI Hideaki | 398bcbe | 2008-01-19 00:35:16 -0800 | [diff] [blame] | 629 | #endif |
YOSHIFUJI Hideaki / 吉藤英明 | 145a362 | 2013-01-17 12:53:38 +0000 | [diff] [blame] | 630 | read_unlock(&neigh->lock); |
Hannes Frederic Sowa | afc154e | 2013-07-11 12:43:42 +0200 | [diff] [blame] | 631 | } else { |
| 632 | ret = IS_ENABLED(CONFIG_IPV6_ROUTER_PREF) ? |
Jiri Benc | 7e98056 | 2013-12-11 13:48:20 +0100 | [diff] [blame] | 633 | RT6_NUD_SUCCEED : RT6_NUD_FAIL_DO_RR; |
Paul Marks | a5a81f0 | 2012-12-03 10:26:54 +0000 | [diff] [blame] | 634 | } |
YOSHIFUJI Hideaki / 吉藤英明 | 145a362 | 2013-01-17 12:53:38 +0000 | [diff] [blame] | 635 | rcu_read_unlock_bh(); |
| 636 | |
Paul Marks | a5a81f0 | 2012-12-03 10:26:54 +0000 | [diff] [blame] | 637 | return ret; |
YOSHIFUJI Hideaki | 554cfb7 | 2006-03-20 17:00:26 -0800 | [diff] [blame] | 638 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 639 | |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame^] | 640 | static int rt6_score_route(struct fib6_info *rt, int oif, int strict) |
YOSHIFUJI Hideaki | 554cfb7 | 2006-03-20 17:00:26 -0800 | [diff] [blame] | 641 | { |
Paul Marks | a5a81f0 | 2012-12-03 10:26:54 +0000 | [diff] [blame] | 642 | int m; |
YOSHIFUJI Hideaki | 1ab1457 | 2007-02-09 23:24:49 +0900 | [diff] [blame] | 643 | |
YOSHIFUJI Hideaki | 4d0c591 | 2006-05-26 13:23:41 -0700 | [diff] [blame] | 644 | m = rt6_check_dev(rt, oif); |
YOSHIFUJI Hideaki | 77d16f4 | 2006-08-23 17:25:05 -0700 | [diff] [blame] | 645 | if (!m && (strict & RT6_LOOKUP_F_IFACE)) |
Hannes Frederic Sowa | afc154e | 2013-07-11 12:43:42 +0200 | [diff] [blame] | 646 | return RT6_NUD_FAIL_HARD; |
YOSHIFUJI Hideaki | ebacaaa | 2006-03-20 17:04:53 -0800 | [diff] [blame] | 647 | #ifdef CONFIG_IPV6_ROUTER_PREF |
| 648 | m |= IPV6_DECODE_PREF(IPV6_EXTRACT_PREF(rt->rt6i_flags)) << 2; |
| 649 | #endif |
Hannes Frederic Sowa | afc154e | 2013-07-11 12:43:42 +0200 | [diff] [blame] | 650 | if (strict & RT6_LOOKUP_F_REACHABLE) { |
| 651 | int n = rt6_check_neigh(rt); |
| 652 | if (n < 0) |
| 653 | return n; |
| 654 | } |
YOSHIFUJI Hideaki | 554cfb7 | 2006-03-20 17:00:26 -0800 | [diff] [blame] | 655 | return m; |
| 656 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 657 | |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame^] | 658 | static struct fib6_info *find_match(struct fib6_info *rt, int oif, int strict, |
| 659 | int *mpri, struct fib6_info *match, |
Hannes Frederic Sowa | afc154e | 2013-07-11 12:43:42 +0200 | [diff] [blame] | 660 | bool *do_rr) |
YOSHIFUJI Hideaki | 554cfb7 | 2006-03-20 17:00:26 -0800 | [diff] [blame] | 661 | { |
David S. Miller | f11e665 | 2007-03-24 20:36:25 -0700 | [diff] [blame] | 662 | int m; |
Hannes Frederic Sowa | afc154e | 2013-07-11 12:43:42 +0200 | [diff] [blame] | 663 | bool match_do_rr = false; |
Andy Gospodarek | 35103d1 | 2015-08-13 10:39:01 -0400 | [diff] [blame] | 664 | struct inet6_dev *idev = rt->rt6i_idev; |
Andy Gospodarek | 35103d1 | 2015-08-13 10:39:01 -0400 | [diff] [blame] | 665 | |
David Ahern | 5e670d8 | 2018-04-17 17:33:14 -0700 | [diff] [blame] | 666 | if (rt->fib6_nh.nh_flags & RTNH_F_DEAD) |
Ido Schimmel | 8067bb8 | 2018-01-07 12:45:09 +0200 | [diff] [blame] | 667 | goto out; |
| 668 | |
Ido Schimmel | 14c5206 | 2018-01-07 12:45:07 +0200 | [diff] [blame] | 669 | if (idev->cnf.ignore_routes_with_linkdown && |
David Ahern | 5e670d8 | 2018-04-17 17:33:14 -0700 | [diff] [blame] | 670 | rt->fib6_nh.nh_flags & RTNH_F_LINKDOWN && |
David Ahern | d5d32e4 | 2016-10-24 12:27:23 -0700 | [diff] [blame] | 671 | !(strict & RT6_LOOKUP_F_IGNORE_LINKSTATE)) |
Andy Gospodarek | 35103d1 | 2015-08-13 10:39:01 -0400 | [diff] [blame] | 672 | goto out; |
David S. Miller | f11e665 | 2007-03-24 20:36:25 -0700 | [diff] [blame] | 673 | |
David Ahern | 1489568 | 2018-04-17 17:33:17 -0700 | [diff] [blame] | 674 | if (fib6_check_expired(rt)) |
David S. Miller | f11e665 | 2007-03-24 20:36:25 -0700 | [diff] [blame] | 675 | goto out; |
| 676 | |
| 677 | m = rt6_score_route(rt, oif, strict); |
Jiri Benc | 7e98056 | 2013-12-11 13:48:20 +0100 | [diff] [blame] | 678 | if (m == RT6_NUD_FAIL_DO_RR) { |
Hannes Frederic Sowa | afc154e | 2013-07-11 12:43:42 +0200 | [diff] [blame] | 679 | match_do_rr = true; |
| 680 | m = 0; /* lowest valid score */ |
Jiri Benc | 7e98056 | 2013-12-11 13:48:20 +0100 | [diff] [blame] | 681 | } else if (m == RT6_NUD_FAIL_HARD) { |
David S. Miller | f11e665 | 2007-03-24 20:36:25 -0700 | [diff] [blame] | 682 | goto out; |
David S. Miller | f11e665 | 2007-03-24 20:36:25 -0700 | [diff] [blame] | 683 | } |
| 684 | |
Hannes Frederic Sowa | afc154e | 2013-07-11 12:43:42 +0200 | [diff] [blame] | 685 | if (strict & RT6_LOOKUP_F_REACHABLE) |
| 686 | rt6_probe(rt); |
| 687 | |
Jiri Benc | 7e98056 | 2013-12-11 13:48:20 +0100 | [diff] [blame] | 688 | /* note that m can be RT6_NUD_FAIL_PROBE at this point */ |
Hannes Frederic Sowa | afc154e | 2013-07-11 12:43:42 +0200 | [diff] [blame] | 689 | if (m > *mpri) { |
| 690 | *do_rr = match_do_rr; |
| 691 | *mpri = m; |
| 692 | match = rt; |
| 693 | } |
David S. Miller | f11e665 | 2007-03-24 20:36:25 -0700 | [diff] [blame] | 694 | out: |
| 695 | return match; |
| 696 | } |
| 697 | |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame^] | 698 | static struct fib6_info *find_rr_leaf(struct fib6_node *fn, |
| 699 | struct fib6_info *leaf, |
| 700 | struct fib6_info *rr_head, |
Hannes Frederic Sowa | afc154e | 2013-07-11 12:43:42 +0200 | [diff] [blame] | 701 | u32 metric, int oif, int strict, |
| 702 | bool *do_rr) |
David S. Miller | f11e665 | 2007-03-24 20:36:25 -0700 | [diff] [blame] | 703 | { |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame^] | 704 | struct fib6_info *rt, *match, *cont; |
YOSHIFUJI Hideaki | 554cfb7 | 2006-03-20 17:00:26 -0800 | [diff] [blame] | 705 | int mpri = -1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 706 | |
David S. Miller | f11e665 | 2007-03-24 20:36:25 -0700 | [diff] [blame] | 707 | match = NULL; |
Steffen Klassert | 9fbdcfa | 2015-04-28 13:03:04 -0700 | [diff] [blame] | 708 | cont = NULL; |
David Miller | 071fb37 | 2017-11-28 15:40:15 -0500 | [diff] [blame] | 709 | for (rt = rr_head; rt; rt = rcu_dereference(rt->rt6_next)) { |
Steffen Klassert | 9fbdcfa | 2015-04-28 13:03:04 -0700 | [diff] [blame] | 710 | if (rt->rt6i_metric != metric) { |
| 711 | cont = rt; |
| 712 | break; |
| 713 | } |
| 714 | |
Hannes Frederic Sowa | afc154e | 2013-07-11 12:43:42 +0200 | [diff] [blame] | 715 | match = find_match(rt, oif, strict, &mpri, match, do_rr); |
Steffen Klassert | 9fbdcfa | 2015-04-28 13:03:04 -0700 | [diff] [blame] | 716 | } |
| 717 | |
Wei Wang | 66f5d6c | 2017-10-06 12:06:10 -0700 | [diff] [blame] | 718 | for (rt = leaf; rt && rt != rr_head; |
David Miller | 071fb37 | 2017-11-28 15:40:15 -0500 | [diff] [blame] | 719 | rt = rcu_dereference(rt->rt6_next)) { |
Steffen Klassert | 9fbdcfa | 2015-04-28 13:03:04 -0700 | [diff] [blame] | 720 | if (rt->rt6i_metric != metric) { |
| 721 | cont = rt; |
| 722 | break; |
| 723 | } |
| 724 | |
| 725 | match = find_match(rt, oif, strict, &mpri, match, do_rr); |
| 726 | } |
| 727 | |
| 728 | if (match || !cont) |
| 729 | return match; |
| 730 | |
David Miller | 071fb37 | 2017-11-28 15:40:15 -0500 | [diff] [blame] | 731 | for (rt = cont; rt; rt = rcu_dereference(rt->rt6_next)) |
Hannes Frederic Sowa | afc154e | 2013-07-11 12:43:42 +0200 | [diff] [blame] | 732 | match = find_match(rt, oif, strict, &mpri, match, do_rr); |
YOSHIFUJI Hideaki | 554cfb7 | 2006-03-20 17:00:26 -0800 | [diff] [blame] | 733 | |
David S. Miller | f11e665 | 2007-03-24 20:36:25 -0700 | [diff] [blame] | 734 | return match; |
| 735 | } |
YOSHIFUJI Hideaki | 554cfb7 | 2006-03-20 17:00:26 -0800 | [diff] [blame] | 736 | |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame^] | 737 | static struct fib6_info *rt6_select(struct net *net, struct fib6_node *fn, |
Wei Wang | 8d1040e | 2017-10-06 12:06:08 -0700 | [diff] [blame] | 738 | int oif, int strict) |
David S. Miller | f11e665 | 2007-03-24 20:36:25 -0700 | [diff] [blame] | 739 | { |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame^] | 740 | struct fib6_info *leaf = rcu_dereference(fn->leaf); |
| 741 | struct fib6_info *match, *rt0; |
Hannes Frederic Sowa | afc154e | 2013-07-11 12:43:42 +0200 | [diff] [blame] | 742 | bool do_rr = false; |
Wei Wang | 17ecf59 | 2017-10-06 12:06:09 -0700 | [diff] [blame] | 743 | int key_plen; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 744 | |
David Ahern | 421842e | 2018-04-17 17:33:18 -0700 | [diff] [blame] | 745 | if (!leaf || leaf == net->ipv6.fib6_null_entry) |
| 746 | return net->ipv6.fib6_null_entry; |
Wei Wang | 8d1040e | 2017-10-06 12:06:08 -0700 | [diff] [blame] | 747 | |
Wei Wang | 66f5d6c | 2017-10-06 12:06:10 -0700 | [diff] [blame] | 748 | rt0 = rcu_dereference(fn->rr_ptr); |
David S. Miller | f11e665 | 2007-03-24 20:36:25 -0700 | [diff] [blame] | 749 | if (!rt0) |
Wei Wang | 66f5d6c | 2017-10-06 12:06:10 -0700 | [diff] [blame] | 750 | rt0 = leaf; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 751 | |
Wei Wang | 17ecf59 | 2017-10-06 12:06:09 -0700 | [diff] [blame] | 752 | /* Double check to make sure fn is not an intermediate node |
| 753 | * and fn->leaf does not points to its child's leaf |
| 754 | * (This might happen if all routes under fn are deleted from |
| 755 | * the tree and fib6_repair_tree() is called on the node.) |
| 756 | */ |
| 757 | key_plen = rt0->rt6i_dst.plen; |
| 758 | #ifdef CONFIG_IPV6_SUBTREES |
| 759 | if (rt0->rt6i_src.plen) |
| 760 | key_plen = rt0->rt6i_src.plen; |
| 761 | #endif |
| 762 | if (fn->fn_bit != key_plen) |
David Ahern | 421842e | 2018-04-17 17:33:18 -0700 | [diff] [blame] | 763 | return net->ipv6.fib6_null_entry; |
Wei Wang | 17ecf59 | 2017-10-06 12:06:09 -0700 | [diff] [blame] | 764 | |
Wei Wang | 8d1040e | 2017-10-06 12:06:08 -0700 | [diff] [blame] | 765 | match = find_rr_leaf(fn, leaf, rt0, rt0->rt6i_metric, oif, strict, |
Hannes Frederic Sowa | afc154e | 2013-07-11 12:43:42 +0200 | [diff] [blame] | 766 | &do_rr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 767 | |
Hannes Frederic Sowa | afc154e | 2013-07-11 12:43:42 +0200 | [diff] [blame] | 768 | if (do_rr) { |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame^] | 769 | struct fib6_info *next = rcu_dereference(rt0->rt6_next); |
David S. Miller | f11e665 | 2007-03-24 20:36:25 -0700 | [diff] [blame] | 770 | |
YOSHIFUJI Hideaki | 554cfb7 | 2006-03-20 17:00:26 -0800 | [diff] [blame] | 771 | /* no entries matched; do round-robin */ |
David S. Miller | f11e665 | 2007-03-24 20:36:25 -0700 | [diff] [blame] | 772 | if (!next || next->rt6i_metric != rt0->rt6i_metric) |
Wei Wang | 8d1040e | 2017-10-06 12:06:08 -0700 | [diff] [blame] | 773 | next = leaf; |
David S. Miller | f11e665 | 2007-03-24 20:36:25 -0700 | [diff] [blame] | 774 | |
Wei Wang | 66f5d6c | 2017-10-06 12:06:10 -0700 | [diff] [blame] | 775 | if (next != rt0) { |
| 776 | spin_lock_bh(&leaf->rt6i_table->tb6_lock); |
| 777 | /* make sure next is not being deleted from the tree */ |
| 778 | if (next->rt6i_node) |
| 779 | rcu_assign_pointer(fn->rr_ptr, next); |
| 780 | spin_unlock_bh(&leaf->rt6i_table->tb6_lock); |
| 781 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 782 | } |
| 783 | |
David Ahern | 421842e | 2018-04-17 17:33:18 -0700 | [diff] [blame] | 784 | return match ? match : net->ipv6.fib6_null_entry; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 785 | } |
| 786 | |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame^] | 787 | static bool rt6_is_gw_or_nonexthop(const struct fib6_info *rt) |
Martin KaFai Lau | 8b9df26 | 2015-05-22 20:55:59 -0700 | [diff] [blame] | 788 | { |
| 789 | return (rt->rt6i_flags & (RTF_NONEXTHOP | RTF_GATEWAY)); |
| 790 | } |
| 791 | |
YOSHIFUJI Hideaki | 70ceb4f | 2006-03-20 17:06:24 -0800 | [diff] [blame] | 792 | #ifdef CONFIG_IPV6_ROUTE_INFO |
| 793 | int rt6_route_rcv(struct net_device *dev, u8 *opt, int len, |
Eric Dumazet | b71d1d4 | 2011-04-22 04:53:02 +0000 | [diff] [blame] | 794 | const struct in6_addr *gwaddr) |
YOSHIFUJI Hideaki | 70ceb4f | 2006-03-20 17:06:24 -0800 | [diff] [blame] | 795 | { |
YOSHIFUJI Hideaki | c346dca | 2008-03-25 21:47:49 +0900 | [diff] [blame] | 796 | struct net *net = dev_net(dev); |
YOSHIFUJI Hideaki | 70ceb4f | 2006-03-20 17:06:24 -0800 | [diff] [blame] | 797 | struct route_info *rinfo = (struct route_info *) opt; |
| 798 | struct in6_addr prefix_buf, *prefix; |
| 799 | unsigned int pref; |
YOSHIFUJI Hideaki | 4bed72e | 2008-05-27 17:37:49 +0900 | [diff] [blame] | 800 | unsigned long lifetime; |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame^] | 801 | struct fib6_info *rt; |
YOSHIFUJI Hideaki | 70ceb4f | 2006-03-20 17:06:24 -0800 | [diff] [blame] | 802 | |
| 803 | if (len < sizeof(struct route_info)) { |
| 804 | return -EINVAL; |
| 805 | } |
| 806 | |
| 807 | /* Sanity check for prefix_len and length */ |
| 808 | if (rinfo->length > 3) { |
| 809 | return -EINVAL; |
| 810 | } else if (rinfo->prefix_len > 128) { |
| 811 | return -EINVAL; |
| 812 | } else if (rinfo->prefix_len > 64) { |
| 813 | if (rinfo->length < 2) { |
| 814 | return -EINVAL; |
| 815 | } |
| 816 | } else if (rinfo->prefix_len > 0) { |
| 817 | if (rinfo->length < 1) { |
| 818 | return -EINVAL; |
| 819 | } |
| 820 | } |
| 821 | |
| 822 | pref = rinfo->route_pref; |
| 823 | if (pref == ICMPV6_ROUTER_PREF_INVALID) |
Jens Rosenboom | 3933fc9 | 2009-09-10 06:25:11 +0000 | [diff] [blame] | 824 | return -EINVAL; |
YOSHIFUJI Hideaki | 70ceb4f | 2006-03-20 17:06:24 -0800 | [diff] [blame] | 825 | |
YOSHIFUJI Hideaki | 4bed72e | 2008-05-27 17:37:49 +0900 | [diff] [blame] | 826 | lifetime = addrconf_timeout_fixup(ntohl(rinfo->lifetime), HZ); |
YOSHIFUJI Hideaki | 70ceb4f | 2006-03-20 17:06:24 -0800 | [diff] [blame] | 827 | |
| 828 | if (rinfo->length == 3) |
| 829 | prefix = (struct in6_addr *)rinfo->prefix; |
| 830 | else { |
| 831 | /* this function is safe */ |
| 832 | ipv6_addr_prefix(&prefix_buf, |
| 833 | (struct in6_addr *)rinfo->prefix, |
| 834 | rinfo->prefix_len); |
| 835 | prefix = &prefix_buf; |
| 836 | } |
| 837 | |
Duan Jiong | f104a56 | 2013-11-08 09:56:53 +0800 | [diff] [blame] | 838 | if (rinfo->prefix_len == 0) |
David Ahern | afb1d4b5 | 2018-04-17 17:33:11 -0700 | [diff] [blame] | 839 | rt = rt6_get_dflt_router(net, gwaddr, dev); |
Duan Jiong | f104a56 | 2013-11-08 09:56:53 +0800 | [diff] [blame] | 840 | else |
| 841 | rt = rt6_get_route_info(net, prefix, rinfo->prefix_len, |
David Ahern | 830218c | 2016-10-24 10:52:35 -0700 | [diff] [blame] | 842 | gwaddr, dev); |
YOSHIFUJI Hideaki | 70ceb4f | 2006-03-20 17:06:24 -0800 | [diff] [blame] | 843 | |
| 844 | if (rt && !lifetime) { |
David Ahern | afb1d4b5 | 2018-04-17 17:33:11 -0700 | [diff] [blame] | 845 | ip6_del_rt(net, rt); |
YOSHIFUJI Hideaki | 70ceb4f | 2006-03-20 17:06:24 -0800 | [diff] [blame] | 846 | rt = NULL; |
| 847 | } |
| 848 | |
| 849 | if (!rt && lifetime) |
David Ahern | 830218c | 2016-10-24 10:52:35 -0700 | [diff] [blame] | 850 | rt = rt6_add_route_info(net, prefix, rinfo->prefix_len, gwaddr, |
| 851 | dev, pref); |
YOSHIFUJI Hideaki | 70ceb4f | 2006-03-20 17:06:24 -0800 | [diff] [blame] | 852 | else if (rt) |
| 853 | rt->rt6i_flags = RTF_ROUTEINFO | |
| 854 | (rt->rt6i_flags & ~RTF_PREF_MASK) | RTF_PREF(pref); |
| 855 | |
| 856 | if (rt) { |
Gao feng | 1716a96 | 2012-04-06 00:13:10 +0000 | [diff] [blame] | 857 | if (!addrconf_finite_timeout(lifetime)) |
David Ahern | 1489568 | 2018-04-17 17:33:17 -0700 | [diff] [blame] | 858 | fib6_clean_expires(rt); |
Gao feng | 1716a96 | 2012-04-06 00:13:10 +0000 | [diff] [blame] | 859 | else |
David Ahern | 1489568 | 2018-04-17 17:33:17 -0700 | [diff] [blame] | 860 | fib6_set_expires(rt, jiffies + HZ * lifetime); |
Gao feng | 1716a96 | 2012-04-06 00:13:10 +0000 | [diff] [blame] | 861 | |
David Ahern | 93531c6 | 2018-04-17 17:33:25 -0700 | [diff] [blame] | 862 | fib6_info_release(rt); |
YOSHIFUJI Hideaki | 70ceb4f | 2006-03-20 17:06:24 -0800 | [diff] [blame] | 863 | } |
| 864 | return 0; |
| 865 | } |
| 866 | #endif |
| 867 | |
David Ahern | ae90d86 | 2018-04-17 17:33:12 -0700 | [diff] [blame] | 868 | /* |
| 869 | * Misc support functions |
| 870 | */ |
| 871 | |
| 872 | /* called with rcu_lock held */ |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame^] | 873 | static struct net_device *ip6_rt_get_dev_rcu(struct fib6_info *rt) |
David Ahern | ae90d86 | 2018-04-17 17:33:12 -0700 | [diff] [blame] | 874 | { |
David Ahern | 5e670d8 | 2018-04-17 17:33:14 -0700 | [diff] [blame] | 875 | struct net_device *dev = rt->fib6_nh.nh_dev; |
David Ahern | ae90d86 | 2018-04-17 17:33:12 -0700 | [diff] [blame] | 876 | |
| 877 | if (rt->rt6i_flags & (RTF_LOCAL | RTF_ANYCAST)) { |
| 878 | /* for copies of local routes, dst->dev needs to be the |
| 879 | * device if it is a master device, the master device if |
| 880 | * device is enslaved, and the loopback as the default |
| 881 | */ |
| 882 | if (netif_is_l3_slave(dev) && |
| 883 | !rt6_need_strict(&rt->rt6i_dst.addr)) |
| 884 | dev = l3mdev_master_dev_rcu(dev); |
| 885 | else if (!netif_is_l3_master(dev)) |
| 886 | dev = dev_net(dev)->loopback_dev; |
| 887 | /* last case is netif_is_l3_master(dev) is true in which |
| 888 | * case we want dev returned to be dev |
| 889 | */ |
| 890 | } |
| 891 | |
| 892 | return dev; |
| 893 | } |
| 894 | |
David Ahern | 6edb3c9 | 2018-04-17 17:33:15 -0700 | [diff] [blame] | 895 | static const int fib6_prop[RTN_MAX + 1] = { |
| 896 | [RTN_UNSPEC] = 0, |
| 897 | [RTN_UNICAST] = 0, |
| 898 | [RTN_LOCAL] = 0, |
| 899 | [RTN_BROADCAST] = 0, |
| 900 | [RTN_ANYCAST] = 0, |
| 901 | [RTN_MULTICAST] = 0, |
| 902 | [RTN_BLACKHOLE] = -EINVAL, |
| 903 | [RTN_UNREACHABLE] = -EHOSTUNREACH, |
| 904 | [RTN_PROHIBIT] = -EACCES, |
| 905 | [RTN_THROW] = -EAGAIN, |
| 906 | [RTN_NAT] = -EINVAL, |
| 907 | [RTN_XRESOLVE] = -EINVAL, |
| 908 | }; |
| 909 | |
| 910 | static int ip6_rt_type_to_error(u8 fib6_type) |
| 911 | { |
| 912 | return fib6_prop[fib6_type]; |
| 913 | } |
| 914 | |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame^] | 915 | static unsigned short fib6_info_dst_flags(struct fib6_info *rt) |
David Ahern | 3b6761d | 2018-04-17 17:33:20 -0700 | [diff] [blame] | 916 | { |
| 917 | unsigned short flags = 0; |
| 918 | |
| 919 | if (rt->dst_nocount) |
| 920 | flags |= DST_NOCOUNT; |
| 921 | if (rt->dst_nopolicy) |
| 922 | flags |= DST_NOPOLICY; |
| 923 | if (rt->dst_host) |
| 924 | flags |= DST_HOST; |
| 925 | |
| 926 | return flags; |
| 927 | } |
| 928 | |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame^] | 929 | static void ip6_rt_init_dst_reject(struct rt6_info *rt, struct fib6_info *ort) |
David Ahern | 6edb3c9 | 2018-04-17 17:33:15 -0700 | [diff] [blame] | 930 | { |
| 931 | rt->dst.error = ip6_rt_type_to_error(ort->fib6_type); |
| 932 | |
| 933 | switch (ort->fib6_type) { |
| 934 | case RTN_BLACKHOLE: |
| 935 | rt->dst.output = dst_discard_out; |
| 936 | rt->dst.input = dst_discard; |
| 937 | break; |
| 938 | case RTN_PROHIBIT: |
| 939 | rt->dst.output = ip6_pkt_prohibit_out; |
| 940 | rt->dst.input = ip6_pkt_prohibit; |
| 941 | break; |
| 942 | case RTN_THROW: |
| 943 | case RTN_UNREACHABLE: |
| 944 | default: |
| 945 | rt->dst.output = ip6_pkt_discard_out; |
| 946 | rt->dst.input = ip6_pkt_discard; |
| 947 | break; |
| 948 | } |
| 949 | } |
| 950 | |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame^] | 951 | static void ip6_rt_init_dst(struct rt6_info *rt, struct fib6_info *ort) |
David Ahern | 6edb3c9 | 2018-04-17 17:33:15 -0700 | [diff] [blame] | 952 | { |
David Ahern | 3b6761d | 2018-04-17 17:33:20 -0700 | [diff] [blame] | 953 | rt->dst.flags |= fib6_info_dst_flags(ort); |
| 954 | |
David Ahern | 6edb3c9 | 2018-04-17 17:33:15 -0700 | [diff] [blame] | 955 | if (ort->rt6i_flags & RTF_REJECT) { |
| 956 | ip6_rt_init_dst_reject(rt, ort); |
| 957 | return; |
| 958 | } |
| 959 | |
| 960 | rt->dst.error = 0; |
| 961 | rt->dst.output = ip6_output; |
| 962 | |
| 963 | if (ort->fib6_type == RTN_LOCAL) { |
David Ahern | 6edb3c9 | 2018-04-17 17:33:15 -0700 | [diff] [blame] | 964 | rt->dst.input = ip6_input; |
| 965 | } else if (ipv6_addr_type(&ort->rt6i_dst.addr) & IPV6_ADDR_MULTICAST) { |
| 966 | rt->dst.input = ip6_mc_input; |
| 967 | } else { |
| 968 | rt->dst.input = ip6_forward; |
| 969 | } |
| 970 | |
| 971 | if (ort->fib6_nh.nh_lwtstate) { |
| 972 | rt->dst.lwtstate = lwtstate_get(ort->fib6_nh.nh_lwtstate); |
| 973 | lwtunnel_set_redirect(&rt->dst); |
| 974 | } |
| 975 | |
| 976 | rt->dst.lastuse = jiffies; |
| 977 | } |
| 978 | |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame^] | 979 | static void rt6_set_from(struct rt6_info *rt, struct fib6_info *from) |
David Ahern | ae90d86 | 2018-04-17 17:33:12 -0700 | [diff] [blame] | 980 | { |
David Ahern | ae90d86 | 2018-04-17 17:33:12 -0700 | [diff] [blame] | 981 | rt->rt6i_flags &= ~RTF_EXPIRES; |
David Ahern | 93531c6 | 2018-04-17 17:33:25 -0700 | [diff] [blame] | 982 | fib6_info_hold(from); |
| 983 | rt->from = from; |
David Ahern | d4ead6b | 2018-04-17 17:33:16 -0700 | [diff] [blame] | 984 | dst_init_metrics(&rt->dst, from->fib6_metrics->metrics, true); |
| 985 | if (from->fib6_metrics != &dst_default_metrics) { |
| 986 | rt->dst._metrics |= DST_METRICS_REFCOUNTED; |
| 987 | refcount_inc(&from->fib6_metrics->refcnt); |
| 988 | } |
David Ahern | ae90d86 | 2018-04-17 17:33:12 -0700 | [diff] [blame] | 989 | } |
| 990 | |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame^] | 991 | static void ip6_rt_copy_init(struct rt6_info *rt, struct fib6_info *ort) |
David Ahern | ae90d86 | 2018-04-17 17:33:12 -0700 | [diff] [blame] | 992 | { |
David Ahern | 6edb3c9 | 2018-04-17 17:33:15 -0700 | [diff] [blame] | 993 | ip6_rt_init_dst(rt, ort); |
| 994 | |
David Ahern | ae90d86 | 2018-04-17 17:33:12 -0700 | [diff] [blame] | 995 | rt->rt6i_dst = ort->rt6i_dst; |
David Ahern | ae90d86 | 2018-04-17 17:33:12 -0700 | [diff] [blame] | 996 | rt->rt6i_idev = ort->rt6i_idev; |
| 997 | if (rt->rt6i_idev) |
| 998 | in6_dev_hold(rt->rt6i_idev); |
David Ahern | 5e670d8 | 2018-04-17 17:33:14 -0700 | [diff] [blame] | 999 | rt->rt6i_gateway = ort->fib6_nh.nh_gw; |
David Ahern | ae90d86 | 2018-04-17 17:33:12 -0700 | [diff] [blame] | 1000 | rt->rt6i_flags = ort->rt6i_flags; |
| 1001 | rt6_set_from(rt, ort); |
| 1002 | rt->rt6i_metric = ort->rt6i_metric; |
| 1003 | #ifdef CONFIG_IPV6_SUBTREES |
| 1004 | rt->rt6i_src = ort->rt6i_src; |
| 1005 | #endif |
| 1006 | rt->rt6i_prefsrc = ort->rt6i_prefsrc; |
| 1007 | rt->rt6i_table = ort->rt6i_table; |
David Ahern | 5e670d8 | 2018-04-17 17:33:14 -0700 | [diff] [blame] | 1008 | rt->dst.lwtstate = lwtstate_get(ort->fib6_nh.nh_lwtstate); |
David Ahern | ae90d86 | 2018-04-17 17:33:12 -0700 | [diff] [blame] | 1009 | } |
| 1010 | |
Martin KaFai Lau | a3c00e4 | 2014-10-20 13:42:43 -0700 | [diff] [blame] | 1011 | static struct fib6_node* fib6_backtrack(struct fib6_node *fn, |
| 1012 | struct in6_addr *saddr) |
| 1013 | { |
Wei Wang | 66f5d6c | 2017-10-06 12:06:10 -0700 | [diff] [blame] | 1014 | struct fib6_node *pn, *sn; |
Martin KaFai Lau | a3c00e4 | 2014-10-20 13:42:43 -0700 | [diff] [blame] | 1015 | while (1) { |
| 1016 | if (fn->fn_flags & RTN_TL_ROOT) |
| 1017 | return NULL; |
Wei Wang | 66f5d6c | 2017-10-06 12:06:10 -0700 | [diff] [blame] | 1018 | pn = rcu_dereference(fn->parent); |
| 1019 | sn = FIB6_SUBTREE(pn); |
| 1020 | if (sn && sn != fn) |
| 1021 | fn = fib6_lookup(sn, NULL, saddr); |
Martin KaFai Lau | a3c00e4 | 2014-10-20 13:42:43 -0700 | [diff] [blame] | 1022 | else |
| 1023 | fn = pn; |
| 1024 | if (fn->fn_flags & RTN_RTINFO) |
| 1025 | return fn; |
| 1026 | } |
| 1027 | } |
Thomas Graf | c71099a | 2006-08-04 23:20:06 -0700 | [diff] [blame] | 1028 | |
Wei Wang | d3843fe | 2017-10-06 12:06:06 -0700 | [diff] [blame] | 1029 | static bool ip6_hold_safe(struct net *net, struct rt6_info **prt, |
| 1030 | bool null_fallback) |
| 1031 | { |
| 1032 | struct rt6_info *rt = *prt; |
| 1033 | |
| 1034 | if (dst_hold_safe(&rt->dst)) |
| 1035 | return true; |
| 1036 | if (null_fallback) { |
| 1037 | rt = net->ipv6.ip6_null_entry; |
| 1038 | dst_hold(&rt->dst); |
| 1039 | } else { |
| 1040 | rt = NULL; |
| 1041 | } |
| 1042 | *prt = rt; |
| 1043 | return false; |
| 1044 | } |
| 1045 | |
David Ahern | dec9b0e | 2018-04-17 17:33:19 -0700 | [diff] [blame] | 1046 | /* called with rcu_lock held */ |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame^] | 1047 | static struct rt6_info *ip6_create_rt_rcu(struct fib6_info *rt) |
David Ahern | dec9b0e | 2018-04-17 17:33:19 -0700 | [diff] [blame] | 1048 | { |
David Ahern | 3b6761d | 2018-04-17 17:33:20 -0700 | [diff] [blame] | 1049 | unsigned short flags = fib6_info_dst_flags(rt); |
David Ahern | dec9b0e | 2018-04-17 17:33:19 -0700 | [diff] [blame] | 1050 | struct net_device *dev = rt->fib6_nh.nh_dev; |
| 1051 | struct rt6_info *nrt; |
| 1052 | |
David Ahern | 93531c6 | 2018-04-17 17:33:25 -0700 | [diff] [blame] | 1053 | nrt = ip6_dst_alloc(dev_net(dev), dev, flags); |
David Ahern | dec9b0e | 2018-04-17 17:33:19 -0700 | [diff] [blame] | 1054 | if (nrt) |
| 1055 | ip6_rt_copy_init(nrt, rt); |
| 1056 | |
| 1057 | return nrt; |
| 1058 | } |
| 1059 | |
Daniel Lezcano | 8ed6778 | 2008-03-04 13:48:30 -0800 | [diff] [blame] | 1060 | static struct rt6_info *ip6_pol_route_lookup(struct net *net, |
| 1061 | struct fib6_table *table, |
David Ahern | b75cc8f | 2018-03-02 08:32:17 -0800 | [diff] [blame] | 1062 | struct flowi6 *fl6, |
| 1063 | const struct sk_buff *skb, |
| 1064 | int flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1065 | { |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame^] | 1066 | struct fib6_info *f6i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1067 | struct fib6_node *fn; |
David Ahern | 23fb93a | 2018-04-17 17:33:23 -0700 | [diff] [blame] | 1068 | struct rt6_info *rt; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1069 | |
David Ahern | b6cdbc8 | 2018-03-29 17:44:57 -0700 | [diff] [blame] | 1070 | if (fl6->flowi6_flags & FLOWI_FLAG_SKIP_NH_OIF) |
| 1071 | flags &= ~RT6_LOOKUP_F_IFACE; |
| 1072 | |
Wei Wang | 66f5d6c | 2017-10-06 12:06:10 -0700 | [diff] [blame] | 1073 | rcu_read_lock(); |
David S. Miller | 4c9483b | 2011-03-12 16:22:43 -0500 | [diff] [blame] | 1074 | fn = fib6_lookup(&table->tb6_root, &fl6->daddr, &fl6->saddr); |
Thomas Graf | c71099a | 2006-08-04 23:20:06 -0700 | [diff] [blame] | 1075 | restart: |
David Ahern | 23fb93a | 2018-04-17 17:33:23 -0700 | [diff] [blame] | 1076 | f6i = rcu_dereference(fn->leaf); |
| 1077 | if (!f6i) { |
| 1078 | f6i = net->ipv6.fib6_null_entry; |
Wei Wang | 66f5d6c | 2017-10-06 12:06:10 -0700 | [diff] [blame] | 1079 | } else { |
David Ahern | 23fb93a | 2018-04-17 17:33:23 -0700 | [diff] [blame] | 1080 | f6i = rt6_device_match(net, f6i, &fl6->saddr, |
Wei Wang | 66f5d6c | 2017-10-06 12:06:10 -0700 | [diff] [blame] | 1081 | fl6->flowi6_oif, flags); |
David Ahern | 23fb93a | 2018-04-17 17:33:23 -0700 | [diff] [blame] | 1082 | if (f6i->rt6i_nsiblings && fl6->flowi6_oif == 0) |
| 1083 | f6i = rt6_multipath_select(net, f6i, fl6, |
| 1084 | fl6->flowi6_oif, skb, flags); |
Wei Wang | 66f5d6c | 2017-10-06 12:06:10 -0700 | [diff] [blame] | 1085 | } |
David Ahern | 23fb93a | 2018-04-17 17:33:23 -0700 | [diff] [blame] | 1086 | if (f6i == net->ipv6.fib6_null_entry) { |
Martin KaFai Lau | a3c00e4 | 2014-10-20 13:42:43 -0700 | [diff] [blame] | 1087 | fn = fib6_backtrack(fn, &fl6->saddr); |
| 1088 | if (fn) |
| 1089 | goto restart; |
| 1090 | } |
David Ahern | 23fb93a | 2018-04-17 17:33:23 -0700 | [diff] [blame] | 1091 | |
Wei Wang | 2b760fc | 2017-10-06 12:06:03 -0700 | [diff] [blame] | 1092 | /* Search through exception table */ |
David Ahern | 23fb93a | 2018-04-17 17:33:23 -0700 | [diff] [blame] | 1093 | rt = rt6_find_cached_rt(f6i, &fl6->daddr, &fl6->saddr); |
| 1094 | if (rt) { |
David Ahern | dec9b0e | 2018-04-17 17:33:19 -0700 | [diff] [blame] | 1095 | if (ip6_hold_safe(net, &rt, true)) |
| 1096 | dst_use_noref(&rt->dst, jiffies); |
David Ahern | 23fb93a | 2018-04-17 17:33:23 -0700 | [diff] [blame] | 1097 | } else if (f6i == net->ipv6.fib6_null_entry) { |
David Ahern | dec9b0e | 2018-04-17 17:33:19 -0700 | [diff] [blame] | 1098 | rt = net->ipv6.ip6_null_entry; |
| 1099 | dst_hold(&rt->dst); |
David Ahern | 23fb93a | 2018-04-17 17:33:23 -0700 | [diff] [blame] | 1100 | } else { |
| 1101 | rt = ip6_create_rt_rcu(f6i); |
| 1102 | if (!rt) { |
| 1103 | rt = net->ipv6.ip6_null_entry; |
| 1104 | dst_hold(&rt->dst); |
| 1105 | } |
David Ahern | dec9b0e | 2018-04-17 17:33:19 -0700 | [diff] [blame] | 1106 | } |
Wei Wang | d3843fe | 2017-10-06 12:06:06 -0700 | [diff] [blame] | 1107 | |
Wei Wang | 66f5d6c | 2017-10-06 12:06:10 -0700 | [diff] [blame] | 1108 | rcu_read_unlock(); |
David Ahern | b811580 | 2015-11-19 12:24:22 -0800 | [diff] [blame] | 1109 | |
Paolo Abeni | b65f164 | 2017-10-19 09:31:43 +0200 | [diff] [blame] | 1110 | trace_fib6_table_lookup(net, rt, table, fl6); |
David Ahern | b811580 | 2015-11-19 12:24:22 -0800 | [diff] [blame] | 1111 | |
Thomas Graf | c71099a | 2006-08-04 23:20:06 -0700 | [diff] [blame] | 1112 | return rt; |
Thomas Graf | c71099a | 2006-08-04 23:20:06 -0700 | [diff] [blame] | 1113 | } |
| 1114 | |
Ian Morris | 67ba415 | 2014-08-24 21:53:10 +0100 | [diff] [blame] | 1115 | struct dst_entry *ip6_route_lookup(struct net *net, struct flowi6 *fl6, |
David Ahern | b75cc8f | 2018-03-02 08:32:17 -0800 | [diff] [blame] | 1116 | const struct sk_buff *skb, int flags) |
Florian Westphal | ea6e574 | 2011-09-05 16:05:44 +0200 | [diff] [blame] | 1117 | { |
David Ahern | b75cc8f | 2018-03-02 08:32:17 -0800 | [diff] [blame] | 1118 | return fib6_rule_lookup(net, fl6, skb, flags, ip6_pol_route_lookup); |
Florian Westphal | ea6e574 | 2011-09-05 16:05:44 +0200 | [diff] [blame] | 1119 | } |
| 1120 | EXPORT_SYMBOL_GPL(ip6_route_lookup); |
| 1121 | |
YOSHIFUJI Hideaki | 9acd9f3 | 2008-04-10 15:42:10 +0900 | [diff] [blame] | 1122 | struct rt6_info *rt6_lookup(struct net *net, const struct in6_addr *daddr, |
David Ahern | b75cc8f | 2018-03-02 08:32:17 -0800 | [diff] [blame] | 1123 | const struct in6_addr *saddr, int oif, |
| 1124 | const struct sk_buff *skb, int strict) |
Thomas Graf | c71099a | 2006-08-04 23:20:06 -0700 | [diff] [blame] | 1125 | { |
David S. Miller | 4c9483b | 2011-03-12 16:22:43 -0500 | [diff] [blame] | 1126 | struct flowi6 fl6 = { |
| 1127 | .flowi6_oif = oif, |
| 1128 | .daddr = *daddr, |
Thomas Graf | c71099a | 2006-08-04 23:20:06 -0700 | [diff] [blame] | 1129 | }; |
| 1130 | struct dst_entry *dst; |
YOSHIFUJI Hideaki | 77d16f4 | 2006-08-23 17:25:05 -0700 | [diff] [blame] | 1131 | int flags = strict ? RT6_LOOKUP_F_IFACE : 0; |
Thomas Graf | c71099a | 2006-08-04 23:20:06 -0700 | [diff] [blame] | 1132 | |
Thomas Graf | adaa70b | 2006-10-13 15:01:03 -0700 | [diff] [blame] | 1133 | if (saddr) { |
David S. Miller | 4c9483b | 2011-03-12 16:22:43 -0500 | [diff] [blame] | 1134 | memcpy(&fl6.saddr, saddr, sizeof(*saddr)); |
Thomas Graf | adaa70b | 2006-10-13 15:01:03 -0700 | [diff] [blame] | 1135 | flags |= RT6_LOOKUP_F_HAS_SADDR; |
| 1136 | } |
| 1137 | |
David Ahern | b75cc8f | 2018-03-02 08:32:17 -0800 | [diff] [blame] | 1138 | dst = fib6_rule_lookup(net, &fl6, skb, flags, ip6_pol_route_lookup); |
Thomas Graf | c71099a | 2006-08-04 23:20:06 -0700 | [diff] [blame] | 1139 | if (dst->error == 0) |
| 1140 | return (struct rt6_info *) dst; |
| 1141 | |
| 1142 | dst_release(dst); |
| 1143 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1144 | return NULL; |
| 1145 | } |
YOSHIFUJI Hideaki | 7159039 | 2007-02-22 22:05:40 +0900 | [diff] [blame] | 1146 | EXPORT_SYMBOL(rt6_lookup); |
| 1147 | |
Thomas Graf | c71099a | 2006-08-04 23:20:06 -0700 | [diff] [blame] | 1148 | /* ip6_ins_rt is called with FREE table->tb6_lock. |
Wei Wang | 1cfb71e | 2017-06-17 10:42:33 -0700 | [diff] [blame] | 1149 | * It takes new route entry, the addition fails by any reason the |
| 1150 | * route is released. |
| 1151 | * Caller must hold dst before calling it. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1152 | */ |
| 1153 | |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame^] | 1154 | static int __ip6_ins_rt(struct fib6_info *rt, struct nl_info *info, |
David Ahern | 333c430 | 2017-05-21 10:12:04 -0600 | [diff] [blame] | 1155 | struct netlink_ext_ack *extack) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1156 | { |
| 1157 | int err; |
Thomas Graf | c71099a | 2006-08-04 23:20:06 -0700 | [diff] [blame] | 1158 | struct fib6_table *table; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1159 | |
Thomas Graf | c71099a | 2006-08-04 23:20:06 -0700 | [diff] [blame] | 1160 | table = rt->rt6i_table; |
Wei Wang | 66f5d6c | 2017-10-06 12:06:10 -0700 | [diff] [blame] | 1161 | spin_lock_bh(&table->tb6_lock); |
David Ahern | d4ead6b | 2018-04-17 17:33:16 -0700 | [diff] [blame] | 1162 | err = fib6_add(&table->tb6_root, rt, info, extack); |
Wei Wang | 66f5d6c | 2017-10-06 12:06:10 -0700 | [diff] [blame] | 1163 | spin_unlock_bh(&table->tb6_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1164 | |
| 1165 | return err; |
| 1166 | } |
| 1167 | |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame^] | 1168 | int ip6_ins_rt(struct net *net, struct fib6_info *rt) |
Thomas Graf | 40e22e8 | 2006-08-22 00:00:45 -0700 | [diff] [blame] | 1169 | { |
David Ahern | afb1d4b5 | 2018-04-17 17:33:11 -0700 | [diff] [blame] | 1170 | struct nl_info info = { .nl_net = net, }; |
Florian Westphal | e715b6d | 2015-01-05 23:57:44 +0100 | [diff] [blame] | 1171 | |
David Ahern | d4ead6b | 2018-04-17 17:33:16 -0700 | [diff] [blame] | 1172 | return __ip6_ins_rt(rt, &info, NULL); |
Thomas Graf | 40e22e8 | 2006-08-22 00:00:45 -0700 | [diff] [blame] | 1173 | } |
| 1174 | |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame^] | 1175 | static struct rt6_info *ip6_rt_cache_alloc(struct fib6_info *ort, |
Martin KaFai Lau | 8b9df26 | 2015-05-22 20:55:59 -0700 | [diff] [blame] | 1176 | const struct in6_addr *daddr, |
| 1177 | const struct in6_addr *saddr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1178 | { |
David Ahern | 4832c30 | 2017-08-17 12:17:20 -0700 | [diff] [blame] | 1179 | struct net_device *dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1180 | struct rt6_info *rt; |
| 1181 | |
| 1182 | /* |
| 1183 | * Clone the route. |
| 1184 | */ |
| 1185 | |
David Ahern | 4832c30 | 2017-08-17 12:17:20 -0700 | [diff] [blame] | 1186 | rcu_read_lock(); |
| 1187 | dev = ip6_rt_get_dev_rcu(ort); |
David Ahern | 93531c6 | 2018-04-17 17:33:25 -0700 | [diff] [blame] | 1188 | rt = ip6_dst_alloc(dev_net(dev), dev, 0); |
David Ahern | 4832c30 | 2017-08-17 12:17:20 -0700 | [diff] [blame] | 1189 | rcu_read_unlock(); |
Martin KaFai Lau | 83a09ab | 2015-05-22 20:56:05 -0700 | [diff] [blame] | 1190 | if (!rt) |
| 1191 | return NULL; |
| 1192 | |
| 1193 | ip6_rt_copy_init(rt, ort); |
| 1194 | rt->rt6i_flags |= RTF_CACHE; |
| 1195 | rt->rt6i_metric = 0; |
| 1196 | rt->dst.flags |= DST_HOST; |
| 1197 | rt->rt6i_dst.addr = *daddr; |
| 1198 | rt->rt6i_dst.plen = 128; |
| 1199 | |
| 1200 | if (!rt6_is_gw_or_nonexthop(ort)) { |
| 1201 | if (ort->rt6i_dst.plen != 128 && |
| 1202 | ipv6_addr_equal(&ort->rt6i_dst.addr, daddr)) |
| 1203 | rt->rt6i_flags |= RTF_ANYCAST; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1204 | #ifdef CONFIG_IPV6_SUBTREES |
Martin KaFai Lau | 83a09ab | 2015-05-22 20:56:05 -0700 | [diff] [blame] | 1205 | if (rt->rt6i_src.plen && saddr) { |
| 1206 | rt->rt6i_src.addr = *saddr; |
| 1207 | rt->rt6i_src.plen = 128; |
Martin KaFai Lau | 8b9df26 | 2015-05-22 20:55:59 -0700 | [diff] [blame] | 1208 | } |
Martin KaFai Lau | 83a09ab | 2015-05-22 20:56:05 -0700 | [diff] [blame] | 1209 | #endif |
YOSHIFUJI Hideaki | 95a9a5b | 2006-03-20 16:55:51 -0800 | [diff] [blame] | 1210 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1211 | |
YOSHIFUJI Hideaki | 95a9a5b | 2006-03-20 16:55:51 -0800 | [diff] [blame] | 1212 | return rt; |
| 1213 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1214 | |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame^] | 1215 | static struct rt6_info *ip6_rt_pcpu_alloc(struct fib6_info *rt) |
Martin KaFai Lau | d52d399 | 2015-05-22 20:56:06 -0700 | [diff] [blame] | 1216 | { |
David Ahern | 3b6761d | 2018-04-17 17:33:20 -0700 | [diff] [blame] | 1217 | unsigned short flags = fib6_info_dst_flags(rt); |
David Ahern | 4832c30 | 2017-08-17 12:17:20 -0700 | [diff] [blame] | 1218 | struct net_device *dev; |
Martin KaFai Lau | d52d399 | 2015-05-22 20:56:06 -0700 | [diff] [blame] | 1219 | struct rt6_info *pcpu_rt; |
| 1220 | |
David Ahern | 4832c30 | 2017-08-17 12:17:20 -0700 | [diff] [blame] | 1221 | rcu_read_lock(); |
| 1222 | dev = ip6_rt_get_dev_rcu(rt); |
David Ahern | 93531c6 | 2018-04-17 17:33:25 -0700 | [diff] [blame] | 1223 | pcpu_rt = ip6_dst_alloc(dev_net(dev), dev, flags); |
David Ahern | 4832c30 | 2017-08-17 12:17:20 -0700 | [diff] [blame] | 1224 | rcu_read_unlock(); |
Martin KaFai Lau | d52d399 | 2015-05-22 20:56:06 -0700 | [diff] [blame] | 1225 | if (!pcpu_rt) |
| 1226 | return NULL; |
| 1227 | ip6_rt_copy_init(pcpu_rt, rt); |
| 1228 | pcpu_rt->rt6i_protocol = rt->rt6i_protocol; |
| 1229 | pcpu_rt->rt6i_flags |= RTF_PCPU; |
| 1230 | return pcpu_rt; |
| 1231 | } |
| 1232 | |
Wei Wang | 66f5d6c | 2017-10-06 12:06:10 -0700 | [diff] [blame] | 1233 | /* It should be called with rcu_read_lock() acquired */ |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame^] | 1234 | static struct rt6_info *rt6_get_pcpu_route(struct fib6_info *rt) |
Martin KaFai Lau | d52d399 | 2015-05-22 20:56:06 -0700 | [diff] [blame] | 1235 | { |
Martin KaFai Lau | a73e419 | 2015-08-14 11:05:53 -0700 | [diff] [blame] | 1236 | struct rt6_info *pcpu_rt, **p; |
Martin KaFai Lau | d52d399 | 2015-05-22 20:56:06 -0700 | [diff] [blame] | 1237 | |
| 1238 | p = this_cpu_ptr(rt->rt6i_pcpu); |
| 1239 | pcpu_rt = *p; |
| 1240 | |
David Ahern | d4ead6b | 2018-04-17 17:33:16 -0700 | [diff] [blame] | 1241 | if (pcpu_rt) |
| 1242 | ip6_hold_safe(NULL, &pcpu_rt, false); |
Wei Wang | d3843fe | 2017-10-06 12:06:06 -0700 | [diff] [blame] | 1243 | |
Martin KaFai Lau | a73e419 | 2015-08-14 11:05:53 -0700 | [diff] [blame] | 1244 | return pcpu_rt; |
| 1245 | } |
| 1246 | |
David Ahern | afb1d4b5 | 2018-04-17 17:33:11 -0700 | [diff] [blame] | 1247 | static struct rt6_info *rt6_make_pcpu_route(struct net *net, |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame^] | 1248 | struct fib6_info *rt) |
Martin KaFai Lau | a73e419 | 2015-08-14 11:05:53 -0700 | [diff] [blame] | 1249 | { |
| 1250 | struct rt6_info *pcpu_rt, *prev, **p; |
Martin KaFai Lau | d52d399 | 2015-05-22 20:56:06 -0700 | [diff] [blame] | 1251 | |
| 1252 | pcpu_rt = ip6_rt_pcpu_alloc(rt); |
| 1253 | if (!pcpu_rt) { |
Martin KaFai Lau | 9c7370a | 2015-08-14 11:05:54 -0700 | [diff] [blame] | 1254 | dst_hold(&net->ipv6.ip6_null_entry->dst); |
| 1255 | return net->ipv6.ip6_null_entry; |
Martin KaFai Lau | d52d399 | 2015-05-22 20:56:06 -0700 | [diff] [blame] | 1256 | } |
| 1257 | |
Martin KaFai Lau | d52d399 | 2015-05-22 20:56:06 -0700 | [diff] [blame] | 1258 | dst_hold(&pcpu_rt->dst); |
Wei Wang | a94b936 | 2017-10-06 12:06:04 -0700 | [diff] [blame] | 1259 | p = this_cpu_ptr(rt->rt6i_pcpu); |
| 1260 | prev = cmpxchg(p, NULL, pcpu_rt); |
Eric Dumazet | 951f788 | 2017-10-08 21:07:18 -0700 | [diff] [blame] | 1261 | BUG_ON(prev); |
Wei Wang | a94b936 | 2017-10-06 12:06:04 -0700 | [diff] [blame] | 1262 | |
Martin KaFai Lau | d52d399 | 2015-05-22 20:56:06 -0700 | [diff] [blame] | 1263 | return pcpu_rt; |
| 1264 | } |
| 1265 | |
Wei Wang | 35732d0 | 2017-10-06 12:05:57 -0700 | [diff] [blame] | 1266 | /* exception hash table implementation |
| 1267 | */ |
| 1268 | static DEFINE_SPINLOCK(rt6_exception_lock); |
| 1269 | |
| 1270 | /* Remove rt6_ex from hash table and free the memory |
| 1271 | * Caller must hold rt6_exception_lock |
| 1272 | */ |
| 1273 | static void rt6_remove_exception(struct rt6_exception_bucket *bucket, |
| 1274 | struct rt6_exception *rt6_ex) |
| 1275 | { |
Colin Ian King | b2427e6 | 2017-10-10 18:01:16 +0100 | [diff] [blame] | 1276 | struct net *net; |
Wei Wang | 81eb844 | 2017-10-06 12:06:11 -0700 | [diff] [blame] | 1277 | |
Wei Wang | 35732d0 | 2017-10-06 12:05:57 -0700 | [diff] [blame] | 1278 | if (!bucket || !rt6_ex) |
| 1279 | return; |
Colin Ian King | b2427e6 | 2017-10-10 18:01:16 +0100 | [diff] [blame] | 1280 | |
| 1281 | net = dev_net(rt6_ex->rt6i->dst.dev); |
Wei Wang | 35732d0 | 2017-10-06 12:05:57 -0700 | [diff] [blame] | 1282 | rt6_ex->rt6i->rt6i_node = NULL; |
| 1283 | hlist_del_rcu(&rt6_ex->hlist); |
David Ahern | 93531c6 | 2018-04-17 17:33:25 -0700 | [diff] [blame] | 1284 | ip6_rt_put(rt6_ex->rt6i); |
Wei Wang | 35732d0 | 2017-10-06 12:05:57 -0700 | [diff] [blame] | 1285 | kfree_rcu(rt6_ex, rcu); |
| 1286 | WARN_ON_ONCE(!bucket->depth); |
| 1287 | bucket->depth--; |
Wei Wang | 81eb844 | 2017-10-06 12:06:11 -0700 | [diff] [blame] | 1288 | net->ipv6.rt6_stats->fib_rt_cache--; |
Wei Wang | 35732d0 | 2017-10-06 12:05:57 -0700 | [diff] [blame] | 1289 | } |
| 1290 | |
| 1291 | /* Remove oldest rt6_ex in bucket and free the memory |
| 1292 | * Caller must hold rt6_exception_lock |
| 1293 | */ |
| 1294 | static void rt6_exception_remove_oldest(struct rt6_exception_bucket *bucket) |
| 1295 | { |
| 1296 | struct rt6_exception *rt6_ex, *oldest = NULL; |
| 1297 | |
| 1298 | if (!bucket) |
| 1299 | return; |
| 1300 | |
| 1301 | hlist_for_each_entry(rt6_ex, &bucket->chain, hlist) { |
| 1302 | if (!oldest || time_before(rt6_ex->stamp, oldest->stamp)) |
| 1303 | oldest = rt6_ex; |
| 1304 | } |
| 1305 | rt6_remove_exception(bucket, oldest); |
| 1306 | } |
| 1307 | |
| 1308 | static u32 rt6_exception_hash(const struct in6_addr *dst, |
| 1309 | const struct in6_addr *src) |
| 1310 | { |
| 1311 | static u32 seed __read_mostly; |
| 1312 | u32 val; |
| 1313 | |
| 1314 | net_get_random_once(&seed, sizeof(seed)); |
| 1315 | val = jhash(dst, sizeof(*dst), seed); |
| 1316 | |
| 1317 | #ifdef CONFIG_IPV6_SUBTREES |
| 1318 | if (src) |
| 1319 | val = jhash(src, sizeof(*src), val); |
| 1320 | #endif |
| 1321 | return hash_32(val, FIB6_EXCEPTION_BUCKET_SIZE_SHIFT); |
| 1322 | } |
| 1323 | |
| 1324 | /* Helper function to find the cached rt in the hash table |
| 1325 | * and update bucket pointer to point to the bucket for this |
| 1326 | * (daddr, saddr) pair |
| 1327 | * Caller must hold rt6_exception_lock |
| 1328 | */ |
| 1329 | static struct rt6_exception * |
| 1330 | __rt6_find_exception_spinlock(struct rt6_exception_bucket **bucket, |
| 1331 | const struct in6_addr *daddr, |
| 1332 | const struct in6_addr *saddr) |
| 1333 | { |
| 1334 | struct rt6_exception *rt6_ex; |
| 1335 | u32 hval; |
| 1336 | |
| 1337 | if (!(*bucket) || !daddr) |
| 1338 | return NULL; |
| 1339 | |
| 1340 | hval = rt6_exception_hash(daddr, saddr); |
| 1341 | *bucket += hval; |
| 1342 | |
| 1343 | hlist_for_each_entry(rt6_ex, &(*bucket)->chain, hlist) { |
| 1344 | struct rt6_info *rt6 = rt6_ex->rt6i; |
| 1345 | bool matched = ipv6_addr_equal(daddr, &rt6->rt6i_dst.addr); |
| 1346 | |
| 1347 | #ifdef CONFIG_IPV6_SUBTREES |
| 1348 | if (matched && saddr) |
| 1349 | matched = ipv6_addr_equal(saddr, &rt6->rt6i_src.addr); |
| 1350 | #endif |
| 1351 | if (matched) |
| 1352 | return rt6_ex; |
| 1353 | } |
| 1354 | return NULL; |
| 1355 | } |
| 1356 | |
| 1357 | /* Helper function to find the cached rt in the hash table |
| 1358 | * and update bucket pointer to point to the bucket for this |
| 1359 | * (daddr, saddr) pair |
| 1360 | * Caller must hold rcu_read_lock() |
| 1361 | */ |
| 1362 | static struct rt6_exception * |
| 1363 | __rt6_find_exception_rcu(struct rt6_exception_bucket **bucket, |
| 1364 | const struct in6_addr *daddr, |
| 1365 | const struct in6_addr *saddr) |
| 1366 | { |
| 1367 | struct rt6_exception *rt6_ex; |
| 1368 | u32 hval; |
| 1369 | |
| 1370 | WARN_ON_ONCE(!rcu_read_lock_held()); |
| 1371 | |
| 1372 | if (!(*bucket) || !daddr) |
| 1373 | return NULL; |
| 1374 | |
| 1375 | hval = rt6_exception_hash(daddr, saddr); |
| 1376 | *bucket += hval; |
| 1377 | |
| 1378 | hlist_for_each_entry_rcu(rt6_ex, &(*bucket)->chain, hlist) { |
| 1379 | struct rt6_info *rt6 = rt6_ex->rt6i; |
| 1380 | bool matched = ipv6_addr_equal(daddr, &rt6->rt6i_dst.addr); |
| 1381 | |
| 1382 | #ifdef CONFIG_IPV6_SUBTREES |
| 1383 | if (matched && saddr) |
| 1384 | matched = ipv6_addr_equal(saddr, &rt6->rt6i_src.addr); |
| 1385 | #endif |
| 1386 | if (matched) |
| 1387 | return rt6_ex; |
| 1388 | } |
| 1389 | return NULL; |
| 1390 | } |
| 1391 | |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame^] | 1392 | static unsigned int fib6_mtu(const struct fib6_info *rt) |
David Ahern | d4ead6b | 2018-04-17 17:33:16 -0700 | [diff] [blame] | 1393 | { |
| 1394 | unsigned int mtu; |
| 1395 | |
| 1396 | mtu = rt->fib6_pmtu ? : rt->rt6i_idev->cnf.mtu6; |
| 1397 | mtu = min_t(unsigned int, mtu, IP6_MAX_MTU); |
| 1398 | |
| 1399 | return mtu - lwtunnel_headroom(rt->fib6_nh.nh_lwtstate, mtu); |
| 1400 | } |
| 1401 | |
Wei Wang | 35732d0 | 2017-10-06 12:05:57 -0700 | [diff] [blame] | 1402 | static int rt6_insert_exception(struct rt6_info *nrt, |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame^] | 1403 | struct fib6_info *ort) |
Wei Wang | 35732d0 | 2017-10-06 12:05:57 -0700 | [diff] [blame] | 1404 | { |
David Ahern | 5e670d8 | 2018-04-17 17:33:14 -0700 | [diff] [blame] | 1405 | struct net *net = dev_net(nrt->dst.dev); |
Wei Wang | 35732d0 | 2017-10-06 12:05:57 -0700 | [diff] [blame] | 1406 | struct rt6_exception_bucket *bucket; |
| 1407 | struct in6_addr *src_key = NULL; |
| 1408 | struct rt6_exception *rt6_ex; |
| 1409 | int err = 0; |
| 1410 | |
Wei Wang | 35732d0 | 2017-10-06 12:05:57 -0700 | [diff] [blame] | 1411 | spin_lock_bh(&rt6_exception_lock); |
| 1412 | |
| 1413 | if (ort->exception_bucket_flushed) { |
| 1414 | err = -EINVAL; |
| 1415 | goto out; |
| 1416 | } |
| 1417 | |
| 1418 | bucket = rcu_dereference_protected(ort->rt6i_exception_bucket, |
| 1419 | lockdep_is_held(&rt6_exception_lock)); |
| 1420 | if (!bucket) { |
| 1421 | bucket = kcalloc(FIB6_EXCEPTION_BUCKET_SIZE, sizeof(*bucket), |
| 1422 | GFP_ATOMIC); |
| 1423 | if (!bucket) { |
| 1424 | err = -ENOMEM; |
| 1425 | goto out; |
| 1426 | } |
| 1427 | rcu_assign_pointer(ort->rt6i_exception_bucket, bucket); |
| 1428 | } |
| 1429 | |
| 1430 | #ifdef CONFIG_IPV6_SUBTREES |
| 1431 | /* rt6i_src.plen != 0 indicates ort is in subtree |
| 1432 | * and exception table is indexed by a hash of |
| 1433 | * both rt6i_dst and rt6i_src. |
| 1434 | * Otherwise, the exception table is indexed by |
| 1435 | * a hash of only rt6i_dst. |
| 1436 | */ |
| 1437 | if (ort->rt6i_src.plen) |
| 1438 | src_key = &nrt->rt6i_src.addr; |
| 1439 | #endif |
Wei Wang | 60006a4 | 2017-10-06 12:05:58 -0700 | [diff] [blame] | 1440 | |
| 1441 | /* Update rt6i_prefsrc as it could be changed |
| 1442 | * in rt6_remove_prefsrc() |
| 1443 | */ |
| 1444 | nrt->rt6i_prefsrc = ort->rt6i_prefsrc; |
Wei Wang | f5bbe7e | 2017-10-06 12:05:59 -0700 | [diff] [blame] | 1445 | /* rt6_mtu_change() might lower mtu on ort. |
| 1446 | * Only insert this exception route if its mtu |
| 1447 | * is less than ort's mtu value. |
| 1448 | */ |
David Ahern | d4ead6b | 2018-04-17 17:33:16 -0700 | [diff] [blame] | 1449 | if (dst_metric_raw(&nrt->dst, RTAX_MTU) >= fib6_mtu(ort)) { |
Wei Wang | f5bbe7e | 2017-10-06 12:05:59 -0700 | [diff] [blame] | 1450 | err = -EINVAL; |
| 1451 | goto out; |
| 1452 | } |
Wei Wang | 60006a4 | 2017-10-06 12:05:58 -0700 | [diff] [blame] | 1453 | |
Wei Wang | 35732d0 | 2017-10-06 12:05:57 -0700 | [diff] [blame] | 1454 | rt6_ex = __rt6_find_exception_spinlock(&bucket, &nrt->rt6i_dst.addr, |
| 1455 | src_key); |
| 1456 | if (rt6_ex) |
| 1457 | rt6_remove_exception(bucket, rt6_ex); |
| 1458 | |
| 1459 | rt6_ex = kzalloc(sizeof(*rt6_ex), GFP_ATOMIC); |
| 1460 | if (!rt6_ex) { |
| 1461 | err = -ENOMEM; |
| 1462 | goto out; |
| 1463 | } |
| 1464 | rt6_ex->rt6i = nrt; |
| 1465 | rt6_ex->stamp = jiffies; |
| 1466 | atomic_inc(&nrt->rt6i_ref); |
| 1467 | nrt->rt6i_node = ort->rt6i_node; |
| 1468 | hlist_add_head_rcu(&rt6_ex->hlist, &bucket->chain); |
| 1469 | bucket->depth++; |
Wei Wang | 81eb844 | 2017-10-06 12:06:11 -0700 | [diff] [blame] | 1470 | net->ipv6.rt6_stats->fib_rt_cache++; |
Wei Wang | 35732d0 | 2017-10-06 12:05:57 -0700 | [diff] [blame] | 1471 | |
| 1472 | if (bucket->depth > FIB6_MAX_DEPTH) |
| 1473 | rt6_exception_remove_oldest(bucket); |
| 1474 | |
| 1475 | out: |
| 1476 | spin_unlock_bh(&rt6_exception_lock); |
| 1477 | |
| 1478 | /* Update fn->fn_sernum to invalidate all cached dst */ |
Paolo Abeni | b886d5f | 2017-10-19 16:07:10 +0200 | [diff] [blame] | 1479 | if (!err) { |
Ido Schimmel | 922c2ac | 2018-01-07 12:45:14 +0200 | [diff] [blame] | 1480 | spin_lock_bh(&ort->rt6i_table->tb6_lock); |
David Ahern | 7aef685 | 2018-04-17 17:33:10 -0700 | [diff] [blame] | 1481 | fib6_update_sernum(net, ort); |
Ido Schimmel | 922c2ac | 2018-01-07 12:45:14 +0200 | [diff] [blame] | 1482 | spin_unlock_bh(&ort->rt6i_table->tb6_lock); |
Paolo Abeni | b886d5f | 2017-10-19 16:07:10 +0200 | [diff] [blame] | 1483 | fib6_force_start_gc(net); |
| 1484 | } |
Wei Wang | 35732d0 | 2017-10-06 12:05:57 -0700 | [diff] [blame] | 1485 | |
| 1486 | return err; |
| 1487 | } |
| 1488 | |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame^] | 1489 | void rt6_flush_exceptions(struct fib6_info *rt) |
Wei Wang | 35732d0 | 2017-10-06 12:05:57 -0700 | [diff] [blame] | 1490 | { |
| 1491 | struct rt6_exception_bucket *bucket; |
| 1492 | struct rt6_exception *rt6_ex; |
| 1493 | struct hlist_node *tmp; |
| 1494 | int i; |
| 1495 | |
| 1496 | spin_lock_bh(&rt6_exception_lock); |
| 1497 | /* Prevent rt6_insert_exception() to recreate the bucket list */ |
| 1498 | rt->exception_bucket_flushed = 1; |
| 1499 | |
| 1500 | bucket = rcu_dereference_protected(rt->rt6i_exception_bucket, |
| 1501 | lockdep_is_held(&rt6_exception_lock)); |
| 1502 | if (!bucket) |
| 1503 | goto out; |
| 1504 | |
| 1505 | for (i = 0; i < FIB6_EXCEPTION_BUCKET_SIZE; i++) { |
| 1506 | hlist_for_each_entry_safe(rt6_ex, tmp, &bucket->chain, hlist) |
| 1507 | rt6_remove_exception(bucket, rt6_ex); |
| 1508 | WARN_ON_ONCE(bucket->depth); |
| 1509 | bucket++; |
| 1510 | } |
| 1511 | |
| 1512 | out: |
| 1513 | spin_unlock_bh(&rt6_exception_lock); |
| 1514 | } |
| 1515 | |
| 1516 | /* Find cached rt in the hash table inside passed in rt |
| 1517 | * Caller has to hold rcu_read_lock() |
| 1518 | */ |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame^] | 1519 | static struct rt6_info *rt6_find_cached_rt(struct fib6_info *rt, |
Wei Wang | 35732d0 | 2017-10-06 12:05:57 -0700 | [diff] [blame] | 1520 | struct in6_addr *daddr, |
| 1521 | struct in6_addr *saddr) |
| 1522 | { |
| 1523 | struct rt6_exception_bucket *bucket; |
| 1524 | struct in6_addr *src_key = NULL; |
| 1525 | struct rt6_exception *rt6_ex; |
| 1526 | struct rt6_info *res = NULL; |
| 1527 | |
| 1528 | bucket = rcu_dereference(rt->rt6i_exception_bucket); |
| 1529 | |
| 1530 | #ifdef CONFIG_IPV6_SUBTREES |
| 1531 | /* rt6i_src.plen != 0 indicates rt is in subtree |
| 1532 | * and exception table is indexed by a hash of |
| 1533 | * both rt6i_dst and rt6i_src. |
| 1534 | * Otherwise, the exception table is indexed by |
| 1535 | * a hash of only rt6i_dst. |
| 1536 | */ |
| 1537 | if (rt->rt6i_src.plen) |
| 1538 | src_key = saddr; |
| 1539 | #endif |
| 1540 | rt6_ex = __rt6_find_exception_rcu(&bucket, daddr, src_key); |
| 1541 | |
| 1542 | if (rt6_ex && !rt6_check_expired(rt6_ex->rt6i)) |
| 1543 | res = rt6_ex->rt6i; |
| 1544 | |
| 1545 | return res; |
| 1546 | } |
| 1547 | |
| 1548 | /* Remove the passed in cached rt from the hash table that contains it */ |
David Ahern | 23fb93a | 2018-04-17 17:33:23 -0700 | [diff] [blame] | 1549 | static int rt6_remove_exception_rt(struct rt6_info *rt) |
Wei Wang | 35732d0 | 2017-10-06 12:05:57 -0700 | [diff] [blame] | 1550 | { |
Wei Wang | 35732d0 | 2017-10-06 12:05:57 -0700 | [diff] [blame] | 1551 | struct rt6_exception_bucket *bucket; |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame^] | 1552 | struct fib6_info *from = rt->from; |
Wei Wang | 35732d0 | 2017-10-06 12:05:57 -0700 | [diff] [blame] | 1553 | struct in6_addr *src_key = NULL; |
| 1554 | struct rt6_exception *rt6_ex; |
| 1555 | int err; |
| 1556 | |
| 1557 | if (!from || |
Colin Ian King | 442d713 | 2017-10-10 19:10:30 +0100 | [diff] [blame] | 1558 | !(rt->rt6i_flags & RTF_CACHE)) |
Wei Wang | 35732d0 | 2017-10-06 12:05:57 -0700 | [diff] [blame] | 1559 | return -EINVAL; |
| 1560 | |
| 1561 | if (!rcu_access_pointer(from->rt6i_exception_bucket)) |
| 1562 | return -ENOENT; |
| 1563 | |
| 1564 | spin_lock_bh(&rt6_exception_lock); |
| 1565 | bucket = rcu_dereference_protected(from->rt6i_exception_bucket, |
| 1566 | lockdep_is_held(&rt6_exception_lock)); |
| 1567 | #ifdef CONFIG_IPV6_SUBTREES |
| 1568 | /* rt6i_src.plen != 0 indicates 'from' is in subtree |
| 1569 | * and exception table is indexed by a hash of |
| 1570 | * both rt6i_dst and rt6i_src. |
| 1571 | * Otherwise, the exception table is indexed by |
| 1572 | * a hash of only rt6i_dst. |
| 1573 | */ |
| 1574 | if (from->rt6i_src.plen) |
| 1575 | src_key = &rt->rt6i_src.addr; |
| 1576 | #endif |
| 1577 | rt6_ex = __rt6_find_exception_spinlock(&bucket, |
| 1578 | &rt->rt6i_dst.addr, |
| 1579 | src_key); |
| 1580 | if (rt6_ex) { |
| 1581 | rt6_remove_exception(bucket, rt6_ex); |
| 1582 | err = 0; |
| 1583 | } else { |
| 1584 | err = -ENOENT; |
| 1585 | } |
| 1586 | |
| 1587 | spin_unlock_bh(&rt6_exception_lock); |
| 1588 | return err; |
| 1589 | } |
| 1590 | |
| 1591 | /* Find rt6_ex which contains the passed in rt cache and |
| 1592 | * refresh its stamp |
| 1593 | */ |
| 1594 | static void rt6_update_exception_stamp_rt(struct rt6_info *rt) |
| 1595 | { |
Wei Wang | 35732d0 | 2017-10-06 12:05:57 -0700 | [diff] [blame] | 1596 | struct rt6_exception_bucket *bucket; |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame^] | 1597 | struct fib6_info *from = rt->from; |
Wei Wang | 35732d0 | 2017-10-06 12:05:57 -0700 | [diff] [blame] | 1598 | struct in6_addr *src_key = NULL; |
| 1599 | struct rt6_exception *rt6_ex; |
| 1600 | |
| 1601 | if (!from || |
Colin Ian King | 442d713 | 2017-10-10 19:10:30 +0100 | [diff] [blame] | 1602 | !(rt->rt6i_flags & RTF_CACHE)) |
Wei Wang | 35732d0 | 2017-10-06 12:05:57 -0700 | [diff] [blame] | 1603 | return; |
| 1604 | |
| 1605 | rcu_read_lock(); |
| 1606 | bucket = rcu_dereference(from->rt6i_exception_bucket); |
| 1607 | |
| 1608 | #ifdef CONFIG_IPV6_SUBTREES |
| 1609 | /* rt6i_src.plen != 0 indicates 'from' is in subtree |
| 1610 | * and exception table is indexed by a hash of |
| 1611 | * both rt6i_dst and rt6i_src. |
| 1612 | * Otherwise, the exception table is indexed by |
| 1613 | * a hash of only rt6i_dst. |
| 1614 | */ |
| 1615 | if (from->rt6i_src.plen) |
| 1616 | src_key = &rt->rt6i_src.addr; |
| 1617 | #endif |
| 1618 | rt6_ex = __rt6_find_exception_rcu(&bucket, |
| 1619 | &rt->rt6i_dst.addr, |
| 1620 | src_key); |
| 1621 | if (rt6_ex) |
| 1622 | rt6_ex->stamp = jiffies; |
| 1623 | |
| 1624 | rcu_read_unlock(); |
| 1625 | } |
| 1626 | |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame^] | 1627 | static void rt6_exceptions_remove_prefsrc(struct fib6_info *rt) |
Wei Wang | 60006a4 | 2017-10-06 12:05:58 -0700 | [diff] [blame] | 1628 | { |
| 1629 | struct rt6_exception_bucket *bucket; |
| 1630 | struct rt6_exception *rt6_ex; |
| 1631 | int i; |
| 1632 | |
| 1633 | bucket = rcu_dereference_protected(rt->rt6i_exception_bucket, |
| 1634 | lockdep_is_held(&rt6_exception_lock)); |
| 1635 | |
| 1636 | if (bucket) { |
| 1637 | for (i = 0; i < FIB6_EXCEPTION_BUCKET_SIZE; i++) { |
| 1638 | hlist_for_each_entry(rt6_ex, &bucket->chain, hlist) { |
| 1639 | rt6_ex->rt6i->rt6i_prefsrc.plen = 0; |
| 1640 | } |
| 1641 | bucket++; |
| 1642 | } |
| 1643 | } |
| 1644 | } |
| 1645 | |
Stefano Brivio | e9fa149 | 2018-03-06 11:10:19 +0100 | [diff] [blame] | 1646 | static bool rt6_mtu_change_route_allowed(struct inet6_dev *idev, |
| 1647 | struct rt6_info *rt, int mtu) |
| 1648 | { |
| 1649 | /* If the new MTU is lower than the route PMTU, this new MTU will be the |
| 1650 | * lowest MTU in the path: always allow updating the route PMTU to |
| 1651 | * reflect PMTU decreases. |
| 1652 | * |
| 1653 | * If the new MTU is higher, and the route PMTU is equal to the local |
| 1654 | * MTU, this means the old MTU is the lowest in the path, so allow |
| 1655 | * updating it: if other nodes now have lower MTUs, PMTU discovery will |
| 1656 | * handle this. |
| 1657 | */ |
| 1658 | |
| 1659 | if (dst_mtu(&rt->dst) >= mtu) |
| 1660 | return true; |
| 1661 | |
| 1662 | if (dst_mtu(&rt->dst) == idev->cnf.mtu6) |
| 1663 | return true; |
| 1664 | |
| 1665 | return false; |
| 1666 | } |
| 1667 | |
| 1668 | static void rt6_exceptions_update_pmtu(struct inet6_dev *idev, |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame^] | 1669 | struct fib6_info *rt, int mtu) |
Wei Wang | f5bbe7e | 2017-10-06 12:05:59 -0700 | [diff] [blame] | 1670 | { |
| 1671 | struct rt6_exception_bucket *bucket; |
| 1672 | struct rt6_exception *rt6_ex; |
| 1673 | int i; |
| 1674 | |
| 1675 | bucket = rcu_dereference_protected(rt->rt6i_exception_bucket, |
| 1676 | lockdep_is_held(&rt6_exception_lock)); |
| 1677 | |
Stefano Brivio | e9fa149 | 2018-03-06 11:10:19 +0100 | [diff] [blame] | 1678 | if (!bucket) |
| 1679 | return; |
| 1680 | |
| 1681 | for (i = 0; i < FIB6_EXCEPTION_BUCKET_SIZE; i++) { |
| 1682 | hlist_for_each_entry(rt6_ex, &bucket->chain, hlist) { |
| 1683 | struct rt6_info *entry = rt6_ex->rt6i; |
| 1684 | |
| 1685 | /* For RTF_CACHE with rt6i_pmtu == 0 (i.e. a redirected |
David Ahern | d4ead6b | 2018-04-17 17:33:16 -0700 | [diff] [blame] | 1686 | * route), the metrics of its rt->from have already |
Stefano Brivio | e9fa149 | 2018-03-06 11:10:19 +0100 | [diff] [blame] | 1687 | * been updated. |
| 1688 | */ |
David Ahern | d4ead6b | 2018-04-17 17:33:16 -0700 | [diff] [blame] | 1689 | if (dst_metric_raw(&entry->dst, RTAX_MTU) && |
Stefano Brivio | e9fa149 | 2018-03-06 11:10:19 +0100 | [diff] [blame] | 1690 | rt6_mtu_change_route_allowed(idev, entry, mtu)) |
David Ahern | d4ead6b | 2018-04-17 17:33:16 -0700 | [diff] [blame] | 1691 | dst_metric_set(&entry->dst, RTAX_MTU, mtu); |
Wei Wang | f5bbe7e | 2017-10-06 12:05:59 -0700 | [diff] [blame] | 1692 | } |
Stefano Brivio | e9fa149 | 2018-03-06 11:10:19 +0100 | [diff] [blame] | 1693 | bucket++; |
Wei Wang | f5bbe7e | 2017-10-06 12:05:59 -0700 | [diff] [blame] | 1694 | } |
| 1695 | } |
| 1696 | |
Wei Wang | b16cb45 | 2017-10-06 12:06:00 -0700 | [diff] [blame] | 1697 | #define RTF_CACHE_GATEWAY (RTF_GATEWAY | RTF_CACHE) |
| 1698 | |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame^] | 1699 | static void rt6_exceptions_clean_tohost(struct fib6_info *rt, |
Wei Wang | b16cb45 | 2017-10-06 12:06:00 -0700 | [diff] [blame] | 1700 | struct in6_addr *gateway) |
| 1701 | { |
| 1702 | struct rt6_exception_bucket *bucket; |
| 1703 | struct rt6_exception *rt6_ex; |
| 1704 | struct hlist_node *tmp; |
| 1705 | int i; |
| 1706 | |
| 1707 | if (!rcu_access_pointer(rt->rt6i_exception_bucket)) |
| 1708 | return; |
| 1709 | |
| 1710 | spin_lock_bh(&rt6_exception_lock); |
| 1711 | bucket = rcu_dereference_protected(rt->rt6i_exception_bucket, |
| 1712 | lockdep_is_held(&rt6_exception_lock)); |
| 1713 | |
| 1714 | if (bucket) { |
| 1715 | for (i = 0; i < FIB6_EXCEPTION_BUCKET_SIZE; i++) { |
| 1716 | hlist_for_each_entry_safe(rt6_ex, tmp, |
| 1717 | &bucket->chain, hlist) { |
| 1718 | struct rt6_info *entry = rt6_ex->rt6i; |
| 1719 | |
| 1720 | if ((entry->rt6i_flags & RTF_CACHE_GATEWAY) == |
| 1721 | RTF_CACHE_GATEWAY && |
| 1722 | ipv6_addr_equal(gateway, |
| 1723 | &entry->rt6i_gateway)) { |
| 1724 | rt6_remove_exception(bucket, rt6_ex); |
| 1725 | } |
| 1726 | } |
| 1727 | bucket++; |
| 1728 | } |
| 1729 | } |
| 1730 | |
| 1731 | spin_unlock_bh(&rt6_exception_lock); |
| 1732 | } |
| 1733 | |
Wei Wang | c757faa | 2017-10-06 12:06:01 -0700 | [diff] [blame] | 1734 | static void rt6_age_examine_exception(struct rt6_exception_bucket *bucket, |
| 1735 | struct rt6_exception *rt6_ex, |
| 1736 | struct fib6_gc_args *gc_args, |
| 1737 | unsigned long now) |
| 1738 | { |
| 1739 | struct rt6_info *rt = rt6_ex->rt6i; |
| 1740 | |
Paolo Abeni | 1859bac | 2017-10-19 16:07:11 +0200 | [diff] [blame] | 1741 | /* we are pruning and obsoleting aged-out and non gateway exceptions |
| 1742 | * even if others have still references to them, so that on next |
| 1743 | * dst_check() such references can be dropped. |
| 1744 | * EXPIRES exceptions - e.g. pmtu-generated ones are pruned when |
| 1745 | * expired, independently from their aging, as per RFC 8201 section 4 |
| 1746 | */ |
Wei Wang | 31afeb4 | 2018-01-26 11:40:17 -0800 | [diff] [blame] | 1747 | if (!(rt->rt6i_flags & RTF_EXPIRES)) { |
| 1748 | if (time_after_eq(now, rt->dst.lastuse + gc_args->timeout)) { |
| 1749 | RT6_TRACE("aging clone %p\n", rt); |
| 1750 | rt6_remove_exception(bucket, rt6_ex); |
| 1751 | return; |
| 1752 | } |
| 1753 | } else if (time_after(jiffies, rt->dst.expires)) { |
| 1754 | RT6_TRACE("purging expired route %p\n", rt); |
Wei Wang | c757faa | 2017-10-06 12:06:01 -0700 | [diff] [blame] | 1755 | rt6_remove_exception(bucket, rt6_ex); |
| 1756 | return; |
Wei Wang | 31afeb4 | 2018-01-26 11:40:17 -0800 | [diff] [blame] | 1757 | } |
| 1758 | |
| 1759 | if (rt->rt6i_flags & RTF_GATEWAY) { |
Wei Wang | c757faa | 2017-10-06 12:06:01 -0700 | [diff] [blame] | 1760 | struct neighbour *neigh; |
| 1761 | __u8 neigh_flags = 0; |
| 1762 | |
Eric Dumazet | 1bfa26f | 2018-03-23 07:56:58 -0700 | [diff] [blame] | 1763 | neigh = __ipv6_neigh_lookup_noref(rt->dst.dev, &rt->rt6i_gateway); |
| 1764 | if (neigh) |
Wei Wang | c757faa | 2017-10-06 12:06:01 -0700 | [diff] [blame] | 1765 | neigh_flags = neigh->flags; |
Eric Dumazet | 1bfa26f | 2018-03-23 07:56:58 -0700 | [diff] [blame] | 1766 | |
Wei Wang | c757faa | 2017-10-06 12:06:01 -0700 | [diff] [blame] | 1767 | if (!(neigh_flags & NTF_ROUTER)) { |
| 1768 | RT6_TRACE("purging route %p via non-router but gateway\n", |
| 1769 | rt); |
| 1770 | rt6_remove_exception(bucket, rt6_ex); |
| 1771 | return; |
| 1772 | } |
| 1773 | } |
Wei Wang | 31afeb4 | 2018-01-26 11:40:17 -0800 | [diff] [blame] | 1774 | |
Wei Wang | c757faa | 2017-10-06 12:06:01 -0700 | [diff] [blame] | 1775 | gc_args->more++; |
| 1776 | } |
| 1777 | |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame^] | 1778 | void rt6_age_exceptions(struct fib6_info *rt, |
Wei Wang | c757faa | 2017-10-06 12:06:01 -0700 | [diff] [blame] | 1779 | struct fib6_gc_args *gc_args, |
| 1780 | unsigned long now) |
| 1781 | { |
| 1782 | struct rt6_exception_bucket *bucket; |
| 1783 | struct rt6_exception *rt6_ex; |
| 1784 | struct hlist_node *tmp; |
| 1785 | int i; |
| 1786 | |
| 1787 | if (!rcu_access_pointer(rt->rt6i_exception_bucket)) |
| 1788 | return; |
| 1789 | |
Eric Dumazet | 1bfa26f | 2018-03-23 07:56:58 -0700 | [diff] [blame] | 1790 | rcu_read_lock_bh(); |
| 1791 | spin_lock(&rt6_exception_lock); |
Wei Wang | c757faa | 2017-10-06 12:06:01 -0700 | [diff] [blame] | 1792 | bucket = rcu_dereference_protected(rt->rt6i_exception_bucket, |
| 1793 | lockdep_is_held(&rt6_exception_lock)); |
| 1794 | |
| 1795 | if (bucket) { |
| 1796 | for (i = 0; i < FIB6_EXCEPTION_BUCKET_SIZE; i++) { |
| 1797 | hlist_for_each_entry_safe(rt6_ex, tmp, |
| 1798 | &bucket->chain, hlist) { |
| 1799 | rt6_age_examine_exception(bucket, rt6_ex, |
| 1800 | gc_args, now); |
| 1801 | } |
| 1802 | bucket++; |
| 1803 | } |
| 1804 | } |
Eric Dumazet | 1bfa26f | 2018-03-23 07:56:58 -0700 | [diff] [blame] | 1805 | spin_unlock(&rt6_exception_lock); |
| 1806 | rcu_read_unlock_bh(); |
Wei Wang | c757faa | 2017-10-06 12:06:01 -0700 | [diff] [blame] | 1807 | } |
| 1808 | |
David Ahern | 9ff7438 | 2016-06-13 13:44:19 -0700 | [diff] [blame] | 1809 | struct rt6_info *ip6_pol_route(struct net *net, struct fib6_table *table, |
David Ahern | b75cc8f | 2018-03-02 08:32:17 -0800 | [diff] [blame] | 1810 | int oif, struct flowi6 *fl6, |
| 1811 | const struct sk_buff *skb, int flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1812 | { |
Martin KaFai Lau | 367efcb | 2014-10-20 13:42:45 -0700 | [diff] [blame] | 1813 | struct fib6_node *fn, *saved_fn; |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame^] | 1814 | struct fib6_info *f6i; |
David Ahern | 23fb93a | 2018-04-17 17:33:23 -0700 | [diff] [blame] | 1815 | struct rt6_info *rt; |
Thomas Graf | c71099a | 2006-08-04 23:20:06 -0700 | [diff] [blame] | 1816 | int strict = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1817 | |
YOSHIFUJI Hideaki | 77d16f4 | 2006-08-23 17:25:05 -0700 | [diff] [blame] | 1818 | strict |= flags & RT6_LOOKUP_F_IFACE; |
David Ahern | d5d32e4 | 2016-10-24 12:27:23 -0700 | [diff] [blame] | 1819 | strict |= flags & RT6_LOOKUP_F_IGNORE_LINKSTATE; |
Martin KaFai Lau | 367efcb | 2014-10-20 13:42:45 -0700 | [diff] [blame] | 1820 | if (net->ipv6.devconf_all->forwarding == 0) |
| 1821 | strict |= RT6_LOOKUP_F_REACHABLE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1822 | |
Wei Wang | 66f5d6c | 2017-10-06 12:06:10 -0700 | [diff] [blame] | 1823 | rcu_read_lock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1824 | |
David S. Miller | 4c9483b | 2011-03-12 16:22:43 -0500 | [diff] [blame] | 1825 | fn = fib6_lookup(&table->tb6_root, &fl6->daddr, &fl6->saddr); |
Martin KaFai Lau | 367efcb | 2014-10-20 13:42:45 -0700 | [diff] [blame] | 1826 | saved_fn = fn; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1827 | |
David Ahern | ca25449 | 2015-10-12 11:47:10 -0700 | [diff] [blame] | 1828 | if (fl6->flowi6_flags & FLOWI_FLAG_SKIP_NH_OIF) |
| 1829 | oif = 0; |
| 1830 | |
Martin KaFai Lau | a3c00e4 | 2014-10-20 13:42:43 -0700 | [diff] [blame] | 1831 | redo_rt6_select: |
David Ahern | 23fb93a | 2018-04-17 17:33:23 -0700 | [diff] [blame] | 1832 | f6i = rt6_select(net, fn, oif, strict); |
| 1833 | if (f6i->rt6i_nsiblings) |
| 1834 | f6i = rt6_multipath_select(net, f6i, fl6, oif, skb, strict); |
| 1835 | if (f6i == net->ipv6.fib6_null_entry) { |
Martin KaFai Lau | a3c00e4 | 2014-10-20 13:42:43 -0700 | [diff] [blame] | 1836 | fn = fib6_backtrack(fn, &fl6->saddr); |
| 1837 | if (fn) |
| 1838 | goto redo_rt6_select; |
Martin KaFai Lau | 367efcb | 2014-10-20 13:42:45 -0700 | [diff] [blame] | 1839 | else if (strict & RT6_LOOKUP_F_REACHABLE) { |
| 1840 | /* also consider unreachable route */ |
| 1841 | strict &= ~RT6_LOOKUP_F_REACHABLE; |
| 1842 | fn = saved_fn; |
| 1843 | goto redo_rt6_select; |
Martin KaFai Lau | 367efcb | 2014-10-20 13:42:45 -0700 | [diff] [blame] | 1844 | } |
Martin KaFai Lau | a3c00e4 | 2014-10-20 13:42:43 -0700 | [diff] [blame] | 1845 | } |
| 1846 | |
David Ahern | 23fb93a | 2018-04-17 17:33:23 -0700 | [diff] [blame] | 1847 | if (f6i == net->ipv6.fib6_null_entry) { |
David Ahern | 421842e | 2018-04-17 17:33:18 -0700 | [diff] [blame] | 1848 | rt = net->ipv6.ip6_null_entry; |
Wei Wang | 66f5d6c | 2017-10-06 12:06:10 -0700 | [diff] [blame] | 1849 | rcu_read_unlock(); |
Wei Wang | d3843fe | 2017-10-06 12:06:06 -0700 | [diff] [blame] | 1850 | dst_hold(&rt->dst); |
Paolo Abeni | b65f164 | 2017-10-19 09:31:43 +0200 | [diff] [blame] | 1851 | trace_fib6_table_lookup(net, rt, table, fl6); |
Wei Wang | d3843fe | 2017-10-06 12:06:06 -0700 | [diff] [blame] | 1852 | return rt; |
David Ahern | 23fb93a | 2018-04-17 17:33:23 -0700 | [diff] [blame] | 1853 | } |
| 1854 | |
| 1855 | /*Search through exception table */ |
| 1856 | rt = rt6_find_cached_rt(f6i, &fl6->daddr, &fl6->saddr); |
| 1857 | if (rt) { |
David Ahern | d4ead6b | 2018-04-17 17:33:16 -0700 | [diff] [blame] | 1858 | if (ip6_hold_safe(net, &rt, true)) |
Wei Wang | d3843fe | 2017-10-06 12:06:06 -0700 | [diff] [blame] | 1859 | dst_use_noref(&rt->dst, jiffies); |
David Ahern | d4ead6b | 2018-04-17 17:33:16 -0700 | [diff] [blame] | 1860 | |
Wei Wang | 66f5d6c | 2017-10-06 12:06:10 -0700 | [diff] [blame] | 1861 | rcu_read_unlock(); |
Paolo Abeni | b65f164 | 2017-10-19 09:31:43 +0200 | [diff] [blame] | 1862 | trace_fib6_table_lookup(net, rt, table, fl6); |
Martin KaFai Lau | d52d399 | 2015-05-22 20:56:06 -0700 | [diff] [blame] | 1863 | return rt; |
Martin KaFai Lau | 3da59bd | 2015-05-22 20:56:03 -0700 | [diff] [blame] | 1864 | } else if (unlikely((fl6->flowi6_flags & FLOWI_FLAG_KNOWN_NH) && |
David Ahern | 23fb93a | 2018-04-17 17:33:23 -0700 | [diff] [blame] | 1865 | !(f6i->rt6i_flags & RTF_GATEWAY))) { |
Martin KaFai Lau | 3da59bd | 2015-05-22 20:56:03 -0700 | [diff] [blame] | 1866 | /* Create a RTF_CACHE clone which will not be |
| 1867 | * owned by the fib6 tree. It is for the special case where |
| 1868 | * the daddr in the skb during the neighbor look-up is different |
| 1869 | * from the fl6->daddr used to look-up route here. |
| 1870 | */ |
Thomas Graf | c71099a | 2006-08-04 23:20:06 -0700 | [diff] [blame] | 1871 | |
Martin KaFai Lau | 3da59bd | 2015-05-22 20:56:03 -0700 | [diff] [blame] | 1872 | struct rt6_info *uncached_rt; |
| 1873 | |
David Ahern | 93531c6 | 2018-04-17 17:33:25 -0700 | [diff] [blame] | 1874 | fib6_info_hold(f6i); |
Wei Wang | 66f5d6c | 2017-10-06 12:06:10 -0700 | [diff] [blame] | 1875 | rcu_read_unlock(); |
Martin KaFai Lau | d52d399 | 2015-05-22 20:56:06 -0700 | [diff] [blame] | 1876 | |
David Ahern | 23fb93a | 2018-04-17 17:33:23 -0700 | [diff] [blame] | 1877 | uncached_rt = ip6_rt_cache_alloc(f6i, &fl6->daddr, NULL); |
David Ahern | 93531c6 | 2018-04-17 17:33:25 -0700 | [diff] [blame] | 1878 | fib6_info_release(f6i); |
Martin KaFai Lau | 3da59bd | 2015-05-22 20:56:03 -0700 | [diff] [blame] | 1879 | |
Wei Wang | 1cfb71e | 2017-06-17 10:42:33 -0700 | [diff] [blame] | 1880 | if (uncached_rt) { |
| 1881 | /* Uncached_rt's refcnt is taken during ip6_rt_cache_alloc() |
| 1882 | * No need for another dst_hold() |
| 1883 | */ |
Martin KaFai Lau | 8d0b94a | 2015-05-22 20:56:04 -0700 | [diff] [blame] | 1884 | rt6_uncached_list_add(uncached_rt); |
Wei Wang | 81eb844 | 2017-10-06 12:06:11 -0700 | [diff] [blame] | 1885 | atomic_inc(&net->ipv6.rt6_stats->fib_rt_uncache); |
Wei Wang | 1cfb71e | 2017-06-17 10:42:33 -0700 | [diff] [blame] | 1886 | } else { |
Martin KaFai Lau | 3da59bd | 2015-05-22 20:56:03 -0700 | [diff] [blame] | 1887 | uncached_rt = net->ipv6.ip6_null_entry; |
Wei Wang | 1cfb71e | 2017-06-17 10:42:33 -0700 | [diff] [blame] | 1888 | dst_hold(&uncached_rt->dst); |
| 1889 | } |
David Ahern | b811580 | 2015-11-19 12:24:22 -0800 | [diff] [blame] | 1890 | |
Paolo Abeni | b65f164 | 2017-10-19 09:31:43 +0200 | [diff] [blame] | 1891 | trace_fib6_table_lookup(net, uncached_rt, table, fl6); |
Martin KaFai Lau | 3da59bd | 2015-05-22 20:56:03 -0700 | [diff] [blame] | 1892 | return uncached_rt; |
Martin KaFai Lau | 3da59bd | 2015-05-22 20:56:03 -0700 | [diff] [blame] | 1893 | |
Martin KaFai Lau | d52d399 | 2015-05-22 20:56:06 -0700 | [diff] [blame] | 1894 | } else { |
| 1895 | /* Get a percpu copy */ |
| 1896 | |
| 1897 | struct rt6_info *pcpu_rt; |
| 1898 | |
Eric Dumazet | 951f788 | 2017-10-08 21:07:18 -0700 | [diff] [blame] | 1899 | local_bh_disable(); |
David Ahern | 23fb93a | 2018-04-17 17:33:23 -0700 | [diff] [blame] | 1900 | pcpu_rt = rt6_get_pcpu_route(f6i); |
Martin KaFai Lau | d52d399 | 2015-05-22 20:56:06 -0700 | [diff] [blame] | 1901 | |
David Ahern | 93531c6 | 2018-04-17 17:33:25 -0700 | [diff] [blame] | 1902 | if (!pcpu_rt) |
| 1903 | pcpu_rt = rt6_make_pcpu_route(net, f6i); |
| 1904 | |
Eric Dumazet | 951f788 | 2017-10-08 21:07:18 -0700 | [diff] [blame] | 1905 | local_bh_enable(); |
| 1906 | rcu_read_unlock(); |
Paolo Abeni | b65f164 | 2017-10-19 09:31:43 +0200 | [diff] [blame] | 1907 | trace_fib6_table_lookup(net, pcpu_rt, table, fl6); |
Martin KaFai Lau | d52d399 | 2015-05-22 20:56:06 -0700 | [diff] [blame] | 1908 | return pcpu_rt; |
| 1909 | } |
Thomas Graf | c71099a | 2006-08-04 23:20:06 -0700 | [diff] [blame] | 1910 | } |
David Ahern | 9ff7438 | 2016-06-13 13:44:19 -0700 | [diff] [blame] | 1911 | EXPORT_SYMBOL_GPL(ip6_pol_route); |
Thomas Graf | c71099a | 2006-08-04 23:20:06 -0700 | [diff] [blame] | 1912 | |
David Ahern | b75cc8f | 2018-03-02 08:32:17 -0800 | [diff] [blame] | 1913 | static struct rt6_info *ip6_pol_route_input(struct net *net, |
| 1914 | struct fib6_table *table, |
| 1915 | struct flowi6 *fl6, |
| 1916 | const struct sk_buff *skb, |
| 1917 | int flags) |
Pavel Emelyanov | 4acad72 | 2007-10-15 13:02:51 -0700 | [diff] [blame] | 1918 | { |
David Ahern | b75cc8f | 2018-03-02 08:32:17 -0800 | [diff] [blame] | 1919 | return ip6_pol_route(net, table, fl6->flowi6_iif, fl6, skb, flags); |
Pavel Emelyanov | 4acad72 | 2007-10-15 13:02:51 -0700 | [diff] [blame] | 1920 | } |
| 1921 | |
Mahesh Bandewar | d409b84 | 2016-09-16 12:59:08 -0700 | [diff] [blame] | 1922 | struct dst_entry *ip6_route_input_lookup(struct net *net, |
| 1923 | struct net_device *dev, |
David Ahern | b75cc8f | 2018-03-02 08:32:17 -0800 | [diff] [blame] | 1924 | struct flowi6 *fl6, |
| 1925 | const struct sk_buff *skb, |
| 1926 | int flags) |
Shmulik Ladkani | 72331bc | 2012-04-01 04:03:45 +0000 | [diff] [blame] | 1927 | { |
| 1928 | if (rt6_need_strict(&fl6->daddr) && dev->type != ARPHRD_PIMREG) |
| 1929 | flags |= RT6_LOOKUP_F_IFACE; |
| 1930 | |
David Ahern | b75cc8f | 2018-03-02 08:32:17 -0800 | [diff] [blame] | 1931 | return fib6_rule_lookup(net, fl6, skb, flags, ip6_pol_route_input); |
Shmulik Ladkani | 72331bc | 2012-04-01 04:03:45 +0000 | [diff] [blame] | 1932 | } |
Mahesh Bandewar | d409b84 | 2016-09-16 12:59:08 -0700 | [diff] [blame] | 1933 | EXPORT_SYMBOL_GPL(ip6_route_input_lookup); |
Shmulik Ladkani | 72331bc | 2012-04-01 04:03:45 +0000 | [diff] [blame] | 1934 | |
Jakub Sitnicki | 23aebda | 2017-08-23 09:58:29 +0200 | [diff] [blame] | 1935 | static void ip6_multipath_l3_keys(const struct sk_buff *skb, |
Roopa Prabhu | 5e5d6fe | 2018-02-28 22:43:22 -0500 | [diff] [blame] | 1936 | struct flow_keys *keys, |
| 1937 | struct flow_keys *flkeys) |
Jakub Sitnicki | 23aebda | 2017-08-23 09:58:29 +0200 | [diff] [blame] | 1938 | { |
| 1939 | const struct ipv6hdr *outer_iph = ipv6_hdr(skb); |
| 1940 | const struct ipv6hdr *key_iph = outer_iph; |
Roopa Prabhu | 5e5d6fe | 2018-02-28 22:43:22 -0500 | [diff] [blame] | 1941 | struct flow_keys *_flkeys = flkeys; |
Jakub Sitnicki | 23aebda | 2017-08-23 09:58:29 +0200 | [diff] [blame] | 1942 | const struct ipv6hdr *inner_iph; |
| 1943 | const struct icmp6hdr *icmph; |
| 1944 | struct ipv6hdr _inner_iph; |
| 1945 | |
| 1946 | if (likely(outer_iph->nexthdr != IPPROTO_ICMPV6)) |
| 1947 | goto out; |
| 1948 | |
| 1949 | icmph = icmp6_hdr(skb); |
| 1950 | if (icmph->icmp6_type != ICMPV6_DEST_UNREACH && |
| 1951 | icmph->icmp6_type != ICMPV6_PKT_TOOBIG && |
| 1952 | icmph->icmp6_type != ICMPV6_TIME_EXCEED && |
| 1953 | icmph->icmp6_type != ICMPV6_PARAMPROB) |
| 1954 | goto out; |
| 1955 | |
| 1956 | inner_iph = skb_header_pointer(skb, |
| 1957 | skb_transport_offset(skb) + sizeof(*icmph), |
| 1958 | sizeof(_inner_iph), &_inner_iph); |
| 1959 | if (!inner_iph) |
| 1960 | goto out; |
| 1961 | |
| 1962 | key_iph = inner_iph; |
Roopa Prabhu | 5e5d6fe | 2018-02-28 22:43:22 -0500 | [diff] [blame] | 1963 | _flkeys = NULL; |
Jakub Sitnicki | 23aebda | 2017-08-23 09:58:29 +0200 | [diff] [blame] | 1964 | out: |
Roopa Prabhu | 5e5d6fe | 2018-02-28 22:43:22 -0500 | [diff] [blame] | 1965 | if (_flkeys) { |
| 1966 | keys->addrs.v6addrs.src = _flkeys->addrs.v6addrs.src; |
| 1967 | keys->addrs.v6addrs.dst = _flkeys->addrs.v6addrs.dst; |
| 1968 | keys->tags.flow_label = _flkeys->tags.flow_label; |
| 1969 | keys->basic.ip_proto = _flkeys->basic.ip_proto; |
| 1970 | } else { |
| 1971 | keys->addrs.v6addrs.src = key_iph->saddr; |
| 1972 | keys->addrs.v6addrs.dst = key_iph->daddr; |
| 1973 | keys->tags.flow_label = ip6_flowinfo(key_iph); |
| 1974 | keys->basic.ip_proto = key_iph->nexthdr; |
| 1975 | } |
Jakub Sitnicki | 23aebda | 2017-08-23 09:58:29 +0200 | [diff] [blame] | 1976 | } |
| 1977 | |
| 1978 | /* if skb is set it will be used and fl6 can be NULL */ |
David Ahern | b4bac17 | 2018-03-02 08:32:18 -0800 | [diff] [blame] | 1979 | u32 rt6_multipath_hash(const struct net *net, const struct flowi6 *fl6, |
| 1980 | const struct sk_buff *skb, struct flow_keys *flkeys) |
Jakub Sitnicki | 23aebda | 2017-08-23 09:58:29 +0200 | [diff] [blame] | 1981 | { |
| 1982 | struct flow_keys hash_keys; |
David Ahern | 9a2a537 | 2018-03-02 08:32:15 -0800 | [diff] [blame] | 1983 | u32 mhash; |
Jakub Sitnicki | 23aebda | 2017-08-23 09:58:29 +0200 | [diff] [blame] | 1984 | |
David S. Miller | bbfa047 | 2018-03-12 11:09:33 -0400 | [diff] [blame] | 1985 | switch (ip6_multipath_hash_policy(net)) { |
David Ahern | b4bac17 | 2018-03-02 08:32:18 -0800 | [diff] [blame] | 1986 | case 0: |
| 1987 | memset(&hash_keys, 0, sizeof(hash_keys)); |
| 1988 | hash_keys.control.addr_type = FLOW_DISSECTOR_KEY_IPV6_ADDRS; |
| 1989 | if (skb) { |
| 1990 | ip6_multipath_l3_keys(skb, &hash_keys, flkeys); |
| 1991 | } else { |
| 1992 | hash_keys.addrs.v6addrs.src = fl6->saddr; |
| 1993 | hash_keys.addrs.v6addrs.dst = fl6->daddr; |
| 1994 | hash_keys.tags.flow_label = (__force u32)fl6->flowlabel; |
| 1995 | hash_keys.basic.ip_proto = fl6->flowi6_proto; |
| 1996 | } |
| 1997 | break; |
| 1998 | case 1: |
| 1999 | if (skb) { |
| 2000 | unsigned int flag = FLOW_DISSECTOR_F_STOP_AT_ENCAP; |
| 2001 | struct flow_keys keys; |
| 2002 | |
| 2003 | /* short-circuit if we already have L4 hash present */ |
| 2004 | if (skb->l4_hash) |
| 2005 | return skb_get_hash_raw(skb) >> 1; |
| 2006 | |
| 2007 | memset(&hash_keys, 0, sizeof(hash_keys)); |
| 2008 | |
| 2009 | if (!flkeys) { |
| 2010 | skb_flow_dissect_flow_keys(skb, &keys, flag); |
| 2011 | flkeys = &keys; |
| 2012 | } |
| 2013 | hash_keys.control.addr_type = FLOW_DISSECTOR_KEY_IPV6_ADDRS; |
| 2014 | hash_keys.addrs.v6addrs.src = flkeys->addrs.v6addrs.src; |
| 2015 | hash_keys.addrs.v6addrs.dst = flkeys->addrs.v6addrs.dst; |
| 2016 | hash_keys.ports.src = flkeys->ports.src; |
| 2017 | hash_keys.ports.dst = flkeys->ports.dst; |
| 2018 | hash_keys.basic.ip_proto = flkeys->basic.ip_proto; |
| 2019 | } else { |
| 2020 | memset(&hash_keys, 0, sizeof(hash_keys)); |
| 2021 | hash_keys.control.addr_type = FLOW_DISSECTOR_KEY_IPV6_ADDRS; |
| 2022 | hash_keys.addrs.v6addrs.src = fl6->saddr; |
| 2023 | hash_keys.addrs.v6addrs.dst = fl6->daddr; |
| 2024 | hash_keys.ports.src = fl6->fl6_sport; |
| 2025 | hash_keys.ports.dst = fl6->fl6_dport; |
| 2026 | hash_keys.basic.ip_proto = fl6->flowi6_proto; |
| 2027 | } |
| 2028 | break; |
Jakub Sitnicki | 23aebda | 2017-08-23 09:58:29 +0200 | [diff] [blame] | 2029 | } |
David Ahern | 9a2a537 | 2018-03-02 08:32:15 -0800 | [diff] [blame] | 2030 | mhash = flow_hash_from_keys(&hash_keys); |
Jakub Sitnicki | 23aebda | 2017-08-23 09:58:29 +0200 | [diff] [blame] | 2031 | |
David Ahern | 9a2a537 | 2018-03-02 08:32:15 -0800 | [diff] [blame] | 2032 | return mhash >> 1; |
Jakub Sitnicki | 23aebda | 2017-08-23 09:58:29 +0200 | [diff] [blame] | 2033 | } |
| 2034 | |
Thomas Graf | c71099a | 2006-08-04 23:20:06 -0700 | [diff] [blame] | 2035 | void ip6_route_input(struct sk_buff *skb) |
| 2036 | { |
Eric Dumazet | b71d1d4 | 2011-04-22 04:53:02 +0000 | [diff] [blame] | 2037 | const struct ipv6hdr *iph = ipv6_hdr(skb); |
YOSHIFUJI Hideaki | c346dca | 2008-03-25 21:47:49 +0900 | [diff] [blame] | 2038 | struct net *net = dev_net(skb->dev); |
Thomas Graf | adaa70b | 2006-10-13 15:01:03 -0700 | [diff] [blame] | 2039 | int flags = RT6_LOOKUP_F_HAS_SADDR; |
Jiri Benc | 904af04 | 2015-08-20 13:56:31 +0200 | [diff] [blame] | 2040 | struct ip_tunnel_info *tun_info; |
David S. Miller | 4c9483b | 2011-03-12 16:22:43 -0500 | [diff] [blame] | 2041 | struct flowi6 fl6 = { |
David Ahern | e0d56fd | 2016-09-10 12:09:57 -0700 | [diff] [blame] | 2042 | .flowi6_iif = skb->dev->ifindex, |
David S. Miller | 4c9483b | 2011-03-12 16:22:43 -0500 | [diff] [blame] | 2043 | .daddr = iph->daddr, |
| 2044 | .saddr = iph->saddr, |
YOSHIFUJI Hideaki / 吉藤英明 | 6502ca5 | 2013-01-13 05:01:51 +0000 | [diff] [blame] | 2045 | .flowlabel = ip6_flowinfo(iph), |
David S. Miller | 4c9483b | 2011-03-12 16:22:43 -0500 | [diff] [blame] | 2046 | .flowi6_mark = skb->mark, |
| 2047 | .flowi6_proto = iph->nexthdr, |
Thomas Graf | c71099a | 2006-08-04 23:20:06 -0700 | [diff] [blame] | 2048 | }; |
Roopa Prabhu | 5e5d6fe | 2018-02-28 22:43:22 -0500 | [diff] [blame] | 2049 | struct flow_keys *flkeys = NULL, _flkeys; |
Thomas Graf | adaa70b | 2006-10-13 15:01:03 -0700 | [diff] [blame] | 2050 | |
Jiri Benc | 904af04 | 2015-08-20 13:56:31 +0200 | [diff] [blame] | 2051 | tun_info = skb_tunnel_info(skb); |
Jiri Benc | 46fa062 | 2015-08-28 20:48:19 +0200 | [diff] [blame] | 2052 | if (tun_info && !(tun_info->mode & IP_TUNNEL_INFO_TX)) |
Jiri Benc | 904af04 | 2015-08-20 13:56:31 +0200 | [diff] [blame] | 2053 | fl6.flowi6_tun_key.tun_id = tun_info->key.tun_id; |
Roopa Prabhu | 5e5d6fe | 2018-02-28 22:43:22 -0500 | [diff] [blame] | 2054 | |
| 2055 | if (fib6_rules_early_flow_dissect(net, skb, &fl6, &_flkeys)) |
| 2056 | flkeys = &_flkeys; |
| 2057 | |
Jakub Sitnicki | 23aebda | 2017-08-23 09:58:29 +0200 | [diff] [blame] | 2058 | if (unlikely(fl6.flowi6_proto == IPPROTO_ICMPV6)) |
David Ahern | b4bac17 | 2018-03-02 08:32:18 -0800 | [diff] [blame] | 2059 | fl6.mp_hash = rt6_multipath_hash(net, &fl6, skb, flkeys); |
Jiri Benc | 06e9d04 | 2015-08-20 13:56:26 +0200 | [diff] [blame] | 2060 | skb_dst_drop(skb); |
David Ahern | b75cc8f | 2018-03-02 08:32:17 -0800 | [diff] [blame] | 2061 | skb_dst_set(skb, |
| 2062 | ip6_route_input_lookup(net, skb->dev, &fl6, skb, flags)); |
Thomas Graf | c71099a | 2006-08-04 23:20:06 -0700 | [diff] [blame] | 2063 | } |
| 2064 | |
David Ahern | b75cc8f | 2018-03-02 08:32:17 -0800 | [diff] [blame] | 2065 | static struct rt6_info *ip6_pol_route_output(struct net *net, |
| 2066 | struct fib6_table *table, |
| 2067 | struct flowi6 *fl6, |
| 2068 | const struct sk_buff *skb, |
| 2069 | int flags) |
Thomas Graf | c71099a | 2006-08-04 23:20:06 -0700 | [diff] [blame] | 2070 | { |
David Ahern | b75cc8f | 2018-03-02 08:32:17 -0800 | [diff] [blame] | 2071 | return ip6_pol_route(net, table, fl6->flowi6_oif, fl6, skb, flags); |
Thomas Graf | c71099a | 2006-08-04 23:20:06 -0700 | [diff] [blame] | 2072 | } |
| 2073 | |
Paolo Abeni | 6f21c96 | 2016-01-29 12:30:19 +0100 | [diff] [blame] | 2074 | struct dst_entry *ip6_route_output_flags(struct net *net, const struct sock *sk, |
| 2075 | struct flowi6 *fl6, int flags) |
Thomas Graf | c71099a | 2006-08-04 23:20:06 -0700 | [diff] [blame] | 2076 | { |
David Ahern | d46a9d6 | 2015-10-21 08:42:22 -0700 | [diff] [blame] | 2077 | bool any_src; |
Thomas Graf | c71099a | 2006-08-04 23:20:06 -0700 | [diff] [blame] | 2078 | |
David Ahern | 4c1feac | 2016-09-10 12:09:56 -0700 | [diff] [blame] | 2079 | if (rt6_need_strict(&fl6->daddr)) { |
| 2080 | struct dst_entry *dst; |
| 2081 | |
| 2082 | dst = l3mdev_link_scope_lookup(net, fl6); |
| 2083 | if (dst) |
| 2084 | return dst; |
| 2085 | } |
David Ahern | ca25449 | 2015-10-12 11:47:10 -0700 | [diff] [blame] | 2086 | |
Pavel Emelyanov | 1fb9489 | 2012-08-08 21:53:36 +0000 | [diff] [blame] | 2087 | fl6->flowi6_iif = LOOPBACK_IFINDEX; |
David McCullough | 4dc27d1c | 2012-06-25 15:42:26 +0000 | [diff] [blame] | 2088 | |
David Ahern | d46a9d6 | 2015-10-21 08:42:22 -0700 | [diff] [blame] | 2089 | any_src = ipv6_addr_any(&fl6->saddr); |
David Ahern | 741a11d | 2015-09-28 10:12:13 -0700 | [diff] [blame] | 2090 | if ((sk && sk->sk_bound_dev_if) || rt6_need_strict(&fl6->daddr) || |
David Ahern | d46a9d6 | 2015-10-21 08:42:22 -0700 | [diff] [blame] | 2091 | (fl6->flowi6_oif && any_src)) |
YOSHIFUJI Hideaki | 77d16f4 | 2006-08-23 17:25:05 -0700 | [diff] [blame] | 2092 | flags |= RT6_LOOKUP_F_IFACE; |
Thomas Graf | c71099a | 2006-08-04 23:20:06 -0700 | [diff] [blame] | 2093 | |
David Ahern | d46a9d6 | 2015-10-21 08:42:22 -0700 | [diff] [blame] | 2094 | if (!any_src) |
Thomas Graf | adaa70b | 2006-10-13 15:01:03 -0700 | [diff] [blame] | 2095 | flags |= RT6_LOOKUP_F_HAS_SADDR; |
YOSHIFUJI Hideaki / 吉藤英明 | 0c9a2ac | 2010-03-07 00:14:44 +0000 | [diff] [blame] | 2096 | else if (sk) |
| 2097 | flags |= rt6_srcprefs2flags(inet6_sk(sk)->srcprefs); |
Thomas Graf | adaa70b | 2006-10-13 15:01:03 -0700 | [diff] [blame] | 2098 | |
David Ahern | b75cc8f | 2018-03-02 08:32:17 -0800 | [diff] [blame] | 2099 | return fib6_rule_lookup(net, fl6, NULL, flags, ip6_pol_route_output); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2100 | } |
Paolo Abeni | 6f21c96 | 2016-01-29 12:30:19 +0100 | [diff] [blame] | 2101 | EXPORT_SYMBOL_GPL(ip6_route_output_flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2102 | |
David S. Miller | 2774c13 | 2011-03-01 14:59:04 -0800 | [diff] [blame] | 2103 | struct dst_entry *ip6_blackhole_route(struct net *net, struct dst_entry *dst_orig) |
David S. Miller | 14e50e5 | 2007-05-24 18:17:54 -0700 | [diff] [blame] | 2104 | { |
David S. Miller | 5c1e6aa | 2011-04-28 14:13:38 -0700 | [diff] [blame] | 2105 | struct rt6_info *rt, *ort = (struct rt6_info *) dst_orig; |
Wei Wang | 1dbe3252 | 2017-06-17 10:42:26 -0700 | [diff] [blame] | 2106 | struct net_device *loopback_dev = net->loopback_dev; |
David S. Miller | 14e50e5 | 2007-05-24 18:17:54 -0700 | [diff] [blame] | 2107 | struct dst_entry *new = NULL; |
| 2108 | |
Wei Wang | 1dbe3252 | 2017-06-17 10:42:26 -0700 | [diff] [blame] | 2109 | rt = dst_alloc(&ip6_dst_blackhole_ops, loopback_dev, 1, |
Steffen Klassert | 62cf27e | 2017-10-09 08:39:43 +0200 | [diff] [blame] | 2110 | DST_OBSOLETE_DEAD, 0); |
David S. Miller | 14e50e5 | 2007-05-24 18:17:54 -0700 | [diff] [blame] | 2111 | if (rt) { |
Martin KaFai Lau | 0a1f596 | 2015-10-15 16:39:58 -0700 | [diff] [blame] | 2112 | rt6_info_init(rt); |
Wei Wang | 81eb844 | 2017-10-06 12:06:11 -0700 | [diff] [blame] | 2113 | atomic_inc(&net->ipv6.rt6_stats->fib_rt_alloc); |
Martin KaFai Lau | 0a1f596 | 2015-10-15 16:39:58 -0700 | [diff] [blame] | 2114 | |
Changli Gao | d8d1f30 | 2010-06-10 23:31:35 -0700 | [diff] [blame] | 2115 | new = &rt->dst; |
David S. Miller | 14e50e5 | 2007-05-24 18:17:54 -0700 | [diff] [blame] | 2116 | new->__use = 1; |
Herbert Xu | 352e512 | 2007-11-13 21:34:06 -0800 | [diff] [blame] | 2117 | new->input = dst_discard; |
Eric W. Biederman | ede2059 | 2015-10-07 16:48:47 -0500 | [diff] [blame] | 2118 | new->output = dst_discard_out; |
David S. Miller | 14e50e5 | 2007-05-24 18:17:54 -0700 | [diff] [blame] | 2119 | |
Martin KaFai Lau | 0a1f596 | 2015-10-15 16:39:58 -0700 | [diff] [blame] | 2120 | dst_copy_metrics(new, &ort->dst); |
David S. Miller | 14e50e5 | 2007-05-24 18:17:54 -0700 | [diff] [blame] | 2121 | |
Wei Wang | 1dbe3252 | 2017-06-17 10:42:26 -0700 | [diff] [blame] | 2122 | rt->rt6i_idev = in6_dev_get(loopback_dev); |
Alexey Dobriyan | 4e3fd7a | 2011-11-21 03:39:03 +0000 | [diff] [blame] | 2123 | rt->rt6i_gateway = ort->rt6i_gateway; |
Martin KaFai Lau | 0a1f596 | 2015-10-15 16:39:58 -0700 | [diff] [blame] | 2124 | rt->rt6i_flags = ort->rt6i_flags & ~RTF_PCPU; |
David S. Miller | 14e50e5 | 2007-05-24 18:17:54 -0700 | [diff] [blame] | 2125 | rt->rt6i_metric = 0; |
| 2126 | |
| 2127 | memcpy(&rt->rt6i_dst, &ort->rt6i_dst, sizeof(struct rt6key)); |
| 2128 | #ifdef CONFIG_IPV6_SUBTREES |
| 2129 | memcpy(&rt->rt6i_src, &ort->rt6i_src, sizeof(struct rt6key)); |
| 2130 | #endif |
David S. Miller | 14e50e5 | 2007-05-24 18:17:54 -0700 | [diff] [blame] | 2131 | } |
| 2132 | |
David S. Miller | 69ead7a | 2011-03-01 14:45:33 -0800 | [diff] [blame] | 2133 | dst_release(dst_orig); |
| 2134 | return new ? new : ERR_PTR(-ENOMEM); |
David S. Miller | 14e50e5 | 2007-05-24 18:17:54 -0700 | [diff] [blame] | 2135 | } |
David S. Miller | 14e50e5 | 2007-05-24 18:17:54 -0700 | [diff] [blame] | 2136 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2137 | /* |
| 2138 | * Destination cache support functions |
| 2139 | */ |
| 2140 | |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame^] | 2141 | static bool fib6_check(struct fib6_info *f6i, u32 cookie) |
David Ahern | 93531c6 | 2018-04-17 17:33:25 -0700 | [diff] [blame] | 2142 | { |
| 2143 | u32 rt_cookie = 0; |
| 2144 | |
| 2145 | if ((f6i && !rt6_get_cookie_safe(f6i, &rt_cookie)) || |
| 2146 | rt_cookie != cookie) |
| 2147 | return false; |
| 2148 | |
| 2149 | if (fib6_check_expired(f6i)) |
| 2150 | return false; |
| 2151 | |
| 2152 | return true; |
| 2153 | } |
| 2154 | |
Martin KaFai Lau | 3da59bd | 2015-05-22 20:56:03 -0700 | [diff] [blame] | 2155 | static struct dst_entry *rt6_check(struct rt6_info *rt, u32 cookie) |
| 2156 | { |
Steffen Klassert | 3614364 | 2017-08-25 09:05:42 +0200 | [diff] [blame] | 2157 | u32 rt_cookie = 0; |
Wei Wang | c5cff85 | 2017-08-21 09:47:10 -0700 | [diff] [blame] | 2158 | |
David Ahern | 93531c6 | 2018-04-17 17:33:25 -0700 | [diff] [blame] | 2159 | if ((rt->from && !rt6_get_cookie_safe(rt->from, &rt_cookie)) || |
| 2160 | rt_cookie != cookie) |
Martin KaFai Lau | 3da59bd | 2015-05-22 20:56:03 -0700 | [diff] [blame] | 2161 | return NULL; |
| 2162 | |
| 2163 | if (rt6_check_expired(rt)) |
| 2164 | return NULL; |
| 2165 | |
| 2166 | return &rt->dst; |
| 2167 | } |
| 2168 | |
| 2169 | static struct dst_entry *rt6_dst_from_check(struct rt6_info *rt, u32 cookie) |
| 2170 | { |
Martin KaFai Lau | 5973fb1 | 2015-11-11 11:51:07 -0800 | [diff] [blame] | 2171 | if (!__rt6_check_expired(rt) && |
| 2172 | rt->dst.obsolete == DST_OBSOLETE_FORCE_CHK && |
David Ahern | 93531c6 | 2018-04-17 17:33:25 -0700 | [diff] [blame] | 2173 | fib6_check(rt->from, cookie)) |
Martin KaFai Lau | 3da59bd | 2015-05-22 20:56:03 -0700 | [diff] [blame] | 2174 | return &rt->dst; |
| 2175 | else |
| 2176 | return NULL; |
| 2177 | } |
| 2178 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2179 | static struct dst_entry *ip6_dst_check(struct dst_entry *dst, u32 cookie) |
| 2180 | { |
| 2181 | struct rt6_info *rt; |
| 2182 | |
| 2183 | rt = (struct rt6_info *) dst; |
| 2184 | |
Nicolas Dichtel | 6f3118b | 2012-09-10 22:09:46 +0000 | [diff] [blame] | 2185 | /* All IPV6 dsts are created with ->obsolete set to the value |
| 2186 | * DST_OBSOLETE_FORCE_CHK which forces validation calls down |
| 2187 | * into this function always. |
| 2188 | */ |
Hannes Frederic Sowa | e3bc10b | 2013-10-24 07:48:24 +0200 | [diff] [blame] | 2189 | |
Martin KaFai Lau | 02bcf4e | 2015-11-11 11:51:08 -0800 | [diff] [blame] | 2190 | if (rt->rt6i_flags & RTF_PCPU || |
David Miller | 3a2232e | 2017-11-28 15:40:40 -0500 | [diff] [blame] | 2191 | (unlikely(!list_empty(&rt->rt6i_uncached)) && rt->from)) |
Martin KaFai Lau | 3da59bd | 2015-05-22 20:56:03 -0700 | [diff] [blame] | 2192 | return rt6_dst_from_check(rt, cookie); |
| 2193 | else |
| 2194 | return rt6_check(rt, cookie); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2195 | } |
| 2196 | |
| 2197 | static struct dst_entry *ip6_negative_advice(struct dst_entry *dst) |
| 2198 | { |
| 2199 | struct rt6_info *rt = (struct rt6_info *) dst; |
| 2200 | |
| 2201 | if (rt) { |
YOSHIFUJI Hideaki / 吉藤英明 | 54c1a85 | 2010-03-28 07:15:45 +0000 | [diff] [blame] | 2202 | if (rt->rt6i_flags & RTF_CACHE) { |
| 2203 | if (rt6_check_expired(rt)) { |
David Ahern | 93531c6 | 2018-04-17 17:33:25 -0700 | [diff] [blame] | 2204 | rt6_remove_exception_rt(rt); |
YOSHIFUJI Hideaki / 吉藤英明 | 54c1a85 | 2010-03-28 07:15:45 +0000 | [diff] [blame] | 2205 | dst = NULL; |
| 2206 | } |
| 2207 | } else { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2208 | dst_release(dst); |
YOSHIFUJI Hideaki / 吉藤英明 | 54c1a85 | 2010-03-28 07:15:45 +0000 | [diff] [blame] | 2209 | dst = NULL; |
| 2210 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2211 | } |
YOSHIFUJI Hideaki / 吉藤英明 | 54c1a85 | 2010-03-28 07:15:45 +0000 | [diff] [blame] | 2212 | return dst; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2213 | } |
| 2214 | |
| 2215 | static void ip6_link_failure(struct sk_buff *skb) |
| 2216 | { |
| 2217 | struct rt6_info *rt; |
| 2218 | |
Alexey Dobriyan | 3ffe533 | 2010-02-18 08:25:24 +0000 | [diff] [blame] | 2219 | icmpv6_send(skb, ICMPV6_DEST_UNREACH, ICMPV6_ADDR_UNREACH, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2220 | |
Eric Dumazet | adf3090 | 2009-06-02 05:19:30 +0000 | [diff] [blame] | 2221 | rt = (struct rt6_info *) skb_dst(skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2222 | if (rt) { |
Hannes Frederic Sowa | 1eb4f75 | 2013-07-10 23:00:57 +0200 | [diff] [blame] | 2223 | if (rt->rt6i_flags & RTF_CACHE) { |
Wei Wang | ad65a2f | 2017-06-17 10:42:35 -0700 | [diff] [blame] | 2224 | if (dst_hold_safe(&rt->dst)) |
David Ahern | 93531c6 | 2018-04-17 17:33:25 -0700 | [diff] [blame] | 2225 | rt6_remove_exception_rt(rt); |
| 2226 | } else if (rt->from) { |
Wei Wang | c5cff85 | 2017-08-21 09:47:10 -0700 | [diff] [blame] | 2227 | struct fib6_node *fn; |
| 2228 | |
| 2229 | rcu_read_lock(); |
David Ahern | 93531c6 | 2018-04-17 17:33:25 -0700 | [diff] [blame] | 2230 | fn = rcu_dereference(rt->from->rt6i_node); |
Wei Wang | c5cff85 | 2017-08-21 09:47:10 -0700 | [diff] [blame] | 2231 | if (fn && (rt->rt6i_flags & RTF_DEFAULT)) |
| 2232 | fn->fn_sernum = -1; |
| 2233 | rcu_read_unlock(); |
Hannes Frederic Sowa | 1eb4f75 | 2013-07-10 23:00:57 +0200 | [diff] [blame] | 2234 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2235 | } |
| 2236 | } |
| 2237 | |
Martin KaFai Lau | 45e4fd2 | 2015-05-22 20:56:00 -0700 | [diff] [blame] | 2238 | static void rt6_do_update_pmtu(struct rt6_info *rt, u32 mtu) |
| 2239 | { |
| 2240 | struct net *net = dev_net(rt->dst.dev); |
| 2241 | |
David Ahern | d4ead6b | 2018-04-17 17:33:16 -0700 | [diff] [blame] | 2242 | dst_metric_set(&rt->dst, RTAX_MTU, mtu); |
Martin KaFai Lau | 45e4fd2 | 2015-05-22 20:56:00 -0700 | [diff] [blame] | 2243 | rt->rt6i_flags |= RTF_MODIFIED; |
Martin KaFai Lau | 45e4fd2 | 2015-05-22 20:56:00 -0700 | [diff] [blame] | 2244 | rt6_update_expires(rt, net->ipv6.sysctl.ip6_rt_mtu_expires); |
| 2245 | } |
| 2246 | |
Martin KaFai Lau | 0d3f6d2 | 2015-11-11 11:51:06 -0800 | [diff] [blame] | 2247 | static bool rt6_cache_allowed_for_pmtu(const struct rt6_info *rt) |
| 2248 | { |
| 2249 | return !(rt->rt6i_flags & RTF_CACHE) && |
Wei Wang | 4e587ea | 2017-08-25 15:03:10 -0700 | [diff] [blame] | 2250 | (rt->rt6i_flags & RTF_PCPU || |
| 2251 | rcu_access_pointer(rt->rt6i_node)); |
Martin KaFai Lau | 0d3f6d2 | 2015-11-11 11:51:06 -0800 | [diff] [blame] | 2252 | } |
| 2253 | |
Martin KaFai Lau | 45e4fd2 | 2015-05-22 20:56:00 -0700 | [diff] [blame] | 2254 | static void __ip6_rt_update_pmtu(struct dst_entry *dst, const struct sock *sk, |
| 2255 | const struct ipv6hdr *iph, u32 mtu) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2256 | { |
Julian Anastasov | 0dec879 | 2017-02-06 23:14:16 +0200 | [diff] [blame] | 2257 | const struct in6_addr *daddr, *saddr; |
Ian Morris | 67ba415 | 2014-08-24 21:53:10 +0100 | [diff] [blame] | 2258 | struct rt6_info *rt6 = (struct rt6_info *)dst; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2259 | |
Martin KaFai Lau | 45e4fd2 | 2015-05-22 20:56:00 -0700 | [diff] [blame] | 2260 | if (rt6->rt6i_flags & RTF_LOCAL) |
| 2261 | return; |
| 2262 | |
Xin Long | 19bda36 | 2016-10-28 18:18:01 +0800 | [diff] [blame] | 2263 | if (dst_metric_locked(dst, RTAX_MTU)) |
| 2264 | return; |
| 2265 | |
Julian Anastasov | 0dec879 | 2017-02-06 23:14:16 +0200 | [diff] [blame] | 2266 | if (iph) { |
| 2267 | daddr = &iph->daddr; |
| 2268 | saddr = &iph->saddr; |
| 2269 | } else if (sk) { |
| 2270 | daddr = &sk->sk_v6_daddr; |
| 2271 | saddr = &inet6_sk(sk)->saddr; |
| 2272 | } else { |
| 2273 | daddr = NULL; |
| 2274 | saddr = NULL; |
| 2275 | } |
| 2276 | dst_confirm_neigh(dst, daddr); |
Martin KaFai Lau | 45e4fd2 | 2015-05-22 20:56:00 -0700 | [diff] [blame] | 2277 | mtu = max_t(u32, mtu, IPV6_MIN_MTU); |
| 2278 | if (mtu >= dst_mtu(dst)) |
| 2279 | return; |
David S. Miller | 81aded2 | 2012-06-15 14:54:11 -0700 | [diff] [blame] | 2280 | |
Martin KaFai Lau | 0d3f6d2 | 2015-11-11 11:51:06 -0800 | [diff] [blame] | 2281 | if (!rt6_cache_allowed_for_pmtu(rt6)) { |
Martin KaFai Lau | 45e4fd2 | 2015-05-22 20:56:00 -0700 | [diff] [blame] | 2282 | rt6_do_update_pmtu(rt6, mtu); |
Wei Wang | 2b760fc | 2017-10-06 12:06:03 -0700 | [diff] [blame] | 2283 | /* update rt6_ex->stamp for cache */ |
| 2284 | if (rt6->rt6i_flags & RTF_CACHE) |
| 2285 | rt6_update_exception_stamp_rt(rt6); |
Julian Anastasov | 0dec879 | 2017-02-06 23:14:16 +0200 | [diff] [blame] | 2286 | } else if (daddr) { |
Martin KaFai Lau | 45e4fd2 | 2015-05-22 20:56:00 -0700 | [diff] [blame] | 2287 | struct rt6_info *nrt6; |
Hagen Paul Pfeifer | 9d28971 | 2015-01-15 22:34:25 +0100 | [diff] [blame] | 2288 | |
David Ahern | d4ead6b | 2018-04-17 17:33:16 -0700 | [diff] [blame] | 2289 | nrt6 = ip6_rt_cache_alloc(rt6->from, daddr, saddr); |
Martin KaFai Lau | 45e4fd2 | 2015-05-22 20:56:00 -0700 | [diff] [blame] | 2290 | if (nrt6) { |
| 2291 | rt6_do_update_pmtu(nrt6, mtu); |
David Ahern | d4ead6b | 2018-04-17 17:33:16 -0700 | [diff] [blame] | 2292 | if (rt6_insert_exception(nrt6, rt6->from)) |
Wei Wang | 2b760fc | 2017-10-06 12:06:03 -0700 | [diff] [blame] | 2293 | dst_release_immediate(&nrt6->dst); |
Martin KaFai Lau | 45e4fd2 | 2015-05-22 20:56:00 -0700 | [diff] [blame] | 2294 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2295 | } |
| 2296 | } |
| 2297 | |
Martin KaFai Lau | 45e4fd2 | 2015-05-22 20:56:00 -0700 | [diff] [blame] | 2298 | static void ip6_rt_update_pmtu(struct dst_entry *dst, struct sock *sk, |
| 2299 | struct sk_buff *skb, u32 mtu) |
| 2300 | { |
| 2301 | __ip6_rt_update_pmtu(dst, sk, skb ? ipv6_hdr(skb) : NULL, mtu); |
| 2302 | } |
| 2303 | |
David S. Miller | 42ae66c | 2012-06-15 20:01:57 -0700 | [diff] [blame] | 2304 | void ip6_update_pmtu(struct sk_buff *skb, struct net *net, __be32 mtu, |
Lorenzo Colitti | e2d118a | 2016-11-04 02:23:43 +0900 | [diff] [blame] | 2305 | int oif, u32 mark, kuid_t uid) |
David S. Miller | 81aded2 | 2012-06-15 14:54:11 -0700 | [diff] [blame] | 2306 | { |
| 2307 | const struct ipv6hdr *iph = (struct ipv6hdr *) skb->data; |
| 2308 | struct dst_entry *dst; |
| 2309 | struct flowi6 fl6; |
| 2310 | |
| 2311 | memset(&fl6, 0, sizeof(fl6)); |
| 2312 | fl6.flowi6_oif = oif; |
Lorenzo Colitti | 1b3c61d | 2014-05-13 10:17:34 -0700 | [diff] [blame] | 2313 | fl6.flowi6_mark = mark ? mark : IP6_REPLY_MARK(net, skb->mark); |
David S. Miller | 81aded2 | 2012-06-15 14:54:11 -0700 | [diff] [blame] | 2314 | fl6.daddr = iph->daddr; |
| 2315 | fl6.saddr = iph->saddr; |
YOSHIFUJI Hideaki / 吉藤英明 | 6502ca5 | 2013-01-13 05:01:51 +0000 | [diff] [blame] | 2316 | fl6.flowlabel = ip6_flowinfo(iph); |
Lorenzo Colitti | e2d118a | 2016-11-04 02:23:43 +0900 | [diff] [blame] | 2317 | fl6.flowi6_uid = uid; |
David S. Miller | 81aded2 | 2012-06-15 14:54:11 -0700 | [diff] [blame] | 2318 | |
| 2319 | dst = ip6_route_output(net, NULL, &fl6); |
| 2320 | if (!dst->error) |
Martin KaFai Lau | 45e4fd2 | 2015-05-22 20:56:00 -0700 | [diff] [blame] | 2321 | __ip6_rt_update_pmtu(dst, NULL, iph, ntohl(mtu)); |
David S. Miller | 81aded2 | 2012-06-15 14:54:11 -0700 | [diff] [blame] | 2322 | dst_release(dst); |
| 2323 | } |
| 2324 | EXPORT_SYMBOL_GPL(ip6_update_pmtu); |
| 2325 | |
| 2326 | void ip6_sk_update_pmtu(struct sk_buff *skb, struct sock *sk, __be32 mtu) |
| 2327 | { |
Martin KaFai Lau | 33c162a | 2016-04-11 15:29:36 -0700 | [diff] [blame] | 2328 | struct dst_entry *dst; |
| 2329 | |
David S. Miller | 81aded2 | 2012-06-15 14:54:11 -0700 | [diff] [blame] | 2330 | ip6_update_pmtu(skb, sock_net(sk), mtu, |
Lorenzo Colitti | e2d118a | 2016-11-04 02:23:43 +0900 | [diff] [blame] | 2331 | sk->sk_bound_dev_if, sk->sk_mark, sk->sk_uid); |
Martin KaFai Lau | 33c162a | 2016-04-11 15:29:36 -0700 | [diff] [blame] | 2332 | |
| 2333 | dst = __sk_dst_get(sk); |
| 2334 | if (!dst || !dst->obsolete || |
| 2335 | dst->ops->check(dst, inet6_sk(sk)->dst_cookie)) |
| 2336 | return; |
| 2337 | |
| 2338 | bh_lock_sock(sk); |
| 2339 | if (!sock_owned_by_user(sk) && !ipv6_addr_v4mapped(&sk->sk_v6_daddr)) |
| 2340 | ip6_datagram_dst_update(sk, false); |
| 2341 | bh_unlock_sock(sk); |
David S. Miller | 81aded2 | 2012-06-15 14:54:11 -0700 | [diff] [blame] | 2342 | } |
| 2343 | EXPORT_SYMBOL_GPL(ip6_sk_update_pmtu); |
| 2344 | |
Alexey Kodanev | 7d6850f | 2018-04-03 15:00:07 +0300 | [diff] [blame] | 2345 | void ip6_sk_dst_store_flow(struct sock *sk, struct dst_entry *dst, |
| 2346 | const struct flowi6 *fl6) |
| 2347 | { |
| 2348 | #ifdef CONFIG_IPV6_SUBTREES |
| 2349 | struct ipv6_pinfo *np = inet6_sk(sk); |
| 2350 | #endif |
| 2351 | |
| 2352 | ip6_dst_store(sk, dst, |
| 2353 | ipv6_addr_equal(&fl6->daddr, &sk->sk_v6_daddr) ? |
| 2354 | &sk->sk_v6_daddr : NULL, |
| 2355 | #ifdef CONFIG_IPV6_SUBTREES |
| 2356 | ipv6_addr_equal(&fl6->saddr, &np->saddr) ? |
| 2357 | &np->saddr : |
| 2358 | #endif |
| 2359 | NULL); |
| 2360 | } |
| 2361 | |
Duan Jiong | b55b76b | 2013-09-04 19:44:21 +0800 | [diff] [blame] | 2362 | /* Handle redirects */ |
| 2363 | struct ip6rd_flowi { |
| 2364 | struct flowi6 fl6; |
| 2365 | struct in6_addr gateway; |
| 2366 | }; |
| 2367 | |
| 2368 | static struct rt6_info *__ip6_route_redirect(struct net *net, |
| 2369 | struct fib6_table *table, |
| 2370 | struct flowi6 *fl6, |
David Ahern | b75cc8f | 2018-03-02 08:32:17 -0800 | [diff] [blame] | 2371 | const struct sk_buff *skb, |
Duan Jiong | b55b76b | 2013-09-04 19:44:21 +0800 | [diff] [blame] | 2372 | int flags) |
| 2373 | { |
| 2374 | struct ip6rd_flowi *rdfl = (struct ip6rd_flowi *)fl6; |
David Ahern | 23fb93a | 2018-04-17 17:33:23 -0700 | [diff] [blame] | 2375 | struct rt6_info *ret = NULL, *rt_cache; |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame^] | 2376 | struct fib6_info *rt; |
Duan Jiong | b55b76b | 2013-09-04 19:44:21 +0800 | [diff] [blame] | 2377 | struct fib6_node *fn; |
| 2378 | |
| 2379 | /* Get the "current" route for this destination and |
Alexander Alemayhu | 67c408c | 2017-01-07 23:53:00 +0100 | [diff] [blame] | 2380 | * check if the redirect has come from appropriate router. |
Duan Jiong | b55b76b | 2013-09-04 19:44:21 +0800 | [diff] [blame] | 2381 | * |
| 2382 | * RFC 4861 specifies that redirects should only be |
| 2383 | * accepted if they come from the nexthop to the target. |
| 2384 | * Due to the way the routes are chosen, this notion |
| 2385 | * is a bit fuzzy and one might need to check all possible |
| 2386 | * routes. |
| 2387 | */ |
| 2388 | |
Wei Wang | 66f5d6c | 2017-10-06 12:06:10 -0700 | [diff] [blame] | 2389 | rcu_read_lock(); |
Duan Jiong | b55b76b | 2013-09-04 19:44:21 +0800 | [diff] [blame] | 2390 | fn = fib6_lookup(&table->tb6_root, &fl6->daddr, &fl6->saddr); |
| 2391 | restart: |
Wei Wang | 66f5d6c | 2017-10-06 12:06:10 -0700 | [diff] [blame] | 2392 | for_each_fib6_node_rt_rcu(fn) { |
David Ahern | 5e670d8 | 2018-04-17 17:33:14 -0700 | [diff] [blame] | 2393 | if (rt->fib6_nh.nh_flags & RTNH_F_DEAD) |
Ido Schimmel | 8067bb8 | 2018-01-07 12:45:09 +0200 | [diff] [blame] | 2394 | continue; |
David Ahern | 1489568 | 2018-04-17 17:33:17 -0700 | [diff] [blame] | 2395 | if (fib6_check_expired(rt)) |
Duan Jiong | b55b76b | 2013-09-04 19:44:21 +0800 | [diff] [blame] | 2396 | continue; |
David Ahern | 6edb3c9 | 2018-04-17 17:33:15 -0700 | [diff] [blame] | 2397 | if (rt->rt6i_flags & RTF_REJECT) |
Duan Jiong | b55b76b | 2013-09-04 19:44:21 +0800 | [diff] [blame] | 2398 | break; |
| 2399 | if (!(rt->rt6i_flags & RTF_GATEWAY)) |
| 2400 | continue; |
David Ahern | 5e670d8 | 2018-04-17 17:33:14 -0700 | [diff] [blame] | 2401 | if (fl6->flowi6_oif != rt->fib6_nh.nh_dev->ifindex) |
Duan Jiong | b55b76b | 2013-09-04 19:44:21 +0800 | [diff] [blame] | 2402 | continue; |
Wei Wang | 2b760fc | 2017-10-06 12:06:03 -0700 | [diff] [blame] | 2403 | /* rt_cache's gateway might be different from its 'parent' |
| 2404 | * in the case of an ip redirect. |
| 2405 | * So we keep searching in the exception table if the gateway |
| 2406 | * is different. |
| 2407 | */ |
David Ahern | 5e670d8 | 2018-04-17 17:33:14 -0700 | [diff] [blame] | 2408 | if (!ipv6_addr_equal(&rdfl->gateway, &rt->fib6_nh.nh_gw)) { |
Wei Wang | 2b760fc | 2017-10-06 12:06:03 -0700 | [diff] [blame] | 2409 | rt_cache = rt6_find_cached_rt(rt, |
| 2410 | &fl6->daddr, |
| 2411 | &fl6->saddr); |
| 2412 | if (rt_cache && |
| 2413 | ipv6_addr_equal(&rdfl->gateway, |
| 2414 | &rt_cache->rt6i_gateway)) { |
David Ahern | 23fb93a | 2018-04-17 17:33:23 -0700 | [diff] [blame] | 2415 | ret = rt_cache; |
Wei Wang | 2b760fc | 2017-10-06 12:06:03 -0700 | [diff] [blame] | 2416 | break; |
| 2417 | } |
Duan Jiong | b55b76b | 2013-09-04 19:44:21 +0800 | [diff] [blame] | 2418 | continue; |
Wei Wang | 2b760fc | 2017-10-06 12:06:03 -0700 | [diff] [blame] | 2419 | } |
Duan Jiong | b55b76b | 2013-09-04 19:44:21 +0800 | [diff] [blame] | 2420 | break; |
| 2421 | } |
| 2422 | |
| 2423 | if (!rt) |
David Ahern | 421842e | 2018-04-17 17:33:18 -0700 | [diff] [blame] | 2424 | rt = net->ipv6.fib6_null_entry; |
David Ahern | 6edb3c9 | 2018-04-17 17:33:15 -0700 | [diff] [blame] | 2425 | else if (rt->rt6i_flags & RTF_REJECT) { |
David Ahern | 23fb93a | 2018-04-17 17:33:23 -0700 | [diff] [blame] | 2426 | ret = net->ipv6.ip6_null_entry; |
Martin KaFai Lau | b0a1ba5 | 2015-01-20 19:16:02 -0800 | [diff] [blame] | 2427 | goto out; |
| 2428 | } |
| 2429 | |
David Ahern | 421842e | 2018-04-17 17:33:18 -0700 | [diff] [blame] | 2430 | if (rt == net->ipv6.fib6_null_entry) { |
Martin KaFai Lau | a3c00e4 | 2014-10-20 13:42:43 -0700 | [diff] [blame] | 2431 | fn = fib6_backtrack(fn, &fl6->saddr); |
| 2432 | if (fn) |
| 2433 | goto restart; |
Duan Jiong | b55b76b | 2013-09-04 19:44:21 +0800 | [diff] [blame] | 2434 | } |
Martin KaFai Lau | a3c00e4 | 2014-10-20 13:42:43 -0700 | [diff] [blame] | 2435 | |
Martin KaFai Lau | b0a1ba5 | 2015-01-20 19:16:02 -0800 | [diff] [blame] | 2436 | out: |
David Ahern | 23fb93a | 2018-04-17 17:33:23 -0700 | [diff] [blame] | 2437 | if (ret) |
| 2438 | dst_hold(&ret->dst); |
| 2439 | else |
| 2440 | ret = ip6_create_rt_rcu(rt); |
Duan Jiong | b55b76b | 2013-09-04 19:44:21 +0800 | [diff] [blame] | 2441 | |
Wei Wang | 66f5d6c | 2017-10-06 12:06:10 -0700 | [diff] [blame] | 2442 | rcu_read_unlock(); |
Duan Jiong | b55b76b | 2013-09-04 19:44:21 +0800 | [diff] [blame] | 2443 | |
David Ahern | 23fb93a | 2018-04-17 17:33:23 -0700 | [diff] [blame] | 2444 | trace_fib6_table_lookup(net, ret, table, fl6); |
| 2445 | return ret; |
Duan Jiong | b55b76b | 2013-09-04 19:44:21 +0800 | [diff] [blame] | 2446 | }; |
| 2447 | |
| 2448 | static struct dst_entry *ip6_route_redirect(struct net *net, |
David Ahern | b75cc8f | 2018-03-02 08:32:17 -0800 | [diff] [blame] | 2449 | const struct flowi6 *fl6, |
| 2450 | const struct sk_buff *skb, |
| 2451 | const struct in6_addr *gateway) |
Duan Jiong | b55b76b | 2013-09-04 19:44:21 +0800 | [diff] [blame] | 2452 | { |
| 2453 | int flags = RT6_LOOKUP_F_HAS_SADDR; |
| 2454 | struct ip6rd_flowi rdfl; |
| 2455 | |
| 2456 | rdfl.fl6 = *fl6; |
| 2457 | rdfl.gateway = *gateway; |
| 2458 | |
David Ahern | b75cc8f | 2018-03-02 08:32:17 -0800 | [diff] [blame] | 2459 | return fib6_rule_lookup(net, &rdfl.fl6, skb, |
Duan Jiong | b55b76b | 2013-09-04 19:44:21 +0800 | [diff] [blame] | 2460 | flags, __ip6_route_redirect); |
| 2461 | } |
| 2462 | |
Lorenzo Colitti | e2d118a | 2016-11-04 02:23:43 +0900 | [diff] [blame] | 2463 | void ip6_redirect(struct sk_buff *skb, struct net *net, int oif, u32 mark, |
| 2464 | kuid_t uid) |
David S. Miller | 3a5ad2e | 2012-07-12 00:08:07 -0700 | [diff] [blame] | 2465 | { |
| 2466 | const struct ipv6hdr *iph = (struct ipv6hdr *) skb->data; |
| 2467 | struct dst_entry *dst; |
| 2468 | struct flowi6 fl6; |
| 2469 | |
| 2470 | memset(&fl6, 0, sizeof(fl6)); |
Julian Anastasov | e374c61 | 2014-04-28 10:51:56 +0300 | [diff] [blame] | 2471 | fl6.flowi6_iif = LOOPBACK_IFINDEX; |
David S. Miller | 3a5ad2e | 2012-07-12 00:08:07 -0700 | [diff] [blame] | 2472 | fl6.flowi6_oif = oif; |
| 2473 | fl6.flowi6_mark = mark; |
David S. Miller | 3a5ad2e | 2012-07-12 00:08:07 -0700 | [diff] [blame] | 2474 | fl6.daddr = iph->daddr; |
| 2475 | fl6.saddr = iph->saddr; |
YOSHIFUJI Hideaki / 吉藤英明 | 6502ca5 | 2013-01-13 05:01:51 +0000 | [diff] [blame] | 2476 | fl6.flowlabel = ip6_flowinfo(iph); |
Lorenzo Colitti | e2d118a | 2016-11-04 02:23:43 +0900 | [diff] [blame] | 2477 | fl6.flowi6_uid = uid; |
David S. Miller | 3a5ad2e | 2012-07-12 00:08:07 -0700 | [diff] [blame] | 2478 | |
David Ahern | b75cc8f | 2018-03-02 08:32:17 -0800 | [diff] [blame] | 2479 | dst = ip6_route_redirect(net, &fl6, skb, &ipv6_hdr(skb)->saddr); |
Duan Jiong | b55b76b | 2013-09-04 19:44:21 +0800 | [diff] [blame] | 2480 | rt6_do_redirect(dst, NULL, skb); |
David S. Miller | 3a5ad2e | 2012-07-12 00:08:07 -0700 | [diff] [blame] | 2481 | dst_release(dst); |
| 2482 | } |
| 2483 | EXPORT_SYMBOL_GPL(ip6_redirect); |
| 2484 | |
Duan Jiong | c92a59e | 2013-08-22 12:07:35 +0800 | [diff] [blame] | 2485 | void ip6_redirect_no_header(struct sk_buff *skb, struct net *net, int oif, |
| 2486 | u32 mark) |
| 2487 | { |
| 2488 | const struct ipv6hdr *iph = ipv6_hdr(skb); |
| 2489 | const struct rd_msg *msg = (struct rd_msg *)icmp6_hdr(skb); |
| 2490 | struct dst_entry *dst; |
| 2491 | struct flowi6 fl6; |
| 2492 | |
| 2493 | memset(&fl6, 0, sizeof(fl6)); |
Julian Anastasov | e374c61 | 2014-04-28 10:51:56 +0300 | [diff] [blame] | 2494 | fl6.flowi6_iif = LOOPBACK_IFINDEX; |
Duan Jiong | c92a59e | 2013-08-22 12:07:35 +0800 | [diff] [blame] | 2495 | fl6.flowi6_oif = oif; |
| 2496 | fl6.flowi6_mark = mark; |
Duan Jiong | c92a59e | 2013-08-22 12:07:35 +0800 | [diff] [blame] | 2497 | fl6.daddr = msg->dest; |
| 2498 | fl6.saddr = iph->daddr; |
Lorenzo Colitti | e2d118a | 2016-11-04 02:23:43 +0900 | [diff] [blame] | 2499 | fl6.flowi6_uid = sock_net_uid(net, NULL); |
Duan Jiong | c92a59e | 2013-08-22 12:07:35 +0800 | [diff] [blame] | 2500 | |
David Ahern | b75cc8f | 2018-03-02 08:32:17 -0800 | [diff] [blame] | 2501 | dst = ip6_route_redirect(net, &fl6, skb, &iph->saddr); |
Duan Jiong | b55b76b | 2013-09-04 19:44:21 +0800 | [diff] [blame] | 2502 | rt6_do_redirect(dst, NULL, skb); |
Duan Jiong | c92a59e | 2013-08-22 12:07:35 +0800 | [diff] [blame] | 2503 | dst_release(dst); |
| 2504 | } |
| 2505 | |
David S. Miller | 3a5ad2e | 2012-07-12 00:08:07 -0700 | [diff] [blame] | 2506 | void ip6_sk_redirect(struct sk_buff *skb, struct sock *sk) |
| 2507 | { |
Lorenzo Colitti | e2d118a | 2016-11-04 02:23:43 +0900 | [diff] [blame] | 2508 | ip6_redirect(skb, sock_net(sk), sk->sk_bound_dev_if, sk->sk_mark, |
| 2509 | sk->sk_uid); |
David S. Miller | 3a5ad2e | 2012-07-12 00:08:07 -0700 | [diff] [blame] | 2510 | } |
| 2511 | EXPORT_SYMBOL_GPL(ip6_sk_redirect); |
| 2512 | |
David S. Miller | 0dbaee3 | 2010-12-13 12:52:14 -0800 | [diff] [blame] | 2513 | static unsigned int ip6_default_advmss(const struct dst_entry *dst) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2514 | { |
David S. Miller | 0dbaee3 | 2010-12-13 12:52:14 -0800 | [diff] [blame] | 2515 | struct net_device *dev = dst->dev; |
| 2516 | unsigned int mtu = dst_mtu(dst); |
| 2517 | struct net *net = dev_net(dev); |
| 2518 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2519 | mtu -= sizeof(struct ipv6hdr) + sizeof(struct tcphdr); |
| 2520 | |
Daniel Lezcano | 5578689 | 2008-03-04 13:47:47 -0800 | [diff] [blame] | 2521 | if (mtu < net->ipv6.sysctl.ip6_rt_min_advmss) |
| 2522 | mtu = net->ipv6.sysctl.ip6_rt_min_advmss; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2523 | |
| 2524 | /* |
YOSHIFUJI Hideaki | 1ab1457 | 2007-02-09 23:24:49 +0900 | [diff] [blame] | 2525 | * Maximal non-jumbo IPv6 payload is IPV6_MAXPLEN and |
| 2526 | * corresponding MSS is IPV6_MAXPLEN - tcp_header_size. |
| 2527 | * IPV6_MAXPLEN is also valid and means: "any MSS, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2528 | * rely only on pmtu discovery" |
| 2529 | */ |
| 2530 | if (mtu > IPV6_MAXPLEN - sizeof(struct tcphdr)) |
| 2531 | mtu = IPV6_MAXPLEN; |
| 2532 | return mtu; |
| 2533 | } |
| 2534 | |
Steffen Klassert | ebb762f | 2011-11-23 02:12:51 +0000 | [diff] [blame] | 2535 | static unsigned int ip6_mtu(const struct dst_entry *dst) |
David S. Miller | d33e455 | 2010-12-14 13:01:14 -0800 | [diff] [blame] | 2536 | { |
David S. Miller | d33e455 | 2010-12-14 13:01:14 -0800 | [diff] [blame] | 2537 | struct inet6_dev *idev; |
David Ahern | d4ead6b | 2018-04-17 17:33:16 -0700 | [diff] [blame] | 2538 | unsigned int mtu; |
Steffen Klassert | 618f9bc | 2011-11-23 02:13:31 +0000 | [diff] [blame] | 2539 | |
Martin KaFai Lau | 4b32b5a | 2015-04-28 13:03:06 -0700 | [diff] [blame] | 2540 | mtu = dst_metric_raw(dst, RTAX_MTU); |
| 2541 | if (mtu) |
| 2542 | goto out; |
| 2543 | |
Steffen Klassert | 618f9bc | 2011-11-23 02:13:31 +0000 | [diff] [blame] | 2544 | mtu = IPV6_MIN_MTU; |
David S. Miller | d33e455 | 2010-12-14 13:01:14 -0800 | [diff] [blame] | 2545 | |
| 2546 | rcu_read_lock(); |
| 2547 | idev = __in6_dev_get(dst->dev); |
| 2548 | if (idev) |
| 2549 | mtu = idev->cnf.mtu6; |
| 2550 | rcu_read_unlock(); |
| 2551 | |
Eric Dumazet | 30f78d8 | 2014-04-10 21:23:36 -0700 | [diff] [blame] | 2552 | out: |
Roopa Prabhu | 14972cb | 2016-08-24 20:10:43 -0700 | [diff] [blame] | 2553 | mtu = min_t(unsigned int, mtu, IP6_MAX_MTU); |
| 2554 | |
| 2555 | return mtu - lwtunnel_headroom(dst->lwtstate, mtu); |
David S. Miller | d33e455 | 2010-12-14 13:01:14 -0800 | [diff] [blame] | 2556 | } |
| 2557 | |
YOSHIFUJI Hideaki | 3b00944 | 2007-12-06 16:11:48 -0800 | [diff] [blame] | 2558 | struct dst_entry *icmp6_dst_alloc(struct net_device *dev, |
David S. Miller | 87a1157 | 2011-12-06 17:04:13 -0500 | [diff] [blame] | 2559 | struct flowi6 *fl6) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2560 | { |
David S. Miller | 87a1157 | 2011-12-06 17:04:13 -0500 | [diff] [blame] | 2561 | struct dst_entry *dst; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2562 | struct rt6_info *rt; |
| 2563 | struct inet6_dev *idev = in6_dev_get(dev); |
YOSHIFUJI Hideaki | c346dca | 2008-03-25 21:47:49 +0900 | [diff] [blame] | 2564 | struct net *net = dev_net(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2565 | |
David S. Miller | 3830847 | 2011-12-03 18:02:47 -0500 | [diff] [blame] | 2566 | if (unlikely(!idev)) |
Eric Dumazet | 122bdf6 | 2012-03-14 21:13:11 +0000 | [diff] [blame] | 2567 | return ERR_PTR(-ENODEV); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2568 | |
Martin KaFai Lau | ad70686 | 2015-08-14 11:05:52 -0700 | [diff] [blame] | 2569 | rt = ip6_dst_alloc(net, dev, 0); |
David S. Miller | 3830847 | 2011-12-03 18:02:47 -0500 | [diff] [blame] | 2570 | if (unlikely(!rt)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2571 | in6_dev_put(idev); |
David S. Miller | 87a1157 | 2011-12-06 17:04:13 -0500 | [diff] [blame] | 2572 | dst = ERR_PTR(-ENOMEM); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2573 | goto out; |
| 2574 | } |
| 2575 | |
Yan, Zheng | 8e2ec63 | 2011-09-05 21:34:30 +0000 | [diff] [blame] | 2576 | rt->dst.flags |= DST_HOST; |
Brendan McGrath | 588753f | 2017-12-13 22:14:57 +1100 | [diff] [blame] | 2577 | rt->dst.input = ip6_input; |
Yan, Zheng | 8e2ec63 | 2011-09-05 21:34:30 +0000 | [diff] [blame] | 2578 | rt->dst.output = ip6_output; |
Julian Anastasov | 550bab4 | 2013-10-20 15:43:04 +0300 | [diff] [blame] | 2579 | rt->rt6i_gateway = fl6->daddr; |
David S. Miller | 87a1157 | 2011-12-06 17:04:13 -0500 | [diff] [blame] | 2580 | rt->rt6i_dst.addr = fl6->daddr; |
Yan, Zheng | 8e2ec63 | 2011-09-05 21:34:30 +0000 | [diff] [blame] | 2581 | rt->rt6i_dst.plen = 128; |
| 2582 | rt->rt6i_idev = idev; |
Li RongQing | 14edd87 | 2012-10-24 14:01:18 +0800 | [diff] [blame] | 2583 | dst_metric_set(&rt->dst, RTAX_HOPLIMIT, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2584 | |
Ido Schimmel | 4c981e2 | 2018-01-07 12:45:04 +0200 | [diff] [blame] | 2585 | /* Add this dst into uncached_list so that rt6_disable_ip() can |
Wei Wang | 587fea7 | 2017-06-17 10:42:36 -0700 | [diff] [blame] | 2586 | * do proper release of the net_device |
| 2587 | */ |
| 2588 | rt6_uncached_list_add(rt); |
Wei Wang | 81eb844 | 2017-10-06 12:06:11 -0700 | [diff] [blame] | 2589 | atomic_inc(&net->ipv6.rt6_stats->fib_rt_uncache); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2590 | |
David S. Miller | 87a1157 | 2011-12-06 17:04:13 -0500 | [diff] [blame] | 2591 | dst = xfrm_lookup(net, &rt->dst, flowi6_to_flowi(fl6), NULL, 0); |
| 2592 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2593 | out: |
David S. Miller | 87a1157 | 2011-12-06 17:04:13 -0500 | [diff] [blame] | 2594 | return dst; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2595 | } |
| 2596 | |
Daniel Lezcano | 569d364 | 2008-01-18 03:56:57 -0800 | [diff] [blame] | 2597 | static int ip6_dst_gc(struct dst_ops *ops) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2598 | { |
Alexey Dobriyan | 86393e5 | 2009-08-29 01:34:49 +0000 | [diff] [blame] | 2599 | struct net *net = container_of(ops, struct net, ipv6.ip6_dst_ops); |
Daniel Lezcano | 7019b78 | 2008-03-04 13:50:14 -0800 | [diff] [blame] | 2600 | int rt_min_interval = net->ipv6.sysctl.ip6_rt_gc_min_interval; |
| 2601 | int rt_max_size = net->ipv6.sysctl.ip6_rt_max_size; |
| 2602 | int rt_elasticity = net->ipv6.sysctl.ip6_rt_gc_elasticity; |
| 2603 | int rt_gc_timeout = net->ipv6.sysctl.ip6_rt_gc_timeout; |
| 2604 | unsigned long rt_last_gc = net->ipv6.ip6_rt_last_gc; |
Eric Dumazet | fc66f95 | 2010-10-08 06:37:34 +0000 | [diff] [blame] | 2605 | int entries; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2606 | |
Eric Dumazet | fc66f95 | 2010-10-08 06:37:34 +0000 | [diff] [blame] | 2607 | entries = dst_entries_get_fast(ops); |
Michal Kubeček | 49a18d8 | 2013-08-01 10:04:24 +0200 | [diff] [blame] | 2608 | if (time_after(rt_last_gc + rt_min_interval, jiffies) && |
Eric Dumazet | fc66f95 | 2010-10-08 06:37:34 +0000 | [diff] [blame] | 2609 | entries <= rt_max_size) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2610 | goto out; |
| 2611 | |
Benjamin Thery | 6891a34 | 2008-03-04 13:49:47 -0800 | [diff] [blame] | 2612 | net->ipv6.ip6_rt_gc_expire++; |
Li RongQing | 1495664 | 2014-05-19 17:30:28 +0800 | [diff] [blame] | 2613 | fib6_run_gc(net->ipv6.ip6_rt_gc_expire, net, true); |
Eric Dumazet | fc66f95 | 2010-10-08 06:37:34 +0000 | [diff] [blame] | 2614 | entries = dst_entries_get_slow(ops); |
| 2615 | if (entries < ops->gc_thresh) |
Daniel Lezcano | 7019b78 | 2008-03-04 13:50:14 -0800 | [diff] [blame] | 2616 | net->ipv6.ip6_rt_gc_expire = rt_gc_timeout>>1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2617 | out: |
Daniel Lezcano | 7019b78 | 2008-03-04 13:50:14 -0800 | [diff] [blame] | 2618 | net->ipv6.ip6_rt_gc_expire -= net->ipv6.ip6_rt_gc_expire>>rt_elasticity; |
Eric Dumazet | fc66f95 | 2010-10-08 06:37:34 +0000 | [diff] [blame] | 2619 | return entries > rt_max_size; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2620 | } |
| 2621 | |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame^] | 2622 | static int ip6_convert_metrics(struct net *net, struct fib6_info *rt, |
David Ahern | d4ead6b | 2018-04-17 17:33:16 -0700 | [diff] [blame] | 2623 | struct fib6_config *cfg) |
Florian Westphal | e715b6d | 2015-01-05 23:57:44 +0100 | [diff] [blame] | 2624 | { |
David Ahern | d4ead6b | 2018-04-17 17:33:16 -0700 | [diff] [blame] | 2625 | int err = 0; |
Florian Westphal | e715b6d | 2015-01-05 23:57:44 +0100 | [diff] [blame] | 2626 | |
David Ahern | d4ead6b | 2018-04-17 17:33:16 -0700 | [diff] [blame] | 2627 | if (cfg->fc_mx) { |
| 2628 | rt->fib6_metrics = kzalloc(sizeof(*rt->fib6_metrics), |
| 2629 | GFP_KERNEL); |
| 2630 | if (unlikely(!rt->fib6_metrics)) |
| 2631 | return -ENOMEM; |
Florian Westphal | e715b6d | 2015-01-05 23:57:44 +0100 | [diff] [blame] | 2632 | |
David Ahern | d4ead6b | 2018-04-17 17:33:16 -0700 | [diff] [blame] | 2633 | refcount_set(&rt->fib6_metrics->refcnt, 1); |
Florian Westphal | e715b6d | 2015-01-05 23:57:44 +0100 | [diff] [blame] | 2634 | |
David Ahern | d4ead6b | 2018-04-17 17:33:16 -0700 | [diff] [blame] | 2635 | err = ip_metrics_convert(net, cfg->fc_mx, cfg->fc_mx_len, |
| 2636 | rt->fib6_metrics->metrics); |
Florian Westphal | e715b6d | 2015-01-05 23:57:44 +0100 | [diff] [blame] | 2637 | } |
| 2638 | |
David Ahern | d4ead6b | 2018-04-17 17:33:16 -0700 | [diff] [blame] | 2639 | return err; |
Florian Westphal | e715b6d | 2015-01-05 23:57:44 +0100 | [diff] [blame] | 2640 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2641 | |
David Ahern | 8c14586 | 2016-04-24 21:26:04 -0700 | [diff] [blame] | 2642 | static struct rt6_info *ip6_nh_lookup_table(struct net *net, |
| 2643 | struct fib6_config *cfg, |
David Ahern | f4797b3 | 2018-01-25 16:55:08 -0800 | [diff] [blame] | 2644 | const struct in6_addr *gw_addr, |
| 2645 | u32 tbid, int flags) |
David Ahern | 8c14586 | 2016-04-24 21:26:04 -0700 | [diff] [blame] | 2646 | { |
| 2647 | struct flowi6 fl6 = { |
| 2648 | .flowi6_oif = cfg->fc_ifindex, |
| 2649 | .daddr = *gw_addr, |
| 2650 | .saddr = cfg->fc_prefsrc, |
| 2651 | }; |
| 2652 | struct fib6_table *table; |
| 2653 | struct rt6_info *rt; |
David Ahern | 8c14586 | 2016-04-24 21:26:04 -0700 | [diff] [blame] | 2654 | |
David Ahern | f4797b3 | 2018-01-25 16:55:08 -0800 | [diff] [blame] | 2655 | table = fib6_get_table(net, tbid); |
David Ahern | 8c14586 | 2016-04-24 21:26:04 -0700 | [diff] [blame] | 2656 | if (!table) |
| 2657 | return NULL; |
| 2658 | |
| 2659 | if (!ipv6_addr_any(&cfg->fc_prefsrc)) |
| 2660 | flags |= RT6_LOOKUP_F_HAS_SADDR; |
| 2661 | |
David Ahern | f4797b3 | 2018-01-25 16:55:08 -0800 | [diff] [blame] | 2662 | flags |= RT6_LOOKUP_F_IGNORE_LINKSTATE; |
David Ahern | b75cc8f | 2018-03-02 08:32:17 -0800 | [diff] [blame] | 2663 | rt = ip6_pol_route(net, table, cfg->fc_ifindex, &fl6, NULL, flags); |
David Ahern | 8c14586 | 2016-04-24 21:26:04 -0700 | [diff] [blame] | 2664 | |
| 2665 | /* if table lookup failed, fall back to full lookup */ |
| 2666 | if (rt == net->ipv6.ip6_null_entry) { |
| 2667 | ip6_rt_put(rt); |
| 2668 | rt = NULL; |
| 2669 | } |
| 2670 | |
| 2671 | return rt; |
| 2672 | } |
| 2673 | |
David Ahern | fc1e64e | 2018-01-25 16:55:09 -0800 | [diff] [blame] | 2674 | static int ip6_route_check_nh_onlink(struct net *net, |
| 2675 | struct fib6_config *cfg, |
David Ahern | 9fbb704 | 2018-03-13 08:29:36 -0700 | [diff] [blame] | 2676 | const struct net_device *dev, |
David Ahern | fc1e64e | 2018-01-25 16:55:09 -0800 | [diff] [blame] | 2677 | struct netlink_ext_ack *extack) |
| 2678 | { |
David Ahern | 44750f8 | 2018-02-06 13:17:06 -0800 | [diff] [blame] | 2679 | u32 tbid = l3mdev_fib_table(dev) ? : RT_TABLE_MAIN; |
David Ahern | fc1e64e | 2018-01-25 16:55:09 -0800 | [diff] [blame] | 2680 | const struct in6_addr *gw_addr = &cfg->fc_gateway; |
| 2681 | u32 flags = RTF_LOCAL | RTF_ANYCAST | RTF_REJECT; |
| 2682 | struct rt6_info *grt; |
| 2683 | int err; |
| 2684 | |
| 2685 | err = 0; |
| 2686 | grt = ip6_nh_lookup_table(net, cfg, gw_addr, tbid, 0); |
| 2687 | if (grt) { |
David Ahern | 58e354c | 2018-02-06 12:14:12 -0800 | [diff] [blame] | 2688 | if (!grt->dst.error && |
| 2689 | (grt->rt6i_flags & flags || dev != grt->dst.dev)) { |
David Ahern | 44750f8 | 2018-02-06 13:17:06 -0800 | [diff] [blame] | 2690 | NL_SET_ERR_MSG(extack, |
| 2691 | "Nexthop has invalid gateway or device mismatch"); |
David Ahern | fc1e64e | 2018-01-25 16:55:09 -0800 | [diff] [blame] | 2692 | err = -EINVAL; |
| 2693 | } |
| 2694 | |
| 2695 | ip6_rt_put(grt); |
| 2696 | } |
| 2697 | |
| 2698 | return err; |
| 2699 | } |
| 2700 | |
David Ahern | 1edce99 | 2018-01-25 16:55:07 -0800 | [diff] [blame] | 2701 | static int ip6_route_check_nh(struct net *net, |
| 2702 | struct fib6_config *cfg, |
| 2703 | struct net_device **_dev, |
| 2704 | struct inet6_dev **idev) |
| 2705 | { |
| 2706 | const struct in6_addr *gw_addr = &cfg->fc_gateway; |
| 2707 | struct net_device *dev = _dev ? *_dev : NULL; |
| 2708 | struct rt6_info *grt = NULL; |
| 2709 | int err = -EHOSTUNREACH; |
| 2710 | |
| 2711 | if (cfg->fc_table) { |
David Ahern | f4797b3 | 2018-01-25 16:55:08 -0800 | [diff] [blame] | 2712 | int flags = RT6_LOOKUP_F_IFACE; |
| 2713 | |
| 2714 | grt = ip6_nh_lookup_table(net, cfg, gw_addr, |
| 2715 | cfg->fc_table, flags); |
David Ahern | 1edce99 | 2018-01-25 16:55:07 -0800 | [diff] [blame] | 2716 | if (grt) { |
| 2717 | if (grt->rt6i_flags & RTF_GATEWAY || |
| 2718 | (dev && dev != grt->dst.dev)) { |
| 2719 | ip6_rt_put(grt); |
| 2720 | grt = NULL; |
| 2721 | } |
| 2722 | } |
| 2723 | } |
| 2724 | |
| 2725 | if (!grt) |
David Ahern | b75cc8f | 2018-03-02 08:32:17 -0800 | [diff] [blame] | 2726 | grt = rt6_lookup(net, gw_addr, NULL, cfg->fc_ifindex, NULL, 1); |
David Ahern | 1edce99 | 2018-01-25 16:55:07 -0800 | [diff] [blame] | 2727 | |
| 2728 | if (!grt) |
| 2729 | goto out; |
| 2730 | |
| 2731 | if (dev) { |
| 2732 | if (dev != grt->dst.dev) { |
| 2733 | ip6_rt_put(grt); |
| 2734 | goto out; |
| 2735 | } |
| 2736 | } else { |
| 2737 | *_dev = dev = grt->dst.dev; |
| 2738 | *idev = grt->rt6i_idev; |
| 2739 | dev_hold(dev); |
| 2740 | in6_dev_hold(grt->rt6i_idev); |
| 2741 | } |
| 2742 | |
| 2743 | if (!(grt->rt6i_flags & RTF_GATEWAY)) |
| 2744 | err = 0; |
| 2745 | |
| 2746 | ip6_rt_put(grt); |
| 2747 | |
| 2748 | out: |
| 2749 | return err; |
| 2750 | } |
| 2751 | |
David Ahern | 9fbb704 | 2018-03-13 08:29:36 -0700 | [diff] [blame] | 2752 | static int ip6_validate_gw(struct net *net, struct fib6_config *cfg, |
| 2753 | struct net_device **_dev, struct inet6_dev **idev, |
| 2754 | struct netlink_ext_ack *extack) |
| 2755 | { |
| 2756 | const struct in6_addr *gw_addr = &cfg->fc_gateway; |
| 2757 | int gwa_type = ipv6_addr_type(gw_addr); |
David Ahern | 232378e | 2018-03-13 08:29:37 -0700 | [diff] [blame] | 2758 | bool skip_dev = gwa_type & IPV6_ADDR_LINKLOCAL ? false : true; |
David Ahern | 9fbb704 | 2018-03-13 08:29:36 -0700 | [diff] [blame] | 2759 | const struct net_device *dev = *_dev; |
David Ahern | 232378e | 2018-03-13 08:29:37 -0700 | [diff] [blame] | 2760 | bool need_addr_check = !dev; |
David Ahern | 9fbb704 | 2018-03-13 08:29:36 -0700 | [diff] [blame] | 2761 | int err = -EINVAL; |
| 2762 | |
| 2763 | /* if gw_addr is local we will fail to detect this in case |
| 2764 | * address is still TENTATIVE (DAD in progress). rt6_lookup() |
| 2765 | * will return already-added prefix route via interface that |
| 2766 | * prefix route was assigned to, which might be non-loopback. |
| 2767 | */ |
David Ahern | 232378e | 2018-03-13 08:29:37 -0700 | [diff] [blame] | 2768 | if (dev && |
| 2769 | ipv6_chk_addr_and_flags(net, gw_addr, dev, skip_dev, 0, 0)) { |
| 2770 | NL_SET_ERR_MSG(extack, "Gateway can not be a local address"); |
David Ahern | 9fbb704 | 2018-03-13 08:29:36 -0700 | [diff] [blame] | 2771 | goto out; |
| 2772 | } |
| 2773 | |
| 2774 | if (gwa_type != (IPV6_ADDR_LINKLOCAL | IPV6_ADDR_UNICAST)) { |
| 2775 | /* IPv6 strictly inhibits using not link-local |
| 2776 | * addresses as nexthop address. |
| 2777 | * Otherwise, router will not able to send redirects. |
| 2778 | * It is very good, but in some (rare!) circumstances |
| 2779 | * (SIT, PtP, NBMA NOARP links) it is handy to allow |
| 2780 | * some exceptions. --ANK |
| 2781 | * We allow IPv4-mapped nexthops to support RFC4798-type |
| 2782 | * addressing |
| 2783 | */ |
| 2784 | if (!(gwa_type & (IPV6_ADDR_UNICAST | IPV6_ADDR_MAPPED))) { |
| 2785 | NL_SET_ERR_MSG(extack, "Invalid gateway address"); |
| 2786 | goto out; |
| 2787 | } |
| 2788 | |
| 2789 | if (cfg->fc_flags & RTNH_F_ONLINK) |
| 2790 | err = ip6_route_check_nh_onlink(net, cfg, dev, extack); |
| 2791 | else |
| 2792 | err = ip6_route_check_nh(net, cfg, _dev, idev); |
| 2793 | |
| 2794 | if (err) |
| 2795 | goto out; |
| 2796 | } |
| 2797 | |
| 2798 | /* reload in case device was changed */ |
| 2799 | dev = *_dev; |
| 2800 | |
| 2801 | err = -EINVAL; |
| 2802 | if (!dev) { |
| 2803 | NL_SET_ERR_MSG(extack, "Egress device not specified"); |
| 2804 | goto out; |
| 2805 | } else if (dev->flags & IFF_LOOPBACK) { |
| 2806 | NL_SET_ERR_MSG(extack, |
| 2807 | "Egress device can not be loopback device for this route"); |
| 2808 | goto out; |
| 2809 | } |
David Ahern | 232378e | 2018-03-13 08:29:37 -0700 | [diff] [blame] | 2810 | |
| 2811 | /* if we did not check gw_addr above, do so now that the |
| 2812 | * egress device has been resolved. |
| 2813 | */ |
| 2814 | if (need_addr_check && |
| 2815 | ipv6_chk_addr_and_flags(net, gw_addr, dev, skip_dev, 0, 0)) { |
| 2816 | NL_SET_ERR_MSG(extack, "Gateway can not be a local address"); |
| 2817 | goto out; |
| 2818 | } |
| 2819 | |
David Ahern | 9fbb704 | 2018-03-13 08:29:36 -0700 | [diff] [blame] | 2820 | err = 0; |
| 2821 | out: |
| 2822 | return err; |
| 2823 | } |
| 2824 | |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame^] | 2825 | static struct fib6_info *ip6_route_info_create(struct fib6_config *cfg, |
David Ahern | acb54e3 | 2018-04-17 17:33:22 -0700 | [diff] [blame] | 2826 | gfp_t gfp_flags, |
David Ahern | 333c430 | 2017-05-21 10:12:04 -0600 | [diff] [blame] | 2827 | struct netlink_ext_ack *extack) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2828 | { |
Daniel Lezcano | 5578689 | 2008-03-04 13:47:47 -0800 | [diff] [blame] | 2829 | struct net *net = cfg->fc_nlinfo.nl_net; |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame^] | 2830 | struct fib6_info *rt = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2831 | struct net_device *dev = NULL; |
| 2832 | struct inet6_dev *idev = NULL; |
Thomas Graf | c71099a | 2006-08-04 23:20:06 -0700 | [diff] [blame] | 2833 | struct fib6_table *table; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2834 | int addr_type; |
Roopa Prabhu | 8c5b83f | 2015-10-10 08:26:36 -0700 | [diff] [blame] | 2835 | int err = -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2836 | |
David Ahern | 557c44b | 2017-04-19 14:19:43 -0700 | [diff] [blame] | 2837 | /* RTF_PCPU is an internal flag; can not be set by userspace */ |
David Ahern | d5d531c | 2017-05-21 10:12:05 -0600 | [diff] [blame] | 2838 | if (cfg->fc_flags & RTF_PCPU) { |
| 2839 | NL_SET_ERR_MSG(extack, "Userspace can not set RTF_PCPU"); |
David Ahern | 557c44b | 2017-04-19 14:19:43 -0700 | [diff] [blame] | 2840 | goto out; |
David Ahern | d5d531c | 2017-05-21 10:12:05 -0600 | [diff] [blame] | 2841 | } |
David Ahern | 557c44b | 2017-04-19 14:19:43 -0700 | [diff] [blame] | 2842 | |
Wei Wang | 2ea2352 | 2017-10-27 17:30:12 -0700 | [diff] [blame] | 2843 | /* RTF_CACHE is an internal flag; can not be set by userspace */ |
| 2844 | if (cfg->fc_flags & RTF_CACHE) { |
| 2845 | NL_SET_ERR_MSG(extack, "Userspace can not set RTF_CACHE"); |
| 2846 | goto out; |
| 2847 | } |
| 2848 | |
David Ahern | e8478e8 | 2018-04-17 17:33:13 -0700 | [diff] [blame] | 2849 | if (cfg->fc_type > RTN_MAX) { |
| 2850 | NL_SET_ERR_MSG(extack, "Invalid route type"); |
| 2851 | goto out; |
| 2852 | } |
| 2853 | |
David Ahern | d5d531c | 2017-05-21 10:12:05 -0600 | [diff] [blame] | 2854 | if (cfg->fc_dst_len > 128) { |
| 2855 | NL_SET_ERR_MSG(extack, "Invalid prefix length"); |
Roopa Prabhu | 8c5b83f | 2015-10-10 08:26:36 -0700 | [diff] [blame] | 2856 | goto out; |
David Ahern | d5d531c | 2017-05-21 10:12:05 -0600 | [diff] [blame] | 2857 | } |
| 2858 | if (cfg->fc_src_len > 128) { |
| 2859 | NL_SET_ERR_MSG(extack, "Invalid source address length"); |
| 2860 | goto out; |
| 2861 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2862 | #ifndef CONFIG_IPV6_SUBTREES |
David Ahern | d5d531c | 2017-05-21 10:12:05 -0600 | [diff] [blame] | 2863 | if (cfg->fc_src_len) { |
| 2864 | NL_SET_ERR_MSG(extack, |
| 2865 | "Specifying source address requires IPV6_SUBTREES to be enabled"); |
Roopa Prabhu | 8c5b83f | 2015-10-10 08:26:36 -0700 | [diff] [blame] | 2866 | goto out; |
David Ahern | d5d531c | 2017-05-21 10:12:05 -0600 | [diff] [blame] | 2867 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2868 | #endif |
Thomas Graf | 86872cb | 2006-08-22 00:01:08 -0700 | [diff] [blame] | 2869 | if (cfg->fc_ifindex) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2870 | err = -ENODEV; |
Daniel Lezcano | 5578689 | 2008-03-04 13:47:47 -0800 | [diff] [blame] | 2871 | dev = dev_get_by_index(net, cfg->fc_ifindex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2872 | if (!dev) |
| 2873 | goto out; |
| 2874 | idev = in6_dev_get(dev); |
| 2875 | if (!idev) |
| 2876 | goto out; |
| 2877 | } |
| 2878 | |
Thomas Graf | 86872cb | 2006-08-22 00:01:08 -0700 | [diff] [blame] | 2879 | if (cfg->fc_metric == 0) |
| 2880 | cfg->fc_metric = IP6_RT_PRIO_USER; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2881 | |
David Ahern | fc1e64e | 2018-01-25 16:55:09 -0800 | [diff] [blame] | 2882 | if (cfg->fc_flags & RTNH_F_ONLINK) { |
| 2883 | if (!dev) { |
| 2884 | NL_SET_ERR_MSG(extack, |
| 2885 | "Nexthop device required for onlink"); |
| 2886 | err = -ENODEV; |
| 2887 | goto out; |
| 2888 | } |
| 2889 | |
| 2890 | if (!(dev->flags & IFF_UP)) { |
| 2891 | NL_SET_ERR_MSG(extack, "Nexthop device is not up"); |
| 2892 | err = -ENETDOWN; |
| 2893 | goto out; |
| 2894 | } |
| 2895 | } |
| 2896 | |
Matti Vaittinen | d71314b | 2011-11-14 00:14:49 +0000 | [diff] [blame] | 2897 | err = -ENOBUFS; |
David S. Miller | 3830847 | 2011-12-03 18:02:47 -0500 | [diff] [blame] | 2898 | if (cfg->fc_nlinfo.nlh && |
| 2899 | !(cfg->fc_nlinfo.nlh->nlmsg_flags & NLM_F_CREATE)) { |
Matti Vaittinen | d71314b | 2011-11-14 00:14:49 +0000 | [diff] [blame] | 2900 | table = fib6_get_table(net, cfg->fc_table); |
David S. Miller | 3830847 | 2011-12-03 18:02:47 -0500 | [diff] [blame] | 2901 | if (!table) { |
Joe Perches | f321383 | 2012-05-15 14:11:53 +0000 | [diff] [blame] | 2902 | pr_warn("NLM_F_CREATE should be specified when creating new route\n"); |
Matti Vaittinen | d71314b | 2011-11-14 00:14:49 +0000 | [diff] [blame] | 2903 | table = fib6_new_table(net, cfg->fc_table); |
| 2904 | } |
| 2905 | } else { |
| 2906 | table = fib6_new_table(net, cfg->fc_table); |
| 2907 | } |
David S. Miller | 3830847 | 2011-12-03 18:02:47 -0500 | [diff] [blame] | 2908 | |
| 2909 | if (!table) |
Thomas Graf | c71099a | 2006-08-04 23:20:06 -0700 | [diff] [blame] | 2910 | goto out; |
Thomas Graf | c71099a | 2006-08-04 23:20:06 -0700 | [diff] [blame] | 2911 | |
David Ahern | 93531c6 | 2018-04-17 17:33:25 -0700 | [diff] [blame] | 2912 | err = -ENOMEM; |
| 2913 | rt = fib6_info_alloc(gfp_flags); |
| 2914 | if (!rt) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2915 | goto out; |
David Ahern | 93531c6 | 2018-04-17 17:33:25 -0700 | [diff] [blame] | 2916 | |
| 2917 | if (cfg->fc_flags & RTF_ADDRCONF) |
| 2918 | rt->dst_nocount = true; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2919 | |
David Ahern | d4ead6b | 2018-04-17 17:33:16 -0700 | [diff] [blame] | 2920 | err = ip6_convert_metrics(net, rt, cfg); |
| 2921 | if (err < 0) |
| 2922 | goto out; |
| 2923 | |
Gao feng | 1716a96 | 2012-04-06 00:13:10 +0000 | [diff] [blame] | 2924 | if (cfg->fc_flags & RTF_EXPIRES) |
David Ahern | 1489568 | 2018-04-17 17:33:17 -0700 | [diff] [blame] | 2925 | fib6_set_expires(rt, jiffies + |
Gao feng | 1716a96 | 2012-04-06 00:13:10 +0000 | [diff] [blame] | 2926 | clock_t_to_jiffies(cfg->fc_expires)); |
| 2927 | else |
David Ahern | 1489568 | 2018-04-17 17:33:17 -0700 | [diff] [blame] | 2928 | fib6_clean_expires(rt); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2929 | |
Thomas Graf | 86872cb | 2006-08-22 00:01:08 -0700 | [diff] [blame] | 2930 | if (cfg->fc_protocol == RTPROT_UNSPEC) |
| 2931 | cfg->fc_protocol = RTPROT_BOOT; |
| 2932 | rt->rt6i_protocol = cfg->fc_protocol; |
| 2933 | |
| 2934 | addr_type = ipv6_addr_type(&cfg->fc_dst); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2935 | |
Roopa Prabhu | 19e42e4 | 2015-07-21 10:43:48 +0200 | [diff] [blame] | 2936 | if (cfg->fc_encap) { |
| 2937 | struct lwtunnel_state *lwtstate; |
| 2938 | |
David Ahern | 30357d7 | 2017-01-30 12:07:37 -0800 | [diff] [blame] | 2939 | err = lwtunnel_build_state(cfg->fc_encap_type, |
Tom Herbert | 127eb7c | 2015-08-24 09:45:41 -0700 | [diff] [blame] | 2940 | cfg->fc_encap, AF_INET6, cfg, |
David Ahern | 9ae2872 | 2017-05-27 16:19:28 -0600 | [diff] [blame] | 2941 | &lwtstate, extack); |
Roopa Prabhu | 19e42e4 | 2015-07-21 10:43:48 +0200 | [diff] [blame] | 2942 | if (err) |
| 2943 | goto out; |
David Ahern | 5e670d8 | 2018-04-17 17:33:14 -0700 | [diff] [blame] | 2944 | rt->fib6_nh.nh_lwtstate = lwtstate_get(lwtstate); |
Roopa Prabhu | 19e42e4 | 2015-07-21 10:43:48 +0200 | [diff] [blame] | 2945 | } |
| 2946 | |
Thomas Graf | 86872cb | 2006-08-22 00:01:08 -0700 | [diff] [blame] | 2947 | ipv6_addr_prefix(&rt->rt6i_dst.addr, &cfg->fc_dst, cfg->fc_dst_len); |
| 2948 | rt->rt6i_dst.plen = cfg->fc_dst_len; |
Martin KaFai Lau | afc4eef | 2015-04-28 13:03:07 -0700 | [diff] [blame] | 2949 | if (rt->rt6i_dst.plen == 128) |
David Ahern | 3b6761d | 2018-04-17 17:33:20 -0700 | [diff] [blame] | 2950 | rt->dst_host = true; |
Michal Kubeček | e5fd387 | 2014-03-27 13:04:08 +0100 | [diff] [blame] | 2951 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2952 | #ifdef CONFIG_IPV6_SUBTREES |
Thomas Graf | 86872cb | 2006-08-22 00:01:08 -0700 | [diff] [blame] | 2953 | ipv6_addr_prefix(&rt->rt6i_src.addr, &cfg->fc_src, cfg->fc_src_len); |
| 2954 | rt->rt6i_src.plen = cfg->fc_src_len; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2955 | #endif |
| 2956 | |
Thomas Graf | 86872cb | 2006-08-22 00:01:08 -0700 | [diff] [blame] | 2957 | rt->rt6i_metric = cfg->fc_metric; |
David Ahern | 5e670d8 | 2018-04-17 17:33:14 -0700 | [diff] [blame] | 2958 | rt->fib6_nh.nh_weight = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2959 | |
David Ahern | e8478e8 | 2018-04-17 17:33:13 -0700 | [diff] [blame] | 2960 | rt->fib6_type = cfg->fc_type; |
| 2961 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2962 | /* We cannot add true routes via loopback here, |
| 2963 | they would result in kernel looping; promote them to reject routes |
| 2964 | */ |
Thomas Graf | 86872cb | 2006-08-22 00:01:08 -0700 | [diff] [blame] | 2965 | if ((cfg->fc_flags & RTF_REJECT) || |
David S. Miller | 3830847 | 2011-12-03 18:02:47 -0500 | [diff] [blame] | 2966 | (dev && (dev->flags & IFF_LOOPBACK) && |
| 2967 | !(addr_type & IPV6_ADDR_LOOPBACK) && |
| 2968 | !(cfg->fc_flags & RTF_LOCAL))) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2969 | /* hold loopback dev/idev if we haven't done so. */ |
Daniel Lezcano | 5578689 | 2008-03-04 13:47:47 -0800 | [diff] [blame] | 2970 | if (dev != net->loopback_dev) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2971 | if (dev) { |
| 2972 | dev_put(dev); |
| 2973 | in6_dev_put(idev); |
| 2974 | } |
Daniel Lezcano | 5578689 | 2008-03-04 13:47:47 -0800 | [diff] [blame] | 2975 | dev = net->loopback_dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2976 | dev_hold(dev); |
| 2977 | idev = in6_dev_get(dev); |
| 2978 | if (!idev) { |
| 2979 | err = -ENODEV; |
| 2980 | goto out; |
| 2981 | } |
| 2982 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2983 | rt->rt6i_flags = RTF_REJECT|RTF_NONEXTHOP; |
| 2984 | goto install_route; |
| 2985 | } |
| 2986 | |
Thomas Graf | 86872cb | 2006-08-22 00:01:08 -0700 | [diff] [blame] | 2987 | if (cfg->fc_flags & RTF_GATEWAY) { |
David Ahern | 9fbb704 | 2018-03-13 08:29:36 -0700 | [diff] [blame] | 2988 | err = ip6_validate_gw(net, cfg, &dev, &idev, extack); |
| 2989 | if (err) |
Florian Westphal | 48ed7b2 | 2015-05-21 00:25:41 +0200 | [diff] [blame] | 2990 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2991 | |
David Ahern | 93531c6 | 2018-04-17 17:33:25 -0700 | [diff] [blame] | 2992 | rt->fib6_nh.nh_gw = cfg->fc_gateway; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2993 | } |
| 2994 | |
| 2995 | err = -ENODEV; |
David S. Miller | 3830847 | 2011-12-03 18:02:47 -0500 | [diff] [blame] | 2996 | if (!dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2997 | goto out; |
| 2998 | |
Lorenzo Bianconi | 428604f | 2018-03-29 11:02:24 +0200 | [diff] [blame] | 2999 | if (idev->cnf.disable_ipv6) { |
| 3000 | NL_SET_ERR_MSG(extack, "IPv6 is disabled on nexthop device"); |
| 3001 | err = -EACCES; |
| 3002 | goto out; |
| 3003 | } |
| 3004 | |
David Ahern | 955ec4c | 2018-01-24 19:45:29 -0800 | [diff] [blame] | 3005 | if (!(dev->flags & IFF_UP)) { |
| 3006 | NL_SET_ERR_MSG(extack, "Nexthop device is not up"); |
| 3007 | err = -ENETDOWN; |
| 3008 | goto out; |
| 3009 | } |
| 3010 | |
Daniel Walter | c3968a8 | 2011-04-13 21:10:57 +0000 | [diff] [blame] | 3011 | if (!ipv6_addr_any(&cfg->fc_prefsrc)) { |
| 3012 | if (!ipv6_chk_addr(net, &cfg->fc_prefsrc, dev, 0)) { |
David Ahern | d5d531c | 2017-05-21 10:12:05 -0600 | [diff] [blame] | 3013 | NL_SET_ERR_MSG(extack, "Invalid source address"); |
Daniel Walter | c3968a8 | 2011-04-13 21:10:57 +0000 | [diff] [blame] | 3014 | err = -EINVAL; |
| 3015 | goto out; |
| 3016 | } |
Alexey Dobriyan | 4e3fd7a | 2011-11-21 03:39:03 +0000 | [diff] [blame] | 3017 | rt->rt6i_prefsrc.addr = cfg->fc_prefsrc; |
Daniel Walter | c3968a8 | 2011-04-13 21:10:57 +0000 | [diff] [blame] | 3018 | rt->rt6i_prefsrc.plen = 128; |
| 3019 | } else |
| 3020 | rt->rt6i_prefsrc.plen = 0; |
| 3021 | |
Thomas Graf | 86872cb | 2006-08-22 00:01:08 -0700 | [diff] [blame] | 3022 | rt->rt6i_flags = cfg->fc_flags; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3023 | |
| 3024 | install_route: |
Ido Schimmel | 5609b80 | 2018-01-07 12:45:06 +0200 | [diff] [blame] | 3025 | if (!(rt->rt6i_flags & (RTF_LOCAL | RTF_ANYCAST)) && |
| 3026 | !netif_carrier_ok(dev)) |
David Ahern | 5e670d8 | 2018-04-17 17:33:14 -0700 | [diff] [blame] | 3027 | rt->fib6_nh.nh_flags |= RTNH_F_LINKDOWN; |
| 3028 | rt->fib6_nh.nh_flags |= (cfg->fc_flags & RTNH_F_ONLINK); |
David Ahern | 93531c6 | 2018-04-17 17:33:25 -0700 | [diff] [blame] | 3029 | rt->fib6_nh.nh_dev = dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3030 | rt->rt6i_idev = idev; |
Thomas Graf | c71099a | 2006-08-04 23:20:06 -0700 | [diff] [blame] | 3031 | rt->rt6i_table = table; |
Daniel Lezcano | 63152fc | 2008-03-03 23:31:11 -0800 | [diff] [blame] | 3032 | |
YOSHIFUJI Hideaki | c346dca | 2008-03-25 21:47:49 +0900 | [diff] [blame] | 3033 | cfg->fc_nlinfo.nl_net = dev_net(dev); |
Daniel Lezcano | 63152fc | 2008-03-03 23:31:11 -0800 | [diff] [blame] | 3034 | |
Roopa Prabhu | 8c5b83f | 2015-10-10 08:26:36 -0700 | [diff] [blame] | 3035 | return rt; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3036 | out: |
| 3037 | if (dev) |
| 3038 | dev_put(dev); |
| 3039 | if (idev) |
| 3040 | in6_dev_put(idev); |
Roopa Prabhu | 6b9ea5a | 2015-09-08 10:53:04 -0700 | [diff] [blame] | 3041 | |
David Ahern | 93531c6 | 2018-04-17 17:33:25 -0700 | [diff] [blame] | 3042 | fib6_info_release(rt); |
Roopa Prabhu | 8c5b83f | 2015-10-10 08:26:36 -0700 | [diff] [blame] | 3043 | return ERR_PTR(err); |
Roopa Prabhu | 6b9ea5a | 2015-09-08 10:53:04 -0700 | [diff] [blame] | 3044 | } |
| 3045 | |
David Ahern | acb54e3 | 2018-04-17 17:33:22 -0700 | [diff] [blame] | 3046 | int ip6_route_add(struct fib6_config *cfg, gfp_t gfp_flags, |
| 3047 | struct netlink_ext_ack *extack) |
Roopa Prabhu | 6b9ea5a | 2015-09-08 10:53:04 -0700 | [diff] [blame] | 3048 | { |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame^] | 3049 | struct fib6_info *rt; |
Roopa Prabhu | 6b9ea5a | 2015-09-08 10:53:04 -0700 | [diff] [blame] | 3050 | int err; |
| 3051 | |
David Ahern | acb54e3 | 2018-04-17 17:33:22 -0700 | [diff] [blame] | 3052 | rt = ip6_route_info_create(cfg, gfp_flags, extack); |
David Ahern | d4ead6b | 2018-04-17 17:33:16 -0700 | [diff] [blame] | 3053 | if (IS_ERR(rt)) |
| 3054 | return PTR_ERR(rt); |
Roopa Prabhu | 6b9ea5a | 2015-09-08 10:53:04 -0700 | [diff] [blame] | 3055 | |
David Ahern | d4ead6b | 2018-04-17 17:33:16 -0700 | [diff] [blame] | 3056 | err = __ip6_ins_rt(rt, &cfg->fc_nlinfo, extack); |
David Ahern | 93531c6 | 2018-04-17 17:33:25 -0700 | [diff] [blame] | 3057 | fib6_info_release(rt); |
Roopa Prabhu | 6b9ea5a | 2015-09-08 10:53:04 -0700 | [diff] [blame] | 3058 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3059 | return err; |
| 3060 | } |
| 3061 | |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame^] | 3062 | static int __ip6_del_rt(struct fib6_info *rt, struct nl_info *info) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3063 | { |
David Ahern | afb1d4b5 | 2018-04-17 17:33:11 -0700 | [diff] [blame] | 3064 | struct net *net = info->nl_net; |
Thomas Graf | c71099a | 2006-08-04 23:20:06 -0700 | [diff] [blame] | 3065 | struct fib6_table *table; |
David Ahern | afb1d4b5 | 2018-04-17 17:33:11 -0700 | [diff] [blame] | 3066 | int err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3067 | |
David Ahern | 421842e | 2018-04-17 17:33:18 -0700 | [diff] [blame] | 3068 | if (rt == net->ipv6.fib6_null_entry) { |
Gao feng | 6825a26 | 2012-09-19 19:25:34 +0000 | [diff] [blame] | 3069 | err = -ENOENT; |
| 3070 | goto out; |
| 3071 | } |
Patrick McHardy | 6c813a7 | 2006-08-06 22:22:47 -0700 | [diff] [blame] | 3072 | |
Thomas Graf | c71099a | 2006-08-04 23:20:06 -0700 | [diff] [blame] | 3073 | table = rt->rt6i_table; |
Wei Wang | 66f5d6c | 2017-10-06 12:06:10 -0700 | [diff] [blame] | 3074 | spin_lock_bh(&table->tb6_lock); |
Thomas Graf | 86872cb | 2006-08-22 00:01:08 -0700 | [diff] [blame] | 3075 | err = fib6_del(rt, info); |
Wei Wang | 66f5d6c | 2017-10-06 12:06:10 -0700 | [diff] [blame] | 3076 | spin_unlock_bh(&table->tb6_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3077 | |
Gao feng | 6825a26 | 2012-09-19 19:25:34 +0000 | [diff] [blame] | 3078 | out: |
David Ahern | 93531c6 | 2018-04-17 17:33:25 -0700 | [diff] [blame] | 3079 | fib6_info_release(rt); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3080 | return err; |
| 3081 | } |
| 3082 | |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame^] | 3083 | int ip6_del_rt(struct net *net, struct fib6_info *rt) |
Thomas Graf | e0a1ad73 | 2006-08-22 00:00:21 -0700 | [diff] [blame] | 3084 | { |
David Ahern | afb1d4b5 | 2018-04-17 17:33:11 -0700 | [diff] [blame] | 3085 | struct nl_info info = { .nl_net = net }; |
| 3086 | |
Denis V. Lunev | 528c4ce | 2007-12-13 09:45:12 -0800 | [diff] [blame] | 3087 | return __ip6_del_rt(rt, &info); |
Thomas Graf | e0a1ad73 | 2006-08-22 00:00:21 -0700 | [diff] [blame] | 3088 | } |
| 3089 | |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame^] | 3090 | static int __ip6_del_rt_siblings(struct fib6_info *rt, struct fib6_config *cfg) |
David Ahern | 0ae8133 | 2017-02-02 12:37:08 -0800 | [diff] [blame] | 3091 | { |
| 3092 | struct nl_info *info = &cfg->fc_nlinfo; |
WANG Cong | e333003 | 2017-02-27 16:07:43 -0800 | [diff] [blame] | 3093 | struct net *net = info->nl_net; |
David Ahern | 16a16cd | 2017-02-02 12:37:11 -0800 | [diff] [blame] | 3094 | struct sk_buff *skb = NULL; |
David Ahern | 0ae8133 | 2017-02-02 12:37:08 -0800 | [diff] [blame] | 3095 | struct fib6_table *table; |
WANG Cong | e333003 | 2017-02-27 16:07:43 -0800 | [diff] [blame] | 3096 | int err = -ENOENT; |
David Ahern | 0ae8133 | 2017-02-02 12:37:08 -0800 | [diff] [blame] | 3097 | |
David Ahern | 421842e | 2018-04-17 17:33:18 -0700 | [diff] [blame] | 3098 | if (rt == net->ipv6.fib6_null_entry) |
WANG Cong | e333003 | 2017-02-27 16:07:43 -0800 | [diff] [blame] | 3099 | goto out_put; |
David Ahern | 0ae8133 | 2017-02-02 12:37:08 -0800 | [diff] [blame] | 3100 | table = rt->rt6i_table; |
Wei Wang | 66f5d6c | 2017-10-06 12:06:10 -0700 | [diff] [blame] | 3101 | spin_lock_bh(&table->tb6_lock); |
David Ahern | 0ae8133 | 2017-02-02 12:37:08 -0800 | [diff] [blame] | 3102 | |
| 3103 | if (rt->rt6i_nsiblings && cfg->fc_delete_all_nh) { |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame^] | 3104 | struct fib6_info *sibling, *next_sibling; |
David Ahern | 0ae8133 | 2017-02-02 12:37:08 -0800 | [diff] [blame] | 3105 | |
David Ahern | 16a16cd | 2017-02-02 12:37:11 -0800 | [diff] [blame] | 3106 | /* prefer to send a single notification with all hops */ |
| 3107 | skb = nlmsg_new(rt6_nlmsg_size(rt), gfp_any()); |
| 3108 | if (skb) { |
| 3109 | u32 seq = info->nlh ? info->nlh->nlmsg_seq : 0; |
| 3110 | |
David Ahern | d4ead6b | 2018-04-17 17:33:16 -0700 | [diff] [blame] | 3111 | if (rt6_fill_node(net, skb, rt, NULL, |
David Ahern | 16a16cd | 2017-02-02 12:37:11 -0800 | [diff] [blame] | 3112 | NULL, NULL, 0, RTM_DELROUTE, |
| 3113 | info->portid, seq, 0) < 0) { |
| 3114 | kfree_skb(skb); |
| 3115 | skb = NULL; |
| 3116 | } else |
| 3117 | info->skip_notify = 1; |
| 3118 | } |
| 3119 | |
David Ahern | 0ae8133 | 2017-02-02 12:37:08 -0800 | [diff] [blame] | 3120 | list_for_each_entry_safe(sibling, next_sibling, |
| 3121 | &rt->rt6i_siblings, |
| 3122 | rt6i_siblings) { |
| 3123 | err = fib6_del(sibling, info); |
| 3124 | if (err) |
WANG Cong | e333003 | 2017-02-27 16:07:43 -0800 | [diff] [blame] | 3125 | goto out_unlock; |
David Ahern | 0ae8133 | 2017-02-02 12:37:08 -0800 | [diff] [blame] | 3126 | } |
| 3127 | } |
| 3128 | |
| 3129 | err = fib6_del(rt, info); |
WANG Cong | e333003 | 2017-02-27 16:07:43 -0800 | [diff] [blame] | 3130 | out_unlock: |
Wei Wang | 66f5d6c | 2017-10-06 12:06:10 -0700 | [diff] [blame] | 3131 | spin_unlock_bh(&table->tb6_lock); |
WANG Cong | e333003 | 2017-02-27 16:07:43 -0800 | [diff] [blame] | 3132 | out_put: |
David Ahern | 93531c6 | 2018-04-17 17:33:25 -0700 | [diff] [blame] | 3133 | fib6_info_release(rt); |
David Ahern | 16a16cd | 2017-02-02 12:37:11 -0800 | [diff] [blame] | 3134 | |
| 3135 | if (skb) { |
WANG Cong | e333003 | 2017-02-27 16:07:43 -0800 | [diff] [blame] | 3136 | rtnl_notify(skb, net, info->portid, RTNLGRP_IPV6_ROUTE, |
David Ahern | 16a16cd | 2017-02-02 12:37:11 -0800 | [diff] [blame] | 3137 | info->nlh, gfp_any()); |
| 3138 | } |
David Ahern | 0ae8133 | 2017-02-02 12:37:08 -0800 | [diff] [blame] | 3139 | return err; |
| 3140 | } |
| 3141 | |
David Ahern | 23fb93a | 2018-04-17 17:33:23 -0700 | [diff] [blame] | 3142 | static int ip6_del_cached_rt(struct rt6_info *rt, struct fib6_config *cfg) |
| 3143 | { |
| 3144 | int rc = -ESRCH; |
| 3145 | |
| 3146 | if (cfg->fc_ifindex && rt->dst.dev->ifindex != cfg->fc_ifindex) |
| 3147 | goto out; |
| 3148 | |
| 3149 | if (cfg->fc_flags & RTF_GATEWAY && |
| 3150 | !ipv6_addr_equal(&cfg->fc_gateway, &rt->rt6i_gateway)) |
| 3151 | goto out; |
| 3152 | if (dst_hold_safe(&rt->dst)) |
| 3153 | rc = rt6_remove_exception_rt(rt); |
| 3154 | out: |
| 3155 | return rc; |
| 3156 | } |
| 3157 | |
David Ahern | 333c430 | 2017-05-21 10:12:04 -0600 | [diff] [blame] | 3158 | static int ip6_route_del(struct fib6_config *cfg, |
| 3159 | struct netlink_ext_ack *extack) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3160 | { |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame^] | 3161 | struct rt6_info *rt_cache; |
Thomas Graf | c71099a | 2006-08-04 23:20:06 -0700 | [diff] [blame] | 3162 | struct fib6_table *table; |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame^] | 3163 | struct fib6_info *rt; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3164 | struct fib6_node *fn; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3165 | int err = -ESRCH; |
| 3166 | |
Daniel Lezcano | 5578689 | 2008-03-04 13:47:47 -0800 | [diff] [blame] | 3167 | table = fib6_get_table(cfg->fc_nlinfo.nl_net, cfg->fc_table); |
David Ahern | d5d531c | 2017-05-21 10:12:05 -0600 | [diff] [blame] | 3168 | if (!table) { |
| 3169 | NL_SET_ERR_MSG(extack, "FIB table does not exist"); |
Thomas Graf | c71099a | 2006-08-04 23:20:06 -0700 | [diff] [blame] | 3170 | return err; |
David Ahern | d5d531c | 2017-05-21 10:12:05 -0600 | [diff] [blame] | 3171 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3172 | |
Wei Wang | 66f5d6c | 2017-10-06 12:06:10 -0700 | [diff] [blame] | 3173 | rcu_read_lock(); |
Thomas Graf | c71099a | 2006-08-04 23:20:06 -0700 | [diff] [blame] | 3174 | |
| 3175 | fn = fib6_locate(&table->tb6_root, |
Thomas Graf | 86872cb | 2006-08-22 00:01:08 -0700 | [diff] [blame] | 3176 | &cfg->fc_dst, cfg->fc_dst_len, |
Wei Wang | 38fbeee | 2017-10-06 12:06:02 -0700 | [diff] [blame] | 3177 | &cfg->fc_src, cfg->fc_src_len, |
Wei Wang | 2b760fc | 2017-10-06 12:06:03 -0700 | [diff] [blame] | 3178 | !(cfg->fc_flags & RTF_CACHE)); |
YOSHIFUJI Hideaki | 1ab1457 | 2007-02-09 23:24:49 +0900 | [diff] [blame] | 3179 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3180 | if (fn) { |
Wei Wang | 66f5d6c | 2017-10-06 12:06:10 -0700 | [diff] [blame] | 3181 | for_each_fib6_node_rt_rcu(fn) { |
Wei Wang | 2b760fc | 2017-10-06 12:06:03 -0700 | [diff] [blame] | 3182 | if (cfg->fc_flags & RTF_CACHE) { |
David Ahern | 23fb93a | 2018-04-17 17:33:23 -0700 | [diff] [blame] | 3183 | int rc; |
| 3184 | |
Wei Wang | 2b760fc | 2017-10-06 12:06:03 -0700 | [diff] [blame] | 3185 | rt_cache = rt6_find_cached_rt(rt, &cfg->fc_dst, |
| 3186 | &cfg->fc_src); |
David Ahern | 23fb93a | 2018-04-17 17:33:23 -0700 | [diff] [blame] | 3187 | if (rt_cache) { |
| 3188 | rc = ip6_del_cached_rt(rt_cache, cfg); |
| 3189 | if (rc != -ESRCH) |
| 3190 | return rc; |
| 3191 | } |
| 3192 | continue; |
Wei Wang | 2b760fc | 2017-10-06 12:06:03 -0700 | [diff] [blame] | 3193 | } |
Thomas Graf | 86872cb | 2006-08-22 00:01:08 -0700 | [diff] [blame] | 3194 | if (cfg->fc_ifindex && |
David Ahern | 5e670d8 | 2018-04-17 17:33:14 -0700 | [diff] [blame] | 3195 | (!rt->fib6_nh.nh_dev || |
| 3196 | rt->fib6_nh.nh_dev->ifindex != cfg->fc_ifindex)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3197 | continue; |
Thomas Graf | 86872cb | 2006-08-22 00:01:08 -0700 | [diff] [blame] | 3198 | if (cfg->fc_flags & RTF_GATEWAY && |
David Ahern | 5e670d8 | 2018-04-17 17:33:14 -0700 | [diff] [blame] | 3199 | !ipv6_addr_equal(&cfg->fc_gateway, &rt->fib6_nh.nh_gw)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3200 | continue; |
Thomas Graf | 86872cb | 2006-08-22 00:01:08 -0700 | [diff] [blame] | 3201 | if (cfg->fc_metric && cfg->fc_metric != rt->rt6i_metric) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3202 | continue; |
Mantas M | c2ed188 | 2016-12-16 10:30:59 +0200 | [diff] [blame] | 3203 | if (cfg->fc_protocol && cfg->fc_protocol != rt->rt6i_protocol) |
| 3204 | continue; |
David Ahern | 93531c6 | 2018-04-17 17:33:25 -0700 | [diff] [blame] | 3205 | fib6_info_hold(rt); |
Wei Wang | 66f5d6c | 2017-10-06 12:06:10 -0700 | [diff] [blame] | 3206 | rcu_read_unlock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3207 | |
David Ahern | 0ae8133 | 2017-02-02 12:37:08 -0800 | [diff] [blame] | 3208 | /* if gateway was specified only delete the one hop */ |
| 3209 | if (cfg->fc_flags & RTF_GATEWAY) |
| 3210 | return __ip6_del_rt(rt, &cfg->fc_nlinfo); |
| 3211 | |
| 3212 | return __ip6_del_rt_siblings(rt, cfg); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3213 | } |
| 3214 | } |
Wei Wang | 66f5d6c | 2017-10-06 12:06:10 -0700 | [diff] [blame] | 3215 | rcu_read_unlock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3216 | |
| 3217 | return err; |
| 3218 | } |
| 3219 | |
David S. Miller | 6700c27 | 2012-07-17 03:29:28 -0700 | [diff] [blame] | 3220 | static void rt6_do_redirect(struct dst_entry *dst, struct sock *sk, struct sk_buff *skb) |
YOSHIFUJI Hideaki | a627945 | 2006-08-23 17:18:26 -0700 | [diff] [blame] | 3221 | { |
YOSHIFUJI Hideaki | a627945 | 2006-08-23 17:18:26 -0700 | [diff] [blame] | 3222 | struct netevent_redirect netevent; |
David S. Miller | e8599ff | 2012-07-11 23:43:53 -0700 | [diff] [blame] | 3223 | struct rt6_info *rt, *nrt = NULL; |
David S. Miller | e8599ff | 2012-07-11 23:43:53 -0700 | [diff] [blame] | 3224 | struct ndisc_options ndopts; |
| 3225 | struct inet6_dev *in6_dev; |
| 3226 | struct neighbour *neigh; |
YOSHIFUJI Hideaki / 吉藤英明 | 71bcdba | 2013-01-05 16:34:51 +0000 | [diff] [blame] | 3227 | struct rd_msg *msg; |
David S. Miller | 6e157b6 | 2012-07-12 00:05:02 -0700 | [diff] [blame] | 3228 | int optlen, on_link; |
| 3229 | u8 *lladdr; |
David S. Miller | e8599ff | 2012-07-11 23:43:53 -0700 | [diff] [blame] | 3230 | |
Simon Horman | 29a3cad | 2013-05-28 20:34:26 +0000 | [diff] [blame] | 3231 | optlen = skb_tail_pointer(skb) - skb_transport_header(skb); |
YOSHIFUJI Hideaki / 吉藤英明 | 71bcdba | 2013-01-05 16:34:51 +0000 | [diff] [blame] | 3232 | optlen -= sizeof(*msg); |
David S. Miller | e8599ff | 2012-07-11 23:43:53 -0700 | [diff] [blame] | 3233 | |
| 3234 | if (optlen < 0) { |
David S. Miller | 6e157b6 | 2012-07-12 00:05:02 -0700 | [diff] [blame] | 3235 | net_dbg_ratelimited("rt6_do_redirect: packet too short\n"); |
David S. Miller | e8599ff | 2012-07-11 23:43:53 -0700 | [diff] [blame] | 3236 | return; |
| 3237 | } |
| 3238 | |
YOSHIFUJI Hideaki / 吉藤英明 | 71bcdba | 2013-01-05 16:34:51 +0000 | [diff] [blame] | 3239 | msg = (struct rd_msg *)icmp6_hdr(skb); |
David S. Miller | e8599ff | 2012-07-11 23:43:53 -0700 | [diff] [blame] | 3240 | |
YOSHIFUJI Hideaki / 吉藤英明 | 71bcdba | 2013-01-05 16:34:51 +0000 | [diff] [blame] | 3241 | if (ipv6_addr_is_multicast(&msg->dest)) { |
David S. Miller | 6e157b6 | 2012-07-12 00:05:02 -0700 | [diff] [blame] | 3242 | net_dbg_ratelimited("rt6_do_redirect: destination address is multicast\n"); |
David S. Miller | e8599ff | 2012-07-11 23:43:53 -0700 | [diff] [blame] | 3243 | return; |
| 3244 | } |
| 3245 | |
David S. Miller | 6e157b6 | 2012-07-12 00:05:02 -0700 | [diff] [blame] | 3246 | on_link = 0; |
YOSHIFUJI Hideaki / 吉藤英明 | 71bcdba | 2013-01-05 16:34:51 +0000 | [diff] [blame] | 3247 | if (ipv6_addr_equal(&msg->dest, &msg->target)) { |
David S. Miller | e8599ff | 2012-07-11 23:43:53 -0700 | [diff] [blame] | 3248 | on_link = 1; |
YOSHIFUJI Hideaki / 吉藤英明 | 71bcdba | 2013-01-05 16:34:51 +0000 | [diff] [blame] | 3249 | } else if (ipv6_addr_type(&msg->target) != |
David S. Miller | e8599ff | 2012-07-11 23:43:53 -0700 | [diff] [blame] | 3250 | (IPV6_ADDR_UNICAST|IPV6_ADDR_LINKLOCAL)) { |
David S. Miller | 6e157b6 | 2012-07-12 00:05:02 -0700 | [diff] [blame] | 3251 | net_dbg_ratelimited("rt6_do_redirect: target address is not link-local unicast\n"); |
David S. Miller | e8599ff | 2012-07-11 23:43:53 -0700 | [diff] [blame] | 3252 | return; |
| 3253 | } |
| 3254 | |
| 3255 | in6_dev = __in6_dev_get(skb->dev); |
| 3256 | if (!in6_dev) |
| 3257 | return; |
| 3258 | if (in6_dev->cnf.forwarding || !in6_dev->cnf.accept_redirects) |
| 3259 | return; |
| 3260 | |
| 3261 | /* RFC2461 8.1: |
| 3262 | * The IP source address of the Redirect MUST be the same as the current |
| 3263 | * first-hop router for the specified ICMP Destination Address. |
| 3264 | */ |
| 3265 | |
Alexander Aring | f997c55 | 2016-06-15 21:20:23 +0200 | [diff] [blame] | 3266 | if (!ndisc_parse_options(skb->dev, msg->opt, optlen, &ndopts)) { |
David S. Miller | e8599ff | 2012-07-11 23:43:53 -0700 | [diff] [blame] | 3267 | net_dbg_ratelimited("rt6_redirect: invalid ND options\n"); |
| 3268 | return; |
| 3269 | } |
David S. Miller | 6e157b6 | 2012-07-12 00:05:02 -0700 | [diff] [blame] | 3270 | |
| 3271 | lladdr = NULL; |
David S. Miller | e8599ff | 2012-07-11 23:43:53 -0700 | [diff] [blame] | 3272 | if (ndopts.nd_opts_tgt_lladdr) { |
| 3273 | lladdr = ndisc_opt_addr_data(ndopts.nd_opts_tgt_lladdr, |
| 3274 | skb->dev); |
| 3275 | if (!lladdr) { |
| 3276 | net_dbg_ratelimited("rt6_redirect: invalid link-layer address length\n"); |
| 3277 | return; |
| 3278 | } |
| 3279 | } |
| 3280 | |
David S. Miller | 6e157b6 | 2012-07-12 00:05:02 -0700 | [diff] [blame] | 3281 | rt = (struct rt6_info *) dst; |
Matthias Schiffer | ec13ad1 | 2015-11-02 01:24:38 +0100 | [diff] [blame] | 3282 | if (rt->rt6i_flags & RTF_REJECT) { |
David S. Miller | 6e157b6 | 2012-07-12 00:05:02 -0700 | [diff] [blame] | 3283 | net_dbg_ratelimited("rt6_redirect: source isn't a valid nexthop for redirect target\n"); |
| 3284 | return; |
| 3285 | } |
| 3286 | |
| 3287 | /* Redirect received -> path was valid. |
| 3288 | * Look, redirects are sent only in response to data packets, |
| 3289 | * so that this nexthop apparently is reachable. --ANK |
| 3290 | */ |
Julian Anastasov | 0dec879 | 2017-02-06 23:14:16 +0200 | [diff] [blame] | 3291 | dst_confirm_neigh(&rt->dst, &ipv6_hdr(skb)->saddr); |
David S. Miller | 6e157b6 | 2012-07-12 00:05:02 -0700 | [diff] [blame] | 3292 | |
YOSHIFUJI Hideaki / 吉藤英明 | 71bcdba | 2013-01-05 16:34:51 +0000 | [diff] [blame] | 3293 | neigh = __neigh_lookup(&nd_tbl, &msg->target, skb->dev, 1); |
David S. Miller | e8599ff | 2012-07-11 23:43:53 -0700 | [diff] [blame] | 3294 | if (!neigh) |
| 3295 | return; |
| 3296 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3297 | /* |
| 3298 | * We have finally decided to accept it. |
| 3299 | */ |
| 3300 | |
Alexander Aring | f997c55 | 2016-06-15 21:20:23 +0200 | [diff] [blame] | 3301 | ndisc_update(skb->dev, neigh, lladdr, NUD_STALE, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3302 | NEIGH_UPDATE_F_WEAK_OVERRIDE| |
| 3303 | NEIGH_UPDATE_F_OVERRIDE| |
| 3304 | (on_link ? 0 : (NEIGH_UPDATE_F_OVERRIDE_ISROUTER| |
Alexander Aring | f997c55 | 2016-06-15 21:20:23 +0200 | [diff] [blame] | 3305 | NEIGH_UPDATE_F_ISROUTER)), |
| 3306 | NDISC_REDIRECT, &ndopts); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3307 | |
David Ahern | 23fb93a | 2018-04-17 17:33:23 -0700 | [diff] [blame] | 3308 | nrt = ip6_rt_cache_alloc(rt->from, &msg->dest, NULL); |
David S. Miller | 3830847 | 2011-12-03 18:02:47 -0500 | [diff] [blame] | 3309 | if (!nrt) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3310 | goto out; |
| 3311 | |
| 3312 | nrt->rt6i_flags = RTF_GATEWAY|RTF_UP|RTF_DYNAMIC|RTF_CACHE; |
| 3313 | if (on_link) |
| 3314 | nrt->rt6i_flags &= ~RTF_GATEWAY; |
| 3315 | |
Xin Long | b91d532 | 2017-08-03 14:13:46 +0800 | [diff] [blame] | 3316 | nrt->rt6i_protocol = RTPROT_REDIRECT; |
Alexey Dobriyan | 4e3fd7a | 2011-11-21 03:39:03 +0000 | [diff] [blame] | 3317 | nrt->rt6i_gateway = *(struct in6_addr *)neigh->primary_key; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3318 | |
Wei Wang | 2b760fc | 2017-10-06 12:06:03 -0700 | [diff] [blame] | 3319 | /* No need to remove rt from the exception table if rt is |
| 3320 | * a cached route because rt6_insert_exception() will |
| 3321 | * takes care of it |
| 3322 | */ |
David Ahern | d4ead6b | 2018-04-17 17:33:16 -0700 | [diff] [blame] | 3323 | if (rt6_insert_exception(nrt, rt->from)) { |
Wei Wang | 2b760fc | 2017-10-06 12:06:03 -0700 | [diff] [blame] | 3324 | dst_release_immediate(&nrt->dst); |
| 3325 | goto out; |
| 3326 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3327 | |
Changli Gao | d8d1f30 | 2010-06-10 23:31:35 -0700 | [diff] [blame] | 3328 | netevent.old = &rt->dst; |
| 3329 | netevent.new = &nrt->dst; |
YOSHIFUJI Hideaki / 吉藤英明 | 71bcdba | 2013-01-05 16:34:51 +0000 | [diff] [blame] | 3330 | netevent.daddr = &msg->dest; |
YOSHIFUJI Hideaki / 吉藤英明 | 6059283 | 2013-01-14 09:28:27 +0000 | [diff] [blame] | 3331 | netevent.neigh = neigh; |
Tom Tucker | 8d71740 | 2006-07-30 20:43:36 -0700 | [diff] [blame] | 3332 | call_netevent_notifiers(NETEVENT_REDIRECT, &netevent); |
| 3333 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3334 | out: |
David S. Miller | e8599ff | 2012-07-11 23:43:53 -0700 | [diff] [blame] | 3335 | neigh_release(neigh); |
David S. Miller | 6e157b6 | 2012-07-12 00:05:02 -0700 | [diff] [blame] | 3336 | } |
| 3337 | |
YOSHIFUJI Hideaki | 70ceb4f | 2006-03-20 17:06:24 -0800 | [diff] [blame] | 3338 | #ifdef CONFIG_IPV6_ROUTE_INFO |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame^] | 3339 | static struct fib6_info *rt6_get_route_info(struct net *net, |
Eric Dumazet | b71d1d4 | 2011-04-22 04:53:02 +0000 | [diff] [blame] | 3340 | const struct in6_addr *prefix, int prefixlen, |
David Ahern | 830218c | 2016-10-24 10:52:35 -0700 | [diff] [blame] | 3341 | const struct in6_addr *gwaddr, |
| 3342 | struct net_device *dev) |
YOSHIFUJI Hideaki | 70ceb4f | 2006-03-20 17:06:24 -0800 | [diff] [blame] | 3343 | { |
David Ahern | 830218c | 2016-10-24 10:52:35 -0700 | [diff] [blame] | 3344 | u32 tb_id = l3mdev_fib_table(dev) ? : RT6_TABLE_INFO; |
| 3345 | int ifindex = dev->ifindex; |
YOSHIFUJI Hideaki | 70ceb4f | 2006-03-20 17:06:24 -0800 | [diff] [blame] | 3346 | struct fib6_node *fn; |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame^] | 3347 | struct fib6_info *rt = NULL; |
Thomas Graf | c71099a | 2006-08-04 23:20:06 -0700 | [diff] [blame] | 3348 | struct fib6_table *table; |
YOSHIFUJI Hideaki | 70ceb4f | 2006-03-20 17:06:24 -0800 | [diff] [blame] | 3349 | |
David Ahern | 830218c | 2016-10-24 10:52:35 -0700 | [diff] [blame] | 3350 | table = fib6_get_table(net, tb_id); |
David S. Miller | 3830847 | 2011-12-03 18:02:47 -0500 | [diff] [blame] | 3351 | if (!table) |
Thomas Graf | c71099a | 2006-08-04 23:20:06 -0700 | [diff] [blame] | 3352 | return NULL; |
| 3353 | |
Wei Wang | 66f5d6c | 2017-10-06 12:06:10 -0700 | [diff] [blame] | 3354 | rcu_read_lock(); |
Wei Wang | 38fbeee | 2017-10-06 12:06:02 -0700 | [diff] [blame] | 3355 | fn = fib6_locate(&table->tb6_root, prefix, prefixlen, NULL, 0, true); |
YOSHIFUJI Hideaki | 70ceb4f | 2006-03-20 17:06:24 -0800 | [diff] [blame] | 3356 | if (!fn) |
| 3357 | goto out; |
| 3358 | |
Wei Wang | 66f5d6c | 2017-10-06 12:06:10 -0700 | [diff] [blame] | 3359 | for_each_fib6_node_rt_rcu(fn) { |
David Ahern | 5e670d8 | 2018-04-17 17:33:14 -0700 | [diff] [blame] | 3360 | if (rt->fib6_nh.nh_dev->ifindex != ifindex) |
YOSHIFUJI Hideaki | 70ceb4f | 2006-03-20 17:06:24 -0800 | [diff] [blame] | 3361 | continue; |
| 3362 | if ((rt->rt6i_flags & (RTF_ROUTEINFO|RTF_GATEWAY)) != (RTF_ROUTEINFO|RTF_GATEWAY)) |
| 3363 | continue; |
David Ahern | 5e670d8 | 2018-04-17 17:33:14 -0700 | [diff] [blame] | 3364 | if (!ipv6_addr_equal(&rt->fib6_nh.nh_gw, gwaddr)) |
YOSHIFUJI Hideaki | 70ceb4f | 2006-03-20 17:06:24 -0800 | [diff] [blame] | 3365 | continue; |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame^] | 3366 | fib6_info_hold(rt); |
YOSHIFUJI Hideaki | 70ceb4f | 2006-03-20 17:06:24 -0800 | [diff] [blame] | 3367 | break; |
| 3368 | } |
| 3369 | out: |
Wei Wang | 66f5d6c | 2017-10-06 12:06:10 -0700 | [diff] [blame] | 3370 | rcu_read_unlock(); |
YOSHIFUJI Hideaki | 70ceb4f | 2006-03-20 17:06:24 -0800 | [diff] [blame] | 3371 | return rt; |
| 3372 | } |
| 3373 | |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame^] | 3374 | static struct fib6_info *rt6_add_route_info(struct net *net, |
Eric Dumazet | b71d1d4 | 2011-04-22 04:53:02 +0000 | [diff] [blame] | 3375 | const struct in6_addr *prefix, int prefixlen, |
David Ahern | 830218c | 2016-10-24 10:52:35 -0700 | [diff] [blame] | 3376 | const struct in6_addr *gwaddr, |
| 3377 | struct net_device *dev, |
Eric Dumazet | 95c9617 | 2012-04-15 05:58:06 +0000 | [diff] [blame] | 3378 | unsigned int pref) |
YOSHIFUJI Hideaki | 70ceb4f | 2006-03-20 17:06:24 -0800 | [diff] [blame] | 3379 | { |
Thomas Graf | 86872cb | 2006-08-22 00:01:08 -0700 | [diff] [blame] | 3380 | struct fib6_config cfg = { |
Rami Rosen | 238fc7e | 2008-02-09 23:43:11 -0800 | [diff] [blame] | 3381 | .fc_metric = IP6_RT_PRIO_USER, |
David Ahern | 830218c | 2016-10-24 10:52:35 -0700 | [diff] [blame] | 3382 | .fc_ifindex = dev->ifindex, |
Thomas Graf | 86872cb | 2006-08-22 00:01:08 -0700 | [diff] [blame] | 3383 | .fc_dst_len = prefixlen, |
| 3384 | .fc_flags = RTF_GATEWAY | RTF_ADDRCONF | RTF_ROUTEINFO | |
| 3385 | RTF_UP | RTF_PREF(pref), |
Xin Long | b91d532 | 2017-08-03 14:13:46 +0800 | [diff] [blame] | 3386 | .fc_protocol = RTPROT_RA, |
David Ahern | e8478e8 | 2018-04-17 17:33:13 -0700 | [diff] [blame] | 3387 | .fc_type = RTN_UNICAST, |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 3388 | .fc_nlinfo.portid = 0, |
Daniel Lezcano | efa2cea | 2008-03-04 13:46:48 -0800 | [diff] [blame] | 3389 | .fc_nlinfo.nlh = NULL, |
| 3390 | .fc_nlinfo.nl_net = net, |
Thomas Graf | 86872cb | 2006-08-22 00:01:08 -0700 | [diff] [blame] | 3391 | }; |
YOSHIFUJI Hideaki | 70ceb4f | 2006-03-20 17:06:24 -0800 | [diff] [blame] | 3392 | |
David Ahern | 830218c | 2016-10-24 10:52:35 -0700 | [diff] [blame] | 3393 | cfg.fc_table = l3mdev_fib_table(dev) ? : RT6_TABLE_INFO, |
Alexey Dobriyan | 4e3fd7a | 2011-11-21 03:39:03 +0000 | [diff] [blame] | 3394 | cfg.fc_dst = *prefix; |
| 3395 | cfg.fc_gateway = *gwaddr; |
Thomas Graf | 86872cb | 2006-08-22 00:01:08 -0700 | [diff] [blame] | 3396 | |
YOSHIFUJI Hideaki | e317da9 | 2006-03-20 17:06:42 -0800 | [diff] [blame] | 3397 | /* We should treat it as a default route if prefix length is 0. */ |
| 3398 | if (!prefixlen) |
Thomas Graf | 86872cb | 2006-08-22 00:01:08 -0700 | [diff] [blame] | 3399 | cfg.fc_flags |= RTF_DEFAULT; |
YOSHIFUJI Hideaki | 70ceb4f | 2006-03-20 17:06:24 -0800 | [diff] [blame] | 3400 | |
David Ahern | acb54e3 | 2018-04-17 17:33:22 -0700 | [diff] [blame] | 3401 | ip6_route_add(&cfg, GFP_ATOMIC, NULL); |
YOSHIFUJI Hideaki | 70ceb4f | 2006-03-20 17:06:24 -0800 | [diff] [blame] | 3402 | |
David Ahern | 830218c | 2016-10-24 10:52:35 -0700 | [diff] [blame] | 3403 | return rt6_get_route_info(net, prefix, prefixlen, gwaddr, dev); |
YOSHIFUJI Hideaki | 70ceb4f | 2006-03-20 17:06:24 -0800 | [diff] [blame] | 3404 | } |
| 3405 | #endif |
| 3406 | |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame^] | 3407 | struct fib6_info *rt6_get_dflt_router(struct net *net, |
David Ahern | afb1d4b5 | 2018-04-17 17:33:11 -0700 | [diff] [blame] | 3408 | const struct in6_addr *addr, |
| 3409 | struct net_device *dev) |
YOSHIFUJI Hideaki | 1ab1457 | 2007-02-09 23:24:49 +0900 | [diff] [blame] | 3410 | { |
David Ahern | 830218c | 2016-10-24 10:52:35 -0700 | [diff] [blame] | 3411 | u32 tb_id = l3mdev_fib_table(dev) ? : RT6_TABLE_DFLT; |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame^] | 3412 | struct fib6_info *rt; |
Thomas Graf | c71099a | 2006-08-04 23:20:06 -0700 | [diff] [blame] | 3413 | struct fib6_table *table; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3414 | |
David Ahern | afb1d4b5 | 2018-04-17 17:33:11 -0700 | [diff] [blame] | 3415 | table = fib6_get_table(net, tb_id); |
David S. Miller | 3830847 | 2011-12-03 18:02:47 -0500 | [diff] [blame] | 3416 | if (!table) |
Thomas Graf | c71099a | 2006-08-04 23:20:06 -0700 | [diff] [blame] | 3417 | return NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3418 | |
Wei Wang | 66f5d6c | 2017-10-06 12:06:10 -0700 | [diff] [blame] | 3419 | rcu_read_lock(); |
| 3420 | for_each_fib6_node_rt_rcu(&table->tb6_root) { |
David Ahern | 5e670d8 | 2018-04-17 17:33:14 -0700 | [diff] [blame] | 3421 | if (dev == rt->fib6_nh.nh_dev && |
YOSHIFUJI Hideaki | 045927f | 2006-03-20 17:00:48 -0800 | [diff] [blame] | 3422 | ((rt->rt6i_flags & (RTF_ADDRCONF | RTF_DEFAULT)) == (RTF_ADDRCONF | RTF_DEFAULT)) && |
David Ahern | 5e670d8 | 2018-04-17 17:33:14 -0700 | [diff] [blame] | 3423 | ipv6_addr_equal(&rt->fib6_nh.nh_gw, addr)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3424 | break; |
| 3425 | } |
| 3426 | if (rt) |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame^] | 3427 | fib6_info_hold(rt); |
Wei Wang | 66f5d6c | 2017-10-06 12:06:10 -0700 | [diff] [blame] | 3428 | rcu_read_unlock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3429 | return rt; |
| 3430 | } |
| 3431 | |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame^] | 3432 | struct fib6_info *rt6_add_dflt_router(struct net *net, |
David Ahern | afb1d4b5 | 2018-04-17 17:33:11 -0700 | [diff] [blame] | 3433 | const struct in6_addr *gwaddr, |
YOSHIFUJI Hideaki | ebacaaa | 2006-03-20 17:04:53 -0800 | [diff] [blame] | 3434 | struct net_device *dev, |
| 3435 | unsigned int pref) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3436 | { |
Thomas Graf | 86872cb | 2006-08-22 00:01:08 -0700 | [diff] [blame] | 3437 | struct fib6_config cfg = { |
David Ahern | ca25449 | 2015-10-12 11:47:10 -0700 | [diff] [blame] | 3438 | .fc_table = l3mdev_fib_table(dev) ? : RT6_TABLE_DFLT, |
Rami Rosen | 238fc7e | 2008-02-09 23:43:11 -0800 | [diff] [blame] | 3439 | .fc_metric = IP6_RT_PRIO_USER, |
Thomas Graf | 86872cb | 2006-08-22 00:01:08 -0700 | [diff] [blame] | 3440 | .fc_ifindex = dev->ifindex, |
| 3441 | .fc_flags = RTF_GATEWAY | RTF_ADDRCONF | RTF_DEFAULT | |
| 3442 | RTF_UP | RTF_EXPIRES | RTF_PREF(pref), |
Xin Long | b91d532 | 2017-08-03 14:13:46 +0800 | [diff] [blame] | 3443 | .fc_protocol = RTPROT_RA, |
David Ahern | e8478e8 | 2018-04-17 17:33:13 -0700 | [diff] [blame] | 3444 | .fc_type = RTN_UNICAST, |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 3445 | .fc_nlinfo.portid = 0, |
Daniel Lezcano | 5578689 | 2008-03-04 13:47:47 -0800 | [diff] [blame] | 3446 | .fc_nlinfo.nlh = NULL, |
David Ahern | afb1d4b5 | 2018-04-17 17:33:11 -0700 | [diff] [blame] | 3447 | .fc_nlinfo.nl_net = net, |
Thomas Graf | 86872cb | 2006-08-22 00:01:08 -0700 | [diff] [blame] | 3448 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3449 | |
Alexey Dobriyan | 4e3fd7a | 2011-11-21 03:39:03 +0000 | [diff] [blame] | 3450 | cfg.fc_gateway = *gwaddr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3451 | |
David Ahern | acb54e3 | 2018-04-17 17:33:22 -0700 | [diff] [blame] | 3452 | if (!ip6_route_add(&cfg, GFP_ATOMIC, NULL)) { |
David Ahern | 830218c | 2016-10-24 10:52:35 -0700 | [diff] [blame] | 3453 | struct fib6_table *table; |
| 3454 | |
| 3455 | table = fib6_get_table(dev_net(dev), cfg.fc_table); |
| 3456 | if (table) |
| 3457 | table->flags |= RT6_TABLE_HAS_DFLT_ROUTER; |
| 3458 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3459 | |
David Ahern | afb1d4b5 | 2018-04-17 17:33:11 -0700 | [diff] [blame] | 3460 | return rt6_get_dflt_router(net, gwaddr, dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3461 | } |
| 3462 | |
David Ahern | afb1d4b5 | 2018-04-17 17:33:11 -0700 | [diff] [blame] | 3463 | static void __rt6_purge_dflt_routers(struct net *net, |
| 3464 | struct fib6_table *table) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3465 | { |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame^] | 3466 | struct fib6_info *rt; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3467 | |
| 3468 | restart: |
Wei Wang | 66f5d6c | 2017-10-06 12:06:10 -0700 | [diff] [blame] | 3469 | rcu_read_lock(); |
| 3470 | for_each_fib6_node_rt_rcu(&table->tb6_root) { |
Lorenzo Colitti | 3e8b0ac | 2013-03-03 20:46:46 +0000 | [diff] [blame] | 3471 | if (rt->rt6i_flags & (RTF_DEFAULT | RTF_ADDRCONF) && |
| 3472 | (!rt->rt6i_idev || rt->rt6i_idev->cnf.accept_ra != 2)) { |
David Ahern | 93531c6 | 2018-04-17 17:33:25 -0700 | [diff] [blame] | 3473 | fib6_info_hold(rt); |
| 3474 | rcu_read_unlock(); |
| 3475 | ip6_del_rt(net, rt); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3476 | goto restart; |
| 3477 | } |
| 3478 | } |
Wei Wang | 66f5d6c | 2017-10-06 12:06:10 -0700 | [diff] [blame] | 3479 | rcu_read_unlock(); |
David Ahern | 830218c | 2016-10-24 10:52:35 -0700 | [diff] [blame] | 3480 | |
| 3481 | table->flags &= ~RT6_TABLE_HAS_DFLT_ROUTER; |
| 3482 | } |
| 3483 | |
| 3484 | void rt6_purge_dflt_routers(struct net *net) |
| 3485 | { |
| 3486 | struct fib6_table *table; |
| 3487 | struct hlist_head *head; |
| 3488 | unsigned int h; |
| 3489 | |
| 3490 | rcu_read_lock(); |
| 3491 | |
| 3492 | for (h = 0; h < FIB6_TABLE_HASHSZ; h++) { |
| 3493 | head = &net->ipv6.fib_table_hash[h]; |
| 3494 | hlist_for_each_entry_rcu(table, head, tb6_hlist) { |
| 3495 | if (table->flags & RT6_TABLE_HAS_DFLT_ROUTER) |
David Ahern | afb1d4b5 | 2018-04-17 17:33:11 -0700 | [diff] [blame] | 3496 | __rt6_purge_dflt_routers(net, table); |
David Ahern | 830218c | 2016-10-24 10:52:35 -0700 | [diff] [blame] | 3497 | } |
| 3498 | } |
| 3499 | |
| 3500 | rcu_read_unlock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3501 | } |
| 3502 | |
Daniel Lezcano | 5578689 | 2008-03-04 13:47:47 -0800 | [diff] [blame] | 3503 | static void rtmsg_to_fib6_config(struct net *net, |
| 3504 | struct in6_rtmsg *rtmsg, |
Thomas Graf | 86872cb | 2006-08-22 00:01:08 -0700 | [diff] [blame] | 3505 | struct fib6_config *cfg) |
| 3506 | { |
| 3507 | memset(cfg, 0, sizeof(*cfg)); |
| 3508 | |
David Ahern | ca25449 | 2015-10-12 11:47:10 -0700 | [diff] [blame] | 3509 | cfg->fc_table = l3mdev_fib_table_by_index(net, rtmsg->rtmsg_ifindex) ? |
| 3510 | : RT6_TABLE_MAIN; |
Thomas Graf | 86872cb | 2006-08-22 00:01:08 -0700 | [diff] [blame] | 3511 | cfg->fc_ifindex = rtmsg->rtmsg_ifindex; |
| 3512 | cfg->fc_metric = rtmsg->rtmsg_metric; |
| 3513 | cfg->fc_expires = rtmsg->rtmsg_info; |
| 3514 | cfg->fc_dst_len = rtmsg->rtmsg_dst_len; |
| 3515 | cfg->fc_src_len = rtmsg->rtmsg_src_len; |
| 3516 | cfg->fc_flags = rtmsg->rtmsg_flags; |
David Ahern | e8478e8 | 2018-04-17 17:33:13 -0700 | [diff] [blame] | 3517 | cfg->fc_type = rtmsg->rtmsg_type; |
Thomas Graf | 86872cb | 2006-08-22 00:01:08 -0700 | [diff] [blame] | 3518 | |
Daniel Lezcano | 5578689 | 2008-03-04 13:47:47 -0800 | [diff] [blame] | 3519 | cfg->fc_nlinfo.nl_net = net; |
Benjamin Thery | f1243c2 | 2008-02-26 18:10:03 -0800 | [diff] [blame] | 3520 | |
Alexey Dobriyan | 4e3fd7a | 2011-11-21 03:39:03 +0000 | [diff] [blame] | 3521 | cfg->fc_dst = rtmsg->rtmsg_dst; |
| 3522 | cfg->fc_src = rtmsg->rtmsg_src; |
| 3523 | cfg->fc_gateway = rtmsg->rtmsg_gateway; |
Thomas Graf | 86872cb | 2006-08-22 00:01:08 -0700 | [diff] [blame] | 3524 | } |
| 3525 | |
Daniel Lezcano | 5578689 | 2008-03-04 13:47:47 -0800 | [diff] [blame] | 3526 | int ipv6_route_ioctl(struct net *net, unsigned int cmd, void __user *arg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3527 | { |
Thomas Graf | 86872cb | 2006-08-22 00:01:08 -0700 | [diff] [blame] | 3528 | struct fib6_config cfg; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3529 | struct in6_rtmsg rtmsg; |
| 3530 | int err; |
| 3531 | |
Ian Morris | 67ba415 | 2014-08-24 21:53:10 +0100 | [diff] [blame] | 3532 | switch (cmd) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3533 | case SIOCADDRT: /* Add a route */ |
| 3534 | case SIOCDELRT: /* Delete a route */ |
Eric W. Biederman | af31f41 | 2012-11-16 03:03:06 +0000 | [diff] [blame] | 3535 | if (!ns_capable(net->user_ns, CAP_NET_ADMIN)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3536 | return -EPERM; |
| 3537 | err = copy_from_user(&rtmsg, arg, |
| 3538 | sizeof(struct in6_rtmsg)); |
| 3539 | if (err) |
| 3540 | return -EFAULT; |
Thomas Graf | 86872cb | 2006-08-22 00:01:08 -0700 | [diff] [blame] | 3541 | |
Daniel Lezcano | 5578689 | 2008-03-04 13:47:47 -0800 | [diff] [blame] | 3542 | rtmsg_to_fib6_config(net, &rtmsg, &cfg); |
Thomas Graf | 86872cb | 2006-08-22 00:01:08 -0700 | [diff] [blame] | 3543 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3544 | rtnl_lock(); |
| 3545 | switch (cmd) { |
| 3546 | case SIOCADDRT: |
David Ahern | acb54e3 | 2018-04-17 17:33:22 -0700 | [diff] [blame] | 3547 | err = ip6_route_add(&cfg, GFP_KERNEL, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3548 | break; |
| 3549 | case SIOCDELRT: |
David Ahern | 333c430 | 2017-05-21 10:12:04 -0600 | [diff] [blame] | 3550 | err = ip6_route_del(&cfg, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3551 | break; |
| 3552 | default: |
| 3553 | err = -EINVAL; |
| 3554 | } |
| 3555 | rtnl_unlock(); |
| 3556 | |
| 3557 | return err; |
Stephen Hemminger | 3ff50b7 | 2007-04-20 17:09:22 -0700 | [diff] [blame] | 3558 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3559 | |
| 3560 | return -EINVAL; |
| 3561 | } |
| 3562 | |
| 3563 | /* |
| 3564 | * Drop the packet on the floor |
| 3565 | */ |
| 3566 | |
Brian Haley | d5fdd6b | 2009-06-23 04:31:07 -0700 | [diff] [blame] | 3567 | static int ip6_pkt_drop(struct sk_buff *skb, u8 code, int ipstats_mib_noroutes) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3568 | { |
YOSHIFUJI Hideaki | 612f09e | 2007-04-13 16:18:02 -0700 | [diff] [blame] | 3569 | int type; |
Eric Dumazet | adf3090 | 2009-06-02 05:19:30 +0000 | [diff] [blame] | 3570 | struct dst_entry *dst = skb_dst(skb); |
YOSHIFUJI Hideaki | 612f09e | 2007-04-13 16:18:02 -0700 | [diff] [blame] | 3571 | switch (ipstats_mib_noroutes) { |
| 3572 | case IPSTATS_MIB_INNOROUTES: |
Arnaldo Carvalho de Melo | 0660e03 | 2007-04-25 17:54:47 -0700 | [diff] [blame] | 3573 | type = ipv6_addr_type(&ipv6_hdr(skb)->daddr); |
Ulrich Weber | 45bb006 | 2010-02-25 23:28:58 +0000 | [diff] [blame] | 3574 | if (type == IPV6_ADDR_ANY) { |
Stephen Suryaputra | bdb7cc6 | 2018-04-16 13:42:16 -0400 | [diff] [blame] | 3575 | IP6_INC_STATS(dev_net(dst->dev), |
| 3576 | __in6_dev_get_safely(skb->dev), |
Denis V. Lunev | 3bd653c | 2008-10-08 10:54:51 -0700 | [diff] [blame] | 3577 | IPSTATS_MIB_INADDRERRORS); |
YOSHIFUJI Hideaki | 612f09e | 2007-04-13 16:18:02 -0700 | [diff] [blame] | 3578 | break; |
| 3579 | } |
| 3580 | /* FALLTHROUGH */ |
| 3581 | case IPSTATS_MIB_OUTNOROUTES: |
Denis V. Lunev | 3bd653c | 2008-10-08 10:54:51 -0700 | [diff] [blame] | 3582 | IP6_INC_STATS(dev_net(dst->dev), ip6_dst_idev(dst), |
| 3583 | ipstats_mib_noroutes); |
YOSHIFUJI Hideaki | 612f09e | 2007-04-13 16:18:02 -0700 | [diff] [blame] | 3584 | break; |
| 3585 | } |
Alexey Dobriyan | 3ffe533 | 2010-02-18 08:25:24 +0000 | [diff] [blame] | 3586 | icmpv6_send(skb, ICMPV6_DEST_UNREACH, code, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3587 | kfree_skb(skb); |
| 3588 | return 0; |
| 3589 | } |
| 3590 | |
Thomas Graf | 9ce8ade | 2006-10-18 20:46:54 -0700 | [diff] [blame] | 3591 | static int ip6_pkt_discard(struct sk_buff *skb) |
| 3592 | { |
YOSHIFUJI Hideaki | 612f09e | 2007-04-13 16:18:02 -0700 | [diff] [blame] | 3593 | return ip6_pkt_drop(skb, ICMPV6_NOROUTE, IPSTATS_MIB_INNOROUTES); |
Thomas Graf | 9ce8ade | 2006-10-18 20:46:54 -0700 | [diff] [blame] | 3594 | } |
| 3595 | |
Eric W. Biederman | ede2059 | 2015-10-07 16:48:47 -0500 | [diff] [blame] | 3596 | static int ip6_pkt_discard_out(struct net *net, struct sock *sk, struct sk_buff *skb) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3597 | { |
Eric Dumazet | adf3090 | 2009-06-02 05:19:30 +0000 | [diff] [blame] | 3598 | skb->dev = skb_dst(skb)->dev; |
YOSHIFUJI Hideaki | 612f09e | 2007-04-13 16:18:02 -0700 | [diff] [blame] | 3599 | return ip6_pkt_drop(skb, ICMPV6_NOROUTE, IPSTATS_MIB_OUTNOROUTES); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3600 | } |
| 3601 | |
Thomas Graf | 9ce8ade | 2006-10-18 20:46:54 -0700 | [diff] [blame] | 3602 | static int ip6_pkt_prohibit(struct sk_buff *skb) |
| 3603 | { |
YOSHIFUJI Hideaki | 612f09e | 2007-04-13 16:18:02 -0700 | [diff] [blame] | 3604 | return ip6_pkt_drop(skb, ICMPV6_ADM_PROHIBITED, IPSTATS_MIB_INNOROUTES); |
Thomas Graf | 9ce8ade | 2006-10-18 20:46:54 -0700 | [diff] [blame] | 3605 | } |
| 3606 | |
Eric W. Biederman | ede2059 | 2015-10-07 16:48:47 -0500 | [diff] [blame] | 3607 | static int ip6_pkt_prohibit_out(struct net *net, struct sock *sk, struct sk_buff *skb) |
Thomas Graf | 9ce8ade | 2006-10-18 20:46:54 -0700 | [diff] [blame] | 3608 | { |
Eric Dumazet | adf3090 | 2009-06-02 05:19:30 +0000 | [diff] [blame] | 3609 | skb->dev = skb_dst(skb)->dev; |
YOSHIFUJI Hideaki | 612f09e | 2007-04-13 16:18:02 -0700 | [diff] [blame] | 3610 | return ip6_pkt_drop(skb, ICMPV6_ADM_PROHIBITED, IPSTATS_MIB_OUTNOROUTES); |
Thomas Graf | 9ce8ade | 2006-10-18 20:46:54 -0700 | [diff] [blame] | 3611 | } |
| 3612 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3613 | /* |
| 3614 | * Allocate a dst for local (unicast / anycast) address. |
| 3615 | */ |
| 3616 | |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame^] | 3617 | struct fib6_info *addrconf_dst_alloc(struct net *net, |
David Ahern | afb1d4b5 | 2018-04-17 17:33:11 -0700 | [diff] [blame] | 3618 | struct inet6_dev *idev, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3619 | const struct in6_addr *addr, |
David Ahern | acb54e3 | 2018-04-17 17:33:22 -0700 | [diff] [blame] | 3620 | bool anycast, gfp_t gfp_flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3621 | { |
David Ahern | ca25449 | 2015-10-12 11:47:10 -0700 | [diff] [blame] | 3622 | u32 tb_id; |
David Ahern | 4832c30 | 2017-08-17 12:17:20 -0700 | [diff] [blame] | 3623 | struct net_device *dev = idev->dev; |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame^] | 3624 | struct fib6_info *rt; |
David Ahern | 5f02ce24 | 2016-09-10 12:09:54 -0700 | [diff] [blame] | 3625 | |
David Ahern | 93531c6 | 2018-04-17 17:33:25 -0700 | [diff] [blame] | 3626 | rt = fib6_info_alloc(gfp_flags); |
Hannes Frederic Sowa | a3300ef | 2013-12-07 03:33:45 +0100 | [diff] [blame] | 3627 | if (!rt) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3628 | return ERR_PTR(-ENOMEM); |
| 3629 | |
David Ahern | 3b6761d | 2018-04-17 17:33:20 -0700 | [diff] [blame] | 3630 | rt->dst_nocount = true; |
| 3631 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3632 | in6_dev_hold(idev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3633 | rt->rt6i_idev = idev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3634 | |
David Ahern | 3b6761d | 2018-04-17 17:33:20 -0700 | [diff] [blame] | 3635 | rt->dst_host = true; |
David Ahern | 94b5e0f | 2017-02-02 08:52:21 -0800 | [diff] [blame] | 3636 | rt->rt6i_protocol = RTPROT_KERNEL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3637 | rt->rt6i_flags = RTF_UP | RTF_NONEXTHOP; |
David Ahern | e8478e8 | 2018-04-17 17:33:13 -0700 | [diff] [blame] | 3638 | if (anycast) { |
| 3639 | rt->fib6_type = RTN_ANYCAST; |
YOSHIFUJI Hideaki | 58c4fb8 | 2005-12-21 22:56:42 +0900 | [diff] [blame] | 3640 | rt->rt6i_flags |= RTF_ANYCAST; |
David Ahern | e8478e8 | 2018-04-17 17:33:13 -0700 | [diff] [blame] | 3641 | } else { |
| 3642 | rt->fib6_type = RTN_LOCAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3643 | rt->rt6i_flags |= RTF_LOCAL; |
David Ahern | e8478e8 | 2018-04-17 17:33:13 -0700 | [diff] [blame] | 3644 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3645 | |
David Ahern | 5e670d8 | 2018-04-17 17:33:14 -0700 | [diff] [blame] | 3646 | rt->fib6_nh.nh_gw = *addr; |
David Ahern | 93531c6 | 2018-04-17 17:33:25 -0700 | [diff] [blame] | 3647 | dev_hold(dev); |
David Ahern | 5e670d8 | 2018-04-17 17:33:14 -0700 | [diff] [blame] | 3648 | rt->fib6_nh.nh_dev = dev; |
Alexey Dobriyan | 4e3fd7a | 2011-11-21 03:39:03 +0000 | [diff] [blame] | 3649 | rt->rt6i_dst.addr = *addr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3650 | rt->rt6i_dst.plen = 128; |
David Ahern | ca25449 | 2015-10-12 11:47:10 -0700 | [diff] [blame] | 3651 | tb_id = l3mdev_fib_table(idev->dev) ? : RT6_TABLE_LOCAL; |
| 3652 | rt->rt6i_table = fib6_get_table(net, tb_id); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3653 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3654 | return rt; |
| 3655 | } |
| 3656 | |
Daniel Walter | c3968a8 | 2011-04-13 21:10:57 +0000 | [diff] [blame] | 3657 | /* remove deleted ip from prefsrc entries */ |
| 3658 | struct arg_dev_net_ip { |
| 3659 | struct net_device *dev; |
| 3660 | struct net *net; |
| 3661 | struct in6_addr *addr; |
| 3662 | }; |
| 3663 | |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame^] | 3664 | static int fib6_remove_prefsrc(struct fib6_info *rt, void *arg) |
Daniel Walter | c3968a8 | 2011-04-13 21:10:57 +0000 | [diff] [blame] | 3665 | { |
| 3666 | struct net_device *dev = ((struct arg_dev_net_ip *)arg)->dev; |
| 3667 | struct net *net = ((struct arg_dev_net_ip *)arg)->net; |
| 3668 | struct in6_addr *addr = ((struct arg_dev_net_ip *)arg)->addr; |
| 3669 | |
David Ahern | 5e670d8 | 2018-04-17 17:33:14 -0700 | [diff] [blame] | 3670 | if (((void *)rt->fib6_nh.nh_dev == dev || !dev) && |
David Ahern | 421842e | 2018-04-17 17:33:18 -0700 | [diff] [blame] | 3671 | rt != net->ipv6.fib6_null_entry && |
Daniel Walter | c3968a8 | 2011-04-13 21:10:57 +0000 | [diff] [blame] | 3672 | ipv6_addr_equal(addr, &rt->rt6i_prefsrc.addr)) { |
Wei Wang | 60006a4 | 2017-10-06 12:05:58 -0700 | [diff] [blame] | 3673 | spin_lock_bh(&rt6_exception_lock); |
Daniel Walter | c3968a8 | 2011-04-13 21:10:57 +0000 | [diff] [blame] | 3674 | /* remove prefsrc entry */ |
| 3675 | rt->rt6i_prefsrc.plen = 0; |
Wei Wang | 60006a4 | 2017-10-06 12:05:58 -0700 | [diff] [blame] | 3676 | /* need to update cache as well */ |
| 3677 | rt6_exceptions_remove_prefsrc(rt); |
| 3678 | spin_unlock_bh(&rt6_exception_lock); |
Daniel Walter | c3968a8 | 2011-04-13 21:10:57 +0000 | [diff] [blame] | 3679 | } |
| 3680 | return 0; |
| 3681 | } |
| 3682 | |
| 3683 | void rt6_remove_prefsrc(struct inet6_ifaddr *ifp) |
| 3684 | { |
| 3685 | struct net *net = dev_net(ifp->idev->dev); |
| 3686 | struct arg_dev_net_ip adni = { |
| 3687 | .dev = ifp->idev->dev, |
| 3688 | .net = net, |
| 3689 | .addr = &ifp->addr, |
| 3690 | }; |
Li RongQing | 0c3584d | 2013-12-27 16:32:38 +0800 | [diff] [blame] | 3691 | fib6_clean_all(net, fib6_remove_prefsrc, &adni); |
Daniel Walter | c3968a8 | 2011-04-13 21:10:57 +0000 | [diff] [blame] | 3692 | } |
| 3693 | |
Duan Jiong | be7a010 | 2014-05-15 15:56:14 +0800 | [diff] [blame] | 3694 | #define RTF_RA_ROUTER (RTF_ADDRCONF | RTF_DEFAULT | RTF_GATEWAY) |
Duan Jiong | be7a010 | 2014-05-15 15:56:14 +0800 | [diff] [blame] | 3695 | |
| 3696 | /* Remove routers and update dst entries when gateway turn into host. */ |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame^] | 3697 | static int fib6_clean_tohost(struct fib6_info *rt, void *arg) |
Duan Jiong | be7a010 | 2014-05-15 15:56:14 +0800 | [diff] [blame] | 3698 | { |
| 3699 | struct in6_addr *gateway = (struct in6_addr *)arg; |
| 3700 | |
Wei Wang | 2b760fc | 2017-10-06 12:06:03 -0700 | [diff] [blame] | 3701 | if (((rt->rt6i_flags & RTF_RA_ROUTER) == RTF_RA_ROUTER) && |
David Ahern | 5e670d8 | 2018-04-17 17:33:14 -0700 | [diff] [blame] | 3702 | ipv6_addr_equal(gateway, &rt->fib6_nh.nh_gw)) { |
Duan Jiong | be7a010 | 2014-05-15 15:56:14 +0800 | [diff] [blame] | 3703 | return -1; |
| 3704 | } |
Wei Wang | b16cb45 | 2017-10-06 12:06:00 -0700 | [diff] [blame] | 3705 | |
| 3706 | /* Further clean up cached routes in exception table. |
| 3707 | * This is needed because cached route may have a different |
| 3708 | * gateway than its 'parent' in the case of an ip redirect. |
| 3709 | */ |
| 3710 | rt6_exceptions_clean_tohost(rt, gateway); |
| 3711 | |
Duan Jiong | be7a010 | 2014-05-15 15:56:14 +0800 | [diff] [blame] | 3712 | return 0; |
| 3713 | } |
| 3714 | |
| 3715 | void rt6_clean_tohost(struct net *net, struct in6_addr *gateway) |
| 3716 | { |
| 3717 | fib6_clean_all(net, fib6_clean_tohost, gateway); |
| 3718 | } |
| 3719 | |
Ido Schimmel | 2127d95 | 2018-01-07 12:45:03 +0200 | [diff] [blame] | 3720 | struct arg_netdev_event { |
| 3721 | const struct net_device *dev; |
Ido Schimmel | 4c981e2 | 2018-01-07 12:45:04 +0200 | [diff] [blame] | 3722 | union { |
| 3723 | unsigned int nh_flags; |
| 3724 | unsigned long event; |
| 3725 | }; |
Ido Schimmel | 2127d95 | 2018-01-07 12:45:03 +0200 | [diff] [blame] | 3726 | }; |
| 3727 | |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame^] | 3728 | static struct fib6_info *rt6_multipath_first_sibling(const struct fib6_info *rt) |
Ido Schimmel | d7dedee | 2018-01-09 16:40:25 +0200 | [diff] [blame] | 3729 | { |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame^] | 3730 | struct fib6_info *iter; |
Ido Schimmel | d7dedee | 2018-01-09 16:40:25 +0200 | [diff] [blame] | 3731 | struct fib6_node *fn; |
| 3732 | |
| 3733 | fn = rcu_dereference_protected(rt->rt6i_node, |
| 3734 | lockdep_is_held(&rt->rt6i_table->tb6_lock)); |
| 3735 | iter = rcu_dereference_protected(fn->leaf, |
| 3736 | lockdep_is_held(&rt->rt6i_table->tb6_lock)); |
| 3737 | while (iter) { |
| 3738 | if (iter->rt6i_metric == rt->rt6i_metric && |
| 3739 | rt6_qualify_for_ecmp(iter)) |
| 3740 | return iter; |
| 3741 | iter = rcu_dereference_protected(iter->rt6_next, |
| 3742 | lockdep_is_held(&rt->rt6i_table->tb6_lock)); |
| 3743 | } |
| 3744 | |
| 3745 | return NULL; |
| 3746 | } |
| 3747 | |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame^] | 3748 | static bool rt6_is_dead(const struct fib6_info *rt) |
Ido Schimmel | d7dedee | 2018-01-09 16:40:25 +0200 | [diff] [blame] | 3749 | { |
David Ahern | 5e670d8 | 2018-04-17 17:33:14 -0700 | [diff] [blame] | 3750 | if (rt->fib6_nh.nh_flags & RTNH_F_DEAD || |
| 3751 | (rt->fib6_nh.nh_flags & RTNH_F_LINKDOWN && |
Ido Schimmel | d7dedee | 2018-01-09 16:40:25 +0200 | [diff] [blame] | 3752 | rt->rt6i_idev->cnf.ignore_routes_with_linkdown)) |
| 3753 | return true; |
| 3754 | |
| 3755 | return false; |
| 3756 | } |
| 3757 | |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame^] | 3758 | static int rt6_multipath_total_weight(const struct fib6_info *rt) |
Ido Schimmel | d7dedee | 2018-01-09 16:40:25 +0200 | [diff] [blame] | 3759 | { |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame^] | 3760 | struct fib6_info *iter; |
Ido Schimmel | d7dedee | 2018-01-09 16:40:25 +0200 | [diff] [blame] | 3761 | int total = 0; |
| 3762 | |
| 3763 | if (!rt6_is_dead(rt)) |
David Ahern | 5e670d8 | 2018-04-17 17:33:14 -0700 | [diff] [blame] | 3764 | total += rt->fib6_nh.nh_weight; |
Ido Schimmel | d7dedee | 2018-01-09 16:40:25 +0200 | [diff] [blame] | 3765 | |
| 3766 | list_for_each_entry(iter, &rt->rt6i_siblings, rt6i_siblings) { |
| 3767 | if (!rt6_is_dead(iter)) |
David Ahern | 5e670d8 | 2018-04-17 17:33:14 -0700 | [diff] [blame] | 3768 | total += iter->fib6_nh.nh_weight; |
Ido Schimmel | d7dedee | 2018-01-09 16:40:25 +0200 | [diff] [blame] | 3769 | } |
| 3770 | |
| 3771 | return total; |
| 3772 | } |
| 3773 | |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame^] | 3774 | static void rt6_upper_bound_set(struct fib6_info *rt, int *weight, int total) |
Ido Schimmel | d7dedee | 2018-01-09 16:40:25 +0200 | [diff] [blame] | 3775 | { |
| 3776 | int upper_bound = -1; |
| 3777 | |
| 3778 | if (!rt6_is_dead(rt)) { |
David Ahern | 5e670d8 | 2018-04-17 17:33:14 -0700 | [diff] [blame] | 3779 | *weight += rt->fib6_nh.nh_weight; |
Ido Schimmel | d7dedee | 2018-01-09 16:40:25 +0200 | [diff] [blame] | 3780 | upper_bound = DIV_ROUND_CLOSEST_ULL((u64) (*weight) << 31, |
| 3781 | total) - 1; |
| 3782 | } |
David Ahern | 5e670d8 | 2018-04-17 17:33:14 -0700 | [diff] [blame] | 3783 | atomic_set(&rt->fib6_nh.nh_upper_bound, upper_bound); |
Ido Schimmel | d7dedee | 2018-01-09 16:40:25 +0200 | [diff] [blame] | 3784 | } |
| 3785 | |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame^] | 3786 | static void rt6_multipath_upper_bound_set(struct fib6_info *rt, int total) |
Ido Schimmel | d7dedee | 2018-01-09 16:40:25 +0200 | [diff] [blame] | 3787 | { |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame^] | 3788 | struct fib6_info *iter; |
Ido Schimmel | d7dedee | 2018-01-09 16:40:25 +0200 | [diff] [blame] | 3789 | int weight = 0; |
| 3790 | |
| 3791 | rt6_upper_bound_set(rt, &weight, total); |
| 3792 | |
| 3793 | list_for_each_entry(iter, &rt->rt6i_siblings, rt6i_siblings) |
| 3794 | rt6_upper_bound_set(iter, &weight, total); |
| 3795 | } |
| 3796 | |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame^] | 3797 | void rt6_multipath_rebalance(struct fib6_info *rt) |
Ido Schimmel | d7dedee | 2018-01-09 16:40:25 +0200 | [diff] [blame] | 3798 | { |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame^] | 3799 | struct fib6_info *first; |
Ido Schimmel | d7dedee | 2018-01-09 16:40:25 +0200 | [diff] [blame] | 3800 | int total; |
| 3801 | |
| 3802 | /* In case the entire multipath route was marked for flushing, |
| 3803 | * then there is no need to rebalance upon the removal of every |
| 3804 | * sibling route. |
| 3805 | */ |
| 3806 | if (!rt->rt6i_nsiblings || rt->should_flush) |
| 3807 | return; |
| 3808 | |
| 3809 | /* During lookup routes are evaluated in order, so we need to |
| 3810 | * make sure upper bounds are assigned from the first sibling |
| 3811 | * onwards. |
| 3812 | */ |
| 3813 | first = rt6_multipath_first_sibling(rt); |
| 3814 | if (WARN_ON_ONCE(!first)) |
| 3815 | return; |
| 3816 | |
| 3817 | total = rt6_multipath_total_weight(first); |
| 3818 | rt6_multipath_upper_bound_set(first, total); |
| 3819 | } |
| 3820 | |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame^] | 3821 | static int fib6_ifup(struct fib6_info *rt, void *p_arg) |
Ido Schimmel | 2127d95 | 2018-01-07 12:45:03 +0200 | [diff] [blame] | 3822 | { |
| 3823 | const struct arg_netdev_event *arg = p_arg; |
David Ahern | 7aef685 | 2018-04-17 17:33:10 -0700 | [diff] [blame] | 3824 | struct net *net = dev_net(arg->dev); |
Ido Schimmel | 2127d95 | 2018-01-07 12:45:03 +0200 | [diff] [blame] | 3825 | |
David Ahern | 421842e | 2018-04-17 17:33:18 -0700 | [diff] [blame] | 3826 | if (rt != net->ipv6.fib6_null_entry && rt->fib6_nh.nh_dev == arg->dev) { |
David Ahern | 5e670d8 | 2018-04-17 17:33:14 -0700 | [diff] [blame] | 3827 | rt->fib6_nh.nh_flags &= ~arg->nh_flags; |
David Ahern | 7aef685 | 2018-04-17 17:33:10 -0700 | [diff] [blame] | 3828 | fib6_update_sernum_upto_root(net, rt); |
Ido Schimmel | d7dedee | 2018-01-09 16:40:25 +0200 | [diff] [blame] | 3829 | rt6_multipath_rebalance(rt); |
Ido Schimmel | 1de178e | 2018-01-07 12:45:15 +0200 | [diff] [blame] | 3830 | } |
Ido Schimmel | 2127d95 | 2018-01-07 12:45:03 +0200 | [diff] [blame] | 3831 | |
| 3832 | return 0; |
| 3833 | } |
| 3834 | |
| 3835 | void rt6_sync_up(struct net_device *dev, unsigned int nh_flags) |
| 3836 | { |
| 3837 | struct arg_netdev_event arg = { |
| 3838 | .dev = dev, |
Ido Schimmel | 6802f3a | 2018-01-12 22:07:36 +0200 | [diff] [blame] | 3839 | { |
| 3840 | .nh_flags = nh_flags, |
| 3841 | }, |
Ido Schimmel | 2127d95 | 2018-01-07 12:45:03 +0200 | [diff] [blame] | 3842 | }; |
| 3843 | |
| 3844 | if (nh_flags & RTNH_F_DEAD && netif_carrier_ok(dev)) |
| 3845 | arg.nh_flags |= RTNH_F_LINKDOWN; |
| 3846 | |
| 3847 | fib6_clean_all(dev_net(dev), fib6_ifup, &arg); |
| 3848 | } |
| 3849 | |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame^] | 3850 | static bool rt6_multipath_uses_dev(const struct fib6_info *rt, |
Ido Schimmel | 1de178e | 2018-01-07 12:45:15 +0200 | [diff] [blame] | 3851 | const struct net_device *dev) |
| 3852 | { |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame^] | 3853 | struct fib6_info *iter; |
Ido Schimmel | 1de178e | 2018-01-07 12:45:15 +0200 | [diff] [blame] | 3854 | |
David Ahern | 5e670d8 | 2018-04-17 17:33:14 -0700 | [diff] [blame] | 3855 | if (rt->fib6_nh.nh_dev == dev) |
Ido Schimmel | 1de178e | 2018-01-07 12:45:15 +0200 | [diff] [blame] | 3856 | return true; |
| 3857 | list_for_each_entry(iter, &rt->rt6i_siblings, rt6i_siblings) |
David Ahern | 5e670d8 | 2018-04-17 17:33:14 -0700 | [diff] [blame] | 3858 | if (iter->fib6_nh.nh_dev == dev) |
Ido Schimmel | 1de178e | 2018-01-07 12:45:15 +0200 | [diff] [blame] | 3859 | return true; |
| 3860 | |
| 3861 | return false; |
| 3862 | } |
| 3863 | |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame^] | 3864 | static void rt6_multipath_flush(struct fib6_info *rt) |
Ido Schimmel | 1de178e | 2018-01-07 12:45:15 +0200 | [diff] [blame] | 3865 | { |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame^] | 3866 | struct fib6_info *iter; |
Ido Schimmel | 1de178e | 2018-01-07 12:45:15 +0200 | [diff] [blame] | 3867 | |
| 3868 | rt->should_flush = 1; |
| 3869 | list_for_each_entry(iter, &rt->rt6i_siblings, rt6i_siblings) |
| 3870 | iter->should_flush = 1; |
| 3871 | } |
| 3872 | |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame^] | 3873 | static unsigned int rt6_multipath_dead_count(const struct fib6_info *rt, |
Ido Schimmel | 1de178e | 2018-01-07 12:45:15 +0200 | [diff] [blame] | 3874 | const struct net_device *down_dev) |
| 3875 | { |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame^] | 3876 | struct fib6_info *iter; |
Ido Schimmel | 1de178e | 2018-01-07 12:45:15 +0200 | [diff] [blame] | 3877 | unsigned int dead = 0; |
| 3878 | |
David Ahern | 5e670d8 | 2018-04-17 17:33:14 -0700 | [diff] [blame] | 3879 | if (rt->fib6_nh.nh_dev == down_dev || |
| 3880 | rt->fib6_nh.nh_flags & RTNH_F_DEAD) |
Ido Schimmel | 1de178e | 2018-01-07 12:45:15 +0200 | [diff] [blame] | 3881 | dead++; |
| 3882 | list_for_each_entry(iter, &rt->rt6i_siblings, rt6i_siblings) |
David Ahern | 5e670d8 | 2018-04-17 17:33:14 -0700 | [diff] [blame] | 3883 | if (iter->fib6_nh.nh_dev == down_dev || |
| 3884 | iter->fib6_nh.nh_flags & RTNH_F_DEAD) |
Ido Schimmel | 1de178e | 2018-01-07 12:45:15 +0200 | [diff] [blame] | 3885 | dead++; |
| 3886 | |
| 3887 | return dead; |
| 3888 | } |
| 3889 | |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame^] | 3890 | static void rt6_multipath_nh_flags_set(struct fib6_info *rt, |
Ido Schimmel | 1de178e | 2018-01-07 12:45:15 +0200 | [diff] [blame] | 3891 | const struct net_device *dev, |
| 3892 | unsigned int nh_flags) |
| 3893 | { |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame^] | 3894 | struct fib6_info *iter; |
Ido Schimmel | 1de178e | 2018-01-07 12:45:15 +0200 | [diff] [blame] | 3895 | |
David Ahern | 5e670d8 | 2018-04-17 17:33:14 -0700 | [diff] [blame] | 3896 | if (rt->fib6_nh.nh_dev == dev) |
| 3897 | rt->fib6_nh.nh_flags |= nh_flags; |
Ido Schimmel | 1de178e | 2018-01-07 12:45:15 +0200 | [diff] [blame] | 3898 | list_for_each_entry(iter, &rt->rt6i_siblings, rt6i_siblings) |
David Ahern | 5e670d8 | 2018-04-17 17:33:14 -0700 | [diff] [blame] | 3899 | if (iter->fib6_nh.nh_dev == dev) |
| 3900 | iter->fib6_nh.nh_flags |= nh_flags; |
Ido Schimmel | 1de178e | 2018-01-07 12:45:15 +0200 | [diff] [blame] | 3901 | } |
| 3902 | |
David Ahern | a1a22c1 | 2017-01-18 07:40:36 -0800 | [diff] [blame] | 3903 | /* called with write lock held for table with rt */ |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame^] | 3904 | static int fib6_ifdown(struct fib6_info *rt, void *p_arg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3905 | { |
Ido Schimmel | 4c981e2 | 2018-01-07 12:45:04 +0200 | [diff] [blame] | 3906 | const struct arg_netdev_event *arg = p_arg; |
| 3907 | const struct net_device *dev = arg->dev; |
David Ahern | 7aef685 | 2018-04-17 17:33:10 -0700 | [diff] [blame] | 3908 | struct net *net = dev_net(dev); |
Daniel Lezcano | 8ed6778 | 2008-03-04 13:48:30 -0800 | [diff] [blame] | 3909 | |
David Ahern | 421842e | 2018-04-17 17:33:18 -0700 | [diff] [blame] | 3910 | if (rt == net->ipv6.fib6_null_entry) |
Ido Schimmel | 27c6fa7 | 2018-01-07 12:45:05 +0200 | [diff] [blame] | 3911 | return 0; |
| 3912 | |
| 3913 | switch (arg->event) { |
| 3914 | case NETDEV_UNREGISTER: |
David Ahern | 5e670d8 | 2018-04-17 17:33:14 -0700 | [diff] [blame] | 3915 | return rt->fib6_nh.nh_dev == dev ? -1 : 0; |
Ido Schimmel | 27c6fa7 | 2018-01-07 12:45:05 +0200 | [diff] [blame] | 3916 | case NETDEV_DOWN: |
Ido Schimmel | 1de178e | 2018-01-07 12:45:15 +0200 | [diff] [blame] | 3917 | if (rt->should_flush) |
Ido Schimmel | 27c6fa7 | 2018-01-07 12:45:05 +0200 | [diff] [blame] | 3918 | return -1; |
Ido Schimmel | 1de178e | 2018-01-07 12:45:15 +0200 | [diff] [blame] | 3919 | if (!rt->rt6i_nsiblings) |
David Ahern | 5e670d8 | 2018-04-17 17:33:14 -0700 | [diff] [blame] | 3920 | return rt->fib6_nh.nh_dev == dev ? -1 : 0; |
Ido Schimmel | 1de178e | 2018-01-07 12:45:15 +0200 | [diff] [blame] | 3921 | if (rt6_multipath_uses_dev(rt, dev)) { |
| 3922 | unsigned int count; |
| 3923 | |
| 3924 | count = rt6_multipath_dead_count(rt, dev); |
| 3925 | if (rt->rt6i_nsiblings + 1 == count) { |
| 3926 | rt6_multipath_flush(rt); |
| 3927 | return -1; |
| 3928 | } |
| 3929 | rt6_multipath_nh_flags_set(rt, dev, RTNH_F_DEAD | |
| 3930 | RTNH_F_LINKDOWN); |
David Ahern | 7aef685 | 2018-04-17 17:33:10 -0700 | [diff] [blame] | 3931 | fib6_update_sernum(net, rt); |
Ido Schimmel | d7dedee | 2018-01-09 16:40:25 +0200 | [diff] [blame] | 3932 | rt6_multipath_rebalance(rt); |
Ido Schimmel | 1de178e | 2018-01-07 12:45:15 +0200 | [diff] [blame] | 3933 | } |
| 3934 | return -2; |
Ido Schimmel | 27c6fa7 | 2018-01-07 12:45:05 +0200 | [diff] [blame] | 3935 | case NETDEV_CHANGE: |
David Ahern | 5e670d8 | 2018-04-17 17:33:14 -0700 | [diff] [blame] | 3936 | if (rt->fib6_nh.nh_dev != dev || |
Ido Schimmel | 1de178e | 2018-01-07 12:45:15 +0200 | [diff] [blame] | 3937 | rt->rt6i_flags & (RTF_LOCAL | RTF_ANYCAST)) |
Ido Schimmel | 27c6fa7 | 2018-01-07 12:45:05 +0200 | [diff] [blame] | 3938 | break; |
David Ahern | 5e670d8 | 2018-04-17 17:33:14 -0700 | [diff] [blame] | 3939 | rt->fib6_nh.nh_flags |= RTNH_F_LINKDOWN; |
Ido Schimmel | d7dedee | 2018-01-09 16:40:25 +0200 | [diff] [blame] | 3940 | rt6_multipath_rebalance(rt); |
Ido Schimmel | 27c6fa7 | 2018-01-07 12:45:05 +0200 | [diff] [blame] | 3941 | break; |
Ido Schimmel | 2b24136 | 2018-01-07 12:45:02 +0200 | [diff] [blame] | 3942 | } |
David S. Miller | c159d30 | 2011-12-26 15:24:36 -0500 | [diff] [blame] | 3943 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3944 | return 0; |
| 3945 | } |
| 3946 | |
Ido Schimmel | 27c6fa7 | 2018-01-07 12:45:05 +0200 | [diff] [blame] | 3947 | void rt6_sync_down_dev(struct net_device *dev, unsigned long event) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3948 | { |
Ido Schimmel | 4c981e2 | 2018-01-07 12:45:04 +0200 | [diff] [blame] | 3949 | struct arg_netdev_event arg = { |
Daniel Lezcano | 8ed6778 | 2008-03-04 13:48:30 -0800 | [diff] [blame] | 3950 | .dev = dev, |
Ido Schimmel | 6802f3a | 2018-01-12 22:07:36 +0200 | [diff] [blame] | 3951 | { |
| 3952 | .event = event, |
| 3953 | }, |
Daniel Lezcano | 8ed6778 | 2008-03-04 13:48:30 -0800 | [diff] [blame] | 3954 | }; |
| 3955 | |
Ido Schimmel | 4c981e2 | 2018-01-07 12:45:04 +0200 | [diff] [blame] | 3956 | fib6_clean_all(dev_net(dev), fib6_ifdown, &arg); |
| 3957 | } |
| 3958 | |
| 3959 | void rt6_disable_ip(struct net_device *dev, unsigned long event) |
| 3960 | { |
| 3961 | rt6_sync_down_dev(dev, event); |
| 3962 | rt6_uncached_list_flush_dev(dev_net(dev), dev); |
| 3963 | neigh_ifdown(&nd_tbl, dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3964 | } |
| 3965 | |
Eric Dumazet | 95c9617 | 2012-04-15 05:58:06 +0000 | [diff] [blame] | 3966 | struct rt6_mtu_change_arg { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3967 | struct net_device *dev; |
Eric Dumazet | 95c9617 | 2012-04-15 05:58:06 +0000 | [diff] [blame] | 3968 | unsigned int mtu; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3969 | }; |
| 3970 | |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame^] | 3971 | static int rt6_mtu_change_route(struct fib6_info *rt, void *p_arg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3972 | { |
| 3973 | struct rt6_mtu_change_arg *arg = (struct rt6_mtu_change_arg *) p_arg; |
| 3974 | struct inet6_dev *idev; |
| 3975 | |
| 3976 | /* In IPv6 pmtu discovery is not optional, |
| 3977 | so that RTAX_MTU lock cannot disable it. |
| 3978 | We still use this lock to block changes |
| 3979 | caused by addrconf/ndisc. |
| 3980 | */ |
| 3981 | |
| 3982 | idev = __in6_dev_get(arg->dev); |
David S. Miller | 3830847 | 2011-12-03 18:02:47 -0500 | [diff] [blame] | 3983 | if (!idev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3984 | return 0; |
| 3985 | |
| 3986 | /* For administrative MTU increase, there is no way to discover |
| 3987 | IPv6 PMTU increase, so PMTU increase should be updated here. |
| 3988 | Since RFC 1981 doesn't include administrative MTU increase |
| 3989 | update PMTU increase is a MUST. (i.e. jumbo frame) |
| 3990 | */ |
David Ahern | 5e670d8 | 2018-04-17 17:33:14 -0700 | [diff] [blame] | 3991 | if (rt->fib6_nh.nh_dev == arg->dev && |
David Ahern | d4ead6b | 2018-04-17 17:33:16 -0700 | [diff] [blame] | 3992 | !fib6_metric_locked(rt, RTAX_MTU)) { |
| 3993 | u32 mtu = rt->fib6_pmtu; |
| 3994 | |
| 3995 | if (mtu >= arg->mtu || |
| 3996 | (mtu < arg->mtu && mtu == idev->cnf.mtu6)) |
| 3997 | fib6_metric_set(rt, RTAX_MTU, arg->mtu); |
| 3998 | |
Wei Wang | f5bbe7e | 2017-10-06 12:05:59 -0700 | [diff] [blame] | 3999 | spin_lock_bh(&rt6_exception_lock); |
Stefano Brivio | e9fa149 | 2018-03-06 11:10:19 +0100 | [diff] [blame] | 4000 | rt6_exceptions_update_pmtu(idev, rt, arg->mtu); |
Wei Wang | f5bbe7e | 2017-10-06 12:05:59 -0700 | [diff] [blame] | 4001 | spin_unlock_bh(&rt6_exception_lock); |
Simon Arlott | 566cfd8 | 2007-07-26 00:09:55 -0700 | [diff] [blame] | 4002 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4003 | return 0; |
| 4004 | } |
| 4005 | |
Eric Dumazet | 95c9617 | 2012-04-15 05:58:06 +0000 | [diff] [blame] | 4006 | void rt6_mtu_change(struct net_device *dev, unsigned int mtu) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4007 | { |
Thomas Graf | c71099a | 2006-08-04 23:20:06 -0700 | [diff] [blame] | 4008 | struct rt6_mtu_change_arg arg = { |
| 4009 | .dev = dev, |
| 4010 | .mtu = mtu, |
| 4011 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4012 | |
Li RongQing | 0c3584d | 2013-12-27 16:32:38 +0800 | [diff] [blame] | 4013 | fib6_clean_all(dev_net(dev), rt6_mtu_change_route, &arg); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4014 | } |
| 4015 | |
Patrick McHardy | ef7c79e | 2007-06-05 12:38:30 -0700 | [diff] [blame] | 4016 | static const struct nla_policy rtm_ipv6_policy[RTA_MAX+1] = { |
Thomas Graf | 5176f91 | 2006-08-26 20:13:18 -0700 | [diff] [blame] | 4017 | [RTA_GATEWAY] = { .len = sizeof(struct in6_addr) }, |
Thomas Graf | 86872cb | 2006-08-22 00:01:08 -0700 | [diff] [blame] | 4018 | [RTA_OIF] = { .type = NLA_U32 }, |
Thomas Graf | ab364a6 | 2006-08-22 00:01:47 -0700 | [diff] [blame] | 4019 | [RTA_IIF] = { .type = NLA_U32 }, |
Thomas Graf | 86872cb | 2006-08-22 00:01:08 -0700 | [diff] [blame] | 4020 | [RTA_PRIORITY] = { .type = NLA_U32 }, |
| 4021 | [RTA_METRICS] = { .type = NLA_NESTED }, |
Nicolas Dichtel | 51ebd31 | 2012-10-22 03:42:09 +0000 | [diff] [blame] | 4022 | [RTA_MULTIPATH] = { .len = sizeof(struct rtnexthop) }, |
Lubomir Rintel | c78ba6d | 2015-03-11 15:39:21 +0100 | [diff] [blame] | 4023 | [RTA_PREF] = { .type = NLA_U8 }, |
Roopa Prabhu | 19e42e4 | 2015-07-21 10:43:48 +0200 | [diff] [blame] | 4024 | [RTA_ENCAP_TYPE] = { .type = NLA_U16 }, |
| 4025 | [RTA_ENCAP] = { .type = NLA_NESTED }, |
Xin Long | 32bc201 | 2015-12-16 17:50:11 +0800 | [diff] [blame] | 4026 | [RTA_EXPIRES] = { .type = NLA_U32 }, |
Lorenzo Colitti | 622ec2c | 2016-11-04 02:23:42 +0900 | [diff] [blame] | 4027 | [RTA_UID] = { .type = NLA_U32 }, |
Liping Zhang | 3b45a41 | 2017-02-27 20:59:39 +0800 | [diff] [blame] | 4028 | [RTA_MARK] = { .type = NLA_U32 }, |
Thomas Graf | 86872cb | 2006-08-22 00:01:08 -0700 | [diff] [blame] | 4029 | }; |
| 4030 | |
| 4031 | static int rtm_to_fib6_config(struct sk_buff *skb, struct nlmsghdr *nlh, |
David Ahern | 333c430 | 2017-05-21 10:12:04 -0600 | [diff] [blame] | 4032 | struct fib6_config *cfg, |
| 4033 | struct netlink_ext_ack *extack) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4034 | { |
Thomas Graf | 86872cb | 2006-08-22 00:01:08 -0700 | [diff] [blame] | 4035 | struct rtmsg *rtm; |
| 4036 | struct nlattr *tb[RTA_MAX+1]; |
Lubomir Rintel | c78ba6d | 2015-03-11 15:39:21 +0100 | [diff] [blame] | 4037 | unsigned int pref; |
Thomas Graf | 86872cb | 2006-08-22 00:01:08 -0700 | [diff] [blame] | 4038 | int err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4039 | |
Johannes Berg | fceb643 | 2017-04-12 14:34:07 +0200 | [diff] [blame] | 4040 | err = nlmsg_parse(nlh, sizeof(*rtm), tb, RTA_MAX, rtm_ipv6_policy, |
| 4041 | NULL); |
Thomas Graf | 86872cb | 2006-08-22 00:01:08 -0700 | [diff] [blame] | 4042 | if (err < 0) |
| 4043 | goto errout; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4044 | |
Thomas Graf | 86872cb | 2006-08-22 00:01:08 -0700 | [diff] [blame] | 4045 | err = -EINVAL; |
| 4046 | rtm = nlmsg_data(nlh); |
| 4047 | memset(cfg, 0, sizeof(*cfg)); |
| 4048 | |
| 4049 | cfg->fc_table = rtm->rtm_table; |
| 4050 | cfg->fc_dst_len = rtm->rtm_dst_len; |
| 4051 | cfg->fc_src_len = rtm->rtm_src_len; |
| 4052 | cfg->fc_flags = RTF_UP; |
| 4053 | cfg->fc_protocol = rtm->rtm_protocol; |
Nicolas Dichtel | ef2c7d7 | 2012-09-05 02:12:42 +0000 | [diff] [blame] | 4054 | cfg->fc_type = rtm->rtm_type; |
Thomas Graf | 86872cb | 2006-08-22 00:01:08 -0700 | [diff] [blame] | 4055 | |
Nicolas Dichtel | ef2c7d7 | 2012-09-05 02:12:42 +0000 | [diff] [blame] | 4056 | if (rtm->rtm_type == RTN_UNREACHABLE || |
| 4057 | rtm->rtm_type == RTN_BLACKHOLE || |
Nicolas Dichtel | b4949ab | 2012-09-06 05:53:35 +0000 | [diff] [blame] | 4058 | rtm->rtm_type == RTN_PROHIBIT || |
| 4059 | rtm->rtm_type == RTN_THROW) |
Thomas Graf | 86872cb | 2006-08-22 00:01:08 -0700 | [diff] [blame] | 4060 | cfg->fc_flags |= RTF_REJECT; |
| 4061 | |
Maciej Żenczykowski | ab79ad1 | 2010-09-27 00:07:02 +0000 | [diff] [blame] | 4062 | if (rtm->rtm_type == RTN_LOCAL) |
| 4063 | cfg->fc_flags |= RTF_LOCAL; |
| 4064 | |
Martin KaFai Lau | 1f56a01 | 2015-04-28 13:03:03 -0700 | [diff] [blame] | 4065 | if (rtm->rtm_flags & RTM_F_CLONED) |
| 4066 | cfg->fc_flags |= RTF_CACHE; |
| 4067 | |
David Ahern | fc1e64e | 2018-01-25 16:55:09 -0800 | [diff] [blame] | 4068 | cfg->fc_flags |= (rtm->rtm_flags & RTNH_F_ONLINK); |
| 4069 | |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 4070 | cfg->fc_nlinfo.portid = NETLINK_CB(skb).portid; |
Thomas Graf | 86872cb | 2006-08-22 00:01:08 -0700 | [diff] [blame] | 4071 | cfg->fc_nlinfo.nlh = nlh; |
YOSHIFUJI Hideaki | 3b1e0a6 | 2008-03-26 02:26:21 +0900 | [diff] [blame] | 4072 | cfg->fc_nlinfo.nl_net = sock_net(skb->sk); |
Thomas Graf | 86872cb | 2006-08-22 00:01:08 -0700 | [diff] [blame] | 4073 | |
| 4074 | if (tb[RTA_GATEWAY]) { |
Jiri Benc | 67b61f6 | 2015-03-29 16:59:26 +0200 | [diff] [blame] | 4075 | cfg->fc_gateway = nla_get_in6_addr(tb[RTA_GATEWAY]); |
Thomas Graf | 86872cb | 2006-08-22 00:01:08 -0700 | [diff] [blame] | 4076 | cfg->fc_flags |= RTF_GATEWAY; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4077 | } |
Thomas Graf | 86872cb | 2006-08-22 00:01:08 -0700 | [diff] [blame] | 4078 | |
| 4079 | if (tb[RTA_DST]) { |
| 4080 | int plen = (rtm->rtm_dst_len + 7) >> 3; |
| 4081 | |
| 4082 | if (nla_len(tb[RTA_DST]) < plen) |
| 4083 | goto errout; |
| 4084 | |
| 4085 | nla_memcpy(&cfg->fc_dst, tb[RTA_DST], plen); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4086 | } |
Thomas Graf | 86872cb | 2006-08-22 00:01:08 -0700 | [diff] [blame] | 4087 | |
| 4088 | if (tb[RTA_SRC]) { |
| 4089 | int plen = (rtm->rtm_src_len + 7) >> 3; |
| 4090 | |
| 4091 | if (nla_len(tb[RTA_SRC]) < plen) |
| 4092 | goto errout; |
| 4093 | |
| 4094 | nla_memcpy(&cfg->fc_src, tb[RTA_SRC], plen); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4095 | } |
Thomas Graf | 86872cb | 2006-08-22 00:01:08 -0700 | [diff] [blame] | 4096 | |
Daniel Walter | c3968a8 | 2011-04-13 21:10:57 +0000 | [diff] [blame] | 4097 | if (tb[RTA_PREFSRC]) |
Jiri Benc | 67b61f6 | 2015-03-29 16:59:26 +0200 | [diff] [blame] | 4098 | cfg->fc_prefsrc = nla_get_in6_addr(tb[RTA_PREFSRC]); |
Daniel Walter | c3968a8 | 2011-04-13 21:10:57 +0000 | [diff] [blame] | 4099 | |
Thomas Graf | 86872cb | 2006-08-22 00:01:08 -0700 | [diff] [blame] | 4100 | if (tb[RTA_OIF]) |
| 4101 | cfg->fc_ifindex = nla_get_u32(tb[RTA_OIF]); |
| 4102 | |
| 4103 | if (tb[RTA_PRIORITY]) |
| 4104 | cfg->fc_metric = nla_get_u32(tb[RTA_PRIORITY]); |
| 4105 | |
| 4106 | if (tb[RTA_METRICS]) { |
| 4107 | cfg->fc_mx = nla_data(tb[RTA_METRICS]); |
| 4108 | cfg->fc_mx_len = nla_len(tb[RTA_METRICS]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4109 | } |
Thomas Graf | 86872cb | 2006-08-22 00:01:08 -0700 | [diff] [blame] | 4110 | |
| 4111 | if (tb[RTA_TABLE]) |
| 4112 | cfg->fc_table = nla_get_u32(tb[RTA_TABLE]); |
| 4113 | |
Nicolas Dichtel | 51ebd31 | 2012-10-22 03:42:09 +0000 | [diff] [blame] | 4114 | if (tb[RTA_MULTIPATH]) { |
| 4115 | cfg->fc_mp = nla_data(tb[RTA_MULTIPATH]); |
| 4116 | cfg->fc_mp_len = nla_len(tb[RTA_MULTIPATH]); |
David Ahern | 9ed5959 | 2017-01-17 14:57:36 -0800 | [diff] [blame] | 4117 | |
| 4118 | err = lwtunnel_valid_encap_type_attr(cfg->fc_mp, |
David Ahern | c255bd6 | 2017-05-27 16:19:27 -0600 | [diff] [blame] | 4119 | cfg->fc_mp_len, extack); |
David Ahern | 9ed5959 | 2017-01-17 14:57:36 -0800 | [diff] [blame] | 4120 | if (err < 0) |
| 4121 | goto errout; |
Nicolas Dichtel | 51ebd31 | 2012-10-22 03:42:09 +0000 | [diff] [blame] | 4122 | } |
| 4123 | |
Lubomir Rintel | c78ba6d | 2015-03-11 15:39:21 +0100 | [diff] [blame] | 4124 | if (tb[RTA_PREF]) { |
| 4125 | pref = nla_get_u8(tb[RTA_PREF]); |
| 4126 | if (pref != ICMPV6_ROUTER_PREF_LOW && |
| 4127 | pref != ICMPV6_ROUTER_PREF_HIGH) |
| 4128 | pref = ICMPV6_ROUTER_PREF_MEDIUM; |
| 4129 | cfg->fc_flags |= RTF_PREF(pref); |
| 4130 | } |
| 4131 | |
Roopa Prabhu | 19e42e4 | 2015-07-21 10:43:48 +0200 | [diff] [blame] | 4132 | if (tb[RTA_ENCAP]) |
| 4133 | cfg->fc_encap = tb[RTA_ENCAP]; |
| 4134 | |
David Ahern | 9ed5959 | 2017-01-17 14:57:36 -0800 | [diff] [blame] | 4135 | if (tb[RTA_ENCAP_TYPE]) { |
Roopa Prabhu | 19e42e4 | 2015-07-21 10:43:48 +0200 | [diff] [blame] | 4136 | cfg->fc_encap_type = nla_get_u16(tb[RTA_ENCAP_TYPE]); |
| 4137 | |
David Ahern | c255bd6 | 2017-05-27 16:19:27 -0600 | [diff] [blame] | 4138 | err = lwtunnel_valid_encap_type(cfg->fc_encap_type, extack); |
David Ahern | 9ed5959 | 2017-01-17 14:57:36 -0800 | [diff] [blame] | 4139 | if (err < 0) |
| 4140 | goto errout; |
| 4141 | } |
| 4142 | |
Xin Long | 32bc201 | 2015-12-16 17:50:11 +0800 | [diff] [blame] | 4143 | if (tb[RTA_EXPIRES]) { |
| 4144 | unsigned long timeout = addrconf_timeout_fixup(nla_get_u32(tb[RTA_EXPIRES]), HZ); |
| 4145 | |
| 4146 | if (addrconf_finite_timeout(timeout)) { |
| 4147 | cfg->fc_expires = jiffies_to_clock_t(timeout * HZ); |
| 4148 | cfg->fc_flags |= RTF_EXPIRES; |
| 4149 | } |
| 4150 | } |
| 4151 | |
Thomas Graf | 86872cb | 2006-08-22 00:01:08 -0700 | [diff] [blame] | 4152 | err = 0; |
| 4153 | errout: |
| 4154 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4155 | } |
| 4156 | |
Roopa Prabhu | 6b9ea5a | 2015-09-08 10:53:04 -0700 | [diff] [blame] | 4157 | struct rt6_nh { |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame^] | 4158 | struct fib6_info *fib6_info; |
Roopa Prabhu | 6b9ea5a | 2015-09-08 10:53:04 -0700 | [diff] [blame] | 4159 | struct fib6_config r_cfg; |
Roopa Prabhu | 6b9ea5a | 2015-09-08 10:53:04 -0700 | [diff] [blame] | 4160 | struct list_head next; |
| 4161 | }; |
| 4162 | |
| 4163 | static void ip6_print_replace_route_err(struct list_head *rt6_nh_list) |
| 4164 | { |
| 4165 | struct rt6_nh *nh; |
| 4166 | |
| 4167 | list_for_each_entry(nh, rt6_nh_list, next) { |
David Ahern | 7d4d506 | 2017-02-02 12:37:12 -0800 | [diff] [blame] | 4168 | pr_warn("IPV6: multipath route replace failed (check consistency of installed routes): %pI6c nexthop %pI6c ifi %d\n", |
Roopa Prabhu | 6b9ea5a | 2015-09-08 10:53:04 -0700 | [diff] [blame] | 4169 | &nh->r_cfg.fc_dst, &nh->r_cfg.fc_gateway, |
| 4170 | nh->r_cfg.fc_ifindex); |
| 4171 | } |
| 4172 | } |
| 4173 | |
David Ahern | d4ead6b | 2018-04-17 17:33:16 -0700 | [diff] [blame] | 4174 | static int ip6_route_info_append(struct net *net, |
| 4175 | struct list_head *rt6_nh_list, |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame^] | 4176 | struct fib6_info *rt, |
| 4177 | struct fib6_config *r_cfg) |
Roopa Prabhu | 6b9ea5a | 2015-09-08 10:53:04 -0700 | [diff] [blame] | 4178 | { |
| 4179 | struct rt6_nh *nh; |
Roopa Prabhu | 6b9ea5a | 2015-09-08 10:53:04 -0700 | [diff] [blame] | 4180 | int err = -EEXIST; |
| 4181 | |
| 4182 | list_for_each_entry(nh, rt6_nh_list, next) { |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame^] | 4183 | /* check if fib6_info already exists */ |
| 4184 | if (rt6_duplicate_nexthop(nh->fib6_info, rt)) |
Roopa Prabhu | 6b9ea5a | 2015-09-08 10:53:04 -0700 | [diff] [blame] | 4185 | return err; |
| 4186 | } |
| 4187 | |
| 4188 | nh = kzalloc(sizeof(*nh), GFP_KERNEL); |
| 4189 | if (!nh) |
| 4190 | return -ENOMEM; |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame^] | 4191 | nh->fib6_info = rt; |
David Ahern | d4ead6b | 2018-04-17 17:33:16 -0700 | [diff] [blame] | 4192 | err = ip6_convert_metrics(net, rt, r_cfg); |
Roopa Prabhu | 6b9ea5a | 2015-09-08 10:53:04 -0700 | [diff] [blame] | 4193 | if (err) { |
| 4194 | kfree(nh); |
| 4195 | return err; |
| 4196 | } |
| 4197 | memcpy(&nh->r_cfg, r_cfg, sizeof(*r_cfg)); |
| 4198 | list_add_tail(&nh->next, rt6_nh_list); |
| 4199 | |
| 4200 | return 0; |
| 4201 | } |
| 4202 | |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame^] | 4203 | static void ip6_route_mpath_notify(struct fib6_info *rt, |
| 4204 | struct fib6_info *rt_last, |
David Ahern | 3b1137f | 2017-02-02 12:37:10 -0800 | [diff] [blame] | 4205 | struct nl_info *info, |
| 4206 | __u16 nlflags) |
| 4207 | { |
| 4208 | /* if this is an APPEND route, then rt points to the first route |
| 4209 | * inserted and rt_last points to last route inserted. Userspace |
| 4210 | * wants a consistent dump of the route which starts at the first |
| 4211 | * nexthop. Since sibling routes are always added at the end of |
| 4212 | * the list, find the first sibling of the last route appended |
| 4213 | */ |
| 4214 | if ((nlflags & NLM_F_APPEND) && rt_last && rt_last->rt6i_nsiblings) { |
| 4215 | rt = list_first_entry(&rt_last->rt6i_siblings, |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame^] | 4216 | struct fib6_info, |
David Ahern | 3b1137f | 2017-02-02 12:37:10 -0800 | [diff] [blame] | 4217 | rt6i_siblings); |
| 4218 | } |
| 4219 | |
| 4220 | if (rt) |
| 4221 | inet6_rt_notify(RTM_NEWROUTE, rt, info, nlflags); |
| 4222 | } |
| 4223 | |
David Ahern | 333c430 | 2017-05-21 10:12:04 -0600 | [diff] [blame] | 4224 | static int ip6_route_multipath_add(struct fib6_config *cfg, |
| 4225 | struct netlink_ext_ack *extack) |
Nicolas Dichtel | 51ebd31 | 2012-10-22 03:42:09 +0000 | [diff] [blame] | 4226 | { |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame^] | 4227 | struct fib6_info *rt_notif = NULL, *rt_last = NULL; |
David Ahern | 3b1137f | 2017-02-02 12:37:10 -0800 | [diff] [blame] | 4228 | struct nl_info *info = &cfg->fc_nlinfo; |
Nicolas Dichtel | 51ebd31 | 2012-10-22 03:42:09 +0000 | [diff] [blame] | 4229 | struct fib6_config r_cfg; |
| 4230 | struct rtnexthop *rtnh; |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame^] | 4231 | struct fib6_info *rt; |
Roopa Prabhu | 6b9ea5a | 2015-09-08 10:53:04 -0700 | [diff] [blame] | 4232 | struct rt6_nh *err_nh; |
| 4233 | struct rt6_nh *nh, *nh_safe; |
David Ahern | 3b1137f | 2017-02-02 12:37:10 -0800 | [diff] [blame] | 4234 | __u16 nlflags; |
Nicolas Dichtel | 51ebd31 | 2012-10-22 03:42:09 +0000 | [diff] [blame] | 4235 | int remaining; |
| 4236 | int attrlen; |
Roopa Prabhu | 6b9ea5a | 2015-09-08 10:53:04 -0700 | [diff] [blame] | 4237 | int err = 1; |
| 4238 | int nhn = 0; |
| 4239 | int replace = (cfg->fc_nlinfo.nlh && |
| 4240 | (cfg->fc_nlinfo.nlh->nlmsg_flags & NLM_F_REPLACE)); |
| 4241 | LIST_HEAD(rt6_nh_list); |
Nicolas Dichtel | 51ebd31 | 2012-10-22 03:42:09 +0000 | [diff] [blame] | 4242 | |
David Ahern | 3b1137f | 2017-02-02 12:37:10 -0800 | [diff] [blame] | 4243 | nlflags = replace ? NLM_F_REPLACE : NLM_F_CREATE; |
| 4244 | if (info->nlh && info->nlh->nlmsg_flags & NLM_F_APPEND) |
| 4245 | nlflags |= NLM_F_APPEND; |
| 4246 | |
Michal Kubeček | 35f1b4e | 2015-05-18 20:53:55 +0200 | [diff] [blame] | 4247 | remaining = cfg->fc_mp_len; |
Nicolas Dichtel | 51ebd31 | 2012-10-22 03:42:09 +0000 | [diff] [blame] | 4248 | rtnh = (struct rtnexthop *)cfg->fc_mp; |
Nicolas Dichtel | 51ebd31 | 2012-10-22 03:42:09 +0000 | [diff] [blame] | 4249 | |
Roopa Prabhu | 6b9ea5a | 2015-09-08 10:53:04 -0700 | [diff] [blame] | 4250 | /* Parse a Multipath Entry and build a list (rt6_nh_list) of |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame^] | 4251 | * fib6_info structs per nexthop |
Roopa Prabhu | 6b9ea5a | 2015-09-08 10:53:04 -0700 | [diff] [blame] | 4252 | */ |
Nicolas Dichtel | 51ebd31 | 2012-10-22 03:42:09 +0000 | [diff] [blame] | 4253 | while (rtnh_ok(rtnh, remaining)) { |
| 4254 | memcpy(&r_cfg, cfg, sizeof(*cfg)); |
| 4255 | if (rtnh->rtnh_ifindex) |
| 4256 | r_cfg.fc_ifindex = rtnh->rtnh_ifindex; |
| 4257 | |
| 4258 | attrlen = rtnh_attrlen(rtnh); |
| 4259 | if (attrlen > 0) { |
| 4260 | struct nlattr *nla, *attrs = rtnh_attrs(rtnh); |
| 4261 | |
| 4262 | nla = nla_find(attrs, attrlen, RTA_GATEWAY); |
| 4263 | if (nla) { |
Jiri Benc | 67b61f6 | 2015-03-29 16:59:26 +0200 | [diff] [blame] | 4264 | r_cfg.fc_gateway = nla_get_in6_addr(nla); |
Nicolas Dichtel | 51ebd31 | 2012-10-22 03:42:09 +0000 | [diff] [blame] | 4265 | r_cfg.fc_flags |= RTF_GATEWAY; |
| 4266 | } |
Roopa Prabhu | 19e42e4 | 2015-07-21 10:43:48 +0200 | [diff] [blame] | 4267 | r_cfg.fc_encap = nla_find(attrs, attrlen, RTA_ENCAP); |
| 4268 | nla = nla_find(attrs, attrlen, RTA_ENCAP_TYPE); |
| 4269 | if (nla) |
| 4270 | r_cfg.fc_encap_type = nla_get_u16(nla); |
Nicolas Dichtel | 51ebd31 | 2012-10-22 03:42:09 +0000 | [diff] [blame] | 4271 | } |
Roopa Prabhu | 6b9ea5a | 2015-09-08 10:53:04 -0700 | [diff] [blame] | 4272 | |
David Ahern | 68e2ffd | 2018-03-20 10:06:59 -0700 | [diff] [blame] | 4273 | r_cfg.fc_flags |= (rtnh->rtnh_flags & RTNH_F_ONLINK); |
David Ahern | acb54e3 | 2018-04-17 17:33:22 -0700 | [diff] [blame] | 4274 | rt = ip6_route_info_create(&r_cfg, GFP_KERNEL, extack); |
Roopa Prabhu | 8c5b83f | 2015-10-10 08:26:36 -0700 | [diff] [blame] | 4275 | if (IS_ERR(rt)) { |
| 4276 | err = PTR_ERR(rt); |
| 4277 | rt = NULL; |
Roopa Prabhu | 6b9ea5a | 2015-09-08 10:53:04 -0700 | [diff] [blame] | 4278 | goto cleanup; |
Roopa Prabhu | 8c5b83f | 2015-10-10 08:26:36 -0700 | [diff] [blame] | 4279 | } |
Roopa Prabhu | 6b9ea5a | 2015-09-08 10:53:04 -0700 | [diff] [blame] | 4280 | |
David Ahern | 5e670d8 | 2018-04-17 17:33:14 -0700 | [diff] [blame] | 4281 | rt->fib6_nh.nh_weight = rtnh->rtnh_hops + 1; |
Ido Schimmel | 398958a | 2018-01-09 16:40:28 +0200 | [diff] [blame] | 4282 | |
David Ahern | d4ead6b | 2018-04-17 17:33:16 -0700 | [diff] [blame] | 4283 | err = ip6_route_info_append(info->nl_net, &rt6_nh_list, |
| 4284 | rt, &r_cfg); |
Nicolas Dichtel | 51ebd31 | 2012-10-22 03:42:09 +0000 | [diff] [blame] | 4285 | if (err) { |
David Ahern | 93531c6 | 2018-04-17 17:33:25 -0700 | [diff] [blame] | 4286 | fib6_info_release(rt); |
Roopa Prabhu | 6b9ea5a | 2015-09-08 10:53:04 -0700 | [diff] [blame] | 4287 | goto cleanup; |
Nicolas Dichtel | 51ebd31 | 2012-10-22 03:42:09 +0000 | [diff] [blame] | 4288 | } |
Roopa Prabhu | 6b9ea5a | 2015-09-08 10:53:04 -0700 | [diff] [blame] | 4289 | |
| 4290 | rtnh = rtnh_next(rtnh, &remaining); |
| 4291 | } |
| 4292 | |
David Ahern | 3b1137f | 2017-02-02 12:37:10 -0800 | [diff] [blame] | 4293 | /* for add and replace send one notification with all nexthops. |
| 4294 | * Skip the notification in fib6_add_rt2node and send one with |
| 4295 | * the full route when done |
| 4296 | */ |
| 4297 | info->skip_notify = 1; |
| 4298 | |
Roopa Prabhu | 6b9ea5a | 2015-09-08 10:53:04 -0700 | [diff] [blame] | 4299 | err_nh = NULL; |
| 4300 | list_for_each_entry(nh, &rt6_nh_list, next) { |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame^] | 4301 | rt_last = nh->fib6_info; |
| 4302 | err = __ip6_ins_rt(nh->fib6_info, info, extack); |
| 4303 | fib6_info_release(nh->fib6_info); |
David Ahern | 93531c6 | 2018-04-17 17:33:25 -0700 | [diff] [blame] | 4304 | |
David Ahern | 3b1137f | 2017-02-02 12:37:10 -0800 | [diff] [blame] | 4305 | /* save reference to first route for notification */ |
| 4306 | if (!rt_notif && !err) |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame^] | 4307 | rt_notif = nh->fib6_info; |
David Ahern | 3b1137f | 2017-02-02 12:37:10 -0800 | [diff] [blame] | 4308 | |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame^] | 4309 | /* nh->fib6_info is used or freed at this point, reset to NULL*/ |
| 4310 | nh->fib6_info = NULL; |
Roopa Prabhu | 6b9ea5a | 2015-09-08 10:53:04 -0700 | [diff] [blame] | 4311 | if (err) { |
| 4312 | if (replace && nhn) |
| 4313 | ip6_print_replace_route_err(&rt6_nh_list); |
| 4314 | err_nh = nh; |
| 4315 | goto add_errout; |
| 4316 | } |
| 4317 | |
Nicolas Dichtel | 1a72418 | 2012-11-01 22:58:22 +0000 | [diff] [blame] | 4318 | /* Because each route is added like a single route we remove |
Michal Kubeček | 2759647 | 2015-05-18 20:54:00 +0200 | [diff] [blame] | 4319 | * these flags after the first nexthop: if there is a collision, |
| 4320 | * we have already failed to add the first nexthop: |
| 4321 | * fib6_add_rt2node() has rejected it; when replacing, old |
| 4322 | * nexthops have been replaced by first new, the rest should |
| 4323 | * be added to it. |
Nicolas Dichtel | 1a72418 | 2012-11-01 22:58:22 +0000 | [diff] [blame] | 4324 | */ |
Michal Kubeček | 2759647 | 2015-05-18 20:54:00 +0200 | [diff] [blame] | 4325 | cfg->fc_nlinfo.nlh->nlmsg_flags &= ~(NLM_F_EXCL | |
| 4326 | NLM_F_REPLACE); |
Roopa Prabhu | 6b9ea5a | 2015-09-08 10:53:04 -0700 | [diff] [blame] | 4327 | nhn++; |
| 4328 | } |
| 4329 | |
David Ahern | 3b1137f | 2017-02-02 12:37:10 -0800 | [diff] [blame] | 4330 | /* success ... tell user about new route */ |
| 4331 | ip6_route_mpath_notify(rt_notif, rt_last, info, nlflags); |
Roopa Prabhu | 6b9ea5a | 2015-09-08 10:53:04 -0700 | [diff] [blame] | 4332 | goto cleanup; |
| 4333 | |
| 4334 | add_errout: |
David Ahern | 3b1137f | 2017-02-02 12:37:10 -0800 | [diff] [blame] | 4335 | /* send notification for routes that were added so that |
| 4336 | * the delete notifications sent by ip6_route_del are |
| 4337 | * coherent |
| 4338 | */ |
| 4339 | if (rt_notif) |
| 4340 | ip6_route_mpath_notify(rt_notif, rt_last, info, nlflags); |
| 4341 | |
Roopa Prabhu | 6b9ea5a | 2015-09-08 10:53:04 -0700 | [diff] [blame] | 4342 | /* Delete routes that were already added */ |
| 4343 | list_for_each_entry(nh, &rt6_nh_list, next) { |
| 4344 | if (err_nh == nh) |
| 4345 | break; |
David Ahern | 333c430 | 2017-05-21 10:12:04 -0600 | [diff] [blame] | 4346 | ip6_route_del(&nh->r_cfg, extack); |
Roopa Prabhu | 6b9ea5a | 2015-09-08 10:53:04 -0700 | [diff] [blame] | 4347 | } |
| 4348 | |
| 4349 | cleanup: |
| 4350 | list_for_each_entry_safe(nh, nh_safe, &rt6_nh_list, next) { |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame^] | 4351 | if (nh->fib6_info) |
| 4352 | fib6_info_release(nh->fib6_info); |
Roopa Prabhu | 6b9ea5a | 2015-09-08 10:53:04 -0700 | [diff] [blame] | 4353 | list_del(&nh->next); |
| 4354 | kfree(nh); |
| 4355 | } |
| 4356 | |
| 4357 | return err; |
| 4358 | } |
| 4359 | |
David Ahern | 333c430 | 2017-05-21 10:12:04 -0600 | [diff] [blame] | 4360 | static int ip6_route_multipath_del(struct fib6_config *cfg, |
| 4361 | struct netlink_ext_ack *extack) |
Roopa Prabhu | 6b9ea5a | 2015-09-08 10:53:04 -0700 | [diff] [blame] | 4362 | { |
| 4363 | struct fib6_config r_cfg; |
| 4364 | struct rtnexthop *rtnh; |
| 4365 | int remaining; |
| 4366 | int attrlen; |
| 4367 | int err = 1, last_err = 0; |
| 4368 | |
| 4369 | remaining = cfg->fc_mp_len; |
| 4370 | rtnh = (struct rtnexthop *)cfg->fc_mp; |
| 4371 | |
| 4372 | /* Parse a Multipath Entry */ |
| 4373 | while (rtnh_ok(rtnh, remaining)) { |
| 4374 | memcpy(&r_cfg, cfg, sizeof(*cfg)); |
| 4375 | if (rtnh->rtnh_ifindex) |
| 4376 | r_cfg.fc_ifindex = rtnh->rtnh_ifindex; |
| 4377 | |
| 4378 | attrlen = rtnh_attrlen(rtnh); |
| 4379 | if (attrlen > 0) { |
| 4380 | struct nlattr *nla, *attrs = rtnh_attrs(rtnh); |
| 4381 | |
| 4382 | nla = nla_find(attrs, attrlen, RTA_GATEWAY); |
| 4383 | if (nla) { |
| 4384 | nla_memcpy(&r_cfg.fc_gateway, nla, 16); |
| 4385 | r_cfg.fc_flags |= RTF_GATEWAY; |
| 4386 | } |
| 4387 | } |
David Ahern | 333c430 | 2017-05-21 10:12:04 -0600 | [diff] [blame] | 4388 | err = ip6_route_del(&r_cfg, extack); |
Roopa Prabhu | 6b9ea5a | 2015-09-08 10:53:04 -0700 | [diff] [blame] | 4389 | if (err) |
| 4390 | last_err = err; |
| 4391 | |
Nicolas Dichtel | 51ebd31 | 2012-10-22 03:42:09 +0000 | [diff] [blame] | 4392 | rtnh = rtnh_next(rtnh, &remaining); |
| 4393 | } |
| 4394 | |
| 4395 | return last_err; |
| 4396 | } |
| 4397 | |
David Ahern | c21ef3e | 2017-04-16 09:48:24 -0700 | [diff] [blame] | 4398 | static int inet6_rtm_delroute(struct sk_buff *skb, struct nlmsghdr *nlh, |
| 4399 | struct netlink_ext_ack *extack) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4400 | { |
Thomas Graf | 86872cb | 2006-08-22 00:01:08 -0700 | [diff] [blame] | 4401 | struct fib6_config cfg; |
| 4402 | int err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4403 | |
David Ahern | 333c430 | 2017-05-21 10:12:04 -0600 | [diff] [blame] | 4404 | err = rtm_to_fib6_config(skb, nlh, &cfg, extack); |
Thomas Graf | 86872cb | 2006-08-22 00:01:08 -0700 | [diff] [blame] | 4405 | if (err < 0) |
| 4406 | return err; |
| 4407 | |
Nicolas Dichtel | 51ebd31 | 2012-10-22 03:42:09 +0000 | [diff] [blame] | 4408 | if (cfg.fc_mp) |
David Ahern | 333c430 | 2017-05-21 10:12:04 -0600 | [diff] [blame] | 4409 | return ip6_route_multipath_del(&cfg, extack); |
David Ahern | 0ae8133 | 2017-02-02 12:37:08 -0800 | [diff] [blame] | 4410 | else { |
| 4411 | cfg.fc_delete_all_nh = 1; |
David Ahern | 333c430 | 2017-05-21 10:12:04 -0600 | [diff] [blame] | 4412 | return ip6_route_del(&cfg, extack); |
David Ahern | 0ae8133 | 2017-02-02 12:37:08 -0800 | [diff] [blame] | 4413 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4414 | } |
| 4415 | |
David Ahern | c21ef3e | 2017-04-16 09:48:24 -0700 | [diff] [blame] | 4416 | static int inet6_rtm_newroute(struct sk_buff *skb, struct nlmsghdr *nlh, |
| 4417 | struct netlink_ext_ack *extack) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4418 | { |
Thomas Graf | 86872cb | 2006-08-22 00:01:08 -0700 | [diff] [blame] | 4419 | struct fib6_config cfg; |
| 4420 | int err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4421 | |
David Ahern | 333c430 | 2017-05-21 10:12:04 -0600 | [diff] [blame] | 4422 | err = rtm_to_fib6_config(skb, nlh, &cfg, extack); |
Thomas Graf | 86872cb | 2006-08-22 00:01:08 -0700 | [diff] [blame] | 4423 | if (err < 0) |
| 4424 | return err; |
| 4425 | |
Nicolas Dichtel | 51ebd31 | 2012-10-22 03:42:09 +0000 | [diff] [blame] | 4426 | if (cfg.fc_mp) |
David Ahern | 333c430 | 2017-05-21 10:12:04 -0600 | [diff] [blame] | 4427 | return ip6_route_multipath_add(&cfg, extack); |
Nicolas Dichtel | 51ebd31 | 2012-10-22 03:42:09 +0000 | [diff] [blame] | 4428 | else |
David Ahern | acb54e3 | 2018-04-17 17:33:22 -0700 | [diff] [blame] | 4429 | return ip6_route_add(&cfg, GFP_KERNEL, extack); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4430 | } |
| 4431 | |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame^] | 4432 | static size_t rt6_nlmsg_size(struct fib6_info *rt) |
Thomas Graf | 339bf98 | 2006-11-10 14:10:15 -0800 | [diff] [blame] | 4433 | { |
David Ahern | beb1afac5 | 2017-02-02 12:37:09 -0800 | [diff] [blame] | 4434 | int nexthop_len = 0; |
| 4435 | |
| 4436 | if (rt->rt6i_nsiblings) { |
| 4437 | nexthop_len = nla_total_size(0) /* RTA_MULTIPATH */ |
| 4438 | + NLA_ALIGN(sizeof(struct rtnexthop)) |
| 4439 | + nla_total_size(16) /* RTA_GATEWAY */ |
David Ahern | 5e670d8 | 2018-04-17 17:33:14 -0700 | [diff] [blame] | 4440 | + lwtunnel_get_encap_size(rt->fib6_nh.nh_lwtstate); |
David Ahern | beb1afac5 | 2017-02-02 12:37:09 -0800 | [diff] [blame] | 4441 | |
| 4442 | nexthop_len *= rt->rt6i_nsiblings; |
| 4443 | } |
| 4444 | |
Thomas Graf | 339bf98 | 2006-11-10 14:10:15 -0800 | [diff] [blame] | 4445 | return NLMSG_ALIGN(sizeof(struct rtmsg)) |
| 4446 | + nla_total_size(16) /* RTA_SRC */ |
| 4447 | + nla_total_size(16) /* RTA_DST */ |
| 4448 | + nla_total_size(16) /* RTA_GATEWAY */ |
| 4449 | + nla_total_size(16) /* RTA_PREFSRC */ |
| 4450 | + nla_total_size(4) /* RTA_TABLE */ |
| 4451 | + nla_total_size(4) /* RTA_IIF */ |
| 4452 | + nla_total_size(4) /* RTA_OIF */ |
| 4453 | + nla_total_size(4) /* RTA_PRIORITY */ |
Noriaki TAKAMIYA | 6a2b9ce | 2007-01-23 22:09:41 -0800 | [diff] [blame] | 4454 | + RTAX_MAX * nla_total_size(4) /* RTA_METRICS */ |
Daniel Borkmann | ea69763 | 2015-01-05 23:57:47 +0100 | [diff] [blame] | 4455 | + nla_total_size(sizeof(struct rta_cacheinfo)) |
Lubomir Rintel | c78ba6d | 2015-03-11 15:39:21 +0100 | [diff] [blame] | 4456 | + nla_total_size(TCP_CA_NAME_MAX) /* RTAX_CC_ALGO */ |
Roopa Prabhu | 19e42e4 | 2015-07-21 10:43:48 +0200 | [diff] [blame] | 4457 | + nla_total_size(1) /* RTA_PREF */ |
David Ahern | 5e670d8 | 2018-04-17 17:33:14 -0700 | [diff] [blame] | 4458 | + lwtunnel_get_encap_size(rt->fib6_nh.nh_lwtstate) |
David Ahern | beb1afac5 | 2017-02-02 12:37:09 -0800 | [diff] [blame] | 4459 | + nexthop_len; |
| 4460 | } |
| 4461 | |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame^] | 4462 | static int rt6_nexthop_info(struct sk_buff *skb, struct fib6_info *rt, |
David Ahern | 5be083c | 2017-03-06 15:57:31 -0800 | [diff] [blame] | 4463 | unsigned int *flags, bool skip_oif) |
David Ahern | beb1afac5 | 2017-02-02 12:37:09 -0800 | [diff] [blame] | 4464 | { |
David Ahern | 5e670d8 | 2018-04-17 17:33:14 -0700 | [diff] [blame] | 4465 | if (rt->fib6_nh.nh_flags & RTNH_F_DEAD) |
Ido Schimmel | f9d882e | 2018-01-07 12:45:10 +0200 | [diff] [blame] | 4466 | *flags |= RTNH_F_DEAD; |
| 4467 | |
David Ahern | 5e670d8 | 2018-04-17 17:33:14 -0700 | [diff] [blame] | 4468 | if (rt->fib6_nh.nh_flags & RTNH_F_LINKDOWN) { |
David Ahern | beb1afac5 | 2017-02-02 12:37:09 -0800 | [diff] [blame] | 4469 | *flags |= RTNH_F_LINKDOWN; |
| 4470 | if (rt->rt6i_idev->cnf.ignore_routes_with_linkdown) |
| 4471 | *flags |= RTNH_F_DEAD; |
| 4472 | } |
| 4473 | |
| 4474 | if (rt->rt6i_flags & RTF_GATEWAY) { |
David Ahern | 5e670d8 | 2018-04-17 17:33:14 -0700 | [diff] [blame] | 4475 | if (nla_put_in6_addr(skb, RTA_GATEWAY, &rt->fib6_nh.nh_gw) < 0) |
David Ahern | beb1afac5 | 2017-02-02 12:37:09 -0800 | [diff] [blame] | 4476 | goto nla_put_failure; |
| 4477 | } |
| 4478 | |
David Ahern | 5e670d8 | 2018-04-17 17:33:14 -0700 | [diff] [blame] | 4479 | *flags |= (rt->fib6_nh.nh_flags & RTNH_F_ONLINK); |
| 4480 | if (rt->fib6_nh.nh_flags & RTNH_F_OFFLOAD) |
Ido Schimmel | 61e4d01 | 2017-08-03 13:28:20 +0200 | [diff] [blame] | 4481 | *flags |= RTNH_F_OFFLOAD; |
| 4482 | |
David Ahern | 5be083c | 2017-03-06 15:57:31 -0800 | [diff] [blame] | 4483 | /* not needed for multipath encoding b/c it has a rtnexthop struct */ |
David Ahern | 5e670d8 | 2018-04-17 17:33:14 -0700 | [diff] [blame] | 4484 | if (!skip_oif && rt->fib6_nh.nh_dev && |
| 4485 | nla_put_u32(skb, RTA_OIF, rt->fib6_nh.nh_dev->ifindex)) |
David Ahern | beb1afac5 | 2017-02-02 12:37:09 -0800 | [diff] [blame] | 4486 | goto nla_put_failure; |
| 4487 | |
David Ahern | 5e670d8 | 2018-04-17 17:33:14 -0700 | [diff] [blame] | 4488 | if (rt->fib6_nh.nh_lwtstate && |
| 4489 | lwtunnel_fill_encap(skb, rt->fib6_nh.nh_lwtstate) < 0) |
David Ahern | beb1afac5 | 2017-02-02 12:37:09 -0800 | [diff] [blame] | 4490 | goto nla_put_failure; |
| 4491 | |
| 4492 | return 0; |
| 4493 | |
| 4494 | nla_put_failure: |
| 4495 | return -EMSGSIZE; |
| 4496 | } |
| 4497 | |
David Ahern | 5be083c | 2017-03-06 15:57:31 -0800 | [diff] [blame] | 4498 | /* add multipath next hop */ |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame^] | 4499 | static int rt6_add_nexthop(struct sk_buff *skb, struct fib6_info *rt) |
David Ahern | beb1afac5 | 2017-02-02 12:37:09 -0800 | [diff] [blame] | 4500 | { |
David Ahern | 5e670d8 | 2018-04-17 17:33:14 -0700 | [diff] [blame] | 4501 | const struct net_device *dev = rt->fib6_nh.nh_dev; |
David Ahern | beb1afac5 | 2017-02-02 12:37:09 -0800 | [diff] [blame] | 4502 | struct rtnexthop *rtnh; |
| 4503 | unsigned int flags = 0; |
| 4504 | |
| 4505 | rtnh = nla_reserve_nohdr(skb, sizeof(*rtnh)); |
| 4506 | if (!rtnh) |
| 4507 | goto nla_put_failure; |
| 4508 | |
David Ahern | 5e670d8 | 2018-04-17 17:33:14 -0700 | [diff] [blame] | 4509 | rtnh->rtnh_hops = rt->fib6_nh.nh_weight - 1; |
| 4510 | rtnh->rtnh_ifindex = dev ? dev->ifindex : 0; |
David Ahern | beb1afac5 | 2017-02-02 12:37:09 -0800 | [diff] [blame] | 4511 | |
David Ahern | 5be083c | 2017-03-06 15:57:31 -0800 | [diff] [blame] | 4512 | if (rt6_nexthop_info(skb, rt, &flags, true) < 0) |
David Ahern | beb1afac5 | 2017-02-02 12:37:09 -0800 | [diff] [blame] | 4513 | goto nla_put_failure; |
| 4514 | |
| 4515 | rtnh->rtnh_flags = flags; |
| 4516 | |
| 4517 | /* length of rtnetlink header + attributes */ |
| 4518 | rtnh->rtnh_len = nlmsg_get_pos(skb) - (void *)rtnh; |
| 4519 | |
| 4520 | return 0; |
| 4521 | |
| 4522 | nla_put_failure: |
| 4523 | return -EMSGSIZE; |
Thomas Graf | 339bf98 | 2006-11-10 14:10:15 -0800 | [diff] [blame] | 4524 | } |
| 4525 | |
David Ahern | d4ead6b | 2018-04-17 17:33:16 -0700 | [diff] [blame] | 4526 | static int rt6_fill_node(struct net *net, struct sk_buff *skb, |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame^] | 4527 | struct fib6_info *rt, struct dst_entry *dst, |
David Ahern | d4ead6b | 2018-04-17 17:33:16 -0700 | [diff] [blame] | 4528 | struct in6_addr *dest, struct in6_addr *src, |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 4529 | int iif, int type, u32 portid, u32 seq, |
David Ahern | f8cfe2c | 2017-01-17 15:51:08 -0800 | [diff] [blame] | 4530 | unsigned int flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4531 | { |
| 4532 | struct rtmsg *rtm; |
Thomas Graf | 2d7202b | 2006-08-22 00:01:27 -0700 | [diff] [blame] | 4533 | struct nlmsghdr *nlh; |
David Ahern | d4ead6b | 2018-04-17 17:33:16 -0700 | [diff] [blame] | 4534 | long expires = 0; |
| 4535 | u32 *pmetrics; |
Patrick McHardy | 9e762a4 | 2006-08-10 23:09:48 -0700 | [diff] [blame] | 4536 | u32 table; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4537 | |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 4538 | nlh = nlmsg_put(skb, portid, seq, type, sizeof(*rtm), flags); |
David S. Miller | 3830847 | 2011-12-03 18:02:47 -0500 | [diff] [blame] | 4539 | if (!nlh) |
Patrick McHardy | 2693256 | 2007-01-31 23:16:40 -0800 | [diff] [blame] | 4540 | return -EMSGSIZE; |
Thomas Graf | 2d7202b | 2006-08-22 00:01:27 -0700 | [diff] [blame] | 4541 | |
| 4542 | rtm = nlmsg_data(nlh); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4543 | rtm->rtm_family = AF_INET6; |
| 4544 | rtm->rtm_dst_len = rt->rt6i_dst.plen; |
| 4545 | rtm->rtm_src_len = rt->rt6i_src.plen; |
| 4546 | rtm->rtm_tos = 0; |
Thomas Graf | c71099a | 2006-08-04 23:20:06 -0700 | [diff] [blame] | 4547 | if (rt->rt6i_table) |
Patrick McHardy | 9e762a4 | 2006-08-10 23:09:48 -0700 | [diff] [blame] | 4548 | table = rt->rt6i_table->tb6_id; |
Thomas Graf | c71099a | 2006-08-04 23:20:06 -0700 | [diff] [blame] | 4549 | else |
Patrick McHardy | 9e762a4 | 2006-08-10 23:09:48 -0700 | [diff] [blame] | 4550 | table = RT6_TABLE_UNSPEC; |
| 4551 | rtm->rtm_table = table; |
David S. Miller | c78679e | 2012-04-01 20:27:33 -0400 | [diff] [blame] | 4552 | if (nla_put_u32(skb, RTA_TABLE, table)) |
| 4553 | goto nla_put_failure; |
David Ahern | e8478e8 | 2018-04-17 17:33:13 -0700 | [diff] [blame] | 4554 | |
| 4555 | rtm->rtm_type = rt->fib6_type; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4556 | rtm->rtm_flags = 0; |
| 4557 | rtm->rtm_scope = RT_SCOPE_UNIVERSE; |
| 4558 | rtm->rtm_protocol = rt->rt6i_protocol; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4559 | |
David S. Miller | 3830847 | 2011-12-03 18:02:47 -0500 | [diff] [blame] | 4560 | if (rt->rt6i_flags & RTF_CACHE) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4561 | rtm->rtm_flags |= RTM_F_CLONED; |
| 4562 | |
David Ahern | d4ead6b | 2018-04-17 17:33:16 -0700 | [diff] [blame] | 4563 | if (dest) { |
| 4564 | if (nla_put_in6_addr(skb, RTA_DST, dest)) |
David S. Miller | c78679e | 2012-04-01 20:27:33 -0400 | [diff] [blame] | 4565 | goto nla_put_failure; |
YOSHIFUJI Hideaki | 1ab1457 | 2007-02-09 23:24:49 +0900 | [diff] [blame] | 4566 | rtm->rtm_dst_len = 128; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4567 | } else if (rtm->rtm_dst_len) |
Jiri Benc | 930345e | 2015-03-29 16:59:25 +0200 | [diff] [blame] | 4568 | if (nla_put_in6_addr(skb, RTA_DST, &rt->rt6i_dst.addr)) |
David S. Miller | c78679e | 2012-04-01 20:27:33 -0400 | [diff] [blame] | 4569 | goto nla_put_failure; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4570 | #ifdef CONFIG_IPV6_SUBTREES |
| 4571 | if (src) { |
Jiri Benc | 930345e | 2015-03-29 16:59:25 +0200 | [diff] [blame] | 4572 | if (nla_put_in6_addr(skb, RTA_SRC, src)) |
David S. Miller | c78679e | 2012-04-01 20:27:33 -0400 | [diff] [blame] | 4573 | goto nla_put_failure; |
YOSHIFUJI Hideaki | 1ab1457 | 2007-02-09 23:24:49 +0900 | [diff] [blame] | 4574 | rtm->rtm_src_len = 128; |
David S. Miller | c78679e | 2012-04-01 20:27:33 -0400 | [diff] [blame] | 4575 | } else if (rtm->rtm_src_len && |
Jiri Benc | 930345e | 2015-03-29 16:59:25 +0200 | [diff] [blame] | 4576 | nla_put_in6_addr(skb, RTA_SRC, &rt->rt6i_src.addr)) |
David S. Miller | c78679e | 2012-04-01 20:27:33 -0400 | [diff] [blame] | 4577 | goto nla_put_failure; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4578 | #endif |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 4579 | if (iif) { |
| 4580 | #ifdef CONFIG_IPV6_MROUTE |
| 4581 | if (ipv6_addr_is_multicast(&rt->rt6i_dst.addr)) { |
David Ahern | fd61c6b | 2017-01-17 15:51:07 -0800 | [diff] [blame] | 4582 | int err = ip6mr_get_route(net, skb, rtm, portid); |
Nikolay Aleksandrov | 2cf7507 | 2016-09-25 23:08:31 +0200 | [diff] [blame] | 4583 | |
David Ahern | fd61c6b | 2017-01-17 15:51:07 -0800 | [diff] [blame] | 4584 | if (err == 0) |
| 4585 | return 0; |
| 4586 | if (err < 0) |
| 4587 | goto nla_put_failure; |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 4588 | } else |
| 4589 | #endif |
David S. Miller | c78679e | 2012-04-01 20:27:33 -0400 | [diff] [blame] | 4590 | if (nla_put_u32(skb, RTA_IIF, iif)) |
| 4591 | goto nla_put_failure; |
David Ahern | d4ead6b | 2018-04-17 17:33:16 -0700 | [diff] [blame] | 4592 | } else if (dest) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4593 | struct in6_addr saddr_buf; |
David Ahern | d4ead6b | 2018-04-17 17:33:16 -0700 | [diff] [blame] | 4594 | if (ip6_route_get_saddr(net, rt, dest, 0, &saddr_buf) == 0 && |
Jiri Benc | 930345e | 2015-03-29 16:59:25 +0200 | [diff] [blame] | 4595 | nla_put_in6_addr(skb, RTA_PREFSRC, &saddr_buf)) |
David S. Miller | c78679e | 2012-04-01 20:27:33 -0400 | [diff] [blame] | 4596 | goto nla_put_failure; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4597 | } |
Thomas Graf | 2d7202b | 2006-08-22 00:01:27 -0700 | [diff] [blame] | 4598 | |
Daniel Walter | c3968a8 | 2011-04-13 21:10:57 +0000 | [diff] [blame] | 4599 | if (rt->rt6i_prefsrc.plen) { |
| 4600 | struct in6_addr saddr_buf; |
Alexey Dobriyan | 4e3fd7a | 2011-11-21 03:39:03 +0000 | [diff] [blame] | 4601 | saddr_buf = rt->rt6i_prefsrc.addr; |
Jiri Benc | 930345e | 2015-03-29 16:59:25 +0200 | [diff] [blame] | 4602 | if (nla_put_in6_addr(skb, RTA_PREFSRC, &saddr_buf)) |
David S. Miller | c78679e | 2012-04-01 20:27:33 -0400 | [diff] [blame] | 4603 | goto nla_put_failure; |
Daniel Walter | c3968a8 | 2011-04-13 21:10:57 +0000 | [diff] [blame] | 4604 | } |
| 4605 | |
David Ahern | d4ead6b | 2018-04-17 17:33:16 -0700 | [diff] [blame] | 4606 | pmetrics = dst ? dst_metrics_ptr(dst) : rt->fib6_metrics->metrics; |
| 4607 | if (rtnetlink_put_metrics(skb, pmetrics) < 0) |
Thomas Graf | 2d7202b | 2006-08-22 00:01:27 -0700 | [diff] [blame] | 4608 | goto nla_put_failure; |
| 4609 | |
David S. Miller | c78679e | 2012-04-01 20:27:33 -0400 | [diff] [blame] | 4610 | if (nla_put_u32(skb, RTA_PRIORITY, rt->rt6i_metric)) |
| 4611 | goto nla_put_failure; |
Li Wei | 8253947 | 2012-07-29 16:01:30 +0000 | [diff] [blame] | 4612 | |
David Ahern | beb1afac5 | 2017-02-02 12:37:09 -0800 | [diff] [blame] | 4613 | /* For multipath routes, walk the siblings list and add |
| 4614 | * each as a nexthop within RTA_MULTIPATH. |
| 4615 | */ |
| 4616 | if (rt->rt6i_nsiblings) { |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame^] | 4617 | struct fib6_info *sibling, *next_sibling; |
David Ahern | beb1afac5 | 2017-02-02 12:37:09 -0800 | [diff] [blame] | 4618 | struct nlattr *mp; |
| 4619 | |
| 4620 | mp = nla_nest_start(skb, RTA_MULTIPATH); |
| 4621 | if (!mp) |
| 4622 | goto nla_put_failure; |
| 4623 | |
| 4624 | if (rt6_add_nexthop(skb, rt) < 0) |
| 4625 | goto nla_put_failure; |
| 4626 | |
| 4627 | list_for_each_entry_safe(sibling, next_sibling, |
| 4628 | &rt->rt6i_siblings, rt6i_siblings) { |
| 4629 | if (rt6_add_nexthop(skb, sibling) < 0) |
| 4630 | goto nla_put_failure; |
| 4631 | } |
| 4632 | |
| 4633 | nla_nest_end(skb, mp); |
| 4634 | } else { |
David Ahern | 5be083c | 2017-03-06 15:57:31 -0800 | [diff] [blame] | 4635 | if (rt6_nexthop_info(skb, rt, &rtm->rtm_flags, false) < 0) |
David Ahern | beb1afac5 | 2017-02-02 12:37:09 -0800 | [diff] [blame] | 4636 | goto nla_put_failure; |
| 4637 | } |
| 4638 | |
David Ahern | 1489568 | 2018-04-17 17:33:17 -0700 | [diff] [blame] | 4639 | if (rt->rt6i_flags & RTF_EXPIRES) { |
| 4640 | expires = dst ? dst->expires : rt->expires; |
| 4641 | expires -= jiffies; |
| 4642 | } |
YOSHIFUJI Hideaki | 69cdf8f | 2008-05-19 16:55:13 -0700 | [diff] [blame] | 4643 | |
David Ahern | d4ead6b | 2018-04-17 17:33:16 -0700 | [diff] [blame] | 4644 | if (rtnl_put_cacheinfo(skb, dst, 0, expires, dst ? dst->error : 0) < 0) |
Thomas Graf | e3703b3 | 2006-11-27 09:27:07 -0800 | [diff] [blame] | 4645 | goto nla_put_failure; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4646 | |
Lubomir Rintel | c78ba6d | 2015-03-11 15:39:21 +0100 | [diff] [blame] | 4647 | if (nla_put_u8(skb, RTA_PREF, IPV6_EXTRACT_PREF(rt->rt6i_flags))) |
| 4648 | goto nla_put_failure; |
| 4649 | |
Roopa Prabhu | 19e42e4 | 2015-07-21 10:43:48 +0200 | [diff] [blame] | 4650 | |
Johannes Berg | 053c095 | 2015-01-16 22:09:00 +0100 | [diff] [blame] | 4651 | nlmsg_end(skb, nlh); |
| 4652 | return 0; |
Thomas Graf | 2d7202b | 2006-08-22 00:01:27 -0700 | [diff] [blame] | 4653 | |
| 4654 | nla_put_failure: |
Patrick McHardy | 2693256 | 2007-01-31 23:16:40 -0800 | [diff] [blame] | 4655 | nlmsg_cancel(skb, nlh); |
| 4656 | return -EMSGSIZE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4657 | } |
| 4658 | |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame^] | 4659 | int rt6_dump_route(struct fib6_info *rt, void *p_arg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4660 | { |
| 4661 | struct rt6_rtnl_dump_arg *arg = (struct rt6_rtnl_dump_arg *) p_arg; |
David Ahern | 1f17e2f | 2017-01-26 13:54:08 -0800 | [diff] [blame] | 4662 | struct net *net = arg->net; |
| 4663 | |
David Ahern | 421842e | 2018-04-17 17:33:18 -0700 | [diff] [blame] | 4664 | if (rt == net->ipv6.fib6_null_entry) |
David Ahern | 1f17e2f | 2017-01-26 13:54:08 -0800 | [diff] [blame] | 4665 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4666 | |
Thomas Graf | 2d7202b | 2006-08-22 00:01:27 -0700 | [diff] [blame] | 4667 | if (nlmsg_len(arg->cb->nlh) >= sizeof(struct rtmsg)) { |
| 4668 | struct rtmsg *rtm = nlmsg_data(arg->cb->nlh); |
David Ahern | f8cfe2c | 2017-01-17 15:51:08 -0800 | [diff] [blame] | 4669 | |
| 4670 | /* user wants prefix routes only */ |
| 4671 | if (rtm->rtm_flags & RTM_F_PREFIX && |
| 4672 | !(rt->rt6i_flags & RTF_PREFIX_RT)) { |
| 4673 | /* success since this is not a prefix route */ |
| 4674 | return 1; |
| 4675 | } |
| 4676 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4677 | |
David Ahern | d4ead6b | 2018-04-17 17:33:16 -0700 | [diff] [blame] | 4678 | return rt6_fill_node(net, arg->skb, rt, NULL, NULL, NULL, 0, |
| 4679 | RTM_NEWROUTE, NETLINK_CB(arg->cb->skb).portid, |
| 4680 | arg->cb->nlh->nlmsg_seq, NLM_F_MULTI); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4681 | } |
| 4682 | |
David Ahern | c21ef3e | 2017-04-16 09:48:24 -0700 | [diff] [blame] | 4683 | static int inet6_rtm_getroute(struct sk_buff *in_skb, struct nlmsghdr *nlh, |
| 4684 | struct netlink_ext_ack *extack) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4685 | { |
YOSHIFUJI Hideaki | 3b1e0a6 | 2008-03-26 02:26:21 +0900 | [diff] [blame] | 4686 | struct net *net = sock_net(in_skb->sk); |
Thomas Graf | ab364a6 | 2006-08-22 00:01:47 -0700 | [diff] [blame] | 4687 | struct nlattr *tb[RTA_MAX+1]; |
Roopa Prabhu | 18c3a61 | 2017-05-25 10:42:40 -0700 | [diff] [blame] | 4688 | int err, iif = 0, oif = 0; |
| 4689 | struct dst_entry *dst; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4690 | struct rt6_info *rt; |
Thomas Graf | ab364a6 | 2006-08-22 00:01:47 -0700 | [diff] [blame] | 4691 | struct sk_buff *skb; |
| 4692 | struct rtmsg *rtm; |
David S. Miller | 4c9483b | 2011-03-12 16:22:43 -0500 | [diff] [blame] | 4693 | struct flowi6 fl6; |
Roopa Prabhu | 18c3a61 | 2017-05-25 10:42:40 -0700 | [diff] [blame] | 4694 | bool fibmatch; |
Thomas Graf | ab364a6 | 2006-08-22 00:01:47 -0700 | [diff] [blame] | 4695 | |
Johannes Berg | fceb643 | 2017-04-12 14:34:07 +0200 | [diff] [blame] | 4696 | err = nlmsg_parse(nlh, sizeof(*rtm), tb, RTA_MAX, rtm_ipv6_policy, |
David Ahern | c21ef3e | 2017-04-16 09:48:24 -0700 | [diff] [blame] | 4697 | extack); |
Thomas Graf | ab364a6 | 2006-08-22 00:01:47 -0700 | [diff] [blame] | 4698 | if (err < 0) |
| 4699 | goto errout; |
| 4700 | |
| 4701 | err = -EINVAL; |
David S. Miller | 4c9483b | 2011-03-12 16:22:43 -0500 | [diff] [blame] | 4702 | memset(&fl6, 0, sizeof(fl6)); |
Hannes Frederic Sowa | 38b7097 | 2016-06-11 20:08:19 +0200 | [diff] [blame] | 4703 | rtm = nlmsg_data(nlh); |
| 4704 | fl6.flowlabel = ip6_make_flowinfo(rtm->rtm_tos, 0); |
Roopa Prabhu | 18c3a61 | 2017-05-25 10:42:40 -0700 | [diff] [blame] | 4705 | fibmatch = !!(rtm->rtm_flags & RTM_F_FIB_MATCH); |
Thomas Graf | ab364a6 | 2006-08-22 00:01:47 -0700 | [diff] [blame] | 4706 | |
| 4707 | if (tb[RTA_SRC]) { |
| 4708 | if (nla_len(tb[RTA_SRC]) < sizeof(struct in6_addr)) |
| 4709 | goto errout; |
| 4710 | |
Alexey Dobriyan | 4e3fd7a | 2011-11-21 03:39:03 +0000 | [diff] [blame] | 4711 | fl6.saddr = *(struct in6_addr *)nla_data(tb[RTA_SRC]); |
Thomas Graf | ab364a6 | 2006-08-22 00:01:47 -0700 | [diff] [blame] | 4712 | } |
| 4713 | |
| 4714 | if (tb[RTA_DST]) { |
| 4715 | if (nla_len(tb[RTA_DST]) < sizeof(struct in6_addr)) |
| 4716 | goto errout; |
| 4717 | |
Alexey Dobriyan | 4e3fd7a | 2011-11-21 03:39:03 +0000 | [diff] [blame] | 4718 | fl6.daddr = *(struct in6_addr *)nla_data(tb[RTA_DST]); |
Thomas Graf | ab364a6 | 2006-08-22 00:01:47 -0700 | [diff] [blame] | 4719 | } |
| 4720 | |
| 4721 | if (tb[RTA_IIF]) |
| 4722 | iif = nla_get_u32(tb[RTA_IIF]); |
| 4723 | |
| 4724 | if (tb[RTA_OIF]) |
Shmulik Ladkani | 72331bc | 2012-04-01 04:03:45 +0000 | [diff] [blame] | 4725 | oif = nla_get_u32(tb[RTA_OIF]); |
Thomas Graf | ab364a6 | 2006-08-22 00:01:47 -0700 | [diff] [blame] | 4726 | |
Lorenzo Colitti | 2e47b29 | 2014-05-15 16:38:41 -0700 | [diff] [blame] | 4727 | if (tb[RTA_MARK]) |
| 4728 | fl6.flowi6_mark = nla_get_u32(tb[RTA_MARK]); |
| 4729 | |
Lorenzo Colitti | 622ec2c | 2016-11-04 02:23:42 +0900 | [diff] [blame] | 4730 | if (tb[RTA_UID]) |
| 4731 | fl6.flowi6_uid = make_kuid(current_user_ns(), |
| 4732 | nla_get_u32(tb[RTA_UID])); |
| 4733 | else |
| 4734 | fl6.flowi6_uid = iif ? INVALID_UID : current_uid(); |
| 4735 | |
Thomas Graf | ab364a6 | 2006-08-22 00:01:47 -0700 | [diff] [blame] | 4736 | if (iif) { |
| 4737 | struct net_device *dev; |
Shmulik Ladkani | 72331bc | 2012-04-01 04:03:45 +0000 | [diff] [blame] | 4738 | int flags = 0; |
| 4739 | |
Florian Westphal | 121622d | 2017-08-15 16:34:42 +0200 | [diff] [blame] | 4740 | rcu_read_lock(); |
| 4741 | |
| 4742 | dev = dev_get_by_index_rcu(net, iif); |
Thomas Graf | ab364a6 | 2006-08-22 00:01:47 -0700 | [diff] [blame] | 4743 | if (!dev) { |
Florian Westphal | 121622d | 2017-08-15 16:34:42 +0200 | [diff] [blame] | 4744 | rcu_read_unlock(); |
Thomas Graf | ab364a6 | 2006-08-22 00:01:47 -0700 | [diff] [blame] | 4745 | err = -ENODEV; |
| 4746 | goto errout; |
| 4747 | } |
Shmulik Ladkani | 72331bc | 2012-04-01 04:03:45 +0000 | [diff] [blame] | 4748 | |
| 4749 | fl6.flowi6_iif = iif; |
| 4750 | |
| 4751 | if (!ipv6_addr_any(&fl6.saddr)) |
| 4752 | flags |= RT6_LOOKUP_F_HAS_SADDR; |
| 4753 | |
David Ahern | b75cc8f | 2018-03-02 08:32:17 -0800 | [diff] [blame] | 4754 | dst = ip6_route_input_lookup(net, dev, &fl6, NULL, flags); |
Florian Westphal | 121622d | 2017-08-15 16:34:42 +0200 | [diff] [blame] | 4755 | |
| 4756 | rcu_read_unlock(); |
Shmulik Ladkani | 72331bc | 2012-04-01 04:03:45 +0000 | [diff] [blame] | 4757 | } else { |
| 4758 | fl6.flowi6_oif = oif; |
| 4759 | |
Ido Schimmel | 58acfd7 | 2017-12-20 12:28:25 +0200 | [diff] [blame] | 4760 | dst = ip6_route_output(net, NULL, &fl6); |
Roopa Prabhu | 18c3a61 | 2017-05-25 10:42:40 -0700 | [diff] [blame] | 4761 | } |
| 4762 | |
Roopa Prabhu | 18c3a61 | 2017-05-25 10:42:40 -0700 | [diff] [blame] | 4763 | |
| 4764 | rt = container_of(dst, struct rt6_info, dst); |
| 4765 | if (rt->dst.error) { |
| 4766 | err = rt->dst.error; |
| 4767 | ip6_rt_put(rt); |
| 4768 | goto errout; |
Thomas Graf | ab364a6 | 2006-08-22 00:01:47 -0700 | [diff] [blame] | 4769 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4770 | |
WANG Cong | 9d6acb3 | 2017-03-01 20:48:39 -0800 | [diff] [blame] | 4771 | if (rt == net->ipv6.ip6_null_entry) { |
| 4772 | err = rt->dst.error; |
| 4773 | ip6_rt_put(rt); |
| 4774 | goto errout; |
| 4775 | } |
| 4776 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4777 | skb = alloc_skb(NLMSG_GOODSIZE, GFP_KERNEL); |
David S. Miller | 3830847 | 2011-12-03 18:02:47 -0500 | [diff] [blame] | 4778 | if (!skb) { |
Amerigo Wang | 94e187c | 2012-10-29 00:13:19 +0000 | [diff] [blame] | 4779 | ip6_rt_put(rt); |
Thomas Graf | ab364a6 | 2006-08-22 00:01:47 -0700 | [diff] [blame] | 4780 | err = -ENOBUFS; |
| 4781 | goto errout; |
| 4782 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4783 | |
Changli Gao | d8d1f30 | 2010-06-10 23:31:35 -0700 | [diff] [blame] | 4784 | skb_dst_set(skb, &rt->dst); |
Roopa Prabhu | 18c3a61 | 2017-05-25 10:42:40 -0700 | [diff] [blame] | 4785 | if (fibmatch) |
David Ahern | 93531c6 | 2018-04-17 17:33:25 -0700 | [diff] [blame] | 4786 | err = rt6_fill_node(net, skb, rt->from, NULL, NULL, NULL, iif, |
Roopa Prabhu | 18c3a61 | 2017-05-25 10:42:40 -0700 | [diff] [blame] | 4787 | RTM_NEWROUTE, NETLINK_CB(in_skb).portid, |
| 4788 | nlh->nlmsg_seq, 0); |
| 4789 | else |
David Ahern | 93531c6 | 2018-04-17 17:33:25 -0700 | [diff] [blame] | 4790 | err = rt6_fill_node(net, skb, rt->from, dst, |
| 4791 | &fl6.daddr, &fl6.saddr, iif, RTM_NEWROUTE, |
David Ahern | d4ead6b | 2018-04-17 17:33:16 -0700 | [diff] [blame] | 4792 | NETLINK_CB(in_skb).portid, nlh->nlmsg_seq, |
| 4793 | 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4794 | if (err < 0) { |
Thomas Graf | ab364a6 | 2006-08-22 00:01:47 -0700 | [diff] [blame] | 4795 | kfree_skb(skb); |
| 4796 | goto errout; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4797 | } |
| 4798 | |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 4799 | err = rtnl_unicast(skb, net, NETLINK_CB(in_skb).portid); |
Thomas Graf | ab364a6 | 2006-08-22 00:01:47 -0700 | [diff] [blame] | 4800 | errout: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4801 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4802 | } |
| 4803 | |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame^] | 4804 | void inet6_rt_notify(int event, struct fib6_info *rt, struct nl_info *info, |
Roopa Prabhu | 37a1d36 | 2015-09-13 10:18:33 -0700 | [diff] [blame] | 4805 | unsigned int nlm_flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4806 | { |
| 4807 | struct sk_buff *skb; |
Daniel Lezcano | 5578689 | 2008-03-04 13:47:47 -0800 | [diff] [blame] | 4808 | struct net *net = info->nl_net; |
Denis V. Lunev | 528c4ce | 2007-12-13 09:45:12 -0800 | [diff] [blame] | 4809 | u32 seq; |
| 4810 | int err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4811 | |
Denis V. Lunev | 528c4ce | 2007-12-13 09:45:12 -0800 | [diff] [blame] | 4812 | err = -ENOBUFS; |
David S. Miller | 3830847 | 2011-12-03 18:02:47 -0500 | [diff] [blame] | 4813 | seq = info->nlh ? info->nlh->nlmsg_seq : 0; |
Thomas Graf | 86872cb | 2006-08-22 00:01:08 -0700 | [diff] [blame] | 4814 | |
Roopa Prabhu | 19e42e4 | 2015-07-21 10:43:48 +0200 | [diff] [blame] | 4815 | skb = nlmsg_new(rt6_nlmsg_size(rt), gfp_any()); |
David S. Miller | 3830847 | 2011-12-03 18:02:47 -0500 | [diff] [blame] | 4816 | if (!skb) |
Thomas Graf | 21713eb | 2006-08-15 00:35:24 -0700 | [diff] [blame] | 4817 | goto errout; |
| 4818 | |
David Ahern | d4ead6b | 2018-04-17 17:33:16 -0700 | [diff] [blame] | 4819 | err = rt6_fill_node(net, skb, rt, NULL, NULL, NULL, 0, |
| 4820 | event, info->portid, seq, nlm_flags); |
Patrick McHardy | 2693256 | 2007-01-31 23:16:40 -0800 | [diff] [blame] | 4821 | if (err < 0) { |
| 4822 | /* -EMSGSIZE implies BUG in rt6_nlmsg_size() */ |
| 4823 | WARN_ON(err == -EMSGSIZE); |
| 4824 | kfree_skb(skb); |
| 4825 | goto errout; |
| 4826 | } |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 4827 | rtnl_notify(skb, net, info->portid, RTNLGRP_IPV6_ROUTE, |
Pablo Neira Ayuso | 1ce85fe | 2009-02-24 23:18:28 -0800 | [diff] [blame] | 4828 | info->nlh, gfp_any()); |
| 4829 | return; |
Thomas Graf | 21713eb | 2006-08-15 00:35:24 -0700 | [diff] [blame] | 4830 | errout: |
| 4831 | if (err < 0) |
Daniel Lezcano | 5578689 | 2008-03-04 13:47:47 -0800 | [diff] [blame] | 4832 | rtnl_set_sk_err(net, RTNLGRP_IPV6_ROUTE, err); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4833 | } |
| 4834 | |
Daniel Lezcano | 8ed6778 | 2008-03-04 13:48:30 -0800 | [diff] [blame] | 4835 | static int ip6_route_dev_notify(struct notifier_block *this, |
Jiri Pirko | 351638e | 2013-05-28 01:30:21 +0000 | [diff] [blame] | 4836 | unsigned long event, void *ptr) |
Daniel Lezcano | 8ed6778 | 2008-03-04 13:48:30 -0800 | [diff] [blame] | 4837 | { |
Jiri Pirko | 351638e | 2013-05-28 01:30:21 +0000 | [diff] [blame] | 4838 | struct net_device *dev = netdev_notifier_info_to_dev(ptr); |
YOSHIFUJI Hideaki | c346dca | 2008-03-25 21:47:49 +0900 | [diff] [blame] | 4839 | struct net *net = dev_net(dev); |
Daniel Lezcano | 8ed6778 | 2008-03-04 13:48:30 -0800 | [diff] [blame] | 4840 | |
WANG Cong | 242d3a4 | 2017-05-08 10:12:13 -0700 | [diff] [blame] | 4841 | if (!(dev->flags & IFF_LOOPBACK)) |
| 4842 | return NOTIFY_OK; |
| 4843 | |
| 4844 | if (event == NETDEV_REGISTER) { |
David Ahern | 421842e | 2018-04-17 17:33:18 -0700 | [diff] [blame] | 4845 | net->ipv6.fib6_null_entry->fib6_nh.nh_dev = dev; |
| 4846 | net->ipv6.fib6_null_entry->rt6i_idev = in6_dev_get(dev); |
Changli Gao | d8d1f30 | 2010-06-10 23:31:35 -0700 | [diff] [blame] | 4847 | net->ipv6.ip6_null_entry->dst.dev = dev; |
Daniel Lezcano | 8ed6778 | 2008-03-04 13:48:30 -0800 | [diff] [blame] | 4848 | net->ipv6.ip6_null_entry->rt6i_idev = in6_dev_get(dev); |
| 4849 | #ifdef CONFIG_IPV6_MULTIPLE_TABLES |
Changli Gao | d8d1f30 | 2010-06-10 23:31:35 -0700 | [diff] [blame] | 4850 | net->ipv6.ip6_prohibit_entry->dst.dev = dev; |
Daniel Lezcano | 8ed6778 | 2008-03-04 13:48:30 -0800 | [diff] [blame] | 4851 | net->ipv6.ip6_prohibit_entry->rt6i_idev = in6_dev_get(dev); |
Changli Gao | d8d1f30 | 2010-06-10 23:31:35 -0700 | [diff] [blame] | 4852 | net->ipv6.ip6_blk_hole_entry->dst.dev = dev; |
Daniel Lezcano | 8ed6778 | 2008-03-04 13:48:30 -0800 | [diff] [blame] | 4853 | net->ipv6.ip6_blk_hole_entry->rt6i_idev = in6_dev_get(dev); |
| 4854 | #endif |
WANG Cong | 76da070 | 2017-06-20 11:42:27 -0700 | [diff] [blame] | 4855 | } else if (event == NETDEV_UNREGISTER && |
| 4856 | dev->reg_state != NETREG_UNREGISTERED) { |
| 4857 | /* NETDEV_UNREGISTER could be fired for multiple times by |
| 4858 | * netdev_wait_allrefs(). Make sure we only call this once. |
| 4859 | */ |
David Ahern | 421842e | 2018-04-17 17:33:18 -0700 | [diff] [blame] | 4860 | in6_dev_put_clear(&net->ipv6.fib6_null_entry->rt6i_idev); |
Eric Dumazet | 12d94a8 | 2017-08-15 04:09:51 -0700 | [diff] [blame] | 4861 | in6_dev_put_clear(&net->ipv6.ip6_null_entry->rt6i_idev); |
WANG Cong | 242d3a4 | 2017-05-08 10:12:13 -0700 | [diff] [blame] | 4862 | #ifdef CONFIG_IPV6_MULTIPLE_TABLES |
Eric Dumazet | 12d94a8 | 2017-08-15 04:09:51 -0700 | [diff] [blame] | 4863 | in6_dev_put_clear(&net->ipv6.ip6_prohibit_entry->rt6i_idev); |
| 4864 | in6_dev_put_clear(&net->ipv6.ip6_blk_hole_entry->rt6i_idev); |
WANG Cong | 242d3a4 | 2017-05-08 10:12:13 -0700 | [diff] [blame] | 4865 | #endif |
Daniel Lezcano | 8ed6778 | 2008-03-04 13:48:30 -0800 | [diff] [blame] | 4866 | } |
| 4867 | |
| 4868 | return NOTIFY_OK; |
| 4869 | } |
| 4870 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4871 | /* |
| 4872 | * /proc |
| 4873 | */ |
| 4874 | |
| 4875 | #ifdef CONFIG_PROC_FS |
| 4876 | |
Alexey Dobriyan | 33120b3 | 2007-11-06 05:27:11 -0800 | [diff] [blame] | 4877 | static const struct file_operations ipv6_route_proc_fops = { |
Alexey Dobriyan | 33120b3 | 2007-11-06 05:27:11 -0800 | [diff] [blame] | 4878 | .open = ipv6_route_open, |
| 4879 | .read = seq_read, |
| 4880 | .llseek = seq_lseek, |
Hannes Frederic Sowa | 8d2ca1d | 2013-09-21 16:55:59 +0200 | [diff] [blame] | 4881 | .release = seq_release_net, |
Alexey Dobriyan | 33120b3 | 2007-11-06 05:27:11 -0800 | [diff] [blame] | 4882 | }; |
| 4883 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4884 | static int rt6_stats_seq_show(struct seq_file *seq, void *v) |
| 4885 | { |
Daniel Lezcano | 69ddb80 | 2008-03-04 13:46:23 -0800 | [diff] [blame] | 4886 | struct net *net = (struct net *)seq->private; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4887 | seq_printf(seq, "%04x %04x %04x %04x %04x %04x %04x\n", |
Daniel Lezcano | 69ddb80 | 2008-03-04 13:46:23 -0800 | [diff] [blame] | 4888 | net->ipv6.rt6_stats->fib_nodes, |
| 4889 | net->ipv6.rt6_stats->fib_route_nodes, |
Wei Wang | 81eb844 | 2017-10-06 12:06:11 -0700 | [diff] [blame] | 4890 | atomic_read(&net->ipv6.rt6_stats->fib_rt_alloc), |
Daniel Lezcano | 69ddb80 | 2008-03-04 13:46:23 -0800 | [diff] [blame] | 4891 | net->ipv6.rt6_stats->fib_rt_entries, |
| 4892 | net->ipv6.rt6_stats->fib_rt_cache, |
Eric Dumazet | fc66f95 | 2010-10-08 06:37:34 +0000 | [diff] [blame] | 4893 | dst_entries_get_slow(&net->ipv6.ip6_dst_ops), |
Daniel Lezcano | 69ddb80 | 2008-03-04 13:46:23 -0800 | [diff] [blame] | 4894 | net->ipv6.rt6_stats->fib_discarded_routes); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4895 | |
| 4896 | return 0; |
| 4897 | } |
| 4898 | |
| 4899 | static int rt6_stats_seq_open(struct inode *inode, struct file *file) |
| 4900 | { |
Pavel Emelyanov | de05c55 | 2008-07-18 04:07:21 -0700 | [diff] [blame] | 4901 | return single_open_net(inode, file, rt6_stats_seq_show); |
Daniel Lezcano | 69ddb80 | 2008-03-04 13:46:23 -0800 | [diff] [blame] | 4902 | } |
| 4903 | |
Arjan van de Ven | 9a32144 | 2007-02-12 00:55:35 -0800 | [diff] [blame] | 4904 | static const struct file_operations rt6_stats_seq_fops = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4905 | .open = rt6_stats_seq_open, |
| 4906 | .read = seq_read, |
| 4907 | .llseek = seq_lseek, |
Pavel Emelyanov | b6fcbdb | 2008-07-18 04:07:44 -0700 | [diff] [blame] | 4908 | .release = single_release_net, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4909 | }; |
| 4910 | #endif /* CONFIG_PROC_FS */ |
| 4911 | |
| 4912 | #ifdef CONFIG_SYSCTL |
| 4913 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4914 | static |
Joe Perches | fe2c633 | 2013-06-11 23:04:25 -0700 | [diff] [blame] | 4915 | int ipv6_sysctl_rtcache_flush(struct ctl_table *ctl, int write, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4916 | void __user *buffer, size_t *lenp, loff_t *ppos) |
| 4917 | { |
Lucian Adrian Grijincu | c486da3 | 2011-02-24 19:48:03 +0000 | [diff] [blame] | 4918 | struct net *net; |
| 4919 | int delay; |
| 4920 | if (!write) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4921 | return -EINVAL; |
Lucian Adrian Grijincu | c486da3 | 2011-02-24 19:48:03 +0000 | [diff] [blame] | 4922 | |
| 4923 | net = (struct net *)ctl->extra1; |
| 4924 | delay = net->ipv6.sysctl.flush_delay; |
| 4925 | proc_dointvec(ctl, write, buffer, lenp, ppos); |
Michal Kubeček | 2ac3ac8 | 2013-08-01 10:04:14 +0200 | [diff] [blame] | 4926 | fib6_run_gc(delay <= 0 ? 0 : (unsigned long)delay, net, delay > 0); |
Lucian Adrian Grijincu | c486da3 | 2011-02-24 19:48:03 +0000 | [diff] [blame] | 4927 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4928 | } |
| 4929 | |
Joe Perches | fe2c633 | 2013-06-11 23:04:25 -0700 | [diff] [blame] | 4930 | struct ctl_table ipv6_route_table_template[] = { |
YOSHIFUJI Hideaki | 1ab1457 | 2007-02-09 23:24:49 +0900 | [diff] [blame] | 4931 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4932 | .procname = "flush", |
Daniel Lezcano | 4990509 | 2008-01-10 03:01:01 -0800 | [diff] [blame] | 4933 | .data = &init_net.ipv6.sysctl.flush_delay, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4934 | .maxlen = sizeof(int), |
Dave Jones | 89c8b3a1 | 2005-04-28 12:11:49 -0700 | [diff] [blame] | 4935 | .mode = 0200, |
Alexey Dobriyan | 6d9f239 | 2008-11-03 18:21:05 -0800 | [diff] [blame] | 4936 | .proc_handler = ipv6_sysctl_rtcache_flush |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4937 | }, |
| 4938 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4939 | .procname = "gc_thresh", |
Daniel Lezcano | 9a7ec3a | 2008-03-04 13:48:53 -0800 | [diff] [blame] | 4940 | .data = &ip6_dst_ops_template.gc_thresh, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4941 | .maxlen = sizeof(int), |
| 4942 | .mode = 0644, |
Alexey Dobriyan | 6d9f239 | 2008-11-03 18:21:05 -0800 | [diff] [blame] | 4943 | .proc_handler = proc_dointvec, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4944 | }, |
| 4945 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4946 | .procname = "max_size", |
Daniel Lezcano | 4990509 | 2008-01-10 03:01:01 -0800 | [diff] [blame] | 4947 | .data = &init_net.ipv6.sysctl.ip6_rt_max_size, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4948 | .maxlen = sizeof(int), |
| 4949 | .mode = 0644, |
Alexey Dobriyan | 6d9f239 | 2008-11-03 18:21:05 -0800 | [diff] [blame] | 4950 | .proc_handler = proc_dointvec, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4951 | }, |
| 4952 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4953 | .procname = "gc_min_interval", |
Daniel Lezcano | 4990509 | 2008-01-10 03:01:01 -0800 | [diff] [blame] | 4954 | .data = &init_net.ipv6.sysctl.ip6_rt_gc_min_interval, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4955 | .maxlen = sizeof(int), |
| 4956 | .mode = 0644, |
Alexey Dobriyan | 6d9f239 | 2008-11-03 18:21:05 -0800 | [diff] [blame] | 4957 | .proc_handler = proc_dointvec_jiffies, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4958 | }, |
| 4959 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4960 | .procname = "gc_timeout", |
Daniel Lezcano | 4990509 | 2008-01-10 03:01:01 -0800 | [diff] [blame] | 4961 | .data = &init_net.ipv6.sysctl.ip6_rt_gc_timeout, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4962 | .maxlen = sizeof(int), |
| 4963 | .mode = 0644, |
Alexey Dobriyan | 6d9f239 | 2008-11-03 18:21:05 -0800 | [diff] [blame] | 4964 | .proc_handler = proc_dointvec_jiffies, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4965 | }, |
| 4966 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4967 | .procname = "gc_interval", |
Daniel Lezcano | 4990509 | 2008-01-10 03:01:01 -0800 | [diff] [blame] | 4968 | .data = &init_net.ipv6.sysctl.ip6_rt_gc_interval, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4969 | .maxlen = sizeof(int), |
| 4970 | .mode = 0644, |
Alexey Dobriyan | 6d9f239 | 2008-11-03 18:21:05 -0800 | [diff] [blame] | 4971 | .proc_handler = proc_dointvec_jiffies, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4972 | }, |
| 4973 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4974 | .procname = "gc_elasticity", |
Daniel Lezcano | 4990509 | 2008-01-10 03:01:01 -0800 | [diff] [blame] | 4975 | .data = &init_net.ipv6.sysctl.ip6_rt_gc_elasticity, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4976 | .maxlen = sizeof(int), |
| 4977 | .mode = 0644, |
Min Zhang | f3d3f61 | 2010-08-14 22:42:51 -0700 | [diff] [blame] | 4978 | .proc_handler = proc_dointvec, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4979 | }, |
| 4980 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4981 | .procname = "mtu_expires", |
Daniel Lezcano | 4990509 | 2008-01-10 03:01:01 -0800 | [diff] [blame] | 4982 | .data = &init_net.ipv6.sysctl.ip6_rt_mtu_expires, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4983 | .maxlen = sizeof(int), |
| 4984 | .mode = 0644, |
Alexey Dobriyan | 6d9f239 | 2008-11-03 18:21:05 -0800 | [diff] [blame] | 4985 | .proc_handler = proc_dointvec_jiffies, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4986 | }, |
| 4987 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4988 | .procname = "min_adv_mss", |
Daniel Lezcano | 4990509 | 2008-01-10 03:01:01 -0800 | [diff] [blame] | 4989 | .data = &init_net.ipv6.sysctl.ip6_rt_min_advmss, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4990 | .maxlen = sizeof(int), |
| 4991 | .mode = 0644, |
Min Zhang | f3d3f61 | 2010-08-14 22:42:51 -0700 | [diff] [blame] | 4992 | .proc_handler = proc_dointvec, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4993 | }, |
| 4994 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4995 | .procname = "gc_min_interval_ms", |
Daniel Lezcano | 4990509 | 2008-01-10 03:01:01 -0800 | [diff] [blame] | 4996 | .data = &init_net.ipv6.sysctl.ip6_rt_gc_min_interval, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4997 | .maxlen = sizeof(int), |
| 4998 | .mode = 0644, |
Alexey Dobriyan | 6d9f239 | 2008-11-03 18:21:05 -0800 | [diff] [blame] | 4999 | .proc_handler = proc_dointvec_ms_jiffies, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5000 | }, |
Eric W. Biederman | f8572d8 | 2009-11-05 13:32:03 -0800 | [diff] [blame] | 5001 | { } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5002 | }; |
| 5003 | |
Alexey Dobriyan | 2c8c1e7 | 2010-01-17 03:35:32 +0000 | [diff] [blame] | 5004 | struct ctl_table * __net_init ipv6_route_sysctl_init(struct net *net) |
Daniel Lezcano | 760f2d0 | 2008-01-10 02:53:43 -0800 | [diff] [blame] | 5005 | { |
| 5006 | struct ctl_table *table; |
| 5007 | |
| 5008 | table = kmemdup(ipv6_route_table_template, |
| 5009 | sizeof(ipv6_route_table_template), |
| 5010 | GFP_KERNEL); |
YOSHIFUJI Hideaki | 5ee0910 | 2008-02-28 00:24:28 +0900 | [diff] [blame] | 5011 | |
| 5012 | if (table) { |
| 5013 | table[0].data = &net->ipv6.sysctl.flush_delay; |
Lucian Adrian Grijincu | c486da3 | 2011-02-24 19:48:03 +0000 | [diff] [blame] | 5014 | table[0].extra1 = net; |
Alexey Dobriyan | 86393e5 | 2009-08-29 01:34:49 +0000 | [diff] [blame] | 5015 | table[1].data = &net->ipv6.ip6_dst_ops.gc_thresh; |
YOSHIFUJI Hideaki | 5ee0910 | 2008-02-28 00:24:28 +0900 | [diff] [blame] | 5016 | table[2].data = &net->ipv6.sysctl.ip6_rt_max_size; |
| 5017 | table[3].data = &net->ipv6.sysctl.ip6_rt_gc_min_interval; |
| 5018 | table[4].data = &net->ipv6.sysctl.ip6_rt_gc_timeout; |
| 5019 | table[5].data = &net->ipv6.sysctl.ip6_rt_gc_interval; |
| 5020 | table[6].data = &net->ipv6.sysctl.ip6_rt_gc_elasticity; |
| 5021 | table[7].data = &net->ipv6.sysctl.ip6_rt_mtu_expires; |
| 5022 | table[8].data = &net->ipv6.sysctl.ip6_rt_min_advmss; |
Alexey Dobriyan | 9c69fab | 2009-12-18 20:11:03 -0800 | [diff] [blame] | 5023 | table[9].data = &net->ipv6.sysctl.ip6_rt_gc_min_interval; |
Eric W. Biederman | 464dc80 | 2012-11-16 03:02:59 +0000 | [diff] [blame] | 5024 | |
| 5025 | /* Don't export sysctls to unprivileged users */ |
| 5026 | if (net->user_ns != &init_user_ns) |
| 5027 | table[0].procname = NULL; |
YOSHIFUJI Hideaki | 5ee0910 | 2008-02-28 00:24:28 +0900 | [diff] [blame] | 5028 | } |
| 5029 | |
Daniel Lezcano | 760f2d0 | 2008-01-10 02:53:43 -0800 | [diff] [blame] | 5030 | return table; |
| 5031 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5032 | #endif |
| 5033 | |
Alexey Dobriyan | 2c8c1e7 | 2010-01-17 03:35:32 +0000 | [diff] [blame] | 5034 | static int __net_init ip6_route_net_init(struct net *net) |
Daniel Lezcano | cdb1876 | 2008-03-04 13:45:33 -0800 | [diff] [blame] | 5035 | { |
Pavel Emelyanov | 633d424b | 2008-04-21 14:25:23 -0700 | [diff] [blame] | 5036 | int ret = -ENOMEM; |
Daniel Lezcano | 8ed6778 | 2008-03-04 13:48:30 -0800 | [diff] [blame] | 5037 | |
Alexey Dobriyan | 86393e5 | 2009-08-29 01:34:49 +0000 | [diff] [blame] | 5038 | memcpy(&net->ipv6.ip6_dst_ops, &ip6_dst_ops_template, |
| 5039 | sizeof(net->ipv6.ip6_dst_ops)); |
Benjamin Thery | f2fc6a5 | 2008-03-04 13:49:23 -0800 | [diff] [blame] | 5040 | |
Eric Dumazet | fc66f95 | 2010-10-08 06:37:34 +0000 | [diff] [blame] | 5041 | if (dst_entries_init(&net->ipv6.ip6_dst_ops) < 0) |
| 5042 | goto out_ip6_dst_ops; |
| 5043 | |
David Ahern | 421842e | 2018-04-17 17:33:18 -0700 | [diff] [blame] | 5044 | net->ipv6.fib6_null_entry = kmemdup(&fib6_null_entry_template, |
| 5045 | sizeof(*net->ipv6.fib6_null_entry), |
| 5046 | GFP_KERNEL); |
| 5047 | if (!net->ipv6.fib6_null_entry) |
| 5048 | goto out_ip6_dst_entries; |
| 5049 | |
Daniel Lezcano | 8ed6778 | 2008-03-04 13:48:30 -0800 | [diff] [blame] | 5050 | net->ipv6.ip6_null_entry = kmemdup(&ip6_null_entry_template, |
| 5051 | sizeof(*net->ipv6.ip6_null_entry), |
| 5052 | GFP_KERNEL); |
| 5053 | if (!net->ipv6.ip6_null_entry) |
David Ahern | 421842e | 2018-04-17 17:33:18 -0700 | [diff] [blame] | 5054 | goto out_fib6_null_entry; |
Changli Gao | d8d1f30 | 2010-06-10 23:31:35 -0700 | [diff] [blame] | 5055 | net->ipv6.ip6_null_entry->dst.ops = &net->ipv6.ip6_dst_ops; |
David S. Miller | 62fa8a8 | 2011-01-26 20:51:05 -0800 | [diff] [blame] | 5056 | dst_init_metrics(&net->ipv6.ip6_null_entry->dst, |
| 5057 | ip6_template_metrics, true); |
Daniel Lezcano | 8ed6778 | 2008-03-04 13:48:30 -0800 | [diff] [blame] | 5058 | |
| 5059 | #ifdef CONFIG_IPV6_MULTIPLE_TABLES |
Vincent Bernat | feca7d8 | 2017-08-08 20:23:49 +0200 | [diff] [blame] | 5060 | net->ipv6.fib6_has_custom_rules = false; |
Daniel Lezcano | 8ed6778 | 2008-03-04 13:48:30 -0800 | [diff] [blame] | 5061 | net->ipv6.ip6_prohibit_entry = kmemdup(&ip6_prohibit_entry_template, |
| 5062 | sizeof(*net->ipv6.ip6_prohibit_entry), |
| 5063 | GFP_KERNEL); |
Peter Zijlstra | 68fffc6 | 2008-10-07 14:12:10 -0700 | [diff] [blame] | 5064 | if (!net->ipv6.ip6_prohibit_entry) |
| 5065 | goto out_ip6_null_entry; |
Changli Gao | d8d1f30 | 2010-06-10 23:31:35 -0700 | [diff] [blame] | 5066 | net->ipv6.ip6_prohibit_entry->dst.ops = &net->ipv6.ip6_dst_ops; |
David S. Miller | 62fa8a8 | 2011-01-26 20:51:05 -0800 | [diff] [blame] | 5067 | dst_init_metrics(&net->ipv6.ip6_prohibit_entry->dst, |
| 5068 | ip6_template_metrics, true); |
Daniel Lezcano | 8ed6778 | 2008-03-04 13:48:30 -0800 | [diff] [blame] | 5069 | |
| 5070 | net->ipv6.ip6_blk_hole_entry = kmemdup(&ip6_blk_hole_entry_template, |
| 5071 | sizeof(*net->ipv6.ip6_blk_hole_entry), |
| 5072 | GFP_KERNEL); |
Peter Zijlstra | 68fffc6 | 2008-10-07 14:12:10 -0700 | [diff] [blame] | 5073 | if (!net->ipv6.ip6_blk_hole_entry) |
| 5074 | goto out_ip6_prohibit_entry; |
Changli Gao | d8d1f30 | 2010-06-10 23:31:35 -0700 | [diff] [blame] | 5075 | net->ipv6.ip6_blk_hole_entry->dst.ops = &net->ipv6.ip6_dst_ops; |
David S. Miller | 62fa8a8 | 2011-01-26 20:51:05 -0800 | [diff] [blame] | 5076 | dst_init_metrics(&net->ipv6.ip6_blk_hole_entry->dst, |
| 5077 | ip6_template_metrics, true); |
Daniel Lezcano | 8ed6778 | 2008-03-04 13:48:30 -0800 | [diff] [blame] | 5078 | #endif |
| 5079 | |
Peter Zijlstra | b339a47c | 2008-10-07 14:15:00 -0700 | [diff] [blame] | 5080 | net->ipv6.sysctl.flush_delay = 0; |
| 5081 | net->ipv6.sysctl.ip6_rt_max_size = 4096; |
| 5082 | net->ipv6.sysctl.ip6_rt_gc_min_interval = HZ / 2; |
| 5083 | net->ipv6.sysctl.ip6_rt_gc_timeout = 60*HZ; |
| 5084 | net->ipv6.sysctl.ip6_rt_gc_interval = 30*HZ; |
| 5085 | net->ipv6.sysctl.ip6_rt_gc_elasticity = 9; |
| 5086 | net->ipv6.sysctl.ip6_rt_mtu_expires = 10*60*HZ; |
| 5087 | net->ipv6.sysctl.ip6_rt_min_advmss = IPV6_MIN_MTU - 20 - 40; |
| 5088 | |
Benjamin Thery | 6891a34 | 2008-03-04 13:49:47 -0800 | [diff] [blame] | 5089 | net->ipv6.ip6_rt_gc_expire = 30*HZ; |
| 5090 | |
Daniel Lezcano | 8ed6778 | 2008-03-04 13:48:30 -0800 | [diff] [blame] | 5091 | ret = 0; |
| 5092 | out: |
| 5093 | return ret; |
Benjamin Thery | f2fc6a5 | 2008-03-04 13:49:23 -0800 | [diff] [blame] | 5094 | |
Peter Zijlstra | 68fffc6 | 2008-10-07 14:12:10 -0700 | [diff] [blame] | 5095 | #ifdef CONFIG_IPV6_MULTIPLE_TABLES |
| 5096 | out_ip6_prohibit_entry: |
| 5097 | kfree(net->ipv6.ip6_prohibit_entry); |
| 5098 | out_ip6_null_entry: |
| 5099 | kfree(net->ipv6.ip6_null_entry); |
| 5100 | #endif |
David Ahern | 421842e | 2018-04-17 17:33:18 -0700 | [diff] [blame] | 5101 | out_fib6_null_entry: |
| 5102 | kfree(net->ipv6.fib6_null_entry); |
Eric Dumazet | fc66f95 | 2010-10-08 06:37:34 +0000 | [diff] [blame] | 5103 | out_ip6_dst_entries: |
| 5104 | dst_entries_destroy(&net->ipv6.ip6_dst_ops); |
Benjamin Thery | f2fc6a5 | 2008-03-04 13:49:23 -0800 | [diff] [blame] | 5105 | out_ip6_dst_ops: |
Benjamin Thery | f2fc6a5 | 2008-03-04 13:49:23 -0800 | [diff] [blame] | 5106 | goto out; |
Daniel Lezcano | cdb1876 | 2008-03-04 13:45:33 -0800 | [diff] [blame] | 5107 | } |
| 5108 | |
Alexey Dobriyan | 2c8c1e7 | 2010-01-17 03:35:32 +0000 | [diff] [blame] | 5109 | static void __net_exit ip6_route_net_exit(struct net *net) |
Daniel Lezcano | cdb1876 | 2008-03-04 13:45:33 -0800 | [diff] [blame] | 5110 | { |
David Ahern | 421842e | 2018-04-17 17:33:18 -0700 | [diff] [blame] | 5111 | kfree(net->ipv6.fib6_null_entry); |
Daniel Lezcano | 8ed6778 | 2008-03-04 13:48:30 -0800 | [diff] [blame] | 5112 | kfree(net->ipv6.ip6_null_entry); |
| 5113 | #ifdef CONFIG_IPV6_MULTIPLE_TABLES |
| 5114 | kfree(net->ipv6.ip6_prohibit_entry); |
| 5115 | kfree(net->ipv6.ip6_blk_hole_entry); |
| 5116 | #endif |
Xiaotian Feng | 41bb78b | 2010-11-02 16:11:05 +0000 | [diff] [blame] | 5117 | dst_entries_destroy(&net->ipv6.ip6_dst_ops); |
Daniel Lezcano | cdb1876 | 2008-03-04 13:45:33 -0800 | [diff] [blame] | 5118 | } |
| 5119 | |
Thomas Graf | d189634 | 2012-06-18 12:08:33 +0000 | [diff] [blame] | 5120 | static int __net_init ip6_route_net_init_late(struct net *net) |
| 5121 | { |
| 5122 | #ifdef CONFIG_PROC_FS |
Gao feng | d4beaa6 | 2013-02-18 01:34:54 +0000 | [diff] [blame] | 5123 | proc_create("ipv6_route", 0, net->proc_net, &ipv6_route_proc_fops); |
Joe Perches | d644406 | 2018-03-23 15:54:38 -0700 | [diff] [blame] | 5124 | proc_create("rt6_stats", 0444, net->proc_net, &rt6_stats_seq_fops); |
Thomas Graf | d189634 | 2012-06-18 12:08:33 +0000 | [diff] [blame] | 5125 | #endif |
| 5126 | return 0; |
| 5127 | } |
| 5128 | |
| 5129 | static void __net_exit ip6_route_net_exit_late(struct net *net) |
| 5130 | { |
| 5131 | #ifdef CONFIG_PROC_FS |
Gao feng | ece31ff | 2013-02-18 01:34:56 +0000 | [diff] [blame] | 5132 | remove_proc_entry("ipv6_route", net->proc_net); |
| 5133 | remove_proc_entry("rt6_stats", net->proc_net); |
Thomas Graf | d189634 | 2012-06-18 12:08:33 +0000 | [diff] [blame] | 5134 | #endif |
| 5135 | } |
| 5136 | |
Daniel Lezcano | cdb1876 | 2008-03-04 13:45:33 -0800 | [diff] [blame] | 5137 | static struct pernet_operations ip6_route_net_ops = { |
| 5138 | .init = ip6_route_net_init, |
| 5139 | .exit = ip6_route_net_exit, |
| 5140 | }; |
| 5141 | |
David S. Miller | c3426b4 | 2012-06-09 16:27:05 -0700 | [diff] [blame] | 5142 | static int __net_init ipv6_inetpeer_init(struct net *net) |
| 5143 | { |
| 5144 | struct inet_peer_base *bp = kmalloc(sizeof(*bp), GFP_KERNEL); |
| 5145 | |
| 5146 | if (!bp) |
| 5147 | return -ENOMEM; |
| 5148 | inet_peer_base_init(bp); |
| 5149 | net->ipv6.peers = bp; |
| 5150 | return 0; |
| 5151 | } |
| 5152 | |
| 5153 | static void __net_exit ipv6_inetpeer_exit(struct net *net) |
| 5154 | { |
| 5155 | struct inet_peer_base *bp = net->ipv6.peers; |
| 5156 | |
| 5157 | net->ipv6.peers = NULL; |
David S. Miller | 56a6b24 | 2012-06-09 16:32:41 -0700 | [diff] [blame] | 5158 | inetpeer_invalidate_tree(bp); |
David S. Miller | c3426b4 | 2012-06-09 16:27:05 -0700 | [diff] [blame] | 5159 | kfree(bp); |
| 5160 | } |
| 5161 | |
David S. Miller | 2b823f7 | 2012-06-09 19:00:16 -0700 | [diff] [blame] | 5162 | static struct pernet_operations ipv6_inetpeer_ops = { |
David S. Miller | c3426b4 | 2012-06-09 16:27:05 -0700 | [diff] [blame] | 5163 | .init = ipv6_inetpeer_init, |
| 5164 | .exit = ipv6_inetpeer_exit, |
| 5165 | }; |
| 5166 | |
Thomas Graf | d189634 | 2012-06-18 12:08:33 +0000 | [diff] [blame] | 5167 | static struct pernet_operations ip6_route_net_late_ops = { |
| 5168 | .init = ip6_route_net_init_late, |
| 5169 | .exit = ip6_route_net_exit_late, |
| 5170 | }; |
| 5171 | |
Daniel Lezcano | 8ed6778 | 2008-03-04 13:48:30 -0800 | [diff] [blame] | 5172 | static struct notifier_block ip6_route_dev_notifier = { |
| 5173 | .notifier_call = ip6_route_dev_notify, |
WANG Cong | 242d3a4 | 2017-05-08 10:12:13 -0700 | [diff] [blame] | 5174 | .priority = ADDRCONF_NOTIFY_PRIORITY - 10, |
Daniel Lezcano | 8ed6778 | 2008-03-04 13:48:30 -0800 | [diff] [blame] | 5175 | }; |
| 5176 | |
WANG Cong | 2f46093 | 2017-05-03 22:07:31 -0700 | [diff] [blame] | 5177 | void __init ip6_route_init_special_entries(void) |
| 5178 | { |
| 5179 | /* Registering of the loopback is done before this portion of code, |
| 5180 | * the loopback reference in rt6_info will not be taken, do it |
| 5181 | * manually for init_net */ |
David Ahern | 421842e | 2018-04-17 17:33:18 -0700 | [diff] [blame] | 5182 | init_net.ipv6.fib6_null_entry->fib6_nh.nh_dev = init_net.loopback_dev; |
| 5183 | init_net.ipv6.fib6_null_entry->rt6i_idev = in6_dev_get(init_net.loopback_dev); |
WANG Cong | 2f46093 | 2017-05-03 22:07:31 -0700 | [diff] [blame] | 5184 | init_net.ipv6.ip6_null_entry->dst.dev = init_net.loopback_dev; |
| 5185 | init_net.ipv6.ip6_null_entry->rt6i_idev = in6_dev_get(init_net.loopback_dev); |
| 5186 | #ifdef CONFIG_IPV6_MULTIPLE_TABLES |
| 5187 | init_net.ipv6.ip6_prohibit_entry->dst.dev = init_net.loopback_dev; |
| 5188 | init_net.ipv6.ip6_prohibit_entry->rt6i_idev = in6_dev_get(init_net.loopback_dev); |
| 5189 | init_net.ipv6.ip6_blk_hole_entry->dst.dev = init_net.loopback_dev; |
| 5190 | init_net.ipv6.ip6_blk_hole_entry->rt6i_idev = in6_dev_get(init_net.loopback_dev); |
| 5191 | #endif |
| 5192 | } |
| 5193 | |
Daniel Lezcano | 433d49c | 2007-12-07 00:43:48 -0800 | [diff] [blame] | 5194 | int __init ip6_route_init(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5195 | { |
Daniel Lezcano | 433d49c | 2007-12-07 00:43:48 -0800 | [diff] [blame] | 5196 | int ret; |
Martin KaFai Lau | 8d0b94a | 2015-05-22 20:56:04 -0700 | [diff] [blame] | 5197 | int cpu; |
Daniel Lezcano | 433d49c | 2007-12-07 00:43:48 -0800 | [diff] [blame] | 5198 | |
Daniel Lezcano | 9a7ec3a | 2008-03-04 13:48:53 -0800 | [diff] [blame] | 5199 | ret = -ENOMEM; |
| 5200 | ip6_dst_ops_template.kmem_cachep = |
| 5201 | kmem_cache_create("ip6_dst_cache", sizeof(struct rt6_info), 0, |
| 5202 | SLAB_HWCACHE_ALIGN, NULL); |
| 5203 | if (!ip6_dst_ops_template.kmem_cachep) |
Fernando Carrijo | c19a28e | 2009-01-07 18:09:08 -0800 | [diff] [blame] | 5204 | goto out; |
David S. Miller | 14e50e5 | 2007-05-24 18:17:54 -0700 | [diff] [blame] | 5205 | |
Eric Dumazet | fc66f95 | 2010-10-08 06:37:34 +0000 | [diff] [blame] | 5206 | ret = dst_entries_init(&ip6_dst_blackhole_ops); |
Daniel Lezcano | 8ed6778 | 2008-03-04 13:48:30 -0800 | [diff] [blame] | 5207 | if (ret) |
Daniel Lezcano | bdb3289 | 2008-03-04 13:48:10 -0800 | [diff] [blame] | 5208 | goto out_kmem_cache; |
Daniel Lezcano | bdb3289 | 2008-03-04 13:48:10 -0800 | [diff] [blame] | 5209 | |
David S. Miller | c3426b4 | 2012-06-09 16:27:05 -0700 | [diff] [blame] | 5210 | ret = register_pernet_subsys(&ipv6_inetpeer_ops); |
| 5211 | if (ret) |
David S. Miller | e8803b6 | 2012-06-16 01:12:19 -0700 | [diff] [blame] | 5212 | goto out_dst_entries; |
Thomas Graf | 2a0c451 | 2012-06-14 23:00:17 +0000 | [diff] [blame] | 5213 | |
David S. Miller | 7e52b33 | 2012-06-15 15:51:55 -0700 | [diff] [blame] | 5214 | ret = register_pernet_subsys(&ip6_route_net_ops); |
| 5215 | if (ret) |
| 5216 | goto out_register_inetpeer; |
David S. Miller | c3426b4 | 2012-06-09 16:27:05 -0700 | [diff] [blame] | 5217 | |
Arnaud Ebalard | 5dc121e | 2008-10-01 02:37:56 -0700 | [diff] [blame] | 5218 | ip6_dst_blackhole_ops.kmem_cachep = ip6_dst_ops_template.kmem_cachep; |
| 5219 | |
David S. Miller | e8803b6 | 2012-06-16 01:12:19 -0700 | [diff] [blame] | 5220 | ret = fib6_init(); |
Daniel Lezcano | 433d49c | 2007-12-07 00:43:48 -0800 | [diff] [blame] | 5221 | if (ret) |
Daniel Lezcano | 8ed6778 | 2008-03-04 13:48:30 -0800 | [diff] [blame] | 5222 | goto out_register_subsys; |
Daniel Lezcano | 433d49c | 2007-12-07 00:43:48 -0800 | [diff] [blame] | 5223 | |
Daniel Lezcano | 433d49c | 2007-12-07 00:43:48 -0800 | [diff] [blame] | 5224 | ret = xfrm6_init(); |
| 5225 | if (ret) |
David S. Miller | e8803b6 | 2012-06-16 01:12:19 -0700 | [diff] [blame] | 5226 | goto out_fib6_init; |
Daniel Lezcano | c35b7e7 | 2007-12-08 00:14:11 -0800 | [diff] [blame] | 5227 | |
Daniel Lezcano | 433d49c | 2007-12-07 00:43:48 -0800 | [diff] [blame] | 5228 | ret = fib6_rules_init(); |
| 5229 | if (ret) |
| 5230 | goto xfrm6_init; |
Daniel Lezcano | 7e5449c | 2007-12-08 00:14:54 -0800 | [diff] [blame] | 5231 | |
Thomas Graf | d189634 | 2012-06-18 12:08:33 +0000 | [diff] [blame] | 5232 | ret = register_pernet_subsys(&ip6_route_net_late_ops); |
| 5233 | if (ret) |
| 5234 | goto fib6_rules_init; |
| 5235 | |
Florian Westphal | 16feebc | 2017-12-02 21:44:08 +0100 | [diff] [blame] | 5236 | ret = rtnl_register_module(THIS_MODULE, PF_INET6, RTM_NEWROUTE, |
| 5237 | inet6_rtm_newroute, NULL, 0); |
| 5238 | if (ret < 0) |
| 5239 | goto out_register_late_subsys; |
| 5240 | |
| 5241 | ret = rtnl_register_module(THIS_MODULE, PF_INET6, RTM_DELROUTE, |
| 5242 | inet6_rtm_delroute, NULL, 0); |
| 5243 | if (ret < 0) |
| 5244 | goto out_register_late_subsys; |
| 5245 | |
| 5246 | ret = rtnl_register_module(THIS_MODULE, PF_INET6, RTM_GETROUTE, |
| 5247 | inet6_rtm_getroute, NULL, |
| 5248 | RTNL_FLAG_DOIT_UNLOCKED); |
| 5249 | if (ret < 0) |
Thomas Graf | d189634 | 2012-06-18 12:08:33 +0000 | [diff] [blame] | 5250 | goto out_register_late_subsys; |
Daniel Lezcano | 433d49c | 2007-12-07 00:43:48 -0800 | [diff] [blame] | 5251 | |
Daniel Lezcano | 8ed6778 | 2008-03-04 13:48:30 -0800 | [diff] [blame] | 5252 | ret = register_netdevice_notifier(&ip6_route_dev_notifier); |
Daniel Lezcano | cdb1876 | 2008-03-04 13:45:33 -0800 | [diff] [blame] | 5253 | if (ret) |
Thomas Graf | d189634 | 2012-06-18 12:08:33 +0000 | [diff] [blame] | 5254 | goto out_register_late_subsys; |
Daniel Lezcano | 8ed6778 | 2008-03-04 13:48:30 -0800 | [diff] [blame] | 5255 | |
Martin KaFai Lau | 8d0b94a | 2015-05-22 20:56:04 -0700 | [diff] [blame] | 5256 | for_each_possible_cpu(cpu) { |
| 5257 | struct uncached_list *ul = per_cpu_ptr(&rt6_uncached_list, cpu); |
| 5258 | |
| 5259 | INIT_LIST_HEAD(&ul->head); |
| 5260 | spin_lock_init(&ul->lock); |
| 5261 | } |
| 5262 | |
Daniel Lezcano | 433d49c | 2007-12-07 00:43:48 -0800 | [diff] [blame] | 5263 | out: |
| 5264 | return ret; |
| 5265 | |
Thomas Graf | d189634 | 2012-06-18 12:08:33 +0000 | [diff] [blame] | 5266 | out_register_late_subsys: |
Florian Westphal | 16feebc | 2017-12-02 21:44:08 +0100 | [diff] [blame] | 5267 | rtnl_unregister_all(PF_INET6); |
Thomas Graf | d189634 | 2012-06-18 12:08:33 +0000 | [diff] [blame] | 5268 | unregister_pernet_subsys(&ip6_route_net_late_ops); |
Daniel Lezcano | 433d49c | 2007-12-07 00:43:48 -0800 | [diff] [blame] | 5269 | fib6_rules_init: |
Daniel Lezcano | 433d49c | 2007-12-07 00:43:48 -0800 | [diff] [blame] | 5270 | fib6_rules_cleanup(); |
| 5271 | xfrm6_init: |
Daniel Lezcano | 433d49c | 2007-12-07 00:43:48 -0800 | [diff] [blame] | 5272 | xfrm6_fini(); |
Thomas Graf | 2a0c451 | 2012-06-14 23:00:17 +0000 | [diff] [blame] | 5273 | out_fib6_init: |
| 5274 | fib6_gc_cleanup(); |
Daniel Lezcano | 8ed6778 | 2008-03-04 13:48:30 -0800 | [diff] [blame] | 5275 | out_register_subsys: |
| 5276 | unregister_pernet_subsys(&ip6_route_net_ops); |
David S. Miller | 7e52b33 | 2012-06-15 15:51:55 -0700 | [diff] [blame] | 5277 | out_register_inetpeer: |
| 5278 | unregister_pernet_subsys(&ipv6_inetpeer_ops); |
Eric Dumazet | fc66f95 | 2010-10-08 06:37:34 +0000 | [diff] [blame] | 5279 | out_dst_entries: |
| 5280 | dst_entries_destroy(&ip6_dst_blackhole_ops); |
Daniel Lezcano | 433d49c | 2007-12-07 00:43:48 -0800 | [diff] [blame] | 5281 | out_kmem_cache: |
Benjamin Thery | f2fc6a5 | 2008-03-04 13:49:23 -0800 | [diff] [blame] | 5282 | kmem_cache_destroy(ip6_dst_ops_template.kmem_cachep); |
Daniel Lezcano | 433d49c | 2007-12-07 00:43:48 -0800 | [diff] [blame] | 5283 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5284 | } |
| 5285 | |
| 5286 | void ip6_route_cleanup(void) |
| 5287 | { |
Daniel Lezcano | 8ed6778 | 2008-03-04 13:48:30 -0800 | [diff] [blame] | 5288 | unregister_netdevice_notifier(&ip6_route_dev_notifier); |
Thomas Graf | d189634 | 2012-06-18 12:08:33 +0000 | [diff] [blame] | 5289 | unregister_pernet_subsys(&ip6_route_net_late_ops); |
Thomas Graf | 101367c | 2006-08-04 03:39:02 -0700 | [diff] [blame] | 5290 | fib6_rules_cleanup(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5291 | xfrm6_fini(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5292 | fib6_gc_cleanup(); |
David S. Miller | c3426b4 | 2012-06-09 16:27:05 -0700 | [diff] [blame] | 5293 | unregister_pernet_subsys(&ipv6_inetpeer_ops); |
Daniel Lezcano | 8ed6778 | 2008-03-04 13:48:30 -0800 | [diff] [blame] | 5294 | unregister_pernet_subsys(&ip6_route_net_ops); |
Xiaotian Feng | 41bb78b | 2010-11-02 16:11:05 +0000 | [diff] [blame] | 5295 | dst_entries_destroy(&ip6_dst_blackhole_ops); |
Benjamin Thery | f2fc6a5 | 2008-03-04 13:49:23 -0800 | [diff] [blame] | 5296 | kmem_cache_destroy(ip6_dst_ops_template.kmem_cachep); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5297 | } |