blob: 7a014ca877ed75fa518e1e2af0e5797f2c0c629c [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Linux INET6 implementation
3 * FIB front-end.
4 *
5 * Authors:
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09006 * Pedro Roque <roque@di.fc.ul.pt>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License
10 * as published by the Free Software Foundation; either version
11 * 2 of the License, or (at your option) any later version.
12 */
13
14/* Changes:
15 *
16 * YOSHIFUJI Hideaki @USAGI
17 * reworked default router selection.
18 * - respect outgoing interface
19 * - select from (probably) reachable routers (i.e.
20 * routers in REACHABLE, STALE, DELAY or PROBE states).
21 * - always select the same router if it is (probably)
22 * reachable. otherwise, round-robin the list.
YOSHIFUJI Hideakic0bece92006-08-23 17:23:25 -070023 * Ville Nuorvala
24 * Fixed routing subtrees.
Linus Torvalds1da177e2005-04-16 15:20:36 -070025 */
26
Joe Perchesf3213832012-05-15 14:11:53 +000027#define pr_fmt(fmt) "IPv6: " fmt
28
Randy Dunlap4fc268d2006-01-11 12:17:47 -080029#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <linux/errno.h>
Paul Gortmakerbc3b2d72011-07-15 11:47:34 -040031#include <linux/export.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include <linux/types.h>
33#include <linux/times.h>
34#include <linux/socket.h>
35#include <linux/sockios.h>
36#include <linux/net.h>
37#include <linux/route.h>
38#include <linux/netdevice.h>
39#include <linux/in6.h>
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +090040#include <linux/mroute6.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#include <linux/init.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070042#include <linux/if_arp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#include <linux/proc_fs.h>
44#include <linux/seq_file.h>
Daniel Lezcano5b7c9312008-03-03 23:28:58 -080045#include <linux/nsproxy.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090046#include <linux/slab.h>
Wei Wang35732d02017-10-06 12:05:57 -070047#include <linux/jhash.h>
Eric W. Biederman457c4cb2007-09-12 12:01:34 +020048#include <net/net_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070049#include <net/snmp.h>
50#include <net/ipv6.h>
51#include <net/ip6_fib.h>
52#include <net/ip6_route.h>
53#include <net/ndisc.h>
54#include <net/addrconf.h>
55#include <net/tcp.h>
56#include <linux/rtnetlink.h>
57#include <net/dst.h>
Jiri Benc904af042015-08-20 13:56:31 +020058#include <net/dst_metadata.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070059#include <net/xfrm.h>
Tom Tucker8d717402006-07-30 20:43:36 -070060#include <net/netevent.h>
Thomas Graf21713eb2006-08-15 00:35:24 -070061#include <net/netlink.h>
David Ahern3c618c12019-04-20 09:28:20 -070062#include <net/rtnh.h>
Roopa Prabhu19e42e42015-07-21 10:43:48 +020063#include <net/lwtunnel.h>
Jiri Benc904af042015-08-20 13:56:31 +020064#include <net/ip_tunnels.h>
David Ahernca254492015-10-12 11:47:10 -070065#include <net/l3mdev.h>
Roopa Prabhueacb9382018-05-22 14:03:28 -070066#include <net/ip.h>
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080067#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
69#ifdef CONFIG_SYSCTL
70#include <linux/sysctl.h>
71#endif
72
David Ahern30d444d2018-05-23 17:08:48 -070073static int ip6_rt_type_to_error(u8 fib6_type);
74
75#define CREATE_TRACE_POINTS
76#include <trace/events/fib6.h>
77EXPORT_TRACEPOINT_SYMBOL_GPL(fib6_table_lookup);
78#undef CREATE_TRACE_POINTS
79
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +020080enum rt6_nud_state {
Jiri Benc7e980562013-12-11 13:48:20 +010081 RT6_NUD_FAIL_HARD = -3,
82 RT6_NUD_FAIL_PROBE = -2,
83 RT6_NUD_FAIL_DO_RR = -1,
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +020084 RT6_NUD_SUCCEED = 1
85};
86
Linus Torvalds1da177e2005-04-16 15:20:36 -070087static struct dst_entry *ip6_dst_check(struct dst_entry *dst, u32 cookie);
David S. Miller0dbaee32010-12-13 12:52:14 -080088static unsigned int ip6_default_advmss(const struct dst_entry *dst);
Steffen Klassertebb762f2011-11-23 02:12:51 +000089static unsigned int ip6_mtu(const struct dst_entry *dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -070090static struct dst_entry *ip6_negative_advice(struct dst_entry *);
91static void ip6_dst_destroy(struct dst_entry *);
92static void ip6_dst_ifdown(struct dst_entry *,
93 struct net_device *dev, int how);
Daniel Lezcano569d3642008-01-18 03:56:57 -080094static int ip6_dst_gc(struct dst_ops *ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -070095
96static int ip6_pkt_discard(struct sk_buff *skb);
Eric W. Biedermanede20592015-10-07 16:48:47 -050097static int ip6_pkt_discard_out(struct net *net, struct sock *sk, struct sk_buff *skb);
Kamala R7150aed2013-12-02 19:55:21 +053098static int ip6_pkt_prohibit(struct sk_buff *skb);
Eric W. Biedermanede20592015-10-07 16:48:47 -050099static int ip6_pkt_prohibit_out(struct net *net, struct sock *sk, struct sk_buff *skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100static void ip6_link_failure(struct sk_buff *skb);
David S. Miller6700c272012-07-17 03:29:28 -0700101static void ip6_rt_update_pmtu(struct dst_entry *dst, struct sock *sk,
102 struct sk_buff *skb, u32 mtu);
103static void rt6_do_redirect(struct dst_entry *dst, struct sock *sk,
104 struct sk_buff *skb);
David Ahern702cea52019-04-09 14:41:13 -0700105static int rt6_score_route(const struct fib6_nh *nh, u32 fib6_flags, int oif,
106 int strict);
David Ahern8d1c8022018-04-17 17:33:26 -0700107static size_t rt6_nlmsg_size(struct fib6_info *rt);
David Ahernd4ead6b2018-04-17 17:33:16 -0700108static int rt6_fill_node(struct net *net, struct sk_buff *skb,
David Ahern8d1c8022018-04-17 17:33:26 -0700109 struct fib6_info *rt, struct dst_entry *dst,
David Ahernd4ead6b2018-04-17 17:33:16 -0700110 struct in6_addr *dest, struct in6_addr *src,
David Ahern16a16cd2017-02-02 12:37:11 -0800111 int iif, int type, u32 portid, u32 seq,
112 unsigned int flags);
David Ahern7e4b5122019-04-16 14:36:00 -0700113static struct rt6_info *rt6_find_cached_rt(const struct fib6_result *res,
Wei Wang510e2ce2019-05-16 13:30:54 -0700114 const struct in6_addr *daddr,
115 const struct in6_addr *saddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800117#ifdef CONFIG_IPV6_ROUTE_INFO
David Ahern8d1c8022018-04-17 17:33:26 -0700118static struct fib6_info *rt6_add_route_info(struct net *net,
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000119 const struct in6_addr *prefix, int prefixlen,
David Ahern830218c2016-10-24 10:52:35 -0700120 const struct in6_addr *gwaddr,
121 struct net_device *dev,
Eric Dumazet95c96172012-04-15 05:58:06 +0000122 unsigned int pref);
David Ahern8d1c8022018-04-17 17:33:26 -0700123static struct fib6_info *rt6_get_route_info(struct net *net,
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000124 const struct in6_addr *prefix, int prefixlen,
David Ahern830218c2016-10-24 10:52:35 -0700125 const struct in6_addr *gwaddr,
126 struct net_device *dev);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800127#endif
128
Martin KaFai Lau8d0b94a2015-05-22 20:56:04 -0700129struct uncached_list {
130 spinlock_t lock;
131 struct list_head head;
132};
133
134static DEFINE_PER_CPU_ALIGNED(struct uncached_list, rt6_uncached_list);
135
Xin Long510c3212018-02-14 19:06:02 +0800136void rt6_uncached_list_add(struct rt6_info *rt)
Martin KaFai Lau8d0b94a2015-05-22 20:56:04 -0700137{
138 struct uncached_list *ul = raw_cpu_ptr(&rt6_uncached_list);
139
Martin KaFai Lau8d0b94a2015-05-22 20:56:04 -0700140 rt->rt6i_uncached_list = ul;
141
142 spin_lock_bh(&ul->lock);
143 list_add_tail(&rt->rt6i_uncached, &ul->head);
144 spin_unlock_bh(&ul->lock);
145}
146
Xin Long510c3212018-02-14 19:06:02 +0800147void rt6_uncached_list_del(struct rt6_info *rt)
Martin KaFai Lau8d0b94a2015-05-22 20:56:04 -0700148{
149 if (!list_empty(&rt->rt6i_uncached)) {
150 struct uncached_list *ul = rt->rt6i_uncached_list;
Wei Wang81eb8442017-10-06 12:06:11 -0700151 struct net *net = dev_net(rt->dst.dev);
Martin KaFai Lau8d0b94a2015-05-22 20:56:04 -0700152
153 spin_lock_bh(&ul->lock);
154 list_del(&rt->rt6i_uncached);
Wei Wang81eb8442017-10-06 12:06:11 -0700155 atomic_dec(&net->ipv6.rt6_stats->fib_rt_uncache);
Martin KaFai Lau8d0b94a2015-05-22 20:56:04 -0700156 spin_unlock_bh(&ul->lock);
157 }
158}
159
160static void rt6_uncached_list_flush_dev(struct net *net, struct net_device *dev)
161{
162 struct net_device *loopback_dev = net->loopback_dev;
163 int cpu;
164
Eric W. Biedermane332bc62015-10-12 11:02:08 -0500165 if (dev == loopback_dev)
166 return;
167
Martin KaFai Lau8d0b94a2015-05-22 20:56:04 -0700168 for_each_possible_cpu(cpu) {
169 struct uncached_list *ul = per_cpu_ptr(&rt6_uncached_list, cpu);
170 struct rt6_info *rt;
171
172 spin_lock_bh(&ul->lock);
173 list_for_each_entry(rt, &ul->head, rt6i_uncached) {
174 struct inet6_dev *rt_idev = rt->rt6i_idev;
175 struct net_device *rt_dev = rt->dst.dev;
176
Eric W. Biedermane332bc62015-10-12 11:02:08 -0500177 if (rt_idev->dev == dev) {
Martin KaFai Lau8d0b94a2015-05-22 20:56:04 -0700178 rt->rt6i_idev = in6_dev_get(loopback_dev);
179 in6_dev_put(rt_idev);
180 }
181
Eric W. Biedermane332bc62015-10-12 11:02:08 -0500182 if (rt_dev == dev) {
Martin KaFai Lau8d0b94a2015-05-22 20:56:04 -0700183 rt->dst.dev = loopback_dev;
184 dev_hold(rt->dst.dev);
185 dev_put(rt_dev);
186 }
187 }
188 spin_unlock_bh(&ul->lock);
189 }
190}
191
David Ahernf8a1b432018-04-17 17:33:21 -0700192static inline const void *choose_neigh_daddr(const struct in6_addr *p,
David S. Millerf894cbf2012-07-02 21:52:24 -0700193 struct sk_buff *skb,
194 const void *daddr)
David S. Miller39232972012-01-26 15:22:32 -0500195{
David S. Millera7563f32012-01-26 16:29:16 -0500196 if (!ipv6_addr_any(p))
David S. Miller39232972012-01-26 15:22:32 -0500197 return (const void *) p;
David S. Millerf894cbf2012-07-02 21:52:24 -0700198 else if (skb)
199 return &ipv6_hdr(skb)->daddr;
David S. Miller39232972012-01-26 15:22:32 -0500200 return daddr;
201}
202
David Ahernf8a1b432018-04-17 17:33:21 -0700203struct neighbour *ip6_neigh_lookup(const struct in6_addr *gw,
204 struct net_device *dev,
205 struct sk_buff *skb,
206 const void *daddr)
David S. Millerd3aaeb32011-07-18 00:40:17 -0700207{
David S. Miller39232972012-01-26 15:22:32 -0500208 struct neighbour *n;
209
David Ahernf8a1b432018-04-17 17:33:21 -0700210 daddr = choose_neigh_daddr(gw, skb, daddr);
211 n = __ipv6_neigh_lookup(dev, daddr);
David S. Millerf83c7792011-12-28 15:41:23 -0500212 if (n)
213 return n;
Stefano Brivio7adf3242019-01-02 13:29:27 +0100214
215 n = neigh_create(&nd_tbl, daddr, dev);
216 return IS_ERR(n) ? NULL : n;
David Ahernf8a1b432018-04-17 17:33:21 -0700217}
218
219static struct neighbour *ip6_dst_neigh_lookup(const struct dst_entry *dst,
220 struct sk_buff *skb,
221 const void *daddr)
222{
223 const struct rt6_info *rt = container_of(dst, struct rt6_info, dst);
224
225 return ip6_neigh_lookup(&rt->rt6i_gateway, dst->dev, skb, daddr);
David S. Millerf83c7792011-12-28 15:41:23 -0500226}
227
Julian Anastasov63fca652017-02-06 23:14:15 +0200228static void ip6_confirm_neigh(const struct dst_entry *dst, const void *daddr)
229{
230 struct net_device *dev = dst->dev;
231 struct rt6_info *rt = (struct rt6_info *)dst;
232
David Ahernf8a1b432018-04-17 17:33:21 -0700233 daddr = choose_neigh_daddr(&rt->rt6i_gateway, NULL, daddr);
Julian Anastasov63fca652017-02-06 23:14:15 +0200234 if (!daddr)
235 return;
236 if (dev->flags & (IFF_NOARP | IFF_LOOPBACK))
237 return;
238 if (ipv6_addr_is_multicast((const struct in6_addr *)daddr))
239 return;
240 __ipv6_confirm_neigh(dev, daddr);
241}
242
Daniel Lezcano9a7ec3a2008-03-04 13:48:53 -0800243static struct dst_ops ip6_dst_ops_template = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 .family = AF_INET6,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 .gc = ip6_dst_gc,
246 .gc_thresh = 1024,
247 .check = ip6_dst_check,
David S. Miller0dbaee32010-12-13 12:52:14 -0800248 .default_advmss = ip6_default_advmss,
Steffen Klassertebb762f2011-11-23 02:12:51 +0000249 .mtu = ip6_mtu,
David Ahernd4ead6b2018-04-17 17:33:16 -0700250 .cow_metrics = dst_cow_metrics_generic,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 .destroy = ip6_dst_destroy,
252 .ifdown = ip6_dst_ifdown,
253 .negative_advice = ip6_negative_advice,
254 .link_failure = ip6_link_failure,
255 .update_pmtu = ip6_rt_update_pmtu,
David S. Miller6e157b62012-07-12 00:05:02 -0700256 .redirect = rt6_do_redirect,
Eric W. Biederman9f8955c2015-10-07 16:48:39 -0500257 .local_out = __ip6_local_out,
David Ahernf8a1b432018-04-17 17:33:21 -0700258 .neigh_lookup = ip6_dst_neigh_lookup,
Julian Anastasov63fca652017-02-06 23:14:15 +0200259 .confirm_neigh = ip6_confirm_neigh,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260};
261
Steffen Klassertebb762f2011-11-23 02:12:51 +0000262static unsigned int ip6_blackhole_mtu(const struct dst_entry *dst)
Roland Dreierec831ea2011-01-31 13:16:00 -0800263{
Steffen Klassert618f9bc2011-11-23 02:13:31 +0000264 unsigned int mtu = dst_metric_raw(dst, RTAX_MTU);
265
266 return mtu ? : dst->dev->mtu;
Roland Dreierec831ea2011-01-31 13:16:00 -0800267}
268
David S. Miller6700c272012-07-17 03:29:28 -0700269static void ip6_rt_blackhole_update_pmtu(struct dst_entry *dst, struct sock *sk,
270 struct sk_buff *skb, u32 mtu)
David S. Miller14e50e52007-05-24 18:17:54 -0700271{
272}
273
David S. Miller6700c272012-07-17 03:29:28 -0700274static void ip6_rt_blackhole_redirect(struct dst_entry *dst, struct sock *sk,
275 struct sk_buff *skb)
David S. Millerb587ee32012-07-12 00:39:24 -0700276{
277}
278
David S. Miller14e50e52007-05-24 18:17:54 -0700279static struct dst_ops ip6_dst_blackhole_ops = {
280 .family = AF_INET6,
David S. Miller14e50e52007-05-24 18:17:54 -0700281 .destroy = ip6_dst_destroy,
282 .check = ip6_dst_check,
Steffen Klassertebb762f2011-11-23 02:12:51 +0000283 .mtu = ip6_blackhole_mtu,
Eric Dumazet214f45c2011-02-18 11:39:01 -0800284 .default_advmss = ip6_default_advmss,
David S. Miller14e50e52007-05-24 18:17:54 -0700285 .update_pmtu = ip6_rt_blackhole_update_pmtu,
David S. Millerb587ee32012-07-12 00:39:24 -0700286 .redirect = ip6_rt_blackhole_redirect,
Martin KaFai Lau0a1f5962015-10-15 16:39:58 -0700287 .cow_metrics = dst_cow_metrics_generic,
David Ahernf8a1b432018-04-17 17:33:21 -0700288 .neigh_lookup = ip6_dst_neigh_lookup,
David S. Miller14e50e52007-05-24 18:17:54 -0700289};
290
David S. Miller62fa8a82011-01-26 20:51:05 -0800291static const u32 ip6_template_metrics[RTAX_MAX] = {
Li RongQing14edd872012-10-24 14:01:18 +0800292 [RTAX_HOPLIMIT - 1] = 0,
David S. Miller62fa8a82011-01-26 20:51:05 -0800293};
294
David Ahern8d1c8022018-04-17 17:33:26 -0700295static const struct fib6_info fib6_null_entry_template = {
David Ahern93c2fb22018-04-18 15:38:59 -0700296 .fib6_flags = (RTF_REJECT | RTF_NONEXTHOP),
297 .fib6_protocol = RTPROT_KERNEL,
298 .fib6_metric = ~(u32)0,
Eric Dumazetf05713e2019-04-22 18:35:03 -0700299 .fib6_ref = REFCOUNT_INIT(1),
David Ahern421842e2018-04-17 17:33:18 -0700300 .fib6_type = RTN_UNREACHABLE,
301 .fib6_metrics = (struct dst_metrics *)&dst_default_metrics,
302};
303
Eric Dumazetfb0af4c2012-09-11 21:47:51 +0000304static const struct rt6_info ip6_null_entry_template = {
Changli Gaod8d1f302010-06-10 23:31:35 -0700305 .dst = {
306 .__refcnt = ATOMIC_INIT(1),
307 .__use = 1,
Nicolas Dichtel2c20cbd2012-09-10 22:09:47 +0000308 .obsolete = DST_OBSOLETE_FORCE_CHK,
Changli Gaod8d1f302010-06-10 23:31:35 -0700309 .error = -ENETUNREACH,
Changli Gaod8d1f302010-06-10 23:31:35 -0700310 .input = ip6_pkt_discard,
311 .output = ip6_pkt_discard_out,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 },
313 .rt6i_flags = (RTF_REJECT | RTF_NONEXTHOP),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314};
315
Thomas Graf101367c2006-08-04 03:39:02 -0700316#ifdef CONFIG_IPV6_MULTIPLE_TABLES
317
Eric Dumazetfb0af4c2012-09-11 21:47:51 +0000318static const struct rt6_info ip6_prohibit_entry_template = {
Changli Gaod8d1f302010-06-10 23:31:35 -0700319 .dst = {
320 .__refcnt = ATOMIC_INIT(1),
321 .__use = 1,
Nicolas Dichtel2c20cbd2012-09-10 22:09:47 +0000322 .obsolete = DST_OBSOLETE_FORCE_CHK,
Changli Gaod8d1f302010-06-10 23:31:35 -0700323 .error = -EACCES,
Changli Gaod8d1f302010-06-10 23:31:35 -0700324 .input = ip6_pkt_prohibit,
325 .output = ip6_pkt_prohibit_out,
Thomas Graf101367c2006-08-04 03:39:02 -0700326 },
327 .rt6i_flags = (RTF_REJECT | RTF_NONEXTHOP),
Thomas Graf101367c2006-08-04 03:39:02 -0700328};
329
Eric Dumazetfb0af4c2012-09-11 21:47:51 +0000330static const struct rt6_info ip6_blk_hole_entry_template = {
Changli Gaod8d1f302010-06-10 23:31:35 -0700331 .dst = {
332 .__refcnt = ATOMIC_INIT(1),
333 .__use = 1,
Nicolas Dichtel2c20cbd2012-09-10 22:09:47 +0000334 .obsolete = DST_OBSOLETE_FORCE_CHK,
Changli Gaod8d1f302010-06-10 23:31:35 -0700335 .error = -EINVAL,
Changli Gaod8d1f302010-06-10 23:31:35 -0700336 .input = dst_discard,
Eric W. Biedermanede20592015-10-07 16:48:47 -0500337 .output = dst_discard_out,
Thomas Graf101367c2006-08-04 03:39:02 -0700338 },
339 .rt6i_flags = (RTF_REJECT | RTF_NONEXTHOP),
Thomas Graf101367c2006-08-04 03:39:02 -0700340};
341
342#endif
343
Martin KaFai Lauebfa45f2015-10-15 16:39:57 -0700344static void rt6_info_init(struct rt6_info *rt)
345{
346 struct dst_entry *dst = &rt->dst;
347
348 memset(dst + 1, 0, sizeof(*rt) - sizeof(*dst));
Martin KaFai Lauebfa45f2015-10-15 16:39:57 -0700349 INIT_LIST_HEAD(&rt->rt6i_uncached);
350}
351
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352/* allocate dst with ip6_dst_ops */
David Ahern93531c62018-04-17 17:33:25 -0700353struct rt6_info *ip6_dst_alloc(struct net *net, struct net_device *dev,
354 int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355{
David S. Miller97bab732012-06-09 22:36:36 -0700356 struct rt6_info *rt = dst_alloc(&net->ipv6.ip6_dst_ops, dev,
Wei Wangb2a9c0e2017-06-17 10:42:41 -0700357 1, DST_OBSOLETE_FORCE_CHK, flags);
David S. Millercf911662011-04-28 14:31:47 -0700358
Wei Wang81eb8442017-10-06 12:06:11 -0700359 if (rt) {
Martin KaFai Lauebfa45f2015-10-15 16:39:57 -0700360 rt6_info_init(rt);
Wei Wang81eb8442017-10-06 12:06:11 -0700361 atomic_inc(&net->ipv6.rt6_stats->fib_rt_alloc);
362 }
Steffen Klassert81048912012-07-05 23:37:09 +0000363
David S. Millercf911662011-04-28 14:31:47 -0700364 return rt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365}
David Ahern9ab179d2016-04-07 11:10:06 -0700366EXPORT_SYMBOL(ip6_dst_alloc);
Martin KaFai Laud52d3992015-05-22 20:56:06 -0700367
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368static void ip6_dst_destroy(struct dst_entry *dst)
369{
370 struct rt6_info *rt = (struct rt6_info *)dst;
David Aherna68886a2018-04-20 15:38:02 -0700371 struct fib6_info *from;
Martin KaFai Lau8d0b94a2015-05-22 20:56:04 -0700372 struct inet6_dev *idev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373
David Ahern1620a332018-10-04 20:07:54 -0700374 ip_dst_metrics_put(dst);
Martin KaFai Lau8d0b94a2015-05-22 20:56:04 -0700375 rt6_uncached_list_del(rt);
376
377 idev = rt->rt6i_idev;
David S. Miller38308472011-12-03 18:02:47 -0500378 if (idev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 rt->rt6i_idev = NULL;
380 in6_dev_put(idev);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900381 }
Gao feng1716a962012-04-06 00:13:10 +0000382
Eric Dumazet0e233872019-04-28 12:22:25 -0700383 from = xchg((__force struct fib6_info **)&rt->from, NULL);
David Ahern93531c62018-04-17 17:33:25 -0700384 fib6_info_release(from);
David S. Millerb3419362010-11-30 12:27:11 -0800385}
386
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387static void ip6_dst_ifdown(struct dst_entry *dst, struct net_device *dev,
388 int how)
389{
390 struct rt6_info *rt = (struct rt6_info *)dst;
391 struct inet6_dev *idev = rt->rt6i_idev;
Denis V. Lunev5a3e55d2007-12-07 00:38:10 -0800392 struct net_device *loopback_dev =
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900393 dev_net(dev)->loopback_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394
Wei Wange5645f52017-08-14 10:44:59 -0700395 if (idev && idev->dev != loopback_dev) {
396 struct inet6_dev *loopback_idev = in6_dev_get(loopback_dev);
397 if (loopback_idev) {
398 rt->rt6i_idev = loopback_idev;
399 in6_dev_put(idev);
David S. Miller97cac082012-07-02 22:43:47 -0700400 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 }
402}
403
Martin KaFai Lau5973fb12015-11-11 11:51:07 -0800404static bool __rt6_check_expired(const struct rt6_info *rt)
405{
406 if (rt->rt6i_flags & RTF_EXPIRES)
407 return time_after(jiffies, rt->dst.expires);
408 else
409 return false;
410}
411
Eric Dumazeta50feda2012-05-18 18:57:34 +0000412static bool rt6_check_expired(const struct rt6_info *rt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413{
David Aherna68886a2018-04-20 15:38:02 -0700414 struct fib6_info *from;
415
416 from = rcu_dereference(rt->from);
417
Gao feng1716a962012-04-06 00:13:10 +0000418 if (rt->rt6i_flags & RTF_EXPIRES) {
419 if (time_after(jiffies, rt->dst.expires))
Eric Dumazeta50feda2012-05-18 18:57:34 +0000420 return true;
David Aherna68886a2018-04-20 15:38:02 -0700421 } else if (from) {
Xin Long1e2ea8a2017-08-26 20:10:10 +0800422 return rt->dst.obsolete != DST_OBSOLETE_FORCE_CHK ||
David Aherna68886a2018-04-20 15:38:02 -0700423 fib6_check_expired(from);
Gao feng1716a962012-04-06 00:13:10 +0000424 }
Eric Dumazeta50feda2012-05-18 18:57:34 +0000425 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426}
427
David Ahernb1d40992019-04-16 14:35:59 -0700428void fib6_select_path(const struct net *net, struct fib6_result *res,
429 struct flowi6 *fl6, int oif, bool have_oif_match,
430 const struct sk_buff *skb, int strict)
Nicolas Dichtel51ebd312012-10-22 03:42:09 +0000431{
David Ahern8d1c8022018-04-17 17:33:26 -0700432 struct fib6_info *sibling, *next_sibling;
David Ahernb1d40992019-04-16 14:35:59 -0700433 struct fib6_info *match = res->f6i;
434
435 if (!match->fib6_nsiblings || have_oif_match)
436 goto out;
Nicolas Dichtel51ebd312012-10-22 03:42:09 +0000437
Jakub Sitnickib673d6c2017-08-23 09:58:31 +0200438 /* We might have already computed the hash for ICMPv6 errors. In such
439 * case it will always be non-zero. Otherwise now is the time to do it.
440 */
441 if (!fl6->mp_hash)
David Ahernb4bac172018-03-02 08:32:18 -0800442 fl6->mp_hash = rt6_multipath_hash(net, fl6, skb, NULL);
Jakub Sitnickib673d6c2017-08-23 09:58:31 +0200443
David Ahernad1601a2019-03-27 20:53:56 -0700444 if (fl6->mp_hash <= atomic_read(&match->fib6_nh.fib_nh_upper_bound))
David Ahernb1d40992019-04-16 14:35:59 -0700445 goto out;
Ido Schimmelbbfcd772017-11-21 09:50:12 +0200446
David Ahern93c2fb22018-04-18 15:38:59 -0700447 list_for_each_entry_safe(sibling, next_sibling, &match->fib6_siblings,
448 fib6_siblings) {
David Ahern702cea52019-04-09 14:41:13 -0700449 const struct fib6_nh *nh = &sibling->fib6_nh;
David Ahern5e670d82018-04-17 17:33:14 -0700450 int nh_upper_bound;
451
David Ahern702cea52019-04-09 14:41:13 -0700452 nh_upper_bound = atomic_read(&nh->fib_nh_upper_bound);
David Ahern5e670d82018-04-17 17:33:14 -0700453 if (fl6->mp_hash > nh_upper_bound)
Ido Schimmel3d709f62018-01-09 16:40:27 +0200454 continue;
David Ahern702cea52019-04-09 14:41:13 -0700455 if (rt6_score_route(nh, sibling->fib6_flags, oif, strict) < 0)
Ido Schimmel3d709f62018-01-09 16:40:27 +0200456 break;
457 match = sibling;
458 break;
459 }
460
David Ahernb1d40992019-04-16 14:35:59 -0700461out:
462 res->f6i = match;
463 res->nh = &match->fib6_nh;
Nicolas Dichtel51ebd312012-10-22 03:42:09 +0000464}
465
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466/*
Wei Wang66f5d6c2017-10-06 12:06:10 -0700467 * Route lookup. rcu_read_lock() should be held.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 */
469
David Ahern0c59d002019-04-09 14:41:18 -0700470static bool __rt6_device_match(struct net *net, const struct fib6_nh *nh,
471 const struct in6_addr *saddr, int oif, int flags)
472{
473 const struct net_device *dev;
474
475 if (nh->fib_nh_flags & RTNH_F_DEAD)
476 return false;
477
478 dev = nh->fib_nh_dev;
479 if (oif) {
480 if (dev->ifindex == oif)
481 return true;
482 } else {
483 if (ipv6_chk_addr(net, saddr, dev,
484 flags & RT6_LOOKUP_F_IFACE))
485 return true;
486 }
487
488 return false;
489}
490
David Ahern75ef7382019-04-16 14:36:07 -0700491static void rt6_device_match(struct net *net, struct fib6_result *res,
492 const struct in6_addr *saddr, int oif, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493{
David Ahern75ef7382019-04-16 14:36:07 -0700494 struct fib6_info *f6i = res->f6i;
495 struct fib6_info *spf6i;
496 struct fib6_nh *nh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497
David Ahern75ef7382019-04-16 14:36:07 -0700498 if (!oif && ipv6_addr_any(saddr)) {
499 nh = &f6i->fib6_nh;
David Ahern7d21fec2019-04-16 14:36:11 -0700500 if (!(nh->fib_nh_flags & RTNH_F_DEAD))
501 goto out;
YOSHIFUJI Hideakidd3abc42008-07-02 18:30:18 +0900502 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503
David Ahern75ef7382019-04-16 14:36:07 -0700504 for (spf6i = f6i; spf6i; spf6i = rcu_dereference(spf6i->fib6_next)) {
505 nh = &spf6i->fib6_nh;
506 if (__rt6_device_match(net, nh, saddr, oif, flags)) {
507 res->f6i = spf6i;
David Ahern7d21fec2019-04-16 14:36:11 -0700508 goto out;
David Ahern75ef7382019-04-16 14:36:07 -0700509 }
510 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511
David Ahern75ef7382019-04-16 14:36:07 -0700512 if (oif && flags & RT6_LOOKUP_F_IFACE) {
513 res->f6i = net->ipv6.fib6_null_entry;
David Ahern7d21fec2019-04-16 14:36:11 -0700514 nh = &res->f6i->fib6_nh;
515 goto out;
David Ahern75ef7382019-04-16 14:36:07 -0700516 }
517
David Ahern7d21fec2019-04-16 14:36:11 -0700518 nh = &f6i->fib6_nh;
519 if (nh->fib_nh_flags & RTNH_F_DEAD) {
David Ahern75ef7382019-04-16 14:36:07 -0700520 res->f6i = net->ipv6.fib6_null_entry;
David Ahern7d21fec2019-04-16 14:36:11 -0700521 nh = &res->f6i->fib6_nh;
David Ahern75ef7382019-04-16 14:36:07 -0700522 }
David Ahern7d21fec2019-04-16 14:36:11 -0700523out:
524 res->nh = nh;
525 res->fib6_type = res->f6i->fib6_type;
526 res->fib6_flags = res->f6i->fib6_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527}
528
YOSHIFUJI Hideaki27097252006-03-20 17:05:13 -0800529#ifdef CONFIG_IPV6_ROUTER_PREF
Hannes Frederic Sowac2f17e82013-10-21 06:17:15 +0200530struct __rt6_probe_work {
531 struct work_struct work;
532 struct in6_addr target;
533 struct net_device *dev;
534};
535
536static void rt6_probe_deferred(struct work_struct *w)
537{
538 struct in6_addr mcaddr;
539 struct __rt6_probe_work *work =
540 container_of(w, struct __rt6_probe_work, work);
541
542 addrconf_addr_solict_mult(&work->target, &mcaddr);
Erik Nordmarkadc176c2016-12-02 14:00:08 -0800543 ndisc_send_ns(work->dev, &work->target, &mcaddr, NULL, 0);
Hannes Frederic Sowac2f17e82013-10-21 06:17:15 +0200544 dev_put(work->dev);
Michael Büsch662f5532015-02-08 10:14:07 +0100545 kfree(work);
Hannes Frederic Sowac2f17e82013-10-21 06:17:15 +0200546}
547
David Aherncc3a86c2019-04-09 14:41:12 -0700548static void rt6_probe(struct fib6_nh *fib6_nh)
YOSHIFUJI Hideaki27097252006-03-20 17:05:13 -0800549{
Sabrina Dubrocaf547fac2018-10-12 16:22:47 +0200550 struct __rt6_probe_work *work = NULL;
David Ahern5e670d82018-04-17 17:33:14 -0700551 const struct in6_addr *nh_gw;
Eric Dumazetf2c31e32011-07-29 19:00:53 +0000552 struct neighbour *neigh;
David Ahern5e670d82018-04-17 17:33:14 -0700553 struct net_device *dev;
Sabrina Dubrocaf547fac2018-10-12 16:22:47 +0200554 struct inet6_dev *idev;
David Ahern5e670d82018-04-17 17:33:14 -0700555
YOSHIFUJI Hideaki27097252006-03-20 17:05:13 -0800556 /*
557 * Okay, this does not seem to be appropriate
558 * for now, however, we need to check if it
559 * is really so; aka Router Reachability Probing.
560 *
561 * Router Reachability Probe MUST be rate-limited
562 * to no more than one per minute.
563 */
David Aherncc3a86c2019-04-09 14:41:12 -0700564 if (fib6_nh->fib_nh_gw_family)
Amerigo Wangfdd66812012-09-10 02:48:44 +0000565 return;
David Ahern5e670d82018-04-17 17:33:14 -0700566
David Aherncc3a86c2019-04-09 14:41:12 -0700567 nh_gw = &fib6_nh->fib_nh_gw6;
568 dev = fib6_nh->fib_nh_dev;
YOSHIFUJI Hideaki / 吉藤英明2152cae2013-01-17 12:53:43 +0000569 rcu_read_lock_bh();
Sabrina Dubrocaf547fac2018-10-12 16:22:47 +0200570 idev = __in6_dev_get(dev);
David Ahern5e670d82018-04-17 17:33:14 -0700571 neigh = __ipv6_neigh_lookup_noref(dev, nh_gw);
YOSHIFUJI Hideaki / 吉藤英明2152cae2013-01-17 12:53:43 +0000572 if (neigh) {
Martin KaFai Lau8d6c31b2015-07-24 09:57:43 -0700573 if (neigh->nud_state & NUD_VALID)
574 goto out;
575
YOSHIFUJI Hideaki / 吉藤英明2152cae2013-01-17 12:53:43 +0000576 write_lock(&neigh->lock);
Martin KaFai Lau990edb42015-07-24 09:57:42 -0700577 if (!(neigh->nud_state & NUD_VALID) &&
578 time_after(jiffies,
David Aherndcd1f572018-04-18 15:39:05 -0700579 neigh->updated + idev->cnf.rtr_probe_interval)) {
Martin KaFai Lau990edb42015-07-24 09:57:42 -0700580 work = kmalloc(sizeof(*work), GFP_ATOMIC);
581 if (work)
582 __neigh_set_probe_once(neigh);
Hannes Frederic Sowac2f17e82013-10-21 06:17:15 +0200583 }
YOSHIFUJI Hideaki / 吉藤英明2152cae2013-01-17 12:53:43 +0000584 write_unlock(&neigh->lock);
David Aherncc3a86c2019-04-09 14:41:12 -0700585 } else if (time_after(jiffies, fib6_nh->last_probe +
Sabrina Dubrocaf547fac2018-10-12 16:22:47 +0200586 idev->cnf.rtr_probe_interval)) {
Martin KaFai Lau990edb42015-07-24 09:57:42 -0700587 work = kmalloc(sizeof(*work), GFP_ATOMIC);
Eric Dumazetf2c31e32011-07-29 19:00:53 +0000588 }
Martin KaFai Lau990edb42015-07-24 09:57:42 -0700589
590 if (work) {
David Aherncc3a86c2019-04-09 14:41:12 -0700591 fib6_nh->last_probe = jiffies;
Martin KaFai Lau990edb42015-07-24 09:57:42 -0700592 INIT_WORK(&work->work, rt6_probe_deferred);
David Ahern5e670d82018-04-17 17:33:14 -0700593 work->target = *nh_gw;
594 dev_hold(dev);
595 work->dev = dev;
Martin KaFai Lau990edb42015-07-24 09:57:42 -0700596 schedule_work(&work->work);
597 }
598
Martin KaFai Lau8d6c31b2015-07-24 09:57:43 -0700599out:
YOSHIFUJI Hideaki / 吉藤英明2152cae2013-01-17 12:53:43 +0000600 rcu_read_unlock_bh();
YOSHIFUJI Hideaki27097252006-03-20 17:05:13 -0800601}
602#else
David Aherncc3a86c2019-04-09 14:41:12 -0700603static inline void rt6_probe(struct fib6_nh *fib6_nh)
YOSHIFUJI Hideaki27097252006-03-20 17:05:13 -0800604{
YOSHIFUJI Hideaki27097252006-03-20 17:05:13 -0800605}
606#endif
607
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608/*
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800609 * Default Router Selection (RFC 2461 6.3.6)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 */
David Ahern1ba9a892019-04-09 14:41:10 -0700611static enum rt6_nud_state rt6_check_neigh(const struct fib6_nh *fib6_nh)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612{
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200613 enum rt6_nud_state ret = RT6_NUD_FAIL_HARD;
David Ahern5e670d82018-04-17 17:33:14 -0700614 struct neighbour *neigh;
Eric Dumazetf2c31e32011-07-29 19:00:53 +0000615
YOSHIFUJI Hideaki / 吉藤英明145a3622013-01-17 12:53:38 +0000616 rcu_read_lock_bh();
David Ahern1ba9a892019-04-09 14:41:10 -0700617 neigh = __ipv6_neigh_lookup_noref(fib6_nh->fib_nh_dev,
618 &fib6_nh->fib_nh_gw6);
YOSHIFUJI Hideaki / 吉藤英明145a3622013-01-17 12:53:38 +0000619 if (neigh) {
620 read_lock(&neigh->lock);
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800621 if (neigh->nud_state & NUD_VALID)
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200622 ret = RT6_NUD_SUCCEED;
YOSHIFUJI Hideaki398bcbe2008-01-19 00:35:16 -0800623#ifdef CONFIG_IPV6_ROUTER_PREF
Paul Marksa5a81f02012-12-03 10:26:54 +0000624 else if (!(neigh->nud_state & NUD_FAILED))
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200625 ret = RT6_NUD_SUCCEED;
Jiri Benc7e980562013-12-11 13:48:20 +0100626 else
627 ret = RT6_NUD_FAIL_PROBE;
YOSHIFUJI Hideaki398bcbe2008-01-19 00:35:16 -0800628#endif
YOSHIFUJI Hideaki / 吉藤英明145a3622013-01-17 12:53:38 +0000629 read_unlock(&neigh->lock);
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200630 } else {
631 ret = IS_ENABLED(CONFIG_IPV6_ROUTER_PREF) ?
Jiri Benc7e980562013-12-11 13:48:20 +0100632 RT6_NUD_SUCCEED : RT6_NUD_FAIL_DO_RR;
Paul Marksa5a81f02012-12-03 10:26:54 +0000633 }
YOSHIFUJI Hideaki / 吉藤英明145a3622013-01-17 12:53:38 +0000634 rcu_read_unlock_bh();
635
Paul Marksa5a81f02012-12-03 10:26:54 +0000636 return ret;
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800637}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638
David Ahern702cea52019-04-09 14:41:13 -0700639static int rt6_score_route(const struct fib6_nh *nh, u32 fib6_flags, int oif,
640 int strict)
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800641{
David Ahern6e1809a2019-04-09 14:41:11 -0700642 int m = 0;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900643
David Ahern6e1809a2019-04-09 14:41:11 -0700644 if (!oif || nh->fib_nh_dev->ifindex == oif)
645 m = 2;
646
YOSHIFUJI Hideaki77d16f42006-08-23 17:25:05 -0700647 if (!m && (strict & RT6_LOOKUP_F_IFACE))
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200648 return RT6_NUD_FAIL_HARD;
YOSHIFUJI Hideakiebacaaa2006-03-20 17:04:53 -0800649#ifdef CONFIG_IPV6_ROUTER_PREF
David Ahern702cea52019-04-09 14:41:13 -0700650 m |= IPV6_DECODE_PREF(IPV6_EXTRACT_PREF(fib6_flags)) << 2;
YOSHIFUJI Hideakiebacaaa2006-03-20 17:04:53 -0800651#endif
David Ahern1ba9a892019-04-09 14:41:10 -0700652 if ((strict & RT6_LOOKUP_F_REACHABLE) &&
David Ahern702cea52019-04-09 14:41:13 -0700653 !(fib6_flags & RTF_NONEXTHOP) && nh->fib_nh_gw_family) {
David Ahern1ba9a892019-04-09 14:41:10 -0700654 int n = rt6_check_neigh(nh);
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200655 if (n < 0)
656 return n;
657 }
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800658 return m;
659}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660
David Ahern28679ed2019-04-09 14:41:14 -0700661static bool find_match(struct fib6_nh *nh, u32 fib6_flags,
662 int oif, int strict, int *mpri, bool *do_rr)
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800663{
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200664 bool match_do_rr = false;
David Ahern28679ed2019-04-09 14:41:14 -0700665 bool rc = false;
666 int m;
Andy Gospodarek35103d12015-08-13 10:39:01 -0400667
David Ahern28679ed2019-04-09 14:41:14 -0700668 if (nh->fib_nh_flags & RTNH_F_DEAD)
Ido Schimmel8067bb82018-01-07 12:45:09 +0200669 goto out;
670
David Ahern28679ed2019-04-09 14:41:14 -0700671 if (ip6_ignore_linkdown(nh->fib_nh_dev) &&
672 nh->fib_nh_flags & RTNH_F_LINKDOWN &&
David Ahernd5d32e42016-10-24 12:27:23 -0700673 !(strict & RT6_LOOKUP_F_IGNORE_LINKSTATE))
Andy Gospodarek35103d12015-08-13 10:39:01 -0400674 goto out;
David S. Millerf11e6652007-03-24 20:36:25 -0700675
David Ahern28679ed2019-04-09 14:41:14 -0700676 m = rt6_score_route(nh, fib6_flags, oif, strict);
Jiri Benc7e980562013-12-11 13:48:20 +0100677 if (m == RT6_NUD_FAIL_DO_RR) {
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200678 match_do_rr = true;
679 m = 0; /* lowest valid score */
Jiri Benc7e980562013-12-11 13:48:20 +0100680 } else if (m == RT6_NUD_FAIL_HARD) {
David S. Millerf11e6652007-03-24 20:36:25 -0700681 goto out;
David S. Millerf11e6652007-03-24 20:36:25 -0700682 }
683
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200684 if (strict & RT6_LOOKUP_F_REACHABLE)
David Ahern28679ed2019-04-09 14:41:14 -0700685 rt6_probe(nh);
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200686
Jiri Benc7e980562013-12-11 13:48:20 +0100687 /* note that m can be RT6_NUD_FAIL_PROBE at this point */
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200688 if (m > *mpri) {
689 *do_rr = match_do_rr;
690 *mpri = m;
David Ahern28679ed2019-04-09 14:41:14 -0700691 rc = true;
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200692 }
David S. Millerf11e6652007-03-24 20:36:25 -0700693out:
David Ahern28679ed2019-04-09 14:41:14 -0700694 return rc;
David S. Millerf11e6652007-03-24 20:36:25 -0700695}
696
David Ahernb7bc4b62019-04-16 14:36:08 -0700697static void __find_rr_leaf(struct fib6_info *f6i_start,
David Ahern30c15f02019-04-09 14:41:15 -0700698 struct fib6_info *nomatch, u32 metric,
David Ahernb7bc4b62019-04-16 14:36:08 -0700699 struct fib6_result *res, struct fib6_info **cont,
David Ahern30c15f02019-04-09 14:41:15 -0700700 int oif, int strict, bool *do_rr, int *mpri)
David S. Millerf11e6652007-03-24 20:36:25 -0700701{
David Ahernb7bc4b62019-04-16 14:36:08 -0700702 struct fib6_info *f6i;
David Ahern30c15f02019-04-09 14:41:15 -0700703
David Ahernb7bc4b62019-04-16 14:36:08 -0700704 for (f6i = f6i_start;
705 f6i && f6i != nomatch;
706 f6i = rcu_dereference(f6i->fib6_next)) {
David Ahern30c15f02019-04-09 14:41:15 -0700707 struct fib6_nh *nh;
708
David Ahernb7bc4b62019-04-16 14:36:08 -0700709 if (cont && f6i->fib6_metric != metric) {
710 *cont = f6i;
David Ahern30c15f02019-04-09 14:41:15 -0700711 return;
712 }
713
David Ahernb7bc4b62019-04-16 14:36:08 -0700714 if (fib6_check_expired(f6i))
David Ahern30c15f02019-04-09 14:41:15 -0700715 continue;
716
David Ahernb7bc4b62019-04-16 14:36:08 -0700717 nh = &f6i->fib6_nh;
718 if (find_match(nh, f6i->fib6_flags, oif, strict, mpri, do_rr)) {
719 res->f6i = f6i;
720 res->nh = nh;
David Ahern7d21fec2019-04-16 14:36:11 -0700721 res->fib6_flags = f6i->fib6_flags;
722 res->fib6_type = f6i->fib6_type;
David Ahernb7bc4b62019-04-16 14:36:08 -0700723 }
David Ahern30c15f02019-04-09 14:41:15 -0700724 }
725}
726
David Ahernb7bc4b62019-04-16 14:36:08 -0700727static void find_rr_leaf(struct fib6_node *fn, struct fib6_info *leaf,
728 struct fib6_info *rr_head, int oif, int strict,
729 bool *do_rr, struct fib6_result *res)
David Ahern30c15f02019-04-09 14:41:15 -0700730{
David Ahernb7bc4b62019-04-16 14:36:08 -0700731 u32 metric = rr_head->fib6_metric;
732 struct fib6_info *cont = NULL;
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800733 int mpri = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734
David Ahernb7bc4b62019-04-16 14:36:08 -0700735 __find_rr_leaf(rr_head, NULL, metric, res, &cont,
David Ahern30c15f02019-04-09 14:41:15 -0700736 oif, strict, do_rr, &mpri);
Steffen Klassert9fbdcfa2015-04-28 13:03:04 -0700737
David Ahernb7bc4b62019-04-16 14:36:08 -0700738 __find_rr_leaf(leaf, rr_head, metric, res, &cont,
David Ahern30c15f02019-04-09 14:41:15 -0700739 oif, strict, do_rr, &mpri);
Steffen Klassert9fbdcfa2015-04-28 13:03:04 -0700740
David Ahernb7bc4b62019-04-16 14:36:08 -0700741 if (res->f6i || !cont)
742 return;
Steffen Klassert9fbdcfa2015-04-28 13:03:04 -0700743
David Ahernb7bc4b62019-04-16 14:36:08 -0700744 __find_rr_leaf(cont, NULL, metric, res, NULL,
David Ahern30c15f02019-04-09 14:41:15 -0700745 oif, strict, do_rr, &mpri);
David S. Millerf11e6652007-03-24 20:36:25 -0700746}
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800747
David Ahernb7bc4b62019-04-16 14:36:08 -0700748static void rt6_select(struct net *net, struct fib6_node *fn, int oif,
749 struct fib6_result *res, int strict)
David S. Millerf11e6652007-03-24 20:36:25 -0700750{
David Ahern8d1c8022018-04-17 17:33:26 -0700751 struct fib6_info *leaf = rcu_dereference(fn->leaf);
David Ahernb7bc4b62019-04-16 14:36:08 -0700752 struct fib6_info *rt0;
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200753 bool do_rr = false;
Wei Wang17ecf592017-10-06 12:06:09 -0700754 int key_plen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755
David Ahernb7bc4b62019-04-16 14:36:08 -0700756 /* make sure this function or its helpers sets f6i */
757 res->f6i = NULL;
758
David Ahern421842e2018-04-17 17:33:18 -0700759 if (!leaf || leaf == net->ipv6.fib6_null_entry)
David Ahernb7bc4b62019-04-16 14:36:08 -0700760 goto out;
Wei Wang8d1040e2017-10-06 12:06:08 -0700761
Wei Wang66f5d6c2017-10-06 12:06:10 -0700762 rt0 = rcu_dereference(fn->rr_ptr);
David S. Millerf11e6652007-03-24 20:36:25 -0700763 if (!rt0)
Wei Wang66f5d6c2017-10-06 12:06:10 -0700764 rt0 = leaf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765
Wei Wang17ecf592017-10-06 12:06:09 -0700766 /* Double check to make sure fn is not an intermediate node
767 * and fn->leaf does not points to its child's leaf
768 * (This might happen if all routes under fn are deleted from
769 * the tree and fib6_repair_tree() is called on the node.)
770 */
David Ahern93c2fb22018-04-18 15:38:59 -0700771 key_plen = rt0->fib6_dst.plen;
Wei Wang17ecf592017-10-06 12:06:09 -0700772#ifdef CONFIG_IPV6_SUBTREES
David Ahern93c2fb22018-04-18 15:38:59 -0700773 if (rt0->fib6_src.plen)
774 key_plen = rt0->fib6_src.plen;
Wei Wang17ecf592017-10-06 12:06:09 -0700775#endif
776 if (fn->fn_bit != key_plen)
David Ahernb7bc4b62019-04-16 14:36:08 -0700777 goto out;
Wei Wang17ecf592017-10-06 12:06:09 -0700778
David Ahernb7bc4b62019-04-16 14:36:08 -0700779 find_rr_leaf(fn, leaf, rt0, oif, strict, &do_rr, res);
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200780 if (do_rr) {
David Ahern8fb11a92018-05-04 13:54:24 -0700781 struct fib6_info *next = rcu_dereference(rt0->fib6_next);
David S. Millerf11e6652007-03-24 20:36:25 -0700782
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800783 /* no entries matched; do round-robin */
David Ahern93c2fb22018-04-18 15:38:59 -0700784 if (!next || next->fib6_metric != rt0->fib6_metric)
Wei Wang8d1040e2017-10-06 12:06:08 -0700785 next = leaf;
David S. Millerf11e6652007-03-24 20:36:25 -0700786
Wei Wang66f5d6c2017-10-06 12:06:10 -0700787 if (next != rt0) {
David Ahern93c2fb22018-04-18 15:38:59 -0700788 spin_lock_bh(&leaf->fib6_table->tb6_lock);
Wei Wang66f5d6c2017-10-06 12:06:10 -0700789 /* make sure next is not being deleted from the tree */
David Ahern93c2fb22018-04-18 15:38:59 -0700790 if (next->fib6_node)
Wei Wang66f5d6c2017-10-06 12:06:10 -0700791 rcu_assign_pointer(fn->rr_ptr, next);
David Ahern93c2fb22018-04-18 15:38:59 -0700792 spin_unlock_bh(&leaf->fib6_table->tb6_lock);
Wei Wang66f5d6c2017-10-06 12:06:10 -0700793 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 }
795
David Ahernb7bc4b62019-04-16 14:36:08 -0700796out:
797 if (!res->f6i) {
798 res->f6i = net->ipv6.fib6_null_entry;
799 res->nh = &res->f6i->fib6_nh;
David Ahern7d21fec2019-04-16 14:36:11 -0700800 res->fib6_flags = res->f6i->fib6_flags;
801 res->fib6_type = res->f6i->fib6_type;
David Ahernb7bc4b62019-04-16 14:36:08 -0700802 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803}
804
David Ahern85bd05d2019-04-16 14:36:01 -0700805static bool rt6_is_gw_or_nonexthop(const struct fib6_result *res)
Martin KaFai Lau8b9df262015-05-22 20:55:59 -0700806{
David Ahern85bd05d2019-04-16 14:36:01 -0700807 return (res->f6i->fib6_flags & RTF_NONEXTHOP) ||
808 res->nh->fib_nh_gw_family;
Martin KaFai Lau8b9df262015-05-22 20:55:59 -0700809}
810
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800811#ifdef CONFIG_IPV6_ROUTE_INFO
812int rt6_route_rcv(struct net_device *dev, u8 *opt, int len,
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000813 const struct in6_addr *gwaddr)
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800814{
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900815 struct net *net = dev_net(dev);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800816 struct route_info *rinfo = (struct route_info *) opt;
817 struct in6_addr prefix_buf, *prefix;
818 unsigned int pref;
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +0900819 unsigned long lifetime;
David Ahern8d1c8022018-04-17 17:33:26 -0700820 struct fib6_info *rt;
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800821
822 if (len < sizeof(struct route_info)) {
823 return -EINVAL;
824 }
825
826 /* Sanity check for prefix_len and length */
827 if (rinfo->length > 3) {
828 return -EINVAL;
829 } else if (rinfo->prefix_len > 128) {
830 return -EINVAL;
831 } else if (rinfo->prefix_len > 64) {
832 if (rinfo->length < 2) {
833 return -EINVAL;
834 }
835 } else if (rinfo->prefix_len > 0) {
836 if (rinfo->length < 1) {
837 return -EINVAL;
838 }
839 }
840
841 pref = rinfo->route_pref;
842 if (pref == ICMPV6_ROUTER_PREF_INVALID)
Jens Rosenboom3933fc92009-09-10 06:25:11 +0000843 return -EINVAL;
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800844
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +0900845 lifetime = addrconf_timeout_fixup(ntohl(rinfo->lifetime), HZ);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800846
847 if (rinfo->length == 3)
848 prefix = (struct in6_addr *)rinfo->prefix;
849 else {
850 /* this function is safe */
851 ipv6_addr_prefix(&prefix_buf,
852 (struct in6_addr *)rinfo->prefix,
853 rinfo->prefix_len);
854 prefix = &prefix_buf;
855 }
856
Duan Jiongf104a562013-11-08 09:56:53 +0800857 if (rinfo->prefix_len == 0)
David Ahernafb1d4b52018-04-17 17:33:11 -0700858 rt = rt6_get_dflt_router(net, gwaddr, dev);
Duan Jiongf104a562013-11-08 09:56:53 +0800859 else
860 rt = rt6_get_route_info(net, prefix, rinfo->prefix_len,
David Ahern830218c2016-10-24 10:52:35 -0700861 gwaddr, dev);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800862
863 if (rt && !lifetime) {
David Ahernafb1d4b52018-04-17 17:33:11 -0700864 ip6_del_rt(net, rt);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800865 rt = NULL;
866 }
867
868 if (!rt && lifetime)
David Ahern830218c2016-10-24 10:52:35 -0700869 rt = rt6_add_route_info(net, prefix, rinfo->prefix_len, gwaddr,
870 dev, pref);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800871 else if (rt)
David Ahern93c2fb22018-04-18 15:38:59 -0700872 rt->fib6_flags = RTF_ROUTEINFO |
873 (rt->fib6_flags & ~RTF_PREF_MASK) | RTF_PREF(pref);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800874
875 if (rt) {
Gao feng1716a962012-04-06 00:13:10 +0000876 if (!addrconf_finite_timeout(lifetime))
David Ahern14895682018-04-17 17:33:17 -0700877 fib6_clean_expires(rt);
Gao feng1716a962012-04-06 00:13:10 +0000878 else
David Ahern14895682018-04-17 17:33:17 -0700879 fib6_set_expires(rt, jiffies + HZ * lifetime);
Gao feng1716a962012-04-06 00:13:10 +0000880
David Ahern93531c62018-04-17 17:33:25 -0700881 fib6_info_release(rt);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800882 }
883 return 0;
884}
885#endif
886
David Ahernae90d862018-04-17 17:33:12 -0700887/*
888 * Misc support functions
889 */
890
891/* called with rcu_lock held */
David Ahern0d161582019-04-16 14:36:04 -0700892static struct net_device *ip6_rt_get_dev_rcu(const struct fib6_result *res)
David Ahernae90d862018-04-17 17:33:12 -0700893{
David Ahern0d161582019-04-16 14:36:04 -0700894 struct net_device *dev = res->nh->fib_nh_dev;
David Ahernae90d862018-04-17 17:33:12 -0700895
David Ahern7d21fec2019-04-16 14:36:11 -0700896 if (res->fib6_flags & (RTF_LOCAL | RTF_ANYCAST)) {
David Ahernae90d862018-04-17 17:33:12 -0700897 /* for copies of local routes, dst->dev needs to be the
898 * device if it is a master device, the master device if
899 * device is enslaved, and the loopback as the default
900 */
901 if (netif_is_l3_slave(dev) &&
David Ahern7d21fec2019-04-16 14:36:11 -0700902 !rt6_need_strict(&res->f6i->fib6_dst.addr))
David Ahernae90d862018-04-17 17:33:12 -0700903 dev = l3mdev_master_dev_rcu(dev);
904 else if (!netif_is_l3_master(dev))
905 dev = dev_net(dev)->loopback_dev;
906 /* last case is netif_is_l3_master(dev) is true in which
907 * case we want dev returned to be dev
908 */
909 }
910
911 return dev;
912}
913
David Ahern6edb3c92018-04-17 17:33:15 -0700914static const int fib6_prop[RTN_MAX + 1] = {
915 [RTN_UNSPEC] = 0,
916 [RTN_UNICAST] = 0,
917 [RTN_LOCAL] = 0,
918 [RTN_BROADCAST] = 0,
919 [RTN_ANYCAST] = 0,
920 [RTN_MULTICAST] = 0,
921 [RTN_BLACKHOLE] = -EINVAL,
922 [RTN_UNREACHABLE] = -EHOSTUNREACH,
923 [RTN_PROHIBIT] = -EACCES,
924 [RTN_THROW] = -EAGAIN,
925 [RTN_NAT] = -EINVAL,
926 [RTN_XRESOLVE] = -EINVAL,
927};
928
929static int ip6_rt_type_to_error(u8 fib6_type)
930{
931 return fib6_prop[fib6_type];
932}
933
David Ahern8d1c8022018-04-17 17:33:26 -0700934static unsigned short fib6_info_dst_flags(struct fib6_info *rt)
David Ahern3b6761d2018-04-17 17:33:20 -0700935{
936 unsigned short flags = 0;
937
938 if (rt->dst_nocount)
939 flags |= DST_NOCOUNT;
940 if (rt->dst_nopolicy)
941 flags |= DST_NOPOLICY;
942 if (rt->dst_host)
943 flags |= DST_HOST;
944
945 return flags;
946}
947
David Ahern7d21fec2019-04-16 14:36:11 -0700948static void ip6_rt_init_dst_reject(struct rt6_info *rt, u8 fib6_type)
David Ahern6edb3c92018-04-17 17:33:15 -0700949{
David Ahern7d21fec2019-04-16 14:36:11 -0700950 rt->dst.error = ip6_rt_type_to_error(fib6_type);
David Ahern6edb3c92018-04-17 17:33:15 -0700951
David Ahern7d21fec2019-04-16 14:36:11 -0700952 switch (fib6_type) {
David Ahern6edb3c92018-04-17 17:33:15 -0700953 case RTN_BLACKHOLE:
954 rt->dst.output = dst_discard_out;
955 rt->dst.input = dst_discard;
956 break;
957 case RTN_PROHIBIT:
958 rt->dst.output = ip6_pkt_prohibit_out;
959 rt->dst.input = ip6_pkt_prohibit;
960 break;
961 case RTN_THROW:
962 case RTN_UNREACHABLE:
963 default:
964 rt->dst.output = ip6_pkt_discard_out;
965 rt->dst.input = ip6_pkt_discard;
966 break;
967 }
968}
969
David Ahern0d161582019-04-16 14:36:04 -0700970static void ip6_rt_init_dst(struct rt6_info *rt, const struct fib6_result *res)
David Ahern6edb3c92018-04-17 17:33:15 -0700971{
David Ahern7d21fec2019-04-16 14:36:11 -0700972 struct fib6_info *f6i = res->f6i;
David Ahern0d161582019-04-16 14:36:04 -0700973
David Ahern7d21fec2019-04-16 14:36:11 -0700974 if (res->fib6_flags & RTF_REJECT) {
975 ip6_rt_init_dst_reject(rt, res->fib6_type);
David Ahern6edb3c92018-04-17 17:33:15 -0700976 return;
977 }
978
979 rt->dst.error = 0;
980 rt->dst.output = ip6_output;
981
David Ahern7d21fec2019-04-16 14:36:11 -0700982 if (res->fib6_type == RTN_LOCAL || res->fib6_type == RTN_ANYCAST) {
David Ahern6edb3c92018-04-17 17:33:15 -0700983 rt->dst.input = ip6_input;
David Ahern7d21fec2019-04-16 14:36:11 -0700984 } else if (ipv6_addr_type(&f6i->fib6_dst.addr) & IPV6_ADDR_MULTICAST) {
David Ahern6edb3c92018-04-17 17:33:15 -0700985 rt->dst.input = ip6_mc_input;
986 } else {
987 rt->dst.input = ip6_forward;
988 }
989
David Ahern0d161582019-04-16 14:36:04 -0700990 if (res->nh->fib_nh_lws) {
991 rt->dst.lwtstate = lwtstate_get(res->nh->fib_nh_lws);
David Ahern6edb3c92018-04-17 17:33:15 -0700992 lwtunnel_set_redirect(&rt->dst);
993 }
994
995 rt->dst.lastuse = jiffies;
996}
997
Wei Wange873e4b2018-07-21 20:56:32 -0700998/* Caller must already hold reference to @from */
David Ahern8d1c8022018-04-17 17:33:26 -0700999static void rt6_set_from(struct rt6_info *rt, struct fib6_info *from)
David Ahernae90d862018-04-17 17:33:12 -07001000{
David Ahernae90d862018-04-17 17:33:12 -07001001 rt->rt6i_flags &= ~RTF_EXPIRES;
David Aherna68886a2018-04-20 15:38:02 -07001002 rcu_assign_pointer(rt->from, from);
David Aherne1255ed2018-10-04 20:07:53 -07001003 ip_dst_init_metrics(&rt->dst, from->fib6_metrics);
David Ahernae90d862018-04-17 17:33:12 -07001004}
1005
David Ahern0d161582019-04-16 14:36:04 -07001006/* Caller must already hold reference to f6i in result */
1007static void ip6_rt_copy_init(struct rt6_info *rt, const struct fib6_result *res)
David Ahernae90d862018-04-17 17:33:12 -07001008{
David Ahern0d161582019-04-16 14:36:04 -07001009 const struct fib6_nh *nh = res->nh;
1010 const struct net_device *dev = nh->fib_nh_dev;
1011 struct fib6_info *f6i = res->f6i;
David Aherndcd1f572018-04-18 15:39:05 -07001012
David Ahern0d161582019-04-16 14:36:04 -07001013 ip6_rt_init_dst(rt, res);
David Ahern6edb3c92018-04-17 17:33:15 -07001014
David Ahern0d161582019-04-16 14:36:04 -07001015 rt->rt6i_dst = f6i->fib6_dst;
David Aherndcd1f572018-04-18 15:39:05 -07001016 rt->rt6i_idev = dev ? in6_dev_get(dev) : NULL;
David Ahern7d21fec2019-04-16 14:36:11 -07001017 rt->rt6i_flags = res->fib6_flags;
David Ahern0d161582019-04-16 14:36:04 -07001018 if (nh->fib_nh_gw_family) {
1019 rt->rt6i_gateway = nh->fib_nh_gw6;
David Ahern2b2450c2019-03-27 20:53:52 -07001020 rt->rt6i_flags |= RTF_GATEWAY;
1021 }
David Ahern0d161582019-04-16 14:36:04 -07001022 rt6_set_from(rt, f6i);
David Ahernae90d862018-04-17 17:33:12 -07001023#ifdef CONFIG_IPV6_SUBTREES
David Ahern0d161582019-04-16 14:36:04 -07001024 rt->rt6i_src = f6i->fib6_src;
David Ahernae90d862018-04-17 17:33:12 -07001025#endif
David Ahernae90d862018-04-17 17:33:12 -07001026}
1027
Martin KaFai Laua3c00e42014-10-20 13:42:43 -07001028static struct fib6_node* fib6_backtrack(struct fib6_node *fn,
1029 struct in6_addr *saddr)
1030{
Wei Wang66f5d6c2017-10-06 12:06:10 -07001031 struct fib6_node *pn, *sn;
Martin KaFai Laua3c00e42014-10-20 13:42:43 -07001032 while (1) {
1033 if (fn->fn_flags & RTN_TL_ROOT)
1034 return NULL;
Wei Wang66f5d6c2017-10-06 12:06:10 -07001035 pn = rcu_dereference(fn->parent);
1036 sn = FIB6_SUBTREE(pn);
1037 if (sn && sn != fn)
David Ahern64547432018-05-09 20:34:19 -07001038 fn = fib6_node_lookup(sn, NULL, saddr);
Martin KaFai Laua3c00e42014-10-20 13:42:43 -07001039 else
1040 fn = pn;
1041 if (fn->fn_flags & RTN_RTINFO)
1042 return fn;
1043 }
1044}
Thomas Grafc71099a2006-08-04 23:20:06 -07001045
David Ahern10585b42019-03-20 09:24:50 -07001046static bool ip6_hold_safe(struct net *net, struct rt6_info **prt)
Wei Wangd3843fe2017-10-06 12:06:06 -07001047{
1048 struct rt6_info *rt = *prt;
1049
1050 if (dst_hold_safe(&rt->dst))
1051 return true;
David Ahern10585b42019-03-20 09:24:50 -07001052 if (net) {
Wei Wangd3843fe2017-10-06 12:06:06 -07001053 rt = net->ipv6.ip6_null_entry;
1054 dst_hold(&rt->dst);
1055 } else {
1056 rt = NULL;
1057 }
1058 *prt = rt;
1059 return false;
1060}
1061
David Aherndec9b0e2018-04-17 17:33:19 -07001062/* called with rcu_lock held */
David Ahern9b6b35a2019-04-16 14:36:02 -07001063static struct rt6_info *ip6_create_rt_rcu(const struct fib6_result *res)
David Aherndec9b0e2018-04-17 17:33:19 -07001064{
David Ahern9b6b35a2019-04-16 14:36:02 -07001065 struct net_device *dev = res->nh->fib_nh_dev;
1066 struct fib6_info *f6i = res->f6i;
1067 unsigned short flags;
David Aherndec9b0e2018-04-17 17:33:19 -07001068 struct rt6_info *nrt;
1069
David Ahern9b6b35a2019-04-16 14:36:02 -07001070 if (!fib6_info_hold_safe(f6i))
Xin Long1c87e792019-03-20 14:45:48 +08001071 goto fallback;
Wei Wange873e4b2018-07-21 20:56:32 -07001072
David Ahern9b6b35a2019-04-16 14:36:02 -07001073 flags = fib6_info_dst_flags(f6i);
David Ahern93531c62018-04-17 17:33:25 -07001074 nrt = ip6_dst_alloc(dev_net(dev), dev, flags);
Xin Long1c87e792019-03-20 14:45:48 +08001075 if (!nrt) {
David Ahern9b6b35a2019-04-16 14:36:02 -07001076 fib6_info_release(f6i);
Xin Long1c87e792019-03-20 14:45:48 +08001077 goto fallback;
1078 }
David Aherndec9b0e2018-04-17 17:33:19 -07001079
David Ahern0d161582019-04-16 14:36:04 -07001080 ip6_rt_copy_init(nrt, res);
Xin Long1c87e792019-03-20 14:45:48 +08001081 return nrt;
1082
1083fallback:
1084 nrt = dev_net(dev)->ipv6.ip6_null_entry;
1085 dst_hold(&nrt->dst);
David Aherndec9b0e2018-04-17 17:33:19 -07001086 return nrt;
1087}
1088
Daniel Lezcano8ed67782008-03-04 13:48:30 -08001089static struct rt6_info *ip6_pol_route_lookup(struct net *net,
1090 struct fib6_table *table,
David Ahernb75cc8f2018-03-02 08:32:17 -08001091 struct flowi6 *fl6,
1092 const struct sk_buff *skb,
1093 int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094{
David Ahernb1d40992019-04-16 14:35:59 -07001095 struct fib6_result res = {};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096 struct fib6_node *fn;
David Ahern23fb93a2018-04-17 17:33:23 -07001097 struct rt6_info *rt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098
David Ahernb6cdbc82018-03-29 17:44:57 -07001099 if (fl6->flowi6_flags & FLOWI_FLAG_SKIP_NH_OIF)
1100 flags &= ~RT6_LOOKUP_F_IFACE;
1101
Wei Wang66f5d6c2017-10-06 12:06:10 -07001102 rcu_read_lock();
David Ahern64547432018-05-09 20:34:19 -07001103 fn = fib6_node_lookup(&table->tb6_root, &fl6->daddr, &fl6->saddr);
Thomas Grafc71099a2006-08-04 23:20:06 -07001104restart:
David Ahernb1d40992019-04-16 14:35:59 -07001105 res.f6i = rcu_dereference(fn->leaf);
1106 if (!res.f6i)
1107 res.f6i = net->ipv6.fib6_null_entry;
David Ahernaf52a522019-04-09 14:41:16 -07001108 else
David Ahern75ef7382019-04-16 14:36:07 -07001109 rt6_device_match(net, &res, &fl6->saddr, fl6->flowi6_oif,
1110 flags);
David Ahernaf52a522019-04-09 14:41:16 -07001111
David Ahernb1d40992019-04-16 14:35:59 -07001112 if (res.f6i == net->ipv6.fib6_null_entry) {
Martin KaFai Laua3c00e42014-10-20 13:42:43 -07001113 fn = fib6_backtrack(fn, &fl6->saddr);
1114 if (fn)
1115 goto restart;
David Ahernaf52a522019-04-09 14:41:16 -07001116
1117 rt = net->ipv6.ip6_null_entry;
1118 dst_hold(&rt->dst);
1119 goto out;
Martin KaFai Laua3c00e42014-10-20 13:42:43 -07001120 }
Wei Wang2b760fc2017-10-06 12:06:03 -07001121
David Ahernb1d40992019-04-16 14:35:59 -07001122 fib6_select_path(net, &res, fl6, fl6->flowi6_oif,
1123 fl6->flowi6_oif != 0, skb, flags);
1124
David S. Miller4c9483b2011-03-12 16:22:43 -05001125 /* Search through exception table */
David Ahern7e4b5122019-04-16 14:36:00 -07001126 rt = rt6_find_cached_rt(&res, &fl6->daddr, &fl6->saddr);
David Ahern23fb93a2018-04-17 17:33:23 -07001127 if (rt) {
David Ahern10585b42019-03-20 09:24:50 -07001128 if (ip6_hold_safe(net, &rt))
David Aherndec9b0e2018-04-17 17:33:19 -07001129 dst_use_noref(&rt->dst, jiffies);
David Ahern23fb93a2018-04-17 17:33:23 -07001130 } else {
David Ahern9b6b35a2019-04-16 14:36:02 -07001131 rt = ip6_create_rt_rcu(&res);
David Aherndec9b0e2018-04-17 17:33:19 -07001132 }
Wei Wangd3843fe2017-10-06 12:06:06 -07001133
David Ahernaf52a522019-04-09 14:41:16 -07001134out:
David Ahern8ff2e5b2019-04-16 14:36:09 -07001135 trace_fib6_table_lookup(net, &res, table, fl6);
David Ahernaf52a522019-04-09 14:41:16 -07001136
Wei Wang66f5d6c2017-10-06 12:06:10 -07001137 rcu_read_unlock();
David Ahernb8115802015-11-19 12:24:22 -08001138
Thomas Grafc71099a2006-08-04 23:20:06 -07001139 return rt;
Thomas Grafc71099a2006-08-04 23:20:06 -07001140}
1141
Ian Morris67ba4152014-08-24 21:53:10 +01001142struct dst_entry *ip6_route_lookup(struct net *net, struct flowi6 *fl6,
David Ahernb75cc8f2018-03-02 08:32:17 -08001143 const struct sk_buff *skb, int flags)
Florian Westphalea6e5742011-09-05 16:05:44 +02001144{
David Ahernb75cc8f2018-03-02 08:32:17 -08001145 return fib6_rule_lookup(net, fl6, skb, flags, ip6_pol_route_lookup);
Florian Westphalea6e5742011-09-05 16:05:44 +02001146}
1147EXPORT_SYMBOL_GPL(ip6_route_lookup);
1148
YOSHIFUJI Hideaki9acd9f32008-04-10 15:42:10 +09001149struct rt6_info *rt6_lookup(struct net *net, const struct in6_addr *daddr,
David Ahernb75cc8f2018-03-02 08:32:17 -08001150 const struct in6_addr *saddr, int oif,
1151 const struct sk_buff *skb, int strict)
Thomas Grafc71099a2006-08-04 23:20:06 -07001152{
David S. Miller4c9483b2011-03-12 16:22:43 -05001153 struct flowi6 fl6 = {
1154 .flowi6_oif = oif,
1155 .daddr = *daddr,
Thomas Grafc71099a2006-08-04 23:20:06 -07001156 };
1157 struct dst_entry *dst;
YOSHIFUJI Hideaki77d16f42006-08-23 17:25:05 -07001158 int flags = strict ? RT6_LOOKUP_F_IFACE : 0;
Thomas Grafc71099a2006-08-04 23:20:06 -07001159
Thomas Grafadaa70b2006-10-13 15:01:03 -07001160 if (saddr) {
David S. Miller4c9483b2011-03-12 16:22:43 -05001161 memcpy(&fl6.saddr, saddr, sizeof(*saddr));
Thomas Grafadaa70b2006-10-13 15:01:03 -07001162 flags |= RT6_LOOKUP_F_HAS_SADDR;
1163 }
1164
David Ahernb75cc8f2018-03-02 08:32:17 -08001165 dst = fib6_rule_lookup(net, &fl6, skb, flags, ip6_pol_route_lookup);
Thomas Grafc71099a2006-08-04 23:20:06 -07001166 if (dst->error == 0)
1167 return (struct rt6_info *) dst;
1168
1169 dst_release(dst);
1170
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171 return NULL;
1172}
YOSHIFUJI Hideaki71590392007-02-22 22:05:40 +09001173EXPORT_SYMBOL(rt6_lookup);
1174
Thomas Grafc71099a2006-08-04 23:20:06 -07001175/* ip6_ins_rt is called with FREE table->tb6_lock.
Wei Wang1cfb71e2017-06-17 10:42:33 -07001176 * It takes new route entry, the addition fails by any reason the
1177 * route is released.
1178 * Caller must hold dst before calling it.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179 */
1180
David Ahern8d1c8022018-04-17 17:33:26 -07001181static int __ip6_ins_rt(struct fib6_info *rt, struct nl_info *info,
David Ahern333c4302017-05-21 10:12:04 -06001182 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183{
1184 int err;
Thomas Grafc71099a2006-08-04 23:20:06 -07001185 struct fib6_table *table;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186
David Ahern93c2fb22018-04-18 15:38:59 -07001187 table = rt->fib6_table;
Wei Wang66f5d6c2017-10-06 12:06:10 -07001188 spin_lock_bh(&table->tb6_lock);
David Ahernd4ead6b2018-04-17 17:33:16 -07001189 err = fib6_add(&table->tb6_root, rt, info, extack);
Wei Wang66f5d6c2017-10-06 12:06:10 -07001190 spin_unlock_bh(&table->tb6_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191
1192 return err;
1193}
1194
David Ahern8d1c8022018-04-17 17:33:26 -07001195int ip6_ins_rt(struct net *net, struct fib6_info *rt)
Thomas Graf40e22e82006-08-22 00:00:45 -07001196{
David Ahernafb1d4b52018-04-17 17:33:11 -07001197 struct nl_info info = { .nl_net = net, };
Florian Westphale715b6d2015-01-05 23:57:44 +01001198
David Ahernd4ead6b2018-04-17 17:33:16 -07001199 return __ip6_ins_rt(rt, &info, NULL);
Thomas Graf40e22e82006-08-22 00:00:45 -07001200}
1201
David Ahern85bd05d2019-04-16 14:36:01 -07001202static struct rt6_info *ip6_rt_cache_alloc(const struct fib6_result *res,
Martin KaFai Lau8b9df262015-05-22 20:55:59 -07001203 const struct in6_addr *daddr,
1204 const struct in6_addr *saddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205{
David Ahern85bd05d2019-04-16 14:36:01 -07001206 struct fib6_info *f6i = res->f6i;
David Ahern4832c302017-08-17 12:17:20 -07001207 struct net_device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208 struct rt6_info *rt;
1209
1210 /*
1211 * Clone the route.
1212 */
1213
David Ahern85bd05d2019-04-16 14:36:01 -07001214 if (!fib6_info_hold_safe(f6i))
Wei Wange873e4b2018-07-21 20:56:32 -07001215 return NULL;
1216
David Ahern0d161582019-04-16 14:36:04 -07001217 dev = ip6_rt_get_dev_rcu(res);
David Ahern93531c62018-04-17 17:33:25 -07001218 rt = ip6_dst_alloc(dev_net(dev), dev, 0);
Wei Wange873e4b2018-07-21 20:56:32 -07001219 if (!rt) {
David Ahern85bd05d2019-04-16 14:36:01 -07001220 fib6_info_release(f6i);
Martin KaFai Lau83a09ab2015-05-22 20:56:05 -07001221 return NULL;
Wei Wange873e4b2018-07-21 20:56:32 -07001222 }
Martin KaFai Lau83a09ab2015-05-22 20:56:05 -07001223
David Ahern0d161582019-04-16 14:36:04 -07001224 ip6_rt_copy_init(rt, res);
Martin KaFai Lau83a09ab2015-05-22 20:56:05 -07001225 rt->rt6i_flags |= RTF_CACHE;
Martin KaFai Lau83a09ab2015-05-22 20:56:05 -07001226 rt->dst.flags |= DST_HOST;
1227 rt->rt6i_dst.addr = *daddr;
1228 rt->rt6i_dst.plen = 128;
1229
David Ahern85bd05d2019-04-16 14:36:01 -07001230 if (!rt6_is_gw_or_nonexthop(res)) {
1231 if (f6i->fib6_dst.plen != 128 &&
1232 ipv6_addr_equal(&f6i->fib6_dst.addr, daddr))
Martin KaFai Lau83a09ab2015-05-22 20:56:05 -07001233 rt->rt6i_flags |= RTF_ANYCAST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234#ifdef CONFIG_IPV6_SUBTREES
Martin KaFai Lau83a09ab2015-05-22 20:56:05 -07001235 if (rt->rt6i_src.plen && saddr) {
1236 rt->rt6i_src.addr = *saddr;
1237 rt->rt6i_src.plen = 128;
Martin KaFai Lau8b9df262015-05-22 20:55:59 -07001238 }
Martin KaFai Lau83a09ab2015-05-22 20:56:05 -07001239#endif
YOSHIFUJI Hideaki95a9a5b2006-03-20 16:55:51 -08001240 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241
YOSHIFUJI Hideaki95a9a5b2006-03-20 16:55:51 -08001242 return rt;
1243}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244
David Aherndb3fede2019-04-16 14:36:03 -07001245static struct rt6_info *ip6_rt_pcpu_alloc(const struct fib6_result *res)
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001246{
David Aherndb3fede2019-04-16 14:36:03 -07001247 struct fib6_info *f6i = res->f6i;
1248 unsigned short flags = fib6_info_dst_flags(f6i);
David Ahern4832c302017-08-17 12:17:20 -07001249 struct net_device *dev;
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001250 struct rt6_info *pcpu_rt;
1251
David Aherndb3fede2019-04-16 14:36:03 -07001252 if (!fib6_info_hold_safe(f6i))
Wei Wange873e4b2018-07-21 20:56:32 -07001253 return NULL;
1254
David Ahern4832c302017-08-17 12:17:20 -07001255 rcu_read_lock();
David Ahern0d161582019-04-16 14:36:04 -07001256 dev = ip6_rt_get_dev_rcu(res);
David Ahern93531c62018-04-17 17:33:25 -07001257 pcpu_rt = ip6_dst_alloc(dev_net(dev), dev, flags);
David Ahern4832c302017-08-17 12:17:20 -07001258 rcu_read_unlock();
Wei Wange873e4b2018-07-21 20:56:32 -07001259 if (!pcpu_rt) {
David Aherndb3fede2019-04-16 14:36:03 -07001260 fib6_info_release(f6i);
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001261 return NULL;
Wei Wange873e4b2018-07-21 20:56:32 -07001262 }
David Ahern0d161582019-04-16 14:36:04 -07001263 ip6_rt_copy_init(pcpu_rt, res);
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001264 pcpu_rt->rt6i_flags |= RTF_PCPU;
1265 return pcpu_rt;
1266}
1267
Wei Wang66f5d6c2017-10-06 12:06:10 -07001268/* It should be called with rcu_read_lock() acquired */
David Aherndb3fede2019-04-16 14:36:03 -07001269static struct rt6_info *rt6_get_pcpu_route(const struct fib6_result *res)
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001270{
Martin KaFai Laua73e4192015-08-14 11:05:53 -07001271 struct rt6_info *pcpu_rt, **p;
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001272
David Aherndb3fede2019-04-16 14:36:03 -07001273 p = this_cpu_ptr(res->f6i->rt6i_pcpu);
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001274 pcpu_rt = *p;
1275
David Ahernd4ead6b2018-04-17 17:33:16 -07001276 if (pcpu_rt)
David Ahern10585b42019-03-20 09:24:50 -07001277 ip6_hold_safe(NULL, &pcpu_rt);
Wei Wangd3843fe2017-10-06 12:06:06 -07001278
Martin KaFai Laua73e4192015-08-14 11:05:53 -07001279 return pcpu_rt;
1280}
1281
David Ahernafb1d4b52018-04-17 17:33:11 -07001282static struct rt6_info *rt6_make_pcpu_route(struct net *net,
David Aherndb3fede2019-04-16 14:36:03 -07001283 const struct fib6_result *res)
Martin KaFai Laua73e4192015-08-14 11:05:53 -07001284{
1285 struct rt6_info *pcpu_rt, *prev, **p;
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001286
David Aherndb3fede2019-04-16 14:36:03 -07001287 pcpu_rt = ip6_rt_pcpu_alloc(res);
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001288 if (!pcpu_rt) {
Martin KaFai Lau9c7370a2015-08-14 11:05:54 -07001289 dst_hold(&net->ipv6.ip6_null_entry->dst);
1290 return net->ipv6.ip6_null_entry;
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001291 }
1292
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001293 dst_hold(&pcpu_rt->dst);
David Aherndb3fede2019-04-16 14:36:03 -07001294 p = this_cpu_ptr(res->f6i->rt6i_pcpu);
Wei Wanga94b9362017-10-06 12:06:04 -07001295 prev = cmpxchg(p, NULL, pcpu_rt);
Eric Dumazet951f7882017-10-08 21:07:18 -07001296 BUG_ON(prev);
Wei Wanga94b9362017-10-06 12:06:04 -07001297
Eric Dumazet61fb0d02019-05-15 19:39:52 -07001298 if (res->f6i->fib6_destroying) {
1299 struct fib6_info *from;
1300
1301 from = xchg((__force struct fib6_info **)&pcpu_rt->from, NULL);
1302 fib6_info_release(from);
1303 }
1304
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001305 return pcpu_rt;
1306}
1307
Wei Wang35732d02017-10-06 12:05:57 -07001308/* exception hash table implementation
1309 */
1310static DEFINE_SPINLOCK(rt6_exception_lock);
1311
1312/* Remove rt6_ex from hash table and free the memory
1313 * Caller must hold rt6_exception_lock
1314 */
1315static void rt6_remove_exception(struct rt6_exception_bucket *bucket,
1316 struct rt6_exception *rt6_ex)
1317{
Paolo Abenif5b51fe2019-02-20 18:18:12 +01001318 struct fib6_info *from;
Colin Ian Kingb2427e62017-10-10 18:01:16 +01001319 struct net *net;
Wei Wang81eb8442017-10-06 12:06:11 -07001320
Wei Wang35732d02017-10-06 12:05:57 -07001321 if (!bucket || !rt6_ex)
1322 return;
Colin Ian Kingb2427e62017-10-10 18:01:16 +01001323
1324 net = dev_net(rt6_ex->rt6i->dst.dev);
Paolo Abenif5b51fe2019-02-20 18:18:12 +01001325 net->ipv6.rt6_stats->fib_rt_cache--;
1326
1327 /* purge completely the exception to allow releasing the held resources:
1328 * some [sk] cache may keep the dst around for unlimited time
1329 */
Eric Dumazet0e233872019-04-28 12:22:25 -07001330 from = xchg((__force struct fib6_info **)&rt6_ex->rt6i->from, NULL);
Paolo Abenif5b51fe2019-02-20 18:18:12 +01001331 fib6_info_release(from);
1332 dst_dev_put(&rt6_ex->rt6i->dst);
1333
Wei Wang35732d02017-10-06 12:05:57 -07001334 hlist_del_rcu(&rt6_ex->hlist);
David Ahern77634cc2018-04-17 17:33:27 -07001335 dst_release(&rt6_ex->rt6i->dst);
Wei Wang35732d02017-10-06 12:05:57 -07001336 kfree_rcu(rt6_ex, rcu);
1337 WARN_ON_ONCE(!bucket->depth);
1338 bucket->depth--;
1339}
1340
1341/* Remove oldest rt6_ex in bucket and free the memory
1342 * Caller must hold rt6_exception_lock
1343 */
1344static void rt6_exception_remove_oldest(struct rt6_exception_bucket *bucket)
1345{
1346 struct rt6_exception *rt6_ex, *oldest = NULL;
1347
1348 if (!bucket)
1349 return;
1350
1351 hlist_for_each_entry(rt6_ex, &bucket->chain, hlist) {
1352 if (!oldest || time_before(rt6_ex->stamp, oldest->stamp))
1353 oldest = rt6_ex;
1354 }
1355 rt6_remove_exception(bucket, oldest);
1356}
1357
1358static u32 rt6_exception_hash(const struct in6_addr *dst,
1359 const struct in6_addr *src)
1360{
1361 static u32 seed __read_mostly;
1362 u32 val;
1363
1364 net_get_random_once(&seed, sizeof(seed));
1365 val = jhash(dst, sizeof(*dst), seed);
1366
1367#ifdef CONFIG_IPV6_SUBTREES
1368 if (src)
1369 val = jhash(src, sizeof(*src), val);
1370#endif
1371 return hash_32(val, FIB6_EXCEPTION_BUCKET_SIZE_SHIFT);
1372}
1373
1374/* Helper function to find the cached rt in the hash table
1375 * and update bucket pointer to point to the bucket for this
1376 * (daddr, saddr) pair
1377 * Caller must hold rt6_exception_lock
1378 */
1379static struct rt6_exception *
1380__rt6_find_exception_spinlock(struct rt6_exception_bucket **bucket,
1381 const struct in6_addr *daddr,
1382 const struct in6_addr *saddr)
1383{
1384 struct rt6_exception *rt6_ex;
1385 u32 hval;
1386
1387 if (!(*bucket) || !daddr)
1388 return NULL;
1389
1390 hval = rt6_exception_hash(daddr, saddr);
1391 *bucket += hval;
1392
1393 hlist_for_each_entry(rt6_ex, &(*bucket)->chain, hlist) {
1394 struct rt6_info *rt6 = rt6_ex->rt6i;
1395 bool matched = ipv6_addr_equal(daddr, &rt6->rt6i_dst.addr);
1396
1397#ifdef CONFIG_IPV6_SUBTREES
1398 if (matched && saddr)
1399 matched = ipv6_addr_equal(saddr, &rt6->rt6i_src.addr);
1400#endif
1401 if (matched)
1402 return rt6_ex;
1403 }
1404 return NULL;
1405}
1406
1407/* Helper function to find the cached rt in the hash table
1408 * and update bucket pointer to point to the bucket for this
1409 * (daddr, saddr) pair
1410 * Caller must hold rcu_read_lock()
1411 */
1412static struct rt6_exception *
1413__rt6_find_exception_rcu(struct rt6_exception_bucket **bucket,
1414 const struct in6_addr *daddr,
1415 const struct in6_addr *saddr)
1416{
1417 struct rt6_exception *rt6_ex;
1418 u32 hval;
1419
1420 WARN_ON_ONCE(!rcu_read_lock_held());
1421
1422 if (!(*bucket) || !daddr)
1423 return NULL;
1424
1425 hval = rt6_exception_hash(daddr, saddr);
1426 *bucket += hval;
1427
1428 hlist_for_each_entry_rcu(rt6_ex, &(*bucket)->chain, hlist) {
1429 struct rt6_info *rt6 = rt6_ex->rt6i;
1430 bool matched = ipv6_addr_equal(daddr, &rt6->rt6i_dst.addr);
1431
1432#ifdef CONFIG_IPV6_SUBTREES
1433 if (matched && saddr)
1434 matched = ipv6_addr_equal(saddr, &rt6->rt6i_src.addr);
1435#endif
1436 if (matched)
1437 return rt6_ex;
1438 }
1439 return NULL;
1440}
1441
David Ahernb748f262019-04-16 14:36:06 -07001442static unsigned int fib6_mtu(const struct fib6_result *res)
Wei Wang35732d02017-10-06 12:05:57 -07001443{
David Ahernb748f262019-04-16 14:36:06 -07001444 const struct fib6_nh *nh = res->nh;
David Ahernd4ead6b2018-04-17 17:33:16 -07001445 unsigned int mtu;
1446
David Ahernb748f262019-04-16 14:36:06 -07001447 if (res->f6i->fib6_pmtu) {
1448 mtu = res->f6i->fib6_pmtu;
David Aherndcd1f572018-04-18 15:39:05 -07001449 } else {
David Ahernb748f262019-04-16 14:36:06 -07001450 struct net_device *dev = nh->fib_nh_dev;
David Aherndcd1f572018-04-18 15:39:05 -07001451 struct inet6_dev *idev;
1452
1453 rcu_read_lock();
1454 idev = __in6_dev_get(dev);
1455 mtu = idev->cnf.mtu6;
1456 rcu_read_unlock();
1457 }
1458
David Ahernd4ead6b2018-04-17 17:33:16 -07001459 mtu = min_t(unsigned int, mtu, IP6_MAX_MTU);
1460
David Ahernb748f262019-04-16 14:36:06 -07001461 return mtu - lwtunnel_headroom(nh->fib_nh_lws, mtu);
David Ahernd4ead6b2018-04-17 17:33:16 -07001462}
1463
Wei Wang35732d02017-10-06 12:05:57 -07001464static int rt6_insert_exception(struct rt6_info *nrt,
David Ahern5012f0a2019-04-16 14:36:05 -07001465 const struct fib6_result *res)
Wei Wang35732d02017-10-06 12:05:57 -07001466{
David Ahern5e670d82018-04-17 17:33:14 -07001467 struct net *net = dev_net(nrt->dst.dev);
Wei Wang35732d02017-10-06 12:05:57 -07001468 struct rt6_exception_bucket *bucket;
1469 struct in6_addr *src_key = NULL;
1470 struct rt6_exception *rt6_ex;
David Ahern5012f0a2019-04-16 14:36:05 -07001471 struct fib6_info *f6i = res->f6i;
Wei Wang35732d02017-10-06 12:05:57 -07001472 int err = 0;
1473
Wei Wang35732d02017-10-06 12:05:57 -07001474 spin_lock_bh(&rt6_exception_lock);
1475
David Ahern5012f0a2019-04-16 14:36:05 -07001476 if (f6i->exception_bucket_flushed) {
Wei Wang35732d02017-10-06 12:05:57 -07001477 err = -EINVAL;
1478 goto out;
1479 }
1480
David Ahern5012f0a2019-04-16 14:36:05 -07001481 bucket = rcu_dereference_protected(f6i->rt6i_exception_bucket,
Wei Wang35732d02017-10-06 12:05:57 -07001482 lockdep_is_held(&rt6_exception_lock));
1483 if (!bucket) {
1484 bucket = kcalloc(FIB6_EXCEPTION_BUCKET_SIZE, sizeof(*bucket),
1485 GFP_ATOMIC);
1486 if (!bucket) {
1487 err = -ENOMEM;
1488 goto out;
1489 }
David Ahern5012f0a2019-04-16 14:36:05 -07001490 rcu_assign_pointer(f6i->rt6i_exception_bucket, bucket);
Wei Wang35732d02017-10-06 12:05:57 -07001491 }
1492
1493#ifdef CONFIG_IPV6_SUBTREES
David Ahern5012f0a2019-04-16 14:36:05 -07001494 /* fib6_src.plen != 0 indicates f6i is in subtree
Wei Wang35732d02017-10-06 12:05:57 -07001495 * and exception table is indexed by a hash of
David Ahern5012f0a2019-04-16 14:36:05 -07001496 * both fib6_dst and fib6_src.
Wei Wang35732d02017-10-06 12:05:57 -07001497 * Otherwise, the exception table is indexed by
David Ahern5012f0a2019-04-16 14:36:05 -07001498 * a hash of only fib6_dst.
Wei Wang35732d02017-10-06 12:05:57 -07001499 */
David Ahern5012f0a2019-04-16 14:36:05 -07001500 if (f6i->fib6_src.plen)
Wei Wang35732d02017-10-06 12:05:57 -07001501 src_key = &nrt->rt6i_src.addr;
1502#endif
David Ahern5012f0a2019-04-16 14:36:05 -07001503 /* rt6_mtu_change() might lower mtu on f6i.
Wei Wangf5bbe7e2017-10-06 12:05:59 -07001504 * Only insert this exception route if its mtu
David Ahern5012f0a2019-04-16 14:36:05 -07001505 * is less than f6i's mtu value.
Wei Wangf5bbe7e2017-10-06 12:05:59 -07001506 */
David Ahernb748f262019-04-16 14:36:06 -07001507 if (dst_metric_raw(&nrt->dst, RTAX_MTU) >= fib6_mtu(res)) {
Wei Wangf5bbe7e2017-10-06 12:05:59 -07001508 err = -EINVAL;
1509 goto out;
1510 }
Wei Wang60006a42017-10-06 12:05:58 -07001511
Wei Wang35732d02017-10-06 12:05:57 -07001512 rt6_ex = __rt6_find_exception_spinlock(&bucket, &nrt->rt6i_dst.addr,
1513 src_key);
1514 if (rt6_ex)
1515 rt6_remove_exception(bucket, rt6_ex);
1516
1517 rt6_ex = kzalloc(sizeof(*rt6_ex), GFP_ATOMIC);
1518 if (!rt6_ex) {
1519 err = -ENOMEM;
1520 goto out;
1521 }
1522 rt6_ex->rt6i = nrt;
1523 rt6_ex->stamp = jiffies;
Wei Wang35732d02017-10-06 12:05:57 -07001524 hlist_add_head_rcu(&rt6_ex->hlist, &bucket->chain);
1525 bucket->depth++;
Wei Wang81eb8442017-10-06 12:06:11 -07001526 net->ipv6.rt6_stats->fib_rt_cache++;
Wei Wang35732d02017-10-06 12:05:57 -07001527
1528 if (bucket->depth > FIB6_MAX_DEPTH)
1529 rt6_exception_remove_oldest(bucket);
1530
1531out:
1532 spin_unlock_bh(&rt6_exception_lock);
1533
1534 /* Update fn->fn_sernum to invalidate all cached dst */
Paolo Abenib886d5f2017-10-19 16:07:10 +02001535 if (!err) {
David Ahern5012f0a2019-04-16 14:36:05 -07001536 spin_lock_bh(&f6i->fib6_table->tb6_lock);
1537 fib6_update_sernum(net, f6i);
1538 spin_unlock_bh(&f6i->fib6_table->tb6_lock);
Paolo Abenib886d5f2017-10-19 16:07:10 +02001539 fib6_force_start_gc(net);
1540 }
Wei Wang35732d02017-10-06 12:05:57 -07001541
1542 return err;
1543}
1544
David Ahern8d1c8022018-04-17 17:33:26 -07001545void rt6_flush_exceptions(struct fib6_info *rt)
Wei Wang35732d02017-10-06 12:05:57 -07001546{
1547 struct rt6_exception_bucket *bucket;
1548 struct rt6_exception *rt6_ex;
1549 struct hlist_node *tmp;
1550 int i;
1551
1552 spin_lock_bh(&rt6_exception_lock);
1553 /* Prevent rt6_insert_exception() to recreate the bucket list */
1554 rt->exception_bucket_flushed = 1;
1555
1556 bucket = rcu_dereference_protected(rt->rt6i_exception_bucket,
1557 lockdep_is_held(&rt6_exception_lock));
1558 if (!bucket)
1559 goto out;
1560
1561 for (i = 0; i < FIB6_EXCEPTION_BUCKET_SIZE; i++) {
1562 hlist_for_each_entry_safe(rt6_ex, tmp, &bucket->chain, hlist)
1563 rt6_remove_exception(bucket, rt6_ex);
1564 WARN_ON_ONCE(bucket->depth);
1565 bucket++;
1566 }
1567
1568out:
1569 spin_unlock_bh(&rt6_exception_lock);
1570}
1571
1572/* Find cached rt in the hash table inside passed in rt
1573 * Caller has to hold rcu_read_lock()
1574 */
David Ahern7e4b5122019-04-16 14:36:00 -07001575static struct rt6_info *rt6_find_cached_rt(const struct fib6_result *res,
Wei Wang510e2ce2019-05-16 13:30:54 -07001576 const struct in6_addr *daddr,
1577 const struct in6_addr *saddr)
Wei Wang35732d02017-10-06 12:05:57 -07001578{
Wei Wang510e2ce2019-05-16 13:30:54 -07001579 const struct in6_addr *src_key = NULL;
Wei Wang35732d02017-10-06 12:05:57 -07001580 struct rt6_exception_bucket *bucket;
Wei Wang35732d02017-10-06 12:05:57 -07001581 struct rt6_exception *rt6_ex;
David Ahern7e4b5122019-04-16 14:36:00 -07001582 struct rt6_info *ret = NULL;
Wei Wang35732d02017-10-06 12:05:57 -07001583
Wei Wang35732d02017-10-06 12:05:57 -07001584#ifdef CONFIG_IPV6_SUBTREES
David Ahern7e4b5122019-04-16 14:36:00 -07001585 /* fib6i_src.plen != 0 indicates f6i is in subtree
Wei Wang35732d02017-10-06 12:05:57 -07001586 * and exception table is indexed by a hash of
David Ahern7e4b5122019-04-16 14:36:00 -07001587 * both fib6_dst and fib6_src.
Wei Wang510e2ce2019-05-16 13:30:54 -07001588 * However, the src addr used to create the hash
1589 * might not be exactly the passed in saddr which
1590 * is a /128 addr from the flow.
1591 * So we need to use f6i->fib6_src to redo lookup
1592 * if the passed in saddr does not find anything.
1593 * (See the logic in ip6_rt_cache_alloc() on how
1594 * rt->rt6i_src is updated.)
Wei Wang35732d02017-10-06 12:05:57 -07001595 */
David Ahern7e4b5122019-04-16 14:36:00 -07001596 if (res->f6i->fib6_src.plen)
Wei Wang35732d02017-10-06 12:05:57 -07001597 src_key = saddr;
Wei Wang510e2ce2019-05-16 13:30:54 -07001598find_ex:
Wei Wang35732d02017-10-06 12:05:57 -07001599#endif
Wei Wang510e2ce2019-05-16 13:30:54 -07001600 bucket = rcu_dereference(res->f6i->rt6i_exception_bucket);
Wei Wang35732d02017-10-06 12:05:57 -07001601 rt6_ex = __rt6_find_exception_rcu(&bucket, daddr, src_key);
1602
1603 if (rt6_ex && !rt6_check_expired(rt6_ex->rt6i))
David Ahern7e4b5122019-04-16 14:36:00 -07001604 ret = rt6_ex->rt6i;
Wei Wang35732d02017-10-06 12:05:57 -07001605
Wei Wang510e2ce2019-05-16 13:30:54 -07001606#ifdef CONFIG_IPV6_SUBTREES
1607 /* Use fib6_src as src_key and redo lookup */
1608 if (!ret && src_key && src_key != &res->f6i->fib6_src.addr) {
1609 src_key = &res->f6i->fib6_src.addr;
1610 goto find_ex;
1611 }
1612#endif
1613
David Ahern7e4b5122019-04-16 14:36:00 -07001614 return ret;
Wei Wang35732d02017-10-06 12:05:57 -07001615}
1616
1617/* Remove the passed in cached rt from the hash table that contains it */
David Ahern23fb93a2018-04-17 17:33:23 -07001618static int rt6_remove_exception_rt(struct rt6_info *rt)
Wei Wang35732d02017-10-06 12:05:57 -07001619{
Wei Wang35732d02017-10-06 12:05:57 -07001620 struct rt6_exception_bucket *bucket;
1621 struct in6_addr *src_key = NULL;
1622 struct rt6_exception *rt6_ex;
David Ahern8a14e462018-04-23 11:32:07 -07001623 struct fib6_info *from;
Wei Wang35732d02017-10-06 12:05:57 -07001624 int err;
1625
Eric Dumazet091311d2018-04-24 09:22:49 -07001626 from = rcu_dereference(rt->from);
Wei Wang35732d02017-10-06 12:05:57 -07001627 if (!from ||
Colin Ian King442d7132017-10-10 19:10:30 +01001628 !(rt->rt6i_flags & RTF_CACHE))
Wei Wang35732d02017-10-06 12:05:57 -07001629 return -EINVAL;
1630
1631 if (!rcu_access_pointer(from->rt6i_exception_bucket))
1632 return -ENOENT;
1633
1634 spin_lock_bh(&rt6_exception_lock);
1635 bucket = rcu_dereference_protected(from->rt6i_exception_bucket,
1636 lockdep_is_held(&rt6_exception_lock));
1637#ifdef CONFIG_IPV6_SUBTREES
1638 /* rt6i_src.plen != 0 indicates 'from' is in subtree
1639 * and exception table is indexed by a hash of
1640 * both rt6i_dst and rt6i_src.
1641 * Otherwise, the exception table is indexed by
1642 * a hash of only rt6i_dst.
1643 */
David Ahern93c2fb22018-04-18 15:38:59 -07001644 if (from->fib6_src.plen)
Wei Wang35732d02017-10-06 12:05:57 -07001645 src_key = &rt->rt6i_src.addr;
1646#endif
1647 rt6_ex = __rt6_find_exception_spinlock(&bucket,
1648 &rt->rt6i_dst.addr,
1649 src_key);
1650 if (rt6_ex) {
1651 rt6_remove_exception(bucket, rt6_ex);
1652 err = 0;
1653 } else {
1654 err = -ENOENT;
1655 }
1656
1657 spin_unlock_bh(&rt6_exception_lock);
1658 return err;
1659}
1660
1661/* Find rt6_ex which contains the passed in rt cache and
1662 * refresh its stamp
1663 */
1664static void rt6_update_exception_stamp_rt(struct rt6_info *rt)
1665{
Wei Wang35732d02017-10-06 12:05:57 -07001666 struct rt6_exception_bucket *bucket;
1667 struct in6_addr *src_key = NULL;
1668 struct rt6_exception *rt6_ex;
Paolo Abeni193f3682019-02-21 11:19:41 +01001669 struct fib6_info *from;
Wei Wang35732d02017-10-06 12:05:57 -07001670
1671 rcu_read_lock();
Paolo Abeni193f3682019-02-21 11:19:41 +01001672 from = rcu_dereference(rt->from);
1673 if (!from || !(rt->rt6i_flags & RTF_CACHE))
1674 goto unlock;
1675
Wei Wang35732d02017-10-06 12:05:57 -07001676 bucket = rcu_dereference(from->rt6i_exception_bucket);
1677
1678#ifdef CONFIG_IPV6_SUBTREES
1679 /* rt6i_src.plen != 0 indicates 'from' is in subtree
1680 * and exception table is indexed by a hash of
1681 * both rt6i_dst and rt6i_src.
1682 * Otherwise, the exception table is indexed by
1683 * a hash of only rt6i_dst.
1684 */
David Ahern93c2fb22018-04-18 15:38:59 -07001685 if (from->fib6_src.plen)
Wei Wang35732d02017-10-06 12:05:57 -07001686 src_key = &rt->rt6i_src.addr;
1687#endif
1688 rt6_ex = __rt6_find_exception_rcu(&bucket,
1689 &rt->rt6i_dst.addr,
1690 src_key);
1691 if (rt6_ex)
1692 rt6_ex->stamp = jiffies;
1693
Paolo Abeni193f3682019-02-21 11:19:41 +01001694unlock:
Wei Wang35732d02017-10-06 12:05:57 -07001695 rcu_read_unlock();
1696}
1697
Stefano Brivioe9fa1492018-03-06 11:10:19 +01001698static bool rt6_mtu_change_route_allowed(struct inet6_dev *idev,
1699 struct rt6_info *rt, int mtu)
1700{
1701 /* If the new MTU is lower than the route PMTU, this new MTU will be the
1702 * lowest MTU in the path: always allow updating the route PMTU to
1703 * reflect PMTU decreases.
1704 *
1705 * If the new MTU is higher, and the route PMTU is equal to the local
1706 * MTU, this means the old MTU is the lowest in the path, so allow
1707 * updating it: if other nodes now have lower MTUs, PMTU discovery will
1708 * handle this.
1709 */
1710
1711 if (dst_mtu(&rt->dst) >= mtu)
1712 return true;
1713
1714 if (dst_mtu(&rt->dst) == idev->cnf.mtu6)
1715 return true;
1716
1717 return false;
1718}
1719
1720static void rt6_exceptions_update_pmtu(struct inet6_dev *idev,
David Ahern8d1c8022018-04-17 17:33:26 -07001721 struct fib6_info *rt, int mtu)
Wei Wangf5bbe7e2017-10-06 12:05:59 -07001722{
1723 struct rt6_exception_bucket *bucket;
1724 struct rt6_exception *rt6_ex;
1725 int i;
1726
1727 bucket = rcu_dereference_protected(rt->rt6i_exception_bucket,
1728 lockdep_is_held(&rt6_exception_lock));
1729
Stefano Brivioe9fa1492018-03-06 11:10:19 +01001730 if (!bucket)
1731 return;
1732
1733 for (i = 0; i < FIB6_EXCEPTION_BUCKET_SIZE; i++) {
1734 hlist_for_each_entry(rt6_ex, &bucket->chain, hlist) {
1735 struct rt6_info *entry = rt6_ex->rt6i;
1736
1737 /* For RTF_CACHE with rt6i_pmtu == 0 (i.e. a redirected
David Ahernd4ead6b2018-04-17 17:33:16 -07001738 * route), the metrics of its rt->from have already
Stefano Brivioe9fa1492018-03-06 11:10:19 +01001739 * been updated.
1740 */
David Ahernd4ead6b2018-04-17 17:33:16 -07001741 if (dst_metric_raw(&entry->dst, RTAX_MTU) &&
Stefano Brivioe9fa1492018-03-06 11:10:19 +01001742 rt6_mtu_change_route_allowed(idev, entry, mtu))
David Ahernd4ead6b2018-04-17 17:33:16 -07001743 dst_metric_set(&entry->dst, RTAX_MTU, mtu);
Wei Wangf5bbe7e2017-10-06 12:05:59 -07001744 }
Stefano Brivioe9fa1492018-03-06 11:10:19 +01001745 bucket++;
Wei Wangf5bbe7e2017-10-06 12:05:59 -07001746 }
1747}
1748
Wei Wangb16cb452017-10-06 12:06:00 -07001749#define RTF_CACHE_GATEWAY (RTF_GATEWAY | RTF_CACHE)
1750
David Ahern8d1c8022018-04-17 17:33:26 -07001751static void rt6_exceptions_clean_tohost(struct fib6_info *rt,
Wei Wangb16cb452017-10-06 12:06:00 -07001752 struct in6_addr *gateway)
1753{
1754 struct rt6_exception_bucket *bucket;
1755 struct rt6_exception *rt6_ex;
1756 struct hlist_node *tmp;
1757 int i;
1758
1759 if (!rcu_access_pointer(rt->rt6i_exception_bucket))
1760 return;
1761
1762 spin_lock_bh(&rt6_exception_lock);
1763 bucket = rcu_dereference_protected(rt->rt6i_exception_bucket,
1764 lockdep_is_held(&rt6_exception_lock));
1765
1766 if (bucket) {
1767 for (i = 0; i < FIB6_EXCEPTION_BUCKET_SIZE; i++) {
1768 hlist_for_each_entry_safe(rt6_ex, tmp,
1769 &bucket->chain, hlist) {
1770 struct rt6_info *entry = rt6_ex->rt6i;
1771
1772 if ((entry->rt6i_flags & RTF_CACHE_GATEWAY) ==
1773 RTF_CACHE_GATEWAY &&
1774 ipv6_addr_equal(gateway,
1775 &entry->rt6i_gateway)) {
1776 rt6_remove_exception(bucket, rt6_ex);
1777 }
1778 }
1779 bucket++;
1780 }
1781 }
1782
1783 spin_unlock_bh(&rt6_exception_lock);
1784}
1785
Wei Wangc757faa2017-10-06 12:06:01 -07001786static void rt6_age_examine_exception(struct rt6_exception_bucket *bucket,
1787 struct rt6_exception *rt6_ex,
1788 struct fib6_gc_args *gc_args,
1789 unsigned long now)
1790{
1791 struct rt6_info *rt = rt6_ex->rt6i;
1792
Paolo Abeni1859bac2017-10-19 16:07:11 +02001793 /* we are pruning and obsoleting aged-out and non gateway exceptions
1794 * even if others have still references to them, so that on next
1795 * dst_check() such references can be dropped.
1796 * EXPIRES exceptions - e.g. pmtu-generated ones are pruned when
1797 * expired, independently from their aging, as per RFC 8201 section 4
1798 */
Wei Wang31afeb42018-01-26 11:40:17 -08001799 if (!(rt->rt6i_flags & RTF_EXPIRES)) {
1800 if (time_after_eq(now, rt->dst.lastuse + gc_args->timeout)) {
1801 RT6_TRACE("aging clone %p\n", rt);
1802 rt6_remove_exception(bucket, rt6_ex);
1803 return;
1804 }
1805 } else if (time_after(jiffies, rt->dst.expires)) {
1806 RT6_TRACE("purging expired route %p\n", rt);
Wei Wangc757faa2017-10-06 12:06:01 -07001807 rt6_remove_exception(bucket, rt6_ex);
1808 return;
Wei Wang31afeb42018-01-26 11:40:17 -08001809 }
1810
1811 if (rt->rt6i_flags & RTF_GATEWAY) {
Wei Wangc757faa2017-10-06 12:06:01 -07001812 struct neighbour *neigh;
1813 __u8 neigh_flags = 0;
1814
Eric Dumazet1bfa26f2018-03-23 07:56:58 -07001815 neigh = __ipv6_neigh_lookup_noref(rt->dst.dev, &rt->rt6i_gateway);
1816 if (neigh)
Wei Wangc757faa2017-10-06 12:06:01 -07001817 neigh_flags = neigh->flags;
Eric Dumazet1bfa26f2018-03-23 07:56:58 -07001818
Wei Wangc757faa2017-10-06 12:06:01 -07001819 if (!(neigh_flags & NTF_ROUTER)) {
1820 RT6_TRACE("purging route %p via non-router but gateway\n",
1821 rt);
1822 rt6_remove_exception(bucket, rt6_ex);
1823 return;
1824 }
1825 }
Wei Wang31afeb42018-01-26 11:40:17 -08001826
Wei Wangc757faa2017-10-06 12:06:01 -07001827 gc_args->more++;
1828}
1829
David Ahern8d1c8022018-04-17 17:33:26 -07001830void rt6_age_exceptions(struct fib6_info *rt,
Wei Wangc757faa2017-10-06 12:06:01 -07001831 struct fib6_gc_args *gc_args,
1832 unsigned long now)
1833{
1834 struct rt6_exception_bucket *bucket;
1835 struct rt6_exception *rt6_ex;
1836 struct hlist_node *tmp;
1837 int i;
1838
1839 if (!rcu_access_pointer(rt->rt6i_exception_bucket))
1840 return;
1841
Eric Dumazet1bfa26f2018-03-23 07:56:58 -07001842 rcu_read_lock_bh();
1843 spin_lock(&rt6_exception_lock);
Wei Wangc757faa2017-10-06 12:06:01 -07001844 bucket = rcu_dereference_protected(rt->rt6i_exception_bucket,
1845 lockdep_is_held(&rt6_exception_lock));
1846
1847 if (bucket) {
1848 for (i = 0; i < FIB6_EXCEPTION_BUCKET_SIZE; i++) {
1849 hlist_for_each_entry_safe(rt6_ex, tmp,
1850 &bucket->chain, hlist) {
1851 rt6_age_examine_exception(bucket, rt6_ex,
1852 gc_args, now);
1853 }
1854 bucket++;
1855 }
1856 }
Eric Dumazet1bfa26f2018-03-23 07:56:58 -07001857 spin_unlock(&rt6_exception_lock);
1858 rcu_read_unlock_bh();
Wei Wangc757faa2017-10-06 12:06:01 -07001859}
1860
David Ahern1d053da2018-05-09 20:34:21 -07001861/* must be called with rcu lock held */
David Aherneffda4d2019-04-16 14:36:10 -07001862int fib6_table_lookup(struct net *net, struct fib6_table *table, int oif,
1863 struct flowi6 *fl6, struct fib6_result *res, int strict)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864{
Martin KaFai Lau367efcb2014-10-20 13:42:45 -07001865 struct fib6_node *fn, *saved_fn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866
David Ahern64547432018-05-09 20:34:19 -07001867 fn = fib6_node_lookup(&table->tb6_root, &fl6->daddr, &fl6->saddr);
Martin KaFai Lau367efcb2014-10-20 13:42:45 -07001868 saved_fn = fn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001869
David Ahernca254492015-10-12 11:47:10 -07001870 if (fl6->flowi6_flags & FLOWI_FLAG_SKIP_NH_OIF)
1871 oif = 0;
1872
Martin KaFai Laua3c00e42014-10-20 13:42:43 -07001873redo_rt6_select:
David Aherneffda4d2019-04-16 14:36:10 -07001874 rt6_select(net, fn, oif, res, strict);
1875 if (res->f6i == net->ipv6.fib6_null_entry) {
Martin KaFai Laua3c00e42014-10-20 13:42:43 -07001876 fn = fib6_backtrack(fn, &fl6->saddr);
1877 if (fn)
1878 goto redo_rt6_select;
Martin KaFai Lau367efcb2014-10-20 13:42:45 -07001879 else if (strict & RT6_LOOKUP_F_REACHABLE) {
1880 /* also consider unreachable route */
1881 strict &= ~RT6_LOOKUP_F_REACHABLE;
1882 fn = saved_fn;
1883 goto redo_rt6_select;
Martin KaFai Lau367efcb2014-10-20 13:42:45 -07001884 }
Martin KaFai Laua3c00e42014-10-20 13:42:43 -07001885 }
1886
David Aherneffda4d2019-04-16 14:36:10 -07001887 trace_fib6_table_lookup(net, res, table, fl6);
YOSHIFUJI Hideakifb9de912006-03-20 16:59:08 -08001888
David Aherneffda4d2019-04-16 14:36:10 -07001889 return 0;
David Ahern1d053da2018-05-09 20:34:21 -07001890}
1891
1892struct rt6_info *ip6_pol_route(struct net *net, struct fib6_table *table,
1893 int oif, struct flowi6 *fl6,
1894 const struct sk_buff *skb, int flags)
1895{
David Ahernb1d40992019-04-16 14:35:59 -07001896 struct fib6_result res = {};
David Ahern1d053da2018-05-09 20:34:21 -07001897 struct rt6_info *rt;
1898 int strict = 0;
1899
1900 strict |= flags & RT6_LOOKUP_F_IFACE;
1901 strict |= flags & RT6_LOOKUP_F_IGNORE_LINKSTATE;
1902 if (net->ipv6.devconf_all->forwarding == 0)
1903 strict |= RT6_LOOKUP_F_REACHABLE;
1904
1905 rcu_read_lock();
1906
David Aherneffda4d2019-04-16 14:36:10 -07001907 fib6_table_lookup(net, table, oif, fl6, &res, strict);
David Ahernb1d40992019-04-16 14:35:59 -07001908 if (res.f6i == net->ipv6.fib6_null_entry) {
David Ahern421842e2018-04-17 17:33:18 -07001909 rt = net->ipv6.ip6_null_entry;
Wei Wang66f5d6c2017-10-06 12:06:10 -07001910 rcu_read_unlock();
Wei Wangd3843fe2017-10-06 12:06:06 -07001911 dst_hold(&rt->dst);
Wei Wangd3843fe2017-10-06 12:06:06 -07001912 return rt;
David Ahern23fb93a2018-04-17 17:33:23 -07001913 }
1914
David Ahernb1d40992019-04-16 14:35:59 -07001915 fib6_select_path(net, &res, fl6, oif, false, skb, strict);
David Ahernd83009d2019-04-09 14:41:17 -07001916
David Ahern23fb93a2018-04-17 17:33:23 -07001917 /*Search through exception table */
David Ahern7e4b5122019-04-16 14:36:00 -07001918 rt = rt6_find_cached_rt(&res, &fl6->daddr, &fl6->saddr);
David Ahern23fb93a2018-04-17 17:33:23 -07001919 if (rt) {
David Ahern10585b42019-03-20 09:24:50 -07001920 if (ip6_hold_safe(net, &rt))
Wei Wangd3843fe2017-10-06 12:06:06 -07001921 dst_use_noref(&rt->dst, jiffies);
David Ahernd4ead6b2018-04-17 17:33:16 -07001922
Wei Wang66f5d6c2017-10-06 12:06:10 -07001923 rcu_read_unlock();
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001924 return rt;
Martin KaFai Lau3da59bd2015-05-22 20:56:03 -07001925 } else if (unlikely((fl6->flowi6_flags & FLOWI_FLAG_KNOWN_NH) &&
David Ahernb1d40992019-04-16 14:35:59 -07001926 !res.nh->fib_nh_gw_family)) {
Martin KaFai Lau3da59bd2015-05-22 20:56:03 -07001927 /* Create a RTF_CACHE clone which will not be
1928 * owned by the fib6 tree. It is for the special case where
1929 * the daddr in the skb during the neighbor look-up is different
1930 * from the fl6->daddr used to look-up route here.
1931 */
Martin KaFai Lau3da59bd2015-05-22 20:56:03 -07001932 struct rt6_info *uncached_rt;
1933
David Ahern85bd05d2019-04-16 14:36:01 -07001934 uncached_rt = ip6_rt_cache_alloc(&res, &fl6->daddr, NULL);
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001935
David Ahern4d85cd02018-04-20 15:37:59 -07001936 rcu_read_unlock();
Martin KaFai Lau3da59bd2015-05-22 20:56:03 -07001937
Wei Wang1cfb71e2017-06-17 10:42:33 -07001938 if (uncached_rt) {
1939 /* Uncached_rt's refcnt is taken during ip6_rt_cache_alloc()
1940 * No need for another dst_hold()
1941 */
Martin KaFai Lau8d0b94a2015-05-22 20:56:04 -07001942 rt6_uncached_list_add(uncached_rt);
Wei Wang81eb8442017-10-06 12:06:11 -07001943 atomic_inc(&net->ipv6.rt6_stats->fib_rt_uncache);
Wei Wang1cfb71e2017-06-17 10:42:33 -07001944 } else {
Martin KaFai Lau3da59bd2015-05-22 20:56:03 -07001945 uncached_rt = net->ipv6.ip6_null_entry;
Wei Wang1cfb71e2017-06-17 10:42:33 -07001946 dst_hold(&uncached_rt->dst);
1947 }
David Ahernb8115802015-11-19 12:24:22 -08001948
Martin KaFai Lau3da59bd2015-05-22 20:56:03 -07001949 return uncached_rt;
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001950 } else {
1951 /* Get a percpu copy */
1952
1953 struct rt6_info *pcpu_rt;
1954
Eric Dumazet951f7882017-10-08 21:07:18 -07001955 local_bh_disable();
David Aherndb3fede2019-04-16 14:36:03 -07001956 pcpu_rt = rt6_get_pcpu_route(&res);
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001957
David Ahern93531c62018-04-17 17:33:25 -07001958 if (!pcpu_rt)
David Aherndb3fede2019-04-16 14:36:03 -07001959 pcpu_rt = rt6_make_pcpu_route(net, &res);
David Ahern93531c62018-04-17 17:33:25 -07001960
Eric Dumazet951f7882017-10-08 21:07:18 -07001961 local_bh_enable();
1962 rcu_read_unlock();
David Ahernd4bea422018-05-09 20:34:24 -07001963
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001964 return pcpu_rt;
1965 }
Thomas Grafc71099a2006-08-04 23:20:06 -07001966}
David Ahern9ff74382016-06-13 13:44:19 -07001967EXPORT_SYMBOL_GPL(ip6_pol_route);
Thomas Grafc71099a2006-08-04 23:20:06 -07001968
David Ahernb75cc8f2018-03-02 08:32:17 -08001969static struct rt6_info *ip6_pol_route_input(struct net *net,
1970 struct fib6_table *table,
1971 struct flowi6 *fl6,
1972 const struct sk_buff *skb,
1973 int flags)
Pavel Emelyanov4acad722007-10-15 13:02:51 -07001974{
David Ahernb75cc8f2018-03-02 08:32:17 -08001975 return ip6_pol_route(net, table, fl6->flowi6_iif, fl6, skb, flags);
Pavel Emelyanov4acad722007-10-15 13:02:51 -07001976}
1977
Mahesh Bandeward409b842016-09-16 12:59:08 -07001978struct dst_entry *ip6_route_input_lookup(struct net *net,
1979 struct net_device *dev,
David Ahernb75cc8f2018-03-02 08:32:17 -08001980 struct flowi6 *fl6,
1981 const struct sk_buff *skb,
1982 int flags)
Shmulik Ladkani72331bc2012-04-01 04:03:45 +00001983{
1984 if (rt6_need_strict(&fl6->daddr) && dev->type != ARPHRD_PIMREG)
1985 flags |= RT6_LOOKUP_F_IFACE;
1986
David Ahernb75cc8f2018-03-02 08:32:17 -08001987 return fib6_rule_lookup(net, fl6, skb, flags, ip6_pol_route_input);
Shmulik Ladkani72331bc2012-04-01 04:03:45 +00001988}
Mahesh Bandeward409b842016-09-16 12:59:08 -07001989EXPORT_SYMBOL_GPL(ip6_route_input_lookup);
Shmulik Ladkani72331bc2012-04-01 04:03:45 +00001990
Jakub Sitnicki23aebda2017-08-23 09:58:29 +02001991static void ip6_multipath_l3_keys(const struct sk_buff *skb,
Roopa Prabhu5e5d6fe2018-02-28 22:43:22 -05001992 struct flow_keys *keys,
1993 struct flow_keys *flkeys)
Jakub Sitnicki23aebda2017-08-23 09:58:29 +02001994{
1995 const struct ipv6hdr *outer_iph = ipv6_hdr(skb);
1996 const struct ipv6hdr *key_iph = outer_iph;
Roopa Prabhu5e5d6fe2018-02-28 22:43:22 -05001997 struct flow_keys *_flkeys = flkeys;
Jakub Sitnicki23aebda2017-08-23 09:58:29 +02001998 const struct ipv6hdr *inner_iph;
1999 const struct icmp6hdr *icmph;
2000 struct ipv6hdr _inner_iph;
Eric Dumazetcea67a22018-04-29 09:54:59 -07002001 struct icmp6hdr _icmph;
Jakub Sitnicki23aebda2017-08-23 09:58:29 +02002002
2003 if (likely(outer_iph->nexthdr != IPPROTO_ICMPV6))
2004 goto out;
2005
Eric Dumazetcea67a22018-04-29 09:54:59 -07002006 icmph = skb_header_pointer(skb, skb_transport_offset(skb),
2007 sizeof(_icmph), &_icmph);
2008 if (!icmph)
2009 goto out;
2010
Jakub Sitnicki23aebda2017-08-23 09:58:29 +02002011 if (icmph->icmp6_type != ICMPV6_DEST_UNREACH &&
2012 icmph->icmp6_type != ICMPV6_PKT_TOOBIG &&
2013 icmph->icmp6_type != ICMPV6_TIME_EXCEED &&
2014 icmph->icmp6_type != ICMPV6_PARAMPROB)
2015 goto out;
2016
2017 inner_iph = skb_header_pointer(skb,
2018 skb_transport_offset(skb) + sizeof(*icmph),
2019 sizeof(_inner_iph), &_inner_iph);
2020 if (!inner_iph)
2021 goto out;
2022
2023 key_iph = inner_iph;
Roopa Prabhu5e5d6fe2018-02-28 22:43:22 -05002024 _flkeys = NULL;
Jakub Sitnicki23aebda2017-08-23 09:58:29 +02002025out:
Roopa Prabhu5e5d6fe2018-02-28 22:43:22 -05002026 if (_flkeys) {
2027 keys->addrs.v6addrs.src = _flkeys->addrs.v6addrs.src;
2028 keys->addrs.v6addrs.dst = _flkeys->addrs.v6addrs.dst;
2029 keys->tags.flow_label = _flkeys->tags.flow_label;
2030 keys->basic.ip_proto = _flkeys->basic.ip_proto;
2031 } else {
2032 keys->addrs.v6addrs.src = key_iph->saddr;
2033 keys->addrs.v6addrs.dst = key_iph->daddr;
Michal Kubecekfa1be7e2018-06-04 11:36:05 +02002034 keys->tags.flow_label = ip6_flowlabel(key_iph);
Roopa Prabhu5e5d6fe2018-02-28 22:43:22 -05002035 keys->basic.ip_proto = key_iph->nexthdr;
2036 }
Jakub Sitnicki23aebda2017-08-23 09:58:29 +02002037}
2038
2039/* if skb is set it will be used and fl6 can be NULL */
David Ahernb4bac172018-03-02 08:32:18 -08002040u32 rt6_multipath_hash(const struct net *net, const struct flowi6 *fl6,
2041 const struct sk_buff *skb, struct flow_keys *flkeys)
Jakub Sitnicki23aebda2017-08-23 09:58:29 +02002042{
2043 struct flow_keys hash_keys;
David Ahern9a2a5372018-03-02 08:32:15 -08002044 u32 mhash;
Jakub Sitnicki23aebda2017-08-23 09:58:29 +02002045
David S. Millerbbfa0472018-03-12 11:09:33 -04002046 switch (ip6_multipath_hash_policy(net)) {
David Ahernb4bac172018-03-02 08:32:18 -08002047 case 0:
2048 memset(&hash_keys, 0, sizeof(hash_keys));
2049 hash_keys.control.addr_type = FLOW_DISSECTOR_KEY_IPV6_ADDRS;
2050 if (skb) {
2051 ip6_multipath_l3_keys(skb, &hash_keys, flkeys);
2052 } else {
2053 hash_keys.addrs.v6addrs.src = fl6->saddr;
2054 hash_keys.addrs.v6addrs.dst = fl6->daddr;
Michal Kubecekfa1be7e2018-06-04 11:36:05 +02002055 hash_keys.tags.flow_label = (__force u32)flowi6_get_flowlabel(fl6);
David Ahernb4bac172018-03-02 08:32:18 -08002056 hash_keys.basic.ip_proto = fl6->flowi6_proto;
2057 }
2058 break;
2059 case 1:
2060 if (skb) {
2061 unsigned int flag = FLOW_DISSECTOR_F_STOP_AT_ENCAP;
2062 struct flow_keys keys;
2063
2064 /* short-circuit if we already have L4 hash present */
2065 if (skb->l4_hash)
2066 return skb_get_hash_raw(skb) >> 1;
2067
2068 memset(&hash_keys, 0, sizeof(hash_keys));
2069
2070 if (!flkeys) {
2071 skb_flow_dissect_flow_keys(skb, &keys, flag);
2072 flkeys = &keys;
2073 }
2074 hash_keys.control.addr_type = FLOW_DISSECTOR_KEY_IPV6_ADDRS;
2075 hash_keys.addrs.v6addrs.src = flkeys->addrs.v6addrs.src;
2076 hash_keys.addrs.v6addrs.dst = flkeys->addrs.v6addrs.dst;
2077 hash_keys.ports.src = flkeys->ports.src;
2078 hash_keys.ports.dst = flkeys->ports.dst;
2079 hash_keys.basic.ip_proto = flkeys->basic.ip_proto;
2080 } else {
2081 memset(&hash_keys, 0, sizeof(hash_keys));
2082 hash_keys.control.addr_type = FLOW_DISSECTOR_KEY_IPV6_ADDRS;
2083 hash_keys.addrs.v6addrs.src = fl6->saddr;
2084 hash_keys.addrs.v6addrs.dst = fl6->daddr;
2085 hash_keys.ports.src = fl6->fl6_sport;
2086 hash_keys.ports.dst = fl6->fl6_dport;
2087 hash_keys.basic.ip_proto = fl6->flowi6_proto;
2088 }
2089 break;
Jakub Sitnicki23aebda2017-08-23 09:58:29 +02002090 }
David Ahern9a2a5372018-03-02 08:32:15 -08002091 mhash = flow_hash_from_keys(&hash_keys);
Jakub Sitnicki23aebda2017-08-23 09:58:29 +02002092
David Ahern9a2a5372018-03-02 08:32:15 -08002093 return mhash >> 1;
Jakub Sitnicki23aebda2017-08-23 09:58:29 +02002094}
2095
Thomas Grafc71099a2006-08-04 23:20:06 -07002096void ip6_route_input(struct sk_buff *skb)
2097{
Eric Dumazetb71d1d42011-04-22 04:53:02 +00002098 const struct ipv6hdr *iph = ipv6_hdr(skb);
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09002099 struct net *net = dev_net(skb->dev);
Thomas Grafadaa70b2006-10-13 15:01:03 -07002100 int flags = RT6_LOOKUP_F_HAS_SADDR;
Jiri Benc904af042015-08-20 13:56:31 +02002101 struct ip_tunnel_info *tun_info;
David S. Miller4c9483b2011-03-12 16:22:43 -05002102 struct flowi6 fl6 = {
David Aherne0d56fd2016-09-10 12:09:57 -07002103 .flowi6_iif = skb->dev->ifindex,
David S. Miller4c9483b2011-03-12 16:22:43 -05002104 .daddr = iph->daddr,
2105 .saddr = iph->saddr,
YOSHIFUJI Hideaki / 吉藤英明6502ca52013-01-13 05:01:51 +00002106 .flowlabel = ip6_flowinfo(iph),
David S. Miller4c9483b2011-03-12 16:22:43 -05002107 .flowi6_mark = skb->mark,
2108 .flowi6_proto = iph->nexthdr,
Thomas Grafc71099a2006-08-04 23:20:06 -07002109 };
Roopa Prabhu5e5d6fe2018-02-28 22:43:22 -05002110 struct flow_keys *flkeys = NULL, _flkeys;
Thomas Grafadaa70b2006-10-13 15:01:03 -07002111
Jiri Benc904af042015-08-20 13:56:31 +02002112 tun_info = skb_tunnel_info(skb);
Jiri Benc46fa0622015-08-28 20:48:19 +02002113 if (tun_info && !(tun_info->mode & IP_TUNNEL_INFO_TX))
Jiri Benc904af042015-08-20 13:56:31 +02002114 fl6.flowi6_tun_key.tun_id = tun_info->key.tun_id;
Roopa Prabhu5e5d6fe2018-02-28 22:43:22 -05002115
2116 if (fib6_rules_early_flow_dissect(net, skb, &fl6, &_flkeys))
2117 flkeys = &_flkeys;
2118
Jakub Sitnicki23aebda2017-08-23 09:58:29 +02002119 if (unlikely(fl6.flowi6_proto == IPPROTO_ICMPV6))
David Ahernb4bac172018-03-02 08:32:18 -08002120 fl6.mp_hash = rt6_multipath_hash(net, &fl6, skb, flkeys);
Jiri Benc06e9d042015-08-20 13:56:26 +02002121 skb_dst_drop(skb);
David Ahernb75cc8f2018-03-02 08:32:17 -08002122 skb_dst_set(skb,
2123 ip6_route_input_lookup(net, skb->dev, &fl6, skb, flags));
Thomas Grafc71099a2006-08-04 23:20:06 -07002124}
2125
David Ahernb75cc8f2018-03-02 08:32:17 -08002126static struct rt6_info *ip6_pol_route_output(struct net *net,
2127 struct fib6_table *table,
2128 struct flowi6 *fl6,
2129 const struct sk_buff *skb,
2130 int flags)
Thomas Grafc71099a2006-08-04 23:20:06 -07002131{
David Ahernb75cc8f2018-03-02 08:32:17 -08002132 return ip6_pol_route(net, table, fl6->flowi6_oif, fl6, skb, flags);
Thomas Grafc71099a2006-08-04 23:20:06 -07002133}
2134
Paolo Abeni6f21c962016-01-29 12:30:19 +01002135struct dst_entry *ip6_route_output_flags(struct net *net, const struct sock *sk,
2136 struct flowi6 *fl6, int flags)
Thomas Grafc71099a2006-08-04 23:20:06 -07002137{
David Ahernd46a9d62015-10-21 08:42:22 -07002138 bool any_src;
Thomas Grafc71099a2006-08-04 23:20:06 -07002139
Robert Shearman3ede0bb2018-09-19 13:56:53 +01002140 if (ipv6_addr_type(&fl6->daddr) &
2141 (IPV6_ADDR_MULTICAST | IPV6_ADDR_LINKLOCAL)) {
David Ahern4c1feac2016-09-10 12:09:56 -07002142 struct dst_entry *dst;
2143
2144 dst = l3mdev_link_scope_lookup(net, fl6);
2145 if (dst)
2146 return dst;
2147 }
David Ahernca254492015-10-12 11:47:10 -07002148
Pavel Emelyanov1fb94892012-08-08 21:53:36 +00002149 fl6->flowi6_iif = LOOPBACK_IFINDEX;
David McCullough4dc27d1c2012-06-25 15:42:26 +00002150
David Ahernd46a9d62015-10-21 08:42:22 -07002151 any_src = ipv6_addr_any(&fl6->saddr);
David Ahern741a11d2015-09-28 10:12:13 -07002152 if ((sk && sk->sk_bound_dev_if) || rt6_need_strict(&fl6->daddr) ||
David Ahernd46a9d62015-10-21 08:42:22 -07002153 (fl6->flowi6_oif && any_src))
YOSHIFUJI Hideaki77d16f42006-08-23 17:25:05 -07002154 flags |= RT6_LOOKUP_F_IFACE;
Thomas Grafc71099a2006-08-04 23:20:06 -07002155
David Ahernd46a9d62015-10-21 08:42:22 -07002156 if (!any_src)
Thomas Grafadaa70b2006-10-13 15:01:03 -07002157 flags |= RT6_LOOKUP_F_HAS_SADDR;
YOSHIFUJI Hideaki / 吉藤英明0c9a2ac2010-03-07 00:14:44 +00002158 else if (sk)
2159 flags |= rt6_srcprefs2flags(inet6_sk(sk)->srcprefs);
Thomas Grafadaa70b2006-10-13 15:01:03 -07002160
David Ahernb75cc8f2018-03-02 08:32:17 -08002161 return fib6_rule_lookup(net, fl6, NULL, flags, ip6_pol_route_output);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002162}
Paolo Abeni6f21c962016-01-29 12:30:19 +01002163EXPORT_SYMBOL_GPL(ip6_route_output_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002164
David S. Miller2774c132011-03-01 14:59:04 -08002165struct dst_entry *ip6_blackhole_route(struct net *net, struct dst_entry *dst_orig)
David S. Miller14e50e52007-05-24 18:17:54 -07002166{
David S. Miller5c1e6aa2011-04-28 14:13:38 -07002167 struct rt6_info *rt, *ort = (struct rt6_info *) dst_orig;
Wei Wang1dbe32522017-06-17 10:42:26 -07002168 struct net_device *loopback_dev = net->loopback_dev;
David S. Miller14e50e52007-05-24 18:17:54 -07002169 struct dst_entry *new = NULL;
2170
Wei Wang1dbe32522017-06-17 10:42:26 -07002171 rt = dst_alloc(&ip6_dst_blackhole_ops, loopback_dev, 1,
Steffen Klassert62cf27e2017-10-09 08:39:43 +02002172 DST_OBSOLETE_DEAD, 0);
David S. Miller14e50e52007-05-24 18:17:54 -07002173 if (rt) {
Martin KaFai Lau0a1f5962015-10-15 16:39:58 -07002174 rt6_info_init(rt);
Wei Wang81eb8442017-10-06 12:06:11 -07002175 atomic_inc(&net->ipv6.rt6_stats->fib_rt_alloc);
Martin KaFai Lau0a1f5962015-10-15 16:39:58 -07002176
Changli Gaod8d1f302010-06-10 23:31:35 -07002177 new = &rt->dst;
David S. Miller14e50e52007-05-24 18:17:54 -07002178 new->__use = 1;
Herbert Xu352e5122007-11-13 21:34:06 -08002179 new->input = dst_discard;
Eric W. Biedermanede20592015-10-07 16:48:47 -05002180 new->output = dst_discard_out;
David S. Miller14e50e52007-05-24 18:17:54 -07002181
Martin KaFai Lau0a1f5962015-10-15 16:39:58 -07002182 dst_copy_metrics(new, &ort->dst);
David S. Miller14e50e52007-05-24 18:17:54 -07002183
Wei Wang1dbe32522017-06-17 10:42:26 -07002184 rt->rt6i_idev = in6_dev_get(loopback_dev);
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00002185 rt->rt6i_gateway = ort->rt6i_gateway;
Martin KaFai Lau0a1f5962015-10-15 16:39:58 -07002186 rt->rt6i_flags = ort->rt6i_flags & ~RTF_PCPU;
David S. Miller14e50e52007-05-24 18:17:54 -07002187
2188 memcpy(&rt->rt6i_dst, &ort->rt6i_dst, sizeof(struct rt6key));
2189#ifdef CONFIG_IPV6_SUBTREES
2190 memcpy(&rt->rt6i_src, &ort->rt6i_src, sizeof(struct rt6key));
2191#endif
David S. Miller14e50e52007-05-24 18:17:54 -07002192 }
2193
David S. Miller69ead7a2011-03-01 14:45:33 -08002194 dst_release(dst_orig);
2195 return new ? new : ERR_PTR(-ENOMEM);
David S. Miller14e50e52007-05-24 18:17:54 -07002196}
David S. Miller14e50e52007-05-24 18:17:54 -07002197
Linus Torvalds1da177e2005-04-16 15:20:36 -07002198/*
2199 * Destination cache support functions
2200 */
2201
David Ahern8d1c8022018-04-17 17:33:26 -07002202static bool fib6_check(struct fib6_info *f6i, u32 cookie)
Martin KaFai Lau3da59bd2015-05-22 20:56:03 -07002203{
Steffen Klassert36143642017-08-25 09:05:42 +02002204 u32 rt_cookie = 0;
Wei Wangc5cff852017-08-21 09:47:10 -07002205
David Ahern8ae86972018-04-20 15:38:03 -07002206 if (!fib6_get_cookie_safe(f6i, &rt_cookie) || rt_cookie != cookie)
David Ahern93531c62018-04-17 17:33:25 -07002207 return false;
2208
2209 if (fib6_check_expired(f6i))
2210 return false;
2211
2212 return true;
2213}
2214
David Aherna68886a2018-04-20 15:38:02 -07002215static struct dst_entry *rt6_check(struct rt6_info *rt,
2216 struct fib6_info *from,
2217 u32 cookie)
Martin KaFai Lau3da59bd2015-05-22 20:56:03 -07002218{
Wei Wangc5cff852017-08-21 09:47:10 -07002219 u32 rt_cookie = 0;
2220
David Aherna68886a2018-04-20 15:38:02 -07002221 if ((from && !fib6_get_cookie_safe(from, &rt_cookie)) ||
David Ahern93531c62018-04-17 17:33:25 -07002222 rt_cookie != cookie)
Martin KaFai Lau3da59bd2015-05-22 20:56:03 -07002223 return NULL;
2224
2225 if (rt6_check_expired(rt))
2226 return NULL;
2227
2228 return &rt->dst;
2229}
2230
David Aherna68886a2018-04-20 15:38:02 -07002231static struct dst_entry *rt6_dst_from_check(struct rt6_info *rt,
2232 struct fib6_info *from,
2233 u32 cookie)
Martin KaFai Lau3da59bd2015-05-22 20:56:03 -07002234{
Martin KaFai Lau5973fb12015-11-11 11:51:07 -08002235 if (!__rt6_check_expired(rt) &&
2236 rt->dst.obsolete == DST_OBSOLETE_FORCE_CHK &&
David Aherna68886a2018-04-20 15:38:02 -07002237 fib6_check(from, cookie))
Martin KaFai Lau3da59bd2015-05-22 20:56:03 -07002238 return &rt->dst;
2239 else
2240 return NULL;
2241}
2242
Linus Torvalds1da177e2005-04-16 15:20:36 -07002243static struct dst_entry *ip6_dst_check(struct dst_entry *dst, u32 cookie)
2244{
David Aherna87b7dc2018-04-20 15:38:00 -07002245 struct dst_entry *dst_ret;
David Aherna68886a2018-04-20 15:38:02 -07002246 struct fib6_info *from;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002247 struct rt6_info *rt;
2248
David Aherna87b7dc2018-04-20 15:38:00 -07002249 rt = container_of(dst, struct rt6_info, dst);
2250
2251 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002252
Nicolas Dichtel6f3118b2012-09-10 22:09:46 +00002253 /* All IPV6 dsts are created with ->obsolete set to the value
2254 * DST_OBSOLETE_FORCE_CHK which forces validation calls down
2255 * into this function always.
2256 */
Hannes Frederic Sowae3bc10b2013-10-24 07:48:24 +02002257
David Aherna68886a2018-04-20 15:38:02 -07002258 from = rcu_dereference(rt->from);
Martin KaFai Lau4b32b5a2015-04-28 13:03:06 -07002259
David Aherna68886a2018-04-20 15:38:02 -07002260 if (from && (rt->rt6i_flags & RTF_PCPU ||
2261 unlikely(!list_empty(&rt->rt6i_uncached))))
2262 dst_ret = rt6_dst_from_check(rt, from, cookie);
Martin KaFai Lau3da59bd2015-05-22 20:56:03 -07002263 else
David Aherna68886a2018-04-20 15:38:02 -07002264 dst_ret = rt6_check(rt, from, cookie);
David Aherna87b7dc2018-04-20 15:38:00 -07002265
2266 rcu_read_unlock();
2267
2268 return dst_ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002269}
2270
2271static struct dst_entry *ip6_negative_advice(struct dst_entry *dst)
2272{
2273 struct rt6_info *rt = (struct rt6_info *) dst;
2274
2275 if (rt) {
YOSHIFUJI Hideaki / 吉藤英明54c1a852010-03-28 07:15:45 +00002276 if (rt->rt6i_flags & RTF_CACHE) {
David Ahernc3c14da2018-04-23 11:32:06 -07002277 rcu_read_lock();
YOSHIFUJI Hideaki / 吉藤英明54c1a852010-03-28 07:15:45 +00002278 if (rt6_check_expired(rt)) {
David Ahern93531c62018-04-17 17:33:25 -07002279 rt6_remove_exception_rt(rt);
YOSHIFUJI Hideaki / 吉藤英明54c1a852010-03-28 07:15:45 +00002280 dst = NULL;
2281 }
David Ahernc3c14da2018-04-23 11:32:06 -07002282 rcu_read_unlock();
YOSHIFUJI Hideaki / 吉藤英明54c1a852010-03-28 07:15:45 +00002283 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002284 dst_release(dst);
YOSHIFUJI Hideaki / 吉藤英明54c1a852010-03-28 07:15:45 +00002285 dst = NULL;
2286 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002287 }
YOSHIFUJI Hideaki / 吉藤英明54c1a852010-03-28 07:15:45 +00002288 return dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002289}
2290
2291static void ip6_link_failure(struct sk_buff *skb)
2292{
2293 struct rt6_info *rt;
2294
Alexey Dobriyan3ffe5332010-02-18 08:25:24 +00002295 icmpv6_send(skb, ICMPV6_DEST_UNREACH, ICMPV6_ADDR_UNREACH, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002296
Eric Dumazetadf30902009-06-02 05:19:30 +00002297 rt = (struct rt6_info *) skb_dst(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002298 if (rt) {
David Ahern8a14e462018-04-23 11:32:07 -07002299 rcu_read_lock();
Hannes Frederic Sowa1eb4f752013-07-10 23:00:57 +02002300 if (rt->rt6i_flags & RTF_CACHE) {
Xin Long761f6022018-11-14 00:48:28 +08002301 rt6_remove_exception_rt(rt);
Wei Wangc5cff852017-08-21 09:47:10 -07002302 } else {
David Aherna68886a2018-04-20 15:38:02 -07002303 struct fib6_info *from;
Wei Wangc5cff852017-08-21 09:47:10 -07002304 struct fib6_node *fn;
2305
David Aherna68886a2018-04-20 15:38:02 -07002306 from = rcu_dereference(rt->from);
2307 if (from) {
2308 fn = rcu_dereference(from->fib6_node);
2309 if (fn && (rt->rt6i_flags & RTF_DEFAULT))
2310 fn->fn_sernum = -1;
2311 }
Hannes Frederic Sowa1eb4f752013-07-10 23:00:57 +02002312 }
David Ahern8a14e462018-04-23 11:32:07 -07002313 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002314 }
2315}
2316
David Ahern6a3e0302018-04-20 15:37:57 -07002317static void rt6_update_expires(struct rt6_info *rt0, int timeout)
2318{
David Aherna68886a2018-04-20 15:38:02 -07002319 if (!(rt0->rt6i_flags & RTF_EXPIRES)) {
2320 struct fib6_info *from;
2321
2322 rcu_read_lock();
2323 from = rcu_dereference(rt0->from);
2324 if (from)
2325 rt0->dst.expires = from->expires;
2326 rcu_read_unlock();
2327 }
David Ahern6a3e0302018-04-20 15:37:57 -07002328
2329 dst_set_expires(&rt0->dst, timeout);
2330 rt0->rt6i_flags |= RTF_EXPIRES;
2331}
2332
Martin KaFai Lau45e4fd22015-05-22 20:56:00 -07002333static void rt6_do_update_pmtu(struct rt6_info *rt, u32 mtu)
2334{
2335 struct net *net = dev_net(rt->dst.dev);
2336
David Ahernd4ead6b2018-04-17 17:33:16 -07002337 dst_metric_set(&rt->dst, RTAX_MTU, mtu);
Martin KaFai Lau45e4fd22015-05-22 20:56:00 -07002338 rt->rt6i_flags |= RTF_MODIFIED;
Martin KaFai Lau45e4fd22015-05-22 20:56:00 -07002339 rt6_update_expires(rt, net->ipv6.sysctl.ip6_rt_mtu_expires);
2340}
2341
Martin KaFai Lau0d3f6d22015-11-11 11:51:06 -08002342static bool rt6_cache_allowed_for_pmtu(const struct rt6_info *rt)
2343{
2344 return !(rt->rt6i_flags & RTF_CACHE) &&
Paolo Abeni1490ed22019-02-15 18:15:37 +01002345 (rt->rt6i_flags & RTF_PCPU || rcu_access_pointer(rt->from));
Martin KaFai Lau0d3f6d22015-11-11 11:51:06 -08002346}
2347
Martin KaFai Lau45e4fd22015-05-22 20:56:00 -07002348static void __ip6_rt_update_pmtu(struct dst_entry *dst, const struct sock *sk,
2349 const struct ipv6hdr *iph, u32 mtu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002350{
Julian Anastasov0dec8792017-02-06 23:14:16 +02002351 const struct in6_addr *daddr, *saddr;
Ian Morris67ba4152014-08-24 21:53:10 +01002352 struct rt6_info *rt6 = (struct rt6_info *)dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002353
Xin Long19bda362016-10-28 18:18:01 +08002354 if (dst_metric_locked(dst, RTAX_MTU))
2355 return;
2356
Julian Anastasov0dec8792017-02-06 23:14:16 +02002357 if (iph) {
2358 daddr = &iph->daddr;
2359 saddr = &iph->saddr;
2360 } else if (sk) {
2361 daddr = &sk->sk_v6_daddr;
2362 saddr = &inet6_sk(sk)->saddr;
2363 } else {
2364 daddr = NULL;
2365 saddr = NULL;
2366 }
2367 dst_confirm_neigh(dst, daddr);
Martin KaFai Lau45e4fd22015-05-22 20:56:00 -07002368 mtu = max_t(u32, mtu, IPV6_MIN_MTU);
2369 if (mtu >= dst_mtu(dst))
2370 return;
David S. Miller81aded22012-06-15 14:54:11 -07002371
Martin KaFai Lau0d3f6d22015-11-11 11:51:06 -08002372 if (!rt6_cache_allowed_for_pmtu(rt6)) {
Martin KaFai Lau45e4fd22015-05-22 20:56:00 -07002373 rt6_do_update_pmtu(rt6, mtu);
Wei Wang2b760fc2017-10-06 12:06:03 -07002374 /* update rt6_ex->stamp for cache */
2375 if (rt6->rt6i_flags & RTF_CACHE)
2376 rt6_update_exception_stamp_rt(rt6);
Julian Anastasov0dec8792017-02-06 23:14:16 +02002377 } else if (daddr) {
David Ahern85bd05d2019-04-16 14:36:01 -07002378 struct fib6_result res = {};
Martin KaFai Lau45e4fd22015-05-22 20:56:00 -07002379 struct rt6_info *nrt6;
Hagen Paul Pfeifer9d289712015-01-15 22:34:25 +01002380
David Ahern4d85cd02018-04-20 15:37:59 -07002381 rcu_read_lock();
David Ahern85bd05d2019-04-16 14:36:01 -07002382 res.f6i = rcu_dereference(rt6->from);
2383 if (!res.f6i) {
Jonathan Lemon9c69a132019-04-14 14:21:29 -07002384 rcu_read_unlock();
2385 return;
2386 }
David Ahern85bd05d2019-04-16 14:36:01 -07002387 res.nh = &res.f6i->fib6_nh;
David Ahern7d21fec2019-04-16 14:36:11 -07002388 res.fib6_flags = res.f6i->fib6_flags;
2389 res.fib6_type = res.f6i->fib6_type;
2390
David Ahern85bd05d2019-04-16 14:36:01 -07002391 nrt6 = ip6_rt_cache_alloc(&res, daddr, saddr);
Martin KaFai Lau45e4fd22015-05-22 20:56:00 -07002392 if (nrt6) {
2393 rt6_do_update_pmtu(nrt6, mtu);
David Ahern5012f0a2019-04-16 14:36:05 -07002394 if (rt6_insert_exception(nrt6, &res))
Wei Wang2b760fc2017-10-06 12:06:03 -07002395 dst_release_immediate(&nrt6->dst);
Martin KaFai Lau45e4fd22015-05-22 20:56:00 -07002396 }
David Aherna68886a2018-04-20 15:38:02 -07002397 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002398 }
2399}
2400
Martin KaFai Lau45e4fd22015-05-22 20:56:00 -07002401static void ip6_rt_update_pmtu(struct dst_entry *dst, struct sock *sk,
2402 struct sk_buff *skb, u32 mtu)
2403{
2404 __ip6_rt_update_pmtu(dst, sk, skb ? ipv6_hdr(skb) : NULL, mtu);
2405}
2406
David S. Miller42ae66c2012-06-15 20:01:57 -07002407void ip6_update_pmtu(struct sk_buff *skb, struct net *net, __be32 mtu,
Lorenzo Colittie2d118a2016-11-04 02:23:43 +09002408 int oif, u32 mark, kuid_t uid)
David S. Miller81aded22012-06-15 14:54:11 -07002409{
2410 const struct ipv6hdr *iph = (struct ipv6hdr *) skb->data;
2411 struct dst_entry *dst;
Maciej Żenczykowskidc920952018-09-29 23:44:51 -07002412 struct flowi6 fl6 = {
2413 .flowi6_oif = oif,
2414 .flowi6_mark = mark ? mark : IP6_REPLY_MARK(net, skb->mark),
2415 .daddr = iph->daddr,
2416 .saddr = iph->saddr,
2417 .flowlabel = ip6_flowinfo(iph),
2418 .flowi6_uid = uid,
2419 };
David S. Miller81aded22012-06-15 14:54:11 -07002420
2421 dst = ip6_route_output(net, NULL, &fl6);
2422 if (!dst->error)
Martin KaFai Lau45e4fd22015-05-22 20:56:00 -07002423 __ip6_rt_update_pmtu(dst, NULL, iph, ntohl(mtu));
David S. Miller81aded22012-06-15 14:54:11 -07002424 dst_release(dst);
2425}
2426EXPORT_SYMBOL_GPL(ip6_update_pmtu);
2427
2428void ip6_sk_update_pmtu(struct sk_buff *skb, struct sock *sk, __be32 mtu)
2429{
David Ahern7ddacfa2018-11-18 10:45:30 -08002430 int oif = sk->sk_bound_dev_if;
Martin KaFai Lau33c162a2016-04-11 15:29:36 -07002431 struct dst_entry *dst;
2432
David Ahern7ddacfa2018-11-18 10:45:30 -08002433 if (!oif && skb->dev)
2434 oif = l3mdev_master_ifindex(skb->dev);
2435
2436 ip6_update_pmtu(skb, sock_net(sk), mtu, oif, sk->sk_mark, sk->sk_uid);
Martin KaFai Lau33c162a2016-04-11 15:29:36 -07002437
2438 dst = __sk_dst_get(sk);
2439 if (!dst || !dst->obsolete ||
2440 dst->ops->check(dst, inet6_sk(sk)->dst_cookie))
2441 return;
2442
2443 bh_lock_sock(sk);
2444 if (!sock_owned_by_user(sk) && !ipv6_addr_v4mapped(&sk->sk_v6_daddr))
2445 ip6_datagram_dst_update(sk, false);
2446 bh_unlock_sock(sk);
David S. Miller81aded22012-06-15 14:54:11 -07002447}
2448EXPORT_SYMBOL_GPL(ip6_sk_update_pmtu);
2449
Alexey Kodanev7d6850f2018-04-03 15:00:07 +03002450void ip6_sk_dst_store_flow(struct sock *sk, struct dst_entry *dst,
2451 const struct flowi6 *fl6)
2452{
2453#ifdef CONFIG_IPV6_SUBTREES
2454 struct ipv6_pinfo *np = inet6_sk(sk);
2455#endif
2456
2457 ip6_dst_store(sk, dst,
2458 ipv6_addr_equal(&fl6->daddr, &sk->sk_v6_daddr) ?
2459 &sk->sk_v6_daddr : NULL,
2460#ifdef CONFIG_IPV6_SUBTREES
2461 ipv6_addr_equal(&fl6->saddr, &np->saddr) ?
2462 &np->saddr :
2463#endif
2464 NULL);
2465}
2466
David Ahern9b6b35a2019-04-16 14:36:02 -07002467static bool ip6_redirect_nh_match(const struct fib6_result *res,
David Ahern0b34eb02019-04-09 14:41:19 -07002468 struct flowi6 *fl6,
2469 const struct in6_addr *gw,
2470 struct rt6_info **ret)
2471{
David Ahern9b6b35a2019-04-16 14:36:02 -07002472 const struct fib6_nh *nh = res->nh;
2473
David Ahern0b34eb02019-04-09 14:41:19 -07002474 if (nh->fib_nh_flags & RTNH_F_DEAD || !nh->fib_nh_gw_family ||
2475 fl6->flowi6_oif != nh->fib_nh_dev->ifindex)
2476 return false;
2477
2478 /* rt_cache's gateway might be different from its 'parent'
2479 * in the case of an ip redirect.
2480 * So we keep searching in the exception table if the gateway
2481 * is different.
2482 */
2483 if (!ipv6_addr_equal(gw, &nh->fib_nh_gw6)) {
2484 struct rt6_info *rt_cache;
2485
David Ahern9b6b35a2019-04-16 14:36:02 -07002486 rt_cache = rt6_find_cached_rt(res, &fl6->daddr, &fl6->saddr);
David Ahern0b34eb02019-04-09 14:41:19 -07002487 if (rt_cache &&
2488 ipv6_addr_equal(gw, &rt_cache->rt6i_gateway)) {
2489 *ret = rt_cache;
2490 return true;
2491 }
2492 return false;
2493 }
2494 return true;
2495}
2496
Duan Jiongb55b76b2013-09-04 19:44:21 +08002497/* Handle redirects */
2498struct ip6rd_flowi {
2499 struct flowi6 fl6;
2500 struct in6_addr gateway;
2501};
2502
2503static struct rt6_info *__ip6_route_redirect(struct net *net,
2504 struct fib6_table *table,
2505 struct flowi6 *fl6,
David Ahernb75cc8f2018-03-02 08:32:17 -08002506 const struct sk_buff *skb,
Duan Jiongb55b76b2013-09-04 19:44:21 +08002507 int flags)
2508{
2509 struct ip6rd_flowi *rdfl = (struct ip6rd_flowi *)fl6;
David Ahern0b34eb02019-04-09 14:41:19 -07002510 struct rt6_info *ret = NULL;
David Ahern9b6b35a2019-04-16 14:36:02 -07002511 struct fib6_result res = {};
David Ahern8d1c8022018-04-17 17:33:26 -07002512 struct fib6_info *rt;
Duan Jiongb55b76b2013-09-04 19:44:21 +08002513 struct fib6_node *fn;
2514
2515 /* Get the "current" route for this destination and
Alexander Alemayhu67c408c2017-01-07 23:53:00 +01002516 * check if the redirect has come from appropriate router.
Duan Jiongb55b76b2013-09-04 19:44:21 +08002517 *
2518 * RFC 4861 specifies that redirects should only be
2519 * accepted if they come from the nexthop to the target.
2520 * Due to the way the routes are chosen, this notion
2521 * is a bit fuzzy and one might need to check all possible
2522 * routes.
2523 */
2524
Wei Wang66f5d6c2017-10-06 12:06:10 -07002525 rcu_read_lock();
David Ahern64547432018-05-09 20:34:19 -07002526 fn = fib6_node_lookup(&table->tb6_root, &fl6->daddr, &fl6->saddr);
Duan Jiongb55b76b2013-09-04 19:44:21 +08002527restart:
Wei Wang66f5d6c2017-10-06 12:06:10 -07002528 for_each_fib6_node_rt_rcu(fn) {
David Ahern9b6b35a2019-04-16 14:36:02 -07002529 res.f6i = rt;
2530 res.nh = &rt->fib6_nh;
2531
David Ahern14895682018-04-17 17:33:17 -07002532 if (fib6_check_expired(rt))
Duan Jiongb55b76b2013-09-04 19:44:21 +08002533 continue;
David Ahern93c2fb22018-04-18 15:38:59 -07002534 if (rt->fib6_flags & RTF_REJECT)
Duan Jiongb55b76b2013-09-04 19:44:21 +08002535 break;
David Ahern9b6b35a2019-04-16 14:36:02 -07002536 if (ip6_redirect_nh_match(&res, fl6, &rdfl->gateway, &ret))
David Ahern0b34eb02019-04-09 14:41:19 -07002537 goto out;
Duan Jiongb55b76b2013-09-04 19:44:21 +08002538 }
2539
2540 if (!rt)
David Ahern421842e2018-04-17 17:33:18 -07002541 rt = net->ipv6.fib6_null_entry;
David Ahern93c2fb22018-04-18 15:38:59 -07002542 else if (rt->fib6_flags & RTF_REJECT) {
David Ahern23fb93a2018-04-17 17:33:23 -07002543 ret = net->ipv6.ip6_null_entry;
Martin KaFai Laub0a1ba52015-01-20 19:16:02 -08002544 goto out;
2545 }
2546
David Ahern421842e2018-04-17 17:33:18 -07002547 if (rt == net->ipv6.fib6_null_entry) {
Martin KaFai Laua3c00e42014-10-20 13:42:43 -07002548 fn = fib6_backtrack(fn, &fl6->saddr);
2549 if (fn)
2550 goto restart;
Duan Jiongb55b76b2013-09-04 19:44:21 +08002551 }
Martin KaFai Laua3c00e42014-10-20 13:42:43 -07002552
David Ahern9b6b35a2019-04-16 14:36:02 -07002553 res.f6i = rt;
2554 res.nh = &rt->fib6_nh;
Martin KaFai Laub0a1ba52015-01-20 19:16:02 -08002555out:
David Ahern7d21fec2019-04-16 14:36:11 -07002556 if (ret) {
David Ahern10585b42019-03-20 09:24:50 -07002557 ip6_hold_safe(net, &ret);
David Ahern7d21fec2019-04-16 14:36:11 -07002558 } else {
2559 res.fib6_flags = res.f6i->fib6_flags;
2560 res.fib6_type = res.f6i->fib6_type;
David Ahern9b6b35a2019-04-16 14:36:02 -07002561 ret = ip6_create_rt_rcu(&res);
David Ahern7d21fec2019-04-16 14:36:11 -07002562 }
Duan Jiongb55b76b2013-09-04 19:44:21 +08002563
Wei Wang66f5d6c2017-10-06 12:06:10 -07002564 rcu_read_unlock();
Duan Jiongb55b76b2013-09-04 19:44:21 +08002565
David Ahern8ff2e5b2019-04-16 14:36:09 -07002566 trace_fib6_table_lookup(net, &res, table, fl6);
David Ahern23fb93a2018-04-17 17:33:23 -07002567 return ret;
Duan Jiongb55b76b2013-09-04 19:44:21 +08002568};
2569
2570static struct dst_entry *ip6_route_redirect(struct net *net,
David Ahernb75cc8f2018-03-02 08:32:17 -08002571 const struct flowi6 *fl6,
2572 const struct sk_buff *skb,
2573 const struct in6_addr *gateway)
Duan Jiongb55b76b2013-09-04 19:44:21 +08002574{
2575 int flags = RT6_LOOKUP_F_HAS_SADDR;
2576 struct ip6rd_flowi rdfl;
2577
2578 rdfl.fl6 = *fl6;
2579 rdfl.gateway = *gateway;
2580
David Ahernb75cc8f2018-03-02 08:32:17 -08002581 return fib6_rule_lookup(net, &rdfl.fl6, skb,
Duan Jiongb55b76b2013-09-04 19:44:21 +08002582 flags, __ip6_route_redirect);
2583}
2584
Lorenzo Colittie2d118a2016-11-04 02:23:43 +09002585void ip6_redirect(struct sk_buff *skb, struct net *net, int oif, u32 mark,
2586 kuid_t uid)
David S. Miller3a5ad2e2012-07-12 00:08:07 -07002587{
2588 const struct ipv6hdr *iph = (struct ipv6hdr *) skb->data;
2589 struct dst_entry *dst;
Maciej Żenczykowski1f7f10a2018-09-29 23:44:48 -07002590 struct flowi6 fl6 = {
2591 .flowi6_iif = LOOPBACK_IFINDEX,
2592 .flowi6_oif = oif,
2593 .flowi6_mark = mark,
2594 .daddr = iph->daddr,
2595 .saddr = iph->saddr,
2596 .flowlabel = ip6_flowinfo(iph),
2597 .flowi6_uid = uid,
2598 };
David S. Miller3a5ad2e2012-07-12 00:08:07 -07002599
David Ahernb75cc8f2018-03-02 08:32:17 -08002600 dst = ip6_route_redirect(net, &fl6, skb, &ipv6_hdr(skb)->saddr);
Duan Jiongb55b76b2013-09-04 19:44:21 +08002601 rt6_do_redirect(dst, NULL, skb);
David S. Miller3a5ad2e2012-07-12 00:08:07 -07002602 dst_release(dst);
2603}
2604EXPORT_SYMBOL_GPL(ip6_redirect);
2605
Maciej Żenczykowskid4563362018-09-29 23:44:50 -07002606void ip6_redirect_no_header(struct sk_buff *skb, struct net *net, int oif)
Duan Jiongc92a59e2013-08-22 12:07:35 +08002607{
2608 const struct ipv6hdr *iph = ipv6_hdr(skb);
2609 const struct rd_msg *msg = (struct rd_msg *)icmp6_hdr(skb);
2610 struct dst_entry *dst;
Maciej Żenczykowski0b26fb12018-09-29 23:44:49 -07002611 struct flowi6 fl6 = {
2612 .flowi6_iif = LOOPBACK_IFINDEX,
2613 .flowi6_oif = oif,
Maciej Żenczykowski0b26fb12018-09-29 23:44:49 -07002614 .daddr = msg->dest,
2615 .saddr = iph->daddr,
2616 .flowi6_uid = sock_net_uid(net, NULL),
2617 };
Duan Jiongc92a59e2013-08-22 12:07:35 +08002618
David Ahernb75cc8f2018-03-02 08:32:17 -08002619 dst = ip6_route_redirect(net, &fl6, skb, &iph->saddr);
Duan Jiongb55b76b2013-09-04 19:44:21 +08002620 rt6_do_redirect(dst, NULL, skb);
Duan Jiongc92a59e2013-08-22 12:07:35 +08002621 dst_release(dst);
2622}
2623
David S. Miller3a5ad2e2012-07-12 00:08:07 -07002624void ip6_sk_redirect(struct sk_buff *skb, struct sock *sk)
2625{
Lorenzo Colittie2d118a2016-11-04 02:23:43 +09002626 ip6_redirect(skb, sock_net(sk), sk->sk_bound_dev_if, sk->sk_mark,
2627 sk->sk_uid);
David S. Miller3a5ad2e2012-07-12 00:08:07 -07002628}
2629EXPORT_SYMBOL_GPL(ip6_sk_redirect);
2630
David S. Miller0dbaee32010-12-13 12:52:14 -08002631static unsigned int ip6_default_advmss(const struct dst_entry *dst)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002632{
David S. Miller0dbaee32010-12-13 12:52:14 -08002633 struct net_device *dev = dst->dev;
2634 unsigned int mtu = dst_mtu(dst);
2635 struct net *net = dev_net(dev);
2636
Linus Torvalds1da177e2005-04-16 15:20:36 -07002637 mtu -= sizeof(struct ipv6hdr) + sizeof(struct tcphdr);
2638
Daniel Lezcano55786892008-03-04 13:47:47 -08002639 if (mtu < net->ipv6.sysctl.ip6_rt_min_advmss)
2640 mtu = net->ipv6.sysctl.ip6_rt_min_advmss;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002641
2642 /*
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002643 * Maximal non-jumbo IPv6 payload is IPV6_MAXPLEN and
2644 * corresponding MSS is IPV6_MAXPLEN - tcp_header_size.
2645 * IPV6_MAXPLEN is also valid and means: "any MSS,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002646 * rely only on pmtu discovery"
2647 */
2648 if (mtu > IPV6_MAXPLEN - sizeof(struct tcphdr))
2649 mtu = IPV6_MAXPLEN;
2650 return mtu;
2651}
2652
Steffen Klassertebb762f2011-11-23 02:12:51 +00002653static unsigned int ip6_mtu(const struct dst_entry *dst)
David S. Millerd33e4552010-12-14 13:01:14 -08002654{
David S. Millerd33e4552010-12-14 13:01:14 -08002655 struct inet6_dev *idev;
David Ahernd4ead6b2018-04-17 17:33:16 -07002656 unsigned int mtu;
Steffen Klassert618f9bc2011-11-23 02:13:31 +00002657
Martin KaFai Lau4b32b5a2015-04-28 13:03:06 -07002658 mtu = dst_metric_raw(dst, RTAX_MTU);
2659 if (mtu)
2660 goto out;
2661
Steffen Klassert618f9bc2011-11-23 02:13:31 +00002662 mtu = IPV6_MIN_MTU;
David S. Millerd33e4552010-12-14 13:01:14 -08002663
2664 rcu_read_lock();
2665 idev = __in6_dev_get(dst->dev);
2666 if (idev)
2667 mtu = idev->cnf.mtu6;
2668 rcu_read_unlock();
2669
Eric Dumazet30f78d82014-04-10 21:23:36 -07002670out:
Roopa Prabhu14972cb2016-08-24 20:10:43 -07002671 mtu = min_t(unsigned int, mtu, IP6_MAX_MTU);
2672
2673 return mtu - lwtunnel_headroom(dst->lwtstate, mtu);
David S. Millerd33e4552010-12-14 13:01:14 -08002674}
2675
David Ahern901731b2018-05-21 09:08:14 -07002676/* MTU selection:
2677 * 1. mtu on route is locked - use it
2678 * 2. mtu from nexthop exception
2679 * 3. mtu from egress device
2680 *
2681 * based on ip6_dst_mtu_forward and exception logic of
2682 * rt6_find_cached_rt; called with rcu_read_lock
2683 */
David Ahernb748f262019-04-16 14:36:06 -07002684u32 ip6_mtu_from_fib6(const struct fib6_result *res,
2685 const struct in6_addr *daddr,
2686 const struct in6_addr *saddr)
David Ahern901731b2018-05-21 09:08:14 -07002687{
David Ahernb748f262019-04-16 14:36:06 -07002688 const struct fib6_nh *nh = res->nh;
2689 struct fib6_info *f6i = res->f6i;
David Ahern901731b2018-05-21 09:08:14 -07002690 struct inet6_dev *idev;
Wei Wang510e2ce2019-05-16 13:30:54 -07002691 struct rt6_info *rt;
David Ahern901731b2018-05-21 09:08:14 -07002692 u32 mtu = 0;
2693
2694 if (unlikely(fib6_metric_locked(f6i, RTAX_MTU))) {
2695 mtu = f6i->fib6_pmtu;
2696 if (mtu)
2697 goto out;
2698 }
2699
Wei Wang510e2ce2019-05-16 13:30:54 -07002700 rt = rt6_find_cached_rt(res, daddr, saddr);
2701 if (unlikely(rt)) {
2702 mtu = dst_metric_raw(&rt->dst, RTAX_MTU);
2703 } else {
David Ahernb748f262019-04-16 14:36:06 -07002704 struct net_device *dev = nh->fib_nh_dev;
David Ahern901731b2018-05-21 09:08:14 -07002705
2706 mtu = IPV6_MIN_MTU;
2707 idev = __in6_dev_get(dev);
2708 if (idev && idev->cnf.mtu6 > mtu)
2709 mtu = idev->cnf.mtu6;
2710 }
2711
2712 mtu = min_t(unsigned int, mtu, IP6_MAX_MTU);
2713out:
David Ahernb748f262019-04-16 14:36:06 -07002714 return mtu - lwtunnel_headroom(nh->fib_nh_lws, mtu);
David Ahern901731b2018-05-21 09:08:14 -07002715}
2716
YOSHIFUJI Hideaki3b009442007-12-06 16:11:48 -08002717struct dst_entry *icmp6_dst_alloc(struct net_device *dev,
David S. Miller87a11572011-12-06 17:04:13 -05002718 struct flowi6 *fl6)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002719{
David S. Miller87a11572011-12-06 17:04:13 -05002720 struct dst_entry *dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002721 struct rt6_info *rt;
2722 struct inet6_dev *idev = in6_dev_get(dev);
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09002723 struct net *net = dev_net(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002724
David S. Miller38308472011-12-03 18:02:47 -05002725 if (unlikely(!idev))
Eric Dumazet122bdf62012-03-14 21:13:11 +00002726 return ERR_PTR(-ENODEV);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002727
Martin KaFai Lauad706862015-08-14 11:05:52 -07002728 rt = ip6_dst_alloc(net, dev, 0);
David S. Miller38308472011-12-03 18:02:47 -05002729 if (unlikely(!rt)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002730 in6_dev_put(idev);
David S. Miller87a11572011-12-06 17:04:13 -05002731 dst = ERR_PTR(-ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002732 goto out;
2733 }
2734
Yan, Zheng8e2ec632011-09-05 21:34:30 +00002735 rt->dst.flags |= DST_HOST;
Brendan McGrath588753f2017-12-13 22:14:57 +11002736 rt->dst.input = ip6_input;
Yan, Zheng8e2ec632011-09-05 21:34:30 +00002737 rt->dst.output = ip6_output;
Julian Anastasov550bab42013-10-20 15:43:04 +03002738 rt->rt6i_gateway = fl6->daddr;
David S. Miller87a11572011-12-06 17:04:13 -05002739 rt->rt6i_dst.addr = fl6->daddr;
Yan, Zheng8e2ec632011-09-05 21:34:30 +00002740 rt->rt6i_dst.plen = 128;
2741 rt->rt6i_idev = idev;
Li RongQing14edd872012-10-24 14:01:18 +08002742 dst_metric_set(&rt->dst, RTAX_HOPLIMIT, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002743
Ido Schimmel4c981e22018-01-07 12:45:04 +02002744 /* Add this dst into uncached_list so that rt6_disable_ip() can
Wei Wang587fea72017-06-17 10:42:36 -07002745 * do proper release of the net_device
2746 */
2747 rt6_uncached_list_add(rt);
Wei Wang81eb8442017-10-06 12:06:11 -07002748 atomic_inc(&net->ipv6.rt6_stats->fib_rt_uncache);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002749
David S. Miller87a11572011-12-06 17:04:13 -05002750 dst = xfrm_lookup(net, &rt->dst, flowi6_to_flowi(fl6), NULL, 0);
2751
Linus Torvalds1da177e2005-04-16 15:20:36 -07002752out:
David S. Miller87a11572011-12-06 17:04:13 -05002753 return dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002754}
2755
Daniel Lezcano569d3642008-01-18 03:56:57 -08002756static int ip6_dst_gc(struct dst_ops *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002757{
Alexey Dobriyan86393e52009-08-29 01:34:49 +00002758 struct net *net = container_of(ops, struct net, ipv6.ip6_dst_ops);
Daniel Lezcano7019b782008-03-04 13:50:14 -08002759 int rt_min_interval = net->ipv6.sysctl.ip6_rt_gc_min_interval;
2760 int rt_max_size = net->ipv6.sysctl.ip6_rt_max_size;
2761 int rt_elasticity = net->ipv6.sysctl.ip6_rt_gc_elasticity;
2762 int rt_gc_timeout = net->ipv6.sysctl.ip6_rt_gc_timeout;
2763 unsigned long rt_last_gc = net->ipv6.ip6_rt_last_gc;
Eric Dumazetfc66f952010-10-08 06:37:34 +00002764 int entries;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002765
Eric Dumazetfc66f952010-10-08 06:37:34 +00002766 entries = dst_entries_get_fast(ops);
Michal Kubeček49a18d82013-08-01 10:04:24 +02002767 if (time_after(rt_last_gc + rt_min_interval, jiffies) &&
Eric Dumazetfc66f952010-10-08 06:37:34 +00002768 entries <= rt_max_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002769 goto out;
2770
Benjamin Thery6891a342008-03-04 13:49:47 -08002771 net->ipv6.ip6_rt_gc_expire++;
Li RongQing14956642014-05-19 17:30:28 +08002772 fib6_run_gc(net->ipv6.ip6_rt_gc_expire, net, true);
Eric Dumazetfc66f952010-10-08 06:37:34 +00002773 entries = dst_entries_get_slow(ops);
2774 if (entries < ops->gc_thresh)
Daniel Lezcano7019b782008-03-04 13:50:14 -08002775 net->ipv6.ip6_rt_gc_expire = rt_gc_timeout>>1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002776out:
Daniel Lezcano7019b782008-03-04 13:50:14 -08002777 net->ipv6.ip6_rt_gc_expire -= net->ipv6.ip6_rt_gc_expire>>rt_elasticity;
Eric Dumazetfc66f952010-10-08 06:37:34 +00002778 return entries > rt_max_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002779}
2780
David Ahern8c145862016-04-24 21:26:04 -07002781static struct rt6_info *ip6_nh_lookup_table(struct net *net,
2782 struct fib6_config *cfg,
David Ahernf4797b32018-01-25 16:55:08 -08002783 const struct in6_addr *gw_addr,
2784 u32 tbid, int flags)
David Ahern8c145862016-04-24 21:26:04 -07002785{
2786 struct flowi6 fl6 = {
2787 .flowi6_oif = cfg->fc_ifindex,
2788 .daddr = *gw_addr,
2789 .saddr = cfg->fc_prefsrc,
2790 };
2791 struct fib6_table *table;
2792 struct rt6_info *rt;
David Ahern8c145862016-04-24 21:26:04 -07002793
David Ahernf4797b32018-01-25 16:55:08 -08002794 table = fib6_get_table(net, tbid);
David Ahern8c145862016-04-24 21:26:04 -07002795 if (!table)
2796 return NULL;
2797
2798 if (!ipv6_addr_any(&cfg->fc_prefsrc))
2799 flags |= RT6_LOOKUP_F_HAS_SADDR;
2800
David Ahernf4797b32018-01-25 16:55:08 -08002801 flags |= RT6_LOOKUP_F_IGNORE_LINKSTATE;
David Ahernb75cc8f2018-03-02 08:32:17 -08002802 rt = ip6_pol_route(net, table, cfg->fc_ifindex, &fl6, NULL, flags);
David Ahern8c145862016-04-24 21:26:04 -07002803
2804 /* if table lookup failed, fall back to full lookup */
2805 if (rt == net->ipv6.ip6_null_entry) {
2806 ip6_rt_put(rt);
2807 rt = NULL;
2808 }
2809
2810 return rt;
2811}
2812
David Ahernfc1e64e2018-01-25 16:55:09 -08002813static int ip6_route_check_nh_onlink(struct net *net,
2814 struct fib6_config *cfg,
David Ahern9fbb7042018-03-13 08:29:36 -07002815 const struct net_device *dev,
David Ahernfc1e64e2018-01-25 16:55:09 -08002816 struct netlink_ext_ack *extack)
2817{
David Ahern44750f82018-02-06 13:17:06 -08002818 u32 tbid = l3mdev_fib_table(dev) ? : RT_TABLE_MAIN;
David Ahernfc1e64e2018-01-25 16:55:09 -08002819 const struct in6_addr *gw_addr = &cfg->fc_gateway;
2820 u32 flags = RTF_LOCAL | RTF_ANYCAST | RTF_REJECT;
Paolo Abenibf1dc8b2019-02-21 11:19:42 +01002821 struct fib6_info *from;
David Ahernfc1e64e2018-01-25 16:55:09 -08002822 struct rt6_info *grt;
2823 int err;
2824
2825 err = 0;
2826 grt = ip6_nh_lookup_table(net, cfg, gw_addr, tbid, 0);
2827 if (grt) {
Paolo Abenibf1dc8b2019-02-21 11:19:42 +01002828 rcu_read_lock();
2829 from = rcu_dereference(grt->from);
David Ahern58e354c2018-02-06 12:14:12 -08002830 if (!grt->dst.error &&
David Ahern4ed591c2018-10-24 13:58:39 -07002831 /* ignore match if it is the default route */
Paolo Abenibf1dc8b2019-02-21 11:19:42 +01002832 from && !ipv6_addr_any(&from->fib6_dst.addr) &&
David Ahern58e354c2018-02-06 12:14:12 -08002833 (grt->rt6i_flags & flags || dev != grt->dst.dev)) {
David Ahern44750f82018-02-06 13:17:06 -08002834 NL_SET_ERR_MSG(extack,
2835 "Nexthop has invalid gateway or device mismatch");
David Ahernfc1e64e2018-01-25 16:55:09 -08002836 err = -EINVAL;
2837 }
Paolo Abenibf1dc8b2019-02-21 11:19:42 +01002838 rcu_read_unlock();
David Ahernfc1e64e2018-01-25 16:55:09 -08002839
2840 ip6_rt_put(grt);
2841 }
2842
2843 return err;
2844}
2845
David Ahern1edce992018-01-25 16:55:07 -08002846static int ip6_route_check_nh(struct net *net,
2847 struct fib6_config *cfg,
2848 struct net_device **_dev,
2849 struct inet6_dev **idev)
2850{
2851 const struct in6_addr *gw_addr = &cfg->fc_gateway;
2852 struct net_device *dev = _dev ? *_dev : NULL;
2853 struct rt6_info *grt = NULL;
2854 int err = -EHOSTUNREACH;
2855
2856 if (cfg->fc_table) {
David Ahernf4797b32018-01-25 16:55:08 -08002857 int flags = RT6_LOOKUP_F_IFACE;
2858
2859 grt = ip6_nh_lookup_table(net, cfg, gw_addr,
2860 cfg->fc_table, flags);
David Ahern1edce992018-01-25 16:55:07 -08002861 if (grt) {
2862 if (grt->rt6i_flags & RTF_GATEWAY ||
2863 (dev && dev != grt->dst.dev)) {
2864 ip6_rt_put(grt);
2865 grt = NULL;
2866 }
2867 }
2868 }
2869
2870 if (!grt)
David Ahernb75cc8f2018-03-02 08:32:17 -08002871 grt = rt6_lookup(net, gw_addr, NULL, cfg->fc_ifindex, NULL, 1);
David Ahern1edce992018-01-25 16:55:07 -08002872
2873 if (!grt)
2874 goto out;
2875
2876 if (dev) {
2877 if (dev != grt->dst.dev) {
2878 ip6_rt_put(grt);
2879 goto out;
2880 }
2881 } else {
2882 *_dev = dev = grt->dst.dev;
2883 *idev = grt->rt6i_idev;
2884 dev_hold(dev);
2885 in6_dev_hold(grt->rt6i_idev);
2886 }
2887
2888 if (!(grt->rt6i_flags & RTF_GATEWAY))
2889 err = 0;
2890
2891 ip6_rt_put(grt);
2892
2893out:
2894 return err;
2895}
2896
David Ahern9fbb7042018-03-13 08:29:36 -07002897static int ip6_validate_gw(struct net *net, struct fib6_config *cfg,
2898 struct net_device **_dev, struct inet6_dev **idev,
2899 struct netlink_ext_ack *extack)
2900{
2901 const struct in6_addr *gw_addr = &cfg->fc_gateway;
2902 int gwa_type = ipv6_addr_type(gw_addr);
David Ahern232378e2018-03-13 08:29:37 -07002903 bool skip_dev = gwa_type & IPV6_ADDR_LINKLOCAL ? false : true;
David Ahern9fbb7042018-03-13 08:29:36 -07002904 const struct net_device *dev = *_dev;
David Ahern232378e2018-03-13 08:29:37 -07002905 bool need_addr_check = !dev;
David Ahern9fbb7042018-03-13 08:29:36 -07002906 int err = -EINVAL;
2907
2908 /* if gw_addr is local we will fail to detect this in case
2909 * address is still TENTATIVE (DAD in progress). rt6_lookup()
2910 * will return already-added prefix route via interface that
2911 * prefix route was assigned to, which might be non-loopback.
2912 */
David Ahern232378e2018-03-13 08:29:37 -07002913 if (dev &&
2914 ipv6_chk_addr_and_flags(net, gw_addr, dev, skip_dev, 0, 0)) {
2915 NL_SET_ERR_MSG(extack, "Gateway can not be a local address");
David Ahern9fbb7042018-03-13 08:29:36 -07002916 goto out;
2917 }
2918
2919 if (gwa_type != (IPV6_ADDR_LINKLOCAL | IPV6_ADDR_UNICAST)) {
2920 /* IPv6 strictly inhibits using not link-local
2921 * addresses as nexthop address.
2922 * Otherwise, router will not able to send redirects.
2923 * It is very good, but in some (rare!) circumstances
2924 * (SIT, PtP, NBMA NOARP links) it is handy to allow
2925 * some exceptions. --ANK
2926 * We allow IPv4-mapped nexthops to support RFC4798-type
2927 * addressing
2928 */
2929 if (!(gwa_type & (IPV6_ADDR_UNICAST | IPV6_ADDR_MAPPED))) {
2930 NL_SET_ERR_MSG(extack, "Invalid gateway address");
2931 goto out;
2932 }
2933
2934 if (cfg->fc_flags & RTNH_F_ONLINK)
2935 err = ip6_route_check_nh_onlink(net, cfg, dev, extack);
2936 else
2937 err = ip6_route_check_nh(net, cfg, _dev, idev);
2938
2939 if (err)
2940 goto out;
2941 }
2942
2943 /* reload in case device was changed */
2944 dev = *_dev;
2945
2946 err = -EINVAL;
2947 if (!dev) {
2948 NL_SET_ERR_MSG(extack, "Egress device not specified");
2949 goto out;
2950 } else if (dev->flags & IFF_LOOPBACK) {
2951 NL_SET_ERR_MSG(extack,
2952 "Egress device can not be loopback device for this route");
2953 goto out;
2954 }
David Ahern232378e2018-03-13 08:29:37 -07002955
2956 /* if we did not check gw_addr above, do so now that the
2957 * egress device has been resolved.
2958 */
2959 if (need_addr_check &&
2960 ipv6_chk_addr_and_flags(net, gw_addr, dev, skip_dev, 0, 0)) {
2961 NL_SET_ERR_MSG(extack, "Gateway can not be a local address");
2962 goto out;
2963 }
2964
David Ahern9fbb7042018-03-13 08:29:36 -07002965 err = 0;
2966out:
2967 return err;
2968}
2969
David Ahern83c442512019-03-27 20:53:50 -07002970static bool fib6_is_reject(u32 flags, struct net_device *dev, int addr_type)
2971{
2972 if ((flags & RTF_REJECT) ||
2973 (dev && (dev->flags & IFF_LOOPBACK) &&
2974 !(addr_type & IPV6_ADDR_LOOPBACK) &&
2975 !(flags & RTF_LOCAL)))
2976 return true;
2977
2978 return false;
2979}
2980
2981int fib6_nh_init(struct net *net, struct fib6_nh *fib6_nh,
2982 struct fib6_config *cfg, gfp_t gfp_flags,
2983 struct netlink_ext_ack *extack)
2984{
2985 struct net_device *dev = NULL;
2986 struct inet6_dev *idev = NULL;
2987 int addr_type;
2988 int err;
2989
David Ahernf1741732019-03-27 20:53:57 -07002990 fib6_nh->fib_nh_family = AF_INET6;
2991
David Ahern83c442512019-03-27 20:53:50 -07002992 err = -ENODEV;
2993 if (cfg->fc_ifindex) {
2994 dev = dev_get_by_index(net, cfg->fc_ifindex);
2995 if (!dev)
2996 goto out;
2997 idev = in6_dev_get(dev);
2998 if (!idev)
2999 goto out;
3000 }
3001
3002 if (cfg->fc_flags & RTNH_F_ONLINK) {
3003 if (!dev) {
3004 NL_SET_ERR_MSG(extack,
3005 "Nexthop device required for onlink");
3006 goto out;
3007 }
3008
3009 if (!(dev->flags & IFF_UP)) {
3010 NL_SET_ERR_MSG(extack, "Nexthop device is not up");
3011 err = -ENETDOWN;
3012 goto out;
3013 }
3014
David Ahernad1601a2019-03-27 20:53:56 -07003015 fib6_nh->fib_nh_flags |= RTNH_F_ONLINK;
David Ahern83c442512019-03-27 20:53:50 -07003016 }
3017
David Ahernad1601a2019-03-27 20:53:56 -07003018 fib6_nh->fib_nh_weight = 1;
David Ahern83c442512019-03-27 20:53:50 -07003019
3020 /* We cannot add true routes via loopback here,
3021 * they would result in kernel looping; promote them to reject routes
3022 */
3023 addr_type = ipv6_addr_type(&cfg->fc_dst);
3024 if (fib6_is_reject(cfg->fc_flags, dev, addr_type)) {
3025 /* hold loopback dev/idev if we haven't done so. */
3026 if (dev != net->loopback_dev) {
3027 if (dev) {
3028 dev_put(dev);
3029 in6_dev_put(idev);
3030 }
3031 dev = net->loopback_dev;
3032 dev_hold(dev);
3033 idev = in6_dev_get(dev);
3034 if (!idev) {
3035 err = -ENODEV;
3036 goto out;
3037 }
3038 }
3039 goto set_dev;
3040 }
3041
3042 if (cfg->fc_flags & RTF_GATEWAY) {
3043 err = ip6_validate_gw(net, cfg, &dev, &idev, extack);
3044 if (err)
3045 goto out;
3046
David Ahernad1601a2019-03-27 20:53:56 -07003047 fib6_nh->fib_nh_gw6 = cfg->fc_gateway;
David Ahernbdf00462019-04-05 16:30:26 -07003048 fib6_nh->fib_nh_gw_family = AF_INET6;
David Ahern83c442512019-03-27 20:53:50 -07003049 }
3050
3051 err = -ENODEV;
3052 if (!dev)
3053 goto out;
3054
3055 if (idev->cnf.disable_ipv6) {
3056 NL_SET_ERR_MSG(extack, "IPv6 is disabled on nexthop device");
3057 err = -EACCES;
3058 goto out;
3059 }
3060
3061 if (!(dev->flags & IFF_UP) && !cfg->fc_ignore_dev_down) {
3062 NL_SET_ERR_MSG(extack, "Nexthop device is not up");
3063 err = -ENETDOWN;
3064 goto out;
3065 }
3066
3067 if (!(cfg->fc_flags & (RTF_LOCAL | RTF_ANYCAST)) &&
3068 !netif_carrier_ok(dev))
David Ahernad1601a2019-03-27 20:53:56 -07003069 fib6_nh->fib_nh_flags |= RTNH_F_LINKDOWN;
David Ahern83c442512019-03-27 20:53:50 -07003070
David Ahern979e2762019-03-27 20:53:58 -07003071 err = fib_nh_common_init(&fib6_nh->nh_common, cfg->fc_encap,
3072 cfg->fc_encap_type, cfg, gfp_flags, extack);
3073 if (err)
3074 goto out;
David Ahern83c442512019-03-27 20:53:50 -07003075set_dev:
David Ahernad1601a2019-03-27 20:53:56 -07003076 fib6_nh->fib_nh_dev = dev;
David Ahernf1741732019-03-27 20:53:57 -07003077 fib6_nh->fib_nh_oif = dev->ifindex;
David Ahern83c442512019-03-27 20:53:50 -07003078 err = 0;
3079out:
3080 if (idev)
3081 in6_dev_put(idev);
3082
3083 if (err) {
David Ahernad1601a2019-03-27 20:53:56 -07003084 lwtstate_put(fib6_nh->fib_nh_lws);
3085 fib6_nh->fib_nh_lws = NULL;
David Ahern83c442512019-03-27 20:53:50 -07003086 if (dev)
3087 dev_put(dev);
3088 }
3089
3090 return err;
3091}
3092
David Aherndac7d0f2019-03-27 20:53:51 -07003093void fib6_nh_release(struct fib6_nh *fib6_nh)
3094{
David Ahern979e2762019-03-27 20:53:58 -07003095 fib_nh_common_release(&fib6_nh->nh_common);
David Aherndac7d0f2019-03-27 20:53:51 -07003096}
3097
David Ahern8d1c8022018-04-17 17:33:26 -07003098static struct fib6_info *ip6_route_info_create(struct fib6_config *cfg,
David Ahernacb54e32018-04-17 17:33:22 -07003099 gfp_t gfp_flags,
David Ahern333c4302017-05-21 10:12:04 -06003100 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003101{
Daniel Lezcano55786892008-03-04 13:47:47 -08003102 struct net *net = cfg->fc_nlinfo.nl_net;
David Ahern8d1c8022018-04-17 17:33:26 -07003103 struct fib6_info *rt = NULL;
Thomas Grafc71099a2006-08-04 23:20:06 -07003104 struct fib6_table *table;
Roopa Prabhu8c5b83f2015-10-10 08:26:36 -07003105 int err = -EINVAL;
David Ahern83c442512019-03-27 20:53:50 -07003106 int addr_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003107
David Ahern557c44b2017-04-19 14:19:43 -07003108 /* RTF_PCPU is an internal flag; can not be set by userspace */
David Ahernd5d531c2017-05-21 10:12:05 -06003109 if (cfg->fc_flags & RTF_PCPU) {
3110 NL_SET_ERR_MSG(extack, "Userspace can not set RTF_PCPU");
David Ahern557c44b2017-04-19 14:19:43 -07003111 goto out;
David Ahernd5d531c2017-05-21 10:12:05 -06003112 }
David Ahern557c44b2017-04-19 14:19:43 -07003113
Wei Wang2ea23522017-10-27 17:30:12 -07003114 /* RTF_CACHE is an internal flag; can not be set by userspace */
3115 if (cfg->fc_flags & RTF_CACHE) {
3116 NL_SET_ERR_MSG(extack, "Userspace can not set RTF_CACHE");
3117 goto out;
3118 }
3119
David Aherne8478e82018-04-17 17:33:13 -07003120 if (cfg->fc_type > RTN_MAX) {
3121 NL_SET_ERR_MSG(extack, "Invalid route type");
3122 goto out;
3123 }
3124
David Ahernd5d531c2017-05-21 10:12:05 -06003125 if (cfg->fc_dst_len > 128) {
3126 NL_SET_ERR_MSG(extack, "Invalid prefix length");
Roopa Prabhu8c5b83f2015-10-10 08:26:36 -07003127 goto out;
David Ahernd5d531c2017-05-21 10:12:05 -06003128 }
3129 if (cfg->fc_src_len > 128) {
3130 NL_SET_ERR_MSG(extack, "Invalid source address length");
3131 goto out;
3132 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003133#ifndef CONFIG_IPV6_SUBTREES
David Ahernd5d531c2017-05-21 10:12:05 -06003134 if (cfg->fc_src_len) {
3135 NL_SET_ERR_MSG(extack,
3136 "Specifying source address requires IPV6_SUBTREES to be enabled");
Roopa Prabhu8c5b83f2015-10-10 08:26:36 -07003137 goto out;
David Ahernd5d531c2017-05-21 10:12:05 -06003138 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003139#endif
David Ahernfc1e64e2018-01-25 16:55:09 -08003140
Matti Vaittinend71314b2011-11-14 00:14:49 +00003141 err = -ENOBUFS;
David S. Miller38308472011-12-03 18:02:47 -05003142 if (cfg->fc_nlinfo.nlh &&
3143 !(cfg->fc_nlinfo.nlh->nlmsg_flags & NLM_F_CREATE)) {
Matti Vaittinend71314b2011-11-14 00:14:49 +00003144 table = fib6_get_table(net, cfg->fc_table);
David S. Miller38308472011-12-03 18:02:47 -05003145 if (!table) {
Joe Perchesf3213832012-05-15 14:11:53 +00003146 pr_warn("NLM_F_CREATE should be specified when creating new route\n");
Matti Vaittinend71314b2011-11-14 00:14:49 +00003147 table = fib6_new_table(net, cfg->fc_table);
3148 }
3149 } else {
3150 table = fib6_new_table(net, cfg->fc_table);
3151 }
David S. Miller38308472011-12-03 18:02:47 -05003152
3153 if (!table)
Thomas Grafc71099a2006-08-04 23:20:06 -07003154 goto out;
Thomas Grafc71099a2006-08-04 23:20:06 -07003155
David Ahern93531c62018-04-17 17:33:25 -07003156 err = -ENOMEM;
3157 rt = fib6_info_alloc(gfp_flags);
3158 if (!rt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003159 goto out;
David Ahern93531c62018-04-17 17:33:25 -07003160
David Ahernd7e774f2018-11-06 12:51:15 -08003161 rt->fib6_metrics = ip_fib_metrics_init(net, cfg->fc_mx, cfg->fc_mx_len,
3162 extack);
David Ahern767a2212018-10-04 20:07:51 -07003163 if (IS_ERR(rt->fib6_metrics)) {
3164 err = PTR_ERR(rt->fib6_metrics);
Eric Dumazetfda21d42018-10-05 09:17:50 -07003165 /* Do not leave garbage there. */
3166 rt->fib6_metrics = (struct dst_metrics *)&dst_default_metrics;
David Ahern767a2212018-10-04 20:07:51 -07003167 goto out;
3168 }
3169
David Ahern93531c62018-04-17 17:33:25 -07003170 if (cfg->fc_flags & RTF_ADDRCONF)
3171 rt->dst_nocount = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003172
Gao feng1716a962012-04-06 00:13:10 +00003173 if (cfg->fc_flags & RTF_EXPIRES)
David Ahern14895682018-04-17 17:33:17 -07003174 fib6_set_expires(rt, jiffies +
Gao feng1716a962012-04-06 00:13:10 +00003175 clock_t_to_jiffies(cfg->fc_expires));
3176 else
David Ahern14895682018-04-17 17:33:17 -07003177 fib6_clean_expires(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003178
Thomas Graf86872cb2006-08-22 00:01:08 -07003179 if (cfg->fc_protocol == RTPROT_UNSPEC)
3180 cfg->fc_protocol = RTPROT_BOOT;
David Ahern93c2fb22018-04-18 15:38:59 -07003181 rt->fib6_protocol = cfg->fc_protocol;
Thomas Graf86872cb2006-08-22 00:01:08 -07003182
David Ahern83c442512019-03-27 20:53:50 -07003183 rt->fib6_table = table;
3184 rt->fib6_metric = cfg->fc_metric;
3185 rt->fib6_type = cfg->fc_type;
David Ahern2b2450c2019-03-27 20:53:52 -07003186 rt->fib6_flags = cfg->fc_flags & ~RTF_GATEWAY;
Roopa Prabhu19e42e42015-07-21 10:43:48 +02003187
David Ahern93c2fb22018-04-18 15:38:59 -07003188 ipv6_addr_prefix(&rt->fib6_dst.addr, &cfg->fc_dst, cfg->fc_dst_len);
3189 rt->fib6_dst.plen = cfg->fc_dst_len;
3190 if (rt->fib6_dst.plen == 128)
David Ahern3b6761d2018-04-17 17:33:20 -07003191 rt->dst_host = true;
Michal Kubečeke5fd3872014-03-27 13:04:08 +01003192
Linus Torvalds1da177e2005-04-16 15:20:36 -07003193#ifdef CONFIG_IPV6_SUBTREES
David Ahern93c2fb22018-04-18 15:38:59 -07003194 ipv6_addr_prefix(&rt->fib6_src.addr, &cfg->fc_src, cfg->fc_src_len);
3195 rt->fib6_src.plen = cfg->fc_src_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003196#endif
David Ahern83c442512019-03-27 20:53:50 -07003197 err = fib6_nh_init(net, &rt->fib6_nh, cfg, gfp_flags, extack);
3198 if (err)
3199 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003200
3201 /* We cannot add true routes via loopback here,
David Ahern83c442512019-03-27 20:53:50 -07003202 * they would result in kernel looping; promote them to reject routes
Linus Torvalds1da177e2005-04-16 15:20:36 -07003203 */
David Ahern83c442512019-03-27 20:53:50 -07003204 addr_type = ipv6_addr_type(&cfg->fc_dst);
David Ahernad1601a2019-03-27 20:53:56 -07003205 if (fib6_is_reject(cfg->fc_flags, rt->fib6_nh.fib_nh_dev, addr_type))
David Ahern83c442512019-03-27 20:53:50 -07003206 rt->fib6_flags = RTF_REJECT | RTF_NONEXTHOP;
David Ahern955ec4c2018-01-24 19:45:29 -08003207
Daniel Walterc3968a82011-04-13 21:10:57 +00003208 if (!ipv6_addr_any(&cfg->fc_prefsrc)) {
David Ahern83c442512019-03-27 20:53:50 -07003209 struct net_device *dev = fib6_info_nh_dev(rt);
3210
Daniel Walterc3968a82011-04-13 21:10:57 +00003211 if (!ipv6_chk_addr(net, &cfg->fc_prefsrc, dev, 0)) {
David Ahernd5d531c2017-05-21 10:12:05 -06003212 NL_SET_ERR_MSG(extack, "Invalid source address");
Daniel Walterc3968a82011-04-13 21:10:57 +00003213 err = -EINVAL;
3214 goto out;
3215 }
David Ahern93c2fb22018-04-18 15:38:59 -07003216 rt->fib6_prefsrc.addr = cfg->fc_prefsrc;
3217 rt->fib6_prefsrc.plen = 128;
Daniel Walterc3968a82011-04-13 21:10:57 +00003218 } else
David Ahern93c2fb22018-04-18 15:38:59 -07003219 rt->fib6_prefsrc.plen = 0;
Daniel Walterc3968a82011-04-13 21:10:57 +00003220
Roopa Prabhu8c5b83f2015-10-10 08:26:36 -07003221 return rt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003222out:
David Ahern93531c62018-04-17 17:33:25 -07003223 fib6_info_release(rt);
Roopa Prabhu8c5b83f2015-10-10 08:26:36 -07003224 return ERR_PTR(err);
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003225}
3226
David Ahernacb54e32018-04-17 17:33:22 -07003227int ip6_route_add(struct fib6_config *cfg, gfp_t gfp_flags,
David Ahern333c4302017-05-21 10:12:04 -06003228 struct netlink_ext_ack *extack)
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003229{
David Ahern8d1c8022018-04-17 17:33:26 -07003230 struct fib6_info *rt;
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003231 int err;
3232
David Ahernacb54e32018-04-17 17:33:22 -07003233 rt = ip6_route_info_create(cfg, gfp_flags, extack);
David Ahernd4ead6b2018-04-17 17:33:16 -07003234 if (IS_ERR(rt))
3235 return PTR_ERR(rt);
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003236
David Ahernd4ead6b2018-04-17 17:33:16 -07003237 err = __ip6_ins_rt(rt, &cfg->fc_nlinfo, extack);
David Ahern93531c62018-04-17 17:33:25 -07003238 fib6_info_release(rt);
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003239
Linus Torvalds1da177e2005-04-16 15:20:36 -07003240 return err;
3241}
3242
David Ahern8d1c8022018-04-17 17:33:26 -07003243static int __ip6_del_rt(struct fib6_info *rt, struct nl_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003244{
David Ahernafb1d4b52018-04-17 17:33:11 -07003245 struct net *net = info->nl_net;
Thomas Grafc71099a2006-08-04 23:20:06 -07003246 struct fib6_table *table;
David Ahernafb1d4b52018-04-17 17:33:11 -07003247 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003248
David Ahern421842e2018-04-17 17:33:18 -07003249 if (rt == net->ipv6.fib6_null_entry) {
Gao feng6825a262012-09-19 19:25:34 +00003250 err = -ENOENT;
3251 goto out;
3252 }
Patrick McHardy6c813a72006-08-06 22:22:47 -07003253
David Ahern93c2fb22018-04-18 15:38:59 -07003254 table = rt->fib6_table;
Wei Wang66f5d6c2017-10-06 12:06:10 -07003255 spin_lock_bh(&table->tb6_lock);
Thomas Graf86872cb2006-08-22 00:01:08 -07003256 err = fib6_del(rt, info);
Wei Wang66f5d6c2017-10-06 12:06:10 -07003257 spin_unlock_bh(&table->tb6_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003258
Gao feng6825a262012-09-19 19:25:34 +00003259out:
David Ahern93531c62018-04-17 17:33:25 -07003260 fib6_info_release(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003261 return err;
3262}
3263
David Ahern8d1c8022018-04-17 17:33:26 -07003264int ip6_del_rt(struct net *net, struct fib6_info *rt)
Thomas Grafe0a1ad732006-08-22 00:00:21 -07003265{
David Ahernafb1d4b52018-04-17 17:33:11 -07003266 struct nl_info info = { .nl_net = net };
3267
Denis V. Lunev528c4ce2007-12-13 09:45:12 -08003268 return __ip6_del_rt(rt, &info);
Thomas Grafe0a1ad732006-08-22 00:00:21 -07003269}
3270
David Ahern8d1c8022018-04-17 17:33:26 -07003271static int __ip6_del_rt_siblings(struct fib6_info *rt, struct fib6_config *cfg)
David Ahern0ae81332017-02-02 12:37:08 -08003272{
3273 struct nl_info *info = &cfg->fc_nlinfo;
WANG Conge3330032017-02-27 16:07:43 -08003274 struct net *net = info->nl_net;
David Ahern16a16cd2017-02-02 12:37:11 -08003275 struct sk_buff *skb = NULL;
David Ahern0ae81332017-02-02 12:37:08 -08003276 struct fib6_table *table;
WANG Conge3330032017-02-27 16:07:43 -08003277 int err = -ENOENT;
David Ahern0ae81332017-02-02 12:37:08 -08003278
David Ahern421842e2018-04-17 17:33:18 -07003279 if (rt == net->ipv6.fib6_null_entry)
WANG Conge3330032017-02-27 16:07:43 -08003280 goto out_put;
David Ahern93c2fb22018-04-18 15:38:59 -07003281 table = rt->fib6_table;
Wei Wang66f5d6c2017-10-06 12:06:10 -07003282 spin_lock_bh(&table->tb6_lock);
David Ahern0ae81332017-02-02 12:37:08 -08003283
David Ahern93c2fb22018-04-18 15:38:59 -07003284 if (rt->fib6_nsiblings && cfg->fc_delete_all_nh) {
David Ahern8d1c8022018-04-17 17:33:26 -07003285 struct fib6_info *sibling, *next_sibling;
David Ahern0ae81332017-02-02 12:37:08 -08003286
David Ahern16a16cd2017-02-02 12:37:11 -08003287 /* prefer to send a single notification with all hops */
3288 skb = nlmsg_new(rt6_nlmsg_size(rt), gfp_any());
3289 if (skb) {
3290 u32 seq = info->nlh ? info->nlh->nlmsg_seq : 0;
3291
David Ahernd4ead6b2018-04-17 17:33:16 -07003292 if (rt6_fill_node(net, skb, rt, NULL,
David Ahern16a16cd2017-02-02 12:37:11 -08003293 NULL, NULL, 0, RTM_DELROUTE,
3294 info->portid, seq, 0) < 0) {
3295 kfree_skb(skb);
3296 skb = NULL;
3297 } else
3298 info->skip_notify = 1;
3299 }
3300
David Ahern0ae81332017-02-02 12:37:08 -08003301 list_for_each_entry_safe(sibling, next_sibling,
David Ahern93c2fb22018-04-18 15:38:59 -07003302 &rt->fib6_siblings,
3303 fib6_siblings) {
David Ahern0ae81332017-02-02 12:37:08 -08003304 err = fib6_del(sibling, info);
3305 if (err)
WANG Conge3330032017-02-27 16:07:43 -08003306 goto out_unlock;
David Ahern0ae81332017-02-02 12:37:08 -08003307 }
3308 }
3309
3310 err = fib6_del(rt, info);
WANG Conge3330032017-02-27 16:07:43 -08003311out_unlock:
Wei Wang66f5d6c2017-10-06 12:06:10 -07003312 spin_unlock_bh(&table->tb6_lock);
WANG Conge3330032017-02-27 16:07:43 -08003313out_put:
David Ahern93531c62018-04-17 17:33:25 -07003314 fib6_info_release(rt);
David Ahern16a16cd2017-02-02 12:37:11 -08003315
3316 if (skb) {
WANG Conge3330032017-02-27 16:07:43 -08003317 rtnl_notify(skb, net, info->portid, RTNLGRP_IPV6_ROUTE,
David Ahern16a16cd2017-02-02 12:37:11 -08003318 info->nlh, gfp_any());
3319 }
David Ahern0ae81332017-02-02 12:37:08 -08003320 return err;
3321}
3322
David Ahern23fb93a2018-04-17 17:33:23 -07003323static int ip6_del_cached_rt(struct rt6_info *rt, struct fib6_config *cfg)
3324{
3325 int rc = -ESRCH;
3326
3327 if (cfg->fc_ifindex && rt->dst.dev->ifindex != cfg->fc_ifindex)
3328 goto out;
3329
3330 if (cfg->fc_flags & RTF_GATEWAY &&
3331 !ipv6_addr_equal(&cfg->fc_gateway, &rt->rt6i_gateway))
3332 goto out;
Xin Long761f6022018-11-14 00:48:28 +08003333
3334 rc = rt6_remove_exception_rt(rt);
David Ahern23fb93a2018-04-17 17:33:23 -07003335out:
3336 return rc;
3337}
3338
David Ahern333c4302017-05-21 10:12:04 -06003339static int ip6_route_del(struct fib6_config *cfg,
3340 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003341{
David Ahern8d1c8022018-04-17 17:33:26 -07003342 struct rt6_info *rt_cache;
Thomas Grafc71099a2006-08-04 23:20:06 -07003343 struct fib6_table *table;
David Ahern8d1c8022018-04-17 17:33:26 -07003344 struct fib6_info *rt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003345 struct fib6_node *fn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003346 int err = -ESRCH;
3347
Daniel Lezcano55786892008-03-04 13:47:47 -08003348 table = fib6_get_table(cfg->fc_nlinfo.nl_net, cfg->fc_table);
David Ahernd5d531c2017-05-21 10:12:05 -06003349 if (!table) {
3350 NL_SET_ERR_MSG(extack, "FIB table does not exist");
Thomas Grafc71099a2006-08-04 23:20:06 -07003351 return err;
David Ahernd5d531c2017-05-21 10:12:05 -06003352 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003353
Wei Wang66f5d6c2017-10-06 12:06:10 -07003354 rcu_read_lock();
Thomas Grafc71099a2006-08-04 23:20:06 -07003355
3356 fn = fib6_locate(&table->tb6_root,
Thomas Graf86872cb2006-08-22 00:01:08 -07003357 &cfg->fc_dst, cfg->fc_dst_len,
Wei Wang38fbeee2017-10-06 12:06:02 -07003358 &cfg->fc_src, cfg->fc_src_len,
Wei Wang2b760fc2017-10-06 12:06:03 -07003359 !(cfg->fc_flags & RTF_CACHE));
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003360
Linus Torvalds1da177e2005-04-16 15:20:36 -07003361 if (fn) {
Wei Wang66f5d6c2017-10-06 12:06:10 -07003362 for_each_fib6_node_rt_rcu(fn) {
David Ahernad1601a2019-03-27 20:53:56 -07003363 struct fib6_nh *nh;
3364
Wei Wang2b760fc2017-10-06 12:06:03 -07003365 if (cfg->fc_flags & RTF_CACHE) {
David Ahern7e4b5122019-04-16 14:36:00 -07003366 struct fib6_result res = {
3367 .f6i = rt,
3368 };
David Ahern23fb93a2018-04-17 17:33:23 -07003369 int rc;
3370
David Ahern7e4b5122019-04-16 14:36:00 -07003371 rt_cache = rt6_find_cached_rt(&res,
3372 &cfg->fc_dst,
Wei Wang2b760fc2017-10-06 12:06:03 -07003373 &cfg->fc_src);
David Ahern23fb93a2018-04-17 17:33:23 -07003374 if (rt_cache) {
3375 rc = ip6_del_cached_rt(rt_cache, cfg);
Eric Dumazet9e575012018-05-09 10:05:46 -07003376 if (rc != -ESRCH) {
3377 rcu_read_unlock();
David Ahern23fb93a2018-04-17 17:33:23 -07003378 return rc;
Eric Dumazet9e575012018-05-09 10:05:46 -07003379 }
David Ahern23fb93a2018-04-17 17:33:23 -07003380 }
3381 continue;
Wei Wang2b760fc2017-10-06 12:06:03 -07003382 }
David Ahernad1601a2019-03-27 20:53:56 -07003383
3384 nh = &rt->fib6_nh;
Thomas Graf86872cb2006-08-22 00:01:08 -07003385 if (cfg->fc_ifindex &&
David Ahernad1601a2019-03-27 20:53:56 -07003386 (!nh->fib_nh_dev ||
3387 nh->fib_nh_dev->ifindex != cfg->fc_ifindex))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003388 continue;
Thomas Graf86872cb2006-08-22 00:01:08 -07003389 if (cfg->fc_flags & RTF_GATEWAY &&
David Ahernad1601a2019-03-27 20:53:56 -07003390 !ipv6_addr_equal(&cfg->fc_gateway, &nh->fib_nh_gw6))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003391 continue;
David Ahern93c2fb22018-04-18 15:38:59 -07003392 if (cfg->fc_metric && cfg->fc_metric != rt->fib6_metric)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003393 continue;
David Ahern93c2fb22018-04-18 15:38:59 -07003394 if (cfg->fc_protocol && cfg->fc_protocol != rt->fib6_protocol)
Mantas Mc2ed1882016-12-16 10:30:59 +02003395 continue;
Wei Wange873e4b2018-07-21 20:56:32 -07003396 if (!fib6_info_hold_safe(rt))
3397 continue;
Wei Wang66f5d6c2017-10-06 12:06:10 -07003398 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003399
David Ahern0ae81332017-02-02 12:37:08 -08003400 /* if gateway was specified only delete the one hop */
3401 if (cfg->fc_flags & RTF_GATEWAY)
3402 return __ip6_del_rt(rt, &cfg->fc_nlinfo);
3403
3404 return __ip6_del_rt_siblings(rt, cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003405 }
3406 }
Wei Wang66f5d6c2017-10-06 12:06:10 -07003407 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003408
3409 return err;
3410}
3411
David S. Miller6700c272012-07-17 03:29:28 -07003412static void rt6_do_redirect(struct dst_entry *dst, struct sock *sk, struct sk_buff *skb)
YOSHIFUJI Hideakia6279452006-08-23 17:18:26 -07003413{
YOSHIFUJI Hideakia6279452006-08-23 17:18:26 -07003414 struct netevent_redirect netevent;
David S. Millere8599ff2012-07-11 23:43:53 -07003415 struct rt6_info *rt, *nrt = NULL;
David Ahern85bd05d2019-04-16 14:36:01 -07003416 struct fib6_result res = {};
David S. Millere8599ff2012-07-11 23:43:53 -07003417 struct ndisc_options ndopts;
3418 struct inet6_dev *in6_dev;
3419 struct neighbour *neigh;
YOSHIFUJI Hideaki / 吉藤英明71bcdba2013-01-05 16:34:51 +00003420 struct rd_msg *msg;
David S. Miller6e157b62012-07-12 00:05:02 -07003421 int optlen, on_link;
3422 u8 *lladdr;
David S. Millere8599ff2012-07-11 23:43:53 -07003423
Simon Horman29a3cad2013-05-28 20:34:26 +00003424 optlen = skb_tail_pointer(skb) - skb_transport_header(skb);
YOSHIFUJI Hideaki / 吉藤英明71bcdba2013-01-05 16:34:51 +00003425 optlen -= sizeof(*msg);
David S. Millere8599ff2012-07-11 23:43:53 -07003426
3427 if (optlen < 0) {
David S. Miller6e157b62012-07-12 00:05:02 -07003428 net_dbg_ratelimited("rt6_do_redirect: packet too short\n");
David S. Millere8599ff2012-07-11 23:43:53 -07003429 return;
3430 }
3431
YOSHIFUJI Hideaki / 吉藤英明71bcdba2013-01-05 16:34:51 +00003432 msg = (struct rd_msg *)icmp6_hdr(skb);
David S. Millere8599ff2012-07-11 23:43:53 -07003433
YOSHIFUJI Hideaki / 吉藤英明71bcdba2013-01-05 16:34:51 +00003434 if (ipv6_addr_is_multicast(&msg->dest)) {
David S. Miller6e157b62012-07-12 00:05:02 -07003435 net_dbg_ratelimited("rt6_do_redirect: destination address is multicast\n");
David S. Millere8599ff2012-07-11 23:43:53 -07003436 return;
3437 }
3438
David S. Miller6e157b62012-07-12 00:05:02 -07003439 on_link = 0;
YOSHIFUJI Hideaki / 吉藤英明71bcdba2013-01-05 16:34:51 +00003440 if (ipv6_addr_equal(&msg->dest, &msg->target)) {
David S. Millere8599ff2012-07-11 23:43:53 -07003441 on_link = 1;
YOSHIFUJI Hideaki / 吉藤英明71bcdba2013-01-05 16:34:51 +00003442 } else if (ipv6_addr_type(&msg->target) !=
David S. Millere8599ff2012-07-11 23:43:53 -07003443 (IPV6_ADDR_UNICAST|IPV6_ADDR_LINKLOCAL)) {
David S. Miller6e157b62012-07-12 00:05:02 -07003444 net_dbg_ratelimited("rt6_do_redirect: target address is not link-local unicast\n");
David S. Millere8599ff2012-07-11 23:43:53 -07003445 return;
3446 }
3447
3448 in6_dev = __in6_dev_get(skb->dev);
3449 if (!in6_dev)
3450 return;
3451 if (in6_dev->cnf.forwarding || !in6_dev->cnf.accept_redirects)
3452 return;
3453
3454 /* RFC2461 8.1:
3455 * The IP source address of the Redirect MUST be the same as the current
3456 * first-hop router for the specified ICMP Destination Address.
3457 */
3458
Alexander Aringf997c552016-06-15 21:20:23 +02003459 if (!ndisc_parse_options(skb->dev, msg->opt, optlen, &ndopts)) {
David S. Millere8599ff2012-07-11 23:43:53 -07003460 net_dbg_ratelimited("rt6_redirect: invalid ND options\n");
3461 return;
3462 }
David S. Miller6e157b62012-07-12 00:05:02 -07003463
3464 lladdr = NULL;
David S. Millere8599ff2012-07-11 23:43:53 -07003465 if (ndopts.nd_opts_tgt_lladdr) {
3466 lladdr = ndisc_opt_addr_data(ndopts.nd_opts_tgt_lladdr,
3467 skb->dev);
3468 if (!lladdr) {
3469 net_dbg_ratelimited("rt6_redirect: invalid link-layer address length\n");
3470 return;
3471 }
3472 }
3473
David S. Miller6e157b62012-07-12 00:05:02 -07003474 rt = (struct rt6_info *) dst;
Matthias Schifferec13ad12015-11-02 01:24:38 +01003475 if (rt->rt6i_flags & RTF_REJECT) {
David S. Miller6e157b62012-07-12 00:05:02 -07003476 net_dbg_ratelimited("rt6_redirect: source isn't a valid nexthop for redirect target\n");
3477 return;
3478 }
3479
3480 /* Redirect received -> path was valid.
3481 * Look, redirects are sent only in response to data packets,
3482 * so that this nexthop apparently is reachable. --ANK
3483 */
Julian Anastasov0dec8792017-02-06 23:14:16 +02003484 dst_confirm_neigh(&rt->dst, &ipv6_hdr(skb)->saddr);
David S. Miller6e157b62012-07-12 00:05:02 -07003485
YOSHIFUJI Hideaki / 吉藤英明71bcdba2013-01-05 16:34:51 +00003486 neigh = __neigh_lookup(&nd_tbl, &msg->target, skb->dev, 1);
David S. Millere8599ff2012-07-11 23:43:53 -07003487 if (!neigh)
3488 return;
3489
Linus Torvalds1da177e2005-04-16 15:20:36 -07003490 /*
3491 * We have finally decided to accept it.
3492 */
3493
Alexander Aringf997c552016-06-15 21:20:23 +02003494 ndisc_update(skb->dev, neigh, lladdr, NUD_STALE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003495 NEIGH_UPDATE_F_WEAK_OVERRIDE|
3496 NEIGH_UPDATE_F_OVERRIDE|
3497 (on_link ? 0 : (NEIGH_UPDATE_F_OVERRIDE_ISROUTER|
Alexander Aringf997c552016-06-15 21:20:23 +02003498 NEIGH_UPDATE_F_ISROUTER)),
3499 NDISC_REDIRECT, &ndopts);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003500
David Ahern4d85cd02018-04-20 15:37:59 -07003501 rcu_read_lock();
David Ahern85bd05d2019-04-16 14:36:01 -07003502 res.f6i = rcu_dereference(rt->from);
David S. Millerff24e492019-05-02 22:14:21 -04003503 if (!res.f6i)
Martin KaFai Lau886b7a52019-04-30 10:45:12 -07003504 goto out;
David Ahern8a14e462018-04-23 11:32:07 -07003505
David Ahern85bd05d2019-04-16 14:36:01 -07003506 res.nh = &res.f6i->fib6_nh;
David Ahern7d21fec2019-04-16 14:36:11 -07003507 res.fib6_flags = res.f6i->fib6_flags;
3508 res.fib6_type = res.f6i->fib6_type;
David Ahern85bd05d2019-04-16 14:36:01 -07003509 nrt = ip6_rt_cache_alloc(&res, &msg->dest, NULL);
David S. Miller38308472011-12-03 18:02:47 -05003510 if (!nrt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003511 goto out;
3512
3513 nrt->rt6i_flags = RTF_GATEWAY|RTF_UP|RTF_DYNAMIC|RTF_CACHE;
3514 if (on_link)
3515 nrt->rt6i_flags &= ~RTF_GATEWAY;
3516
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00003517 nrt->rt6i_gateway = *(struct in6_addr *)neigh->primary_key;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003518
Martin KaFai Lau886b7a52019-04-30 10:45:12 -07003519 /* rt6_insert_exception() will take care of duplicated exceptions */
David Ahern5012f0a2019-04-16 14:36:05 -07003520 if (rt6_insert_exception(nrt, &res)) {
Wei Wang2b760fc2017-10-06 12:06:03 -07003521 dst_release_immediate(&nrt->dst);
3522 goto out;
3523 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003524
Changli Gaod8d1f302010-06-10 23:31:35 -07003525 netevent.old = &rt->dst;
3526 netevent.new = &nrt->dst;
YOSHIFUJI Hideaki / 吉藤英明71bcdba2013-01-05 16:34:51 +00003527 netevent.daddr = &msg->dest;
YOSHIFUJI Hideaki / 吉藤英明60592832013-01-14 09:28:27 +00003528 netevent.neigh = neigh;
Tom Tucker8d717402006-07-30 20:43:36 -07003529 call_netevent_notifiers(NETEVENT_REDIRECT, &netevent);
3530
Linus Torvalds1da177e2005-04-16 15:20:36 -07003531out:
Martin KaFai Lau886b7a52019-04-30 10:45:12 -07003532 rcu_read_unlock();
David S. Millere8599ff2012-07-11 23:43:53 -07003533 neigh_release(neigh);
David S. Miller6e157b62012-07-12 00:05:02 -07003534}
3535
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08003536#ifdef CONFIG_IPV6_ROUTE_INFO
David Ahern8d1c8022018-04-17 17:33:26 -07003537static struct fib6_info *rt6_get_route_info(struct net *net,
Eric Dumazetb71d1d42011-04-22 04:53:02 +00003538 const struct in6_addr *prefix, int prefixlen,
David Ahern830218c2016-10-24 10:52:35 -07003539 const struct in6_addr *gwaddr,
3540 struct net_device *dev)
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08003541{
David Ahern830218c2016-10-24 10:52:35 -07003542 u32 tb_id = l3mdev_fib_table(dev) ? : RT6_TABLE_INFO;
3543 int ifindex = dev->ifindex;
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08003544 struct fib6_node *fn;
David Ahern8d1c8022018-04-17 17:33:26 -07003545 struct fib6_info *rt = NULL;
Thomas Grafc71099a2006-08-04 23:20:06 -07003546 struct fib6_table *table;
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08003547
David Ahern830218c2016-10-24 10:52:35 -07003548 table = fib6_get_table(net, tb_id);
David S. Miller38308472011-12-03 18:02:47 -05003549 if (!table)
Thomas Grafc71099a2006-08-04 23:20:06 -07003550 return NULL;
3551
Wei Wang66f5d6c2017-10-06 12:06:10 -07003552 rcu_read_lock();
Wei Wang38fbeee2017-10-06 12:06:02 -07003553 fn = fib6_locate(&table->tb6_root, prefix, prefixlen, NULL, 0, true);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08003554 if (!fn)
3555 goto out;
3556
Wei Wang66f5d6c2017-10-06 12:06:10 -07003557 for_each_fib6_node_rt_rcu(fn) {
David Ahernad1601a2019-03-27 20:53:56 -07003558 if (rt->fib6_nh.fib_nh_dev->ifindex != ifindex)
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08003559 continue;
David Ahern2b2450c2019-03-27 20:53:52 -07003560 if (!(rt->fib6_flags & RTF_ROUTEINFO) ||
David Ahernbdf00462019-04-05 16:30:26 -07003561 !rt->fib6_nh.fib_nh_gw_family)
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08003562 continue;
David Ahernad1601a2019-03-27 20:53:56 -07003563 if (!ipv6_addr_equal(&rt->fib6_nh.fib_nh_gw6, gwaddr))
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08003564 continue;
Wei Wange873e4b2018-07-21 20:56:32 -07003565 if (!fib6_info_hold_safe(rt))
3566 continue;
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08003567 break;
3568 }
3569out:
Wei Wang66f5d6c2017-10-06 12:06:10 -07003570 rcu_read_unlock();
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08003571 return rt;
3572}
3573
David Ahern8d1c8022018-04-17 17:33:26 -07003574static struct fib6_info *rt6_add_route_info(struct net *net,
Eric Dumazetb71d1d42011-04-22 04:53:02 +00003575 const struct in6_addr *prefix, int prefixlen,
David Ahern830218c2016-10-24 10:52:35 -07003576 const struct in6_addr *gwaddr,
3577 struct net_device *dev,
Eric Dumazet95c96172012-04-15 05:58:06 +00003578 unsigned int pref)
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08003579{
Thomas Graf86872cb2006-08-22 00:01:08 -07003580 struct fib6_config cfg = {
Rami Rosen238fc7e2008-02-09 23:43:11 -08003581 .fc_metric = IP6_RT_PRIO_USER,
David Ahern830218c2016-10-24 10:52:35 -07003582 .fc_ifindex = dev->ifindex,
Thomas Graf86872cb2006-08-22 00:01:08 -07003583 .fc_dst_len = prefixlen,
3584 .fc_flags = RTF_GATEWAY | RTF_ADDRCONF | RTF_ROUTEINFO |
3585 RTF_UP | RTF_PREF(pref),
Xin Longb91d5322017-08-03 14:13:46 +08003586 .fc_protocol = RTPROT_RA,
David Aherne8478e82018-04-17 17:33:13 -07003587 .fc_type = RTN_UNICAST,
Eric W. Biederman15e47302012-09-07 20:12:54 +00003588 .fc_nlinfo.portid = 0,
Daniel Lezcanoefa2cea2008-03-04 13:46:48 -08003589 .fc_nlinfo.nlh = NULL,
3590 .fc_nlinfo.nl_net = net,
Thomas Graf86872cb2006-08-22 00:01:08 -07003591 };
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08003592
David Ahern830218c2016-10-24 10:52:35 -07003593 cfg.fc_table = l3mdev_fib_table(dev) ? : RT6_TABLE_INFO,
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00003594 cfg.fc_dst = *prefix;
3595 cfg.fc_gateway = *gwaddr;
Thomas Graf86872cb2006-08-22 00:01:08 -07003596
YOSHIFUJI Hideakie317da92006-03-20 17:06:42 -08003597 /* We should treat it as a default route if prefix length is 0. */
3598 if (!prefixlen)
Thomas Graf86872cb2006-08-22 00:01:08 -07003599 cfg.fc_flags |= RTF_DEFAULT;
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08003600
David Ahernacb54e32018-04-17 17:33:22 -07003601 ip6_route_add(&cfg, GFP_ATOMIC, NULL);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08003602
David Ahern830218c2016-10-24 10:52:35 -07003603 return rt6_get_route_info(net, prefix, prefixlen, gwaddr, dev);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08003604}
3605#endif
3606
David Ahern8d1c8022018-04-17 17:33:26 -07003607struct fib6_info *rt6_get_dflt_router(struct net *net,
David Ahernafb1d4b52018-04-17 17:33:11 -07003608 const struct in6_addr *addr,
3609 struct net_device *dev)
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003610{
David Ahern830218c2016-10-24 10:52:35 -07003611 u32 tb_id = l3mdev_fib_table(dev) ? : RT6_TABLE_DFLT;
David Ahern8d1c8022018-04-17 17:33:26 -07003612 struct fib6_info *rt;
Thomas Grafc71099a2006-08-04 23:20:06 -07003613 struct fib6_table *table;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003614
David Ahernafb1d4b52018-04-17 17:33:11 -07003615 table = fib6_get_table(net, tb_id);
David S. Miller38308472011-12-03 18:02:47 -05003616 if (!table)
Thomas Grafc71099a2006-08-04 23:20:06 -07003617 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003618
Wei Wang66f5d6c2017-10-06 12:06:10 -07003619 rcu_read_lock();
3620 for_each_fib6_node_rt_rcu(&table->tb6_root) {
David Ahernad1601a2019-03-27 20:53:56 -07003621 struct fib6_nh *nh = &rt->fib6_nh;
3622
3623 if (dev == nh->fib_nh_dev &&
David Ahern93c2fb22018-04-18 15:38:59 -07003624 ((rt->fib6_flags & (RTF_ADDRCONF | RTF_DEFAULT)) == (RTF_ADDRCONF | RTF_DEFAULT)) &&
David Ahernad1601a2019-03-27 20:53:56 -07003625 ipv6_addr_equal(&nh->fib_nh_gw6, addr))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003626 break;
3627 }
Wei Wange873e4b2018-07-21 20:56:32 -07003628 if (rt && !fib6_info_hold_safe(rt))
3629 rt = NULL;
Wei Wang66f5d6c2017-10-06 12:06:10 -07003630 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003631 return rt;
3632}
3633
David Ahern8d1c8022018-04-17 17:33:26 -07003634struct fib6_info *rt6_add_dflt_router(struct net *net,
David Ahernafb1d4b52018-04-17 17:33:11 -07003635 const struct in6_addr *gwaddr,
YOSHIFUJI Hideakiebacaaa2006-03-20 17:04:53 -08003636 struct net_device *dev,
3637 unsigned int pref)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003638{
Thomas Graf86872cb2006-08-22 00:01:08 -07003639 struct fib6_config cfg = {
David Ahernca254492015-10-12 11:47:10 -07003640 .fc_table = l3mdev_fib_table(dev) ? : RT6_TABLE_DFLT,
Rami Rosen238fc7e2008-02-09 23:43:11 -08003641 .fc_metric = IP6_RT_PRIO_USER,
Thomas Graf86872cb2006-08-22 00:01:08 -07003642 .fc_ifindex = dev->ifindex,
3643 .fc_flags = RTF_GATEWAY | RTF_ADDRCONF | RTF_DEFAULT |
3644 RTF_UP | RTF_EXPIRES | RTF_PREF(pref),
Xin Longb91d5322017-08-03 14:13:46 +08003645 .fc_protocol = RTPROT_RA,
David Aherne8478e82018-04-17 17:33:13 -07003646 .fc_type = RTN_UNICAST,
Eric W. Biederman15e47302012-09-07 20:12:54 +00003647 .fc_nlinfo.portid = 0,
Daniel Lezcano55786892008-03-04 13:47:47 -08003648 .fc_nlinfo.nlh = NULL,
David Ahernafb1d4b52018-04-17 17:33:11 -07003649 .fc_nlinfo.nl_net = net,
Thomas Graf86872cb2006-08-22 00:01:08 -07003650 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07003651
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00003652 cfg.fc_gateway = *gwaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003653
David Ahernacb54e32018-04-17 17:33:22 -07003654 if (!ip6_route_add(&cfg, GFP_ATOMIC, NULL)) {
David Ahern830218c2016-10-24 10:52:35 -07003655 struct fib6_table *table;
3656
3657 table = fib6_get_table(dev_net(dev), cfg.fc_table);
3658 if (table)
3659 table->flags |= RT6_TABLE_HAS_DFLT_ROUTER;
3660 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003661
David Ahernafb1d4b52018-04-17 17:33:11 -07003662 return rt6_get_dflt_router(net, gwaddr, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003663}
3664
David Ahernafb1d4b52018-04-17 17:33:11 -07003665static void __rt6_purge_dflt_routers(struct net *net,
3666 struct fib6_table *table)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003667{
David Ahern8d1c8022018-04-17 17:33:26 -07003668 struct fib6_info *rt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003669
3670restart:
Wei Wang66f5d6c2017-10-06 12:06:10 -07003671 rcu_read_lock();
3672 for_each_fib6_node_rt_rcu(&table->tb6_root) {
David Aherndcd1f572018-04-18 15:39:05 -07003673 struct net_device *dev = fib6_info_nh_dev(rt);
3674 struct inet6_dev *idev = dev ? __in6_dev_get(dev) : NULL;
3675
David Ahern93c2fb22018-04-18 15:38:59 -07003676 if (rt->fib6_flags & (RTF_DEFAULT | RTF_ADDRCONF) &&
Wei Wange873e4b2018-07-21 20:56:32 -07003677 (!idev || idev->cnf.accept_ra != 2) &&
3678 fib6_info_hold_safe(rt)) {
David Ahern93531c62018-04-17 17:33:25 -07003679 rcu_read_unlock();
3680 ip6_del_rt(net, rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003681 goto restart;
3682 }
3683 }
Wei Wang66f5d6c2017-10-06 12:06:10 -07003684 rcu_read_unlock();
David Ahern830218c2016-10-24 10:52:35 -07003685
3686 table->flags &= ~RT6_TABLE_HAS_DFLT_ROUTER;
3687}
3688
3689void rt6_purge_dflt_routers(struct net *net)
3690{
3691 struct fib6_table *table;
3692 struct hlist_head *head;
3693 unsigned int h;
3694
3695 rcu_read_lock();
3696
3697 for (h = 0; h < FIB6_TABLE_HASHSZ; h++) {
3698 head = &net->ipv6.fib_table_hash[h];
3699 hlist_for_each_entry_rcu(table, head, tb6_hlist) {
3700 if (table->flags & RT6_TABLE_HAS_DFLT_ROUTER)
David Ahernafb1d4b52018-04-17 17:33:11 -07003701 __rt6_purge_dflt_routers(net, table);
David Ahern830218c2016-10-24 10:52:35 -07003702 }
3703 }
3704
3705 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003706}
3707
Daniel Lezcano55786892008-03-04 13:47:47 -08003708static void rtmsg_to_fib6_config(struct net *net,
3709 struct in6_rtmsg *rtmsg,
Thomas Graf86872cb2006-08-22 00:01:08 -07003710 struct fib6_config *cfg)
3711{
Maciej Żenczykowski8823a3a2018-09-29 23:44:52 -07003712 *cfg = (struct fib6_config){
3713 .fc_table = l3mdev_fib_table_by_index(net, rtmsg->rtmsg_ifindex) ?
3714 : RT6_TABLE_MAIN,
3715 .fc_ifindex = rtmsg->rtmsg_ifindex,
David Ahern67f69512019-03-21 05:21:34 -07003716 .fc_metric = rtmsg->rtmsg_metric ? : IP6_RT_PRIO_USER,
Maciej Żenczykowski8823a3a2018-09-29 23:44:52 -07003717 .fc_expires = rtmsg->rtmsg_info,
3718 .fc_dst_len = rtmsg->rtmsg_dst_len,
3719 .fc_src_len = rtmsg->rtmsg_src_len,
3720 .fc_flags = rtmsg->rtmsg_flags,
3721 .fc_type = rtmsg->rtmsg_type,
Thomas Graf86872cb2006-08-22 00:01:08 -07003722
Maciej Żenczykowski8823a3a2018-09-29 23:44:52 -07003723 .fc_nlinfo.nl_net = net,
Thomas Graf86872cb2006-08-22 00:01:08 -07003724
Maciej Żenczykowski8823a3a2018-09-29 23:44:52 -07003725 .fc_dst = rtmsg->rtmsg_dst,
3726 .fc_src = rtmsg->rtmsg_src,
3727 .fc_gateway = rtmsg->rtmsg_gateway,
3728 };
Thomas Graf86872cb2006-08-22 00:01:08 -07003729}
3730
Daniel Lezcano55786892008-03-04 13:47:47 -08003731int ipv6_route_ioctl(struct net *net, unsigned int cmd, void __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003732{
Thomas Graf86872cb2006-08-22 00:01:08 -07003733 struct fib6_config cfg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003734 struct in6_rtmsg rtmsg;
3735 int err;
3736
Ian Morris67ba4152014-08-24 21:53:10 +01003737 switch (cmd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003738 case SIOCADDRT: /* Add a route */
3739 case SIOCDELRT: /* Delete a route */
Eric W. Biedermanaf31f412012-11-16 03:03:06 +00003740 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003741 return -EPERM;
3742 err = copy_from_user(&rtmsg, arg,
3743 sizeof(struct in6_rtmsg));
3744 if (err)
3745 return -EFAULT;
Thomas Graf86872cb2006-08-22 00:01:08 -07003746
Daniel Lezcano55786892008-03-04 13:47:47 -08003747 rtmsg_to_fib6_config(net, &rtmsg, &cfg);
Thomas Graf86872cb2006-08-22 00:01:08 -07003748
Linus Torvalds1da177e2005-04-16 15:20:36 -07003749 rtnl_lock();
3750 switch (cmd) {
3751 case SIOCADDRT:
David Ahernacb54e32018-04-17 17:33:22 -07003752 err = ip6_route_add(&cfg, GFP_KERNEL, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003753 break;
3754 case SIOCDELRT:
David Ahern333c4302017-05-21 10:12:04 -06003755 err = ip6_route_del(&cfg, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003756 break;
3757 default:
3758 err = -EINVAL;
3759 }
3760 rtnl_unlock();
3761
3762 return err;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07003763 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003764
3765 return -EINVAL;
3766}
3767
3768/*
3769 * Drop the packet on the floor
3770 */
3771
Brian Haleyd5fdd6b2009-06-23 04:31:07 -07003772static int ip6_pkt_drop(struct sk_buff *skb, u8 code, int ipstats_mib_noroutes)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003773{
Eric Dumazetadf30902009-06-02 05:19:30 +00003774 struct dst_entry *dst = skb_dst(skb);
Stephen Suryaputra1d3fd8a2019-04-27 09:14:33 -04003775 struct net *net = dev_net(dst->dev);
3776 struct inet6_dev *idev;
3777 int type;
3778
3779 if (netif_is_l3_master(skb->dev) &&
3780 dst->dev == net->loopback_dev)
3781 idev = __in6_dev_get_safely(dev_get_by_index_rcu(net, IP6CB(skb)->iif));
3782 else
3783 idev = ip6_dst_idev(dst);
3784
YOSHIFUJI Hideaki612f09e2007-04-13 16:18:02 -07003785 switch (ipstats_mib_noroutes) {
3786 case IPSTATS_MIB_INNOROUTES:
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -07003787 type = ipv6_addr_type(&ipv6_hdr(skb)->daddr);
Ulrich Weber45bb0062010-02-25 23:28:58 +00003788 if (type == IPV6_ADDR_ANY) {
Stephen Suryaputra1d3fd8a2019-04-27 09:14:33 -04003789 IP6_INC_STATS(net, idev, IPSTATS_MIB_INADDRERRORS);
YOSHIFUJI Hideaki612f09e2007-04-13 16:18:02 -07003790 break;
3791 }
3792 /* FALLTHROUGH */
3793 case IPSTATS_MIB_OUTNOROUTES:
Stephen Suryaputra1d3fd8a2019-04-27 09:14:33 -04003794 IP6_INC_STATS(net, idev, ipstats_mib_noroutes);
YOSHIFUJI Hideaki612f09e2007-04-13 16:18:02 -07003795 break;
3796 }
Stephen Suryaputra1d3fd8a2019-04-27 09:14:33 -04003797
3798 /* Start over by dropping the dst for l3mdev case */
3799 if (netif_is_l3_master(skb->dev))
3800 skb_dst_drop(skb);
3801
Alexey Dobriyan3ffe5332010-02-18 08:25:24 +00003802 icmpv6_send(skb, ICMPV6_DEST_UNREACH, code, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003803 kfree_skb(skb);
3804 return 0;
3805}
3806
Thomas Graf9ce8ade2006-10-18 20:46:54 -07003807static int ip6_pkt_discard(struct sk_buff *skb)
3808{
YOSHIFUJI Hideaki612f09e2007-04-13 16:18:02 -07003809 return ip6_pkt_drop(skb, ICMPV6_NOROUTE, IPSTATS_MIB_INNOROUTES);
Thomas Graf9ce8ade2006-10-18 20:46:54 -07003810}
3811
Eric W. Biedermanede20592015-10-07 16:48:47 -05003812static int ip6_pkt_discard_out(struct net *net, struct sock *sk, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003813{
Eric Dumazetadf30902009-06-02 05:19:30 +00003814 skb->dev = skb_dst(skb)->dev;
YOSHIFUJI Hideaki612f09e2007-04-13 16:18:02 -07003815 return ip6_pkt_drop(skb, ICMPV6_NOROUTE, IPSTATS_MIB_OUTNOROUTES);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003816}
3817
Thomas Graf9ce8ade2006-10-18 20:46:54 -07003818static int ip6_pkt_prohibit(struct sk_buff *skb)
3819{
YOSHIFUJI Hideaki612f09e2007-04-13 16:18:02 -07003820 return ip6_pkt_drop(skb, ICMPV6_ADM_PROHIBITED, IPSTATS_MIB_INNOROUTES);
Thomas Graf9ce8ade2006-10-18 20:46:54 -07003821}
3822
Eric W. Biedermanede20592015-10-07 16:48:47 -05003823static int ip6_pkt_prohibit_out(struct net *net, struct sock *sk, struct sk_buff *skb)
Thomas Graf9ce8ade2006-10-18 20:46:54 -07003824{
Eric Dumazetadf30902009-06-02 05:19:30 +00003825 skb->dev = skb_dst(skb)->dev;
YOSHIFUJI Hideaki612f09e2007-04-13 16:18:02 -07003826 return ip6_pkt_drop(skb, ICMPV6_ADM_PROHIBITED, IPSTATS_MIB_OUTNOROUTES);
Thomas Graf9ce8ade2006-10-18 20:46:54 -07003827}
3828
Linus Torvalds1da177e2005-04-16 15:20:36 -07003829/*
3830 * Allocate a dst for local (unicast / anycast) address.
3831 */
3832
David Ahern360a9882018-04-18 15:39:00 -07003833struct fib6_info *addrconf_f6i_alloc(struct net *net,
3834 struct inet6_dev *idev,
3835 const struct in6_addr *addr,
3836 bool anycast, gfp_t gfp_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003837{
David Ahernc7a1ce32019-03-21 05:21:35 -07003838 struct fib6_config cfg = {
3839 .fc_table = l3mdev_fib_table(idev->dev) ? : RT6_TABLE_LOCAL,
3840 .fc_ifindex = idev->dev->ifindex,
3841 .fc_flags = RTF_UP | RTF_ADDRCONF | RTF_NONEXTHOP,
3842 .fc_dst = *addr,
3843 .fc_dst_len = 128,
3844 .fc_protocol = RTPROT_KERNEL,
3845 .fc_nlinfo.nl_net = net,
3846 .fc_ignore_dev_down = true,
3847 };
David Ahern5f02ce242016-09-10 12:09:54 -07003848
David Aherne8478e82018-04-17 17:33:13 -07003849 if (anycast) {
David Ahernc7a1ce32019-03-21 05:21:35 -07003850 cfg.fc_type = RTN_ANYCAST;
3851 cfg.fc_flags |= RTF_ANYCAST;
David Aherne8478e82018-04-17 17:33:13 -07003852 } else {
David Ahernc7a1ce32019-03-21 05:21:35 -07003853 cfg.fc_type = RTN_LOCAL;
3854 cfg.fc_flags |= RTF_LOCAL;
David Aherne8478e82018-04-17 17:33:13 -07003855 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003856
David Ahernc7a1ce32019-03-21 05:21:35 -07003857 return ip6_route_info_create(&cfg, gfp_flags, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003858}
3859
Daniel Walterc3968a82011-04-13 21:10:57 +00003860/* remove deleted ip from prefsrc entries */
3861struct arg_dev_net_ip {
3862 struct net_device *dev;
3863 struct net *net;
3864 struct in6_addr *addr;
3865};
3866
David Ahern8d1c8022018-04-17 17:33:26 -07003867static int fib6_remove_prefsrc(struct fib6_info *rt, void *arg)
Daniel Walterc3968a82011-04-13 21:10:57 +00003868{
3869 struct net_device *dev = ((struct arg_dev_net_ip *)arg)->dev;
3870 struct net *net = ((struct arg_dev_net_ip *)arg)->net;
3871 struct in6_addr *addr = ((struct arg_dev_net_ip *)arg)->addr;
3872
David Ahernad1601a2019-03-27 20:53:56 -07003873 if (((void *)rt->fib6_nh.fib_nh_dev == dev || !dev) &&
David Ahern421842e2018-04-17 17:33:18 -07003874 rt != net->ipv6.fib6_null_entry &&
David Ahern93c2fb22018-04-18 15:38:59 -07003875 ipv6_addr_equal(addr, &rt->fib6_prefsrc.addr)) {
Wei Wang60006a42017-10-06 12:05:58 -07003876 spin_lock_bh(&rt6_exception_lock);
Daniel Walterc3968a82011-04-13 21:10:57 +00003877 /* remove prefsrc entry */
David Ahern93c2fb22018-04-18 15:38:59 -07003878 rt->fib6_prefsrc.plen = 0;
Wei Wang60006a42017-10-06 12:05:58 -07003879 spin_unlock_bh(&rt6_exception_lock);
Daniel Walterc3968a82011-04-13 21:10:57 +00003880 }
3881 return 0;
3882}
3883
3884void rt6_remove_prefsrc(struct inet6_ifaddr *ifp)
3885{
3886 struct net *net = dev_net(ifp->idev->dev);
3887 struct arg_dev_net_ip adni = {
3888 .dev = ifp->idev->dev,
3889 .net = net,
3890 .addr = &ifp->addr,
3891 };
Li RongQing0c3584d2013-12-27 16:32:38 +08003892 fib6_clean_all(net, fib6_remove_prefsrc, &adni);
Daniel Walterc3968a82011-04-13 21:10:57 +00003893}
3894
David Ahern2b2450c2019-03-27 20:53:52 -07003895#define RTF_RA_ROUTER (RTF_ADDRCONF | RTF_DEFAULT)
Duan Jiongbe7a0102014-05-15 15:56:14 +08003896
3897/* Remove routers and update dst entries when gateway turn into host. */
David Ahern8d1c8022018-04-17 17:33:26 -07003898static int fib6_clean_tohost(struct fib6_info *rt, void *arg)
Duan Jiongbe7a0102014-05-15 15:56:14 +08003899{
3900 struct in6_addr *gateway = (struct in6_addr *)arg;
3901
David Ahern93c2fb22018-04-18 15:38:59 -07003902 if (((rt->fib6_flags & RTF_RA_ROUTER) == RTF_RA_ROUTER) &&
David Ahernbdf00462019-04-05 16:30:26 -07003903 rt->fib6_nh.fib_nh_gw_family &&
David Ahernad1601a2019-03-27 20:53:56 -07003904 ipv6_addr_equal(gateway, &rt->fib6_nh.fib_nh_gw6)) {
Duan Jiongbe7a0102014-05-15 15:56:14 +08003905 return -1;
3906 }
Wei Wangb16cb452017-10-06 12:06:00 -07003907
3908 /* Further clean up cached routes in exception table.
3909 * This is needed because cached route may have a different
3910 * gateway than its 'parent' in the case of an ip redirect.
3911 */
3912 rt6_exceptions_clean_tohost(rt, gateway);
3913
Duan Jiongbe7a0102014-05-15 15:56:14 +08003914 return 0;
3915}
3916
3917void rt6_clean_tohost(struct net *net, struct in6_addr *gateway)
3918{
3919 fib6_clean_all(net, fib6_clean_tohost, gateway);
3920}
3921
Ido Schimmel2127d952018-01-07 12:45:03 +02003922struct arg_netdev_event {
3923 const struct net_device *dev;
Ido Schimmel4c981e22018-01-07 12:45:04 +02003924 union {
David Ahernecc56632019-04-23 08:48:09 -07003925 unsigned char nh_flags;
Ido Schimmel4c981e22018-01-07 12:45:04 +02003926 unsigned long event;
3927 };
Ido Schimmel2127d952018-01-07 12:45:03 +02003928};
3929
David Ahern8d1c8022018-04-17 17:33:26 -07003930static struct fib6_info *rt6_multipath_first_sibling(const struct fib6_info *rt)
Ido Schimmeld7dedee2018-01-09 16:40:25 +02003931{
David Ahern8d1c8022018-04-17 17:33:26 -07003932 struct fib6_info *iter;
Ido Schimmeld7dedee2018-01-09 16:40:25 +02003933 struct fib6_node *fn;
3934
David Ahern93c2fb22018-04-18 15:38:59 -07003935 fn = rcu_dereference_protected(rt->fib6_node,
3936 lockdep_is_held(&rt->fib6_table->tb6_lock));
Ido Schimmeld7dedee2018-01-09 16:40:25 +02003937 iter = rcu_dereference_protected(fn->leaf,
David Ahern93c2fb22018-04-18 15:38:59 -07003938 lockdep_is_held(&rt->fib6_table->tb6_lock));
Ido Schimmeld7dedee2018-01-09 16:40:25 +02003939 while (iter) {
David Ahern93c2fb22018-04-18 15:38:59 -07003940 if (iter->fib6_metric == rt->fib6_metric &&
David Ahern33bd5ac2018-07-03 14:36:21 -07003941 rt6_qualify_for_ecmp(iter))
Ido Schimmeld7dedee2018-01-09 16:40:25 +02003942 return iter;
David Ahern8fb11a92018-05-04 13:54:24 -07003943 iter = rcu_dereference_protected(iter->fib6_next,
David Ahern93c2fb22018-04-18 15:38:59 -07003944 lockdep_is_held(&rt->fib6_table->tb6_lock));
Ido Schimmeld7dedee2018-01-09 16:40:25 +02003945 }
3946
3947 return NULL;
3948}
3949
David Ahern8d1c8022018-04-17 17:33:26 -07003950static bool rt6_is_dead(const struct fib6_info *rt)
Ido Schimmeld7dedee2018-01-09 16:40:25 +02003951{
David Ahernad1601a2019-03-27 20:53:56 -07003952 if (rt->fib6_nh.fib_nh_flags & RTNH_F_DEAD ||
3953 (rt->fib6_nh.fib_nh_flags & RTNH_F_LINKDOWN &&
3954 ip6_ignore_linkdown(rt->fib6_nh.fib_nh_dev)))
Ido Schimmeld7dedee2018-01-09 16:40:25 +02003955 return true;
3956
3957 return false;
3958}
3959
David Ahern8d1c8022018-04-17 17:33:26 -07003960static int rt6_multipath_total_weight(const struct fib6_info *rt)
Ido Schimmeld7dedee2018-01-09 16:40:25 +02003961{
David Ahern8d1c8022018-04-17 17:33:26 -07003962 struct fib6_info *iter;
Ido Schimmeld7dedee2018-01-09 16:40:25 +02003963 int total = 0;
3964
3965 if (!rt6_is_dead(rt))
David Ahernad1601a2019-03-27 20:53:56 -07003966 total += rt->fib6_nh.fib_nh_weight;
Ido Schimmeld7dedee2018-01-09 16:40:25 +02003967
David Ahern93c2fb22018-04-18 15:38:59 -07003968 list_for_each_entry(iter, &rt->fib6_siblings, fib6_siblings) {
Ido Schimmeld7dedee2018-01-09 16:40:25 +02003969 if (!rt6_is_dead(iter))
David Ahernad1601a2019-03-27 20:53:56 -07003970 total += iter->fib6_nh.fib_nh_weight;
Ido Schimmeld7dedee2018-01-09 16:40:25 +02003971 }
3972
3973 return total;
3974}
3975
David Ahern8d1c8022018-04-17 17:33:26 -07003976static void rt6_upper_bound_set(struct fib6_info *rt, int *weight, int total)
Ido Schimmeld7dedee2018-01-09 16:40:25 +02003977{
3978 int upper_bound = -1;
3979
3980 if (!rt6_is_dead(rt)) {
David Ahernad1601a2019-03-27 20:53:56 -07003981 *weight += rt->fib6_nh.fib_nh_weight;
Ido Schimmeld7dedee2018-01-09 16:40:25 +02003982 upper_bound = DIV_ROUND_CLOSEST_ULL((u64) (*weight) << 31,
3983 total) - 1;
3984 }
David Ahernad1601a2019-03-27 20:53:56 -07003985 atomic_set(&rt->fib6_nh.fib_nh_upper_bound, upper_bound);
Ido Schimmeld7dedee2018-01-09 16:40:25 +02003986}
3987
David Ahern8d1c8022018-04-17 17:33:26 -07003988static void rt6_multipath_upper_bound_set(struct fib6_info *rt, int total)
Ido Schimmeld7dedee2018-01-09 16:40:25 +02003989{
David Ahern8d1c8022018-04-17 17:33:26 -07003990 struct fib6_info *iter;
Ido Schimmeld7dedee2018-01-09 16:40:25 +02003991 int weight = 0;
3992
3993 rt6_upper_bound_set(rt, &weight, total);
3994
David Ahern93c2fb22018-04-18 15:38:59 -07003995 list_for_each_entry(iter, &rt->fib6_siblings, fib6_siblings)
Ido Schimmeld7dedee2018-01-09 16:40:25 +02003996 rt6_upper_bound_set(iter, &weight, total);
3997}
3998
David Ahern8d1c8022018-04-17 17:33:26 -07003999void rt6_multipath_rebalance(struct fib6_info *rt)
Ido Schimmeld7dedee2018-01-09 16:40:25 +02004000{
David Ahern8d1c8022018-04-17 17:33:26 -07004001 struct fib6_info *first;
Ido Schimmeld7dedee2018-01-09 16:40:25 +02004002 int total;
4003
4004 /* In case the entire multipath route was marked for flushing,
4005 * then there is no need to rebalance upon the removal of every
4006 * sibling route.
4007 */
David Ahern93c2fb22018-04-18 15:38:59 -07004008 if (!rt->fib6_nsiblings || rt->should_flush)
Ido Schimmeld7dedee2018-01-09 16:40:25 +02004009 return;
4010
4011 /* During lookup routes are evaluated in order, so we need to
4012 * make sure upper bounds are assigned from the first sibling
4013 * onwards.
4014 */
4015 first = rt6_multipath_first_sibling(rt);
4016 if (WARN_ON_ONCE(!first))
4017 return;
4018
4019 total = rt6_multipath_total_weight(first);
4020 rt6_multipath_upper_bound_set(first, total);
4021}
4022
David Ahern8d1c8022018-04-17 17:33:26 -07004023static int fib6_ifup(struct fib6_info *rt, void *p_arg)
Ido Schimmel2127d952018-01-07 12:45:03 +02004024{
4025 const struct arg_netdev_event *arg = p_arg;
David Ahern7aef6852018-04-17 17:33:10 -07004026 struct net *net = dev_net(arg->dev);
Ido Schimmel2127d952018-01-07 12:45:03 +02004027
David Ahernad1601a2019-03-27 20:53:56 -07004028 if (rt != net->ipv6.fib6_null_entry &&
4029 rt->fib6_nh.fib_nh_dev == arg->dev) {
4030 rt->fib6_nh.fib_nh_flags &= ~arg->nh_flags;
David Ahern7aef6852018-04-17 17:33:10 -07004031 fib6_update_sernum_upto_root(net, rt);
Ido Schimmeld7dedee2018-01-09 16:40:25 +02004032 rt6_multipath_rebalance(rt);
Ido Schimmel1de178e2018-01-07 12:45:15 +02004033 }
Ido Schimmel2127d952018-01-07 12:45:03 +02004034
4035 return 0;
4036}
4037
David Ahernecc56632019-04-23 08:48:09 -07004038void rt6_sync_up(struct net_device *dev, unsigned char nh_flags)
Ido Schimmel2127d952018-01-07 12:45:03 +02004039{
4040 struct arg_netdev_event arg = {
4041 .dev = dev,
Ido Schimmel6802f3a2018-01-12 22:07:36 +02004042 {
4043 .nh_flags = nh_flags,
4044 },
Ido Schimmel2127d952018-01-07 12:45:03 +02004045 };
4046
4047 if (nh_flags & RTNH_F_DEAD && netif_carrier_ok(dev))
4048 arg.nh_flags |= RTNH_F_LINKDOWN;
4049
4050 fib6_clean_all(dev_net(dev), fib6_ifup, &arg);
4051}
4052
David Ahern8d1c8022018-04-17 17:33:26 -07004053static bool rt6_multipath_uses_dev(const struct fib6_info *rt,
Ido Schimmel1de178e2018-01-07 12:45:15 +02004054 const struct net_device *dev)
4055{
David Ahern8d1c8022018-04-17 17:33:26 -07004056 struct fib6_info *iter;
Ido Schimmel1de178e2018-01-07 12:45:15 +02004057
David Ahernad1601a2019-03-27 20:53:56 -07004058 if (rt->fib6_nh.fib_nh_dev == dev)
Ido Schimmel1de178e2018-01-07 12:45:15 +02004059 return true;
David Ahern93c2fb22018-04-18 15:38:59 -07004060 list_for_each_entry(iter, &rt->fib6_siblings, fib6_siblings)
David Ahernad1601a2019-03-27 20:53:56 -07004061 if (iter->fib6_nh.fib_nh_dev == dev)
Ido Schimmel1de178e2018-01-07 12:45:15 +02004062 return true;
4063
4064 return false;
4065}
4066
David Ahern8d1c8022018-04-17 17:33:26 -07004067static void rt6_multipath_flush(struct fib6_info *rt)
Ido Schimmel1de178e2018-01-07 12:45:15 +02004068{
David Ahern8d1c8022018-04-17 17:33:26 -07004069 struct fib6_info *iter;
Ido Schimmel1de178e2018-01-07 12:45:15 +02004070
4071 rt->should_flush = 1;
David Ahern93c2fb22018-04-18 15:38:59 -07004072 list_for_each_entry(iter, &rt->fib6_siblings, fib6_siblings)
Ido Schimmel1de178e2018-01-07 12:45:15 +02004073 iter->should_flush = 1;
4074}
4075
David Ahern8d1c8022018-04-17 17:33:26 -07004076static unsigned int rt6_multipath_dead_count(const struct fib6_info *rt,
Ido Schimmel1de178e2018-01-07 12:45:15 +02004077 const struct net_device *down_dev)
4078{
David Ahern8d1c8022018-04-17 17:33:26 -07004079 struct fib6_info *iter;
Ido Schimmel1de178e2018-01-07 12:45:15 +02004080 unsigned int dead = 0;
4081
David Ahernad1601a2019-03-27 20:53:56 -07004082 if (rt->fib6_nh.fib_nh_dev == down_dev ||
4083 rt->fib6_nh.fib_nh_flags & RTNH_F_DEAD)
Ido Schimmel1de178e2018-01-07 12:45:15 +02004084 dead++;
David Ahern93c2fb22018-04-18 15:38:59 -07004085 list_for_each_entry(iter, &rt->fib6_siblings, fib6_siblings)
David Ahernad1601a2019-03-27 20:53:56 -07004086 if (iter->fib6_nh.fib_nh_dev == down_dev ||
4087 iter->fib6_nh.fib_nh_flags & RTNH_F_DEAD)
Ido Schimmel1de178e2018-01-07 12:45:15 +02004088 dead++;
4089
4090 return dead;
4091}
4092
David Ahern8d1c8022018-04-17 17:33:26 -07004093static void rt6_multipath_nh_flags_set(struct fib6_info *rt,
Ido Schimmel1de178e2018-01-07 12:45:15 +02004094 const struct net_device *dev,
David Ahernecc56632019-04-23 08:48:09 -07004095 unsigned char nh_flags)
Ido Schimmel1de178e2018-01-07 12:45:15 +02004096{
David Ahern8d1c8022018-04-17 17:33:26 -07004097 struct fib6_info *iter;
Ido Schimmel1de178e2018-01-07 12:45:15 +02004098
David Ahernad1601a2019-03-27 20:53:56 -07004099 if (rt->fib6_nh.fib_nh_dev == dev)
4100 rt->fib6_nh.fib_nh_flags |= nh_flags;
David Ahern93c2fb22018-04-18 15:38:59 -07004101 list_for_each_entry(iter, &rt->fib6_siblings, fib6_siblings)
David Ahernad1601a2019-03-27 20:53:56 -07004102 if (iter->fib6_nh.fib_nh_dev == dev)
4103 iter->fib6_nh.fib_nh_flags |= nh_flags;
Ido Schimmel1de178e2018-01-07 12:45:15 +02004104}
4105
David Aherna1a22c12017-01-18 07:40:36 -08004106/* called with write lock held for table with rt */
David Ahern8d1c8022018-04-17 17:33:26 -07004107static int fib6_ifdown(struct fib6_info *rt, void *p_arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004108{
Ido Schimmel4c981e22018-01-07 12:45:04 +02004109 const struct arg_netdev_event *arg = p_arg;
4110 const struct net_device *dev = arg->dev;
David Ahern7aef6852018-04-17 17:33:10 -07004111 struct net *net = dev_net(dev);
Daniel Lezcano8ed67782008-03-04 13:48:30 -08004112
David Ahern421842e2018-04-17 17:33:18 -07004113 if (rt == net->ipv6.fib6_null_entry)
Ido Schimmel27c6fa72018-01-07 12:45:05 +02004114 return 0;
4115
4116 switch (arg->event) {
4117 case NETDEV_UNREGISTER:
David Ahernad1601a2019-03-27 20:53:56 -07004118 return rt->fib6_nh.fib_nh_dev == dev ? -1 : 0;
Ido Schimmel27c6fa72018-01-07 12:45:05 +02004119 case NETDEV_DOWN:
Ido Schimmel1de178e2018-01-07 12:45:15 +02004120 if (rt->should_flush)
Ido Schimmel27c6fa72018-01-07 12:45:05 +02004121 return -1;
David Ahern93c2fb22018-04-18 15:38:59 -07004122 if (!rt->fib6_nsiblings)
David Ahernad1601a2019-03-27 20:53:56 -07004123 return rt->fib6_nh.fib_nh_dev == dev ? -1 : 0;
Ido Schimmel1de178e2018-01-07 12:45:15 +02004124 if (rt6_multipath_uses_dev(rt, dev)) {
4125 unsigned int count;
4126
4127 count = rt6_multipath_dead_count(rt, dev);
David Ahern93c2fb22018-04-18 15:38:59 -07004128 if (rt->fib6_nsiblings + 1 == count) {
Ido Schimmel1de178e2018-01-07 12:45:15 +02004129 rt6_multipath_flush(rt);
4130 return -1;
4131 }
4132 rt6_multipath_nh_flags_set(rt, dev, RTNH_F_DEAD |
4133 RTNH_F_LINKDOWN);
David Ahern7aef6852018-04-17 17:33:10 -07004134 fib6_update_sernum(net, rt);
Ido Schimmeld7dedee2018-01-09 16:40:25 +02004135 rt6_multipath_rebalance(rt);
Ido Schimmel1de178e2018-01-07 12:45:15 +02004136 }
4137 return -2;
Ido Schimmel27c6fa72018-01-07 12:45:05 +02004138 case NETDEV_CHANGE:
David Ahernad1601a2019-03-27 20:53:56 -07004139 if (rt->fib6_nh.fib_nh_dev != dev ||
David Ahern93c2fb22018-04-18 15:38:59 -07004140 rt->fib6_flags & (RTF_LOCAL | RTF_ANYCAST))
Ido Schimmel27c6fa72018-01-07 12:45:05 +02004141 break;
David Ahernad1601a2019-03-27 20:53:56 -07004142 rt->fib6_nh.fib_nh_flags |= RTNH_F_LINKDOWN;
Ido Schimmeld7dedee2018-01-09 16:40:25 +02004143 rt6_multipath_rebalance(rt);
Ido Schimmel27c6fa72018-01-07 12:45:05 +02004144 break;
Ido Schimmel2b241362018-01-07 12:45:02 +02004145 }
David S. Millerc159d302011-12-26 15:24:36 -05004146
Linus Torvalds1da177e2005-04-16 15:20:36 -07004147 return 0;
4148}
4149
Ido Schimmel27c6fa72018-01-07 12:45:05 +02004150void rt6_sync_down_dev(struct net_device *dev, unsigned long event)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004151{
Ido Schimmel4c981e22018-01-07 12:45:04 +02004152 struct arg_netdev_event arg = {
Daniel Lezcano8ed67782008-03-04 13:48:30 -08004153 .dev = dev,
Ido Schimmel6802f3a2018-01-12 22:07:36 +02004154 {
4155 .event = event,
4156 },
Daniel Lezcano8ed67782008-03-04 13:48:30 -08004157 };
David Ahern7c6bb7d2018-10-11 20:17:21 -07004158 struct net *net = dev_net(dev);
Daniel Lezcano8ed67782008-03-04 13:48:30 -08004159
David Ahern7c6bb7d2018-10-11 20:17:21 -07004160 if (net->ipv6.sysctl.skip_notify_on_dev_down)
4161 fib6_clean_all_skip_notify(net, fib6_ifdown, &arg);
4162 else
4163 fib6_clean_all(net, fib6_ifdown, &arg);
Ido Schimmel4c981e22018-01-07 12:45:04 +02004164}
4165
4166void rt6_disable_ip(struct net_device *dev, unsigned long event)
4167{
4168 rt6_sync_down_dev(dev, event);
4169 rt6_uncached_list_flush_dev(dev_net(dev), dev);
4170 neigh_ifdown(&nd_tbl, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004171}
4172
Eric Dumazet95c96172012-04-15 05:58:06 +00004173struct rt6_mtu_change_arg {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004174 struct net_device *dev;
Eric Dumazet95c96172012-04-15 05:58:06 +00004175 unsigned int mtu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004176};
4177
David Ahern8d1c8022018-04-17 17:33:26 -07004178static int rt6_mtu_change_route(struct fib6_info *rt, void *p_arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004179{
4180 struct rt6_mtu_change_arg *arg = (struct rt6_mtu_change_arg *) p_arg;
4181 struct inet6_dev *idev;
4182
4183 /* In IPv6 pmtu discovery is not optional,
4184 so that RTAX_MTU lock cannot disable it.
4185 We still use this lock to block changes
4186 caused by addrconf/ndisc.
4187 */
4188
4189 idev = __in6_dev_get(arg->dev);
David S. Miller38308472011-12-03 18:02:47 -05004190 if (!idev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004191 return 0;
4192
4193 /* For administrative MTU increase, there is no way to discover
4194 IPv6 PMTU increase, so PMTU increase should be updated here.
4195 Since RFC 1981 doesn't include administrative MTU increase
4196 update PMTU increase is a MUST. (i.e. jumbo frame)
4197 */
David Ahernad1601a2019-03-27 20:53:56 -07004198 if (rt->fib6_nh.fib_nh_dev == arg->dev &&
David Ahernd4ead6b2018-04-17 17:33:16 -07004199 !fib6_metric_locked(rt, RTAX_MTU)) {
4200 u32 mtu = rt->fib6_pmtu;
4201
4202 if (mtu >= arg->mtu ||
4203 (mtu < arg->mtu && mtu == idev->cnf.mtu6))
4204 fib6_metric_set(rt, RTAX_MTU, arg->mtu);
4205
Wei Wangf5bbe7e2017-10-06 12:05:59 -07004206 spin_lock_bh(&rt6_exception_lock);
Stefano Brivioe9fa1492018-03-06 11:10:19 +01004207 rt6_exceptions_update_pmtu(idev, rt, arg->mtu);
Wei Wangf5bbe7e2017-10-06 12:05:59 -07004208 spin_unlock_bh(&rt6_exception_lock);
Simon Arlott566cfd82007-07-26 00:09:55 -07004209 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004210 return 0;
4211}
4212
Eric Dumazet95c96172012-04-15 05:58:06 +00004213void rt6_mtu_change(struct net_device *dev, unsigned int mtu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004214{
Thomas Grafc71099a2006-08-04 23:20:06 -07004215 struct rt6_mtu_change_arg arg = {
4216 .dev = dev,
4217 .mtu = mtu,
4218 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07004219
Li RongQing0c3584d2013-12-27 16:32:38 +08004220 fib6_clean_all(dev_net(dev), rt6_mtu_change_route, &arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004221}
4222
Patrick McHardyef7c79e2007-06-05 12:38:30 -07004223static const struct nla_policy rtm_ipv6_policy[RTA_MAX+1] = {
Thomas Graf5176f912006-08-26 20:13:18 -07004224 [RTA_GATEWAY] = { .len = sizeof(struct in6_addr) },
Eric Dumazetaa8f8772018-04-22 18:29:23 -07004225 [RTA_PREFSRC] = { .len = sizeof(struct in6_addr) },
Thomas Graf86872cb2006-08-22 00:01:08 -07004226 [RTA_OIF] = { .type = NLA_U32 },
Thomas Grafab364a62006-08-22 00:01:47 -07004227 [RTA_IIF] = { .type = NLA_U32 },
Thomas Graf86872cb2006-08-22 00:01:08 -07004228 [RTA_PRIORITY] = { .type = NLA_U32 },
4229 [RTA_METRICS] = { .type = NLA_NESTED },
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00004230 [RTA_MULTIPATH] = { .len = sizeof(struct rtnexthop) },
Lubomir Rintelc78ba6d2015-03-11 15:39:21 +01004231 [RTA_PREF] = { .type = NLA_U8 },
Roopa Prabhu19e42e42015-07-21 10:43:48 +02004232 [RTA_ENCAP_TYPE] = { .type = NLA_U16 },
4233 [RTA_ENCAP] = { .type = NLA_NESTED },
Xin Long32bc2012015-12-16 17:50:11 +08004234 [RTA_EXPIRES] = { .type = NLA_U32 },
Lorenzo Colitti622ec2c2016-11-04 02:23:42 +09004235 [RTA_UID] = { .type = NLA_U32 },
Liping Zhang3b45a412017-02-27 20:59:39 +08004236 [RTA_MARK] = { .type = NLA_U32 },
Eric Dumazetaa8f8772018-04-22 18:29:23 -07004237 [RTA_TABLE] = { .type = NLA_U32 },
Roopa Prabhueacb9382018-05-22 14:03:28 -07004238 [RTA_IP_PROTO] = { .type = NLA_U8 },
4239 [RTA_SPORT] = { .type = NLA_U16 },
4240 [RTA_DPORT] = { .type = NLA_U16 },
Thomas Graf86872cb2006-08-22 00:01:08 -07004241};
4242
4243static int rtm_to_fib6_config(struct sk_buff *skb, struct nlmsghdr *nlh,
David Ahern333c4302017-05-21 10:12:04 -06004244 struct fib6_config *cfg,
4245 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004246{
Thomas Graf86872cb2006-08-22 00:01:08 -07004247 struct rtmsg *rtm;
4248 struct nlattr *tb[RTA_MAX+1];
Lubomir Rintelc78ba6d2015-03-11 15:39:21 +01004249 unsigned int pref;
Thomas Graf86872cb2006-08-22 00:01:08 -07004250 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004251
Johannes Berg8cb08172019-04-26 14:07:28 +02004252 err = nlmsg_parse_deprecated(nlh, sizeof(*rtm), tb, RTA_MAX,
4253 rtm_ipv6_policy, extack);
Thomas Graf86872cb2006-08-22 00:01:08 -07004254 if (err < 0)
4255 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004256
Thomas Graf86872cb2006-08-22 00:01:08 -07004257 err = -EINVAL;
4258 rtm = nlmsg_data(nlh);
Thomas Graf86872cb2006-08-22 00:01:08 -07004259
Maciej Żenczykowski84db8402018-09-29 23:44:53 -07004260 *cfg = (struct fib6_config){
4261 .fc_table = rtm->rtm_table,
4262 .fc_dst_len = rtm->rtm_dst_len,
4263 .fc_src_len = rtm->rtm_src_len,
4264 .fc_flags = RTF_UP,
4265 .fc_protocol = rtm->rtm_protocol,
4266 .fc_type = rtm->rtm_type,
4267
4268 .fc_nlinfo.portid = NETLINK_CB(skb).portid,
4269 .fc_nlinfo.nlh = nlh,
4270 .fc_nlinfo.nl_net = sock_net(skb->sk),
4271 };
Thomas Graf86872cb2006-08-22 00:01:08 -07004272
Nicolas Dichtelef2c7d72012-09-05 02:12:42 +00004273 if (rtm->rtm_type == RTN_UNREACHABLE ||
4274 rtm->rtm_type == RTN_BLACKHOLE ||
Nicolas Dichtelb4949ab2012-09-06 05:53:35 +00004275 rtm->rtm_type == RTN_PROHIBIT ||
4276 rtm->rtm_type == RTN_THROW)
Thomas Graf86872cb2006-08-22 00:01:08 -07004277 cfg->fc_flags |= RTF_REJECT;
4278
Maciej Żenczykowskiab79ad12010-09-27 00:07:02 +00004279 if (rtm->rtm_type == RTN_LOCAL)
4280 cfg->fc_flags |= RTF_LOCAL;
4281
Martin KaFai Lau1f56a01f2015-04-28 13:03:03 -07004282 if (rtm->rtm_flags & RTM_F_CLONED)
4283 cfg->fc_flags |= RTF_CACHE;
4284
David Ahernfc1e64e2018-01-25 16:55:09 -08004285 cfg->fc_flags |= (rtm->rtm_flags & RTNH_F_ONLINK);
4286
Thomas Graf86872cb2006-08-22 00:01:08 -07004287 if (tb[RTA_GATEWAY]) {
Jiri Benc67b61f62015-03-29 16:59:26 +02004288 cfg->fc_gateway = nla_get_in6_addr(tb[RTA_GATEWAY]);
Thomas Graf86872cb2006-08-22 00:01:08 -07004289 cfg->fc_flags |= RTF_GATEWAY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004290 }
David Aherne3818542019-02-26 09:00:03 -08004291 if (tb[RTA_VIA]) {
4292 NL_SET_ERR_MSG(extack, "IPv6 does not support RTA_VIA attribute");
4293 goto errout;
4294 }
Thomas Graf86872cb2006-08-22 00:01:08 -07004295
4296 if (tb[RTA_DST]) {
4297 int plen = (rtm->rtm_dst_len + 7) >> 3;
4298
4299 if (nla_len(tb[RTA_DST]) < plen)
4300 goto errout;
4301
4302 nla_memcpy(&cfg->fc_dst, tb[RTA_DST], plen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004303 }
Thomas Graf86872cb2006-08-22 00:01:08 -07004304
4305 if (tb[RTA_SRC]) {
4306 int plen = (rtm->rtm_src_len + 7) >> 3;
4307
4308 if (nla_len(tb[RTA_SRC]) < plen)
4309 goto errout;
4310
4311 nla_memcpy(&cfg->fc_src, tb[RTA_SRC], plen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004312 }
Thomas Graf86872cb2006-08-22 00:01:08 -07004313
Daniel Walterc3968a82011-04-13 21:10:57 +00004314 if (tb[RTA_PREFSRC])
Jiri Benc67b61f62015-03-29 16:59:26 +02004315 cfg->fc_prefsrc = nla_get_in6_addr(tb[RTA_PREFSRC]);
Daniel Walterc3968a82011-04-13 21:10:57 +00004316
Thomas Graf86872cb2006-08-22 00:01:08 -07004317 if (tb[RTA_OIF])
4318 cfg->fc_ifindex = nla_get_u32(tb[RTA_OIF]);
4319
4320 if (tb[RTA_PRIORITY])
4321 cfg->fc_metric = nla_get_u32(tb[RTA_PRIORITY]);
4322
4323 if (tb[RTA_METRICS]) {
4324 cfg->fc_mx = nla_data(tb[RTA_METRICS]);
4325 cfg->fc_mx_len = nla_len(tb[RTA_METRICS]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004326 }
Thomas Graf86872cb2006-08-22 00:01:08 -07004327
4328 if (tb[RTA_TABLE])
4329 cfg->fc_table = nla_get_u32(tb[RTA_TABLE]);
4330
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00004331 if (tb[RTA_MULTIPATH]) {
4332 cfg->fc_mp = nla_data(tb[RTA_MULTIPATH]);
4333 cfg->fc_mp_len = nla_len(tb[RTA_MULTIPATH]);
David Ahern9ed59592017-01-17 14:57:36 -08004334
4335 err = lwtunnel_valid_encap_type_attr(cfg->fc_mp,
David Ahernc255bd62017-05-27 16:19:27 -06004336 cfg->fc_mp_len, extack);
David Ahern9ed59592017-01-17 14:57:36 -08004337 if (err < 0)
4338 goto errout;
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00004339 }
4340
Lubomir Rintelc78ba6d2015-03-11 15:39:21 +01004341 if (tb[RTA_PREF]) {
4342 pref = nla_get_u8(tb[RTA_PREF]);
4343 if (pref != ICMPV6_ROUTER_PREF_LOW &&
4344 pref != ICMPV6_ROUTER_PREF_HIGH)
4345 pref = ICMPV6_ROUTER_PREF_MEDIUM;
4346 cfg->fc_flags |= RTF_PREF(pref);
4347 }
4348
Roopa Prabhu19e42e42015-07-21 10:43:48 +02004349 if (tb[RTA_ENCAP])
4350 cfg->fc_encap = tb[RTA_ENCAP];
4351
David Ahern9ed59592017-01-17 14:57:36 -08004352 if (tb[RTA_ENCAP_TYPE]) {
Roopa Prabhu19e42e42015-07-21 10:43:48 +02004353 cfg->fc_encap_type = nla_get_u16(tb[RTA_ENCAP_TYPE]);
4354
David Ahernc255bd62017-05-27 16:19:27 -06004355 err = lwtunnel_valid_encap_type(cfg->fc_encap_type, extack);
David Ahern9ed59592017-01-17 14:57:36 -08004356 if (err < 0)
4357 goto errout;
4358 }
4359
Xin Long32bc2012015-12-16 17:50:11 +08004360 if (tb[RTA_EXPIRES]) {
4361 unsigned long timeout = addrconf_timeout_fixup(nla_get_u32(tb[RTA_EXPIRES]), HZ);
4362
4363 if (addrconf_finite_timeout(timeout)) {
4364 cfg->fc_expires = jiffies_to_clock_t(timeout * HZ);
4365 cfg->fc_flags |= RTF_EXPIRES;
4366 }
4367 }
4368
Thomas Graf86872cb2006-08-22 00:01:08 -07004369 err = 0;
4370errout:
4371 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004372}
4373
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07004374struct rt6_nh {
David Ahern8d1c8022018-04-17 17:33:26 -07004375 struct fib6_info *fib6_info;
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07004376 struct fib6_config r_cfg;
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07004377 struct list_head next;
4378};
4379
David Ahernd4ead6b2018-04-17 17:33:16 -07004380static int ip6_route_info_append(struct net *net,
4381 struct list_head *rt6_nh_list,
David Ahern8d1c8022018-04-17 17:33:26 -07004382 struct fib6_info *rt,
4383 struct fib6_config *r_cfg)
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07004384{
4385 struct rt6_nh *nh;
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07004386 int err = -EEXIST;
4387
4388 list_for_each_entry(nh, rt6_nh_list, next) {
David Ahern8d1c8022018-04-17 17:33:26 -07004389 /* check if fib6_info already exists */
4390 if (rt6_duplicate_nexthop(nh->fib6_info, rt))
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07004391 return err;
4392 }
4393
4394 nh = kzalloc(sizeof(*nh), GFP_KERNEL);
4395 if (!nh)
4396 return -ENOMEM;
David Ahern8d1c8022018-04-17 17:33:26 -07004397 nh->fib6_info = rt;
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07004398 memcpy(&nh->r_cfg, r_cfg, sizeof(*r_cfg));
4399 list_add_tail(&nh->next, rt6_nh_list);
4400
4401 return 0;
4402}
4403
David Ahern8d1c8022018-04-17 17:33:26 -07004404static void ip6_route_mpath_notify(struct fib6_info *rt,
4405 struct fib6_info *rt_last,
David Ahern3b1137f2017-02-02 12:37:10 -08004406 struct nl_info *info,
4407 __u16 nlflags)
4408{
4409 /* if this is an APPEND route, then rt points to the first route
4410 * inserted and rt_last points to last route inserted. Userspace
4411 * wants a consistent dump of the route which starts at the first
4412 * nexthop. Since sibling routes are always added at the end of
4413 * the list, find the first sibling of the last route appended
4414 */
David Ahern93c2fb22018-04-18 15:38:59 -07004415 if ((nlflags & NLM_F_APPEND) && rt_last && rt_last->fib6_nsiblings) {
4416 rt = list_first_entry(&rt_last->fib6_siblings,
David Ahern8d1c8022018-04-17 17:33:26 -07004417 struct fib6_info,
David Ahern93c2fb22018-04-18 15:38:59 -07004418 fib6_siblings);
David Ahern3b1137f2017-02-02 12:37:10 -08004419 }
4420
4421 if (rt)
4422 inet6_rt_notify(RTM_NEWROUTE, rt, info, nlflags);
4423}
4424
David Ahern333c4302017-05-21 10:12:04 -06004425static int ip6_route_multipath_add(struct fib6_config *cfg,
4426 struct netlink_ext_ack *extack)
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00004427{
David Ahern8d1c8022018-04-17 17:33:26 -07004428 struct fib6_info *rt_notif = NULL, *rt_last = NULL;
David Ahern3b1137f2017-02-02 12:37:10 -08004429 struct nl_info *info = &cfg->fc_nlinfo;
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00004430 struct fib6_config r_cfg;
4431 struct rtnexthop *rtnh;
David Ahern8d1c8022018-04-17 17:33:26 -07004432 struct fib6_info *rt;
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07004433 struct rt6_nh *err_nh;
4434 struct rt6_nh *nh, *nh_safe;
David Ahern3b1137f2017-02-02 12:37:10 -08004435 __u16 nlflags;
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00004436 int remaining;
4437 int attrlen;
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07004438 int err = 1;
4439 int nhn = 0;
4440 int replace = (cfg->fc_nlinfo.nlh &&
4441 (cfg->fc_nlinfo.nlh->nlmsg_flags & NLM_F_REPLACE));
4442 LIST_HEAD(rt6_nh_list);
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00004443
David Ahern3b1137f2017-02-02 12:37:10 -08004444 nlflags = replace ? NLM_F_REPLACE : NLM_F_CREATE;
4445 if (info->nlh && info->nlh->nlmsg_flags & NLM_F_APPEND)
4446 nlflags |= NLM_F_APPEND;
4447
Michal Kubeček35f1b4e2015-05-18 20:53:55 +02004448 remaining = cfg->fc_mp_len;
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00004449 rtnh = (struct rtnexthop *)cfg->fc_mp;
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00004450
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07004451 /* Parse a Multipath Entry and build a list (rt6_nh_list) of
David Ahern8d1c8022018-04-17 17:33:26 -07004452 * fib6_info structs per nexthop
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07004453 */
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00004454 while (rtnh_ok(rtnh, remaining)) {
4455 memcpy(&r_cfg, cfg, sizeof(*cfg));
4456 if (rtnh->rtnh_ifindex)
4457 r_cfg.fc_ifindex = rtnh->rtnh_ifindex;
4458
4459 attrlen = rtnh_attrlen(rtnh);
4460 if (attrlen > 0) {
4461 struct nlattr *nla, *attrs = rtnh_attrs(rtnh);
4462
4463 nla = nla_find(attrs, attrlen, RTA_GATEWAY);
4464 if (nla) {
Jiri Benc67b61f62015-03-29 16:59:26 +02004465 r_cfg.fc_gateway = nla_get_in6_addr(nla);
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00004466 r_cfg.fc_flags |= RTF_GATEWAY;
4467 }
Roopa Prabhu19e42e42015-07-21 10:43:48 +02004468 r_cfg.fc_encap = nla_find(attrs, attrlen, RTA_ENCAP);
4469 nla = nla_find(attrs, attrlen, RTA_ENCAP_TYPE);
4470 if (nla)
4471 r_cfg.fc_encap_type = nla_get_u16(nla);
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00004472 }
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07004473
David Ahern68e2ffd2018-03-20 10:06:59 -07004474 r_cfg.fc_flags |= (rtnh->rtnh_flags & RTNH_F_ONLINK);
David Ahernacb54e32018-04-17 17:33:22 -07004475 rt = ip6_route_info_create(&r_cfg, GFP_KERNEL, extack);
Roopa Prabhu8c5b83f2015-10-10 08:26:36 -07004476 if (IS_ERR(rt)) {
4477 err = PTR_ERR(rt);
4478 rt = NULL;
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07004479 goto cleanup;
Roopa Prabhu8c5b83f2015-10-10 08:26:36 -07004480 }
David Ahernb5d2d752018-07-15 09:35:19 -07004481 if (!rt6_qualify_for_ecmp(rt)) {
4482 err = -EINVAL;
4483 NL_SET_ERR_MSG(extack,
4484 "Device only routes can not be added for IPv6 using the multipath API.");
4485 fib6_info_release(rt);
4486 goto cleanup;
4487 }
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07004488
David Ahernad1601a2019-03-27 20:53:56 -07004489 rt->fib6_nh.fib_nh_weight = rtnh->rtnh_hops + 1;
Ido Schimmel398958a2018-01-09 16:40:28 +02004490
David Ahernd4ead6b2018-04-17 17:33:16 -07004491 err = ip6_route_info_append(info->nl_net, &rt6_nh_list,
4492 rt, &r_cfg);
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00004493 if (err) {
David Ahern93531c62018-04-17 17:33:25 -07004494 fib6_info_release(rt);
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07004495 goto cleanup;
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00004496 }
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07004497
4498 rtnh = rtnh_next(rtnh, &remaining);
4499 }
4500
David Ahern3b1137f2017-02-02 12:37:10 -08004501 /* for add and replace send one notification with all nexthops.
4502 * Skip the notification in fib6_add_rt2node and send one with
4503 * the full route when done
4504 */
4505 info->skip_notify = 1;
4506
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07004507 err_nh = NULL;
4508 list_for_each_entry(nh, &rt6_nh_list, next) {
David Ahern8d1c8022018-04-17 17:33:26 -07004509 err = __ip6_ins_rt(nh->fib6_info, info, extack);
4510 fib6_info_release(nh->fib6_info);
David Ahern3b1137f2017-02-02 12:37:10 -08004511
David Ahernf7225172018-06-04 13:41:42 -07004512 if (!err) {
4513 /* save reference to last route successfully inserted */
4514 rt_last = nh->fib6_info;
4515
4516 /* save reference to first route for notification */
4517 if (!rt_notif)
4518 rt_notif = nh->fib6_info;
4519 }
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07004520
David Ahern8d1c8022018-04-17 17:33:26 -07004521 /* nh->fib6_info is used or freed at this point, reset to NULL*/
4522 nh->fib6_info = NULL;
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07004523 if (err) {
4524 if (replace && nhn)
Jakub Kicinskia5a82d82019-01-14 10:52:45 -08004525 NL_SET_ERR_MSG_MOD(extack,
4526 "multipath route replace failed (check consistency of installed routes)");
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07004527 err_nh = nh;
4528 goto add_errout;
4529 }
4530
Nicolas Dichtel1a724182012-11-01 22:58:22 +00004531 /* Because each route is added like a single route we remove
Michal Kubeček27596472015-05-18 20:54:00 +02004532 * these flags after the first nexthop: if there is a collision,
4533 * we have already failed to add the first nexthop:
4534 * fib6_add_rt2node() has rejected it; when replacing, old
4535 * nexthops have been replaced by first new, the rest should
4536 * be added to it.
Nicolas Dichtel1a724182012-11-01 22:58:22 +00004537 */
Michal Kubeček27596472015-05-18 20:54:00 +02004538 cfg->fc_nlinfo.nlh->nlmsg_flags &= ~(NLM_F_EXCL |
4539 NLM_F_REPLACE);
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07004540 nhn++;
4541 }
4542
David Ahern3b1137f2017-02-02 12:37:10 -08004543 /* success ... tell user about new route */
4544 ip6_route_mpath_notify(rt_notif, rt_last, info, nlflags);
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07004545 goto cleanup;
4546
4547add_errout:
David Ahern3b1137f2017-02-02 12:37:10 -08004548 /* send notification for routes that were added so that
4549 * the delete notifications sent by ip6_route_del are
4550 * coherent
4551 */
4552 if (rt_notif)
4553 ip6_route_mpath_notify(rt_notif, rt_last, info, nlflags);
4554
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07004555 /* Delete routes that were already added */
4556 list_for_each_entry(nh, &rt6_nh_list, next) {
4557 if (err_nh == nh)
4558 break;
David Ahern333c4302017-05-21 10:12:04 -06004559 ip6_route_del(&nh->r_cfg, extack);
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07004560 }
4561
4562cleanup:
4563 list_for_each_entry_safe(nh, nh_safe, &rt6_nh_list, next) {
David Ahern8d1c8022018-04-17 17:33:26 -07004564 if (nh->fib6_info)
4565 fib6_info_release(nh->fib6_info);
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07004566 list_del(&nh->next);
4567 kfree(nh);
4568 }
4569
4570 return err;
4571}
4572
David Ahern333c4302017-05-21 10:12:04 -06004573static int ip6_route_multipath_del(struct fib6_config *cfg,
4574 struct netlink_ext_ack *extack)
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07004575{
4576 struct fib6_config r_cfg;
4577 struct rtnexthop *rtnh;
4578 int remaining;
4579 int attrlen;
4580 int err = 1, last_err = 0;
4581
4582 remaining = cfg->fc_mp_len;
4583 rtnh = (struct rtnexthop *)cfg->fc_mp;
4584
4585 /* Parse a Multipath Entry */
4586 while (rtnh_ok(rtnh, remaining)) {
4587 memcpy(&r_cfg, cfg, sizeof(*cfg));
4588 if (rtnh->rtnh_ifindex)
4589 r_cfg.fc_ifindex = rtnh->rtnh_ifindex;
4590
4591 attrlen = rtnh_attrlen(rtnh);
4592 if (attrlen > 0) {
4593 struct nlattr *nla, *attrs = rtnh_attrs(rtnh);
4594
4595 nla = nla_find(attrs, attrlen, RTA_GATEWAY);
4596 if (nla) {
4597 nla_memcpy(&r_cfg.fc_gateway, nla, 16);
4598 r_cfg.fc_flags |= RTF_GATEWAY;
4599 }
4600 }
David Ahern333c4302017-05-21 10:12:04 -06004601 err = ip6_route_del(&r_cfg, extack);
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07004602 if (err)
4603 last_err = err;
4604
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00004605 rtnh = rtnh_next(rtnh, &remaining);
4606 }
4607
4608 return last_err;
4609}
4610
David Ahernc21ef3e2017-04-16 09:48:24 -07004611static int inet6_rtm_delroute(struct sk_buff *skb, struct nlmsghdr *nlh,
4612 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004613{
Thomas Graf86872cb2006-08-22 00:01:08 -07004614 struct fib6_config cfg;
4615 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004616
David Ahern333c4302017-05-21 10:12:04 -06004617 err = rtm_to_fib6_config(skb, nlh, &cfg, extack);
Thomas Graf86872cb2006-08-22 00:01:08 -07004618 if (err < 0)
4619 return err;
4620
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00004621 if (cfg.fc_mp)
David Ahern333c4302017-05-21 10:12:04 -06004622 return ip6_route_multipath_del(&cfg, extack);
David Ahern0ae81332017-02-02 12:37:08 -08004623 else {
4624 cfg.fc_delete_all_nh = 1;
David Ahern333c4302017-05-21 10:12:04 -06004625 return ip6_route_del(&cfg, extack);
David Ahern0ae81332017-02-02 12:37:08 -08004626 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004627}
4628
David Ahernc21ef3e2017-04-16 09:48:24 -07004629static int inet6_rtm_newroute(struct sk_buff *skb, struct nlmsghdr *nlh,
4630 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004631{
Thomas Graf86872cb2006-08-22 00:01:08 -07004632 struct fib6_config cfg;
4633 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004634
David Ahern333c4302017-05-21 10:12:04 -06004635 err = rtm_to_fib6_config(skb, nlh, &cfg, extack);
Thomas Graf86872cb2006-08-22 00:01:08 -07004636 if (err < 0)
4637 return err;
4638
David Ahern67f69512019-03-21 05:21:34 -07004639 if (cfg.fc_metric == 0)
4640 cfg.fc_metric = IP6_RT_PRIO_USER;
4641
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00004642 if (cfg.fc_mp)
David Ahern333c4302017-05-21 10:12:04 -06004643 return ip6_route_multipath_add(&cfg, extack);
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00004644 else
David Ahernacb54e32018-04-17 17:33:22 -07004645 return ip6_route_add(&cfg, GFP_KERNEL, extack);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004646}
4647
David Ahern8d1c8022018-04-17 17:33:26 -07004648static size_t rt6_nlmsg_size(struct fib6_info *rt)
Thomas Graf339bf982006-11-10 14:10:15 -08004649{
David Ahernbeb1afac52017-02-02 12:37:09 -08004650 int nexthop_len = 0;
4651
David Ahern93c2fb22018-04-18 15:38:59 -07004652 if (rt->fib6_nsiblings) {
David Ahernbeb1afac52017-02-02 12:37:09 -08004653 nexthop_len = nla_total_size(0) /* RTA_MULTIPATH */
4654 + NLA_ALIGN(sizeof(struct rtnexthop))
4655 + nla_total_size(16) /* RTA_GATEWAY */
David Ahernad1601a2019-03-27 20:53:56 -07004656 + lwtunnel_get_encap_size(rt->fib6_nh.fib_nh_lws);
David Ahernbeb1afac52017-02-02 12:37:09 -08004657
David Ahern93c2fb22018-04-18 15:38:59 -07004658 nexthop_len *= rt->fib6_nsiblings;
David Ahernbeb1afac52017-02-02 12:37:09 -08004659 }
4660
Thomas Graf339bf982006-11-10 14:10:15 -08004661 return NLMSG_ALIGN(sizeof(struct rtmsg))
4662 + nla_total_size(16) /* RTA_SRC */
4663 + nla_total_size(16) /* RTA_DST */
4664 + nla_total_size(16) /* RTA_GATEWAY */
4665 + nla_total_size(16) /* RTA_PREFSRC */
4666 + nla_total_size(4) /* RTA_TABLE */
4667 + nla_total_size(4) /* RTA_IIF */
4668 + nla_total_size(4) /* RTA_OIF */
4669 + nla_total_size(4) /* RTA_PRIORITY */
Noriaki TAKAMIYA6a2b9ce2007-01-23 22:09:41 -08004670 + RTAX_MAX * nla_total_size(4) /* RTA_METRICS */
Daniel Borkmannea697632015-01-05 23:57:47 +01004671 + nla_total_size(sizeof(struct rta_cacheinfo))
Lubomir Rintelc78ba6d2015-03-11 15:39:21 +01004672 + nla_total_size(TCP_CA_NAME_MAX) /* RTAX_CC_ALGO */
Roopa Prabhu19e42e42015-07-21 10:43:48 +02004673 + nla_total_size(1) /* RTA_PREF */
David Ahernad1601a2019-03-27 20:53:56 -07004674 + lwtunnel_get_encap_size(rt->fib6_nh.fib_nh_lws)
David Ahernbeb1afac52017-02-02 12:37:09 -08004675 + nexthop_len;
4676}
4677
David Ahernd4ead6b2018-04-17 17:33:16 -07004678static int rt6_fill_node(struct net *net, struct sk_buff *skb,
David Ahern8d1c8022018-04-17 17:33:26 -07004679 struct fib6_info *rt, struct dst_entry *dst,
David Ahernd4ead6b2018-04-17 17:33:16 -07004680 struct in6_addr *dest, struct in6_addr *src,
Eric W. Biederman15e47302012-09-07 20:12:54 +00004681 int iif, int type, u32 portid, u32 seq,
David Ahernf8cfe2c2017-01-17 15:51:08 -08004682 unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004683{
Xin Long22d0bd82018-09-11 14:33:58 +08004684 struct rt6_info *rt6 = (struct rt6_info *)dst;
4685 struct rt6key *rt6_dst, *rt6_src;
4686 u32 *pmetrics, table, rt6_flags;
Thomas Graf2d7202b2006-08-22 00:01:27 -07004687 struct nlmsghdr *nlh;
Xin Long22d0bd82018-09-11 14:33:58 +08004688 struct rtmsg *rtm;
David Ahernd4ead6b2018-04-17 17:33:16 -07004689 long expires = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004690
Eric W. Biederman15e47302012-09-07 20:12:54 +00004691 nlh = nlmsg_put(skb, portid, seq, type, sizeof(*rtm), flags);
David S. Miller38308472011-12-03 18:02:47 -05004692 if (!nlh)
Patrick McHardy26932562007-01-31 23:16:40 -08004693 return -EMSGSIZE;
Thomas Graf2d7202b2006-08-22 00:01:27 -07004694
Xin Long22d0bd82018-09-11 14:33:58 +08004695 if (rt6) {
4696 rt6_dst = &rt6->rt6i_dst;
4697 rt6_src = &rt6->rt6i_src;
4698 rt6_flags = rt6->rt6i_flags;
4699 } else {
4700 rt6_dst = &rt->fib6_dst;
4701 rt6_src = &rt->fib6_src;
4702 rt6_flags = rt->fib6_flags;
4703 }
4704
Thomas Graf2d7202b2006-08-22 00:01:27 -07004705 rtm = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004706 rtm->rtm_family = AF_INET6;
Xin Long22d0bd82018-09-11 14:33:58 +08004707 rtm->rtm_dst_len = rt6_dst->plen;
4708 rtm->rtm_src_len = rt6_src->plen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004709 rtm->rtm_tos = 0;
David Ahern93c2fb22018-04-18 15:38:59 -07004710 if (rt->fib6_table)
4711 table = rt->fib6_table->tb6_id;
Thomas Grafc71099a2006-08-04 23:20:06 -07004712 else
Patrick McHardy9e762a42006-08-10 23:09:48 -07004713 table = RT6_TABLE_UNSPEC;
Kalash Nainwal97f00822019-02-20 16:23:04 -08004714 rtm->rtm_table = table < 256 ? table : RT_TABLE_COMPAT;
David S. Millerc78679e2012-04-01 20:27:33 -04004715 if (nla_put_u32(skb, RTA_TABLE, table))
4716 goto nla_put_failure;
David Aherne8478e82018-04-17 17:33:13 -07004717
4718 rtm->rtm_type = rt->fib6_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004719 rtm->rtm_flags = 0;
4720 rtm->rtm_scope = RT_SCOPE_UNIVERSE;
David Ahern93c2fb22018-04-18 15:38:59 -07004721 rtm->rtm_protocol = rt->fib6_protocol;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004722
Xin Long22d0bd82018-09-11 14:33:58 +08004723 if (rt6_flags & RTF_CACHE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004724 rtm->rtm_flags |= RTM_F_CLONED;
4725
David Ahernd4ead6b2018-04-17 17:33:16 -07004726 if (dest) {
4727 if (nla_put_in6_addr(skb, RTA_DST, dest))
David S. Millerc78679e2012-04-01 20:27:33 -04004728 goto nla_put_failure;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09004729 rtm->rtm_dst_len = 128;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004730 } else if (rtm->rtm_dst_len)
Xin Long22d0bd82018-09-11 14:33:58 +08004731 if (nla_put_in6_addr(skb, RTA_DST, &rt6_dst->addr))
David S. Millerc78679e2012-04-01 20:27:33 -04004732 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004733#ifdef CONFIG_IPV6_SUBTREES
4734 if (src) {
Jiri Benc930345e2015-03-29 16:59:25 +02004735 if (nla_put_in6_addr(skb, RTA_SRC, src))
David S. Millerc78679e2012-04-01 20:27:33 -04004736 goto nla_put_failure;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09004737 rtm->rtm_src_len = 128;
David S. Millerc78679e2012-04-01 20:27:33 -04004738 } else if (rtm->rtm_src_len &&
Xin Long22d0bd82018-09-11 14:33:58 +08004739 nla_put_in6_addr(skb, RTA_SRC, &rt6_src->addr))
David S. Millerc78679e2012-04-01 20:27:33 -04004740 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004741#endif
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09004742 if (iif) {
4743#ifdef CONFIG_IPV6_MROUTE
Xin Long22d0bd82018-09-11 14:33:58 +08004744 if (ipv6_addr_is_multicast(&rt6_dst->addr)) {
David Ahernfd61c6b2017-01-17 15:51:07 -08004745 int err = ip6mr_get_route(net, skb, rtm, portid);
Nikolay Aleksandrov2cf75072016-09-25 23:08:31 +02004746
David Ahernfd61c6b2017-01-17 15:51:07 -08004747 if (err == 0)
4748 return 0;
4749 if (err < 0)
4750 goto nla_put_failure;
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09004751 } else
4752#endif
David S. Millerc78679e2012-04-01 20:27:33 -04004753 if (nla_put_u32(skb, RTA_IIF, iif))
4754 goto nla_put_failure;
David Ahernd4ead6b2018-04-17 17:33:16 -07004755 } else if (dest) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004756 struct in6_addr saddr_buf;
David Ahernd4ead6b2018-04-17 17:33:16 -07004757 if (ip6_route_get_saddr(net, rt, dest, 0, &saddr_buf) == 0 &&
Jiri Benc930345e2015-03-29 16:59:25 +02004758 nla_put_in6_addr(skb, RTA_PREFSRC, &saddr_buf))
David S. Millerc78679e2012-04-01 20:27:33 -04004759 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004760 }
Thomas Graf2d7202b2006-08-22 00:01:27 -07004761
David Ahern93c2fb22018-04-18 15:38:59 -07004762 if (rt->fib6_prefsrc.plen) {
Daniel Walterc3968a82011-04-13 21:10:57 +00004763 struct in6_addr saddr_buf;
David Ahern93c2fb22018-04-18 15:38:59 -07004764 saddr_buf = rt->fib6_prefsrc.addr;
Jiri Benc930345e2015-03-29 16:59:25 +02004765 if (nla_put_in6_addr(skb, RTA_PREFSRC, &saddr_buf))
David S. Millerc78679e2012-04-01 20:27:33 -04004766 goto nla_put_failure;
Daniel Walterc3968a82011-04-13 21:10:57 +00004767 }
4768
David Ahernd4ead6b2018-04-17 17:33:16 -07004769 pmetrics = dst ? dst_metrics_ptr(dst) : rt->fib6_metrics->metrics;
4770 if (rtnetlink_put_metrics(skb, pmetrics) < 0)
Thomas Graf2d7202b2006-08-22 00:01:27 -07004771 goto nla_put_failure;
4772
David Ahern93c2fb22018-04-18 15:38:59 -07004773 if (nla_put_u32(skb, RTA_PRIORITY, rt->fib6_metric))
David S. Millerc78679e2012-04-01 20:27:33 -04004774 goto nla_put_failure;
Li Wei82539472012-07-29 16:01:30 +00004775
David Ahernbeb1afac52017-02-02 12:37:09 -08004776 /* For multipath routes, walk the siblings list and add
4777 * each as a nexthop within RTA_MULTIPATH.
4778 */
Xin Long22d0bd82018-09-11 14:33:58 +08004779 if (rt6) {
4780 if (rt6_flags & RTF_GATEWAY &&
4781 nla_put_in6_addr(skb, RTA_GATEWAY, &rt6->rt6i_gateway))
4782 goto nla_put_failure;
4783
4784 if (dst->dev && nla_put_u32(skb, RTA_OIF, dst->dev->ifindex))
4785 goto nla_put_failure;
4786 } else if (rt->fib6_nsiblings) {
David Ahern8d1c8022018-04-17 17:33:26 -07004787 struct fib6_info *sibling, *next_sibling;
David Ahernbeb1afac52017-02-02 12:37:09 -08004788 struct nlattr *mp;
4789
Michal Kubecekae0be8d2019-04-26 11:13:06 +02004790 mp = nla_nest_start_noflag(skb, RTA_MULTIPATH);
David Ahernbeb1afac52017-02-02 12:37:09 -08004791 if (!mp)
4792 goto nla_put_failure;
4793
David Ahernc0a72072019-04-02 14:11:58 -07004794 if (fib_add_nexthop(skb, &rt->fib6_nh.nh_common,
4795 rt->fib6_nh.fib_nh_weight) < 0)
David Ahernbeb1afac52017-02-02 12:37:09 -08004796 goto nla_put_failure;
4797
4798 list_for_each_entry_safe(sibling, next_sibling,
David Ahern93c2fb22018-04-18 15:38:59 -07004799 &rt->fib6_siblings, fib6_siblings) {
David Ahernc0a72072019-04-02 14:11:58 -07004800 if (fib_add_nexthop(skb, &sibling->fib6_nh.nh_common,
4801 sibling->fib6_nh.fib_nh_weight) < 0)
David Ahernbeb1afac52017-02-02 12:37:09 -08004802 goto nla_put_failure;
4803 }
4804
4805 nla_nest_end(skb, mp);
4806 } else {
David Ahernecc56632019-04-23 08:48:09 -07004807 unsigned char nh_flags = 0;
4808
David Ahernc0a72072019-04-02 14:11:58 -07004809 if (fib_nexthop_info(skb, &rt->fib6_nh.nh_common,
David Ahernecc56632019-04-23 08:48:09 -07004810 &nh_flags, false) < 0)
David Ahernbeb1afac52017-02-02 12:37:09 -08004811 goto nla_put_failure;
David Ahernecc56632019-04-23 08:48:09 -07004812
4813 rtm->rtm_flags |= nh_flags;
David Ahernbeb1afac52017-02-02 12:37:09 -08004814 }
4815
Xin Long22d0bd82018-09-11 14:33:58 +08004816 if (rt6_flags & RTF_EXPIRES) {
David Ahern14895682018-04-17 17:33:17 -07004817 expires = dst ? dst->expires : rt->expires;
4818 expires -= jiffies;
4819 }
YOSHIFUJI Hideaki69cdf8f2008-05-19 16:55:13 -07004820
David Ahernd4ead6b2018-04-17 17:33:16 -07004821 if (rtnl_put_cacheinfo(skb, dst, 0, expires, dst ? dst->error : 0) < 0)
Thomas Grafe3703b32006-11-27 09:27:07 -08004822 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004823
Xin Long22d0bd82018-09-11 14:33:58 +08004824 if (nla_put_u8(skb, RTA_PREF, IPV6_EXTRACT_PREF(rt6_flags)))
Lubomir Rintelc78ba6d2015-03-11 15:39:21 +01004825 goto nla_put_failure;
4826
Roopa Prabhu19e42e42015-07-21 10:43:48 +02004827
Johannes Berg053c0952015-01-16 22:09:00 +01004828 nlmsg_end(skb, nlh);
4829 return 0;
Thomas Graf2d7202b2006-08-22 00:01:27 -07004830
4831nla_put_failure:
Patrick McHardy26932562007-01-31 23:16:40 -08004832 nlmsg_cancel(skb, nlh);
4833 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004834}
4835
David Ahern13e38902018-10-15 18:56:44 -07004836static bool fib6_info_uses_dev(const struct fib6_info *f6i,
4837 const struct net_device *dev)
4838{
David Ahernad1601a2019-03-27 20:53:56 -07004839 if (f6i->fib6_nh.fib_nh_dev == dev)
David Ahern13e38902018-10-15 18:56:44 -07004840 return true;
4841
4842 if (f6i->fib6_nsiblings) {
4843 struct fib6_info *sibling, *next_sibling;
4844
4845 list_for_each_entry_safe(sibling, next_sibling,
4846 &f6i->fib6_siblings, fib6_siblings) {
David Ahernad1601a2019-03-27 20:53:56 -07004847 if (sibling->fib6_nh.fib_nh_dev == dev)
David Ahern13e38902018-10-15 18:56:44 -07004848 return true;
4849 }
4850 }
4851
4852 return false;
4853}
4854
David Ahern8d1c8022018-04-17 17:33:26 -07004855int rt6_dump_route(struct fib6_info *rt, void *p_arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004856{
4857 struct rt6_rtnl_dump_arg *arg = (struct rt6_rtnl_dump_arg *) p_arg;
David Ahern13e38902018-10-15 18:56:44 -07004858 struct fib_dump_filter *filter = &arg->filter;
4859 unsigned int flags = NLM_F_MULTI;
David Ahern1f17e2f2017-01-26 13:54:08 -08004860 struct net *net = arg->net;
4861
David Ahern421842e2018-04-17 17:33:18 -07004862 if (rt == net->ipv6.fib6_null_entry)
David Ahern1f17e2f2017-01-26 13:54:08 -08004863 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004864
David Ahern13e38902018-10-15 18:56:44 -07004865 if ((filter->flags & RTM_F_PREFIX) &&
4866 !(rt->fib6_flags & RTF_PREFIX_RT)) {
4867 /* success since this is not a prefix route */
4868 return 1;
4869 }
4870 if (filter->filter_set) {
4871 if ((filter->rt_type && rt->fib6_type != filter->rt_type) ||
4872 (filter->dev && !fib6_info_uses_dev(rt, filter->dev)) ||
4873 (filter->protocol && rt->fib6_protocol != filter->protocol)) {
David Ahernf8cfe2c2017-01-17 15:51:08 -08004874 return 1;
4875 }
David Ahern13e38902018-10-15 18:56:44 -07004876 flags |= NLM_F_DUMP_FILTERED;
David Ahernf8cfe2c2017-01-17 15:51:08 -08004877 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004878
David Ahernd4ead6b2018-04-17 17:33:16 -07004879 return rt6_fill_node(net, arg->skb, rt, NULL, NULL, NULL, 0,
4880 RTM_NEWROUTE, NETLINK_CB(arg->cb->skb).portid,
David Ahern13e38902018-10-15 18:56:44 -07004881 arg->cb->nlh->nlmsg_seq, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004882}
4883
Jakub Kicinski0eff0a22019-01-18 10:46:24 -08004884static int inet6_rtm_valid_getroute_req(struct sk_buff *skb,
4885 const struct nlmsghdr *nlh,
4886 struct nlattr **tb,
4887 struct netlink_ext_ack *extack)
4888{
4889 struct rtmsg *rtm;
4890 int i, err;
4891
4892 if (nlh->nlmsg_len < nlmsg_msg_size(sizeof(*rtm))) {
4893 NL_SET_ERR_MSG_MOD(extack,
4894 "Invalid header for get route request");
4895 return -EINVAL;
4896 }
4897
4898 if (!netlink_strict_get_check(skb))
Johannes Berg8cb08172019-04-26 14:07:28 +02004899 return nlmsg_parse_deprecated(nlh, sizeof(*rtm), tb, RTA_MAX,
4900 rtm_ipv6_policy, extack);
Jakub Kicinski0eff0a22019-01-18 10:46:24 -08004901
4902 rtm = nlmsg_data(nlh);
4903 if ((rtm->rtm_src_len && rtm->rtm_src_len != 128) ||
4904 (rtm->rtm_dst_len && rtm->rtm_dst_len != 128) ||
4905 rtm->rtm_table || rtm->rtm_protocol || rtm->rtm_scope ||
4906 rtm->rtm_type) {
4907 NL_SET_ERR_MSG_MOD(extack, "Invalid values in header for get route request");
4908 return -EINVAL;
4909 }
4910 if (rtm->rtm_flags & ~RTM_F_FIB_MATCH) {
4911 NL_SET_ERR_MSG_MOD(extack,
4912 "Invalid flags for get route request");
4913 return -EINVAL;
4914 }
4915
Johannes Berg8cb08172019-04-26 14:07:28 +02004916 err = nlmsg_parse_deprecated_strict(nlh, sizeof(*rtm), tb, RTA_MAX,
4917 rtm_ipv6_policy, extack);
Jakub Kicinski0eff0a22019-01-18 10:46:24 -08004918 if (err)
4919 return err;
4920
4921 if ((tb[RTA_SRC] && !rtm->rtm_src_len) ||
4922 (tb[RTA_DST] && !rtm->rtm_dst_len)) {
4923 NL_SET_ERR_MSG_MOD(extack, "rtm_src_len and rtm_dst_len must be 128 for IPv6");
4924 return -EINVAL;
4925 }
4926
4927 for (i = 0; i <= RTA_MAX; i++) {
4928 if (!tb[i])
4929 continue;
4930
4931 switch (i) {
4932 case RTA_SRC:
4933 case RTA_DST:
4934 case RTA_IIF:
4935 case RTA_OIF:
4936 case RTA_MARK:
4937 case RTA_UID:
4938 case RTA_SPORT:
4939 case RTA_DPORT:
4940 case RTA_IP_PROTO:
4941 break;
4942 default:
4943 NL_SET_ERR_MSG_MOD(extack, "Unsupported attribute in get route request");
4944 return -EINVAL;
4945 }
4946 }
4947
4948 return 0;
4949}
4950
David Ahernc21ef3e2017-04-16 09:48:24 -07004951static int inet6_rtm_getroute(struct sk_buff *in_skb, struct nlmsghdr *nlh,
4952 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004953{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09004954 struct net *net = sock_net(in_skb->sk);
Thomas Grafab364a62006-08-22 00:01:47 -07004955 struct nlattr *tb[RTA_MAX+1];
Roopa Prabhu18c3a612017-05-25 10:42:40 -07004956 int err, iif = 0, oif = 0;
David Aherna68886a2018-04-20 15:38:02 -07004957 struct fib6_info *from;
Roopa Prabhu18c3a612017-05-25 10:42:40 -07004958 struct dst_entry *dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004959 struct rt6_info *rt;
Thomas Grafab364a62006-08-22 00:01:47 -07004960 struct sk_buff *skb;
4961 struct rtmsg *rtm;
Maciej Żenczykowski744486d2018-09-29 23:44:54 -07004962 struct flowi6 fl6 = {};
Roopa Prabhu18c3a612017-05-25 10:42:40 -07004963 bool fibmatch;
Thomas Grafab364a62006-08-22 00:01:47 -07004964
Jakub Kicinski0eff0a22019-01-18 10:46:24 -08004965 err = inet6_rtm_valid_getroute_req(in_skb, nlh, tb, extack);
Thomas Grafab364a62006-08-22 00:01:47 -07004966 if (err < 0)
4967 goto errout;
4968
4969 err = -EINVAL;
Hannes Frederic Sowa38b70972016-06-11 20:08:19 +02004970 rtm = nlmsg_data(nlh);
4971 fl6.flowlabel = ip6_make_flowinfo(rtm->rtm_tos, 0);
Roopa Prabhu18c3a612017-05-25 10:42:40 -07004972 fibmatch = !!(rtm->rtm_flags & RTM_F_FIB_MATCH);
Thomas Grafab364a62006-08-22 00:01:47 -07004973
4974 if (tb[RTA_SRC]) {
4975 if (nla_len(tb[RTA_SRC]) < sizeof(struct in6_addr))
4976 goto errout;
4977
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00004978 fl6.saddr = *(struct in6_addr *)nla_data(tb[RTA_SRC]);
Thomas Grafab364a62006-08-22 00:01:47 -07004979 }
4980
4981 if (tb[RTA_DST]) {
4982 if (nla_len(tb[RTA_DST]) < sizeof(struct in6_addr))
4983 goto errout;
4984
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00004985 fl6.daddr = *(struct in6_addr *)nla_data(tb[RTA_DST]);
Thomas Grafab364a62006-08-22 00:01:47 -07004986 }
4987
4988 if (tb[RTA_IIF])
4989 iif = nla_get_u32(tb[RTA_IIF]);
4990
4991 if (tb[RTA_OIF])
Shmulik Ladkani72331bc2012-04-01 04:03:45 +00004992 oif = nla_get_u32(tb[RTA_OIF]);
Thomas Grafab364a62006-08-22 00:01:47 -07004993
Lorenzo Colitti2e47b292014-05-15 16:38:41 -07004994 if (tb[RTA_MARK])
4995 fl6.flowi6_mark = nla_get_u32(tb[RTA_MARK]);
4996
Lorenzo Colitti622ec2c2016-11-04 02:23:42 +09004997 if (tb[RTA_UID])
4998 fl6.flowi6_uid = make_kuid(current_user_ns(),
4999 nla_get_u32(tb[RTA_UID]));
5000 else
5001 fl6.flowi6_uid = iif ? INVALID_UID : current_uid();
5002
Roopa Prabhueacb9382018-05-22 14:03:28 -07005003 if (tb[RTA_SPORT])
5004 fl6.fl6_sport = nla_get_be16(tb[RTA_SPORT]);
5005
5006 if (tb[RTA_DPORT])
5007 fl6.fl6_dport = nla_get_be16(tb[RTA_DPORT]);
5008
5009 if (tb[RTA_IP_PROTO]) {
5010 err = rtm_getroute_parse_ip_proto(tb[RTA_IP_PROTO],
Hangbin Liu5e1a99e2019-02-27 16:15:29 +08005011 &fl6.flowi6_proto, AF_INET6,
5012 extack);
Roopa Prabhueacb9382018-05-22 14:03:28 -07005013 if (err)
5014 goto errout;
5015 }
5016
Thomas Grafab364a62006-08-22 00:01:47 -07005017 if (iif) {
5018 struct net_device *dev;
Shmulik Ladkani72331bc2012-04-01 04:03:45 +00005019 int flags = 0;
5020
Florian Westphal121622d2017-08-15 16:34:42 +02005021 rcu_read_lock();
5022
5023 dev = dev_get_by_index_rcu(net, iif);
Thomas Grafab364a62006-08-22 00:01:47 -07005024 if (!dev) {
Florian Westphal121622d2017-08-15 16:34:42 +02005025 rcu_read_unlock();
Thomas Grafab364a62006-08-22 00:01:47 -07005026 err = -ENODEV;
5027 goto errout;
5028 }
Shmulik Ladkani72331bc2012-04-01 04:03:45 +00005029
5030 fl6.flowi6_iif = iif;
5031
5032 if (!ipv6_addr_any(&fl6.saddr))
5033 flags |= RT6_LOOKUP_F_HAS_SADDR;
5034
David Ahernb75cc8f2018-03-02 08:32:17 -08005035 dst = ip6_route_input_lookup(net, dev, &fl6, NULL, flags);
Florian Westphal121622d2017-08-15 16:34:42 +02005036
5037 rcu_read_unlock();
Shmulik Ladkani72331bc2012-04-01 04:03:45 +00005038 } else {
5039 fl6.flowi6_oif = oif;
5040
Ido Schimmel58acfd72017-12-20 12:28:25 +02005041 dst = ip6_route_output(net, NULL, &fl6);
Roopa Prabhu18c3a612017-05-25 10:42:40 -07005042 }
5043
Roopa Prabhu18c3a612017-05-25 10:42:40 -07005044
5045 rt = container_of(dst, struct rt6_info, dst);
5046 if (rt->dst.error) {
5047 err = rt->dst.error;
5048 ip6_rt_put(rt);
5049 goto errout;
Thomas Grafab364a62006-08-22 00:01:47 -07005050 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005051
WANG Cong9d6acb32017-03-01 20:48:39 -08005052 if (rt == net->ipv6.ip6_null_entry) {
5053 err = rt->dst.error;
5054 ip6_rt_put(rt);
5055 goto errout;
5056 }
5057
Linus Torvalds1da177e2005-04-16 15:20:36 -07005058 skb = alloc_skb(NLMSG_GOODSIZE, GFP_KERNEL);
David S. Miller38308472011-12-03 18:02:47 -05005059 if (!skb) {
Amerigo Wang94e187c2012-10-29 00:13:19 +00005060 ip6_rt_put(rt);
Thomas Grafab364a62006-08-22 00:01:47 -07005061 err = -ENOBUFS;
5062 goto errout;
5063 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005064
Changli Gaod8d1f302010-06-10 23:31:35 -07005065 skb_dst_set(skb, &rt->dst);
David Aherna68886a2018-04-20 15:38:02 -07005066
5067 rcu_read_lock();
5068 from = rcu_dereference(rt->from);
Martin KaFai Lau886b7a52019-04-30 10:45:12 -07005069 if (from) {
5070 if (fibmatch)
5071 err = rt6_fill_node(net, skb, from, NULL, NULL, NULL,
5072 iif, RTM_NEWROUTE,
5073 NETLINK_CB(in_skb).portid,
5074 nlh->nlmsg_seq, 0);
5075 else
5076 err = rt6_fill_node(net, skb, from, dst, &fl6.daddr,
5077 &fl6.saddr, iif, RTM_NEWROUTE,
5078 NETLINK_CB(in_skb).portid,
5079 nlh->nlmsg_seq, 0);
5080 } else {
5081 err = -ENETUNREACH;
5082 }
David Aherna68886a2018-04-20 15:38:02 -07005083 rcu_read_unlock();
5084
Linus Torvalds1da177e2005-04-16 15:20:36 -07005085 if (err < 0) {
Thomas Grafab364a62006-08-22 00:01:47 -07005086 kfree_skb(skb);
5087 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005088 }
5089
Eric W. Biederman15e47302012-09-07 20:12:54 +00005090 err = rtnl_unicast(skb, net, NETLINK_CB(in_skb).portid);
Thomas Grafab364a62006-08-22 00:01:47 -07005091errout:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005092 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005093}
5094
David Ahern8d1c8022018-04-17 17:33:26 -07005095void inet6_rt_notify(int event, struct fib6_info *rt, struct nl_info *info,
Roopa Prabhu37a1d362015-09-13 10:18:33 -07005096 unsigned int nlm_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005097{
5098 struct sk_buff *skb;
Daniel Lezcano55786892008-03-04 13:47:47 -08005099 struct net *net = info->nl_net;
Denis V. Lunev528c4ce2007-12-13 09:45:12 -08005100 u32 seq;
5101 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005102
Denis V. Lunev528c4ce2007-12-13 09:45:12 -08005103 err = -ENOBUFS;
David S. Miller38308472011-12-03 18:02:47 -05005104 seq = info->nlh ? info->nlh->nlmsg_seq : 0;
Thomas Graf86872cb2006-08-22 00:01:08 -07005105
Roopa Prabhu19e42e42015-07-21 10:43:48 +02005106 skb = nlmsg_new(rt6_nlmsg_size(rt), gfp_any());
David S. Miller38308472011-12-03 18:02:47 -05005107 if (!skb)
Thomas Graf21713eb2006-08-15 00:35:24 -07005108 goto errout;
5109
David Ahernd4ead6b2018-04-17 17:33:16 -07005110 err = rt6_fill_node(net, skb, rt, NULL, NULL, NULL, 0,
5111 event, info->portid, seq, nlm_flags);
Patrick McHardy26932562007-01-31 23:16:40 -08005112 if (err < 0) {
5113 /* -EMSGSIZE implies BUG in rt6_nlmsg_size() */
5114 WARN_ON(err == -EMSGSIZE);
5115 kfree_skb(skb);
5116 goto errout;
5117 }
Eric W. Biederman15e47302012-09-07 20:12:54 +00005118 rtnl_notify(skb, net, info->portid, RTNLGRP_IPV6_ROUTE,
Pablo Neira Ayuso1ce85fe2009-02-24 23:18:28 -08005119 info->nlh, gfp_any());
5120 return;
Thomas Graf21713eb2006-08-15 00:35:24 -07005121errout:
5122 if (err < 0)
Daniel Lezcano55786892008-03-04 13:47:47 -08005123 rtnl_set_sk_err(net, RTNLGRP_IPV6_ROUTE, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005124}
5125
Daniel Lezcano8ed67782008-03-04 13:48:30 -08005126static int ip6_route_dev_notify(struct notifier_block *this,
Jiri Pirko351638e2013-05-28 01:30:21 +00005127 unsigned long event, void *ptr)
Daniel Lezcano8ed67782008-03-04 13:48:30 -08005128{
Jiri Pirko351638e2013-05-28 01:30:21 +00005129 struct net_device *dev = netdev_notifier_info_to_dev(ptr);
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09005130 struct net *net = dev_net(dev);
Daniel Lezcano8ed67782008-03-04 13:48:30 -08005131
WANG Cong242d3a42017-05-08 10:12:13 -07005132 if (!(dev->flags & IFF_LOOPBACK))
5133 return NOTIFY_OK;
5134
5135 if (event == NETDEV_REGISTER) {
David Ahernad1601a2019-03-27 20:53:56 -07005136 net->ipv6.fib6_null_entry->fib6_nh.fib_nh_dev = dev;
Changli Gaod8d1f302010-06-10 23:31:35 -07005137 net->ipv6.ip6_null_entry->dst.dev = dev;
Daniel Lezcano8ed67782008-03-04 13:48:30 -08005138 net->ipv6.ip6_null_entry->rt6i_idev = in6_dev_get(dev);
5139#ifdef CONFIG_IPV6_MULTIPLE_TABLES
Changli Gaod8d1f302010-06-10 23:31:35 -07005140 net->ipv6.ip6_prohibit_entry->dst.dev = dev;
Daniel Lezcano8ed67782008-03-04 13:48:30 -08005141 net->ipv6.ip6_prohibit_entry->rt6i_idev = in6_dev_get(dev);
Changli Gaod8d1f302010-06-10 23:31:35 -07005142 net->ipv6.ip6_blk_hole_entry->dst.dev = dev;
Daniel Lezcano8ed67782008-03-04 13:48:30 -08005143 net->ipv6.ip6_blk_hole_entry->rt6i_idev = in6_dev_get(dev);
5144#endif
WANG Cong76da0702017-06-20 11:42:27 -07005145 } else if (event == NETDEV_UNREGISTER &&
5146 dev->reg_state != NETREG_UNREGISTERED) {
5147 /* NETDEV_UNREGISTER could be fired for multiple times by
5148 * netdev_wait_allrefs(). Make sure we only call this once.
5149 */
Eric Dumazet12d94a82017-08-15 04:09:51 -07005150 in6_dev_put_clear(&net->ipv6.ip6_null_entry->rt6i_idev);
WANG Cong242d3a42017-05-08 10:12:13 -07005151#ifdef CONFIG_IPV6_MULTIPLE_TABLES
Eric Dumazet12d94a82017-08-15 04:09:51 -07005152 in6_dev_put_clear(&net->ipv6.ip6_prohibit_entry->rt6i_idev);
5153 in6_dev_put_clear(&net->ipv6.ip6_blk_hole_entry->rt6i_idev);
WANG Cong242d3a42017-05-08 10:12:13 -07005154#endif
Daniel Lezcano8ed67782008-03-04 13:48:30 -08005155 }
5156
5157 return NOTIFY_OK;
5158}
5159
Linus Torvalds1da177e2005-04-16 15:20:36 -07005160/*
5161 * /proc
5162 */
5163
5164#ifdef CONFIG_PROC_FS
Linus Torvalds1da177e2005-04-16 15:20:36 -07005165static int rt6_stats_seq_show(struct seq_file *seq, void *v)
5166{
Daniel Lezcano69ddb802008-03-04 13:46:23 -08005167 struct net *net = (struct net *)seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005168 seq_printf(seq, "%04x %04x %04x %04x %04x %04x %04x\n",
Daniel Lezcano69ddb802008-03-04 13:46:23 -08005169 net->ipv6.rt6_stats->fib_nodes,
5170 net->ipv6.rt6_stats->fib_route_nodes,
Wei Wang81eb8442017-10-06 12:06:11 -07005171 atomic_read(&net->ipv6.rt6_stats->fib_rt_alloc),
Daniel Lezcano69ddb802008-03-04 13:46:23 -08005172 net->ipv6.rt6_stats->fib_rt_entries,
5173 net->ipv6.rt6_stats->fib_rt_cache,
Eric Dumazetfc66f952010-10-08 06:37:34 +00005174 dst_entries_get_slow(&net->ipv6.ip6_dst_ops),
Daniel Lezcano69ddb802008-03-04 13:46:23 -08005175 net->ipv6.rt6_stats->fib_discarded_routes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005176
5177 return 0;
5178}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005179#endif /* CONFIG_PROC_FS */
5180
5181#ifdef CONFIG_SYSCTL
5182
Linus Torvalds1da177e2005-04-16 15:20:36 -07005183static
Joe Perchesfe2c6332013-06-11 23:04:25 -07005184int ipv6_sysctl_rtcache_flush(struct ctl_table *ctl, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005185 void __user *buffer, size_t *lenp, loff_t *ppos)
5186{
Lucian Adrian Grijincuc486da32011-02-24 19:48:03 +00005187 struct net *net;
5188 int delay;
Aditya Pakkif0fb9b22018-12-24 10:30:17 -06005189 int ret;
Lucian Adrian Grijincuc486da32011-02-24 19:48:03 +00005190 if (!write)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005191 return -EINVAL;
Lucian Adrian Grijincuc486da32011-02-24 19:48:03 +00005192
5193 net = (struct net *)ctl->extra1;
5194 delay = net->ipv6.sysctl.flush_delay;
Aditya Pakkif0fb9b22018-12-24 10:30:17 -06005195 ret = proc_dointvec(ctl, write, buffer, lenp, ppos);
5196 if (ret)
5197 return ret;
5198
Michal Kubeček2ac3ac82013-08-01 10:04:14 +02005199 fib6_run_gc(delay <= 0 ? 0 : (unsigned long)delay, net, delay > 0);
Lucian Adrian Grijincuc486da32011-02-24 19:48:03 +00005200 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005201}
5202
David Ahern7c6bb7d2018-10-11 20:17:21 -07005203static int zero;
5204static int one = 1;
5205
David Aherned792e22018-10-08 14:06:34 -07005206static struct ctl_table ipv6_route_table_template[] = {
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09005207 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005208 .procname = "flush",
Daniel Lezcano49905092008-01-10 03:01:01 -08005209 .data = &init_net.ipv6.sysctl.flush_delay,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005210 .maxlen = sizeof(int),
Dave Jones89c8b3a12005-04-28 12:11:49 -07005211 .mode = 0200,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08005212 .proc_handler = ipv6_sysctl_rtcache_flush
Linus Torvalds1da177e2005-04-16 15:20:36 -07005213 },
5214 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005215 .procname = "gc_thresh",
Daniel Lezcano9a7ec3a2008-03-04 13:48:53 -08005216 .data = &ip6_dst_ops_template.gc_thresh,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005217 .maxlen = sizeof(int),
5218 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08005219 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005220 },
5221 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005222 .procname = "max_size",
Daniel Lezcano49905092008-01-10 03:01:01 -08005223 .data = &init_net.ipv6.sysctl.ip6_rt_max_size,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005224 .maxlen = sizeof(int),
5225 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08005226 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005227 },
5228 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005229 .procname = "gc_min_interval",
Daniel Lezcano49905092008-01-10 03:01:01 -08005230 .data = &init_net.ipv6.sysctl.ip6_rt_gc_min_interval,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005231 .maxlen = sizeof(int),
5232 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08005233 .proc_handler = proc_dointvec_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005234 },
5235 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005236 .procname = "gc_timeout",
Daniel Lezcano49905092008-01-10 03:01:01 -08005237 .data = &init_net.ipv6.sysctl.ip6_rt_gc_timeout,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005238 .maxlen = sizeof(int),
5239 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08005240 .proc_handler = proc_dointvec_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005241 },
5242 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005243 .procname = "gc_interval",
Daniel Lezcano49905092008-01-10 03:01:01 -08005244 .data = &init_net.ipv6.sysctl.ip6_rt_gc_interval,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005245 .maxlen = sizeof(int),
5246 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08005247 .proc_handler = proc_dointvec_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005248 },
5249 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005250 .procname = "gc_elasticity",
Daniel Lezcano49905092008-01-10 03:01:01 -08005251 .data = &init_net.ipv6.sysctl.ip6_rt_gc_elasticity,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005252 .maxlen = sizeof(int),
5253 .mode = 0644,
Min Zhangf3d3f612010-08-14 22:42:51 -07005254 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005255 },
5256 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005257 .procname = "mtu_expires",
Daniel Lezcano49905092008-01-10 03:01:01 -08005258 .data = &init_net.ipv6.sysctl.ip6_rt_mtu_expires,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005259 .maxlen = sizeof(int),
5260 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08005261 .proc_handler = proc_dointvec_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005262 },
5263 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005264 .procname = "min_adv_mss",
Daniel Lezcano49905092008-01-10 03:01:01 -08005265 .data = &init_net.ipv6.sysctl.ip6_rt_min_advmss,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005266 .maxlen = sizeof(int),
5267 .mode = 0644,
Min Zhangf3d3f612010-08-14 22:42:51 -07005268 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005269 },
5270 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005271 .procname = "gc_min_interval_ms",
Daniel Lezcano49905092008-01-10 03:01:01 -08005272 .data = &init_net.ipv6.sysctl.ip6_rt_gc_min_interval,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005273 .maxlen = sizeof(int),
5274 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08005275 .proc_handler = proc_dointvec_ms_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005276 },
David Ahern7c6bb7d2018-10-11 20:17:21 -07005277 {
5278 .procname = "skip_notify_on_dev_down",
5279 .data = &init_net.ipv6.sysctl.skip_notify_on_dev_down,
5280 .maxlen = sizeof(int),
5281 .mode = 0644,
5282 .proc_handler = proc_dointvec,
5283 .extra1 = &zero,
5284 .extra2 = &one,
5285 },
Eric W. Biedermanf8572d82009-11-05 13:32:03 -08005286 { }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005287};
5288
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00005289struct ctl_table * __net_init ipv6_route_sysctl_init(struct net *net)
Daniel Lezcano760f2d02008-01-10 02:53:43 -08005290{
5291 struct ctl_table *table;
5292
5293 table = kmemdup(ipv6_route_table_template,
5294 sizeof(ipv6_route_table_template),
5295 GFP_KERNEL);
YOSHIFUJI Hideaki5ee09102008-02-28 00:24:28 +09005296
5297 if (table) {
5298 table[0].data = &net->ipv6.sysctl.flush_delay;
Lucian Adrian Grijincuc486da32011-02-24 19:48:03 +00005299 table[0].extra1 = net;
Alexey Dobriyan86393e52009-08-29 01:34:49 +00005300 table[1].data = &net->ipv6.ip6_dst_ops.gc_thresh;
YOSHIFUJI Hideaki5ee09102008-02-28 00:24:28 +09005301 table[2].data = &net->ipv6.sysctl.ip6_rt_max_size;
5302 table[3].data = &net->ipv6.sysctl.ip6_rt_gc_min_interval;
5303 table[4].data = &net->ipv6.sysctl.ip6_rt_gc_timeout;
5304 table[5].data = &net->ipv6.sysctl.ip6_rt_gc_interval;
5305 table[6].data = &net->ipv6.sysctl.ip6_rt_gc_elasticity;
5306 table[7].data = &net->ipv6.sysctl.ip6_rt_mtu_expires;
5307 table[8].data = &net->ipv6.sysctl.ip6_rt_min_advmss;
Alexey Dobriyan9c69fab2009-12-18 20:11:03 -08005308 table[9].data = &net->ipv6.sysctl.ip6_rt_gc_min_interval;
David Ahern7c6bb7d2018-10-11 20:17:21 -07005309 table[10].data = &net->ipv6.sysctl.skip_notify_on_dev_down;
Eric W. Biederman464dc802012-11-16 03:02:59 +00005310
5311 /* Don't export sysctls to unprivileged users */
5312 if (net->user_ns != &init_user_ns)
5313 table[0].procname = NULL;
YOSHIFUJI Hideaki5ee09102008-02-28 00:24:28 +09005314 }
5315
Daniel Lezcano760f2d02008-01-10 02:53:43 -08005316 return table;
5317}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005318#endif
5319
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00005320static int __net_init ip6_route_net_init(struct net *net)
Daniel Lezcanocdb18762008-03-04 13:45:33 -08005321{
Pavel Emelyanov633d424b2008-04-21 14:25:23 -07005322 int ret = -ENOMEM;
Daniel Lezcano8ed67782008-03-04 13:48:30 -08005323
Alexey Dobriyan86393e52009-08-29 01:34:49 +00005324 memcpy(&net->ipv6.ip6_dst_ops, &ip6_dst_ops_template,
5325 sizeof(net->ipv6.ip6_dst_ops));
Benjamin Theryf2fc6a52008-03-04 13:49:23 -08005326
Eric Dumazetfc66f952010-10-08 06:37:34 +00005327 if (dst_entries_init(&net->ipv6.ip6_dst_ops) < 0)
5328 goto out_ip6_dst_ops;
5329
David Ahern421842e2018-04-17 17:33:18 -07005330 net->ipv6.fib6_null_entry = kmemdup(&fib6_null_entry_template,
5331 sizeof(*net->ipv6.fib6_null_entry),
5332 GFP_KERNEL);
5333 if (!net->ipv6.fib6_null_entry)
5334 goto out_ip6_dst_entries;
5335
Daniel Lezcano8ed67782008-03-04 13:48:30 -08005336 net->ipv6.ip6_null_entry = kmemdup(&ip6_null_entry_template,
5337 sizeof(*net->ipv6.ip6_null_entry),
5338 GFP_KERNEL);
5339 if (!net->ipv6.ip6_null_entry)
David Ahern421842e2018-04-17 17:33:18 -07005340 goto out_fib6_null_entry;
Changli Gaod8d1f302010-06-10 23:31:35 -07005341 net->ipv6.ip6_null_entry->dst.ops = &net->ipv6.ip6_dst_ops;
David S. Miller62fa8a82011-01-26 20:51:05 -08005342 dst_init_metrics(&net->ipv6.ip6_null_entry->dst,
5343 ip6_template_metrics, true);
Daniel Lezcano8ed67782008-03-04 13:48:30 -08005344
5345#ifdef CONFIG_IPV6_MULTIPLE_TABLES
Vincent Bernatfeca7d82017-08-08 20:23:49 +02005346 net->ipv6.fib6_has_custom_rules = false;
Daniel Lezcano8ed67782008-03-04 13:48:30 -08005347 net->ipv6.ip6_prohibit_entry = kmemdup(&ip6_prohibit_entry_template,
5348 sizeof(*net->ipv6.ip6_prohibit_entry),
5349 GFP_KERNEL);
Peter Zijlstra68fffc62008-10-07 14:12:10 -07005350 if (!net->ipv6.ip6_prohibit_entry)
5351 goto out_ip6_null_entry;
Changli Gaod8d1f302010-06-10 23:31:35 -07005352 net->ipv6.ip6_prohibit_entry->dst.ops = &net->ipv6.ip6_dst_ops;
David S. Miller62fa8a82011-01-26 20:51:05 -08005353 dst_init_metrics(&net->ipv6.ip6_prohibit_entry->dst,
5354 ip6_template_metrics, true);
Daniel Lezcano8ed67782008-03-04 13:48:30 -08005355
5356 net->ipv6.ip6_blk_hole_entry = kmemdup(&ip6_blk_hole_entry_template,
5357 sizeof(*net->ipv6.ip6_blk_hole_entry),
5358 GFP_KERNEL);
Peter Zijlstra68fffc62008-10-07 14:12:10 -07005359 if (!net->ipv6.ip6_blk_hole_entry)
5360 goto out_ip6_prohibit_entry;
Changli Gaod8d1f302010-06-10 23:31:35 -07005361 net->ipv6.ip6_blk_hole_entry->dst.ops = &net->ipv6.ip6_dst_ops;
David S. Miller62fa8a82011-01-26 20:51:05 -08005362 dst_init_metrics(&net->ipv6.ip6_blk_hole_entry->dst,
5363 ip6_template_metrics, true);
Daniel Lezcano8ed67782008-03-04 13:48:30 -08005364#endif
5365
Peter Zijlstrab339a47c2008-10-07 14:15:00 -07005366 net->ipv6.sysctl.flush_delay = 0;
5367 net->ipv6.sysctl.ip6_rt_max_size = 4096;
5368 net->ipv6.sysctl.ip6_rt_gc_min_interval = HZ / 2;
5369 net->ipv6.sysctl.ip6_rt_gc_timeout = 60*HZ;
5370 net->ipv6.sysctl.ip6_rt_gc_interval = 30*HZ;
5371 net->ipv6.sysctl.ip6_rt_gc_elasticity = 9;
5372 net->ipv6.sysctl.ip6_rt_mtu_expires = 10*60*HZ;
5373 net->ipv6.sysctl.ip6_rt_min_advmss = IPV6_MIN_MTU - 20 - 40;
David Ahern7c6bb7d2018-10-11 20:17:21 -07005374 net->ipv6.sysctl.skip_notify_on_dev_down = 0;
Peter Zijlstrab339a47c2008-10-07 14:15:00 -07005375
Benjamin Thery6891a342008-03-04 13:49:47 -08005376 net->ipv6.ip6_rt_gc_expire = 30*HZ;
5377
Daniel Lezcano8ed67782008-03-04 13:48:30 -08005378 ret = 0;
5379out:
5380 return ret;
Benjamin Theryf2fc6a52008-03-04 13:49:23 -08005381
Peter Zijlstra68fffc62008-10-07 14:12:10 -07005382#ifdef CONFIG_IPV6_MULTIPLE_TABLES
5383out_ip6_prohibit_entry:
5384 kfree(net->ipv6.ip6_prohibit_entry);
5385out_ip6_null_entry:
5386 kfree(net->ipv6.ip6_null_entry);
5387#endif
David Ahern421842e2018-04-17 17:33:18 -07005388out_fib6_null_entry:
5389 kfree(net->ipv6.fib6_null_entry);
Eric Dumazetfc66f952010-10-08 06:37:34 +00005390out_ip6_dst_entries:
5391 dst_entries_destroy(&net->ipv6.ip6_dst_ops);
Benjamin Theryf2fc6a52008-03-04 13:49:23 -08005392out_ip6_dst_ops:
Benjamin Theryf2fc6a52008-03-04 13:49:23 -08005393 goto out;
Daniel Lezcanocdb18762008-03-04 13:45:33 -08005394}
5395
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00005396static void __net_exit ip6_route_net_exit(struct net *net)
Daniel Lezcanocdb18762008-03-04 13:45:33 -08005397{
David Ahern421842e2018-04-17 17:33:18 -07005398 kfree(net->ipv6.fib6_null_entry);
Daniel Lezcano8ed67782008-03-04 13:48:30 -08005399 kfree(net->ipv6.ip6_null_entry);
5400#ifdef CONFIG_IPV6_MULTIPLE_TABLES
5401 kfree(net->ipv6.ip6_prohibit_entry);
5402 kfree(net->ipv6.ip6_blk_hole_entry);
5403#endif
Xiaotian Feng41bb78b2010-11-02 16:11:05 +00005404 dst_entries_destroy(&net->ipv6.ip6_dst_ops);
Daniel Lezcanocdb18762008-03-04 13:45:33 -08005405}
5406
Thomas Grafd1896342012-06-18 12:08:33 +00005407static int __net_init ip6_route_net_init_late(struct net *net)
5408{
5409#ifdef CONFIG_PROC_FS
Christoph Hellwigc3506372018-04-10 19:42:55 +02005410 proc_create_net("ipv6_route", 0, net->proc_net, &ipv6_route_seq_ops,
5411 sizeof(struct ipv6_route_iter));
Christoph Hellwig3617d942018-04-13 20:38:35 +02005412 proc_create_net_single("rt6_stats", 0444, net->proc_net,
5413 rt6_stats_seq_show, NULL);
Thomas Grafd1896342012-06-18 12:08:33 +00005414#endif
5415 return 0;
5416}
5417
5418static void __net_exit ip6_route_net_exit_late(struct net *net)
5419{
5420#ifdef CONFIG_PROC_FS
Gao fengece31ff2013-02-18 01:34:56 +00005421 remove_proc_entry("ipv6_route", net->proc_net);
5422 remove_proc_entry("rt6_stats", net->proc_net);
Thomas Grafd1896342012-06-18 12:08:33 +00005423#endif
5424}
5425
Daniel Lezcanocdb18762008-03-04 13:45:33 -08005426static struct pernet_operations ip6_route_net_ops = {
5427 .init = ip6_route_net_init,
5428 .exit = ip6_route_net_exit,
5429};
5430
David S. Millerc3426b42012-06-09 16:27:05 -07005431static int __net_init ipv6_inetpeer_init(struct net *net)
5432{
5433 struct inet_peer_base *bp = kmalloc(sizeof(*bp), GFP_KERNEL);
5434
5435 if (!bp)
5436 return -ENOMEM;
5437 inet_peer_base_init(bp);
5438 net->ipv6.peers = bp;
5439 return 0;
5440}
5441
5442static void __net_exit ipv6_inetpeer_exit(struct net *net)
5443{
5444 struct inet_peer_base *bp = net->ipv6.peers;
5445
5446 net->ipv6.peers = NULL;
David S. Miller56a6b242012-06-09 16:32:41 -07005447 inetpeer_invalidate_tree(bp);
David S. Millerc3426b42012-06-09 16:27:05 -07005448 kfree(bp);
5449}
5450
David S. Miller2b823f72012-06-09 19:00:16 -07005451static struct pernet_operations ipv6_inetpeer_ops = {
David S. Millerc3426b42012-06-09 16:27:05 -07005452 .init = ipv6_inetpeer_init,
5453 .exit = ipv6_inetpeer_exit,
5454};
5455
Thomas Grafd1896342012-06-18 12:08:33 +00005456static struct pernet_operations ip6_route_net_late_ops = {
5457 .init = ip6_route_net_init_late,
5458 .exit = ip6_route_net_exit_late,
5459};
5460
Daniel Lezcano8ed67782008-03-04 13:48:30 -08005461static struct notifier_block ip6_route_dev_notifier = {
5462 .notifier_call = ip6_route_dev_notify,
WANG Cong242d3a42017-05-08 10:12:13 -07005463 .priority = ADDRCONF_NOTIFY_PRIORITY - 10,
Daniel Lezcano8ed67782008-03-04 13:48:30 -08005464};
5465
WANG Cong2f460932017-05-03 22:07:31 -07005466void __init ip6_route_init_special_entries(void)
5467{
5468 /* Registering of the loopback is done before this portion of code,
5469 * the loopback reference in rt6_info will not be taken, do it
5470 * manually for init_net */
David Ahernad1601a2019-03-27 20:53:56 -07005471 init_net.ipv6.fib6_null_entry->fib6_nh.fib_nh_dev = init_net.loopback_dev;
WANG Cong2f460932017-05-03 22:07:31 -07005472 init_net.ipv6.ip6_null_entry->dst.dev = init_net.loopback_dev;
5473 init_net.ipv6.ip6_null_entry->rt6i_idev = in6_dev_get(init_net.loopback_dev);
5474 #ifdef CONFIG_IPV6_MULTIPLE_TABLES
5475 init_net.ipv6.ip6_prohibit_entry->dst.dev = init_net.loopback_dev;
5476 init_net.ipv6.ip6_prohibit_entry->rt6i_idev = in6_dev_get(init_net.loopback_dev);
5477 init_net.ipv6.ip6_blk_hole_entry->dst.dev = init_net.loopback_dev;
5478 init_net.ipv6.ip6_blk_hole_entry->rt6i_idev = in6_dev_get(init_net.loopback_dev);
5479 #endif
5480}
5481
Daniel Lezcano433d49c2007-12-07 00:43:48 -08005482int __init ip6_route_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005483{
Daniel Lezcano433d49c2007-12-07 00:43:48 -08005484 int ret;
Martin KaFai Lau8d0b94a2015-05-22 20:56:04 -07005485 int cpu;
Daniel Lezcano433d49c2007-12-07 00:43:48 -08005486
Daniel Lezcano9a7ec3a2008-03-04 13:48:53 -08005487 ret = -ENOMEM;
5488 ip6_dst_ops_template.kmem_cachep =
5489 kmem_cache_create("ip6_dst_cache", sizeof(struct rt6_info), 0,
5490 SLAB_HWCACHE_ALIGN, NULL);
5491 if (!ip6_dst_ops_template.kmem_cachep)
Fernando Carrijoc19a28e2009-01-07 18:09:08 -08005492 goto out;
David S. Miller14e50e52007-05-24 18:17:54 -07005493
Eric Dumazetfc66f952010-10-08 06:37:34 +00005494 ret = dst_entries_init(&ip6_dst_blackhole_ops);
Daniel Lezcano8ed67782008-03-04 13:48:30 -08005495 if (ret)
Daniel Lezcanobdb32892008-03-04 13:48:10 -08005496 goto out_kmem_cache;
Daniel Lezcanobdb32892008-03-04 13:48:10 -08005497
David S. Millerc3426b42012-06-09 16:27:05 -07005498 ret = register_pernet_subsys(&ipv6_inetpeer_ops);
5499 if (ret)
David S. Millere8803b62012-06-16 01:12:19 -07005500 goto out_dst_entries;
Thomas Graf2a0c4512012-06-14 23:00:17 +00005501
David S. Miller7e52b332012-06-15 15:51:55 -07005502 ret = register_pernet_subsys(&ip6_route_net_ops);
5503 if (ret)
5504 goto out_register_inetpeer;
David S. Millerc3426b42012-06-09 16:27:05 -07005505
Arnaud Ebalard5dc121e2008-10-01 02:37:56 -07005506 ip6_dst_blackhole_ops.kmem_cachep = ip6_dst_ops_template.kmem_cachep;
5507
David S. Millere8803b62012-06-16 01:12:19 -07005508 ret = fib6_init();
Daniel Lezcano433d49c2007-12-07 00:43:48 -08005509 if (ret)
Daniel Lezcano8ed67782008-03-04 13:48:30 -08005510 goto out_register_subsys;
Daniel Lezcano433d49c2007-12-07 00:43:48 -08005511
Daniel Lezcano433d49c2007-12-07 00:43:48 -08005512 ret = xfrm6_init();
5513 if (ret)
David S. Millere8803b62012-06-16 01:12:19 -07005514 goto out_fib6_init;
Daniel Lezcanoc35b7e72007-12-08 00:14:11 -08005515
Daniel Lezcano433d49c2007-12-07 00:43:48 -08005516 ret = fib6_rules_init();
5517 if (ret)
5518 goto xfrm6_init;
Daniel Lezcano7e5449c2007-12-08 00:14:54 -08005519
Thomas Grafd1896342012-06-18 12:08:33 +00005520 ret = register_pernet_subsys(&ip6_route_net_late_ops);
5521 if (ret)
5522 goto fib6_rules_init;
5523
Florian Westphal16feebc2017-12-02 21:44:08 +01005524 ret = rtnl_register_module(THIS_MODULE, PF_INET6, RTM_NEWROUTE,
5525 inet6_rtm_newroute, NULL, 0);
5526 if (ret < 0)
5527 goto out_register_late_subsys;
5528
5529 ret = rtnl_register_module(THIS_MODULE, PF_INET6, RTM_DELROUTE,
5530 inet6_rtm_delroute, NULL, 0);
5531 if (ret < 0)
5532 goto out_register_late_subsys;
5533
5534 ret = rtnl_register_module(THIS_MODULE, PF_INET6, RTM_GETROUTE,
5535 inet6_rtm_getroute, NULL,
5536 RTNL_FLAG_DOIT_UNLOCKED);
5537 if (ret < 0)
Thomas Grafd1896342012-06-18 12:08:33 +00005538 goto out_register_late_subsys;
Daniel Lezcano433d49c2007-12-07 00:43:48 -08005539
Daniel Lezcano8ed67782008-03-04 13:48:30 -08005540 ret = register_netdevice_notifier(&ip6_route_dev_notifier);
Daniel Lezcanocdb18762008-03-04 13:45:33 -08005541 if (ret)
Thomas Grafd1896342012-06-18 12:08:33 +00005542 goto out_register_late_subsys;
Daniel Lezcano8ed67782008-03-04 13:48:30 -08005543
Martin KaFai Lau8d0b94a2015-05-22 20:56:04 -07005544 for_each_possible_cpu(cpu) {
5545 struct uncached_list *ul = per_cpu_ptr(&rt6_uncached_list, cpu);
5546
5547 INIT_LIST_HEAD(&ul->head);
5548 spin_lock_init(&ul->lock);
5549 }
5550
Daniel Lezcano433d49c2007-12-07 00:43:48 -08005551out:
5552 return ret;
5553
Thomas Grafd1896342012-06-18 12:08:33 +00005554out_register_late_subsys:
Florian Westphal16feebc2017-12-02 21:44:08 +01005555 rtnl_unregister_all(PF_INET6);
Thomas Grafd1896342012-06-18 12:08:33 +00005556 unregister_pernet_subsys(&ip6_route_net_late_ops);
Daniel Lezcano433d49c2007-12-07 00:43:48 -08005557fib6_rules_init:
Daniel Lezcano433d49c2007-12-07 00:43:48 -08005558 fib6_rules_cleanup();
5559xfrm6_init:
Daniel Lezcano433d49c2007-12-07 00:43:48 -08005560 xfrm6_fini();
Thomas Graf2a0c4512012-06-14 23:00:17 +00005561out_fib6_init:
5562 fib6_gc_cleanup();
Daniel Lezcano8ed67782008-03-04 13:48:30 -08005563out_register_subsys:
5564 unregister_pernet_subsys(&ip6_route_net_ops);
David S. Miller7e52b332012-06-15 15:51:55 -07005565out_register_inetpeer:
5566 unregister_pernet_subsys(&ipv6_inetpeer_ops);
Eric Dumazetfc66f952010-10-08 06:37:34 +00005567out_dst_entries:
5568 dst_entries_destroy(&ip6_dst_blackhole_ops);
Daniel Lezcano433d49c2007-12-07 00:43:48 -08005569out_kmem_cache:
Benjamin Theryf2fc6a52008-03-04 13:49:23 -08005570 kmem_cache_destroy(ip6_dst_ops_template.kmem_cachep);
Daniel Lezcano433d49c2007-12-07 00:43:48 -08005571 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005572}
5573
5574void ip6_route_cleanup(void)
5575{
Daniel Lezcano8ed67782008-03-04 13:48:30 -08005576 unregister_netdevice_notifier(&ip6_route_dev_notifier);
Thomas Grafd1896342012-06-18 12:08:33 +00005577 unregister_pernet_subsys(&ip6_route_net_late_ops);
Thomas Graf101367c2006-08-04 03:39:02 -07005578 fib6_rules_cleanup();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005579 xfrm6_fini();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005580 fib6_gc_cleanup();
David S. Millerc3426b42012-06-09 16:27:05 -07005581 unregister_pernet_subsys(&ipv6_inetpeer_ops);
Daniel Lezcano8ed67782008-03-04 13:48:30 -08005582 unregister_pernet_subsys(&ip6_route_net_ops);
Xiaotian Feng41bb78b2010-11-02 16:11:05 +00005583 dst_entries_destroy(&ip6_dst_blackhole_ops);
Benjamin Theryf2fc6a52008-03-04 13:49:23 -08005584 kmem_cache_destroy(ip6_dst_ops_template.kmem_cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005585}