blob: 2ccf939e1a204f959554238753a84cbc2bd04726 [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>
Nicolas Dichtel51ebd312012-10-22 03:42:09 +000062#include <net/nexthop.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>
David Ahernb8115802015-11-19 12:24:22 -080066#include <trace/events/fib6.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070067
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080068#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070069
70#ifdef CONFIG_SYSCTL
71#include <linux/sysctl.h>
72#endif
73
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +020074enum rt6_nud_state {
Jiri Benc7e980562013-12-11 13:48:20 +010075 RT6_NUD_FAIL_HARD = -3,
76 RT6_NUD_FAIL_PROBE = -2,
77 RT6_NUD_FAIL_DO_RR = -1,
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +020078 RT6_NUD_SUCCEED = 1
79};
80
Linus Torvalds1da177e2005-04-16 15:20:36 -070081static struct dst_entry *ip6_dst_check(struct dst_entry *dst, u32 cookie);
David S. Miller0dbaee32010-12-13 12:52:14 -080082static unsigned int ip6_default_advmss(const struct dst_entry *dst);
Steffen Klassertebb762f2011-11-23 02:12:51 +000083static unsigned int ip6_mtu(const struct dst_entry *dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -070084static struct dst_entry *ip6_negative_advice(struct dst_entry *);
85static void ip6_dst_destroy(struct dst_entry *);
86static void ip6_dst_ifdown(struct dst_entry *,
87 struct net_device *dev, int how);
Daniel Lezcano569d3642008-01-18 03:56:57 -080088static int ip6_dst_gc(struct dst_ops *ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -070089
90static int ip6_pkt_discard(struct sk_buff *skb);
Eric W. Biedermanede20592015-10-07 16:48:47 -050091static int ip6_pkt_discard_out(struct net *net, struct sock *sk, struct sk_buff *skb);
Kamala R7150aed2013-12-02 19:55:21 +053092static int ip6_pkt_prohibit(struct sk_buff *skb);
Eric W. Biedermanede20592015-10-07 16:48:47 -050093static int ip6_pkt_prohibit_out(struct net *net, struct sock *sk, struct sk_buff *skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -070094static void ip6_link_failure(struct sk_buff *skb);
David S. Miller6700c272012-07-17 03:29:28 -070095static void ip6_rt_update_pmtu(struct dst_entry *dst, struct sock *sk,
96 struct sk_buff *skb, u32 mtu);
97static void rt6_do_redirect(struct dst_entry *dst, struct sock *sk,
98 struct sk_buff *skb);
David Ahern8d1c8022018-04-17 17:33:26 -070099static int rt6_score_route(struct fib6_info *rt, int oif, int strict);
100static size_t rt6_nlmsg_size(struct fib6_info *rt);
David Ahernd4ead6b2018-04-17 17:33:16 -0700101static int rt6_fill_node(struct net *net, struct sk_buff *skb,
David Ahern8d1c8022018-04-17 17:33:26 -0700102 struct fib6_info *rt, struct dst_entry *dst,
David Ahernd4ead6b2018-04-17 17:33:16 -0700103 struct in6_addr *dest, struct in6_addr *src,
David Ahern16a16cd2017-02-02 12:37:11 -0800104 int iif, int type, u32 portid, u32 seq,
105 unsigned int flags);
David Ahern8d1c8022018-04-17 17:33:26 -0700106static struct rt6_info *rt6_find_cached_rt(struct fib6_info *rt,
Wei Wang35732d02017-10-06 12:05:57 -0700107 struct in6_addr *daddr,
108 struct in6_addr *saddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800110#ifdef CONFIG_IPV6_ROUTE_INFO
David Ahern8d1c8022018-04-17 17:33:26 -0700111static struct fib6_info *rt6_add_route_info(struct net *net,
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000112 const struct in6_addr *prefix, int prefixlen,
David Ahern830218c2016-10-24 10:52:35 -0700113 const struct in6_addr *gwaddr,
114 struct net_device *dev,
Eric Dumazet95c96172012-04-15 05:58:06 +0000115 unsigned int pref);
David Ahern8d1c8022018-04-17 17:33:26 -0700116static struct fib6_info *rt6_get_route_info(struct net *net,
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000117 const struct in6_addr *prefix, int prefixlen,
David Ahern830218c2016-10-24 10:52:35 -0700118 const struct in6_addr *gwaddr,
119 struct net_device *dev);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800120#endif
121
Martin KaFai Lau8d0b94a2015-05-22 20:56:04 -0700122struct uncached_list {
123 spinlock_t lock;
124 struct list_head head;
125};
126
127static DEFINE_PER_CPU_ALIGNED(struct uncached_list, rt6_uncached_list);
128
Xin Long510c3212018-02-14 19:06:02 +0800129void rt6_uncached_list_add(struct rt6_info *rt)
Martin KaFai Lau8d0b94a2015-05-22 20:56:04 -0700130{
131 struct uncached_list *ul = raw_cpu_ptr(&rt6_uncached_list);
132
Martin KaFai Lau8d0b94a2015-05-22 20:56:04 -0700133 rt->rt6i_uncached_list = ul;
134
135 spin_lock_bh(&ul->lock);
136 list_add_tail(&rt->rt6i_uncached, &ul->head);
137 spin_unlock_bh(&ul->lock);
138}
139
Xin Long510c3212018-02-14 19:06:02 +0800140void rt6_uncached_list_del(struct rt6_info *rt)
Martin KaFai Lau8d0b94a2015-05-22 20:56:04 -0700141{
142 if (!list_empty(&rt->rt6i_uncached)) {
143 struct uncached_list *ul = rt->rt6i_uncached_list;
Wei Wang81eb8442017-10-06 12:06:11 -0700144 struct net *net = dev_net(rt->dst.dev);
Martin KaFai Lau8d0b94a2015-05-22 20:56:04 -0700145
146 spin_lock_bh(&ul->lock);
147 list_del(&rt->rt6i_uncached);
Wei Wang81eb8442017-10-06 12:06:11 -0700148 atomic_dec(&net->ipv6.rt6_stats->fib_rt_uncache);
Martin KaFai Lau8d0b94a2015-05-22 20:56:04 -0700149 spin_unlock_bh(&ul->lock);
150 }
151}
152
153static void rt6_uncached_list_flush_dev(struct net *net, struct net_device *dev)
154{
155 struct net_device *loopback_dev = net->loopback_dev;
156 int cpu;
157
Eric W. Biedermane332bc62015-10-12 11:02:08 -0500158 if (dev == loopback_dev)
159 return;
160
Martin KaFai Lau8d0b94a2015-05-22 20:56:04 -0700161 for_each_possible_cpu(cpu) {
162 struct uncached_list *ul = per_cpu_ptr(&rt6_uncached_list, cpu);
163 struct rt6_info *rt;
164
165 spin_lock_bh(&ul->lock);
166 list_for_each_entry(rt, &ul->head, rt6i_uncached) {
167 struct inet6_dev *rt_idev = rt->rt6i_idev;
168 struct net_device *rt_dev = rt->dst.dev;
169
Eric W. Biedermane332bc62015-10-12 11:02:08 -0500170 if (rt_idev->dev == dev) {
Martin KaFai Lau8d0b94a2015-05-22 20:56:04 -0700171 rt->rt6i_idev = in6_dev_get(loopback_dev);
172 in6_dev_put(rt_idev);
173 }
174
Eric W. Biedermane332bc62015-10-12 11:02:08 -0500175 if (rt_dev == dev) {
Martin KaFai Lau8d0b94a2015-05-22 20:56:04 -0700176 rt->dst.dev = loopback_dev;
177 dev_hold(rt->dst.dev);
178 dev_put(rt_dev);
179 }
180 }
181 spin_unlock_bh(&ul->lock);
182 }
183}
184
David Ahernf8a1b432018-04-17 17:33:21 -0700185static inline const void *choose_neigh_daddr(const struct in6_addr *p,
David S. Millerf894cbf2012-07-02 21:52:24 -0700186 struct sk_buff *skb,
187 const void *daddr)
David S. Miller39232972012-01-26 15:22:32 -0500188{
David S. Millera7563f32012-01-26 16:29:16 -0500189 if (!ipv6_addr_any(p))
David S. Miller39232972012-01-26 15:22:32 -0500190 return (const void *) p;
David S. Millerf894cbf2012-07-02 21:52:24 -0700191 else if (skb)
192 return &ipv6_hdr(skb)->daddr;
David S. Miller39232972012-01-26 15:22:32 -0500193 return daddr;
194}
195
David Ahernf8a1b432018-04-17 17:33:21 -0700196struct neighbour *ip6_neigh_lookup(const struct in6_addr *gw,
197 struct net_device *dev,
198 struct sk_buff *skb,
199 const void *daddr)
David S. Millerd3aaeb32011-07-18 00:40:17 -0700200{
David S. Miller39232972012-01-26 15:22:32 -0500201 struct neighbour *n;
202
David Ahernf8a1b432018-04-17 17:33:21 -0700203 daddr = choose_neigh_daddr(gw, skb, daddr);
204 n = __ipv6_neigh_lookup(dev, daddr);
David S. Millerf83c7792011-12-28 15:41:23 -0500205 if (n)
206 return n;
David Ahernf8a1b432018-04-17 17:33:21 -0700207 return neigh_create(&nd_tbl, daddr, dev);
208}
209
210static struct neighbour *ip6_dst_neigh_lookup(const struct dst_entry *dst,
211 struct sk_buff *skb,
212 const void *daddr)
213{
214 const struct rt6_info *rt = container_of(dst, struct rt6_info, dst);
215
216 return ip6_neigh_lookup(&rt->rt6i_gateway, dst->dev, skb, daddr);
David S. Millerf83c7792011-12-28 15:41:23 -0500217}
218
Julian Anastasov63fca652017-02-06 23:14:15 +0200219static void ip6_confirm_neigh(const struct dst_entry *dst, const void *daddr)
220{
221 struct net_device *dev = dst->dev;
222 struct rt6_info *rt = (struct rt6_info *)dst;
223
David Ahernf8a1b432018-04-17 17:33:21 -0700224 daddr = choose_neigh_daddr(&rt->rt6i_gateway, NULL, daddr);
Julian Anastasov63fca652017-02-06 23:14:15 +0200225 if (!daddr)
226 return;
227 if (dev->flags & (IFF_NOARP | IFF_LOOPBACK))
228 return;
229 if (ipv6_addr_is_multicast((const struct in6_addr *)daddr))
230 return;
231 __ipv6_confirm_neigh(dev, daddr);
232}
233
Daniel Lezcano9a7ec3a2008-03-04 13:48:53 -0800234static struct dst_ops ip6_dst_ops_template = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 .family = AF_INET6,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 .gc = ip6_dst_gc,
237 .gc_thresh = 1024,
238 .check = ip6_dst_check,
David S. Miller0dbaee32010-12-13 12:52:14 -0800239 .default_advmss = ip6_default_advmss,
Steffen Klassertebb762f2011-11-23 02:12:51 +0000240 .mtu = ip6_mtu,
David Ahernd4ead6b2018-04-17 17:33:16 -0700241 .cow_metrics = dst_cow_metrics_generic,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 .destroy = ip6_dst_destroy,
243 .ifdown = ip6_dst_ifdown,
244 .negative_advice = ip6_negative_advice,
245 .link_failure = ip6_link_failure,
246 .update_pmtu = ip6_rt_update_pmtu,
David S. Miller6e157b62012-07-12 00:05:02 -0700247 .redirect = rt6_do_redirect,
Eric W. Biederman9f8955c2015-10-07 16:48:39 -0500248 .local_out = __ip6_local_out,
David Ahernf8a1b432018-04-17 17:33:21 -0700249 .neigh_lookup = ip6_dst_neigh_lookup,
Julian Anastasov63fca652017-02-06 23:14:15 +0200250 .confirm_neigh = ip6_confirm_neigh,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251};
252
Steffen Klassertebb762f2011-11-23 02:12:51 +0000253static unsigned int ip6_blackhole_mtu(const struct dst_entry *dst)
Roland Dreierec831ea2011-01-31 13:16:00 -0800254{
Steffen Klassert618f9bc2011-11-23 02:13:31 +0000255 unsigned int mtu = dst_metric_raw(dst, RTAX_MTU);
256
257 return mtu ? : dst->dev->mtu;
Roland Dreierec831ea2011-01-31 13:16:00 -0800258}
259
David S. Miller6700c272012-07-17 03:29:28 -0700260static void ip6_rt_blackhole_update_pmtu(struct dst_entry *dst, struct sock *sk,
261 struct sk_buff *skb, u32 mtu)
David S. Miller14e50e52007-05-24 18:17:54 -0700262{
263}
264
David S. Miller6700c272012-07-17 03:29:28 -0700265static void ip6_rt_blackhole_redirect(struct dst_entry *dst, struct sock *sk,
266 struct sk_buff *skb)
David S. Millerb587ee32012-07-12 00:39:24 -0700267{
268}
269
David S. Miller14e50e52007-05-24 18:17:54 -0700270static struct dst_ops ip6_dst_blackhole_ops = {
271 .family = AF_INET6,
David S. Miller14e50e52007-05-24 18:17:54 -0700272 .destroy = ip6_dst_destroy,
273 .check = ip6_dst_check,
Steffen Klassertebb762f2011-11-23 02:12:51 +0000274 .mtu = ip6_blackhole_mtu,
Eric Dumazet214f45c2011-02-18 11:39:01 -0800275 .default_advmss = ip6_default_advmss,
David S. Miller14e50e52007-05-24 18:17:54 -0700276 .update_pmtu = ip6_rt_blackhole_update_pmtu,
David S. Millerb587ee32012-07-12 00:39:24 -0700277 .redirect = ip6_rt_blackhole_redirect,
Martin KaFai Lau0a1f5962015-10-15 16:39:58 -0700278 .cow_metrics = dst_cow_metrics_generic,
David Ahernf8a1b432018-04-17 17:33:21 -0700279 .neigh_lookup = ip6_dst_neigh_lookup,
David S. Miller14e50e52007-05-24 18:17:54 -0700280};
281
David S. Miller62fa8a82011-01-26 20:51:05 -0800282static const u32 ip6_template_metrics[RTAX_MAX] = {
Li RongQing14edd872012-10-24 14:01:18 +0800283 [RTAX_HOPLIMIT - 1] = 0,
David S. Miller62fa8a82011-01-26 20:51:05 -0800284};
285
David Ahern8d1c8022018-04-17 17:33:26 -0700286static const struct fib6_info fib6_null_entry_template = {
David Ahern421842e2018-04-17 17:33:18 -0700287 .rt6i_flags = (RTF_REJECT | RTF_NONEXTHOP),
288 .rt6i_protocol = RTPROT_KERNEL,
289 .rt6i_metric = ~(u32)0,
290 .rt6i_ref = ATOMIC_INIT(1),
291 .fib6_type = RTN_UNREACHABLE,
292 .fib6_metrics = (struct dst_metrics *)&dst_default_metrics,
293};
294
Eric Dumazetfb0af4c2012-09-11 21:47:51 +0000295static const struct rt6_info ip6_null_entry_template = {
Changli Gaod8d1f302010-06-10 23:31:35 -0700296 .dst = {
297 .__refcnt = ATOMIC_INIT(1),
298 .__use = 1,
Nicolas Dichtel2c20cbd2012-09-10 22:09:47 +0000299 .obsolete = DST_OBSOLETE_FORCE_CHK,
Changli Gaod8d1f302010-06-10 23:31:35 -0700300 .error = -ENETUNREACH,
Changli Gaod8d1f302010-06-10 23:31:35 -0700301 .input = ip6_pkt_discard,
302 .output = ip6_pkt_discard_out,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 },
304 .rt6i_flags = (RTF_REJECT | RTF_NONEXTHOP),
Jean-Mickael Guerin4f724272009-05-20 17:38:59 -0700305 .rt6i_protocol = RTPROT_KERNEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 .rt6i_metric = ~(u32) 0,
307 .rt6i_ref = ATOMIC_INIT(1),
David Aherne8478e82018-04-17 17:33:13 -0700308 .fib6_type = RTN_UNREACHABLE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309};
310
Thomas Graf101367c2006-08-04 03:39:02 -0700311#ifdef CONFIG_IPV6_MULTIPLE_TABLES
312
Eric Dumazetfb0af4c2012-09-11 21:47:51 +0000313static const struct rt6_info ip6_prohibit_entry_template = {
Changli Gaod8d1f302010-06-10 23:31:35 -0700314 .dst = {
315 .__refcnt = ATOMIC_INIT(1),
316 .__use = 1,
Nicolas Dichtel2c20cbd2012-09-10 22:09:47 +0000317 .obsolete = DST_OBSOLETE_FORCE_CHK,
Changli Gaod8d1f302010-06-10 23:31:35 -0700318 .error = -EACCES,
Changli Gaod8d1f302010-06-10 23:31:35 -0700319 .input = ip6_pkt_prohibit,
320 .output = ip6_pkt_prohibit_out,
Thomas Graf101367c2006-08-04 03:39:02 -0700321 },
322 .rt6i_flags = (RTF_REJECT | RTF_NONEXTHOP),
Jean-Mickael Guerin4f724272009-05-20 17:38:59 -0700323 .rt6i_protocol = RTPROT_KERNEL,
Thomas Graf101367c2006-08-04 03:39:02 -0700324 .rt6i_metric = ~(u32) 0,
325 .rt6i_ref = ATOMIC_INIT(1),
David Aherne8478e82018-04-17 17:33:13 -0700326 .fib6_type = RTN_PROHIBIT,
Thomas Graf101367c2006-08-04 03:39:02 -0700327};
328
Eric Dumazetfb0af4c2012-09-11 21:47:51 +0000329static const struct rt6_info ip6_blk_hole_entry_template = {
Changli Gaod8d1f302010-06-10 23:31:35 -0700330 .dst = {
331 .__refcnt = ATOMIC_INIT(1),
332 .__use = 1,
Nicolas Dichtel2c20cbd2012-09-10 22:09:47 +0000333 .obsolete = DST_OBSOLETE_FORCE_CHK,
Changli Gaod8d1f302010-06-10 23:31:35 -0700334 .error = -EINVAL,
Changli Gaod8d1f302010-06-10 23:31:35 -0700335 .input = dst_discard,
Eric W. Biedermanede20592015-10-07 16:48:47 -0500336 .output = dst_discard_out,
Thomas Graf101367c2006-08-04 03:39:02 -0700337 },
338 .rt6i_flags = (RTF_REJECT | RTF_NONEXTHOP),
Jean-Mickael Guerin4f724272009-05-20 17:38:59 -0700339 .rt6i_protocol = RTPROT_KERNEL,
Thomas Graf101367c2006-08-04 03:39:02 -0700340 .rt6i_metric = ~(u32) 0,
341 .rt6i_ref = ATOMIC_INIT(1),
David Aherne8478e82018-04-17 17:33:13 -0700342 .fib6_type = RTN_BLACKHOLE,
Thomas Graf101367c2006-08-04 03:39:02 -0700343};
344
345#endif
346
Martin KaFai Lauebfa45f2015-10-15 16:39:57 -0700347static void rt6_info_init(struct rt6_info *rt)
348{
349 struct dst_entry *dst = &rt->dst;
350
351 memset(dst + 1, 0, sizeof(*rt) - sizeof(*dst));
352 INIT_LIST_HEAD(&rt->rt6i_siblings);
353 INIT_LIST_HEAD(&rt->rt6i_uncached);
354}
355
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356/* allocate dst with ip6_dst_ops */
David Ahern93531c62018-04-17 17:33:25 -0700357struct rt6_info *ip6_dst_alloc(struct net *net, struct net_device *dev,
358 int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359{
David S. Miller97bab732012-06-09 22:36:36 -0700360 struct rt6_info *rt = dst_alloc(&net->ipv6.ip6_dst_ops, dev,
Wei Wangb2a9c0e2017-06-17 10:42:41 -0700361 1, DST_OBSOLETE_FORCE_CHK, flags);
David S. Millercf911662011-04-28 14:31:47 -0700362
Wei Wang81eb8442017-10-06 12:06:11 -0700363 if (rt) {
Martin KaFai Lauebfa45f2015-10-15 16:39:57 -0700364 rt6_info_init(rt);
Wei Wang81eb8442017-10-06 12:06:11 -0700365 atomic_inc(&net->ipv6.rt6_stats->fib_rt_alloc);
366 }
Steffen Klassert81048912012-07-05 23:37:09 +0000367
David S. Millercf911662011-04-28 14:31:47 -0700368 return rt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369}
David Ahern9ab179d2016-04-07 11:10:06 -0700370EXPORT_SYMBOL(ip6_dst_alloc);
Martin KaFai Laud52d3992015-05-22 20:56:06 -0700371
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372static void ip6_dst_destroy(struct dst_entry *dst)
373{
374 struct rt6_info *rt = (struct rt6_info *)dst;
David Ahern8d1c8022018-04-17 17:33:26 -0700375 struct fib6_info *from = rt->from;
Martin KaFai Lau8d0b94a2015-05-22 20:56:04 -0700376 struct inet6_dev *idev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377
Martin KaFai Lau4b32b5a2015-04-28 13:03:06 -0700378 dst_destroy_metrics_generic(dst);
Martin KaFai Lau8d0b94a2015-05-22 20:56:04 -0700379 rt6_uncached_list_del(rt);
380
381 idev = rt->rt6i_idev;
David S. Miller38308472011-12-03 18:02:47 -0500382 if (idev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 rt->rt6i_idev = NULL;
384 in6_dev_put(idev);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900385 }
David Ahernd4ead6b2018-04-17 17:33:16 -0700386
David Miller3a2232e2017-11-28 15:40:40 -0500387 rt->from = NULL;
David Ahern93531c62018-04-17 17:33:25 -0700388 fib6_info_release(from);
David S. Millerb3419362010-11-30 12:27:11 -0800389}
390
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391static void ip6_dst_ifdown(struct dst_entry *dst, struct net_device *dev,
392 int how)
393{
394 struct rt6_info *rt = (struct rt6_info *)dst;
395 struct inet6_dev *idev = rt->rt6i_idev;
Denis V. Lunev5a3e55d2007-12-07 00:38:10 -0800396 struct net_device *loopback_dev =
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900397 dev_net(dev)->loopback_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398
Wei Wange5645f52017-08-14 10:44:59 -0700399 if (idev && idev->dev != loopback_dev) {
400 struct inet6_dev *loopback_idev = in6_dev_get(loopback_dev);
401 if (loopback_idev) {
402 rt->rt6i_idev = loopback_idev;
403 in6_dev_put(idev);
David S. Miller97cac082012-07-02 22:43:47 -0700404 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 }
406}
407
Martin KaFai Lau5973fb12015-11-11 11:51:07 -0800408static bool __rt6_check_expired(const struct rt6_info *rt)
409{
410 if (rt->rt6i_flags & RTF_EXPIRES)
411 return time_after(jiffies, rt->dst.expires);
412 else
413 return false;
414}
415
Eric Dumazeta50feda2012-05-18 18:57:34 +0000416static bool rt6_check_expired(const struct rt6_info *rt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417{
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 Miller3a2232e2017-11-28 15:40:40 -0500421 } else if (rt->from) {
Xin Long1e2ea8a2017-08-26 20:10:10 +0800422 return rt->dst.obsolete != DST_OBSOLETE_FORCE_CHK ||
David Ahern14895682018-04-17 17:33:17 -0700423 fib6_check_expired(rt->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 Ahern8d1c8022018-04-17 17:33:26 -0700428static struct fib6_info *rt6_multipath_select(const struct net *net,
429 struct fib6_info *match,
Nicolas Dichtel52bd4c02013-06-28 17:35:48 +0200430 struct flowi6 *fl6, int oif,
David Ahernb75cc8f2018-03-02 08:32:17 -0800431 const struct sk_buff *skb,
Nicolas Dichtel52bd4c02013-06-28 17:35:48 +0200432 int strict)
Nicolas Dichtel51ebd312012-10-22 03:42:09 +0000433{
David Ahern8d1c8022018-04-17 17:33:26 -0700434 struct fib6_info *sibling, *next_sibling;
Nicolas Dichtel51ebd312012-10-22 03:42:09 +0000435
Jakub Sitnickib673d6c2017-08-23 09:58:31 +0200436 /* We might have already computed the hash for ICMPv6 errors. In such
437 * case it will always be non-zero. Otherwise now is the time to do it.
438 */
439 if (!fl6->mp_hash)
David Ahernb4bac172018-03-02 08:32:18 -0800440 fl6->mp_hash = rt6_multipath_hash(net, fl6, skb, NULL);
Jakub Sitnickib673d6c2017-08-23 09:58:31 +0200441
David Ahern5e670d82018-04-17 17:33:14 -0700442 if (fl6->mp_hash <= atomic_read(&match->fib6_nh.nh_upper_bound))
Ido Schimmel3d709f62018-01-09 16:40:27 +0200443 return match;
Ido Schimmelbbfcd772017-11-21 09:50:12 +0200444
Ido Schimmel3d709f62018-01-09 16:40:27 +0200445 list_for_each_entry_safe(sibling, next_sibling, &match->rt6i_siblings,
446 rt6i_siblings) {
David Ahern5e670d82018-04-17 17:33:14 -0700447 int nh_upper_bound;
448
449 nh_upper_bound = atomic_read(&sibling->fib6_nh.nh_upper_bound);
450 if (fl6->mp_hash > nh_upper_bound)
Ido Schimmel3d709f62018-01-09 16:40:27 +0200451 continue;
452 if (rt6_score_route(sibling, oif, strict) < 0)
453 break;
454 match = sibling;
455 break;
456 }
457
Nicolas Dichtel51ebd312012-10-22 03:42:09 +0000458 return match;
459}
460
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461/*
Wei Wang66f5d6c2017-10-06 12:06:10 -0700462 * Route lookup. rcu_read_lock() should be held.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 */
464
David Ahern8d1c8022018-04-17 17:33:26 -0700465static inline struct fib6_info *rt6_device_match(struct net *net,
466 struct fib6_info *rt,
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000467 const struct in6_addr *saddr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 int oif,
YOSHIFUJI Hideakid4208952008-06-27 20:14:54 -0700469 int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470{
David Ahern8d1c8022018-04-17 17:33:26 -0700471 struct fib6_info *local = NULL;
472 struct fib6_info *sprt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473
David Ahern5e670d82018-04-17 17:33:14 -0700474 if (!oif && ipv6_addr_any(saddr) &&
475 !(rt->fib6_nh.nh_flags & RTNH_F_DEAD))
Ido Schimmel8067bb82018-01-07 12:45:09 +0200476 return rt;
YOSHIFUJI Hideakidd3abc42008-07-02 18:30:18 +0900477
David Miller071fb372017-11-28 15:40:15 -0500478 for (sprt = rt; sprt; sprt = rcu_dereference(sprt->rt6_next)) {
David Ahern5e670d82018-04-17 17:33:14 -0700479 const struct net_device *dev = sprt->fib6_nh.nh_dev;
YOSHIFUJI Hideakidd3abc42008-07-02 18:30:18 +0900480
David Ahern5e670d82018-04-17 17:33:14 -0700481 if (sprt->fib6_nh.nh_flags & RTNH_F_DEAD)
Ido Schimmel8067bb82018-01-07 12:45:09 +0200482 continue;
483
YOSHIFUJI Hideakidd3abc42008-07-02 18:30:18 +0900484 if (oif) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 if (dev->ifindex == oif)
486 return sprt;
487 if (dev->flags & IFF_LOOPBACK) {
David S. Miller38308472011-12-03 18:02:47 -0500488 if (!sprt->rt6i_idev ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 sprt->rt6i_idev->dev->ifindex != oif) {
David Ahern17fb0b22015-09-25 15:22:54 -0600490 if (flags & RT6_LOOKUP_F_IFACE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 continue;
David Ahern17fb0b22015-09-25 15:22:54 -0600492 if (local &&
493 local->rt6i_idev->dev->ifindex == oif)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 continue;
495 }
496 local = sprt;
497 }
YOSHIFUJI Hideakidd3abc42008-07-02 18:30:18 +0900498 } else {
499 if (ipv6_chk_addr(net, saddr, dev,
500 flags & RT6_LOOKUP_F_IFACE))
501 return sprt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 }
YOSHIFUJI Hideakidd3abc42008-07-02 18:30:18 +0900503 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504
YOSHIFUJI Hideakidd3abc42008-07-02 18:30:18 +0900505 if (oif) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 if (local)
507 return local;
508
YOSHIFUJI Hideakid4208952008-06-27 20:14:54 -0700509 if (flags & RT6_LOOKUP_F_IFACE)
David Ahern421842e2018-04-17 17:33:18 -0700510 return net->ipv6.fib6_null_entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 }
Ido Schimmel8067bb82018-01-07 12:45:09 +0200512
David Ahern421842e2018-04-17 17:33:18 -0700513 return rt->fib6_nh.nh_flags & RTNH_F_DEAD ? net->ipv6.fib6_null_entry : rt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514}
515
YOSHIFUJI Hideaki27097252006-03-20 17:05:13 -0800516#ifdef CONFIG_IPV6_ROUTER_PREF
Hannes Frederic Sowac2f17e82013-10-21 06:17:15 +0200517struct __rt6_probe_work {
518 struct work_struct work;
519 struct in6_addr target;
520 struct net_device *dev;
521};
522
523static void rt6_probe_deferred(struct work_struct *w)
524{
525 struct in6_addr mcaddr;
526 struct __rt6_probe_work *work =
527 container_of(w, struct __rt6_probe_work, work);
528
529 addrconf_addr_solict_mult(&work->target, &mcaddr);
Erik Nordmarkadc176c2016-12-02 14:00:08 -0800530 ndisc_send_ns(work->dev, &work->target, &mcaddr, NULL, 0);
Hannes Frederic Sowac2f17e82013-10-21 06:17:15 +0200531 dev_put(work->dev);
Michael Büsch662f5532015-02-08 10:14:07 +0100532 kfree(work);
Hannes Frederic Sowac2f17e82013-10-21 06:17:15 +0200533}
534
David Ahern8d1c8022018-04-17 17:33:26 -0700535static void rt6_probe(struct fib6_info *rt)
YOSHIFUJI Hideaki27097252006-03-20 17:05:13 -0800536{
Martin KaFai Lau990edb42015-07-24 09:57:42 -0700537 struct __rt6_probe_work *work;
David Ahern5e670d82018-04-17 17:33:14 -0700538 const struct in6_addr *nh_gw;
Eric Dumazetf2c31e32011-07-29 19:00:53 +0000539 struct neighbour *neigh;
David Ahern5e670d82018-04-17 17:33:14 -0700540 struct net_device *dev;
541
YOSHIFUJI Hideaki27097252006-03-20 17:05:13 -0800542 /*
543 * Okay, this does not seem to be appropriate
544 * for now, however, we need to check if it
545 * is really so; aka Router Reachability Probing.
546 *
547 * Router Reachability Probe MUST be rate-limited
548 * to no more than one per minute.
549 */
YOSHIFUJI Hideaki / 吉藤英明2152cae2013-01-17 12:53:43 +0000550 if (!rt || !(rt->rt6i_flags & RTF_GATEWAY))
Amerigo Wangfdd66812012-09-10 02:48:44 +0000551 return;
David Ahern5e670d82018-04-17 17:33:14 -0700552
553 nh_gw = &rt->fib6_nh.nh_gw;
554 dev = rt->fib6_nh.nh_dev;
YOSHIFUJI Hideaki / 吉藤英明2152cae2013-01-17 12:53:43 +0000555 rcu_read_lock_bh();
David Ahern5e670d82018-04-17 17:33:14 -0700556 neigh = __ipv6_neigh_lookup_noref(dev, nh_gw);
YOSHIFUJI Hideaki / 吉藤英明2152cae2013-01-17 12:53:43 +0000557 if (neigh) {
Martin KaFai Lau8d6c31b2015-07-24 09:57:43 -0700558 if (neigh->nud_state & NUD_VALID)
559 goto out;
560
Martin KaFai Lau990edb42015-07-24 09:57:42 -0700561 work = NULL;
YOSHIFUJI Hideaki / 吉藤英明2152cae2013-01-17 12:53:43 +0000562 write_lock(&neigh->lock);
Martin KaFai Lau990edb42015-07-24 09:57:42 -0700563 if (!(neigh->nud_state & NUD_VALID) &&
564 time_after(jiffies,
565 neigh->updated +
566 rt->rt6i_idev->cnf.rtr_probe_interval)) {
567 work = kmalloc(sizeof(*work), GFP_ATOMIC);
568 if (work)
569 __neigh_set_probe_once(neigh);
Hannes Frederic Sowac2f17e82013-10-21 06:17:15 +0200570 }
YOSHIFUJI Hideaki / 吉藤英明2152cae2013-01-17 12:53:43 +0000571 write_unlock(&neigh->lock);
Martin KaFai Lau990edb42015-07-24 09:57:42 -0700572 } else {
573 work = kmalloc(sizeof(*work), GFP_ATOMIC);
Eric Dumazetf2c31e32011-07-29 19:00:53 +0000574 }
Martin KaFai Lau990edb42015-07-24 09:57:42 -0700575
576 if (work) {
577 INIT_WORK(&work->work, rt6_probe_deferred);
David Ahern5e670d82018-04-17 17:33:14 -0700578 work->target = *nh_gw;
579 dev_hold(dev);
580 work->dev = dev;
Martin KaFai Lau990edb42015-07-24 09:57:42 -0700581 schedule_work(&work->work);
582 }
583
Martin KaFai Lau8d6c31b2015-07-24 09:57:43 -0700584out:
YOSHIFUJI Hideaki / 吉藤英明2152cae2013-01-17 12:53:43 +0000585 rcu_read_unlock_bh();
YOSHIFUJI Hideaki27097252006-03-20 17:05:13 -0800586}
587#else
David Ahern8d1c8022018-04-17 17:33:26 -0700588static inline void rt6_probe(struct fib6_info *rt)
YOSHIFUJI Hideaki27097252006-03-20 17:05:13 -0800589{
YOSHIFUJI Hideaki27097252006-03-20 17:05:13 -0800590}
591#endif
592
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593/*
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800594 * Default Router Selection (RFC 2461 6.3.6)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 */
David Ahern8d1c8022018-04-17 17:33:26 -0700596static inline int rt6_check_dev(struct fib6_info *rt, int oif)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597{
David Ahern5e670d82018-04-17 17:33:14 -0700598 const struct net_device *dev = rt->fib6_nh.nh_dev;
599
David S. Miller161980f2007-04-06 11:42:27 -0700600 if (!oif || dev->ifindex == oif)
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800601 return 2;
David S. Miller161980f2007-04-06 11:42:27 -0700602 if ((dev->flags & IFF_LOOPBACK) &&
603 rt->rt6i_idev && rt->rt6i_idev->dev->ifindex == oif)
604 return 1;
605 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606}
607
David Ahern8d1c8022018-04-17 17:33:26 -0700608static inline enum rt6_nud_state rt6_check_neigh(struct fib6_info *rt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609{
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200610 enum rt6_nud_state ret = RT6_NUD_FAIL_HARD;
David Ahern5e670d82018-04-17 17:33:14 -0700611 struct neighbour *neigh;
Eric Dumazetf2c31e32011-07-29 19:00:53 +0000612
YOSHIFUJI Hideaki4d0c5912006-05-26 13:23:41 -0700613 if (rt->rt6i_flags & RTF_NONEXTHOP ||
614 !(rt->rt6i_flags & RTF_GATEWAY))
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200615 return RT6_NUD_SUCCEED;
YOSHIFUJI Hideaki / 吉藤英明145a3622013-01-17 12:53:38 +0000616
617 rcu_read_lock_bh();
David Ahern5e670d82018-04-17 17:33:14 -0700618 neigh = __ipv6_neigh_lookup_noref(rt->fib6_nh.nh_dev,
619 &rt->fib6_nh.nh_gw);
YOSHIFUJI Hideaki / 吉藤英明145a3622013-01-17 12:53:38 +0000620 if (neigh) {
621 read_lock(&neigh->lock);
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800622 if (neigh->nud_state & NUD_VALID)
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200623 ret = RT6_NUD_SUCCEED;
YOSHIFUJI Hideaki398bcbe2008-01-19 00:35:16 -0800624#ifdef CONFIG_IPV6_ROUTER_PREF
Paul Marksa5a81f02012-12-03 10:26:54 +0000625 else if (!(neigh->nud_state & NUD_FAILED))
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200626 ret = RT6_NUD_SUCCEED;
Jiri Benc7e980562013-12-11 13:48:20 +0100627 else
628 ret = RT6_NUD_FAIL_PROBE;
YOSHIFUJI Hideaki398bcbe2008-01-19 00:35:16 -0800629#endif
YOSHIFUJI Hideaki / 吉藤英明145a3622013-01-17 12:53:38 +0000630 read_unlock(&neigh->lock);
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200631 } else {
632 ret = IS_ENABLED(CONFIG_IPV6_ROUTER_PREF) ?
Jiri Benc7e980562013-12-11 13:48:20 +0100633 RT6_NUD_SUCCEED : RT6_NUD_FAIL_DO_RR;
Paul Marksa5a81f02012-12-03 10:26:54 +0000634 }
YOSHIFUJI Hideaki / 吉藤英明145a3622013-01-17 12:53:38 +0000635 rcu_read_unlock_bh();
636
Paul Marksa5a81f02012-12-03 10:26:54 +0000637 return ret;
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800638}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639
David Ahern8d1c8022018-04-17 17:33:26 -0700640static int rt6_score_route(struct fib6_info *rt, int oif, int strict)
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800641{
Paul Marksa5a81f02012-12-03 10:26:54 +0000642 int m;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900643
YOSHIFUJI Hideaki4d0c5912006-05-26 13:23:41 -0700644 m = rt6_check_dev(rt, oif);
YOSHIFUJI Hideaki77d16f42006-08-23 17:25:05 -0700645 if (!m && (strict & RT6_LOOKUP_F_IFACE))
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200646 return RT6_NUD_FAIL_HARD;
YOSHIFUJI Hideakiebacaaa2006-03-20 17:04:53 -0800647#ifdef CONFIG_IPV6_ROUTER_PREF
648 m |= IPV6_DECODE_PREF(IPV6_EXTRACT_PREF(rt->rt6i_flags)) << 2;
649#endif
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200650 if (strict & RT6_LOOKUP_F_REACHABLE) {
651 int n = rt6_check_neigh(rt);
652 if (n < 0)
653 return n;
654 }
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800655 return m;
656}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657
David Ahern8d1c8022018-04-17 17:33:26 -0700658static struct fib6_info *find_match(struct fib6_info *rt, int oif, int strict,
659 int *mpri, struct fib6_info *match,
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200660 bool *do_rr)
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800661{
David S. Millerf11e6652007-03-24 20:36:25 -0700662 int m;
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200663 bool match_do_rr = false;
Andy Gospodarek35103d12015-08-13 10:39:01 -0400664 struct inet6_dev *idev = rt->rt6i_idev;
Andy Gospodarek35103d12015-08-13 10:39:01 -0400665
David Ahern5e670d82018-04-17 17:33:14 -0700666 if (rt->fib6_nh.nh_flags & RTNH_F_DEAD)
Ido Schimmel8067bb82018-01-07 12:45:09 +0200667 goto out;
668
Ido Schimmel14c52062018-01-07 12:45:07 +0200669 if (idev->cnf.ignore_routes_with_linkdown &&
David Ahern5e670d82018-04-17 17:33:14 -0700670 rt->fib6_nh.nh_flags & RTNH_F_LINKDOWN &&
David Ahernd5d32e42016-10-24 12:27:23 -0700671 !(strict & RT6_LOOKUP_F_IGNORE_LINKSTATE))
Andy Gospodarek35103d12015-08-13 10:39:01 -0400672 goto out;
David S. Millerf11e6652007-03-24 20:36:25 -0700673
David Ahern14895682018-04-17 17:33:17 -0700674 if (fib6_check_expired(rt))
David S. Millerf11e6652007-03-24 20:36:25 -0700675 goto out;
676
677 m = rt6_score_route(rt, oif, strict);
Jiri Benc7e980562013-12-11 13:48:20 +0100678 if (m == RT6_NUD_FAIL_DO_RR) {
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200679 match_do_rr = true;
680 m = 0; /* lowest valid score */
Jiri Benc7e980562013-12-11 13:48:20 +0100681 } else if (m == RT6_NUD_FAIL_HARD) {
David S. Millerf11e6652007-03-24 20:36:25 -0700682 goto out;
David S. Millerf11e6652007-03-24 20:36:25 -0700683 }
684
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200685 if (strict & RT6_LOOKUP_F_REACHABLE)
686 rt6_probe(rt);
687
Jiri Benc7e980562013-12-11 13:48:20 +0100688 /* note that m can be RT6_NUD_FAIL_PROBE at this point */
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200689 if (m > *mpri) {
690 *do_rr = match_do_rr;
691 *mpri = m;
692 match = rt;
693 }
David S. Millerf11e6652007-03-24 20:36:25 -0700694out:
695 return match;
696}
697
David Ahern8d1c8022018-04-17 17:33:26 -0700698static struct fib6_info *find_rr_leaf(struct fib6_node *fn,
699 struct fib6_info *leaf,
700 struct fib6_info *rr_head,
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200701 u32 metric, int oif, int strict,
702 bool *do_rr)
David S. Millerf11e6652007-03-24 20:36:25 -0700703{
David Ahern8d1c8022018-04-17 17:33:26 -0700704 struct fib6_info *rt, *match, *cont;
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800705 int mpri = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706
David S. Millerf11e6652007-03-24 20:36:25 -0700707 match = NULL;
Steffen Klassert9fbdcfa2015-04-28 13:03:04 -0700708 cont = NULL;
David Miller071fb372017-11-28 15:40:15 -0500709 for (rt = rr_head; rt; rt = rcu_dereference(rt->rt6_next)) {
Steffen Klassert9fbdcfa2015-04-28 13:03:04 -0700710 if (rt->rt6i_metric != metric) {
711 cont = rt;
712 break;
713 }
714
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200715 match = find_match(rt, oif, strict, &mpri, match, do_rr);
Steffen Klassert9fbdcfa2015-04-28 13:03:04 -0700716 }
717
Wei Wang66f5d6c2017-10-06 12:06:10 -0700718 for (rt = leaf; rt && rt != rr_head;
David Miller071fb372017-11-28 15:40:15 -0500719 rt = rcu_dereference(rt->rt6_next)) {
Steffen Klassert9fbdcfa2015-04-28 13:03:04 -0700720 if (rt->rt6i_metric != metric) {
721 cont = rt;
722 break;
723 }
724
725 match = find_match(rt, oif, strict, &mpri, match, do_rr);
726 }
727
728 if (match || !cont)
729 return match;
730
David Miller071fb372017-11-28 15:40:15 -0500731 for (rt = cont; rt; rt = rcu_dereference(rt->rt6_next))
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200732 match = find_match(rt, oif, strict, &mpri, match, do_rr);
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800733
David S. Millerf11e6652007-03-24 20:36:25 -0700734 return match;
735}
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800736
David Ahern8d1c8022018-04-17 17:33:26 -0700737static struct fib6_info *rt6_select(struct net *net, struct fib6_node *fn,
Wei Wang8d1040e2017-10-06 12:06:08 -0700738 int oif, int strict)
David S. Millerf11e6652007-03-24 20:36:25 -0700739{
David Ahern8d1c8022018-04-17 17:33:26 -0700740 struct fib6_info *leaf = rcu_dereference(fn->leaf);
741 struct fib6_info *match, *rt0;
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200742 bool do_rr = false;
Wei Wang17ecf592017-10-06 12:06:09 -0700743 int key_plen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744
David Ahern421842e2018-04-17 17:33:18 -0700745 if (!leaf || leaf == net->ipv6.fib6_null_entry)
746 return net->ipv6.fib6_null_entry;
Wei Wang8d1040e2017-10-06 12:06:08 -0700747
Wei Wang66f5d6c2017-10-06 12:06:10 -0700748 rt0 = rcu_dereference(fn->rr_ptr);
David S. Millerf11e6652007-03-24 20:36:25 -0700749 if (!rt0)
Wei Wang66f5d6c2017-10-06 12:06:10 -0700750 rt0 = leaf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751
Wei Wang17ecf592017-10-06 12:06:09 -0700752 /* Double check to make sure fn is not an intermediate node
753 * and fn->leaf does not points to its child's leaf
754 * (This might happen if all routes under fn are deleted from
755 * the tree and fib6_repair_tree() is called on the node.)
756 */
757 key_plen = rt0->rt6i_dst.plen;
758#ifdef CONFIG_IPV6_SUBTREES
759 if (rt0->rt6i_src.plen)
760 key_plen = rt0->rt6i_src.plen;
761#endif
762 if (fn->fn_bit != key_plen)
David Ahern421842e2018-04-17 17:33:18 -0700763 return net->ipv6.fib6_null_entry;
Wei Wang17ecf592017-10-06 12:06:09 -0700764
Wei Wang8d1040e2017-10-06 12:06:08 -0700765 match = find_rr_leaf(fn, leaf, rt0, rt0->rt6i_metric, oif, strict,
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200766 &do_rr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200768 if (do_rr) {
David Ahern8d1c8022018-04-17 17:33:26 -0700769 struct fib6_info *next = rcu_dereference(rt0->rt6_next);
David S. Millerf11e6652007-03-24 20:36:25 -0700770
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800771 /* no entries matched; do round-robin */
David S. Millerf11e6652007-03-24 20:36:25 -0700772 if (!next || next->rt6i_metric != rt0->rt6i_metric)
Wei Wang8d1040e2017-10-06 12:06:08 -0700773 next = leaf;
David S. Millerf11e6652007-03-24 20:36:25 -0700774
Wei Wang66f5d6c2017-10-06 12:06:10 -0700775 if (next != rt0) {
776 spin_lock_bh(&leaf->rt6i_table->tb6_lock);
777 /* make sure next is not being deleted from the tree */
778 if (next->rt6i_node)
779 rcu_assign_pointer(fn->rr_ptr, next);
780 spin_unlock_bh(&leaf->rt6i_table->tb6_lock);
781 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 }
783
David Ahern421842e2018-04-17 17:33:18 -0700784 return match ? match : net->ipv6.fib6_null_entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785}
786
David Ahern8d1c8022018-04-17 17:33:26 -0700787static bool rt6_is_gw_or_nonexthop(const struct fib6_info *rt)
Martin KaFai Lau8b9df262015-05-22 20:55:59 -0700788{
789 return (rt->rt6i_flags & (RTF_NONEXTHOP | RTF_GATEWAY));
790}
791
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800792#ifdef CONFIG_IPV6_ROUTE_INFO
793int rt6_route_rcv(struct net_device *dev, u8 *opt, int len,
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000794 const struct in6_addr *gwaddr)
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800795{
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900796 struct net *net = dev_net(dev);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800797 struct route_info *rinfo = (struct route_info *) opt;
798 struct in6_addr prefix_buf, *prefix;
799 unsigned int pref;
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +0900800 unsigned long lifetime;
David Ahern8d1c8022018-04-17 17:33:26 -0700801 struct fib6_info *rt;
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800802
803 if (len < sizeof(struct route_info)) {
804 return -EINVAL;
805 }
806
807 /* Sanity check for prefix_len and length */
808 if (rinfo->length > 3) {
809 return -EINVAL;
810 } else if (rinfo->prefix_len > 128) {
811 return -EINVAL;
812 } else if (rinfo->prefix_len > 64) {
813 if (rinfo->length < 2) {
814 return -EINVAL;
815 }
816 } else if (rinfo->prefix_len > 0) {
817 if (rinfo->length < 1) {
818 return -EINVAL;
819 }
820 }
821
822 pref = rinfo->route_pref;
823 if (pref == ICMPV6_ROUTER_PREF_INVALID)
Jens Rosenboom3933fc92009-09-10 06:25:11 +0000824 return -EINVAL;
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800825
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +0900826 lifetime = addrconf_timeout_fixup(ntohl(rinfo->lifetime), HZ);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800827
828 if (rinfo->length == 3)
829 prefix = (struct in6_addr *)rinfo->prefix;
830 else {
831 /* this function is safe */
832 ipv6_addr_prefix(&prefix_buf,
833 (struct in6_addr *)rinfo->prefix,
834 rinfo->prefix_len);
835 prefix = &prefix_buf;
836 }
837
Duan Jiongf104a562013-11-08 09:56:53 +0800838 if (rinfo->prefix_len == 0)
David Ahernafb1d4b52018-04-17 17:33:11 -0700839 rt = rt6_get_dflt_router(net, gwaddr, dev);
Duan Jiongf104a562013-11-08 09:56:53 +0800840 else
841 rt = rt6_get_route_info(net, prefix, rinfo->prefix_len,
David Ahern830218c2016-10-24 10:52:35 -0700842 gwaddr, dev);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800843
844 if (rt && !lifetime) {
David Ahernafb1d4b52018-04-17 17:33:11 -0700845 ip6_del_rt(net, rt);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800846 rt = NULL;
847 }
848
849 if (!rt && lifetime)
David Ahern830218c2016-10-24 10:52:35 -0700850 rt = rt6_add_route_info(net, prefix, rinfo->prefix_len, gwaddr,
851 dev, pref);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800852 else if (rt)
853 rt->rt6i_flags = RTF_ROUTEINFO |
854 (rt->rt6i_flags & ~RTF_PREF_MASK) | RTF_PREF(pref);
855
856 if (rt) {
Gao feng1716a962012-04-06 00:13:10 +0000857 if (!addrconf_finite_timeout(lifetime))
David Ahern14895682018-04-17 17:33:17 -0700858 fib6_clean_expires(rt);
Gao feng1716a962012-04-06 00:13:10 +0000859 else
David Ahern14895682018-04-17 17:33:17 -0700860 fib6_set_expires(rt, jiffies + HZ * lifetime);
Gao feng1716a962012-04-06 00:13:10 +0000861
David Ahern93531c62018-04-17 17:33:25 -0700862 fib6_info_release(rt);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800863 }
864 return 0;
865}
866#endif
867
David Ahernae90d862018-04-17 17:33:12 -0700868/*
869 * Misc support functions
870 */
871
872/* called with rcu_lock held */
David Ahern8d1c8022018-04-17 17:33:26 -0700873static struct net_device *ip6_rt_get_dev_rcu(struct fib6_info *rt)
David Ahernae90d862018-04-17 17:33:12 -0700874{
David Ahern5e670d82018-04-17 17:33:14 -0700875 struct net_device *dev = rt->fib6_nh.nh_dev;
David Ahernae90d862018-04-17 17:33:12 -0700876
877 if (rt->rt6i_flags & (RTF_LOCAL | RTF_ANYCAST)) {
878 /* for copies of local routes, dst->dev needs to be the
879 * device if it is a master device, the master device if
880 * device is enslaved, and the loopback as the default
881 */
882 if (netif_is_l3_slave(dev) &&
883 !rt6_need_strict(&rt->rt6i_dst.addr))
884 dev = l3mdev_master_dev_rcu(dev);
885 else if (!netif_is_l3_master(dev))
886 dev = dev_net(dev)->loopback_dev;
887 /* last case is netif_is_l3_master(dev) is true in which
888 * case we want dev returned to be dev
889 */
890 }
891
892 return dev;
893}
894
David Ahern6edb3c92018-04-17 17:33:15 -0700895static const int fib6_prop[RTN_MAX + 1] = {
896 [RTN_UNSPEC] = 0,
897 [RTN_UNICAST] = 0,
898 [RTN_LOCAL] = 0,
899 [RTN_BROADCAST] = 0,
900 [RTN_ANYCAST] = 0,
901 [RTN_MULTICAST] = 0,
902 [RTN_BLACKHOLE] = -EINVAL,
903 [RTN_UNREACHABLE] = -EHOSTUNREACH,
904 [RTN_PROHIBIT] = -EACCES,
905 [RTN_THROW] = -EAGAIN,
906 [RTN_NAT] = -EINVAL,
907 [RTN_XRESOLVE] = -EINVAL,
908};
909
910static int ip6_rt_type_to_error(u8 fib6_type)
911{
912 return fib6_prop[fib6_type];
913}
914
David Ahern8d1c8022018-04-17 17:33:26 -0700915static unsigned short fib6_info_dst_flags(struct fib6_info *rt)
David Ahern3b6761d2018-04-17 17:33:20 -0700916{
917 unsigned short flags = 0;
918
919 if (rt->dst_nocount)
920 flags |= DST_NOCOUNT;
921 if (rt->dst_nopolicy)
922 flags |= DST_NOPOLICY;
923 if (rt->dst_host)
924 flags |= DST_HOST;
925
926 return flags;
927}
928
David Ahern8d1c8022018-04-17 17:33:26 -0700929static void ip6_rt_init_dst_reject(struct rt6_info *rt, struct fib6_info *ort)
David Ahern6edb3c92018-04-17 17:33:15 -0700930{
931 rt->dst.error = ip6_rt_type_to_error(ort->fib6_type);
932
933 switch (ort->fib6_type) {
934 case RTN_BLACKHOLE:
935 rt->dst.output = dst_discard_out;
936 rt->dst.input = dst_discard;
937 break;
938 case RTN_PROHIBIT:
939 rt->dst.output = ip6_pkt_prohibit_out;
940 rt->dst.input = ip6_pkt_prohibit;
941 break;
942 case RTN_THROW:
943 case RTN_UNREACHABLE:
944 default:
945 rt->dst.output = ip6_pkt_discard_out;
946 rt->dst.input = ip6_pkt_discard;
947 break;
948 }
949}
950
David Ahern8d1c8022018-04-17 17:33:26 -0700951static void ip6_rt_init_dst(struct rt6_info *rt, struct fib6_info *ort)
David Ahern6edb3c92018-04-17 17:33:15 -0700952{
David Ahern3b6761d2018-04-17 17:33:20 -0700953 rt->dst.flags |= fib6_info_dst_flags(ort);
954
David Ahern6edb3c92018-04-17 17:33:15 -0700955 if (ort->rt6i_flags & RTF_REJECT) {
956 ip6_rt_init_dst_reject(rt, ort);
957 return;
958 }
959
960 rt->dst.error = 0;
961 rt->dst.output = ip6_output;
962
963 if (ort->fib6_type == RTN_LOCAL) {
David Ahern6edb3c92018-04-17 17:33:15 -0700964 rt->dst.input = ip6_input;
965 } else if (ipv6_addr_type(&ort->rt6i_dst.addr) & IPV6_ADDR_MULTICAST) {
966 rt->dst.input = ip6_mc_input;
967 } else {
968 rt->dst.input = ip6_forward;
969 }
970
971 if (ort->fib6_nh.nh_lwtstate) {
972 rt->dst.lwtstate = lwtstate_get(ort->fib6_nh.nh_lwtstate);
973 lwtunnel_set_redirect(&rt->dst);
974 }
975
976 rt->dst.lastuse = jiffies;
977}
978
David Ahern8d1c8022018-04-17 17:33:26 -0700979static void rt6_set_from(struct rt6_info *rt, struct fib6_info *from)
David Ahernae90d862018-04-17 17:33:12 -0700980{
David Ahernae90d862018-04-17 17:33:12 -0700981 rt->rt6i_flags &= ~RTF_EXPIRES;
David Ahern93531c62018-04-17 17:33:25 -0700982 fib6_info_hold(from);
983 rt->from = from;
David Ahernd4ead6b2018-04-17 17:33:16 -0700984 dst_init_metrics(&rt->dst, from->fib6_metrics->metrics, true);
985 if (from->fib6_metrics != &dst_default_metrics) {
986 rt->dst._metrics |= DST_METRICS_REFCOUNTED;
987 refcount_inc(&from->fib6_metrics->refcnt);
988 }
David Ahernae90d862018-04-17 17:33:12 -0700989}
990
David Ahern8d1c8022018-04-17 17:33:26 -0700991static void ip6_rt_copy_init(struct rt6_info *rt, struct fib6_info *ort)
David Ahernae90d862018-04-17 17:33:12 -0700992{
David Ahern6edb3c92018-04-17 17:33:15 -0700993 ip6_rt_init_dst(rt, ort);
994
David Ahernae90d862018-04-17 17:33:12 -0700995 rt->rt6i_dst = ort->rt6i_dst;
David Ahernae90d862018-04-17 17:33:12 -0700996 rt->rt6i_idev = ort->rt6i_idev;
997 if (rt->rt6i_idev)
998 in6_dev_hold(rt->rt6i_idev);
David Ahern5e670d82018-04-17 17:33:14 -0700999 rt->rt6i_gateway = ort->fib6_nh.nh_gw;
David Ahernae90d862018-04-17 17:33:12 -07001000 rt->rt6i_flags = ort->rt6i_flags;
1001 rt6_set_from(rt, ort);
1002 rt->rt6i_metric = ort->rt6i_metric;
1003#ifdef CONFIG_IPV6_SUBTREES
1004 rt->rt6i_src = ort->rt6i_src;
1005#endif
1006 rt->rt6i_prefsrc = ort->rt6i_prefsrc;
1007 rt->rt6i_table = ort->rt6i_table;
David Ahern5e670d82018-04-17 17:33:14 -07001008 rt->dst.lwtstate = lwtstate_get(ort->fib6_nh.nh_lwtstate);
David Ahernae90d862018-04-17 17:33:12 -07001009}
1010
Martin KaFai Laua3c00e42014-10-20 13:42:43 -07001011static struct fib6_node* fib6_backtrack(struct fib6_node *fn,
1012 struct in6_addr *saddr)
1013{
Wei Wang66f5d6c2017-10-06 12:06:10 -07001014 struct fib6_node *pn, *sn;
Martin KaFai Laua3c00e42014-10-20 13:42:43 -07001015 while (1) {
1016 if (fn->fn_flags & RTN_TL_ROOT)
1017 return NULL;
Wei Wang66f5d6c2017-10-06 12:06:10 -07001018 pn = rcu_dereference(fn->parent);
1019 sn = FIB6_SUBTREE(pn);
1020 if (sn && sn != fn)
1021 fn = fib6_lookup(sn, NULL, saddr);
Martin KaFai Laua3c00e42014-10-20 13:42:43 -07001022 else
1023 fn = pn;
1024 if (fn->fn_flags & RTN_RTINFO)
1025 return fn;
1026 }
1027}
Thomas Grafc71099a2006-08-04 23:20:06 -07001028
Wei Wangd3843fe2017-10-06 12:06:06 -07001029static bool ip6_hold_safe(struct net *net, struct rt6_info **prt,
1030 bool null_fallback)
1031{
1032 struct rt6_info *rt = *prt;
1033
1034 if (dst_hold_safe(&rt->dst))
1035 return true;
1036 if (null_fallback) {
1037 rt = net->ipv6.ip6_null_entry;
1038 dst_hold(&rt->dst);
1039 } else {
1040 rt = NULL;
1041 }
1042 *prt = rt;
1043 return false;
1044}
1045
David Aherndec9b0e2018-04-17 17:33:19 -07001046/* called with rcu_lock held */
David Ahern8d1c8022018-04-17 17:33:26 -07001047static struct rt6_info *ip6_create_rt_rcu(struct fib6_info *rt)
David Aherndec9b0e2018-04-17 17:33:19 -07001048{
David Ahern3b6761d2018-04-17 17:33:20 -07001049 unsigned short flags = fib6_info_dst_flags(rt);
David Aherndec9b0e2018-04-17 17:33:19 -07001050 struct net_device *dev = rt->fib6_nh.nh_dev;
1051 struct rt6_info *nrt;
1052
David Ahern93531c62018-04-17 17:33:25 -07001053 nrt = ip6_dst_alloc(dev_net(dev), dev, flags);
David Aherndec9b0e2018-04-17 17:33:19 -07001054 if (nrt)
1055 ip6_rt_copy_init(nrt, rt);
1056
1057 return nrt;
1058}
1059
Daniel Lezcano8ed67782008-03-04 13:48:30 -08001060static struct rt6_info *ip6_pol_route_lookup(struct net *net,
1061 struct fib6_table *table,
David Ahernb75cc8f2018-03-02 08:32:17 -08001062 struct flowi6 *fl6,
1063 const struct sk_buff *skb,
1064 int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065{
David Ahern8d1c8022018-04-17 17:33:26 -07001066 struct fib6_info *f6i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067 struct fib6_node *fn;
David Ahern23fb93a2018-04-17 17:33:23 -07001068 struct rt6_info *rt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069
David Ahernb6cdbc82018-03-29 17:44:57 -07001070 if (fl6->flowi6_flags & FLOWI_FLAG_SKIP_NH_OIF)
1071 flags &= ~RT6_LOOKUP_F_IFACE;
1072
Wei Wang66f5d6c2017-10-06 12:06:10 -07001073 rcu_read_lock();
David S. Miller4c9483b2011-03-12 16:22:43 -05001074 fn = fib6_lookup(&table->tb6_root, &fl6->daddr, &fl6->saddr);
Thomas Grafc71099a2006-08-04 23:20:06 -07001075restart:
David Ahern23fb93a2018-04-17 17:33:23 -07001076 f6i = rcu_dereference(fn->leaf);
1077 if (!f6i) {
1078 f6i = net->ipv6.fib6_null_entry;
Wei Wang66f5d6c2017-10-06 12:06:10 -07001079 } else {
David Ahern23fb93a2018-04-17 17:33:23 -07001080 f6i = rt6_device_match(net, f6i, &fl6->saddr,
Wei Wang66f5d6c2017-10-06 12:06:10 -07001081 fl6->flowi6_oif, flags);
David Ahern23fb93a2018-04-17 17:33:23 -07001082 if (f6i->rt6i_nsiblings && fl6->flowi6_oif == 0)
1083 f6i = rt6_multipath_select(net, f6i, fl6,
1084 fl6->flowi6_oif, skb, flags);
Wei Wang66f5d6c2017-10-06 12:06:10 -07001085 }
David Ahern23fb93a2018-04-17 17:33:23 -07001086 if (f6i == net->ipv6.fib6_null_entry) {
Martin KaFai Laua3c00e42014-10-20 13:42:43 -07001087 fn = fib6_backtrack(fn, &fl6->saddr);
1088 if (fn)
1089 goto restart;
1090 }
David Ahern23fb93a2018-04-17 17:33:23 -07001091
Wei Wang2b760fc2017-10-06 12:06:03 -07001092 /* Search through exception table */
David Ahern23fb93a2018-04-17 17:33:23 -07001093 rt = rt6_find_cached_rt(f6i, &fl6->daddr, &fl6->saddr);
1094 if (rt) {
David Aherndec9b0e2018-04-17 17:33:19 -07001095 if (ip6_hold_safe(net, &rt, true))
1096 dst_use_noref(&rt->dst, jiffies);
David Ahern23fb93a2018-04-17 17:33:23 -07001097 } else if (f6i == net->ipv6.fib6_null_entry) {
David Aherndec9b0e2018-04-17 17:33:19 -07001098 rt = net->ipv6.ip6_null_entry;
1099 dst_hold(&rt->dst);
David Ahern23fb93a2018-04-17 17:33:23 -07001100 } else {
1101 rt = ip6_create_rt_rcu(f6i);
1102 if (!rt) {
1103 rt = net->ipv6.ip6_null_entry;
1104 dst_hold(&rt->dst);
1105 }
David Aherndec9b0e2018-04-17 17:33:19 -07001106 }
Wei Wangd3843fe2017-10-06 12:06:06 -07001107
Wei Wang66f5d6c2017-10-06 12:06:10 -07001108 rcu_read_unlock();
David Ahernb8115802015-11-19 12:24:22 -08001109
Paolo Abenib65f1642017-10-19 09:31:43 +02001110 trace_fib6_table_lookup(net, rt, table, fl6);
David Ahernb8115802015-11-19 12:24:22 -08001111
Thomas Grafc71099a2006-08-04 23:20:06 -07001112 return rt;
Thomas Grafc71099a2006-08-04 23:20:06 -07001113}
1114
Ian Morris67ba4152014-08-24 21:53:10 +01001115struct dst_entry *ip6_route_lookup(struct net *net, struct flowi6 *fl6,
David Ahernb75cc8f2018-03-02 08:32:17 -08001116 const struct sk_buff *skb, int flags)
Florian Westphalea6e5742011-09-05 16:05:44 +02001117{
David Ahernb75cc8f2018-03-02 08:32:17 -08001118 return fib6_rule_lookup(net, fl6, skb, flags, ip6_pol_route_lookup);
Florian Westphalea6e5742011-09-05 16:05:44 +02001119}
1120EXPORT_SYMBOL_GPL(ip6_route_lookup);
1121
YOSHIFUJI Hideaki9acd9f32008-04-10 15:42:10 +09001122struct rt6_info *rt6_lookup(struct net *net, const struct in6_addr *daddr,
David Ahernb75cc8f2018-03-02 08:32:17 -08001123 const struct in6_addr *saddr, int oif,
1124 const struct sk_buff *skb, int strict)
Thomas Grafc71099a2006-08-04 23:20:06 -07001125{
David S. Miller4c9483b2011-03-12 16:22:43 -05001126 struct flowi6 fl6 = {
1127 .flowi6_oif = oif,
1128 .daddr = *daddr,
Thomas Grafc71099a2006-08-04 23:20:06 -07001129 };
1130 struct dst_entry *dst;
YOSHIFUJI Hideaki77d16f42006-08-23 17:25:05 -07001131 int flags = strict ? RT6_LOOKUP_F_IFACE : 0;
Thomas Grafc71099a2006-08-04 23:20:06 -07001132
Thomas Grafadaa70b2006-10-13 15:01:03 -07001133 if (saddr) {
David S. Miller4c9483b2011-03-12 16:22:43 -05001134 memcpy(&fl6.saddr, saddr, sizeof(*saddr));
Thomas Grafadaa70b2006-10-13 15:01:03 -07001135 flags |= RT6_LOOKUP_F_HAS_SADDR;
1136 }
1137
David Ahernb75cc8f2018-03-02 08:32:17 -08001138 dst = fib6_rule_lookup(net, &fl6, skb, flags, ip6_pol_route_lookup);
Thomas Grafc71099a2006-08-04 23:20:06 -07001139 if (dst->error == 0)
1140 return (struct rt6_info *) dst;
1141
1142 dst_release(dst);
1143
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144 return NULL;
1145}
YOSHIFUJI Hideaki71590392007-02-22 22:05:40 +09001146EXPORT_SYMBOL(rt6_lookup);
1147
Thomas Grafc71099a2006-08-04 23:20:06 -07001148/* ip6_ins_rt is called with FREE table->tb6_lock.
Wei Wang1cfb71e2017-06-17 10:42:33 -07001149 * It takes new route entry, the addition fails by any reason the
1150 * route is released.
1151 * Caller must hold dst before calling it.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152 */
1153
David Ahern8d1c8022018-04-17 17:33:26 -07001154static int __ip6_ins_rt(struct fib6_info *rt, struct nl_info *info,
David Ahern333c4302017-05-21 10:12:04 -06001155 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156{
1157 int err;
Thomas Grafc71099a2006-08-04 23:20:06 -07001158 struct fib6_table *table;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159
Thomas Grafc71099a2006-08-04 23:20:06 -07001160 table = rt->rt6i_table;
Wei Wang66f5d6c2017-10-06 12:06:10 -07001161 spin_lock_bh(&table->tb6_lock);
David Ahernd4ead6b2018-04-17 17:33:16 -07001162 err = fib6_add(&table->tb6_root, rt, info, extack);
Wei Wang66f5d6c2017-10-06 12:06:10 -07001163 spin_unlock_bh(&table->tb6_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164
1165 return err;
1166}
1167
David Ahern8d1c8022018-04-17 17:33:26 -07001168int ip6_ins_rt(struct net *net, struct fib6_info *rt)
Thomas Graf40e22e82006-08-22 00:00:45 -07001169{
David Ahernafb1d4b52018-04-17 17:33:11 -07001170 struct nl_info info = { .nl_net = net, };
Florian Westphale715b6d2015-01-05 23:57:44 +01001171
David Ahernd4ead6b2018-04-17 17:33:16 -07001172 return __ip6_ins_rt(rt, &info, NULL);
Thomas Graf40e22e82006-08-22 00:00:45 -07001173}
1174
David Ahern8d1c8022018-04-17 17:33:26 -07001175static struct rt6_info *ip6_rt_cache_alloc(struct fib6_info *ort,
Martin KaFai Lau8b9df262015-05-22 20:55:59 -07001176 const struct in6_addr *daddr,
1177 const struct in6_addr *saddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178{
David Ahern4832c302017-08-17 12:17:20 -07001179 struct net_device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180 struct rt6_info *rt;
1181
1182 /*
1183 * Clone the route.
1184 */
1185
David Ahern4832c302017-08-17 12:17:20 -07001186 rcu_read_lock();
1187 dev = ip6_rt_get_dev_rcu(ort);
David Ahern93531c62018-04-17 17:33:25 -07001188 rt = ip6_dst_alloc(dev_net(dev), dev, 0);
David Ahern4832c302017-08-17 12:17:20 -07001189 rcu_read_unlock();
Martin KaFai Lau83a09ab2015-05-22 20:56:05 -07001190 if (!rt)
1191 return NULL;
1192
1193 ip6_rt_copy_init(rt, ort);
1194 rt->rt6i_flags |= RTF_CACHE;
1195 rt->rt6i_metric = 0;
1196 rt->dst.flags |= DST_HOST;
1197 rt->rt6i_dst.addr = *daddr;
1198 rt->rt6i_dst.plen = 128;
1199
1200 if (!rt6_is_gw_or_nonexthop(ort)) {
1201 if (ort->rt6i_dst.plen != 128 &&
1202 ipv6_addr_equal(&ort->rt6i_dst.addr, daddr))
1203 rt->rt6i_flags |= RTF_ANYCAST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204#ifdef CONFIG_IPV6_SUBTREES
Martin KaFai Lau83a09ab2015-05-22 20:56:05 -07001205 if (rt->rt6i_src.plen && saddr) {
1206 rt->rt6i_src.addr = *saddr;
1207 rt->rt6i_src.plen = 128;
Martin KaFai Lau8b9df262015-05-22 20:55:59 -07001208 }
Martin KaFai Lau83a09ab2015-05-22 20:56:05 -07001209#endif
YOSHIFUJI Hideaki95a9a5b2006-03-20 16:55:51 -08001210 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211
YOSHIFUJI Hideaki95a9a5b2006-03-20 16:55:51 -08001212 return rt;
1213}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214
David Ahern8d1c8022018-04-17 17:33:26 -07001215static struct rt6_info *ip6_rt_pcpu_alloc(struct fib6_info *rt)
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001216{
David Ahern3b6761d2018-04-17 17:33:20 -07001217 unsigned short flags = fib6_info_dst_flags(rt);
David Ahern4832c302017-08-17 12:17:20 -07001218 struct net_device *dev;
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001219 struct rt6_info *pcpu_rt;
1220
David Ahern4832c302017-08-17 12:17:20 -07001221 rcu_read_lock();
1222 dev = ip6_rt_get_dev_rcu(rt);
David Ahern93531c62018-04-17 17:33:25 -07001223 pcpu_rt = ip6_dst_alloc(dev_net(dev), dev, flags);
David Ahern4832c302017-08-17 12:17:20 -07001224 rcu_read_unlock();
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001225 if (!pcpu_rt)
1226 return NULL;
1227 ip6_rt_copy_init(pcpu_rt, rt);
1228 pcpu_rt->rt6i_protocol = rt->rt6i_protocol;
1229 pcpu_rt->rt6i_flags |= RTF_PCPU;
1230 return pcpu_rt;
1231}
1232
Wei Wang66f5d6c2017-10-06 12:06:10 -07001233/* It should be called with rcu_read_lock() acquired */
David Ahern8d1c8022018-04-17 17:33:26 -07001234static struct rt6_info *rt6_get_pcpu_route(struct fib6_info *rt)
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001235{
Martin KaFai Laua73e4192015-08-14 11:05:53 -07001236 struct rt6_info *pcpu_rt, **p;
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001237
1238 p = this_cpu_ptr(rt->rt6i_pcpu);
1239 pcpu_rt = *p;
1240
David Ahernd4ead6b2018-04-17 17:33:16 -07001241 if (pcpu_rt)
1242 ip6_hold_safe(NULL, &pcpu_rt, false);
Wei Wangd3843fe2017-10-06 12:06:06 -07001243
Martin KaFai Laua73e4192015-08-14 11:05:53 -07001244 return pcpu_rt;
1245}
1246
David Ahernafb1d4b52018-04-17 17:33:11 -07001247static struct rt6_info *rt6_make_pcpu_route(struct net *net,
David Ahern8d1c8022018-04-17 17:33:26 -07001248 struct fib6_info *rt)
Martin KaFai Laua73e4192015-08-14 11:05:53 -07001249{
1250 struct rt6_info *pcpu_rt, *prev, **p;
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001251
1252 pcpu_rt = ip6_rt_pcpu_alloc(rt);
1253 if (!pcpu_rt) {
Martin KaFai Lau9c7370a2015-08-14 11:05:54 -07001254 dst_hold(&net->ipv6.ip6_null_entry->dst);
1255 return net->ipv6.ip6_null_entry;
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001256 }
1257
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001258 dst_hold(&pcpu_rt->dst);
Wei Wanga94b9362017-10-06 12:06:04 -07001259 p = this_cpu_ptr(rt->rt6i_pcpu);
1260 prev = cmpxchg(p, NULL, pcpu_rt);
Eric Dumazet951f7882017-10-08 21:07:18 -07001261 BUG_ON(prev);
Wei Wanga94b9362017-10-06 12:06:04 -07001262
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001263 return pcpu_rt;
1264}
1265
Wei Wang35732d02017-10-06 12:05:57 -07001266/* exception hash table implementation
1267 */
1268static DEFINE_SPINLOCK(rt6_exception_lock);
1269
1270/* Remove rt6_ex from hash table and free the memory
1271 * Caller must hold rt6_exception_lock
1272 */
1273static void rt6_remove_exception(struct rt6_exception_bucket *bucket,
1274 struct rt6_exception *rt6_ex)
1275{
Colin Ian Kingb2427e62017-10-10 18:01:16 +01001276 struct net *net;
Wei Wang81eb8442017-10-06 12:06:11 -07001277
Wei Wang35732d02017-10-06 12:05:57 -07001278 if (!bucket || !rt6_ex)
1279 return;
Colin Ian Kingb2427e62017-10-10 18:01:16 +01001280
1281 net = dev_net(rt6_ex->rt6i->dst.dev);
Wei Wang35732d02017-10-06 12:05:57 -07001282 rt6_ex->rt6i->rt6i_node = NULL;
1283 hlist_del_rcu(&rt6_ex->hlist);
David Ahern93531c62018-04-17 17:33:25 -07001284 ip6_rt_put(rt6_ex->rt6i);
Wei Wang35732d02017-10-06 12:05:57 -07001285 kfree_rcu(rt6_ex, rcu);
1286 WARN_ON_ONCE(!bucket->depth);
1287 bucket->depth--;
Wei Wang81eb8442017-10-06 12:06:11 -07001288 net->ipv6.rt6_stats->fib_rt_cache--;
Wei Wang35732d02017-10-06 12:05:57 -07001289}
1290
1291/* Remove oldest rt6_ex in bucket and free the memory
1292 * Caller must hold rt6_exception_lock
1293 */
1294static void rt6_exception_remove_oldest(struct rt6_exception_bucket *bucket)
1295{
1296 struct rt6_exception *rt6_ex, *oldest = NULL;
1297
1298 if (!bucket)
1299 return;
1300
1301 hlist_for_each_entry(rt6_ex, &bucket->chain, hlist) {
1302 if (!oldest || time_before(rt6_ex->stamp, oldest->stamp))
1303 oldest = rt6_ex;
1304 }
1305 rt6_remove_exception(bucket, oldest);
1306}
1307
1308static u32 rt6_exception_hash(const struct in6_addr *dst,
1309 const struct in6_addr *src)
1310{
1311 static u32 seed __read_mostly;
1312 u32 val;
1313
1314 net_get_random_once(&seed, sizeof(seed));
1315 val = jhash(dst, sizeof(*dst), seed);
1316
1317#ifdef CONFIG_IPV6_SUBTREES
1318 if (src)
1319 val = jhash(src, sizeof(*src), val);
1320#endif
1321 return hash_32(val, FIB6_EXCEPTION_BUCKET_SIZE_SHIFT);
1322}
1323
1324/* Helper function to find the cached rt in the hash table
1325 * and update bucket pointer to point to the bucket for this
1326 * (daddr, saddr) pair
1327 * Caller must hold rt6_exception_lock
1328 */
1329static struct rt6_exception *
1330__rt6_find_exception_spinlock(struct rt6_exception_bucket **bucket,
1331 const struct in6_addr *daddr,
1332 const struct in6_addr *saddr)
1333{
1334 struct rt6_exception *rt6_ex;
1335 u32 hval;
1336
1337 if (!(*bucket) || !daddr)
1338 return NULL;
1339
1340 hval = rt6_exception_hash(daddr, saddr);
1341 *bucket += hval;
1342
1343 hlist_for_each_entry(rt6_ex, &(*bucket)->chain, hlist) {
1344 struct rt6_info *rt6 = rt6_ex->rt6i;
1345 bool matched = ipv6_addr_equal(daddr, &rt6->rt6i_dst.addr);
1346
1347#ifdef CONFIG_IPV6_SUBTREES
1348 if (matched && saddr)
1349 matched = ipv6_addr_equal(saddr, &rt6->rt6i_src.addr);
1350#endif
1351 if (matched)
1352 return rt6_ex;
1353 }
1354 return NULL;
1355}
1356
1357/* Helper function to find the cached rt in the hash table
1358 * and update bucket pointer to point to the bucket for this
1359 * (daddr, saddr) pair
1360 * Caller must hold rcu_read_lock()
1361 */
1362static struct rt6_exception *
1363__rt6_find_exception_rcu(struct rt6_exception_bucket **bucket,
1364 const struct in6_addr *daddr,
1365 const struct in6_addr *saddr)
1366{
1367 struct rt6_exception *rt6_ex;
1368 u32 hval;
1369
1370 WARN_ON_ONCE(!rcu_read_lock_held());
1371
1372 if (!(*bucket) || !daddr)
1373 return NULL;
1374
1375 hval = rt6_exception_hash(daddr, saddr);
1376 *bucket += hval;
1377
1378 hlist_for_each_entry_rcu(rt6_ex, &(*bucket)->chain, hlist) {
1379 struct rt6_info *rt6 = rt6_ex->rt6i;
1380 bool matched = ipv6_addr_equal(daddr, &rt6->rt6i_dst.addr);
1381
1382#ifdef CONFIG_IPV6_SUBTREES
1383 if (matched && saddr)
1384 matched = ipv6_addr_equal(saddr, &rt6->rt6i_src.addr);
1385#endif
1386 if (matched)
1387 return rt6_ex;
1388 }
1389 return NULL;
1390}
1391
David Ahern8d1c8022018-04-17 17:33:26 -07001392static unsigned int fib6_mtu(const struct fib6_info *rt)
David Ahernd4ead6b2018-04-17 17:33:16 -07001393{
1394 unsigned int mtu;
1395
1396 mtu = rt->fib6_pmtu ? : rt->rt6i_idev->cnf.mtu6;
1397 mtu = min_t(unsigned int, mtu, IP6_MAX_MTU);
1398
1399 return mtu - lwtunnel_headroom(rt->fib6_nh.nh_lwtstate, mtu);
1400}
1401
Wei Wang35732d02017-10-06 12:05:57 -07001402static int rt6_insert_exception(struct rt6_info *nrt,
David Ahern8d1c8022018-04-17 17:33:26 -07001403 struct fib6_info *ort)
Wei Wang35732d02017-10-06 12:05:57 -07001404{
David Ahern5e670d82018-04-17 17:33:14 -07001405 struct net *net = dev_net(nrt->dst.dev);
Wei Wang35732d02017-10-06 12:05:57 -07001406 struct rt6_exception_bucket *bucket;
1407 struct in6_addr *src_key = NULL;
1408 struct rt6_exception *rt6_ex;
1409 int err = 0;
1410
Wei Wang35732d02017-10-06 12:05:57 -07001411 spin_lock_bh(&rt6_exception_lock);
1412
1413 if (ort->exception_bucket_flushed) {
1414 err = -EINVAL;
1415 goto out;
1416 }
1417
1418 bucket = rcu_dereference_protected(ort->rt6i_exception_bucket,
1419 lockdep_is_held(&rt6_exception_lock));
1420 if (!bucket) {
1421 bucket = kcalloc(FIB6_EXCEPTION_BUCKET_SIZE, sizeof(*bucket),
1422 GFP_ATOMIC);
1423 if (!bucket) {
1424 err = -ENOMEM;
1425 goto out;
1426 }
1427 rcu_assign_pointer(ort->rt6i_exception_bucket, bucket);
1428 }
1429
1430#ifdef CONFIG_IPV6_SUBTREES
1431 /* rt6i_src.plen != 0 indicates ort is in subtree
1432 * and exception table is indexed by a hash of
1433 * both rt6i_dst and rt6i_src.
1434 * Otherwise, the exception table is indexed by
1435 * a hash of only rt6i_dst.
1436 */
1437 if (ort->rt6i_src.plen)
1438 src_key = &nrt->rt6i_src.addr;
1439#endif
Wei Wang60006a42017-10-06 12:05:58 -07001440
1441 /* Update rt6i_prefsrc as it could be changed
1442 * in rt6_remove_prefsrc()
1443 */
1444 nrt->rt6i_prefsrc = ort->rt6i_prefsrc;
Wei Wangf5bbe7e2017-10-06 12:05:59 -07001445 /* rt6_mtu_change() might lower mtu on ort.
1446 * Only insert this exception route if its mtu
1447 * is less than ort's mtu value.
1448 */
David Ahernd4ead6b2018-04-17 17:33:16 -07001449 if (dst_metric_raw(&nrt->dst, RTAX_MTU) >= fib6_mtu(ort)) {
Wei Wangf5bbe7e2017-10-06 12:05:59 -07001450 err = -EINVAL;
1451 goto out;
1452 }
Wei Wang60006a42017-10-06 12:05:58 -07001453
Wei Wang35732d02017-10-06 12:05:57 -07001454 rt6_ex = __rt6_find_exception_spinlock(&bucket, &nrt->rt6i_dst.addr,
1455 src_key);
1456 if (rt6_ex)
1457 rt6_remove_exception(bucket, rt6_ex);
1458
1459 rt6_ex = kzalloc(sizeof(*rt6_ex), GFP_ATOMIC);
1460 if (!rt6_ex) {
1461 err = -ENOMEM;
1462 goto out;
1463 }
1464 rt6_ex->rt6i = nrt;
1465 rt6_ex->stamp = jiffies;
1466 atomic_inc(&nrt->rt6i_ref);
1467 nrt->rt6i_node = ort->rt6i_node;
1468 hlist_add_head_rcu(&rt6_ex->hlist, &bucket->chain);
1469 bucket->depth++;
Wei Wang81eb8442017-10-06 12:06:11 -07001470 net->ipv6.rt6_stats->fib_rt_cache++;
Wei Wang35732d02017-10-06 12:05:57 -07001471
1472 if (bucket->depth > FIB6_MAX_DEPTH)
1473 rt6_exception_remove_oldest(bucket);
1474
1475out:
1476 spin_unlock_bh(&rt6_exception_lock);
1477
1478 /* Update fn->fn_sernum to invalidate all cached dst */
Paolo Abenib886d5f2017-10-19 16:07:10 +02001479 if (!err) {
Ido Schimmel922c2ac2018-01-07 12:45:14 +02001480 spin_lock_bh(&ort->rt6i_table->tb6_lock);
David Ahern7aef6852018-04-17 17:33:10 -07001481 fib6_update_sernum(net, ort);
Ido Schimmel922c2ac2018-01-07 12:45:14 +02001482 spin_unlock_bh(&ort->rt6i_table->tb6_lock);
Paolo Abenib886d5f2017-10-19 16:07:10 +02001483 fib6_force_start_gc(net);
1484 }
Wei Wang35732d02017-10-06 12:05:57 -07001485
1486 return err;
1487}
1488
David Ahern8d1c8022018-04-17 17:33:26 -07001489void rt6_flush_exceptions(struct fib6_info *rt)
Wei Wang35732d02017-10-06 12:05:57 -07001490{
1491 struct rt6_exception_bucket *bucket;
1492 struct rt6_exception *rt6_ex;
1493 struct hlist_node *tmp;
1494 int i;
1495
1496 spin_lock_bh(&rt6_exception_lock);
1497 /* Prevent rt6_insert_exception() to recreate the bucket list */
1498 rt->exception_bucket_flushed = 1;
1499
1500 bucket = rcu_dereference_protected(rt->rt6i_exception_bucket,
1501 lockdep_is_held(&rt6_exception_lock));
1502 if (!bucket)
1503 goto out;
1504
1505 for (i = 0; i < FIB6_EXCEPTION_BUCKET_SIZE; i++) {
1506 hlist_for_each_entry_safe(rt6_ex, tmp, &bucket->chain, hlist)
1507 rt6_remove_exception(bucket, rt6_ex);
1508 WARN_ON_ONCE(bucket->depth);
1509 bucket++;
1510 }
1511
1512out:
1513 spin_unlock_bh(&rt6_exception_lock);
1514}
1515
1516/* Find cached rt in the hash table inside passed in rt
1517 * Caller has to hold rcu_read_lock()
1518 */
David Ahern8d1c8022018-04-17 17:33:26 -07001519static struct rt6_info *rt6_find_cached_rt(struct fib6_info *rt,
Wei Wang35732d02017-10-06 12:05:57 -07001520 struct in6_addr *daddr,
1521 struct in6_addr *saddr)
1522{
1523 struct rt6_exception_bucket *bucket;
1524 struct in6_addr *src_key = NULL;
1525 struct rt6_exception *rt6_ex;
1526 struct rt6_info *res = NULL;
1527
1528 bucket = rcu_dereference(rt->rt6i_exception_bucket);
1529
1530#ifdef CONFIG_IPV6_SUBTREES
1531 /* rt6i_src.plen != 0 indicates rt is in subtree
1532 * and exception table is indexed by a hash of
1533 * both rt6i_dst and rt6i_src.
1534 * Otherwise, the exception table is indexed by
1535 * a hash of only rt6i_dst.
1536 */
1537 if (rt->rt6i_src.plen)
1538 src_key = saddr;
1539#endif
1540 rt6_ex = __rt6_find_exception_rcu(&bucket, daddr, src_key);
1541
1542 if (rt6_ex && !rt6_check_expired(rt6_ex->rt6i))
1543 res = rt6_ex->rt6i;
1544
1545 return res;
1546}
1547
1548/* Remove the passed in cached rt from the hash table that contains it */
David Ahern23fb93a2018-04-17 17:33:23 -07001549static int rt6_remove_exception_rt(struct rt6_info *rt)
Wei Wang35732d02017-10-06 12:05:57 -07001550{
Wei Wang35732d02017-10-06 12:05:57 -07001551 struct rt6_exception_bucket *bucket;
David Ahern8d1c8022018-04-17 17:33:26 -07001552 struct fib6_info *from = rt->from;
Wei Wang35732d02017-10-06 12:05:57 -07001553 struct in6_addr *src_key = NULL;
1554 struct rt6_exception *rt6_ex;
1555 int err;
1556
1557 if (!from ||
Colin Ian King442d7132017-10-10 19:10:30 +01001558 !(rt->rt6i_flags & RTF_CACHE))
Wei Wang35732d02017-10-06 12:05:57 -07001559 return -EINVAL;
1560
1561 if (!rcu_access_pointer(from->rt6i_exception_bucket))
1562 return -ENOENT;
1563
1564 spin_lock_bh(&rt6_exception_lock);
1565 bucket = rcu_dereference_protected(from->rt6i_exception_bucket,
1566 lockdep_is_held(&rt6_exception_lock));
1567#ifdef CONFIG_IPV6_SUBTREES
1568 /* rt6i_src.plen != 0 indicates 'from' is in subtree
1569 * and exception table is indexed by a hash of
1570 * both rt6i_dst and rt6i_src.
1571 * Otherwise, the exception table is indexed by
1572 * a hash of only rt6i_dst.
1573 */
1574 if (from->rt6i_src.plen)
1575 src_key = &rt->rt6i_src.addr;
1576#endif
1577 rt6_ex = __rt6_find_exception_spinlock(&bucket,
1578 &rt->rt6i_dst.addr,
1579 src_key);
1580 if (rt6_ex) {
1581 rt6_remove_exception(bucket, rt6_ex);
1582 err = 0;
1583 } else {
1584 err = -ENOENT;
1585 }
1586
1587 spin_unlock_bh(&rt6_exception_lock);
1588 return err;
1589}
1590
1591/* Find rt6_ex which contains the passed in rt cache and
1592 * refresh its stamp
1593 */
1594static void rt6_update_exception_stamp_rt(struct rt6_info *rt)
1595{
Wei Wang35732d02017-10-06 12:05:57 -07001596 struct rt6_exception_bucket *bucket;
David Ahern8d1c8022018-04-17 17:33:26 -07001597 struct fib6_info *from = rt->from;
Wei Wang35732d02017-10-06 12:05:57 -07001598 struct in6_addr *src_key = NULL;
1599 struct rt6_exception *rt6_ex;
1600
1601 if (!from ||
Colin Ian King442d7132017-10-10 19:10:30 +01001602 !(rt->rt6i_flags & RTF_CACHE))
Wei Wang35732d02017-10-06 12:05:57 -07001603 return;
1604
1605 rcu_read_lock();
1606 bucket = rcu_dereference(from->rt6i_exception_bucket);
1607
1608#ifdef CONFIG_IPV6_SUBTREES
1609 /* rt6i_src.plen != 0 indicates 'from' is in subtree
1610 * and exception table is indexed by a hash of
1611 * both rt6i_dst and rt6i_src.
1612 * Otherwise, the exception table is indexed by
1613 * a hash of only rt6i_dst.
1614 */
1615 if (from->rt6i_src.plen)
1616 src_key = &rt->rt6i_src.addr;
1617#endif
1618 rt6_ex = __rt6_find_exception_rcu(&bucket,
1619 &rt->rt6i_dst.addr,
1620 src_key);
1621 if (rt6_ex)
1622 rt6_ex->stamp = jiffies;
1623
1624 rcu_read_unlock();
1625}
1626
David Ahern8d1c8022018-04-17 17:33:26 -07001627static void rt6_exceptions_remove_prefsrc(struct fib6_info *rt)
Wei Wang60006a42017-10-06 12:05:58 -07001628{
1629 struct rt6_exception_bucket *bucket;
1630 struct rt6_exception *rt6_ex;
1631 int i;
1632
1633 bucket = rcu_dereference_protected(rt->rt6i_exception_bucket,
1634 lockdep_is_held(&rt6_exception_lock));
1635
1636 if (bucket) {
1637 for (i = 0; i < FIB6_EXCEPTION_BUCKET_SIZE; i++) {
1638 hlist_for_each_entry(rt6_ex, &bucket->chain, hlist) {
1639 rt6_ex->rt6i->rt6i_prefsrc.plen = 0;
1640 }
1641 bucket++;
1642 }
1643 }
1644}
1645
Stefano Brivioe9fa1492018-03-06 11:10:19 +01001646static bool rt6_mtu_change_route_allowed(struct inet6_dev *idev,
1647 struct rt6_info *rt, int mtu)
1648{
1649 /* If the new MTU is lower than the route PMTU, this new MTU will be the
1650 * lowest MTU in the path: always allow updating the route PMTU to
1651 * reflect PMTU decreases.
1652 *
1653 * If the new MTU is higher, and the route PMTU is equal to the local
1654 * MTU, this means the old MTU is the lowest in the path, so allow
1655 * updating it: if other nodes now have lower MTUs, PMTU discovery will
1656 * handle this.
1657 */
1658
1659 if (dst_mtu(&rt->dst) >= mtu)
1660 return true;
1661
1662 if (dst_mtu(&rt->dst) == idev->cnf.mtu6)
1663 return true;
1664
1665 return false;
1666}
1667
1668static void rt6_exceptions_update_pmtu(struct inet6_dev *idev,
David Ahern8d1c8022018-04-17 17:33:26 -07001669 struct fib6_info *rt, int mtu)
Wei Wangf5bbe7e2017-10-06 12:05:59 -07001670{
1671 struct rt6_exception_bucket *bucket;
1672 struct rt6_exception *rt6_ex;
1673 int i;
1674
1675 bucket = rcu_dereference_protected(rt->rt6i_exception_bucket,
1676 lockdep_is_held(&rt6_exception_lock));
1677
Stefano Brivioe9fa1492018-03-06 11:10:19 +01001678 if (!bucket)
1679 return;
1680
1681 for (i = 0; i < FIB6_EXCEPTION_BUCKET_SIZE; i++) {
1682 hlist_for_each_entry(rt6_ex, &bucket->chain, hlist) {
1683 struct rt6_info *entry = rt6_ex->rt6i;
1684
1685 /* For RTF_CACHE with rt6i_pmtu == 0 (i.e. a redirected
David Ahernd4ead6b2018-04-17 17:33:16 -07001686 * route), the metrics of its rt->from have already
Stefano Brivioe9fa1492018-03-06 11:10:19 +01001687 * been updated.
1688 */
David Ahernd4ead6b2018-04-17 17:33:16 -07001689 if (dst_metric_raw(&entry->dst, RTAX_MTU) &&
Stefano Brivioe9fa1492018-03-06 11:10:19 +01001690 rt6_mtu_change_route_allowed(idev, entry, mtu))
David Ahernd4ead6b2018-04-17 17:33:16 -07001691 dst_metric_set(&entry->dst, RTAX_MTU, mtu);
Wei Wangf5bbe7e2017-10-06 12:05:59 -07001692 }
Stefano Brivioe9fa1492018-03-06 11:10:19 +01001693 bucket++;
Wei Wangf5bbe7e2017-10-06 12:05:59 -07001694 }
1695}
1696
Wei Wangb16cb452017-10-06 12:06:00 -07001697#define RTF_CACHE_GATEWAY (RTF_GATEWAY | RTF_CACHE)
1698
David Ahern8d1c8022018-04-17 17:33:26 -07001699static void rt6_exceptions_clean_tohost(struct fib6_info *rt,
Wei Wangb16cb452017-10-06 12:06:00 -07001700 struct in6_addr *gateway)
1701{
1702 struct rt6_exception_bucket *bucket;
1703 struct rt6_exception *rt6_ex;
1704 struct hlist_node *tmp;
1705 int i;
1706
1707 if (!rcu_access_pointer(rt->rt6i_exception_bucket))
1708 return;
1709
1710 spin_lock_bh(&rt6_exception_lock);
1711 bucket = rcu_dereference_protected(rt->rt6i_exception_bucket,
1712 lockdep_is_held(&rt6_exception_lock));
1713
1714 if (bucket) {
1715 for (i = 0; i < FIB6_EXCEPTION_BUCKET_SIZE; i++) {
1716 hlist_for_each_entry_safe(rt6_ex, tmp,
1717 &bucket->chain, hlist) {
1718 struct rt6_info *entry = rt6_ex->rt6i;
1719
1720 if ((entry->rt6i_flags & RTF_CACHE_GATEWAY) ==
1721 RTF_CACHE_GATEWAY &&
1722 ipv6_addr_equal(gateway,
1723 &entry->rt6i_gateway)) {
1724 rt6_remove_exception(bucket, rt6_ex);
1725 }
1726 }
1727 bucket++;
1728 }
1729 }
1730
1731 spin_unlock_bh(&rt6_exception_lock);
1732}
1733
Wei Wangc757faa2017-10-06 12:06:01 -07001734static void rt6_age_examine_exception(struct rt6_exception_bucket *bucket,
1735 struct rt6_exception *rt6_ex,
1736 struct fib6_gc_args *gc_args,
1737 unsigned long now)
1738{
1739 struct rt6_info *rt = rt6_ex->rt6i;
1740
Paolo Abeni1859bac2017-10-19 16:07:11 +02001741 /* we are pruning and obsoleting aged-out and non gateway exceptions
1742 * even if others have still references to them, so that on next
1743 * dst_check() such references can be dropped.
1744 * EXPIRES exceptions - e.g. pmtu-generated ones are pruned when
1745 * expired, independently from their aging, as per RFC 8201 section 4
1746 */
Wei Wang31afeb42018-01-26 11:40:17 -08001747 if (!(rt->rt6i_flags & RTF_EXPIRES)) {
1748 if (time_after_eq(now, rt->dst.lastuse + gc_args->timeout)) {
1749 RT6_TRACE("aging clone %p\n", rt);
1750 rt6_remove_exception(bucket, rt6_ex);
1751 return;
1752 }
1753 } else if (time_after(jiffies, rt->dst.expires)) {
1754 RT6_TRACE("purging expired route %p\n", rt);
Wei Wangc757faa2017-10-06 12:06:01 -07001755 rt6_remove_exception(bucket, rt6_ex);
1756 return;
Wei Wang31afeb42018-01-26 11:40:17 -08001757 }
1758
1759 if (rt->rt6i_flags & RTF_GATEWAY) {
Wei Wangc757faa2017-10-06 12:06:01 -07001760 struct neighbour *neigh;
1761 __u8 neigh_flags = 0;
1762
Eric Dumazet1bfa26f2018-03-23 07:56:58 -07001763 neigh = __ipv6_neigh_lookup_noref(rt->dst.dev, &rt->rt6i_gateway);
1764 if (neigh)
Wei Wangc757faa2017-10-06 12:06:01 -07001765 neigh_flags = neigh->flags;
Eric Dumazet1bfa26f2018-03-23 07:56:58 -07001766
Wei Wangc757faa2017-10-06 12:06:01 -07001767 if (!(neigh_flags & NTF_ROUTER)) {
1768 RT6_TRACE("purging route %p via non-router but gateway\n",
1769 rt);
1770 rt6_remove_exception(bucket, rt6_ex);
1771 return;
1772 }
1773 }
Wei Wang31afeb42018-01-26 11:40:17 -08001774
Wei Wangc757faa2017-10-06 12:06:01 -07001775 gc_args->more++;
1776}
1777
David Ahern8d1c8022018-04-17 17:33:26 -07001778void rt6_age_exceptions(struct fib6_info *rt,
Wei Wangc757faa2017-10-06 12:06:01 -07001779 struct fib6_gc_args *gc_args,
1780 unsigned long now)
1781{
1782 struct rt6_exception_bucket *bucket;
1783 struct rt6_exception *rt6_ex;
1784 struct hlist_node *tmp;
1785 int i;
1786
1787 if (!rcu_access_pointer(rt->rt6i_exception_bucket))
1788 return;
1789
Eric Dumazet1bfa26f2018-03-23 07:56:58 -07001790 rcu_read_lock_bh();
1791 spin_lock(&rt6_exception_lock);
Wei Wangc757faa2017-10-06 12:06:01 -07001792 bucket = rcu_dereference_protected(rt->rt6i_exception_bucket,
1793 lockdep_is_held(&rt6_exception_lock));
1794
1795 if (bucket) {
1796 for (i = 0; i < FIB6_EXCEPTION_BUCKET_SIZE; i++) {
1797 hlist_for_each_entry_safe(rt6_ex, tmp,
1798 &bucket->chain, hlist) {
1799 rt6_age_examine_exception(bucket, rt6_ex,
1800 gc_args, now);
1801 }
1802 bucket++;
1803 }
1804 }
Eric Dumazet1bfa26f2018-03-23 07:56:58 -07001805 spin_unlock(&rt6_exception_lock);
1806 rcu_read_unlock_bh();
Wei Wangc757faa2017-10-06 12:06:01 -07001807}
1808
David Ahern9ff74382016-06-13 13:44:19 -07001809struct rt6_info *ip6_pol_route(struct net *net, struct fib6_table *table,
David Ahernb75cc8f2018-03-02 08:32:17 -08001810 int oif, struct flowi6 *fl6,
1811 const struct sk_buff *skb, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812{
Martin KaFai Lau367efcb2014-10-20 13:42:45 -07001813 struct fib6_node *fn, *saved_fn;
David Ahern8d1c8022018-04-17 17:33:26 -07001814 struct fib6_info *f6i;
David Ahern23fb93a2018-04-17 17:33:23 -07001815 struct rt6_info *rt;
Thomas Grafc71099a2006-08-04 23:20:06 -07001816 int strict = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817
YOSHIFUJI Hideaki77d16f42006-08-23 17:25:05 -07001818 strict |= flags & RT6_LOOKUP_F_IFACE;
David Ahernd5d32e42016-10-24 12:27:23 -07001819 strict |= flags & RT6_LOOKUP_F_IGNORE_LINKSTATE;
Martin KaFai Lau367efcb2014-10-20 13:42:45 -07001820 if (net->ipv6.devconf_all->forwarding == 0)
1821 strict |= RT6_LOOKUP_F_REACHABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822
Wei Wang66f5d6c2017-10-06 12:06:10 -07001823 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824
David S. Miller4c9483b2011-03-12 16:22:43 -05001825 fn = fib6_lookup(&table->tb6_root, &fl6->daddr, &fl6->saddr);
Martin KaFai Lau367efcb2014-10-20 13:42:45 -07001826 saved_fn = fn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827
David Ahernca254492015-10-12 11:47:10 -07001828 if (fl6->flowi6_flags & FLOWI_FLAG_SKIP_NH_OIF)
1829 oif = 0;
1830
Martin KaFai Laua3c00e42014-10-20 13:42:43 -07001831redo_rt6_select:
David Ahern23fb93a2018-04-17 17:33:23 -07001832 f6i = rt6_select(net, fn, oif, strict);
1833 if (f6i->rt6i_nsiblings)
1834 f6i = rt6_multipath_select(net, f6i, fl6, oif, skb, strict);
1835 if (f6i == net->ipv6.fib6_null_entry) {
Martin KaFai Laua3c00e42014-10-20 13:42:43 -07001836 fn = fib6_backtrack(fn, &fl6->saddr);
1837 if (fn)
1838 goto redo_rt6_select;
Martin KaFai Lau367efcb2014-10-20 13:42:45 -07001839 else if (strict & RT6_LOOKUP_F_REACHABLE) {
1840 /* also consider unreachable route */
1841 strict &= ~RT6_LOOKUP_F_REACHABLE;
1842 fn = saved_fn;
1843 goto redo_rt6_select;
Martin KaFai Lau367efcb2014-10-20 13:42:45 -07001844 }
Martin KaFai Laua3c00e42014-10-20 13:42:43 -07001845 }
1846
David Ahern23fb93a2018-04-17 17:33:23 -07001847 if (f6i == net->ipv6.fib6_null_entry) {
David Ahern421842e2018-04-17 17:33:18 -07001848 rt = net->ipv6.ip6_null_entry;
Wei Wang66f5d6c2017-10-06 12:06:10 -07001849 rcu_read_unlock();
Wei Wangd3843fe2017-10-06 12:06:06 -07001850 dst_hold(&rt->dst);
Paolo Abenib65f1642017-10-19 09:31:43 +02001851 trace_fib6_table_lookup(net, rt, table, fl6);
Wei Wangd3843fe2017-10-06 12:06:06 -07001852 return rt;
David Ahern23fb93a2018-04-17 17:33:23 -07001853 }
1854
1855 /*Search through exception table */
1856 rt = rt6_find_cached_rt(f6i, &fl6->daddr, &fl6->saddr);
1857 if (rt) {
David Ahernd4ead6b2018-04-17 17:33:16 -07001858 if (ip6_hold_safe(net, &rt, true))
Wei Wangd3843fe2017-10-06 12:06:06 -07001859 dst_use_noref(&rt->dst, jiffies);
David Ahernd4ead6b2018-04-17 17:33:16 -07001860
Wei Wang66f5d6c2017-10-06 12:06:10 -07001861 rcu_read_unlock();
Paolo Abenib65f1642017-10-19 09:31:43 +02001862 trace_fib6_table_lookup(net, rt, table, fl6);
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001863 return rt;
Martin KaFai Lau3da59bd2015-05-22 20:56:03 -07001864 } else if (unlikely((fl6->flowi6_flags & FLOWI_FLAG_KNOWN_NH) &&
David Ahern23fb93a2018-04-17 17:33:23 -07001865 !(f6i->rt6i_flags & RTF_GATEWAY))) {
Martin KaFai Lau3da59bd2015-05-22 20:56:03 -07001866 /* Create a RTF_CACHE clone which will not be
1867 * owned by the fib6 tree. It is for the special case where
1868 * the daddr in the skb during the neighbor look-up is different
1869 * from the fl6->daddr used to look-up route here.
1870 */
Thomas Grafc71099a2006-08-04 23:20:06 -07001871
Martin KaFai Lau3da59bd2015-05-22 20:56:03 -07001872 struct rt6_info *uncached_rt;
1873
David Ahern93531c62018-04-17 17:33:25 -07001874 fib6_info_hold(f6i);
Wei Wang66f5d6c2017-10-06 12:06:10 -07001875 rcu_read_unlock();
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001876
David Ahern23fb93a2018-04-17 17:33:23 -07001877 uncached_rt = ip6_rt_cache_alloc(f6i, &fl6->daddr, NULL);
David Ahern93531c62018-04-17 17:33:25 -07001878 fib6_info_release(f6i);
Martin KaFai Lau3da59bd2015-05-22 20:56:03 -07001879
Wei Wang1cfb71e2017-06-17 10:42:33 -07001880 if (uncached_rt) {
1881 /* Uncached_rt's refcnt is taken during ip6_rt_cache_alloc()
1882 * No need for another dst_hold()
1883 */
Martin KaFai Lau8d0b94a2015-05-22 20:56:04 -07001884 rt6_uncached_list_add(uncached_rt);
Wei Wang81eb8442017-10-06 12:06:11 -07001885 atomic_inc(&net->ipv6.rt6_stats->fib_rt_uncache);
Wei Wang1cfb71e2017-06-17 10:42:33 -07001886 } else {
Martin KaFai Lau3da59bd2015-05-22 20:56:03 -07001887 uncached_rt = net->ipv6.ip6_null_entry;
Wei Wang1cfb71e2017-06-17 10:42:33 -07001888 dst_hold(&uncached_rt->dst);
1889 }
David Ahernb8115802015-11-19 12:24:22 -08001890
Paolo Abenib65f1642017-10-19 09:31:43 +02001891 trace_fib6_table_lookup(net, uncached_rt, table, fl6);
Martin KaFai Lau3da59bd2015-05-22 20:56:03 -07001892 return uncached_rt;
Martin KaFai Lau3da59bd2015-05-22 20:56:03 -07001893
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001894 } else {
1895 /* Get a percpu copy */
1896
1897 struct rt6_info *pcpu_rt;
1898
Eric Dumazet951f7882017-10-08 21:07:18 -07001899 local_bh_disable();
David Ahern23fb93a2018-04-17 17:33:23 -07001900 pcpu_rt = rt6_get_pcpu_route(f6i);
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001901
David Ahern93531c62018-04-17 17:33:25 -07001902 if (!pcpu_rt)
1903 pcpu_rt = rt6_make_pcpu_route(net, f6i);
1904
Eric Dumazet951f7882017-10-08 21:07:18 -07001905 local_bh_enable();
1906 rcu_read_unlock();
Paolo Abenib65f1642017-10-19 09:31:43 +02001907 trace_fib6_table_lookup(net, pcpu_rt, table, fl6);
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001908 return pcpu_rt;
1909 }
Thomas Grafc71099a2006-08-04 23:20:06 -07001910}
David Ahern9ff74382016-06-13 13:44:19 -07001911EXPORT_SYMBOL_GPL(ip6_pol_route);
Thomas Grafc71099a2006-08-04 23:20:06 -07001912
David Ahernb75cc8f2018-03-02 08:32:17 -08001913static struct rt6_info *ip6_pol_route_input(struct net *net,
1914 struct fib6_table *table,
1915 struct flowi6 *fl6,
1916 const struct sk_buff *skb,
1917 int flags)
Pavel Emelyanov4acad722007-10-15 13:02:51 -07001918{
David Ahernb75cc8f2018-03-02 08:32:17 -08001919 return ip6_pol_route(net, table, fl6->flowi6_iif, fl6, skb, flags);
Pavel Emelyanov4acad722007-10-15 13:02:51 -07001920}
1921
Mahesh Bandeward409b842016-09-16 12:59:08 -07001922struct dst_entry *ip6_route_input_lookup(struct net *net,
1923 struct net_device *dev,
David Ahernb75cc8f2018-03-02 08:32:17 -08001924 struct flowi6 *fl6,
1925 const struct sk_buff *skb,
1926 int flags)
Shmulik Ladkani72331bc2012-04-01 04:03:45 +00001927{
1928 if (rt6_need_strict(&fl6->daddr) && dev->type != ARPHRD_PIMREG)
1929 flags |= RT6_LOOKUP_F_IFACE;
1930
David Ahernb75cc8f2018-03-02 08:32:17 -08001931 return fib6_rule_lookup(net, fl6, skb, flags, ip6_pol_route_input);
Shmulik Ladkani72331bc2012-04-01 04:03:45 +00001932}
Mahesh Bandeward409b842016-09-16 12:59:08 -07001933EXPORT_SYMBOL_GPL(ip6_route_input_lookup);
Shmulik Ladkani72331bc2012-04-01 04:03:45 +00001934
Jakub Sitnicki23aebda2017-08-23 09:58:29 +02001935static void ip6_multipath_l3_keys(const struct sk_buff *skb,
Roopa Prabhu5e5d6fe2018-02-28 22:43:22 -05001936 struct flow_keys *keys,
1937 struct flow_keys *flkeys)
Jakub Sitnicki23aebda2017-08-23 09:58:29 +02001938{
1939 const struct ipv6hdr *outer_iph = ipv6_hdr(skb);
1940 const struct ipv6hdr *key_iph = outer_iph;
Roopa Prabhu5e5d6fe2018-02-28 22:43:22 -05001941 struct flow_keys *_flkeys = flkeys;
Jakub Sitnicki23aebda2017-08-23 09:58:29 +02001942 const struct ipv6hdr *inner_iph;
1943 const struct icmp6hdr *icmph;
1944 struct ipv6hdr _inner_iph;
1945
1946 if (likely(outer_iph->nexthdr != IPPROTO_ICMPV6))
1947 goto out;
1948
1949 icmph = icmp6_hdr(skb);
1950 if (icmph->icmp6_type != ICMPV6_DEST_UNREACH &&
1951 icmph->icmp6_type != ICMPV6_PKT_TOOBIG &&
1952 icmph->icmp6_type != ICMPV6_TIME_EXCEED &&
1953 icmph->icmp6_type != ICMPV6_PARAMPROB)
1954 goto out;
1955
1956 inner_iph = skb_header_pointer(skb,
1957 skb_transport_offset(skb) + sizeof(*icmph),
1958 sizeof(_inner_iph), &_inner_iph);
1959 if (!inner_iph)
1960 goto out;
1961
1962 key_iph = inner_iph;
Roopa Prabhu5e5d6fe2018-02-28 22:43:22 -05001963 _flkeys = NULL;
Jakub Sitnicki23aebda2017-08-23 09:58:29 +02001964out:
Roopa Prabhu5e5d6fe2018-02-28 22:43:22 -05001965 if (_flkeys) {
1966 keys->addrs.v6addrs.src = _flkeys->addrs.v6addrs.src;
1967 keys->addrs.v6addrs.dst = _flkeys->addrs.v6addrs.dst;
1968 keys->tags.flow_label = _flkeys->tags.flow_label;
1969 keys->basic.ip_proto = _flkeys->basic.ip_proto;
1970 } else {
1971 keys->addrs.v6addrs.src = key_iph->saddr;
1972 keys->addrs.v6addrs.dst = key_iph->daddr;
1973 keys->tags.flow_label = ip6_flowinfo(key_iph);
1974 keys->basic.ip_proto = key_iph->nexthdr;
1975 }
Jakub Sitnicki23aebda2017-08-23 09:58:29 +02001976}
1977
1978/* if skb is set it will be used and fl6 can be NULL */
David Ahernb4bac172018-03-02 08:32:18 -08001979u32 rt6_multipath_hash(const struct net *net, const struct flowi6 *fl6,
1980 const struct sk_buff *skb, struct flow_keys *flkeys)
Jakub Sitnicki23aebda2017-08-23 09:58:29 +02001981{
1982 struct flow_keys hash_keys;
David Ahern9a2a5372018-03-02 08:32:15 -08001983 u32 mhash;
Jakub Sitnicki23aebda2017-08-23 09:58:29 +02001984
David S. Millerbbfa0472018-03-12 11:09:33 -04001985 switch (ip6_multipath_hash_policy(net)) {
David Ahernb4bac172018-03-02 08:32:18 -08001986 case 0:
1987 memset(&hash_keys, 0, sizeof(hash_keys));
1988 hash_keys.control.addr_type = FLOW_DISSECTOR_KEY_IPV6_ADDRS;
1989 if (skb) {
1990 ip6_multipath_l3_keys(skb, &hash_keys, flkeys);
1991 } else {
1992 hash_keys.addrs.v6addrs.src = fl6->saddr;
1993 hash_keys.addrs.v6addrs.dst = fl6->daddr;
1994 hash_keys.tags.flow_label = (__force u32)fl6->flowlabel;
1995 hash_keys.basic.ip_proto = fl6->flowi6_proto;
1996 }
1997 break;
1998 case 1:
1999 if (skb) {
2000 unsigned int flag = FLOW_DISSECTOR_F_STOP_AT_ENCAP;
2001 struct flow_keys keys;
2002
2003 /* short-circuit if we already have L4 hash present */
2004 if (skb->l4_hash)
2005 return skb_get_hash_raw(skb) >> 1;
2006
2007 memset(&hash_keys, 0, sizeof(hash_keys));
2008
2009 if (!flkeys) {
2010 skb_flow_dissect_flow_keys(skb, &keys, flag);
2011 flkeys = &keys;
2012 }
2013 hash_keys.control.addr_type = FLOW_DISSECTOR_KEY_IPV6_ADDRS;
2014 hash_keys.addrs.v6addrs.src = flkeys->addrs.v6addrs.src;
2015 hash_keys.addrs.v6addrs.dst = flkeys->addrs.v6addrs.dst;
2016 hash_keys.ports.src = flkeys->ports.src;
2017 hash_keys.ports.dst = flkeys->ports.dst;
2018 hash_keys.basic.ip_proto = flkeys->basic.ip_proto;
2019 } else {
2020 memset(&hash_keys, 0, sizeof(hash_keys));
2021 hash_keys.control.addr_type = FLOW_DISSECTOR_KEY_IPV6_ADDRS;
2022 hash_keys.addrs.v6addrs.src = fl6->saddr;
2023 hash_keys.addrs.v6addrs.dst = fl6->daddr;
2024 hash_keys.ports.src = fl6->fl6_sport;
2025 hash_keys.ports.dst = fl6->fl6_dport;
2026 hash_keys.basic.ip_proto = fl6->flowi6_proto;
2027 }
2028 break;
Jakub Sitnicki23aebda2017-08-23 09:58:29 +02002029 }
David Ahern9a2a5372018-03-02 08:32:15 -08002030 mhash = flow_hash_from_keys(&hash_keys);
Jakub Sitnicki23aebda2017-08-23 09:58:29 +02002031
David Ahern9a2a5372018-03-02 08:32:15 -08002032 return mhash >> 1;
Jakub Sitnicki23aebda2017-08-23 09:58:29 +02002033}
2034
Thomas Grafc71099a2006-08-04 23:20:06 -07002035void ip6_route_input(struct sk_buff *skb)
2036{
Eric Dumazetb71d1d42011-04-22 04:53:02 +00002037 const struct ipv6hdr *iph = ipv6_hdr(skb);
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09002038 struct net *net = dev_net(skb->dev);
Thomas Grafadaa70b2006-10-13 15:01:03 -07002039 int flags = RT6_LOOKUP_F_HAS_SADDR;
Jiri Benc904af042015-08-20 13:56:31 +02002040 struct ip_tunnel_info *tun_info;
David S. Miller4c9483b2011-03-12 16:22:43 -05002041 struct flowi6 fl6 = {
David Aherne0d56fd2016-09-10 12:09:57 -07002042 .flowi6_iif = skb->dev->ifindex,
David S. Miller4c9483b2011-03-12 16:22:43 -05002043 .daddr = iph->daddr,
2044 .saddr = iph->saddr,
YOSHIFUJI Hideaki / 吉藤英明6502ca52013-01-13 05:01:51 +00002045 .flowlabel = ip6_flowinfo(iph),
David S. Miller4c9483b2011-03-12 16:22:43 -05002046 .flowi6_mark = skb->mark,
2047 .flowi6_proto = iph->nexthdr,
Thomas Grafc71099a2006-08-04 23:20:06 -07002048 };
Roopa Prabhu5e5d6fe2018-02-28 22:43:22 -05002049 struct flow_keys *flkeys = NULL, _flkeys;
Thomas Grafadaa70b2006-10-13 15:01:03 -07002050
Jiri Benc904af042015-08-20 13:56:31 +02002051 tun_info = skb_tunnel_info(skb);
Jiri Benc46fa0622015-08-28 20:48:19 +02002052 if (tun_info && !(tun_info->mode & IP_TUNNEL_INFO_TX))
Jiri Benc904af042015-08-20 13:56:31 +02002053 fl6.flowi6_tun_key.tun_id = tun_info->key.tun_id;
Roopa Prabhu5e5d6fe2018-02-28 22:43:22 -05002054
2055 if (fib6_rules_early_flow_dissect(net, skb, &fl6, &_flkeys))
2056 flkeys = &_flkeys;
2057
Jakub Sitnicki23aebda2017-08-23 09:58:29 +02002058 if (unlikely(fl6.flowi6_proto == IPPROTO_ICMPV6))
David Ahernb4bac172018-03-02 08:32:18 -08002059 fl6.mp_hash = rt6_multipath_hash(net, &fl6, skb, flkeys);
Jiri Benc06e9d042015-08-20 13:56:26 +02002060 skb_dst_drop(skb);
David Ahernb75cc8f2018-03-02 08:32:17 -08002061 skb_dst_set(skb,
2062 ip6_route_input_lookup(net, skb->dev, &fl6, skb, flags));
Thomas Grafc71099a2006-08-04 23:20:06 -07002063}
2064
David Ahernb75cc8f2018-03-02 08:32:17 -08002065static struct rt6_info *ip6_pol_route_output(struct net *net,
2066 struct fib6_table *table,
2067 struct flowi6 *fl6,
2068 const struct sk_buff *skb,
2069 int flags)
Thomas Grafc71099a2006-08-04 23:20:06 -07002070{
David Ahernb75cc8f2018-03-02 08:32:17 -08002071 return ip6_pol_route(net, table, fl6->flowi6_oif, fl6, skb, flags);
Thomas Grafc71099a2006-08-04 23:20:06 -07002072}
2073
Paolo Abeni6f21c962016-01-29 12:30:19 +01002074struct dst_entry *ip6_route_output_flags(struct net *net, const struct sock *sk,
2075 struct flowi6 *fl6, int flags)
Thomas Grafc71099a2006-08-04 23:20:06 -07002076{
David Ahernd46a9d62015-10-21 08:42:22 -07002077 bool any_src;
Thomas Grafc71099a2006-08-04 23:20:06 -07002078
David Ahern4c1feac2016-09-10 12:09:56 -07002079 if (rt6_need_strict(&fl6->daddr)) {
2080 struct dst_entry *dst;
2081
2082 dst = l3mdev_link_scope_lookup(net, fl6);
2083 if (dst)
2084 return dst;
2085 }
David Ahernca254492015-10-12 11:47:10 -07002086
Pavel Emelyanov1fb94892012-08-08 21:53:36 +00002087 fl6->flowi6_iif = LOOPBACK_IFINDEX;
David McCullough4dc27d1c2012-06-25 15:42:26 +00002088
David Ahernd46a9d62015-10-21 08:42:22 -07002089 any_src = ipv6_addr_any(&fl6->saddr);
David Ahern741a11d2015-09-28 10:12:13 -07002090 if ((sk && sk->sk_bound_dev_if) || rt6_need_strict(&fl6->daddr) ||
David Ahernd46a9d62015-10-21 08:42:22 -07002091 (fl6->flowi6_oif && any_src))
YOSHIFUJI Hideaki77d16f42006-08-23 17:25:05 -07002092 flags |= RT6_LOOKUP_F_IFACE;
Thomas Grafc71099a2006-08-04 23:20:06 -07002093
David Ahernd46a9d62015-10-21 08:42:22 -07002094 if (!any_src)
Thomas Grafadaa70b2006-10-13 15:01:03 -07002095 flags |= RT6_LOOKUP_F_HAS_SADDR;
YOSHIFUJI Hideaki / 吉藤英明0c9a2ac2010-03-07 00:14:44 +00002096 else if (sk)
2097 flags |= rt6_srcprefs2flags(inet6_sk(sk)->srcprefs);
Thomas Grafadaa70b2006-10-13 15:01:03 -07002098
David Ahernb75cc8f2018-03-02 08:32:17 -08002099 return fib6_rule_lookup(net, fl6, NULL, flags, ip6_pol_route_output);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002100}
Paolo Abeni6f21c962016-01-29 12:30:19 +01002101EXPORT_SYMBOL_GPL(ip6_route_output_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102
David S. Miller2774c132011-03-01 14:59:04 -08002103struct dst_entry *ip6_blackhole_route(struct net *net, struct dst_entry *dst_orig)
David S. Miller14e50e52007-05-24 18:17:54 -07002104{
David S. Miller5c1e6aa2011-04-28 14:13:38 -07002105 struct rt6_info *rt, *ort = (struct rt6_info *) dst_orig;
Wei Wang1dbe32522017-06-17 10:42:26 -07002106 struct net_device *loopback_dev = net->loopback_dev;
David S. Miller14e50e52007-05-24 18:17:54 -07002107 struct dst_entry *new = NULL;
2108
Wei Wang1dbe32522017-06-17 10:42:26 -07002109 rt = dst_alloc(&ip6_dst_blackhole_ops, loopback_dev, 1,
Steffen Klassert62cf27e2017-10-09 08:39:43 +02002110 DST_OBSOLETE_DEAD, 0);
David S. Miller14e50e52007-05-24 18:17:54 -07002111 if (rt) {
Martin KaFai Lau0a1f5962015-10-15 16:39:58 -07002112 rt6_info_init(rt);
Wei Wang81eb8442017-10-06 12:06:11 -07002113 atomic_inc(&net->ipv6.rt6_stats->fib_rt_alloc);
Martin KaFai Lau0a1f5962015-10-15 16:39:58 -07002114
Changli Gaod8d1f302010-06-10 23:31:35 -07002115 new = &rt->dst;
David S. Miller14e50e52007-05-24 18:17:54 -07002116 new->__use = 1;
Herbert Xu352e5122007-11-13 21:34:06 -08002117 new->input = dst_discard;
Eric W. Biedermanede20592015-10-07 16:48:47 -05002118 new->output = dst_discard_out;
David S. Miller14e50e52007-05-24 18:17:54 -07002119
Martin KaFai Lau0a1f5962015-10-15 16:39:58 -07002120 dst_copy_metrics(new, &ort->dst);
David S. Miller14e50e52007-05-24 18:17:54 -07002121
Wei Wang1dbe32522017-06-17 10:42:26 -07002122 rt->rt6i_idev = in6_dev_get(loopback_dev);
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00002123 rt->rt6i_gateway = ort->rt6i_gateway;
Martin KaFai Lau0a1f5962015-10-15 16:39:58 -07002124 rt->rt6i_flags = ort->rt6i_flags & ~RTF_PCPU;
David S. Miller14e50e52007-05-24 18:17:54 -07002125 rt->rt6i_metric = 0;
2126
2127 memcpy(&rt->rt6i_dst, &ort->rt6i_dst, sizeof(struct rt6key));
2128#ifdef CONFIG_IPV6_SUBTREES
2129 memcpy(&rt->rt6i_src, &ort->rt6i_src, sizeof(struct rt6key));
2130#endif
David S. Miller14e50e52007-05-24 18:17:54 -07002131 }
2132
David S. Miller69ead7a2011-03-01 14:45:33 -08002133 dst_release(dst_orig);
2134 return new ? new : ERR_PTR(-ENOMEM);
David S. Miller14e50e52007-05-24 18:17:54 -07002135}
David S. Miller14e50e52007-05-24 18:17:54 -07002136
Linus Torvalds1da177e2005-04-16 15:20:36 -07002137/*
2138 * Destination cache support functions
2139 */
2140
David Ahern8d1c8022018-04-17 17:33:26 -07002141static bool fib6_check(struct fib6_info *f6i, u32 cookie)
David Ahern93531c62018-04-17 17:33:25 -07002142{
2143 u32 rt_cookie = 0;
2144
2145 if ((f6i && !rt6_get_cookie_safe(f6i, &rt_cookie)) ||
2146 rt_cookie != cookie)
2147 return false;
2148
2149 if (fib6_check_expired(f6i))
2150 return false;
2151
2152 return true;
2153}
2154
Martin KaFai Lau3da59bd2015-05-22 20:56:03 -07002155static struct dst_entry *rt6_check(struct rt6_info *rt, u32 cookie)
2156{
Steffen Klassert36143642017-08-25 09:05:42 +02002157 u32 rt_cookie = 0;
Wei Wangc5cff852017-08-21 09:47:10 -07002158
David Ahern93531c62018-04-17 17:33:25 -07002159 if ((rt->from && !rt6_get_cookie_safe(rt->from, &rt_cookie)) ||
2160 rt_cookie != cookie)
Martin KaFai Lau3da59bd2015-05-22 20:56:03 -07002161 return NULL;
2162
2163 if (rt6_check_expired(rt))
2164 return NULL;
2165
2166 return &rt->dst;
2167}
2168
2169static struct dst_entry *rt6_dst_from_check(struct rt6_info *rt, u32 cookie)
2170{
Martin KaFai Lau5973fb12015-11-11 11:51:07 -08002171 if (!__rt6_check_expired(rt) &&
2172 rt->dst.obsolete == DST_OBSOLETE_FORCE_CHK &&
David Ahern93531c62018-04-17 17:33:25 -07002173 fib6_check(rt->from, cookie))
Martin KaFai Lau3da59bd2015-05-22 20:56:03 -07002174 return &rt->dst;
2175 else
2176 return NULL;
2177}
2178
Linus Torvalds1da177e2005-04-16 15:20:36 -07002179static struct dst_entry *ip6_dst_check(struct dst_entry *dst, u32 cookie)
2180{
2181 struct rt6_info *rt;
2182
2183 rt = (struct rt6_info *) dst;
2184
Nicolas Dichtel6f3118b2012-09-10 22:09:46 +00002185 /* All IPV6 dsts are created with ->obsolete set to the value
2186 * DST_OBSOLETE_FORCE_CHK which forces validation calls down
2187 * into this function always.
2188 */
Hannes Frederic Sowae3bc10b2013-10-24 07:48:24 +02002189
Martin KaFai Lau02bcf4e2015-11-11 11:51:08 -08002190 if (rt->rt6i_flags & RTF_PCPU ||
David Miller3a2232e2017-11-28 15:40:40 -05002191 (unlikely(!list_empty(&rt->rt6i_uncached)) && rt->from))
Martin KaFai Lau3da59bd2015-05-22 20:56:03 -07002192 return rt6_dst_from_check(rt, cookie);
2193 else
2194 return rt6_check(rt, cookie);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002195}
2196
2197static struct dst_entry *ip6_negative_advice(struct dst_entry *dst)
2198{
2199 struct rt6_info *rt = (struct rt6_info *) dst;
2200
2201 if (rt) {
YOSHIFUJI Hideaki / 吉藤英明54c1a852010-03-28 07:15:45 +00002202 if (rt->rt6i_flags & RTF_CACHE) {
2203 if (rt6_check_expired(rt)) {
David Ahern93531c62018-04-17 17:33:25 -07002204 rt6_remove_exception_rt(rt);
YOSHIFUJI Hideaki / 吉藤英明54c1a852010-03-28 07:15:45 +00002205 dst = NULL;
2206 }
2207 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002208 dst_release(dst);
YOSHIFUJI Hideaki / 吉藤英明54c1a852010-03-28 07:15:45 +00002209 dst = NULL;
2210 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002211 }
YOSHIFUJI Hideaki / 吉藤英明54c1a852010-03-28 07:15:45 +00002212 return dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002213}
2214
2215static void ip6_link_failure(struct sk_buff *skb)
2216{
2217 struct rt6_info *rt;
2218
Alexey Dobriyan3ffe5332010-02-18 08:25:24 +00002219 icmpv6_send(skb, ICMPV6_DEST_UNREACH, ICMPV6_ADDR_UNREACH, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002220
Eric Dumazetadf30902009-06-02 05:19:30 +00002221 rt = (struct rt6_info *) skb_dst(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002222 if (rt) {
Hannes Frederic Sowa1eb4f752013-07-10 23:00:57 +02002223 if (rt->rt6i_flags & RTF_CACHE) {
Wei Wangad65a2f2017-06-17 10:42:35 -07002224 if (dst_hold_safe(&rt->dst))
David Ahern93531c62018-04-17 17:33:25 -07002225 rt6_remove_exception_rt(rt);
2226 } else if (rt->from) {
Wei Wangc5cff852017-08-21 09:47:10 -07002227 struct fib6_node *fn;
2228
2229 rcu_read_lock();
David Ahern93531c62018-04-17 17:33:25 -07002230 fn = rcu_dereference(rt->from->rt6i_node);
Wei Wangc5cff852017-08-21 09:47:10 -07002231 if (fn && (rt->rt6i_flags & RTF_DEFAULT))
2232 fn->fn_sernum = -1;
2233 rcu_read_unlock();
Hannes Frederic Sowa1eb4f752013-07-10 23:00:57 +02002234 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002235 }
2236}
2237
Martin KaFai Lau45e4fd22015-05-22 20:56:00 -07002238static void rt6_do_update_pmtu(struct rt6_info *rt, u32 mtu)
2239{
2240 struct net *net = dev_net(rt->dst.dev);
2241
David Ahernd4ead6b2018-04-17 17:33:16 -07002242 dst_metric_set(&rt->dst, RTAX_MTU, mtu);
Martin KaFai Lau45e4fd22015-05-22 20:56:00 -07002243 rt->rt6i_flags |= RTF_MODIFIED;
Martin KaFai Lau45e4fd22015-05-22 20:56:00 -07002244 rt6_update_expires(rt, net->ipv6.sysctl.ip6_rt_mtu_expires);
2245}
2246
Martin KaFai Lau0d3f6d22015-11-11 11:51:06 -08002247static bool rt6_cache_allowed_for_pmtu(const struct rt6_info *rt)
2248{
2249 return !(rt->rt6i_flags & RTF_CACHE) &&
Wei Wang4e587ea2017-08-25 15:03:10 -07002250 (rt->rt6i_flags & RTF_PCPU ||
2251 rcu_access_pointer(rt->rt6i_node));
Martin KaFai Lau0d3f6d22015-11-11 11:51:06 -08002252}
2253
Martin KaFai Lau45e4fd22015-05-22 20:56:00 -07002254static void __ip6_rt_update_pmtu(struct dst_entry *dst, const struct sock *sk,
2255 const struct ipv6hdr *iph, u32 mtu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002256{
Julian Anastasov0dec8792017-02-06 23:14:16 +02002257 const struct in6_addr *daddr, *saddr;
Ian Morris67ba4152014-08-24 21:53:10 +01002258 struct rt6_info *rt6 = (struct rt6_info *)dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002259
Martin KaFai Lau45e4fd22015-05-22 20:56:00 -07002260 if (rt6->rt6i_flags & RTF_LOCAL)
2261 return;
2262
Xin Long19bda362016-10-28 18:18:01 +08002263 if (dst_metric_locked(dst, RTAX_MTU))
2264 return;
2265
Julian Anastasov0dec8792017-02-06 23:14:16 +02002266 if (iph) {
2267 daddr = &iph->daddr;
2268 saddr = &iph->saddr;
2269 } else if (sk) {
2270 daddr = &sk->sk_v6_daddr;
2271 saddr = &inet6_sk(sk)->saddr;
2272 } else {
2273 daddr = NULL;
2274 saddr = NULL;
2275 }
2276 dst_confirm_neigh(dst, daddr);
Martin KaFai Lau45e4fd22015-05-22 20:56:00 -07002277 mtu = max_t(u32, mtu, IPV6_MIN_MTU);
2278 if (mtu >= dst_mtu(dst))
2279 return;
David S. Miller81aded22012-06-15 14:54:11 -07002280
Martin KaFai Lau0d3f6d22015-11-11 11:51:06 -08002281 if (!rt6_cache_allowed_for_pmtu(rt6)) {
Martin KaFai Lau45e4fd22015-05-22 20:56:00 -07002282 rt6_do_update_pmtu(rt6, mtu);
Wei Wang2b760fc2017-10-06 12:06:03 -07002283 /* update rt6_ex->stamp for cache */
2284 if (rt6->rt6i_flags & RTF_CACHE)
2285 rt6_update_exception_stamp_rt(rt6);
Julian Anastasov0dec8792017-02-06 23:14:16 +02002286 } else if (daddr) {
Martin KaFai Lau45e4fd22015-05-22 20:56:00 -07002287 struct rt6_info *nrt6;
Hagen Paul Pfeifer9d289712015-01-15 22:34:25 +01002288
David Ahernd4ead6b2018-04-17 17:33:16 -07002289 nrt6 = ip6_rt_cache_alloc(rt6->from, daddr, saddr);
Martin KaFai Lau45e4fd22015-05-22 20:56:00 -07002290 if (nrt6) {
2291 rt6_do_update_pmtu(nrt6, mtu);
David Ahernd4ead6b2018-04-17 17:33:16 -07002292 if (rt6_insert_exception(nrt6, rt6->from))
Wei Wang2b760fc2017-10-06 12:06:03 -07002293 dst_release_immediate(&nrt6->dst);
Martin KaFai Lau45e4fd22015-05-22 20:56:00 -07002294 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002295 }
2296}
2297
Martin KaFai Lau45e4fd22015-05-22 20:56:00 -07002298static void ip6_rt_update_pmtu(struct dst_entry *dst, struct sock *sk,
2299 struct sk_buff *skb, u32 mtu)
2300{
2301 __ip6_rt_update_pmtu(dst, sk, skb ? ipv6_hdr(skb) : NULL, mtu);
2302}
2303
David S. Miller42ae66c2012-06-15 20:01:57 -07002304void ip6_update_pmtu(struct sk_buff *skb, struct net *net, __be32 mtu,
Lorenzo Colittie2d118a2016-11-04 02:23:43 +09002305 int oif, u32 mark, kuid_t uid)
David S. Miller81aded22012-06-15 14:54:11 -07002306{
2307 const struct ipv6hdr *iph = (struct ipv6hdr *) skb->data;
2308 struct dst_entry *dst;
2309 struct flowi6 fl6;
2310
2311 memset(&fl6, 0, sizeof(fl6));
2312 fl6.flowi6_oif = oif;
Lorenzo Colitti1b3c61d2014-05-13 10:17:34 -07002313 fl6.flowi6_mark = mark ? mark : IP6_REPLY_MARK(net, skb->mark);
David S. Miller81aded22012-06-15 14:54:11 -07002314 fl6.daddr = iph->daddr;
2315 fl6.saddr = iph->saddr;
YOSHIFUJI Hideaki / 吉藤英明6502ca52013-01-13 05:01:51 +00002316 fl6.flowlabel = ip6_flowinfo(iph);
Lorenzo Colittie2d118a2016-11-04 02:23:43 +09002317 fl6.flowi6_uid = uid;
David S. Miller81aded22012-06-15 14:54:11 -07002318
2319 dst = ip6_route_output(net, NULL, &fl6);
2320 if (!dst->error)
Martin KaFai Lau45e4fd22015-05-22 20:56:00 -07002321 __ip6_rt_update_pmtu(dst, NULL, iph, ntohl(mtu));
David S. Miller81aded22012-06-15 14:54:11 -07002322 dst_release(dst);
2323}
2324EXPORT_SYMBOL_GPL(ip6_update_pmtu);
2325
2326void ip6_sk_update_pmtu(struct sk_buff *skb, struct sock *sk, __be32 mtu)
2327{
Martin KaFai Lau33c162a2016-04-11 15:29:36 -07002328 struct dst_entry *dst;
2329
David S. Miller81aded22012-06-15 14:54:11 -07002330 ip6_update_pmtu(skb, sock_net(sk), mtu,
Lorenzo Colittie2d118a2016-11-04 02:23:43 +09002331 sk->sk_bound_dev_if, sk->sk_mark, sk->sk_uid);
Martin KaFai Lau33c162a2016-04-11 15:29:36 -07002332
2333 dst = __sk_dst_get(sk);
2334 if (!dst || !dst->obsolete ||
2335 dst->ops->check(dst, inet6_sk(sk)->dst_cookie))
2336 return;
2337
2338 bh_lock_sock(sk);
2339 if (!sock_owned_by_user(sk) && !ipv6_addr_v4mapped(&sk->sk_v6_daddr))
2340 ip6_datagram_dst_update(sk, false);
2341 bh_unlock_sock(sk);
David S. Miller81aded22012-06-15 14:54:11 -07002342}
2343EXPORT_SYMBOL_GPL(ip6_sk_update_pmtu);
2344
Alexey Kodanev7d6850f2018-04-03 15:00:07 +03002345void ip6_sk_dst_store_flow(struct sock *sk, struct dst_entry *dst,
2346 const struct flowi6 *fl6)
2347{
2348#ifdef CONFIG_IPV6_SUBTREES
2349 struct ipv6_pinfo *np = inet6_sk(sk);
2350#endif
2351
2352 ip6_dst_store(sk, dst,
2353 ipv6_addr_equal(&fl6->daddr, &sk->sk_v6_daddr) ?
2354 &sk->sk_v6_daddr : NULL,
2355#ifdef CONFIG_IPV6_SUBTREES
2356 ipv6_addr_equal(&fl6->saddr, &np->saddr) ?
2357 &np->saddr :
2358#endif
2359 NULL);
2360}
2361
Duan Jiongb55b76b2013-09-04 19:44:21 +08002362/* Handle redirects */
2363struct ip6rd_flowi {
2364 struct flowi6 fl6;
2365 struct in6_addr gateway;
2366};
2367
2368static struct rt6_info *__ip6_route_redirect(struct net *net,
2369 struct fib6_table *table,
2370 struct flowi6 *fl6,
David Ahernb75cc8f2018-03-02 08:32:17 -08002371 const struct sk_buff *skb,
Duan Jiongb55b76b2013-09-04 19:44:21 +08002372 int flags)
2373{
2374 struct ip6rd_flowi *rdfl = (struct ip6rd_flowi *)fl6;
David Ahern23fb93a2018-04-17 17:33:23 -07002375 struct rt6_info *ret = NULL, *rt_cache;
David Ahern8d1c8022018-04-17 17:33:26 -07002376 struct fib6_info *rt;
Duan Jiongb55b76b2013-09-04 19:44:21 +08002377 struct fib6_node *fn;
2378
2379 /* Get the "current" route for this destination and
Alexander Alemayhu67c408c2017-01-07 23:53:00 +01002380 * check if the redirect has come from appropriate router.
Duan Jiongb55b76b2013-09-04 19:44:21 +08002381 *
2382 * RFC 4861 specifies that redirects should only be
2383 * accepted if they come from the nexthop to the target.
2384 * Due to the way the routes are chosen, this notion
2385 * is a bit fuzzy and one might need to check all possible
2386 * routes.
2387 */
2388
Wei Wang66f5d6c2017-10-06 12:06:10 -07002389 rcu_read_lock();
Duan Jiongb55b76b2013-09-04 19:44:21 +08002390 fn = fib6_lookup(&table->tb6_root, &fl6->daddr, &fl6->saddr);
2391restart:
Wei Wang66f5d6c2017-10-06 12:06:10 -07002392 for_each_fib6_node_rt_rcu(fn) {
David Ahern5e670d82018-04-17 17:33:14 -07002393 if (rt->fib6_nh.nh_flags & RTNH_F_DEAD)
Ido Schimmel8067bb82018-01-07 12:45:09 +02002394 continue;
David Ahern14895682018-04-17 17:33:17 -07002395 if (fib6_check_expired(rt))
Duan Jiongb55b76b2013-09-04 19:44:21 +08002396 continue;
David Ahern6edb3c92018-04-17 17:33:15 -07002397 if (rt->rt6i_flags & RTF_REJECT)
Duan Jiongb55b76b2013-09-04 19:44:21 +08002398 break;
2399 if (!(rt->rt6i_flags & RTF_GATEWAY))
2400 continue;
David Ahern5e670d82018-04-17 17:33:14 -07002401 if (fl6->flowi6_oif != rt->fib6_nh.nh_dev->ifindex)
Duan Jiongb55b76b2013-09-04 19:44:21 +08002402 continue;
Wei Wang2b760fc2017-10-06 12:06:03 -07002403 /* rt_cache's gateway might be different from its 'parent'
2404 * in the case of an ip redirect.
2405 * So we keep searching in the exception table if the gateway
2406 * is different.
2407 */
David Ahern5e670d82018-04-17 17:33:14 -07002408 if (!ipv6_addr_equal(&rdfl->gateway, &rt->fib6_nh.nh_gw)) {
Wei Wang2b760fc2017-10-06 12:06:03 -07002409 rt_cache = rt6_find_cached_rt(rt,
2410 &fl6->daddr,
2411 &fl6->saddr);
2412 if (rt_cache &&
2413 ipv6_addr_equal(&rdfl->gateway,
2414 &rt_cache->rt6i_gateway)) {
David Ahern23fb93a2018-04-17 17:33:23 -07002415 ret = rt_cache;
Wei Wang2b760fc2017-10-06 12:06:03 -07002416 break;
2417 }
Duan Jiongb55b76b2013-09-04 19:44:21 +08002418 continue;
Wei Wang2b760fc2017-10-06 12:06:03 -07002419 }
Duan Jiongb55b76b2013-09-04 19:44:21 +08002420 break;
2421 }
2422
2423 if (!rt)
David Ahern421842e2018-04-17 17:33:18 -07002424 rt = net->ipv6.fib6_null_entry;
David Ahern6edb3c92018-04-17 17:33:15 -07002425 else if (rt->rt6i_flags & RTF_REJECT) {
David Ahern23fb93a2018-04-17 17:33:23 -07002426 ret = net->ipv6.ip6_null_entry;
Martin KaFai Laub0a1ba52015-01-20 19:16:02 -08002427 goto out;
2428 }
2429
David Ahern421842e2018-04-17 17:33:18 -07002430 if (rt == net->ipv6.fib6_null_entry) {
Martin KaFai Laua3c00e42014-10-20 13:42:43 -07002431 fn = fib6_backtrack(fn, &fl6->saddr);
2432 if (fn)
2433 goto restart;
Duan Jiongb55b76b2013-09-04 19:44:21 +08002434 }
Martin KaFai Laua3c00e42014-10-20 13:42:43 -07002435
Martin KaFai Laub0a1ba52015-01-20 19:16:02 -08002436out:
David Ahern23fb93a2018-04-17 17:33:23 -07002437 if (ret)
2438 dst_hold(&ret->dst);
2439 else
2440 ret = ip6_create_rt_rcu(rt);
Duan Jiongb55b76b2013-09-04 19:44:21 +08002441
Wei Wang66f5d6c2017-10-06 12:06:10 -07002442 rcu_read_unlock();
Duan Jiongb55b76b2013-09-04 19:44:21 +08002443
David Ahern23fb93a2018-04-17 17:33:23 -07002444 trace_fib6_table_lookup(net, ret, table, fl6);
2445 return ret;
Duan Jiongb55b76b2013-09-04 19:44:21 +08002446};
2447
2448static struct dst_entry *ip6_route_redirect(struct net *net,
David Ahernb75cc8f2018-03-02 08:32:17 -08002449 const struct flowi6 *fl6,
2450 const struct sk_buff *skb,
2451 const struct in6_addr *gateway)
Duan Jiongb55b76b2013-09-04 19:44:21 +08002452{
2453 int flags = RT6_LOOKUP_F_HAS_SADDR;
2454 struct ip6rd_flowi rdfl;
2455
2456 rdfl.fl6 = *fl6;
2457 rdfl.gateway = *gateway;
2458
David Ahernb75cc8f2018-03-02 08:32:17 -08002459 return fib6_rule_lookup(net, &rdfl.fl6, skb,
Duan Jiongb55b76b2013-09-04 19:44:21 +08002460 flags, __ip6_route_redirect);
2461}
2462
Lorenzo Colittie2d118a2016-11-04 02:23:43 +09002463void ip6_redirect(struct sk_buff *skb, struct net *net, int oif, u32 mark,
2464 kuid_t uid)
David S. Miller3a5ad2e2012-07-12 00:08:07 -07002465{
2466 const struct ipv6hdr *iph = (struct ipv6hdr *) skb->data;
2467 struct dst_entry *dst;
2468 struct flowi6 fl6;
2469
2470 memset(&fl6, 0, sizeof(fl6));
Julian Anastasove374c612014-04-28 10:51:56 +03002471 fl6.flowi6_iif = LOOPBACK_IFINDEX;
David S. Miller3a5ad2e2012-07-12 00:08:07 -07002472 fl6.flowi6_oif = oif;
2473 fl6.flowi6_mark = mark;
David S. Miller3a5ad2e2012-07-12 00:08:07 -07002474 fl6.daddr = iph->daddr;
2475 fl6.saddr = iph->saddr;
YOSHIFUJI Hideaki / 吉藤英明6502ca52013-01-13 05:01:51 +00002476 fl6.flowlabel = ip6_flowinfo(iph);
Lorenzo Colittie2d118a2016-11-04 02:23:43 +09002477 fl6.flowi6_uid = uid;
David S. Miller3a5ad2e2012-07-12 00:08:07 -07002478
David Ahernb75cc8f2018-03-02 08:32:17 -08002479 dst = ip6_route_redirect(net, &fl6, skb, &ipv6_hdr(skb)->saddr);
Duan Jiongb55b76b2013-09-04 19:44:21 +08002480 rt6_do_redirect(dst, NULL, skb);
David S. Miller3a5ad2e2012-07-12 00:08:07 -07002481 dst_release(dst);
2482}
2483EXPORT_SYMBOL_GPL(ip6_redirect);
2484
Duan Jiongc92a59e2013-08-22 12:07:35 +08002485void ip6_redirect_no_header(struct sk_buff *skb, struct net *net, int oif,
2486 u32 mark)
2487{
2488 const struct ipv6hdr *iph = ipv6_hdr(skb);
2489 const struct rd_msg *msg = (struct rd_msg *)icmp6_hdr(skb);
2490 struct dst_entry *dst;
2491 struct flowi6 fl6;
2492
2493 memset(&fl6, 0, sizeof(fl6));
Julian Anastasove374c612014-04-28 10:51:56 +03002494 fl6.flowi6_iif = LOOPBACK_IFINDEX;
Duan Jiongc92a59e2013-08-22 12:07:35 +08002495 fl6.flowi6_oif = oif;
2496 fl6.flowi6_mark = mark;
Duan Jiongc92a59e2013-08-22 12:07:35 +08002497 fl6.daddr = msg->dest;
2498 fl6.saddr = iph->daddr;
Lorenzo Colittie2d118a2016-11-04 02:23:43 +09002499 fl6.flowi6_uid = sock_net_uid(net, NULL);
Duan Jiongc92a59e2013-08-22 12:07:35 +08002500
David Ahernb75cc8f2018-03-02 08:32:17 -08002501 dst = ip6_route_redirect(net, &fl6, skb, &iph->saddr);
Duan Jiongb55b76b2013-09-04 19:44:21 +08002502 rt6_do_redirect(dst, NULL, skb);
Duan Jiongc92a59e2013-08-22 12:07:35 +08002503 dst_release(dst);
2504}
2505
David S. Miller3a5ad2e2012-07-12 00:08:07 -07002506void ip6_sk_redirect(struct sk_buff *skb, struct sock *sk)
2507{
Lorenzo Colittie2d118a2016-11-04 02:23:43 +09002508 ip6_redirect(skb, sock_net(sk), sk->sk_bound_dev_if, sk->sk_mark,
2509 sk->sk_uid);
David S. Miller3a5ad2e2012-07-12 00:08:07 -07002510}
2511EXPORT_SYMBOL_GPL(ip6_sk_redirect);
2512
David S. Miller0dbaee32010-12-13 12:52:14 -08002513static unsigned int ip6_default_advmss(const struct dst_entry *dst)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002514{
David S. Miller0dbaee32010-12-13 12:52:14 -08002515 struct net_device *dev = dst->dev;
2516 unsigned int mtu = dst_mtu(dst);
2517 struct net *net = dev_net(dev);
2518
Linus Torvalds1da177e2005-04-16 15:20:36 -07002519 mtu -= sizeof(struct ipv6hdr) + sizeof(struct tcphdr);
2520
Daniel Lezcano55786892008-03-04 13:47:47 -08002521 if (mtu < net->ipv6.sysctl.ip6_rt_min_advmss)
2522 mtu = net->ipv6.sysctl.ip6_rt_min_advmss;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002523
2524 /*
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002525 * Maximal non-jumbo IPv6 payload is IPV6_MAXPLEN and
2526 * corresponding MSS is IPV6_MAXPLEN - tcp_header_size.
2527 * IPV6_MAXPLEN is also valid and means: "any MSS,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002528 * rely only on pmtu discovery"
2529 */
2530 if (mtu > IPV6_MAXPLEN - sizeof(struct tcphdr))
2531 mtu = IPV6_MAXPLEN;
2532 return mtu;
2533}
2534
Steffen Klassertebb762f2011-11-23 02:12:51 +00002535static unsigned int ip6_mtu(const struct dst_entry *dst)
David S. Millerd33e4552010-12-14 13:01:14 -08002536{
David S. Millerd33e4552010-12-14 13:01:14 -08002537 struct inet6_dev *idev;
David Ahernd4ead6b2018-04-17 17:33:16 -07002538 unsigned int mtu;
Steffen Klassert618f9bc2011-11-23 02:13:31 +00002539
Martin KaFai Lau4b32b5a2015-04-28 13:03:06 -07002540 mtu = dst_metric_raw(dst, RTAX_MTU);
2541 if (mtu)
2542 goto out;
2543
Steffen Klassert618f9bc2011-11-23 02:13:31 +00002544 mtu = IPV6_MIN_MTU;
David S. Millerd33e4552010-12-14 13:01:14 -08002545
2546 rcu_read_lock();
2547 idev = __in6_dev_get(dst->dev);
2548 if (idev)
2549 mtu = idev->cnf.mtu6;
2550 rcu_read_unlock();
2551
Eric Dumazet30f78d82014-04-10 21:23:36 -07002552out:
Roopa Prabhu14972cb2016-08-24 20:10:43 -07002553 mtu = min_t(unsigned int, mtu, IP6_MAX_MTU);
2554
2555 return mtu - lwtunnel_headroom(dst->lwtstate, mtu);
David S. Millerd33e4552010-12-14 13:01:14 -08002556}
2557
YOSHIFUJI Hideaki3b009442007-12-06 16:11:48 -08002558struct dst_entry *icmp6_dst_alloc(struct net_device *dev,
David S. Miller87a11572011-12-06 17:04:13 -05002559 struct flowi6 *fl6)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002560{
David S. Miller87a11572011-12-06 17:04:13 -05002561 struct dst_entry *dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002562 struct rt6_info *rt;
2563 struct inet6_dev *idev = in6_dev_get(dev);
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09002564 struct net *net = dev_net(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002565
David S. Miller38308472011-12-03 18:02:47 -05002566 if (unlikely(!idev))
Eric Dumazet122bdf62012-03-14 21:13:11 +00002567 return ERR_PTR(-ENODEV);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002568
Martin KaFai Lauad706862015-08-14 11:05:52 -07002569 rt = ip6_dst_alloc(net, dev, 0);
David S. Miller38308472011-12-03 18:02:47 -05002570 if (unlikely(!rt)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002571 in6_dev_put(idev);
David S. Miller87a11572011-12-06 17:04:13 -05002572 dst = ERR_PTR(-ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002573 goto out;
2574 }
2575
Yan, Zheng8e2ec632011-09-05 21:34:30 +00002576 rt->dst.flags |= DST_HOST;
Brendan McGrath588753f2017-12-13 22:14:57 +11002577 rt->dst.input = ip6_input;
Yan, Zheng8e2ec632011-09-05 21:34:30 +00002578 rt->dst.output = ip6_output;
Julian Anastasov550bab42013-10-20 15:43:04 +03002579 rt->rt6i_gateway = fl6->daddr;
David S. Miller87a11572011-12-06 17:04:13 -05002580 rt->rt6i_dst.addr = fl6->daddr;
Yan, Zheng8e2ec632011-09-05 21:34:30 +00002581 rt->rt6i_dst.plen = 128;
2582 rt->rt6i_idev = idev;
Li RongQing14edd872012-10-24 14:01:18 +08002583 dst_metric_set(&rt->dst, RTAX_HOPLIMIT, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002584
Ido Schimmel4c981e22018-01-07 12:45:04 +02002585 /* Add this dst into uncached_list so that rt6_disable_ip() can
Wei Wang587fea72017-06-17 10:42:36 -07002586 * do proper release of the net_device
2587 */
2588 rt6_uncached_list_add(rt);
Wei Wang81eb8442017-10-06 12:06:11 -07002589 atomic_inc(&net->ipv6.rt6_stats->fib_rt_uncache);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002590
David S. Miller87a11572011-12-06 17:04:13 -05002591 dst = xfrm_lookup(net, &rt->dst, flowi6_to_flowi(fl6), NULL, 0);
2592
Linus Torvalds1da177e2005-04-16 15:20:36 -07002593out:
David S. Miller87a11572011-12-06 17:04:13 -05002594 return dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002595}
2596
Daniel Lezcano569d3642008-01-18 03:56:57 -08002597static int ip6_dst_gc(struct dst_ops *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002598{
Alexey Dobriyan86393e52009-08-29 01:34:49 +00002599 struct net *net = container_of(ops, struct net, ipv6.ip6_dst_ops);
Daniel Lezcano7019b782008-03-04 13:50:14 -08002600 int rt_min_interval = net->ipv6.sysctl.ip6_rt_gc_min_interval;
2601 int rt_max_size = net->ipv6.sysctl.ip6_rt_max_size;
2602 int rt_elasticity = net->ipv6.sysctl.ip6_rt_gc_elasticity;
2603 int rt_gc_timeout = net->ipv6.sysctl.ip6_rt_gc_timeout;
2604 unsigned long rt_last_gc = net->ipv6.ip6_rt_last_gc;
Eric Dumazetfc66f952010-10-08 06:37:34 +00002605 int entries;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002606
Eric Dumazetfc66f952010-10-08 06:37:34 +00002607 entries = dst_entries_get_fast(ops);
Michal Kubeček49a18d82013-08-01 10:04:24 +02002608 if (time_after(rt_last_gc + rt_min_interval, jiffies) &&
Eric Dumazetfc66f952010-10-08 06:37:34 +00002609 entries <= rt_max_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002610 goto out;
2611
Benjamin Thery6891a342008-03-04 13:49:47 -08002612 net->ipv6.ip6_rt_gc_expire++;
Li RongQing14956642014-05-19 17:30:28 +08002613 fib6_run_gc(net->ipv6.ip6_rt_gc_expire, net, true);
Eric Dumazetfc66f952010-10-08 06:37:34 +00002614 entries = dst_entries_get_slow(ops);
2615 if (entries < ops->gc_thresh)
Daniel Lezcano7019b782008-03-04 13:50:14 -08002616 net->ipv6.ip6_rt_gc_expire = rt_gc_timeout>>1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002617out:
Daniel Lezcano7019b782008-03-04 13:50:14 -08002618 net->ipv6.ip6_rt_gc_expire -= net->ipv6.ip6_rt_gc_expire>>rt_elasticity;
Eric Dumazetfc66f952010-10-08 06:37:34 +00002619 return entries > rt_max_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002620}
2621
David Ahern8d1c8022018-04-17 17:33:26 -07002622static int ip6_convert_metrics(struct net *net, struct fib6_info *rt,
David Ahernd4ead6b2018-04-17 17:33:16 -07002623 struct fib6_config *cfg)
Florian Westphale715b6d2015-01-05 23:57:44 +01002624{
David Ahernd4ead6b2018-04-17 17:33:16 -07002625 int err = 0;
Florian Westphale715b6d2015-01-05 23:57:44 +01002626
David Ahernd4ead6b2018-04-17 17:33:16 -07002627 if (cfg->fc_mx) {
2628 rt->fib6_metrics = kzalloc(sizeof(*rt->fib6_metrics),
2629 GFP_KERNEL);
2630 if (unlikely(!rt->fib6_metrics))
2631 return -ENOMEM;
Florian Westphale715b6d2015-01-05 23:57:44 +01002632
David Ahernd4ead6b2018-04-17 17:33:16 -07002633 refcount_set(&rt->fib6_metrics->refcnt, 1);
Florian Westphale715b6d2015-01-05 23:57:44 +01002634
David Ahernd4ead6b2018-04-17 17:33:16 -07002635 err = ip_metrics_convert(net, cfg->fc_mx, cfg->fc_mx_len,
2636 rt->fib6_metrics->metrics);
Florian Westphale715b6d2015-01-05 23:57:44 +01002637 }
2638
David Ahernd4ead6b2018-04-17 17:33:16 -07002639 return err;
Florian Westphale715b6d2015-01-05 23:57:44 +01002640}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002641
David Ahern8c145862016-04-24 21:26:04 -07002642static struct rt6_info *ip6_nh_lookup_table(struct net *net,
2643 struct fib6_config *cfg,
David Ahernf4797b32018-01-25 16:55:08 -08002644 const struct in6_addr *gw_addr,
2645 u32 tbid, int flags)
David Ahern8c145862016-04-24 21:26:04 -07002646{
2647 struct flowi6 fl6 = {
2648 .flowi6_oif = cfg->fc_ifindex,
2649 .daddr = *gw_addr,
2650 .saddr = cfg->fc_prefsrc,
2651 };
2652 struct fib6_table *table;
2653 struct rt6_info *rt;
David Ahern8c145862016-04-24 21:26:04 -07002654
David Ahernf4797b32018-01-25 16:55:08 -08002655 table = fib6_get_table(net, tbid);
David Ahern8c145862016-04-24 21:26:04 -07002656 if (!table)
2657 return NULL;
2658
2659 if (!ipv6_addr_any(&cfg->fc_prefsrc))
2660 flags |= RT6_LOOKUP_F_HAS_SADDR;
2661
David Ahernf4797b32018-01-25 16:55:08 -08002662 flags |= RT6_LOOKUP_F_IGNORE_LINKSTATE;
David Ahernb75cc8f2018-03-02 08:32:17 -08002663 rt = ip6_pol_route(net, table, cfg->fc_ifindex, &fl6, NULL, flags);
David Ahern8c145862016-04-24 21:26:04 -07002664
2665 /* if table lookup failed, fall back to full lookup */
2666 if (rt == net->ipv6.ip6_null_entry) {
2667 ip6_rt_put(rt);
2668 rt = NULL;
2669 }
2670
2671 return rt;
2672}
2673
David Ahernfc1e64e2018-01-25 16:55:09 -08002674static int ip6_route_check_nh_onlink(struct net *net,
2675 struct fib6_config *cfg,
David Ahern9fbb7042018-03-13 08:29:36 -07002676 const struct net_device *dev,
David Ahernfc1e64e2018-01-25 16:55:09 -08002677 struct netlink_ext_ack *extack)
2678{
David Ahern44750f82018-02-06 13:17:06 -08002679 u32 tbid = l3mdev_fib_table(dev) ? : RT_TABLE_MAIN;
David Ahernfc1e64e2018-01-25 16:55:09 -08002680 const struct in6_addr *gw_addr = &cfg->fc_gateway;
2681 u32 flags = RTF_LOCAL | RTF_ANYCAST | RTF_REJECT;
2682 struct rt6_info *grt;
2683 int err;
2684
2685 err = 0;
2686 grt = ip6_nh_lookup_table(net, cfg, gw_addr, tbid, 0);
2687 if (grt) {
David Ahern58e354c2018-02-06 12:14:12 -08002688 if (!grt->dst.error &&
2689 (grt->rt6i_flags & flags || dev != grt->dst.dev)) {
David Ahern44750f82018-02-06 13:17:06 -08002690 NL_SET_ERR_MSG(extack,
2691 "Nexthop has invalid gateway or device mismatch");
David Ahernfc1e64e2018-01-25 16:55:09 -08002692 err = -EINVAL;
2693 }
2694
2695 ip6_rt_put(grt);
2696 }
2697
2698 return err;
2699}
2700
David Ahern1edce992018-01-25 16:55:07 -08002701static int ip6_route_check_nh(struct net *net,
2702 struct fib6_config *cfg,
2703 struct net_device **_dev,
2704 struct inet6_dev **idev)
2705{
2706 const struct in6_addr *gw_addr = &cfg->fc_gateway;
2707 struct net_device *dev = _dev ? *_dev : NULL;
2708 struct rt6_info *grt = NULL;
2709 int err = -EHOSTUNREACH;
2710
2711 if (cfg->fc_table) {
David Ahernf4797b32018-01-25 16:55:08 -08002712 int flags = RT6_LOOKUP_F_IFACE;
2713
2714 grt = ip6_nh_lookup_table(net, cfg, gw_addr,
2715 cfg->fc_table, flags);
David Ahern1edce992018-01-25 16:55:07 -08002716 if (grt) {
2717 if (grt->rt6i_flags & RTF_GATEWAY ||
2718 (dev && dev != grt->dst.dev)) {
2719 ip6_rt_put(grt);
2720 grt = NULL;
2721 }
2722 }
2723 }
2724
2725 if (!grt)
David Ahernb75cc8f2018-03-02 08:32:17 -08002726 grt = rt6_lookup(net, gw_addr, NULL, cfg->fc_ifindex, NULL, 1);
David Ahern1edce992018-01-25 16:55:07 -08002727
2728 if (!grt)
2729 goto out;
2730
2731 if (dev) {
2732 if (dev != grt->dst.dev) {
2733 ip6_rt_put(grt);
2734 goto out;
2735 }
2736 } else {
2737 *_dev = dev = grt->dst.dev;
2738 *idev = grt->rt6i_idev;
2739 dev_hold(dev);
2740 in6_dev_hold(grt->rt6i_idev);
2741 }
2742
2743 if (!(grt->rt6i_flags & RTF_GATEWAY))
2744 err = 0;
2745
2746 ip6_rt_put(grt);
2747
2748out:
2749 return err;
2750}
2751
David Ahern9fbb7042018-03-13 08:29:36 -07002752static int ip6_validate_gw(struct net *net, struct fib6_config *cfg,
2753 struct net_device **_dev, struct inet6_dev **idev,
2754 struct netlink_ext_ack *extack)
2755{
2756 const struct in6_addr *gw_addr = &cfg->fc_gateway;
2757 int gwa_type = ipv6_addr_type(gw_addr);
David Ahern232378e2018-03-13 08:29:37 -07002758 bool skip_dev = gwa_type & IPV6_ADDR_LINKLOCAL ? false : true;
David Ahern9fbb7042018-03-13 08:29:36 -07002759 const struct net_device *dev = *_dev;
David Ahern232378e2018-03-13 08:29:37 -07002760 bool need_addr_check = !dev;
David Ahern9fbb7042018-03-13 08:29:36 -07002761 int err = -EINVAL;
2762
2763 /* if gw_addr is local we will fail to detect this in case
2764 * address is still TENTATIVE (DAD in progress). rt6_lookup()
2765 * will return already-added prefix route via interface that
2766 * prefix route was assigned to, which might be non-loopback.
2767 */
David Ahern232378e2018-03-13 08:29:37 -07002768 if (dev &&
2769 ipv6_chk_addr_and_flags(net, gw_addr, dev, skip_dev, 0, 0)) {
2770 NL_SET_ERR_MSG(extack, "Gateway can not be a local address");
David Ahern9fbb7042018-03-13 08:29:36 -07002771 goto out;
2772 }
2773
2774 if (gwa_type != (IPV6_ADDR_LINKLOCAL | IPV6_ADDR_UNICAST)) {
2775 /* IPv6 strictly inhibits using not link-local
2776 * addresses as nexthop address.
2777 * Otherwise, router will not able to send redirects.
2778 * It is very good, but in some (rare!) circumstances
2779 * (SIT, PtP, NBMA NOARP links) it is handy to allow
2780 * some exceptions. --ANK
2781 * We allow IPv4-mapped nexthops to support RFC4798-type
2782 * addressing
2783 */
2784 if (!(gwa_type & (IPV6_ADDR_UNICAST | IPV6_ADDR_MAPPED))) {
2785 NL_SET_ERR_MSG(extack, "Invalid gateway address");
2786 goto out;
2787 }
2788
2789 if (cfg->fc_flags & RTNH_F_ONLINK)
2790 err = ip6_route_check_nh_onlink(net, cfg, dev, extack);
2791 else
2792 err = ip6_route_check_nh(net, cfg, _dev, idev);
2793
2794 if (err)
2795 goto out;
2796 }
2797
2798 /* reload in case device was changed */
2799 dev = *_dev;
2800
2801 err = -EINVAL;
2802 if (!dev) {
2803 NL_SET_ERR_MSG(extack, "Egress device not specified");
2804 goto out;
2805 } else if (dev->flags & IFF_LOOPBACK) {
2806 NL_SET_ERR_MSG(extack,
2807 "Egress device can not be loopback device for this route");
2808 goto out;
2809 }
David Ahern232378e2018-03-13 08:29:37 -07002810
2811 /* if we did not check gw_addr above, do so now that the
2812 * egress device has been resolved.
2813 */
2814 if (need_addr_check &&
2815 ipv6_chk_addr_and_flags(net, gw_addr, dev, skip_dev, 0, 0)) {
2816 NL_SET_ERR_MSG(extack, "Gateway can not be a local address");
2817 goto out;
2818 }
2819
David Ahern9fbb7042018-03-13 08:29:36 -07002820 err = 0;
2821out:
2822 return err;
2823}
2824
David Ahern8d1c8022018-04-17 17:33:26 -07002825static struct fib6_info *ip6_route_info_create(struct fib6_config *cfg,
David Ahernacb54e32018-04-17 17:33:22 -07002826 gfp_t gfp_flags,
David Ahern333c4302017-05-21 10:12:04 -06002827 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002828{
Daniel Lezcano55786892008-03-04 13:47:47 -08002829 struct net *net = cfg->fc_nlinfo.nl_net;
David Ahern8d1c8022018-04-17 17:33:26 -07002830 struct fib6_info *rt = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002831 struct net_device *dev = NULL;
2832 struct inet6_dev *idev = NULL;
Thomas Grafc71099a2006-08-04 23:20:06 -07002833 struct fib6_table *table;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002834 int addr_type;
Roopa Prabhu8c5b83f2015-10-10 08:26:36 -07002835 int err = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002836
David Ahern557c44b2017-04-19 14:19:43 -07002837 /* RTF_PCPU is an internal flag; can not be set by userspace */
David Ahernd5d531c2017-05-21 10:12:05 -06002838 if (cfg->fc_flags & RTF_PCPU) {
2839 NL_SET_ERR_MSG(extack, "Userspace can not set RTF_PCPU");
David Ahern557c44b2017-04-19 14:19:43 -07002840 goto out;
David Ahernd5d531c2017-05-21 10:12:05 -06002841 }
David Ahern557c44b2017-04-19 14:19:43 -07002842
Wei Wang2ea23522017-10-27 17:30:12 -07002843 /* RTF_CACHE is an internal flag; can not be set by userspace */
2844 if (cfg->fc_flags & RTF_CACHE) {
2845 NL_SET_ERR_MSG(extack, "Userspace can not set RTF_CACHE");
2846 goto out;
2847 }
2848
David Aherne8478e82018-04-17 17:33:13 -07002849 if (cfg->fc_type > RTN_MAX) {
2850 NL_SET_ERR_MSG(extack, "Invalid route type");
2851 goto out;
2852 }
2853
David Ahernd5d531c2017-05-21 10:12:05 -06002854 if (cfg->fc_dst_len > 128) {
2855 NL_SET_ERR_MSG(extack, "Invalid prefix length");
Roopa Prabhu8c5b83f2015-10-10 08:26:36 -07002856 goto out;
David Ahernd5d531c2017-05-21 10:12:05 -06002857 }
2858 if (cfg->fc_src_len > 128) {
2859 NL_SET_ERR_MSG(extack, "Invalid source address length");
2860 goto out;
2861 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002862#ifndef CONFIG_IPV6_SUBTREES
David Ahernd5d531c2017-05-21 10:12:05 -06002863 if (cfg->fc_src_len) {
2864 NL_SET_ERR_MSG(extack,
2865 "Specifying source address requires IPV6_SUBTREES to be enabled");
Roopa Prabhu8c5b83f2015-10-10 08:26:36 -07002866 goto out;
David Ahernd5d531c2017-05-21 10:12:05 -06002867 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002868#endif
Thomas Graf86872cb2006-08-22 00:01:08 -07002869 if (cfg->fc_ifindex) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002870 err = -ENODEV;
Daniel Lezcano55786892008-03-04 13:47:47 -08002871 dev = dev_get_by_index(net, cfg->fc_ifindex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002872 if (!dev)
2873 goto out;
2874 idev = in6_dev_get(dev);
2875 if (!idev)
2876 goto out;
2877 }
2878
Thomas Graf86872cb2006-08-22 00:01:08 -07002879 if (cfg->fc_metric == 0)
2880 cfg->fc_metric = IP6_RT_PRIO_USER;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002881
David Ahernfc1e64e2018-01-25 16:55:09 -08002882 if (cfg->fc_flags & RTNH_F_ONLINK) {
2883 if (!dev) {
2884 NL_SET_ERR_MSG(extack,
2885 "Nexthop device required for onlink");
2886 err = -ENODEV;
2887 goto out;
2888 }
2889
2890 if (!(dev->flags & IFF_UP)) {
2891 NL_SET_ERR_MSG(extack, "Nexthop device is not up");
2892 err = -ENETDOWN;
2893 goto out;
2894 }
2895 }
2896
Matti Vaittinend71314b2011-11-14 00:14:49 +00002897 err = -ENOBUFS;
David S. Miller38308472011-12-03 18:02:47 -05002898 if (cfg->fc_nlinfo.nlh &&
2899 !(cfg->fc_nlinfo.nlh->nlmsg_flags & NLM_F_CREATE)) {
Matti Vaittinend71314b2011-11-14 00:14:49 +00002900 table = fib6_get_table(net, cfg->fc_table);
David S. Miller38308472011-12-03 18:02:47 -05002901 if (!table) {
Joe Perchesf3213832012-05-15 14:11:53 +00002902 pr_warn("NLM_F_CREATE should be specified when creating new route\n");
Matti Vaittinend71314b2011-11-14 00:14:49 +00002903 table = fib6_new_table(net, cfg->fc_table);
2904 }
2905 } else {
2906 table = fib6_new_table(net, cfg->fc_table);
2907 }
David S. Miller38308472011-12-03 18:02:47 -05002908
2909 if (!table)
Thomas Grafc71099a2006-08-04 23:20:06 -07002910 goto out;
Thomas Grafc71099a2006-08-04 23:20:06 -07002911
David Ahern93531c62018-04-17 17:33:25 -07002912 err = -ENOMEM;
2913 rt = fib6_info_alloc(gfp_flags);
2914 if (!rt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002915 goto out;
David Ahern93531c62018-04-17 17:33:25 -07002916
2917 if (cfg->fc_flags & RTF_ADDRCONF)
2918 rt->dst_nocount = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002919
David Ahernd4ead6b2018-04-17 17:33:16 -07002920 err = ip6_convert_metrics(net, rt, cfg);
2921 if (err < 0)
2922 goto out;
2923
Gao feng1716a962012-04-06 00:13:10 +00002924 if (cfg->fc_flags & RTF_EXPIRES)
David Ahern14895682018-04-17 17:33:17 -07002925 fib6_set_expires(rt, jiffies +
Gao feng1716a962012-04-06 00:13:10 +00002926 clock_t_to_jiffies(cfg->fc_expires));
2927 else
David Ahern14895682018-04-17 17:33:17 -07002928 fib6_clean_expires(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002929
Thomas Graf86872cb2006-08-22 00:01:08 -07002930 if (cfg->fc_protocol == RTPROT_UNSPEC)
2931 cfg->fc_protocol = RTPROT_BOOT;
2932 rt->rt6i_protocol = cfg->fc_protocol;
2933
2934 addr_type = ipv6_addr_type(&cfg->fc_dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002935
Roopa Prabhu19e42e42015-07-21 10:43:48 +02002936 if (cfg->fc_encap) {
2937 struct lwtunnel_state *lwtstate;
2938
David Ahern30357d72017-01-30 12:07:37 -08002939 err = lwtunnel_build_state(cfg->fc_encap_type,
Tom Herbert127eb7c2015-08-24 09:45:41 -07002940 cfg->fc_encap, AF_INET6, cfg,
David Ahern9ae28722017-05-27 16:19:28 -06002941 &lwtstate, extack);
Roopa Prabhu19e42e42015-07-21 10:43:48 +02002942 if (err)
2943 goto out;
David Ahern5e670d82018-04-17 17:33:14 -07002944 rt->fib6_nh.nh_lwtstate = lwtstate_get(lwtstate);
Roopa Prabhu19e42e42015-07-21 10:43:48 +02002945 }
2946
Thomas Graf86872cb2006-08-22 00:01:08 -07002947 ipv6_addr_prefix(&rt->rt6i_dst.addr, &cfg->fc_dst, cfg->fc_dst_len);
2948 rt->rt6i_dst.plen = cfg->fc_dst_len;
Martin KaFai Lauafc4eef2015-04-28 13:03:07 -07002949 if (rt->rt6i_dst.plen == 128)
David Ahern3b6761d2018-04-17 17:33:20 -07002950 rt->dst_host = true;
Michal Kubečeke5fd3872014-03-27 13:04:08 +01002951
Linus Torvalds1da177e2005-04-16 15:20:36 -07002952#ifdef CONFIG_IPV6_SUBTREES
Thomas Graf86872cb2006-08-22 00:01:08 -07002953 ipv6_addr_prefix(&rt->rt6i_src.addr, &cfg->fc_src, cfg->fc_src_len);
2954 rt->rt6i_src.plen = cfg->fc_src_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002955#endif
2956
Thomas Graf86872cb2006-08-22 00:01:08 -07002957 rt->rt6i_metric = cfg->fc_metric;
David Ahern5e670d82018-04-17 17:33:14 -07002958 rt->fib6_nh.nh_weight = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002959
David Aherne8478e82018-04-17 17:33:13 -07002960 rt->fib6_type = cfg->fc_type;
2961
Linus Torvalds1da177e2005-04-16 15:20:36 -07002962 /* We cannot add true routes via loopback here,
2963 they would result in kernel looping; promote them to reject routes
2964 */
Thomas Graf86872cb2006-08-22 00:01:08 -07002965 if ((cfg->fc_flags & RTF_REJECT) ||
David S. Miller38308472011-12-03 18:02:47 -05002966 (dev && (dev->flags & IFF_LOOPBACK) &&
2967 !(addr_type & IPV6_ADDR_LOOPBACK) &&
2968 !(cfg->fc_flags & RTF_LOCAL))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002969 /* hold loopback dev/idev if we haven't done so. */
Daniel Lezcano55786892008-03-04 13:47:47 -08002970 if (dev != net->loopback_dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002971 if (dev) {
2972 dev_put(dev);
2973 in6_dev_put(idev);
2974 }
Daniel Lezcano55786892008-03-04 13:47:47 -08002975 dev = net->loopback_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002976 dev_hold(dev);
2977 idev = in6_dev_get(dev);
2978 if (!idev) {
2979 err = -ENODEV;
2980 goto out;
2981 }
2982 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002983 rt->rt6i_flags = RTF_REJECT|RTF_NONEXTHOP;
2984 goto install_route;
2985 }
2986
Thomas Graf86872cb2006-08-22 00:01:08 -07002987 if (cfg->fc_flags & RTF_GATEWAY) {
David Ahern9fbb7042018-03-13 08:29:36 -07002988 err = ip6_validate_gw(net, cfg, &dev, &idev, extack);
2989 if (err)
Florian Westphal48ed7b22015-05-21 00:25:41 +02002990 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002991
David Ahern93531c62018-04-17 17:33:25 -07002992 rt->fib6_nh.nh_gw = cfg->fc_gateway;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002993 }
2994
2995 err = -ENODEV;
David S. Miller38308472011-12-03 18:02:47 -05002996 if (!dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002997 goto out;
2998
Lorenzo Bianconi428604f2018-03-29 11:02:24 +02002999 if (idev->cnf.disable_ipv6) {
3000 NL_SET_ERR_MSG(extack, "IPv6 is disabled on nexthop device");
3001 err = -EACCES;
3002 goto out;
3003 }
3004
David Ahern955ec4c2018-01-24 19:45:29 -08003005 if (!(dev->flags & IFF_UP)) {
3006 NL_SET_ERR_MSG(extack, "Nexthop device is not up");
3007 err = -ENETDOWN;
3008 goto out;
3009 }
3010
Daniel Walterc3968a82011-04-13 21:10:57 +00003011 if (!ipv6_addr_any(&cfg->fc_prefsrc)) {
3012 if (!ipv6_chk_addr(net, &cfg->fc_prefsrc, dev, 0)) {
David Ahernd5d531c2017-05-21 10:12:05 -06003013 NL_SET_ERR_MSG(extack, "Invalid source address");
Daniel Walterc3968a82011-04-13 21:10:57 +00003014 err = -EINVAL;
3015 goto out;
3016 }
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00003017 rt->rt6i_prefsrc.addr = cfg->fc_prefsrc;
Daniel Walterc3968a82011-04-13 21:10:57 +00003018 rt->rt6i_prefsrc.plen = 128;
3019 } else
3020 rt->rt6i_prefsrc.plen = 0;
3021
Thomas Graf86872cb2006-08-22 00:01:08 -07003022 rt->rt6i_flags = cfg->fc_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003023
3024install_route:
Ido Schimmel5609b802018-01-07 12:45:06 +02003025 if (!(rt->rt6i_flags & (RTF_LOCAL | RTF_ANYCAST)) &&
3026 !netif_carrier_ok(dev))
David Ahern5e670d82018-04-17 17:33:14 -07003027 rt->fib6_nh.nh_flags |= RTNH_F_LINKDOWN;
3028 rt->fib6_nh.nh_flags |= (cfg->fc_flags & RTNH_F_ONLINK);
David Ahern93531c62018-04-17 17:33:25 -07003029 rt->fib6_nh.nh_dev = dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003030 rt->rt6i_idev = idev;
Thomas Grafc71099a2006-08-04 23:20:06 -07003031 rt->rt6i_table = table;
Daniel Lezcano63152fc2008-03-03 23:31:11 -08003032
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09003033 cfg->fc_nlinfo.nl_net = dev_net(dev);
Daniel Lezcano63152fc2008-03-03 23:31:11 -08003034
Roopa Prabhu8c5b83f2015-10-10 08:26:36 -07003035 return rt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003036out:
3037 if (dev)
3038 dev_put(dev);
3039 if (idev)
3040 in6_dev_put(idev);
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003041
David Ahern93531c62018-04-17 17:33:25 -07003042 fib6_info_release(rt);
Roopa Prabhu8c5b83f2015-10-10 08:26:36 -07003043 return ERR_PTR(err);
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003044}
3045
David Ahernacb54e32018-04-17 17:33:22 -07003046int ip6_route_add(struct fib6_config *cfg, gfp_t gfp_flags,
3047 struct netlink_ext_ack *extack)
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003048{
David Ahern8d1c8022018-04-17 17:33:26 -07003049 struct fib6_info *rt;
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003050 int err;
3051
David Ahernacb54e32018-04-17 17:33:22 -07003052 rt = ip6_route_info_create(cfg, gfp_flags, extack);
David Ahernd4ead6b2018-04-17 17:33:16 -07003053 if (IS_ERR(rt))
3054 return PTR_ERR(rt);
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003055
David Ahernd4ead6b2018-04-17 17:33:16 -07003056 err = __ip6_ins_rt(rt, &cfg->fc_nlinfo, extack);
David Ahern93531c62018-04-17 17:33:25 -07003057 fib6_info_release(rt);
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003058
Linus Torvalds1da177e2005-04-16 15:20:36 -07003059 return err;
3060}
3061
David Ahern8d1c8022018-04-17 17:33:26 -07003062static int __ip6_del_rt(struct fib6_info *rt, struct nl_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003063{
David Ahernafb1d4b52018-04-17 17:33:11 -07003064 struct net *net = info->nl_net;
Thomas Grafc71099a2006-08-04 23:20:06 -07003065 struct fib6_table *table;
David Ahernafb1d4b52018-04-17 17:33:11 -07003066 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003067
David Ahern421842e2018-04-17 17:33:18 -07003068 if (rt == net->ipv6.fib6_null_entry) {
Gao feng6825a262012-09-19 19:25:34 +00003069 err = -ENOENT;
3070 goto out;
3071 }
Patrick McHardy6c813a72006-08-06 22:22:47 -07003072
Thomas Grafc71099a2006-08-04 23:20:06 -07003073 table = rt->rt6i_table;
Wei Wang66f5d6c2017-10-06 12:06:10 -07003074 spin_lock_bh(&table->tb6_lock);
Thomas Graf86872cb2006-08-22 00:01:08 -07003075 err = fib6_del(rt, info);
Wei Wang66f5d6c2017-10-06 12:06:10 -07003076 spin_unlock_bh(&table->tb6_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003077
Gao feng6825a262012-09-19 19:25:34 +00003078out:
David Ahern93531c62018-04-17 17:33:25 -07003079 fib6_info_release(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003080 return err;
3081}
3082
David Ahern8d1c8022018-04-17 17:33:26 -07003083int ip6_del_rt(struct net *net, struct fib6_info *rt)
Thomas Grafe0a1ad732006-08-22 00:00:21 -07003084{
David Ahernafb1d4b52018-04-17 17:33:11 -07003085 struct nl_info info = { .nl_net = net };
3086
Denis V. Lunev528c4ce2007-12-13 09:45:12 -08003087 return __ip6_del_rt(rt, &info);
Thomas Grafe0a1ad732006-08-22 00:00:21 -07003088}
3089
David Ahern8d1c8022018-04-17 17:33:26 -07003090static int __ip6_del_rt_siblings(struct fib6_info *rt, struct fib6_config *cfg)
David Ahern0ae81332017-02-02 12:37:08 -08003091{
3092 struct nl_info *info = &cfg->fc_nlinfo;
WANG Conge3330032017-02-27 16:07:43 -08003093 struct net *net = info->nl_net;
David Ahern16a16cd2017-02-02 12:37:11 -08003094 struct sk_buff *skb = NULL;
David Ahern0ae81332017-02-02 12:37:08 -08003095 struct fib6_table *table;
WANG Conge3330032017-02-27 16:07:43 -08003096 int err = -ENOENT;
David Ahern0ae81332017-02-02 12:37:08 -08003097
David Ahern421842e2018-04-17 17:33:18 -07003098 if (rt == net->ipv6.fib6_null_entry)
WANG Conge3330032017-02-27 16:07:43 -08003099 goto out_put;
David Ahern0ae81332017-02-02 12:37:08 -08003100 table = rt->rt6i_table;
Wei Wang66f5d6c2017-10-06 12:06:10 -07003101 spin_lock_bh(&table->tb6_lock);
David Ahern0ae81332017-02-02 12:37:08 -08003102
3103 if (rt->rt6i_nsiblings && cfg->fc_delete_all_nh) {
David Ahern8d1c8022018-04-17 17:33:26 -07003104 struct fib6_info *sibling, *next_sibling;
David Ahern0ae81332017-02-02 12:37:08 -08003105
David Ahern16a16cd2017-02-02 12:37:11 -08003106 /* prefer to send a single notification with all hops */
3107 skb = nlmsg_new(rt6_nlmsg_size(rt), gfp_any());
3108 if (skb) {
3109 u32 seq = info->nlh ? info->nlh->nlmsg_seq : 0;
3110
David Ahernd4ead6b2018-04-17 17:33:16 -07003111 if (rt6_fill_node(net, skb, rt, NULL,
David Ahern16a16cd2017-02-02 12:37:11 -08003112 NULL, NULL, 0, RTM_DELROUTE,
3113 info->portid, seq, 0) < 0) {
3114 kfree_skb(skb);
3115 skb = NULL;
3116 } else
3117 info->skip_notify = 1;
3118 }
3119
David Ahern0ae81332017-02-02 12:37:08 -08003120 list_for_each_entry_safe(sibling, next_sibling,
3121 &rt->rt6i_siblings,
3122 rt6i_siblings) {
3123 err = fib6_del(sibling, info);
3124 if (err)
WANG Conge3330032017-02-27 16:07:43 -08003125 goto out_unlock;
David Ahern0ae81332017-02-02 12:37:08 -08003126 }
3127 }
3128
3129 err = fib6_del(rt, info);
WANG Conge3330032017-02-27 16:07:43 -08003130out_unlock:
Wei Wang66f5d6c2017-10-06 12:06:10 -07003131 spin_unlock_bh(&table->tb6_lock);
WANG Conge3330032017-02-27 16:07:43 -08003132out_put:
David Ahern93531c62018-04-17 17:33:25 -07003133 fib6_info_release(rt);
David Ahern16a16cd2017-02-02 12:37:11 -08003134
3135 if (skb) {
WANG Conge3330032017-02-27 16:07:43 -08003136 rtnl_notify(skb, net, info->portid, RTNLGRP_IPV6_ROUTE,
David Ahern16a16cd2017-02-02 12:37:11 -08003137 info->nlh, gfp_any());
3138 }
David Ahern0ae81332017-02-02 12:37:08 -08003139 return err;
3140}
3141
David Ahern23fb93a2018-04-17 17:33:23 -07003142static int ip6_del_cached_rt(struct rt6_info *rt, struct fib6_config *cfg)
3143{
3144 int rc = -ESRCH;
3145
3146 if (cfg->fc_ifindex && rt->dst.dev->ifindex != cfg->fc_ifindex)
3147 goto out;
3148
3149 if (cfg->fc_flags & RTF_GATEWAY &&
3150 !ipv6_addr_equal(&cfg->fc_gateway, &rt->rt6i_gateway))
3151 goto out;
3152 if (dst_hold_safe(&rt->dst))
3153 rc = rt6_remove_exception_rt(rt);
3154out:
3155 return rc;
3156}
3157
David Ahern333c4302017-05-21 10:12:04 -06003158static int ip6_route_del(struct fib6_config *cfg,
3159 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003160{
David Ahern8d1c8022018-04-17 17:33:26 -07003161 struct rt6_info *rt_cache;
Thomas Grafc71099a2006-08-04 23:20:06 -07003162 struct fib6_table *table;
David Ahern8d1c8022018-04-17 17:33:26 -07003163 struct fib6_info *rt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003164 struct fib6_node *fn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003165 int err = -ESRCH;
3166
Daniel Lezcano55786892008-03-04 13:47:47 -08003167 table = fib6_get_table(cfg->fc_nlinfo.nl_net, cfg->fc_table);
David Ahernd5d531c2017-05-21 10:12:05 -06003168 if (!table) {
3169 NL_SET_ERR_MSG(extack, "FIB table does not exist");
Thomas Grafc71099a2006-08-04 23:20:06 -07003170 return err;
David Ahernd5d531c2017-05-21 10:12:05 -06003171 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003172
Wei Wang66f5d6c2017-10-06 12:06:10 -07003173 rcu_read_lock();
Thomas Grafc71099a2006-08-04 23:20:06 -07003174
3175 fn = fib6_locate(&table->tb6_root,
Thomas Graf86872cb2006-08-22 00:01:08 -07003176 &cfg->fc_dst, cfg->fc_dst_len,
Wei Wang38fbeee2017-10-06 12:06:02 -07003177 &cfg->fc_src, cfg->fc_src_len,
Wei Wang2b760fc2017-10-06 12:06:03 -07003178 !(cfg->fc_flags & RTF_CACHE));
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003179
Linus Torvalds1da177e2005-04-16 15:20:36 -07003180 if (fn) {
Wei Wang66f5d6c2017-10-06 12:06:10 -07003181 for_each_fib6_node_rt_rcu(fn) {
Wei Wang2b760fc2017-10-06 12:06:03 -07003182 if (cfg->fc_flags & RTF_CACHE) {
David Ahern23fb93a2018-04-17 17:33:23 -07003183 int rc;
3184
Wei Wang2b760fc2017-10-06 12:06:03 -07003185 rt_cache = rt6_find_cached_rt(rt, &cfg->fc_dst,
3186 &cfg->fc_src);
David Ahern23fb93a2018-04-17 17:33:23 -07003187 if (rt_cache) {
3188 rc = ip6_del_cached_rt(rt_cache, cfg);
3189 if (rc != -ESRCH)
3190 return rc;
3191 }
3192 continue;
Wei Wang2b760fc2017-10-06 12:06:03 -07003193 }
Thomas Graf86872cb2006-08-22 00:01:08 -07003194 if (cfg->fc_ifindex &&
David Ahern5e670d82018-04-17 17:33:14 -07003195 (!rt->fib6_nh.nh_dev ||
3196 rt->fib6_nh.nh_dev->ifindex != cfg->fc_ifindex))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003197 continue;
Thomas Graf86872cb2006-08-22 00:01:08 -07003198 if (cfg->fc_flags & RTF_GATEWAY &&
David Ahern5e670d82018-04-17 17:33:14 -07003199 !ipv6_addr_equal(&cfg->fc_gateway, &rt->fib6_nh.nh_gw))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003200 continue;
Thomas Graf86872cb2006-08-22 00:01:08 -07003201 if (cfg->fc_metric && cfg->fc_metric != rt->rt6i_metric)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003202 continue;
Mantas Mc2ed1882016-12-16 10:30:59 +02003203 if (cfg->fc_protocol && cfg->fc_protocol != rt->rt6i_protocol)
3204 continue;
David Ahern93531c62018-04-17 17:33:25 -07003205 fib6_info_hold(rt);
Wei Wang66f5d6c2017-10-06 12:06:10 -07003206 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003207
David Ahern0ae81332017-02-02 12:37:08 -08003208 /* if gateway was specified only delete the one hop */
3209 if (cfg->fc_flags & RTF_GATEWAY)
3210 return __ip6_del_rt(rt, &cfg->fc_nlinfo);
3211
3212 return __ip6_del_rt_siblings(rt, cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003213 }
3214 }
Wei Wang66f5d6c2017-10-06 12:06:10 -07003215 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003216
3217 return err;
3218}
3219
David S. Miller6700c272012-07-17 03:29:28 -07003220static void rt6_do_redirect(struct dst_entry *dst, struct sock *sk, struct sk_buff *skb)
YOSHIFUJI Hideakia6279452006-08-23 17:18:26 -07003221{
YOSHIFUJI Hideakia6279452006-08-23 17:18:26 -07003222 struct netevent_redirect netevent;
David S. Millere8599ff2012-07-11 23:43:53 -07003223 struct rt6_info *rt, *nrt = NULL;
David S. Millere8599ff2012-07-11 23:43:53 -07003224 struct ndisc_options ndopts;
3225 struct inet6_dev *in6_dev;
3226 struct neighbour *neigh;
YOSHIFUJI Hideaki / 吉藤英明71bcdba2013-01-05 16:34:51 +00003227 struct rd_msg *msg;
David S. Miller6e157b62012-07-12 00:05:02 -07003228 int optlen, on_link;
3229 u8 *lladdr;
David S. Millere8599ff2012-07-11 23:43:53 -07003230
Simon Horman29a3cad2013-05-28 20:34:26 +00003231 optlen = skb_tail_pointer(skb) - skb_transport_header(skb);
YOSHIFUJI Hideaki / 吉藤英明71bcdba2013-01-05 16:34:51 +00003232 optlen -= sizeof(*msg);
David S. Millere8599ff2012-07-11 23:43:53 -07003233
3234 if (optlen < 0) {
David S. Miller6e157b62012-07-12 00:05:02 -07003235 net_dbg_ratelimited("rt6_do_redirect: packet too short\n");
David S. Millere8599ff2012-07-11 23:43:53 -07003236 return;
3237 }
3238
YOSHIFUJI Hideaki / 吉藤英明71bcdba2013-01-05 16:34:51 +00003239 msg = (struct rd_msg *)icmp6_hdr(skb);
David S. Millere8599ff2012-07-11 23:43:53 -07003240
YOSHIFUJI Hideaki / 吉藤英明71bcdba2013-01-05 16:34:51 +00003241 if (ipv6_addr_is_multicast(&msg->dest)) {
David S. Miller6e157b62012-07-12 00:05:02 -07003242 net_dbg_ratelimited("rt6_do_redirect: destination address is multicast\n");
David S. Millere8599ff2012-07-11 23:43:53 -07003243 return;
3244 }
3245
David S. Miller6e157b62012-07-12 00:05:02 -07003246 on_link = 0;
YOSHIFUJI Hideaki / 吉藤英明71bcdba2013-01-05 16:34:51 +00003247 if (ipv6_addr_equal(&msg->dest, &msg->target)) {
David S. Millere8599ff2012-07-11 23:43:53 -07003248 on_link = 1;
YOSHIFUJI Hideaki / 吉藤英明71bcdba2013-01-05 16:34:51 +00003249 } else if (ipv6_addr_type(&msg->target) !=
David S. Millere8599ff2012-07-11 23:43:53 -07003250 (IPV6_ADDR_UNICAST|IPV6_ADDR_LINKLOCAL)) {
David S. Miller6e157b62012-07-12 00:05:02 -07003251 net_dbg_ratelimited("rt6_do_redirect: target address is not link-local unicast\n");
David S. Millere8599ff2012-07-11 23:43:53 -07003252 return;
3253 }
3254
3255 in6_dev = __in6_dev_get(skb->dev);
3256 if (!in6_dev)
3257 return;
3258 if (in6_dev->cnf.forwarding || !in6_dev->cnf.accept_redirects)
3259 return;
3260
3261 /* RFC2461 8.1:
3262 * The IP source address of the Redirect MUST be the same as the current
3263 * first-hop router for the specified ICMP Destination Address.
3264 */
3265
Alexander Aringf997c552016-06-15 21:20:23 +02003266 if (!ndisc_parse_options(skb->dev, msg->opt, optlen, &ndopts)) {
David S. Millere8599ff2012-07-11 23:43:53 -07003267 net_dbg_ratelimited("rt6_redirect: invalid ND options\n");
3268 return;
3269 }
David S. Miller6e157b62012-07-12 00:05:02 -07003270
3271 lladdr = NULL;
David S. Millere8599ff2012-07-11 23:43:53 -07003272 if (ndopts.nd_opts_tgt_lladdr) {
3273 lladdr = ndisc_opt_addr_data(ndopts.nd_opts_tgt_lladdr,
3274 skb->dev);
3275 if (!lladdr) {
3276 net_dbg_ratelimited("rt6_redirect: invalid link-layer address length\n");
3277 return;
3278 }
3279 }
3280
David S. Miller6e157b62012-07-12 00:05:02 -07003281 rt = (struct rt6_info *) dst;
Matthias Schifferec13ad12015-11-02 01:24:38 +01003282 if (rt->rt6i_flags & RTF_REJECT) {
David S. Miller6e157b62012-07-12 00:05:02 -07003283 net_dbg_ratelimited("rt6_redirect: source isn't a valid nexthop for redirect target\n");
3284 return;
3285 }
3286
3287 /* Redirect received -> path was valid.
3288 * Look, redirects are sent only in response to data packets,
3289 * so that this nexthop apparently is reachable. --ANK
3290 */
Julian Anastasov0dec8792017-02-06 23:14:16 +02003291 dst_confirm_neigh(&rt->dst, &ipv6_hdr(skb)->saddr);
David S. Miller6e157b62012-07-12 00:05:02 -07003292
YOSHIFUJI Hideaki / 吉藤英明71bcdba2013-01-05 16:34:51 +00003293 neigh = __neigh_lookup(&nd_tbl, &msg->target, skb->dev, 1);
David S. Millere8599ff2012-07-11 23:43:53 -07003294 if (!neigh)
3295 return;
3296
Linus Torvalds1da177e2005-04-16 15:20:36 -07003297 /*
3298 * We have finally decided to accept it.
3299 */
3300
Alexander Aringf997c552016-06-15 21:20:23 +02003301 ndisc_update(skb->dev, neigh, lladdr, NUD_STALE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003302 NEIGH_UPDATE_F_WEAK_OVERRIDE|
3303 NEIGH_UPDATE_F_OVERRIDE|
3304 (on_link ? 0 : (NEIGH_UPDATE_F_OVERRIDE_ISROUTER|
Alexander Aringf997c552016-06-15 21:20:23 +02003305 NEIGH_UPDATE_F_ISROUTER)),
3306 NDISC_REDIRECT, &ndopts);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003307
David Ahern23fb93a2018-04-17 17:33:23 -07003308 nrt = ip6_rt_cache_alloc(rt->from, &msg->dest, NULL);
David S. Miller38308472011-12-03 18:02:47 -05003309 if (!nrt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003310 goto out;
3311
3312 nrt->rt6i_flags = RTF_GATEWAY|RTF_UP|RTF_DYNAMIC|RTF_CACHE;
3313 if (on_link)
3314 nrt->rt6i_flags &= ~RTF_GATEWAY;
3315
Xin Longb91d5322017-08-03 14:13:46 +08003316 nrt->rt6i_protocol = RTPROT_REDIRECT;
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00003317 nrt->rt6i_gateway = *(struct in6_addr *)neigh->primary_key;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003318
Wei Wang2b760fc2017-10-06 12:06:03 -07003319 /* No need to remove rt from the exception table if rt is
3320 * a cached route because rt6_insert_exception() will
3321 * takes care of it
3322 */
David Ahernd4ead6b2018-04-17 17:33:16 -07003323 if (rt6_insert_exception(nrt, rt->from)) {
Wei Wang2b760fc2017-10-06 12:06:03 -07003324 dst_release_immediate(&nrt->dst);
3325 goto out;
3326 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003327
Changli Gaod8d1f302010-06-10 23:31:35 -07003328 netevent.old = &rt->dst;
3329 netevent.new = &nrt->dst;
YOSHIFUJI Hideaki / 吉藤英明71bcdba2013-01-05 16:34:51 +00003330 netevent.daddr = &msg->dest;
YOSHIFUJI Hideaki / 吉藤英明60592832013-01-14 09:28:27 +00003331 netevent.neigh = neigh;
Tom Tucker8d717402006-07-30 20:43:36 -07003332 call_netevent_notifiers(NETEVENT_REDIRECT, &netevent);
3333
Linus Torvalds1da177e2005-04-16 15:20:36 -07003334out:
David S. Millere8599ff2012-07-11 23:43:53 -07003335 neigh_release(neigh);
David S. Miller6e157b62012-07-12 00:05:02 -07003336}
3337
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08003338#ifdef CONFIG_IPV6_ROUTE_INFO
David Ahern8d1c8022018-04-17 17:33:26 -07003339static struct fib6_info *rt6_get_route_info(struct net *net,
Eric Dumazetb71d1d42011-04-22 04:53:02 +00003340 const struct in6_addr *prefix, int prefixlen,
David Ahern830218c2016-10-24 10:52:35 -07003341 const struct in6_addr *gwaddr,
3342 struct net_device *dev)
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08003343{
David Ahern830218c2016-10-24 10:52:35 -07003344 u32 tb_id = l3mdev_fib_table(dev) ? : RT6_TABLE_INFO;
3345 int ifindex = dev->ifindex;
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08003346 struct fib6_node *fn;
David Ahern8d1c8022018-04-17 17:33:26 -07003347 struct fib6_info *rt = NULL;
Thomas Grafc71099a2006-08-04 23:20:06 -07003348 struct fib6_table *table;
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08003349
David Ahern830218c2016-10-24 10:52:35 -07003350 table = fib6_get_table(net, tb_id);
David S. Miller38308472011-12-03 18:02:47 -05003351 if (!table)
Thomas Grafc71099a2006-08-04 23:20:06 -07003352 return NULL;
3353
Wei Wang66f5d6c2017-10-06 12:06:10 -07003354 rcu_read_lock();
Wei Wang38fbeee2017-10-06 12:06:02 -07003355 fn = fib6_locate(&table->tb6_root, prefix, prefixlen, NULL, 0, true);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08003356 if (!fn)
3357 goto out;
3358
Wei Wang66f5d6c2017-10-06 12:06:10 -07003359 for_each_fib6_node_rt_rcu(fn) {
David Ahern5e670d82018-04-17 17:33:14 -07003360 if (rt->fib6_nh.nh_dev->ifindex != ifindex)
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08003361 continue;
3362 if ((rt->rt6i_flags & (RTF_ROUTEINFO|RTF_GATEWAY)) != (RTF_ROUTEINFO|RTF_GATEWAY))
3363 continue;
David Ahern5e670d82018-04-17 17:33:14 -07003364 if (!ipv6_addr_equal(&rt->fib6_nh.nh_gw, gwaddr))
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08003365 continue;
David Ahern8d1c8022018-04-17 17:33:26 -07003366 fib6_info_hold(rt);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08003367 break;
3368 }
3369out:
Wei Wang66f5d6c2017-10-06 12:06:10 -07003370 rcu_read_unlock();
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08003371 return rt;
3372}
3373
David Ahern8d1c8022018-04-17 17:33:26 -07003374static struct fib6_info *rt6_add_route_info(struct net *net,
Eric Dumazetb71d1d42011-04-22 04:53:02 +00003375 const struct in6_addr *prefix, int prefixlen,
David Ahern830218c2016-10-24 10:52:35 -07003376 const struct in6_addr *gwaddr,
3377 struct net_device *dev,
Eric Dumazet95c96172012-04-15 05:58:06 +00003378 unsigned int pref)
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08003379{
Thomas Graf86872cb2006-08-22 00:01:08 -07003380 struct fib6_config cfg = {
Rami Rosen238fc7e2008-02-09 23:43:11 -08003381 .fc_metric = IP6_RT_PRIO_USER,
David Ahern830218c2016-10-24 10:52:35 -07003382 .fc_ifindex = dev->ifindex,
Thomas Graf86872cb2006-08-22 00:01:08 -07003383 .fc_dst_len = prefixlen,
3384 .fc_flags = RTF_GATEWAY | RTF_ADDRCONF | RTF_ROUTEINFO |
3385 RTF_UP | RTF_PREF(pref),
Xin Longb91d5322017-08-03 14:13:46 +08003386 .fc_protocol = RTPROT_RA,
David Aherne8478e82018-04-17 17:33:13 -07003387 .fc_type = RTN_UNICAST,
Eric W. Biederman15e47302012-09-07 20:12:54 +00003388 .fc_nlinfo.portid = 0,
Daniel Lezcanoefa2cea2008-03-04 13:46:48 -08003389 .fc_nlinfo.nlh = NULL,
3390 .fc_nlinfo.nl_net = net,
Thomas Graf86872cb2006-08-22 00:01:08 -07003391 };
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08003392
David Ahern830218c2016-10-24 10:52:35 -07003393 cfg.fc_table = l3mdev_fib_table(dev) ? : RT6_TABLE_INFO,
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00003394 cfg.fc_dst = *prefix;
3395 cfg.fc_gateway = *gwaddr;
Thomas Graf86872cb2006-08-22 00:01:08 -07003396
YOSHIFUJI Hideakie317da92006-03-20 17:06:42 -08003397 /* We should treat it as a default route if prefix length is 0. */
3398 if (!prefixlen)
Thomas Graf86872cb2006-08-22 00:01:08 -07003399 cfg.fc_flags |= RTF_DEFAULT;
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08003400
David Ahernacb54e32018-04-17 17:33:22 -07003401 ip6_route_add(&cfg, GFP_ATOMIC, NULL);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08003402
David Ahern830218c2016-10-24 10:52:35 -07003403 return rt6_get_route_info(net, prefix, prefixlen, gwaddr, dev);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08003404}
3405#endif
3406
David Ahern8d1c8022018-04-17 17:33:26 -07003407struct fib6_info *rt6_get_dflt_router(struct net *net,
David Ahernafb1d4b52018-04-17 17:33:11 -07003408 const struct in6_addr *addr,
3409 struct net_device *dev)
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003410{
David Ahern830218c2016-10-24 10:52:35 -07003411 u32 tb_id = l3mdev_fib_table(dev) ? : RT6_TABLE_DFLT;
David Ahern8d1c8022018-04-17 17:33:26 -07003412 struct fib6_info *rt;
Thomas Grafc71099a2006-08-04 23:20:06 -07003413 struct fib6_table *table;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003414
David Ahernafb1d4b52018-04-17 17:33:11 -07003415 table = fib6_get_table(net, tb_id);
David S. Miller38308472011-12-03 18:02:47 -05003416 if (!table)
Thomas Grafc71099a2006-08-04 23:20:06 -07003417 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003418
Wei Wang66f5d6c2017-10-06 12:06:10 -07003419 rcu_read_lock();
3420 for_each_fib6_node_rt_rcu(&table->tb6_root) {
David Ahern5e670d82018-04-17 17:33:14 -07003421 if (dev == rt->fib6_nh.nh_dev &&
YOSHIFUJI Hideaki045927f2006-03-20 17:00:48 -08003422 ((rt->rt6i_flags & (RTF_ADDRCONF | RTF_DEFAULT)) == (RTF_ADDRCONF | RTF_DEFAULT)) &&
David Ahern5e670d82018-04-17 17:33:14 -07003423 ipv6_addr_equal(&rt->fib6_nh.nh_gw, addr))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003424 break;
3425 }
3426 if (rt)
David Ahern8d1c8022018-04-17 17:33:26 -07003427 fib6_info_hold(rt);
Wei Wang66f5d6c2017-10-06 12:06:10 -07003428 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003429 return rt;
3430}
3431
David Ahern8d1c8022018-04-17 17:33:26 -07003432struct fib6_info *rt6_add_dflt_router(struct net *net,
David Ahernafb1d4b52018-04-17 17:33:11 -07003433 const struct in6_addr *gwaddr,
YOSHIFUJI Hideakiebacaaa2006-03-20 17:04:53 -08003434 struct net_device *dev,
3435 unsigned int pref)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003436{
Thomas Graf86872cb2006-08-22 00:01:08 -07003437 struct fib6_config cfg = {
David Ahernca254492015-10-12 11:47:10 -07003438 .fc_table = l3mdev_fib_table(dev) ? : RT6_TABLE_DFLT,
Rami Rosen238fc7e2008-02-09 23:43:11 -08003439 .fc_metric = IP6_RT_PRIO_USER,
Thomas Graf86872cb2006-08-22 00:01:08 -07003440 .fc_ifindex = dev->ifindex,
3441 .fc_flags = RTF_GATEWAY | RTF_ADDRCONF | RTF_DEFAULT |
3442 RTF_UP | RTF_EXPIRES | RTF_PREF(pref),
Xin Longb91d5322017-08-03 14:13:46 +08003443 .fc_protocol = RTPROT_RA,
David Aherne8478e82018-04-17 17:33:13 -07003444 .fc_type = RTN_UNICAST,
Eric W. Biederman15e47302012-09-07 20:12:54 +00003445 .fc_nlinfo.portid = 0,
Daniel Lezcano55786892008-03-04 13:47:47 -08003446 .fc_nlinfo.nlh = NULL,
David Ahernafb1d4b52018-04-17 17:33:11 -07003447 .fc_nlinfo.nl_net = net,
Thomas Graf86872cb2006-08-22 00:01:08 -07003448 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07003449
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00003450 cfg.fc_gateway = *gwaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003451
David Ahernacb54e32018-04-17 17:33:22 -07003452 if (!ip6_route_add(&cfg, GFP_ATOMIC, NULL)) {
David Ahern830218c2016-10-24 10:52:35 -07003453 struct fib6_table *table;
3454
3455 table = fib6_get_table(dev_net(dev), cfg.fc_table);
3456 if (table)
3457 table->flags |= RT6_TABLE_HAS_DFLT_ROUTER;
3458 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003459
David Ahernafb1d4b52018-04-17 17:33:11 -07003460 return rt6_get_dflt_router(net, gwaddr, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003461}
3462
David Ahernafb1d4b52018-04-17 17:33:11 -07003463static void __rt6_purge_dflt_routers(struct net *net,
3464 struct fib6_table *table)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003465{
David Ahern8d1c8022018-04-17 17:33:26 -07003466 struct fib6_info *rt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003467
3468restart:
Wei Wang66f5d6c2017-10-06 12:06:10 -07003469 rcu_read_lock();
3470 for_each_fib6_node_rt_rcu(&table->tb6_root) {
Lorenzo Colitti3e8b0ac2013-03-03 20:46:46 +00003471 if (rt->rt6i_flags & (RTF_DEFAULT | RTF_ADDRCONF) &&
3472 (!rt->rt6i_idev || rt->rt6i_idev->cnf.accept_ra != 2)) {
David Ahern93531c62018-04-17 17:33:25 -07003473 fib6_info_hold(rt);
3474 rcu_read_unlock();
3475 ip6_del_rt(net, rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003476 goto restart;
3477 }
3478 }
Wei Wang66f5d6c2017-10-06 12:06:10 -07003479 rcu_read_unlock();
David Ahern830218c2016-10-24 10:52:35 -07003480
3481 table->flags &= ~RT6_TABLE_HAS_DFLT_ROUTER;
3482}
3483
3484void rt6_purge_dflt_routers(struct net *net)
3485{
3486 struct fib6_table *table;
3487 struct hlist_head *head;
3488 unsigned int h;
3489
3490 rcu_read_lock();
3491
3492 for (h = 0; h < FIB6_TABLE_HASHSZ; h++) {
3493 head = &net->ipv6.fib_table_hash[h];
3494 hlist_for_each_entry_rcu(table, head, tb6_hlist) {
3495 if (table->flags & RT6_TABLE_HAS_DFLT_ROUTER)
David Ahernafb1d4b52018-04-17 17:33:11 -07003496 __rt6_purge_dflt_routers(net, table);
David Ahern830218c2016-10-24 10:52:35 -07003497 }
3498 }
3499
3500 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003501}
3502
Daniel Lezcano55786892008-03-04 13:47:47 -08003503static void rtmsg_to_fib6_config(struct net *net,
3504 struct in6_rtmsg *rtmsg,
Thomas Graf86872cb2006-08-22 00:01:08 -07003505 struct fib6_config *cfg)
3506{
3507 memset(cfg, 0, sizeof(*cfg));
3508
David Ahernca254492015-10-12 11:47:10 -07003509 cfg->fc_table = l3mdev_fib_table_by_index(net, rtmsg->rtmsg_ifindex) ?
3510 : RT6_TABLE_MAIN;
Thomas Graf86872cb2006-08-22 00:01:08 -07003511 cfg->fc_ifindex = rtmsg->rtmsg_ifindex;
3512 cfg->fc_metric = rtmsg->rtmsg_metric;
3513 cfg->fc_expires = rtmsg->rtmsg_info;
3514 cfg->fc_dst_len = rtmsg->rtmsg_dst_len;
3515 cfg->fc_src_len = rtmsg->rtmsg_src_len;
3516 cfg->fc_flags = rtmsg->rtmsg_flags;
David Aherne8478e82018-04-17 17:33:13 -07003517 cfg->fc_type = rtmsg->rtmsg_type;
Thomas Graf86872cb2006-08-22 00:01:08 -07003518
Daniel Lezcano55786892008-03-04 13:47:47 -08003519 cfg->fc_nlinfo.nl_net = net;
Benjamin Theryf1243c22008-02-26 18:10:03 -08003520
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00003521 cfg->fc_dst = rtmsg->rtmsg_dst;
3522 cfg->fc_src = rtmsg->rtmsg_src;
3523 cfg->fc_gateway = rtmsg->rtmsg_gateway;
Thomas Graf86872cb2006-08-22 00:01:08 -07003524}
3525
Daniel Lezcano55786892008-03-04 13:47:47 -08003526int ipv6_route_ioctl(struct net *net, unsigned int cmd, void __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003527{
Thomas Graf86872cb2006-08-22 00:01:08 -07003528 struct fib6_config cfg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003529 struct in6_rtmsg rtmsg;
3530 int err;
3531
Ian Morris67ba4152014-08-24 21:53:10 +01003532 switch (cmd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003533 case SIOCADDRT: /* Add a route */
3534 case SIOCDELRT: /* Delete a route */
Eric W. Biedermanaf31f412012-11-16 03:03:06 +00003535 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003536 return -EPERM;
3537 err = copy_from_user(&rtmsg, arg,
3538 sizeof(struct in6_rtmsg));
3539 if (err)
3540 return -EFAULT;
Thomas Graf86872cb2006-08-22 00:01:08 -07003541
Daniel Lezcano55786892008-03-04 13:47:47 -08003542 rtmsg_to_fib6_config(net, &rtmsg, &cfg);
Thomas Graf86872cb2006-08-22 00:01:08 -07003543
Linus Torvalds1da177e2005-04-16 15:20:36 -07003544 rtnl_lock();
3545 switch (cmd) {
3546 case SIOCADDRT:
David Ahernacb54e32018-04-17 17:33:22 -07003547 err = ip6_route_add(&cfg, GFP_KERNEL, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003548 break;
3549 case SIOCDELRT:
David Ahern333c4302017-05-21 10:12:04 -06003550 err = ip6_route_del(&cfg, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003551 break;
3552 default:
3553 err = -EINVAL;
3554 }
3555 rtnl_unlock();
3556
3557 return err;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07003558 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003559
3560 return -EINVAL;
3561}
3562
3563/*
3564 * Drop the packet on the floor
3565 */
3566
Brian Haleyd5fdd6b2009-06-23 04:31:07 -07003567static int ip6_pkt_drop(struct sk_buff *skb, u8 code, int ipstats_mib_noroutes)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003568{
YOSHIFUJI Hideaki612f09e2007-04-13 16:18:02 -07003569 int type;
Eric Dumazetadf30902009-06-02 05:19:30 +00003570 struct dst_entry *dst = skb_dst(skb);
YOSHIFUJI Hideaki612f09e2007-04-13 16:18:02 -07003571 switch (ipstats_mib_noroutes) {
3572 case IPSTATS_MIB_INNOROUTES:
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -07003573 type = ipv6_addr_type(&ipv6_hdr(skb)->daddr);
Ulrich Weber45bb0062010-02-25 23:28:58 +00003574 if (type == IPV6_ADDR_ANY) {
Stephen Suryaputrabdb7cc62018-04-16 13:42:16 -04003575 IP6_INC_STATS(dev_net(dst->dev),
3576 __in6_dev_get_safely(skb->dev),
Denis V. Lunev3bd653c2008-10-08 10:54:51 -07003577 IPSTATS_MIB_INADDRERRORS);
YOSHIFUJI Hideaki612f09e2007-04-13 16:18:02 -07003578 break;
3579 }
3580 /* FALLTHROUGH */
3581 case IPSTATS_MIB_OUTNOROUTES:
Denis V. Lunev3bd653c2008-10-08 10:54:51 -07003582 IP6_INC_STATS(dev_net(dst->dev), ip6_dst_idev(dst),
3583 ipstats_mib_noroutes);
YOSHIFUJI Hideaki612f09e2007-04-13 16:18:02 -07003584 break;
3585 }
Alexey Dobriyan3ffe5332010-02-18 08:25:24 +00003586 icmpv6_send(skb, ICMPV6_DEST_UNREACH, code, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003587 kfree_skb(skb);
3588 return 0;
3589}
3590
Thomas Graf9ce8ade2006-10-18 20:46:54 -07003591static int ip6_pkt_discard(struct sk_buff *skb)
3592{
YOSHIFUJI Hideaki612f09e2007-04-13 16:18:02 -07003593 return ip6_pkt_drop(skb, ICMPV6_NOROUTE, IPSTATS_MIB_INNOROUTES);
Thomas Graf9ce8ade2006-10-18 20:46:54 -07003594}
3595
Eric W. Biedermanede20592015-10-07 16:48:47 -05003596static int ip6_pkt_discard_out(struct net *net, struct sock *sk, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003597{
Eric Dumazetadf30902009-06-02 05:19:30 +00003598 skb->dev = skb_dst(skb)->dev;
YOSHIFUJI Hideaki612f09e2007-04-13 16:18:02 -07003599 return ip6_pkt_drop(skb, ICMPV6_NOROUTE, IPSTATS_MIB_OUTNOROUTES);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003600}
3601
Thomas Graf9ce8ade2006-10-18 20:46:54 -07003602static int ip6_pkt_prohibit(struct sk_buff *skb)
3603{
YOSHIFUJI Hideaki612f09e2007-04-13 16:18:02 -07003604 return ip6_pkt_drop(skb, ICMPV6_ADM_PROHIBITED, IPSTATS_MIB_INNOROUTES);
Thomas Graf9ce8ade2006-10-18 20:46:54 -07003605}
3606
Eric W. Biedermanede20592015-10-07 16:48:47 -05003607static int ip6_pkt_prohibit_out(struct net *net, struct sock *sk, struct sk_buff *skb)
Thomas Graf9ce8ade2006-10-18 20:46:54 -07003608{
Eric Dumazetadf30902009-06-02 05:19:30 +00003609 skb->dev = skb_dst(skb)->dev;
YOSHIFUJI Hideaki612f09e2007-04-13 16:18:02 -07003610 return ip6_pkt_drop(skb, ICMPV6_ADM_PROHIBITED, IPSTATS_MIB_OUTNOROUTES);
Thomas Graf9ce8ade2006-10-18 20:46:54 -07003611}
3612
Linus Torvalds1da177e2005-04-16 15:20:36 -07003613/*
3614 * Allocate a dst for local (unicast / anycast) address.
3615 */
3616
David Ahern8d1c8022018-04-17 17:33:26 -07003617struct fib6_info *addrconf_dst_alloc(struct net *net,
David Ahernafb1d4b52018-04-17 17:33:11 -07003618 struct inet6_dev *idev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003619 const struct in6_addr *addr,
David Ahernacb54e32018-04-17 17:33:22 -07003620 bool anycast, gfp_t gfp_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003621{
David Ahernca254492015-10-12 11:47:10 -07003622 u32 tb_id;
David Ahern4832c302017-08-17 12:17:20 -07003623 struct net_device *dev = idev->dev;
David Ahern8d1c8022018-04-17 17:33:26 -07003624 struct fib6_info *rt;
David Ahern5f02ce242016-09-10 12:09:54 -07003625
David Ahern93531c62018-04-17 17:33:25 -07003626 rt = fib6_info_alloc(gfp_flags);
Hannes Frederic Sowaa3300ef2013-12-07 03:33:45 +01003627 if (!rt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003628 return ERR_PTR(-ENOMEM);
3629
David Ahern3b6761d2018-04-17 17:33:20 -07003630 rt->dst_nocount = true;
3631
Linus Torvalds1da177e2005-04-16 15:20:36 -07003632 in6_dev_hold(idev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003633 rt->rt6i_idev = idev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003634
David Ahern3b6761d2018-04-17 17:33:20 -07003635 rt->dst_host = true;
David Ahern94b5e0f2017-02-02 08:52:21 -08003636 rt->rt6i_protocol = RTPROT_KERNEL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003637 rt->rt6i_flags = RTF_UP | RTF_NONEXTHOP;
David Aherne8478e82018-04-17 17:33:13 -07003638 if (anycast) {
3639 rt->fib6_type = RTN_ANYCAST;
YOSHIFUJI Hideaki58c4fb82005-12-21 22:56:42 +09003640 rt->rt6i_flags |= RTF_ANYCAST;
David Aherne8478e82018-04-17 17:33:13 -07003641 } else {
3642 rt->fib6_type = RTN_LOCAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003643 rt->rt6i_flags |= RTF_LOCAL;
David Aherne8478e82018-04-17 17:33:13 -07003644 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003645
David Ahern5e670d82018-04-17 17:33:14 -07003646 rt->fib6_nh.nh_gw = *addr;
David Ahern93531c62018-04-17 17:33:25 -07003647 dev_hold(dev);
David Ahern5e670d82018-04-17 17:33:14 -07003648 rt->fib6_nh.nh_dev = dev;
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00003649 rt->rt6i_dst.addr = *addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003650 rt->rt6i_dst.plen = 128;
David Ahernca254492015-10-12 11:47:10 -07003651 tb_id = l3mdev_fib_table(idev->dev) ? : RT6_TABLE_LOCAL;
3652 rt->rt6i_table = fib6_get_table(net, tb_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003653
Linus Torvalds1da177e2005-04-16 15:20:36 -07003654 return rt;
3655}
3656
Daniel Walterc3968a82011-04-13 21:10:57 +00003657/* remove deleted ip from prefsrc entries */
3658struct arg_dev_net_ip {
3659 struct net_device *dev;
3660 struct net *net;
3661 struct in6_addr *addr;
3662};
3663
David Ahern8d1c8022018-04-17 17:33:26 -07003664static int fib6_remove_prefsrc(struct fib6_info *rt, void *arg)
Daniel Walterc3968a82011-04-13 21:10:57 +00003665{
3666 struct net_device *dev = ((struct arg_dev_net_ip *)arg)->dev;
3667 struct net *net = ((struct arg_dev_net_ip *)arg)->net;
3668 struct in6_addr *addr = ((struct arg_dev_net_ip *)arg)->addr;
3669
David Ahern5e670d82018-04-17 17:33:14 -07003670 if (((void *)rt->fib6_nh.nh_dev == dev || !dev) &&
David Ahern421842e2018-04-17 17:33:18 -07003671 rt != net->ipv6.fib6_null_entry &&
Daniel Walterc3968a82011-04-13 21:10:57 +00003672 ipv6_addr_equal(addr, &rt->rt6i_prefsrc.addr)) {
Wei Wang60006a42017-10-06 12:05:58 -07003673 spin_lock_bh(&rt6_exception_lock);
Daniel Walterc3968a82011-04-13 21:10:57 +00003674 /* remove prefsrc entry */
3675 rt->rt6i_prefsrc.plen = 0;
Wei Wang60006a42017-10-06 12:05:58 -07003676 /* need to update cache as well */
3677 rt6_exceptions_remove_prefsrc(rt);
3678 spin_unlock_bh(&rt6_exception_lock);
Daniel Walterc3968a82011-04-13 21:10:57 +00003679 }
3680 return 0;
3681}
3682
3683void rt6_remove_prefsrc(struct inet6_ifaddr *ifp)
3684{
3685 struct net *net = dev_net(ifp->idev->dev);
3686 struct arg_dev_net_ip adni = {
3687 .dev = ifp->idev->dev,
3688 .net = net,
3689 .addr = &ifp->addr,
3690 };
Li RongQing0c3584d2013-12-27 16:32:38 +08003691 fib6_clean_all(net, fib6_remove_prefsrc, &adni);
Daniel Walterc3968a82011-04-13 21:10:57 +00003692}
3693
Duan Jiongbe7a0102014-05-15 15:56:14 +08003694#define RTF_RA_ROUTER (RTF_ADDRCONF | RTF_DEFAULT | RTF_GATEWAY)
Duan Jiongbe7a0102014-05-15 15:56:14 +08003695
3696/* Remove routers and update dst entries when gateway turn into host. */
David Ahern8d1c8022018-04-17 17:33:26 -07003697static int fib6_clean_tohost(struct fib6_info *rt, void *arg)
Duan Jiongbe7a0102014-05-15 15:56:14 +08003698{
3699 struct in6_addr *gateway = (struct in6_addr *)arg;
3700
Wei Wang2b760fc2017-10-06 12:06:03 -07003701 if (((rt->rt6i_flags & RTF_RA_ROUTER) == RTF_RA_ROUTER) &&
David Ahern5e670d82018-04-17 17:33:14 -07003702 ipv6_addr_equal(gateway, &rt->fib6_nh.nh_gw)) {
Duan Jiongbe7a0102014-05-15 15:56:14 +08003703 return -1;
3704 }
Wei Wangb16cb452017-10-06 12:06:00 -07003705
3706 /* Further clean up cached routes in exception table.
3707 * This is needed because cached route may have a different
3708 * gateway than its 'parent' in the case of an ip redirect.
3709 */
3710 rt6_exceptions_clean_tohost(rt, gateway);
3711
Duan Jiongbe7a0102014-05-15 15:56:14 +08003712 return 0;
3713}
3714
3715void rt6_clean_tohost(struct net *net, struct in6_addr *gateway)
3716{
3717 fib6_clean_all(net, fib6_clean_tohost, gateway);
3718}
3719
Ido Schimmel2127d952018-01-07 12:45:03 +02003720struct arg_netdev_event {
3721 const struct net_device *dev;
Ido Schimmel4c981e22018-01-07 12:45:04 +02003722 union {
3723 unsigned int nh_flags;
3724 unsigned long event;
3725 };
Ido Schimmel2127d952018-01-07 12:45:03 +02003726};
3727
David Ahern8d1c8022018-04-17 17:33:26 -07003728static struct fib6_info *rt6_multipath_first_sibling(const struct fib6_info *rt)
Ido Schimmeld7dedee2018-01-09 16:40:25 +02003729{
David Ahern8d1c8022018-04-17 17:33:26 -07003730 struct fib6_info *iter;
Ido Schimmeld7dedee2018-01-09 16:40:25 +02003731 struct fib6_node *fn;
3732
3733 fn = rcu_dereference_protected(rt->rt6i_node,
3734 lockdep_is_held(&rt->rt6i_table->tb6_lock));
3735 iter = rcu_dereference_protected(fn->leaf,
3736 lockdep_is_held(&rt->rt6i_table->tb6_lock));
3737 while (iter) {
3738 if (iter->rt6i_metric == rt->rt6i_metric &&
3739 rt6_qualify_for_ecmp(iter))
3740 return iter;
3741 iter = rcu_dereference_protected(iter->rt6_next,
3742 lockdep_is_held(&rt->rt6i_table->tb6_lock));
3743 }
3744
3745 return NULL;
3746}
3747
David Ahern8d1c8022018-04-17 17:33:26 -07003748static bool rt6_is_dead(const struct fib6_info *rt)
Ido Schimmeld7dedee2018-01-09 16:40:25 +02003749{
David Ahern5e670d82018-04-17 17:33:14 -07003750 if (rt->fib6_nh.nh_flags & RTNH_F_DEAD ||
3751 (rt->fib6_nh.nh_flags & RTNH_F_LINKDOWN &&
Ido Schimmeld7dedee2018-01-09 16:40:25 +02003752 rt->rt6i_idev->cnf.ignore_routes_with_linkdown))
3753 return true;
3754
3755 return false;
3756}
3757
David Ahern8d1c8022018-04-17 17:33:26 -07003758static int rt6_multipath_total_weight(const struct fib6_info *rt)
Ido Schimmeld7dedee2018-01-09 16:40:25 +02003759{
David Ahern8d1c8022018-04-17 17:33:26 -07003760 struct fib6_info *iter;
Ido Schimmeld7dedee2018-01-09 16:40:25 +02003761 int total = 0;
3762
3763 if (!rt6_is_dead(rt))
David Ahern5e670d82018-04-17 17:33:14 -07003764 total += rt->fib6_nh.nh_weight;
Ido Schimmeld7dedee2018-01-09 16:40:25 +02003765
3766 list_for_each_entry(iter, &rt->rt6i_siblings, rt6i_siblings) {
3767 if (!rt6_is_dead(iter))
David Ahern5e670d82018-04-17 17:33:14 -07003768 total += iter->fib6_nh.nh_weight;
Ido Schimmeld7dedee2018-01-09 16:40:25 +02003769 }
3770
3771 return total;
3772}
3773
David Ahern8d1c8022018-04-17 17:33:26 -07003774static void rt6_upper_bound_set(struct fib6_info *rt, int *weight, int total)
Ido Schimmeld7dedee2018-01-09 16:40:25 +02003775{
3776 int upper_bound = -1;
3777
3778 if (!rt6_is_dead(rt)) {
David Ahern5e670d82018-04-17 17:33:14 -07003779 *weight += rt->fib6_nh.nh_weight;
Ido Schimmeld7dedee2018-01-09 16:40:25 +02003780 upper_bound = DIV_ROUND_CLOSEST_ULL((u64) (*weight) << 31,
3781 total) - 1;
3782 }
David Ahern5e670d82018-04-17 17:33:14 -07003783 atomic_set(&rt->fib6_nh.nh_upper_bound, upper_bound);
Ido Schimmeld7dedee2018-01-09 16:40:25 +02003784}
3785
David Ahern8d1c8022018-04-17 17:33:26 -07003786static void rt6_multipath_upper_bound_set(struct fib6_info *rt, int total)
Ido Schimmeld7dedee2018-01-09 16:40:25 +02003787{
David Ahern8d1c8022018-04-17 17:33:26 -07003788 struct fib6_info *iter;
Ido Schimmeld7dedee2018-01-09 16:40:25 +02003789 int weight = 0;
3790
3791 rt6_upper_bound_set(rt, &weight, total);
3792
3793 list_for_each_entry(iter, &rt->rt6i_siblings, rt6i_siblings)
3794 rt6_upper_bound_set(iter, &weight, total);
3795}
3796
David Ahern8d1c8022018-04-17 17:33:26 -07003797void rt6_multipath_rebalance(struct fib6_info *rt)
Ido Schimmeld7dedee2018-01-09 16:40:25 +02003798{
David Ahern8d1c8022018-04-17 17:33:26 -07003799 struct fib6_info *first;
Ido Schimmeld7dedee2018-01-09 16:40:25 +02003800 int total;
3801
3802 /* In case the entire multipath route was marked for flushing,
3803 * then there is no need to rebalance upon the removal of every
3804 * sibling route.
3805 */
3806 if (!rt->rt6i_nsiblings || rt->should_flush)
3807 return;
3808
3809 /* During lookup routes are evaluated in order, so we need to
3810 * make sure upper bounds are assigned from the first sibling
3811 * onwards.
3812 */
3813 first = rt6_multipath_first_sibling(rt);
3814 if (WARN_ON_ONCE(!first))
3815 return;
3816
3817 total = rt6_multipath_total_weight(first);
3818 rt6_multipath_upper_bound_set(first, total);
3819}
3820
David Ahern8d1c8022018-04-17 17:33:26 -07003821static int fib6_ifup(struct fib6_info *rt, void *p_arg)
Ido Schimmel2127d952018-01-07 12:45:03 +02003822{
3823 const struct arg_netdev_event *arg = p_arg;
David Ahern7aef6852018-04-17 17:33:10 -07003824 struct net *net = dev_net(arg->dev);
Ido Schimmel2127d952018-01-07 12:45:03 +02003825
David Ahern421842e2018-04-17 17:33:18 -07003826 if (rt != net->ipv6.fib6_null_entry && rt->fib6_nh.nh_dev == arg->dev) {
David Ahern5e670d82018-04-17 17:33:14 -07003827 rt->fib6_nh.nh_flags &= ~arg->nh_flags;
David Ahern7aef6852018-04-17 17:33:10 -07003828 fib6_update_sernum_upto_root(net, rt);
Ido Schimmeld7dedee2018-01-09 16:40:25 +02003829 rt6_multipath_rebalance(rt);
Ido Schimmel1de178e2018-01-07 12:45:15 +02003830 }
Ido Schimmel2127d952018-01-07 12:45:03 +02003831
3832 return 0;
3833}
3834
3835void rt6_sync_up(struct net_device *dev, unsigned int nh_flags)
3836{
3837 struct arg_netdev_event arg = {
3838 .dev = dev,
Ido Schimmel6802f3a2018-01-12 22:07:36 +02003839 {
3840 .nh_flags = nh_flags,
3841 },
Ido Schimmel2127d952018-01-07 12:45:03 +02003842 };
3843
3844 if (nh_flags & RTNH_F_DEAD && netif_carrier_ok(dev))
3845 arg.nh_flags |= RTNH_F_LINKDOWN;
3846
3847 fib6_clean_all(dev_net(dev), fib6_ifup, &arg);
3848}
3849
David Ahern8d1c8022018-04-17 17:33:26 -07003850static bool rt6_multipath_uses_dev(const struct fib6_info *rt,
Ido Schimmel1de178e2018-01-07 12:45:15 +02003851 const struct net_device *dev)
3852{
David Ahern8d1c8022018-04-17 17:33:26 -07003853 struct fib6_info *iter;
Ido Schimmel1de178e2018-01-07 12:45:15 +02003854
David Ahern5e670d82018-04-17 17:33:14 -07003855 if (rt->fib6_nh.nh_dev == dev)
Ido Schimmel1de178e2018-01-07 12:45:15 +02003856 return true;
3857 list_for_each_entry(iter, &rt->rt6i_siblings, rt6i_siblings)
David Ahern5e670d82018-04-17 17:33:14 -07003858 if (iter->fib6_nh.nh_dev == dev)
Ido Schimmel1de178e2018-01-07 12:45:15 +02003859 return true;
3860
3861 return false;
3862}
3863
David Ahern8d1c8022018-04-17 17:33:26 -07003864static void rt6_multipath_flush(struct fib6_info *rt)
Ido Schimmel1de178e2018-01-07 12:45:15 +02003865{
David Ahern8d1c8022018-04-17 17:33:26 -07003866 struct fib6_info *iter;
Ido Schimmel1de178e2018-01-07 12:45:15 +02003867
3868 rt->should_flush = 1;
3869 list_for_each_entry(iter, &rt->rt6i_siblings, rt6i_siblings)
3870 iter->should_flush = 1;
3871}
3872
David Ahern8d1c8022018-04-17 17:33:26 -07003873static unsigned int rt6_multipath_dead_count(const struct fib6_info *rt,
Ido Schimmel1de178e2018-01-07 12:45:15 +02003874 const struct net_device *down_dev)
3875{
David Ahern8d1c8022018-04-17 17:33:26 -07003876 struct fib6_info *iter;
Ido Schimmel1de178e2018-01-07 12:45:15 +02003877 unsigned int dead = 0;
3878
David Ahern5e670d82018-04-17 17:33:14 -07003879 if (rt->fib6_nh.nh_dev == down_dev ||
3880 rt->fib6_nh.nh_flags & RTNH_F_DEAD)
Ido Schimmel1de178e2018-01-07 12:45:15 +02003881 dead++;
3882 list_for_each_entry(iter, &rt->rt6i_siblings, rt6i_siblings)
David Ahern5e670d82018-04-17 17:33:14 -07003883 if (iter->fib6_nh.nh_dev == down_dev ||
3884 iter->fib6_nh.nh_flags & RTNH_F_DEAD)
Ido Schimmel1de178e2018-01-07 12:45:15 +02003885 dead++;
3886
3887 return dead;
3888}
3889
David Ahern8d1c8022018-04-17 17:33:26 -07003890static void rt6_multipath_nh_flags_set(struct fib6_info *rt,
Ido Schimmel1de178e2018-01-07 12:45:15 +02003891 const struct net_device *dev,
3892 unsigned int nh_flags)
3893{
David Ahern8d1c8022018-04-17 17:33:26 -07003894 struct fib6_info *iter;
Ido Schimmel1de178e2018-01-07 12:45:15 +02003895
David Ahern5e670d82018-04-17 17:33:14 -07003896 if (rt->fib6_nh.nh_dev == dev)
3897 rt->fib6_nh.nh_flags |= nh_flags;
Ido Schimmel1de178e2018-01-07 12:45:15 +02003898 list_for_each_entry(iter, &rt->rt6i_siblings, rt6i_siblings)
David Ahern5e670d82018-04-17 17:33:14 -07003899 if (iter->fib6_nh.nh_dev == dev)
3900 iter->fib6_nh.nh_flags |= nh_flags;
Ido Schimmel1de178e2018-01-07 12:45:15 +02003901}
3902
David Aherna1a22c12017-01-18 07:40:36 -08003903/* called with write lock held for table with rt */
David Ahern8d1c8022018-04-17 17:33:26 -07003904static int fib6_ifdown(struct fib6_info *rt, void *p_arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003905{
Ido Schimmel4c981e22018-01-07 12:45:04 +02003906 const struct arg_netdev_event *arg = p_arg;
3907 const struct net_device *dev = arg->dev;
David Ahern7aef6852018-04-17 17:33:10 -07003908 struct net *net = dev_net(dev);
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003909
David Ahern421842e2018-04-17 17:33:18 -07003910 if (rt == net->ipv6.fib6_null_entry)
Ido Schimmel27c6fa72018-01-07 12:45:05 +02003911 return 0;
3912
3913 switch (arg->event) {
3914 case NETDEV_UNREGISTER:
David Ahern5e670d82018-04-17 17:33:14 -07003915 return rt->fib6_nh.nh_dev == dev ? -1 : 0;
Ido Schimmel27c6fa72018-01-07 12:45:05 +02003916 case NETDEV_DOWN:
Ido Schimmel1de178e2018-01-07 12:45:15 +02003917 if (rt->should_flush)
Ido Schimmel27c6fa72018-01-07 12:45:05 +02003918 return -1;
Ido Schimmel1de178e2018-01-07 12:45:15 +02003919 if (!rt->rt6i_nsiblings)
David Ahern5e670d82018-04-17 17:33:14 -07003920 return rt->fib6_nh.nh_dev == dev ? -1 : 0;
Ido Schimmel1de178e2018-01-07 12:45:15 +02003921 if (rt6_multipath_uses_dev(rt, dev)) {
3922 unsigned int count;
3923
3924 count = rt6_multipath_dead_count(rt, dev);
3925 if (rt->rt6i_nsiblings + 1 == count) {
3926 rt6_multipath_flush(rt);
3927 return -1;
3928 }
3929 rt6_multipath_nh_flags_set(rt, dev, RTNH_F_DEAD |
3930 RTNH_F_LINKDOWN);
David Ahern7aef6852018-04-17 17:33:10 -07003931 fib6_update_sernum(net, rt);
Ido Schimmeld7dedee2018-01-09 16:40:25 +02003932 rt6_multipath_rebalance(rt);
Ido Schimmel1de178e2018-01-07 12:45:15 +02003933 }
3934 return -2;
Ido Schimmel27c6fa72018-01-07 12:45:05 +02003935 case NETDEV_CHANGE:
David Ahern5e670d82018-04-17 17:33:14 -07003936 if (rt->fib6_nh.nh_dev != dev ||
Ido Schimmel1de178e2018-01-07 12:45:15 +02003937 rt->rt6i_flags & (RTF_LOCAL | RTF_ANYCAST))
Ido Schimmel27c6fa72018-01-07 12:45:05 +02003938 break;
David Ahern5e670d82018-04-17 17:33:14 -07003939 rt->fib6_nh.nh_flags |= RTNH_F_LINKDOWN;
Ido Schimmeld7dedee2018-01-09 16:40:25 +02003940 rt6_multipath_rebalance(rt);
Ido Schimmel27c6fa72018-01-07 12:45:05 +02003941 break;
Ido Schimmel2b241362018-01-07 12:45:02 +02003942 }
David S. Millerc159d302011-12-26 15:24:36 -05003943
Linus Torvalds1da177e2005-04-16 15:20:36 -07003944 return 0;
3945}
3946
Ido Schimmel27c6fa72018-01-07 12:45:05 +02003947void rt6_sync_down_dev(struct net_device *dev, unsigned long event)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003948{
Ido Schimmel4c981e22018-01-07 12:45:04 +02003949 struct arg_netdev_event arg = {
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003950 .dev = dev,
Ido Schimmel6802f3a2018-01-12 22:07:36 +02003951 {
3952 .event = event,
3953 },
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003954 };
3955
Ido Schimmel4c981e22018-01-07 12:45:04 +02003956 fib6_clean_all(dev_net(dev), fib6_ifdown, &arg);
3957}
3958
3959void rt6_disable_ip(struct net_device *dev, unsigned long event)
3960{
3961 rt6_sync_down_dev(dev, event);
3962 rt6_uncached_list_flush_dev(dev_net(dev), dev);
3963 neigh_ifdown(&nd_tbl, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003964}
3965
Eric Dumazet95c96172012-04-15 05:58:06 +00003966struct rt6_mtu_change_arg {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003967 struct net_device *dev;
Eric Dumazet95c96172012-04-15 05:58:06 +00003968 unsigned int mtu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003969};
3970
David Ahern8d1c8022018-04-17 17:33:26 -07003971static int rt6_mtu_change_route(struct fib6_info *rt, void *p_arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003972{
3973 struct rt6_mtu_change_arg *arg = (struct rt6_mtu_change_arg *) p_arg;
3974 struct inet6_dev *idev;
3975
3976 /* In IPv6 pmtu discovery is not optional,
3977 so that RTAX_MTU lock cannot disable it.
3978 We still use this lock to block changes
3979 caused by addrconf/ndisc.
3980 */
3981
3982 idev = __in6_dev_get(arg->dev);
David S. Miller38308472011-12-03 18:02:47 -05003983 if (!idev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003984 return 0;
3985
3986 /* For administrative MTU increase, there is no way to discover
3987 IPv6 PMTU increase, so PMTU increase should be updated here.
3988 Since RFC 1981 doesn't include administrative MTU increase
3989 update PMTU increase is a MUST. (i.e. jumbo frame)
3990 */
David Ahern5e670d82018-04-17 17:33:14 -07003991 if (rt->fib6_nh.nh_dev == arg->dev &&
David Ahernd4ead6b2018-04-17 17:33:16 -07003992 !fib6_metric_locked(rt, RTAX_MTU)) {
3993 u32 mtu = rt->fib6_pmtu;
3994
3995 if (mtu >= arg->mtu ||
3996 (mtu < arg->mtu && mtu == idev->cnf.mtu6))
3997 fib6_metric_set(rt, RTAX_MTU, arg->mtu);
3998
Wei Wangf5bbe7e2017-10-06 12:05:59 -07003999 spin_lock_bh(&rt6_exception_lock);
Stefano Brivioe9fa1492018-03-06 11:10:19 +01004000 rt6_exceptions_update_pmtu(idev, rt, arg->mtu);
Wei Wangf5bbe7e2017-10-06 12:05:59 -07004001 spin_unlock_bh(&rt6_exception_lock);
Simon Arlott566cfd82007-07-26 00:09:55 -07004002 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004003 return 0;
4004}
4005
Eric Dumazet95c96172012-04-15 05:58:06 +00004006void rt6_mtu_change(struct net_device *dev, unsigned int mtu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004007{
Thomas Grafc71099a2006-08-04 23:20:06 -07004008 struct rt6_mtu_change_arg arg = {
4009 .dev = dev,
4010 .mtu = mtu,
4011 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07004012
Li RongQing0c3584d2013-12-27 16:32:38 +08004013 fib6_clean_all(dev_net(dev), rt6_mtu_change_route, &arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004014}
4015
Patrick McHardyef7c79e2007-06-05 12:38:30 -07004016static const struct nla_policy rtm_ipv6_policy[RTA_MAX+1] = {
Thomas Graf5176f912006-08-26 20:13:18 -07004017 [RTA_GATEWAY] = { .len = sizeof(struct in6_addr) },
Thomas Graf86872cb2006-08-22 00:01:08 -07004018 [RTA_OIF] = { .type = NLA_U32 },
Thomas Grafab364a62006-08-22 00:01:47 -07004019 [RTA_IIF] = { .type = NLA_U32 },
Thomas Graf86872cb2006-08-22 00:01:08 -07004020 [RTA_PRIORITY] = { .type = NLA_U32 },
4021 [RTA_METRICS] = { .type = NLA_NESTED },
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00004022 [RTA_MULTIPATH] = { .len = sizeof(struct rtnexthop) },
Lubomir Rintelc78ba6d2015-03-11 15:39:21 +01004023 [RTA_PREF] = { .type = NLA_U8 },
Roopa Prabhu19e42e42015-07-21 10:43:48 +02004024 [RTA_ENCAP_TYPE] = { .type = NLA_U16 },
4025 [RTA_ENCAP] = { .type = NLA_NESTED },
Xin Long32bc2012015-12-16 17:50:11 +08004026 [RTA_EXPIRES] = { .type = NLA_U32 },
Lorenzo Colitti622ec2c2016-11-04 02:23:42 +09004027 [RTA_UID] = { .type = NLA_U32 },
Liping Zhang3b45a412017-02-27 20:59:39 +08004028 [RTA_MARK] = { .type = NLA_U32 },
Thomas Graf86872cb2006-08-22 00:01:08 -07004029};
4030
4031static int rtm_to_fib6_config(struct sk_buff *skb, struct nlmsghdr *nlh,
David Ahern333c4302017-05-21 10:12:04 -06004032 struct fib6_config *cfg,
4033 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004034{
Thomas Graf86872cb2006-08-22 00:01:08 -07004035 struct rtmsg *rtm;
4036 struct nlattr *tb[RTA_MAX+1];
Lubomir Rintelc78ba6d2015-03-11 15:39:21 +01004037 unsigned int pref;
Thomas Graf86872cb2006-08-22 00:01:08 -07004038 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004039
Johannes Bergfceb6432017-04-12 14:34:07 +02004040 err = nlmsg_parse(nlh, sizeof(*rtm), tb, RTA_MAX, rtm_ipv6_policy,
4041 NULL);
Thomas Graf86872cb2006-08-22 00:01:08 -07004042 if (err < 0)
4043 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004044
Thomas Graf86872cb2006-08-22 00:01:08 -07004045 err = -EINVAL;
4046 rtm = nlmsg_data(nlh);
4047 memset(cfg, 0, sizeof(*cfg));
4048
4049 cfg->fc_table = rtm->rtm_table;
4050 cfg->fc_dst_len = rtm->rtm_dst_len;
4051 cfg->fc_src_len = rtm->rtm_src_len;
4052 cfg->fc_flags = RTF_UP;
4053 cfg->fc_protocol = rtm->rtm_protocol;
Nicolas Dichtelef2c7d72012-09-05 02:12:42 +00004054 cfg->fc_type = rtm->rtm_type;
Thomas Graf86872cb2006-08-22 00:01:08 -07004055
Nicolas Dichtelef2c7d72012-09-05 02:12:42 +00004056 if (rtm->rtm_type == RTN_UNREACHABLE ||
4057 rtm->rtm_type == RTN_BLACKHOLE ||
Nicolas Dichtelb4949ab2012-09-06 05:53:35 +00004058 rtm->rtm_type == RTN_PROHIBIT ||
4059 rtm->rtm_type == RTN_THROW)
Thomas Graf86872cb2006-08-22 00:01:08 -07004060 cfg->fc_flags |= RTF_REJECT;
4061
Maciej Żenczykowskiab79ad12010-09-27 00:07:02 +00004062 if (rtm->rtm_type == RTN_LOCAL)
4063 cfg->fc_flags |= RTF_LOCAL;
4064
Martin KaFai Lau1f56a012015-04-28 13:03:03 -07004065 if (rtm->rtm_flags & RTM_F_CLONED)
4066 cfg->fc_flags |= RTF_CACHE;
4067
David Ahernfc1e64e2018-01-25 16:55:09 -08004068 cfg->fc_flags |= (rtm->rtm_flags & RTNH_F_ONLINK);
4069
Eric W. Biederman15e47302012-09-07 20:12:54 +00004070 cfg->fc_nlinfo.portid = NETLINK_CB(skb).portid;
Thomas Graf86872cb2006-08-22 00:01:08 -07004071 cfg->fc_nlinfo.nlh = nlh;
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09004072 cfg->fc_nlinfo.nl_net = sock_net(skb->sk);
Thomas Graf86872cb2006-08-22 00:01:08 -07004073
4074 if (tb[RTA_GATEWAY]) {
Jiri Benc67b61f62015-03-29 16:59:26 +02004075 cfg->fc_gateway = nla_get_in6_addr(tb[RTA_GATEWAY]);
Thomas Graf86872cb2006-08-22 00:01:08 -07004076 cfg->fc_flags |= RTF_GATEWAY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004077 }
Thomas Graf86872cb2006-08-22 00:01:08 -07004078
4079 if (tb[RTA_DST]) {
4080 int plen = (rtm->rtm_dst_len + 7) >> 3;
4081
4082 if (nla_len(tb[RTA_DST]) < plen)
4083 goto errout;
4084
4085 nla_memcpy(&cfg->fc_dst, tb[RTA_DST], plen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004086 }
Thomas Graf86872cb2006-08-22 00:01:08 -07004087
4088 if (tb[RTA_SRC]) {
4089 int plen = (rtm->rtm_src_len + 7) >> 3;
4090
4091 if (nla_len(tb[RTA_SRC]) < plen)
4092 goto errout;
4093
4094 nla_memcpy(&cfg->fc_src, tb[RTA_SRC], plen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004095 }
Thomas Graf86872cb2006-08-22 00:01:08 -07004096
Daniel Walterc3968a82011-04-13 21:10:57 +00004097 if (tb[RTA_PREFSRC])
Jiri Benc67b61f62015-03-29 16:59:26 +02004098 cfg->fc_prefsrc = nla_get_in6_addr(tb[RTA_PREFSRC]);
Daniel Walterc3968a82011-04-13 21:10:57 +00004099
Thomas Graf86872cb2006-08-22 00:01:08 -07004100 if (tb[RTA_OIF])
4101 cfg->fc_ifindex = nla_get_u32(tb[RTA_OIF]);
4102
4103 if (tb[RTA_PRIORITY])
4104 cfg->fc_metric = nla_get_u32(tb[RTA_PRIORITY]);
4105
4106 if (tb[RTA_METRICS]) {
4107 cfg->fc_mx = nla_data(tb[RTA_METRICS]);
4108 cfg->fc_mx_len = nla_len(tb[RTA_METRICS]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004109 }
Thomas Graf86872cb2006-08-22 00:01:08 -07004110
4111 if (tb[RTA_TABLE])
4112 cfg->fc_table = nla_get_u32(tb[RTA_TABLE]);
4113
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00004114 if (tb[RTA_MULTIPATH]) {
4115 cfg->fc_mp = nla_data(tb[RTA_MULTIPATH]);
4116 cfg->fc_mp_len = nla_len(tb[RTA_MULTIPATH]);
David Ahern9ed59592017-01-17 14:57:36 -08004117
4118 err = lwtunnel_valid_encap_type_attr(cfg->fc_mp,
David Ahernc255bd62017-05-27 16:19:27 -06004119 cfg->fc_mp_len, extack);
David Ahern9ed59592017-01-17 14:57:36 -08004120 if (err < 0)
4121 goto errout;
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00004122 }
4123
Lubomir Rintelc78ba6d2015-03-11 15:39:21 +01004124 if (tb[RTA_PREF]) {
4125 pref = nla_get_u8(tb[RTA_PREF]);
4126 if (pref != ICMPV6_ROUTER_PREF_LOW &&
4127 pref != ICMPV6_ROUTER_PREF_HIGH)
4128 pref = ICMPV6_ROUTER_PREF_MEDIUM;
4129 cfg->fc_flags |= RTF_PREF(pref);
4130 }
4131
Roopa Prabhu19e42e42015-07-21 10:43:48 +02004132 if (tb[RTA_ENCAP])
4133 cfg->fc_encap = tb[RTA_ENCAP];
4134
David Ahern9ed59592017-01-17 14:57:36 -08004135 if (tb[RTA_ENCAP_TYPE]) {
Roopa Prabhu19e42e42015-07-21 10:43:48 +02004136 cfg->fc_encap_type = nla_get_u16(tb[RTA_ENCAP_TYPE]);
4137
David Ahernc255bd62017-05-27 16:19:27 -06004138 err = lwtunnel_valid_encap_type(cfg->fc_encap_type, extack);
David Ahern9ed59592017-01-17 14:57:36 -08004139 if (err < 0)
4140 goto errout;
4141 }
4142
Xin Long32bc2012015-12-16 17:50:11 +08004143 if (tb[RTA_EXPIRES]) {
4144 unsigned long timeout = addrconf_timeout_fixup(nla_get_u32(tb[RTA_EXPIRES]), HZ);
4145
4146 if (addrconf_finite_timeout(timeout)) {
4147 cfg->fc_expires = jiffies_to_clock_t(timeout * HZ);
4148 cfg->fc_flags |= RTF_EXPIRES;
4149 }
4150 }
4151
Thomas Graf86872cb2006-08-22 00:01:08 -07004152 err = 0;
4153errout:
4154 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004155}
4156
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07004157struct rt6_nh {
David Ahern8d1c8022018-04-17 17:33:26 -07004158 struct fib6_info *fib6_info;
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07004159 struct fib6_config r_cfg;
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07004160 struct list_head next;
4161};
4162
4163static void ip6_print_replace_route_err(struct list_head *rt6_nh_list)
4164{
4165 struct rt6_nh *nh;
4166
4167 list_for_each_entry(nh, rt6_nh_list, next) {
David Ahern7d4d5062017-02-02 12:37:12 -08004168 pr_warn("IPV6: multipath route replace failed (check consistency of installed routes): %pI6c nexthop %pI6c ifi %d\n",
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07004169 &nh->r_cfg.fc_dst, &nh->r_cfg.fc_gateway,
4170 nh->r_cfg.fc_ifindex);
4171 }
4172}
4173
David Ahernd4ead6b2018-04-17 17:33:16 -07004174static int ip6_route_info_append(struct net *net,
4175 struct list_head *rt6_nh_list,
David Ahern8d1c8022018-04-17 17:33:26 -07004176 struct fib6_info *rt,
4177 struct fib6_config *r_cfg)
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07004178{
4179 struct rt6_nh *nh;
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07004180 int err = -EEXIST;
4181
4182 list_for_each_entry(nh, rt6_nh_list, next) {
David Ahern8d1c8022018-04-17 17:33:26 -07004183 /* check if fib6_info already exists */
4184 if (rt6_duplicate_nexthop(nh->fib6_info, rt))
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07004185 return err;
4186 }
4187
4188 nh = kzalloc(sizeof(*nh), GFP_KERNEL);
4189 if (!nh)
4190 return -ENOMEM;
David Ahern8d1c8022018-04-17 17:33:26 -07004191 nh->fib6_info = rt;
David Ahernd4ead6b2018-04-17 17:33:16 -07004192 err = ip6_convert_metrics(net, rt, r_cfg);
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07004193 if (err) {
4194 kfree(nh);
4195 return err;
4196 }
4197 memcpy(&nh->r_cfg, r_cfg, sizeof(*r_cfg));
4198 list_add_tail(&nh->next, rt6_nh_list);
4199
4200 return 0;
4201}
4202
David Ahern8d1c8022018-04-17 17:33:26 -07004203static void ip6_route_mpath_notify(struct fib6_info *rt,
4204 struct fib6_info *rt_last,
David Ahern3b1137f2017-02-02 12:37:10 -08004205 struct nl_info *info,
4206 __u16 nlflags)
4207{
4208 /* if this is an APPEND route, then rt points to the first route
4209 * inserted and rt_last points to last route inserted. Userspace
4210 * wants a consistent dump of the route which starts at the first
4211 * nexthop. Since sibling routes are always added at the end of
4212 * the list, find the first sibling of the last route appended
4213 */
4214 if ((nlflags & NLM_F_APPEND) && rt_last && rt_last->rt6i_nsiblings) {
4215 rt = list_first_entry(&rt_last->rt6i_siblings,
David Ahern8d1c8022018-04-17 17:33:26 -07004216 struct fib6_info,
David Ahern3b1137f2017-02-02 12:37:10 -08004217 rt6i_siblings);
4218 }
4219
4220 if (rt)
4221 inet6_rt_notify(RTM_NEWROUTE, rt, info, nlflags);
4222}
4223
David Ahern333c4302017-05-21 10:12:04 -06004224static int ip6_route_multipath_add(struct fib6_config *cfg,
4225 struct netlink_ext_ack *extack)
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00004226{
David Ahern8d1c8022018-04-17 17:33:26 -07004227 struct fib6_info *rt_notif = NULL, *rt_last = NULL;
David Ahern3b1137f2017-02-02 12:37:10 -08004228 struct nl_info *info = &cfg->fc_nlinfo;
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00004229 struct fib6_config r_cfg;
4230 struct rtnexthop *rtnh;
David Ahern8d1c8022018-04-17 17:33:26 -07004231 struct fib6_info *rt;
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07004232 struct rt6_nh *err_nh;
4233 struct rt6_nh *nh, *nh_safe;
David Ahern3b1137f2017-02-02 12:37:10 -08004234 __u16 nlflags;
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00004235 int remaining;
4236 int attrlen;
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07004237 int err = 1;
4238 int nhn = 0;
4239 int replace = (cfg->fc_nlinfo.nlh &&
4240 (cfg->fc_nlinfo.nlh->nlmsg_flags & NLM_F_REPLACE));
4241 LIST_HEAD(rt6_nh_list);
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00004242
David Ahern3b1137f2017-02-02 12:37:10 -08004243 nlflags = replace ? NLM_F_REPLACE : NLM_F_CREATE;
4244 if (info->nlh && info->nlh->nlmsg_flags & NLM_F_APPEND)
4245 nlflags |= NLM_F_APPEND;
4246
Michal Kubeček35f1b4e2015-05-18 20:53:55 +02004247 remaining = cfg->fc_mp_len;
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00004248 rtnh = (struct rtnexthop *)cfg->fc_mp;
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00004249
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07004250 /* Parse a Multipath Entry and build a list (rt6_nh_list) of
David Ahern8d1c8022018-04-17 17:33:26 -07004251 * fib6_info structs per nexthop
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07004252 */
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00004253 while (rtnh_ok(rtnh, remaining)) {
4254 memcpy(&r_cfg, cfg, sizeof(*cfg));
4255 if (rtnh->rtnh_ifindex)
4256 r_cfg.fc_ifindex = rtnh->rtnh_ifindex;
4257
4258 attrlen = rtnh_attrlen(rtnh);
4259 if (attrlen > 0) {
4260 struct nlattr *nla, *attrs = rtnh_attrs(rtnh);
4261
4262 nla = nla_find(attrs, attrlen, RTA_GATEWAY);
4263 if (nla) {
Jiri Benc67b61f62015-03-29 16:59:26 +02004264 r_cfg.fc_gateway = nla_get_in6_addr(nla);
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00004265 r_cfg.fc_flags |= RTF_GATEWAY;
4266 }
Roopa Prabhu19e42e42015-07-21 10:43:48 +02004267 r_cfg.fc_encap = nla_find(attrs, attrlen, RTA_ENCAP);
4268 nla = nla_find(attrs, attrlen, RTA_ENCAP_TYPE);
4269 if (nla)
4270 r_cfg.fc_encap_type = nla_get_u16(nla);
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00004271 }
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07004272
David Ahern68e2ffd2018-03-20 10:06:59 -07004273 r_cfg.fc_flags |= (rtnh->rtnh_flags & RTNH_F_ONLINK);
David Ahernacb54e32018-04-17 17:33:22 -07004274 rt = ip6_route_info_create(&r_cfg, GFP_KERNEL, extack);
Roopa Prabhu8c5b83f2015-10-10 08:26:36 -07004275 if (IS_ERR(rt)) {
4276 err = PTR_ERR(rt);
4277 rt = NULL;
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07004278 goto cleanup;
Roopa Prabhu8c5b83f2015-10-10 08:26:36 -07004279 }
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07004280
David Ahern5e670d82018-04-17 17:33:14 -07004281 rt->fib6_nh.nh_weight = rtnh->rtnh_hops + 1;
Ido Schimmel398958a2018-01-09 16:40:28 +02004282
David Ahernd4ead6b2018-04-17 17:33:16 -07004283 err = ip6_route_info_append(info->nl_net, &rt6_nh_list,
4284 rt, &r_cfg);
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00004285 if (err) {
David Ahern93531c62018-04-17 17:33:25 -07004286 fib6_info_release(rt);
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07004287 goto cleanup;
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00004288 }
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07004289
4290 rtnh = rtnh_next(rtnh, &remaining);
4291 }
4292
David Ahern3b1137f2017-02-02 12:37:10 -08004293 /* for add and replace send one notification with all nexthops.
4294 * Skip the notification in fib6_add_rt2node and send one with
4295 * the full route when done
4296 */
4297 info->skip_notify = 1;
4298
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07004299 err_nh = NULL;
4300 list_for_each_entry(nh, &rt6_nh_list, next) {
David Ahern8d1c8022018-04-17 17:33:26 -07004301 rt_last = nh->fib6_info;
4302 err = __ip6_ins_rt(nh->fib6_info, info, extack);
4303 fib6_info_release(nh->fib6_info);
David Ahern93531c62018-04-17 17:33:25 -07004304
David Ahern3b1137f2017-02-02 12:37:10 -08004305 /* save reference to first route for notification */
4306 if (!rt_notif && !err)
David Ahern8d1c8022018-04-17 17:33:26 -07004307 rt_notif = nh->fib6_info;
David Ahern3b1137f2017-02-02 12:37:10 -08004308
David Ahern8d1c8022018-04-17 17:33:26 -07004309 /* nh->fib6_info is used or freed at this point, reset to NULL*/
4310 nh->fib6_info = NULL;
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07004311 if (err) {
4312 if (replace && nhn)
4313 ip6_print_replace_route_err(&rt6_nh_list);
4314 err_nh = nh;
4315 goto add_errout;
4316 }
4317
Nicolas Dichtel1a724182012-11-01 22:58:22 +00004318 /* Because each route is added like a single route we remove
Michal Kubeček27596472015-05-18 20:54:00 +02004319 * these flags after the first nexthop: if there is a collision,
4320 * we have already failed to add the first nexthop:
4321 * fib6_add_rt2node() has rejected it; when replacing, old
4322 * nexthops have been replaced by first new, the rest should
4323 * be added to it.
Nicolas Dichtel1a724182012-11-01 22:58:22 +00004324 */
Michal Kubeček27596472015-05-18 20:54:00 +02004325 cfg->fc_nlinfo.nlh->nlmsg_flags &= ~(NLM_F_EXCL |
4326 NLM_F_REPLACE);
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07004327 nhn++;
4328 }
4329
David Ahern3b1137f2017-02-02 12:37:10 -08004330 /* success ... tell user about new route */
4331 ip6_route_mpath_notify(rt_notif, rt_last, info, nlflags);
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07004332 goto cleanup;
4333
4334add_errout:
David Ahern3b1137f2017-02-02 12:37:10 -08004335 /* send notification for routes that were added so that
4336 * the delete notifications sent by ip6_route_del are
4337 * coherent
4338 */
4339 if (rt_notif)
4340 ip6_route_mpath_notify(rt_notif, rt_last, info, nlflags);
4341
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07004342 /* Delete routes that were already added */
4343 list_for_each_entry(nh, &rt6_nh_list, next) {
4344 if (err_nh == nh)
4345 break;
David Ahern333c4302017-05-21 10:12:04 -06004346 ip6_route_del(&nh->r_cfg, extack);
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07004347 }
4348
4349cleanup:
4350 list_for_each_entry_safe(nh, nh_safe, &rt6_nh_list, next) {
David Ahern8d1c8022018-04-17 17:33:26 -07004351 if (nh->fib6_info)
4352 fib6_info_release(nh->fib6_info);
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07004353 list_del(&nh->next);
4354 kfree(nh);
4355 }
4356
4357 return err;
4358}
4359
David Ahern333c4302017-05-21 10:12:04 -06004360static int ip6_route_multipath_del(struct fib6_config *cfg,
4361 struct netlink_ext_ack *extack)
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07004362{
4363 struct fib6_config r_cfg;
4364 struct rtnexthop *rtnh;
4365 int remaining;
4366 int attrlen;
4367 int err = 1, last_err = 0;
4368
4369 remaining = cfg->fc_mp_len;
4370 rtnh = (struct rtnexthop *)cfg->fc_mp;
4371
4372 /* Parse a Multipath Entry */
4373 while (rtnh_ok(rtnh, remaining)) {
4374 memcpy(&r_cfg, cfg, sizeof(*cfg));
4375 if (rtnh->rtnh_ifindex)
4376 r_cfg.fc_ifindex = rtnh->rtnh_ifindex;
4377
4378 attrlen = rtnh_attrlen(rtnh);
4379 if (attrlen > 0) {
4380 struct nlattr *nla, *attrs = rtnh_attrs(rtnh);
4381
4382 nla = nla_find(attrs, attrlen, RTA_GATEWAY);
4383 if (nla) {
4384 nla_memcpy(&r_cfg.fc_gateway, nla, 16);
4385 r_cfg.fc_flags |= RTF_GATEWAY;
4386 }
4387 }
David Ahern333c4302017-05-21 10:12:04 -06004388 err = ip6_route_del(&r_cfg, extack);
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07004389 if (err)
4390 last_err = err;
4391
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00004392 rtnh = rtnh_next(rtnh, &remaining);
4393 }
4394
4395 return last_err;
4396}
4397
David Ahernc21ef3e2017-04-16 09:48:24 -07004398static int inet6_rtm_delroute(struct sk_buff *skb, struct nlmsghdr *nlh,
4399 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004400{
Thomas Graf86872cb2006-08-22 00:01:08 -07004401 struct fib6_config cfg;
4402 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004403
David Ahern333c4302017-05-21 10:12:04 -06004404 err = rtm_to_fib6_config(skb, nlh, &cfg, extack);
Thomas Graf86872cb2006-08-22 00:01:08 -07004405 if (err < 0)
4406 return err;
4407
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00004408 if (cfg.fc_mp)
David Ahern333c4302017-05-21 10:12:04 -06004409 return ip6_route_multipath_del(&cfg, extack);
David Ahern0ae81332017-02-02 12:37:08 -08004410 else {
4411 cfg.fc_delete_all_nh = 1;
David Ahern333c4302017-05-21 10:12:04 -06004412 return ip6_route_del(&cfg, extack);
David Ahern0ae81332017-02-02 12:37:08 -08004413 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004414}
4415
David Ahernc21ef3e2017-04-16 09:48:24 -07004416static int inet6_rtm_newroute(struct sk_buff *skb, struct nlmsghdr *nlh,
4417 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004418{
Thomas Graf86872cb2006-08-22 00:01:08 -07004419 struct fib6_config cfg;
4420 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004421
David Ahern333c4302017-05-21 10:12:04 -06004422 err = rtm_to_fib6_config(skb, nlh, &cfg, extack);
Thomas Graf86872cb2006-08-22 00:01:08 -07004423 if (err < 0)
4424 return err;
4425
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00004426 if (cfg.fc_mp)
David Ahern333c4302017-05-21 10:12:04 -06004427 return ip6_route_multipath_add(&cfg, extack);
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00004428 else
David Ahernacb54e32018-04-17 17:33:22 -07004429 return ip6_route_add(&cfg, GFP_KERNEL, extack);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004430}
4431
David Ahern8d1c8022018-04-17 17:33:26 -07004432static size_t rt6_nlmsg_size(struct fib6_info *rt)
Thomas Graf339bf982006-11-10 14:10:15 -08004433{
David Ahernbeb1afac52017-02-02 12:37:09 -08004434 int nexthop_len = 0;
4435
4436 if (rt->rt6i_nsiblings) {
4437 nexthop_len = nla_total_size(0) /* RTA_MULTIPATH */
4438 + NLA_ALIGN(sizeof(struct rtnexthop))
4439 + nla_total_size(16) /* RTA_GATEWAY */
David Ahern5e670d82018-04-17 17:33:14 -07004440 + lwtunnel_get_encap_size(rt->fib6_nh.nh_lwtstate);
David Ahernbeb1afac52017-02-02 12:37:09 -08004441
4442 nexthop_len *= rt->rt6i_nsiblings;
4443 }
4444
Thomas Graf339bf982006-11-10 14:10:15 -08004445 return NLMSG_ALIGN(sizeof(struct rtmsg))
4446 + nla_total_size(16) /* RTA_SRC */
4447 + nla_total_size(16) /* RTA_DST */
4448 + nla_total_size(16) /* RTA_GATEWAY */
4449 + nla_total_size(16) /* RTA_PREFSRC */
4450 + nla_total_size(4) /* RTA_TABLE */
4451 + nla_total_size(4) /* RTA_IIF */
4452 + nla_total_size(4) /* RTA_OIF */
4453 + nla_total_size(4) /* RTA_PRIORITY */
Noriaki TAKAMIYA6a2b9ce2007-01-23 22:09:41 -08004454 + RTAX_MAX * nla_total_size(4) /* RTA_METRICS */
Daniel Borkmannea697632015-01-05 23:57:47 +01004455 + nla_total_size(sizeof(struct rta_cacheinfo))
Lubomir Rintelc78ba6d2015-03-11 15:39:21 +01004456 + nla_total_size(TCP_CA_NAME_MAX) /* RTAX_CC_ALGO */
Roopa Prabhu19e42e42015-07-21 10:43:48 +02004457 + nla_total_size(1) /* RTA_PREF */
David Ahern5e670d82018-04-17 17:33:14 -07004458 + lwtunnel_get_encap_size(rt->fib6_nh.nh_lwtstate)
David Ahernbeb1afac52017-02-02 12:37:09 -08004459 + nexthop_len;
4460}
4461
David Ahern8d1c8022018-04-17 17:33:26 -07004462static int rt6_nexthop_info(struct sk_buff *skb, struct fib6_info *rt,
David Ahern5be083c2017-03-06 15:57:31 -08004463 unsigned int *flags, bool skip_oif)
David Ahernbeb1afac52017-02-02 12:37:09 -08004464{
David Ahern5e670d82018-04-17 17:33:14 -07004465 if (rt->fib6_nh.nh_flags & RTNH_F_DEAD)
Ido Schimmelf9d882e2018-01-07 12:45:10 +02004466 *flags |= RTNH_F_DEAD;
4467
David Ahern5e670d82018-04-17 17:33:14 -07004468 if (rt->fib6_nh.nh_flags & RTNH_F_LINKDOWN) {
David Ahernbeb1afac52017-02-02 12:37:09 -08004469 *flags |= RTNH_F_LINKDOWN;
4470 if (rt->rt6i_idev->cnf.ignore_routes_with_linkdown)
4471 *flags |= RTNH_F_DEAD;
4472 }
4473
4474 if (rt->rt6i_flags & RTF_GATEWAY) {
David Ahern5e670d82018-04-17 17:33:14 -07004475 if (nla_put_in6_addr(skb, RTA_GATEWAY, &rt->fib6_nh.nh_gw) < 0)
David Ahernbeb1afac52017-02-02 12:37:09 -08004476 goto nla_put_failure;
4477 }
4478
David Ahern5e670d82018-04-17 17:33:14 -07004479 *flags |= (rt->fib6_nh.nh_flags & RTNH_F_ONLINK);
4480 if (rt->fib6_nh.nh_flags & RTNH_F_OFFLOAD)
Ido Schimmel61e4d012017-08-03 13:28:20 +02004481 *flags |= RTNH_F_OFFLOAD;
4482
David Ahern5be083c2017-03-06 15:57:31 -08004483 /* not needed for multipath encoding b/c it has a rtnexthop struct */
David Ahern5e670d82018-04-17 17:33:14 -07004484 if (!skip_oif && rt->fib6_nh.nh_dev &&
4485 nla_put_u32(skb, RTA_OIF, rt->fib6_nh.nh_dev->ifindex))
David Ahernbeb1afac52017-02-02 12:37:09 -08004486 goto nla_put_failure;
4487
David Ahern5e670d82018-04-17 17:33:14 -07004488 if (rt->fib6_nh.nh_lwtstate &&
4489 lwtunnel_fill_encap(skb, rt->fib6_nh.nh_lwtstate) < 0)
David Ahernbeb1afac52017-02-02 12:37:09 -08004490 goto nla_put_failure;
4491
4492 return 0;
4493
4494nla_put_failure:
4495 return -EMSGSIZE;
4496}
4497
David Ahern5be083c2017-03-06 15:57:31 -08004498/* add multipath next hop */
David Ahern8d1c8022018-04-17 17:33:26 -07004499static int rt6_add_nexthop(struct sk_buff *skb, struct fib6_info *rt)
David Ahernbeb1afac52017-02-02 12:37:09 -08004500{
David Ahern5e670d82018-04-17 17:33:14 -07004501 const struct net_device *dev = rt->fib6_nh.nh_dev;
David Ahernbeb1afac52017-02-02 12:37:09 -08004502 struct rtnexthop *rtnh;
4503 unsigned int flags = 0;
4504
4505 rtnh = nla_reserve_nohdr(skb, sizeof(*rtnh));
4506 if (!rtnh)
4507 goto nla_put_failure;
4508
David Ahern5e670d82018-04-17 17:33:14 -07004509 rtnh->rtnh_hops = rt->fib6_nh.nh_weight - 1;
4510 rtnh->rtnh_ifindex = dev ? dev->ifindex : 0;
David Ahernbeb1afac52017-02-02 12:37:09 -08004511
David Ahern5be083c2017-03-06 15:57:31 -08004512 if (rt6_nexthop_info(skb, rt, &flags, true) < 0)
David Ahernbeb1afac52017-02-02 12:37:09 -08004513 goto nla_put_failure;
4514
4515 rtnh->rtnh_flags = flags;
4516
4517 /* length of rtnetlink header + attributes */
4518 rtnh->rtnh_len = nlmsg_get_pos(skb) - (void *)rtnh;
4519
4520 return 0;
4521
4522nla_put_failure:
4523 return -EMSGSIZE;
Thomas Graf339bf982006-11-10 14:10:15 -08004524}
4525
David Ahernd4ead6b2018-04-17 17:33:16 -07004526static int rt6_fill_node(struct net *net, struct sk_buff *skb,
David Ahern8d1c8022018-04-17 17:33:26 -07004527 struct fib6_info *rt, struct dst_entry *dst,
David Ahernd4ead6b2018-04-17 17:33:16 -07004528 struct in6_addr *dest, struct in6_addr *src,
Eric W. Biederman15e47302012-09-07 20:12:54 +00004529 int iif, int type, u32 portid, u32 seq,
David Ahernf8cfe2c2017-01-17 15:51:08 -08004530 unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004531{
4532 struct rtmsg *rtm;
Thomas Graf2d7202b2006-08-22 00:01:27 -07004533 struct nlmsghdr *nlh;
David Ahernd4ead6b2018-04-17 17:33:16 -07004534 long expires = 0;
4535 u32 *pmetrics;
Patrick McHardy9e762a42006-08-10 23:09:48 -07004536 u32 table;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004537
Eric W. Biederman15e47302012-09-07 20:12:54 +00004538 nlh = nlmsg_put(skb, portid, seq, type, sizeof(*rtm), flags);
David S. Miller38308472011-12-03 18:02:47 -05004539 if (!nlh)
Patrick McHardy26932562007-01-31 23:16:40 -08004540 return -EMSGSIZE;
Thomas Graf2d7202b2006-08-22 00:01:27 -07004541
4542 rtm = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004543 rtm->rtm_family = AF_INET6;
4544 rtm->rtm_dst_len = rt->rt6i_dst.plen;
4545 rtm->rtm_src_len = rt->rt6i_src.plen;
4546 rtm->rtm_tos = 0;
Thomas Grafc71099a2006-08-04 23:20:06 -07004547 if (rt->rt6i_table)
Patrick McHardy9e762a42006-08-10 23:09:48 -07004548 table = rt->rt6i_table->tb6_id;
Thomas Grafc71099a2006-08-04 23:20:06 -07004549 else
Patrick McHardy9e762a42006-08-10 23:09:48 -07004550 table = RT6_TABLE_UNSPEC;
4551 rtm->rtm_table = table;
David S. Millerc78679e2012-04-01 20:27:33 -04004552 if (nla_put_u32(skb, RTA_TABLE, table))
4553 goto nla_put_failure;
David Aherne8478e82018-04-17 17:33:13 -07004554
4555 rtm->rtm_type = rt->fib6_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004556 rtm->rtm_flags = 0;
4557 rtm->rtm_scope = RT_SCOPE_UNIVERSE;
4558 rtm->rtm_protocol = rt->rt6i_protocol;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004559
David S. Miller38308472011-12-03 18:02:47 -05004560 if (rt->rt6i_flags & RTF_CACHE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004561 rtm->rtm_flags |= RTM_F_CLONED;
4562
David Ahernd4ead6b2018-04-17 17:33:16 -07004563 if (dest) {
4564 if (nla_put_in6_addr(skb, RTA_DST, dest))
David S. Millerc78679e2012-04-01 20:27:33 -04004565 goto nla_put_failure;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09004566 rtm->rtm_dst_len = 128;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004567 } else if (rtm->rtm_dst_len)
Jiri Benc930345e2015-03-29 16:59:25 +02004568 if (nla_put_in6_addr(skb, RTA_DST, &rt->rt6i_dst.addr))
David S. Millerc78679e2012-04-01 20:27:33 -04004569 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004570#ifdef CONFIG_IPV6_SUBTREES
4571 if (src) {
Jiri Benc930345e2015-03-29 16:59:25 +02004572 if (nla_put_in6_addr(skb, RTA_SRC, src))
David S. Millerc78679e2012-04-01 20:27:33 -04004573 goto nla_put_failure;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09004574 rtm->rtm_src_len = 128;
David S. Millerc78679e2012-04-01 20:27:33 -04004575 } else if (rtm->rtm_src_len &&
Jiri Benc930345e2015-03-29 16:59:25 +02004576 nla_put_in6_addr(skb, RTA_SRC, &rt->rt6i_src.addr))
David S. Millerc78679e2012-04-01 20:27:33 -04004577 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004578#endif
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09004579 if (iif) {
4580#ifdef CONFIG_IPV6_MROUTE
4581 if (ipv6_addr_is_multicast(&rt->rt6i_dst.addr)) {
David Ahernfd61c6b2017-01-17 15:51:07 -08004582 int err = ip6mr_get_route(net, skb, rtm, portid);
Nikolay Aleksandrov2cf75072016-09-25 23:08:31 +02004583
David Ahernfd61c6b2017-01-17 15:51:07 -08004584 if (err == 0)
4585 return 0;
4586 if (err < 0)
4587 goto nla_put_failure;
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09004588 } else
4589#endif
David S. Millerc78679e2012-04-01 20:27:33 -04004590 if (nla_put_u32(skb, RTA_IIF, iif))
4591 goto nla_put_failure;
David Ahernd4ead6b2018-04-17 17:33:16 -07004592 } else if (dest) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004593 struct in6_addr saddr_buf;
David Ahernd4ead6b2018-04-17 17:33:16 -07004594 if (ip6_route_get_saddr(net, rt, dest, 0, &saddr_buf) == 0 &&
Jiri Benc930345e2015-03-29 16:59:25 +02004595 nla_put_in6_addr(skb, RTA_PREFSRC, &saddr_buf))
David S. Millerc78679e2012-04-01 20:27:33 -04004596 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004597 }
Thomas Graf2d7202b2006-08-22 00:01:27 -07004598
Daniel Walterc3968a82011-04-13 21:10:57 +00004599 if (rt->rt6i_prefsrc.plen) {
4600 struct in6_addr saddr_buf;
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00004601 saddr_buf = rt->rt6i_prefsrc.addr;
Jiri Benc930345e2015-03-29 16:59:25 +02004602 if (nla_put_in6_addr(skb, RTA_PREFSRC, &saddr_buf))
David S. Millerc78679e2012-04-01 20:27:33 -04004603 goto nla_put_failure;
Daniel Walterc3968a82011-04-13 21:10:57 +00004604 }
4605
David Ahernd4ead6b2018-04-17 17:33:16 -07004606 pmetrics = dst ? dst_metrics_ptr(dst) : rt->fib6_metrics->metrics;
4607 if (rtnetlink_put_metrics(skb, pmetrics) < 0)
Thomas Graf2d7202b2006-08-22 00:01:27 -07004608 goto nla_put_failure;
4609
David S. Millerc78679e2012-04-01 20:27:33 -04004610 if (nla_put_u32(skb, RTA_PRIORITY, rt->rt6i_metric))
4611 goto nla_put_failure;
Li Wei82539472012-07-29 16:01:30 +00004612
David Ahernbeb1afac52017-02-02 12:37:09 -08004613 /* For multipath routes, walk the siblings list and add
4614 * each as a nexthop within RTA_MULTIPATH.
4615 */
4616 if (rt->rt6i_nsiblings) {
David Ahern8d1c8022018-04-17 17:33:26 -07004617 struct fib6_info *sibling, *next_sibling;
David Ahernbeb1afac52017-02-02 12:37:09 -08004618 struct nlattr *mp;
4619
4620 mp = nla_nest_start(skb, RTA_MULTIPATH);
4621 if (!mp)
4622 goto nla_put_failure;
4623
4624 if (rt6_add_nexthop(skb, rt) < 0)
4625 goto nla_put_failure;
4626
4627 list_for_each_entry_safe(sibling, next_sibling,
4628 &rt->rt6i_siblings, rt6i_siblings) {
4629 if (rt6_add_nexthop(skb, sibling) < 0)
4630 goto nla_put_failure;
4631 }
4632
4633 nla_nest_end(skb, mp);
4634 } else {
David Ahern5be083c2017-03-06 15:57:31 -08004635 if (rt6_nexthop_info(skb, rt, &rtm->rtm_flags, false) < 0)
David Ahernbeb1afac52017-02-02 12:37:09 -08004636 goto nla_put_failure;
4637 }
4638
David Ahern14895682018-04-17 17:33:17 -07004639 if (rt->rt6i_flags & RTF_EXPIRES) {
4640 expires = dst ? dst->expires : rt->expires;
4641 expires -= jiffies;
4642 }
YOSHIFUJI Hideaki69cdf8f2008-05-19 16:55:13 -07004643
David Ahernd4ead6b2018-04-17 17:33:16 -07004644 if (rtnl_put_cacheinfo(skb, dst, 0, expires, dst ? dst->error : 0) < 0)
Thomas Grafe3703b32006-11-27 09:27:07 -08004645 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004646
Lubomir Rintelc78ba6d2015-03-11 15:39:21 +01004647 if (nla_put_u8(skb, RTA_PREF, IPV6_EXTRACT_PREF(rt->rt6i_flags)))
4648 goto nla_put_failure;
4649
Roopa Prabhu19e42e42015-07-21 10:43:48 +02004650
Johannes Berg053c0952015-01-16 22:09:00 +01004651 nlmsg_end(skb, nlh);
4652 return 0;
Thomas Graf2d7202b2006-08-22 00:01:27 -07004653
4654nla_put_failure:
Patrick McHardy26932562007-01-31 23:16:40 -08004655 nlmsg_cancel(skb, nlh);
4656 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004657}
4658
David Ahern8d1c8022018-04-17 17:33:26 -07004659int rt6_dump_route(struct fib6_info *rt, void *p_arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004660{
4661 struct rt6_rtnl_dump_arg *arg = (struct rt6_rtnl_dump_arg *) p_arg;
David Ahern1f17e2f2017-01-26 13:54:08 -08004662 struct net *net = arg->net;
4663
David Ahern421842e2018-04-17 17:33:18 -07004664 if (rt == net->ipv6.fib6_null_entry)
David Ahern1f17e2f2017-01-26 13:54:08 -08004665 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004666
Thomas Graf2d7202b2006-08-22 00:01:27 -07004667 if (nlmsg_len(arg->cb->nlh) >= sizeof(struct rtmsg)) {
4668 struct rtmsg *rtm = nlmsg_data(arg->cb->nlh);
David Ahernf8cfe2c2017-01-17 15:51:08 -08004669
4670 /* user wants prefix routes only */
4671 if (rtm->rtm_flags & RTM_F_PREFIX &&
4672 !(rt->rt6i_flags & RTF_PREFIX_RT)) {
4673 /* success since this is not a prefix route */
4674 return 1;
4675 }
4676 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004677
David Ahernd4ead6b2018-04-17 17:33:16 -07004678 return rt6_fill_node(net, arg->skb, rt, NULL, NULL, NULL, 0,
4679 RTM_NEWROUTE, NETLINK_CB(arg->cb->skb).portid,
4680 arg->cb->nlh->nlmsg_seq, NLM_F_MULTI);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004681}
4682
David Ahernc21ef3e2017-04-16 09:48:24 -07004683static int inet6_rtm_getroute(struct sk_buff *in_skb, struct nlmsghdr *nlh,
4684 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004685{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09004686 struct net *net = sock_net(in_skb->sk);
Thomas Grafab364a62006-08-22 00:01:47 -07004687 struct nlattr *tb[RTA_MAX+1];
Roopa Prabhu18c3a612017-05-25 10:42:40 -07004688 int err, iif = 0, oif = 0;
4689 struct dst_entry *dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004690 struct rt6_info *rt;
Thomas Grafab364a62006-08-22 00:01:47 -07004691 struct sk_buff *skb;
4692 struct rtmsg *rtm;
David S. Miller4c9483b2011-03-12 16:22:43 -05004693 struct flowi6 fl6;
Roopa Prabhu18c3a612017-05-25 10:42:40 -07004694 bool fibmatch;
Thomas Grafab364a62006-08-22 00:01:47 -07004695
Johannes Bergfceb6432017-04-12 14:34:07 +02004696 err = nlmsg_parse(nlh, sizeof(*rtm), tb, RTA_MAX, rtm_ipv6_policy,
David Ahernc21ef3e2017-04-16 09:48:24 -07004697 extack);
Thomas Grafab364a62006-08-22 00:01:47 -07004698 if (err < 0)
4699 goto errout;
4700
4701 err = -EINVAL;
David S. Miller4c9483b2011-03-12 16:22:43 -05004702 memset(&fl6, 0, sizeof(fl6));
Hannes Frederic Sowa38b70972016-06-11 20:08:19 +02004703 rtm = nlmsg_data(nlh);
4704 fl6.flowlabel = ip6_make_flowinfo(rtm->rtm_tos, 0);
Roopa Prabhu18c3a612017-05-25 10:42:40 -07004705 fibmatch = !!(rtm->rtm_flags & RTM_F_FIB_MATCH);
Thomas Grafab364a62006-08-22 00:01:47 -07004706
4707 if (tb[RTA_SRC]) {
4708 if (nla_len(tb[RTA_SRC]) < sizeof(struct in6_addr))
4709 goto errout;
4710
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00004711 fl6.saddr = *(struct in6_addr *)nla_data(tb[RTA_SRC]);
Thomas Grafab364a62006-08-22 00:01:47 -07004712 }
4713
4714 if (tb[RTA_DST]) {
4715 if (nla_len(tb[RTA_DST]) < sizeof(struct in6_addr))
4716 goto errout;
4717
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00004718 fl6.daddr = *(struct in6_addr *)nla_data(tb[RTA_DST]);
Thomas Grafab364a62006-08-22 00:01:47 -07004719 }
4720
4721 if (tb[RTA_IIF])
4722 iif = nla_get_u32(tb[RTA_IIF]);
4723
4724 if (tb[RTA_OIF])
Shmulik Ladkani72331bc2012-04-01 04:03:45 +00004725 oif = nla_get_u32(tb[RTA_OIF]);
Thomas Grafab364a62006-08-22 00:01:47 -07004726
Lorenzo Colitti2e47b292014-05-15 16:38:41 -07004727 if (tb[RTA_MARK])
4728 fl6.flowi6_mark = nla_get_u32(tb[RTA_MARK]);
4729
Lorenzo Colitti622ec2c2016-11-04 02:23:42 +09004730 if (tb[RTA_UID])
4731 fl6.flowi6_uid = make_kuid(current_user_ns(),
4732 nla_get_u32(tb[RTA_UID]));
4733 else
4734 fl6.flowi6_uid = iif ? INVALID_UID : current_uid();
4735
Thomas Grafab364a62006-08-22 00:01:47 -07004736 if (iif) {
4737 struct net_device *dev;
Shmulik Ladkani72331bc2012-04-01 04:03:45 +00004738 int flags = 0;
4739
Florian Westphal121622d2017-08-15 16:34:42 +02004740 rcu_read_lock();
4741
4742 dev = dev_get_by_index_rcu(net, iif);
Thomas Grafab364a62006-08-22 00:01:47 -07004743 if (!dev) {
Florian Westphal121622d2017-08-15 16:34:42 +02004744 rcu_read_unlock();
Thomas Grafab364a62006-08-22 00:01:47 -07004745 err = -ENODEV;
4746 goto errout;
4747 }
Shmulik Ladkani72331bc2012-04-01 04:03:45 +00004748
4749 fl6.flowi6_iif = iif;
4750
4751 if (!ipv6_addr_any(&fl6.saddr))
4752 flags |= RT6_LOOKUP_F_HAS_SADDR;
4753
David Ahernb75cc8f2018-03-02 08:32:17 -08004754 dst = ip6_route_input_lookup(net, dev, &fl6, NULL, flags);
Florian Westphal121622d2017-08-15 16:34:42 +02004755
4756 rcu_read_unlock();
Shmulik Ladkani72331bc2012-04-01 04:03:45 +00004757 } else {
4758 fl6.flowi6_oif = oif;
4759
Ido Schimmel58acfd72017-12-20 12:28:25 +02004760 dst = ip6_route_output(net, NULL, &fl6);
Roopa Prabhu18c3a612017-05-25 10:42:40 -07004761 }
4762
Roopa Prabhu18c3a612017-05-25 10:42:40 -07004763
4764 rt = container_of(dst, struct rt6_info, dst);
4765 if (rt->dst.error) {
4766 err = rt->dst.error;
4767 ip6_rt_put(rt);
4768 goto errout;
Thomas Grafab364a62006-08-22 00:01:47 -07004769 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004770
WANG Cong9d6acb32017-03-01 20:48:39 -08004771 if (rt == net->ipv6.ip6_null_entry) {
4772 err = rt->dst.error;
4773 ip6_rt_put(rt);
4774 goto errout;
4775 }
4776
Linus Torvalds1da177e2005-04-16 15:20:36 -07004777 skb = alloc_skb(NLMSG_GOODSIZE, GFP_KERNEL);
David S. Miller38308472011-12-03 18:02:47 -05004778 if (!skb) {
Amerigo Wang94e187c2012-10-29 00:13:19 +00004779 ip6_rt_put(rt);
Thomas Grafab364a62006-08-22 00:01:47 -07004780 err = -ENOBUFS;
4781 goto errout;
4782 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004783
Changli Gaod8d1f302010-06-10 23:31:35 -07004784 skb_dst_set(skb, &rt->dst);
Roopa Prabhu18c3a612017-05-25 10:42:40 -07004785 if (fibmatch)
David Ahern93531c62018-04-17 17:33:25 -07004786 err = rt6_fill_node(net, skb, rt->from, NULL, NULL, NULL, iif,
Roopa Prabhu18c3a612017-05-25 10:42:40 -07004787 RTM_NEWROUTE, NETLINK_CB(in_skb).portid,
4788 nlh->nlmsg_seq, 0);
4789 else
David Ahern93531c62018-04-17 17:33:25 -07004790 err = rt6_fill_node(net, skb, rt->from, dst,
4791 &fl6.daddr, &fl6.saddr, iif, RTM_NEWROUTE,
David Ahernd4ead6b2018-04-17 17:33:16 -07004792 NETLINK_CB(in_skb).portid, nlh->nlmsg_seq,
4793 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004794 if (err < 0) {
Thomas Grafab364a62006-08-22 00:01:47 -07004795 kfree_skb(skb);
4796 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004797 }
4798
Eric W. Biederman15e47302012-09-07 20:12:54 +00004799 err = rtnl_unicast(skb, net, NETLINK_CB(in_skb).portid);
Thomas Grafab364a62006-08-22 00:01:47 -07004800errout:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004801 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004802}
4803
David Ahern8d1c8022018-04-17 17:33:26 -07004804void inet6_rt_notify(int event, struct fib6_info *rt, struct nl_info *info,
Roopa Prabhu37a1d362015-09-13 10:18:33 -07004805 unsigned int nlm_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004806{
4807 struct sk_buff *skb;
Daniel Lezcano55786892008-03-04 13:47:47 -08004808 struct net *net = info->nl_net;
Denis V. Lunev528c4ce2007-12-13 09:45:12 -08004809 u32 seq;
4810 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004811
Denis V. Lunev528c4ce2007-12-13 09:45:12 -08004812 err = -ENOBUFS;
David S. Miller38308472011-12-03 18:02:47 -05004813 seq = info->nlh ? info->nlh->nlmsg_seq : 0;
Thomas Graf86872cb2006-08-22 00:01:08 -07004814
Roopa Prabhu19e42e42015-07-21 10:43:48 +02004815 skb = nlmsg_new(rt6_nlmsg_size(rt), gfp_any());
David S. Miller38308472011-12-03 18:02:47 -05004816 if (!skb)
Thomas Graf21713eb2006-08-15 00:35:24 -07004817 goto errout;
4818
David Ahernd4ead6b2018-04-17 17:33:16 -07004819 err = rt6_fill_node(net, skb, rt, NULL, NULL, NULL, 0,
4820 event, info->portid, seq, nlm_flags);
Patrick McHardy26932562007-01-31 23:16:40 -08004821 if (err < 0) {
4822 /* -EMSGSIZE implies BUG in rt6_nlmsg_size() */
4823 WARN_ON(err == -EMSGSIZE);
4824 kfree_skb(skb);
4825 goto errout;
4826 }
Eric W. Biederman15e47302012-09-07 20:12:54 +00004827 rtnl_notify(skb, net, info->portid, RTNLGRP_IPV6_ROUTE,
Pablo Neira Ayuso1ce85fe2009-02-24 23:18:28 -08004828 info->nlh, gfp_any());
4829 return;
Thomas Graf21713eb2006-08-15 00:35:24 -07004830errout:
4831 if (err < 0)
Daniel Lezcano55786892008-03-04 13:47:47 -08004832 rtnl_set_sk_err(net, RTNLGRP_IPV6_ROUTE, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004833}
4834
Daniel Lezcano8ed67782008-03-04 13:48:30 -08004835static int ip6_route_dev_notify(struct notifier_block *this,
Jiri Pirko351638e2013-05-28 01:30:21 +00004836 unsigned long event, void *ptr)
Daniel Lezcano8ed67782008-03-04 13:48:30 -08004837{
Jiri Pirko351638e2013-05-28 01:30:21 +00004838 struct net_device *dev = netdev_notifier_info_to_dev(ptr);
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09004839 struct net *net = dev_net(dev);
Daniel Lezcano8ed67782008-03-04 13:48:30 -08004840
WANG Cong242d3a42017-05-08 10:12:13 -07004841 if (!(dev->flags & IFF_LOOPBACK))
4842 return NOTIFY_OK;
4843
4844 if (event == NETDEV_REGISTER) {
David Ahern421842e2018-04-17 17:33:18 -07004845 net->ipv6.fib6_null_entry->fib6_nh.nh_dev = dev;
4846 net->ipv6.fib6_null_entry->rt6i_idev = in6_dev_get(dev);
Changli Gaod8d1f302010-06-10 23:31:35 -07004847 net->ipv6.ip6_null_entry->dst.dev = dev;
Daniel Lezcano8ed67782008-03-04 13:48:30 -08004848 net->ipv6.ip6_null_entry->rt6i_idev = in6_dev_get(dev);
4849#ifdef CONFIG_IPV6_MULTIPLE_TABLES
Changli Gaod8d1f302010-06-10 23:31:35 -07004850 net->ipv6.ip6_prohibit_entry->dst.dev = dev;
Daniel Lezcano8ed67782008-03-04 13:48:30 -08004851 net->ipv6.ip6_prohibit_entry->rt6i_idev = in6_dev_get(dev);
Changli Gaod8d1f302010-06-10 23:31:35 -07004852 net->ipv6.ip6_blk_hole_entry->dst.dev = dev;
Daniel Lezcano8ed67782008-03-04 13:48:30 -08004853 net->ipv6.ip6_blk_hole_entry->rt6i_idev = in6_dev_get(dev);
4854#endif
WANG Cong76da0702017-06-20 11:42:27 -07004855 } else if (event == NETDEV_UNREGISTER &&
4856 dev->reg_state != NETREG_UNREGISTERED) {
4857 /* NETDEV_UNREGISTER could be fired for multiple times by
4858 * netdev_wait_allrefs(). Make sure we only call this once.
4859 */
David Ahern421842e2018-04-17 17:33:18 -07004860 in6_dev_put_clear(&net->ipv6.fib6_null_entry->rt6i_idev);
Eric Dumazet12d94a82017-08-15 04:09:51 -07004861 in6_dev_put_clear(&net->ipv6.ip6_null_entry->rt6i_idev);
WANG Cong242d3a42017-05-08 10:12:13 -07004862#ifdef CONFIG_IPV6_MULTIPLE_TABLES
Eric Dumazet12d94a82017-08-15 04:09:51 -07004863 in6_dev_put_clear(&net->ipv6.ip6_prohibit_entry->rt6i_idev);
4864 in6_dev_put_clear(&net->ipv6.ip6_blk_hole_entry->rt6i_idev);
WANG Cong242d3a42017-05-08 10:12:13 -07004865#endif
Daniel Lezcano8ed67782008-03-04 13:48:30 -08004866 }
4867
4868 return NOTIFY_OK;
4869}
4870
Linus Torvalds1da177e2005-04-16 15:20:36 -07004871/*
4872 * /proc
4873 */
4874
4875#ifdef CONFIG_PROC_FS
4876
Alexey Dobriyan33120b32007-11-06 05:27:11 -08004877static const struct file_operations ipv6_route_proc_fops = {
Alexey Dobriyan33120b32007-11-06 05:27:11 -08004878 .open = ipv6_route_open,
4879 .read = seq_read,
4880 .llseek = seq_lseek,
Hannes Frederic Sowa8d2ca1d2013-09-21 16:55:59 +02004881 .release = seq_release_net,
Alexey Dobriyan33120b32007-11-06 05:27:11 -08004882};
4883
Linus Torvalds1da177e2005-04-16 15:20:36 -07004884static int rt6_stats_seq_show(struct seq_file *seq, void *v)
4885{
Daniel Lezcano69ddb802008-03-04 13:46:23 -08004886 struct net *net = (struct net *)seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004887 seq_printf(seq, "%04x %04x %04x %04x %04x %04x %04x\n",
Daniel Lezcano69ddb802008-03-04 13:46:23 -08004888 net->ipv6.rt6_stats->fib_nodes,
4889 net->ipv6.rt6_stats->fib_route_nodes,
Wei Wang81eb8442017-10-06 12:06:11 -07004890 atomic_read(&net->ipv6.rt6_stats->fib_rt_alloc),
Daniel Lezcano69ddb802008-03-04 13:46:23 -08004891 net->ipv6.rt6_stats->fib_rt_entries,
4892 net->ipv6.rt6_stats->fib_rt_cache,
Eric Dumazetfc66f952010-10-08 06:37:34 +00004893 dst_entries_get_slow(&net->ipv6.ip6_dst_ops),
Daniel Lezcano69ddb802008-03-04 13:46:23 -08004894 net->ipv6.rt6_stats->fib_discarded_routes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004895
4896 return 0;
4897}
4898
4899static int rt6_stats_seq_open(struct inode *inode, struct file *file)
4900{
Pavel Emelyanovde05c552008-07-18 04:07:21 -07004901 return single_open_net(inode, file, rt6_stats_seq_show);
Daniel Lezcano69ddb802008-03-04 13:46:23 -08004902}
4903
Arjan van de Ven9a321442007-02-12 00:55:35 -08004904static const struct file_operations rt6_stats_seq_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004905 .open = rt6_stats_seq_open,
4906 .read = seq_read,
4907 .llseek = seq_lseek,
Pavel Emelyanovb6fcbdb2008-07-18 04:07:44 -07004908 .release = single_release_net,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004909};
4910#endif /* CONFIG_PROC_FS */
4911
4912#ifdef CONFIG_SYSCTL
4913
Linus Torvalds1da177e2005-04-16 15:20:36 -07004914static
Joe Perchesfe2c6332013-06-11 23:04:25 -07004915int ipv6_sysctl_rtcache_flush(struct ctl_table *ctl, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004916 void __user *buffer, size_t *lenp, loff_t *ppos)
4917{
Lucian Adrian Grijincuc486da32011-02-24 19:48:03 +00004918 struct net *net;
4919 int delay;
4920 if (!write)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004921 return -EINVAL;
Lucian Adrian Grijincuc486da32011-02-24 19:48:03 +00004922
4923 net = (struct net *)ctl->extra1;
4924 delay = net->ipv6.sysctl.flush_delay;
4925 proc_dointvec(ctl, write, buffer, lenp, ppos);
Michal Kubeček2ac3ac82013-08-01 10:04:14 +02004926 fib6_run_gc(delay <= 0 ? 0 : (unsigned long)delay, net, delay > 0);
Lucian Adrian Grijincuc486da32011-02-24 19:48:03 +00004927 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004928}
4929
Joe Perchesfe2c6332013-06-11 23:04:25 -07004930struct ctl_table ipv6_route_table_template[] = {
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09004931 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004932 .procname = "flush",
Daniel Lezcano49905092008-01-10 03:01:01 -08004933 .data = &init_net.ipv6.sysctl.flush_delay,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004934 .maxlen = sizeof(int),
Dave Jones89c8b3a12005-04-28 12:11:49 -07004935 .mode = 0200,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08004936 .proc_handler = ipv6_sysctl_rtcache_flush
Linus Torvalds1da177e2005-04-16 15:20:36 -07004937 },
4938 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004939 .procname = "gc_thresh",
Daniel Lezcano9a7ec3a2008-03-04 13:48:53 -08004940 .data = &ip6_dst_ops_template.gc_thresh,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004941 .maxlen = sizeof(int),
4942 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08004943 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004944 },
4945 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004946 .procname = "max_size",
Daniel Lezcano49905092008-01-10 03:01:01 -08004947 .data = &init_net.ipv6.sysctl.ip6_rt_max_size,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004948 .maxlen = sizeof(int),
4949 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08004950 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004951 },
4952 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004953 .procname = "gc_min_interval",
Daniel Lezcano49905092008-01-10 03:01:01 -08004954 .data = &init_net.ipv6.sysctl.ip6_rt_gc_min_interval,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004955 .maxlen = sizeof(int),
4956 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08004957 .proc_handler = proc_dointvec_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004958 },
4959 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004960 .procname = "gc_timeout",
Daniel Lezcano49905092008-01-10 03:01:01 -08004961 .data = &init_net.ipv6.sysctl.ip6_rt_gc_timeout,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004962 .maxlen = sizeof(int),
4963 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08004964 .proc_handler = proc_dointvec_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004965 },
4966 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004967 .procname = "gc_interval",
Daniel Lezcano49905092008-01-10 03:01:01 -08004968 .data = &init_net.ipv6.sysctl.ip6_rt_gc_interval,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004969 .maxlen = sizeof(int),
4970 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08004971 .proc_handler = proc_dointvec_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004972 },
4973 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004974 .procname = "gc_elasticity",
Daniel Lezcano49905092008-01-10 03:01:01 -08004975 .data = &init_net.ipv6.sysctl.ip6_rt_gc_elasticity,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004976 .maxlen = sizeof(int),
4977 .mode = 0644,
Min Zhangf3d3f612010-08-14 22:42:51 -07004978 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004979 },
4980 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004981 .procname = "mtu_expires",
Daniel Lezcano49905092008-01-10 03:01:01 -08004982 .data = &init_net.ipv6.sysctl.ip6_rt_mtu_expires,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004983 .maxlen = sizeof(int),
4984 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08004985 .proc_handler = proc_dointvec_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004986 },
4987 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004988 .procname = "min_adv_mss",
Daniel Lezcano49905092008-01-10 03:01:01 -08004989 .data = &init_net.ipv6.sysctl.ip6_rt_min_advmss,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004990 .maxlen = sizeof(int),
4991 .mode = 0644,
Min Zhangf3d3f612010-08-14 22:42:51 -07004992 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004993 },
4994 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004995 .procname = "gc_min_interval_ms",
Daniel Lezcano49905092008-01-10 03:01:01 -08004996 .data = &init_net.ipv6.sysctl.ip6_rt_gc_min_interval,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004997 .maxlen = sizeof(int),
4998 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08004999 .proc_handler = proc_dointvec_ms_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005000 },
Eric W. Biedermanf8572d82009-11-05 13:32:03 -08005001 { }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005002};
5003
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00005004struct ctl_table * __net_init ipv6_route_sysctl_init(struct net *net)
Daniel Lezcano760f2d02008-01-10 02:53:43 -08005005{
5006 struct ctl_table *table;
5007
5008 table = kmemdup(ipv6_route_table_template,
5009 sizeof(ipv6_route_table_template),
5010 GFP_KERNEL);
YOSHIFUJI Hideaki5ee09102008-02-28 00:24:28 +09005011
5012 if (table) {
5013 table[0].data = &net->ipv6.sysctl.flush_delay;
Lucian Adrian Grijincuc486da32011-02-24 19:48:03 +00005014 table[0].extra1 = net;
Alexey Dobriyan86393e52009-08-29 01:34:49 +00005015 table[1].data = &net->ipv6.ip6_dst_ops.gc_thresh;
YOSHIFUJI Hideaki5ee09102008-02-28 00:24:28 +09005016 table[2].data = &net->ipv6.sysctl.ip6_rt_max_size;
5017 table[3].data = &net->ipv6.sysctl.ip6_rt_gc_min_interval;
5018 table[4].data = &net->ipv6.sysctl.ip6_rt_gc_timeout;
5019 table[5].data = &net->ipv6.sysctl.ip6_rt_gc_interval;
5020 table[6].data = &net->ipv6.sysctl.ip6_rt_gc_elasticity;
5021 table[7].data = &net->ipv6.sysctl.ip6_rt_mtu_expires;
5022 table[8].data = &net->ipv6.sysctl.ip6_rt_min_advmss;
Alexey Dobriyan9c69fab2009-12-18 20:11:03 -08005023 table[9].data = &net->ipv6.sysctl.ip6_rt_gc_min_interval;
Eric W. Biederman464dc802012-11-16 03:02:59 +00005024
5025 /* Don't export sysctls to unprivileged users */
5026 if (net->user_ns != &init_user_ns)
5027 table[0].procname = NULL;
YOSHIFUJI Hideaki5ee09102008-02-28 00:24:28 +09005028 }
5029
Daniel Lezcano760f2d02008-01-10 02:53:43 -08005030 return table;
5031}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005032#endif
5033
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00005034static int __net_init ip6_route_net_init(struct net *net)
Daniel Lezcanocdb18762008-03-04 13:45:33 -08005035{
Pavel Emelyanov633d424b2008-04-21 14:25:23 -07005036 int ret = -ENOMEM;
Daniel Lezcano8ed67782008-03-04 13:48:30 -08005037
Alexey Dobriyan86393e52009-08-29 01:34:49 +00005038 memcpy(&net->ipv6.ip6_dst_ops, &ip6_dst_ops_template,
5039 sizeof(net->ipv6.ip6_dst_ops));
Benjamin Theryf2fc6a52008-03-04 13:49:23 -08005040
Eric Dumazetfc66f952010-10-08 06:37:34 +00005041 if (dst_entries_init(&net->ipv6.ip6_dst_ops) < 0)
5042 goto out_ip6_dst_ops;
5043
David Ahern421842e2018-04-17 17:33:18 -07005044 net->ipv6.fib6_null_entry = kmemdup(&fib6_null_entry_template,
5045 sizeof(*net->ipv6.fib6_null_entry),
5046 GFP_KERNEL);
5047 if (!net->ipv6.fib6_null_entry)
5048 goto out_ip6_dst_entries;
5049
Daniel Lezcano8ed67782008-03-04 13:48:30 -08005050 net->ipv6.ip6_null_entry = kmemdup(&ip6_null_entry_template,
5051 sizeof(*net->ipv6.ip6_null_entry),
5052 GFP_KERNEL);
5053 if (!net->ipv6.ip6_null_entry)
David Ahern421842e2018-04-17 17:33:18 -07005054 goto out_fib6_null_entry;
Changli Gaod8d1f302010-06-10 23:31:35 -07005055 net->ipv6.ip6_null_entry->dst.ops = &net->ipv6.ip6_dst_ops;
David S. Miller62fa8a82011-01-26 20:51:05 -08005056 dst_init_metrics(&net->ipv6.ip6_null_entry->dst,
5057 ip6_template_metrics, true);
Daniel Lezcano8ed67782008-03-04 13:48:30 -08005058
5059#ifdef CONFIG_IPV6_MULTIPLE_TABLES
Vincent Bernatfeca7d82017-08-08 20:23:49 +02005060 net->ipv6.fib6_has_custom_rules = false;
Daniel Lezcano8ed67782008-03-04 13:48:30 -08005061 net->ipv6.ip6_prohibit_entry = kmemdup(&ip6_prohibit_entry_template,
5062 sizeof(*net->ipv6.ip6_prohibit_entry),
5063 GFP_KERNEL);
Peter Zijlstra68fffc62008-10-07 14:12:10 -07005064 if (!net->ipv6.ip6_prohibit_entry)
5065 goto out_ip6_null_entry;
Changli Gaod8d1f302010-06-10 23:31:35 -07005066 net->ipv6.ip6_prohibit_entry->dst.ops = &net->ipv6.ip6_dst_ops;
David S. Miller62fa8a82011-01-26 20:51:05 -08005067 dst_init_metrics(&net->ipv6.ip6_prohibit_entry->dst,
5068 ip6_template_metrics, true);
Daniel Lezcano8ed67782008-03-04 13:48:30 -08005069
5070 net->ipv6.ip6_blk_hole_entry = kmemdup(&ip6_blk_hole_entry_template,
5071 sizeof(*net->ipv6.ip6_blk_hole_entry),
5072 GFP_KERNEL);
Peter Zijlstra68fffc62008-10-07 14:12:10 -07005073 if (!net->ipv6.ip6_blk_hole_entry)
5074 goto out_ip6_prohibit_entry;
Changli Gaod8d1f302010-06-10 23:31:35 -07005075 net->ipv6.ip6_blk_hole_entry->dst.ops = &net->ipv6.ip6_dst_ops;
David S. Miller62fa8a82011-01-26 20:51:05 -08005076 dst_init_metrics(&net->ipv6.ip6_blk_hole_entry->dst,
5077 ip6_template_metrics, true);
Daniel Lezcano8ed67782008-03-04 13:48:30 -08005078#endif
5079
Peter Zijlstrab339a47c2008-10-07 14:15:00 -07005080 net->ipv6.sysctl.flush_delay = 0;
5081 net->ipv6.sysctl.ip6_rt_max_size = 4096;
5082 net->ipv6.sysctl.ip6_rt_gc_min_interval = HZ / 2;
5083 net->ipv6.sysctl.ip6_rt_gc_timeout = 60*HZ;
5084 net->ipv6.sysctl.ip6_rt_gc_interval = 30*HZ;
5085 net->ipv6.sysctl.ip6_rt_gc_elasticity = 9;
5086 net->ipv6.sysctl.ip6_rt_mtu_expires = 10*60*HZ;
5087 net->ipv6.sysctl.ip6_rt_min_advmss = IPV6_MIN_MTU - 20 - 40;
5088
Benjamin Thery6891a342008-03-04 13:49:47 -08005089 net->ipv6.ip6_rt_gc_expire = 30*HZ;
5090
Daniel Lezcano8ed67782008-03-04 13:48:30 -08005091 ret = 0;
5092out:
5093 return ret;
Benjamin Theryf2fc6a52008-03-04 13:49:23 -08005094
Peter Zijlstra68fffc62008-10-07 14:12:10 -07005095#ifdef CONFIG_IPV6_MULTIPLE_TABLES
5096out_ip6_prohibit_entry:
5097 kfree(net->ipv6.ip6_prohibit_entry);
5098out_ip6_null_entry:
5099 kfree(net->ipv6.ip6_null_entry);
5100#endif
David Ahern421842e2018-04-17 17:33:18 -07005101out_fib6_null_entry:
5102 kfree(net->ipv6.fib6_null_entry);
Eric Dumazetfc66f952010-10-08 06:37:34 +00005103out_ip6_dst_entries:
5104 dst_entries_destroy(&net->ipv6.ip6_dst_ops);
Benjamin Theryf2fc6a52008-03-04 13:49:23 -08005105out_ip6_dst_ops:
Benjamin Theryf2fc6a52008-03-04 13:49:23 -08005106 goto out;
Daniel Lezcanocdb18762008-03-04 13:45:33 -08005107}
5108
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00005109static void __net_exit ip6_route_net_exit(struct net *net)
Daniel Lezcanocdb18762008-03-04 13:45:33 -08005110{
David Ahern421842e2018-04-17 17:33:18 -07005111 kfree(net->ipv6.fib6_null_entry);
Daniel Lezcano8ed67782008-03-04 13:48:30 -08005112 kfree(net->ipv6.ip6_null_entry);
5113#ifdef CONFIG_IPV6_MULTIPLE_TABLES
5114 kfree(net->ipv6.ip6_prohibit_entry);
5115 kfree(net->ipv6.ip6_blk_hole_entry);
5116#endif
Xiaotian Feng41bb78b2010-11-02 16:11:05 +00005117 dst_entries_destroy(&net->ipv6.ip6_dst_ops);
Daniel Lezcanocdb18762008-03-04 13:45:33 -08005118}
5119
Thomas Grafd1896342012-06-18 12:08:33 +00005120static int __net_init ip6_route_net_init_late(struct net *net)
5121{
5122#ifdef CONFIG_PROC_FS
Gao fengd4beaa62013-02-18 01:34:54 +00005123 proc_create("ipv6_route", 0, net->proc_net, &ipv6_route_proc_fops);
Joe Perchesd6444062018-03-23 15:54:38 -07005124 proc_create("rt6_stats", 0444, net->proc_net, &rt6_stats_seq_fops);
Thomas Grafd1896342012-06-18 12:08:33 +00005125#endif
5126 return 0;
5127}
5128
5129static void __net_exit ip6_route_net_exit_late(struct net *net)
5130{
5131#ifdef CONFIG_PROC_FS
Gao fengece31ff2013-02-18 01:34:56 +00005132 remove_proc_entry("ipv6_route", net->proc_net);
5133 remove_proc_entry("rt6_stats", net->proc_net);
Thomas Grafd1896342012-06-18 12:08:33 +00005134#endif
5135}
5136
Daniel Lezcanocdb18762008-03-04 13:45:33 -08005137static struct pernet_operations ip6_route_net_ops = {
5138 .init = ip6_route_net_init,
5139 .exit = ip6_route_net_exit,
5140};
5141
David S. Millerc3426b42012-06-09 16:27:05 -07005142static int __net_init ipv6_inetpeer_init(struct net *net)
5143{
5144 struct inet_peer_base *bp = kmalloc(sizeof(*bp), GFP_KERNEL);
5145
5146 if (!bp)
5147 return -ENOMEM;
5148 inet_peer_base_init(bp);
5149 net->ipv6.peers = bp;
5150 return 0;
5151}
5152
5153static void __net_exit ipv6_inetpeer_exit(struct net *net)
5154{
5155 struct inet_peer_base *bp = net->ipv6.peers;
5156
5157 net->ipv6.peers = NULL;
David S. Miller56a6b242012-06-09 16:32:41 -07005158 inetpeer_invalidate_tree(bp);
David S. Millerc3426b42012-06-09 16:27:05 -07005159 kfree(bp);
5160}
5161
David S. Miller2b823f72012-06-09 19:00:16 -07005162static struct pernet_operations ipv6_inetpeer_ops = {
David S. Millerc3426b42012-06-09 16:27:05 -07005163 .init = ipv6_inetpeer_init,
5164 .exit = ipv6_inetpeer_exit,
5165};
5166
Thomas Grafd1896342012-06-18 12:08:33 +00005167static struct pernet_operations ip6_route_net_late_ops = {
5168 .init = ip6_route_net_init_late,
5169 .exit = ip6_route_net_exit_late,
5170};
5171
Daniel Lezcano8ed67782008-03-04 13:48:30 -08005172static struct notifier_block ip6_route_dev_notifier = {
5173 .notifier_call = ip6_route_dev_notify,
WANG Cong242d3a42017-05-08 10:12:13 -07005174 .priority = ADDRCONF_NOTIFY_PRIORITY - 10,
Daniel Lezcano8ed67782008-03-04 13:48:30 -08005175};
5176
WANG Cong2f460932017-05-03 22:07:31 -07005177void __init ip6_route_init_special_entries(void)
5178{
5179 /* Registering of the loopback is done before this portion of code,
5180 * the loopback reference in rt6_info will not be taken, do it
5181 * manually for init_net */
David Ahern421842e2018-04-17 17:33:18 -07005182 init_net.ipv6.fib6_null_entry->fib6_nh.nh_dev = init_net.loopback_dev;
5183 init_net.ipv6.fib6_null_entry->rt6i_idev = in6_dev_get(init_net.loopback_dev);
WANG Cong2f460932017-05-03 22:07:31 -07005184 init_net.ipv6.ip6_null_entry->dst.dev = init_net.loopback_dev;
5185 init_net.ipv6.ip6_null_entry->rt6i_idev = in6_dev_get(init_net.loopback_dev);
5186 #ifdef CONFIG_IPV6_MULTIPLE_TABLES
5187 init_net.ipv6.ip6_prohibit_entry->dst.dev = init_net.loopback_dev;
5188 init_net.ipv6.ip6_prohibit_entry->rt6i_idev = in6_dev_get(init_net.loopback_dev);
5189 init_net.ipv6.ip6_blk_hole_entry->dst.dev = init_net.loopback_dev;
5190 init_net.ipv6.ip6_blk_hole_entry->rt6i_idev = in6_dev_get(init_net.loopback_dev);
5191 #endif
5192}
5193
Daniel Lezcano433d49c2007-12-07 00:43:48 -08005194int __init ip6_route_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005195{
Daniel Lezcano433d49c2007-12-07 00:43:48 -08005196 int ret;
Martin KaFai Lau8d0b94a2015-05-22 20:56:04 -07005197 int cpu;
Daniel Lezcano433d49c2007-12-07 00:43:48 -08005198
Daniel Lezcano9a7ec3a2008-03-04 13:48:53 -08005199 ret = -ENOMEM;
5200 ip6_dst_ops_template.kmem_cachep =
5201 kmem_cache_create("ip6_dst_cache", sizeof(struct rt6_info), 0,
5202 SLAB_HWCACHE_ALIGN, NULL);
5203 if (!ip6_dst_ops_template.kmem_cachep)
Fernando Carrijoc19a28e2009-01-07 18:09:08 -08005204 goto out;
David S. Miller14e50e52007-05-24 18:17:54 -07005205
Eric Dumazetfc66f952010-10-08 06:37:34 +00005206 ret = dst_entries_init(&ip6_dst_blackhole_ops);
Daniel Lezcano8ed67782008-03-04 13:48:30 -08005207 if (ret)
Daniel Lezcanobdb32892008-03-04 13:48:10 -08005208 goto out_kmem_cache;
Daniel Lezcanobdb32892008-03-04 13:48:10 -08005209
David S. Millerc3426b42012-06-09 16:27:05 -07005210 ret = register_pernet_subsys(&ipv6_inetpeer_ops);
5211 if (ret)
David S. Millere8803b62012-06-16 01:12:19 -07005212 goto out_dst_entries;
Thomas Graf2a0c4512012-06-14 23:00:17 +00005213
David S. Miller7e52b332012-06-15 15:51:55 -07005214 ret = register_pernet_subsys(&ip6_route_net_ops);
5215 if (ret)
5216 goto out_register_inetpeer;
David S. Millerc3426b42012-06-09 16:27:05 -07005217
Arnaud Ebalard5dc121e2008-10-01 02:37:56 -07005218 ip6_dst_blackhole_ops.kmem_cachep = ip6_dst_ops_template.kmem_cachep;
5219
David S. Millere8803b62012-06-16 01:12:19 -07005220 ret = fib6_init();
Daniel Lezcano433d49c2007-12-07 00:43:48 -08005221 if (ret)
Daniel Lezcano8ed67782008-03-04 13:48:30 -08005222 goto out_register_subsys;
Daniel Lezcano433d49c2007-12-07 00:43:48 -08005223
Daniel Lezcano433d49c2007-12-07 00:43:48 -08005224 ret = xfrm6_init();
5225 if (ret)
David S. Millere8803b62012-06-16 01:12:19 -07005226 goto out_fib6_init;
Daniel Lezcanoc35b7e72007-12-08 00:14:11 -08005227
Daniel Lezcano433d49c2007-12-07 00:43:48 -08005228 ret = fib6_rules_init();
5229 if (ret)
5230 goto xfrm6_init;
Daniel Lezcano7e5449c2007-12-08 00:14:54 -08005231
Thomas Grafd1896342012-06-18 12:08:33 +00005232 ret = register_pernet_subsys(&ip6_route_net_late_ops);
5233 if (ret)
5234 goto fib6_rules_init;
5235
Florian Westphal16feebc2017-12-02 21:44:08 +01005236 ret = rtnl_register_module(THIS_MODULE, PF_INET6, RTM_NEWROUTE,
5237 inet6_rtm_newroute, NULL, 0);
5238 if (ret < 0)
5239 goto out_register_late_subsys;
5240
5241 ret = rtnl_register_module(THIS_MODULE, PF_INET6, RTM_DELROUTE,
5242 inet6_rtm_delroute, NULL, 0);
5243 if (ret < 0)
5244 goto out_register_late_subsys;
5245
5246 ret = rtnl_register_module(THIS_MODULE, PF_INET6, RTM_GETROUTE,
5247 inet6_rtm_getroute, NULL,
5248 RTNL_FLAG_DOIT_UNLOCKED);
5249 if (ret < 0)
Thomas Grafd1896342012-06-18 12:08:33 +00005250 goto out_register_late_subsys;
Daniel Lezcano433d49c2007-12-07 00:43:48 -08005251
Daniel Lezcano8ed67782008-03-04 13:48:30 -08005252 ret = register_netdevice_notifier(&ip6_route_dev_notifier);
Daniel Lezcanocdb18762008-03-04 13:45:33 -08005253 if (ret)
Thomas Grafd1896342012-06-18 12:08:33 +00005254 goto out_register_late_subsys;
Daniel Lezcano8ed67782008-03-04 13:48:30 -08005255
Martin KaFai Lau8d0b94a2015-05-22 20:56:04 -07005256 for_each_possible_cpu(cpu) {
5257 struct uncached_list *ul = per_cpu_ptr(&rt6_uncached_list, cpu);
5258
5259 INIT_LIST_HEAD(&ul->head);
5260 spin_lock_init(&ul->lock);
5261 }
5262
Daniel Lezcano433d49c2007-12-07 00:43:48 -08005263out:
5264 return ret;
5265
Thomas Grafd1896342012-06-18 12:08:33 +00005266out_register_late_subsys:
Florian Westphal16feebc2017-12-02 21:44:08 +01005267 rtnl_unregister_all(PF_INET6);
Thomas Grafd1896342012-06-18 12:08:33 +00005268 unregister_pernet_subsys(&ip6_route_net_late_ops);
Daniel Lezcano433d49c2007-12-07 00:43:48 -08005269fib6_rules_init:
Daniel Lezcano433d49c2007-12-07 00:43:48 -08005270 fib6_rules_cleanup();
5271xfrm6_init:
Daniel Lezcano433d49c2007-12-07 00:43:48 -08005272 xfrm6_fini();
Thomas Graf2a0c4512012-06-14 23:00:17 +00005273out_fib6_init:
5274 fib6_gc_cleanup();
Daniel Lezcano8ed67782008-03-04 13:48:30 -08005275out_register_subsys:
5276 unregister_pernet_subsys(&ip6_route_net_ops);
David S. Miller7e52b332012-06-15 15:51:55 -07005277out_register_inetpeer:
5278 unregister_pernet_subsys(&ipv6_inetpeer_ops);
Eric Dumazetfc66f952010-10-08 06:37:34 +00005279out_dst_entries:
5280 dst_entries_destroy(&ip6_dst_blackhole_ops);
Daniel Lezcano433d49c2007-12-07 00:43:48 -08005281out_kmem_cache:
Benjamin Theryf2fc6a52008-03-04 13:49:23 -08005282 kmem_cache_destroy(ip6_dst_ops_template.kmem_cachep);
Daniel Lezcano433d49c2007-12-07 00:43:48 -08005283 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005284}
5285
5286void ip6_route_cleanup(void)
5287{
Daniel Lezcano8ed67782008-03-04 13:48:30 -08005288 unregister_netdevice_notifier(&ip6_route_dev_notifier);
Thomas Grafd1896342012-06-18 12:08:33 +00005289 unregister_pernet_subsys(&ip6_route_net_late_ops);
Thomas Graf101367c2006-08-04 03:39:02 -07005290 fib6_rules_cleanup();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005291 xfrm6_fini();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005292 fib6_gc_cleanup();
David S. Millerc3426b42012-06-09 16:27:05 -07005293 unregister_pernet_subsys(&ipv6_inetpeer_ops);
Daniel Lezcano8ed67782008-03-04 13:48:30 -08005294 unregister_pernet_subsys(&ip6_route_net_ops);
Xiaotian Feng41bb78b2010-11-02 16:11:05 +00005295 dst_entries_destroy(&ip6_dst_blackhole_ops);
Benjamin Theryf2fc6a52008-03-04 13:49:23 -08005296 kmem_cache_destroy(ip6_dst_ops_template.kmem_cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005297}