blob: c59e97cf9d25da3084098572896178b71fb28fe6 [file] [log] [blame]
Thomas Gleixner2874c5f2019-05-27 08:55:01 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * Linux INET6 implementation
4 * FIB front-end.
5 *
6 * Authors:
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09007 * Pedro Roque <roque@di.fc.ul.pt>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 */
9
10/* Changes:
11 *
12 * YOSHIFUJI Hideaki @USAGI
13 * reworked default router selection.
14 * - respect outgoing interface
15 * - select from (probably) reachable routers (i.e.
16 * routers in REACHABLE, STALE, DELAY or PROBE states).
17 * - always select the same router if it is (probably)
18 * reachable. otherwise, round-robin the list.
YOSHIFUJI Hideakic0bece92006-08-23 17:23:25 -070019 * Ville Nuorvala
20 * Fixed routing subtrees.
Linus Torvalds1da177e2005-04-16 15:20:36 -070021 */
22
Joe Perchesf3213832012-05-15 14:11:53 +000023#define pr_fmt(fmt) "IPv6: " fmt
24
Randy Dunlap4fc268d2006-01-11 12:17:47 -080025#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <linux/errno.h>
Paul Gortmakerbc3b2d72011-07-15 11:47:34 -040027#include <linux/export.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <linux/types.h>
29#include <linux/times.h>
30#include <linux/socket.h>
31#include <linux/sockios.h>
32#include <linux/net.h>
33#include <linux/route.h>
34#include <linux/netdevice.h>
35#include <linux/in6.h>
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +090036#include <linux/mroute6.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#include <linux/init.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#include <linux/if_arp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#include <linux/proc_fs.h>
40#include <linux/seq_file.h>
Daniel Lezcano5b7c9312008-03-03 23:28:58 -080041#include <linux/nsproxy.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090042#include <linux/slab.h>
Wei Wang35732d02017-10-06 12:05:57 -070043#include <linux/jhash.h>
Eric W. Biederman457c4cb2007-09-12 12:01:34 +020044#include <net/net_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#include <net/snmp.h>
46#include <net/ipv6.h>
47#include <net/ip6_fib.h>
48#include <net/ip6_route.h>
49#include <net/ndisc.h>
50#include <net/addrconf.h>
51#include <net/tcp.h>
52#include <linux/rtnetlink.h>
53#include <net/dst.h>
Jiri Benc904af042015-08-20 13:56:31 +020054#include <net/dst_metadata.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070055#include <net/xfrm.h>
Tom Tucker8d717402006-07-30 20:43:36 -070056#include <net/netevent.h>
Thomas Graf21713eb2006-08-15 00:35:24 -070057#include <net/netlink.h>
David Ahern3c618c12019-04-20 09:28:20 -070058#include <net/rtnh.h>
Roopa Prabhu19e42e42015-07-21 10:43:48 +020059#include <net/lwtunnel.h>
Jiri Benc904af042015-08-20 13:56:31 +020060#include <net/ip_tunnels.h>
David Ahernca254492015-10-12 11:47:10 -070061#include <net/l3mdev.h>
Roopa Prabhueacb9382018-05-22 14:03:28 -070062#include <net/ip.h>
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080063#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070064
65#ifdef CONFIG_SYSCTL
66#include <linux/sysctl.h>
67#endif
68
David Ahern30d444d2018-05-23 17:08:48 -070069static int ip6_rt_type_to_error(u8 fib6_type);
70
71#define CREATE_TRACE_POINTS
72#include <trace/events/fib6.h>
73EXPORT_TRACEPOINT_SYMBOL_GPL(fib6_table_lookup);
74#undef CREATE_TRACE_POINTS
75
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +020076enum rt6_nud_state {
Jiri Benc7e980562013-12-11 13:48:20 +010077 RT6_NUD_FAIL_HARD = -3,
78 RT6_NUD_FAIL_PROBE = -2,
79 RT6_NUD_FAIL_DO_RR = -1,
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +020080 RT6_NUD_SUCCEED = 1
81};
82
Linus Torvalds1da177e2005-04-16 15:20:36 -070083static struct dst_entry *ip6_dst_check(struct dst_entry *dst, u32 cookie);
David S. Miller0dbaee32010-12-13 12:52:14 -080084static unsigned int ip6_default_advmss(const struct dst_entry *dst);
Steffen Klassertebb762f2011-11-23 02:12:51 +000085static unsigned int ip6_mtu(const struct dst_entry *dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -070086static struct dst_entry *ip6_negative_advice(struct dst_entry *);
87static void ip6_dst_destroy(struct dst_entry *);
88static void ip6_dst_ifdown(struct dst_entry *,
89 struct net_device *dev, int how);
Daniel Lezcano569d3642008-01-18 03:56:57 -080090static int ip6_dst_gc(struct dst_ops *ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -070091
92static int ip6_pkt_discard(struct sk_buff *skb);
Eric W. Biedermanede20592015-10-07 16:48:47 -050093static int ip6_pkt_discard_out(struct net *net, struct sock *sk, struct sk_buff *skb);
Kamala R7150aed2013-12-02 19:55:21 +053094static int ip6_pkt_prohibit(struct sk_buff *skb);
Eric W. Biedermanede20592015-10-07 16:48:47 -050095static int ip6_pkt_prohibit_out(struct net *net, struct sock *sk, struct sk_buff *skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -070096static void ip6_link_failure(struct sk_buff *skb);
David S. Miller6700c272012-07-17 03:29:28 -070097static void ip6_rt_update_pmtu(struct dst_entry *dst, struct sock *sk,
98 struct sk_buff *skb, u32 mtu);
99static void rt6_do_redirect(struct dst_entry *dst, struct sock *sk,
100 struct sk_buff *skb);
David Ahern702cea52019-04-09 14:41:13 -0700101static int rt6_score_route(const struct fib6_nh *nh, u32 fib6_flags, int oif,
102 int strict);
David Aherna1b7a1f2019-06-08 14:53:26 -0700103static size_t rt6_nlmsg_size(struct fib6_info *f6i);
David Ahernd4ead6b2018-04-17 17:33:16 -0700104static int rt6_fill_node(struct net *net, struct sk_buff *skb,
David Ahern8d1c8022018-04-17 17:33:26 -0700105 struct fib6_info *rt, struct dst_entry *dst,
David Ahernd4ead6b2018-04-17 17:33:16 -0700106 struct in6_addr *dest, struct in6_addr *src,
David Ahern16a16cd2017-02-02 12:37:11 -0800107 int iif, int type, u32 portid, u32 seq,
108 unsigned int flags);
David Ahern7e4b5122019-04-16 14:36:00 -0700109static struct rt6_info *rt6_find_cached_rt(const struct fib6_result *res,
Wei Wang510e2ce2019-05-16 13:30:54 -0700110 const struct in6_addr *daddr,
111 const struct in6_addr *saddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800113#ifdef CONFIG_IPV6_ROUTE_INFO
David Ahern8d1c8022018-04-17 17:33:26 -0700114static struct fib6_info *rt6_add_route_info(struct net *net,
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000115 const struct in6_addr *prefix, int prefixlen,
David Ahern830218c2016-10-24 10:52:35 -0700116 const struct in6_addr *gwaddr,
117 struct net_device *dev,
Eric Dumazet95c96172012-04-15 05:58:06 +0000118 unsigned int pref);
David Ahern8d1c8022018-04-17 17:33:26 -0700119static struct fib6_info *rt6_get_route_info(struct net *net,
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000120 const struct in6_addr *prefix, int prefixlen,
David Ahern830218c2016-10-24 10:52:35 -0700121 const struct in6_addr *gwaddr,
122 struct net_device *dev);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800123#endif
124
Martin KaFai Lau8d0b94a2015-05-22 20:56:04 -0700125struct uncached_list {
126 spinlock_t lock;
127 struct list_head head;
128};
129
130static DEFINE_PER_CPU_ALIGNED(struct uncached_list, rt6_uncached_list);
131
Xin Long510c3212018-02-14 19:06:02 +0800132void rt6_uncached_list_add(struct rt6_info *rt)
Martin KaFai Lau8d0b94a2015-05-22 20:56:04 -0700133{
134 struct uncached_list *ul = raw_cpu_ptr(&rt6_uncached_list);
135
Martin KaFai Lau8d0b94a2015-05-22 20:56:04 -0700136 rt->rt6i_uncached_list = ul;
137
138 spin_lock_bh(&ul->lock);
139 list_add_tail(&rt->rt6i_uncached, &ul->head);
140 spin_unlock_bh(&ul->lock);
141}
142
Xin Long510c3212018-02-14 19:06:02 +0800143void rt6_uncached_list_del(struct rt6_info *rt)
Martin KaFai Lau8d0b94a2015-05-22 20:56:04 -0700144{
145 if (!list_empty(&rt->rt6i_uncached)) {
146 struct uncached_list *ul = rt->rt6i_uncached_list;
Wei Wang81eb8442017-10-06 12:06:11 -0700147 struct net *net = dev_net(rt->dst.dev);
Martin KaFai Lau8d0b94a2015-05-22 20:56:04 -0700148
149 spin_lock_bh(&ul->lock);
150 list_del(&rt->rt6i_uncached);
Wei Wang81eb8442017-10-06 12:06:11 -0700151 atomic_dec(&net->ipv6.rt6_stats->fib_rt_uncache);
Martin KaFai Lau8d0b94a2015-05-22 20:56:04 -0700152 spin_unlock_bh(&ul->lock);
153 }
154}
155
156static void rt6_uncached_list_flush_dev(struct net *net, struct net_device *dev)
157{
158 struct net_device *loopback_dev = net->loopback_dev;
159 int cpu;
160
Eric W. Biedermane332bc62015-10-12 11:02:08 -0500161 if (dev == loopback_dev)
162 return;
163
Martin KaFai Lau8d0b94a2015-05-22 20:56:04 -0700164 for_each_possible_cpu(cpu) {
165 struct uncached_list *ul = per_cpu_ptr(&rt6_uncached_list, cpu);
166 struct rt6_info *rt;
167
168 spin_lock_bh(&ul->lock);
169 list_for_each_entry(rt, &ul->head, rt6i_uncached) {
170 struct inet6_dev *rt_idev = rt->rt6i_idev;
171 struct net_device *rt_dev = rt->dst.dev;
172
Eric W. Biedermane332bc62015-10-12 11:02:08 -0500173 if (rt_idev->dev == dev) {
Martin KaFai Lau8d0b94a2015-05-22 20:56:04 -0700174 rt->rt6i_idev = in6_dev_get(loopback_dev);
175 in6_dev_put(rt_idev);
176 }
177
Eric W. Biedermane332bc62015-10-12 11:02:08 -0500178 if (rt_dev == dev) {
Martin KaFai Lau8d0b94a2015-05-22 20:56:04 -0700179 rt->dst.dev = loopback_dev;
180 dev_hold(rt->dst.dev);
181 dev_put(rt_dev);
182 }
183 }
184 spin_unlock_bh(&ul->lock);
185 }
186}
187
David Ahernf8a1b432018-04-17 17:33:21 -0700188static inline const void *choose_neigh_daddr(const struct in6_addr *p,
David S. Millerf894cbf2012-07-02 21:52:24 -0700189 struct sk_buff *skb,
190 const void *daddr)
David S. Miller39232972012-01-26 15:22:32 -0500191{
David S. Millera7563f32012-01-26 16:29:16 -0500192 if (!ipv6_addr_any(p))
David S. Miller39232972012-01-26 15:22:32 -0500193 return (const void *) p;
David S. Millerf894cbf2012-07-02 21:52:24 -0700194 else if (skb)
195 return &ipv6_hdr(skb)->daddr;
David S. Miller39232972012-01-26 15:22:32 -0500196 return daddr;
197}
198
David Ahernf8a1b432018-04-17 17:33:21 -0700199struct neighbour *ip6_neigh_lookup(const struct in6_addr *gw,
200 struct net_device *dev,
201 struct sk_buff *skb,
202 const void *daddr)
David S. Millerd3aaeb32011-07-18 00:40:17 -0700203{
David S. Miller39232972012-01-26 15:22:32 -0500204 struct neighbour *n;
205
David Ahernf8a1b432018-04-17 17:33:21 -0700206 daddr = choose_neigh_daddr(gw, skb, daddr);
207 n = __ipv6_neigh_lookup(dev, daddr);
David S. Millerf83c7792011-12-28 15:41:23 -0500208 if (n)
209 return n;
Stefano Brivio7adf3242019-01-02 13:29:27 +0100210
211 n = neigh_create(&nd_tbl, daddr, dev);
212 return IS_ERR(n) ? NULL : n;
David Ahernf8a1b432018-04-17 17:33:21 -0700213}
214
215static struct neighbour *ip6_dst_neigh_lookup(const struct dst_entry *dst,
216 struct sk_buff *skb,
217 const void *daddr)
218{
219 const struct rt6_info *rt = container_of(dst, struct rt6_info, dst);
220
221 return ip6_neigh_lookup(&rt->rt6i_gateway, dst->dev, skb, daddr);
David S. Millerf83c7792011-12-28 15:41:23 -0500222}
223
Julian Anastasov63fca652017-02-06 23:14:15 +0200224static void ip6_confirm_neigh(const struct dst_entry *dst, const void *daddr)
225{
226 struct net_device *dev = dst->dev;
227 struct rt6_info *rt = (struct rt6_info *)dst;
228
David Ahernf8a1b432018-04-17 17:33:21 -0700229 daddr = choose_neigh_daddr(&rt->rt6i_gateway, NULL, daddr);
Julian Anastasov63fca652017-02-06 23:14:15 +0200230 if (!daddr)
231 return;
232 if (dev->flags & (IFF_NOARP | IFF_LOOPBACK))
233 return;
234 if (ipv6_addr_is_multicast((const struct in6_addr *)daddr))
235 return;
236 __ipv6_confirm_neigh(dev, daddr);
237}
238
Daniel Lezcano9a7ec3a2008-03-04 13:48:53 -0800239static struct dst_ops ip6_dst_ops_template = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 .family = AF_INET6,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 .gc = ip6_dst_gc,
242 .gc_thresh = 1024,
243 .check = ip6_dst_check,
David S. Miller0dbaee32010-12-13 12:52:14 -0800244 .default_advmss = ip6_default_advmss,
Steffen Klassertebb762f2011-11-23 02:12:51 +0000245 .mtu = ip6_mtu,
David Ahernd4ead6b2018-04-17 17:33:16 -0700246 .cow_metrics = dst_cow_metrics_generic,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 .destroy = ip6_dst_destroy,
248 .ifdown = ip6_dst_ifdown,
249 .negative_advice = ip6_negative_advice,
250 .link_failure = ip6_link_failure,
251 .update_pmtu = ip6_rt_update_pmtu,
David S. Miller6e157b62012-07-12 00:05:02 -0700252 .redirect = rt6_do_redirect,
Eric W. Biederman9f8955c2015-10-07 16:48:39 -0500253 .local_out = __ip6_local_out,
David Ahernf8a1b432018-04-17 17:33:21 -0700254 .neigh_lookup = ip6_dst_neigh_lookup,
Julian Anastasov63fca652017-02-06 23:14:15 +0200255 .confirm_neigh = ip6_confirm_neigh,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256};
257
Steffen Klassertebb762f2011-11-23 02:12:51 +0000258static unsigned int ip6_blackhole_mtu(const struct dst_entry *dst)
Roland Dreierec831ea2011-01-31 13:16:00 -0800259{
Steffen Klassert618f9bc2011-11-23 02:13:31 +0000260 unsigned int mtu = dst_metric_raw(dst, RTAX_MTU);
261
262 return mtu ? : dst->dev->mtu;
Roland Dreierec831ea2011-01-31 13:16:00 -0800263}
264
David S. Miller6700c272012-07-17 03:29:28 -0700265static void ip6_rt_blackhole_update_pmtu(struct dst_entry *dst, struct sock *sk,
266 struct sk_buff *skb, u32 mtu)
David S. Miller14e50e52007-05-24 18:17:54 -0700267{
268}
269
David S. Miller6700c272012-07-17 03:29:28 -0700270static void ip6_rt_blackhole_redirect(struct dst_entry *dst, struct sock *sk,
271 struct sk_buff *skb)
David S. Millerb587ee32012-07-12 00:39:24 -0700272{
273}
274
David S. Miller14e50e52007-05-24 18:17:54 -0700275static struct dst_ops ip6_dst_blackhole_ops = {
276 .family = AF_INET6,
David S. Miller14e50e52007-05-24 18:17:54 -0700277 .destroy = ip6_dst_destroy,
278 .check = ip6_dst_check,
Steffen Klassertebb762f2011-11-23 02:12:51 +0000279 .mtu = ip6_blackhole_mtu,
Eric Dumazet214f45c2011-02-18 11:39:01 -0800280 .default_advmss = ip6_default_advmss,
David S. Miller14e50e52007-05-24 18:17:54 -0700281 .update_pmtu = ip6_rt_blackhole_update_pmtu,
David S. Millerb587ee32012-07-12 00:39:24 -0700282 .redirect = ip6_rt_blackhole_redirect,
Martin KaFai Lau0a1f5962015-10-15 16:39:58 -0700283 .cow_metrics = dst_cow_metrics_generic,
David Ahernf8a1b432018-04-17 17:33:21 -0700284 .neigh_lookup = ip6_dst_neigh_lookup,
David S. Miller14e50e52007-05-24 18:17:54 -0700285};
286
David S. Miller62fa8a82011-01-26 20:51:05 -0800287static const u32 ip6_template_metrics[RTAX_MAX] = {
Li RongQing14edd872012-10-24 14:01:18 +0800288 [RTAX_HOPLIMIT - 1] = 0,
David S. Miller62fa8a82011-01-26 20:51:05 -0800289};
290
David Ahern8d1c8022018-04-17 17:33:26 -0700291static const struct fib6_info fib6_null_entry_template = {
David Ahern93c2fb22018-04-18 15:38:59 -0700292 .fib6_flags = (RTF_REJECT | RTF_NONEXTHOP),
293 .fib6_protocol = RTPROT_KERNEL,
294 .fib6_metric = ~(u32)0,
Eric Dumazetf05713e2019-04-22 18:35:03 -0700295 .fib6_ref = REFCOUNT_INIT(1),
David Ahern421842e2018-04-17 17:33:18 -0700296 .fib6_type = RTN_UNREACHABLE,
297 .fib6_metrics = (struct dst_metrics *)&dst_default_metrics,
298};
299
Eric Dumazetfb0af4c2012-09-11 21:47:51 +0000300static const struct rt6_info ip6_null_entry_template = {
Changli Gaod8d1f302010-06-10 23:31:35 -0700301 .dst = {
302 .__refcnt = ATOMIC_INIT(1),
303 .__use = 1,
Nicolas Dichtel2c20cbd2012-09-10 22:09:47 +0000304 .obsolete = DST_OBSOLETE_FORCE_CHK,
Changli Gaod8d1f302010-06-10 23:31:35 -0700305 .error = -ENETUNREACH,
Changli Gaod8d1f302010-06-10 23:31:35 -0700306 .input = ip6_pkt_discard,
307 .output = ip6_pkt_discard_out,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 },
309 .rt6i_flags = (RTF_REJECT | RTF_NONEXTHOP),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310};
311
Thomas Graf101367c2006-08-04 03:39:02 -0700312#ifdef CONFIG_IPV6_MULTIPLE_TABLES
313
Eric Dumazetfb0af4c2012-09-11 21:47:51 +0000314static const struct rt6_info ip6_prohibit_entry_template = {
Changli Gaod8d1f302010-06-10 23:31:35 -0700315 .dst = {
316 .__refcnt = ATOMIC_INIT(1),
317 .__use = 1,
Nicolas Dichtel2c20cbd2012-09-10 22:09:47 +0000318 .obsolete = DST_OBSOLETE_FORCE_CHK,
Changli Gaod8d1f302010-06-10 23:31:35 -0700319 .error = -EACCES,
Changli Gaod8d1f302010-06-10 23:31:35 -0700320 .input = ip6_pkt_prohibit,
321 .output = ip6_pkt_prohibit_out,
Thomas Graf101367c2006-08-04 03:39:02 -0700322 },
323 .rt6i_flags = (RTF_REJECT | RTF_NONEXTHOP),
Thomas Graf101367c2006-08-04 03:39:02 -0700324};
325
Eric Dumazetfb0af4c2012-09-11 21:47:51 +0000326static const struct rt6_info ip6_blk_hole_entry_template = {
Changli Gaod8d1f302010-06-10 23:31:35 -0700327 .dst = {
328 .__refcnt = ATOMIC_INIT(1),
329 .__use = 1,
Nicolas Dichtel2c20cbd2012-09-10 22:09:47 +0000330 .obsolete = DST_OBSOLETE_FORCE_CHK,
Changli Gaod8d1f302010-06-10 23:31:35 -0700331 .error = -EINVAL,
Changli Gaod8d1f302010-06-10 23:31:35 -0700332 .input = dst_discard,
Eric W. Biedermanede20592015-10-07 16:48:47 -0500333 .output = dst_discard_out,
Thomas Graf101367c2006-08-04 03:39:02 -0700334 },
335 .rt6i_flags = (RTF_REJECT | RTF_NONEXTHOP),
Thomas Graf101367c2006-08-04 03:39:02 -0700336};
337
338#endif
339
Martin KaFai Lauebfa45f2015-10-15 16:39:57 -0700340static void rt6_info_init(struct rt6_info *rt)
341{
342 struct dst_entry *dst = &rt->dst;
343
344 memset(dst + 1, 0, sizeof(*rt) - sizeof(*dst));
Martin KaFai Lauebfa45f2015-10-15 16:39:57 -0700345 INIT_LIST_HEAD(&rt->rt6i_uncached);
346}
347
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348/* allocate dst with ip6_dst_ops */
David Ahern93531c62018-04-17 17:33:25 -0700349struct rt6_info *ip6_dst_alloc(struct net *net, struct net_device *dev,
350 int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351{
David S. Miller97bab732012-06-09 22:36:36 -0700352 struct rt6_info *rt = dst_alloc(&net->ipv6.ip6_dst_ops, dev,
Wei Wangb2a9c0e2017-06-17 10:42:41 -0700353 1, DST_OBSOLETE_FORCE_CHK, flags);
David S. Millercf911662011-04-28 14:31:47 -0700354
Wei Wang81eb8442017-10-06 12:06:11 -0700355 if (rt) {
Martin KaFai Lauebfa45f2015-10-15 16:39:57 -0700356 rt6_info_init(rt);
Wei Wang81eb8442017-10-06 12:06:11 -0700357 atomic_inc(&net->ipv6.rt6_stats->fib_rt_alloc);
358 }
Steffen Klassert81048912012-07-05 23:37:09 +0000359
David S. Millercf911662011-04-28 14:31:47 -0700360 return rt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361}
David Ahern9ab179d2016-04-07 11:10:06 -0700362EXPORT_SYMBOL(ip6_dst_alloc);
Martin KaFai Laud52d3992015-05-22 20:56:06 -0700363
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364static void ip6_dst_destroy(struct dst_entry *dst)
365{
366 struct rt6_info *rt = (struct rt6_info *)dst;
David Aherna68886a2018-04-20 15:38:02 -0700367 struct fib6_info *from;
Martin KaFai Lau8d0b94a2015-05-22 20:56:04 -0700368 struct inet6_dev *idev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369
David Ahern1620a332018-10-04 20:07:54 -0700370 ip_dst_metrics_put(dst);
Martin KaFai Lau8d0b94a2015-05-22 20:56:04 -0700371 rt6_uncached_list_del(rt);
372
373 idev = rt->rt6i_idev;
David S. Miller38308472011-12-03 18:02:47 -0500374 if (idev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 rt->rt6i_idev = NULL;
376 in6_dev_put(idev);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900377 }
Gao feng1716a962012-04-06 00:13:10 +0000378
Eric Dumazet0e233872019-04-28 12:22:25 -0700379 from = xchg((__force struct fib6_info **)&rt->from, NULL);
David Ahern93531c62018-04-17 17:33:25 -0700380 fib6_info_release(from);
David S. Millerb3419362010-11-30 12:27:11 -0800381}
382
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383static void ip6_dst_ifdown(struct dst_entry *dst, struct net_device *dev,
384 int how)
385{
386 struct rt6_info *rt = (struct rt6_info *)dst;
387 struct inet6_dev *idev = rt->rt6i_idev;
Denis V. Lunev5a3e55d2007-12-07 00:38:10 -0800388 struct net_device *loopback_dev =
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900389 dev_net(dev)->loopback_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390
Wei Wange5645f52017-08-14 10:44:59 -0700391 if (idev && idev->dev != loopback_dev) {
392 struct inet6_dev *loopback_idev = in6_dev_get(loopback_dev);
393 if (loopback_idev) {
394 rt->rt6i_idev = loopback_idev;
395 in6_dev_put(idev);
David S. Miller97cac082012-07-02 22:43:47 -0700396 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 }
398}
399
Martin KaFai Lau5973fb12015-11-11 11:51:07 -0800400static bool __rt6_check_expired(const struct rt6_info *rt)
401{
402 if (rt->rt6i_flags & RTF_EXPIRES)
403 return time_after(jiffies, rt->dst.expires);
404 else
405 return false;
406}
407
Eric Dumazeta50feda2012-05-18 18:57:34 +0000408static bool rt6_check_expired(const struct rt6_info *rt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409{
David Aherna68886a2018-04-20 15:38:02 -0700410 struct fib6_info *from;
411
412 from = rcu_dereference(rt->from);
413
Gao feng1716a962012-04-06 00:13:10 +0000414 if (rt->rt6i_flags & RTF_EXPIRES) {
415 if (time_after(jiffies, rt->dst.expires))
Eric Dumazeta50feda2012-05-18 18:57:34 +0000416 return true;
David Aherna68886a2018-04-20 15:38:02 -0700417 } else if (from) {
Xin Long1e2ea8a2017-08-26 20:10:10 +0800418 return rt->dst.obsolete != DST_OBSOLETE_FORCE_CHK ||
David Aherna68886a2018-04-20 15:38:02 -0700419 fib6_check_expired(from);
Gao feng1716a962012-04-06 00:13:10 +0000420 }
Eric Dumazeta50feda2012-05-18 18:57:34 +0000421 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422}
423
David Ahernb1d40992019-04-16 14:35:59 -0700424void fib6_select_path(const struct net *net, struct fib6_result *res,
425 struct flowi6 *fl6, int oif, bool have_oif_match,
426 const struct sk_buff *skb, int strict)
Nicolas Dichtel51ebd312012-10-22 03:42:09 +0000427{
David Ahern8d1c8022018-04-17 17:33:26 -0700428 struct fib6_info *sibling, *next_sibling;
David Ahernb1d40992019-04-16 14:35:59 -0700429 struct fib6_info *match = res->f6i;
430
David Ahernf88d8ea2019-06-03 20:19:52 -0700431 if ((!match->fib6_nsiblings && !match->nh) || have_oif_match)
David Ahernb1d40992019-04-16 14:35:59 -0700432 goto out;
Nicolas Dichtel51ebd312012-10-22 03:42:09 +0000433
Jakub Sitnickib673d6c2017-08-23 09:58:31 +0200434 /* We might have already computed the hash for ICMPv6 errors. In such
435 * case it will always be non-zero. Otherwise now is the time to do it.
436 */
David Ahernf88d8ea2019-06-03 20:19:52 -0700437 if (!fl6->mp_hash &&
438 (!match->nh || nexthop_is_multipath(match->nh)))
David Ahernb4bac172018-03-02 08:32:18 -0800439 fl6->mp_hash = rt6_multipath_hash(net, fl6, skb, NULL);
Jakub Sitnickib673d6c2017-08-23 09:58:31 +0200440
David Ahernf88d8ea2019-06-03 20:19:52 -0700441 if (unlikely(match->nh)) {
442 nexthop_path_fib6_result(res, fl6->mp_hash);
443 return;
444 }
445
David Ahern1cf844c2019-05-22 20:27:59 -0700446 if (fl6->mp_hash <= atomic_read(&match->fib6_nh->fib_nh_upper_bound))
David Ahernb1d40992019-04-16 14:35:59 -0700447 goto out;
Ido Schimmelbbfcd772017-11-21 09:50:12 +0200448
David Ahern93c2fb22018-04-18 15:38:59 -0700449 list_for_each_entry_safe(sibling, next_sibling, &match->fib6_siblings,
450 fib6_siblings) {
David Ahern1cf844c2019-05-22 20:27:59 -0700451 const struct fib6_nh *nh = sibling->fib6_nh;
David Ahern5e670d82018-04-17 17:33:14 -0700452 int nh_upper_bound;
453
David Ahern702cea52019-04-09 14:41:13 -0700454 nh_upper_bound = atomic_read(&nh->fib_nh_upper_bound);
David Ahern5e670d82018-04-17 17:33:14 -0700455 if (fl6->mp_hash > nh_upper_bound)
Ido Schimmel3d709f62018-01-09 16:40:27 +0200456 continue;
David Ahern702cea52019-04-09 14:41:13 -0700457 if (rt6_score_route(nh, sibling->fib6_flags, oif, strict) < 0)
Ido Schimmel3d709f62018-01-09 16:40:27 +0200458 break;
459 match = sibling;
460 break;
461 }
462
David Ahernb1d40992019-04-16 14:35:59 -0700463out:
464 res->f6i = match;
David Ahern1cf844c2019-05-22 20:27:59 -0700465 res->nh = match->fib6_nh;
Nicolas Dichtel51ebd312012-10-22 03:42:09 +0000466}
467
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468/*
Wei Wang66f5d6c2017-10-06 12:06:10 -0700469 * Route lookup. rcu_read_lock() should be held.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 */
471
David Ahern0c59d002019-04-09 14:41:18 -0700472static bool __rt6_device_match(struct net *net, const struct fib6_nh *nh,
473 const struct in6_addr *saddr, int oif, int flags)
474{
475 const struct net_device *dev;
476
477 if (nh->fib_nh_flags & RTNH_F_DEAD)
478 return false;
479
480 dev = nh->fib_nh_dev;
481 if (oif) {
482 if (dev->ifindex == oif)
483 return true;
484 } else {
485 if (ipv6_chk_addr(net, saddr, dev,
486 flags & RT6_LOOKUP_F_IFACE))
487 return true;
488 }
489
490 return false;
491}
492
David Ahern962b6802019-06-08 14:53:24 -0700493struct fib6_nh_dm_arg {
494 struct net *net;
495 const struct in6_addr *saddr;
496 int oif;
497 int flags;
498 struct fib6_nh *nh;
499};
500
501static int __rt6_nh_dev_match(struct fib6_nh *nh, void *_arg)
502{
503 struct fib6_nh_dm_arg *arg = _arg;
504
505 arg->nh = nh;
506 return __rt6_device_match(arg->net, nh, arg->saddr, arg->oif,
507 arg->flags);
508}
509
510/* returns fib6_nh from nexthop or NULL */
511static struct fib6_nh *rt6_nh_dev_match(struct net *net, struct nexthop *nh,
512 struct fib6_result *res,
513 const struct in6_addr *saddr,
514 int oif, int flags)
515{
516 struct fib6_nh_dm_arg arg = {
517 .net = net,
518 .saddr = saddr,
519 .oif = oif,
520 .flags = flags,
521 };
522
523 if (nexthop_is_blackhole(nh))
524 return NULL;
525
526 if (nexthop_for_each_fib6_nh(nh, __rt6_nh_dev_match, &arg))
527 return arg.nh;
528
529 return NULL;
530}
531
David Ahern75ef7382019-04-16 14:36:07 -0700532static void rt6_device_match(struct net *net, struct fib6_result *res,
533 const struct in6_addr *saddr, int oif, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534{
David Ahern75ef7382019-04-16 14:36:07 -0700535 struct fib6_info *f6i = res->f6i;
536 struct fib6_info *spf6i;
537 struct fib6_nh *nh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538
David Ahern75ef7382019-04-16 14:36:07 -0700539 if (!oif && ipv6_addr_any(saddr)) {
David Ahernf88d8ea2019-06-03 20:19:52 -0700540 if (unlikely(f6i->nh)) {
541 nh = nexthop_fib6_nh(f6i->nh);
542 if (nexthop_is_blackhole(f6i->nh))
543 goto out_blackhole;
544 } else {
545 nh = f6i->fib6_nh;
546 }
David Ahern7d21fec2019-04-16 14:36:11 -0700547 if (!(nh->fib_nh_flags & RTNH_F_DEAD))
548 goto out;
YOSHIFUJI Hideakidd3abc42008-07-02 18:30:18 +0900549 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550
David Ahern75ef7382019-04-16 14:36:07 -0700551 for (spf6i = f6i; spf6i; spf6i = rcu_dereference(spf6i->fib6_next)) {
David Ahern962b6802019-06-08 14:53:24 -0700552 bool matched = false;
553
554 if (unlikely(spf6i->nh)) {
555 nh = rt6_nh_dev_match(net, spf6i->nh, res, saddr,
556 oif, flags);
557 if (nh)
558 matched = true;
559 } else {
560 nh = spf6i->fib6_nh;
561 if (__rt6_device_match(net, nh, saddr, oif, flags))
562 matched = true;
563 }
564 if (matched) {
David Ahern75ef7382019-04-16 14:36:07 -0700565 res->f6i = spf6i;
David Ahern7d21fec2019-04-16 14:36:11 -0700566 goto out;
David Ahern75ef7382019-04-16 14:36:07 -0700567 }
568 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569
David Ahern75ef7382019-04-16 14:36:07 -0700570 if (oif && flags & RT6_LOOKUP_F_IFACE) {
571 res->f6i = net->ipv6.fib6_null_entry;
David Ahern1cf844c2019-05-22 20:27:59 -0700572 nh = res->f6i->fib6_nh;
David Ahern7d21fec2019-04-16 14:36:11 -0700573 goto out;
David Ahern75ef7382019-04-16 14:36:07 -0700574 }
575
David Ahernf88d8ea2019-06-03 20:19:52 -0700576 if (unlikely(f6i->nh)) {
577 nh = nexthop_fib6_nh(f6i->nh);
578 if (nexthop_is_blackhole(f6i->nh))
579 goto out_blackhole;
580 } else {
581 nh = f6i->fib6_nh;
582 }
583
David Ahern7d21fec2019-04-16 14:36:11 -0700584 if (nh->fib_nh_flags & RTNH_F_DEAD) {
David Ahern75ef7382019-04-16 14:36:07 -0700585 res->f6i = net->ipv6.fib6_null_entry;
David Ahern1cf844c2019-05-22 20:27:59 -0700586 nh = res->f6i->fib6_nh;
David Ahern75ef7382019-04-16 14:36:07 -0700587 }
David Ahern7d21fec2019-04-16 14:36:11 -0700588out:
589 res->nh = nh;
590 res->fib6_type = res->f6i->fib6_type;
591 res->fib6_flags = res->f6i->fib6_flags;
David Ahernf88d8ea2019-06-03 20:19:52 -0700592 return;
593
594out_blackhole:
595 res->fib6_flags |= RTF_REJECT;
596 res->fib6_type = RTN_BLACKHOLE;
597 res->nh = nh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598}
599
YOSHIFUJI Hideaki27097252006-03-20 17:05:13 -0800600#ifdef CONFIG_IPV6_ROUTER_PREF
Hannes Frederic Sowac2f17e82013-10-21 06:17:15 +0200601struct __rt6_probe_work {
602 struct work_struct work;
603 struct in6_addr target;
604 struct net_device *dev;
605};
606
607static void rt6_probe_deferred(struct work_struct *w)
608{
609 struct in6_addr mcaddr;
610 struct __rt6_probe_work *work =
611 container_of(w, struct __rt6_probe_work, work);
612
613 addrconf_addr_solict_mult(&work->target, &mcaddr);
Erik Nordmarkadc176c2016-12-02 14:00:08 -0800614 ndisc_send_ns(work->dev, &work->target, &mcaddr, NULL, 0);
Hannes Frederic Sowac2f17e82013-10-21 06:17:15 +0200615 dev_put(work->dev);
Michael Büsch662f5532015-02-08 10:14:07 +0100616 kfree(work);
Hannes Frederic Sowac2f17e82013-10-21 06:17:15 +0200617}
618
David Aherncc3a86c2019-04-09 14:41:12 -0700619static void rt6_probe(struct fib6_nh *fib6_nh)
YOSHIFUJI Hideaki27097252006-03-20 17:05:13 -0800620{
Sabrina Dubrocaf547fac2018-10-12 16:22:47 +0200621 struct __rt6_probe_work *work = NULL;
David Ahern5e670d82018-04-17 17:33:14 -0700622 const struct in6_addr *nh_gw;
Eric Dumazetf2c31e32011-07-29 19:00:53 +0000623 struct neighbour *neigh;
David Ahern5e670d82018-04-17 17:33:14 -0700624 struct net_device *dev;
Sabrina Dubrocaf547fac2018-10-12 16:22:47 +0200625 struct inet6_dev *idev;
David Ahern5e670d82018-04-17 17:33:14 -0700626
YOSHIFUJI Hideaki27097252006-03-20 17:05:13 -0800627 /*
628 * Okay, this does not seem to be appropriate
629 * for now, however, we need to check if it
630 * is really so; aka Router Reachability Probing.
631 *
632 * Router Reachability Probe MUST be rate-limited
633 * to no more than one per minute.
634 */
David Aherncc3a86c2019-04-09 14:41:12 -0700635 if (fib6_nh->fib_nh_gw_family)
Amerigo Wangfdd66812012-09-10 02:48:44 +0000636 return;
David Ahern5e670d82018-04-17 17:33:14 -0700637
David Aherncc3a86c2019-04-09 14:41:12 -0700638 nh_gw = &fib6_nh->fib_nh_gw6;
639 dev = fib6_nh->fib_nh_dev;
YOSHIFUJI Hideaki / 吉藤英明2152cae2013-01-17 12:53:43 +0000640 rcu_read_lock_bh();
Sabrina Dubrocaf547fac2018-10-12 16:22:47 +0200641 idev = __in6_dev_get(dev);
David Ahern5e670d82018-04-17 17:33:14 -0700642 neigh = __ipv6_neigh_lookup_noref(dev, nh_gw);
YOSHIFUJI Hideaki / 吉藤英明2152cae2013-01-17 12:53:43 +0000643 if (neigh) {
Martin KaFai Lau8d6c31b2015-07-24 09:57:43 -0700644 if (neigh->nud_state & NUD_VALID)
645 goto out;
646
YOSHIFUJI Hideaki / 吉藤英明2152cae2013-01-17 12:53:43 +0000647 write_lock(&neigh->lock);
Martin KaFai Lau990edb42015-07-24 09:57:42 -0700648 if (!(neigh->nud_state & NUD_VALID) &&
649 time_after(jiffies,
David Aherndcd1f572018-04-18 15:39:05 -0700650 neigh->updated + idev->cnf.rtr_probe_interval)) {
Martin KaFai Lau990edb42015-07-24 09:57:42 -0700651 work = kmalloc(sizeof(*work), GFP_ATOMIC);
652 if (work)
653 __neigh_set_probe_once(neigh);
Hannes Frederic Sowac2f17e82013-10-21 06:17:15 +0200654 }
YOSHIFUJI Hideaki / 吉藤英明2152cae2013-01-17 12:53:43 +0000655 write_unlock(&neigh->lock);
David Aherncc3a86c2019-04-09 14:41:12 -0700656 } else if (time_after(jiffies, fib6_nh->last_probe +
Sabrina Dubrocaf547fac2018-10-12 16:22:47 +0200657 idev->cnf.rtr_probe_interval)) {
Martin KaFai Lau990edb42015-07-24 09:57:42 -0700658 work = kmalloc(sizeof(*work), GFP_ATOMIC);
Eric Dumazetf2c31e32011-07-29 19:00:53 +0000659 }
Martin KaFai Lau990edb42015-07-24 09:57:42 -0700660
661 if (work) {
David Aherncc3a86c2019-04-09 14:41:12 -0700662 fib6_nh->last_probe = jiffies;
Martin KaFai Lau990edb42015-07-24 09:57:42 -0700663 INIT_WORK(&work->work, rt6_probe_deferred);
David Ahern5e670d82018-04-17 17:33:14 -0700664 work->target = *nh_gw;
665 dev_hold(dev);
666 work->dev = dev;
Martin KaFai Lau990edb42015-07-24 09:57:42 -0700667 schedule_work(&work->work);
668 }
669
Martin KaFai Lau8d6c31b2015-07-24 09:57:43 -0700670out:
YOSHIFUJI Hideaki / 吉藤英明2152cae2013-01-17 12:53:43 +0000671 rcu_read_unlock_bh();
YOSHIFUJI Hideaki27097252006-03-20 17:05:13 -0800672}
673#else
David Aherncc3a86c2019-04-09 14:41:12 -0700674static inline void rt6_probe(struct fib6_nh *fib6_nh)
YOSHIFUJI Hideaki27097252006-03-20 17:05:13 -0800675{
YOSHIFUJI Hideaki27097252006-03-20 17:05:13 -0800676}
677#endif
678
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679/*
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800680 * Default Router Selection (RFC 2461 6.3.6)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 */
David Ahern1ba9a892019-04-09 14:41:10 -0700682static enum rt6_nud_state rt6_check_neigh(const struct fib6_nh *fib6_nh)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683{
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200684 enum rt6_nud_state ret = RT6_NUD_FAIL_HARD;
David Ahern5e670d82018-04-17 17:33:14 -0700685 struct neighbour *neigh;
Eric Dumazetf2c31e32011-07-29 19:00:53 +0000686
YOSHIFUJI Hideaki / 吉藤英明145a3622013-01-17 12:53:38 +0000687 rcu_read_lock_bh();
David Ahern1ba9a892019-04-09 14:41:10 -0700688 neigh = __ipv6_neigh_lookup_noref(fib6_nh->fib_nh_dev,
689 &fib6_nh->fib_nh_gw6);
YOSHIFUJI Hideaki / 吉藤英明145a3622013-01-17 12:53:38 +0000690 if (neigh) {
691 read_lock(&neigh->lock);
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800692 if (neigh->nud_state & NUD_VALID)
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200693 ret = RT6_NUD_SUCCEED;
YOSHIFUJI Hideaki398bcbe2008-01-19 00:35:16 -0800694#ifdef CONFIG_IPV6_ROUTER_PREF
Paul Marksa5a81f02012-12-03 10:26:54 +0000695 else if (!(neigh->nud_state & NUD_FAILED))
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200696 ret = RT6_NUD_SUCCEED;
Jiri Benc7e980562013-12-11 13:48:20 +0100697 else
698 ret = RT6_NUD_FAIL_PROBE;
YOSHIFUJI Hideaki398bcbe2008-01-19 00:35:16 -0800699#endif
YOSHIFUJI Hideaki / 吉藤英明145a3622013-01-17 12:53:38 +0000700 read_unlock(&neigh->lock);
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200701 } else {
702 ret = IS_ENABLED(CONFIG_IPV6_ROUTER_PREF) ?
Jiri Benc7e980562013-12-11 13:48:20 +0100703 RT6_NUD_SUCCEED : RT6_NUD_FAIL_DO_RR;
Paul Marksa5a81f02012-12-03 10:26:54 +0000704 }
YOSHIFUJI Hideaki / 吉藤英明145a3622013-01-17 12:53:38 +0000705 rcu_read_unlock_bh();
706
Paul Marksa5a81f02012-12-03 10:26:54 +0000707 return ret;
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800708}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709
David Ahern702cea52019-04-09 14:41:13 -0700710static int rt6_score_route(const struct fib6_nh *nh, u32 fib6_flags, int oif,
711 int strict)
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800712{
David Ahern6e1809a2019-04-09 14:41:11 -0700713 int m = 0;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900714
David Ahern6e1809a2019-04-09 14:41:11 -0700715 if (!oif || nh->fib_nh_dev->ifindex == oif)
716 m = 2;
717
YOSHIFUJI Hideaki77d16f42006-08-23 17:25:05 -0700718 if (!m && (strict & RT6_LOOKUP_F_IFACE))
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200719 return RT6_NUD_FAIL_HARD;
YOSHIFUJI Hideakiebacaaa2006-03-20 17:04:53 -0800720#ifdef CONFIG_IPV6_ROUTER_PREF
David Ahern702cea52019-04-09 14:41:13 -0700721 m |= IPV6_DECODE_PREF(IPV6_EXTRACT_PREF(fib6_flags)) << 2;
YOSHIFUJI Hideakiebacaaa2006-03-20 17:04:53 -0800722#endif
David Ahern1ba9a892019-04-09 14:41:10 -0700723 if ((strict & RT6_LOOKUP_F_REACHABLE) &&
David Ahern702cea52019-04-09 14:41:13 -0700724 !(fib6_flags & RTF_NONEXTHOP) && nh->fib_nh_gw_family) {
David Ahern1ba9a892019-04-09 14:41:10 -0700725 int n = rt6_check_neigh(nh);
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200726 if (n < 0)
727 return n;
728 }
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800729 return m;
730}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731
David Ahern28679ed2019-04-09 14:41:14 -0700732static bool find_match(struct fib6_nh *nh, u32 fib6_flags,
733 int oif, int strict, int *mpri, bool *do_rr)
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800734{
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200735 bool match_do_rr = false;
David Ahern28679ed2019-04-09 14:41:14 -0700736 bool rc = false;
737 int m;
Andy Gospodarek35103d12015-08-13 10:39:01 -0400738
David Ahern28679ed2019-04-09 14:41:14 -0700739 if (nh->fib_nh_flags & RTNH_F_DEAD)
Ido Schimmel8067bb82018-01-07 12:45:09 +0200740 goto out;
741
David Ahern28679ed2019-04-09 14:41:14 -0700742 if (ip6_ignore_linkdown(nh->fib_nh_dev) &&
743 nh->fib_nh_flags & RTNH_F_LINKDOWN &&
David Ahernd5d32e42016-10-24 12:27:23 -0700744 !(strict & RT6_LOOKUP_F_IGNORE_LINKSTATE))
Andy Gospodarek35103d12015-08-13 10:39:01 -0400745 goto out;
David S. Millerf11e6652007-03-24 20:36:25 -0700746
David Ahern28679ed2019-04-09 14:41:14 -0700747 m = rt6_score_route(nh, fib6_flags, oif, strict);
Jiri Benc7e980562013-12-11 13:48:20 +0100748 if (m == RT6_NUD_FAIL_DO_RR) {
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200749 match_do_rr = true;
750 m = 0; /* lowest valid score */
Jiri Benc7e980562013-12-11 13:48:20 +0100751 } else if (m == RT6_NUD_FAIL_HARD) {
David S. Millerf11e6652007-03-24 20:36:25 -0700752 goto out;
David S. Millerf11e6652007-03-24 20:36:25 -0700753 }
754
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200755 if (strict & RT6_LOOKUP_F_REACHABLE)
David Ahern28679ed2019-04-09 14:41:14 -0700756 rt6_probe(nh);
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200757
Jiri Benc7e980562013-12-11 13:48:20 +0100758 /* note that m can be RT6_NUD_FAIL_PROBE at this point */
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200759 if (m > *mpri) {
760 *do_rr = match_do_rr;
761 *mpri = m;
David Ahern28679ed2019-04-09 14:41:14 -0700762 rc = true;
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200763 }
David S. Millerf11e6652007-03-24 20:36:25 -0700764out:
David Ahern28679ed2019-04-09 14:41:14 -0700765 return rc;
David S. Millerf11e6652007-03-24 20:36:25 -0700766}
767
David Ahern17a59842019-06-08 14:53:25 -0700768struct fib6_nh_frl_arg {
769 u32 flags;
770 int oif;
771 int strict;
772 int *mpri;
773 bool *do_rr;
774 struct fib6_nh *nh;
775};
776
777static int rt6_nh_find_match(struct fib6_nh *nh, void *_arg)
778{
779 struct fib6_nh_frl_arg *arg = _arg;
780
781 arg->nh = nh;
782 return find_match(nh, arg->flags, arg->oif, arg->strict,
783 arg->mpri, arg->do_rr);
784}
785
David Ahernb7bc4b62019-04-16 14:36:08 -0700786static void __find_rr_leaf(struct fib6_info *f6i_start,
David Ahern30c15f02019-04-09 14:41:15 -0700787 struct fib6_info *nomatch, u32 metric,
David Ahernb7bc4b62019-04-16 14:36:08 -0700788 struct fib6_result *res, struct fib6_info **cont,
David Ahern30c15f02019-04-09 14:41:15 -0700789 int oif, int strict, bool *do_rr, int *mpri)
David S. Millerf11e6652007-03-24 20:36:25 -0700790{
David Ahernb7bc4b62019-04-16 14:36:08 -0700791 struct fib6_info *f6i;
David Ahern30c15f02019-04-09 14:41:15 -0700792
David Ahernb7bc4b62019-04-16 14:36:08 -0700793 for (f6i = f6i_start;
794 f6i && f6i != nomatch;
795 f6i = rcu_dereference(f6i->fib6_next)) {
David Ahern17a59842019-06-08 14:53:25 -0700796 bool matched = false;
David Ahern30c15f02019-04-09 14:41:15 -0700797 struct fib6_nh *nh;
798
David Ahernb7bc4b62019-04-16 14:36:08 -0700799 if (cont && f6i->fib6_metric != metric) {
800 *cont = f6i;
David Ahern30c15f02019-04-09 14:41:15 -0700801 return;
802 }
803
David Ahernb7bc4b62019-04-16 14:36:08 -0700804 if (fib6_check_expired(f6i))
David Ahern30c15f02019-04-09 14:41:15 -0700805 continue;
806
David Ahern17a59842019-06-08 14:53:25 -0700807 if (unlikely(f6i->nh)) {
808 struct fib6_nh_frl_arg arg = {
809 .flags = f6i->fib6_flags,
810 .oif = oif,
811 .strict = strict,
812 .mpri = mpri,
813 .do_rr = do_rr
814 };
815
816 if (nexthop_is_blackhole(f6i->nh)) {
817 res->fib6_flags = RTF_REJECT;
818 res->fib6_type = RTN_BLACKHOLE;
819 res->f6i = f6i;
820 res->nh = nexthop_fib6_nh(f6i->nh);
821 return;
822 }
823 if (nexthop_for_each_fib6_nh(f6i->nh, rt6_nh_find_match,
824 &arg)) {
825 matched = true;
826 nh = arg.nh;
827 }
828 } else {
829 nh = f6i->fib6_nh;
830 if (find_match(nh, f6i->fib6_flags, oif, strict,
831 mpri, do_rr))
832 matched = true;
833 }
834 if (matched) {
David Ahernb7bc4b62019-04-16 14:36:08 -0700835 res->f6i = f6i;
836 res->nh = nh;
David Ahern7d21fec2019-04-16 14:36:11 -0700837 res->fib6_flags = f6i->fib6_flags;
838 res->fib6_type = f6i->fib6_type;
David Ahernb7bc4b62019-04-16 14:36:08 -0700839 }
David Ahern30c15f02019-04-09 14:41:15 -0700840 }
841}
842
David Ahernb7bc4b62019-04-16 14:36:08 -0700843static void find_rr_leaf(struct fib6_node *fn, struct fib6_info *leaf,
844 struct fib6_info *rr_head, int oif, int strict,
845 bool *do_rr, struct fib6_result *res)
David Ahern30c15f02019-04-09 14:41:15 -0700846{
David Ahernb7bc4b62019-04-16 14:36:08 -0700847 u32 metric = rr_head->fib6_metric;
848 struct fib6_info *cont = NULL;
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800849 int mpri = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850
David Ahernb7bc4b62019-04-16 14:36:08 -0700851 __find_rr_leaf(rr_head, NULL, metric, res, &cont,
David Ahern30c15f02019-04-09 14:41:15 -0700852 oif, strict, do_rr, &mpri);
Steffen Klassert9fbdcfa2015-04-28 13:03:04 -0700853
David Ahernb7bc4b62019-04-16 14:36:08 -0700854 __find_rr_leaf(leaf, rr_head, metric, res, &cont,
David Ahern30c15f02019-04-09 14:41:15 -0700855 oif, strict, do_rr, &mpri);
Steffen Klassert9fbdcfa2015-04-28 13:03:04 -0700856
David Ahernb7bc4b62019-04-16 14:36:08 -0700857 if (res->f6i || !cont)
858 return;
Steffen Klassert9fbdcfa2015-04-28 13:03:04 -0700859
David Ahernb7bc4b62019-04-16 14:36:08 -0700860 __find_rr_leaf(cont, NULL, metric, res, NULL,
David Ahern30c15f02019-04-09 14:41:15 -0700861 oif, strict, do_rr, &mpri);
David S. Millerf11e6652007-03-24 20:36:25 -0700862}
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800863
David Ahernb7bc4b62019-04-16 14:36:08 -0700864static void rt6_select(struct net *net, struct fib6_node *fn, int oif,
865 struct fib6_result *res, int strict)
David S. Millerf11e6652007-03-24 20:36:25 -0700866{
David Ahern8d1c8022018-04-17 17:33:26 -0700867 struct fib6_info *leaf = rcu_dereference(fn->leaf);
David Ahernb7bc4b62019-04-16 14:36:08 -0700868 struct fib6_info *rt0;
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200869 bool do_rr = false;
Wei Wang17ecf592017-10-06 12:06:09 -0700870 int key_plen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871
David Ahernb7bc4b62019-04-16 14:36:08 -0700872 /* make sure this function or its helpers sets f6i */
873 res->f6i = NULL;
874
David Ahern421842e2018-04-17 17:33:18 -0700875 if (!leaf || leaf == net->ipv6.fib6_null_entry)
David Ahernb7bc4b62019-04-16 14:36:08 -0700876 goto out;
Wei Wang8d1040e2017-10-06 12:06:08 -0700877
Wei Wang66f5d6c2017-10-06 12:06:10 -0700878 rt0 = rcu_dereference(fn->rr_ptr);
David S. Millerf11e6652007-03-24 20:36:25 -0700879 if (!rt0)
Wei Wang66f5d6c2017-10-06 12:06:10 -0700880 rt0 = leaf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881
Wei Wang17ecf592017-10-06 12:06:09 -0700882 /* Double check to make sure fn is not an intermediate node
883 * and fn->leaf does not points to its child's leaf
884 * (This might happen if all routes under fn are deleted from
885 * the tree and fib6_repair_tree() is called on the node.)
886 */
David Ahern93c2fb22018-04-18 15:38:59 -0700887 key_plen = rt0->fib6_dst.plen;
Wei Wang17ecf592017-10-06 12:06:09 -0700888#ifdef CONFIG_IPV6_SUBTREES
David Ahern93c2fb22018-04-18 15:38:59 -0700889 if (rt0->fib6_src.plen)
890 key_plen = rt0->fib6_src.plen;
Wei Wang17ecf592017-10-06 12:06:09 -0700891#endif
892 if (fn->fn_bit != key_plen)
David Ahernb7bc4b62019-04-16 14:36:08 -0700893 goto out;
Wei Wang17ecf592017-10-06 12:06:09 -0700894
David Ahernb7bc4b62019-04-16 14:36:08 -0700895 find_rr_leaf(fn, leaf, rt0, oif, strict, &do_rr, res);
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200896 if (do_rr) {
David Ahern8fb11a92018-05-04 13:54:24 -0700897 struct fib6_info *next = rcu_dereference(rt0->fib6_next);
David S. Millerf11e6652007-03-24 20:36:25 -0700898
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800899 /* no entries matched; do round-robin */
David Ahern93c2fb22018-04-18 15:38:59 -0700900 if (!next || next->fib6_metric != rt0->fib6_metric)
Wei Wang8d1040e2017-10-06 12:06:08 -0700901 next = leaf;
David S. Millerf11e6652007-03-24 20:36:25 -0700902
Wei Wang66f5d6c2017-10-06 12:06:10 -0700903 if (next != rt0) {
David Ahern93c2fb22018-04-18 15:38:59 -0700904 spin_lock_bh(&leaf->fib6_table->tb6_lock);
Wei Wang66f5d6c2017-10-06 12:06:10 -0700905 /* make sure next is not being deleted from the tree */
David Ahern93c2fb22018-04-18 15:38:59 -0700906 if (next->fib6_node)
Wei Wang66f5d6c2017-10-06 12:06:10 -0700907 rcu_assign_pointer(fn->rr_ptr, next);
David Ahern93c2fb22018-04-18 15:38:59 -0700908 spin_unlock_bh(&leaf->fib6_table->tb6_lock);
Wei Wang66f5d6c2017-10-06 12:06:10 -0700909 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910 }
911
David Ahernb7bc4b62019-04-16 14:36:08 -0700912out:
913 if (!res->f6i) {
914 res->f6i = net->ipv6.fib6_null_entry;
David Ahern1cf844c2019-05-22 20:27:59 -0700915 res->nh = res->f6i->fib6_nh;
David Ahern7d21fec2019-04-16 14:36:11 -0700916 res->fib6_flags = res->f6i->fib6_flags;
917 res->fib6_type = res->f6i->fib6_type;
David Ahernb7bc4b62019-04-16 14:36:08 -0700918 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919}
920
David Ahern85bd05d2019-04-16 14:36:01 -0700921static bool rt6_is_gw_or_nonexthop(const struct fib6_result *res)
Martin KaFai Lau8b9df262015-05-22 20:55:59 -0700922{
David Ahern85bd05d2019-04-16 14:36:01 -0700923 return (res->f6i->fib6_flags & RTF_NONEXTHOP) ||
924 res->nh->fib_nh_gw_family;
Martin KaFai Lau8b9df262015-05-22 20:55:59 -0700925}
926
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800927#ifdef CONFIG_IPV6_ROUTE_INFO
928int rt6_route_rcv(struct net_device *dev, u8 *opt, int len,
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000929 const struct in6_addr *gwaddr)
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800930{
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900931 struct net *net = dev_net(dev);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800932 struct route_info *rinfo = (struct route_info *) opt;
933 struct in6_addr prefix_buf, *prefix;
934 unsigned int pref;
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +0900935 unsigned long lifetime;
David Ahern8d1c8022018-04-17 17:33:26 -0700936 struct fib6_info *rt;
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800937
938 if (len < sizeof(struct route_info)) {
939 return -EINVAL;
940 }
941
942 /* Sanity check for prefix_len and length */
943 if (rinfo->length > 3) {
944 return -EINVAL;
945 } else if (rinfo->prefix_len > 128) {
946 return -EINVAL;
947 } else if (rinfo->prefix_len > 64) {
948 if (rinfo->length < 2) {
949 return -EINVAL;
950 }
951 } else if (rinfo->prefix_len > 0) {
952 if (rinfo->length < 1) {
953 return -EINVAL;
954 }
955 }
956
957 pref = rinfo->route_pref;
958 if (pref == ICMPV6_ROUTER_PREF_INVALID)
Jens Rosenboom3933fc92009-09-10 06:25:11 +0000959 return -EINVAL;
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800960
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +0900961 lifetime = addrconf_timeout_fixup(ntohl(rinfo->lifetime), HZ);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800962
963 if (rinfo->length == 3)
964 prefix = (struct in6_addr *)rinfo->prefix;
965 else {
966 /* this function is safe */
967 ipv6_addr_prefix(&prefix_buf,
968 (struct in6_addr *)rinfo->prefix,
969 rinfo->prefix_len);
970 prefix = &prefix_buf;
971 }
972
Duan Jiongf104a562013-11-08 09:56:53 +0800973 if (rinfo->prefix_len == 0)
David Ahernafb1d4b52018-04-17 17:33:11 -0700974 rt = rt6_get_dflt_router(net, gwaddr, dev);
Duan Jiongf104a562013-11-08 09:56:53 +0800975 else
976 rt = rt6_get_route_info(net, prefix, rinfo->prefix_len,
David Ahern830218c2016-10-24 10:52:35 -0700977 gwaddr, dev);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800978
979 if (rt && !lifetime) {
David Ahernafb1d4b52018-04-17 17:33:11 -0700980 ip6_del_rt(net, rt);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800981 rt = NULL;
982 }
983
984 if (!rt && lifetime)
David Ahern830218c2016-10-24 10:52:35 -0700985 rt = rt6_add_route_info(net, prefix, rinfo->prefix_len, gwaddr,
986 dev, pref);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800987 else if (rt)
David Ahern93c2fb22018-04-18 15:38:59 -0700988 rt->fib6_flags = RTF_ROUTEINFO |
989 (rt->fib6_flags & ~RTF_PREF_MASK) | RTF_PREF(pref);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800990
991 if (rt) {
Gao feng1716a962012-04-06 00:13:10 +0000992 if (!addrconf_finite_timeout(lifetime))
David Ahern14895682018-04-17 17:33:17 -0700993 fib6_clean_expires(rt);
Gao feng1716a962012-04-06 00:13:10 +0000994 else
David Ahern14895682018-04-17 17:33:17 -0700995 fib6_set_expires(rt, jiffies + HZ * lifetime);
Gao feng1716a962012-04-06 00:13:10 +0000996
David Ahern93531c62018-04-17 17:33:25 -0700997 fib6_info_release(rt);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800998 }
999 return 0;
1000}
1001#endif
1002
David Ahernae90d862018-04-17 17:33:12 -07001003/*
1004 * Misc support functions
1005 */
1006
1007/* called with rcu_lock held */
David Ahern0d161582019-04-16 14:36:04 -07001008static struct net_device *ip6_rt_get_dev_rcu(const struct fib6_result *res)
David Ahernae90d862018-04-17 17:33:12 -07001009{
David Ahern0d161582019-04-16 14:36:04 -07001010 struct net_device *dev = res->nh->fib_nh_dev;
David Ahernae90d862018-04-17 17:33:12 -07001011
David Ahern7d21fec2019-04-16 14:36:11 -07001012 if (res->fib6_flags & (RTF_LOCAL | RTF_ANYCAST)) {
David Ahernae90d862018-04-17 17:33:12 -07001013 /* for copies of local routes, dst->dev needs to be the
1014 * device if it is a master device, the master device if
1015 * device is enslaved, and the loopback as the default
1016 */
1017 if (netif_is_l3_slave(dev) &&
David Ahern7d21fec2019-04-16 14:36:11 -07001018 !rt6_need_strict(&res->f6i->fib6_dst.addr))
David Ahernae90d862018-04-17 17:33:12 -07001019 dev = l3mdev_master_dev_rcu(dev);
1020 else if (!netif_is_l3_master(dev))
1021 dev = dev_net(dev)->loopback_dev;
1022 /* last case is netif_is_l3_master(dev) is true in which
1023 * case we want dev returned to be dev
1024 */
1025 }
1026
1027 return dev;
1028}
1029
David Ahern6edb3c92018-04-17 17:33:15 -07001030static const int fib6_prop[RTN_MAX + 1] = {
1031 [RTN_UNSPEC] = 0,
1032 [RTN_UNICAST] = 0,
1033 [RTN_LOCAL] = 0,
1034 [RTN_BROADCAST] = 0,
1035 [RTN_ANYCAST] = 0,
1036 [RTN_MULTICAST] = 0,
1037 [RTN_BLACKHOLE] = -EINVAL,
1038 [RTN_UNREACHABLE] = -EHOSTUNREACH,
1039 [RTN_PROHIBIT] = -EACCES,
1040 [RTN_THROW] = -EAGAIN,
1041 [RTN_NAT] = -EINVAL,
1042 [RTN_XRESOLVE] = -EINVAL,
1043};
1044
1045static int ip6_rt_type_to_error(u8 fib6_type)
1046{
1047 return fib6_prop[fib6_type];
1048}
1049
David Ahern8d1c8022018-04-17 17:33:26 -07001050static unsigned short fib6_info_dst_flags(struct fib6_info *rt)
David Ahern3b6761d2018-04-17 17:33:20 -07001051{
1052 unsigned short flags = 0;
1053
1054 if (rt->dst_nocount)
1055 flags |= DST_NOCOUNT;
1056 if (rt->dst_nopolicy)
1057 flags |= DST_NOPOLICY;
1058 if (rt->dst_host)
1059 flags |= DST_HOST;
1060
1061 return flags;
1062}
1063
David Ahern7d21fec2019-04-16 14:36:11 -07001064static void ip6_rt_init_dst_reject(struct rt6_info *rt, u8 fib6_type)
David Ahern6edb3c92018-04-17 17:33:15 -07001065{
David Ahern7d21fec2019-04-16 14:36:11 -07001066 rt->dst.error = ip6_rt_type_to_error(fib6_type);
David Ahern6edb3c92018-04-17 17:33:15 -07001067
David Ahern7d21fec2019-04-16 14:36:11 -07001068 switch (fib6_type) {
David Ahern6edb3c92018-04-17 17:33:15 -07001069 case RTN_BLACKHOLE:
1070 rt->dst.output = dst_discard_out;
1071 rt->dst.input = dst_discard;
1072 break;
1073 case RTN_PROHIBIT:
1074 rt->dst.output = ip6_pkt_prohibit_out;
1075 rt->dst.input = ip6_pkt_prohibit;
1076 break;
1077 case RTN_THROW:
1078 case RTN_UNREACHABLE:
1079 default:
1080 rt->dst.output = ip6_pkt_discard_out;
1081 rt->dst.input = ip6_pkt_discard;
1082 break;
1083 }
1084}
1085
David Ahern0d161582019-04-16 14:36:04 -07001086static void ip6_rt_init_dst(struct rt6_info *rt, const struct fib6_result *res)
David Ahern6edb3c92018-04-17 17:33:15 -07001087{
David Ahern7d21fec2019-04-16 14:36:11 -07001088 struct fib6_info *f6i = res->f6i;
David Ahern0d161582019-04-16 14:36:04 -07001089
David Ahern7d21fec2019-04-16 14:36:11 -07001090 if (res->fib6_flags & RTF_REJECT) {
1091 ip6_rt_init_dst_reject(rt, res->fib6_type);
David Ahern6edb3c92018-04-17 17:33:15 -07001092 return;
1093 }
1094
1095 rt->dst.error = 0;
1096 rt->dst.output = ip6_output;
1097
David Ahern7d21fec2019-04-16 14:36:11 -07001098 if (res->fib6_type == RTN_LOCAL || res->fib6_type == RTN_ANYCAST) {
David Ahern6edb3c92018-04-17 17:33:15 -07001099 rt->dst.input = ip6_input;
David Ahern7d21fec2019-04-16 14:36:11 -07001100 } else if (ipv6_addr_type(&f6i->fib6_dst.addr) & IPV6_ADDR_MULTICAST) {
David Ahern6edb3c92018-04-17 17:33:15 -07001101 rt->dst.input = ip6_mc_input;
1102 } else {
1103 rt->dst.input = ip6_forward;
1104 }
1105
David Ahern0d161582019-04-16 14:36:04 -07001106 if (res->nh->fib_nh_lws) {
1107 rt->dst.lwtstate = lwtstate_get(res->nh->fib_nh_lws);
David Ahern6edb3c92018-04-17 17:33:15 -07001108 lwtunnel_set_redirect(&rt->dst);
1109 }
1110
1111 rt->dst.lastuse = jiffies;
1112}
1113
Wei Wange873e4b2018-07-21 20:56:32 -07001114/* Caller must already hold reference to @from */
David Ahern8d1c8022018-04-17 17:33:26 -07001115static void rt6_set_from(struct rt6_info *rt, struct fib6_info *from)
David Ahernae90d862018-04-17 17:33:12 -07001116{
David Ahernae90d862018-04-17 17:33:12 -07001117 rt->rt6i_flags &= ~RTF_EXPIRES;
David Aherna68886a2018-04-20 15:38:02 -07001118 rcu_assign_pointer(rt->from, from);
David Aherne1255ed2018-10-04 20:07:53 -07001119 ip_dst_init_metrics(&rt->dst, from->fib6_metrics);
David Ahernae90d862018-04-17 17:33:12 -07001120}
1121
David Ahern0d161582019-04-16 14:36:04 -07001122/* Caller must already hold reference to f6i in result */
1123static void ip6_rt_copy_init(struct rt6_info *rt, const struct fib6_result *res)
David Ahernae90d862018-04-17 17:33:12 -07001124{
David Ahern0d161582019-04-16 14:36:04 -07001125 const struct fib6_nh *nh = res->nh;
1126 const struct net_device *dev = nh->fib_nh_dev;
1127 struct fib6_info *f6i = res->f6i;
David Aherndcd1f572018-04-18 15:39:05 -07001128
David Ahern0d161582019-04-16 14:36:04 -07001129 ip6_rt_init_dst(rt, res);
David Ahern6edb3c92018-04-17 17:33:15 -07001130
David Ahern0d161582019-04-16 14:36:04 -07001131 rt->rt6i_dst = f6i->fib6_dst;
David Aherndcd1f572018-04-18 15:39:05 -07001132 rt->rt6i_idev = dev ? in6_dev_get(dev) : NULL;
David Ahern7d21fec2019-04-16 14:36:11 -07001133 rt->rt6i_flags = res->fib6_flags;
David Ahern0d161582019-04-16 14:36:04 -07001134 if (nh->fib_nh_gw_family) {
1135 rt->rt6i_gateway = nh->fib_nh_gw6;
David Ahern2b2450c2019-03-27 20:53:52 -07001136 rt->rt6i_flags |= RTF_GATEWAY;
1137 }
David Ahern0d161582019-04-16 14:36:04 -07001138 rt6_set_from(rt, f6i);
David Ahernae90d862018-04-17 17:33:12 -07001139#ifdef CONFIG_IPV6_SUBTREES
David Ahern0d161582019-04-16 14:36:04 -07001140 rt->rt6i_src = f6i->fib6_src;
David Ahernae90d862018-04-17 17:33:12 -07001141#endif
David Ahernae90d862018-04-17 17:33:12 -07001142}
1143
Martin KaFai Laua3c00e42014-10-20 13:42:43 -07001144static struct fib6_node* fib6_backtrack(struct fib6_node *fn,
1145 struct in6_addr *saddr)
1146{
Wei Wang66f5d6c2017-10-06 12:06:10 -07001147 struct fib6_node *pn, *sn;
Martin KaFai Laua3c00e42014-10-20 13:42:43 -07001148 while (1) {
1149 if (fn->fn_flags & RTN_TL_ROOT)
1150 return NULL;
Wei Wang66f5d6c2017-10-06 12:06:10 -07001151 pn = rcu_dereference(fn->parent);
1152 sn = FIB6_SUBTREE(pn);
1153 if (sn && sn != fn)
David Ahern64547432018-05-09 20:34:19 -07001154 fn = fib6_node_lookup(sn, NULL, saddr);
Martin KaFai Laua3c00e42014-10-20 13:42:43 -07001155 else
1156 fn = pn;
1157 if (fn->fn_flags & RTN_RTINFO)
1158 return fn;
1159 }
1160}
Thomas Grafc71099a2006-08-04 23:20:06 -07001161
David Ahern10585b42019-03-20 09:24:50 -07001162static bool ip6_hold_safe(struct net *net, struct rt6_info **prt)
Wei Wangd3843fe2017-10-06 12:06:06 -07001163{
1164 struct rt6_info *rt = *prt;
1165
1166 if (dst_hold_safe(&rt->dst))
1167 return true;
David Ahern10585b42019-03-20 09:24:50 -07001168 if (net) {
Wei Wangd3843fe2017-10-06 12:06:06 -07001169 rt = net->ipv6.ip6_null_entry;
1170 dst_hold(&rt->dst);
1171 } else {
1172 rt = NULL;
1173 }
1174 *prt = rt;
1175 return false;
1176}
1177
David Aherndec9b0e2018-04-17 17:33:19 -07001178/* called with rcu_lock held */
David Ahern9b6b35a2019-04-16 14:36:02 -07001179static struct rt6_info *ip6_create_rt_rcu(const struct fib6_result *res)
David Aherndec9b0e2018-04-17 17:33:19 -07001180{
David Ahern9b6b35a2019-04-16 14:36:02 -07001181 struct net_device *dev = res->nh->fib_nh_dev;
1182 struct fib6_info *f6i = res->f6i;
1183 unsigned short flags;
David Aherndec9b0e2018-04-17 17:33:19 -07001184 struct rt6_info *nrt;
1185
David Ahern9b6b35a2019-04-16 14:36:02 -07001186 if (!fib6_info_hold_safe(f6i))
Xin Long1c87e792019-03-20 14:45:48 +08001187 goto fallback;
Wei Wange873e4b2018-07-21 20:56:32 -07001188
David Ahern9b6b35a2019-04-16 14:36:02 -07001189 flags = fib6_info_dst_flags(f6i);
David Ahern93531c62018-04-17 17:33:25 -07001190 nrt = ip6_dst_alloc(dev_net(dev), dev, flags);
Xin Long1c87e792019-03-20 14:45:48 +08001191 if (!nrt) {
David Ahern9b6b35a2019-04-16 14:36:02 -07001192 fib6_info_release(f6i);
Xin Long1c87e792019-03-20 14:45:48 +08001193 goto fallback;
1194 }
David Aherndec9b0e2018-04-17 17:33:19 -07001195
David Ahern0d161582019-04-16 14:36:04 -07001196 ip6_rt_copy_init(nrt, res);
Xin Long1c87e792019-03-20 14:45:48 +08001197 return nrt;
1198
1199fallback:
1200 nrt = dev_net(dev)->ipv6.ip6_null_entry;
1201 dst_hold(&nrt->dst);
David Aherndec9b0e2018-04-17 17:33:19 -07001202 return nrt;
1203}
1204
Daniel Lezcano8ed67782008-03-04 13:48:30 -08001205static struct rt6_info *ip6_pol_route_lookup(struct net *net,
1206 struct fib6_table *table,
David Ahernb75cc8f2018-03-02 08:32:17 -08001207 struct flowi6 *fl6,
1208 const struct sk_buff *skb,
1209 int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210{
David Ahernb1d40992019-04-16 14:35:59 -07001211 struct fib6_result res = {};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212 struct fib6_node *fn;
David Ahern23fb93a2018-04-17 17:33:23 -07001213 struct rt6_info *rt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214
David Ahernb6cdbc82018-03-29 17:44:57 -07001215 if (fl6->flowi6_flags & FLOWI_FLAG_SKIP_NH_OIF)
1216 flags &= ~RT6_LOOKUP_F_IFACE;
1217
Wei Wang66f5d6c2017-10-06 12:06:10 -07001218 rcu_read_lock();
David Ahern64547432018-05-09 20:34:19 -07001219 fn = fib6_node_lookup(&table->tb6_root, &fl6->daddr, &fl6->saddr);
Thomas Grafc71099a2006-08-04 23:20:06 -07001220restart:
David Ahernb1d40992019-04-16 14:35:59 -07001221 res.f6i = rcu_dereference(fn->leaf);
1222 if (!res.f6i)
1223 res.f6i = net->ipv6.fib6_null_entry;
David Ahernaf52a522019-04-09 14:41:16 -07001224 else
David Ahern75ef7382019-04-16 14:36:07 -07001225 rt6_device_match(net, &res, &fl6->saddr, fl6->flowi6_oif,
1226 flags);
David Ahernaf52a522019-04-09 14:41:16 -07001227
David Ahernb1d40992019-04-16 14:35:59 -07001228 if (res.f6i == net->ipv6.fib6_null_entry) {
Martin KaFai Laua3c00e42014-10-20 13:42:43 -07001229 fn = fib6_backtrack(fn, &fl6->saddr);
1230 if (fn)
1231 goto restart;
David Ahernaf52a522019-04-09 14:41:16 -07001232
1233 rt = net->ipv6.ip6_null_entry;
1234 dst_hold(&rt->dst);
1235 goto out;
David Ahernf88d8ea2019-06-03 20:19:52 -07001236 } else if (res.fib6_flags & RTF_REJECT) {
1237 goto do_create;
Martin KaFai Laua3c00e42014-10-20 13:42:43 -07001238 }
Wei Wang2b760fc2017-10-06 12:06:03 -07001239
David Ahernb1d40992019-04-16 14:35:59 -07001240 fib6_select_path(net, &res, fl6, fl6->flowi6_oif,
1241 fl6->flowi6_oif != 0, skb, flags);
1242
David S. Miller4c9483b2011-03-12 16:22:43 -05001243 /* Search through exception table */
David Ahern7e4b5122019-04-16 14:36:00 -07001244 rt = rt6_find_cached_rt(&res, &fl6->daddr, &fl6->saddr);
David Ahern23fb93a2018-04-17 17:33:23 -07001245 if (rt) {
David Ahern10585b42019-03-20 09:24:50 -07001246 if (ip6_hold_safe(net, &rt))
David Aherndec9b0e2018-04-17 17:33:19 -07001247 dst_use_noref(&rt->dst, jiffies);
David Ahern23fb93a2018-04-17 17:33:23 -07001248 } else {
David Ahernf88d8ea2019-06-03 20:19:52 -07001249do_create:
David Ahern9b6b35a2019-04-16 14:36:02 -07001250 rt = ip6_create_rt_rcu(&res);
David Aherndec9b0e2018-04-17 17:33:19 -07001251 }
Wei Wangd3843fe2017-10-06 12:06:06 -07001252
David Ahernaf52a522019-04-09 14:41:16 -07001253out:
David Ahern8ff2e5b2019-04-16 14:36:09 -07001254 trace_fib6_table_lookup(net, &res, table, fl6);
David Ahernaf52a522019-04-09 14:41:16 -07001255
Wei Wang66f5d6c2017-10-06 12:06:10 -07001256 rcu_read_unlock();
David Ahernb8115802015-11-19 12:24:22 -08001257
Thomas Grafc71099a2006-08-04 23:20:06 -07001258 return rt;
Thomas Grafc71099a2006-08-04 23:20:06 -07001259}
1260
Ian Morris67ba4152014-08-24 21:53:10 +01001261struct dst_entry *ip6_route_lookup(struct net *net, struct flowi6 *fl6,
David Ahernb75cc8f2018-03-02 08:32:17 -08001262 const struct sk_buff *skb, int flags)
Florian Westphalea6e5742011-09-05 16:05:44 +02001263{
David Ahernb75cc8f2018-03-02 08:32:17 -08001264 return fib6_rule_lookup(net, fl6, skb, flags, ip6_pol_route_lookup);
Florian Westphalea6e5742011-09-05 16:05:44 +02001265}
1266EXPORT_SYMBOL_GPL(ip6_route_lookup);
1267
YOSHIFUJI Hideaki9acd9f32008-04-10 15:42:10 +09001268struct rt6_info *rt6_lookup(struct net *net, const struct in6_addr *daddr,
David Ahernb75cc8f2018-03-02 08:32:17 -08001269 const struct in6_addr *saddr, int oif,
1270 const struct sk_buff *skb, int strict)
Thomas Grafc71099a2006-08-04 23:20:06 -07001271{
David S. Miller4c9483b2011-03-12 16:22:43 -05001272 struct flowi6 fl6 = {
1273 .flowi6_oif = oif,
1274 .daddr = *daddr,
Thomas Grafc71099a2006-08-04 23:20:06 -07001275 };
1276 struct dst_entry *dst;
YOSHIFUJI Hideaki77d16f42006-08-23 17:25:05 -07001277 int flags = strict ? RT6_LOOKUP_F_IFACE : 0;
Thomas Grafc71099a2006-08-04 23:20:06 -07001278
Thomas Grafadaa70b2006-10-13 15:01:03 -07001279 if (saddr) {
David S. Miller4c9483b2011-03-12 16:22:43 -05001280 memcpy(&fl6.saddr, saddr, sizeof(*saddr));
Thomas Grafadaa70b2006-10-13 15:01:03 -07001281 flags |= RT6_LOOKUP_F_HAS_SADDR;
1282 }
1283
David Ahernb75cc8f2018-03-02 08:32:17 -08001284 dst = fib6_rule_lookup(net, &fl6, skb, flags, ip6_pol_route_lookup);
Thomas Grafc71099a2006-08-04 23:20:06 -07001285 if (dst->error == 0)
1286 return (struct rt6_info *) dst;
1287
1288 dst_release(dst);
1289
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290 return NULL;
1291}
YOSHIFUJI Hideaki71590392007-02-22 22:05:40 +09001292EXPORT_SYMBOL(rt6_lookup);
1293
Thomas Grafc71099a2006-08-04 23:20:06 -07001294/* ip6_ins_rt is called with FREE table->tb6_lock.
Wei Wang1cfb71e2017-06-17 10:42:33 -07001295 * It takes new route entry, the addition fails by any reason the
1296 * route is released.
1297 * Caller must hold dst before calling it.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298 */
1299
David Ahern8d1c8022018-04-17 17:33:26 -07001300static int __ip6_ins_rt(struct fib6_info *rt, struct nl_info *info,
David Ahern333c4302017-05-21 10:12:04 -06001301 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302{
1303 int err;
Thomas Grafc71099a2006-08-04 23:20:06 -07001304 struct fib6_table *table;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305
David Ahern93c2fb22018-04-18 15:38:59 -07001306 table = rt->fib6_table;
Wei Wang66f5d6c2017-10-06 12:06:10 -07001307 spin_lock_bh(&table->tb6_lock);
David Ahernd4ead6b2018-04-17 17:33:16 -07001308 err = fib6_add(&table->tb6_root, rt, info, extack);
Wei Wang66f5d6c2017-10-06 12:06:10 -07001309 spin_unlock_bh(&table->tb6_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310
1311 return err;
1312}
1313
David Ahern8d1c8022018-04-17 17:33:26 -07001314int ip6_ins_rt(struct net *net, struct fib6_info *rt)
Thomas Graf40e22e82006-08-22 00:00:45 -07001315{
David Ahernafb1d4b52018-04-17 17:33:11 -07001316 struct nl_info info = { .nl_net = net, };
Florian Westphale715b6d2015-01-05 23:57:44 +01001317
David Ahernd4ead6b2018-04-17 17:33:16 -07001318 return __ip6_ins_rt(rt, &info, NULL);
Thomas Graf40e22e82006-08-22 00:00:45 -07001319}
1320
David Ahern85bd05d2019-04-16 14:36:01 -07001321static struct rt6_info *ip6_rt_cache_alloc(const struct fib6_result *res,
Martin KaFai Lau8b9df262015-05-22 20:55:59 -07001322 const struct in6_addr *daddr,
1323 const struct in6_addr *saddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324{
David Ahern85bd05d2019-04-16 14:36:01 -07001325 struct fib6_info *f6i = res->f6i;
David Ahern4832c302017-08-17 12:17:20 -07001326 struct net_device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327 struct rt6_info *rt;
1328
1329 /*
1330 * Clone the route.
1331 */
1332
David Ahern85bd05d2019-04-16 14:36:01 -07001333 if (!fib6_info_hold_safe(f6i))
Wei Wange873e4b2018-07-21 20:56:32 -07001334 return NULL;
1335
David Ahern0d161582019-04-16 14:36:04 -07001336 dev = ip6_rt_get_dev_rcu(res);
David Ahern93531c62018-04-17 17:33:25 -07001337 rt = ip6_dst_alloc(dev_net(dev), dev, 0);
Wei Wange873e4b2018-07-21 20:56:32 -07001338 if (!rt) {
David Ahern85bd05d2019-04-16 14:36:01 -07001339 fib6_info_release(f6i);
Martin KaFai Lau83a09ab2015-05-22 20:56:05 -07001340 return NULL;
Wei Wange873e4b2018-07-21 20:56:32 -07001341 }
Martin KaFai Lau83a09ab2015-05-22 20:56:05 -07001342
David Ahern0d161582019-04-16 14:36:04 -07001343 ip6_rt_copy_init(rt, res);
Martin KaFai Lau83a09ab2015-05-22 20:56:05 -07001344 rt->rt6i_flags |= RTF_CACHE;
Martin KaFai Lau83a09ab2015-05-22 20:56:05 -07001345 rt->dst.flags |= DST_HOST;
1346 rt->rt6i_dst.addr = *daddr;
1347 rt->rt6i_dst.plen = 128;
1348
David Ahern85bd05d2019-04-16 14:36:01 -07001349 if (!rt6_is_gw_or_nonexthop(res)) {
1350 if (f6i->fib6_dst.plen != 128 &&
1351 ipv6_addr_equal(&f6i->fib6_dst.addr, daddr))
Martin KaFai Lau83a09ab2015-05-22 20:56:05 -07001352 rt->rt6i_flags |= RTF_ANYCAST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353#ifdef CONFIG_IPV6_SUBTREES
Martin KaFai Lau83a09ab2015-05-22 20:56:05 -07001354 if (rt->rt6i_src.plen && saddr) {
1355 rt->rt6i_src.addr = *saddr;
1356 rt->rt6i_src.plen = 128;
Martin KaFai Lau8b9df262015-05-22 20:55:59 -07001357 }
Martin KaFai Lau83a09ab2015-05-22 20:56:05 -07001358#endif
YOSHIFUJI Hideaki95a9a5b2006-03-20 16:55:51 -08001359 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360
YOSHIFUJI Hideaki95a9a5b2006-03-20 16:55:51 -08001361 return rt;
1362}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363
David Aherndb3fede2019-04-16 14:36:03 -07001364static struct rt6_info *ip6_rt_pcpu_alloc(const struct fib6_result *res)
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001365{
David Aherndb3fede2019-04-16 14:36:03 -07001366 struct fib6_info *f6i = res->f6i;
1367 unsigned short flags = fib6_info_dst_flags(f6i);
David Ahern4832c302017-08-17 12:17:20 -07001368 struct net_device *dev;
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001369 struct rt6_info *pcpu_rt;
1370
David Aherndb3fede2019-04-16 14:36:03 -07001371 if (!fib6_info_hold_safe(f6i))
Wei Wange873e4b2018-07-21 20:56:32 -07001372 return NULL;
1373
David Ahern4832c302017-08-17 12:17:20 -07001374 rcu_read_lock();
David Ahern0d161582019-04-16 14:36:04 -07001375 dev = ip6_rt_get_dev_rcu(res);
David Ahern93531c62018-04-17 17:33:25 -07001376 pcpu_rt = ip6_dst_alloc(dev_net(dev), dev, flags);
David Ahern4832c302017-08-17 12:17:20 -07001377 rcu_read_unlock();
Wei Wange873e4b2018-07-21 20:56:32 -07001378 if (!pcpu_rt) {
David Aherndb3fede2019-04-16 14:36:03 -07001379 fib6_info_release(f6i);
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001380 return NULL;
Wei Wange873e4b2018-07-21 20:56:32 -07001381 }
David Ahern0d161582019-04-16 14:36:04 -07001382 ip6_rt_copy_init(pcpu_rt, res);
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001383 pcpu_rt->rt6i_flags |= RTF_PCPU;
1384 return pcpu_rt;
1385}
1386
Wei Wang66f5d6c2017-10-06 12:06:10 -07001387/* It should be called with rcu_read_lock() acquired */
David Aherndb3fede2019-04-16 14:36:03 -07001388static struct rt6_info *rt6_get_pcpu_route(const struct fib6_result *res)
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001389{
Eric Dumazetc3530712019-05-31 18:11:25 -07001390 struct rt6_info *pcpu_rt;
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001391
Eric Dumazetc3530712019-05-31 18:11:25 -07001392 pcpu_rt = this_cpu_read(*res->nh->rt6i_pcpu);
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001393
Martin KaFai Laua73e4192015-08-14 11:05:53 -07001394 return pcpu_rt;
1395}
1396
David Ahernafb1d4b52018-04-17 17:33:11 -07001397static struct rt6_info *rt6_make_pcpu_route(struct net *net,
David Aherndb3fede2019-04-16 14:36:03 -07001398 const struct fib6_result *res)
Martin KaFai Laua73e4192015-08-14 11:05:53 -07001399{
1400 struct rt6_info *pcpu_rt, *prev, **p;
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001401
David Aherndb3fede2019-04-16 14:36:03 -07001402 pcpu_rt = ip6_rt_pcpu_alloc(res);
Wei Wang0e09edc2019-06-20 17:36:37 -07001403 if (!pcpu_rt)
1404 return NULL;
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001405
David Ahernf40b6ae2019-05-22 20:27:55 -07001406 p = this_cpu_ptr(res->nh->rt6i_pcpu);
Wei Wanga94b9362017-10-06 12:06:04 -07001407 prev = cmpxchg(p, NULL, pcpu_rt);
Eric Dumazet951f7882017-10-08 21:07:18 -07001408 BUG_ON(prev);
Wei Wanga94b9362017-10-06 12:06:04 -07001409
Eric Dumazet61fb0d02019-05-15 19:39:52 -07001410 if (res->f6i->fib6_destroying) {
1411 struct fib6_info *from;
1412
1413 from = xchg((__force struct fib6_info **)&pcpu_rt->from, NULL);
1414 fib6_info_release(from);
1415 }
1416
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001417 return pcpu_rt;
1418}
1419
Wei Wang35732d02017-10-06 12:05:57 -07001420/* exception hash table implementation
1421 */
1422static DEFINE_SPINLOCK(rt6_exception_lock);
1423
1424/* Remove rt6_ex from hash table and free the memory
1425 * Caller must hold rt6_exception_lock
1426 */
1427static void rt6_remove_exception(struct rt6_exception_bucket *bucket,
1428 struct rt6_exception *rt6_ex)
1429{
Paolo Abenif5b51fe2019-02-20 18:18:12 +01001430 struct fib6_info *from;
Colin Ian Kingb2427e62017-10-10 18:01:16 +01001431 struct net *net;
Wei Wang81eb8442017-10-06 12:06:11 -07001432
Wei Wang35732d02017-10-06 12:05:57 -07001433 if (!bucket || !rt6_ex)
1434 return;
Colin Ian Kingb2427e62017-10-10 18:01:16 +01001435
1436 net = dev_net(rt6_ex->rt6i->dst.dev);
Paolo Abenif5b51fe2019-02-20 18:18:12 +01001437 net->ipv6.rt6_stats->fib_rt_cache--;
1438
1439 /* purge completely the exception to allow releasing the held resources:
1440 * some [sk] cache may keep the dst around for unlimited time
1441 */
Eric Dumazet0e233872019-04-28 12:22:25 -07001442 from = xchg((__force struct fib6_info **)&rt6_ex->rt6i->from, NULL);
Paolo Abenif5b51fe2019-02-20 18:18:12 +01001443 fib6_info_release(from);
1444 dst_dev_put(&rt6_ex->rt6i->dst);
1445
Wei Wang35732d02017-10-06 12:05:57 -07001446 hlist_del_rcu(&rt6_ex->hlist);
David Ahern77634cc2018-04-17 17:33:27 -07001447 dst_release(&rt6_ex->rt6i->dst);
Wei Wang35732d02017-10-06 12:05:57 -07001448 kfree_rcu(rt6_ex, rcu);
1449 WARN_ON_ONCE(!bucket->depth);
1450 bucket->depth--;
1451}
1452
1453/* Remove oldest rt6_ex in bucket and free the memory
1454 * Caller must hold rt6_exception_lock
1455 */
1456static void rt6_exception_remove_oldest(struct rt6_exception_bucket *bucket)
1457{
1458 struct rt6_exception *rt6_ex, *oldest = NULL;
1459
1460 if (!bucket)
1461 return;
1462
1463 hlist_for_each_entry(rt6_ex, &bucket->chain, hlist) {
1464 if (!oldest || time_before(rt6_ex->stamp, oldest->stamp))
1465 oldest = rt6_ex;
1466 }
1467 rt6_remove_exception(bucket, oldest);
1468}
1469
1470static u32 rt6_exception_hash(const struct in6_addr *dst,
1471 const struct in6_addr *src)
1472{
1473 static u32 seed __read_mostly;
1474 u32 val;
1475
1476 net_get_random_once(&seed, sizeof(seed));
1477 val = jhash(dst, sizeof(*dst), seed);
1478
1479#ifdef CONFIG_IPV6_SUBTREES
1480 if (src)
1481 val = jhash(src, sizeof(*src), val);
1482#endif
1483 return hash_32(val, FIB6_EXCEPTION_BUCKET_SIZE_SHIFT);
1484}
1485
1486/* Helper function to find the cached rt in the hash table
1487 * and update bucket pointer to point to the bucket for this
1488 * (daddr, saddr) pair
1489 * Caller must hold rt6_exception_lock
1490 */
1491static struct rt6_exception *
1492__rt6_find_exception_spinlock(struct rt6_exception_bucket **bucket,
1493 const struct in6_addr *daddr,
1494 const struct in6_addr *saddr)
1495{
1496 struct rt6_exception *rt6_ex;
1497 u32 hval;
1498
1499 if (!(*bucket) || !daddr)
1500 return NULL;
1501
1502 hval = rt6_exception_hash(daddr, saddr);
1503 *bucket += hval;
1504
1505 hlist_for_each_entry(rt6_ex, &(*bucket)->chain, hlist) {
1506 struct rt6_info *rt6 = rt6_ex->rt6i;
1507 bool matched = ipv6_addr_equal(daddr, &rt6->rt6i_dst.addr);
1508
1509#ifdef CONFIG_IPV6_SUBTREES
1510 if (matched && saddr)
1511 matched = ipv6_addr_equal(saddr, &rt6->rt6i_src.addr);
1512#endif
1513 if (matched)
1514 return rt6_ex;
1515 }
1516 return NULL;
1517}
1518
1519/* Helper function to find the cached rt in the hash table
1520 * and update bucket pointer to point to the bucket for this
1521 * (daddr, saddr) pair
1522 * Caller must hold rcu_read_lock()
1523 */
1524static struct rt6_exception *
1525__rt6_find_exception_rcu(struct rt6_exception_bucket **bucket,
1526 const struct in6_addr *daddr,
1527 const struct in6_addr *saddr)
1528{
1529 struct rt6_exception *rt6_ex;
1530 u32 hval;
1531
1532 WARN_ON_ONCE(!rcu_read_lock_held());
1533
1534 if (!(*bucket) || !daddr)
1535 return NULL;
1536
1537 hval = rt6_exception_hash(daddr, saddr);
1538 *bucket += hval;
1539
1540 hlist_for_each_entry_rcu(rt6_ex, &(*bucket)->chain, hlist) {
1541 struct rt6_info *rt6 = rt6_ex->rt6i;
1542 bool matched = ipv6_addr_equal(daddr, &rt6->rt6i_dst.addr);
1543
1544#ifdef CONFIG_IPV6_SUBTREES
1545 if (matched && saddr)
1546 matched = ipv6_addr_equal(saddr, &rt6->rt6i_src.addr);
1547#endif
1548 if (matched)
1549 return rt6_ex;
1550 }
1551 return NULL;
1552}
1553
David Ahernb748f262019-04-16 14:36:06 -07001554static unsigned int fib6_mtu(const struct fib6_result *res)
Wei Wang35732d02017-10-06 12:05:57 -07001555{
David Ahernb748f262019-04-16 14:36:06 -07001556 const struct fib6_nh *nh = res->nh;
David Ahernd4ead6b2018-04-17 17:33:16 -07001557 unsigned int mtu;
1558
David Ahernb748f262019-04-16 14:36:06 -07001559 if (res->f6i->fib6_pmtu) {
1560 mtu = res->f6i->fib6_pmtu;
David Aherndcd1f572018-04-18 15:39:05 -07001561 } else {
David Ahernb748f262019-04-16 14:36:06 -07001562 struct net_device *dev = nh->fib_nh_dev;
David Aherndcd1f572018-04-18 15:39:05 -07001563 struct inet6_dev *idev;
1564
1565 rcu_read_lock();
1566 idev = __in6_dev_get(dev);
1567 mtu = idev->cnf.mtu6;
1568 rcu_read_unlock();
1569 }
1570
David Ahernd4ead6b2018-04-17 17:33:16 -07001571 mtu = min_t(unsigned int, mtu, IP6_MAX_MTU);
1572
David Ahernb748f262019-04-16 14:36:06 -07001573 return mtu - lwtunnel_headroom(nh->fib_nh_lws, mtu);
David Ahernd4ead6b2018-04-17 17:33:16 -07001574}
1575
David Aherncc5c0732019-05-22 20:27:58 -07001576#define FIB6_EXCEPTION_BUCKET_FLUSHED 0x1UL
1577
1578/* used when the flushed bit is not relevant, only access to the bucket
1579 * (ie., all bucket users except rt6_insert_exception);
1580 *
1581 * called under rcu lock; sometimes called with rt6_exception_lock held
1582 */
1583static
1584struct rt6_exception_bucket *fib6_nh_get_excptn_bucket(const struct fib6_nh *nh,
1585 spinlock_t *lock)
1586{
1587 struct rt6_exception_bucket *bucket;
1588
1589 if (lock)
1590 bucket = rcu_dereference_protected(nh->rt6i_exception_bucket,
1591 lockdep_is_held(lock));
1592 else
1593 bucket = rcu_dereference(nh->rt6i_exception_bucket);
1594
1595 /* remove bucket flushed bit if set */
1596 if (bucket) {
1597 unsigned long p = (unsigned long)bucket;
1598
1599 p &= ~FIB6_EXCEPTION_BUCKET_FLUSHED;
1600 bucket = (struct rt6_exception_bucket *)p;
1601 }
1602
1603 return bucket;
1604}
1605
1606static bool fib6_nh_excptn_bucket_flushed(struct rt6_exception_bucket *bucket)
1607{
1608 unsigned long p = (unsigned long)bucket;
1609
1610 return !!(p & FIB6_EXCEPTION_BUCKET_FLUSHED);
1611}
1612
1613/* called with rt6_exception_lock held */
1614static void fib6_nh_excptn_bucket_set_flushed(struct fib6_nh *nh,
1615 spinlock_t *lock)
1616{
1617 struct rt6_exception_bucket *bucket;
1618 unsigned long p;
1619
1620 bucket = rcu_dereference_protected(nh->rt6i_exception_bucket,
1621 lockdep_is_held(lock));
1622
1623 p = (unsigned long)bucket;
1624 p |= FIB6_EXCEPTION_BUCKET_FLUSHED;
1625 bucket = (struct rt6_exception_bucket *)p;
1626 rcu_assign_pointer(nh->rt6i_exception_bucket, bucket);
1627}
1628
Wei Wang35732d02017-10-06 12:05:57 -07001629static int rt6_insert_exception(struct rt6_info *nrt,
David Ahern5012f0a2019-04-16 14:36:05 -07001630 const struct fib6_result *res)
Wei Wang35732d02017-10-06 12:05:57 -07001631{
David Ahern5e670d82018-04-17 17:33:14 -07001632 struct net *net = dev_net(nrt->dst.dev);
Wei Wang35732d02017-10-06 12:05:57 -07001633 struct rt6_exception_bucket *bucket;
David Aherncc5c0732019-05-22 20:27:58 -07001634 struct fib6_info *f6i = res->f6i;
Wei Wang35732d02017-10-06 12:05:57 -07001635 struct in6_addr *src_key = NULL;
1636 struct rt6_exception *rt6_ex;
David Aherncc5c0732019-05-22 20:27:58 -07001637 struct fib6_nh *nh = res->nh;
Wei Wang35732d02017-10-06 12:05:57 -07001638 int err = 0;
1639
Wei Wang35732d02017-10-06 12:05:57 -07001640 spin_lock_bh(&rt6_exception_lock);
1641
David Aherncc5c0732019-05-22 20:27:58 -07001642 bucket = rcu_dereference_protected(nh->rt6i_exception_bucket,
1643 lockdep_is_held(&rt6_exception_lock));
Wei Wang35732d02017-10-06 12:05:57 -07001644 if (!bucket) {
1645 bucket = kcalloc(FIB6_EXCEPTION_BUCKET_SIZE, sizeof(*bucket),
1646 GFP_ATOMIC);
1647 if (!bucket) {
1648 err = -ENOMEM;
1649 goto out;
1650 }
David Aherncc5c0732019-05-22 20:27:58 -07001651 rcu_assign_pointer(nh->rt6i_exception_bucket, bucket);
1652 } else if (fib6_nh_excptn_bucket_flushed(bucket)) {
1653 err = -EINVAL;
1654 goto out;
Wei Wang35732d02017-10-06 12:05:57 -07001655 }
1656
1657#ifdef CONFIG_IPV6_SUBTREES
David Ahern5012f0a2019-04-16 14:36:05 -07001658 /* fib6_src.plen != 0 indicates f6i is in subtree
Wei Wang35732d02017-10-06 12:05:57 -07001659 * and exception table is indexed by a hash of
David Ahern5012f0a2019-04-16 14:36:05 -07001660 * both fib6_dst and fib6_src.
Wei Wang35732d02017-10-06 12:05:57 -07001661 * Otherwise, the exception table is indexed by
David Ahern5012f0a2019-04-16 14:36:05 -07001662 * a hash of only fib6_dst.
Wei Wang35732d02017-10-06 12:05:57 -07001663 */
David Ahern5012f0a2019-04-16 14:36:05 -07001664 if (f6i->fib6_src.plen)
Wei Wang35732d02017-10-06 12:05:57 -07001665 src_key = &nrt->rt6i_src.addr;
1666#endif
David Ahern5012f0a2019-04-16 14:36:05 -07001667 /* rt6_mtu_change() might lower mtu on f6i.
Wei Wangf5bbe7e2017-10-06 12:05:59 -07001668 * Only insert this exception route if its mtu
David Ahern5012f0a2019-04-16 14:36:05 -07001669 * is less than f6i's mtu value.
Wei Wangf5bbe7e2017-10-06 12:05:59 -07001670 */
David Ahernb748f262019-04-16 14:36:06 -07001671 if (dst_metric_raw(&nrt->dst, RTAX_MTU) >= fib6_mtu(res)) {
Wei Wangf5bbe7e2017-10-06 12:05:59 -07001672 err = -EINVAL;
1673 goto out;
1674 }
Wei Wang60006a42017-10-06 12:05:58 -07001675
Wei Wang35732d02017-10-06 12:05:57 -07001676 rt6_ex = __rt6_find_exception_spinlock(&bucket, &nrt->rt6i_dst.addr,
1677 src_key);
1678 if (rt6_ex)
1679 rt6_remove_exception(bucket, rt6_ex);
1680
1681 rt6_ex = kzalloc(sizeof(*rt6_ex), GFP_ATOMIC);
1682 if (!rt6_ex) {
1683 err = -ENOMEM;
1684 goto out;
1685 }
1686 rt6_ex->rt6i = nrt;
1687 rt6_ex->stamp = jiffies;
Wei Wang35732d02017-10-06 12:05:57 -07001688 hlist_add_head_rcu(&rt6_ex->hlist, &bucket->chain);
1689 bucket->depth++;
Wei Wang81eb8442017-10-06 12:06:11 -07001690 net->ipv6.rt6_stats->fib_rt_cache++;
Wei Wang35732d02017-10-06 12:05:57 -07001691
1692 if (bucket->depth > FIB6_MAX_DEPTH)
1693 rt6_exception_remove_oldest(bucket);
1694
1695out:
1696 spin_unlock_bh(&rt6_exception_lock);
1697
1698 /* Update fn->fn_sernum to invalidate all cached dst */
Paolo Abenib886d5f2017-10-19 16:07:10 +02001699 if (!err) {
David Ahern5012f0a2019-04-16 14:36:05 -07001700 spin_lock_bh(&f6i->fib6_table->tb6_lock);
1701 fib6_update_sernum(net, f6i);
1702 spin_unlock_bh(&f6i->fib6_table->tb6_lock);
Paolo Abenib886d5f2017-10-19 16:07:10 +02001703 fib6_force_start_gc(net);
1704 }
Wei Wang35732d02017-10-06 12:05:57 -07001705
1706 return err;
1707}
1708
David Ahernc0b220c2019-05-22 20:27:57 -07001709static void fib6_nh_flush_exceptions(struct fib6_nh *nh, struct fib6_info *from)
Wei Wang35732d02017-10-06 12:05:57 -07001710{
1711 struct rt6_exception_bucket *bucket;
1712 struct rt6_exception *rt6_ex;
1713 struct hlist_node *tmp;
1714 int i;
1715
1716 spin_lock_bh(&rt6_exception_lock);
Wei Wang35732d02017-10-06 12:05:57 -07001717
David Aherncc5c0732019-05-22 20:27:58 -07001718 bucket = fib6_nh_get_excptn_bucket(nh, &rt6_exception_lock);
Wei Wang35732d02017-10-06 12:05:57 -07001719 if (!bucket)
1720 goto out;
1721
David Aherncc5c0732019-05-22 20:27:58 -07001722 /* Prevent rt6_insert_exception() to recreate the bucket list */
1723 if (!from)
1724 fib6_nh_excptn_bucket_set_flushed(nh, &rt6_exception_lock);
1725
Wei Wang35732d02017-10-06 12:05:57 -07001726 for (i = 0; i < FIB6_EXCEPTION_BUCKET_SIZE; i++) {
David Aherncc5c0732019-05-22 20:27:58 -07001727 hlist_for_each_entry_safe(rt6_ex, tmp, &bucket->chain, hlist) {
1728 if (!from ||
1729 rcu_access_pointer(rt6_ex->rt6i->from) == from)
1730 rt6_remove_exception(bucket, rt6_ex);
1731 }
1732 WARN_ON_ONCE(!from && bucket->depth);
Wei Wang35732d02017-10-06 12:05:57 -07001733 bucket++;
1734 }
Wei Wang35732d02017-10-06 12:05:57 -07001735out:
1736 spin_unlock_bh(&rt6_exception_lock);
1737}
1738
David Aherne659ba32019-06-08 14:53:28 -07001739static int rt6_nh_flush_exceptions(struct fib6_nh *nh, void *arg)
1740{
1741 struct fib6_info *f6i = arg;
1742
1743 fib6_nh_flush_exceptions(nh, f6i);
1744
1745 return 0;
1746}
1747
David Ahernc0b220c2019-05-22 20:27:57 -07001748void rt6_flush_exceptions(struct fib6_info *f6i)
1749{
David Aherne659ba32019-06-08 14:53:28 -07001750 if (f6i->nh)
1751 nexthop_for_each_fib6_nh(f6i->nh, rt6_nh_flush_exceptions,
1752 f6i);
1753 else
1754 fib6_nh_flush_exceptions(f6i->fib6_nh, f6i);
David Ahernc0b220c2019-05-22 20:27:57 -07001755}
1756
Wei Wang35732d02017-10-06 12:05:57 -07001757/* Find cached rt in the hash table inside passed in rt
1758 * Caller has to hold rcu_read_lock()
1759 */
David Ahern7e4b5122019-04-16 14:36:00 -07001760static struct rt6_info *rt6_find_cached_rt(const struct fib6_result *res,
Wei Wang510e2ce2019-05-16 13:30:54 -07001761 const struct in6_addr *daddr,
1762 const struct in6_addr *saddr)
Wei Wang35732d02017-10-06 12:05:57 -07001763{
Wei Wang510e2ce2019-05-16 13:30:54 -07001764 const struct in6_addr *src_key = NULL;
Wei Wang35732d02017-10-06 12:05:57 -07001765 struct rt6_exception_bucket *bucket;
Wei Wang35732d02017-10-06 12:05:57 -07001766 struct rt6_exception *rt6_ex;
David Ahern7e4b5122019-04-16 14:36:00 -07001767 struct rt6_info *ret = NULL;
Wei Wang35732d02017-10-06 12:05:57 -07001768
Wei Wang35732d02017-10-06 12:05:57 -07001769#ifdef CONFIG_IPV6_SUBTREES
David Ahern7e4b5122019-04-16 14:36:00 -07001770 /* fib6i_src.plen != 0 indicates f6i is in subtree
Wei Wang35732d02017-10-06 12:05:57 -07001771 * and exception table is indexed by a hash of
David Ahern7e4b5122019-04-16 14:36:00 -07001772 * both fib6_dst and fib6_src.
Wei Wang510e2ce2019-05-16 13:30:54 -07001773 * However, the src addr used to create the hash
1774 * might not be exactly the passed in saddr which
1775 * is a /128 addr from the flow.
1776 * So we need to use f6i->fib6_src to redo lookup
1777 * if the passed in saddr does not find anything.
1778 * (See the logic in ip6_rt_cache_alloc() on how
1779 * rt->rt6i_src is updated.)
Wei Wang35732d02017-10-06 12:05:57 -07001780 */
David Ahern7e4b5122019-04-16 14:36:00 -07001781 if (res->f6i->fib6_src.plen)
Wei Wang35732d02017-10-06 12:05:57 -07001782 src_key = saddr;
Wei Wang510e2ce2019-05-16 13:30:54 -07001783find_ex:
Wei Wang35732d02017-10-06 12:05:57 -07001784#endif
David Aherncc5c0732019-05-22 20:27:58 -07001785 bucket = fib6_nh_get_excptn_bucket(res->nh, NULL);
Wei Wang35732d02017-10-06 12:05:57 -07001786 rt6_ex = __rt6_find_exception_rcu(&bucket, daddr, src_key);
1787
1788 if (rt6_ex && !rt6_check_expired(rt6_ex->rt6i))
David Ahern7e4b5122019-04-16 14:36:00 -07001789 ret = rt6_ex->rt6i;
Wei Wang35732d02017-10-06 12:05:57 -07001790
Wei Wang510e2ce2019-05-16 13:30:54 -07001791#ifdef CONFIG_IPV6_SUBTREES
1792 /* Use fib6_src as src_key and redo lookup */
1793 if (!ret && src_key && src_key != &res->f6i->fib6_src.addr) {
1794 src_key = &res->f6i->fib6_src.addr;
1795 goto find_ex;
1796 }
1797#endif
1798
David Ahern7e4b5122019-04-16 14:36:00 -07001799 return ret;
Wei Wang35732d02017-10-06 12:05:57 -07001800}
1801
1802/* Remove the passed in cached rt from the hash table that contains it */
David Aherncc5c0732019-05-22 20:27:58 -07001803static int fib6_nh_remove_exception(const struct fib6_nh *nh, int plen,
David Ahernc0b220c2019-05-22 20:27:57 -07001804 const struct rt6_info *rt)
Wei Wang35732d02017-10-06 12:05:57 -07001805{
David Ahernc0b220c2019-05-22 20:27:57 -07001806 const struct in6_addr *src_key = NULL;
Wei Wang35732d02017-10-06 12:05:57 -07001807 struct rt6_exception_bucket *bucket;
Wei Wang35732d02017-10-06 12:05:57 -07001808 struct rt6_exception *rt6_ex;
1809 int err;
1810
David Aherncc5c0732019-05-22 20:27:58 -07001811 if (!rcu_access_pointer(nh->rt6i_exception_bucket))
Wei Wang35732d02017-10-06 12:05:57 -07001812 return -ENOENT;
1813
1814 spin_lock_bh(&rt6_exception_lock);
David Aherncc5c0732019-05-22 20:27:58 -07001815 bucket = fib6_nh_get_excptn_bucket(nh, &rt6_exception_lock);
1816
Wei Wang35732d02017-10-06 12:05:57 -07001817#ifdef CONFIG_IPV6_SUBTREES
David Aherncc5c0732019-05-22 20:27:58 -07001818 /* rt6i_src.plen != 0 indicates 'from' is in subtree
1819 * and exception table is indexed by a hash of
1820 * both rt6i_dst and rt6i_src.
Wei Wang35732d02017-10-06 12:05:57 -07001821 * Otherwise, the exception table is indexed by
1822 * a hash of only rt6i_dst.
1823 */
David Ahernc0b220c2019-05-22 20:27:57 -07001824 if (plen)
Wei Wang35732d02017-10-06 12:05:57 -07001825 src_key = &rt->rt6i_src.addr;
1826#endif
1827 rt6_ex = __rt6_find_exception_spinlock(&bucket,
1828 &rt->rt6i_dst.addr,
1829 src_key);
1830 if (rt6_ex) {
1831 rt6_remove_exception(bucket, rt6_ex);
1832 err = 0;
1833 } else {
1834 err = -ENOENT;
1835 }
1836
1837 spin_unlock_bh(&rt6_exception_lock);
1838 return err;
1839}
1840
David Aherne659ba32019-06-08 14:53:28 -07001841struct fib6_nh_excptn_arg {
1842 struct rt6_info *rt;
1843 int plen;
1844};
1845
1846static int rt6_nh_remove_exception_rt(struct fib6_nh *nh, void *_arg)
1847{
1848 struct fib6_nh_excptn_arg *arg = _arg;
1849 int err;
1850
1851 err = fib6_nh_remove_exception(nh, arg->plen, arg->rt);
1852 if (err == 0)
1853 return 1;
1854
1855 return 0;
1856}
1857
David Ahernc0b220c2019-05-22 20:27:57 -07001858static int rt6_remove_exception_rt(struct rt6_info *rt)
1859{
1860 struct fib6_info *from;
1861
1862 from = rcu_dereference(rt->from);
David Aherncc5c0732019-05-22 20:27:58 -07001863 if (!from || !(rt->rt6i_flags & RTF_CACHE))
David Ahernc0b220c2019-05-22 20:27:57 -07001864 return -EINVAL;
1865
David Aherne659ba32019-06-08 14:53:28 -07001866 if (from->nh) {
1867 struct fib6_nh_excptn_arg arg = {
1868 .rt = rt,
1869 .plen = from->fib6_src.plen
1870 };
1871 int rc;
1872
1873 /* rc = 1 means an entry was found */
1874 rc = nexthop_for_each_fib6_nh(from->nh,
1875 rt6_nh_remove_exception_rt,
1876 &arg);
1877 return rc ? 0 : -ENOENT;
1878 }
1879
David Ahern1cf844c2019-05-22 20:27:59 -07001880 return fib6_nh_remove_exception(from->fib6_nh,
David Aherncc5c0732019-05-22 20:27:58 -07001881 from->fib6_src.plen, rt);
David Ahernc0b220c2019-05-22 20:27:57 -07001882}
1883
Wei Wang35732d02017-10-06 12:05:57 -07001884/* Find rt6_ex which contains the passed in rt cache and
1885 * refresh its stamp
1886 */
David Aherncc5c0732019-05-22 20:27:58 -07001887static void fib6_nh_update_exception(const struct fib6_nh *nh, int plen,
David Ahernc0b220c2019-05-22 20:27:57 -07001888 const struct rt6_info *rt)
Wei Wang35732d02017-10-06 12:05:57 -07001889{
David Ahernc0b220c2019-05-22 20:27:57 -07001890 const struct in6_addr *src_key = NULL;
Wei Wang35732d02017-10-06 12:05:57 -07001891 struct rt6_exception_bucket *bucket;
Wei Wang35732d02017-10-06 12:05:57 -07001892 struct rt6_exception *rt6_ex;
Paolo Abeni193f3682019-02-21 11:19:41 +01001893
David Aherncc5c0732019-05-22 20:27:58 -07001894 bucket = fib6_nh_get_excptn_bucket(nh, NULL);
Wei Wang35732d02017-10-06 12:05:57 -07001895#ifdef CONFIG_IPV6_SUBTREES
David Aherncc5c0732019-05-22 20:27:58 -07001896 /* rt6i_src.plen != 0 indicates 'from' is in subtree
1897 * and exception table is indexed by a hash of
1898 * both rt6i_dst and rt6i_src.
Wei Wang35732d02017-10-06 12:05:57 -07001899 * Otherwise, the exception table is indexed by
1900 * a hash of only rt6i_dst.
1901 */
David Ahernc0b220c2019-05-22 20:27:57 -07001902 if (plen)
Wei Wang35732d02017-10-06 12:05:57 -07001903 src_key = &rt->rt6i_src.addr;
1904#endif
David Aherncc5c0732019-05-22 20:27:58 -07001905 rt6_ex = __rt6_find_exception_rcu(&bucket, &rt->rt6i_dst.addr, src_key);
Wei Wang35732d02017-10-06 12:05:57 -07001906 if (rt6_ex)
1907 rt6_ex->stamp = jiffies;
David Ahernc0b220c2019-05-22 20:27:57 -07001908}
Wei Wang35732d02017-10-06 12:05:57 -07001909
David Aherne659ba32019-06-08 14:53:28 -07001910struct fib6_nh_match_arg {
1911 const struct net_device *dev;
1912 const struct in6_addr *gw;
1913 struct fib6_nh *match;
1914};
1915
1916/* determine if fib6_nh has given device and gateway */
1917static int fib6_nh_find_match(struct fib6_nh *nh, void *_arg)
1918{
1919 struct fib6_nh_match_arg *arg = _arg;
1920
1921 if (arg->dev != nh->fib_nh_dev ||
1922 (arg->gw && !nh->fib_nh_gw_family) ||
1923 (!arg->gw && nh->fib_nh_gw_family) ||
1924 (arg->gw && !ipv6_addr_equal(arg->gw, &nh->fib_nh_gw6)))
1925 return 0;
1926
1927 arg->match = nh;
1928
1929 /* found a match, break the loop */
1930 return 1;
1931}
1932
David Ahernc0b220c2019-05-22 20:27:57 -07001933static void rt6_update_exception_stamp_rt(struct rt6_info *rt)
1934{
1935 struct fib6_info *from;
David Aherne659ba32019-06-08 14:53:28 -07001936 struct fib6_nh *fib6_nh;
David Ahernc0b220c2019-05-22 20:27:57 -07001937
1938 rcu_read_lock();
1939
1940 from = rcu_dereference(rt->from);
1941 if (!from || !(rt->rt6i_flags & RTF_CACHE))
1942 goto unlock;
1943
David Aherne659ba32019-06-08 14:53:28 -07001944 if (from->nh) {
1945 struct fib6_nh_match_arg arg = {
1946 .dev = rt->dst.dev,
1947 .gw = &rt->rt6i_gateway,
1948 };
1949
1950 nexthop_for_each_fib6_nh(from->nh, fib6_nh_find_match, &arg);
1951
1952 if (!arg.match)
1953 return;
1954 fib6_nh = arg.match;
1955 } else {
1956 fib6_nh = from->fib6_nh;
1957 }
1958 fib6_nh_update_exception(fib6_nh, from->fib6_src.plen, rt);
Paolo Abeni193f3682019-02-21 11:19:41 +01001959unlock:
Wei Wang35732d02017-10-06 12:05:57 -07001960 rcu_read_unlock();
1961}
1962
Stefano Brivioe9fa1492018-03-06 11:10:19 +01001963static bool rt6_mtu_change_route_allowed(struct inet6_dev *idev,
1964 struct rt6_info *rt, int mtu)
1965{
1966 /* If the new MTU is lower than the route PMTU, this new MTU will be the
1967 * lowest MTU in the path: always allow updating the route PMTU to
1968 * reflect PMTU decreases.
1969 *
1970 * If the new MTU is higher, and the route PMTU is equal to the local
1971 * MTU, this means the old MTU is the lowest in the path, so allow
1972 * updating it: if other nodes now have lower MTUs, PMTU discovery will
1973 * handle this.
1974 */
1975
1976 if (dst_mtu(&rt->dst) >= mtu)
1977 return true;
1978
1979 if (dst_mtu(&rt->dst) == idev->cnf.mtu6)
1980 return true;
1981
1982 return false;
1983}
1984
1985static void rt6_exceptions_update_pmtu(struct inet6_dev *idev,
David Aherncc5c0732019-05-22 20:27:58 -07001986 const struct fib6_nh *nh, int mtu)
Wei Wangf5bbe7e2017-10-06 12:05:59 -07001987{
1988 struct rt6_exception_bucket *bucket;
1989 struct rt6_exception *rt6_ex;
1990 int i;
1991
David Aherncc5c0732019-05-22 20:27:58 -07001992 bucket = fib6_nh_get_excptn_bucket(nh, &rt6_exception_lock);
Stefano Brivioe9fa1492018-03-06 11:10:19 +01001993 if (!bucket)
1994 return;
1995
1996 for (i = 0; i < FIB6_EXCEPTION_BUCKET_SIZE; i++) {
1997 hlist_for_each_entry(rt6_ex, &bucket->chain, hlist) {
1998 struct rt6_info *entry = rt6_ex->rt6i;
1999
2000 /* For RTF_CACHE with rt6i_pmtu == 0 (i.e. a redirected
David Ahernd4ead6b2018-04-17 17:33:16 -07002001 * route), the metrics of its rt->from have already
Stefano Brivioe9fa1492018-03-06 11:10:19 +01002002 * been updated.
2003 */
David Ahernd4ead6b2018-04-17 17:33:16 -07002004 if (dst_metric_raw(&entry->dst, RTAX_MTU) &&
Stefano Brivioe9fa1492018-03-06 11:10:19 +01002005 rt6_mtu_change_route_allowed(idev, entry, mtu))
David Ahernd4ead6b2018-04-17 17:33:16 -07002006 dst_metric_set(&entry->dst, RTAX_MTU, mtu);
Wei Wangf5bbe7e2017-10-06 12:05:59 -07002007 }
Stefano Brivioe9fa1492018-03-06 11:10:19 +01002008 bucket++;
Wei Wangf5bbe7e2017-10-06 12:05:59 -07002009 }
2010}
2011
Wei Wangb16cb452017-10-06 12:06:00 -07002012#define RTF_CACHE_GATEWAY (RTF_GATEWAY | RTF_CACHE)
2013
David Aherncc5c0732019-05-22 20:27:58 -07002014static void fib6_nh_exceptions_clean_tohost(const struct fib6_nh *nh,
2015 const struct in6_addr *gateway)
Wei Wangb16cb452017-10-06 12:06:00 -07002016{
2017 struct rt6_exception_bucket *bucket;
2018 struct rt6_exception *rt6_ex;
2019 struct hlist_node *tmp;
2020 int i;
2021
David Aherncc5c0732019-05-22 20:27:58 -07002022 if (!rcu_access_pointer(nh->rt6i_exception_bucket))
Wei Wangb16cb452017-10-06 12:06:00 -07002023 return;
2024
2025 spin_lock_bh(&rt6_exception_lock);
David Aherncc5c0732019-05-22 20:27:58 -07002026 bucket = fib6_nh_get_excptn_bucket(nh, &rt6_exception_lock);
Wei Wangb16cb452017-10-06 12:06:00 -07002027 if (bucket) {
2028 for (i = 0; i < FIB6_EXCEPTION_BUCKET_SIZE; i++) {
2029 hlist_for_each_entry_safe(rt6_ex, tmp,
2030 &bucket->chain, hlist) {
2031 struct rt6_info *entry = rt6_ex->rt6i;
2032
2033 if ((entry->rt6i_flags & RTF_CACHE_GATEWAY) ==
2034 RTF_CACHE_GATEWAY &&
2035 ipv6_addr_equal(gateway,
2036 &entry->rt6i_gateway)) {
2037 rt6_remove_exception(bucket, rt6_ex);
2038 }
2039 }
2040 bucket++;
2041 }
2042 }
2043
2044 spin_unlock_bh(&rt6_exception_lock);
2045}
2046
Wei Wangc757faa2017-10-06 12:06:01 -07002047static void rt6_age_examine_exception(struct rt6_exception_bucket *bucket,
2048 struct rt6_exception *rt6_ex,
2049 struct fib6_gc_args *gc_args,
2050 unsigned long now)
2051{
2052 struct rt6_info *rt = rt6_ex->rt6i;
2053
Paolo Abeni1859bac2017-10-19 16:07:11 +02002054 /* we are pruning and obsoleting aged-out and non gateway exceptions
2055 * even if others have still references to them, so that on next
2056 * dst_check() such references can be dropped.
2057 * EXPIRES exceptions - e.g. pmtu-generated ones are pruned when
2058 * expired, independently from their aging, as per RFC 8201 section 4
2059 */
Wei Wang31afeb42018-01-26 11:40:17 -08002060 if (!(rt->rt6i_flags & RTF_EXPIRES)) {
2061 if (time_after_eq(now, rt->dst.lastuse + gc_args->timeout)) {
2062 RT6_TRACE("aging clone %p\n", rt);
2063 rt6_remove_exception(bucket, rt6_ex);
2064 return;
2065 }
2066 } else if (time_after(jiffies, rt->dst.expires)) {
2067 RT6_TRACE("purging expired route %p\n", rt);
Wei Wangc757faa2017-10-06 12:06:01 -07002068 rt6_remove_exception(bucket, rt6_ex);
2069 return;
Wei Wang31afeb42018-01-26 11:40:17 -08002070 }
2071
2072 if (rt->rt6i_flags & RTF_GATEWAY) {
Wei Wangc757faa2017-10-06 12:06:01 -07002073 struct neighbour *neigh;
2074 __u8 neigh_flags = 0;
2075
Eric Dumazet1bfa26f2018-03-23 07:56:58 -07002076 neigh = __ipv6_neigh_lookup_noref(rt->dst.dev, &rt->rt6i_gateway);
2077 if (neigh)
Wei Wangc757faa2017-10-06 12:06:01 -07002078 neigh_flags = neigh->flags;
Eric Dumazet1bfa26f2018-03-23 07:56:58 -07002079
Wei Wangc757faa2017-10-06 12:06:01 -07002080 if (!(neigh_flags & NTF_ROUTER)) {
2081 RT6_TRACE("purging route %p via non-router but gateway\n",
2082 rt);
2083 rt6_remove_exception(bucket, rt6_ex);
2084 return;
2085 }
2086 }
Wei Wang31afeb42018-01-26 11:40:17 -08002087
Wei Wangc757faa2017-10-06 12:06:01 -07002088 gc_args->more++;
2089}
2090
David Aherncc5c0732019-05-22 20:27:58 -07002091static void fib6_nh_age_exceptions(const struct fib6_nh *nh,
David Ahernc0b220c2019-05-22 20:27:57 -07002092 struct fib6_gc_args *gc_args,
2093 unsigned long now)
Wei Wangc757faa2017-10-06 12:06:01 -07002094{
2095 struct rt6_exception_bucket *bucket;
2096 struct rt6_exception *rt6_ex;
2097 struct hlist_node *tmp;
2098 int i;
2099
David Aherncc5c0732019-05-22 20:27:58 -07002100 if (!rcu_access_pointer(nh->rt6i_exception_bucket))
Wei Wangc757faa2017-10-06 12:06:01 -07002101 return;
2102
Eric Dumazet1bfa26f2018-03-23 07:56:58 -07002103 rcu_read_lock_bh();
2104 spin_lock(&rt6_exception_lock);
David Aherncc5c0732019-05-22 20:27:58 -07002105 bucket = fib6_nh_get_excptn_bucket(nh, &rt6_exception_lock);
Wei Wangc757faa2017-10-06 12:06:01 -07002106 if (bucket) {
2107 for (i = 0; i < FIB6_EXCEPTION_BUCKET_SIZE; i++) {
2108 hlist_for_each_entry_safe(rt6_ex, tmp,
2109 &bucket->chain, hlist) {
2110 rt6_age_examine_exception(bucket, rt6_ex,
2111 gc_args, now);
2112 }
2113 bucket++;
2114 }
2115 }
Eric Dumazet1bfa26f2018-03-23 07:56:58 -07002116 spin_unlock(&rt6_exception_lock);
2117 rcu_read_unlock_bh();
Wei Wangc757faa2017-10-06 12:06:01 -07002118}
2119
David Aherne659ba32019-06-08 14:53:28 -07002120struct fib6_nh_age_excptn_arg {
2121 struct fib6_gc_args *gc_args;
2122 unsigned long now;
2123};
2124
2125static int rt6_nh_age_exceptions(struct fib6_nh *nh, void *_arg)
2126{
2127 struct fib6_nh_age_excptn_arg *arg = _arg;
2128
2129 fib6_nh_age_exceptions(nh, arg->gc_args, arg->now);
2130 return 0;
2131}
2132
David Aherncc5c0732019-05-22 20:27:58 -07002133void rt6_age_exceptions(struct fib6_info *f6i,
David Ahernc0b220c2019-05-22 20:27:57 -07002134 struct fib6_gc_args *gc_args,
2135 unsigned long now)
2136{
David Aherne659ba32019-06-08 14:53:28 -07002137 if (f6i->nh) {
2138 struct fib6_nh_age_excptn_arg arg = {
2139 .gc_args = gc_args,
2140 .now = now
2141 };
2142
2143 nexthop_for_each_fib6_nh(f6i->nh, rt6_nh_age_exceptions,
2144 &arg);
2145 } else {
2146 fib6_nh_age_exceptions(f6i->fib6_nh, gc_args, now);
2147 }
David Ahernc0b220c2019-05-22 20:27:57 -07002148}
2149
David Ahern1d053da2018-05-09 20:34:21 -07002150/* must be called with rcu lock held */
David Aherneffda4d2019-04-16 14:36:10 -07002151int fib6_table_lookup(struct net *net, struct fib6_table *table, int oif,
2152 struct flowi6 *fl6, struct fib6_result *res, int strict)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002153{
Martin KaFai Lau367efcb2014-10-20 13:42:45 -07002154 struct fib6_node *fn, *saved_fn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002155
David Ahern64547432018-05-09 20:34:19 -07002156 fn = fib6_node_lookup(&table->tb6_root, &fl6->daddr, &fl6->saddr);
Martin KaFai Lau367efcb2014-10-20 13:42:45 -07002157 saved_fn = fn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002158
David Ahernca254492015-10-12 11:47:10 -07002159 if (fl6->flowi6_flags & FLOWI_FLAG_SKIP_NH_OIF)
2160 oif = 0;
2161
Martin KaFai Laua3c00e42014-10-20 13:42:43 -07002162redo_rt6_select:
David Aherneffda4d2019-04-16 14:36:10 -07002163 rt6_select(net, fn, oif, res, strict);
2164 if (res->f6i == net->ipv6.fib6_null_entry) {
Martin KaFai Laua3c00e42014-10-20 13:42:43 -07002165 fn = fib6_backtrack(fn, &fl6->saddr);
2166 if (fn)
2167 goto redo_rt6_select;
Martin KaFai Lau367efcb2014-10-20 13:42:45 -07002168 else if (strict & RT6_LOOKUP_F_REACHABLE) {
2169 /* also consider unreachable route */
2170 strict &= ~RT6_LOOKUP_F_REACHABLE;
2171 fn = saved_fn;
2172 goto redo_rt6_select;
Martin KaFai Lau367efcb2014-10-20 13:42:45 -07002173 }
Martin KaFai Laua3c00e42014-10-20 13:42:43 -07002174 }
2175
David Aherneffda4d2019-04-16 14:36:10 -07002176 trace_fib6_table_lookup(net, res, table, fl6);
YOSHIFUJI Hideakifb9de912006-03-20 16:59:08 -08002177
David Aherneffda4d2019-04-16 14:36:10 -07002178 return 0;
David Ahern1d053da2018-05-09 20:34:21 -07002179}
2180
2181struct rt6_info *ip6_pol_route(struct net *net, struct fib6_table *table,
2182 int oif, struct flowi6 *fl6,
2183 const struct sk_buff *skb, int flags)
2184{
David Ahernb1d40992019-04-16 14:35:59 -07002185 struct fib6_result res = {};
Wei Wang0e09edc2019-06-20 17:36:37 -07002186 struct rt6_info *rt = NULL;
David Ahern1d053da2018-05-09 20:34:21 -07002187 int strict = 0;
2188
Wei Wang0e09edc2019-06-20 17:36:37 -07002189 WARN_ON_ONCE((flags & RT6_LOOKUP_F_DST_NOREF) &&
2190 !rcu_read_lock_held());
2191
David Ahern1d053da2018-05-09 20:34:21 -07002192 strict |= flags & RT6_LOOKUP_F_IFACE;
2193 strict |= flags & RT6_LOOKUP_F_IGNORE_LINKSTATE;
2194 if (net->ipv6.devconf_all->forwarding == 0)
2195 strict |= RT6_LOOKUP_F_REACHABLE;
2196
2197 rcu_read_lock();
2198
David Aherneffda4d2019-04-16 14:36:10 -07002199 fib6_table_lookup(net, table, oif, fl6, &res, strict);
Wei Wang0e09edc2019-06-20 17:36:37 -07002200 if (res.f6i == net->ipv6.fib6_null_entry)
2201 goto out;
David Ahern23fb93a2018-04-17 17:33:23 -07002202
David Ahernb1d40992019-04-16 14:35:59 -07002203 fib6_select_path(net, &res, fl6, oif, false, skb, strict);
David Ahernd83009d2019-04-09 14:41:17 -07002204
David Ahern23fb93a2018-04-17 17:33:23 -07002205 /*Search through exception table */
David Ahern7e4b5122019-04-16 14:36:00 -07002206 rt = rt6_find_cached_rt(&res, &fl6->daddr, &fl6->saddr);
David Ahern23fb93a2018-04-17 17:33:23 -07002207 if (rt) {
Wei Wang0e09edc2019-06-20 17:36:37 -07002208 goto out;
Martin KaFai Lau3da59bd2015-05-22 20:56:03 -07002209 } else if (unlikely((fl6->flowi6_flags & FLOWI_FLAG_KNOWN_NH) &&
David Ahernb1d40992019-04-16 14:35:59 -07002210 !res.nh->fib_nh_gw_family)) {
Martin KaFai Lau3da59bd2015-05-22 20:56:03 -07002211 /* Create a RTF_CACHE clone which will not be
2212 * owned by the fib6 tree. It is for the special case where
2213 * the daddr in the skb during the neighbor look-up is different
2214 * from the fl6->daddr used to look-up route here.
2215 */
Wei Wang0e09edc2019-06-20 17:36:37 -07002216 rt = ip6_rt_cache_alloc(&res, &fl6->daddr, NULL);
Martin KaFai Lau3da59bd2015-05-22 20:56:03 -07002217
Wei Wang0e09edc2019-06-20 17:36:37 -07002218 if (rt) {
2219 /* 1 refcnt is taken during ip6_rt_cache_alloc().
2220 * As rt6_uncached_list_add() does not consume refcnt,
2221 * this refcnt is always returned to the caller even
2222 * if caller sets RT6_LOOKUP_F_DST_NOREF flag.
Wei Wang1cfb71e2017-06-17 10:42:33 -07002223 */
Wei Wang0e09edc2019-06-20 17:36:37 -07002224 rt6_uncached_list_add(rt);
Wei Wang81eb8442017-10-06 12:06:11 -07002225 atomic_inc(&net->ipv6.rt6_stats->fib_rt_uncache);
Wei Wang0e09edc2019-06-20 17:36:37 -07002226 rcu_read_unlock();
David Ahernb8115802015-11-19 12:24:22 -08002227
Wei Wang0e09edc2019-06-20 17:36:37 -07002228 return rt;
2229 }
Martin KaFai Laud52d3992015-05-22 20:56:06 -07002230 } else {
2231 /* Get a percpu copy */
Eric Dumazet951f7882017-10-08 21:07:18 -07002232 local_bh_disable();
Wei Wang0e09edc2019-06-20 17:36:37 -07002233 rt = rt6_get_pcpu_route(&res);
Martin KaFai Laud52d3992015-05-22 20:56:06 -07002234
Wei Wang0e09edc2019-06-20 17:36:37 -07002235 if (!rt)
2236 rt = rt6_make_pcpu_route(net, &res);
David Ahern93531c62018-04-17 17:33:25 -07002237
Eric Dumazet951f7882017-10-08 21:07:18 -07002238 local_bh_enable();
Martin KaFai Laud52d3992015-05-22 20:56:06 -07002239 }
Wei Wang0e09edc2019-06-20 17:36:37 -07002240out:
2241 if (!rt)
2242 rt = net->ipv6.ip6_null_entry;
2243 if (!(flags & RT6_LOOKUP_F_DST_NOREF))
2244 ip6_hold_safe(net, &rt);
2245 rcu_read_unlock();
2246
2247 return rt;
Thomas Grafc71099a2006-08-04 23:20:06 -07002248}
David Ahern9ff74382016-06-13 13:44:19 -07002249EXPORT_SYMBOL_GPL(ip6_pol_route);
Thomas Grafc71099a2006-08-04 23:20:06 -07002250
David Ahernb75cc8f2018-03-02 08:32:17 -08002251static struct rt6_info *ip6_pol_route_input(struct net *net,
2252 struct fib6_table *table,
2253 struct flowi6 *fl6,
2254 const struct sk_buff *skb,
2255 int flags)
Pavel Emelyanov4acad722007-10-15 13:02:51 -07002256{
David Ahernb75cc8f2018-03-02 08:32:17 -08002257 return ip6_pol_route(net, table, fl6->flowi6_iif, fl6, skb, flags);
Pavel Emelyanov4acad722007-10-15 13:02:51 -07002258}
2259
Mahesh Bandeward409b842016-09-16 12:59:08 -07002260struct dst_entry *ip6_route_input_lookup(struct net *net,
2261 struct net_device *dev,
David Ahernb75cc8f2018-03-02 08:32:17 -08002262 struct flowi6 *fl6,
2263 const struct sk_buff *skb,
2264 int flags)
Shmulik Ladkani72331bc2012-04-01 04:03:45 +00002265{
2266 if (rt6_need_strict(&fl6->daddr) && dev->type != ARPHRD_PIMREG)
2267 flags |= RT6_LOOKUP_F_IFACE;
2268
David Ahernb75cc8f2018-03-02 08:32:17 -08002269 return fib6_rule_lookup(net, fl6, skb, flags, ip6_pol_route_input);
Shmulik Ladkani72331bc2012-04-01 04:03:45 +00002270}
Mahesh Bandeward409b842016-09-16 12:59:08 -07002271EXPORT_SYMBOL_GPL(ip6_route_input_lookup);
Shmulik Ladkani72331bc2012-04-01 04:03:45 +00002272
Jakub Sitnicki23aebda2017-08-23 09:58:29 +02002273static void ip6_multipath_l3_keys(const struct sk_buff *skb,
Roopa Prabhu5e5d6fe2018-02-28 22:43:22 -05002274 struct flow_keys *keys,
2275 struct flow_keys *flkeys)
Jakub Sitnicki23aebda2017-08-23 09:58:29 +02002276{
2277 const struct ipv6hdr *outer_iph = ipv6_hdr(skb);
2278 const struct ipv6hdr *key_iph = outer_iph;
Roopa Prabhu5e5d6fe2018-02-28 22:43:22 -05002279 struct flow_keys *_flkeys = flkeys;
Jakub Sitnicki23aebda2017-08-23 09:58:29 +02002280 const struct ipv6hdr *inner_iph;
2281 const struct icmp6hdr *icmph;
2282 struct ipv6hdr _inner_iph;
Eric Dumazetcea67a22018-04-29 09:54:59 -07002283 struct icmp6hdr _icmph;
Jakub Sitnicki23aebda2017-08-23 09:58:29 +02002284
2285 if (likely(outer_iph->nexthdr != IPPROTO_ICMPV6))
2286 goto out;
2287
Eric Dumazetcea67a22018-04-29 09:54:59 -07002288 icmph = skb_header_pointer(skb, skb_transport_offset(skb),
2289 sizeof(_icmph), &_icmph);
2290 if (!icmph)
2291 goto out;
2292
Jakub Sitnicki23aebda2017-08-23 09:58:29 +02002293 if (icmph->icmp6_type != ICMPV6_DEST_UNREACH &&
2294 icmph->icmp6_type != ICMPV6_PKT_TOOBIG &&
2295 icmph->icmp6_type != ICMPV6_TIME_EXCEED &&
2296 icmph->icmp6_type != ICMPV6_PARAMPROB)
2297 goto out;
2298
2299 inner_iph = skb_header_pointer(skb,
2300 skb_transport_offset(skb) + sizeof(*icmph),
2301 sizeof(_inner_iph), &_inner_iph);
2302 if (!inner_iph)
2303 goto out;
2304
2305 key_iph = inner_iph;
Roopa Prabhu5e5d6fe2018-02-28 22:43:22 -05002306 _flkeys = NULL;
Jakub Sitnicki23aebda2017-08-23 09:58:29 +02002307out:
Roopa Prabhu5e5d6fe2018-02-28 22:43:22 -05002308 if (_flkeys) {
2309 keys->addrs.v6addrs.src = _flkeys->addrs.v6addrs.src;
2310 keys->addrs.v6addrs.dst = _flkeys->addrs.v6addrs.dst;
2311 keys->tags.flow_label = _flkeys->tags.flow_label;
2312 keys->basic.ip_proto = _flkeys->basic.ip_proto;
2313 } else {
2314 keys->addrs.v6addrs.src = key_iph->saddr;
2315 keys->addrs.v6addrs.dst = key_iph->daddr;
Michal Kubecekfa1be7e2018-06-04 11:36:05 +02002316 keys->tags.flow_label = ip6_flowlabel(key_iph);
Roopa Prabhu5e5d6fe2018-02-28 22:43:22 -05002317 keys->basic.ip_proto = key_iph->nexthdr;
2318 }
Jakub Sitnicki23aebda2017-08-23 09:58:29 +02002319}
2320
2321/* if skb is set it will be used and fl6 can be NULL */
David Ahernb4bac172018-03-02 08:32:18 -08002322u32 rt6_multipath_hash(const struct net *net, const struct flowi6 *fl6,
2323 const struct sk_buff *skb, struct flow_keys *flkeys)
Jakub Sitnicki23aebda2017-08-23 09:58:29 +02002324{
2325 struct flow_keys hash_keys;
David Ahern9a2a5372018-03-02 08:32:15 -08002326 u32 mhash;
Jakub Sitnicki23aebda2017-08-23 09:58:29 +02002327
David S. Millerbbfa0472018-03-12 11:09:33 -04002328 switch (ip6_multipath_hash_policy(net)) {
David Ahernb4bac172018-03-02 08:32:18 -08002329 case 0:
2330 memset(&hash_keys, 0, sizeof(hash_keys));
2331 hash_keys.control.addr_type = FLOW_DISSECTOR_KEY_IPV6_ADDRS;
2332 if (skb) {
2333 ip6_multipath_l3_keys(skb, &hash_keys, flkeys);
2334 } else {
2335 hash_keys.addrs.v6addrs.src = fl6->saddr;
2336 hash_keys.addrs.v6addrs.dst = fl6->daddr;
Michal Kubecekfa1be7e2018-06-04 11:36:05 +02002337 hash_keys.tags.flow_label = (__force u32)flowi6_get_flowlabel(fl6);
David Ahernb4bac172018-03-02 08:32:18 -08002338 hash_keys.basic.ip_proto = fl6->flowi6_proto;
2339 }
2340 break;
2341 case 1:
2342 if (skb) {
2343 unsigned int flag = FLOW_DISSECTOR_F_STOP_AT_ENCAP;
2344 struct flow_keys keys;
2345
2346 /* short-circuit if we already have L4 hash present */
2347 if (skb->l4_hash)
2348 return skb_get_hash_raw(skb) >> 1;
2349
2350 memset(&hash_keys, 0, sizeof(hash_keys));
2351
2352 if (!flkeys) {
2353 skb_flow_dissect_flow_keys(skb, &keys, flag);
2354 flkeys = &keys;
2355 }
2356 hash_keys.control.addr_type = FLOW_DISSECTOR_KEY_IPV6_ADDRS;
2357 hash_keys.addrs.v6addrs.src = flkeys->addrs.v6addrs.src;
2358 hash_keys.addrs.v6addrs.dst = flkeys->addrs.v6addrs.dst;
2359 hash_keys.ports.src = flkeys->ports.src;
2360 hash_keys.ports.dst = flkeys->ports.dst;
2361 hash_keys.basic.ip_proto = flkeys->basic.ip_proto;
2362 } else {
2363 memset(&hash_keys, 0, sizeof(hash_keys));
2364 hash_keys.control.addr_type = FLOW_DISSECTOR_KEY_IPV6_ADDRS;
2365 hash_keys.addrs.v6addrs.src = fl6->saddr;
2366 hash_keys.addrs.v6addrs.dst = fl6->daddr;
2367 hash_keys.ports.src = fl6->fl6_sport;
2368 hash_keys.ports.dst = fl6->fl6_dport;
2369 hash_keys.basic.ip_proto = fl6->flowi6_proto;
2370 }
2371 break;
Jakub Sitnicki23aebda2017-08-23 09:58:29 +02002372 }
David Ahern9a2a5372018-03-02 08:32:15 -08002373 mhash = flow_hash_from_keys(&hash_keys);
Jakub Sitnicki23aebda2017-08-23 09:58:29 +02002374
David Ahern9a2a5372018-03-02 08:32:15 -08002375 return mhash >> 1;
Jakub Sitnicki23aebda2017-08-23 09:58:29 +02002376}
2377
Wei Wang67f415d2019-06-20 17:36:40 -07002378/* Called with rcu held */
Thomas Grafc71099a2006-08-04 23:20:06 -07002379void ip6_route_input(struct sk_buff *skb)
2380{
Eric Dumazetb71d1d42011-04-22 04:53:02 +00002381 const struct ipv6hdr *iph = ipv6_hdr(skb);
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09002382 struct net *net = dev_net(skb->dev);
Wei Wang67f415d2019-06-20 17:36:40 -07002383 int flags = RT6_LOOKUP_F_HAS_SADDR | RT6_LOOKUP_F_DST_NOREF;
Jiri Benc904af042015-08-20 13:56:31 +02002384 struct ip_tunnel_info *tun_info;
David S. Miller4c9483b2011-03-12 16:22:43 -05002385 struct flowi6 fl6 = {
David Aherne0d56fd2016-09-10 12:09:57 -07002386 .flowi6_iif = skb->dev->ifindex,
David S. Miller4c9483b2011-03-12 16:22:43 -05002387 .daddr = iph->daddr,
2388 .saddr = iph->saddr,
YOSHIFUJI Hideaki / 吉藤英明6502ca52013-01-13 05:01:51 +00002389 .flowlabel = ip6_flowinfo(iph),
David S. Miller4c9483b2011-03-12 16:22:43 -05002390 .flowi6_mark = skb->mark,
2391 .flowi6_proto = iph->nexthdr,
Thomas Grafc71099a2006-08-04 23:20:06 -07002392 };
Roopa Prabhu5e5d6fe2018-02-28 22:43:22 -05002393 struct flow_keys *flkeys = NULL, _flkeys;
Thomas Grafadaa70b2006-10-13 15:01:03 -07002394
Jiri Benc904af042015-08-20 13:56:31 +02002395 tun_info = skb_tunnel_info(skb);
Jiri Benc46fa0622015-08-28 20:48:19 +02002396 if (tun_info && !(tun_info->mode & IP_TUNNEL_INFO_TX))
Jiri Benc904af042015-08-20 13:56:31 +02002397 fl6.flowi6_tun_key.tun_id = tun_info->key.tun_id;
Roopa Prabhu5e5d6fe2018-02-28 22:43:22 -05002398
2399 if (fib6_rules_early_flow_dissect(net, skb, &fl6, &_flkeys))
2400 flkeys = &_flkeys;
2401
Jakub Sitnicki23aebda2017-08-23 09:58:29 +02002402 if (unlikely(fl6.flowi6_proto == IPPROTO_ICMPV6))
David Ahernb4bac172018-03-02 08:32:18 -08002403 fl6.mp_hash = rt6_multipath_hash(net, &fl6, skb, flkeys);
Jiri Benc06e9d042015-08-20 13:56:26 +02002404 skb_dst_drop(skb);
Wei Wang67f415d2019-06-20 17:36:40 -07002405 skb_dst_set_noref(skb, ip6_route_input_lookup(net, skb->dev,
2406 &fl6, skb, flags));
Thomas Grafc71099a2006-08-04 23:20:06 -07002407}
2408
David Ahernb75cc8f2018-03-02 08:32:17 -08002409static struct rt6_info *ip6_pol_route_output(struct net *net,
2410 struct fib6_table *table,
2411 struct flowi6 *fl6,
2412 const struct sk_buff *skb,
2413 int flags)
Thomas Grafc71099a2006-08-04 23:20:06 -07002414{
David Ahernb75cc8f2018-03-02 08:32:17 -08002415 return ip6_pol_route(net, table, fl6->flowi6_oif, fl6, skb, flags);
Thomas Grafc71099a2006-08-04 23:20:06 -07002416}
2417
Wei Wang7d9e5f42019-06-20 17:36:41 -07002418struct dst_entry *ip6_route_output_flags_noref(struct net *net,
2419 const struct sock *sk,
2420 struct flowi6 *fl6, int flags)
Thomas Grafc71099a2006-08-04 23:20:06 -07002421{
David Ahernd46a9d62015-10-21 08:42:22 -07002422 bool any_src;
Thomas Grafc71099a2006-08-04 23:20:06 -07002423
Robert Shearman3ede0bb2018-09-19 13:56:53 +01002424 if (ipv6_addr_type(&fl6->daddr) &
2425 (IPV6_ADDR_MULTICAST | IPV6_ADDR_LINKLOCAL)) {
David Ahern4c1feac2016-09-10 12:09:56 -07002426 struct dst_entry *dst;
2427
Wei Wang7d9e5f42019-06-20 17:36:41 -07002428 /* This function does not take refcnt on the dst */
David Ahern4c1feac2016-09-10 12:09:56 -07002429 dst = l3mdev_link_scope_lookup(net, fl6);
2430 if (dst)
2431 return dst;
2432 }
David Ahernca254492015-10-12 11:47:10 -07002433
Pavel Emelyanov1fb94892012-08-08 21:53:36 +00002434 fl6->flowi6_iif = LOOPBACK_IFINDEX;
David McCullough4dc27d1c2012-06-25 15:42:26 +00002435
Wei Wang7d9e5f42019-06-20 17:36:41 -07002436 flags |= RT6_LOOKUP_F_DST_NOREF;
David Ahernd46a9d62015-10-21 08:42:22 -07002437 any_src = ipv6_addr_any(&fl6->saddr);
David Ahern741a11d2015-09-28 10:12:13 -07002438 if ((sk && sk->sk_bound_dev_if) || rt6_need_strict(&fl6->daddr) ||
David Ahernd46a9d62015-10-21 08:42:22 -07002439 (fl6->flowi6_oif && any_src))
YOSHIFUJI Hideaki77d16f42006-08-23 17:25:05 -07002440 flags |= RT6_LOOKUP_F_IFACE;
Thomas Grafc71099a2006-08-04 23:20:06 -07002441
David Ahernd46a9d62015-10-21 08:42:22 -07002442 if (!any_src)
Thomas Grafadaa70b2006-10-13 15:01:03 -07002443 flags |= RT6_LOOKUP_F_HAS_SADDR;
YOSHIFUJI Hideaki / 吉藤英明0c9a2ac2010-03-07 00:14:44 +00002444 else if (sk)
2445 flags |= rt6_srcprefs2flags(inet6_sk(sk)->srcprefs);
Thomas Grafadaa70b2006-10-13 15:01:03 -07002446
David Ahernb75cc8f2018-03-02 08:32:17 -08002447 return fib6_rule_lookup(net, fl6, NULL, flags, ip6_pol_route_output);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002448}
Wei Wang7d9e5f42019-06-20 17:36:41 -07002449EXPORT_SYMBOL_GPL(ip6_route_output_flags_noref);
2450
2451struct dst_entry *ip6_route_output_flags(struct net *net,
2452 const struct sock *sk,
2453 struct flowi6 *fl6,
2454 int flags)
2455{
2456 struct dst_entry *dst;
2457 struct rt6_info *rt6;
2458
2459 rcu_read_lock();
2460 dst = ip6_route_output_flags_noref(net, sk, fl6, flags);
2461 rt6 = (struct rt6_info *)dst;
2462 /* For dst cached in uncached_list, refcnt is already taken. */
2463 if (list_empty(&rt6->rt6i_uncached) && !dst_hold_safe(dst)) {
2464 dst = &net->ipv6.ip6_null_entry->dst;
2465 dst_hold(dst);
2466 }
2467 rcu_read_unlock();
2468
2469 return dst;
2470}
Paolo Abeni6f21c962016-01-29 12:30:19 +01002471EXPORT_SYMBOL_GPL(ip6_route_output_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002472
David S. Miller2774c132011-03-01 14:59:04 -08002473struct dst_entry *ip6_blackhole_route(struct net *net, struct dst_entry *dst_orig)
David S. Miller14e50e52007-05-24 18:17:54 -07002474{
David S. Miller5c1e6aa2011-04-28 14:13:38 -07002475 struct rt6_info *rt, *ort = (struct rt6_info *) dst_orig;
Wei Wang1dbe32522017-06-17 10:42:26 -07002476 struct net_device *loopback_dev = net->loopback_dev;
David S. Miller14e50e52007-05-24 18:17:54 -07002477 struct dst_entry *new = NULL;
2478
Wei Wang1dbe32522017-06-17 10:42:26 -07002479 rt = dst_alloc(&ip6_dst_blackhole_ops, loopback_dev, 1,
Steffen Klassert62cf27e2017-10-09 08:39:43 +02002480 DST_OBSOLETE_DEAD, 0);
David S. Miller14e50e52007-05-24 18:17:54 -07002481 if (rt) {
Martin KaFai Lau0a1f5962015-10-15 16:39:58 -07002482 rt6_info_init(rt);
Wei Wang81eb8442017-10-06 12:06:11 -07002483 atomic_inc(&net->ipv6.rt6_stats->fib_rt_alloc);
Martin KaFai Lau0a1f5962015-10-15 16:39:58 -07002484
Changli Gaod8d1f302010-06-10 23:31:35 -07002485 new = &rt->dst;
David S. Miller14e50e52007-05-24 18:17:54 -07002486 new->__use = 1;
Herbert Xu352e5122007-11-13 21:34:06 -08002487 new->input = dst_discard;
Eric W. Biedermanede20592015-10-07 16:48:47 -05002488 new->output = dst_discard_out;
David S. Miller14e50e52007-05-24 18:17:54 -07002489
Martin KaFai Lau0a1f5962015-10-15 16:39:58 -07002490 dst_copy_metrics(new, &ort->dst);
David S. Miller14e50e52007-05-24 18:17:54 -07002491
Wei Wang1dbe32522017-06-17 10:42:26 -07002492 rt->rt6i_idev = in6_dev_get(loopback_dev);
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00002493 rt->rt6i_gateway = ort->rt6i_gateway;
Martin KaFai Lau0a1f5962015-10-15 16:39:58 -07002494 rt->rt6i_flags = ort->rt6i_flags & ~RTF_PCPU;
David S. Miller14e50e52007-05-24 18:17:54 -07002495
2496 memcpy(&rt->rt6i_dst, &ort->rt6i_dst, sizeof(struct rt6key));
2497#ifdef CONFIG_IPV6_SUBTREES
2498 memcpy(&rt->rt6i_src, &ort->rt6i_src, sizeof(struct rt6key));
2499#endif
David S. Miller14e50e52007-05-24 18:17:54 -07002500 }
2501
David S. Miller69ead7a2011-03-01 14:45:33 -08002502 dst_release(dst_orig);
2503 return new ? new : ERR_PTR(-ENOMEM);
David S. Miller14e50e52007-05-24 18:17:54 -07002504}
David S. Miller14e50e52007-05-24 18:17:54 -07002505
Linus Torvalds1da177e2005-04-16 15:20:36 -07002506/*
2507 * Destination cache support functions
2508 */
2509
David Ahern8d1c8022018-04-17 17:33:26 -07002510static bool fib6_check(struct fib6_info *f6i, u32 cookie)
Martin KaFai Lau3da59bd2015-05-22 20:56:03 -07002511{
Steffen Klassert36143642017-08-25 09:05:42 +02002512 u32 rt_cookie = 0;
Wei Wangc5cff852017-08-21 09:47:10 -07002513
David Ahern8ae86972018-04-20 15:38:03 -07002514 if (!fib6_get_cookie_safe(f6i, &rt_cookie) || rt_cookie != cookie)
David Ahern93531c62018-04-17 17:33:25 -07002515 return false;
2516
2517 if (fib6_check_expired(f6i))
2518 return false;
2519
2520 return true;
2521}
2522
David Aherna68886a2018-04-20 15:38:02 -07002523static struct dst_entry *rt6_check(struct rt6_info *rt,
2524 struct fib6_info *from,
2525 u32 cookie)
Martin KaFai Lau3da59bd2015-05-22 20:56:03 -07002526{
Wei Wangc5cff852017-08-21 09:47:10 -07002527 u32 rt_cookie = 0;
2528
David Aherna68886a2018-04-20 15:38:02 -07002529 if ((from && !fib6_get_cookie_safe(from, &rt_cookie)) ||
David Ahern93531c62018-04-17 17:33:25 -07002530 rt_cookie != cookie)
Martin KaFai Lau3da59bd2015-05-22 20:56:03 -07002531 return NULL;
2532
2533 if (rt6_check_expired(rt))
2534 return NULL;
2535
2536 return &rt->dst;
2537}
2538
David Aherna68886a2018-04-20 15:38:02 -07002539static struct dst_entry *rt6_dst_from_check(struct rt6_info *rt,
2540 struct fib6_info *from,
2541 u32 cookie)
Martin KaFai Lau3da59bd2015-05-22 20:56:03 -07002542{
Martin KaFai Lau5973fb12015-11-11 11:51:07 -08002543 if (!__rt6_check_expired(rt) &&
2544 rt->dst.obsolete == DST_OBSOLETE_FORCE_CHK &&
David Aherna68886a2018-04-20 15:38:02 -07002545 fib6_check(from, cookie))
Martin KaFai Lau3da59bd2015-05-22 20:56:03 -07002546 return &rt->dst;
2547 else
2548 return NULL;
2549}
2550
Linus Torvalds1da177e2005-04-16 15:20:36 -07002551static struct dst_entry *ip6_dst_check(struct dst_entry *dst, u32 cookie)
2552{
David Aherna87b7dc2018-04-20 15:38:00 -07002553 struct dst_entry *dst_ret;
David Aherna68886a2018-04-20 15:38:02 -07002554 struct fib6_info *from;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002555 struct rt6_info *rt;
2556
David Aherna87b7dc2018-04-20 15:38:00 -07002557 rt = container_of(dst, struct rt6_info, dst);
2558
2559 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002560
Nicolas Dichtel6f3118b2012-09-10 22:09:46 +00002561 /* All IPV6 dsts are created with ->obsolete set to the value
2562 * DST_OBSOLETE_FORCE_CHK which forces validation calls down
2563 * into this function always.
2564 */
Hannes Frederic Sowae3bc10b2013-10-24 07:48:24 +02002565
David Aherna68886a2018-04-20 15:38:02 -07002566 from = rcu_dereference(rt->from);
Martin KaFai Lau4b32b5a2015-04-28 13:03:06 -07002567
David Aherna68886a2018-04-20 15:38:02 -07002568 if (from && (rt->rt6i_flags & RTF_PCPU ||
2569 unlikely(!list_empty(&rt->rt6i_uncached))))
2570 dst_ret = rt6_dst_from_check(rt, from, cookie);
Martin KaFai Lau3da59bd2015-05-22 20:56:03 -07002571 else
David Aherna68886a2018-04-20 15:38:02 -07002572 dst_ret = rt6_check(rt, from, cookie);
David Aherna87b7dc2018-04-20 15:38:00 -07002573
2574 rcu_read_unlock();
2575
2576 return dst_ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002577}
2578
2579static struct dst_entry *ip6_negative_advice(struct dst_entry *dst)
2580{
2581 struct rt6_info *rt = (struct rt6_info *) dst;
2582
2583 if (rt) {
YOSHIFUJI Hideaki / 吉藤英明54c1a852010-03-28 07:15:45 +00002584 if (rt->rt6i_flags & RTF_CACHE) {
David Ahernc3c14da2018-04-23 11:32:06 -07002585 rcu_read_lock();
YOSHIFUJI Hideaki / 吉藤英明54c1a852010-03-28 07:15:45 +00002586 if (rt6_check_expired(rt)) {
David Ahern93531c62018-04-17 17:33:25 -07002587 rt6_remove_exception_rt(rt);
YOSHIFUJI Hideaki / 吉藤英明54c1a852010-03-28 07:15:45 +00002588 dst = NULL;
2589 }
David Ahernc3c14da2018-04-23 11:32:06 -07002590 rcu_read_unlock();
YOSHIFUJI Hideaki / 吉藤英明54c1a852010-03-28 07:15:45 +00002591 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002592 dst_release(dst);
YOSHIFUJI Hideaki / 吉藤英明54c1a852010-03-28 07:15:45 +00002593 dst = NULL;
2594 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002595 }
YOSHIFUJI Hideaki / 吉藤英明54c1a852010-03-28 07:15:45 +00002596 return dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002597}
2598
2599static void ip6_link_failure(struct sk_buff *skb)
2600{
2601 struct rt6_info *rt;
2602
Alexey Dobriyan3ffe5332010-02-18 08:25:24 +00002603 icmpv6_send(skb, ICMPV6_DEST_UNREACH, ICMPV6_ADDR_UNREACH, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002604
Eric Dumazetadf30902009-06-02 05:19:30 +00002605 rt = (struct rt6_info *) skb_dst(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002606 if (rt) {
David Ahern8a14e462018-04-23 11:32:07 -07002607 rcu_read_lock();
Hannes Frederic Sowa1eb4f752013-07-10 23:00:57 +02002608 if (rt->rt6i_flags & RTF_CACHE) {
Xin Long761f6022018-11-14 00:48:28 +08002609 rt6_remove_exception_rt(rt);
Wei Wangc5cff852017-08-21 09:47:10 -07002610 } else {
David Aherna68886a2018-04-20 15:38:02 -07002611 struct fib6_info *from;
Wei Wangc5cff852017-08-21 09:47:10 -07002612 struct fib6_node *fn;
2613
David Aherna68886a2018-04-20 15:38:02 -07002614 from = rcu_dereference(rt->from);
2615 if (from) {
2616 fn = rcu_dereference(from->fib6_node);
2617 if (fn && (rt->rt6i_flags & RTF_DEFAULT))
2618 fn->fn_sernum = -1;
2619 }
Hannes Frederic Sowa1eb4f752013-07-10 23:00:57 +02002620 }
David Ahern8a14e462018-04-23 11:32:07 -07002621 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002622 }
2623}
2624
David Ahern6a3e0302018-04-20 15:37:57 -07002625static void rt6_update_expires(struct rt6_info *rt0, int timeout)
2626{
David Aherna68886a2018-04-20 15:38:02 -07002627 if (!(rt0->rt6i_flags & RTF_EXPIRES)) {
2628 struct fib6_info *from;
2629
2630 rcu_read_lock();
2631 from = rcu_dereference(rt0->from);
2632 if (from)
2633 rt0->dst.expires = from->expires;
2634 rcu_read_unlock();
2635 }
David Ahern6a3e0302018-04-20 15:37:57 -07002636
2637 dst_set_expires(&rt0->dst, timeout);
2638 rt0->rt6i_flags |= RTF_EXPIRES;
2639}
2640
Martin KaFai Lau45e4fd22015-05-22 20:56:00 -07002641static void rt6_do_update_pmtu(struct rt6_info *rt, u32 mtu)
2642{
2643 struct net *net = dev_net(rt->dst.dev);
2644
David Ahernd4ead6b2018-04-17 17:33:16 -07002645 dst_metric_set(&rt->dst, RTAX_MTU, mtu);
Martin KaFai Lau45e4fd22015-05-22 20:56:00 -07002646 rt->rt6i_flags |= RTF_MODIFIED;
Martin KaFai Lau45e4fd22015-05-22 20:56:00 -07002647 rt6_update_expires(rt, net->ipv6.sysctl.ip6_rt_mtu_expires);
2648}
2649
Martin KaFai Lau0d3f6d22015-11-11 11:51:06 -08002650static bool rt6_cache_allowed_for_pmtu(const struct rt6_info *rt)
2651{
2652 return !(rt->rt6i_flags & RTF_CACHE) &&
Paolo Abeni1490ed22019-02-15 18:15:37 +01002653 (rt->rt6i_flags & RTF_PCPU || rcu_access_pointer(rt->from));
Martin KaFai Lau0d3f6d22015-11-11 11:51:06 -08002654}
2655
Martin KaFai Lau45e4fd22015-05-22 20:56:00 -07002656static void __ip6_rt_update_pmtu(struct dst_entry *dst, const struct sock *sk,
2657 const struct ipv6hdr *iph, u32 mtu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002658{
Julian Anastasov0dec8792017-02-06 23:14:16 +02002659 const struct in6_addr *daddr, *saddr;
Ian Morris67ba4152014-08-24 21:53:10 +01002660 struct rt6_info *rt6 = (struct rt6_info *)dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002661
Xin Long19bda362016-10-28 18:18:01 +08002662 if (dst_metric_locked(dst, RTAX_MTU))
2663 return;
2664
Julian Anastasov0dec8792017-02-06 23:14:16 +02002665 if (iph) {
2666 daddr = &iph->daddr;
2667 saddr = &iph->saddr;
2668 } else if (sk) {
2669 daddr = &sk->sk_v6_daddr;
2670 saddr = &inet6_sk(sk)->saddr;
2671 } else {
2672 daddr = NULL;
2673 saddr = NULL;
2674 }
2675 dst_confirm_neigh(dst, daddr);
Martin KaFai Lau45e4fd22015-05-22 20:56:00 -07002676 mtu = max_t(u32, mtu, IPV6_MIN_MTU);
2677 if (mtu >= dst_mtu(dst))
2678 return;
David S. Miller81aded22012-06-15 14:54:11 -07002679
Martin KaFai Lau0d3f6d22015-11-11 11:51:06 -08002680 if (!rt6_cache_allowed_for_pmtu(rt6)) {
Martin KaFai Lau45e4fd22015-05-22 20:56:00 -07002681 rt6_do_update_pmtu(rt6, mtu);
Wei Wang2b760fc2017-10-06 12:06:03 -07002682 /* update rt6_ex->stamp for cache */
2683 if (rt6->rt6i_flags & RTF_CACHE)
2684 rt6_update_exception_stamp_rt(rt6);
Julian Anastasov0dec8792017-02-06 23:14:16 +02002685 } else if (daddr) {
David Ahern85bd05d2019-04-16 14:36:01 -07002686 struct fib6_result res = {};
Martin KaFai Lau45e4fd22015-05-22 20:56:00 -07002687 struct rt6_info *nrt6;
Hagen Paul Pfeifer9d289712015-01-15 22:34:25 +01002688
David Ahern4d85cd02018-04-20 15:37:59 -07002689 rcu_read_lock();
David Ahern85bd05d2019-04-16 14:36:01 -07002690 res.f6i = rcu_dereference(rt6->from);
2691 if (!res.f6i) {
Jonathan Lemon9c69a132019-04-14 14:21:29 -07002692 rcu_read_unlock();
2693 return;
2694 }
David Ahern7d21fec2019-04-16 14:36:11 -07002695 res.fib6_flags = res.f6i->fib6_flags;
2696 res.fib6_type = res.f6i->fib6_type;
2697
David Ahern2d442342019-06-08 14:53:31 -07002698 if (res.f6i->nh) {
2699 struct fib6_nh_match_arg arg = {
2700 .dev = dst->dev,
2701 .gw = &rt6->rt6i_gateway,
2702 };
2703
2704 nexthop_for_each_fib6_nh(res.f6i->nh,
2705 fib6_nh_find_match, &arg);
2706
2707 /* fib6_info uses a nexthop that does not have fib6_nh
2708 * using the dst->dev + gw. Should be impossible.
2709 */
2710 if (!arg.match) {
2711 rcu_read_unlock();
2712 return;
2713 }
2714
2715 res.nh = arg.match;
2716 } else {
2717 res.nh = res.f6i->fib6_nh;
2718 }
2719
David Ahern85bd05d2019-04-16 14:36:01 -07002720 nrt6 = ip6_rt_cache_alloc(&res, daddr, saddr);
Martin KaFai Lau45e4fd22015-05-22 20:56:00 -07002721 if (nrt6) {
2722 rt6_do_update_pmtu(nrt6, mtu);
David Ahern5012f0a2019-04-16 14:36:05 -07002723 if (rt6_insert_exception(nrt6, &res))
Wei Wang2b760fc2017-10-06 12:06:03 -07002724 dst_release_immediate(&nrt6->dst);
Martin KaFai Lau45e4fd22015-05-22 20:56:00 -07002725 }
David Aherna68886a2018-04-20 15:38:02 -07002726 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002727 }
2728}
2729
Martin KaFai Lau45e4fd22015-05-22 20:56:00 -07002730static void ip6_rt_update_pmtu(struct dst_entry *dst, struct sock *sk,
2731 struct sk_buff *skb, u32 mtu)
2732{
2733 __ip6_rt_update_pmtu(dst, sk, skb ? ipv6_hdr(skb) : NULL, mtu);
2734}
2735
David S. Miller42ae66c2012-06-15 20:01:57 -07002736void ip6_update_pmtu(struct sk_buff *skb, struct net *net, __be32 mtu,
Lorenzo Colittie2d118a2016-11-04 02:23:43 +09002737 int oif, u32 mark, kuid_t uid)
David S. Miller81aded22012-06-15 14:54:11 -07002738{
2739 const struct ipv6hdr *iph = (struct ipv6hdr *) skb->data;
2740 struct dst_entry *dst;
Maciej Żenczykowskidc920952018-09-29 23:44:51 -07002741 struct flowi6 fl6 = {
2742 .flowi6_oif = oif,
2743 .flowi6_mark = mark ? mark : IP6_REPLY_MARK(net, skb->mark),
2744 .daddr = iph->daddr,
2745 .saddr = iph->saddr,
2746 .flowlabel = ip6_flowinfo(iph),
2747 .flowi6_uid = uid,
2748 };
David S. Miller81aded22012-06-15 14:54:11 -07002749
2750 dst = ip6_route_output(net, NULL, &fl6);
2751 if (!dst->error)
Martin KaFai Lau45e4fd22015-05-22 20:56:00 -07002752 __ip6_rt_update_pmtu(dst, NULL, iph, ntohl(mtu));
David S. Miller81aded22012-06-15 14:54:11 -07002753 dst_release(dst);
2754}
2755EXPORT_SYMBOL_GPL(ip6_update_pmtu);
2756
2757void ip6_sk_update_pmtu(struct sk_buff *skb, struct sock *sk, __be32 mtu)
2758{
David Ahern7ddacfa2018-11-18 10:45:30 -08002759 int oif = sk->sk_bound_dev_if;
Martin KaFai Lau33c162a2016-04-11 15:29:36 -07002760 struct dst_entry *dst;
2761
David Ahern7ddacfa2018-11-18 10:45:30 -08002762 if (!oif && skb->dev)
2763 oif = l3mdev_master_ifindex(skb->dev);
2764
2765 ip6_update_pmtu(skb, sock_net(sk), mtu, oif, sk->sk_mark, sk->sk_uid);
Martin KaFai Lau33c162a2016-04-11 15:29:36 -07002766
2767 dst = __sk_dst_get(sk);
2768 if (!dst || !dst->obsolete ||
2769 dst->ops->check(dst, inet6_sk(sk)->dst_cookie))
2770 return;
2771
2772 bh_lock_sock(sk);
2773 if (!sock_owned_by_user(sk) && !ipv6_addr_v4mapped(&sk->sk_v6_daddr))
2774 ip6_datagram_dst_update(sk, false);
2775 bh_unlock_sock(sk);
David S. Miller81aded22012-06-15 14:54:11 -07002776}
2777EXPORT_SYMBOL_GPL(ip6_sk_update_pmtu);
2778
Alexey Kodanev7d6850f2018-04-03 15:00:07 +03002779void ip6_sk_dst_store_flow(struct sock *sk, struct dst_entry *dst,
2780 const struct flowi6 *fl6)
2781{
2782#ifdef CONFIG_IPV6_SUBTREES
2783 struct ipv6_pinfo *np = inet6_sk(sk);
2784#endif
2785
2786 ip6_dst_store(sk, dst,
2787 ipv6_addr_equal(&fl6->daddr, &sk->sk_v6_daddr) ?
2788 &sk->sk_v6_daddr : NULL,
2789#ifdef CONFIG_IPV6_SUBTREES
2790 ipv6_addr_equal(&fl6->saddr, &np->saddr) ?
2791 &np->saddr :
2792#endif
2793 NULL);
2794}
2795
David Ahern9b6b35a2019-04-16 14:36:02 -07002796static bool ip6_redirect_nh_match(const struct fib6_result *res,
David Ahern0b34eb02019-04-09 14:41:19 -07002797 struct flowi6 *fl6,
2798 const struct in6_addr *gw,
2799 struct rt6_info **ret)
2800{
David Ahern9b6b35a2019-04-16 14:36:02 -07002801 const struct fib6_nh *nh = res->nh;
2802
David Ahern0b34eb02019-04-09 14:41:19 -07002803 if (nh->fib_nh_flags & RTNH_F_DEAD || !nh->fib_nh_gw_family ||
2804 fl6->flowi6_oif != nh->fib_nh_dev->ifindex)
2805 return false;
2806
2807 /* rt_cache's gateway might be different from its 'parent'
2808 * in the case of an ip redirect.
2809 * So we keep searching in the exception table if the gateway
2810 * is different.
2811 */
2812 if (!ipv6_addr_equal(gw, &nh->fib_nh_gw6)) {
2813 struct rt6_info *rt_cache;
2814
David Ahern9b6b35a2019-04-16 14:36:02 -07002815 rt_cache = rt6_find_cached_rt(res, &fl6->daddr, &fl6->saddr);
David Ahern0b34eb02019-04-09 14:41:19 -07002816 if (rt_cache &&
2817 ipv6_addr_equal(gw, &rt_cache->rt6i_gateway)) {
2818 *ret = rt_cache;
2819 return true;
2820 }
2821 return false;
2822 }
2823 return true;
2824}
2825
David Ahernc55c8982019-06-08 14:53:29 -07002826struct fib6_nh_rd_arg {
2827 struct fib6_result *res;
2828 struct flowi6 *fl6;
2829 const struct in6_addr *gw;
2830 struct rt6_info **ret;
2831};
2832
2833static int fib6_nh_redirect_match(struct fib6_nh *nh, void *_arg)
2834{
2835 struct fib6_nh_rd_arg *arg = _arg;
2836
2837 arg->res->nh = nh;
2838 return ip6_redirect_nh_match(arg->res, arg->fl6, arg->gw, arg->ret);
2839}
2840
Duan Jiongb55b76b2013-09-04 19:44:21 +08002841/* Handle redirects */
2842struct ip6rd_flowi {
2843 struct flowi6 fl6;
2844 struct in6_addr gateway;
2845};
2846
2847static struct rt6_info *__ip6_route_redirect(struct net *net,
2848 struct fib6_table *table,
2849 struct flowi6 *fl6,
David Ahernb75cc8f2018-03-02 08:32:17 -08002850 const struct sk_buff *skb,
Duan Jiongb55b76b2013-09-04 19:44:21 +08002851 int flags)
2852{
2853 struct ip6rd_flowi *rdfl = (struct ip6rd_flowi *)fl6;
David Ahern0b34eb02019-04-09 14:41:19 -07002854 struct rt6_info *ret = NULL;
David Ahern9b6b35a2019-04-16 14:36:02 -07002855 struct fib6_result res = {};
David Ahernc55c8982019-06-08 14:53:29 -07002856 struct fib6_nh_rd_arg arg = {
2857 .res = &res,
2858 .fl6 = fl6,
2859 .gw = &rdfl->gateway,
2860 .ret = &ret
2861 };
David Ahern8d1c8022018-04-17 17:33:26 -07002862 struct fib6_info *rt;
Duan Jiongb55b76b2013-09-04 19:44:21 +08002863 struct fib6_node *fn;
2864
David Ahern31680ac2019-05-22 15:12:18 -07002865 /* l3mdev_update_flow overrides oif if the device is enslaved; in
2866 * this case we must match on the real ingress device, so reset it
2867 */
2868 if (fl6->flowi6_flags & FLOWI_FLAG_SKIP_NH_OIF)
2869 fl6->flowi6_oif = skb->dev->ifindex;
2870
Duan Jiongb55b76b2013-09-04 19:44:21 +08002871 /* Get the "current" route for this destination and
Alexander Alemayhu67c408c2017-01-07 23:53:00 +01002872 * check if the redirect has come from appropriate router.
Duan Jiongb55b76b2013-09-04 19:44:21 +08002873 *
2874 * RFC 4861 specifies that redirects should only be
2875 * accepted if they come from the nexthop to the target.
2876 * Due to the way the routes are chosen, this notion
2877 * is a bit fuzzy and one might need to check all possible
2878 * routes.
2879 */
2880
Wei Wang66f5d6c2017-10-06 12:06:10 -07002881 rcu_read_lock();
David Ahern64547432018-05-09 20:34:19 -07002882 fn = fib6_node_lookup(&table->tb6_root, &fl6->daddr, &fl6->saddr);
Duan Jiongb55b76b2013-09-04 19:44:21 +08002883restart:
Wei Wang66f5d6c2017-10-06 12:06:10 -07002884 for_each_fib6_node_rt_rcu(fn) {
David Ahern9b6b35a2019-04-16 14:36:02 -07002885 res.f6i = rt;
David Ahern14895682018-04-17 17:33:17 -07002886 if (fib6_check_expired(rt))
Duan Jiongb55b76b2013-09-04 19:44:21 +08002887 continue;
David Ahern93c2fb22018-04-18 15:38:59 -07002888 if (rt->fib6_flags & RTF_REJECT)
Duan Jiongb55b76b2013-09-04 19:44:21 +08002889 break;
David Ahernc55c8982019-06-08 14:53:29 -07002890 if (unlikely(rt->nh)) {
2891 if (nexthop_is_blackhole(rt->nh))
2892 continue;
2893 /* on match, res->nh is filled in and potentially ret */
2894 if (nexthop_for_each_fib6_nh(rt->nh,
2895 fib6_nh_redirect_match,
2896 &arg))
2897 goto out;
2898 } else {
2899 res.nh = rt->fib6_nh;
2900 if (ip6_redirect_nh_match(&res, fl6, &rdfl->gateway,
2901 &ret))
2902 goto out;
2903 }
Duan Jiongb55b76b2013-09-04 19:44:21 +08002904 }
2905
2906 if (!rt)
David Ahern421842e2018-04-17 17:33:18 -07002907 rt = net->ipv6.fib6_null_entry;
David Ahern93c2fb22018-04-18 15:38:59 -07002908 else if (rt->fib6_flags & RTF_REJECT) {
David Ahern23fb93a2018-04-17 17:33:23 -07002909 ret = net->ipv6.ip6_null_entry;
Martin KaFai Laub0a1ba52015-01-20 19:16:02 -08002910 goto out;
2911 }
2912
David Ahern421842e2018-04-17 17:33:18 -07002913 if (rt == net->ipv6.fib6_null_entry) {
Martin KaFai Laua3c00e42014-10-20 13:42:43 -07002914 fn = fib6_backtrack(fn, &fl6->saddr);
2915 if (fn)
2916 goto restart;
Duan Jiongb55b76b2013-09-04 19:44:21 +08002917 }
Martin KaFai Laua3c00e42014-10-20 13:42:43 -07002918
David Ahern9b6b35a2019-04-16 14:36:02 -07002919 res.f6i = rt;
David Ahern1cf844c2019-05-22 20:27:59 -07002920 res.nh = rt->fib6_nh;
Martin KaFai Laub0a1ba52015-01-20 19:16:02 -08002921out:
David Ahern7d21fec2019-04-16 14:36:11 -07002922 if (ret) {
David Ahern10585b42019-03-20 09:24:50 -07002923 ip6_hold_safe(net, &ret);
David Ahern7d21fec2019-04-16 14:36:11 -07002924 } else {
2925 res.fib6_flags = res.f6i->fib6_flags;
2926 res.fib6_type = res.f6i->fib6_type;
David Ahern9b6b35a2019-04-16 14:36:02 -07002927 ret = ip6_create_rt_rcu(&res);
David Ahern7d21fec2019-04-16 14:36:11 -07002928 }
Duan Jiongb55b76b2013-09-04 19:44:21 +08002929
Wei Wang66f5d6c2017-10-06 12:06:10 -07002930 rcu_read_unlock();
Duan Jiongb55b76b2013-09-04 19:44:21 +08002931
David Ahern8ff2e5b2019-04-16 14:36:09 -07002932 trace_fib6_table_lookup(net, &res, table, fl6);
David Ahern23fb93a2018-04-17 17:33:23 -07002933 return ret;
Duan Jiongb55b76b2013-09-04 19:44:21 +08002934};
2935
2936static struct dst_entry *ip6_route_redirect(struct net *net,
David Ahernb75cc8f2018-03-02 08:32:17 -08002937 const struct flowi6 *fl6,
2938 const struct sk_buff *skb,
2939 const struct in6_addr *gateway)
Duan Jiongb55b76b2013-09-04 19:44:21 +08002940{
2941 int flags = RT6_LOOKUP_F_HAS_SADDR;
2942 struct ip6rd_flowi rdfl;
2943
2944 rdfl.fl6 = *fl6;
2945 rdfl.gateway = *gateway;
2946
David Ahernb75cc8f2018-03-02 08:32:17 -08002947 return fib6_rule_lookup(net, &rdfl.fl6, skb,
Duan Jiongb55b76b2013-09-04 19:44:21 +08002948 flags, __ip6_route_redirect);
2949}
2950
Lorenzo Colittie2d118a2016-11-04 02:23:43 +09002951void ip6_redirect(struct sk_buff *skb, struct net *net, int oif, u32 mark,
2952 kuid_t uid)
David S. Miller3a5ad2e2012-07-12 00:08:07 -07002953{
2954 const struct ipv6hdr *iph = (struct ipv6hdr *) skb->data;
2955 struct dst_entry *dst;
Maciej Żenczykowski1f7f10a2018-09-29 23:44:48 -07002956 struct flowi6 fl6 = {
2957 .flowi6_iif = LOOPBACK_IFINDEX,
2958 .flowi6_oif = oif,
2959 .flowi6_mark = mark,
2960 .daddr = iph->daddr,
2961 .saddr = iph->saddr,
2962 .flowlabel = ip6_flowinfo(iph),
2963 .flowi6_uid = uid,
2964 };
David S. Miller3a5ad2e2012-07-12 00:08:07 -07002965
David Ahernb75cc8f2018-03-02 08:32:17 -08002966 dst = ip6_route_redirect(net, &fl6, skb, &ipv6_hdr(skb)->saddr);
Duan Jiongb55b76b2013-09-04 19:44:21 +08002967 rt6_do_redirect(dst, NULL, skb);
David S. Miller3a5ad2e2012-07-12 00:08:07 -07002968 dst_release(dst);
2969}
2970EXPORT_SYMBOL_GPL(ip6_redirect);
2971
Maciej Żenczykowskid4563362018-09-29 23:44:50 -07002972void ip6_redirect_no_header(struct sk_buff *skb, struct net *net, int oif)
Duan Jiongc92a59e2013-08-22 12:07:35 +08002973{
2974 const struct ipv6hdr *iph = ipv6_hdr(skb);
2975 const struct rd_msg *msg = (struct rd_msg *)icmp6_hdr(skb);
2976 struct dst_entry *dst;
Maciej Żenczykowski0b26fb12018-09-29 23:44:49 -07002977 struct flowi6 fl6 = {
2978 .flowi6_iif = LOOPBACK_IFINDEX,
2979 .flowi6_oif = oif,
Maciej Żenczykowski0b26fb12018-09-29 23:44:49 -07002980 .daddr = msg->dest,
2981 .saddr = iph->daddr,
2982 .flowi6_uid = sock_net_uid(net, NULL),
2983 };
Duan Jiongc92a59e2013-08-22 12:07:35 +08002984
David Ahernb75cc8f2018-03-02 08:32:17 -08002985 dst = ip6_route_redirect(net, &fl6, skb, &iph->saddr);
Duan Jiongb55b76b2013-09-04 19:44:21 +08002986 rt6_do_redirect(dst, NULL, skb);
Duan Jiongc92a59e2013-08-22 12:07:35 +08002987 dst_release(dst);
2988}
2989
David S. Miller3a5ad2e2012-07-12 00:08:07 -07002990void ip6_sk_redirect(struct sk_buff *skb, struct sock *sk)
2991{
Lorenzo Colittie2d118a2016-11-04 02:23:43 +09002992 ip6_redirect(skb, sock_net(sk), sk->sk_bound_dev_if, sk->sk_mark,
2993 sk->sk_uid);
David S. Miller3a5ad2e2012-07-12 00:08:07 -07002994}
2995EXPORT_SYMBOL_GPL(ip6_sk_redirect);
2996
David S. Miller0dbaee32010-12-13 12:52:14 -08002997static unsigned int ip6_default_advmss(const struct dst_entry *dst)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002998{
David S. Miller0dbaee32010-12-13 12:52:14 -08002999 struct net_device *dev = dst->dev;
3000 unsigned int mtu = dst_mtu(dst);
3001 struct net *net = dev_net(dev);
3002
Linus Torvalds1da177e2005-04-16 15:20:36 -07003003 mtu -= sizeof(struct ipv6hdr) + sizeof(struct tcphdr);
3004
Daniel Lezcano55786892008-03-04 13:47:47 -08003005 if (mtu < net->ipv6.sysctl.ip6_rt_min_advmss)
3006 mtu = net->ipv6.sysctl.ip6_rt_min_advmss;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003007
3008 /*
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003009 * Maximal non-jumbo IPv6 payload is IPV6_MAXPLEN and
3010 * corresponding MSS is IPV6_MAXPLEN - tcp_header_size.
3011 * IPV6_MAXPLEN is also valid and means: "any MSS,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003012 * rely only on pmtu discovery"
3013 */
3014 if (mtu > IPV6_MAXPLEN - sizeof(struct tcphdr))
3015 mtu = IPV6_MAXPLEN;
3016 return mtu;
3017}
3018
Steffen Klassertebb762f2011-11-23 02:12:51 +00003019static unsigned int ip6_mtu(const struct dst_entry *dst)
David S. Millerd33e4552010-12-14 13:01:14 -08003020{
David S. Millerd33e4552010-12-14 13:01:14 -08003021 struct inet6_dev *idev;
David Ahernd4ead6b2018-04-17 17:33:16 -07003022 unsigned int mtu;
Steffen Klassert618f9bc2011-11-23 02:13:31 +00003023
Martin KaFai Lau4b32b5a2015-04-28 13:03:06 -07003024 mtu = dst_metric_raw(dst, RTAX_MTU);
3025 if (mtu)
3026 goto out;
3027
Steffen Klassert618f9bc2011-11-23 02:13:31 +00003028 mtu = IPV6_MIN_MTU;
David S. Millerd33e4552010-12-14 13:01:14 -08003029
3030 rcu_read_lock();
3031 idev = __in6_dev_get(dst->dev);
3032 if (idev)
3033 mtu = idev->cnf.mtu6;
3034 rcu_read_unlock();
3035
Eric Dumazet30f78d82014-04-10 21:23:36 -07003036out:
Roopa Prabhu14972cb2016-08-24 20:10:43 -07003037 mtu = min_t(unsigned int, mtu, IP6_MAX_MTU);
3038
3039 return mtu - lwtunnel_headroom(dst->lwtstate, mtu);
David S. Millerd33e4552010-12-14 13:01:14 -08003040}
3041
David Ahern901731b2018-05-21 09:08:14 -07003042/* MTU selection:
3043 * 1. mtu on route is locked - use it
3044 * 2. mtu from nexthop exception
3045 * 3. mtu from egress device
3046 *
3047 * based on ip6_dst_mtu_forward and exception logic of
3048 * rt6_find_cached_rt; called with rcu_read_lock
3049 */
David Ahernb748f262019-04-16 14:36:06 -07003050u32 ip6_mtu_from_fib6(const struct fib6_result *res,
3051 const struct in6_addr *daddr,
3052 const struct in6_addr *saddr)
David Ahern901731b2018-05-21 09:08:14 -07003053{
David Ahernb748f262019-04-16 14:36:06 -07003054 const struct fib6_nh *nh = res->nh;
3055 struct fib6_info *f6i = res->f6i;
David Ahern901731b2018-05-21 09:08:14 -07003056 struct inet6_dev *idev;
Wei Wang510e2ce2019-05-16 13:30:54 -07003057 struct rt6_info *rt;
David Ahern901731b2018-05-21 09:08:14 -07003058 u32 mtu = 0;
3059
3060 if (unlikely(fib6_metric_locked(f6i, RTAX_MTU))) {
3061 mtu = f6i->fib6_pmtu;
3062 if (mtu)
3063 goto out;
3064 }
3065
Wei Wang510e2ce2019-05-16 13:30:54 -07003066 rt = rt6_find_cached_rt(res, daddr, saddr);
3067 if (unlikely(rt)) {
3068 mtu = dst_metric_raw(&rt->dst, RTAX_MTU);
3069 } else {
David Ahernb748f262019-04-16 14:36:06 -07003070 struct net_device *dev = nh->fib_nh_dev;
David Ahern901731b2018-05-21 09:08:14 -07003071
3072 mtu = IPV6_MIN_MTU;
3073 idev = __in6_dev_get(dev);
3074 if (idev && idev->cnf.mtu6 > mtu)
3075 mtu = idev->cnf.mtu6;
3076 }
3077
3078 mtu = min_t(unsigned int, mtu, IP6_MAX_MTU);
3079out:
David Ahernb748f262019-04-16 14:36:06 -07003080 return mtu - lwtunnel_headroom(nh->fib_nh_lws, mtu);
David Ahern901731b2018-05-21 09:08:14 -07003081}
3082
YOSHIFUJI Hideaki3b009442007-12-06 16:11:48 -08003083struct dst_entry *icmp6_dst_alloc(struct net_device *dev,
David S. Miller87a11572011-12-06 17:04:13 -05003084 struct flowi6 *fl6)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003085{
David S. Miller87a11572011-12-06 17:04:13 -05003086 struct dst_entry *dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003087 struct rt6_info *rt;
3088 struct inet6_dev *idev = in6_dev_get(dev);
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09003089 struct net *net = dev_net(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003090
David S. Miller38308472011-12-03 18:02:47 -05003091 if (unlikely(!idev))
Eric Dumazet122bdf62012-03-14 21:13:11 +00003092 return ERR_PTR(-ENODEV);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003093
Martin KaFai Lauad706862015-08-14 11:05:52 -07003094 rt = ip6_dst_alloc(net, dev, 0);
David S. Miller38308472011-12-03 18:02:47 -05003095 if (unlikely(!rt)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003096 in6_dev_put(idev);
David S. Miller87a11572011-12-06 17:04:13 -05003097 dst = ERR_PTR(-ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003098 goto out;
3099 }
3100
Yan, Zheng8e2ec632011-09-05 21:34:30 +00003101 rt->dst.flags |= DST_HOST;
Brendan McGrath588753f2017-12-13 22:14:57 +11003102 rt->dst.input = ip6_input;
Yan, Zheng8e2ec632011-09-05 21:34:30 +00003103 rt->dst.output = ip6_output;
Julian Anastasov550bab42013-10-20 15:43:04 +03003104 rt->rt6i_gateway = fl6->daddr;
David S. Miller87a11572011-12-06 17:04:13 -05003105 rt->rt6i_dst.addr = fl6->daddr;
Yan, Zheng8e2ec632011-09-05 21:34:30 +00003106 rt->rt6i_dst.plen = 128;
3107 rt->rt6i_idev = idev;
Li RongQing14edd872012-10-24 14:01:18 +08003108 dst_metric_set(&rt->dst, RTAX_HOPLIMIT, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003109
Ido Schimmel4c981e22018-01-07 12:45:04 +02003110 /* Add this dst into uncached_list so that rt6_disable_ip() can
Wei Wang587fea72017-06-17 10:42:36 -07003111 * do proper release of the net_device
3112 */
3113 rt6_uncached_list_add(rt);
Wei Wang81eb8442017-10-06 12:06:11 -07003114 atomic_inc(&net->ipv6.rt6_stats->fib_rt_uncache);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003115
David S. Miller87a11572011-12-06 17:04:13 -05003116 dst = xfrm_lookup(net, &rt->dst, flowi6_to_flowi(fl6), NULL, 0);
3117
Linus Torvalds1da177e2005-04-16 15:20:36 -07003118out:
David S. Miller87a11572011-12-06 17:04:13 -05003119 return dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003120}
3121
Daniel Lezcano569d3642008-01-18 03:56:57 -08003122static int ip6_dst_gc(struct dst_ops *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003123{
Alexey Dobriyan86393e52009-08-29 01:34:49 +00003124 struct net *net = container_of(ops, struct net, ipv6.ip6_dst_ops);
Daniel Lezcano7019b782008-03-04 13:50:14 -08003125 int rt_min_interval = net->ipv6.sysctl.ip6_rt_gc_min_interval;
3126 int rt_max_size = net->ipv6.sysctl.ip6_rt_max_size;
3127 int rt_elasticity = net->ipv6.sysctl.ip6_rt_gc_elasticity;
3128 int rt_gc_timeout = net->ipv6.sysctl.ip6_rt_gc_timeout;
3129 unsigned long rt_last_gc = net->ipv6.ip6_rt_last_gc;
Eric Dumazetfc66f952010-10-08 06:37:34 +00003130 int entries;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003131
Eric Dumazetfc66f952010-10-08 06:37:34 +00003132 entries = dst_entries_get_fast(ops);
Michal Kubeček49a18d82013-08-01 10:04:24 +02003133 if (time_after(rt_last_gc + rt_min_interval, jiffies) &&
Eric Dumazetfc66f952010-10-08 06:37:34 +00003134 entries <= rt_max_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003135 goto out;
3136
Benjamin Thery6891a342008-03-04 13:49:47 -08003137 net->ipv6.ip6_rt_gc_expire++;
Li RongQing14956642014-05-19 17:30:28 +08003138 fib6_run_gc(net->ipv6.ip6_rt_gc_expire, net, true);
Eric Dumazetfc66f952010-10-08 06:37:34 +00003139 entries = dst_entries_get_slow(ops);
3140 if (entries < ops->gc_thresh)
Daniel Lezcano7019b782008-03-04 13:50:14 -08003141 net->ipv6.ip6_rt_gc_expire = rt_gc_timeout>>1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003142out:
Daniel Lezcano7019b782008-03-04 13:50:14 -08003143 net->ipv6.ip6_rt_gc_expire -= net->ipv6.ip6_rt_gc_expire>>rt_elasticity;
Eric Dumazetfc66f952010-10-08 06:37:34 +00003144 return entries > rt_max_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003145}
3146
David Ahern8c145862016-04-24 21:26:04 -07003147static struct rt6_info *ip6_nh_lookup_table(struct net *net,
3148 struct fib6_config *cfg,
David Ahernf4797b32018-01-25 16:55:08 -08003149 const struct in6_addr *gw_addr,
3150 u32 tbid, int flags)
David Ahern8c145862016-04-24 21:26:04 -07003151{
3152 struct flowi6 fl6 = {
3153 .flowi6_oif = cfg->fc_ifindex,
3154 .daddr = *gw_addr,
3155 .saddr = cfg->fc_prefsrc,
3156 };
3157 struct fib6_table *table;
3158 struct rt6_info *rt;
David Ahern8c145862016-04-24 21:26:04 -07003159
David Ahernf4797b32018-01-25 16:55:08 -08003160 table = fib6_get_table(net, tbid);
David Ahern8c145862016-04-24 21:26:04 -07003161 if (!table)
3162 return NULL;
3163
3164 if (!ipv6_addr_any(&cfg->fc_prefsrc))
3165 flags |= RT6_LOOKUP_F_HAS_SADDR;
3166
David Ahernf4797b32018-01-25 16:55:08 -08003167 flags |= RT6_LOOKUP_F_IGNORE_LINKSTATE;
David Ahernb75cc8f2018-03-02 08:32:17 -08003168 rt = ip6_pol_route(net, table, cfg->fc_ifindex, &fl6, NULL, flags);
David Ahern8c145862016-04-24 21:26:04 -07003169
3170 /* if table lookup failed, fall back to full lookup */
3171 if (rt == net->ipv6.ip6_null_entry) {
3172 ip6_rt_put(rt);
3173 rt = NULL;
3174 }
3175
3176 return rt;
3177}
3178
David Ahernfc1e64e2018-01-25 16:55:09 -08003179static int ip6_route_check_nh_onlink(struct net *net,
3180 struct fib6_config *cfg,
David Ahern9fbb7042018-03-13 08:29:36 -07003181 const struct net_device *dev,
David Ahernfc1e64e2018-01-25 16:55:09 -08003182 struct netlink_ext_ack *extack)
3183{
David Ahern44750f82018-02-06 13:17:06 -08003184 u32 tbid = l3mdev_fib_table(dev) ? : RT_TABLE_MAIN;
David Ahernfc1e64e2018-01-25 16:55:09 -08003185 const struct in6_addr *gw_addr = &cfg->fc_gateway;
3186 u32 flags = RTF_LOCAL | RTF_ANYCAST | RTF_REJECT;
Paolo Abenibf1dc8b2019-02-21 11:19:42 +01003187 struct fib6_info *from;
David Ahernfc1e64e2018-01-25 16:55:09 -08003188 struct rt6_info *grt;
3189 int err;
3190
3191 err = 0;
3192 grt = ip6_nh_lookup_table(net, cfg, gw_addr, tbid, 0);
3193 if (grt) {
Paolo Abenibf1dc8b2019-02-21 11:19:42 +01003194 rcu_read_lock();
3195 from = rcu_dereference(grt->from);
David Ahern58e354c2018-02-06 12:14:12 -08003196 if (!grt->dst.error &&
David Ahern4ed591c2018-10-24 13:58:39 -07003197 /* ignore match if it is the default route */
Paolo Abenibf1dc8b2019-02-21 11:19:42 +01003198 from && !ipv6_addr_any(&from->fib6_dst.addr) &&
David Ahern58e354c2018-02-06 12:14:12 -08003199 (grt->rt6i_flags & flags || dev != grt->dst.dev)) {
David Ahern44750f82018-02-06 13:17:06 -08003200 NL_SET_ERR_MSG(extack,
3201 "Nexthop has invalid gateway or device mismatch");
David Ahernfc1e64e2018-01-25 16:55:09 -08003202 err = -EINVAL;
3203 }
Paolo Abenibf1dc8b2019-02-21 11:19:42 +01003204 rcu_read_unlock();
David Ahernfc1e64e2018-01-25 16:55:09 -08003205
3206 ip6_rt_put(grt);
3207 }
3208
3209 return err;
3210}
3211
David Ahern1edce992018-01-25 16:55:07 -08003212static int ip6_route_check_nh(struct net *net,
3213 struct fib6_config *cfg,
3214 struct net_device **_dev,
3215 struct inet6_dev **idev)
3216{
3217 const struct in6_addr *gw_addr = &cfg->fc_gateway;
3218 struct net_device *dev = _dev ? *_dev : NULL;
3219 struct rt6_info *grt = NULL;
3220 int err = -EHOSTUNREACH;
3221
3222 if (cfg->fc_table) {
David Ahernf4797b32018-01-25 16:55:08 -08003223 int flags = RT6_LOOKUP_F_IFACE;
3224
3225 grt = ip6_nh_lookup_table(net, cfg, gw_addr,
3226 cfg->fc_table, flags);
David Ahern1edce992018-01-25 16:55:07 -08003227 if (grt) {
3228 if (grt->rt6i_flags & RTF_GATEWAY ||
3229 (dev && dev != grt->dst.dev)) {
3230 ip6_rt_put(grt);
3231 grt = NULL;
3232 }
3233 }
3234 }
3235
3236 if (!grt)
David Ahernb75cc8f2018-03-02 08:32:17 -08003237 grt = rt6_lookup(net, gw_addr, NULL, cfg->fc_ifindex, NULL, 1);
David Ahern1edce992018-01-25 16:55:07 -08003238
3239 if (!grt)
3240 goto out;
3241
3242 if (dev) {
3243 if (dev != grt->dst.dev) {
3244 ip6_rt_put(grt);
3245 goto out;
3246 }
3247 } else {
3248 *_dev = dev = grt->dst.dev;
3249 *idev = grt->rt6i_idev;
3250 dev_hold(dev);
3251 in6_dev_hold(grt->rt6i_idev);
3252 }
3253
3254 if (!(grt->rt6i_flags & RTF_GATEWAY))
3255 err = 0;
3256
3257 ip6_rt_put(grt);
3258
3259out:
3260 return err;
3261}
3262
David Ahern9fbb7042018-03-13 08:29:36 -07003263static int ip6_validate_gw(struct net *net, struct fib6_config *cfg,
3264 struct net_device **_dev, struct inet6_dev **idev,
3265 struct netlink_ext_ack *extack)
3266{
3267 const struct in6_addr *gw_addr = &cfg->fc_gateway;
3268 int gwa_type = ipv6_addr_type(gw_addr);
David Ahern232378e2018-03-13 08:29:37 -07003269 bool skip_dev = gwa_type & IPV6_ADDR_LINKLOCAL ? false : true;
David Ahern9fbb7042018-03-13 08:29:36 -07003270 const struct net_device *dev = *_dev;
David Ahern232378e2018-03-13 08:29:37 -07003271 bool need_addr_check = !dev;
David Ahern9fbb7042018-03-13 08:29:36 -07003272 int err = -EINVAL;
3273
3274 /* if gw_addr is local we will fail to detect this in case
3275 * address is still TENTATIVE (DAD in progress). rt6_lookup()
3276 * will return already-added prefix route via interface that
3277 * prefix route was assigned to, which might be non-loopback.
3278 */
David Ahern232378e2018-03-13 08:29:37 -07003279 if (dev &&
3280 ipv6_chk_addr_and_flags(net, gw_addr, dev, skip_dev, 0, 0)) {
3281 NL_SET_ERR_MSG(extack, "Gateway can not be a local address");
David Ahern9fbb7042018-03-13 08:29:36 -07003282 goto out;
3283 }
3284
3285 if (gwa_type != (IPV6_ADDR_LINKLOCAL | IPV6_ADDR_UNICAST)) {
3286 /* IPv6 strictly inhibits using not link-local
3287 * addresses as nexthop address.
3288 * Otherwise, router will not able to send redirects.
3289 * It is very good, but in some (rare!) circumstances
3290 * (SIT, PtP, NBMA NOARP links) it is handy to allow
3291 * some exceptions. --ANK
3292 * We allow IPv4-mapped nexthops to support RFC4798-type
3293 * addressing
3294 */
3295 if (!(gwa_type & (IPV6_ADDR_UNICAST | IPV6_ADDR_MAPPED))) {
3296 NL_SET_ERR_MSG(extack, "Invalid gateway address");
3297 goto out;
3298 }
3299
3300 if (cfg->fc_flags & RTNH_F_ONLINK)
3301 err = ip6_route_check_nh_onlink(net, cfg, dev, extack);
3302 else
3303 err = ip6_route_check_nh(net, cfg, _dev, idev);
3304
3305 if (err)
3306 goto out;
3307 }
3308
3309 /* reload in case device was changed */
3310 dev = *_dev;
3311
3312 err = -EINVAL;
3313 if (!dev) {
3314 NL_SET_ERR_MSG(extack, "Egress device not specified");
3315 goto out;
3316 } else if (dev->flags & IFF_LOOPBACK) {
3317 NL_SET_ERR_MSG(extack,
3318 "Egress device can not be loopback device for this route");
3319 goto out;
3320 }
David Ahern232378e2018-03-13 08:29:37 -07003321
3322 /* if we did not check gw_addr above, do so now that the
3323 * egress device has been resolved.
3324 */
3325 if (need_addr_check &&
3326 ipv6_chk_addr_and_flags(net, gw_addr, dev, skip_dev, 0, 0)) {
3327 NL_SET_ERR_MSG(extack, "Gateway can not be a local address");
3328 goto out;
3329 }
3330
David Ahern9fbb7042018-03-13 08:29:36 -07003331 err = 0;
3332out:
3333 return err;
3334}
3335
David Ahern83c442512019-03-27 20:53:50 -07003336static bool fib6_is_reject(u32 flags, struct net_device *dev, int addr_type)
3337{
3338 if ((flags & RTF_REJECT) ||
3339 (dev && (dev->flags & IFF_LOOPBACK) &&
3340 !(addr_type & IPV6_ADDR_LOOPBACK) &&
3341 !(flags & RTF_LOCAL)))
3342 return true;
3343
3344 return false;
3345}
3346
3347int fib6_nh_init(struct net *net, struct fib6_nh *fib6_nh,
3348 struct fib6_config *cfg, gfp_t gfp_flags,
3349 struct netlink_ext_ack *extack)
3350{
3351 struct net_device *dev = NULL;
3352 struct inet6_dev *idev = NULL;
3353 int addr_type;
3354 int err;
3355
David Ahernf1741732019-03-27 20:53:57 -07003356 fib6_nh->fib_nh_family = AF_INET6;
3357
David Ahern83c442512019-03-27 20:53:50 -07003358 err = -ENODEV;
3359 if (cfg->fc_ifindex) {
3360 dev = dev_get_by_index(net, cfg->fc_ifindex);
3361 if (!dev)
3362 goto out;
3363 idev = in6_dev_get(dev);
3364 if (!idev)
3365 goto out;
3366 }
3367
3368 if (cfg->fc_flags & RTNH_F_ONLINK) {
3369 if (!dev) {
3370 NL_SET_ERR_MSG(extack,
3371 "Nexthop device required for onlink");
3372 goto out;
3373 }
3374
3375 if (!(dev->flags & IFF_UP)) {
3376 NL_SET_ERR_MSG(extack, "Nexthop device is not up");
3377 err = -ENETDOWN;
3378 goto out;
3379 }
3380
David Ahernad1601a2019-03-27 20:53:56 -07003381 fib6_nh->fib_nh_flags |= RTNH_F_ONLINK;
David Ahern83c442512019-03-27 20:53:50 -07003382 }
3383
David Ahernad1601a2019-03-27 20:53:56 -07003384 fib6_nh->fib_nh_weight = 1;
David Ahern83c442512019-03-27 20:53:50 -07003385
3386 /* We cannot add true routes via loopback here,
3387 * they would result in kernel looping; promote them to reject routes
3388 */
3389 addr_type = ipv6_addr_type(&cfg->fc_dst);
3390 if (fib6_is_reject(cfg->fc_flags, dev, addr_type)) {
3391 /* hold loopback dev/idev if we haven't done so. */
3392 if (dev != net->loopback_dev) {
3393 if (dev) {
3394 dev_put(dev);
3395 in6_dev_put(idev);
3396 }
3397 dev = net->loopback_dev;
3398 dev_hold(dev);
3399 idev = in6_dev_get(dev);
3400 if (!idev) {
3401 err = -ENODEV;
3402 goto out;
3403 }
3404 }
David Ahern7dd73162019-06-03 18:37:03 -07003405 goto pcpu_alloc;
David Ahern83c442512019-03-27 20:53:50 -07003406 }
3407
3408 if (cfg->fc_flags & RTF_GATEWAY) {
3409 err = ip6_validate_gw(net, cfg, &dev, &idev, extack);
3410 if (err)
3411 goto out;
3412
David Ahernad1601a2019-03-27 20:53:56 -07003413 fib6_nh->fib_nh_gw6 = cfg->fc_gateway;
David Ahernbdf00462019-04-05 16:30:26 -07003414 fib6_nh->fib_nh_gw_family = AF_INET6;
David Ahern83c442512019-03-27 20:53:50 -07003415 }
3416
3417 err = -ENODEV;
3418 if (!dev)
3419 goto out;
3420
3421 if (idev->cnf.disable_ipv6) {
3422 NL_SET_ERR_MSG(extack, "IPv6 is disabled on nexthop device");
3423 err = -EACCES;
3424 goto out;
3425 }
3426
3427 if (!(dev->flags & IFF_UP) && !cfg->fc_ignore_dev_down) {
3428 NL_SET_ERR_MSG(extack, "Nexthop device is not up");
3429 err = -ENETDOWN;
3430 goto out;
3431 }
3432
3433 if (!(cfg->fc_flags & (RTF_LOCAL | RTF_ANYCAST)) &&
3434 !netif_carrier_ok(dev))
David Ahernad1601a2019-03-27 20:53:56 -07003435 fib6_nh->fib_nh_flags |= RTNH_F_LINKDOWN;
David Ahern83c442512019-03-27 20:53:50 -07003436
David Ahern7dd73162019-06-03 18:37:03 -07003437 err = fib_nh_common_init(&fib6_nh->nh_common, cfg->fc_encap,
3438 cfg->fc_encap_type, cfg, gfp_flags, extack);
3439 if (err)
3440 goto out;
3441
3442pcpu_alloc:
David Ahernf40b6ae2019-05-22 20:27:55 -07003443 fib6_nh->rt6i_pcpu = alloc_percpu_gfp(struct rt6_info *, gfp_flags);
3444 if (!fib6_nh->rt6i_pcpu) {
3445 err = -ENOMEM;
3446 goto out;
3447 }
3448
David Ahernad1601a2019-03-27 20:53:56 -07003449 fib6_nh->fib_nh_dev = dev;
David Ahernf1741732019-03-27 20:53:57 -07003450 fib6_nh->fib_nh_oif = dev->ifindex;
David Ahern83c442512019-03-27 20:53:50 -07003451 err = 0;
3452out:
3453 if (idev)
3454 in6_dev_put(idev);
3455
3456 if (err) {
David Ahernad1601a2019-03-27 20:53:56 -07003457 lwtstate_put(fib6_nh->fib_nh_lws);
3458 fib6_nh->fib_nh_lws = NULL;
David Ahern83c442512019-03-27 20:53:50 -07003459 if (dev)
3460 dev_put(dev);
3461 }
3462
3463 return err;
3464}
3465
David Aherndac7d0f2019-03-27 20:53:51 -07003466void fib6_nh_release(struct fib6_nh *fib6_nh)
3467{
David Aherncc5c0732019-05-22 20:27:58 -07003468 struct rt6_exception_bucket *bucket;
3469
3470 rcu_read_lock();
3471
3472 fib6_nh_flush_exceptions(fib6_nh, NULL);
3473 bucket = fib6_nh_get_excptn_bucket(fib6_nh, NULL);
3474 if (bucket) {
3475 rcu_assign_pointer(fib6_nh->rt6i_exception_bucket, NULL);
3476 kfree(bucket);
3477 }
3478
3479 rcu_read_unlock();
3480
David Ahernf40b6ae2019-05-22 20:27:55 -07003481 if (fib6_nh->rt6i_pcpu) {
3482 int cpu;
3483
3484 for_each_possible_cpu(cpu) {
3485 struct rt6_info **ppcpu_rt;
3486 struct rt6_info *pcpu_rt;
3487
3488 ppcpu_rt = per_cpu_ptr(fib6_nh->rt6i_pcpu, cpu);
3489 pcpu_rt = *ppcpu_rt;
3490 if (pcpu_rt) {
3491 dst_dev_put(&pcpu_rt->dst);
3492 dst_release(&pcpu_rt->dst);
3493 *ppcpu_rt = NULL;
3494 }
3495 }
3496
3497 free_percpu(fib6_nh->rt6i_pcpu);
3498 }
3499
David Ahern979e2762019-03-27 20:53:58 -07003500 fib_nh_common_release(&fib6_nh->nh_common);
David Aherndac7d0f2019-03-27 20:53:51 -07003501}
3502
David Ahern8d1c8022018-04-17 17:33:26 -07003503static struct fib6_info *ip6_route_info_create(struct fib6_config *cfg,
David Ahernacb54e32018-04-17 17:33:22 -07003504 gfp_t gfp_flags,
David Ahern333c4302017-05-21 10:12:04 -06003505 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003506{
Daniel Lezcano55786892008-03-04 13:47:47 -08003507 struct net *net = cfg->fc_nlinfo.nl_net;
David Ahern8d1c8022018-04-17 17:33:26 -07003508 struct fib6_info *rt = NULL;
David Ahernf88d8ea2019-06-03 20:19:52 -07003509 struct nexthop *nh = NULL;
Thomas Grafc71099a2006-08-04 23:20:06 -07003510 struct fib6_table *table;
David Ahernf88d8ea2019-06-03 20:19:52 -07003511 struct fib6_nh *fib6_nh;
Roopa Prabhu8c5b83f2015-10-10 08:26:36 -07003512 int err = -EINVAL;
David Ahern83c442512019-03-27 20:53:50 -07003513 int addr_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003514
David Ahern557c44b2017-04-19 14:19:43 -07003515 /* RTF_PCPU is an internal flag; can not be set by userspace */
David Ahernd5d531c2017-05-21 10:12:05 -06003516 if (cfg->fc_flags & RTF_PCPU) {
3517 NL_SET_ERR_MSG(extack, "Userspace can not set RTF_PCPU");
David Ahern557c44b2017-04-19 14:19:43 -07003518 goto out;
David Ahernd5d531c2017-05-21 10:12:05 -06003519 }
David Ahern557c44b2017-04-19 14:19:43 -07003520
Wei Wang2ea23522017-10-27 17:30:12 -07003521 /* RTF_CACHE is an internal flag; can not be set by userspace */
3522 if (cfg->fc_flags & RTF_CACHE) {
3523 NL_SET_ERR_MSG(extack, "Userspace can not set RTF_CACHE");
3524 goto out;
3525 }
3526
David Aherne8478e82018-04-17 17:33:13 -07003527 if (cfg->fc_type > RTN_MAX) {
3528 NL_SET_ERR_MSG(extack, "Invalid route type");
3529 goto out;
3530 }
3531
David Ahernd5d531c2017-05-21 10:12:05 -06003532 if (cfg->fc_dst_len > 128) {
3533 NL_SET_ERR_MSG(extack, "Invalid prefix length");
Roopa Prabhu8c5b83f2015-10-10 08:26:36 -07003534 goto out;
David Ahernd5d531c2017-05-21 10:12:05 -06003535 }
3536 if (cfg->fc_src_len > 128) {
3537 NL_SET_ERR_MSG(extack, "Invalid source address length");
3538 goto out;
3539 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003540#ifndef CONFIG_IPV6_SUBTREES
David Ahernd5d531c2017-05-21 10:12:05 -06003541 if (cfg->fc_src_len) {
3542 NL_SET_ERR_MSG(extack,
3543 "Specifying source address requires IPV6_SUBTREES to be enabled");
Roopa Prabhu8c5b83f2015-10-10 08:26:36 -07003544 goto out;
David Ahernd5d531c2017-05-21 10:12:05 -06003545 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003546#endif
David Ahern5b983242019-06-08 14:53:34 -07003547 if (cfg->fc_nh_id) {
3548 nh = nexthop_find_by_id(net, cfg->fc_nh_id);
3549 if (!nh) {
3550 NL_SET_ERR_MSG(extack, "Nexthop id does not exist");
3551 goto out;
3552 }
3553 err = fib6_check_nexthop(nh, cfg, extack);
3554 if (err)
3555 goto out;
3556 }
David Ahernfc1e64e2018-01-25 16:55:09 -08003557
Matti Vaittinend71314b2011-11-14 00:14:49 +00003558 err = -ENOBUFS;
David S. Miller38308472011-12-03 18:02:47 -05003559 if (cfg->fc_nlinfo.nlh &&
3560 !(cfg->fc_nlinfo.nlh->nlmsg_flags & NLM_F_CREATE)) {
Matti Vaittinend71314b2011-11-14 00:14:49 +00003561 table = fib6_get_table(net, cfg->fc_table);
David S. Miller38308472011-12-03 18:02:47 -05003562 if (!table) {
Joe Perchesf3213832012-05-15 14:11:53 +00003563 pr_warn("NLM_F_CREATE should be specified when creating new route\n");
Matti Vaittinend71314b2011-11-14 00:14:49 +00003564 table = fib6_new_table(net, cfg->fc_table);
3565 }
3566 } else {
3567 table = fib6_new_table(net, cfg->fc_table);
3568 }
David S. Miller38308472011-12-03 18:02:47 -05003569
3570 if (!table)
Thomas Grafc71099a2006-08-04 23:20:06 -07003571 goto out;
Thomas Grafc71099a2006-08-04 23:20:06 -07003572
David Ahern93531c62018-04-17 17:33:25 -07003573 err = -ENOMEM;
David Ahernf88d8ea2019-06-03 20:19:52 -07003574 rt = fib6_info_alloc(gfp_flags, !nh);
David Ahern93531c62018-04-17 17:33:25 -07003575 if (!rt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003576 goto out;
David Ahern93531c62018-04-17 17:33:25 -07003577
David Ahernd7e774f2018-11-06 12:51:15 -08003578 rt->fib6_metrics = ip_fib_metrics_init(net, cfg->fc_mx, cfg->fc_mx_len,
3579 extack);
David Ahern767a2212018-10-04 20:07:51 -07003580 if (IS_ERR(rt->fib6_metrics)) {
3581 err = PTR_ERR(rt->fib6_metrics);
Eric Dumazetfda21d42018-10-05 09:17:50 -07003582 /* Do not leave garbage there. */
3583 rt->fib6_metrics = (struct dst_metrics *)&dst_default_metrics;
David Ahern767a2212018-10-04 20:07:51 -07003584 goto out;
3585 }
3586
David Ahern93531c62018-04-17 17:33:25 -07003587 if (cfg->fc_flags & RTF_ADDRCONF)
3588 rt->dst_nocount = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003589
Gao feng1716a962012-04-06 00:13:10 +00003590 if (cfg->fc_flags & RTF_EXPIRES)
David Ahern14895682018-04-17 17:33:17 -07003591 fib6_set_expires(rt, jiffies +
Gao feng1716a962012-04-06 00:13:10 +00003592 clock_t_to_jiffies(cfg->fc_expires));
3593 else
David Ahern14895682018-04-17 17:33:17 -07003594 fib6_clean_expires(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003595
Thomas Graf86872cb2006-08-22 00:01:08 -07003596 if (cfg->fc_protocol == RTPROT_UNSPEC)
3597 cfg->fc_protocol = RTPROT_BOOT;
David Ahern93c2fb22018-04-18 15:38:59 -07003598 rt->fib6_protocol = cfg->fc_protocol;
Thomas Graf86872cb2006-08-22 00:01:08 -07003599
David Ahern83c442512019-03-27 20:53:50 -07003600 rt->fib6_table = table;
3601 rt->fib6_metric = cfg->fc_metric;
David Ahernc7036d92019-06-19 10:50:24 -07003602 rt->fib6_type = cfg->fc_type ? : RTN_UNICAST;
David Ahern2b2450c2019-03-27 20:53:52 -07003603 rt->fib6_flags = cfg->fc_flags & ~RTF_GATEWAY;
Roopa Prabhu19e42e42015-07-21 10:43:48 +02003604
David Ahern93c2fb22018-04-18 15:38:59 -07003605 ipv6_addr_prefix(&rt->fib6_dst.addr, &cfg->fc_dst, cfg->fc_dst_len);
3606 rt->fib6_dst.plen = cfg->fc_dst_len;
3607 if (rt->fib6_dst.plen == 128)
David Ahern3b6761d2018-04-17 17:33:20 -07003608 rt->dst_host = true;
Michal Kubečeke5fd3872014-03-27 13:04:08 +01003609
Linus Torvalds1da177e2005-04-16 15:20:36 -07003610#ifdef CONFIG_IPV6_SUBTREES
David Ahern93c2fb22018-04-18 15:38:59 -07003611 ipv6_addr_prefix(&rt->fib6_src.addr, &cfg->fc_src, cfg->fc_src_len);
3612 rt->fib6_src.plen = cfg->fc_src_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003613#endif
David Ahernf88d8ea2019-06-03 20:19:52 -07003614 if (nh) {
3615 if (!nexthop_get(nh)) {
3616 NL_SET_ERR_MSG(extack, "Nexthop has been deleted");
3617 goto out;
3618 }
3619 if (rt->fib6_src.plen) {
Colin Ian King4daa95a2019-06-06 09:40:39 +01003620 NL_SET_ERR_MSG(extack, "Nexthops can not be used with source routing");
David Ahernf88d8ea2019-06-03 20:19:52 -07003621 goto out;
3622 }
3623 rt->nh = nh;
3624 fib6_nh = nexthop_fib6_nh(rt->nh);
3625 } else {
3626 err = fib6_nh_init(net, rt->fib6_nh, cfg, gfp_flags, extack);
3627 if (err)
3628 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003629
David Ahernf88d8ea2019-06-03 20:19:52 -07003630 fib6_nh = rt->fib6_nh;
3631
3632 /* We cannot add true routes via loopback here, they would
3633 * result in kernel looping; promote them to reject routes
3634 */
3635 addr_type = ipv6_addr_type(&cfg->fc_dst);
3636 if (fib6_is_reject(cfg->fc_flags, rt->fib6_nh->fib_nh_dev,
3637 addr_type))
3638 rt->fib6_flags = RTF_REJECT | RTF_NONEXTHOP;
3639 }
David Ahern955ec4c2018-01-24 19:45:29 -08003640
Daniel Walterc3968a82011-04-13 21:10:57 +00003641 if (!ipv6_addr_any(&cfg->fc_prefsrc)) {
David Ahernf88d8ea2019-06-03 20:19:52 -07003642 struct net_device *dev = fib6_nh->fib_nh_dev;
David Ahern83c442512019-03-27 20:53:50 -07003643
Daniel Walterc3968a82011-04-13 21:10:57 +00003644 if (!ipv6_chk_addr(net, &cfg->fc_prefsrc, dev, 0)) {
David Ahernd5d531c2017-05-21 10:12:05 -06003645 NL_SET_ERR_MSG(extack, "Invalid source address");
Daniel Walterc3968a82011-04-13 21:10:57 +00003646 err = -EINVAL;
3647 goto out;
3648 }
David Ahern93c2fb22018-04-18 15:38:59 -07003649 rt->fib6_prefsrc.addr = cfg->fc_prefsrc;
3650 rt->fib6_prefsrc.plen = 128;
Daniel Walterc3968a82011-04-13 21:10:57 +00003651 } else
David Ahern93c2fb22018-04-18 15:38:59 -07003652 rt->fib6_prefsrc.plen = 0;
Daniel Walterc3968a82011-04-13 21:10:57 +00003653
Roopa Prabhu8c5b83f2015-10-10 08:26:36 -07003654 return rt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003655out:
David Ahern93531c62018-04-17 17:33:25 -07003656 fib6_info_release(rt);
Roopa Prabhu8c5b83f2015-10-10 08:26:36 -07003657 return ERR_PTR(err);
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003658}
3659
David Ahernacb54e32018-04-17 17:33:22 -07003660int ip6_route_add(struct fib6_config *cfg, gfp_t gfp_flags,
David Ahern333c4302017-05-21 10:12:04 -06003661 struct netlink_ext_ack *extack)
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003662{
David Ahern8d1c8022018-04-17 17:33:26 -07003663 struct fib6_info *rt;
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003664 int err;
3665
David Ahernacb54e32018-04-17 17:33:22 -07003666 rt = ip6_route_info_create(cfg, gfp_flags, extack);
David Ahernd4ead6b2018-04-17 17:33:16 -07003667 if (IS_ERR(rt))
3668 return PTR_ERR(rt);
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003669
David Ahernd4ead6b2018-04-17 17:33:16 -07003670 err = __ip6_ins_rt(rt, &cfg->fc_nlinfo, extack);
David Ahern93531c62018-04-17 17:33:25 -07003671 fib6_info_release(rt);
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003672
Linus Torvalds1da177e2005-04-16 15:20:36 -07003673 return err;
3674}
3675
David Ahern8d1c8022018-04-17 17:33:26 -07003676static int __ip6_del_rt(struct fib6_info *rt, struct nl_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003677{
David Ahernafb1d4b52018-04-17 17:33:11 -07003678 struct net *net = info->nl_net;
Thomas Grafc71099a2006-08-04 23:20:06 -07003679 struct fib6_table *table;
David Ahernafb1d4b52018-04-17 17:33:11 -07003680 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003681
David Ahern421842e2018-04-17 17:33:18 -07003682 if (rt == net->ipv6.fib6_null_entry) {
Gao feng6825a262012-09-19 19:25:34 +00003683 err = -ENOENT;
3684 goto out;
3685 }
Patrick McHardy6c813a72006-08-06 22:22:47 -07003686
David Ahern93c2fb22018-04-18 15:38:59 -07003687 table = rt->fib6_table;
Wei Wang66f5d6c2017-10-06 12:06:10 -07003688 spin_lock_bh(&table->tb6_lock);
Thomas Graf86872cb2006-08-22 00:01:08 -07003689 err = fib6_del(rt, info);
Wei Wang66f5d6c2017-10-06 12:06:10 -07003690 spin_unlock_bh(&table->tb6_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003691
Gao feng6825a262012-09-19 19:25:34 +00003692out:
David Ahern93531c62018-04-17 17:33:25 -07003693 fib6_info_release(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003694 return err;
3695}
3696
David Ahern8d1c8022018-04-17 17:33:26 -07003697int ip6_del_rt(struct net *net, struct fib6_info *rt)
Thomas Grafe0a1ad732006-08-22 00:00:21 -07003698{
David Ahernafb1d4b52018-04-17 17:33:11 -07003699 struct nl_info info = { .nl_net = net };
3700
Denis V. Lunev528c4ce2007-12-13 09:45:12 -08003701 return __ip6_del_rt(rt, &info);
Thomas Grafe0a1ad732006-08-22 00:00:21 -07003702}
3703
David Ahern8d1c8022018-04-17 17:33:26 -07003704static int __ip6_del_rt_siblings(struct fib6_info *rt, struct fib6_config *cfg)
David Ahern0ae81332017-02-02 12:37:08 -08003705{
3706 struct nl_info *info = &cfg->fc_nlinfo;
WANG Conge3330032017-02-27 16:07:43 -08003707 struct net *net = info->nl_net;
David Ahern16a16cd2017-02-02 12:37:11 -08003708 struct sk_buff *skb = NULL;
David Ahern0ae81332017-02-02 12:37:08 -08003709 struct fib6_table *table;
WANG Conge3330032017-02-27 16:07:43 -08003710 int err = -ENOENT;
David Ahern0ae81332017-02-02 12:37:08 -08003711
David Ahern421842e2018-04-17 17:33:18 -07003712 if (rt == net->ipv6.fib6_null_entry)
WANG Conge3330032017-02-27 16:07:43 -08003713 goto out_put;
David Ahern93c2fb22018-04-18 15:38:59 -07003714 table = rt->fib6_table;
Wei Wang66f5d6c2017-10-06 12:06:10 -07003715 spin_lock_bh(&table->tb6_lock);
David Ahern0ae81332017-02-02 12:37:08 -08003716
David Ahern93c2fb22018-04-18 15:38:59 -07003717 if (rt->fib6_nsiblings && cfg->fc_delete_all_nh) {
David Ahern8d1c8022018-04-17 17:33:26 -07003718 struct fib6_info *sibling, *next_sibling;
David Ahern0ae81332017-02-02 12:37:08 -08003719
David Ahern16a16cd2017-02-02 12:37:11 -08003720 /* prefer to send a single notification with all hops */
3721 skb = nlmsg_new(rt6_nlmsg_size(rt), gfp_any());
3722 if (skb) {
3723 u32 seq = info->nlh ? info->nlh->nlmsg_seq : 0;
3724
David Ahernd4ead6b2018-04-17 17:33:16 -07003725 if (rt6_fill_node(net, skb, rt, NULL,
David Ahern16a16cd2017-02-02 12:37:11 -08003726 NULL, NULL, 0, RTM_DELROUTE,
3727 info->portid, seq, 0) < 0) {
3728 kfree_skb(skb);
3729 skb = NULL;
3730 } else
3731 info->skip_notify = 1;
3732 }
3733
Ido Schimmel2881fd62019-06-18 18:12:49 +03003734 info->skip_notify_kernel = 1;
3735 call_fib6_multipath_entry_notifiers(net,
3736 FIB_EVENT_ENTRY_DEL,
3737 rt,
3738 rt->fib6_nsiblings,
3739 NULL);
David Ahern0ae81332017-02-02 12:37:08 -08003740 list_for_each_entry_safe(sibling, next_sibling,
David Ahern93c2fb22018-04-18 15:38:59 -07003741 &rt->fib6_siblings,
3742 fib6_siblings) {
David Ahern0ae81332017-02-02 12:37:08 -08003743 err = fib6_del(sibling, info);
3744 if (err)
WANG Conge3330032017-02-27 16:07:43 -08003745 goto out_unlock;
David Ahern0ae81332017-02-02 12:37:08 -08003746 }
3747 }
3748
3749 err = fib6_del(rt, info);
WANG Conge3330032017-02-27 16:07:43 -08003750out_unlock:
Wei Wang66f5d6c2017-10-06 12:06:10 -07003751 spin_unlock_bh(&table->tb6_lock);
WANG Conge3330032017-02-27 16:07:43 -08003752out_put:
David Ahern93531c62018-04-17 17:33:25 -07003753 fib6_info_release(rt);
David Ahern16a16cd2017-02-02 12:37:11 -08003754
3755 if (skb) {
WANG Conge3330032017-02-27 16:07:43 -08003756 rtnl_notify(skb, net, info->portid, RTNLGRP_IPV6_ROUTE,
David Ahern16a16cd2017-02-02 12:37:11 -08003757 info->nlh, gfp_any());
3758 }
David Ahern0ae81332017-02-02 12:37:08 -08003759 return err;
3760}
3761
David Ahern0fa6efc2019-05-22 20:28:00 -07003762static int __ip6_del_cached_rt(struct rt6_info *rt, struct fib6_config *cfg)
David Ahern23fb93a2018-04-17 17:33:23 -07003763{
3764 int rc = -ESRCH;
3765
3766 if (cfg->fc_ifindex && rt->dst.dev->ifindex != cfg->fc_ifindex)
3767 goto out;
3768
3769 if (cfg->fc_flags & RTF_GATEWAY &&
3770 !ipv6_addr_equal(&cfg->fc_gateway, &rt->rt6i_gateway))
3771 goto out;
Xin Long761f6022018-11-14 00:48:28 +08003772
3773 rc = rt6_remove_exception_rt(rt);
David Ahern23fb93a2018-04-17 17:33:23 -07003774out:
3775 return rc;
3776}
3777
David Ahern0fa6efc2019-05-22 20:28:00 -07003778static int ip6_del_cached_rt(struct fib6_config *cfg, struct fib6_info *rt,
3779 struct fib6_nh *nh)
3780{
3781 struct fib6_result res = {
3782 .f6i = rt,
3783 .nh = nh,
3784 };
3785 struct rt6_info *rt_cache;
3786
3787 rt_cache = rt6_find_cached_rt(&res, &cfg->fc_dst, &cfg->fc_src);
3788 if (rt_cache)
3789 return __ip6_del_cached_rt(rt_cache, cfg);
3790
3791 return 0;
3792}
3793
David Ahern5b983242019-06-08 14:53:34 -07003794struct fib6_nh_del_cached_rt_arg {
3795 struct fib6_config *cfg;
3796 struct fib6_info *f6i;
3797};
3798
3799static int fib6_nh_del_cached_rt(struct fib6_nh *nh, void *_arg)
3800{
3801 struct fib6_nh_del_cached_rt_arg *arg = _arg;
3802 int rc;
3803
3804 rc = ip6_del_cached_rt(arg->cfg, arg->f6i, nh);
3805 return rc != -ESRCH ? rc : 0;
3806}
3807
3808static int ip6_del_cached_rt_nh(struct fib6_config *cfg, struct fib6_info *f6i)
3809{
3810 struct fib6_nh_del_cached_rt_arg arg = {
3811 .cfg = cfg,
3812 .f6i = f6i
3813 };
3814
3815 return nexthop_for_each_fib6_nh(f6i->nh, fib6_nh_del_cached_rt, &arg);
3816}
3817
David Ahern333c4302017-05-21 10:12:04 -06003818static int ip6_route_del(struct fib6_config *cfg,
3819 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003820{
Thomas Grafc71099a2006-08-04 23:20:06 -07003821 struct fib6_table *table;
David Ahern8d1c8022018-04-17 17:33:26 -07003822 struct fib6_info *rt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003823 struct fib6_node *fn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003824 int err = -ESRCH;
3825
Daniel Lezcano55786892008-03-04 13:47:47 -08003826 table = fib6_get_table(cfg->fc_nlinfo.nl_net, cfg->fc_table);
David Ahernd5d531c2017-05-21 10:12:05 -06003827 if (!table) {
3828 NL_SET_ERR_MSG(extack, "FIB table does not exist");
Thomas Grafc71099a2006-08-04 23:20:06 -07003829 return err;
David Ahernd5d531c2017-05-21 10:12:05 -06003830 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003831
Wei Wang66f5d6c2017-10-06 12:06:10 -07003832 rcu_read_lock();
Thomas Grafc71099a2006-08-04 23:20:06 -07003833
3834 fn = fib6_locate(&table->tb6_root,
Thomas Graf86872cb2006-08-22 00:01:08 -07003835 &cfg->fc_dst, cfg->fc_dst_len,
Wei Wang38fbeee2017-10-06 12:06:02 -07003836 &cfg->fc_src, cfg->fc_src_len,
Wei Wang2b760fc2017-10-06 12:06:03 -07003837 !(cfg->fc_flags & RTF_CACHE));
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003838
Linus Torvalds1da177e2005-04-16 15:20:36 -07003839 if (fn) {
Wei Wang66f5d6c2017-10-06 12:06:10 -07003840 for_each_fib6_node_rt_rcu(fn) {
David Ahernad1601a2019-03-27 20:53:56 -07003841 struct fib6_nh *nh;
3842
Stefano Brivio3401bfb2019-06-21 17:45:25 +02003843 if (rt->nh && cfg->fc_nh_id &&
3844 rt->nh->id != cfg->fc_nh_id)
David Ahern5b983242019-06-08 14:53:34 -07003845 continue;
David Ahern23fb93a2018-04-17 17:33:23 -07003846
David Ahern5b983242019-06-08 14:53:34 -07003847 if (cfg->fc_flags & RTF_CACHE) {
3848 int rc = 0;
3849
3850 if (rt->nh) {
3851 rc = ip6_del_cached_rt_nh(cfg, rt);
3852 } else if (cfg->fc_nh_id) {
3853 continue;
3854 } else {
3855 nh = rt->fib6_nh;
3856 rc = ip6_del_cached_rt(cfg, rt, nh);
3857 }
David Ahern0fa6efc2019-05-22 20:28:00 -07003858 if (rc != -ESRCH) {
3859 rcu_read_unlock();
3860 return rc;
David Ahern23fb93a2018-04-17 17:33:23 -07003861 }
3862 continue;
Wei Wang2b760fc2017-10-06 12:06:03 -07003863 }
David Ahernad1601a2019-03-27 20:53:56 -07003864
David Ahern5b983242019-06-08 14:53:34 -07003865 if (cfg->fc_metric && cfg->fc_metric != rt->fib6_metric)
3866 continue;
3867 if (cfg->fc_protocol &&
3868 cfg->fc_protocol != rt->fib6_protocol)
3869 continue;
3870
3871 if (rt->nh) {
3872 if (!fib6_info_hold_safe(rt))
3873 continue;
3874 rcu_read_unlock();
3875
3876 return __ip6_del_rt(rt, &cfg->fc_nlinfo);
3877 }
3878 if (cfg->fc_nh_id)
3879 continue;
3880
3881 nh = rt->fib6_nh;
Thomas Graf86872cb2006-08-22 00:01:08 -07003882 if (cfg->fc_ifindex &&
David Ahernad1601a2019-03-27 20:53:56 -07003883 (!nh->fib_nh_dev ||
3884 nh->fib_nh_dev->ifindex != cfg->fc_ifindex))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003885 continue;
Thomas Graf86872cb2006-08-22 00:01:08 -07003886 if (cfg->fc_flags & RTF_GATEWAY &&
David Ahernad1601a2019-03-27 20:53:56 -07003887 !ipv6_addr_equal(&cfg->fc_gateway, &nh->fib_nh_gw6))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003888 continue;
Wei Wange873e4b2018-07-21 20:56:32 -07003889 if (!fib6_info_hold_safe(rt))
3890 continue;
Wei Wang66f5d6c2017-10-06 12:06:10 -07003891 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003892
David Ahern0ae81332017-02-02 12:37:08 -08003893 /* if gateway was specified only delete the one hop */
3894 if (cfg->fc_flags & RTF_GATEWAY)
3895 return __ip6_del_rt(rt, &cfg->fc_nlinfo);
3896
3897 return __ip6_del_rt_siblings(rt, cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003898 }
3899 }
Wei Wang66f5d6c2017-10-06 12:06:10 -07003900 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003901
3902 return err;
3903}
3904
David S. Miller6700c272012-07-17 03:29:28 -07003905static void rt6_do_redirect(struct dst_entry *dst, struct sock *sk, struct sk_buff *skb)
YOSHIFUJI Hideakia6279452006-08-23 17:18:26 -07003906{
YOSHIFUJI Hideakia6279452006-08-23 17:18:26 -07003907 struct netevent_redirect netevent;
David S. Millere8599ff2012-07-11 23:43:53 -07003908 struct rt6_info *rt, *nrt = NULL;
David Ahern85bd05d2019-04-16 14:36:01 -07003909 struct fib6_result res = {};
David S. Millere8599ff2012-07-11 23:43:53 -07003910 struct ndisc_options ndopts;
3911 struct inet6_dev *in6_dev;
3912 struct neighbour *neigh;
YOSHIFUJI Hideaki / 吉藤英明71bcdba2013-01-05 16:34:51 +00003913 struct rd_msg *msg;
David S. Miller6e157b62012-07-12 00:05:02 -07003914 int optlen, on_link;
3915 u8 *lladdr;
David S. Millere8599ff2012-07-11 23:43:53 -07003916
Simon Horman29a3cad2013-05-28 20:34:26 +00003917 optlen = skb_tail_pointer(skb) - skb_transport_header(skb);
YOSHIFUJI Hideaki / 吉藤英明71bcdba2013-01-05 16:34:51 +00003918 optlen -= sizeof(*msg);
David S. Millere8599ff2012-07-11 23:43:53 -07003919
3920 if (optlen < 0) {
David S. Miller6e157b62012-07-12 00:05:02 -07003921 net_dbg_ratelimited("rt6_do_redirect: packet too short\n");
David S. Millere8599ff2012-07-11 23:43:53 -07003922 return;
3923 }
3924
YOSHIFUJI Hideaki / 吉藤英明71bcdba2013-01-05 16:34:51 +00003925 msg = (struct rd_msg *)icmp6_hdr(skb);
David S. Millere8599ff2012-07-11 23:43:53 -07003926
YOSHIFUJI Hideaki / 吉藤英明71bcdba2013-01-05 16:34:51 +00003927 if (ipv6_addr_is_multicast(&msg->dest)) {
David S. Miller6e157b62012-07-12 00:05:02 -07003928 net_dbg_ratelimited("rt6_do_redirect: destination address is multicast\n");
David S. Millere8599ff2012-07-11 23:43:53 -07003929 return;
3930 }
3931
David S. Miller6e157b62012-07-12 00:05:02 -07003932 on_link = 0;
YOSHIFUJI Hideaki / 吉藤英明71bcdba2013-01-05 16:34:51 +00003933 if (ipv6_addr_equal(&msg->dest, &msg->target)) {
David S. Millere8599ff2012-07-11 23:43:53 -07003934 on_link = 1;
YOSHIFUJI Hideaki / 吉藤英明71bcdba2013-01-05 16:34:51 +00003935 } else if (ipv6_addr_type(&msg->target) !=
David S. Millere8599ff2012-07-11 23:43:53 -07003936 (IPV6_ADDR_UNICAST|IPV6_ADDR_LINKLOCAL)) {
David S. Miller6e157b62012-07-12 00:05:02 -07003937 net_dbg_ratelimited("rt6_do_redirect: target address is not link-local unicast\n");
David S. Millere8599ff2012-07-11 23:43:53 -07003938 return;
3939 }
3940
3941 in6_dev = __in6_dev_get(skb->dev);
3942 if (!in6_dev)
3943 return;
3944 if (in6_dev->cnf.forwarding || !in6_dev->cnf.accept_redirects)
3945 return;
3946
3947 /* RFC2461 8.1:
3948 * The IP source address of the Redirect MUST be the same as the current
3949 * first-hop router for the specified ICMP Destination Address.
3950 */
3951
Alexander Aringf997c552016-06-15 21:20:23 +02003952 if (!ndisc_parse_options(skb->dev, msg->opt, optlen, &ndopts)) {
David S. Millere8599ff2012-07-11 23:43:53 -07003953 net_dbg_ratelimited("rt6_redirect: invalid ND options\n");
3954 return;
3955 }
David S. Miller6e157b62012-07-12 00:05:02 -07003956
3957 lladdr = NULL;
David S. Millere8599ff2012-07-11 23:43:53 -07003958 if (ndopts.nd_opts_tgt_lladdr) {
3959 lladdr = ndisc_opt_addr_data(ndopts.nd_opts_tgt_lladdr,
3960 skb->dev);
3961 if (!lladdr) {
3962 net_dbg_ratelimited("rt6_redirect: invalid link-layer address length\n");
3963 return;
3964 }
3965 }
3966
David S. Miller6e157b62012-07-12 00:05:02 -07003967 rt = (struct rt6_info *) dst;
Matthias Schifferec13ad12015-11-02 01:24:38 +01003968 if (rt->rt6i_flags & RTF_REJECT) {
David S. Miller6e157b62012-07-12 00:05:02 -07003969 net_dbg_ratelimited("rt6_redirect: source isn't a valid nexthop for redirect target\n");
3970 return;
3971 }
3972
3973 /* Redirect received -> path was valid.
3974 * Look, redirects are sent only in response to data packets,
3975 * so that this nexthop apparently is reachable. --ANK
3976 */
Julian Anastasov0dec8792017-02-06 23:14:16 +02003977 dst_confirm_neigh(&rt->dst, &ipv6_hdr(skb)->saddr);
David S. Miller6e157b62012-07-12 00:05:02 -07003978
YOSHIFUJI Hideaki / 吉藤英明71bcdba2013-01-05 16:34:51 +00003979 neigh = __neigh_lookup(&nd_tbl, &msg->target, skb->dev, 1);
David S. Millere8599ff2012-07-11 23:43:53 -07003980 if (!neigh)
3981 return;
3982
Linus Torvalds1da177e2005-04-16 15:20:36 -07003983 /*
3984 * We have finally decided to accept it.
3985 */
3986
Alexander Aringf997c552016-06-15 21:20:23 +02003987 ndisc_update(skb->dev, neigh, lladdr, NUD_STALE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003988 NEIGH_UPDATE_F_WEAK_OVERRIDE|
3989 NEIGH_UPDATE_F_OVERRIDE|
3990 (on_link ? 0 : (NEIGH_UPDATE_F_OVERRIDE_ISROUTER|
Alexander Aringf997c552016-06-15 21:20:23 +02003991 NEIGH_UPDATE_F_ISROUTER)),
3992 NDISC_REDIRECT, &ndopts);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003993
David Ahern4d85cd02018-04-20 15:37:59 -07003994 rcu_read_lock();
David Ahern85bd05d2019-04-16 14:36:01 -07003995 res.f6i = rcu_dereference(rt->from);
David S. Millerff24e492019-05-02 22:14:21 -04003996 if (!res.f6i)
Martin KaFai Lau886b7a52019-04-30 10:45:12 -07003997 goto out;
David Ahern8a14e462018-04-23 11:32:07 -07003998
David Ahern49d5b8e2019-06-08 14:53:30 -07003999 if (res.f6i->nh) {
4000 struct fib6_nh_match_arg arg = {
4001 .dev = dst->dev,
4002 .gw = &rt->rt6i_gateway,
4003 };
4004
4005 nexthop_for_each_fib6_nh(res.f6i->nh,
4006 fib6_nh_find_match, &arg);
4007
4008 /* fib6_info uses a nexthop that does not have fib6_nh
4009 * using the dst->dev. Should be impossible
4010 */
4011 if (!arg.match)
4012 goto out;
4013 res.nh = arg.match;
4014 } else {
4015 res.nh = res.f6i->fib6_nh;
4016 }
4017
David Ahern7d21fec2019-04-16 14:36:11 -07004018 res.fib6_flags = res.f6i->fib6_flags;
4019 res.fib6_type = res.f6i->fib6_type;
David Ahern85bd05d2019-04-16 14:36:01 -07004020 nrt = ip6_rt_cache_alloc(&res, &msg->dest, NULL);
David S. Miller38308472011-12-03 18:02:47 -05004021 if (!nrt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004022 goto out;
4023
4024 nrt->rt6i_flags = RTF_GATEWAY|RTF_UP|RTF_DYNAMIC|RTF_CACHE;
4025 if (on_link)
4026 nrt->rt6i_flags &= ~RTF_GATEWAY;
4027
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00004028 nrt->rt6i_gateway = *(struct in6_addr *)neigh->primary_key;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004029
Martin KaFai Lau886b7a52019-04-30 10:45:12 -07004030 /* rt6_insert_exception() will take care of duplicated exceptions */
David Ahern5012f0a2019-04-16 14:36:05 -07004031 if (rt6_insert_exception(nrt, &res)) {
Wei Wang2b760fc2017-10-06 12:06:03 -07004032 dst_release_immediate(&nrt->dst);
4033 goto out;
4034 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004035
Changli Gaod8d1f302010-06-10 23:31:35 -07004036 netevent.old = &rt->dst;
4037 netevent.new = &nrt->dst;
YOSHIFUJI Hideaki / 吉藤英明71bcdba2013-01-05 16:34:51 +00004038 netevent.daddr = &msg->dest;
YOSHIFUJI Hideaki / 吉藤英明60592832013-01-14 09:28:27 +00004039 netevent.neigh = neigh;
Tom Tucker8d717402006-07-30 20:43:36 -07004040 call_netevent_notifiers(NETEVENT_REDIRECT, &netevent);
4041
Linus Torvalds1da177e2005-04-16 15:20:36 -07004042out:
Martin KaFai Lau886b7a52019-04-30 10:45:12 -07004043 rcu_read_unlock();
David S. Millere8599ff2012-07-11 23:43:53 -07004044 neigh_release(neigh);
David S. Miller6e157b62012-07-12 00:05:02 -07004045}
4046
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08004047#ifdef CONFIG_IPV6_ROUTE_INFO
David Ahern8d1c8022018-04-17 17:33:26 -07004048static struct fib6_info *rt6_get_route_info(struct net *net,
Eric Dumazetb71d1d42011-04-22 04:53:02 +00004049 const struct in6_addr *prefix, int prefixlen,
David Ahern830218c2016-10-24 10:52:35 -07004050 const struct in6_addr *gwaddr,
4051 struct net_device *dev)
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08004052{
David Ahern830218c2016-10-24 10:52:35 -07004053 u32 tb_id = l3mdev_fib_table(dev) ? : RT6_TABLE_INFO;
4054 int ifindex = dev->ifindex;
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08004055 struct fib6_node *fn;
David Ahern8d1c8022018-04-17 17:33:26 -07004056 struct fib6_info *rt = NULL;
Thomas Grafc71099a2006-08-04 23:20:06 -07004057 struct fib6_table *table;
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08004058
David Ahern830218c2016-10-24 10:52:35 -07004059 table = fib6_get_table(net, tb_id);
David S. Miller38308472011-12-03 18:02:47 -05004060 if (!table)
Thomas Grafc71099a2006-08-04 23:20:06 -07004061 return NULL;
4062
Wei Wang66f5d6c2017-10-06 12:06:10 -07004063 rcu_read_lock();
Wei Wang38fbeee2017-10-06 12:06:02 -07004064 fn = fib6_locate(&table->tb6_root, prefix, prefixlen, NULL, 0, true);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08004065 if (!fn)
4066 goto out;
4067
Wei Wang66f5d6c2017-10-06 12:06:10 -07004068 for_each_fib6_node_rt_rcu(fn) {
David Ahernf88d8ea2019-06-03 20:19:52 -07004069 /* these routes do not use nexthops */
4070 if (rt->nh)
4071 continue;
David Ahern1cf844c2019-05-22 20:27:59 -07004072 if (rt->fib6_nh->fib_nh_dev->ifindex != ifindex)
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08004073 continue;
David Ahern2b2450c2019-03-27 20:53:52 -07004074 if (!(rt->fib6_flags & RTF_ROUTEINFO) ||
David Ahern1cf844c2019-05-22 20:27:59 -07004075 !rt->fib6_nh->fib_nh_gw_family)
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08004076 continue;
David Ahern1cf844c2019-05-22 20:27:59 -07004077 if (!ipv6_addr_equal(&rt->fib6_nh->fib_nh_gw6, gwaddr))
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08004078 continue;
Wei Wange873e4b2018-07-21 20:56:32 -07004079 if (!fib6_info_hold_safe(rt))
4080 continue;
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08004081 break;
4082 }
4083out:
Wei Wang66f5d6c2017-10-06 12:06:10 -07004084 rcu_read_unlock();
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08004085 return rt;
4086}
4087
David Ahern8d1c8022018-04-17 17:33:26 -07004088static struct fib6_info *rt6_add_route_info(struct net *net,
Eric Dumazetb71d1d42011-04-22 04:53:02 +00004089 const struct in6_addr *prefix, int prefixlen,
David Ahern830218c2016-10-24 10:52:35 -07004090 const struct in6_addr *gwaddr,
4091 struct net_device *dev,
Eric Dumazet95c96172012-04-15 05:58:06 +00004092 unsigned int pref)
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08004093{
Thomas Graf86872cb2006-08-22 00:01:08 -07004094 struct fib6_config cfg = {
Rami Rosen238fc7e2008-02-09 23:43:11 -08004095 .fc_metric = IP6_RT_PRIO_USER,
David Ahern830218c2016-10-24 10:52:35 -07004096 .fc_ifindex = dev->ifindex,
Thomas Graf86872cb2006-08-22 00:01:08 -07004097 .fc_dst_len = prefixlen,
4098 .fc_flags = RTF_GATEWAY | RTF_ADDRCONF | RTF_ROUTEINFO |
4099 RTF_UP | RTF_PREF(pref),
Xin Longb91d5322017-08-03 14:13:46 +08004100 .fc_protocol = RTPROT_RA,
David Aherne8478e82018-04-17 17:33:13 -07004101 .fc_type = RTN_UNICAST,
Eric W. Biederman15e47302012-09-07 20:12:54 +00004102 .fc_nlinfo.portid = 0,
Daniel Lezcanoefa2cea2008-03-04 13:46:48 -08004103 .fc_nlinfo.nlh = NULL,
4104 .fc_nlinfo.nl_net = net,
Thomas Graf86872cb2006-08-22 00:01:08 -07004105 };
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08004106
David Ahern830218c2016-10-24 10:52:35 -07004107 cfg.fc_table = l3mdev_fib_table(dev) ? : RT6_TABLE_INFO,
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00004108 cfg.fc_dst = *prefix;
4109 cfg.fc_gateway = *gwaddr;
Thomas Graf86872cb2006-08-22 00:01:08 -07004110
YOSHIFUJI Hideakie317da92006-03-20 17:06:42 -08004111 /* We should treat it as a default route if prefix length is 0. */
4112 if (!prefixlen)
Thomas Graf86872cb2006-08-22 00:01:08 -07004113 cfg.fc_flags |= RTF_DEFAULT;
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08004114
David Ahernacb54e32018-04-17 17:33:22 -07004115 ip6_route_add(&cfg, GFP_ATOMIC, NULL);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08004116
David Ahern830218c2016-10-24 10:52:35 -07004117 return rt6_get_route_info(net, prefix, prefixlen, gwaddr, dev);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08004118}
4119#endif
4120
David Ahern8d1c8022018-04-17 17:33:26 -07004121struct fib6_info *rt6_get_dflt_router(struct net *net,
David Ahernafb1d4b52018-04-17 17:33:11 -07004122 const struct in6_addr *addr,
4123 struct net_device *dev)
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09004124{
David Ahern830218c2016-10-24 10:52:35 -07004125 u32 tb_id = l3mdev_fib_table(dev) ? : RT6_TABLE_DFLT;
David Ahern8d1c8022018-04-17 17:33:26 -07004126 struct fib6_info *rt;
Thomas Grafc71099a2006-08-04 23:20:06 -07004127 struct fib6_table *table;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004128
David Ahernafb1d4b52018-04-17 17:33:11 -07004129 table = fib6_get_table(net, tb_id);
David S. Miller38308472011-12-03 18:02:47 -05004130 if (!table)
Thomas Grafc71099a2006-08-04 23:20:06 -07004131 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004132
Wei Wang66f5d6c2017-10-06 12:06:10 -07004133 rcu_read_lock();
4134 for_each_fib6_node_rt_rcu(&table->tb6_root) {
David Ahernf88d8ea2019-06-03 20:19:52 -07004135 struct fib6_nh *nh;
David Ahernad1601a2019-03-27 20:53:56 -07004136
David Ahernf88d8ea2019-06-03 20:19:52 -07004137 /* RA routes do not use nexthops */
4138 if (rt->nh)
4139 continue;
4140
4141 nh = rt->fib6_nh;
David Ahernad1601a2019-03-27 20:53:56 -07004142 if (dev == nh->fib_nh_dev &&
David Ahern93c2fb22018-04-18 15:38:59 -07004143 ((rt->fib6_flags & (RTF_ADDRCONF | RTF_DEFAULT)) == (RTF_ADDRCONF | RTF_DEFAULT)) &&
David Ahernad1601a2019-03-27 20:53:56 -07004144 ipv6_addr_equal(&nh->fib_nh_gw6, addr))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004145 break;
4146 }
Wei Wange873e4b2018-07-21 20:56:32 -07004147 if (rt && !fib6_info_hold_safe(rt))
4148 rt = NULL;
Wei Wang66f5d6c2017-10-06 12:06:10 -07004149 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004150 return rt;
4151}
4152
David Ahern8d1c8022018-04-17 17:33:26 -07004153struct fib6_info *rt6_add_dflt_router(struct net *net,
David Ahernafb1d4b52018-04-17 17:33:11 -07004154 const struct in6_addr *gwaddr,
YOSHIFUJI Hideakiebacaaa2006-03-20 17:04:53 -08004155 struct net_device *dev,
4156 unsigned int pref)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004157{
Thomas Graf86872cb2006-08-22 00:01:08 -07004158 struct fib6_config cfg = {
David Ahernca254492015-10-12 11:47:10 -07004159 .fc_table = l3mdev_fib_table(dev) ? : RT6_TABLE_DFLT,
Rami Rosen238fc7e2008-02-09 23:43:11 -08004160 .fc_metric = IP6_RT_PRIO_USER,
Thomas Graf86872cb2006-08-22 00:01:08 -07004161 .fc_ifindex = dev->ifindex,
4162 .fc_flags = RTF_GATEWAY | RTF_ADDRCONF | RTF_DEFAULT |
4163 RTF_UP | RTF_EXPIRES | RTF_PREF(pref),
Xin Longb91d5322017-08-03 14:13:46 +08004164 .fc_protocol = RTPROT_RA,
David Aherne8478e82018-04-17 17:33:13 -07004165 .fc_type = RTN_UNICAST,
Eric W. Biederman15e47302012-09-07 20:12:54 +00004166 .fc_nlinfo.portid = 0,
Daniel Lezcano55786892008-03-04 13:47:47 -08004167 .fc_nlinfo.nlh = NULL,
David Ahernafb1d4b52018-04-17 17:33:11 -07004168 .fc_nlinfo.nl_net = net,
Thomas Graf86872cb2006-08-22 00:01:08 -07004169 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07004170
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00004171 cfg.fc_gateway = *gwaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004172
David Ahernacb54e32018-04-17 17:33:22 -07004173 if (!ip6_route_add(&cfg, GFP_ATOMIC, NULL)) {
David Ahern830218c2016-10-24 10:52:35 -07004174 struct fib6_table *table;
4175
4176 table = fib6_get_table(dev_net(dev), cfg.fc_table);
4177 if (table)
4178 table->flags |= RT6_TABLE_HAS_DFLT_ROUTER;
4179 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004180
David Ahernafb1d4b52018-04-17 17:33:11 -07004181 return rt6_get_dflt_router(net, gwaddr, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004182}
4183
David Ahernafb1d4b52018-04-17 17:33:11 -07004184static void __rt6_purge_dflt_routers(struct net *net,
4185 struct fib6_table *table)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004186{
David Ahern8d1c8022018-04-17 17:33:26 -07004187 struct fib6_info *rt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004188
4189restart:
Wei Wang66f5d6c2017-10-06 12:06:10 -07004190 rcu_read_lock();
4191 for_each_fib6_node_rt_rcu(&table->tb6_root) {
David Aherndcd1f572018-04-18 15:39:05 -07004192 struct net_device *dev = fib6_info_nh_dev(rt);
4193 struct inet6_dev *idev = dev ? __in6_dev_get(dev) : NULL;
4194
David Ahern93c2fb22018-04-18 15:38:59 -07004195 if (rt->fib6_flags & (RTF_DEFAULT | RTF_ADDRCONF) &&
Wei Wange873e4b2018-07-21 20:56:32 -07004196 (!idev || idev->cnf.accept_ra != 2) &&
4197 fib6_info_hold_safe(rt)) {
David Ahern93531c62018-04-17 17:33:25 -07004198 rcu_read_unlock();
4199 ip6_del_rt(net, rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004200 goto restart;
4201 }
4202 }
Wei Wang66f5d6c2017-10-06 12:06:10 -07004203 rcu_read_unlock();
David Ahern830218c2016-10-24 10:52:35 -07004204
4205 table->flags &= ~RT6_TABLE_HAS_DFLT_ROUTER;
4206}
4207
4208void rt6_purge_dflt_routers(struct net *net)
4209{
4210 struct fib6_table *table;
4211 struct hlist_head *head;
4212 unsigned int h;
4213
4214 rcu_read_lock();
4215
4216 for (h = 0; h < FIB6_TABLE_HASHSZ; h++) {
4217 head = &net->ipv6.fib_table_hash[h];
4218 hlist_for_each_entry_rcu(table, head, tb6_hlist) {
4219 if (table->flags & RT6_TABLE_HAS_DFLT_ROUTER)
David Ahernafb1d4b52018-04-17 17:33:11 -07004220 __rt6_purge_dflt_routers(net, table);
David Ahern830218c2016-10-24 10:52:35 -07004221 }
4222 }
4223
4224 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004225}
4226
Daniel Lezcano55786892008-03-04 13:47:47 -08004227static void rtmsg_to_fib6_config(struct net *net,
4228 struct in6_rtmsg *rtmsg,
Thomas Graf86872cb2006-08-22 00:01:08 -07004229 struct fib6_config *cfg)
4230{
Maciej Żenczykowski8823a3a2018-09-29 23:44:52 -07004231 *cfg = (struct fib6_config){
4232 .fc_table = l3mdev_fib_table_by_index(net, rtmsg->rtmsg_ifindex) ?
4233 : RT6_TABLE_MAIN,
4234 .fc_ifindex = rtmsg->rtmsg_ifindex,
David Ahern67f69512019-03-21 05:21:34 -07004235 .fc_metric = rtmsg->rtmsg_metric ? : IP6_RT_PRIO_USER,
Maciej Żenczykowski8823a3a2018-09-29 23:44:52 -07004236 .fc_expires = rtmsg->rtmsg_info,
4237 .fc_dst_len = rtmsg->rtmsg_dst_len,
4238 .fc_src_len = rtmsg->rtmsg_src_len,
4239 .fc_flags = rtmsg->rtmsg_flags,
4240 .fc_type = rtmsg->rtmsg_type,
Thomas Graf86872cb2006-08-22 00:01:08 -07004241
Maciej Żenczykowski8823a3a2018-09-29 23:44:52 -07004242 .fc_nlinfo.nl_net = net,
Thomas Graf86872cb2006-08-22 00:01:08 -07004243
Maciej Żenczykowski8823a3a2018-09-29 23:44:52 -07004244 .fc_dst = rtmsg->rtmsg_dst,
4245 .fc_src = rtmsg->rtmsg_src,
4246 .fc_gateway = rtmsg->rtmsg_gateway,
4247 };
Thomas Graf86872cb2006-08-22 00:01:08 -07004248}
4249
Daniel Lezcano55786892008-03-04 13:47:47 -08004250int ipv6_route_ioctl(struct net *net, unsigned int cmd, void __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004251{
Thomas Graf86872cb2006-08-22 00:01:08 -07004252 struct fib6_config cfg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004253 struct in6_rtmsg rtmsg;
4254 int err;
4255
Ian Morris67ba4152014-08-24 21:53:10 +01004256 switch (cmd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004257 case SIOCADDRT: /* Add a route */
4258 case SIOCDELRT: /* Delete a route */
Eric W. Biedermanaf31f412012-11-16 03:03:06 +00004259 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004260 return -EPERM;
4261 err = copy_from_user(&rtmsg, arg,
4262 sizeof(struct in6_rtmsg));
4263 if (err)
4264 return -EFAULT;
Thomas Graf86872cb2006-08-22 00:01:08 -07004265
Daniel Lezcano55786892008-03-04 13:47:47 -08004266 rtmsg_to_fib6_config(net, &rtmsg, &cfg);
Thomas Graf86872cb2006-08-22 00:01:08 -07004267
Linus Torvalds1da177e2005-04-16 15:20:36 -07004268 rtnl_lock();
4269 switch (cmd) {
4270 case SIOCADDRT:
David Ahernacb54e32018-04-17 17:33:22 -07004271 err = ip6_route_add(&cfg, GFP_KERNEL, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004272 break;
4273 case SIOCDELRT:
David Ahern333c4302017-05-21 10:12:04 -06004274 err = ip6_route_del(&cfg, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004275 break;
4276 default:
4277 err = -EINVAL;
4278 }
4279 rtnl_unlock();
4280
4281 return err;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07004282 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004283
4284 return -EINVAL;
4285}
4286
4287/*
4288 * Drop the packet on the floor
4289 */
4290
Brian Haleyd5fdd6b2009-06-23 04:31:07 -07004291static int ip6_pkt_drop(struct sk_buff *skb, u8 code, int ipstats_mib_noroutes)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004292{
Eric Dumazetadf30902009-06-02 05:19:30 +00004293 struct dst_entry *dst = skb_dst(skb);
Stephen Suryaputra1d3fd8a2019-04-27 09:14:33 -04004294 struct net *net = dev_net(dst->dev);
4295 struct inet6_dev *idev;
4296 int type;
4297
4298 if (netif_is_l3_master(skb->dev) &&
4299 dst->dev == net->loopback_dev)
4300 idev = __in6_dev_get_safely(dev_get_by_index_rcu(net, IP6CB(skb)->iif));
4301 else
4302 idev = ip6_dst_idev(dst);
4303
YOSHIFUJI Hideaki612f09e2007-04-13 16:18:02 -07004304 switch (ipstats_mib_noroutes) {
4305 case IPSTATS_MIB_INNOROUTES:
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -07004306 type = ipv6_addr_type(&ipv6_hdr(skb)->daddr);
Ulrich Weber45bb0062010-02-25 23:28:58 +00004307 if (type == IPV6_ADDR_ANY) {
Stephen Suryaputra1d3fd8a2019-04-27 09:14:33 -04004308 IP6_INC_STATS(net, idev, IPSTATS_MIB_INADDRERRORS);
YOSHIFUJI Hideaki612f09e2007-04-13 16:18:02 -07004309 break;
4310 }
4311 /* FALLTHROUGH */
4312 case IPSTATS_MIB_OUTNOROUTES:
Stephen Suryaputra1d3fd8a2019-04-27 09:14:33 -04004313 IP6_INC_STATS(net, idev, ipstats_mib_noroutes);
YOSHIFUJI Hideaki612f09e2007-04-13 16:18:02 -07004314 break;
4315 }
Stephen Suryaputra1d3fd8a2019-04-27 09:14:33 -04004316
4317 /* Start over by dropping the dst for l3mdev case */
4318 if (netif_is_l3_master(skb->dev))
4319 skb_dst_drop(skb);
4320
Alexey Dobriyan3ffe5332010-02-18 08:25:24 +00004321 icmpv6_send(skb, ICMPV6_DEST_UNREACH, code, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004322 kfree_skb(skb);
4323 return 0;
4324}
4325
Thomas Graf9ce8ade2006-10-18 20:46:54 -07004326static int ip6_pkt_discard(struct sk_buff *skb)
4327{
YOSHIFUJI Hideaki612f09e2007-04-13 16:18:02 -07004328 return ip6_pkt_drop(skb, ICMPV6_NOROUTE, IPSTATS_MIB_INNOROUTES);
Thomas Graf9ce8ade2006-10-18 20:46:54 -07004329}
4330
Eric W. Biedermanede20592015-10-07 16:48:47 -05004331static int ip6_pkt_discard_out(struct net *net, struct sock *sk, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004332{
Eric Dumazetadf30902009-06-02 05:19:30 +00004333 skb->dev = skb_dst(skb)->dev;
YOSHIFUJI Hideaki612f09e2007-04-13 16:18:02 -07004334 return ip6_pkt_drop(skb, ICMPV6_NOROUTE, IPSTATS_MIB_OUTNOROUTES);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004335}
4336
Thomas Graf9ce8ade2006-10-18 20:46:54 -07004337static int ip6_pkt_prohibit(struct sk_buff *skb)
4338{
YOSHIFUJI Hideaki612f09e2007-04-13 16:18:02 -07004339 return ip6_pkt_drop(skb, ICMPV6_ADM_PROHIBITED, IPSTATS_MIB_INNOROUTES);
Thomas Graf9ce8ade2006-10-18 20:46:54 -07004340}
4341
Eric W. Biedermanede20592015-10-07 16:48:47 -05004342static int ip6_pkt_prohibit_out(struct net *net, struct sock *sk, struct sk_buff *skb)
Thomas Graf9ce8ade2006-10-18 20:46:54 -07004343{
Eric Dumazetadf30902009-06-02 05:19:30 +00004344 skb->dev = skb_dst(skb)->dev;
YOSHIFUJI Hideaki612f09e2007-04-13 16:18:02 -07004345 return ip6_pkt_drop(skb, ICMPV6_ADM_PROHIBITED, IPSTATS_MIB_OUTNOROUTES);
Thomas Graf9ce8ade2006-10-18 20:46:54 -07004346}
4347
Linus Torvalds1da177e2005-04-16 15:20:36 -07004348/*
4349 * Allocate a dst for local (unicast / anycast) address.
4350 */
4351
David Ahern360a9882018-04-18 15:39:00 -07004352struct fib6_info *addrconf_f6i_alloc(struct net *net,
4353 struct inet6_dev *idev,
4354 const struct in6_addr *addr,
4355 bool anycast, gfp_t gfp_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004356{
David Ahernc7a1ce32019-03-21 05:21:35 -07004357 struct fib6_config cfg = {
4358 .fc_table = l3mdev_fib_table(idev->dev) ? : RT6_TABLE_LOCAL,
4359 .fc_ifindex = idev->dev->ifindex,
4360 .fc_flags = RTF_UP | RTF_ADDRCONF | RTF_NONEXTHOP,
4361 .fc_dst = *addr,
4362 .fc_dst_len = 128,
4363 .fc_protocol = RTPROT_KERNEL,
4364 .fc_nlinfo.nl_net = net,
4365 .fc_ignore_dev_down = true,
4366 };
David Ahern5f02ce242016-09-10 12:09:54 -07004367
David Aherne8478e82018-04-17 17:33:13 -07004368 if (anycast) {
David Ahernc7a1ce32019-03-21 05:21:35 -07004369 cfg.fc_type = RTN_ANYCAST;
4370 cfg.fc_flags |= RTF_ANYCAST;
David Aherne8478e82018-04-17 17:33:13 -07004371 } else {
David Ahernc7a1ce32019-03-21 05:21:35 -07004372 cfg.fc_type = RTN_LOCAL;
4373 cfg.fc_flags |= RTF_LOCAL;
David Aherne8478e82018-04-17 17:33:13 -07004374 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004375
David Ahernc7a1ce32019-03-21 05:21:35 -07004376 return ip6_route_info_create(&cfg, gfp_flags, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004377}
4378
Daniel Walterc3968a82011-04-13 21:10:57 +00004379/* remove deleted ip from prefsrc entries */
4380struct arg_dev_net_ip {
4381 struct net_device *dev;
4382 struct net *net;
4383 struct in6_addr *addr;
4384};
4385
David Ahern8d1c8022018-04-17 17:33:26 -07004386static int fib6_remove_prefsrc(struct fib6_info *rt, void *arg)
Daniel Walterc3968a82011-04-13 21:10:57 +00004387{
4388 struct net_device *dev = ((struct arg_dev_net_ip *)arg)->dev;
4389 struct net *net = ((struct arg_dev_net_ip *)arg)->net;
4390 struct in6_addr *addr = ((struct arg_dev_net_ip *)arg)->addr;
4391
David Ahernf88d8ea2019-06-03 20:19:52 -07004392 if (!rt->nh &&
4393 ((void *)rt->fib6_nh->fib_nh_dev == dev || !dev) &&
David Ahern421842e2018-04-17 17:33:18 -07004394 rt != net->ipv6.fib6_null_entry &&
David Ahern93c2fb22018-04-18 15:38:59 -07004395 ipv6_addr_equal(addr, &rt->fib6_prefsrc.addr)) {
Wei Wang60006a42017-10-06 12:05:58 -07004396 spin_lock_bh(&rt6_exception_lock);
Daniel Walterc3968a82011-04-13 21:10:57 +00004397 /* remove prefsrc entry */
David Ahern93c2fb22018-04-18 15:38:59 -07004398 rt->fib6_prefsrc.plen = 0;
Wei Wang60006a42017-10-06 12:05:58 -07004399 spin_unlock_bh(&rt6_exception_lock);
Daniel Walterc3968a82011-04-13 21:10:57 +00004400 }
4401 return 0;
4402}
4403
4404void rt6_remove_prefsrc(struct inet6_ifaddr *ifp)
4405{
4406 struct net *net = dev_net(ifp->idev->dev);
4407 struct arg_dev_net_ip adni = {
4408 .dev = ifp->idev->dev,
4409 .net = net,
4410 .addr = &ifp->addr,
4411 };
Li RongQing0c3584d2013-12-27 16:32:38 +08004412 fib6_clean_all(net, fib6_remove_prefsrc, &adni);
Daniel Walterc3968a82011-04-13 21:10:57 +00004413}
4414
David Ahern2b2450c2019-03-27 20:53:52 -07004415#define RTF_RA_ROUTER (RTF_ADDRCONF | RTF_DEFAULT)
Duan Jiongbe7a0102014-05-15 15:56:14 +08004416
4417/* Remove routers and update dst entries when gateway turn into host. */
David Ahern8d1c8022018-04-17 17:33:26 -07004418static int fib6_clean_tohost(struct fib6_info *rt, void *arg)
Duan Jiongbe7a0102014-05-15 15:56:14 +08004419{
4420 struct in6_addr *gateway = (struct in6_addr *)arg;
David Ahernf88d8ea2019-06-03 20:19:52 -07004421 struct fib6_nh *nh;
Duan Jiongbe7a0102014-05-15 15:56:14 +08004422
David Ahernf88d8ea2019-06-03 20:19:52 -07004423 /* RA routes do not use nexthops */
4424 if (rt->nh)
4425 return 0;
4426
4427 nh = rt->fib6_nh;
David Ahern93c2fb22018-04-18 15:38:59 -07004428 if (((rt->fib6_flags & RTF_RA_ROUTER) == RTF_RA_ROUTER) &&
David Aherncc5c0732019-05-22 20:27:58 -07004429 nh->fib_nh_gw_family && ipv6_addr_equal(gateway, &nh->fib_nh_gw6))
Duan Jiongbe7a0102014-05-15 15:56:14 +08004430 return -1;
Wei Wangb16cb452017-10-06 12:06:00 -07004431
4432 /* Further clean up cached routes in exception table.
4433 * This is needed because cached route may have a different
4434 * gateway than its 'parent' in the case of an ip redirect.
4435 */
David Aherncc5c0732019-05-22 20:27:58 -07004436 fib6_nh_exceptions_clean_tohost(nh, gateway);
Wei Wangb16cb452017-10-06 12:06:00 -07004437
Duan Jiongbe7a0102014-05-15 15:56:14 +08004438 return 0;
4439}
4440
4441void rt6_clean_tohost(struct net *net, struct in6_addr *gateway)
4442{
4443 fib6_clean_all(net, fib6_clean_tohost, gateway);
4444}
4445
Ido Schimmel2127d952018-01-07 12:45:03 +02004446struct arg_netdev_event {
4447 const struct net_device *dev;
Ido Schimmel4c981e22018-01-07 12:45:04 +02004448 union {
David Ahernecc56632019-04-23 08:48:09 -07004449 unsigned char nh_flags;
Ido Schimmel4c981e22018-01-07 12:45:04 +02004450 unsigned long event;
4451 };
Ido Schimmel2127d952018-01-07 12:45:03 +02004452};
4453
David Ahern8d1c8022018-04-17 17:33:26 -07004454static struct fib6_info *rt6_multipath_first_sibling(const struct fib6_info *rt)
Ido Schimmeld7dedee2018-01-09 16:40:25 +02004455{
David Ahern8d1c8022018-04-17 17:33:26 -07004456 struct fib6_info *iter;
Ido Schimmeld7dedee2018-01-09 16:40:25 +02004457 struct fib6_node *fn;
4458
David Ahern93c2fb22018-04-18 15:38:59 -07004459 fn = rcu_dereference_protected(rt->fib6_node,
4460 lockdep_is_held(&rt->fib6_table->tb6_lock));
Ido Schimmeld7dedee2018-01-09 16:40:25 +02004461 iter = rcu_dereference_protected(fn->leaf,
David Ahern93c2fb22018-04-18 15:38:59 -07004462 lockdep_is_held(&rt->fib6_table->tb6_lock));
Ido Schimmeld7dedee2018-01-09 16:40:25 +02004463 while (iter) {
David Ahern93c2fb22018-04-18 15:38:59 -07004464 if (iter->fib6_metric == rt->fib6_metric &&
David Ahern33bd5ac2018-07-03 14:36:21 -07004465 rt6_qualify_for_ecmp(iter))
Ido Schimmeld7dedee2018-01-09 16:40:25 +02004466 return iter;
David Ahern8fb11a92018-05-04 13:54:24 -07004467 iter = rcu_dereference_protected(iter->fib6_next,
David Ahern93c2fb22018-04-18 15:38:59 -07004468 lockdep_is_held(&rt->fib6_table->tb6_lock));
Ido Schimmeld7dedee2018-01-09 16:40:25 +02004469 }
4470
4471 return NULL;
4472}
4473
David Ahernf88d8ea2019-06-03 20:19:52 -07004474/* only called for fib entries with builtin fib6_nh */
David Ahern8d1c8022018-04-17 17:33:26 -07004475static bool rt6_is_dead(const struct fib6_info *rt)
Ido Schimmeld7dedee2018-01-09 16:40:25 +02004476{
David Ahern1cf844c2019-05-22 20:27:59 -07004477 if (rt->fib6_nh->fib_nh_flags & RTNH_F_DEAD ||
4478 (rt->fib6_nh->fib_nh_flags & RTNH_F_LINKDOWN &&
4479 ip6_ignore_linkdown(rt->fib6_nh->fib_nh_dev)))
Ido Schimmeld7dedee2018-01-09 16:40:25 +02004480 return true;
4481
4482 return false;
4483}
4484
David Ahern8d1c8022018-04-17 17:33:26 -07004485static int rt6_multipath_total_weight(const struct fib6_info *rt)
Ido Schimmeld7dedee2018-01-09 16:40:25 +02004486{
David Ahern8d1c8022018-04-17 17:33:26 -07004487 struct fib6_info *iter;
Ido Schimmeld7dedee2018-01-09 16:40:25 +02004488 int total = 0;
4489
4490 if (!rt6_is_dead(rt))
David Ahern1cf844c2019-05-22 20:27:59 -07004491 total += rt->fib6_nh->fib_nh_weight;
Ido Schimmeld7dedee2018-01-09 16:40:25 +02004492
David Ahern93c2fb22018-04-18 15:38:59 -07004493 list_for_each_entry(iter, &rt->fib6_siblings, fib6_siblings) {
Ido Schimmeld7dedee2018-01-09 16:40:25 +02004494 if (!rt6_is_dead(iter))
David Ahern1cf844c2019-05-22 20:27:59 -07004495 total += iter->fib6_nh->fib_nh_weight;
Ido Schimmeld7dedee2018-01-09 16:40:25 +02004496 }
4497
4498 return total;
4499}
4500
David Ahern8d1c8022018-04-17 17:33:26 -07004501static void rt6_upper_bound_set(struct fib6_info *rt, int *weight, int total)
Ido Schimmeld7dedee2018-01-09 16:40:25 +02004502{
4503 int upper_bound = -1;
4504
4505 if (!rt6_is_dead(rt)) {
David Ahern1cf844c2019-05-22 20:27:59 -07004506 *weight += rt->fib6_nh->fib_nh_weight;
Ido Schimmeld7dedee2018-01-09 16:40:25 +02004507 upper_bound = DIV_ROUND_CLOSEST_ULL((u64) (*weight) << 31,
4508 total) - 1;
4509 }
David Ahern1cf844c2019-05-22 20:27:59 -07004510 atomic_set(&rt->fib6_nh->fib_nh_upper_bound, upper_bound);
Ido Schimmeld7dedee2018-01-09 16:40:25 +02004511}
4512
David Ahern8d1c8022018-04-17 17:33:26 -07004513static void rt6_multipath_upper_bound_set(struct fib6_info *rt, int total)
Ido Schimmeld7dedee2018-01-09 16:40:25 +02004514{
David Ahern8d1c8022018-04-17 17:33:26 -07004515 struct fib6_info *iter;
Ido Schimmeld7dedee2018-01-09 16:40:25 +02004516 int weight = 0;
4517
4518 rt6_upper_bound_set(rt, &weight, total);
4519
David Ahern93c2fb22018-04-18 15:38:59 -07004520 list_for_each_entry(iter, &rt->fib6_siblings, fib6_siblings)
Ido Schimmeld7dedee2018-01-09 16:40:25 +02004521 rt6_upper_bound_set(iter, &weight, total);
4522}
4523
David Ahern8d1c8022018-04-17 17:33:26 -07004524void rt6_multipath_rebalance(struct fib6_info *rt)
Ido Schimmeld7dedee2018-01-09 16:40:25 +02004525{
David Ahern8d1c8022018-04-17 17:33:26 -07004526 struct fib6_info *first;
Ido Schimmeld7dedee2018-01-09 16:40:25 +02004527 int total;
4528
4529 /* In case the entire multipath route was marked for flushing,
4530 * then there is no need to rebalance upon the removal of every
4531 * sibling route.
4532 */
David Ahern93c2fb22018-04-18 15:38:59 -07004533 if (!rt->fib6_nsiblings || rt->should_flush)
Ido Schimmeld7dedee2018-01-09 16:40:25 +02004534 return;
4535
4536 /* During lookup routes are evaluated in order, so we need to
4537 * make sure upper bounds are assigned from the first sibling
4538 * onwards.
4539 */
4540 first = rt6_multipath_first_sibling(rt);
4541 if (WARN_ON_ONCE(!first))
4542 return;
4543
4544 total = rt6_multipath_total_weight(first);
4545 rt6_multipath_upper_bound_set(first, total);
4546}
4547
David Ahern8d1c8022018-04-17 17:33:26 -07004548static int fib6_ifup(struct fib6_info *rt, void *p_arg)
Ido Schimmel2127d952018-01-07 12:45:03 +02004549{
4550 const struct arg_netdev_event *arg = p_arg;
David Ahern7aef6852018-04-17 17:33:10 -07004551 struct net *net = dev_net(arg->dev);
Ido Schimmel2127d952018-01-07 12:45:03 +02004552
David Ahernf88d8ea2019-06-03 20:19:52 -07004553 if (rt != net->ipv6.fib6_null_entry && !rt->nh &&
David Ahern1cf844c2019-05-22 20:27:59 -07004554 rt->fib6_nh->fib_nh_dev == arg->dev) {
4555 rt->fib6_nh->fib_nh_flags &= ~arg->nh_flags;
David Ahern7aef6852018-04-17 17:33:10 -07004556 fib6_update_sernum_upto_root(net, rt);
Ido Schimmeld7dedee2018-01-09 16:40:25 +02004557 rt6_multipath_rebalance(rt);
Ido Schimmel1de178e2018-01-07 12:45:15 +02004558 }
Ido Schimmel2127d952018-01-07 12:45:03 +02004559
4560 return 0;
4561}
4562
David Ahernecc56632019-04-23 08:48:09 -07004563void rt6_sync_up(struct net_device *dev, unsigned char nh_flags)
Ido Schimmel2127d952018-01-07 12:45:03 +02004564{
4565 struct arg_netdev_event arg = {
4566 .dev = dev,
Ido Schimmel6802f3a2018-01-12 22:07:36 +02004567 {
4568 .nh_flags = nh_flags,
4569 },
Ido Schimmel2127d952018-01-07 12:45:03 +02004570 };
4571
4572 if (nh_flags & RTNH_F_DEAD && netif_carrier_ok(dev))
4573 arg.nh_flags |= RTNH_F_LINKDOWN;
4574
4575 fib6_clean_all(dev_net(dev), fib6_ifup, &arg);
4576}
4577
David Ahernf88d8ea2019-06-03 20:19:52 -07004578/* only called for fib entries with inline fib6_nh */
David Ahern8d1c8022018-04-17 17:33:26 -07004579static bool rt6_multipath_uses_dev(const struct fib6_info *rt,
Ido Schimmel1de178e2018-01-07 12:45:15 +02004580 const struct net_device *dev)
4581{
David Ahern8d1c8022018-04-17 17:33:26 -07004582 struct fib6_info *iter;
Ido Schimmel1de178e2018-01-07 12:45:15 +02004583
David Ahern1cf844c2019-05-22 20:27:59 -07004584 if (rt->fib6_nh->fib_nh_dev == dev)
Ido Schimmel1de178e2018-01-07 12:45:15 +02004585 return true;
David Ahern93c2fb22018-04-18 15:38:59 -07004586 list_for_each_entry(iter, &rt->fib6_siblings, fib6_siblings)
David Ahern1cf844c2019-05-22 20:27:59 -07004587 if (iter->fib6_nh->fib_nh_dev == dev)
Ido Schimmel1de178e2018-01-07 12:45:15 +02004588 return true;
4589
4590 return false;
4591}
4592
David Ahern8d1c8022018-04-17 17:33:26 -07004593static void rt6_multipath_flush(struct fib6_info *rt)
Ido Schimmel1de178e2018-01-07 12:45:15 +02004594{
David Ahern8d1c8022018-04-17 17:33:26 -07004595 struct fib6_info *iter;
Ido Schimmel1de178e2018-01-07 12:45:15 +02004596
4597 rt->should_flush = 1;
David Ahern93c2fb22018-04-18 15:38:59 -07004598 list_for_each_entry(iter, &rt->fib6_siblings, fib6_siblings)
Ido Schimmel1de178e2018-01-07 12:45:15 +02004599 iter->should_flush = 1;
4600}
4601
David Ahern8d1c8022018-04-17 17:33:26 -07004602static unsigned int rt6_multipath_dead_count(const struct fib6_info *rt,
Ido Schimmel1de178e2018-01-07 12:45:15 +02004603 const struct net_device *down_dev)
4604{
David Ahern8d1c8022018-04-17 17:33:26 -07004605 struct fib6_info *iter;
Ido Schimmel1de178e2018-01-07 12:45:15 +02004606 unsigned int dead = 0;
4607
David Ahern1cf844c2019-05-22 20:27:59 -07004608 if (rt->fib6_nh->fib_nh_dev == down_dev ||
4609 rt->fib6_nh->fib_nh_flags & RTNH_F_DEAD)
Ido Schimmel1de178e2018-01-07 12:45:15 +02004610 dead++;
David Ahern93c2fb22018-04-18 15:38:59 -07004611 list_for_each_entry(iter, &rt->fib6_siblings, fib6_siblings)
David Ahern1cf844c2019-05-22 20:27:59 -07004612 if (iter->fib6_nh->fib_nh_dev == down_dev ||
4613 iter->fib6_nh->fib_nh_flags & RTNH_F_DEAD)
Ido Schimmel1de178e2018-01-07 12:45:15 +02004614 dead++;
4615
4616 return dead;
4617}
4618
David Ahern8d1c8022018-04-17 17:33:26 -07004619static void rt6_multipath_nh_flags_set(struct fib6_info *rt,
Ido Schimmel1de178e2018-01-07 12:45:15 +02004620 const struct net_device *dev,
David Ahernecc56632019-04-23 08:48:09 -07004621 unsigned char nh_flags)
Ido Schimmel1de178e2018-01-07 12:45:15 +02004622{
David Ahern8d1c8022018-04-17 17:33:26 -07004623 struct fib6_info *iter;
Ido Schimmel1de178e2018-01-07 12:45:15 +02004624
David Ahern1cf844c2019-05-22 20:27:59 -07004625 if (rt->fib6_nh->fib_nh_dev == dev)
4626 rt->fib6_nh->fib_nh_flags |= nh_flags;
David Ahern93c2fb22018-04-18 15:38:59 -07004627 list_for_each_entry(iter, &rt->fib6_siblings, fib6_siblings)
David Ahern1cf844c2019-05-22 20:27:59 -07004628 if (iter->fib6_nh->fib_nh_dev == dev)
4629 iter->fib6_nh->fib_nh_flags |= nh_flags;
Ido Schimmel1de178e2018-01-07 12:45:15 +02004630}
4631
David Aherna1a22c12017-01-18 07:40:36 -08004632/* called with write lock held for table with rt */
David Ahern8d1c8022018-04-17 17:33:26 -07004633static int fib6_ifdown(struct fib6_info *rt, void *p_arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004634{
Ido Schimmel4c981e22018-01-07 12:45:04 +02004635 const struct arg_netdev_event *arg = p_arg;
4636 const struct net_device *dev = arg->dev;
David Ahern7aef6852018-04-17 17:33:10 -07004637 struct net *net = dev_net(dev);
Daniel Lezcano8ed67782008-03-04 13:48:30 -08004638
David Ahernf88d8ea2019-06-03 20:19:52 -07004639 if (rt == net->ipv6.fib6_null_entry || rt->nh)
Ido Schimmel27c6fa72018-01-07 12:45:05 +02004640 return 0;
4641
4642 switch (arg->event) {
4643 case NETDEV_UNREGISTER:
David Ahern1cf844c2019-05-22 20:27:59 -07004644 return rt->fib6_nh->fib_nh_dev == dev ? -1 : 0;
Ido Schimmel27c6fa72018-01-07 12:45:05 +02004645 case NETDEV_DOWN:
Ido Schimmel1de178e2018-01-07 12:45:15 +02004646 if (rt->should_flush)
Ido Schimmel27c6fa72018-01-07 12:45:05 +02004647 return -1;
David Ahern93c2fb22018-04-18 15:38:59 -07004648 if (!rt->fib6_nsiblings)
David Ahern1cf844c2019-05-22 20:27:59 -07004649 return rt->fib6_nh->fib_nh_dev == dev ? -1 : 0;
Ido Schimmel1de178e2018-01-07 12:45:15 +02004650 if (rt6_multipath_uses_dev(rt, dev)) {
4651 unsigned int count;
4652
4653 count = rt6_multipath_dead_count(rt, dev);
David Ahern93c2fb22018-04-18 15:38:59 -07004654 if (rt->fib6_nsiblings + 1 == count) {
Ido Schimmel1de178e2018-01-07 12:45:15 +02004655 rt6_multipath_flush(rt);
4656 return -1;
4657 }
4658 rt6_multipath_nh_flags_set(rt, dev, RTNH_F_DEAD |
4659 RTNH_F_LINKDOWN);
David Ahern7aef6852018-04-17 17:33:10 -07004660 fib6_update_sernum(net, rt);
Ido Schimmeld7dedee2018-01-09 16:40:25 +02004661 rt6_multipath_rebalance(rt);
Ido Schimmel1de178e2018-01-07 12:45:15 +02004662 }
4663 return -2;
Ido Schimmel27c6fa72018-01-07 12:45:05 +02004664 case NETDEV_CHANGE:
David Ahern1cf844c2019-05-22 20:27:59 -07004665 if (rt->fib6_nh->fib_nh_dev != dev ||
David Ahern93c2fb22018-04-18 15:38:59 -07004666 rt->fib6_flags & (RTF_LOCAL | RTF_ANYCAST))
Ido Schimmel27c6fa72018-01-07 12:45:05 +02004667 break;
David Ahern1cf844c2019-05-22 20:27:59 -07004668 rt->fib6_nh->fib_nh_flags |= RTNH_F_LINKDOWN;
Ido Schimmeld7dedee2018-01-09 16:40:25 +02004669 rt6_multipath_rebalance(rt);
Ido Schimmel27c6fa72018-01-07 12:45:05 +02004670 break;
Ido Schimmel2b241362018-01-07 12:45:02 +02004671 }
David S. Millerc159d302011-12-26 15:24:36 -05004672
Linus Torvalds1da177e2005-04-16 15:20:36 -07004673 return 0;
4674}
4675
Ido Schimmel27c6fa72018-01-07 12:45:05 +02004676void rt6_sync_down_dev(struct net_device *dev, unsigned long event)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004677{
Ido Schimmel4c981e22018-01-07 12:45:04 +02004678 struct arg_netdev_event arg = {
Daniel Lezcano8ed67782008-03-04 13:48:30 -08004679 .dev = dev,
Ido Schimmel6802f3a2018-01-12 22:07:36 +02004680 {
4681 .event = event,
4682 },
Daniel Lezcano8ed67782008-03-04 13:48:30 -08004683 };
David Ahern7c6bb7d2018-10-11 20:17:21 -07004684 struct net *net = dev_net(dev);
Daniel Lezcano8ed67782008-03-04 13:48:30 -08004685
David Ahern7c6bb7d2018-10-11 20:17:21 -07004686 if (net->ipv6.sysctl.skip_notify_on_dev_down)
4687 fib6_clean_all_skip_notify(net, fib6_ifdown, &arg);
4688 else
4689 fib6_clean_all(net, fib6_ifdown, &arg);
Ido Schimmel4c981e22018-01-07 12:45:04 +02004690}
4691
4692void rt6_disable_ip(struct net_device *dev, unsigned long event)
4693{
4694 rt6_sync_down_dev(dev, event);
4695 rt6_uncached_list_flush_dev(dev_net(dev), dev);
4696 neigh_ifdown(&nd_tbl, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004697}
4698
Eric Dumazet95c96172012-04-15 05:58:06 +00004699struct rt6_mtu_change_arg {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004700 struct net_device *dev;
Eric Dumazet95c96172012-04-15 05:58:06 +00004701 unsigned int mtu;
David Ahernc0b220c2019-05-22 20:27:57 -07004702 struct fib6_info *f6i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004703};
4704
David Aherncc5c0732019-05-22 20:27:58 -07004705static int fib6_nh_mtu_change(struct fib6_nh *nh, void *_arg)
David Ahernc0b220c2019-05-22 20:27:57 -07004706{
4707 struct rt6_mtu_change_arg *arg = (struct rt6_mtu_change_arg *)_arg;
David Aherncc5c0732019-05-22 20:27:58 -07004708 struct fib6_info *f6i = arg->f6i;
David Ahernc0b220c2019-05-22 20:27:57 -07004709
4710 /* For administrative MTU increase, there is no way to discover
4711 * IPv6 PMTU increase, so PMTU increase should be updated here.
4712 * Since RFC 1981 doesn't include administrative MTU increase
4713 * update PMTU increase is a MUST. (i.e. jumbo frame)
4714 */
4715 if (nh->fib_nh_dev == arg->dev) {
4716 struct inet6_dev *idev = __in6_dev_get(arg->dev);
4717 u32 mtu = f6i->fib6_pmtu;
4718
4719 if (mtu >= arg->mtu ||
4720 (mtu < arg->mtu && mtu == idev->cnf.mtu6))
4721 fib6_metric_set(f6i, RTAX_MTU, arg->mtu);
4722
4723 spin_lock_bh(&rt6_exception_lock);
David Aherncc5c0732019-05-22 20:27:58 -07004724 rt6_exceptions_update_pmtu(idev, nh, arg->mtu);
David Ahernc0b220c2019-05-22 20:27:57 -07004725 spin_unlock_bh(&rt6_exception_lock);
4726 }
4727
4728 return 0;
4729}
4730
4731static int rt6_mtu_change_route(struct fib6_info *f6i, void *p_arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004732{
4733 struct rt6_mtu_change_arg *arg = (struct rt6_mtu_change_arg *) p_arg;
4734 struct inet6_dev *idev;
4735
4736 /* In IPv6 pmtu discovery is not optional,
4737 so that RTAX_MTU lock cannot disable it.
4738 We still use this lock to block changes
4739 caused by addrconf/ndisc.
4740 */
4741
4742 idev = __in6_dev_get(arg->dev);
David S. Miller38308472011-12-03 18:02:47 -05004743 if (!idev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004744 return 0;
4745
David Ahernc0b220c2019-05-22 20:27:57 -07004746 if (fib6_metric_locked(f6i, RTAX_MTU))
4747 return 0;
David Ahernd4ead6b2018-04-17 17:33:16 -07004748
David Ahernc0b220c2019-05-22 20:27:57 -07004749 arg->f6i = f6i;
David Ahern2d442342019-06-08 14:53:31 -07004750 if (f6i->nh) {
4751 /* fib6_nh_mtu_change only returns 0, so this is safe */
4752 return nexthop_for_each_fib6_nh(f6i->nh, fib6_nh_mtu_change,
4753 arg);
4754 }
4755
David Ahern1cf844c2019-05-22 20:27:59 -07004756 return fib6_nh_mtu_change(f6i->fib6_nh, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004757}
4758
Eric Dumazet95c96172012-04-15 05:58:06 +00004759void rt6_mtu_change(struct net_device *dev, unsigned int mtu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004760{
Thomas Grafc71099a2006-08-04 23:20:06 -07004761 struct rt6_mtu_change_arg arg = {
4762 .dev = dev,
4763 .mtu = mtu,
4764 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07004765
Li RongQing0c3584d2013-12-27 16:32:38 +08004766 fib6_clean_all(dev_net(dev), rt6_mtu_change_route, &arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004767}
4768
Patrick McHardyef7c79e2007-06-05 12:38:30 -07004769static const struct nla_policy rtm_ipv6_policy[RTA_MAX+1] = {
David Ahern75425652019-05-22 12:07:43 -07004770 [RTA_UNSPEC] = { .strict_start_type = RTA_DPORT + 1 },
Thomas Graf5176f912006-08-26 20:13:18 -07004771 [RTA_GATEWAY] = { .len = sizeof(struct in6_addr) },
Eric Dumazetaa8f8772018-04-22 18:29:23 -07004772 [RTA_PREFSRC] = { .len = sizeof(struct in6_addr) },
Thomas Graf86872cb2006-08-22 00:01:08 -07004773 [RTA_OIF] = { .type = NLA_U32 },
Thomas Grafab364a62006-08-22 00:01:47 -07004774 [RTA_IIF] = { .type = NLA_U32 },
Thomas Graf86872cb2006-08-22 00:01:08 -07004775 [RTA_PRIORITY] = { .type = NLA_U32 },
4776 [RTA_METRICS] = { .type = NLA_NESTED },
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00004777 [RTA_MULTIPATH] = { .len = sizeof(struct rtnexthop) },
Lubomir Rintelc78ba6d2015-03-11 15:39:21 +01004778 [RTA_PREF] = { .type = NLA_U8 },
Roopa Prabhu19e42e42015-07-21 10:43:48 +02004779 [RTA_ENCAP_TYPE] = { .type = NLA_U16 },
4780 [RTA_ENCAP] = { .type = NLA_NESTED },
Xin Long32bc2012015-12-16 17:50:11 +08004781 [RTA_EXPIRES] = { .type = NLA_U32 },
Lorenzo Colitti622ec2c2016-11-04 02:23:42 +09004782 [RTA_UID] = { .type = NLA_U32 },
Liping Zhang3b45a412017-02-27 20:59:39 +08004783 [RTA_MARK] = { .type = NLA_U32 },
Eric Dumazetaa8f8772018-04-22 18:29:23 -07004784 [RTA_TABLE] = { .type = NLA_U32 },
Roopa Prabhueacb9382018-05-22 14:03:28 -07004785 [RTA_IP_PROTO] = { .type = NLA_U8 },
4786 [RTA_SPORT] = { .type = NLA_U16 },
4787 [RTA_DPORT] = { .type = NLA_U16 },
David Ahern5b983242019-06-08 14:53:34 -07004788 [RTA_NH_ID] = { .type = NLA_U32 },
Thomas Graf86872cb2006-08-22 00:01:08 -07004789};
4790
4791static int rtm_to_fib6_config(struct sk_buff *skb, struct nlmsghdr *nlh,
David Ahern333c4302017-05-21 10:12:04 -06004792 struct fib6_config *cfg,
4793 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004794{
Thomas Graf86872cb2006-08-22 00:01:08 -07004795 struct rtmsg *rtm;
4796 struct nlattr *tb[RTA_MAX+1];
Lubomir Rintelc78ba6d2015-03-11 15:39:21 +01004797 unsigned int pref;
Thomas Graf86872cb2006-08-22 00:01:08 -07004798 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004799
Johannes Berg8cb08172019-04-26 14:07:28 +02004800 err = nlmsg_parse_deprecated(nlh, sizeof(*rtm), tb, RTA_MAX,
4801 rtm_ipv6_policy, extack);
Thomas Graf86872cb2006-08-22 00:01:08 -07004802 if (err < 0)
4803 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004804
Thomas Graf86872cb2006-08-22 00:01:08 -07004805 err = -EINVAL;
4806 rtm = nlmsg_data(nlh);
Thomas Graf86872cb2006-08-22 00:01:08 -07004807
Maciej Żenczykowski84db8402018-09-29 23:44:53 -07004808 *cfg = (struct fib6_config){
4809 .fc_table = rtm->rtm_table,
4810 .fc_dst_len = rtm->rtm_dst_len,
4811 .fc_src_len = rtm->rtm_src_len,
4812 .fc_flags = RTF_UP,
4813 .fc_protocol = rtm->rtm_protocol,
4814 .fc_type = rtm->rtm_type,
4815
4816 .fc_nlinfo.portid = NETLINK_CB(skb).portid,
4817 .fc_nlinfo.nlh = nlh,
4818 .fc_nlinfo.nl_net = sock_net(skb->sk),
4819 };
Thomas Graf86872cb2006-08-22 00:01:08 -07004820
Nicolas Dichtelef2c7d72012-09-05 02:12:42 +00004821 if (rtm->rtm_type == RTN_UNREACHABLE ||
4822 rtm->rtm_type == RTN_BLACKHOLE ||
Nicolas Dichtelb4949ab2012-09-06 05:53:35 +00004823 rtm->rtm_type == RTN_PROHIBIT ||
4824 rtm->rtm_type == RTN_THROW)
Thomas Graf86872cb2006-08-22 00:01:08 -07004825 cfg->fc_flags |= RTF_REJECT;
4826
Maciej Żenczykowskiab79ad12010-09-27 00:07:02 +00004827 if (rtm->rtm_type == RTN_LOCAL)
4828 cfg->fc_flags |= RTF_LOCAL;
4829
Martin KaFai Lau1f56a01f2015-04-28 13:03:03 -07004830 if (rtm->rtm_flags & RTM_F_CLONED)
4831 cfg->fc_flags |= RTF_CACHE;
4832
David Ahernfc1e64e2018-01-25 16:55:09 -08004833 cfg->fc_flags |= (rtm->rtm_flags & RTNH_F_ONLINK);
4834
David Ahern5b983242019-06-08 14:53:34 -07004835 if (tb[RTA_NH_ID]) {
4836 if (tb[RTA_GATEWAY] || tb[RTA_OIF] ||
4837 tb[RTA_MULTIPATH] || tb[RTA_ENCAP]) {
4838 NL_SET_ERR_MSG(extack,
4839 "Nexthop specification and nexthop id are mutually exclusive");
4840 goto errout;
4841 }
4842 cfg->fc_nh_id = nla_get_u32(tb[RTA_NH_ID]);
4843 }
4844
Thomas Graf86872cb2006-08-22 00:01:08 -07004845 if (tb[RTA_GATEWAY]) {
Jiri Benc67b61f62015-03-29 16:59:26 +02004846 cfg->fc_gateway = nla_get_in6_addr(tb[RTA_GATEWAY]);
Thomas Graf86872cb2006-08-22 00:01:08 -07004847 cfg->fc_flags |= RTF_GATEWAY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004848 }
David Aherne3818542019-02-26 09:00:03 -08004849 if (tb[RTA_VIA]) {
4850 NL_SET_ERR_MSG(extack, "IPv6 does not support RTA_VIA attribute");
4851 goto errout;
4852 }
Thomas Graf86872cb2006-08-22 00:01:08 -07004853
4854 if (tb[RTA_DST]) {
4855 int plen = (rtm->rtm_dst_len + 7) >> 3;
4856
4857 if (nla_len(tb[RTA_DST]) < plen)
4858 goto errout;
4859
4860 nla_memcpy(&cfg->fc_dst, tb[RTA_DST], plen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004861 }
Thomas Graf86872cb2006-08-22 00:01:08 -07004862
4863 if (tb[RTA_SRC]) {
4864 int plen = (rtm->rtm_src_len + 7) >> 3;
4865
4866 if (nla_len(tb[RTA_SRC]) < plen)
4867 goto errout;
4868
4869 nla_memcpy(&cfg->fc_src, tb[RTA_SRC], plen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004870 }
Thomas Graf86872cb2006-08-22 00:01:08 -07004871
Daniel Walterc3968a82011-04-13 21:10:57 +00004872 if (tb[RTA_PREFSRC])
Jiri Benc67b61f62015-03-29 16:59:26 +02004873 cfg->fc_prefsrc = nla_get_in6_addr(tb[RTA_PREFSRC]);
Daniel Walterc3968a82011-04-13 21:10:57 +00004874
Thomas Graf86872cb2006-08-22 00:01:08 -07004875 if (tb[RTA_OIF])
4876 cfg->fc_ifindex = nla_get_u32(tb[RTA_OIF]);
4877
4878 if (tb[RTA_PRIORITY])
4879 cfg->fc_metric = nla_get_u32(tb[RTA_PRIORITY]);
4880
4881 if (tb[RTA_METRICS]) {
4882 cfg->fc_mx = nla_data(tb[RTA_METRICS]);
4883 cfg->fc_mx_len = nla_len(tb[RTA_METRICS]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004884 }
Thomas Graf86872cb2006-08-22 00:01:08 -07004885
4886 if (tb[RTA_TABLE])
4887 cfg->fc_table = nla_get_u32(tb[RTA_TABLE]);
4888
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00004889 if (tb[RTA_MULTIPATH]) {
4890 cfg->fc_mp = nla_data(tb[RTA_MULTIPATH]);
4891 cfg->fc_mp_len = nla_len(tb[RTA_MULTIPATH]);
David Ahern9ed59592017-01-17 14:57:36 -08004892
4893 err = lwtunnel_valid_encap_type_attr(cfg->fc_mp,
David Ahernc255bd62017-05-27 16:19:27 -06004894 cfg->fc_mp_len, extack);
David Ahern9ed59592017-01-17 14:57:36 -08004895 if (err < 0)
4896 goto errout;
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00004897 }
4898
Lubomir Rintelc78ba6d2015-03-11 15:39:21 +01004899 if (tb[RTA_PREF]) {
4900 pref = nla_get_u8(tb[RTA_PREF]);
4901 if (pref != ICMPV6_ROUTER_PREF_LOW &&
4902 pref != ICMPV6_ROUTER_PREF_HIGH)
4903 pref = ICMPV6_ROUTER_PREF_MEDIUM;
4904 cfg->fc_flags |= RTF_PREF(pref);
4905 }
4906
Roopa Prabhu19e42e42015-07-21 10:43:48 +02004907 if (tb[RTA_ENCAP])
4908 cfg->fc_encap = tb[RTA_ENCAP];
4909
David Ahern9ed59592017-01-17 14:57:36 -08004910 if (tb[RTA_ENCAP_TYPE]) {
Roopa Prabhu19e42e42015-07-21 10:43:48 +02004911 cfg->fc_encap_type = nla_get_u16(tb[RTA_ENCAP_TYPE]);
4912
David Ahernc255bd62017-05-27 16:19:27 -06004913 err = lwtunnel_valid_encap_type(cfg->fc_encap_type, extack);
David Ahern9ed59592017-01-17 14:57:36 -08004914 if (err < 0)
4915 goto errout;
4916 }
4917
Xin Long32bc2012015-12-16 17:50:11 +08004918 if (tb[RTA_EXPIRES]) {
4919 unsigned long timeout = addrconf_timeout_fixup(nla_get_u32(tb[RTA_EXPIRES]), HZ);
4920
4921 if (addrconf_finite_timeout(timeout)) {
4922 cfg->fc_expires = jiffies_to_clock_t(timeout * HZ);
4923 cfg->fc_flags |= RTF_EXPIRES;
4924 }
4925 }
4926
Thomas Graf86872cb2006-08-22 00:01:08 -07004927 err = 0;
4928errout:
4929 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004930}
4931
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07004932struct rt6_nh {
David Ahern8d1c8022018-04-17 17:33:26 -07004933 struct fib6_info *fib6_info;
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07004934 struct fib6_config r_cfg;
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07004935 struct list_head next;
4936};
4937
David Ahernd4ead6b2018-04-17 17:33:16 -07004938static int ip6_route_info_append(struct net *net,
4939 struct list_head *rt6_nh_list,
David Ahern8d1c8022018-04-17 17:33:26 -07004940 struct fib6_info *rt,
4941 struct fib6_config *r_cfg)
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07004942{
4943 struct rt6_nh *nh;
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07004944 int err = -EEXIST;
4945
4946 list_for_each_entry(nh, rt6_nh_list, next) {
David Ahern8d1c8022018-04-17 17:33:26 -07004947 /* check if fib6_info already exists */
4948 if (rt6_duplicate_nexthop(nh->fib6_info, rt))
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07004949 return err;
4950 }
4951
4952 nh = kzalloc(sizeof(*nh), GFP_KERNEL);
4953 if (!nh)
4954 return -ENOMEM;
David Ahern8d1c8022018-04-17 17:33:26 -07004955 nh->fib6_info = rt;
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07004956 memcpy(&nh->r_cfg, r_cfg, sizeof(*r_cfg));
4957 list_add_tail(&nh->next, rt6_nh_list);
4958
4959 return 0;
4960}
4961
David Ahern8d1c8022018-04-17 17:33:26 -07004962static void ip6_route_mpath_notify(struct fib6_info *rt,
4963 struct fib6_info *rt_last,
David Ahern3b1137f2017-02-02 12:37:10 -08004964 struct nl_info *info,
4965 __u16 nlflags)
4966{
4967 /* if this is an APPEND route, then rt points to the first route
4968 * inserted and rt_last points to last route inserted. Userspace
4969 * wants a consistent dump of the route which starts at the first
4970 * nexthop. Since sibling routes are always added at the end of
4971 * the list, find the first sibling of the last route appended
4972 */
David Ahern93c2fb22018-04-18 15:38:59 -07004973 if ((nlflags & NLM_F_APPEND) && rt_last && rt_last->fib6_nsiblings) {
4974 rt = list_first_entry(&rt_last->fib6_siblings,
David Ahern8d1c8022018-04-17 17:33:26 -07004975 struct fib6_info,
David Ahern93c2fb22018-04-18 15:38:59 -07004976 fib6_siblings);
David Ahern3b1137f2017-02-02 12:37:10 -08004977 }
4978
4979 if (rt)
4980 inet6_rt_notify(RTM_NEWROUTE, rt, info, nlflags);
4981}
4982
David Ahern333c4302017-05-21 10:12:04 -06004983static int ip6_route_multipath_add(struct fib6_config *cfg,
4984 struct netlink_ext_ack *extack)
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00004985{
David Ahern8d1c8022018-04-17 17:33:26 -07004986 struct fib6_info *rt_notif = NULL, *rt_last = NULL;
David Ahern3b1137f2017-02-02 12:37:10 -08004987 struct nl_info *info = &cfg->fc_nlinfo;
Ido Schimmelebee3ca2019-06-18 18:12:48 +03004988 enum fib_event_type event_type;
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00004989 struct fib6_config r_cfg;
4990 struct rtnexthop *rtnh;
David Ahern8d1c8022018-04-17 17:33:26 -07004991 struct fib6_info *rt;
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07004992 struct rt6_nh *err_nh;
4993 struct rt6_nh *nh, *nh_safe;
David Ahern3b1137f2017-02-02 12:37:10 -08004994 __u16 nlflags;
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00004995 int remaining;
4996 int attrlen;
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07004997 int err = 1;
4998 int nhn = 0;
4999 int replace = (cfg->fc_nlinfo.nlh &&
5000 (cfg->fc_nlinfo.nlh->nlmsg_flags & NLM_F_REPLACE));
5001 LIST_HEAD(rt6_nh_list);
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00005002
David Ahern3b1137f2017-02-02 12:37:10 -08005003 nlflags = replace ? NLM_F_REPLACE : NLM_F_CREATE;
5004 if (info->nlh && info->nlh->nlmsg_flags & NLM_F_APPEND)
5005 nlflags |= NLM_F_APPEND;
5006
Michal Kubeček35f1b4e2015-05-18 20:53:55 +02005007 remaining = cfg->fc_mp_len;
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00005008 rtnh = (struct rtnexthop *)cfg->fc_mp;
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00005009
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07005010 /* Parse a Multipath Entry and build a list (rt6_nh_list) of
David Ahern8d1c8022018-04-17 17:33:26 -07005011 * fib6_info structs per nexthop
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07005012 */
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00005013 while (rtnh_ok(rtnh, remaining)) {
5014 memcpy(&r_cfg, cfg, sizeof(*cfg));
5015 if (rtnh->rtnh_ifindex)
5016 r_cfg.fc_ifindex = rtnh->rtnh_ifindex;
5017
5018 attrlen = rtnh_attrlen(rtnh);
5019 if (attrlen > 0) {
5020 struct nlattr *nla, *attrs = rtnh_attrs(rtnh);
5021
5022 nla = nla_find(attrs, attrlen, RTA_GATEWAY);
5023 if (nla) {
Jiri Benc67b61f62015-03-29 16:59:26 +02005024 r_cfg.fc_gateway = nla_get_in6_addr(nla);
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00005025 r_cfg.fc_flags |= RTF_GATEWAY;
5026 }
Roopa Prabhu19e42e42015-07-21 10:43:48 +02005027 r_cfg.fc_encap = nla_find(attrs, attrlen, RTA_ENCAP);
5028 nla = nla_find(attrs, attrlen, RTA_ENCAP_TYPE);
5029 if (nla)
5030 r_cfg.fc_encap_type = nla_get_u16(nla);
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00005031 }
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07005032
David Ahern68e2ffd2018-03-20 10:06:59 -07005033 r_cfg.fc_flags |= (rtnh->rtnh_flags & RTNH_F_ONLINK);
David Ahernacb54e32018-04-17 17:33:22 -07005034 rt = ip6_route_info_create(&r_cfg, GFP_KERNEL, extack);
Roopa Prabhu8c5b83f2015-10-10 08:26:36 -07005035 if (IS_ERR(rt)) {
5036 err = PTR_ERR(rt);
5037 rt = NULL;
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07005038 goto cleanup;
Roopa Prabhu8c5b83f2015-10-10 08:26:36 -07005039 }
David Ahernb5d2d752018-07-15 09:35:19 -07005040 if (!rt6_qualify_for_ecmp(rt)) {
5041 err = -EINVAL;
5042 NL_SET_ERR_MSG(extack,
5043 "Device only routes can not be added for IPv6 using the multipath API.");
5044 fib6_info_release(rt);
5045 goto cleanup;
5046 }
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07005047
David Ahern1cf844c2019-05-22 20:27:59 -07005048 rt->fib6_nh->fib_nh_weight = rtnh->rtnh_hops + 1;
Ido Schimmel398958a2018-01-09 16:40:28 +02005049
David Ahernd4ead6b2018-04-17 17:33:16 -07005050 err = ip6_route_info_append(info->nl_net, &rt6_nh_list,
5051 rt, &r_cfg);
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00005052 if (err) {
David Ahern93531c62018-04-17 17:33:25 -07005053 fib6_info_release(rt);
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07005054 goto cleanup;
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00005055 }
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07005056
5057 rtnh = rtnh_next(rtnh, &remaining);
5058 }
5059
Ido Schimmel9eee3b42019-06-20 12:10:21 +03005060 if (list_empty(&rt6_nh_list)) {
5061 NL_SET_ERR_MSG(extack,
5062 "Invalid nexthop configuration - no valid nexthops");
5063 return -EINVAL;
5064 }
5065
David Ahern3b1137f2017-02-02 12:37:10 -08005066 /* for add and replace send one notification with all nexthops.
5067 * Skip the notification in fib6_add_rt2node and send one with
5068 * the full route when done
5069 */
5070 info->skip_notify = 1;
5071
Ido Schimmelebee3ca2019-06-18 18:12:48 +03005072 /* For add and replace, send one notification with all nexthops. For
5073 * append, send one notification with all appended nexthops.
5074 */
5075 info->skip_notify_kernel = 1;
5076
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07005077 err_nh = NULL;
5078 list_for_each_entry(nh, &rt6_nh_list, next) {
David Ahern8d1c8022018-04-17 17:33:26 -07005079 err = __ip6_ins_rt(nh->fib6_info, info, extack);
5080 fib6_info_release(nh->fib6_info);
David Ahern3b1137f2017-02-02 12:37:10 -08005081
David Ahernf7225172018-06-04 13:41:42 -07005082 if (!err) {
5083 /* save reference to last route successfully inserted */
5084 rt_last = nh->fib6_info;
5085
5086 /* save reference to first route for notification */
5087 if (!rt_notif)
5088 rt_notif = nh->fib6_info;
5089 }
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07005090
David Ahern8d1c8022018-04-17 17:33:26 -07005091 /* nh->fib6_info is used or freed at this point, reset to NULL*/
5092 nh->fib6_info = NULL;
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07005093 if (err) {
5094 if (replace && nhn)
Jakub Kicinskia5a82d82019-01-14 10:52:45 -08005095 NL_SET_ERR_MSG_MOD(extack,
5096 "multipath route replace failed (check consistency of installed routes)");
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07005097 err_nh = nh;
5098 goto add_errout;
5099 }
5100
Nicolas Dichtel1a724182012-11-01 22:58:22 +00005101 /* Because each route is added like a single route we remove
Michal Kubeček27596472015-05-18 20:54:00 +02005102 * these flags after the first nexthop: if there is a collision,
5103 * we have already failed to add the first nexthop:
5104 * fib6_add_rt2node() has rejected it; when replacing, old
5105 * nexthops have been replaced by first new, the rest should
5106 * be added to it.
Nicolas Dichtel1a724182012-11-01 22:58:22 +00005107 */
Michal Kubeček27596472015-05-18 20:54:00 +02005108 cfg->fc_nlinfo.nlh->nlmsg_flags &= ~(NLM_F_EXCL |
5109 NLM_F_REPLACE);
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07005110 nhn++;
5111 }
5112
Ido Schimmelebee3ca2019-06-18 18:12:48 +03005113 event_type = replace ? FIB_EVENT_ENTRY_REPLACE : FIB_EVENT_ENTRY_ADD;
5114 err = call_fib6_multipath_entry_notifiers(info->nl_net, event_type,
5115 rt_notif, nhn - 1, extack);
5116 if (err) {
5117 /* Delete all the siblings that were just added */
5118 err_nh = NULL;
5119 goto add_errout;
5120 }
5121
David Ahern3b1137f2017-02-02 12:37:10 -08005122 /* success ... tell user about new route */
5123 ip6_route_mpath_notify(rt_notif, rt_last, info, nlflags);
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07005124 goto cleanup;
5125
5126add_errout:
David Ahern3b1137f2017-02-02 12:37:10 -08005127 /* send notification for routes that were added so that
5128 * the delete notifications sent by ip6_route_del are
5129 * coherent
5130 */
5131 if (rt_notif)
5132 ip6_route_mpath_notify(rt_notif, rt_last, info, nlflags);
5133
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07005134 /* Delete routes that were already added */
5135 list_for_each_entry(nh, &rt6_nh_list, next) {
5136 if (err_nh == nh)
5137 break;
David Ahern333c4302017-05-21 10:12:04 -06005138 ip6_route_del(&nh->r_cfg, extack);
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07005139 }
5140
5141cleanup:
5142 list_for_each_entry_safe(nh, nh_safe, &rt6_nh_list, next) {
David Ahern8d1c8022018-04-17 17:33:26 -07005143 if (nh->fib6_info)
5144 fib6_info_release(nh->fib6_info);
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07005145 list_del(&nh->next);
5146 kfree(nh);
5147 }
5148
5149 return err;
5150}
5151
David Ahern333c4302017-05-21 10:12:04 -06005152static int ip6_route_multipath_del(struct fib6_config *cfg,
5153 struct netlink_ext_ack *extack)
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07005154{
5155 struct fib6_config r_cfg;
5156 struct rtnexthop *rtnh;
5157 int remaining;
5158 int attrlen;
5159 int err = 1, last_err = 0;
5160
5161 remaining = cfg->fc_mp_len;
5162 rtnh = (struct rtnexthop *)cfg->fc_mp;
5163
5164 /* Parse a Multipath Entry */
5165 while (rtnh_ok(rtnh, remaining)) {
5166 memcpy(&r_cfg, cfg, sizeof(*cfg));
5167 if (rtnh->rtnh_ifindex)
5168 r_cfg.fc_ifindex = rtnh->rtnh_ifindex;
5169
5170 attrlen = rtnh_attrlen(rtnh);
5171 if (attrlen > 0) {
5172 struct nlattr *nla, *attrs = rtnh_attrs(rtnh);
5173
5174 nla = nla_find(attrs, attrlen, RTA_GATEWAY);
5175 if (nla) {
5176 nla_memcpy(&r_cfg.fc_gateway, nla, 16);
5177 r_cfg.fc_flags |= RTF_GATEWAY;
5178 }
5179 }
David Ahern333c4302017-05-21 10:12:04 -06005180 err = ip6_route_del(&r_cfg, extack);
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07005181 if (err)
5182 last_err = err;
5183
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00005184 rtnh = rtnh_next(rtnh, &remaining);
5185 }
5186
5187 return last_err;
5188}
5189
David Ahernc21ef3e2017-04-16 09:48:24 -07005190static int inet6_rtm_delroute(struct sk_buff *skb, struct nlmsghdr *nlh,
5191 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005192{
Thomas Graf86872cb2006-08-22 00:01:08 -07005193 struct fib6_config cfg;
5194 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005195
David Ahern333c4302017-05-21 10:12:04 -06005196 err = rtm_to_fib6_config(skb, nlh, &cfg, extack);
Thomas Graf86872cb2006-08-22 00:01:08 -07005197 if (err < 0)
5198 return err;
5199
David Ahern5b983242019-06-08 14:53:34 -07005200 if (cfg.fc_nh_id &&
5201 !nexthop_find_by_id(sock_net(skb->sk), cfg.fc_nh_id)) {
5202 NL_SET_ERR_MSG(extack, "Nexthop id does not exist");
5203 return -EINVAL;
5204 }
5205
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00005206 if (cfg.fc_mp)
David Ahern333c4302017-05-21 10:12:04 -06005207 return ip6_route_multipath_del(&cfg, extack);
David Ahern0ae81332017-02-02 12:37:08 -08005208 else {
5209 cfg.fc_delete_all_nh = 1;
David Ahern333c4302017-05-21 10:12:04 -06005210 return ip6_route_del(&cfg, extack);
David Ahern0ae81332017-02-02 12:37:08 -08005211 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005212}
5213
David Ahernc21ef3e2017-04-16 09:48:24 -07005214static int inet6_rtm_newroute(struct sk_buff *skb, struct nlmsghdr *nlh,
5215 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005216{
Thomas Graf86872cb2006-08-22 00:01:08 -07005217 struct fib6_config cfg;
5218 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005219
David Ahern333c4302017-05-21 10:12:04 -06005220 err = rtm_to_fib6_config(skb, nlh, &cfg, extack);
Thomas Graf86872cb2006-08-22 00:01:08 -07005221 if (err < 0)
5222 return err;
5223
David Ahern67f69512019-03-21 05:21:34 -07005224 if (cfg.fc_metric == 0)
5225 cfg.fc_metric = IP6_RT_PRIO_USER;
5226
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00005227 if (cfg.fc_mp)
David Ahern333c4302017-05-21 10:12:04 -06005228 return ip6_route_multipath_add(&cfg, extack);
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00005229 else
David Ahernacb54e32018-04-17 17:33:22 -07005230 return ip6_route_add(&cfg, GFP_KERNEL, extack);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005231}
5232
David Aherna1b7a1f2019-06-08 14:53:26 -07005233/* add the overhead of this fib6_nh to nexthop_len */
5234static int rt6_nh_nlmsg_size(struct fib6_nh *nh, void *arg)
Thomas Graf339bf982006-11-10 14:10:15 -08005235{
David Aherna1b7a1f2019-06-08 14:53:26 -07005236 int *nexthop_len = arg;
David Ahernbeb1afac52017-02-02 12:37:09 -08005237
David Aherna1b7a1f2019-06-08 14:53:26 -07005238 *nexthop_len += nla_total_size(0) /* RTA_MULTIPATH */
5239 + NLA_ALIGN(sizeof(struct rtnexthop))
5240 + nla_total_size(16); /* RTA_GATEWAY */
David Ahernf88d8ea2019-06-03 20:19:52 -07005241
David Aherna1b7a1f2019-06-08 14:53:26 -07005242 if (nh->fib_nh_lws) {
5243 /* RTA_ENCAP_TYPE */
5244 *nexthop_len += lwtunnel_get_encap_size(nh->fib_nh_lws);
5245 /* RTA_ENCAP */
5246 *nexthop_len += nla_total_size(2);
5247 }
David Ahernbeb1afac52017-02-02 12:37:09 -08005248
David Aherna1b7a1f2019-06-08 14:53:26 -07005249 return 0;
5250}
5251
5252static size_t rt6_nlmsg_size(struct fib6_info *f6i)
5253{
5254 int nexthop_len;
5255
5256 if (f6i->nh) {
5257 nexthop_len = nla_total_size(4); /* RTA_NH_ID */
5258 nexthop_for_each_fib6_nh(f6i->nh, rt6_nh_nlmsg_size,
5259 &nexthop_len);
5260 } else {
5261 struct fib6_nh *nh = f6i->fib6_nh;
5262
5263 nexthop_len = 0;
5264 if (f6i->fib6_nsiblings) {
5265 nexthop_len = nla_total_size(0) /* RTA_MULTIPATH */
5266 + NLA_ALIGN(sizeof(struct rtnexthop))
5267 + nla_total_size(16) /* RTA_GATEWAY */
5268 + lwtunnel_get_encap_size(nh->fib_nh_lws);
5269
5270 nexthop_len *= f6i->fib6_nsiblings;
5271 }
5272 nexthop_len += lwtunnel_get_encap_size(nh->fib_nh_lws);
David Ahernbeb1afac52017-02-02 12:37:09 -08005273 }
5274
Thomas Graf339bf982006-11-10 14:10:15 -08005275 return NLMSG_ALIGN(sizeof(struct rtmsg))
5276 + nla_total_size(16) /* RTA_SRC */
5277 + nla_total_size(16) /* RTA_DST */
5278 + nla_total_size(16) /* RTA_GATEWAY */
5279 + nla_total_size(16) /* RTA_PREFSRC */
5280 + nla_total_size(4) /* RTA_TABLE */
5281 + nla_total_size(4) /* RTA_IIF */
5282 + nla_total_size(4) /* RTA_OIF */
5283 + nla_total_size(4) /* RTA_PRIORITY */
Noriaki TAKAMIYA6a2b9ce2007-01-23 22:09:41 -08005284 + RTAX_MAX * nla_total_size(4) /* RTA_METRICS */
Daniel Borkmannea697632015-01-05 23:57:47 +01005285 + nla_total_size(sizeof(struct rta_cacheinfo))
Lubomir Rintelc78ba6d2015-03-11 15:39:21 +01005286 + nla_total_size(TCP_CA_NAME_MAX) /* RTAX_CC_ALGO */
Roopa Prabhu19e42e42015-07-21 10:43:48 +02005287 + nla_total_size(1) /* RTA_PREF */
David Ahernbeb1afac52017-02-02 12:37:09 -08005288 + nexthop_len;
5289}
5290
David Ahernf88d8ea2019-06-03 20:19:52 -07005291static int rt6_fill_node_nexthop(struct sk_buff *skb, struct nexthop *nh,
5292 unsigned char *flags)
5293{
5294 if (nexthop_is_multipath(nh)) {
5295 struct nlattr *mp;
5296
5297 mp = nla_nest_start(skb, RTA_MULTIPATH);
5298 if (!mp)
5299 goto nla_put_failure;
5300
5301 if (nexthop_mpath_fill_node(skb, nh))
5302 goto nla_put_failure;
5303
5304 nla_nest_end(skb, mp);
5305 } else {
5306 struct fib6_nh *fib6_nh;
5307
5308 fib6_nh = nexthop_fib6_nh(nh);
5309 if (fib_nexthop_info(skb, &fib6_nh->nh_common,
5310 flags, false) < 0)
5311 goto nla_put_failure;
5312 }
5313
5314 return 0;
5315
5316nla_put_failure:
5317 return -EMSGSIZE;
5318}
5319
David Ahernd4ead6b2018-04-17 17:33:16 -07005320static int rt6_fill_node(struct net *net, struct sk_buff *skb,
David Ahern8d1c8022018-04-17 17:33:26 -07005321 struct fib6_info *rt, struct dst_entry *dst,
David Ahernd4ead6b2018-04-17 17:33:16 -07005322 struct in6_addr *dest, struct in6_addr *src,
Eric W. Biederman15e47302012-09-07 20:12:54 +00005323 int iif, int type, u32 portid, u32 seq,
David Ahernf8cfe2c2017-01-17 15:51:08 -08005324 unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005325{
Xin Long22d0bd82018-09-11 14:33:58 +08005326 struct rt6_info *rt6 = (struct rt6_info *)dst;
5327 struct rt6key *rt6_dst, *rt6_src;
5328 u32 *pmetrics, table, rt6_flags;
David Ahernf88d8ea2019-06-03 20:19:52 -07005329 unsigned char nh_flags = 0;
Thomas Graf2d7202b2006-08-22 00:01:27 -07005330 struct nlmsghdr *nlh;
Xin Long22d0bd82018-09-11 14:33:58 +08005331 struct rtmsg *rtm;
David Ahernd4ead6b2018-04-17 17:33:16 -07005332 long expires = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005333
Eric W. Biederman15e47302012-09-07 20:12:54 +00005334 nlh = nlmsg_put(skb, portid, seq, type, sizeof(*rtm), flags);
David S. Miller38308472011-12-03 18:02:47 -05005335 if (!nlh)
Patrick McHardy26932562007-01-31 23:16:40 -08005336 return -EMSGSIZE;
Thomas Graf2d7202b2006-08-22 00:01:27 -07005337
Xin Long22d0bd82018-09-11 14:33:58 +08005338 if (rt6) {
5339 rt6_dst = &rt6->rt6i_dst;
5340 rt6_src = &rt6->rt6i_src;
5341 rt6_flags = rt6->rt6i_flags;
5342 } else {
5343 rt6_dst = &rt->fib6_dst;
5344 rt6_src = &rt->fib6_src;
5345 rt6_flags = rt->fib6_flags;
5346 }
5347
Thomas Graf2d7202b2006-08-22 00:01:27 -07005348 rtm = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005349 rtm->rtm_family = AF_INET6;
Xin Long22d0bd82018-09-11 14:33:58 +08005350 rtm->rtm_dst_len = rt6_dst->plen;
5351 rtm->rtm_src_len = rt6_src->plen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005352 rtm->rtm_tos = 0;
David Ahern93c2fb22018-04-18 15:38:59 -07005353 if (rt->fib6_table)
5354 table = rt->fib6_table->tb6_id;
Thomas Grafc71099a2006-08-04 23:20:06 -07005355 else
Patrick McHardy9e762a42006-08-10 23:09:48 -07005356 table = RT6_TABLE_UNSPEC;
Kalash Nainwal97f00822019-02-20 16:23:04 -08005357 rtm->rtm_table = table < 256 ? table : RT_TABLE_COMPAT;
David S. Millerc78679e2012-04-01 20:27:33 -04005358 if (nla_put_u32(skb, RTA_TABLE, table))
5359 goto nla_put_failure;
David Aherne8478e82018-04-17 17:33:13 -07005360
5361 rtm->rtm_type = rt->fib6_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005362 rtm->rtm_flags = 0;
5363 rtm->rtm_scope = RT_SCOPE_UNIVERSE;
David Ahern93c2fb22018-04-18 15:38:59 -07005364 rtm->rtm_protocol = rt->fib6_protocol;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005365
Xin Long22d0bd82018-09-11 14:33:58 +08005366 if (rt6_flags & RTF_CACHE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005367 rtm->rtm_flags |= RTM_F_CLONED;
5368
David Ahernd4ead6b2018-04-17 17:33:16 -07005369 if (dest) {
5370 if (nla_put_in6_addr(skb, RTA_DST, dest))
David S. Millerc78679e2012-04-01 20:27:33 -04005371 goto nla_put_failure;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09005372 rtm->rtm_dst_len = 128;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005373 } else if (rtm->rtm_dst_len)
Xin Long22d0bd82018-09-11 14:33:58 +08005374 if (nla_put_in6_addr(skb, RTA_DST, &rt6_dst->addr))
David S. Millerc78679e2012-04-01 20:27:33 -04005375 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005376#ifdef CONFIG_IPV6_SUBTREES
5377 if (src) {
Jiri Benc930345e2015-03-29 16:59:25 +02005378 if (nla_put_in6_addr(skb, RTA_SRC, src))
David S. Millerc78679e2012-04-01 20:27:33 -04005379 goto nla_put_failure;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09005380 rtm->rtm_src_len = 128;
David S. Millerc78679e2012-04-01 20:27:33 -04005381 } else if (rtm->rtm_src_len &&
Xin Long22d0bd82018-09-11 14:33:58 +08005382 nla_put_in6_addr(skb, RTA_SRC, &rt6_src->addr))
David S. Millerc78679e2012-04-01 20:27:33 -04005383 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005384#endif
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09005385 if (iif) {
5386#ifdef CONFIG_IPV6_MROUTE
Xin Long22d0bd82018-09-11 14:33:58 +08005387 if (ipv6_addr_is_multicast(&rt6_dst->addr)) {
David Ahernfd61c6b2017-01-17 15:51:07 -08005388 int err = ip6mr_get_route(net, skb, rtm, portid);
Nikolay Aleksandrov2cf75072016-09-25 23:08:31 +02005389
David Ahernfd61c6b2017-01-17 15:51:07 -08005390 if (err == 0)
5391 return 0;
5392 if (err < 0)
5393 goto nla_put_failure;
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09005394 } else
5395#endif
David S. Millerc78679e2012-04-01 20:27:33 -04005396 if (nla_put_u32(skb, RTA_IIF, iif))
5397 goto nla_put_failure;
David Ahernd4ead6b2018-04-17 17:33:16 -07005398 } else if (dest) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005399 struct in6_addr saddr_buf;
David Ahernd4ead6b2018-04-17 17:33:16 -07005400 if (ip6_route_get_saddr(net, rt, dest, 0, &saddr_buf) == 0 &&
Jiri Benc930345e2015-03-29 16:59:25 +02005401 nla_put_in6_addr(skb, RTA_PREFSRC, &saddr_buf))
David S. Millerc78679e2012-04-01 20:27:33 -04005402 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005403 }
Thomas Graf2d7202b2006-08-22 00:01:27 -07005404
David Ahern93c2fb22018-04-18 15:38:59 -07005405 if (rt->fib6_prefsrc.plen) {
Daniel Walterc3968a82011-04-13 21:10:57 +00005406 struct in6_addr saddr_buf;
David Ahern93c2fb22018-04-18 15:38:59 -07005407 saddr_buf = rt->fib6_prefsrc.addr;
Jiri Benc930345e2015-03-29 16:59:25 +02005408 if (nla_put_in6_addr(skb, RTA_PREFSRC, &saddr_buf))
David S. Millerc78679e2012-04-01 20:27:33 -04005409 goto nla_put_failure;
Daniel Walterc3968a82011-04-13 21:10:57 +00005410 }
5411
David Ahernd4ead6b2018-04-17 17:33:16 -07005412 pmetrics = dst ? dst_metrics_ptr(dst) : rt->fib6_metrics->metrics;
5413 if (rtnetlink_put_metrics(skb, pmetrics) < 0)
Thomas Graf2d7202b2006-08-22 00:01:27 -07005414 goto nla_put_failure;
5415
David Ahern93c2fb22018-04-18 15:38:59 -07005416 if (nla_put_u32(skb, RTA_PRIORITY, rt->fib6_metric))
David S. Millerc78679e2012-04-01 20:27:33 -04005417 goto nla_put_failure;
Li Wei82539472012-07-29 16:01:30 +00005418
David Ahernbeb1afac52017-02-02 12:37:09 -08005419 /* For multipath routes, walk the siblings list and add
5420 * each as a nexthop within RTA_MULTIPATH.
5421 */
Xin Long22d0bd82018-09-11 14:33:58 +08005422 if (rt6) {
5423 if (rt6_flags & RTF_GATEWAY &&
5424 nla_put_in6_addr(skb, RTA_GATEWAY, &rt6->rt6i_gateway))
5425 goto nla_put_failure;
5426
5427 if (dst->dev && nla_put_u32(skb, RTA_OIF, dst->dev->ifindex))
5428 goto nla_put_failure;
5429 } else if (rt->fib6_nsiblings) {
David Ahern8d1c8022018-04-17 17:33:26 -07005430 struct fib6_info *sibling, *next_sibling;
David Ahernbeb1afac52017-02-02 12:37:09 -08005431 struct nlattr *mp;
5432
Michal Kubecekae0be8d2019-04-26 11:13:06 +02005433 mp = nla_nest_start_noflag(skb, RTA_MULTIPATH);
David Ahernbeb1afac52017-02-02 12:37:09 -08005434 if (!mp)
5435 goto nla_put_failure;
5436
David Ahern1cf844c2019-05-22 20:27:59 -07005437 if (fib_add_nexthop(skb, &rt->fib6_nh->nh_common,
5438 rt->fib6_nh->fib_nh_weight) < 0)
David Ahernbeb1afac52017-02-02 12:37:09 -08005439 goto nla_put_failure;
5440
5441 list_for_each_entry_safe(sibling, next_sibling,
David Ahern93c2fb22018-04-18 15:38:59 -07005442 &rt->fib6_siblings, fib6_siblings) {
David Ahern1cf844c2019-05-22 20:27:59 -07005443 if (fib_add_nexthop(skb, &sibling->fib6_nh->nh_common,
5444 sibling->fib6_nh->fib_nh_weight) < 0)
David Ahernbeb1afac52017-02-02 12:37:09 -08005445 goto nla_put_failure;
5446 }
5447
5448 nla_nest_end(skb, mp);
David Ahernf88d8ea2019-06-03 20:19:52 -07005449 } else if (rt->nh) {
5450 if (nla_put_u32(skb, RTA_NH_ID, rt->nh->id))
5451 goto nla_put_failure;
David Ahernecc56632019-04-23 08:48:09 -07005452
David Ahernf88d8ea2019-06-03 20:19:52 -07005453 if (nexthop_is_blackhole(rt->nh))
5454 rtm->rtm_type = RTN_BLACKHOLE;
5455
5456 if (rt6_fill_node_nexthop(skb, rt->nh, &nh_flags) < 0)
5457 goto nla_put_failure;
5458
5459 rtm->rtm_flags |= nh_flags;
5460 } else {
David Ahern1cf844c2019-05-22 20:27:59 -07005461 if (fib_nexthop_info(skb, &rt->fib6_nh->nh_common,
David Ahernecc56632019-04-23 08:48:09 -07005462 &nh_flags, false) < 0)
David Ahernbeb1afac52017-02-02 12:37:09 -08005463 goto nla_put_failure;
David Ahernecc56632019-04-23 08:48:09 -07005464
5465 rtm->rtm_flags |= nh_flags;
David Ahernbeb1afac52017-02-02 12:37:09 -08005466 }
5467
Xin Long22d0bd82018-09-11 14:33:58 +08005468 if (rt6_flags & RTF_EXPIRES) {
David Ahern14895682018-04-17 17:33:17 -07005469 expires = dst ? dst->expires : rt->expires;
5470 expires -= jiffies;
5471 }
YOSHIFUJI Hideaki69cdf8f2008-05-19 16:55:13 -07005472
David Ahernd4ead6b2018-04-17 17:33:16 -07005473 if (rtnl_put_cacheinfo(skb, dst, 0, expires, dst ? dst->error : 0) < 0)
Thomas Grafe3703b32006-11-27 09:27:07 -08005474 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005475
Xin Long22d0bd82018-09-11 14:33:58 +08005476 if (nla_put_u8(skb, RTA_PREF, IPV6_EXTRACT_PREF(rt6_flags)))
Lubomir Rintelc78ba6d2015-03-11 15:39:21 +01005477 goto nla_put_failure;
5478
Roopa Prabhu19e42e42015-07-21 10:43:48 +02005479
Johannes Berg053c0952015-01-16 22:09:00 +01005480 nlmsg_end(skb, nlh);
5481 return 0;
Thomas Graf2d7202b2006-08-22 00:01:27 -07005482
5483nla_put_failure:
Patrick McHardy26932562007-01-31 23:16:40 -08005484 nlmsg_cancel(skb, nlh);
5485 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005486}
5487
David Ahern2c170e02019-06-08 14:53:27 -07005488static int fib6_info_nh_uses_dev(struct fib6_nh *nh, void *arg)
5489{
5490 const struct net_device *dev = arg;
5491
5492 if (nh->fib_nh_dev == dev)
5493 return 1;
5494
5495 return 0;
5496}
5497
David Ahern13e38902018-10-15 18:56:44 -07005498static bool fib6_info_uses_dev(const struct fib6_info *f6i,
5499 const struct net_device *dev)
5500{
David Ahern2c170e02019-06-08 14:53:27 -07005501 if (f6i->nh) {
5502 struct net_device *_dev = (struct net_device *)dev;
5503
5504 return !!nexthop_for_each_fib6_nh(f6i->nh,
5505 fib6_info_nh_uses_dev,
5506 _dev);
5507 }
5508
David Ahern1cf844c2019-05-22 20:27:59 -07005509 if (f6i->fib6_nh->fib_nh_dev == dev)
David Ahern13e38902018-10-15 18:56:44 -07005510 return true;
5511
5512 if (f6i->fib6_nsiblings) {
5513 struct fib6_info *sibling, *next_sibling;
5514
5515 list_for_each_entry_safe(sibling, next_sibling,
5516 &f6i->fib6_siblings, fib6_siblings) {
David Ahern1cf844c2019-05-22 20:27:59 -07005517 if (sibling->fib6_nh->fib_nh_dev == dev)
David Ahern13e38902018-10-15 18:56:44 -07005518 return true;
5519 }
5520 }
5521
5522 return false;
5523}
5524
Stefano Brivio1e47b482019-06-21 17:45:27 +02005525struct fib6_nh_exception_dump_walker {
5526 struct rt6_rtnl_dump_arg *dump;
5527 struct fib6_info *rt;
5528 unsigned int flags;
5529 unsigned int skip;
5530 unsigned int count;
5531};
5532
5533static int rt6_nh_dump_exceptions(struct fib6_nh *nh, void *arg)
5534{
5535 struct fib6_nh_exception_dump_walker *w = arg;
5536 struct rt6_rtnl_dump_arg *dump = w->dump;
5537 struct rt6_exception_bucket *bucket;
5538 struct rt6_exception *rt6_ex;
5539 int i, err;
5540
5541 bucket = fib6_nh_get_excptn_bucket(nh, NULL);
5542 if (!bucket)
5543 return 0;
5544
5545 for (i = 0; i < FIB6_EXCEPTION_BUCKET_SIZE; i++) {
5546 hlist_for_each_entry(rt6_ex, &bucket->chain, hlist) {
5547 if (w->skip) {
5548 w->skip--;
5549 continue;
5550 }
5551
5552 /* Expiration of entries doesn't bump sernum, insertion
5553 * does. Removal is triggered by insertion, so we can
5554 * rely on the fact that if entries change between two
5555 * partial dumps, this node is scanned again completely,
5556 * see rt6_insert_exception() and fib6_dump_table().
5557 *
5558 * Count expired entries we go through as handled
5559 * entries that we'll skip next time, in case of partial
5560 * node dump. Otherwise, if entries expire meanwhile,
5561 * we'll skip the wrong amount.
5562 */
5563 if (rt6_check_expired(rt6_ex->rt6i)) {
5564 w->count++;
5565 continue;
5566 }
5567
5568 err = rt6_fill_node(dump->net, dump->skb, w->rt,
5569 &rt6_ex->rt6i->dst, NULL, NULL, 0,
5570 RTM_NEWROUTE,
5571 NETLINK_CB(dump->cb->skb).portid,
5572 dump->cb->nlh->nlmsg_seq, w->flags);
5573 if (err)
5574 return err;
5575
5576 w->count++;
5577 }
5578 bucket++;
5579 }
5580
5581 return 0;
5582}
5583
Stefano Briviobf9a8a0612019-06-21 17:45:26 +02005584/* Return -1 if done with node, number of handled routes on partial dump */
Stefano Brivio1e47b482019-06-21 17:45:27 +02005585int rt6_dump_route(struct fib6_info *rt, void *p_arg, unsigned int skip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005586{
5587 struct rt6_rtnl_dump_arg *arg = (struct rt6_rtnl_dump_arg *) p_arg;
David Ahern13e38902018-10-15 18:56:44 -07005588 struct fib_dump_filter *filter = &arg->filter;
5589 unsigned int flags = NLM_F_MULTI;
David Ahern1f17e2f2017-01-26 13:54:08 -08005590 struct net *net = arg->net;
Stefano Brivio1e47b482019-06-21 17:45:27 +02005591 int count = 0;
David Ahern1f17e2f2017-01-26 13:54:08 -08005592
David Ahern421842e2018-04-17 17:33:18 -07005593 if (rt == net->ipv6.fib6_null_entry)
Stefano Briviobf9a8a0612019-06-21 17:45:26 +02005594 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005595
David Ahern13e38902018-10-15 18:56:44 -07005596 if ((filter->flags & RTM_F_PREFIX) &&
5597 !(rt->fib6_flags & RTF_PREFIX_RT)) {
5598 /* success since this is not a prefix route */
Stefano Briviobf9a8a0612019-06-21 17:45:26 +02005599 return -1;
David Ahern13e38902018-10-15 18:56:44 -07005600 }
Stefano Brivio1e47b482019-06-21 17:45:27 +02005601 if (filter->filter_set &&
5602 ((filter->rt_type && rt->fib6_type != filter->rt_type) ||
5603 (filter->dev && !fib6_info_uses_dev(rt, filter->dev)) ||
5604 (filter->protocol && rt->fib6_protocol != filter->protocol))) {
5605 return -1;
5606 }
5607
5608 if (filter->filter_set ||
5609 !filter->dump_routes || !filter->dump_exceptions) {
David Ahern13e38902018-10-15 18:56:44 -07005610 flags |= NLM_F_DUMP_FILTERED;
David Ahernf8cfe2c2017-01-17 15:51:08 -08005611 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005612
Stefano Brivio1e47b482019-06-21 17:45:27 +02005613 if (filter->dump_routes) {
5614 if (skip) {
5615 skip--;
5616 } else {
5617 if (rt6_fill_node(net, arg->skb, rt, NULL, NULL, NULL,
5618 0, RTM_NEWROUTE,
5619 NETLINK_CB(arg->cb->skb).portid,
5620 arg->cb->nlh->nlmsg_seq, flags)) {
5621 return 0;
5622 }
5623 count++;
5624 }
5625 }
5626
5627 if (filter->dump_exceptions) {
5628 struct fib6_nh_exception_dump_walker w = { .dump = arg,
5629 .rt = rt,
5630 .flags = flags,
5631 .skip = skip,
5632 .count = 0 };
5633 int err;
5634
Eric Dumazet3b525692019-06-26 03:05:28 -07005635 rcu_read_lock();
Stefano Brivio1e47b482019-06-21 17:45:27 +02005636 if (rt->nh) {
5637 err = nexthop_for_each_fib6_nh(rt->nh,
5638 rt6_nh_dump_exceptions,
5639 &w);
5640 } else {
5641 err = rt6_nh_dump_exceptions(rt->fib6_nh, &w);
5642 }
Eric Dumazet3b525692019-06-26 03:05:28 -07005643 rcu_read_unlock();
Stefano Brivio1e47b482019-06-21 17:45:27 +02005644
5645 if (err)
5646 return count += w.count;
5647 }
Stefano Briviobf9a8a0612019-06-21 17:45:26 +02005648
5649 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005650}
5651
Jakub Kicinski0eff0a22019-01-18 10:46:24 -08005652static int inet6_rtm_valid_getroute_req(struct sk_buff *skb,
5653 const struct nlmsghdr *nlh,
5654 struct nlattr **tb,
5655 struct netlink_ext_ack *extack)
5656{
5657 struct rtmsg *rtm;
5658 int i, err;
5659
5660 if (nlh->nlmsg_len < nlmsg_msg_size(sizeof(*rtm))) {
5661 NL_SET_ERR_MSG_MOD(extack,
5662 "Invalid header for get route request");
5663 return -EINVAL;
5664 }
5665
5666 if (!netlink_strict_get_check(skb))
Johannes Berg8cb08172019-04-26 14:07:28 +02005667 return nlmsg_parse_deprecated(nlh, sizeof(*rtm), tb, RTA_MAX,
5668 rtm_ipv6_policy, extack);
Jakub Kicinski0eff0a22019-01-18 10:46:24 -08005669
5670 rtm = nlmsg_data(nlh);
5671 if ((rtm->rtm_src_len && rtm->rtm_src_len != 128) ||
5672 (rtm->rtm_dst_len && rtm->rtm_dst_len != 128) ||
5673 rtm->rtm_table || rtm->rtm_protocol || rtm->rtm_scope ||
5674 rtm->rtm_type) {
5675 NL_SET_ERR_MSG_MOD(extack, "Invalid values in header for get route request");
5676 return -EINVAL;
5677 }
5678 if (rtm->rtm_flags & ~RTM_F_FIB_MATCH) {
5679 NL_SET_ERR_MSG_MOD(extack,
5680 "Invalid flags for get route request");
5681 return -EINVAL;
5682 }
5683
Johannes Berg8cb08172019-04-26 14:07:28 +02005684 err = nlmsg_parse_deprecated_strict(nlh, sizeof(*rtm), tb, RTA_MAX,
5685 rtm_ipv6_policy, extack);
Jakub Kicinski0eff0a22019-01-18 10:46:24 -08005686 if (err)
5687 return err;
5688
5689 if ((tb[RTA_SRC] && !rtm->rtm_src_len) ||
5690 (tb[RTA_DST] && !rtm->rtm_dst_len)) {
5691 NL_SET_ERR_MSG_MOD(extack, "rtm_src_len and rtm_dst_len must be 128 for IPv6");
5692 return -EINVAL;
5693 }
5694
5695 for (i = 0; i <= RTA_MAX; i++) {
5696 if (!tb[i])
5697 continue;
5698
5699 switch (i) {
5700 case RTA_SRC:
5701 case RTA_DST:
5702 case RTA_IIF:
5703 case RTA_OIF:
5704 case RTA_MARK:
5705 case RTA_UID:
5706 case RTA_SPORT:
5707 case RTA_DPORT:
5708 case RTA_IP_PROTO:
5709 break;
5710 default:
5711 NL_SET_ERR_MSG_MOD(extack, "Unsupported attribute in get route request");
5712 return -EINVAL;
5713 }
5714 }
5715
5716 return 0;
5717}
5718
David Ahernc21ef3e2017-04-16 09:48:24 -07005719static int inet6_rtm_getroute(struct sk_buff *in_skb, struct nlmsghdr *nlh,
5720 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005721{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09005722 struct net *net = sock_net(in_skb->sk);
Thomas Grafab364a62006-08-22 00:01:47 -07005723 struct nlattr *tb[RTA_MAX+1];
Roopa Prabhu18c3a612017-05-25 10:42:40 -07005724 int err, iif = 0, oif = 0;
David Aherna68886a2018-04-20 15:38:02 -07005725 struct fib6_info *from;
Roopa Prabhu18c3a612017-05-25 10:42:40 -07005726 struct dst_entry *dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005727 struct rt6_info *rt;
Thomas Grafab364a62006-08-22 00:01:47 -07005728 struct sk_buff *skb;
5729 struct rtmsg *rtm;
Maciej Żenczykowski744486d2018-09-29 23:44:54 -07005730 struct flowi6 fl6 = {};
Roopa Prabhu18c3a612017-05-25 10:42:40 -07005731 bool fibmatch;
Thomas Grafab364a62006-08-22 00:01:47 -07005732
Jakub Kicinski0eff0a22019-01-18 10:46:24 -08005733 err = inet6_rtm_valid_getroute_req(in_skb, nlh, tb, extack);
Thomas Grafab364a62006-08-22 00:01:47 -07005734 if (err < 0)
5735 goto errout;
5736
5737 err = -EINVAL;
Hannes Frederic Sowa38b70972016-06-11 20:08:19 +02005738 rtm = nlmsg_data(nlh);
5739 fl6.flowlabel = ip6_make_flowinfo(rtm->rtm_tos, 0);
Roopa Prabhu18c3a612017-05-25 10:42:40 -07005740 fibmatch = !!(rtm->rtm_flags & RTM_F_FIB_MATCH);
Thomas Grafab364a62006-08-22 00:01:47 -07005741
5742 if (tb[RTA_SRC]) {
5743 if (nla_len(tb[RTA_SRC]) < sizeof(struct in6_addr))
5744 goto errout;
5745
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00005746 fl6.saddr = *(struct in6_addr *)nla_data(tb[RTA_SRC]);
Thomas Grafab364a62006-08-22 00:01:47 -07005747 }
5748
5749 if (tb[RTA_DST]) {
5750 if (nla_len(tb[RTA_DST]) < sizeof(struct in6_addr))
5751 goto errout;
5752
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00005753 fl6.daddr = *(struct in6_addr *)nla_data(tb[RTA_DST]);
Thomas Grafab364a62006-08-22 00:01:47 -07005754 }
5755
5756 if (tb[RTA_IIF])
5757 iif = nla_get_u32(tb[RTA_IIF]);
5758
5759 if (tb[RTA_OIF])
Shmulik Ladkani72331bc2012-04-01 04:03:45 +00005760 oif = nla_get_u32(tb[RTA_OIF]);
Thomas Grafab364a62006-08-22 00:01:47 -07005761
Lorenzo Colitti2e47b292014-05-15 16:38:41 -07005762 if (tb[RTA_MARK])
5763 fl6.flowi6_mark = nla_get_u32(tb[RTA_MARK]);
5764
Lorenzo Colitti622ec2c2016-11-04 02:23:42 +09005765 if (tb[RTA_UID])
5766 fl6.flowi6_uid = make_kuid(current_user_ns(),
5767 nla_get_u32(tb[RTA_UID]));
5768 else
5769 fl6.flowi6_uid = iif ? INVALID_UID : current_uid();
5770
Roopa Prabhueacb9382018-05-22 14:03:28 -07005771 if (tb[RTA_SPORT])
5772 fl6.fl6_sport = nla_get_be16(tb[RTA_SPORT]);
5773
5774 if (tb[RTA_DPORT])
5775 fl6.fl6_dport = nla_get_be16(tb[RTA_DPORT]);
5776
5777 if (tb[RTA_IP_PROTO]) {
5778 err = rtm_getroute_parse_ip_proto(tb[RTA_IP_PROTO],
Hangbin Liu5e1a99e2019-02-27 16:15:29 +08005779 &fl6.flowi6_proto, AF_INET6,
5780 extack);
Roopa Prabhueacb9382018-05-22 14:03:28 -07005781 if (err)
5782 goto errout;
5783 }
5784
Thomas Grafab364a62006-08-22 00:01:47 -07005785 if (iif) {
5786 struct net_device *dev;
Shmulik Ladkani72331bc2012-04-01 04:03:45 +00005787 int flags = 0;
5788
Florian Westphal121622d2017-08-15 16:34:42 +02005789 rcu_read_lock();
5790
5791 dev = dev_get_by_index_rcu(net, iif);
Thomas Grafab364a62006-08-22 00:01:47 -07005792 if (!dev) {
Florian Westphal121622d2017-08-15 16:34:42 +02005793 rcu_read_unlock();
Thomas Grafab364a62006-08-22 00:01:47 -07005794 err = -ENODEV;
5795 goto errout;
5796 }
Shmulik Ladkani72331bc2012-04-01 04:03:45 +00005797
5798 fl6.flowi6_iif = iif;
5799
5800 if (!ipv6_addr_any(&fl6.saddr))
5801 flags |= RT6_LOOKUP_F_HAS_SADDR;
5802
David Ahernb75cc8f2018-03-02 08:32:17 -08005803 dst = ip6_route_input_lookup(net, dev, &fl6, NULL, flags);
Florian Westphal121622d2017-08-15 16:34:42 +02005804
5805 rcu_read_unlock();
Shmulik Ladkani72331bc2012-04-01 04:03:45 +00005806 } else {
5807 fl6.flowi6_oif = oif;
5808
Ido Schimmel58acfd72017-12-20 12:28:25 +02005809 dst = ip6_route_output(net, NULL, &fl6);
Roopa Prabhu18c3a612017-05-25 10:42:40 -07005810 }
5811
Roopa Prabhu18c3a612017-05-25 10:42:40 -07005812
5813 rt = container_of(dst, struct rt6_info, dst);
5814 if (rt->dst.error) {
5815 err = rt->dst.error;
5816 ip6_rt_put(rt);
5817 goto errout;
Thomas Grafab364a62006-08-22 00:01:47 -07005818 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005819
WANG Cong9d6acb32017-03-01 20:48:39 -08005820 if (rt == net->ipv6.ip6_null_entry) {
5821 err = rt->dst.error;
5822 ip6_rt_put(rt);
5823 goto errout;
5824 }
5825
Linus Torvalds1da177e2005-04-16 15:20:36 -07005826 skb = alloc_skb(NLMSG_GOODSIZE, GFP_KERNEL);
David S. Miller38308472011-12-03 18:02:47 -05005827 if (!skb) {
Amerigo Wang94e187c2012-10-29 00:13:19 +00005828 ip6_rt_put(rt);
Thomas Grafab364a62006-08-22 00:01:47 -07005829 err = -ENOBUFS;
5830 goto errout;
5831 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005832
Changli Gaod8d1f302010-06-10 23:31:35 -07005833 skb_dst_set(skb, &rt->dst);
David Aherna68886a2018-04-20 15:38:02 -07005834
5835 rcu_read_lock();
5836 from = rcu_dereference(rt->from);
Martin KaFai Lau886b7a52019-04-30 10:45:12 -07005837 if (from) {
5838 if (fibmatch)
5839 err = rt6_fill_node(net, skb, from, NULL, NULL, NULL,
5840 iif, RTM_NEWROUTE,
5841 NETLINK_CB(in_skb).portid,
5842 nlh->nlmsg_seq, 0);
5843 else
5844 err = rt6_fill_node(net, skb, from, dst, &fl6.daddr,
5845 &fl6.saddr, iif, RTM_NEWROUTE,
5846 NETLINK_CB(in_skb).portid,
5847 nlh->nlmsg_seq, 0);
5848 } else {
5849 err = -ENETUNREACH;
5850 }
David Aherna68886a2018-04-20 15:38:02 -07005851 rcu_read_unlock();
5852
Linus Torvalds1da177e2005-04-16 15:20:36 -07005853 if (err < 0) {
Thomas Grafab364a62006-08-22 00:01:47 -07005854 kfree_skb(skb);
5855 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005856 }
5857
Eric W. Biederman15e47302012-09-07 20:12:54 +00005858 err = rtnl_unicast(skb, net, NETLINK_CB(in_skb).portid);
Thomas Grafab364a62006-08-22 00:01:47 -07005859errout:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005860 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005861}
5862
David Ahern8d1c8022018-04-17 17:33:26 -07005863void inet6_rt_notify(int event, struct fib6_info *rt, struct nl_info *info,
Roopa Prabhu37a1d362015-09-13 10:18:33 -07005864 unsigned int nlm_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005865{
5866 struct sk_buff *skb;
Daniel Lezcano55786892008-03-04 13:47:47 -08005867 struct net *net = info->nl_net;
Denis V. Lunev528c4ce2007-12-13 09:45:12 -08005868 u32 seq;
5869 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005870
Denis V. Lunev528c4ce2007-12-13 09:45:12 -08005871 err = -ENOBUFS;
David S. Miller38308472011-12-03 18:02:47 -05005872 seq = info->nlh ? info->nlh->nlmsg_seq : 0;
Thomas Graf86872cb2006-08-22 00:01:08 -07005873
Roopa Prabhu19e42e42015-07-21 10:43:48 +02005874 skb = nlmsg_new(rt6_nlmsg_size(rt), gfp_any());
David S. Miller38308472011-12-03 18:02:47 -05005875 if (!skb)
Thomas Graf21713eb2006-08-15 00:35:24 -07005876 goto errout;
5877
David Ahernd4ead6b2018-04-17 17:33:16 -07005878 err = rt6_fill_node(net, skb, rt, NULL, NULL, NULL, 0,
5879 event, info->portid, seq, nlm_flags);
Patrick McHardy26932562007-01-31 23:16:40 -08005880 if (err < 0) {
5881 /* -EMSGSIZE implies BUG in rt6_nlmsg_size() */
5882 WARN_ON(err == -EMSGSIZE);
5883 kfree_skb(skb);
5884 goto errout;
5885 }
Eric W. Biederman15e47302012-09-07 20:12:54 +00005886 rtnl_notify(skb, net, info->portid, RTNLGRP_IPV6_ROUTE,
Pablo Neira Ayuso1ce85fe2009-02-24 23:18:28 -08005887 info->nlh, gfp_any());
5888 return;
Thomas Graf21713eb2006-08-15 00:35:24 -07005889errout:
5890 if (err < 0)
Daniel Lezcano55786892008-03-04 13:47:47 -08005891 rtnl_set_sk_err(net, RTNLGRP_IPV6_ROUTE, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005892}
5893
David Ahern19a3b7e2019-05-22 12:04:41 -07005894void fib6_rt_update(struct net *net, struct fib6_info *rt,
5895 struct nl_info *info)
5896{
5897 u32 seq = info->nlh ? info->nlh->nlmsg_seq : 0;
5898 struct sk_buff *skb;
5899 int err = -ENOBUFS;
5900
5901 /* call_fib6_entry_notifiers will be removed when in-kernel notifier
5902 * is implemented and supported for nexthop objects
5903 */
5904 call_fib6_entry_notifiers(net, FIB_EVENT_ENTRY_REPLACE, rt, NULL);
5905
5906 skb = nlmsg_new(rt6_nlmsg_size(rt), gfp_any());
5907 if (!skb)
5908 goto errout;
5909
5910 err = rt6_fill_node(net, skb, rt, NULL, NULL, NULL, 0,
5911 RTM_NEWROUTE, info->portid, seq, NLM_F_REPLACE);
5912 if (err < 0) {
5913 /* -EMSGSIZE implies BUG in rt6_nlmsg_size() */
5914 WARN_ON(err == -EMSGSIZE);
5915 kfree_skb(skb);
5916 goto errout;
5917 }
5918 rtnl_notify(skb, net, info->portid, RTNLGRP_IPV6_ROUTE,
5919 info->nlh, gfp_any());
5920 return;
5921errout:
5922 if (err < 0)
5923 rtnl_set_sk_err(net, RTNLGRP_IPV6_ROUTE, err);
5924}
5925
Daniel Lezcano8ed67782008-03-04 13:48:30 -08005926static int ip6_route_dev_notify(struct notifier_block *this,
Jiri Pirko351638e2013-05-28 01:30:21 +00005927 unsigned long event, void *ptr)
Daniel Lezcano8ed67782008-03-04 13:48:30 -08005928{
Jiri Pirko351638e2013-05-28 01:30:21 +00005929 struct net_device *dev = netdev_notifier_info_to_dev(ptr);
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09005930 struct net *net = dev_net(dev);
Daniel Lezcano8ed67782008-03-04 13:48:30 -08005931
WANG Cong242d3a42017-05-08 10:12:13 -07005932 if (!(dev->flags & IFF_LOOPBACK))
5933 return NOTIFY_OK;
5934
5935 if (event == NETDEV_REGISTER) {
David Ahern1cf844c2019-05-22 20:27:59 -07005936 net->ipv6.fib6_null_entry->fib6_nh->fib_nh_dev = dev;
Changli Gaod8d1f302010-06-10 23:31:35 -07005937 net->ipv6.ip6_null_entry->dst.dev = dev;
Daniel Lezcano8ed67782008-03-04 13:48:30 -08005938 net->ipv6.ip6_null_entry->rt6i_idev = in6_dev_get(dev);
5939#ifdef CONFIG_IPV6_MULTIPLE_TABLES
Changli Gaod8d1f302010-06-10 23:31:35 -07005940 net->ipv6.ip6_prohibit_entry->dst.dev = dev;
Daniel Lezcano8ed67782008-03-04 13:48:30 -08005941 net->ipv6.ip6_prohibit_entry->rt6i_idev = in6_dev_get(dev);
Changli Gaod8d1f302010-06-10 23:31:35 -07005942 net->ipv6.ip6_blk_hole_entry->dst.dev = dev;
Daniel Lezcano8ed67782008-03-04 13:48:30 -08005943 net->ipv6.ip6_blk_hole_entry->rt6i_idev = in6_dev_get(dev);
5944#endif
WANG Cong76da0702017-06-20 11:42:27 -07005945 } else if (event == NETDEV_UNREGISTER &&
5946 dev->reg_state != NETREG_UNREGISTERED) {
5947 /* NETDEV_UNREGISTER could be fired for multiple times by
5948 * netdev_wait_allrefs(). Make sure we only call this once.
5949 */
Eric Dumazet12d94a82017-08-15 04:09:51 -07005950 in6_dev_put_clear(&net->ipv6.ip6_null_entry->rt6i_idev);
WANG Cong242d3a42017-05-08 10:12:13 -07005951#ifdef CONFIG_IPV6_MULTIPLE_TABLES
Eric Dumazet12d94a82017-08-15 04:09:51 -07005952 in6_dev_put_clear(&net->ipv6.ip6_prohibit_entry->rt6i_idev);
5953 in6_dev_put_clear(&net->ipv6.ip6_blk_hole_entry->rt6i_idev);
WANG Cong242d3a42017-05-08 10:12:13 -07005954#endif
Daniel Lezcano8ed67782008-03-04 13:48:30 -08005955 }
5956
5957 return NOTIFY_OK;
5958}
5959
Linus Torvalds1da177e2005-04-16 15:20:36 -07005960/*
5961 * /proc
5962 */
5963
5964#ifdef CONFIG_PROC_FS
Linus Torvalds1da177e2005-04-16 15:20:36 -07005965static int rt6_stats_seq_show(struct seq_file *seq, void *v)
5966{
Daniel Lezcano69ddb802008-03-04 13:46:23 -08005967 struct net *net = (struct net *)seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005968 seq_printf(seq, "%04x %04x %04x %04x %04x %04x %04x\n",
Daniel Lezcano69ddb802008-03-04 13:46:23 -08005969 net->ipv6.rt6_stats->fib_nodes,
5970 net->ipv6.rt6_stats->fib_route_nodes,
Wei Wang81eb8442017-10-06 12:06:11 -07005971 atomic_read(&net->ipv6.rt6_stats->fib_rt_alloc),
Daniel Lezcano69ddb802008-03-04 13:46:23 -08005972 net->ipv6.rt6_stats->fib_rt_entries,
5973 net->ipv6.rt6_stats->fib_rt_cache,
Eric Dumazetfc66f952010-10-08 06:37:34 +00005974 dst_entries_get_slow(&net->ipv6.ip6_dst_ops),
Daniel Lezcano69ddb802008-03-04 13:46:23 -08005975 net->ipv6.rt6_stats->fib_discarded_routes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005976
5977 return 0;
5978}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005979#endif /* CONFIG_PROC_FS */
5980
5981#ifdef CONFIG_SYSCTL
5982
Linus Torvalds1da177e2005-04-16 15:20:36 -07005983static
Joe Perchesfe2c6332013-06-11 23:04:25 -07005984int ipv6_sysctl_rtcache_flush(struct ctl_table *ctl, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005985 void __user *buffer, size_t *lenp, loff_t *ppos)
5986{
Lucian Adrian Grijincuc486da32011-02-24 19:48:03 +00005987 struct net *net;
5988 int delay;
Aditya Pakkif0fb9b22018-12-24 10:30:17 -06005989 int ret;
Lucian Adrian Grijincuc486da32011-02-24 19:48:03 +00005990 if (!write)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005991 return -EINVAL;
Lucian Adrian Grijincuc486da32011-02-24 19:48:03 +00005992
5993 net = (struct net *)ctl->extra1;
5994 delay = net->ipv6.sysctl.flush_delay;
Aditya Pakkif0fb9b22018-12-24 10:30:17 -06005995 ret = proc_dointvec(ctl, write, buffer, lenp, ppos);
5996 if (ret)
5997 return ret;
5998
Michal Kubeček2ac3ac82013-08-01 10:04:14 +02005999 fib6_run_gc(delay <= 0 ? 0 : (unsigned long)delay, net, delay > 0);
Lucian Adrian Grijincuc486da32011-02-24 19:48:03 +00006000 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006001}
6002
David Ahern7c6bb7d2018-10-11 20:17:21 -07006003static int zero;
6004static int one = 1;
6005
David Aherned792e22018-10-08 14:06:34 -07006006static struct ctl_table ipv6_route_table_template[] = {
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09006007 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006008 .procname = "flush",
Daniel Lezcano49905092008-01-10 03:01:01 -08006009 .data = &init_net.ipv6.sysctl.flush_delay,
Linus Torvalds1da177e2005-04-16 15:20:36 -07006010 .maxlen = sizeof(int),
Dave Jones89c8b3a12005-04-28 12:11:49 -07006011 .mode = 0200,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08006012 .proc_handler = ipv6_sysctl_rtcache_flush
Linus Torvalds1da177e2005-04-16 15:20:36 -07006013 },
6014 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006015 .procname = "gc_thresh",
Daniel Lezcano9a7ec3a2008-03-04 13:48:53 -08006016 .data = &ip6_dst_ops_template.gc_thresh,
Linus Torvalds1da177e2005-04-16 15:20:36 -07006017 .maxlen = sizeof(int),
6018 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08006019 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07006020 },
6021 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006022 .procname = "max_size",
Daniel Lezcano49905092008-01-10 03:01:01 -08006023 .data = &init_net.ipv6.sysctl.ip6_rt_max_size,
Linus Torvalds1da177e2005-04-16 15:20:36 -07006024 .maxlen = sizeof(int),
6025 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08006026 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07006027 },
6028 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006029 .procname = "gc_min_interval",
Daniel Lezcano49905092008-01-10 03:01:01 -08006030 .data = &init_net.ipv6.sysctl.ip6_rt_gc_min_interval,
Linus Torvalds1da177e2005-04-16 15:20:36 -07006031 .maxlen = sizeof(int),
6032 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08006033 .proc_handler = proc_dointvec_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07006034 },
6035 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006036 .procname = "gc_timeout",
Daniel Lezcano49905092008-01-10 03:01:01 -08006037 .data = &init_net.ipv6.sysctl.ip6_rt_gc_timeout,
Linus Torvalds1da177e2005-04-16 15:20:36 -07006038 .maxlen = sizeof(int),
6039 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08006040 .proc_handler = proc_dointvec_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07006041 },
6042 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006043 .procname = "gc_interval",
Daniel Lezcano49905092008-01-10 03:01:01 -08006044 .data = &init_net.ipv6.sysctl.ip6_rt_gc_interval,
Linus Torvalds1da177e2005-04-16 15:20:36 -07006045 .maxlen = sizeof(int),
6046 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08006047 .proc_handler = proc_dointvec_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07006048 },
6049 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006050 .procname = "gc_elasticity",
Daniel Lezcano49905092008-01-10 03:01:01 -08006051 .data = &init_net.ipv6.sysctl.ip6_rt_gc_elasticity,
Linus Torvalds1da177e2005-04-16 15:20:36 -07006052 .maxlen = sizeof(int),
6053 .mode = 0644,
Min Zhangf3d3f612010-08-14 22:42:51 -07006054 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07006055 },
6056 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006057 .procname = "mtu_expires",
Daniel Lezcano49905092008-01-10 03:01:01 -08006058 .data = &init_net.ipv6.sysctl.ip6_rt_mtu_expires,
Linus Torvalds1da177e2005-04-16 15:20:36 -07006059 .maxlen = sizeof(int),
6060 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08006061 .proc_handler = proc_dointvec_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07006062 },
6063 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006064 .procname = "min_adv_mss",
Daniel Lezcano49905092008-01-10 03:01:01 -08006065 .data = &init_net.ipv6.sysctl.ip6_rt_min_advmss,
Linus Torvalds1da177e2005-04-16 15:20:36 -07006066 .maxlen = sizeof(int),
6067 .mode = 0644,
Min Zhangf3d3f612010-08-14 22:42:51 -07006068 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07006069 },
6070 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006071 .procname = "gc_min_interval_ms",
Daniel Lezcano49905092008-01-10 03:01:01 -08006072 .data = &init_net.ipv6.sysctl.ip6_rt_gc_min_interval,
Linus Torvalds1da177e2005-04-16 15:20:36 -07006073 .maxlen = sizeof(int),
6074 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08006075 .proc_handler = proc_dointvec_ms_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07006076 },
David Ahern7c6bb7d2018-10-11 20:17:21 -07006077 {
6078 .procname = "skip_notify_on_dev_down",
6079 .data = &init_net.ipv6.sysctl.skip_notify_on_dev_down,
6080 .maxlen = sizeof(int),
6081 .mode = 0644,
6082 .proc_handler = proc_dointvec,
6083 .extra1 = &zero,
6084 .extra2 = &one,
6085 },
Eric W. Biedermanf8572d82009-11-05 13:32:03 -08006086 { }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006087};
6088
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00006089struct ctl_table * __net_init ipv6_route_sysctl_init(struct net *net)
Daniel Lezcano760f2d02008-01-10 02:53:43 -08006090{
6091 struct ctl_table *table;
6092
6093 table = kmemdup(ipv6_route_table_template,
6094 sizeof(ipv6_route_table_template),
6095 GFP_KERNEL);
YOSHIFUJI Hideaki5ee09102008-02-28 00:24:28 +09006096
6097 if (table) {
6098 table[0].data = &net->ipv6.sysctl.flush_delay;
Lucian Adrian Grijincuc486da32011-02-24 19:48:03 +00006099 table[0].extra1 = net;
Alexey Dobriyan86393e52009-08-29 01:34:49 +00006100 table[1].data = &net->ipv6.ip6_dst_ops.gc_thresh;
YOSHIFUJI Hideaki5ee09102008-02-28 00:24:28 +09006101 table[2].data = &net->ipv6.sysctl.ip6_rt_max_size;
6102 table[3].data = &net->ipv6.sysctl.ip6_rt_gc_min_interval;
6103 table[4].data = &net->ipv6.sysctl.ip6_rt_gc_timeout;
6104 table[5].data = &net->ipv6.sysctl.ip6_rt_gc_interval;
6105 table[6].data = &net->ipv6.sysctl.ip6_rt_gc_elasticity;
6106 table[7].data = &net->ipv6.sysctl.ip6_rt_mtu_expires;
6107 table[8].data = &net->ipv6.sysctl.ip6_rt_min_advmss;
Alexey Dobriyan9c69fab2009-12-18 20:11:03 -08006108 table[9].data = &net->ipv6.sysctl.ip6_rt_gc_min_interval;
David Ahern7c6bb7d2018-10-11 20:17:21 -07006109 table[10].data = &net->ipv6.sysctl.skip_notify_on_dev_down;
Eric W. Biederman464dc802012-11-16 03:02:59 +00006110
6111 /* Don't export sysctls to unprivileged users */
6112 if (net->user_ns != &init_user_ns)
6113 table[0].procname = NULL;
YOSHIFUJI Hideaki5ee09102008-02-28 00:24:28 +09006114 }
6115
Daniel Lezcano760f2d02008-01-10 02:53:43 -08006116 return table;
6117}
Linus Torvalds1da177e2005-04-16 15:20:36 -07006118#endif
6119
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00006120static int __net_init ip6_route_net_init(struct net *net)
Daniel Lezcanocdb18762008-03-04 13:45:33 -08006121{
Pavel Emelyanov633d424b2008-04-21 14:25:23 -07006122 int ret = -ENOMEM;
Daniel Lezcano8ed67782008-03-04 13:48:30 -08006123
Alexey Dobriyan86393e52009-08-29 01:34:49 +00006124 memcpy(&net->ipv6.ip6_dst_ops, &ip6_dst_ops_template,
6125 sizeof(net->ipv6.ip6_dst_ops));
Benjamin Theryf2fc6a52008-03-04 13:49:23 -08006126
Eric Dumazetfc66f952010-10-08 06:37:34 +00006127 if (dst_entries_init(&net->ipv6.ip6_dst_ops) < 0)
6128 goto out_ip6_dst_ops;
6129
David Ahern1cf844c2019-05-22 20:27:59 -07006130 net->ipv6.fib6_null_entry = fib6_info_alloc(GFP_KERNEL, true);
David Ahern421842e2018-04-17 17:33:18 -07006131 if (!net->ipv6.fib6_null_entry)
6132 goto out_ip6_dst_entries;
David Ahern1cf844c2019-05-22 20:27:59 -07006133 memcpy(net->ipv6.fib6_null_entry, &fib6_null_entry_template,
6134 sizeof(*net->ipv6.fib6_null_entry));
David Ahern421842e2018-04-17 17:33:18 -07006135
Daniel Lezcano8ed67782008-03-04 13:48:30 -08006136 net->ipv6.ip6_null_entry = kmemdup(&ip6_null_entry_template,
6137 sizeof(*net->ipv6.ip6_null_entry),
6138 GFP_KERNEL);
6139 if (!net->ipv6.ip6_null_entry)
David Ahern421842e2018-04-17 17:33:18 -07006140 goto out_fib6_null_entry;
Changli Gaod8d1f302010-06-10 23:31:35 -07006141 net->ipv6.ip6_null_entry->dst.ops = &net->ipv6.ip6_dst_ops;
David S. Miller62fa8a82011-01-26 20:51:05 -08006142 dst_init_metrics(&net->ipv6.ip6_null_entry->dst,
6143 ip6_template_metrics, true);
Wei Wang74109212019-06-20 17:36:38 -07006144 INIT_LIST_HEAD(&net->ipv6.ip6_null_entry->rt6i_uncached);
Daniel Lezcano8ed67782008-03-04 13:48:30 -08006145
6146#ifdef CONFIG_IPV6_MULTIPLE_TABLES
Vincent Bernatfeca7d82017-08-08 20:23:49 +02006147 net->ipv6.fib6_has_custom_rules = false;
Daniel Lezcano8ed67782008-03-04 13:48:30 -08006148 net->ipv6.ip6_prohibit_entry = kmemdup(&ip6_prohibit_entry_template,
6149 sizeof(*net->ipv6.ip6_prohibit_entry),
6150 GFP_KERNEL);
Peter Zijlstra68fffc62008-10-07 14:12:10 -07006151 if (!net->ipv6.ip6_prohibit_entry)
6152 goto out_ip6_null_entry;
Changli Gaod8d1f302010-06-10 23:31:35 -07006153 net->ipv6.ip6_prohibit_entry->dst.ops = &net->ipv6.ip6_dst_ops;
David S. Miller62fa8a82011-01-26 20:51:05 -08006154 dst_init_metrics(&net->ipv6.ip6_prohibit_entry->dst,
6155 ip6_template_metrics, true);
Wei Wang74109212019-06-20 17:36:38 -07006156 INIT_LIST_HEAD(&net->ipv6.ip6_prohibit_entry->rt6i_uncached);
Daniel Lezcano8ed67782008-03-04 13:48:30 -08006157
6158 net->ipv6.ip6_blk_hole_entry = kmemdup(&ip6_blk_hole_entry_template,
6159 sizeof(*net->ipv6.ip6_blk_hole_entry),
6160 GFP_KERNEL);
Peter Zijlstra68fffc62008-10-07 14:12:10 -07006161 if (!net->ipv6.ip6_blk_hole_entry)
6162 goto out_ip6_prohibit_entry;
Changli Gaod8d1f302010-06-10 23:31:35 -07006163 net->ipv6.ip6_blk_hole_entry->dst.ops = &net->ipv6.ip6_dst_ops;
David S. Miller62fa8a82011-01-26 20:51:05 -08006164 dst_init_metrics(&net->ipv6.ip6_blk_hole_entry->dst,
6165 ip6_template_metrics, true);
Wei Wang74109212019-06-20 17:36:38 -07006166 INIT_LIST_HEAD(&net->ipv6.ip6_blk_hole_entry->rt6i_uncached);
Daniel Lezcano8ed67782008-03-04 13:48:30 -08006167#endif
6168
Peter Zijlstrab339a47c2008-10-07 14:15:00 -07006169 net->ipv6.sysctl.flush_delay = 0;
6170 net->ipv6.sysctl.ip6_rt_max_size = 4096;
6171 net->ipv6.sysctl.ip6_rt_gc_min_interval = HZ / 2;
6172 net->ipv6.sysctl.ip6_rt_gc_timeout = 60*HZ;
6173 net->ipv6.sysctl.ip6_rt_gc_interval = 30*HZ;
6174 net->ipv6.sysctl.ip6_rt_gc_elasticity = 9;
6175 net->ipv6.sysctl.ip6_rt_mtu_expires = 10*60*HZ;
6176 net->ipv6.sysctl.ip6_rt_min_advmss = IPV6_MIN_MTU - 20 - 40;
David Ahern7c6bb7d2018-10-11 20:17:21 -07006177 net->ipv6.sysctl.skip_notify_on_dev_down = 0;
Peter Zijlstrab339a47c2008-10-07 14:15:00 -07006178
Benjamin Thery6891a342008-03-04 13:49:47 -08006179 net->ipv6.ip6_rt_gc_expire = 30*HZ;
6180
Daniel Lezcano8ed67782008-03-04 13:48:30 -08006181 ret = 0;
6182out:
6183 return ret;
Benjamin Theryf2fc6a52008-03-04 13:49:23 -08006184
Peter Zijlstra68fffc62008-10-07 14:12:10 -07006185#ifdef CONFIG_IPV6_MULTIPLE_TABLES
6186out_ip6_prohibit_entry:
6187 kfree(net->ipv6.ip6_prohibit_entry);
6188out_ip6_null_entry:
6189 kfree(net->ipv6.ip6_null_entry);
6190#endif
David Ahern421842e2018-04-17 17:33:18 -07006191out_fib6_null_entry:
6192 kfree(net->ipv6.fib6_null_entry);
Eric Dumazetfc66f952010-10-08 06:37:34 +00006193out_ip6_dst_entries:
6194 dst_entries_destroy(&net->ipv6.ip6_dst_ops);
Benjamin Theryf2fc6a52008-03-04 13:49:23 -08006195out_ip6_dst_ops:
Benjamin Theryf2fc6a52008-03-04 13:49:23 -08006196 goto out;
Daniel Lezcanocdb18762008-03-04 13:45:33 -08006197}
6198
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00006199static void __net_exit ip6_route_net_exit(struct net *net)
Daniel Lezcanocdb18762008-03-04 13:45:33 -08006200{
David Ahern421842e2018-04-17 17:33:18 -07006201 kfree(net->ipv6.fib6_null_entry);
Daniel Lezcano8ed67782008-03-04 13:48:30 -08006202 kfree(net->ipv6.ip6_null_entry);
6203#ifdef CONFIG_IPV6_MULTIPLE_TABLES
6204 kfree(net->ipv6.ip6_prohibit_entry);
6205 kfree(net->ipv6.ip6_blk_hole_entry);
6206#endif
Xiaotian Feng41bb78b2010-11-02 16:11:05 +00006207 dst_entries_destroy(&net->ipv6.ip6_dst_ops);
Daniel Lezcanocdb18762008-03-04 13:45:33 -08006208}
6209
Thomas Grafd1896342012-06-18 12:08:33 +00006210static int __net_init ip6_route_net_init_late(struct net *net)
6211{
6212#ifdef CONFIG_PROC_FS
Christoph Hellwigc3506372018-04-10 19:42:55 +02006213 proc_create_net("ipv6_route", 0, net->proc_net, &ipv6_route_seq_ops,
6214 sizeof(struct ipv6_route_iter));
Christoph Hellwig3617d942018-04-13 20:38:35 +02006215 proc_create_net_single("rt6_stats", 0444, net->proc_net,
6216 rt6_stats_seq_show, NULL);
Thomas Grafd1896342012-06-18 12:08:33 +00006217#endif
6218 return 0;
6219}
6220
6221static void __net_exit ip6_route_net_exit_late(struct net *net)
6222{
6223#ifdef CONFIG_PROC_FS
Gao fengece31ff2013-02-18 01:34:56 +00006224 remove_proc_entry("ipv6_route", net->proc_net);
6225 remove_proc_entry("rt6_stats", net->proc_net);
Thomas Grafd1896342012-06-18 12:08:33 +00006226#endif
6227}
6228
Daniel Lezcanocdb18762008-03-04 13:45:33 -08006229static struct pernet_operations ip6_route_net_ops = {
6230 .init = ip6_route_net_init,
6231 .exit = ip6_route_net_exit,
6232};
6233
David S. Millerc3426b42012-06-09 16:27:05 -07006234static int __net_init ipv6_inetpeer_init(struct net *net)
6235{
6236 struct inet_peer_base *bp = kmalloc(sizeof(*bp), GFP_KERNEL);
6237
6238 if (!bp)
6239 return -ENOMEM;
6240 inet_peer_base_init(bp);
6241 net->ipv6.peers = bp;
6242 return 0;
6243}
6244
6245static void __net_exit ipv6_inetpeer_exit(struct net *net)
6246{
6247 struct inet_peer_base *bp = net->ipv6.peers;
6248
6249 net->ipv6.peers = NULL;
David S. Miller56a6b242012-06-09 16:32:41 -07006250 inetpeer_invalidate_tree(bp);
David S. Millerc3426b42012-06-09 16:27:05 -07006251 kfree(bp);
6252}
6253
David S. Miller2b823f72012-06-09 19:00:16 -07006254static struct pernet_operations ipv6_inetpeer_ops = {
David S. Millerc3426b42012-06-09 16:27:05 -07006255 .init = ipv6_inetpeer_init,
6256 .exit = ipv6_inetpeer_exit,
6257};
6258
Thomas Grafd1896342012-06-18 12:08:33 +00006259static struct pernet_operations ip6_route_net_late_ops = {
6260 .init = ip6_route_net_init_late,
6261 .exit = ip6_route_net_exit_late,
6262};
6263
Daniel Lezcano8ed67782008-03-04 13:48:30 -08006264static struct notifier_block ip6_route_dev_notifier = {
6265 .notifier_call = ip6_route_dev_notify,
WANG Cong242d3a42017-05-08 10:12:13 -07006266 .priority = ADDRCONF_NOTIFY_PRIORITY - 10,
Daniel Lezcano8ed67782008-03-04 13:48:30 -08006267};
6268
WANG Cong2f460932017-05-03 22:07:31 -07006269void __init ip6_route_init_special_entries(void)
6270{
6271 /* Registering of the loopback is done before this portion of code,
6272 * the loopback reference in rt6_info will not be taken, do it
6273 * manually for init_net */
David Ahern1cf844c2019-05-22 20:27:59 -07006274 init_net.ipv6.fib6_null_entry->fib6_nh->fib_nh_dev = init_net.loopback_dev;
WANG Cong2f460932017-05-03 22:07:31 -07006275 init_net.ipv6.ip6_null_entry->dst.dev = init_net.loopback_dev;
6276 init_net.ipv6.ip6_null_entry->rt6i_idev = in6_dev_get(init_net.loopback_dev);
6277 #ifdef CONFIG_IPV6_MULTIPLE_TABLES
6278 init_net.ipv6.ip6_prohibit_entry->dst.dev = init_net.loopback_dev;
6279 init_net.ipv6.ip6_prohibit_entry->rt6i_idev = in6_dev_get(init_net.loopback_dev);
6280 init_net.ipv6.ip6_blk_hole_entry->dst.dev = init_net.loopback_dev;
6281 init_net.ipv6.ip6_blk_hole_entry->rt6i_idev = in6_dev_get(init_net.loopback_dev);
6282 #endif
6283}
6284
Daniel Lezcano433d49c2007-12-07 00:43:48 -08006285int __init ip6_route_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006286{
Daniel Lezcano433d49c2007-12-07 00:43:48 -08006287 int ret;
Martin KaFai Lau8d0b94a2015-05-22 20:56:04 -07006288 int cpu;
Daniel Lezcano433d49c2007-12-07 00:43:48 -08006289
Daniel Lezcano9a7ec3a2008-03-04 13:48:53 -08006290 ret = -ENOMEM;
6291 ip6_dst_ops_template.kmem_cachep =
6292 kmem_cache_create("ip6_dst_cache", sizeof(struct rt6_info), 0,
6293 SLAB_HWCACHE_ALIGN, NULL);
6294 if (!ip6_dst_ops_template.kmem_cachep)
Fernando Carrijoc19a28e2009-01-07 18:09:08 -08006295 goto out;
David S. Miller14e50e52007-05-24 18:17:54 -07006296
Eric Dumazetfc66f952010-10-08 06:37:34 +00006297 ret = dst_entries_init(&ip6_dst_blackhole_ops);
Daniel Lezcano8ed67782008-03-04 13:48:30 -08006298 if (ret)
Daniel Lezcanobdb32892008-03-04 13:48:10 -08006299 goto out_kmem_cache;
Daniel Lezcanobdb32892008-03-04 13:48:10 -08006300
David S. Millerc3426b42012-06-09 16:27:05 -07006301 ret = register_pernet_subsys(&ipv6_inetpeer_ops);
6302 if (ret)
David S. Millere8803b62012-06-16 01:12:19 -07006303 goto out_dst_entries;
Thomas Graf2a0c4512012-06-14 23:00:17 +00006304
David S. Miller7e52b332012-06-15 15:51:55 -07006305 ret = register_pernet_subsys(&ip6_route_net_ops);
6306 if (ret)
6307 goto out_register_inetpeer;
David S. Millerc3426b42012-06-09 16:27:05 -07006308
Arnaud Ebalard5dc121e2008-10-01 02:37:56 -07006309 ip6_dst_blackhole_ops.kmem_cachep = ip6_dst_ops_template.kmem_cachep;
6310
David S. Millere8803b62012-06-16 01:12:19 -07006311 ret = fib6_init();
Daniel Lezcano433d49c2007-12-07 00:43:48 -08006312 if (ret)
Daniel Lezcano8ed67782008-03-04 13:48:30 -08006313 goto out_register_subsys;
Daniel Lezcano433d49c2007-12-07 00:43:48 -08006314
Daniel Lezcano433d49c2007-12-07 00:43:48 -08006315 ret = xfrm6_init();
6316 if (ret)
David S. Millere8803b62012-06-16 01:12:19 -07006317 goto out_fib6_init;
Daniel Lezcanoc35b7e72007-12-08 00:14:11 -08006318
Daniel Lezcano433d49c2007-12-07 00:43:48 -08006319 ret = fib6_rules_init();
6320 if (ret)
6321 goto xfrm6_init;
Daniel Lezcano7e5449c2007-12-08 00:14:54 -08006322
Thomas Grafd1896342012-06-18 12:08:33 +00006323 ret = register_pernet_subsys(&ip6_route_net_late_ops);
6324 if (ret)
6325 goto fib6_rules_init;
6326
Florian Westphal16feebc2017-12-02 21:44:08 +01006327 ret = rtnl_register_module(THIS_MODULE, PF_INET6, RTM_NEWROUTE,
6328 inet6_rtm_newroute, NULL, 0);
6329 if (ret < 0)
6330 goto out_register_late_subsys;
6331
6332 ret = rtnl_register_module(THIS_MODULE, PF_INET6, RTM_DELROUTE,
6333 inet6_rtm_delroute, NULL, 0);
6334 if (ret < 0)
6335 goto out_register_late_subsys;
6336
6337 ret = rtnl_register_module(THIS_MODULE, PF_INET6, RTM_GETROUTE,
6338 inet6_rtm_getroute, NULL,
6339 RTNL_FLAG_DOIT_UNLOCKED);
6340 if (ret < 0)
Thomas Grafd1896342012-06-18 12:08:33 +00006341 goto out_register_late_subsys;
Daniel Lezcano433d49c2007-12-07 00:43:48 -08006342
Daniel Lezcano8ed67782008-03-04 13:48:30 -08006343 ret = register_netdevice_notifier(&ip6_route_dev_notifier);
Daniel Lezcanocdb18762008-03-04 13:45:33 -08006344 if (ret)
Thomas Grafd1896342012-06-18 12:08:33 +00006345 goto out_register_late_subsys;
Daniel Lezcano8ed67782008-03-04 13:48:30 -08006346
Martin KaFai Lau8d0b94a2015-05-22 20:56:04 -07006347 for_each_possible_cpu(cpu) {
6348 struct uncached_list *ul = per_cpu_ptr(&rt6_uncached_list, cpu);
6349
6350 INIT_LIST_HEAD(&ul->head);
6351 spin_lock_init(&ul->lock);
6352 }
6353
Daniel Lezcano433d49c2007-12-07 00:43:48 -08006354out:
6355 return ret;
6356
Thomas Grafd1896342012-06-18 12:08:33 +00006357out_register_late_subsys:
Florian Westphal16feebc2017-12-02 21:44:08 +01006358 rtnl_unregister_all(PF_INET6);
Thomas Grafd1896342012-06-18 12:08:33 +00006359 unregister_pernet_subsys(&ip6_route_net_late_ops);
Daniel Lezcano433d49c2007-12-07 00:43:48 -08006360fib6_rules_init:
Daniel Lezcano433d49c2007-12-07 00:43:48 -08006361 fib6_rules_cleanup();
6362xfrm6_init:
Daniel Lezcano433d49c2007-12-07 00:43:48 -08006363 xfrm6_fini();
Thomas Graf2a0c4512012-06-14 23:00:17 +00006364out_fib6_init:
6365 fib6_gc_cleanup();
Daniel Lezcano8ed67782008-03-04 13:48:30 -08006366out_register_subsys:
6367 unregister_pernet_subsys(&ip6_route_net_ops);
David S. Miller7e52b332012-06-15 15:51:55 -07006368out_register_inetpeer:
6369 unregister_pernet_subsys(&ipv6_inetpeer_ops);
Eric Dumazetfc66f952010-10-08 06:37:34 +00006370out_dst_entries:
6371 dst_entries_destroy(&ip6_dst_blackhole_ops);
Daniel Lezcano433d49c2007-12-07 00:43:48 -08006372out_kmem_cache:
Benjamin Theryf2fc6a52008-03-04 13:49:23 -08006373 kmem_cache_destroy(ip6_dst_ops_template.kmem_cachep);
Daniel Lezcano433d49c2007-12-07 00:43:48 -08006374 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006375}
6376
6377void ip6_route_cleanup(void)
6378{
Daniel Lezcano8ed67782008-03-04 13:48:30 -08006379 unregister_netdevice_notifier(&ip6_route_dev_notifier);
Thomas Grafd1896342012-06-18 12:08:33 +00006380 unregister_pernet_subsys(&ip6_route_net_late_ops);
Thomas Graf101367c2006-08-04 03:39:02 -07006381 fib6_rules_cleanup();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006382 xfrm6_fini();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006383 fib6_gc_cleanup();
David S. Millerc3426b42012-06-09 16:27:05 -07006384 unregister_pernet_subsys(&ipv6_inetpeer_ops);
Daniel Lezcano8ed67782008-03-04 13:48:30 -08006385 unregister_pernet_subsys(&ip6_route_net_ops);
Xiaotian Feng41bb78b2010-11-02 16:11:05 +00006386 dst_entries_destroy(&ip6_dst_blackhole_ops);
Benjamin Theryf2fc6a52008-03-04 13:49:23 -08006387 kmem_cache_destroy(ip6_dst_ops_template.kmem_cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006388}