blob: 24b80f43bbfbb6e6c2fdd8944be8ebc25c191391 [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
Martin KaFai Lau83a09ab2015-05-22 20:56:05 -070081static void ip6_rt_copy_init(struct rt6_info *rt, struct rt6_info *ort);
Linus Torvalds1da177e2005-04-16 15:20:36 -070082static struct dst_entry *ip6_dst_check(struct dst_entry *dst, u32 cookie);
David S. Miller0dbaee32010-12-13 12:52:14 -080083static unsigned int ip6_default_advmss(const struct dst_entry *dst);
Steffen Klassertebb762f2011-11-23 02:12:51 +000084static unsigned int ip6_mtu(const struct dst_entry *dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -070085static struct dst_entry *ip6_negative_advice(struct dst_entry *);
86static void ip6_dst_destroy(struct dst_entry *);
87static void ip6_dst_ifdown(struct dst_entry *,
88 struct net_device *dev, int how);
Daniel Lezcano569d3642008-01-18 03:56:57 -080089static int ip6_dst_gc(struct dst_ops *ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -070090
91static int ip6_pkt_discard(struct sk_buff *skb);
Eric W. Biedermanede20592015-10-07 16:48:47 -050092static int ip6_pkt_discard_out(struct net *net, struct sock *sk, struct sk_buff *skb);
Kamala R7150aed2013-12-02 19:55:21 +053093static int ip6_pkt_prohibit(struct sk_buff *skb);
Eric W. Biedermanede20592015-10-07 16:48:47 -050094static int ip6_pkt_prohibit_out(struct net *net, struct sock *sk, struct sk_buff *skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -070095static void ip6_link_failure(struct sk_buff *skb);
David S. Miller6700c272012-07-17 03:29:28 -070096static void ip6_rt_update_pmtu(struct dst_entry *dst, struct sock *sk,
97 struct sk_buff *skb, u32 mtu);
98static void rt6_do_redirect(struct dst_entry *dst, struct sock *sk,
99 struct sk_buff *skb);
Martin KaFai Lau4b32b5a2015-04-28 13:03:06 -0700100static void rt6_dst_from_metrics_check(struct rt6_info *rt);
Nicolas Dichtel52bd4c02013-06-28 17:35:48 +0200101static int rt6_score_route(struct rt6_info *rt, int oif, int strict);
David Ahern16a16cd2017-02-02 12:37:11 -0800102static size_t rt6_nlmsg_size(struct rt6_info *rt);
103static int rt6_fill_node(struct net *net,
104 struct sk_buff *skb, struct rt6_info *rt,
105 struct in6_addr *dst, struct in6_addr *src,
106 int iif, int type, u32 portid, u32 seq,
107 unsigned int flags);
Wei Wang35732d02017-10-06 12:05:57 -0700108static struct rt6_info *rt6_find_cached_rt(struct rt6_info *rt,
109 struct in6_addr *daddr,
110 struct in6_addr *saddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800112#ifdef CONFIG_IPV6_ROUTE_INFO
Daniel Lezcanoefa2cea2008-03-04 13:46:48 -0800113static struct rt6_info *rt6_add_route_info(struct net *net,
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000114 const struct in6_addr *prefix, int prefixlen,
David Ahern830218c2016-10-24 10:52:35 -0700115 const struct in6_addr *gwaddr,
116 struct net_device *dev,
Eric Dumazet95c96172012-04-15 05:58:06 +0000117 unsigned int pref);
Daniel Lezcanoefa2cea2008-03-04 13:46:48 -0800118static struct rt6_info *rt6_get_route_info(struct net *net,
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000119 const struct in6_addr *prefix, int prefixlen,
David Ahern830218c2016-10-24 10:52:35 -0700120 const struct in6_addr *gwaddr,
121 struct net_device *dev);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800122#endif
123
Martin KaFai Lau8d0b94a2015-05-22 20:56:04 -0700124struct uncached_list {
125 spinlock_t lock;
126 struct list_head head;
127};
128
129static DEFINE_PER_CPU_ALIGNED(struct uncached_list, rt6_uncached_list);
130
131static void rt6_uncached_list_add(struct rt6_info *rt)
132{
133 struct uncached_list *ul = raw_cpu_ptr(&rt6_uncached_list);
134
Martin KaFai Lau8d0b94a2015-05-22 20:56:04 -0700135 rt->rt6i_uncached_list = ul;
136
137 spin_lock_bh(&ul->lock);
138 list_add_tail(&rt->rt6i_uncached, &ul->head);
139 spin_unlock_bh(&ul->lock);
140}
141
142static void rt6_uncached_list_del(struct rt6_info *rt)
143{
144 if (!list_empty(&rt->rt6i_uncached)) {
145 struct uncached_list *ul = rt->rt6i_uncached_list;
146
147 spin_lock_bh(&ul->lock);
148 list_del(&rt->rt6i_uncached);
149 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
Martin KaFai Laud52d3992015-05-22 20:56:06 -0700185static u32 *rt6_pcpu_cow_metrics(struct rt6_info *rt)
186{
187 return dst_metrics_write_ptr(rt->dst.from);
188}
189
David S. Miller06582542011-01-27 14:58:42 -0800190static u32 *ipv6_cow_metrics(struct dst_entry *dst, unsigned long old)
191{
Martin KaFai Lau4b32b5a2015-04-28 13:03:06 -0700192 struct rt6_info *rt = (struct rt6_info *)dst;
David S. Miller06582542011-01-27 14:58:42 -0800193
Martin KaFai Laud52d3992015-05-22 20:56:06 -0700194 if (rt->rt6i_flags & RTF_PCPU)
195 return rt6_pcpu_cow_metrics(rt);
196 else if (rt->rt6i_flags & RTF_CACHE)
Martin KaFai Lau4b32b5a2015-04-28 13:03:06 -0700197 return NULL;
198 else
Martin KaFai Lau3b471172015-02-12 16:14:08 -0800199 return dst_cow_metrics_generic(dst, old);
David S. Miller06582542011-01-27 14:58:42 -0800200}
201
David S. Millerf894cbf2012-07-02 21:52:24 -0700202static inline const void *choose_neigh_daddr(struct rt6_info *rt,
203 struct sk_buff *skb,
204 const void *daddr)
David S. Miller39232972012-01-26 15:22:32 -0500205{
206 struct in6_addr *p = &rt->rt6i_gateway;
207
David S. Millera7563f32012-01-26 16:29:16 -0500208 if (!ipv6_addr_any(p))
David S. Miller39232972012-01-26 15:22:32 -0500209 return (const void *) p;
David S. Millerf894cbf2012-07-02 21:52:24 -0700210 else if (skb)
211 return &ipv6_hdr(skb)->daddr;
David S. Miller39232972012-01-26 15:22:32 -0500212 return daddr;
213}
214
David S. Millerf894cbf2012-07-02 21:52:24 -0700215static struct neighbour *ip6_neigh_lookup(const struct dst_entry *dst,
216 struct sk_buff *skb,
217 const void *daddr)
David S. Millerd3aaeb32011-07-18 00:40:17 -0700218{
David S. Miller39232972012-01-26 15:22:32 -0500219 struct rt6_info *rt = (struct rt6_info *) dst;
220 struct neighbour *n;
221
David S. Millerf894cbf2012-07-02 21:52:24 -0700222 daddr = choose_neigh_daddr(rt, skb, daddr);
YOSHIFUJI Hideaki / 吉藤英明8e022ee2013-01-17 12:53:09 +0000223 n = __ipv6_neigh_lookup(dst->dev, daddr);
David S. Millerf83c7792011-12-28 15:41:23 -0500224 if (n)
225 return n;
226 return neigh_create(&nd_tbl, daddr, dst->dev);
227}
228
Julian Anastasov63fca652017-02-06 23:14:15 +0200229static void ip6_confirm_neigh(const struct dst_entry *dst, const void *daddr)
230{
231 struct net_device *dev = dst->dev;
232 struct rt6_info *rt = (struct rt6_info *)dst;
233
234 daddr = choose_neigh_daddr(rt, NULL, daddr);
235 if (!daddr)
236 return;
237 if (dev->flags & (IFF_NOARP | IFF_LOOPBACK))
238 return;
239 if (ipv6_addr_is_multicast((const struct in6_addr *)daddr))
240 return;
241 __ipv6_confirm_neigh(dev, daddr);
242}
243
Daniel Lezcano9a7ec3a2008-03-04 13:48:53 -0800244static struct dst_ops ip6_dst_ops_template = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 .family = AF_INET6,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 .gc = ip6_dst_gc,
247 .gc_thresh = 1024,
248 .check = ip6_dst_check,
David S. Miller0dbaee32010-12-13 12:52:14 -0800249 .default_advmss = ip6_default_advmss,
Steffen Klassertebb762f2011-11-23 02:12:51 +0000250 .mtu = ip6_mtu,
David S. Miller06582542011-01-27 14:58:42 -0800251 .cow_metrics = ipv6_cow_metrics,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 .destroy = ip6_dst_destroy,
253 .ifdown = ip6_dst_ifdown,
254 .negative_advice = ip6_negative_advice,
255 .link_failure = ip6_link_failure,
256 .update_pmtu = ip6_rt_update_pmtu,
David S. Miller6e157b62012-07-12 00:05:02 -0700257 .redirect = rt6_do_redirect,
Eric W. Biederman9f8955c2015-10-07 16:48:39 -0500258 .local_out = __ip6_local_out,
David S. Millerd3aaeb32011-07-18 00:40:17 -0700259 .neigh_lookup = ip6_neigh_lookup,
Julian Anastasov63fca652017-02-06 23:14:15 +0200260 .confirm_neigh = ip6_confirm_neigh,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261};
262
Steffen Klassertebb762f2011-11-23 02:12:51 +0000263static unsigned int ip6_blackhole_mtu(const struct dst_entry *dst)
Roland Dreierec831ea2011-01-31 13:16:00 -0800264{
Steffen Klassert618f9bc2011-11-23 02:13:31 +0000265 unsigned int mtu = dst_metric_raw(dst, RTAX_MTU);
266
267 return mtu ? : dst->dev->mtu;
Roland Dreierec831ea2011-01-31 13:16:00 -0800268}
269
David S. Miller6700c272012-07-17 03:29:28 -0700270static void ip6_rt_blackhole_update_pmtu(struct dst_entry *dst, struct sock *sk,
271 struct sk_buff *skb, u32 mtu)
David S. Miller14e50e52007-05-24 18:17:54 -0700272{
273}
274
David S. Miller6700c272012-07-17 03:29:28 -0700275static void ip6_rt_blackhole_redirect(struct dst_entry *dst, struct sock *sk,
276 struct sk_buff *skb)
David S. Millerb587ee32012-07-12 00:39:24 -0700277{
278}
279
David S. Miller14e50e52007-05-24 18:17:54 -0700280static struct dst_ops ip6_dst_blackhole_ops = {
281 .family = AF_INET6,
David S. Miller14e50e52007-05-24 18:17:54 -0700282 .destroy = ip6_dst_destroy,
283 .check = ip6_dst_check,
Steffen Klassertebb762f2011-11-23 02:12:51 +0000284 .mtu = ip6_blackhole_mtu,
Eric Dumazet214f45c2011-02-18 11:39:01 -0800285 .default_advmss = ip6_default_advmss,
David S. Miller14e50e52007-05-24 18:17:54 -0700286 .update_pmtu = ip6_rt_blackhole_update_pmtu,
David S. Millerb587ee32012-07-12 00:39:24 -0700287 .redirect = ip6_rt_blackhole_redirect,
Martin KaFai Lau0a1f5962015-10-15 16:39:58 -0700288 .cow_metrics = dst_cow_metrics_generic,
David S. Millerd3aaeb32011-07-18 00:40:17 -0700289 .neigh_lookup = ip6_neigh_lookup,
David S. Miller14e50e52007-05-24 18:17:54 -0700290};
291
David S. Miller62fa8a82011-01-26 20:51:05 -0800292static const u32 ip6_template_metrics[RTAX_MAX] = {
Li RongQing14edd872012-10-24 14:01:18 +0800293 [RTAX_HOPLIMIT - 1] = 0,
David S. Miller62fa8a82011-01-26 20:51:05 -0800294};
295
Eric Dumazetfb0af4c2012-09-11 21:47:51 +0000296static const struct rt6_info ip6_null_entry_template = {
Changli Gaod8d1f302010-06-10 23:31:35 -0700297 .dst = {
298 .__refcnt = ATOMIC_INIT(1),
299 .__use = 1,
Nicolas Dichtel2c20cbd2012-09-10 22:09:47 +0000300 .obsolete = DST_OBSOLETE_FORCE_CHK,
Changli Gaod8d1f302010-06-10 23:31:35 -0700301 .error = -ENETUNREACH,
Changli Gaod8d1f302010-06-10 23:31:35 -0700302 .input = ip6_pkt_discard,
303 .output = ip6_pkt_discard_out,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 },
305 .rt6i_flags = (RTF_REJECT | RTF_NONEXTHOP),
Jean-Mickael Guerin4f724272009-05-20 17:38:59 -0700306 .rt6i_protocol = RTPROT_KERNEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 .rt6i_metric = ~(u32) 0,
308 .rt6i_ref = ATOMIC_INIT(1),
309};
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),
326};
327
Eric Dumazetfb0af4c2012-09-11 21:47:51 +0000328static const struct rt6_info ip6_blk_hole_entry_template = {
Changli Gaod8d1f302010-06-10 23:31:35 -0700329 .dst = {
330 .__refcnt = ATOMIC_INIT(1),
331 .__use = 1,
Nicolas Dichtel2c20cbd2012-09-10 22:09:47 +0000332 .obsolete = DST_OBSOLETE_FORCE_CHK,
Changli Gaod8d1f302010-06-10 23:31:35 -0700333 .error = -EINVAL,
Changli Gaod8d1f302010-06-10 23:31:35 -0700334 .input = dst_discard,
Eric W. Biedermanede20592015-10-07 16:48:47 -0500335 .output = dst_discard_out,
Thomas Graf101367c2006-08-04 03:39:02 -0700336 },
337 .rt6i_flags = (RTF_REJECT | RTF_NONEXTHOP),
Jean-Mickael Guerin4f724272009-05-20 17:38:59 -0700338 .rt6i_protocol = RTPROT_KERNEL,
Thomas Graf101367c2006-08-04 03:39:02 -0700339 .rt6i_metric = ~(u32) 0,
340 .rt6i_ref = ATOMIC_INIT(1),
341};
342
343#endif
344
Martin KaFai Lauebfa45f2015-10-15 16:39:57 -0700345static void rt6_info_init(struct rt6_info *rt)
346{
347 struct dst_entry *dst = &rt->dst;
348
349 memset(dst + 1, 0, sizeof(*rt) - sizeof(*dst));
350 INIT_LIST_HEAD(&rt->rt6i_siblings);
351 INIT_LIST_HEAD(&rt->rt6i_uncached);
352}
353
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354/* allocate dst with ip6_dst_ops */
Martin KaFai Laud52d3992015-05-22 20:56:06 -0700355static struct rt6_info *__ip6_dst_alloc(struct net *net,
356 struct net_device *dev,
Martin KaFai Lauad706862015-08-14 11:05:52 -0700357 int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358{
David S. Miller97bab732012-06-09 22:36:36 -0700359 struct rt6_info *rt = dst_alloc(&net->ipv6.ip6_dst_ops, dev,
Wei Wangb2a9c0e2017-06-17 10:42:41 -0700360 1, DST_OBSOLETE_FORCE_CHK, flags);
David S. Millercf911662011-04-28 14:31:47 -0700361
Martin KaFai Lauebfa45f2015-10-15 16:39:57 -0700362 if (rt)
363 rt6_info_init(rt);
Steffen Klassert81048912012-07-05 23:37:09 +0000364
David S. Millercf911662011-04-28 14:31:47 -0700365 return rt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366}
367
David Ahern9ab179d2016-04-07 11:10:06 -0700368struct rt6_info *ip6_dst_alloc(struct net *net,
369 struct net_device *dev,
370 int flags)
Martin KaFai Laud52d3992015-05-22 20:56:06 -0700371{
Martin KaFai Lauad706862015-08-14 11:05:52 -0700372 struct rt6_info *rt = __ip6_dst_alloc(net, dev, flags);
Martin KaFai Laud52d3992015-05-22 20:56:06 -0700373
374 if (rt) {
375 rt->rt6i_pcpu = alloc_percpu_gfp(struct rt6_info *, GFP_ATOMIC);
376 if (rt->rt6i_pcpu) {
377 int cpu;
378
379 for_each_possible_cpu(cpu) {
380 struct rt6_info **p;
381
382 p = per_cpu_ptr(rt->rt6i_pcpu, cpu);
383 /* no one shares rt */
384 *p = NULL;
385 }
386 } else {
Wei Wang587fea72017-06-17 10:42:36 -0700387 dst_release_immediate(&rt->dst);
Martin KaFai Laud52d3992015-05-22 20:56:06 -0700388 return NULL;
389 }
390 }
391
392 return rt;
393}
David Ahern9ab179d2016-04-07 11:10:06 -0700394EXPORT_SYMBOL(ip6_dst_alloc);
Martin KaFai Laud52d3992015-05-22 20:56:06 -0700395
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396static void ip6_dst_destroy(struct dst_entry *dst)
397{
398 struct rt6_info *rt = (struct rt6_info *)dst;
Wei Wang35732d02017-10-06 12:05:57 -0700399 struct rt6_exception_bucket *bucket;
YOSHIFUJI Hideaki / 吉藤英明ecd98832013-02-20 00:29:08 +0000400 struct dst_entry *from = dst->from;
Martin KaFai Lau8d0b94a2015-05-22 20:56:04 -0700401 struct inet6_dev *idev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402
Martin KaFai Lau4b32b5a2015-04-28 13:03:06 -0700403 dst_destroy_metrics_generic(dst);
Markus Elfring87775312015-07-02 16:30:24 +0200404 free_percpu(rt->rt6i_pcpu);
Martin KaFai Lau8d0b94a2015-05-22 20:56:04 -0700405 rt6_uncached_list_del(rt);
406
407 idev = rt->rt6i_idev;
David S. Miller38308472011-12-03 18:02:47 -0500408 if (idev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 rt->rt6i_idev = NULL;
410 in6_dev_put(idev);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900411 }
Wei Wang35732d02017-10-06 12:05:57 -0700412 bucket = rcu_dereference_protected(rt->rt6i_exception_bucket, 1);
413 if (bucket) {
414 rt->rt6i_exception_bucket = NULL;
415 kfree(bucket);
416 }
Gao feng1716a962012-04-06 00:13:10 +0000417
YOSHIFUJI Hideaki / 吉藤英明ecd98832013-02-20 00:29:08 +0000418 dst->from = NULL;
419 dst_release(from);
David S. Millerb3419362010-11-30 12:27:11 -0800420}
421
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422static void ip6_dst_ifdown(struct dst_entry *dst, struct net_device *dev,
423 int how)
424{
425 struct rt6_info *rt = (struct rt6_info *)dst;
426 struct inet6_dev *idev = rt->rt6i_idev;
Denis V. Lunev5a3e55d2007-12-07 00:38:10 -0800427 struct net_device *loopback_dev =
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900428 dev_net(dev)->loopback_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429
Wei Wange5645f52017-08-14 10:44:59 -0700430 if (idev && idev->dev != loopback_dev) {
431 struct inet6_dev *loopback_idev = in6_dev_get(loopback_dev);
432 if (loopback_idev) {
433 rt->rt6i_idev = loopback_idev;
434 in6_dev_put(idev);
David S. Miller97cac082012-07-02 22:43:47 -0700435 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 }
437}
438
Martin KaFai Lau5973fb12015-11-11 11:51:07 -0800439static bool __rt6_check_expired(const struct rt6_info *rt)
440{
441 if (rt->rt6i_flags & RTF_EXPIRES)
442 return time_after(jiffies, rt->dst.expires);
443 else
444 return false;
445}
446
Eric Dumazeta50feda2012-05-18 18:57:34 +0000447static bool rt6_check_expired(const struct rt6_info *rt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448{
Gao feng1716a962012-04-06 00:13:10 +0000449 if (rt->rt6i_flags & RTF_EXPIRES) {
450 if (time_after(jiffies, rt->dst.expires))
Eric Dumazeta50feda2012-05-18 18:57:34 +0000451 return true;
Gao feng1716a962012-04-06 00:13:10 +0000452 } else if (rt->dst.from) {
Xin Long1e2ea8a2017-08-26 20:10:10 +0800453 return rt->dst.obsolete != DST_OBSOLETE_FORCE_CHK ||
454 rt6_check_expired((struct rt6_info *)rt->dst.from);
Gao feng1716a962012-04-06 00:13:10 +0000455 }
Eric Dumazeta50feda2012-05-18 18:57:34 +0000456 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457}
458
Nicolas Dichtel51ebd312012-10-22 03:42:09 +0000459static struct rt6_info *rt6_multipath_select(struct rt6_info *match,
Nicolas Dichtel52bd4c02013-06-28 17:35:48 +0200460 struct flowi6 *fl6, int oif,
461 int strict)
Nicolas Dichtel51ebd312012-10-22 03:42:09 +0000462{
463 struct rt6_info *sibling, *next_sibling;
464 int route_choosen;
465
Jakub Sitnickib673d6c2017-08-23 09:58:31 +0200466 /* We might have already computed the hash for ICMPv6 errors. In such
467 * case it will always be non-zero. Otherwise now is the time to do it.
468 */
469 if (!fl6->mp_hash)
470 fl6->mp_hash = rt6_multipath_hash(fl6, NULL);
471
472 route_choosen = fl6->mp_hash % (match->rt6i_nsiblings + 1);
Nicolas Dichtel51ebd312012-10-22 03:42:09 +0000473 /* Don't change the route, if route_choosen == 0
474 * (siblings does not include ourself)
475 */
476 if (route_choosen)
477 list_for_each_entry_safe(sibling, next_sibling,
478 &match->rt6i_siblings, rt6i_siblings) {
479 route_choosen--;
480 if (route_choosen == 0) {
Nicolas Dichtel52bd4c02013-06-28 17:35:48 +0200481 if (rt6_score_route(sibling, oif, strict) < 0)
482 break;
Nicolas Dichtel51ebd312012-10-22 03:42:09 +0000483 match = sibling;
484 break;
485 }
486 }
487 return match;
488}
489
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490/*
Thomas Grafc71099a2006-08-04 23:20:06 -0700491 * Route lookup. Any table->tb6_lock is implied.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 */
493
Daniel Lezcano8ed67782008-03-04 13:48:30 -0800494static inline struct rt6_info *rt6_device_match(struct net *net,
495 struct rt6_info *rt,
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000496 const struct in6_addr *saddr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 int oif,
YOSHIFUJI Hideakid4208952008-06-27 20:14:54 -0700498 int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499{
500 struct rt6_info *local = NULL;
501 struct rt6_info *sprt;
502
YOSHIFUJI Hideakidd3abc42008-07-02 18:30:18 +0900503 if (!oif && ipv6_addr_any(saddr))
504 goto out;
505
Changli Gaod8d1f302010-06-10 23:31:35 -0700506 for (sprt = rt; sprt; sprt = sprt->dst.rt6_next) {
David S. Millerd1918542011-12-28 20:19:20 -0500507 struct net_device *dev = sprt->dst.dev;
YOSHIFUJI Hideakidd3abc42008-07-02 18:30:18 +0900508
509 if (oif) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 if (dev->ifindex == oif)
511 return sprt;
512 if (dev->flags & IFF_LOOPBACK) {
David S. Miller38308472011-12-03 18:02:47 -0500513 if (!sprt->rt6i_idev ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 sprt->rt6i_idev->dev->ifindex != oif) {
David Ahern17fb0b22015-09-25 15:22:54 -0600515 if (flags & RT6_LOOKUP_F_IFACE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 continue;
David Ahern17fb0b22015-09-25 15:22:54 -0600517 if (local &&
518 local->rt6i_idev->dev->ifindex == oif)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 continue;
520 }
521 local = sprt;
522 }
YOSHIFUJI Hideakidd3abc42008-07-02 18:30:18 +0900523 } else {
524 if (ipv6_chk_addr(net, saddr, dev,
525 flags & RT6_LOOKUP_F_IFACE))
526 return sprt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 }
YOSHIFUJI Hideakidd3abc42008-07-02 18:30:18 +0900528 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529
YOSHIFUJI Hideakidd3abc42008-07-02 18:30:18 +0900530 if (oif) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 if (local)
532 return local;
533
YOSHIFUJI Hideakid4208952008-06-27 20:14:54 -0700534 if (flags & RT6_LOOKUP_F_IFACE)
Daniel Lezcano8ed67782008-03-04 13:48:30 -0800535 return net->ipv6.ip6_null_entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 }
YOSHIFUJI Hideakidd3abc42008-07-02 18:30:18 +0900537out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 return rt;
539}
540
YOSHIFUJI Hideaki27097252006-03-20 17:05:13 -0800541#ifdef CONFIG_IPV6_ROUTER_PREF
Hannes Frederic Sowac2f17e82013-10-21 06:17:15 +0200542struct __rt6_probe_work {
543 struct work_struct work;
544 struct in6_addr target;
545 struct net_device *dev;
546};
547
548static void rt6_probe_deferred(struct work_struct *w)
549{
550 struct in6_addr mcaddr;
551 struct __rt6_probe_work *work =
552 container_of(w, struct __rt6_probe_work, work);
553
554 addrconf_addr_solict_mult(&work->target, &mcaddr);
Erik Nordmarkadc176c2016-12-02 14:00:08 -0800555 ndisc_send_ns(work->dev, &work->target, &mcaddr, NULL, 0);
Hannes Frederic Sowac2f17e82013-10-21 06:17:15 +0200556 dev_put(work->dev);
Michael Büsch662f5532015-02-08 10:14:07 +0100557 kfree(work);
Hannes Frederic Sowac2f17e82013-10-21 06:17:15 +0200558}
559
YOSHIFUJI Hideaki27097252006-03-20 17:05:13 -0800560static void rt6_probe(struct rt6_info *rt)
561{
Martin KaFai Lau990edb42015-07-24 09:57:42 -0700562 struct __rt6_probe_work *work;
Eric Dumazetf2c31e32011-07-29 19:00:53 +0000563 struct neighbour *neigh;
YOSHIFUJI Hideaki27097252006-03-20 17:05:13 -0800564 /*
565 * Okay, this does not seem to be appropriate
566 * for now, however, we need to check if it
567 * is really so; aka Router Reachability Probing.
568 *
569 * Router Reachability Probe MUST be rate-limited
570 * to no more than one per minute.
571 */
YOSHIFUJI Hideaki / 吉藤英明2152cae2013-01-17 12:53:43 +0000572 if (!rt || !(rt->rt6i_flags & RTF_GATEWAY))
Amerigo Wangfdd66812012-09-10 02:48:44 +0000573 return;
YOSHIFUJI Hideaki / 吉藤英明2152cae2013-01-17 12:53:43 +0000574 rcu_read_lock_bh();
575 neigh = __ipv6_neigh_lookup_noref(rt->dst.dev, &rt->rt6i_gateway);
576 if (neigh) {
Martin KaFai Lau8d6c31b2015-07-24 09:57:43 -0700577 if (neigh->nud_state & NUD_VALID)
578 goto out;
579
Martin KaFai Lau990edb42015-07-24 09:57:42 -0700580 work = NULL;
YOSHIFUJI Hideaki / 吉藤英明2152cae2013-01-17 12:53:43 +0000581 write_lock(&neigh->lock);
Martin KaFai Lau990edb42015-07-24 09:57:42 -0700582 if (!(neigh->nud_state & NUD_VALID) &&
583 time_after(jiffies,
584 neigh->updated +
585 rt->rt6i_idev->cnf.rtr_probe_interval)) {
586 work = kmalloc(sizeof(*work), GFP_ATOMIC);
587 if (work)
588 __neigh_set_probe_once(neigh);
Hannes Frederic Sowac2f17e82013-10-21 06:17:15 +0200589 }
YOSHIFUJI Hideaki / 吉藤英明2152cae2013-01-17 12:53:43 +0000590 write_unlock(&neigh->lock);
Martin KaFai Lau990edb42015-07-24 09:57:42 -0700591 } else {
592 work = kmalloc(sizeof(*work), GFP_ATOMIC);
Eric Dumazetf2c31e32011-07-29 19:00:53 +0000593 }
Martin KaFai Lau990edb42015-07-24 09:57:42 -0700594
595 if (work) {
596 INIT_WORK(&work->work, rt6_probe_deferred);
597 work->target = rt->rt6i_gateway;
598 dev_hold(rt->dst.dev);
599 work->dev = rt->dst.dev;
600 schedule_work(&work->work);
601 }
602
Martin KaFai Lau8d6c31b2015-07-24 09:57:43 -0700603out:
YOSHIFUJI Hideaki / 吉藤英明2152cae2013-01-17 12:53:43 +0000604 rcu_read_unlock_bh();
YOSHIFUJI Hideaki27097252006-03-20 17:05:13 -0800605}
606#else
607static inline void rt6_probe(struct rt6_info *rt)
608{
YOSHIFUJI Hideaki27097252006-03-20 17:05:13 -0800609}
610#endif
611
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612/*
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800613 * Default Router Selection (RFC 2461 6.3.6)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 */
Dave Jonesb6f99a22007-03-22 12:27:49 -0700615static inline int rt6_check_dev(struct rt6_info *rt, int oif)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616{
David S. Millerd1918542011-12-28 20:19:20 -0500617 struct net_device *dev = rt->dst.dev;
David S. Miller161980f2007-04-06 11:42:27 -0700618 if (!oif || dev->ifindex == oif)
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800619 return 2;
David S. Miller161980f2007-04-06 11:42:27 -0700620 if ((dev->flags & IFF_LOOPBACK) &&
621 rt->rt6i_idev && rt->rt6i_idev->dev->ifindex == oif)
622 return 1;
623 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624}
625
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200626static inline enum rt6_nud_state rt6_check_neigh(struct rt6_info *rt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627{
Eric Dumazetf2c31e32011-07-29 19:00:53 +0000628 struct neighbour *neigh;
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200629 enum rt6_nud_state ret = RT6_NUD_FAIL_HARD;
Eric Dumazetf2c31e32011-07-29 19:00:53 +0000630
YOSHIFUJI Hideaki4d0c5912006-05-26 13:23:41 -0700631 if (rt->rt6i_flags & RTF_NONEXTHOP ||
632 !(rt->rt6i_flags & RTF_GATEWAY))
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200633 return RT6_NUD_SUCCEED;
YOSHIFUJI Hideaki / 吉藤英明145a3622013-01-17 12:53:38 +0000634
635 rcu_read_lock_bh();
636 neigh = __ipv6_neigh_lookup_noref(rt->dst.dev, &rt->rt6i_gateway);
637 if (neigh) {
638 read_lock(&neigh->lock);
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800639 if (neigh->nud_state & NUD_VALID)
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200640 ret = RT6_NUD_SUCCEED;
YOSHIFUJI Hideaki398bcbe2008-01-19 00:35:16 -0800641#ifdef CONFIG_IPV6_ROUTER_PREF
Paul Marksa5a81f02012-12-03 10:26:54 +0000642 else if (!(neigh->nud_state & NUD_FAILED))
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200643 ret = RT6_NUD_SUCCEED;
Jiri Benc7e980562013-12-11 13:48:20 +0100644 else
645 ret = RT6_NUD_FAIL_PROBE;
YOSHIFUJI Hideaki398bcbe2008-01-19 00:35:16 -0800646#endif
YOSHIFUJI Hideaki / 吉藤英明145a3622013-01-17 12:53:38 +0000647 read_unlock(&neigh->lock);
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200648 } else {
649 ret = IS_ENABLED(CONFIG_IPV6_ROUTER_PREF) ?
Jiri Benc7e980562013-12-11 13:48:20 +0100650 RT6_NUD_SUCCEED : RT6_NUD_FAIL_DO_RR;
Paul Marksa5a81f02012-12-03 10:26:54 +0000651 }
YOSHIFUJI Hideaki / 吉藤英明145a3622013-01-17 12:53:38 +0000652 rcu_read_unlock_bh();
653
Paul Marksa5a81f02012-12-03 10:26:54 +0000654 return ret;
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800655}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800657static int rt6_score_route(struct rt6_info *rt, int oif,
658 int strict)
659{
Paul Marksa5a81f02012-12-03 10:26:54 +0000660 int m;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900661
YOSHIFUJI Hideaki4d0c5912006-05-26 13:23:41 -0700662 m = rt6_check_dev(rt, oif);
YOSHIFUJI Hideaki77d16f42006-08-23 17:25:05 -0700663 if (!m && (strict & RT6_LOOKUP_F_IFACE))
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200664 return RT6_NUD_FAIL_HARD;
YOSHIFUJI Hideakiebacaaa2006-03-20 17:04:53 -0800665#ifdef CONFIG_IPV6_ROUTER_PREF
666 m |= IPV6_DECODE_PREF(IPV6_EXTRACT_PREF(rt->rt6i_flags)) << 2;
667#endif
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200668 if (strict & RT6_LOOKUP_F_REACHABLE) {
669 int n = rt6_check_neigh(rt);
670 if (n < 0)
671 return n;
672 }
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800673 return m;
674}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675
David S. Millerf11e6652007-03-24 20:36:25 -0700676static struct rt6_info *find_match(struct rt6_info *rt, int oif, int strict,
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200677 int *mpri, struct rt6_info *match,
678 bool *do_rr)
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800679{
David S. Millerf11e6652007-03-24 20:36:25 -0700680 int m;
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200681 bool match_do_rr = false;
Andy Gospodarek35103d12015-08-13 10:39:01 -0400682 struct inet6_dev *idev = rt->rt6i_idev;
683 struct net_device *dev = rt->dst.dev;
684
685 if (dev && !netif_carrier_ok(dev) &&
David Ahernd5d32e42016-10-24 12:27:23 -0700686 idev->cnf.ignore_routes_with_linkdown &&
687 !(strict & RT6_LOOKUP_F_IGNORE_LINKSTATE))
Andy Gospodarek35103d12015-08-13 10:39:01 -0400688 goto out;
David S. Millerf11e6652007-03-24 20:36:25 -0700689
690 if (rt6_check_expired(rt))
691 goto out;
692
693 m = rt6_score_route(rt, oif, strict);
Jiri Benc7e980562013-12-11 13:48:20 +0100694 if (m == RT6_NUD_FAIL_DO_RR) {
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200695 match_do_rr = true;
696 m = 0; /* lowest valid score */
Jiri Benc7e980562013-12-11 13:48:20 +0100697 } else if (m == RT6_NUD_FAIL_HARD) {
David S. Millerf11e6652007-03-24 20:36:25 -0700698 goto out;
David S. Millerf11e6652007-03-24 20:36:25 -0700699 }
700
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200701 if (strict & RT6_LOOKUP_F_REACHABLE)
702 rt6_probe(rt);
703
Jiri Benc7e980562013-12-11 13:48:20 +0100704 /* note that m can be RT6_NUD_FAIL_PROBE at this point */
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200705 if (m > *mpri) {
706 *do_rr = match_do_rr;
707 *mpri = m;
708 match = rt;
709 }
David S. Millerf11e6652007-03-24 20:36:25 -0700710out:
711 return match;
712}
713
714static struct rt6_info *find_rr_leaf(struct fib6_node *fn,
Wei Wang8d1040e2017-10-06 12:06:08 -0700715 struct rt6_info *leaf,
David S. Millerf11e6652007-03-24 20:36:25 -0700716 struct rt6_info *rr_head,
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200717 u32 metric, int oif, int strict,
718 bool *do_rr)
David S. Millerf11e6652007-03-24 20:36:25 -0700719{
Steffen Klassert9fbdcfa2015-04-28 13:03:04 -0700720 struct rt6_info *rt, *match, *cont;
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800721 int mpri = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722
David S. Millerf11e6652007-03-24 20:36:25 -0700723 match = NULL;
Steffen Klassert9fbdcfa2015-04-28 13:03:04 -0700724 cont = NULL;
725 for (rt = rr_head; rt; rt = rt->dst.rt6_next) {
726 if (rt->rt6i_metric != metric) {
727 cont = rt;
728 break;
729 }
730
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200731 match = find_match(rt, oif, strict, &mpri, match, do_rr);
Steffen Klassert9fbdcfa2015-04-28 13:03:04 -0700732 }
733
Wei Wang8d1040e2017-10-06 12:06:08 -0700734 for (rt = leaf; rt && rt != rr_head; rt = rt->dst.rt6_next) {
Steffen Klassert9fbdcfa2015-04-28 13:03:04 -0700735 if (rt->rt6i_metric != metric) {
736 cont = rt;
737 break;
738 }
739
740 match = find_match(rt, oif, strict, &mpri, match, do_rr);
741 }
742
743 if (match || !cont)
744 return match;
745
746 for (rt = cont; rt; rt = rt->dst.rt6_next)
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200747 match = find_match(rt, oif, strict, &mpri, match, do_rr);
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800748
David S. Millerf11e6652007-03-24 20:36:25 -0700749 return match;
750}
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800751
Wei Wang8d1040e2017-10-06 12:06:08 -0700752static struct rt6_info *rt6_select(struct net *net, struct fib6_node *fn,
753 int oif, int strict)
David S. Millerf11e6652007-03-24 20:36:25 -0700754{
Wei Wang8d1040e2017-10-06 12:06:08 -0700755 struct rt6_info *leaf = fn->leaf;
David S. Millerf11e6652007-03-24 20:36:25 -0700756 struct rt6_info *match, *rt0;
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200757 bool do_rr = false;
Wei Wang17ecf592017-10-06 12:06:09 -0700758 int key_plen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759
Wei Wang8d1040e2017-10-06 12:06:08 -0700760 if (!leaf)
761 return net->ipv6.ip6_null_entry;
762
David S. Millerf11e6652007-03-24 20:36:25 -0700763 rt0 = fn->rr_ptr;
764 if (!rt0)
Wei Wang8d1040e2017-10-06 12:06:08 -0700765 fn->rr_ptr = rt0 = leaf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766
Wei Wang17ecf592017-10-06 12:06:09 -0700767 /* Double check to make sure fn is not an intermediate node
768 * and fn->leaf does not points to its child's leaf
769 * (This might happen if all routes under fn are deleted from
770 * the tree and fib6_repair_tree() is called on the node.)
771 */
772 key_plen = rt0->rt6i_dst.plen;
773#ifdef CONFIG_IPV6_SUBTREES
774 if (rt0->rt6i_src.plen)
775 key_plen = rt0->rt6i_src.plen;
776#endif
777 if (fn->fn_bit != key_plen)
778 return net->ipv6.ip6_null_entry;
779
Wei Wang8d1040e2017-10-06 12:06:08 -0700780 match = find_rr_leaf(fn, leaf, rt0, rt0->rt6i_metric, oif, strict,
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200781 &do_rr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200783 if (do_rr) {
Changli Gaod8d1f302010-06-10 23:31:35 -0700784 struct rt6_info *next = rt0->dst.rt6_next;
David S. Millerf11e6652007-03-24 20:36:25 -0700785
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800786 /* no entries matched; do round-robin */
David S. Millerf11e6652007-03-24 20:36:25 -0700787 if (!next || next->rt6i_metric != rt0->rt6i_metric)
Wei Wang8d1040e2017-10-06 12:06:08 -0700788 next = leaf;
David S. Millerf11e6652007-03-24 20:36:25 -0700789
790 if (next != rt0)
791 fn->rr_ptr = next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 }
793
Eric Dumazeta02cec22010-09-22 20:43:57 +0000794 return match ? match : net->ipv6.ip6_null_entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795}
796
Martin KaFai Lau8b9df262015-05-22 20:55:59 -0700797static bool rt6_is_gw_or_nonexthop(const struct rt6_info *rt)
798{
799 return (rt->rt6i_flags & (RTF_NONEXTHOP | RTF_GATEWAY));
800}
801
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800802#ifdef CONFIG_IPV6_ROUTE_INFO
803int rt6_route_rcv(struct net_device *dev, u8 *opt, int len,
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000804 const struct in6_addr *gwaddr)
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800805{
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900806 struct net *net = dev_net(dev);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800807 struct route_info *rinfo = (struct route_info *) opt;
808 struct in6_addr prefix_buf, *prefix;
809 unsigned int pref;
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +0900810 unsigned long lifetime;
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800811 struct rt6_info *rt;
812
813 if (len < sizeof(struct route_info)) {
814 return -EINVAL;
815 }
816
817 /* Sanity check for prefix_len and length */
818 if (rinfo->length > 3) {
819 return -EINVAL;
820 } else if (rinfo->prefix_len > 128) {
821 return -EINVAL;
822 } else if (rinfo->prefix_len > 64) {
823 if (rinfo->length < 2) {
824 return -EINVAL;
825 }
826 } else if (rinfo->prefix_len > 0) {
827 if (rinfo->length < 1) {
828 return -EINVAL;
829 }
830 }
831
832 pref = rinfo->route_pref;
833 if (pref == ICMPV6_ROUTER_PREF_INVALID)
Jens Rosenboom3933fc92009-09-10 06:25:11 +0000834 return -EINVAL;
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800835
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +0900836 lifetime = addrconf_timeout_fixup(ntohl(rinfo->lifetime), HZ);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800837
838 if (rinfo->length == 3)
839 prefix = (struct in6_addr *)rinfo->prefix;
840 else {
841 /* this function is safe */
842 ipv6_addr_prefix(&prefix_buf,
843 (struct in6_addr *)rinfo->prefix,
844 rinfo->prefix_len);
845 prefix = &prefix_buf;
846 }
847
Duan Jiongf104a562013-11-08 09:56:53 +0800848 if (rinfo->prefix_len == 0)
849 rt = rt6_get_dflt_router(gwaddr, dev);
850 else
851 rt = rt6_get_route_info(net, prefix, rinfo->prefix_len,
David Ahern830218c2016-10-24 10:52:35 -0700852 gwaddr, dev);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800853
854 if (rt && !lifetime) {
Thomas Grafe0a1ad732006-08-22 00:00:21 -0700855 ip6_del_rt(rt);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800856 rt = NULL;
857 }
858
859 if (!rt && lifetime)
David Ahern830218c2016-10-24 10:52:35 -0700860 rt = rt6_add_route_info(net, prefix, rinfo->prefix_len, gwaddr,
861 dev, pref);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800862 else if (rt)
863 rt->rt6i_flags = RTF_ROUTEINFO |
864 (rt->rt6i_flags & ~RTF_PREF_MASK) | RTF_PREF(pref);
865
866 if (rt) {
Gao feng1716a962012-04-06 00:13:10 +0000867 if (!addrconf_finite_timeout(lifetime))
868 rt6_clean_expires(rt);
869 else
870 rt6_set_expires(rt, jiffies + HZ * lifetime);
871
Amerigo Wang94e187c2012-10-29 00:13:19 +0000872 ip6_rt_put(rt);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800873 }
874 return 0;
875}
876#endif
877
Martin KaFai Laua3c00e42014-10-20 13:42:43 -0700878static struct fib6_node* fib6_backtrack(struct fib6_node *fn,
879 struct in6_addr *saddr)
880{
881 struct fib6_node *pn;
882 while (1) {
883 if (fn->fn_flags & RTN_TL_ROOT)
884 return NULL;
885 pn = fn->parent;
886 if (FIB6_SUBTREE(pn) && FIB6_SUBTREE(pn) != fn)
887 fn = fib6_lookup(FIB6_SUBTREE(pn), NULL, saddr);
888 else
889 fn = pn;
890 if (fn->fn_flags & RTN_RTINFO)
891 return fn;
892 }
893}
Thomas Grafc71099a2006-08-04 23:20:06 -0700894
Wei Wangd3843fe2017-10-06 12:06:06 -0700895static bool ip6_hold_safe(struct net *net, struct rt6_info **prt,
896 bool null_fallback)
897{
898 struct rt6_info *rt = *prt;
899
900 if (dst_hold_safe(&rt->dst))
901 return true;
902 if (null_fallback) {
903 rt = net->ipv6.ip6_null_entry;
904 dst_hold(&rt->dst);
905 } else {
906 rt = NULL;
907 }
908 *prt = rt;
909 return false;
910}
911
Daniel Lezcano8ed67782008-03-04 13:48:30 -0800912static struct rt6_info *ip6_pol_route_lookup(struct net *net,
913 struct fib6_table *table,
David S. Miller4c9483b2011-03-12 16:22:43 -0500914 struct flowi6 *fl6, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915{
Wei Wang2b760fc2017-10-06 12:06:03 -0700916 struct rt6_info *rt, *rt_cache;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917 struct fib6_node *fn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918
Thomas Grafc71099a2006-08-04 23:20:06 -0700919 read_lock_bh(&table->tb6_lock);
David S. Miller4c9483b2011-03-12 16:22:43 -0500920 fn = fib6_lookup(&table->tb6_root, &fl6->daddr, &fl6->saddr);
Thomas Grafc71099a2006-08-04 23:20:06 -0700921restart:
922 rt = fn->leaf;
David S. Miller4c9483b2011-03-12 16:22:43 -0500923 rt = rt6_device_match(net, rt, &fl6->saddr, fl6->flowi6_oif, flags);
Nicolas Dichtel51ebd312012-10-22 03:42:09 +0000924 if (rt->rt6i_nsiblings && fl6->flowi6_oif == 0)
Nicolas Dichtel52bd4c02013-06-28 17:35:48 +0200925 rt = rt6_multipath_select(rt, fl6, fl6->flowi6_oif, flags);
Martin KaFai Laua3c00e42014-10-20 13:42:43 -0700926 if (rt == net->ipv6.ip6_null_entry) {
927 fn = fib6_backtrack(fn, &fl6->saddr);
928 if (fn)
929 goto restart;
930 }
Wei Wang2b760fc2017-10-06 12:06:03 -0700931 /* Search through exception table */
932 rt_cache = rt6_find_cached_rt(rt, &fl6->daddr, &fl6->saddr);
933 if (rt_cache)
934 rt = rt_cache;
935
Wei Wangd3843fe2017-10-06 12:06:06 -0700936 if (ip6_hold_safe(net, &rt, true))
937 dst_use_noref(&rt->dst, jiffies);
938
Thomas Grafc71099a2006-08-04 23:20:06 -0700939 read_unlock_bh(&table->tb6_lock);
David Ahernb8115802015-11-19 12:24:22 -0800940
941 trace_fib6_table_lookup(net, rt, table->tb6_id, fl6);
942
Thomas Grafc71099a2006-08-04 23:20:06 -0700943 return rt;
944
945}
946
Ian Morris67ba4152014-08-24 21:53:10 +0100947struct dst_entry *ip6_route_lookup(struct net *net, struct flowi6 *fl6,
Florian Westphalea6e5742011-09-05 16:05:44 +0200948 int flags)
949{
950 return fib6_rule_lookup(net, fl6, flags, ip6_pol_route_lookup);
951}
952EXPORT_SYMBOL_GPL(ip6_route_lookup);
953
YOSHIFUJI Hideaki9acd9f32008-04-10 15:42:10 +0900954struct rt6_info *rt6_lookup(struct net *net, const struct in6_addr *daddr,
955 const struct in6_addr *saddr, int oif, int strict)
Thomas Grafc71099a2006-08-04 23:20:06 -0700956{
David S. Miller4c9483b2011-03-12 16:22:43 -0500957 struct flowi6 fl6 = {
958 .flowi6_oif = oif,
959 .daddr = *daddr,
Thomas Grafc71099a2006-08-04 23:20:06 -0700960 };
961 struct dst_entry *dst;
YOSHIFUJI Hideaki77d16f42006-08-23 17:25:05 -0700962 int flags = strict ? RT6_LOOKUP_F_IFACE : 0;
Thomas Grafc71099a2006-08-04 23:20:06 -0700963
Thomas Grafadaa70b2006-10-13 15:01:03 -0700964 if (saddr) {
David S. Miller4c9483b2011-03-12 16:22:43 -0500965 memcpy(&fl6.saddr, saddr, sizeof(*saddr));
Thomas Grafadaa70b2006-10-13 15:01:03 -0700966 flags |= RT6_LOOKUP_F_HAS_SADDR;
967 }
968
David S. Miller4c9483b2011-03-12 16:22:43 -0500969 dst = fib6_rule_lookup(net, &fl6, flags, ip6_pol_route_lookup);
Thomas Grafc71099a2006-08-04 23:20:06 -0700970 if (dst->error == 0)
971 return (struct rt6_info *) dst;
972
973 dst_release(dst);
974
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 return NULL;
976}
YOSHIFUJI Hideaki71590392007-02-22 22:05:40 +0900977EXPORT_SYMBOL(rt6_lookup);
978
Thomas Grafc71099a2006-08-04 23:20:06 -0700979/* ip6_ins_rt is called with FREE table->tb6_lock.
Wei Wang1cfb71e2017-06-17 10:42:33 -0700980 * It takes new route entry, the addition fails by any reason the
981 * route is released.
982 * Caller must hold dst before calling it.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983 */
984
Michal Kubečeke5fd3872014-03-27 13:04:08 +0100985static int __ip6_ins_rt(struct rt6_info *rt, struct nl_info *info,
David Ahern333c4302017-05-21 10:12:04 -0600986 struct mx6_config *mxc,
987 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988{
989 int err;
Thomas Grafc71099a2006-08-04 23:20:06 -0700990 struct fib6_table *table;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991
Thomas Grafc71099a2006-08-04 23:20:06 -0700992 table = rt->rt6i_table;
993 write_lock_bh(&table->tb6_lock);
David Ahern333c4302017-05-21 10:12:04 -0600994 err = fib6_add(&table->tb6_root, rt, info, mxc, extack);
Thomas Grafc71099a2006-08-04 23:20:06 -0700995 write_unlock_bh(&table->tb6_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996
997 return err;
998}
999
Thomas Graf40e22e82006-08-22 00:00:45 -07001000int ip6_ins_rt(struct rt6_info *rt)
1001{
Florian Westphale715b6d2015-01-05 23:57:44 +01001002 struct nl_info info = { .nl_net = dev_net(rt->dst.dev), };
1003 struct mx6_config mxc = { .mx = NULL, };
1004
Wei Wang1cfb71e2017-06-17 10:42:33 -07001005 /* Hold dst to account for the reference from the fib6 tree */
1006 dst_hold(&rt->dst);
David Ahern333c4302017-05-21 10:12:04 -06001007 return __ip6_ins_rt(rt, &info, &mxc, NULL);
Thomas Graf40e22e82006-08-22 00:00:45 -07001008}
1009
David Ahern4832c302017-08-17 12:17:20 -07001010/* called with rcu_lock held */
1011static struct net_device *ip6_rt_get_dev_rcu(struct rt6_info *rt)
1012{
1013 struct net_device *dev = rt->dst.dev;
1014
1015 if (rt->rt6i_flags & RTF_LOCAL) {
1016 /* for copies of local routes, dst->dev needs to be the
1017 * device if it is a master device, the master device if
1018 * device is enslaved, and the loopback as the default
1019 */
1020 if (netif_is_l3_slave(dev) &&
1021 !rt6_need_strict(&rt->rt6i_dst.addr))
1022 dev = l3mdev_master_dev_rcu(dev);
1023 else if (!netif_is_l3_master(dev))
1024 dev = dev_net(dev)->loopback_dev;
1025 /* last case is netif_is_l3_master(dev) is true in which
1026 * case we want dev returned to be dev
1027 */
1028 }
1029
1030 return dev;
1031}
1032
Martin KaFai Lau8b9df262015-05-22 20:55:59 -07001033static struct rt6_info *ip6_rt_cache_alloc(struct rt6_info *ort,
1034 const struct in6_addr *daddr,
1035 const struct in6_addr *saddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036{
David Ahern4832c302017-08-17 12:17:20 -07001037 struct net_device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038 struct rt6_info *rt;
1039
1040 /*
1041 * Clone the route.
1042 */
1043
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001044 if (ort->rt6i_flags & (RTF_CACHE | RTF_PCPU))
Martin KaFai Lau83a09ab2015-05-22 20:56:05 -07001045 ort = (struct rt6_info *)ort->dst.from;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046
David Ahern4832c302017-08-17 12:17:20 -07001047 rcu_read_lock();
1048 dev = ip6_rt_get_dev_rcu(ort);
1049 rt = __ip6_dst_alloc(dev_net(dev), dev, 0);
1050 rcu_read_unlock();
Martin KaFai Lau83a09ab2015-05-22 20:56:05 -07001051 if (!rt)
1052 return NULL;
1053
1054 ip6_rt_copy_init(rt, ort);
1055 rt->rt6i_flags |= RTF_CACHE;
1056 rt->rt6i_metric = 0;
1057 rt->dst.flags |= DST_HOST;
1058 rt->rt6i_dst.addr = *daddr;
1059 rt->rt6i_dst.plen = 128;
1060
1061 if (!rt6_is_gw_or_nonexthop(ort)) {
1062 if (ort->rt6i_dst.plen != 128 &&
1063 ipv6_addr_equal(&ort->rt6i_dst.addr, daddr))
1064 rt->rt6i_flags |= RTF_ANYCAST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065#ifdef CONFIG_IPV6_SUBTREES
Martin KaFai Lau83a09ab2015-05-22 20:56:05 -07001066 if (rt->rt6i_src.plen && saddr) {
1067 rt->rt6i_src.addr = *saddr;
1068 rt->rt6i_src.plen = 128;
Martin KaFai Lau8b9df262015-05-22 20:55:59 -07001069 }
Martin KaFai Lau83a09ab2015-05-22 20:56:05 -07001070#endif
YOSHIFUJI Hideaki95a9a5b2006-03-20 16:55:51 -08001071 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072
YOSHIFUJI Hideaki95a9a5b2006-03-20 16:55:51 -08001073 return rt;
1074}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001076static struct rt6_info *ip6_rt_pcpu_alloc(struct rt6_info *rt)
1077{
David Ahern4832c302017-08-17 12:17:20 -07001078 struct net_device *dev;
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001079 struct rt6_info *pcpu_rt;
1080
David Ahern4832c302017-08-17 12:17:20 -07001081 rcu_read_lock();
1082 dev = ip6_rt_get_dev_rcu(rt);
1083 pcpu_rt = __ip6_dst_alloc(dev_net(dev), dev, rt->dst.flags);
1084 rcu_read_unlock();
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001085 if (!pcpu_rt)
1086 return NULL;
1087 ip6_rt_copy_init(pcpu_rt, rt);
1088 pcpu_rt->rt6i_protocol = rt->rt6i_protocol;
1089 pcpu_rt->rt6i_flags |= RTF_PCPU;
1090 return pcpu_rt;
1091}
1092
1093/* It should be called with read_lock_bh(&tb6_lock) acquired */
1094static struct rt6_info *rt6_get_pcpu_route(struct rt6_info *rt)
1095{
Martin KaFai Laua73e4192015-08-14 11:05:53 -07001096 struct rt6_info *pcpu_rt, **p;
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001097
1098 p = this_cpu_ptr(rt->rt6i_pcpu);
1099 pcpu_rt = *p;
1100
Wei Wangd3843fe2017-10-06 12:06:06 -07001101 if (pcpu_rt && ip6_hold_safe(NULL, &pcpu_rt, false))
Martin KaFai Laua73e4192015-08-14 11:05:53 -07001102 rt6_dst_from_metrics_check(pcpu_rt);
Wei Wangd3843fe2017-10-06 12:06:06 -07001103
Martin KaFai Laua73e4192015-08-14 11:05:53 -07001104 return pcpu_rt;
1105}
1106
1107static struct rt6_info *rt6_make_pcpu_route(struct rt6_info *rt)
1108{
1109 struct rt6_info *pcpu_rt, *prev, **p;
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001110
1111 pcpu_rt = ip6_rt_pcpu_alloc(rt);
1112 if (!pcpu_rt) {
1113 struct net *net = dev_net(rt->dst.dev);
1114
Martin KaFai Lau9c7370a2015-08-14 11:05:54 -07001115 dst_hold(&net->ipv6.ip6_null_entry->dst);
1116 return net->ipv6.ip6_null_entry;
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001117 }
1118
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001119 dst_hold(&pcpu_rt->dst);
Wei Wanga94b9362017-10-06 12:06:04 -07001120 p = this_cpu_ptr(rt->rt6i_pcpu);
1121 prev = cmpxchg(p, NULL, pcpu_rt);
1122 if (prev) {
1123 /* If someone did it before us, return prev instead */
1124 /* release refcnt taken by ip6_rt_pcpu_alloc() */
1125 dst_release_immediate(&pcpu_rt->dst);
1126 /* release refcnt taken by above dst_hold() */
1127 dst_release_immediate(&pcpu_rt->dst);
1128 dst_hold(&prev->dst);
1129 pcpu_rt = prev;
1130 }
1131
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001132 rt6_dst_from_metrics_check(pcpu_rt);
1133 return pcpu_rt;
1134}
1135
Wei Wang35732d02017-10-06 12:05:57 -07001136/* exception hash table implementation
1137 */
1138static DEFINE_SPINLOCK(rt6_exception_lock);
1139
1140/* Remove rt6_ex from hash table and free the memory
1141 * Caller must hold rt6_exception_lock
1142 */
1143static void rt6_remove_exception(struct rt6_exception_bucket *bucket,
1144 struct rt6_exception *rt6_ex)
1145{
1146 if (!bucket || !rt6_ex)
1147 return;
1148 rt6_ex->rt6i->rt6i_node = NULL;
1149 hlist_del_rcu(&rt6_ex->hlist);
1150 rt6_release(rt6_ex->rt6i);
1151 kfree_rcu(rt6_ex, rcu);
1152 WARN_ON_ONCE(!bucket->depth);
1153 bucket->depth--;
1154}
1155
1156/* Remove oldest rt6_ex in bucket and free the memory
1157 * Caller must hold rt6_exception_lock
1158 */
1159static void rt6_exception_remove_oldest(struct rt6_exception_bucket *bucket)
1160{
1161 struct rt6_exception *rt6_ex, *oldest = NULL;
1162
1163 if (!bucket)
1164 return;
1165
1166 hlist_for_each_entry(rt6_ex, &bucket->chain, hlist) {
1167 if (!oldest || time_before(rt6_ex->stamp, oldest->stamp))
1168 oldest = rt6_ex;
1169 }
1170 rt6_remove_exception(bucket, oldest);
1171}
1172
1173static u32 rt6_exception_hash(const struct in6_addr *dst,
1174 const struct in6_addr *src)
1175{
1176 static u32 seed __read_mostly;
1177 u32 val;
1178
1179 net_get_random_once(&seed, sizeof(seed));
1180 val = jhash(dst, sizeof(*dst), seed);
1181
1182#ifdef CONFIG_IPV6_SUBTREES
1183 if (src)
1184 val = jhash(src, sizeof(*src), val);
1185#endif
1186 return hash_32(val, FIB6_EXCEPTION_BUCKET_SIZE_SHIFT);
1187}
1188
1189/* Helper function to find the cached rt in the hash table
1190 * and update bucket pointer to point to the bucket for this
1191 * (daddr, saddr) pair
1192 * Caller must hold rt6_exception_lock
1193 */
1194static struct rt6_exception *
1195__rt6_find_exception_spinlock(struct rt6_exception_bucket **bucket,
1196 const struct in6_addr *daddr,
1197 const struct in6_addr *saddr)
1198{
1199 struct rt6_exception *rt6_ex;
1200 u32 hval;
1201
1202 if (!(*bucket) || !daddr)
1203 return NULL;
1204
1205 hval = rt6_exception_hash(daddr, saddr);
1206 *bucket += hval;
1207
1208 hlist_for_each_entry(rt6_ex, &(*bucket)->chain, hlist) {
1209 struct rt6_info *rt6 = rt6_ex->rt6i;
1210 bool matched = ipv6_addr_equal(daddr, &rt6->rt6i_dst.addr);
1211
1212#ifdef CONFIG_IPV6_SUBTREES
1213 if (matched && saddr)
1214 matched = ipv6_addr_equal(saddr, &rt6->rt6i_src.addr);
1215#endif
1216 if (matched)
1217 return rt6_ex;
1218 }
1219 return NULL;
1220}
1221
1222/* Helper function to find the cached rt in the hash table
1223 * and update bucket pointer to point to the bucket for this
1224 * (daddr, saddr) pair
1225 * Caller must hold rcu_read_lock()
1226 */
1227static struct rt6_exception *
1228__rt6_find_exception_rcu(struct rt6_exception_bucket **bucket,
1229 const struct in6_addr *daddr,
1230 const struct in6_addr *saddr)
1231{
1232 struct rt6_exception *rt6_ex;
1233 u32 hval;
1234
1235 WARN_ON_ONCE(!rcu_read_lock_held());
1236
1237 if (!(*bucket) || !daddr)
1238 return NULL;
1239
1240 hval = rt6_exception_hash(daddr, saddr);
1241 *bucket += hval;
1242
1243 hlist_for_each_entry_rcu(rt6_ex, &(*bucket)->chain, hlist) {
1244 struct rt6_info *rt6 = rt6_ex->rt6i;
1245 bool matched = ipv6_addr_equal(daddr, &rt6->rt6i_dst.addr);
1246
1247#ifdef CONFIG_IPV6_SUBTREES
1248 if (matched && saddr)
1249 matched = ipv6_addr_equal(saddr, &rt6->rt6i_src.addr);
1250#endif
1251 if (matched)
1252 return rt6_ex;
1253 }
1254 return NULL;
1255}
1256
1257static int rt6_insert_exception(struct rt6_info *nrt,
1258 struct rt6_info *ort)
1259{
1260 struct rt6_exception_bucket *bucket;
1261 struct in6_addr *src_key = NULL;
1262 struct rt6_exception *rt6_ex;
1263 int err = 0;
1264
1265 /* ort can't be a cache or pcpu route */
1266 if (ort->rt6i_flags & (RTF_CACHE | RTF_PCPU))
1267 ort = (struct rt6_info *)ort->dst.from;
1268 WARN_ON_ONCE(ort->rt6i_flags & (RTF_CACHE | RTF_PCPU));
1269
1270 spin_lock_bh(&rt6_exception_lock);
1271
1272 if (ort->exception_bucket_flushed) {
1273 err = -EINVAL;
1274 goto out;
1275 }
1276
1277 bucket = rcu_dereference_protected(ort->rt6i_exception_bucket,
1278 lockdep_is_held(&rt6_exception_lock));
1279 if (!bucket) {
1280 bucket = kcalloc(FIB6_EXCEPTION_BUCKET_SIZE, sizeof(*bucket),
1281 GFP_ATOMIC);
1282 if (!bucket) {
1283 err = -ENOMEM;
1284 goto out;
1285 }
1286 rcu_assign_pointer(ort->rt6i_exception_bucket, bucket);
1287 }
1288
1289#ifdef CONFIG_IPV6_SUBTREES
1290 /* rt6i_src.plen != 0 indicates ort is in subtree
1291 * and exception table is indexed by a hash of
1292 * both rt6i_dst and rt6i_src.
1293 * Otherwise, the exception table is indexed by
1294 * a hash of only rt6i_dst.
1295 */
1296 if (ort->rt6i_src.plen)
1297 src_key = &nrt->rt6i_src.addr;
1298#endif
Wei Wang60006a42017-10-06 12:05:58 -07001299
1300 /* Update rt6i_prefsrc as it could be changed
1301 * in rt6_remove_prefsrc()
1302 */
1303 nrt->rt6i_prefsrc = ort->rt6i_prefsrc;
Wei Wangf5bbe7e2017-10-06 12:05:59 -07001304 /* rt6_mtu_change() might lower mtu on ort.
1305 * Only insert this exception route if its mtu
1306 * is less than ort's mtu value.
1307 */
1308 if (nrt->rt6i_pmtu >= dst_mtu(&ort->dst)) {
1309 err = -EINVAL;
1310 goto out;
1311 }
Wei Wang60006a42017-10-06 12:05:58 -07001312
Wei Wang35732d02017-10-06 12:05:57 -07001313 rt6_ex = __rt6_find_exception_spinlock(&bucket, &nrt->rt6i_dst.addr,
1314 src_key);
1315 if (rt6_ex)
1316 rt6_remove_exception(bucket, rt6_ex);
1317
1318 rt6_ex = kzalloc(sizeof(*rt6_ex), GFP_ATOMIC);
1319 if (!rt6_ex) {
1320 err = -ENOMEM;
1321 goto out;
1322 }
1323 rt6_ex->rt6i = nrt;
1324 rt6_ex->stamp = jiffies;
1325 atomic_inc(&nrt->rt6i_ref);
1326 nrt->rt6i_node = ort->rt6i_node;
1327 hlist_add_head_rcu(&rt6_ex->hlist, &bucket->chain);
1328 bucket->depth++;
1329
1330 if (bucket->depth > FIB6_MAX_DEPTH)
1331 rt6_exception_remove_oldest(bucket);
1332
1333out:
1334 spin_unlock_bh(&rt6_exception_lock);
1335
1336 /* Update fn->fn_sernum to invalidate all cached dst */
1337 if (!err)
1338 fib6_update_sernum(ort);
1339
1340 return err;
1341}
1342
1343void rt6_flush_exceptions(struct rt6_info *rt)
1344{
1345 struct rt6_exception_bucket *bucket;
1346 struct rt6_exception *rt6_ex;
1347 struct hlist_node *tmp;
1348 int i;
1349
1350 spin_lock_bh(&rt6_exception_lock);
1351 /* Prevent rt6_insert_exception() to recreate the bucket list */
1352 rt->exception_bucket_flushed = 1;
1353
1354 bucket = rcu_dereference_protected(rt->rt6i_exception_bucket,
1355 lockdep_is_held(&rt6_exception_lock));
1356 if (!bucket)
1357 goto out;
1358
1359 for (i = 0; i < FIB6_EXCEPTION_BUCKET_SIZE; i++) {
1360 hlist_for_each_entry_safe(rt6_ex, tmp, &bucket->chain, hlist)
1361 rt6_remove_exception(bucket, rt6_ex);
1362 WARN_ON_ONCE(bucket->depth);
1363 bucket++;
1364 }
1365
1366out:
1367 spin_unlock_bh(&rt6_exception_lock);
1368}
1369
1370/* Find cached rt in the hash table inside passed in rt
1371 * Caller has to hold rcu_read_lock()
1372 */
1373static struct rt6_info *rt6_find_cached_rt(struct rt6_info *rt,
1374 struct in6_addr *daddr,
1375 struct in6_addr *saddr)
1376{
1377 struct rt6_exception_bucket *bucket;
1378 struct in6_addr *src_key = NULL;
1379 struct rt6_exception *rt6_ex;
1380 struct rt6_info *res = NULL;
1381
1382 bucket = rcu_dereference(rt->rt6i_exception_bucket);
1383
1384#ifdef CONFIG_IPV6_SUBTREES
1385 /* rt6i_src.plen != 0 indicates rt is in subtree
1386 * and exception table is indexed by a hash of
1387 * both rt6i_dst and rt6i_src.
1388 * Otherwise, the exception table is indexed by
1389 * a hash of only rt6i_dst.
1390 */
1391 if (rt->rt6i_src.plen)
1392 src_key = saddr;
1393#endif
1394 rt6_ex = __rt6_find_exception_rcu(&bucket, daddr, src_key);
1395
1396 if (rt6_ex && !rt6_check_expired(rt6_ex->rt6i))
1397 res = rt6_ex->rt6i;
1398
1399 return res;
1400}
1401
1402/* Remove the passed in cached rt from the hash table that contains it */
1403int rt6_remove_exception_rt(struct rt6_info *rt)
1404{
1405 struct rt6_info *from = (struct rt6_info *)rt->dst.from;
1406 struct rt6_exception_bucket *bucket;
1407 struct in6_addr *src_key = NULL;
1408 struct rt6_exception *rt6_ex;
1409 int err;
1410
1411 if (!from ||
1412 !(rt->rt6i_flags | RTF_CACHE))
1413 return -EINVAL;
1414
1415 if (!rcu_access_pointer(from->rt6i_exception_bucket))
1416 return -ENOENT;
1417
1418 spin_lock_bh(&rt6_exception_lock);
1419 bucket = rcu_dereference_protected(from->rt6i_exception_bucket,
1420 lockdep_is_held(&rt6_exception_lock));
1421#ifdef CONFIG_IPV6_SUBTREES
1422 /* rt6i_src.plen != 0 indicates 'from' is in subtree
1423 * and exception table is indexed by a hash of
1424 * both rt6i_dst and rt6i_src.
1425 * Otherwise, the exception table is indexed by
1426 * a hash of only rt6i_dst.
1427 */
1428 if (from->rt6i_src.plen)
1429 src_key = &rt->rt6i_src.addr;
1430#endif
1431 rt6_ex = __rt6_find_exception_spinlock(&bucket,
1432 &rt->rt6i_dst.addr,
1433 src_key);
1434 if (rt6_ex) {
1435 rt6_remove_exception(bucket, rt6_ex);
1436 err = 0;
1437 } else {
1438 err = -ENOENT;
1439 }
1440
1441 spin_unlock_bh(&rt6_exception_lock);
1442 return err;
1443}
1444
1445/* Find rt6_ex which contains the passed in rt cache and
1446 * refresh its stamp
1447 */
1448static void rt6_update_exception_stamp_rt(struct rt6_info *rt)
1449{
1450 struct rt6_info *from = (struct rt6_info *)rt->dst.from;
1451 struct rt6_exception_bucket *bucket;
1452 struct in6_addr *src_key = NULL;
1453 struct rt6_exception *rt6_ex;
1454
1455 if (!from ||
1456 !(rt->rt6i_flags | RTF_CACHE))
1457 return;
1458
1459 rcu_read_lock();
1460 bucket = rcu_dereference(from->rt6i_exception_bucket);
1461
1462#ifdef CONFIG_IPV6_SUBTREES
1463 /* rt6i_src.plen != 0 indicates 'from' is in subtree
1464 * and exception table is indexed by a hash of
1465 * both rt6i_dst and rt6i_src.
1466 * Otherwise, the exception table is indexed by
1467 * a hash of only rt6i_dst.
1468 */
1469 if (from->rt6i_src.plen)
1470 src_key = &rt->rt6i_src.addr;
1471#endif
1472 rt6_ex = __rt6_find_exception_rcu(&bucket,
1473 &rt->rt6i_dst.addr,
1474 src_key);
1475 if (rt6_ex)
1476 rt6_ex->stamp = jiffies;
1477
1478 rcu_read_unlock();
1479}
1480
Wei Wang60006a42017-10-06 12:05:58 -07001481static void rt6_exceptions_remove_prefsrc(struct rt6_info *rt)
1482{
1483 struct rt6_exception_bucket *bucket;
1484 struct rt6_exception *rt6_ex;
1485 int i;
1486
1487 bucket = rcu_dereference_protected(rt->rt6i_exception_bucket,
1488 lockdep_is_held(&rt6_exception_lock));
1489
1490 if (bucket) {
1491 for (i = 0; i < FIB6_EXCEPTION_BUCKET_SIZE; i++) {
1492 hlist_for_each_entry(rt6_ex, &bucket->chain, hlist) {
1493 rt6_ex->rt6i->rt6i_prefsrc.plen = 0;
1494 }
1495 bucket++;
1496 }
1497 }
1498}
1499
Wei Wangf5bbe7e2017-10-06 12:05:59 -07001500static void rt6_exceptions_update_pmtu(struct rt6_info *rt, int mtu)
1501{
1502 struct rt6_exception_bucket *bucket;
1503 struct rt6_exception *rt6_ex;
1504 int i;
1505
1506 bucket = rcu_dereference_protected(rt->rt6i_exception_bucket,
1507 lockdep_is_held(&rt6_exception_lock));
1508
1509 if (bucket) {
1510 for (i = 0; i < FIB6_EXCEPTION_BUCKET_SIZE; i++) {
1511 hlist_for_each_entry(rt6_ex, &bucket->chain, hlist) {
1512 struct rt6_info *entry = rt6_ex->rt6i;
1513 /* For RTF_CACHE with rt6i_pmtu == 0
1514 * (i.e. a redirected route),
1515 * the metrics of its rt->dst.from has already
1516 * been updated.
1517 */
1518 if (entry->rt6i_pmtu && entry->rt6i_pmtu > mtu)
1519 entry->rt6i_pmtu = mtu;
1520 }
1521 bucket++;
1522 }
1523 }
1524}
1525
Wei Wangb16cb452017-10-06 12:06:00 -07001526#define RTF_CACHE_GATEWAY (RTF_GATEWAY | RTF_CACHE)
1527
1528static void rt6_exceptions_clean_tohost(struct rt6_info *rt,
1529 struct in6_addr *gateway)
1530{
1531 struct rt6_exception_bucket *bucket;
1532 struct rt6_exception *rt6_ex;
1533 struct hlist_node *tmp;
1534 int i;
1535
1536 if (!rcu_access_pointer(rt->rt6i_exception_bucket))
1537 return;
1538
1539 spin_lock_bh(&rt6_exception_lock);
1540 bucket = rcu_dereference_protected(rt->rt6i_exception_bucket,
1541 lockdep_is_held(&rt6_exception_lock));
1542
1543 if (bucket) {
1544 for (i = 0; i < FIB6_EXCEPTION_BUCKET_SIZE; i++) {
1545 hlist_for_each_entry_safe(rt6_ex, tmp,
1546 &bucket->chain, hlist) {
1547 struct rt6_info *entry = rt6_ex->rt6i;
1548
1549 if ((entry->rt6i_flags & RTF_CACHE_GATEWAY) ==
1550 RTF_CACHE_GATEWAY &&
1551 ipv6_addr_equal(gateway,
1552 &entry->rt6i_gateway)) {
1553 rt6_remove_exception(bucket, rt6_ex);
1554 }
1555 }
1556 bucket++;
1557 }
1558 }
1559
1560 spin_unlock_bh(&rt6_exception_lock);
1561}
1562
Wei Wangc757faa2017-10-06 12:06:01 -07001563static void rt6_age_examine_exception(struct rt6_exception_bucket *bucket,
1564 struct rt6_exception *rt6_ex,
1565 struct fib6_gc_args *gc_args,
1566 unsigned long now)
1567{
1568 struct rt6_info *rt = rt6_ex->rt6i;
1569
1570 if (atomic_read(&rt->dst.__refcnt) == 1 &&
1571 time_after_eq(now, rt->dst.lastuse + gc_args->timeout)) {
1572 RT6_TRACE("aging clone %p\n", rt);
1573 rt6_remove_exception(bucket, rt6_ex);
1574 return;
1575 } else if (rt->rt6i_flags & RTF_GATEWAY) {
1576 struct neighbour *neigh;
1577 __u8 neigh_flags = 0;
1578
1579 neigh = dst_neigh_lookup(&rt->dst, &rt->rt6i_gateway);
1580 if (neigh) {
1581 neigh_flags = neigh->flags;
1582 neigh_release(neigh);
1583 }
1584 if (!(neigh_flags & NTF_ROUTER)) {
1585 RT6_TRACE("purging route %p via non-router but gateway\n",
1586 rt);
1587 rt6_remove_exception(bucket, rt6_ex);
1588 return;
1589 }
1590 }
1591 gc_args->more++;
1592}
1593
1594void rt6_age_exceptions(struct rt6_info *rt,
1595 struct fib6_gc_args *gc_args,
1596 unsigned long now)
1597{
1598 struct rt6_exception_bucket *bucket;
1599 struct rt6_exception *rt6_ex;
1600 struct hlist_node *tmp;
1601 int i;
1602
1603 if (!rcu_access_pointer(rt->rt6i_exception_bucket))
1604 return;
1605
1606 spin_lock_bh(&rt6_exception_lock);
1607 bucket = rcu_dereference_protected(rt->rt6i_exception_bucket,
1608 lockdep_is_held(&rt6_exception_lock));
1609
1610 if (bucket) {
1611 for (i = 0; i < FIB6_EXCEPTION_BUCKET_SIZE; i++) {
1612 hlist_for_each_entry_safe(rt6_ex, tmp,
1613 &bucket->chain, hlist) {
1614 rt6_age_examine_exception(bucket, rt6_ex,
1615 gc_args, now);
1616 }
1617 bucket++;
1618 }
1619 }
1620 spin_unlock_bh(&rt6_exception_lock);
1621}
1622
David Ahern9ff74382016-06-13 13:44:19 -07001623struct rt6_info *ip6_pol_route(struct net *net, struct fib6_table *table,
1624 int oif, struct flowi6 *fl6, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625{
Martin KaFai Lau367efcb2014-10-20 13:42:45 -07001626 struct fib6_node *fn, *saved_fn;
Wei Wang2b760fc2017-10-06 12:06:03 -07001627 struct rt6_info *rt, *rt_cache;
Thomas Grafc71099a2006-08-04 23:20:06 -07001628 int strict = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629
YOSHIFUJI Hideaki77d16f42006-08-23 17:25:05 -07001630 strict |= flags & RT6_LOOKUP_F_IFACE;
David Ahernd5d32e42016-10-24 12:27:23 -07001631 strict |= flags & RT6_LOOKUP_F_IGNORE_LINKSTATE;
Martin KaFai Lau367efcb2014-10-20 13:42:45 -07001632 if (net->ipv6.devconf_all->forwarding == 0)
1633 strict |= RT6_LOOKUP_F_REACHABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634
Thomas Grafc71099a2006-08-04 23:20:06 -07001635 read_lock_bh(&table->tb6_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636
David S. Miller4c9483b2011-03-12 16:22:43 -05001637 fn = fib6_lookup(&table->tb6_root, &fl6->daddr, &fl6->saddr);
Martin KaFai Lau367efcb2014-10-20 13:42:45 -07001638 saved_fn = fn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639
David Ahernca254492015-10-12 11:47:10 -07001640 if (fl6->flowi6_flags & FLOWI_FLAG_SKIP_NH_OIF)
1641 oif = 0;
1642
Martin KaFai Laua3c00e42014-10-20 13:42:43 -07001643redo_rt6_select:
Wei Wang8d1040e2017-10-06 12:06:08 -07001644 rt = rt6_select(net, fn, oif, strict);
Nicolas Dichtel52bd4c02013-06-28 17:35:48 +02001645 if (rt->rt6i_nsiblings)
Martin KaFai Lau367efcb2014-10-20 13:42:45 -07001646 rt = rt6_multipath_select(rt, fl6, oif, strict);
Martin KaFai Laua3c00e42014-10-20 13:42:43 -07001647 if (rt == net->ipv6.ip6_null_entry) {
1648 fn = fib6_backtrack(fn, &fl6->saddr);
1649 if (fn)
1650 goto redo_rt6_select;
Martin KaFai Lau367efcb2014-10-20 13:42:45 -07001651 else if (strict & RT6_LOOKUP_F_REACHABLE) {
1652 /* also consider unreachable route */
1653 strict &= ~RT6_LOOKUP_F_REACHABLE;
1654 fn = saved_fn;
1655 goto redo_rt6_select;
Martin KaFai Lau367efcb2014-10-20 13:42:45 -07001656 }
Martin KaFai Laua3c00e42014-10-20 13:42:43 -07001657 }
1658
Wei Wang2b760fc2017-10-06 12:06:03 -07001659 /*Search through exception table */
1660 rt_cache = rt6_find_cached_rt(rt, &fl6->daddr, &fl6->saddr);
1661 if (rt_cache)
1662 rt = rt_cache;
YOSHIFUJI Hideakifb9de912006-03-20 16:59:08 -08001663
Wei Wangd3843fe2017-10-06 12:06:06 -07001664 if (rt == net->ipv6.ip6_null_entry) {
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001665 read_unlock_bh(&table->tb6_lock);
Wei Wangd3843fe2017-10-06 12:06:06 -07001666 dst_hold(&rt->dst);
1667 trace_fib6_table_lookup(net, rt, table->tb6_id, fl6);
1668 return rt;
1669 } else if (rt->rt6i_flags & RTF_CACHE) {
1670 if (ip6_hold_safe(net, &rt, true)) {
1671 dst_use_noref(&rt->dst, jiffies);
1672 rt6_dst_from_metrics_check(rt);
1673 }
1674 read_unlock_bh(&table->tb6_lock);
David Ahernb8115802015-11-19 12:24:22 -08001675 trace_fib6_table_lookup(net, rt, table->tb6_id, fl6);
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001676 return rt;
Martin KaFai Lau3da59bd2015-05-22 20:56:03 -07001677 } else if (unlikely((fl6->flowi6_flags & FLOWI_FLAG_KNOWN_NH) &&
1678 !(rt->rt6i_flags & RTF_GATEWAY))) {
1679 /* Create a RTF_CACHE clone which will not be
1680 * owned by the fib6 tree. It is for the special case where
1681 * the daddr in the skb during the neighbor look-up is different
1682 * from the fl6->daddr used to look-up route here.
1683 */
Thomas Grafc71099a2006-08-04 23:20:06 -07001684
Martin KaFai Lau3da59bd2015-05-22 20:56:03 -07001685 struct rt6_info *uncached_rt;
1686
Wei Wangd3843fe2017-10-06 12:06:06 -07001687 if (ip6_hold_safe(net, &rt, true)) {
1688 dst_use_noref(&rt->dst, jiffies);
1689 } else {
1690 read_unlock_bh(&table->tb6_lock);
1691 uncached_rt = rt;
1692 goto uncached_rt_out;
1693 }
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001694 read_unlock_bh(&table->tb6_lock);
1695
Martin KaFai Lau3da59bd2015-05-22 20:56:03 -07001696 uncached_rt = ip6_rt_cache_alloc(rt, &fl6->daddr, NULL);
1697 dst_release(&rt->dst);
1698
Wei Wang1cfb71e2017-06-17 10:42:33 -07001699 if (uncached_rt) {
1700 /* Uncached_rt's refcnt is taken during ip6_rt_cache_alloc()
1701 * No need for another dst_hold()
1702 */
Martin KaFai Lau8d0b94a2015-05-22 20:56:04 -07001703 rt6_uncached_list_add(uncached_rt);
Wei Wang1cfb71e2017-06-17 10:42:33 -07001704 } else {
Martin KaFai Lau3da59bd2015-05-22 20:56:03 -07001705 uncached_rt = net->ipv6.ip6_null_entry;
Wei Wang1cfb71e2017-06-17 10:42:33 -07001706 dst_hold(&uncached_rt->dst);
1707 }
David Ahernb8115802015-11-19 12:24:22 -08001708
Wei Wangd3843fe2017-10-06 12:06:06 -07001709uncached_rt_out:
David Ahernb8115802015-11-19 12:24:22 -08001710 trace_fib6_table_lookup(net, uncached_rt, table->tb6_id, fl6);
Martin KaFai Lau3da59bd2015-05-22 20:56:03 -07001711 return uncached_rt;
Martin KaFai Lau3da59bd2015-05-22 20:56:03 -07001712
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001713 } else {
1714 /* Get a percpu copy */
1715
1716 struct rt6_info *pcpu_rt;
1717
Wei Wangd3843fe2017-10-06 12:06:06 -07001718 dst_use_noref(&rt->dst, jiffies);
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001719 pcpu_rt = rt6_get_pcpu_route(rt);
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001720
Martin KaFai Lau9c7370a2015-08-14 11:05:54 -07001721 if (pcpu_rt) {
1722 read_unlock_bh(&table->tb6_lock);
1723 } else {
Wei Wanga94b9362017-10-06 12:06:04 -07001724 /* atomic_inc_not_zero() is needed when using rcu */
1725 if (atomic_inc_not_zero(&rt->rt6i_ref)) {
1726 /* We have to do the read_unlock first
1727 * because rt6_make_pcpu_route() may trigger
1728 * ip6_dst_gc() which will take the write_lock.
1729 *
1730 * No dst_hold() on rt is needed because grabbing
1731 * rt->rt6i_ref makes sure rt can't be released.
1732 */
1733 read_unlock_bh(&table->tb6_lock);
1734 pcpu_rt = rt6_make_pcpu_route(rt);
1735 rt6_release(rt);
1736 } else {
1737 /* rt is already removed from tree */
1738 read_unlock_bh(&table->tb6_lock);
1739 pcpu_rt = net->ipv6.ip6_null_entry;
1740 dst_hold(&pcpu_rt->dst);
1741 }
Martin KaFai Lau9c7370a2015-08-14 11:05:54 -07001742 }
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001743
David Ahernb8115802015-11-19 12:24:22 -08001744 trace_fib6_table_lookup(net, pcpu_rt, table->tb6_id, fl6);
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001745 return pcpu_rt;
1746 }
Thomas Grafc71099a2006-08-04 23:20:06 -07001747}
David Ahern9ff74382016-06-13 13:44:19 -07001748EXPORT_SYMBOL_GPL(ip6_pol_route);
Thomas Grafc71099a2006-08-04 23:20:06 -07001749
Daniel Lezcano8ed67782008-03-04 13:48:30 -08001750static struct rt6_info *ip6_pol_route_input(struct net *net, struct fib6_table *table,
David S. Miller4c9483b2011-03-12 16:22:43 -05001751 struct flowi6 *fl6, int flags)
Pavel Emelyanov4acad722007-10-15 13:02:51 -07001752{
David S. Miller4c9483b2011-03-12 16:22:43 -05001753 return ip6_pol_route(net, table, fl6->flowi6_iif, fl6, flags);
Pavel Emelyanov4acad722007-10-15 13:02:51 -07001754}
1755
Mahesh Bandeward409b842016-09-16 12:59:08 -07001756struct dst_entry *ip6_route_input_lookup(struct net *net,
1757 struct net_device *dev,
1758 struct flowi6 *fl6, int flags)
Shmulik Ladkani72331bc2012-04-01 04:03:45 +00001759{
1760 if (rt6_need_strict(&fl6->daddr) && dev->type != ARPHRD_PIMREG)
1761 flags |= RT6_LOOKUP_F_IFACE;
1762
1763 return fib6_rule_lookup(net, fl6, flags, ip6_pol_route_input);
1764}
Mahesh Bandeward409b842016-09-16 12:59:08 -07001765EXPORT_SYMBOL_GPL(ip6_route_input_lookup);
Shmulik Ladkani72331bc2012-04-01 04:03:45 +00001766
Jakub Sitnicki23aebda2017-08-23 09:58:29 +02001767static void ip6_multipath_l3_keys(const struct sk_buff *skb,
1768 struct flow_keys *keys)
1769{
1770 const struct ipv6hdr *outer_iph = ipv6_hdr(skb);
1771 const struct ipv6hdr *key_iph = outer_iph;
1772 const struct ipv6hdr *inner_iph;
1773 const struct icmp6hdr *icmph;
1774 struct ipv6hdr _inner_iph;
1775
1776 if (likely(outer_iph->nexthdr != IPPROTO_ICMPV6))
1777 goto out;
1778
1779 icmph = icmp6_hdr(skb);
1780 if (icmph->icmp6_type != ICMPV6_DEST_UNREACH &&
1781 icmph->icmp6_type != ICMPV6_PKT_TOOBIG &&
1782 icmph->icmp6_type != ICMPV6_TIME_EXCEED &&
1783 icmph->icmp6_type != ICMPV6_PARAMPROB)
1784 goto out;
1785
1786 inner_iph = skb_header_pointer(skb,
1787 skb_transport_offset(skb) + sizeof(*icmph),
1788 sizeof(_inner_iph), &_inner_iph);
1789 if (!inner_iph)
1790 goto out;
1791
1792 key_iph = inner_iph;
1793out:
1794 memset(keys, 0, sizeof(*keys));
1795 keys->control.addr_type = FLOW_DISSECTOR_KEY_IPV6_ADDRS;
1796 keys->addrs.v6addrs.src = key_iph->saddr;
1797 keys->addrs.v6addrs.dst = key_iph->daddr;
1798 keys->tags.flow_label = ip6_flowinfo(key_iph);
1799 keys->basic.ip_proto = key_iph->nexthdr;
1800}
1801
1802/* if skb is set it will be used and fl6 can be NULL */
1803u32 rt6_multipath_hash(const struct flowi6 *fl6, const struct sk_buff *skb)
1804{
1805 struct flow_keys hash_keys;
1806
1807 if (skb) {
1808 ip6_multipath_l3_keys(skb, &hash_keys);
1809 return flow_hash_from_keys(&hash_keys);
1810 }
1811
1812 return get_hash_from_flowi6(fl6);
1813}
1814
Thomas Grafc71099a2006-08-04 23:20:06 -07001815void ip6_route_input(struct sk_buff *skb)
1816{
Eric Dumazetb71d1d42011-04-22 04:53:02 +00001817 const struct ipv6hdr *iph = ipv6_hdr(skb);
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001818 struct net *net = dev_net(skb->dev);
Thomas Grafadaa70b2006-10-13 15:01:03 -07001819 int flags = RT6_LOOKUP_F_HAS_SADDR;
Jiri Benc904af042015-08-20 13:56:31 +02001820 struct ip_tunnel_info *tun_info;
David S. Miller4c9483b2011-03-12 16:22:43 -05001821 struct flowi6 fl6 = {
David Aherne0d56fd2016-09-10 12:09:57 -07001822 .flowi6_iif = skb->dev->ifindex,
David S. Miller4c9483b2011-03-12 16:22:43 -05001823 .daddr = iph->daddr,
1824 .saddr = iph->saddr,
YOSHIFUJI Hideaki / 吉藤英明6502ca52013-01-13 05:01:51 +00001825 .flowlabel = ip6_flowinfo(iph),
David S. Miller4c9483b2011-03-12 16:22:43 -05001826 .flowi6_mark = skb->mark,
1827 .flowi6_proto = iph->nexthdr,
Thomas Grafc71099a2006-08-04 23:20:06 -07001828 };
Thomas Grafadaa70b2006-10-13 15:01:03 -07001829
Jiri Benc904af042015-08-20 13:56:31 +02001830 tun_info = skb_tunnel_info(skb);
Jiri Benc46fa0622015-08-28 20:48:19 +02001831 if (tun_info && !(tun_info->mode & IP_TUNNEL_INFO_TX))
Jiri Benc904af042015-08-20 13:56:31 +02001832 fl6.flowi6_tun_key.tun_id = tun_info->key.tun_id;
Jakub Sitnicki23aebda2017-08-23 09:58:29 +02001833 if (unlikely(fl6.flowi6_proto == IPPROTO_ICMPV6))
1834 fl6.mp_hash = rt6_multipath_hash(&fl6, skb);
Jiri Benc06e9d042015-08-20 13:56:26 +02001835 skb_dst_drop(skb);
Shmulik Ladkani72331bc2012-04-01 04:03:45 +00001836 skb_dst_set(skb, ip6_route_input_lookup(net, skb->dev, &fl6, flags));
Thomas Grafc71099a2006-08-04 23:20:06 -07001837}
1838
Daniel Lezcano8ed67782008-03-04 13:48:30 -08001839static struct rt6_info *ip6_pol_route_output(struct net *net, struct fib6_table *table,
David S. Miller4c9483b2011-03-12 16:22:43 -05001840 struct flowi6 *fl6, int flags)
Thomas Grafc71099a2006-08-04 23:20:06 -07001841{
David S. Miller4c9483b2011-03-12 16:22:43 -05001842 return ip6_pol_route(net, table, fl6->flowi6_oif, fl6, flags);
Thomas Grafc71099a2006-08-04 23:20:06 -07001843}
1844
Paolo Abeni6f21c962016-01-29 12:30:19 +01001845struct dst_entry *ip6_route_output_flags(struct net *net, const struct sock *sk,
1846 struct flowi6 *fl6, int flags)
Thomas Grafc71099a2006-08-04 23:20:06 -07001847{
David Ahernd46a9d62015-10-21 08:42:22 -07001848 bool any_src;
Thomas Grafc71099a2006-08-04 23:20:06 -07001849
David Ahern4c1feac2016-09-10 12:09:56 -07001850 if (rt6_need_strict(&fl6->daddr)) {
1851 struct dst_entry *dst;
1852
1853 dst = l3mdev_link_scope_lookup(net, fl6);
1854 if (dst)
1855 return dst;
1856 }
David Ahernca254492015-10-12 11:47:10 -07001857
Pavel Emelyanov1fb94892012-08-08 21:53:36 +00001858 fl6->flowi6_iif = LOOPBACK_IFINDEX;
David McCullough4dc27d1c2012-06-25 15:42:26 +00001859
David Ahernd46a9d62015-10-21 08:42:22 -07001860 any_src = ipv6_addr_any(&fl6->saddr);
David Ahern741a11d2015-09-28 10:12:13 -07001861 if ((sk && sk->sk_bound_dev_if) || rt6_need_strict(&fl6->daddr) ||
David Ahernd46a9d62015-10-21 08:42:22 -07001862 (fl6->flowi6_oif && any_src))
YOSHIFUJI Hideaki77d16f42006-08-23 17:25:05 -07001863 flags |= RT6_LOOKUP_F_IFACE;
Thomas Grafc71099a2006-08-04 23:20:06 -07001864
David Ahernd46a9d62015-10-21 08:42:22 -07001865 if (!any_src)
Thomas Grafadaa70b2006-10-13 15:01:03 -07001866 flags |= RT6_LOOKUP_F_HAS_SADDR;
YOSHIFUJI Hideaki / 吉藤英明0c9a2ac2010-03-07 00:14:44 +00001867 else if (sk)
1868 flags |= rt6_srcprefs2flags(inet6_sk(sk)->srcprefs);
Thomas Grafadaa70b2006-10-13 15:01:03 -07001869
David S. Miller4c9483b2011-03-12 16:22:43 -05001870 return fib6_rule_lookup(net, fl6, flags, ip6_pol_route_output);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871}
Paolo Abeni6f21c962016-01-29 12:30:19 +01001872EXPORT_SYMBOL_GPL(ip6_route_output_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001873
David S. Miller2774c132011-03-01 14:59:04 -08001874struct dst_entry *ip6_blackhole_route(struct net *net, struct dst_entry *dst_orig)
David S. Miller14e50e52007-05-24 18:17:54 -07001875{
David S. Miller5c1e6aa2011-04-28 14:13:38 -07001876 struct rt6_info *rt, *ort = (struct rt6_info *) dst_orig;
Wei Wang1dbe32522017-06-17 10:42:26 -07001877 struct net_device *loopback_dev = net->loopback_dev;
David S. Miller14e50e52007-05-24 18:17:54 -07001878 struct dst_entry *new = NULL;
1879
Wei Wang1dbe32522017-06-17 10:42:26 -07001880 rt = dst_alloc(&ip6_dst_blackhole_ops, loopback_dev, 1,
Wei Wangb2a9c0e2017-06-17 10:42:41 -07001881 DST_OBSOLETE_NONE, 0);
David S. Miller14e50e52007-05-24 18:17:54 -07001882 if (rt) {
Martin KaFai Lau0a1f5962015-10-15 16:39:58 -07001883 rt6_info_init(rt);
1884
Changli Gaod8d1f302010-06-10 23:31:35 -07001885 new = &rt->dst;
David S. Miller14e50e52007-05-24 18:17:54 -07001886 new->__use = 1;
Herbert Xu352e5122007-11-13 21:34:06 -08001887 new->input = dst_discard;
Eric W. Biedermanede20592015-10-07 16:48:47 -05001888 new->output = dst_discard_out;
David S. Miller14e50e52007-05-24 18:17:54 -07001889
Martin KaFai Lau0a1f5962015-10-15 16:39:58 -07001890 dst_copy_metrics(new, &ort->dst);
David S. Miller14e50e52007-05-24 18:17:54 -07001891
Wei Wang1dbe32522017-06-17 10:42:26 -07001892 rt->rt6i_idev = in6_dev_get(loopback_dev);
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001893 rt->rt6i_gateway = ort->rt6i_gateway;
Martin KaFai Lau0a1f5962015-10-15 16:39:58 -07001894 rt->rt6i_flags = ort->rt6i_flags & ~RTF_PCPU;
David S. Miller14e50e52007-05-24 18:17:54 -07001895 rt->rt6i_metric = 0;
1896
1897 memcpy(&rt->rt6i_dst, &ort->rt6i_dst, sizeof(struct rt6key));
1898#ifdef CONFIG_IPV6_SUBTREES
1899 memcpy(&rt->rt6i_src, &ort->rt6i_src, sizeof(struct rt6key));
1900#endif
David S. Miller14e50e52007-05-24 18:17:54 -07001901 }
1902
David S. Miller69ead7a2011-03-01 14:45:33 -08001903 dst_release(dst_orig);
1904 return new ? new : ERR_PTR(-ENOMEM);
David S. Miller14e50e52007-05-24 18:17:54 -07001905}
David S. Miller14e50e52007-05-24 18:17:54 -07001906
Linus Torvalds1da177e2005-04-16 15:20:36 -07001907/*
1908 * Destination cache support functions
1909 */
1910
Martin KaFai Lau4b32b5a2015-04-28 13:03:06 -07001911static void rt6_dst_from_metrics_check(struct rt6_info *rt)
1912{
1913 if (rt->dst.from &&
1914 dst_metrics_ptr(&rt->dst) != dst_metrics_ptr(rt->dst.from))
1915 dst_init_metrics(&rt->dst, dst_metrics_ptr(rt->dst.from), true);
1916}
1917
Martin KaFai Lau3da59bd2015-05-22 20:56:03 -07001918static struct dst_entry *rt6_check(struct rt6_info *rt, u32 cookie)
1919{
Steffen Klassert36143642017-08-25 09:05:42 +02001920 u32 rt_cookie = 0;
Wei Wangc5cff852017-08-21 09:47:10 -07001921
1922 if (!rt6_get_cookie_safe(rt, &rt_cookie) || rt_cookie != cookie)
Martin KaFai Lau3da59bd2015-05-22 20:56:03 -07001923 return NULL;
1924
1925 if (rt6_check_expired(rt))
1926 return NULL;
1927
1928 return &rt->dst;
1929}
1930
1931static struct dst_entry *rt6_dst_from_check(struct rt6_info *rt, u32 cookie)
1932{
Martin KaFai Lau5973fb12015-11-11 11:51:07 -08001933 if (!__rt6_check_expired(rt) &&
1934 rt->dst.obsolete == DST_OBSOLETE_FORCE_CHK &&
Martin KaFai Lau3da59bd2015-05-22 20:56:03 -07001935 rt6_check((struct rt6_info *)(rt->dst.from), cookie))
1936 return &rt->dst;
1937 else
1938 return NULL;
1939}
1940
Linus Torvalds1da177e2005-04-16 15:20:36 -07001941static struct dst_entry *ip6_dst_check(struct dst_entry *dst, u32 cookie)
1942{
1943 struct rt6_info *rt;
1944
1945 rt = (struct rt6_info *) dst;
1946
Nicolas Dichtel6f3118b2012-09-10 22:09:46 +00001947 /* All IPV6 dsts are created with ->obsolete set to the value
1948 * DST_OBSOLETE_FORCE_CHK which forces validation calls down
1949 * into this function always.
1950 */
Hannes Frederic Sowae3bc10b2013-10-24 07:48:24 +02001951
Martin KaFai Lau4b32b5a2015-04-28 13:03:06 -07001952 rt6_dst_from_metrics_check(rt);
1953
Martin KaFai Lau02bcf4e2015-11-11 11:51:08 -08001954 if (rt->rt6i_flags & RTF_PCPU ||
Wei Wanga4c2fd72017-06-17 10:42:42 -07001955 (unlikely(!list_empty(&rt->rt6i_uncached)) && rt->dst.from))
Martin KaFai Lau3da59bd2015-05-22 20:56:03 -07001956 return rt6_dst_from_check(rt, cookie);
1957 else
1958 return rt6_check(rt, cookie);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001959}
1960
1961static struct dst_entry *ip6_negative_advice(struct dst_entry *dst)
1962{
1963 struct rt6_info *rt = (struct rt6_info *) dst;
1964
1965 if (rt) {
YOSHIFUJI Hideaki / 吉藤英明54c1a852010-03-28 07:15:45 +00001966 if (rt->rt6i_flags & RTF_CACHE) {
1967 if (rt6_check_expired(rt)) {
1968 ip6_del_rt(rt);
1969 dst = NULL;
1970 }
1971 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972 dst_release(dst);
YOSHIFUJI Hideaki / 吉藤英明54c1a852010-03-28 07:15:45 +00001973 dst = NULL;
1974 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001975 }
YOSHIFUJI Hideaki / 吉藤英明54c1a852010-03-28 07:15:45 +00001976 return dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001977}
1978
1979static void ip6_link_failure(struct sk_buff *skb)
1980{
1981 struct rt6_info *rt;
1982
Alexey Dobriyan3ffe5332010-02-18 08:25:24 +00001983 icmpv6_send(skb, ICMPV6_DEST_UNREACH, ICMPV6_ADDR_UNREACH, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001984
Eric Dumazetadf30902009-06-02 05:19:30 +00001985 rt = (struct rt6_info *) skb_dst(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986 if (rt) {
Hannes Frederic Sowa1eb4f752013-07-10 23:00:57 +02001987 if (rt->rt6i_flags & RTF_CACHE) {
Wei Wangad65a2f2017-06-17 10:42:35 -07001988 if (dst_hold_safe(&rt->dst))
1989 ip6_del_rt(rt);
Wei Wangc5cff852017-08-21 09:47:10 -07001990 } else {
1991 struct fib6_node *fn;
1992
1993 rcu_read_lock();
1994 fn = rcu_dereference(rt->rt6i_node);
1995 if (fn && (rt->rt6i_flags & RTF_DEFAULT))
1996 fn->fn_sernum = -1;
1997 rcu_read_unlock();
Hannes Frederic Sowa1eb4f752013-07-10 23:00:57 +02001998 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001999 }
2000}
2001
Martin KaFai Lau45e4fd22015-05-22 20:56:00 -07002002static void rt6_do_update_pmtu(struct rt6_info *rt, u32 mtu)
2003{
2004 struct net *net = dev_net(rt->dst.dev);
2005
2006 rt->rt6i_flags |= RTF_MODIFIED;
2007 rt->rt6i_pmtu = mtu;
2008 rt6_update_expires(rt, net->ipv6.sysctl.ip6_rt_mtu_expires);
2009}
2010
Martin KaFai Lau0d3f6d22015-11-11 11:51:06 -08002011static bool rt6_cache_allowed_for_pmtu(const struct rt6_info *rt)
2012{
2013 return !(rt->rt6i_flags & RTF_CACHE) &&
Wei Wang4e587ea2017-08-25 15:03:10 -07002014 (rt->rt6i_flags & RTF_PCPU ||
2015 rcu_access_pointer(rt->rt6i_node));
Martin KaFai Lau0d3f6d22015-11-11 11:51:06 -08002016}
2017
Martin KaFai Lau45e4fd22015-05-22 20:56:00 -07002018static void __ip6_rt_update_pmtu(struct dst_entry *dst, const struct sock *sk,
2019 const struct ipv6hdr *iph, u32 mtu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002020{
Julian Anastasov0dec8792017-02-06 23:14:16 +02002021 const struct in6_addr *daddr, *saddr;
Ian Morris67ba4152014-08-24 21:53:10 +01002022 struct rt6_info *rt6 = (struct rt6_info *)dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002023
Martin KaFai Lau45e4fd22015-05-22 20:56:00 -07002024 if (rt6->rt6i_flags & RTF_LOCAL)
2025 return;
2026
Xin Long19bda362016-10-28 18:18:01 +08002027 if (dst_metric_locked(dst, RTAX_MTU))
2028 return;
2029
Julian Anastasov0dec8792017-02-06 23:14:16 +02002030 if (iph) {
2031 daddr = &iph->daddr;
2032 saddr = &iph->saddr;
2033 } else if (sk) {
2034 daddr = &sk->sk_v6_daddr;
2035 saddr = &inet6_sk(sk)->saddr;
2036 } else {
2037 daddr = NULL;
2038 saddr = NULL;
2039 }
2040 dst_confirm_neigh(dst, daddr);
Martin KaFai Lau45e4fd22015-05-22 20:56:00 -07002041 mtu = max_t(u32, mtu, IPV6_MIN_MTU);
2042 if (mtu >= dst_mtu(dst))
2043 return;
David S. Miller81aded22012-06-15 14:54:11 -07002044
Martin KaFai Lau0d3f6d22015-11-11 11:51:06 -08002045 if (!rt6_cache_allowed_for_pmtu(rt6)) {
Martin KaFai Lau45e4fd22015-05-22 20:56:00 -07002046 rt6_do_update_pmtu(rt6, mtu);
Wei Wang2b760fc2017-10-06 12:06:03 -07002047 /* update rt6_ex->stamp for cache */
2048 if (rt6->rt6i_flags & RTF_CACHE)
2049 rt6_update_exception_stamp_rt(rt6);
Julian Anastasov0dec8792017-02-06 23:14:16 +02002050 } else if (daddr) {
Martin KaFai Lau45e4fd22015-05-22 20:56:00 -07002051 struct rt6_info *nrt6;
Hagen Paul Pfeifer9d289712015-01-15 22:34:25 +01002052
Martin KaFai Lau45e4fd22015-05-22 20:56:00 -07002053 nrt6 = ip6_rt_cache_alloc(rt6, daddr, saddr);
2054 if (nrt6) {
2055 rt6_do_update_pmtu(nrt6, mtu);
Wei Wang2b760fc2017-10-06 12:06:03 -07002056 if (rt6_insert_exception(nrt6, rt6))
2057 dst_release_immediate(&nrt6->dst);
Martin KaFai Lau45e4fd22015-05-22 20:56:00 -07002058 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059 }
2060}
2061
Martin KaFai Lau45e4fd22015-05-22 20:56:00 -07002062static void ip6_rt_update_pmtu(struct dst_entry *dst, struct sock *sk,
2063 struct sk_buff *skb, u32 mtu)
2064{
2065 __ip6_rt_update_pmtu(dst, sk, skb ? ipv6_hdr(skb) : NULL, mtu);
2066}
2067
David S. Miller42ae66c2012-06-15 20:01:57 -07002068void ip6_update_pmtu(struct sk_buff *skb, struct net *net, __be32 mtu,
Lorenzo Colittie2d118a2016-11-04 02:23:43 +09002069 int oif, u32 mark, kuid_t uid)
David S. Miller81aded22012-06-15 14:54:11 -07002070{
2071 const struct ipv6hdr *iph = (struct ipv6hdr *) skb->data;
2072 struct dst_entry *dst;
2073 struct flowi6 fl6;
2074
2075 memset(&fl6, 0, sizeof(fl6));
2076 fl6.flowi6_oif = oif;
Lorenzo Colitti1b3c61d2014-05-13 10:17:34 -07002077 fl6.flowi6_mark = mark ? mark : IP6_REPLY_MARK(net, skb->mark);
David S. Miller81aded22012-06-15 14:54:11 -07002078 fl6.daddr = iph->daddr;
2079 fl6.saddr = iph->saddr;
YOSHIFUJI Hideaki / 吉藤英明6502ca52013-01-13 05:01:51 +00002080 fl6.flowlabel = ip6_flowinfo(iph);
Lorenzo Colittie2d118a2016-11-04 02:23:43 +09002081 fl6.flowi6_uid = uid;
David S. Miller81aded22012-06-15 14:54:11 -07002082
2083 dst = ip6_route_output(net, NULL, &fl6);
2084 if (!dst->error)
Martin KaFai Lau45e4fd22015-05-22 20:56:00 -07002085 __ip6_rt_update_pmtu(dst, NULL, iph, ntohl(mtu));
David S. Miller81aded22012-06-15 14:54:11 -07002086 dst_release(dst);
2087}
2088EXPORT_SYMBOL_GPL(ip6_update_pmtu);
2089
2090void ip6_sk_update_pmtu(struct sk_buff *skb, struct sock *sk, __be32 mtu)
2091{
Martin KaFai Lau33c162a2016-04-11 15:29:36 -07002092 struct dst_entry *dst;
2093
David S. Miller81aded22012-06-15 14:54:11 -07002094 ip6_update_pmtu(skb, sock_net(sk), mtu,
Lorenzo Colittie2d118a2016-11-04 02:23:43 +09002095 sk->sk_bound_dev_if, sk->sk_mark, sk->sk_uid);
Martin KaFai Lau33c162a2016-04-11 15:29:36 -07002096
2097 dst = __sk_dst_get(sk);
2098 if (!dst || !dst->obsolete ||
2099 dst->ops->check(dst, inet6_sk(sk)->dst_cookie))
2100 return;
2101
2102 bh_lock_sock(sk);
2103 if (!sock_owned_by_user(sk) && !ipv6_addr_v4mapped(&sk->sk_v6_daddr))
2104 ip6_datagram_dst_update(sk, false);
2105 bh_unlock_sock(sk);
David S. Miller81aded22012-06-15 14:54:11 -07002106}
2107EXPORT_SYMBOL_GPL(ip6_sk_update_pmtu);
2108
Duan Jiongb55b76b2013-09-04 19:44:21 +08002109/* Handle redirects */
2110struct ip6rd_flowi {
2111 struct flowi6 fl6;
2112 struct in6_addr gateway;
2113};
2114
2115static struct rt6_info *__ip6_route_redirect(struct net *net,
2116 struct fib6_table *table,
2117 struct flowi6 *fl6,
2118 int flags)
2119{
2120 struct ip6rd_flowi *rdfl = (struct ip6rd_flowi *)fl6;
Wei Wang2b760fc2017-10-06 12:06:03 -07002121 struct rt6_info *rt, *rt_cache;
Duan Jiongb55b76b2013-09-04 19:44:21 +08002122 struct fib6_node *fn;
2123
2124 /* Get the "current" route for this destination and
Alexander Alemayhu67c408c2017-01-07 23:53:00 +01002125 * check if the redirect has come from appropriate router.
Duan Jiongb55b76b2013-09-04 19:44:21 +08002126 *
2127 * RFC 4861 specifies that redirects should only be
2128 * accepted if they come from the nexthop to the target.
2129 * Due to the way the routes are chosen, this notion
2130 * is a bit fuzzy and one might need to check all possible
2131 * routes.
2132 */
2133
2134 read_lock_bh(&table->tb6_lock);
2135 fn = fib6_lookup(&table->tb6_root, &fl6->daddr, &fl6->saddr);
2136restart:
2137 for (rt = fn->leaf; rt; rt = rt->dst.rt6_next) {
2138 if (rt6_check_expired(rt))
2139 continue;
2140 if (rt->dst.error)
2141 break;
2142 if (!(rt->rt6i_flags & RTF_GATEWAY))
2143 continue;
2144 if (fl6->flowi6_oif != rt->dst.dev->ifindex)
2145 continue;
Wei Wang2b760fc2017-10-06 12:06:03 -07002146 /* rt_cache's gateway might be different from its 'parent'
2147 * in the case of an ip redirect.
2148 * So we keep searching in the exception table if the gateway
2149 * is different.
2150 */
2151 if (!ipv6_addr_equal(&rdfl->gateway, &rt->rt6i_gateway)) {
2152 rt_cache = rt6_find_cached_rt(rt,
2153 &fl6->daddr,
2154 &fl6->saddr);
2155 if (rt_cache &&
2156 ipv6_addr_equal(&rdfl->gateway,
2157 &rt_cache->rt6i_gateway)) {
2158 rt = rt_cache;
2159 break;
2160 }
Duan Jiongb55b76b2013-09-04 19:44:21 +08002161 continue;
Wei Wang2b760fc2017-10-06 12:06:03 -07002162 }
Duan Jiongb55b76b2013-09-04 19:44:21 +08002163 break;
2164 }
2165
2166 if (!rt)
2167 rt = net->ipv6.ip6_null_entry;
2168 else if (rt->dst.error) {
2169 rt = net->ipv6.ip6_null_entry;
Martin KaFai Laub0a1ba52015-01-20 19:16:02 -08002170 goto out;
2171 }
2172
2173 if (rt == net->ipv6.ip6_null_entry) {
Martin KaFai Laua3c00e42014-10-20 13:42:43 -07002174 fn = fib6_backtrack(fn, &fl6->saddr);
2175 if (fn)
2176 goto restart;
Duan Jiongb55b76b2013-09-04 19:44:21 +08002177 }
Martin KaFai Laua3c00e42014-10-20 13:42:43 -07002178
Martin KaFai Laub0a1ba52015-01-20 19:16:02 -08002179out:
Wei Wangd3843fe2017-10-06 12:06:06 -07002180 ip6_hold_safe(net, &rt, true);
Duan Jiongb55b76b2013-09-04 19:44:21 +08002181
2182 read_unlock_bh(&table->tb6_lock);
2183
David Ahernb8115802015-11-19 12:24:22 -08002184 trace_fib6_table_lookup(net, rt, table->tb6_id, fl6);
Duan Jiongb55b76b2013-09-04 19:44:21 +08002185 return rt;
2186};
2187
2188static struct dst_entry *ip6_route_redirect(struct net *net,
2189 const struct flowi6 *fl6,
2190 const struct in6_addr *gateway)
2191{
2192 int flags = RT6_LOOKUP_F_HAS_SADDR;
2193 struct ip6rd_flowi rdfl;
2194
2195 rdfl.fl6 = *fl6;
2196 rdfl.gateway = *gateway;
2197
2198 return fib6_rule_lookup(net, &rdfl.fl6,
2199 flags, __ip6_route_redirect);
2200}
2201
Lorenzo Colittie2d118a2016-11-04 02:23:43 +09002202void ip6_redirect(struct sk_buff *skb, struct net *net, int oif, u32 mark,
2203 kuid_t uid)
David S. Miller3a5ad2e2012-07-12 00:08:07 -07002204{
2205 const struct ipv6hdr *iph = (struct ipv6hdr *) skb->data;
2206 struct dst_entry *dst;
2207 struct flowi6 fl6;
2208
2209 memset(&fl6, 0, sizeof(fl6));
Julian Anastasove374c612014-04-28 10:51:56 +03002210 fl6.flowi6_iif = LOOPBACK_IFINDEX;
David S. Miller3a5ad2e2012-07-12 00:08:07 -07002211 fl6.flowi6_oif = oif;
2212 fl6.flowi6_mark = mark;
David S. Miller3a5ad2e2012-07-12 00:08:07 -07002213 fl6.daddr = iph->daddr;
2214 fl6.saddr = iph->saddr;
YOSHIFUJI Hideaki / 吉藤英明6502ca52013-01-13 05:01:51 +00002215 fl6.flowlabel = ip6_flowinfo(iph);
Lorenzo Colittie2d118a2016-11-04 02:23:43 +09002216 fl6.flowi6_uid = uid;
David S. Miller3a5ad2e2012-07-12 00:08:07 -07002217
Duan Jiongb55b76b2013-09-04 19:44:21 +08002218 dst = ip6_route_redirect(net, &fl6, &ipv6_hdr(skb)->saddr);
2219 rt6_do_redirect(dst, NULL, skb);
David S. Miller3a5ad2e2012-07-12 00:08:07 -07002220 dst_release(dst);
2221}
2222EXPORT_SYMBOL_GPL(ip6_redirect);
2223
Duan Jiongc92a59e2013-08-22 12:07:35 +08002224void ip6_redirect_no_header(struct sk_buff *skb, struct net *net, int oif,
2225 u32 mark)
2226{
2227 const struct ipv6hdr *iph = ipv6_hdr(skb);
2228 const struct rd_msg *msg = (struct rd_msg *)icmp6_hdr(skb);
2229 struct dst_entry *dst;
2230 struct flowi6 fl6;
2231
2232 memset(&fl6, 0, sizeof(fl6));
Julian Anastasove374c612014-04-28 10:51:56 +03002233 fl6.flowi6_iif = LOOPBACK_IFINDEX;
Duan Jiongc92a59e2013-08-22 12:07:35 +08002234 fl6.flowi6_oif = oif;
2235 fl6.flowi6_mark = mark;
Duan Jiongc92a59e2013-08-22 12:07:35 +08002236 fl6.daddr = msg->dest;
2237 fl6.saddr = iph->daddr;
Lorenzo Colittie2d118a2016-11-04 02:23:43 +09002238 fl6.flowi6_uid = sock_net_uid(net, NULL);
Duan Jiongc92a59e2013-08-22 12:07:35 +08002239
Duan Jiongb55b76b2013-09-04 19:44:21 +08002240 dst = ip6_route_redirect(net, &fl6, &iph->saddr);
2241 rt6_do_redirect(dst, NULL, skb);
Duan Jiongc92a59e2013-08-22 12:07:35 +08002242 dst_release(dst);
2243}
2244
David S. Miller3a5ad2e2012-07-12 00:08:07 -07002245void ip6_sk_redirect(struct sk_buff *skb, struct sock *sk)
2246{
Lorenzo Colittie2d118a2016-11-04 02:23:43 +09002247 ip6_redirect(skb, sock_net(sk), sk->sk_bound_dev_if, sk->sk_mark,
2248 sk->sk_uid);
David S. Miller3a5ad2e2012-07-12 00:08:07 -07002249}
2250EXPORT_SYMBOL_GPL(ip6_sk_redirect);
2251
David S. Miller0dbaee32010-12-13 12:52:14 -08002252static unsigned int ip6_default_advmss(const struct dst_entry *dst)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002253{
David S. Miller0dbaee32010-12-13 12:52:14 -08002254 struct net_device *dev = dst->dev;
2255 unsigned int mtu = dst_mtu(dst);
2256 struct net *net = dev_net(dev);
2257
Linus Torvalds1da177e2005-04-16 15:20:36 -07002258 mtu -= sizeof(struct ipv6hdr) + sizeof(struct tcphdr);
2259
Daniel Lezcano55786892008-03-04 13:47:47 -08002260 if (mtu < net->ipv6.sysctl.ip6_rt_min_advmss)
2261 mtu = net->ipv6.sysctl.ip6_rt_min_advmss;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002262
2263 /*
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002264 * Maximal non-jumbo IPv6 payload is IPV6_MAXPLEN and
2265 * corresponding MSS is IPV6_MAXPLEN - tcp_header_size.
2266 * IPV6_MAXPLEN is also valid and means: "any MSS,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002267 * rely only on pmtu discovery"
2268 */
2269 if (mtu > IPV6_MAXPLEN - sizeof(struct tcphdr))
2270 mtu = IPV6_MAXPLEN;
2271 return mtu;
2272}
2273
Steffen Klassertebb762f2011-11-23 02:12:51 +00002274static unsigned int ip6_mtu(const struct dst_entry *dst)
David S. Millerd33e4552010-12-14 13:01:14 -08002275{
Martin KaFai Lau4b32b5a2015-04-28 13:03:06 -07002276 const struct rt6_info *rt = (const struct rt6_info *)dst;
2277 unsigned int mtu = rt->rt6i_pmtu;
David S. Millerd33e4552010-12-14 13:01:14 -08002278 struct inet6_dev *idev;
Steffen Klassert618f9bc2011-11-23 02:13:31 +00002279
2280 if (mtu)
Eric Dumazet30f78d82014-04-10 21:23:36 -07002281 goto out;
Steffen Klassert618f9bc2011-11-23 02:13:31 +00002282
Martin KaFai Lau4b32b5a2015-04-28 13:03:06 -07002283 mtu = dst_metric_raw(dst, RTAX_MTU);
2284 if (mtu)
2285 goto out;
2286
Steffen Klassert618f9bc2011-11-23 02:13:31 +00002287 mtu = IPV6_MIN_MTU;
David S. Millerd33e4552010-12-14 13:01:14 -08002288
2289 rcu_read_lock();
2290 idev = __in6_dev_get(dst->dev);
2291 if (idev)
2292 mtu = idev->cnf.mtu6;
2293 rcu_read_unlock();
2294
Eric Dumazet30f78d82014-04-10 21:23:36 -07002295out:
Roopa Prabhu14972cb2016-08-24 20:10:43 -07002296 mtu = min_t(unsigned int, mtu, IP6_MAX_MTU);
2297
2298 return mtu - lwtunnel_headroom(dst->lwtstate, mtu);
David S. Millerd33e4552010-12-14 13:01:14 -08002299}
2300
YOSHIFUJI Hideaki3b009442007-12-06 16:11:48 -08002301struct dst_entry *icmp6_dst_alloc(struct net_device *dev,
David S. Miller87a11572011-12-06 17:04:13 -05002302 struct flowi6 *fl6)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002303{
David S. Miller87a11572011-12-06 17:04:13 -05002304 struct dst_entry *dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002305 struct rt6_info *rt;
2306 struct inet6_dev *idev = in6_dev_get(dev);
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09002307 struct net *net = dev_net(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002308
David S. Miller38308472011-12-03 18:02:47 -05002309 if (unlikely(!idev))
Eric Dumazet122bdf62012-03-14 21:13:11 +00002310 return ERR_PTR(-ENODEV);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002311
Martin KaFai Lauad706862015-08-14 11:05:52 -07002312 rt = ip6_dst_alloc(net, dev, 0);
David S. Miller38308472011-12-03 18:02:47 -05002313 if (unlikely(!rt)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002314 in6_dev_put(idev);
David S. Miller87a11572011-12-06 17:04:13 -05002315 dst = ERR_PTR(-ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002316 goto out;
2317 }
2318
Yan, Zheng8e2ec632011-09-05 21:34:30 +00002319 rt->dst.flags |= DST_HOST;
2320 rt->dst.output = ip6_output;
Julian Anastasov550bab42013-10-20 15:43:04 +03002321 rt->rt6i_gateway = fl6->daddr;
David S. Miller87a11572011-12-06 17:04:13 -05002322 rt->rt6i_dst.addr = fl6->daddr;
Yan, Zheng8e2ec632011-09-05 21:34:30 +00002323 rt->rt6i_dst.plen = 128;
2324 rt->rt6i_idev = idev;
Li RongQing14edd872012-10-24 14:01:18 +08002325 dst_metric_set(&rt->dst, RTAX_HOPLIMIT, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002326
Wei Wang587fea72017-06-17 10:42:36 -07002327 /* Add this dst into uncached_list so that rt6_ifdown() can
2328 * do proper release of the net_device
2329 */
2330 rt6_uncached_list_add(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002331
David S. Miller87a11572011-12-06 17:04:13 -05002332 dst = xfrm_lookup(net, &rt->dst, flowi6_to_flowi(fl6), NULL, 0);
2333
Linus Torvalds1da177e2005-04-16 15:20:36 -07002334out:
David S. Miller87a11572011-12-06 17:04:13 -05002335 return dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002336}
2337
Daniel Lezcano569d3642008-01-18 03:56:57 -08002338static int ip6_dst_gc(struct dst_ops *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002339{
Alexey Dobriyan86393e52009-08-29 01:34:49 +00002340 struct net *net = container_of(ops, struct net, ipv6.ip6_dst_ops);
Daniel Lezcano7019b782008-03-04 13:50:14 -08002341 int rt_min_interval = net->ipv6.sysctl.ip6_rt_gc_min_interval;
2342 int rt_max_size = net->ipv6.sysctl.ip6_rt_max_size;
2343 int rt_elasticity = net->ipv6.sysctl.ip6_rt_gc_elasticity;
2344 int rt_gc_timeout = net->ipv6.sysctl.ip6_rt_gc_timeout;
2345 unsigned long rt_last_gc = net->ipv6.ip6_rt_last_gc;
Eric Dumazetfc66f952010-10-08 06:37:34 +00002346 int entries;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002347
Eric Dumazetfc66f952010-10-08 06:37:34 +00002348 entries = dst_entries_get_fast(ops);
Michal Kubeček49a18d82013-08-01 10:04:24 +02002349 if (time_after(rt_last_gc + rt_min_interval, jiffies) &&
Eric Dumazetfc66f952010-10-08 06:37:34 +00002350 entries <= rt_max_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002351 goto out;
2352
Benjamin Thery6891a342008-03-04 13:49:47 -08002353 net->ipv6.ip6_rt_gc_expire++;
Li RongQing14956642014-05-19 17:30:28 +08002354 fib6_run_gc(net->ipv6.ip6_rt_gc_expire, net, true);
Eric Dumazetfc66f952010-10-08 06:37:34 +00002355 entries = dst_entries_get_slow(ops);
2356 if (entries < ops->gc_thresh)
Daniel Lezcano7019b782008-03-04 13:50:14 -08002357 net->ipv6.ip6_rt_gc_expire = rt_gc_timeout>>1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002358out:
Daniel Lezcano7019b782008-03-04 13:50:14 -08002359 net->ipv6.ip6_rt_gc_expire -= net->ipv6.ip6_rt_gc_expire>>rt_elasticity;
Eric Dumazetfc66f952010-10-08 06:37:34 +00002360 return entries > rt_max_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002361}
2362
Florian Westphale715b6d2015-01-05 23:57:44 +01002363static int ip6_convert_metrics(struct mx6_config *mxc,
2364 const struct fib6_config *cfg)
2365{
Daniel Borkmannc3a8d942015-08-31 15:58:47 +02002366 bool ecn_ca = false;
Florian Westphale715b6d2015-01-05 23:57:44 +01002367 struct nlattr *nla;
2368 int remaining;
2369 u32 *mp;
2370
Ian Morris63159f22015-03-29 14:00:04 +01002371 if (!cfg->fc_mx)
Florian Westphale715b6d2015-01-05 23:57:44 +01002372 return 0;
2373
2374 mp = kzalloc(sizeof(u32) * RTAX_MAX, GFP_KERNEL);
2375 if (unlikely(!mp))
2376 return -ENOMEM;
2377
2378 nla_for_each_attr(nla, cfg->fc_mx, cfg->fc_mx_len, remaining) {
2379 int type = nla_type(nla);
Daniel Borkmann1bb14802015-08-31 15:58:45 +02002380 u32 val;
Florian Westphale715b6d2015-01-05 23:57:44 +01002381
Daniel Borkmann1bb14802015-08-31 15:58:45 +02002382 if (!type)
2383 continue;
2384 if (unlikely(type > RTAX_MAX))
2385 goto err;
Daniel Borkmannea697632015-01-05 23:57:47 +01002386
Daniel Borkmann1bb14802015-08-31 15:58:45 +02002387 if (type == RTAX_CC_ALGO) {
2388 char tmp[TCP_CA_NAME_MAX];
2389
2390 nla_strlcpy(tmp, nla, sizeof(tmp));
Daniel Borkmannc3a8d942015-08-31 15:58:47 +02002391 val = tcp_ca_get_key_by_name(tmp, &ecn_ca);
Daniel Borkmann1bb14802015-08-31 15:58:45 +02002392 if (val == TCP_CA_UNSPEC)
Florian Westphale715b6d2015-01-05 23:57:44 +01002393 goto err;
Daniel Borkmann1bb14802015-08-31 15:58:45 +02002394 } else {
2395 val = nla_get_u32(nla);
Florian Westphale715b6d2015-01-05 23:57:44 +01002396 }
Paolo Abeni626abd52016-05-13 18:33:41 +02002397 if (type == RTAX_HOPLIMIT && val > 255)
2398 val = 255;
Daniel Borkmannb8d3e412015-08-31 15:58:46 +02002399 if (type == RTAX_FEATURES && (val & ~RTAX_FEATURE_MASK))
2400 goto err;
Daniel Borkmann1bb14802015-08-31 15:58:45 +02002401
2402 mp[type - 1] = val;
2403 __set_bit(type - 1, mxc->mx_valid);
Florian Westphale715b6d2015-01-05 23:57:44 +01002404 }
2405
Daniel Borkmannc3a8d942015-08-31 15:58:47 +02002406 if (ecn_ca) {
2407 __set_bit(RTAX_FEATURES - 1, mxc->mx_valid);
2408 mp[RTAX_FEATURES - 1] |= DST_FEATURE_ECN_CA;
2409 }
Florian Westphale715b6d2015-01-05 23:57:44 +01002410
Daniel Borkmannc3a8d942015-08-31 15:58:47 +02002411 mxc->mx = mp;
Florian Westphale715b6d2015-01-05 23:57:44 +01002412 return 0;
2413 err:
2414 kfree(mp);
2415 return -EINVAL;
2416}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002417
David Ahern8c145862016-04-24 21:26:04 -07002418static struct rt6_info *ip6_nh_lookup_table(struct net *net,
2419 struct fib6_config *cfg,
2420 const struct in6_addr *gw_addr)
2421{
2422 struct flowi6 fl6 = {
2423 .flowi6_oif = cfg->fc_ifindex,
2424 .daddr = *gw_addr,
2425 .saddr = cfg->fc_prefsrc,
2426 };
2427 struct fib6_table *table;
2428 struct rt6_info *rt;
David Ahernd5d32e42016-10-24 12:27:23 -07002429 int flags = RT6_LOOKUP_F_IFACE | RT6_LOOKUP_F_IGNORE_LINKSTATE;
David Ahern8c145862016-04-24 21:26:04 -07002430
2431 table = fib6_get_table(net, cfg->fc_table);
2432 if (!table)
2433 return NULL;
2434
2435 if (!ipv6_addr_any(&cfg->fc_prefsrc))
2436 flags |= RT6_LOOKUP_F_HAS_SADDR;
2437
2438 rt = ip6_pol_route(net, table, cfg->fc_ifindex, &fl6, flags);
2439
2440 /* if table lookup failed, fall back to full lookup */
2441 if (rt == net->ipv6.ip6_null_entry) {
2442 ip6_rt_put(rt);
2443 rt = NULL;
2444 }
2445
2446 return rt;
2447}
2448
David Ahern333c4302017-05-21 10:12:04 -06002449static struct rt6_info *ip6_route_info_create(struct fib6_config *cfg,
2450 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002451{
Daniel Lezcano55786892008-03-04 13:47:47 -08002452 struct net *net = cfg->fc_nlinfo.nl_net;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002453 struct rt6_info *rt = NULL;
2454 struct net_device *dev = NULL;
2455 struct inet6_dev *idev = NULL;
Thomas Grafc71099a2006-08-04 23:20:06 -07002456 struct fib6_table *table;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002457 int addr_type;
Roopa Prabhu8c5b83f2015-10-10 08:26:36 -07002458 int err = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002459
David Ahern557c44b2017-04-19 14:19:43 -07002460 /* RTF_PCPU is an internal flag; can not be set by userspace */
David Ahernd5d531c2017-05-21 10:12:05 -06002461 if (cfg->fc_flags & RTF_PCPU) {
2462 NL_SET_ERR_MSG(extack, "Userspace can not set RTF_PCPU");
David Ahern557c44b2017-04-19 14:19:43 -07002463 goto out;
David Ahernd5d531c2017-05-21 10:12:05 -06002464 }
David Ahern557c44b2017-04-19 14:19:43 -07002465
David Ahernd5d531c2017-05-21 10:12:05 -06002466 if (cfg->fc_dst_len > 128) {
2467 NL_SET_ERR_MSG(extack, "Invalid prefix length");
Roopa Prabhu8c5b83f2015-10-10 08:26:36 -07002468 goto out;
David Ahernd5d531c2017-05-21 10:12:05 -06002469 }
2470 if (cfg->fc_src_len > 128) {
2471 NL_SET_ERR_MSG(extack, "Invalid source address length");
2472 goto out;
2473 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002474#ifndef CONFIG_IPV6_SUBTREES
David Ahernd5d531c2017-05-21 10:12:05 -06002475 if (cfg->fc_src_len) {
2476 NL_SET_ERR_MSG(extack,
2477 "Specifying source address requires IPV6_SUBTREES to be enabled");
Roopa Prabhu8c5b83f2015-10-10 08:26:36 -07002478 goto out;
David Ahernd5d531c2017-05-21 10:12:05 -06002479 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002480#endif
Thomas Graf86872cb2006-08-22 00:01:08 -07002481 if (cfg->fc_ifindex) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002482 err = -ENODEV;
Daniel Lezcano55786892008-03-04 13:47:47 -08002483 dev = dev_get_by_index(net, cfg->fc_ifindex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002484 if (!dev)
2485 goto out;
2486 idev = in6_dev_get(dev);
2487 if (!idev)
2488 goto out;
2489 }
2490
Thomas Graf86872cb2006-08-22 00:01:08 -07002491 if (cfg->fc_metric == 0)
2492 cfg->fc_metric = IP6_RT_PRIO_USER;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002493
Matti Vaittinend71314b2011-11-14 00:14:49 +00002494 err = -ENOBUFS;
David S. Miller38308472011-12-03 18:02:47 -05002495 if (cfg->fc_nlinfo.nlh &&
2496 !(cfg->fc_nlinfo.nlh->nlmsg_flags & NLM_F_CREATE)) {
Matti Vaittinend71314b2011-11-14 00:14:49 +00002497 table = fib6_get_table(net, cfg->fc_table);
David S. Miller38308472011-12-03 18:02:47 -05002498 if (!table) {
Joe Perchesf3213832012-05-15 14:11:53 +00002499 pr_warn("NLM_F_CREATE should be specified when creating new route\n");
Matti Vaittinend71314b2011-11-14 00:14:49 +00002500 table = fib6_new_table(net, cfg->fc_table);
2501 }
2502 } else {
2503 table = fib6_new_table(net, cfg->fc_table);
2504 }
David S. Miller38308472011-12-03 18:02:47 -05002505
2506 if (!table)
Thomas Grafc71099a2006-08-04 23:20:06 -07002507 goto out;
Thomas Grafc71099a2006-08-04 23:20:06 -07002508
Martin KaFai Lauad706862015-08-14 11:05:52 -07002509 rt = ip6_dst_alloc(net, NULL,
2510 (cfg->fc_flags & RTF_ADDRCONF) ? 0 : DST_NOCOUNT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002511
David S. Miller38308472011-12-03 18:02:47 -05002512 if (!rt) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002513 err = -ENOMEM;
2514 goto out;
2515 }
2516
Gao feng1716a962012-04-06 00:13:10 +00002517 if (cfg->fc_flags & RTF_EXPIRES)
2518 rt6_set_expires(rt, jiffies +
2519 clock_t_to_jiffies(cfg->fc_expires));
2520 else
2521 rt6_clean_expires(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002522
Thomas Graf86872cb2006-08-22 00:01:08 -07002523 if (cfg->fc_protocol == RTPROT_UNSPEC)
2524 cfg->fc_protocol = RTPROT_BOOT;
2525 rt->rt6i_protocol = cfg->fc_protocol;
2526
2527 addr_type = ipv6_addr_type(&cfg->fc_dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002528
2529 if (addr_type & IPV6_ADDR_MULTICAST)
Changli Gaod8d1f302010-06-10 23:31:35 -07002530 rt->dst.input = ip6_mc_input;
Maciej Żenczykowskiab79ad12010-09-27 00:07:02 +00002531 else if (cfg->fc_flags & RTF_LOCAL)
2532 rt->dst.input = ip6_input;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002533 else
Changli Gaod8d1f302010-06-10 23:31:35 -07002534 rt->dst.input = ip6_forward;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002535
Changli Gaod8d1f302010-06-10 23:31:35 -07002536 rt->dst.output = ip6_output;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002537
Roopa Prabhu19e42e42015-07-21 10:43:48 +02002538 if (cfg->fc_encap) {
2539 struct lwtunnel_state *lwtstate;
2540
David Ahern30357d72017-01-30 12:07:37 -08002541 err = lwtunnel_build_state(cfg->fc_encap_type,
Tom Herbert127eb7c2015-08-24 09:45:41 -07002542 cfg->fc_encap, AF_INET6, cfg,
David Ahern9ae28722017-05-27 16:19:28 -06002543 &lwtstate, extack);
Roopa Prabhu19e42e42015-07-21 10:43:48 +02002544 if (err)
2545 goto out;
Jiri Benc61adedf2015-08-20 13:56:25 +02002546 rt->dst.lwtstate = lwtstate_get(lwtstate);
2547 if (lwtunnel_output_redirect(rt->dst.lwtstate)) {
2548 rt->dst.lwtstate->orig_output = rt->dst.output;
2549 rt->dst.output = lwtunnel_output;
Tom Herbert25368622015-08-17 13:42:24 -07002550 }
Jiri Benc61adedf2015-08-20 13:56:25 +02002551 if (lwtunnel_input_redirect(rt->dst.lwtstate)) {
2552 rt->dst.lwtstate->orig_input = rt->dst.input;
2553 rt->dst.input = lwtunnel_input;
Tom Herbert25368622015-08-17 13:42:24 -07002554 }
Roopa Prabhu19e42e42015-07-21 10:43:48 +02002555 }
2556
Thomas Graf86872cb2006-08-22 00:01:08 -07002557 ipv6_addr_prefix(&rt->rt6i_dst.addr, &cfg->fc_dst, cfg->fc_dst_len);
2558 rt->rt6i_dst.plen = cfg->fc_dst_len;
Martin KaFai Lauafc4eef2015-04-28 13:03:07 -07002559 if (rt->rt6i_dst.plen == 128)
Michal Kubečeke5fd3872014-03-27 13:04:08 +01002560 rt->dst.flags |= DST_HOST;
Michal Kubečeke5fd3872014-03-27 13:04:08 +01002561
Linus Torvalds1da177e2005-04-16 15:20:36 -07002562#ifdef CONFIG_IPV6_SUBTREES
Thomas Graf86872cb2006-08-22 00:01:08 -07002563 ipv6_addr_prefix(&rt->rt6i_src.addr, &cfg->fc_src, cfg->fc_src_len);
2564 rt->rt6i_src.plen = cfg->fc_src_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002565#endif
2566
Thomas Graf86872cb2006-08-22 00:01:08 -07002567 rt->rt6i_metric = cfg->fc_metric;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002568
2569 /* We cannot add true routes via loopback here,
2570 they would result in kernel looping; promote them to reject routes
2571 */
Thomas Graf86872cb2006-08-22 00:01:08 -07002572 if ((cfg->fc_flags & RTF_REJECT) ||
David S. Miller38308472011-12-03 18:02:47 -05002573 (dev && (dev->flags & IFF_LOOPBACK) &&
2574 !(addr_type & IPV6_ADDR_LOOPBACK) &&
2575 !(cfg->fc_flags & RTF_LOCAL))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002576 /* hold loopback dev/idev if we haven't done so. */
Daniel Lezcano55786892008-03-04 13:47:47 -08002577 if (dev != net->loopback_dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002578 if (dev) {
2579 dev_put(dev);
2580 in6_dev_put(idev);
2581 }
Daniel Lezcano55786892008-03-04 13:47:47 -08002582 dev = net->loopback_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002583 dev_hold(dev);
2584 idev = in6_dev_get(dev);
2585 if (!idev) {
2586 err = -ENODEV;
2587 goto out;
2588 }
2589 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002590 rt->rt6i_flags = RTF_REJECT|RTF_NONEXTHOP;
Nicolas Dichtelef2c7d72012-09-05 02:12:42 +00002591 switch (cfg->fc_type) {
2592 case RTN_BLACKHOLE:
2593 rt->dst.error = -EINVAL;
Eric W. Biedermanede20592015-10-07 16:48:47 -05002594 rt->dst.output = dst_discard_out;
Kamala R7150aed2013-12-02 19:55:21 +05302595 rt->dst.input = dst_discard;
Nicolas Dichtelef2c7d72012-09-05 02:12:42 +00002596 break;
2597 case RTN_PROHIBIT:
2598 rt->dst.error = -EACCES;
Kamala R7150aed2013-12-02 19:55:21 +05302599 rt->dst.output = ip6_pkt_prohibit_out;
2600 rt->dst.input = ip6_pkt_prohibit;
Nicolas Dichtelef2c7d72012-09-05 02:12:42 +00002601 break;
Nicolas Dichtelb4949ab2012-09-06 05:53:35 +00002602 case RTN_THROW:
Nikola Forró0315e382015-09-17 16:01:32 +02002603 case RTN_UNREACHABLE:
Nicolas Dichtelef2c7d72012-09-05 02:12:42 +00002604 default:
Kamala R7150aed2013-12-02 19:55:21 +05302605 rt->dst.error = (cfg->fc_type == RTN_THROW) ? -EAGAIN
Nikola Forró0315e382015-09-17 16:01:32 +02002606 : (cfg->fc_type == RTN_UNREACHABLE)
2607 ? -EHOSTUNREACH : -ENETUNREACH;
Kamala R7150aed2013-12-02 19:55:21 +05302608 rt->dst.output = ip6_pkt_discard_out;
2609 rt->dst.input = ip6_pkt_discard;
Nicolas Dichtelef2c7d72012-09-05 02:12:42 +00002610 break;
2611 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002612 goto install_route;
2613 }
2614
Thomas Graf86872cb2006-08-22 00:01:08 -07002615 if (cfg->fc_flags & RTF_GATEWAY) {
Eric Dumazetb71d1d42011-04-22 04:53:02 +00002616 const struct in6_addr *gw_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002617 int gwa_type;
2618
Thomas Graf86872cb2006-08-22 00:01:08 -07002619 gw_addr = &cfg->fc_gateway;
Florian Westphal330567b2015-08-07 10:54:28 +02002620 gwa_type = ipv6_addr_type(gw_addr);
Florian Westphal48ed7b22015-05-21 00:25:41 +02002621
2622 /* if gw_addr is local we will fail to detect this in case
2623 * address is still TENTATIVE (DAD in progress). rt6_lookup()
2624 * will return already-added prefix route via interface that
2625 * prefix route was assigned to, which might be non-loopback.
2626 */
2627 err = -EINVAL;
Florian Westphal330567b2015-08-07 10:54:28 +02002628 if (ipv6_chk_addr_and_flags(net, gw_addr,
2629 gwa_type & IPV6_ADDR_LINKLOCAL ?
David Ahernd5d531c2017-05-21 10:12:05 -06002630 dev : NULL, 0, 0)) {
2631 NL_SET_ERR_MSG(extack, "Invalid gateway address");
Florian Westphal48ed7b22015-05-21 00:25:41 +02002632 goto out;
David Ahernd5d531c2017-05-21 10:12:05 -06002633 }
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00002634 rt->rt6i_gateway = *gw_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002635
2636 if (gwa_type != (IPV6_ADDR_LINKLOCAL|IPV6_ADDR_UNICAST)) {
David Ahern8c145862016-04-24 21:26:04 -07002637 struct rt6_info *grt = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002638
2639 /* IPv6 strictly inhibits using not link-local
2640 addresses as nexthop address.
2641 Otherwise, router will not able to send redirects.
2642 It is very good, but in some (rare!) circumstances
2643 (SIT, PtP, NBMA NOARP links) it is handy to allow
2644 some exceptions. --ANK
Erik Nordmark96d58222016-12-03 20:57:09 -08002645 We allow IPv4-mapped nexthops to support RFC4798-type
2646 addressing
Linus Torvalds1da177e2005-04-16 15:20:36 -07002647 */
Erik Nordmark96d58222016-12-03 20:57:09 -08002648 if (!(gwa_type & (IPV6_ADDR_UNICAST |
David Ahernd5d531c2017-05-21 10:12:05 -06002649 IPV6_ADDR_MAPPED))) {
2650 NL_SET_ERR_MSG(extack,
2651 "Invalid gateway address");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002652 goto out;
David Ahernd5d531c2017-05-21 10:12:05 -06002653 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002654
Vincent Bernata435a072016-09-18 17:46:07 +02002655 if (cfg->fc_table) {
David Ahern8c145862016-04-24 21:26:04 -07002656 grt = ip6_nh_lookup_table(net, cfg, gw_addr);
2657
Vincent Bernata435a072016-09-18 17:46:07 +02002658 if (grt) {
2659 if (grt->rt6i_flags & RTF_GATEWAY ||
2660 (dev && dev != grt->dst.dev)) {
2661 ip6_rt_put(grt);
2662 grt = NULL;
2663 }
2664 }
2665 }
2666
David Ahern8c145862016-04-24 21:26:04 -07002667 if (!grt)
2668 grt = rt6_lookup(net, gw_addr, NULL,
2669 cfg->fc_ifindex, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002670
2671 err = -EHOSTUNREACH;
David S. Miller38308472011-12-03 18:02:47 -05002672 if (!grt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002673 goto out;
2674 if (dev) {
David S. Millerd1918542011-12-28 20:19:20 -05002675 if (dev != grt->dst.dev) {
Amerigo Wang94e187c2012-10-29 00:13:19 +00002676 ip6_rt_put(grt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002677 goto out;
2678 }
2679 } else {
David S. Millerd1918542011-12-28 20:19:20 -05002680 dev = grt->dst.dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002681 idev = grt->rt6i_idev;
2682 dev_hold(dev);
2683 in6_dev_hold(grt->rt6i_idev);
2684 }
David S. Miller38308472011-12-03 18:02:47 -05002685 if (!(grt->rt6i_flags & RTF_GATEWAY))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002686 err = 0;
Amerigo Wang94e187c2012-10-29 00:13:19 +00002687 ip6_rt_put(grt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002688
2689 if (err)
2690 goto out;
2691 }
2692 err = -EINVAL;
David Ahernd5d531c2017-05-21 10:12:05 -06002693 if (!dev) {
2694 NL_SET_ERR_MSG(extack, "Egress device not specified");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002695 goto out;
David Ahernd5d531c2017-05-21 10:12:05 -06002696 } else if (dev->flags & IFF_LOOPBACK) {
2697 NL_SET_ERR_MSG(extack,
2698 "Egress device can not be loopback device for this route");
2699 goto out;
2700 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002701 }
2702
2703 err = -ENODEV;
David S. Miller38308472011-12-03 18:02:47 -05002704 if (!dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002705 goto out;
2706
Daniel Walterc3968a82011-04-13 21:10:57 +00002707 if (!ipv6_addr_any(&cfg->fc_prefsrc)) {
2708 if (!ipv6_chk_addr(net, &cfg->fc_prefsrc, dev, 0)) {
David Ahernd5d531c2017-05-21 10:12:05 -06002709 NL_SET_ERR_MSG(extack, "Invalid source address");
Daniel Walterc3968a82011-04-13 21:10:57 +00002710 err = -EINVAL;
2711 goto out;
2712 }
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00002713 rt->rt6i_prefsrc.addr = cfg->fc_prefsrc;
Daniel Walterc3968a82011-04-13 21:10:57 +00002714 rt->rt6i_prefsrc.plen = 128;
2715 } else
2716 rt->rt6i_prefsrc.plen = 0;
2717
Thomas Graf86872cb2006-08-22 00:01:08 -07002718 rt->rt6i_flags = cfg->fc_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002719
2720install_route:
Changli Gaod8d1f302010-06-10 23:31:35 -07002721 rt->dst.dev = dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002722 rt->rt6i_idev = idev;
Thomas Grafc71099a2006-08-04 23:20:06 -07002723 rt->rt6i_table = table;
Daniel Lezcano63152fc2008-03-03 23:31:11 -08002724
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09002725 cfg->fc_nlinfo.nl_net = dev_net(dev);
Daniel Lezcano63152fc2008-03-03 23:31:11 -08002726
Roopa Prabhu8c5b83f2015-10-10 08:26:36 -07002727 return rt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002728out:
2729 if (dev)
2730 dev_put(dev);
2731 if (idev)
2732 in6_dev_put(idev);
Wei Wang587fea72017-06-17 10:42:36 -07002733 if (rt)
2734 dst_release_immediate(&rt->dst);
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07002735
Roopa Prabhu8c5b83f2015-10-10 08:26:36 -07002736 return ERR_PTR(err);
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07002737}
2738
David Ahern333c4302017-05-21 10:12:04 -06002739int ip6_route_add(struct fib6_config *cfg,
2740 struct netlink_ext_ack *extack)
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07002741{
2742 struct mx6_config mxc = { .mx = NULL, };
Roopa Prabhu8c5b83f2015-10-10 08:26:36 -07002743 struct rt6_info *rt;
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07002744 int err;
2745
David Ahern333c4302017-05-21 10:12:04 -06002746 rt = ip6_route_info_create(cfg, extack);
Roopa Prabhu8c5b83f2015-10-10 08:26:36 -07002747 if (IS_ERR(rt)) {
2748 err = PTR_ERR(rt);
2749 rt = NULL;
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07002750 goto out;
Roopa Prabhu8c5b83f2015-10-10 08:26:36 -07002751 }
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07002752
2753 err = ip6_convert_metrics(&mxc, cfg);
2754 if (err)
2755 goto out;
2756
David Ahern333c4302017-05-21 10:12:04 -06002757 err = __ip6_ins_rt(rt, &cfg->fc_nlinfo, &mxc, extack);
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07002758
2759 kfree(mxc.mx);
2760
2761 return err;
2762out:
Wei Wang587fea72017-06-17 10:42:36 -07002763 if (rt)
2764 dst_release_immediate(&rt->dst);
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07002765
Linus Torvalds1da177e2005-04-16 15:20:36 -07002766 return err;
2767}
2768
Thomas Graf86872cb2006-08-22 00:01:08 -07002769static int __ip6_del_rt(struct rt6_info *rt, struct nl_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002770{
2771 int err;
Thomas Grafc71099a2006-08-04 23:20:06 -07002772 struct fib6_table *table;
David S. Millerd1918542011-12-28 20:19:20 -05002773 struct net *net = dev_net(rt->dst.dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002774
Wei Wanga4c2fd72017-06-17 10:42:42 -07002775 if (rt == net->ipv6.ip6_null_entry) {
Gao feng6825a262012-09-19 19:25:34 +00002776 err = -ENOENT;
2777 goto out;
2778 }
Patrick McHardy6c813a72006-08-06 22:22:47 -07002779
Thomas Grafc71099a2006-08-04 23:20:06 -07002780 table = rt->rt6i_table;
2781 write_lock_bh(&table->tb6_lock);
Thomas Graf86872cb2006-08-22 00:01:08 -07002782 err = fib6_del(rt, info);
Thomas Grafc71099a2006-08-04 23:20:06 -07002783 write_unlock_bh(&table->tb6_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002784
Gao feng6825a262012-09-19 19:25:34 +00002785out:
Amerigo Wang94e187c2012-10-29 00:13:19 +00002786 ip6_rt_put(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002787 return err;
2788}
2789
Thomas Grafe0a1ad732006-08-22 00:00:21 -07002790int ip6_del_rt(struct rt6_info *rt)
2791{
Denis V. Lunev4d1169c2008-01-10 03:26:13 -08002792 struct nl_info info = {
David S. Millerd1918542011-12-28 20:19:20 -05002793 .nl_net = dev_net(rt->dst.dev),
Denis V. Lunev4d1169c2008-01-10 03:26:13 -08002794 };
Denis V. Lunev528c4ce2007-12-13 09:45:12 -08002795 return __ip6_del_rt(rt, &info);
Thomas Grafe0a1ad732006-08-22 00:00:21 -07002796}
2797
David Ahern0ae81332017-02-02 12:37:08 -08002798static int __ip6_del_rt_siblings(struct rt6_info *rt, struct fib6_config *cfg)
2799{
2800 struct nl_info *info = &cfg->fc_nlinfo;
WANG Conge3330032017-02-27 16:07:43 -08002801 struct net *net = info->nl_net;
David Ahern16a16cd2017-02-02 12:37:11 -08002802 struct sk_buff *skb = NULL;
David Ahern0ae81332017-02-02 12:37:08 -08002803 struct fib6_table *table;
WANG Conge3330032017-02-27 16:07:43 -08002804 int err = -ENOENT;
David Ahern0ae81332017-02-02 12:37:08 -08002805
WANG Conge3330032017-02-27 16:07:43 -08002806 if (rt == net->ipv6.ip6_null_entry)
2807 goto out_put;
David Ahern0ae81332017-02-02 12:37:08 -08002808 table = rt->rt6i_table;
2809 write_lock_bh(&table->tb6_lock);
2810
2811 if (rt->rt6i_nsiblings && cfg->fc_delete_all_nh) {
2812 struct rt6_info *sibling, *next_sibling;
2813
David Ahern16a16cd2017-02-02 12:37:11 -08002814 /* prefer to send a single notification with all hops */
2815 skb = nlmsg_new(rt6_nlmsg_size(rt), gfp_any());
2816 if (skb) {
2817 u32 seq = info->nlh ? info->nlh->nlmsg_seq : 0;
2818
WANG Conge3330032017-02-27 16:07:43 -08002819 if (rt6_fill_node(net, skb, rt,
David Ahern16a16cd2017-02-02 12:37:11 -08002820 NULL, NULL, 0, RTM_DELROUTE,
2821 info->portid, seq, 0) < 0) {
2822 kfree_skb(skb);
2823 skb = NULL;
2824 } else
2825 info->skip_notify = 1;
2826 }
2827
David Ahern0ae81332017-02-02 12:37:08 -08002828 list_for_each_entry_safe(sibling, next_sibling,
2829 &rt->rt6i_siblings,
2830 rt6i_siblings) {
2831 err = fib6_del(sibling, info);
2832 if (err)
WANG Conge3330032017-02-27 16:07:43 -08002833 goto out_unlock;
David Ahern0ae81332017-02-02 12:37:08 -08002834 }
2835 }
2836
2837 err = fib6_del(rt, info);
WANG Conge3330032017-02-27 16:07:43 -08002838out_unlock:
David Ahern0ae81332017-02-02 12:37:08 -08002839 write_unlock_bh(&table->tb6_lock);
WANG Conge3330032017-02-27 16:07:43 -08002840out_put:
David Ahern0ae81332017-02-02 12:37:08 -08002841 ip6_rt_put(rt);
David Ahern16a16cd2017-02-02 12:37:11 -08002842
2843 if (skb) {
WANG Conge3330032017-02-27 16:07:43 -08002844 rtnl_notify(skb, net, info->portid, RTNLGRP_IPV6_ROUTE,
David Ahern16a16cd2017-02-02 12:37:11 -08002845 info->nlh, gfp_any());
2846 }
David Ahern0ae81332017-02-02 12:37:08 -08002847 return err;
2848}
2849
David Ahern333c4302017-05-21 10:12:04 -06002850static int ip6_route_del(struct fib6_config *cfg,
2851 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002852{
Wei Wang2b760fc2017-10-06 12:06:03 -07002853 struct rt6_info *rt, *rt_cache;
Thomas Grafc71099a2006-08-04 23:20:06 -07002854 struct fib6_table *table;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002855 struct fib6_node *fn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002856 int err = -ESRCH;
2857
Daniel Lezcano55786892008-03-04 13:47:47 -08002858 table = fib6_get_table(cfg->fc_nlinfo.nl_net, cfg->fc_table);
David Ahernd5d531c2017-05-21 10:12:05 -06002859 if (!table) {
2860 NL_SET_ERR_MSG(extack, "FIB table does not exist");
Thomas Grafc71099a2006-08-04 23:20:06 -07002861 return err;
David Ahernd5d531c2017-05-21 10:12:05 -06002862 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002863
Thomas Grafc71099a2006-08-04 23:20:06 -07002864 read_lock_bh(&table->tb6_lock);
2865
2866 fn = fib6_locate(&table->tb6_root,
Thomas Graf86872cb2006-08-22 00:01:08 -07002867 &cfg->fc_dst, cfg->fc_dst_len,
Wei Wang38fbeee2017-10-06 12:06:02 -07002868 &cfg->fc_src, cfg->fc_src_len,
Wei Wang2b760fc2017-10-06 12:06:03 -07002869 !(cfg->fc_flags & RTF_CACHE));
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002870
Linus Torvalds1da177e2005-04-16 15:20:36 -07002871 if (fn) {
Changli Gaod8d1f302010-06-10 23:31:35 -07002872 for (rt = fn->leaf; rt; rt = rt->dst.rt6_next) {
Wei Wang2b760fc2017-10-06 12:06:03 -07002873 if (cfg->fc_flags & RTF_CACHE) {
2874 rt_cache = rt6_find_cached_rt(rt, &cfg->fc_dst,
2875 &cfg->fc_src);
2876 if (!rt_cache)
2877 continue;
2878 rt = rt_cache;
2879 }
Thomas Graf86872cb2006-08-22 00:01:08 -07002880 if (cfg->fc_ifindex &&
David S. Millerd1918542011-12-28 20:19:20 -05002881 (!rt->dst.dev ||
2882 rt->dst.dev->ifindex != cfg->fc_ifindex))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002883 continue;
Thomas Graf86872cb2006-08-22 00:01:08 -07002884 if (cfg->fc_flags & RTF_GATEWAY &&
2885 !ipv6_addr_equal(&cfg->fc_gateway, &rt->rt6i_gateway))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002886 continue;
Thomas Graf86872cb2006-08-22 00:01:08 -07002887 if (cfg->fc_metric && cfg->fc_metric != rt->rt6i_metric)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002888 continue;
Mantas Mc2ed1882016-12-16 10:30:59 +02002889 if (cfg->fc_protocol && cfg->fc_protocol != rt->rt6i_protocol)
2890 continue;
Wei Wangd3843fe2017-10-06 12:06:06 -07002891 if (!dst_hold_safe(&rt->dst))
2892 break;
Thomas Grafc71099a2006-08-04 23:20:06 -07002893 read_unlock_bh(&table->tb6_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002894
David Ahern0ae81332017-02-02 12:37:08 -08002895 /* if gateway was specified only delete the one hop */
2896 if (cfg->fc_flags & RTF_GATEWAY)
2897 return __ip6_del_rt(rt, &cfg->fc_nlinfo);
2898
2899 return __ip6_del_rt_siblings(rt, cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002900 }
2901 }
Thomas Grafc71099a2006-08-04 23:20:06 -07002902 read_unlock_bh(&table->tb6_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002903
2904 return err;
2905}
2906
David S. Miller6700c272012-07-17 03:29:28 -07002907static void rt6_do_redirect(struct dst_entry *dst, struct sock *sk, struct sk_buff *skb)
YOSHIFUJI Hideakia6279452006-08-23 17:18:26 -07002908{
YOSHIFUJI Hideakia6279452006-08-23 17:18:26 -07002909 struct netevent_redirect netevent;
David S. Millere8599ff2012-07-11 23:43:53 -07002910 struct rt6_info *rt, *nrt = NULL;
David S. Millere8599ff2012-07-11 23:43:53 -07002911 struct ndisc_options ndopts;
2912 struct inet6_dev *in6_dev;
2913 struct neighbour *neigh;
YOSHIFUJI Hideaki / 吉藤英明71bcdba2013-01-05 16:34:51 +00002914 struct rd_msg *msg;
David S. Miller6e157b62012-07-12 00:05:02 -07002915 int optlen, on_link;
2916 u8 *lladdr;
David S. Millere8599ff2012-07-11 23:43:53 -07002917
Simon Horman29a3cad2013-05-28 20:34:26 +00002918 optlen = skb_tail_pointer(skb) - skb_transport_header(skb);
YOSHIFUJI Hideaki / 吉藤英明71bcdba2013-01-05 16:34:51 +00002919 optlen -= sizeof(*msg);
David S. Millere8599ff2012-07-11 23:43:53 -07002920
2921 if (optlen < 0) {
David S. Miller6e157b62012-07-12 00:05:02 -07002922 net_dbg_ratelimited("rt6_do_redirect: packet too short\n");
David S. Millere8599ff2012-07-11 23:43:53 -07002923 return;
2924 }
2925
YOSHIFUJI Hideaki / 吉藤英明71bcdba2013-01-05 16:34:51 +00002926 msg = (struct rd_msg *)icmp6_hdr(skb);
David S. Millere8599ff2012-07-11 23:43:53 -07002927
YOSHIFUJI Hideaki / 吉藤英明71bcdba2013-01-05 16:34:51 +00002928 if (ipv6_addr_is_multicast(&msg->dest)) {
David S. Miller6e157b62012-07-12 00:05:02 -07002929 net_dbg_ratelimited("rt6_do_redirect: destination address is multicast\n");
David S. Millere8599ff2012-07-11 23:43:53 -07002930 return;
2931 }
2932
David S. Miller6e157b62012-07-12 00:05:02 -07002933 on_link = 0;
YOSHIFUJI Hideaki / 吉藤英明71bcdba2013-01-05 16:34:51 +00002934 if (ipv6_addr_equal(&msg->dest, &msg->target)) {
David S. Millere8599ff2012-07-11 23:43:53 -07002935 on_link = 1;
YOSHIFUJI Hideaki / 吉藤英明71bcdba2013-01-05 16:34:51 +00002936 } else if (ipv6_addr_type(&msg->target) !=
David S. Millere8599ff2012-07-11 23:43:53 -07002937 (IPV6_ADDR_UNICAST|IPV6_ADDR_LINKLOCAL)) {
David S. Miller6e157b62012-07-12 00:05:02 -07002938 net_dbg_ratelimited("rt6_do_redirect: target address is not link-local unicast\n");
David S. Millere8599ff2012-07-11 23:43:53 -07002939 return;
2940 }
2941
2942 in6_dev = __in6_dev_get(skb->dev);
2943 if (!in6_dev)
2944 return;
2945 if (in6_dev->cnf.forwarding || !in6_dev->cnf.accept_redirects)
2946 return;
2947
2948 /* RFC2461 8.1:
2949 * The IP source address of the Redirect MUST be the same as the current
2950 * first-hop router for the specified ICMP Destination Address.
2951 */
2952
Alexander Aringf997c552016-06-15 21:20:23 +02002953 if (!ndisc_parse_options(skb->dev, msg->opt, optlen, &ndopts)) {
David S. Millere8599ff2012-07-11 23:43:53 -07002954 net_dbg_ratelimited("rt6_redirect: invalid ND options\n");
2955 return;
2956 }
David S. Miller6e157b62012-07-12 00:05:02 -07002957
2958 lladdr = NULL;
David S. Millere8599ff2012-07-11 23:43:53 -07002959 if (ndopts.nd_opts_tgt_lladdr) {
2960 lladdr = ndisc_opt_addr_data(ndopts.nd_opts_tgt_lladdr,
2961 skb->dev);
2962 if (!lladdr) {
2963 net_dbg_ratelimited("rt6_redirect: invalid link-layer address length\n");
2964 return;
2965 }
2966 }
2967
David S. Miller6e157b62012-07-12 00:05:02 -07002968 rt = (struct rt6_info *) dst;
Matthias Schifferec13ad12015-11-02 01:24:38 +01002969 if (rt->rt6i_flags & RTF_REJECT) {
David S. Miller6e157b62012-07-12 00:05:02 -07002970 net_dbg_ratelimited("rt6_redirect: source isn't a valid nexthop for redirect target\n");
2971 return;
2972 }
2973
2974 /* Redirect received -> path was valid.
2975 * Look, redirects are sent only in response to data packets,
2976 * so that this nexthop apparently is reachable. --ANK
2977 */
Julian Anastasov0dec8792017-02-06 23:14:16 +02002978 dst_confirm_neigh(&rt->dst, &ipv6_hdr(skb)->saddr);
David S. Miller6e157b62012-07-12 00:05:02 -07002979
YOSHIFUJI Hideaki / 吉藤英明71bcdba2013-01-05 16:34:51 +00002980 neigh = __neigh_lookup(&nd_tbl, &msg->target, skb->dev, 1);
David S. Millere8599ff2012-07-11 23:43:53 -07002981 if (!neigh)
2982 return;
2983
Linus Torvalds1da177e2005-04-16 15:20:36 -07002984 /*
2985 * We have finally decided to accept it.
2986 */
2987
Alexander Aringf997c552016-06-15 21:20:23 +02002988 ndisc_update(skb->dev, neigh, lladdr, NUD_STALE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002989 NEIGH_UPDATE_F_WEAK_OVERRIDE|
2990 NEIGH_UPDATE_F_OVERRIDE|
2991 (on_link ? 0 : (NEIGH_UPDATE_F_OVERRIDE_ISROUTER|
Alexander Aringf997c552016-06-15 21:20:23 +02002992 NEIGH_UPDATE_F_ISROUTER)),
2993 NDISC_REDIRECT, &ndopts);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002994
Martin KaFai Lau83a09ab2015-05-22 20:56:05 -07002995 nrt = ip6_rt_cache_alloc(rt, &msg->dest, NULL);
David S. Miller38308472011-12-03 18:02:47 -05002996 if (!nrt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002997 goto out;
2998
2999 nrt->rt6i_flags = RTF_GATEWAY|RTF_UP|RTF_DYNAMIC|RTF_CACHE;
3000 if (on_link)
3001 nrt->rt6i_flags &= ~RTF_GATEWAY;
3002
Xin Longb91d5322017-08-03 14:13:46 +08003003 nrt->rt6i_protocol = RTPROT_REDIRECT;
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00003004 nrt->rt6i_gateway = *(struct in6_addr *)neigh->primary_key;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003005
Wei Wang2b760fc2017-10-06 12:06:03 -07003006 /* No need to remove rt from the exception table if rt is
3007 * a cached route because rt6_insert_exception() will
3008 * takes care of it
3009 */
3010 if (rt6_insert_exception(nrt, rt)) {
3011 dst_release_immediate(&nrt->dst);
3012 goto out;
3013 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003014
Changli Gaod8d1f302010-06-10 23:31:35 -07003015 netevent.old = &rt->dst;
3016 netevent.new = &nrt->dst;
YOSHIFUJI Hideaki / 吉藤英明71bcdba2013-01-05 16:34:51 +00003017 netevent.daddr = &msg->dest;
YOSHIFUJI Hideaki / 吉藤英明60592832013-01-14 09:28:27 +00003018 netevent.neigh = neigh;
Tom Tucker8d717402006-07-30 20:43:36 -07003019 call_netevent_notifiers(NETEVENT_REDIRECT, &netevent);
3020
Linus Torvalds1da177e2005-04-16 15:20:36 -07003021out:
David S. Millere8599ff2012-07-11 23:43:53 -07003022 neigh_release(neigh);
David S. Miller6e157b62012-07-12 00:05:02 -07003023}
3024
Linus Torvalds1da177e2005-04-16 15:20:36 -07003025/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003026 * Misc support functions
3027 */
3028
Martin KaFai Lau4b32b5a2015-04-28 13:03:06 -07003029static void rt6_set_from(struct rt6_info *rt, struct rt6_info *from)
3030{
3031 BUG_ON(from->dst.from);
3032
3033 rt->rt6i_flags &= ~RTF_EXPIRES;
3034 dst_hold(&from->dst);
3035 rt->dst.from = &from->dst;
3036 dst_init_metrics(&rt->dst, dst_metrics_ptr(&from->dst), true);
3037}
3038
Martin KaFai Lau83a09ab2015-05-22 20:56:05 -07003039static void ip6_rt_copy_init(struct rt6_info *rt, struct rt6_info *ort)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003040{
Martin KaFai Lau83a09ab2015-05-22 20:56:05 -07003041 rt->dst.input = ort->dst.input;
3042 rt->dst.output = ort->dst.output;
3043 rt->rt6i_dst = ort->rt6i_dst;
3044 rt->dst.error = ort->dst.error;
3045 rt->rt6i_idev = ort->rt6i_idev;
3046 if (rt->rt6i_idev)
3047 in6_dev_hold(rt->rt6i_idev);
3048 rt->dst.lastuse = jiffies;
3049 rt->rt6i_gateway = ort->rt6i_gateway;
3050 rt->rt6i_flags = ort->rt6i_flags;
3051 rt6_set_from(rt, ort);
3052 rt->rt6i_metric = ort->rt6i_metric;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003053#ifdef CONFIG_IPV6_SUBTREES
Martin KaFai Lau83a09ab2015-05-22 20:56:05 -07003054 rt->rt6i_src = ort->rt6i_src;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003055#endif
Martin KaFai Lau83a09ab2015-05-22 20:56:05 -07003056 rt->rt6i_prefsrc = ort->rt6i_prefsrc;
3057 rt->rt6i_table = ort->rt6i_table;
Jiri Benc61adedf2015-08-20 13:56:25 +02003058 rt->dst.lwtstate = lwtstate_get(ort->dst.lwtstate);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003059}
3060
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08003061#ifdef CONFIG_IPV6_ROUTE_INFO
Daniel Lezcanoefa2cea2008-03-04 13:46:48 -08003062static struct rt6_info *rt6_get_route_info(struct net *net,
Eric Dumazetb71d1d42011-04-22 04:53:02 +00003063 const struct in6_addr *prefix, int prefixlen,
David Ahern830218c2016-10-24 10:52:35 -07003064 const struct in6_addr *gwaddr,
3065 struct net_device *dev)
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08003066{
David Ahern830218c2016-10-24 10:52:35 -07003067 u32 tb_id = l3mdev_fib_table(dev) ? : RT6_TABLE_INFO;
3068 int ifindex = dev->ifindex;
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08003069 struct fib6_node *fn;
3070 struct rt6_info *rt = NULL;
Thomas Grafc71099a2006-08-04 23:20:06 -07003071 struct fib6_table *table;
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08003072
David Ahern830218c2016-10-24 10:52:35 -07003073 table = fib6_get_table(net, tb_id);
David S. Miller38308472011-12-03 18:02:47 -05003074 if (!table)
Thomas Grafc71099a2006-08-04 23:20:06 -07003075 return NULL;
3076
Li RongQing5744dd92012-09-11 21:59:01 +00003077 read_lock_bh(&table->tb6_lock);
Wei Wang38fbeee2017-10-06 12:06:02 -07003078 fn = fib6_locate(&table->tb6_root, prefix, prefixlen, NULL, 0, true);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08003079 if (!fn)
3080 goto out;
3081
Changli Gaod8d1f302010-06-10 23:31:35 -07003082 for (rt = fn->leaf; rt; rt = rt->dst.rt6_next) {
David S. Millerd1918542011-12-28 20:19:20 -05003083 if (rt->dst.dev->ifindex != ifindex)
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08003084 continue;
3085 if ((rt->rt6i_flags & (RTF_ROUTEINFO|RTF_GATEWAY)) != (RTF_ROUTEINFO|RTF_GATEWAY))
3086 continue;
3087 if (!ipv6_addr_equal(&rt->rt6i_gateway, gwaddr))
3088 continue;
Wei Wangd3843fe2017-10-06 12:06:06 -07003089 ip6_hold_safe(NULL, &rt, false);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08003090 break;
3091 }
3092out:
Li RongQing5744dd92012-09-11 21:59:01 +00003093 read_unlock_bh(&table->tb6_lock);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08003094 return rt;
3095}
3096
Daniel Lezcanoefa2cea2008-03-04 13:46:48 -08003097static struct rt6_info *rt6_add_route_info(struct net *net,
Eric Dumazetb71d1d42011-04-22 04:53:02 +00003098 const struct in6_addr *prefix, int prefixlen,
David Ahern830218c2016-10-24 10:52:35 -07003099 const struct in6_addr *gwaddr,
3100 struct net_device *dev,
Eric Dumazet95c96172012-04-15 05:58:06 +00003101 unsigned int pref)
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08003102{
Thomas Graf86872cb2006-08-22 00:01:08 -07003103 struct fib6_config cfg = {
Rami Rosen238fc7e2008-02-09 23:43:11 -08003104 .fc_metric = IP6_RT_PRIO_USER,
David Ahern830218c2016-10-24 10:52:35 -07003105 .fc_ifindex = dev->ifindex,
Thomas Graf86872cb2006-08-22 00:01:08 -07003106 .fc_dst_len = prefixlen,
3107 .fc_flags = RTF_GATEWAY | RTF_ADDRCONF | RTF_ROUTEINFO |
3108 RTF_UP | RTF_PREF(pref),
Xin Longb91d5322017-08-03 14:13:46 +08003109 .fc_protocol = RTPROT_RA,
Eric W. Biederman15e47302012-09-07 20:12:54 +00003110 .fc_nlinfo.portid = 0,
Daniel Lezcanoefa2cea2008-03-04 13:46:48 -08003111 .fc_nlinfo.nlh = NULL,
3112 .fc_nlinfo.nl_net = net,
Thomas Graf86872cb2006-08-22 00:01:08 -07003113 };
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08003114
David Ahern830218c2016-10-24 10:52:35 -07003115 cfg.fc_table = l3mdev_fib_table(dev) ? : RT6_TABLE_INFO,
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00003116 cfg.fc_dst = *prefix;
3117 cfg.fc_gateway = *gwaddr;
Thomas Graf86872cb2006-08-22 00:01:08 -07003118
YOSHIFUJI Hideakie317da92006-03-20 17:06:42 -08003119 /* We should treat it as a default route if prefix length is 0. */
3120 if (!prefixlen)
Thomas Graf86872cb2006-08-22 00:01:08 -07003121 cfg.fc_flags |= RTF_DEFAULT;
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08003122
David Ahern333c4302017-05-21 10:12:04 -06003123 ip6_route_add(&cfg, NULL);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08003124
David Ahern830218c2016-10-24 10:52:35 -07003125 return rt6_get_route_info(net, prefix, prefixlen, gwaddr, dev);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08003126}
3127#endif
3128
Eric Dumazetb71d1d42011-04-22 04:53:02 +00003129struct rt6_info *rt6_get_dflt_router(const struct in6_addr *addr, struct net_device *dev)
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003130{
David Ahern830218c2016-10-24 10:52:35 -07003131 u32 tb_id = l3mdev_fib_table(dev) ? : RT6_TABLE_DFLT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003132 struct rt6_info *rt;
Thomas Grafc71099a2006-08-04 23:20:06 -07003133 struct fib6_table *table;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003134
David Ahern830218c2016-10-24 10:52:35 -07003135 table = fib6_get_table(dev_net(dev), tb_id);
David S. Miller38308472011-12-03 18:02:47 -05003136 if (!table)
Thomas Grafc71099a2006-08-04 23:20:06 -07003137 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003138
Li RongQing5744dd92012-09-11 21:59:01 +00003139 read_lock_bh(&table->tb6_lock);
Ian Morris67ba4152014-08-24 21:53:10 +01003140 for (rt = table->tb6_root.leaf; rt; rt = rt->dst.rt6_next) {
David S. Millerd1918542011-12-28 20:19:20 -05003141 if (dev == rt->dst.dev &&
YOSHIFUJI Hideaki045927f2006-03-20 17:00:48 -08003142 ((rt->rt6i_flags & (RTF_ADDRCONF | RTF_DEFAULT)) == (RTF_ADDRCONF | RTF_DEFAULT)) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07003143 ipv6_addr_equal(&rt->rt6i_gateway, addr))
3144 break;
3145 }
3146 if (rt)
Wei Wangd3843fe2017-10-06 12:06:06 -07003147 ip6_hold_safe(NULL, &rt, false);
Li RongQing5744dd92012-09-11 21:59:01 +00003148 read_unlock_bh(&table->tb6_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003149 return rt;
3150}
3151
Eric Dumazetb71d1d42011-04-22 04:53:02 +00003152struct rt6_info *rt6_add_dflt_router(const struct in6_addr *gwaddr,
YOSHIFUJI Hideakiebacaaa2006-03-20 17:04:53 -08003153 struct net_device *dev,
3154 unsigned int pref)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003155{
Thomas Graf86872cb2006-08-22 00:01:08 -07003156 struct fib6_config cfg = {
David Ahernca254492015-10-12 11:47:10 -07003157 .fc_table = l3mdev_fib_table(dev) ? : RT6_TABLE_DFLT,
Rami Rosen238fc7e2008-02-09 23:43:11 -08003158 .fc_metric = IP6_RT_PRIO_USER,
Thomas Graf86872cb2006-08-22 00:01:08 -07003159 .fc_ifindex = dev->ifindex,
3160 .fc_flags = RTF_GATEWAY | RTF_ADDRCONF | RTF_DEFAULT |
3161 RTF_UP | RTF_EXPIRES | RTF_PREF(pref),
Xin Longb91d5322017-08-03 14:13:46 +08003162 .fc_protocol = RTPROT_RA,
Eric W. Biederman15e47302012-09-07 20:12:54 +00003163 .fc_nlinfo.portid = 0,
Daniel Lezcano55786892008-03-04 13:47:47 -08003164 .fc_nlinfo.nlh = NULL,
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09003165 .fc_nlinfo.nl_net = dev_net(dev),
Thomas Graf86872cb2006-08-22 00:01:08 -07003166 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07003167
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00003168 cfg.fc_gateway = *gwaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003169
David Ahern333c4302017-05-21 10:12:04 -06003170 if (!ip6_route_add(&cfg, NULL)) {
David Ahern830218c2016-10-24 10:52:35 -07003171 struct fib6_table *table;
3172
3173 table = fib6_get_table(dev_net(dev), cfg.fc_table);
3174 if (table)
3175 table->flags |= RT6_TABLE_HAS_DFLT_ROUTER;
3176 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003177
Linus Torvalds1da177e2005-04-16 15:20:36 -07003178 return rt6_get_dflt_router(gwaddr, dev);
3179}
3180
David Ahern830218c2016-10-24 10:52:35 -07003181static void __rt6_purge_dflt_routers(struct fib6_table *table)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003182{
3183 struct rt6_info *rt;
3184
3185restart:
Thomas Grafc71099a2006-08-04 23:20:06 -07003186 read_lock_bh(&table->tb6_lock);
Changli Gaod8d1f302010-06-10 23:31:35 -07003187 for (rt = table->tb6_root.leaf; rt; rt = rt->dst.rt6_next) {
Lorenzo Colitti3e8b0ac2013-03-03 20:46:46 +00003188 if (rt->rt6i_flags & (RTF_DEFAULT | RTF_ADDRCONF) &&
3189 (!rt->rt6i_idev || rt->rt6i_idev->cnf.accept_ra != 2)) {
Wei Wangd3843fe2017-10-06 12:06:06 -07003190 if (dst_hold_safe(&rt->dst)) {
3191 read_unlock_bh(&table->tb6_lock);
3192 ip6_del_rt(rt);
3193 } else {
3194 read_unlock_bh(&table->tb6_lock);
3195 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003196 goto restart;
3197 }
3198 }
Thomas Grafc71099a2006-08-04 23:20:06 -07003199 read_unlock_bh(&table->tb6_lock);
David Ahern830218c2016-10-24 10:52:35 -07003200
3201 table->flags &= ~RT6_TABLE_HAS_DFLT_ROUTER;
3202}
3203
3204void rt6_purge_dflt_routers(struct net *net)
3205{
3206 struct fib6_table *table;
3207 struct hlist_head *head;
3208 unsigned int h;
3209
3210 rcu_read_lock();
3211
3212 for (h = 0; h < FIB6_TABLE_HASHSZ; h++) {
3213 head = &net->ipv6.fib_table_hash[h];
3214 hlist_for_each_entry_rcu(table, head, tb6_hlist) {
3215 if (table->flags & RT6_TABLE_HAS_DFLT_ROUTER)
3216 __rt6_purge_dflt_routers(table);
3217 }
3218 }
3219
3220 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003221}
3222
Daniel Lezcano55786892008-03-04 13:47:47 -08003223static void rtmsg_to_fib6_config(struct net *net,
3224 struct in6_rtmsg *rtmsg,
Thomas Graf86872cb2006-08-22 00:01:08 -07003225 struct fib6_config *cfg)
3226{
3227 memset(cfg, 0, sizeof(*cfg));
3228
David Ahernca254492015-10-12 11:47:10 -07003229 cfg->fc_table = l3mdev_fib_table_by_index(net, rtmsg->rtmsg_ifindex) ?
3230 : RT6_TABLE_MAIN;
Thomas Graf86872cb2006-08-22 00:01:08 -07003231 cfg->fc_ifindex = rtmsg->rtmsg_ifindex;
3232 cfg->fc_metric = rtmsg->rtmsg_metric;
3233 cfg->fc_expires = rtmsg->rtmsg_info;
3234 cfg->fc_dst_len = rtmsg->rtmsg_dst_len;
3235 cfg->fc_src_len = rtmsg->rtmsg_src_len;
3236 cfg->fc_flags = rtmsg->rtmsg_flags;
3237
Daniel Lezcano55786892008-03-04 13:47:47 -08003238 cfg->fc_nlinfo.nl_net = net;
Benjamin Theryf1243c22008-02-26 18:10:03 -08003239
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00003240 cfg->fc_dst = rtmsg->rtmsg_dst;
3241 cfg->fc_src = rtmsg->rtmsg_src;
3242 cfg->fc_gateway = rtmsg->rtmsg_gateway;
Thomas Graf86872cb2006-08-22 00:01:08 -07003243}
3244
Daniel Lezcano55786892008-03-04 13:47:47 -08003245int ipv6_route_ioctl(struct net *net, unsigned int cmd, void __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003246{
Thomas Graf86872cb2006-08-22 00:01:08 -07003247 struct fib6_config cfg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003248 struct in6_rtmsg rtmsg;
3249 int err;
3250
Ian Morris67ba4152014-08-24 21:53:10 +01003251 switch (cmd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003252 case SIOCADDRT: /* Add a route */
3253 case SIOCDELRT: /* Delete a route */
Eric W. Biedermanaf31f412012-11-16 03:03:06 +00003254 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003255 return -EPERM;
3256 err = copy_from_user(&rtmsg, arg,
3257 sizeof(struct in6_rtmsg));
3258 if (err)
3259 return -EFAULT;
Thomas Graf86872cb2006-08-22 00:01:08 -07003260
Daniel Lezcano55786892008-03-04 13:47:47 -08003261 rtmsg_to_fib6_config(net, &rtmsg, &cfg);
Thomas Graf86872cb2006-08-22 00:01:08 -07003262
Linus Torvalds1da177e2005-04-16 15:20:36 -07003263 rtnl_lock();
3264 switch (cmd) {
3265 case SIOCADDRT:
David Ahern333c4302017-05-21 10:12:04 -06003266 err = ip6_route_add(&cfg, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003267 break;
3268 case SIOCDELRT:
David Ahern333c4302017-05-21 10:12:04 -06003269 err = ip6_route_del(&cfg, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003270 break;
3271 default:
3272 err = -EINVAL;
3273 }
3274 rtnl_unlock();
3275
3276 return err;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07003277 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003278
3279 return -EINVAL;
3280}
3281
3282/*
3283 * Drop the packet on the floor
3284 */
3285
Brian Haleyd5fdd6b2009-06-23 04:31:07 -07003286static int ip6_pkt_drop(struct sk_buff *skb, u8 code, int ipstats_mib_noroutes)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003287{
YOSHIFUJI Hideaki612f09e2007-04-13 16:18:02 -07003288 int type;
Eric Dumazetadf30902009-06-02 05:19:30 +00003289 struct dst_entry *dst = skb_dst(skb);
YOSHIFUJI Hideaki612f09e2007-04-13 16:18:02 -07003290 switch (ipstats_mib_noroutes) {
3291 case IPSTATS_MIB_INNOROUTES:
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -07003292 type = ipv6_addr_type(&ipv6_hdr(skb)->daddr);
Ulrich Weber45bb0062010-02-25 23:28:58 +00003293 if (type == IPV6_ADDR_ANY) {
Denis V. Lunev3bd653c2008-10-08 10:54:51 -07003294 IP6_INC_STATS(dev_net(dst->dev), ip6_dst_idev(dst),
3295 IPSTATS_MIB_INADDRERRORS);
YOSHIFUJI Hideaki612f09e2007-04-13 16:18:02 -07003296 break;
3297 }
3298 /* FALLTHROUGH */
3299 case IPSTATS_MIB_OUTNOROUTES:
Denis V. Lunev3bd653c2008-10-08 10:54:51 -07003300 IP6_INC_STATS(dev_net(dst->dev), ip6_dst_idev(dst),
3301 ipstats_mib_noroutes);
YOSHIFUJI Hideaki612f09e2007-04-13 16:18:02 -07003302 break;
3303 }
Alexey Dobriyan3ffe5332010-02-18 08:25:24 +00003304 icmpv6_send(skb, ICMPV6_DEST_UNREACH, code, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003305 kfree_skb(skb);
3306 return 0;
3307}
3308
Thomas Graf9ce8ade2006-10-18 20:46:54 -07003309static int ip6_pkt_discard(struct sk_buff *skb)
3310{
YOSHIFUJI Hideaki612f09e2007-04-13 16:18:02 -07003311 return ip6_pkt_drop(skb, ICMPV6_NOROUTE, IPSTATS_MIB_INNOROUTES);
Thomas Graf9ce8ade2006-10-18 20:46:54 -07003312}
3313
Eric W. Biedermanede20592015-10-07 16:48:47 -05003314static int ip6_pkt_discard_out(struct net *net, struct sock *sk, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003315{
Eric Dumazetadf30902009-06-02 05:19:30 +00003316 skb->dev = skb_dst(skb)->dev;
YOSHIFUJI Hideaki612f09e2007-04-13 16:18:02 -07003317 return ip6_pkt_drop(skb, ICMPV6_NOROUTE, IPSTATS_MIB_OUTNOROUTES);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003318}
3319
Thomas Graf9ce8ade2006-10-18 20:46:54 -07003320static int ip6_pkt_prohibit(struct sk_buff *skb)
3321{
YOSHIFUJI Hideaki612f09e2007-04-13 16:18:02 -07003322 return ip6_pkt_drop(skb, ICMPV6_ADM_PROHIBITED, IPSTATS_MIB_INNOROUTES);
Thomas Graf9ce8ade2006-10-18 20:46:54 -07003323}
3324
Eric W. Biedermanede20592015-10-07 16:48:47 -05003325static int ip6_pkt_prohibit_out(struct net *net, struct sock *sk, struct sk_buff *skb)
Thomas Graf9ce8ade2006-10-18 20:46:54 -07003326{
Eric Dumazetadf30902009-06-02 05:19:30 +00003327 skb->dev = skb_dst(skb)->dev;
YOSHIFUJI Hideaki612f09e2007-04-13 16:18:02 -07003328 return ip6_pkt_drop(skb, ICMPV6_ADM_PROHIBITED, IPSTATS_MIB_OUTNOROUTES);
Thomas Graf9ce8ade2006-10-18 20:46:54 -07003329}
3330
Linus Torvalds1da177e2005-04-16 15:20:36 -07003331/*
3332 * Allocate a dst for local (unicast / anycast) address.
3333 */
3334
3335struct rt6_info *addrconf_dst_alloc(struct inet6_dev *idev,
3336 const struct in6_addr *addr,
David S. Miller8f031512011-12-06 16:48:14 -05003337 bool anycast)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003338{
David Ahernca254492015-10-12 11:47:10 -07003339 u32 tb_id;
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09003340 struct net *net = dev_net(idev->dev);
David Ahern4832c302017-08-17 12:17:20 -07003341 struct net_device *dev = idev->dev;
David Ahern5f02ce242016-09-10 12:09:54 -07003342 struct rt6_info *rt;
3343
David Ahern5f02ce242016-09-10 12:09:54 -07003344 rt = ip6_dst_alloc(net, dev, DST_NOCOUNT);
Hannes Frederic Sowaa3300ef2013-12-07 03:33:45 +01003345 if (!rt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003346 return ERR_PTR(-ENOMEM);
3347
Linus Torvalds1da177e2005-04-16 15:20:36 -07003348 in6_dev_hold(idev);
3349
David S. Miller11d53b42011-06-24 15:23:34 -07003350 rt->dst.flags |= DST_HOST;
Changli Gaod8d1f302010-06-10 23:31:35 -07003351 rt->dst.input = ip6_input;
3352 rt->dst.output = ip6_output;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003353 rt->rt6i_idev = idev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003354
David Ahern94b5e0f2017-02-02 08:52:21 -08003355 rt->rt6i_protocol = RTPROT_KERNEL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003356 rt->rt6i_flags = RTF_UP | RTF_NONEXTHOP;
YOSHIFUJI Hideaki58c4fb82005-12-21 22:56:42 +09003357 if (anycast)
3358 rt->rt6i_flags |= RTF_ANYCAST;
3359 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003360 rt->rt6i_flags |= RTF_LOCAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003361
Julian Anastasov550bab42013-10-20 15:43:04 +03003362 rt->rt6i_gateway = *addr;
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00003363 rt->rt6i_dst.addr = *addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003364 rt->rt6i_dst.plen = 128;
David Ahernca254492015-10-12 11:47:10 -07003365 tb_id = l3mdev_fib_table(idev->dev) ? : RT6_TABLE_LOCAL;
3366 rt->rt6i_table = fib6_get_table(net, tb_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003367
Linus Torvalds1da177e2005-04-16 15:20:36 -07003368 return rt;
3369}
3370
Daniel Walterc3968a82011-04-13 21:10:57 +00003371/* remove deleted ip from prefsrc entries */
3372struct arg_dev_net_ip {
3373 struct net_device *dev;
3374 struct net *net;
3375 struct in6_addr *addr;
3376};
3377
3378static int fib6_remove_prefsrc(struct rt6_info *rt, void *arg)
3379{
3380 struct net_device *dev = ((struct arg_dev_net_ip *)arg)->dev;
3381 struct net *net = ((struct arg_dev_net_ip *)arg)->net;
3382 struct in6_addr *addr = ((struct arg_dev_net_ip *)arg)->addr;
3383
David S. Millerd1918542011-12-28 20:19:20 -05003384 if (((void *)rt->dst.dev == dev || !dev) &&
Daniel Walterc3968a82011-04-13 21:10:57 +00003385 rt != net->ipv6.ip6_null_entry &&
3386 ipv6_addr_equal(addr, &rt->rt6i_prefsrc.addr)) {
Wei Wang60006a42017-10-06 12:05:58 -07003387 spin_lock_bh(&rt6_exception_lock);
Daniel Walterc3968a82011-04-13 21:10:57 +00003388 /* remove prefsrc entry */
3389 rt->rt6i_prefsrc.plen = 0;
Wei Wang60006a42017-10-06 12:05:58 -07003390 /* need to update cache as well */
3391 rt6_exceptions_remove_prefsrc(rt);
3392 spin_unlock_bh(&rt6_exception_lock);
Daniel Walterc3968a82011-04-13 21:10:57 +00003393 }
3394 return 0;
3395}
3396
3397void rt6_remove_prefsrc(struct inet6_ifaddr *ifp)
3398{
3399 struct net *net = dev_net(ifp->idev->dev);
3400 struct arg_dev_net_ip adni = {
3401 .dev = ifp->idev->dev,
3402 .net = net,
3403 .addr = &ifp->addr,
3404 };
Li RongQing0c3584d2013-12-27 16:32:38 +08003405 fib6_clean_all(net, fib6_remove_prefsrc, &adni);
Daniel Walterc3968a82011-04-13 21:10:57 +00003406}
3407
Duan Jiongbe7a0102014-05-15 15:56:14 +08003408#define RTF_RA_ROUTER (RTF_ADDRCONF | RTF_DEFAULT | RTF_GATEWAY)
Duan Jiongbe7a0102014-05-15 15:56:14 +08003409
3410/* Remove routers and update dst entries when gateway turn into host. */
3411static int fib6_clean_tohost(struct rt6_info *rt, void *arg)
3412{
3413 struct in6_addr *gateway = (struct in6_addr *)arg;
3414
Wei Wang2b760fc2017-10-06 12:06:03 -07003415 if (((rt->rt6i_flags & RTF_RA_ROUTER) == RTF_RA_ROUTER) &&
3416 ipv6_addr_equal(gateway, &rt->rt6i_gateway)) {
Duan Jiongbe7a0102014-05-15 15:56:14 +08003417 return -1;
3418 }
Wei Wangb16cb452017-10-06 12:06:00 -07003419
3420 /* Further clean up cached routes in exception table.
3421 * This is needed because cached route may have a different
3422 * gateway than its 'parent' in the case of an ip redirect.
3423 */
3424 rt6_exceptions_clean_tohost(rt, gateway);
3425
Duan Jiongbe7a0102014-05-15 15:56:14 +08003426 return 0;
3427}
3428
3429void rt6_clean_tohost(struct net *net, struct in6_addr *gateway)
3430{
3431 fib6_clean_all(net, fib6_clean_tohost, gateway);
3432}
3433
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003434struct arg_dev_net {
3435 struct net_device *dev;
3436 struct net *net;
3437};
3438
David Aherna1a22c12017-01-18 07:40:36 -08003439/* called with write lock held for table with rt */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003440static int fib6_ifdown(struct rt6_info *rt, void *arg)
3441{
stephen hemmingerbc3ef662010-12-16 17:42:40 +00003442 const struct arg_dev_net *adn = arg;
3443 const struct net_device *dev = adn->dev;
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003444
David S. Millerd1918542011-12-28 20:19:20 -05003445 if ((rt->dst.dev == dev || !dev) &&
David Aherna1a22c12017-01-18 07:40:36 -08003446 rt != adn->net->ipv6.ip6_null_entry &&
3447 (rt->rt6i_nsiblings == 0 ||
David Ahern8397ed32017-06-07 12:26:23 -06003448 (dev && netdev_unregistering(dev)) ||
David Aherna1a22c12017-01-18 07:40:36 -08003449 !rt->rt6i_idev->cnf.ignore_routes_with_linkdown))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003450 return -1;
David S. Millerc159d302011-12-26 15:24:36 -05003451
Linus Torvalds1da177e2005-04-16 15:20:36 -07003452 return 0;
3453}
3454
Daniel Lezcanof3db4852008-03-03 23:27:06 -08003455void rt6_ifdown(struct net *net, struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003456{
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003457 struct arg_dev_net adn = {
3458 .dev = dev,
3459 .net = net,
3460 };
3461
Li RongQing0c3584d2013-12-27 16:32:38 +08003462 fib6_clean_all(net, fib6_ifdown, &adn);
Eric W. Biedermane332bc62015-10-12 11:02:08 -05003463 if (dev)
3464 rt6_uncached_list_flush_dev(net, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003465}
3466
Eric Dumazet95c96172012-04-15 05:58:06 +00003467struct rt6_mtu_change_arg {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003468 struct net_device *dev;
Eric Dumazet95c96172012-04-15 05:58:06 +00003469 unsigned int mtu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003470};
3471
3472static int rt6_mtu_change_route(struct rt6_info *rt, void *p_arg)
3473{
3474 struct rt6_mtu_change_arg *arg = (struct rt6_mtu_change_arg *) p_arg;
3475 struct inet6_dev *idev;
3476
3477 /* In IPv6 pmtu discovery is not optional,
3478 so that RTAX_MTU lock cannot disable it.
3479 We still use this lock to block changes
3480 caused by addrconf/ndisc.
3481 */
3482
3483 idev = __in6_dev_get(arg->dev);
David S. Miller38308472011-12-03 18:02:47 -05003484 if (!idev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003485 return 0;
3486
3487 /* For administrative MTU increase, there is no way to discover
3488 IPv6 PMTU increase, so PMTU increase should be updated here.
3489 Since RFC 1981 doesn't include administrative MTU increase
3490 update PMTU increase is a MUST. (i.e. jumbo frame)
3491 */
3492 /*
3493 If new MTU is less than route PMTU, this new MTU will be the
3494 lowest MTU in the path, update the route PMTU to reflect PMTU
3495 decreases; if new MTU is greater than route PMTU, and the
3496 old MTU is the lowest MTU in the path, update the route PMTU
3497 to reflect the increase. In this case if the other nodes' MTU
3498 also have the lowest MTU, TOO BIG MESSAGE will be lead to
Alexander Alemayhu67c408c2017-01-07 23:53:00 +01003499 PMTU discovery.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003500 */
David S. Millerd1918542011-12-28 20:19:20 -05003501 if (rt->dst.dev == arg->dev &&
Maciej Żenczykowskifb56be82016-11-04 14:51:54 -07003502 dst_metric_raw(&rt->dst, RTAX_MTU) &&
Martin KaFai Lau4b32b5a2015-04-28 13:03:06 -07003503 !dst_metric_locked(&rt->dst, RTAX_MTU)) {
Wei Wangf5bbe7e2017-10-06 12:05:59 -07003504 spin_lock_bh(&rt6_exception_lock);
Wei Wang2b760fc2017-10-06 12:06:03 -07003505 if (dst_mtu(&rt->dst) >= arg->mtu ||
3506 (dst_mtu(&rt->dst) < arg->mtu &&
3507 dst_mtu(&rt->dst) == idev->cnf.mtu6)) {
Martin KaFai Lau4b32b5a2015-04-28 13:03:06 -07003508 dst_metric_set(&rt->dst, RTAX_MTU, arg->mtu);
3509 }
Wei Wangf5bbe7e2017-10-06 12:05:59 -07003510 rt6_exceptions_update_pmtu(rt, arg->mtu);
3511 spin_unlock_bh(&rt6_exception_lock);
Simon Arlott566cfd82007-07-26 00:09:55 -07003512 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003513 return 0;
3514}
3515
Eric Dumazet95c96172012-04-15 05:58:06 +00003516void rt6_mtu_change(struct net_device *dev, unsigned int mtu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003517{
Thomas Grafc71099a2006-08-04 23:20:06 -07003518 struct rt6_mtu_change_arg arg = {
3519 .dev = dev,
3520 .mtu = mtu,
3521 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07003522
Li RongQing0c3584d2013-12-27 16:32:38 +08003523 fib6_clean_all(dev_net(dev), rt6_mtu_change_route, &arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003524}
3525
Patrick McHardyef7c79e2007-06-05 12:38:30 -07003526static const struct nla_policy rtm_ipv6_policy[RTA_MAX+1] = {
Thomas Graf5176f912006-08-26 20:13:18 -07003527 [RTA_GATEWAY] = { .len = sizeof(struct in6_addr) },
Thomas Graf86872cb2006-08-22 00:01:08 -07003528 [RTA_OIF] = { .type = NLA_U32 },
Thomas Grafab364a62006-08-22 00:01:47 -07003529 [RTA_IIF] = { .type = NLA_U32 },
Thomas Graf86872cb2006-08-22 00:01:08 -07003530 [RTA_PRIORITY] = { .type = NLA_U32 },
3531 [RTA_METRICS] = { .type = NLA_NESTED },
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00003532 [RTA_MULTIPATH] = { .len = sizeof(struct rtnexthop) },
Lubomir Rintelc78ba6d2015-03-11 15:39:21 +01003533 [RTA_PREF] = { .type = NLA_U8 },
Roopa Prabhu19e42e42015-07-21 10:43:48 +02003534 [RTA_ENCAP_TYPE] = { .type = NLA_U16 },
3535 [RTA_ENCAP] = { .type = NLA_NESTED },
Xin Long32bc2012015-12-16 17:50:11 +08003536 [RTA_EXPIRES] = { .type = NLA_U32 },
Lorenzo Colitti622ec2c2016-11-04 02:23:42 +09003537 [RTA_UID] = { .type = NLA_U32 },
Liping Zhang3b45a412017-02-27 20:59:39 +08003538 [RTA_MARK] = { .type = NLA_U32 },
Thomas Graf86872cb2006-08-22 00:01:08 -07003539};
3540
3541static int rtm_to_fib6_config(struct sk_buff *skb, struct nlmsghdr *nlh,
David Ahern333c4302017-05-21 10:12:04 -06003542 struct fib6_config *cfg,
3543 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003544{
Thomas Graf86872cb2006-08-22 00:01:08 -07003545 struct rtmsg *rtm;
3546 struct nlattr *tb[RTA_MAX+1];
Lubomir Rintelc78ba6d2015-03-11 15:39:21 +01003547 unsigned int pref;
Thomas Graf86872cb2006-08-22 00:01:08 -07003548 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003549
Johannes Bergfceb6432017-04-12 14:34:07 +02003550 err = nlmsg_parse(nlh, sizeof(*rtm), tb, RTA_MAX, rtm_ipv6_policy,
3551 NULL);
Thomas Graf86872cb2006-08-22 00:01:08 -07003552 if (err < 0)
3553 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003554
Thomas Graf86872cb2006-08-22 00:01:08 -07003555 err = -EINVAL;
3556 rtm = nlmsg_data(nlh);
3557 memset(cfg, 0, sizeof(*cfg));
3558
3559 cfg->fc_table = rtm->rtm_table;
3560 cfg->fc_dst_len = rtm->rtm_dst_len;
3561 cfg->fc_src_len = rtm->rtm_src_len;
3562 cfg->fc_flags = RTF_UP;
3563 cfg->fc_protocol = rtm->rtm_protocol;
Nicolas Dichtelef2c7d72012-09-05 02:12:42 +00003564 cfg->fc_type = rtm->rtm_type;
Thomas Graf86872cb2006-08-22 00:01:08 -07003565
Nicolas Dichtelef2c7d72012-09-05 02:12:42 +00003566 if (rtm->rtm_type == RTN_UNREACHABLE ||
3567 rtm->rtm_type == RTN_BLACKHOLE ||
Nicolas Dichtelb4949ab2012-09-06 05:53:35 +00003568 rtm->rtm_type == RTN_PROHIBIT ||
3569 rtm->rtm_type == RTN_THROW)
Thomas Graf86872cb2006-08-22 00:01:08 -07003570 cfg->fc_flags |= RTF_REJECT;
3571
Maciej Żenczykowskiab79ad12010-09-27 00:07:02 +00003572 if (rtm->rtm_type == RTN_LOCAL)
3573 cfg->fc_flags |= RTF_LOCAL;
3574
Martin KaFai Lau1f56a012015-04-28 13:03:03 -07003575 if (rtm->rtm_flags & RTM_F_CLONED)
3576 cfg->fc_flags |= RTF_CACHE;
3577
Eric W. Biederman15e47302012-09-07 20:12:54 +00003578 cfg->fc_nlinfo.portid = NETLINK_CB(skb).portid;
Thomas Graf86872cb2006-08-22 00:01:08 -07003579 cfg->fc_nlinfo.nlh = nlh;
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09003580 cfg->fc_nlinfo.nl_net = sock_net(skb->sk);
Thomas Graf86872cb2006-08-22 00:01:08 -07003581
3582 if (tb[RTA_GATEWAY]) {
Jiri Benc67b61f62015-03-29 16:59:26 +02003583 cfg->fc_gateway = nla_get_in6_addr(tb[RTA_GATEWAY]);
Thomas Graf86872cb2006-08-22 00:01:08 -07003584 cfg->fc_flags |= RTF_GATEWAY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003585 }
Thomas Graf86872cb2006-08-22 00:01:08 -07003586
3587 if (tb[RTA_DST]) {
3588 int plen = (rtm->rtm_dst_len + 7) >> 3;
3589
3590 if (nla_len(tb[RTA_DST]) < plen)
3591 goto errout;
3592
3593 nla_memcpy(&cfg->fc_dst, tb[RTA_DST], plen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003594 }
Thomas Graf86872cb2006-08-22 00:01:08 -07003595
3596 if (tb[RTA_SRC]) {
3597 int plen = (rtm->rtm_src_len + 7) >> 3;
3598
3599 if (nla_len(tb[RTA_SRC]) < plen)
3600 goto errout;
3601
3602 nla_memcpy(&cfg->fc_src, tb[RTA_SRC], plen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003603 }
Thomas Graf86872cb2006-08-22 00:01:08 -07003604
Daniel Walterc3968a82011-04-13 21:10:57 +00003605 if (tb[RTA_PREFSRC])
Jiri Benc67b61f62015-03-29 16:59:26 +02003606 cfg->fc_prefsrc = nla_get_in6_addr(tb[RTA_PREFSRC]);
Daniel Walterc3968a82011-04-13 21:10:57 +00003607
Thomas Graf86872cb2006-08-22 00:01:08 -07003608 if (tb[RTA_OIF])
3609 cfg->fc_ifindex = nla_get_u32(tb[RTA_OIF]);
3610
3611 if (tb[RTA_PRIORITY])
3612 cfg->fc_metric = nla_get_u32(tb[RTA_PRIORITY]);
3613
3614 if (tb[RTA_METRICS]) {
3615 cfg->fc_mx = nla_data(tb[RTA_METRICS]);
3616 cfg->fc_mx_len = nla_len(tb[RTA_METRICS]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003617 }
Thomas Graf86872cb2006-08-22 00:01:08 -07003618
3619 if (tb[RTA_TABLE])
3620 cfg->fc_table = nla_get_u32(tb[RTA_TABLE]);
3621
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00003622 if (tb[RTA_MULTIPATH]) {
3623 cfg->fc_mp = nla_data(tb[RTA_MULTIPATH]);
3624 cfg->fc_mp_len = nla_len(tb[RTA_MULTIPATH]);
David Ahern9ed59592017-01-17 14:57:36 -08003625
3626 err = lwtunnel_valid_encap_type_attr(cfg->fc_mp,
David Ahernc255bd62017-05-27 16:19:27 -06003627 cfg->fc_mp_len, extack);
David Ahern9ed59592017-01-17 14:57:36 -08003628 if (err < 0)
3629 goto errout;
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00003630 }
3631
Lubomir Rintelc78ba6d2015-03-11 15:39:21 +01003632 if (tb[RTA_PREF]) {
3633 pref = nla_get_u8(tb[RTA_PREF]);
3634 if (pref != ICMPV6_ROUTER_PREF_LOW &&
3635 pref != ICMPV6_ROUTER_PREF_HIGH)
3636 pref = ICMPV6_ROUTER_PREF_MEDIUM;
3637 cfg->fc_flags |= RTF_PREF(pref);
3638 }
3639
Roopa Prabhu19e42e42015-07-21 10:43:48 +02003640 if (tb[RTA_ENCAP])
3641 cfg->fc_encap = tb[RTA_ENCAP];
3642
David Ahern9ed59592017-01-17 14:57:36 -08003643 if (tb[RTA_ENCAP_TYPE]) {
Roopa Prabhu19e42e42015-07-21 10:43:48 +02003644 cfg->fc_encap_type = nla_get_u16(tb[RTA_ENCAP_TYPE]);
3645
David Ahernc255bd62017-05-27 16:19:27 -06003646 err = lwtunnel_valid_encap_type(cfg->fc_encap_type, extack);
David Ahern9ed59592017-01-17 14:57:36 -08003647 if (err < 0)
3648 goto errout;
3649 }
3650
Xin Long32bc2012015-12-16 17:50:11 +08003651 if (tb[RTA_EXPIRES]) {
3652 unsigned long timeout = addrconf_timeout_fixup(nla_get_u32(tb[RTA_EXPIRES]), HZ);
3653
3654 if (addrconf_finite_timeout(timeout)) {
3655 cfg->fc_expires = jiffies_to_clock_t(timeout * HZ);
3656 cfg->fc_flags |= RTF_EXPIRES;
3657 }
3658 }
3659
Thomas Graf86872cb2006-08-22 00:01:08 -07003660 err = 0;
3661errout:
3662 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003663}
3664
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003665struct rt6_nh {
3666 struct rt6_info *rt6_info;
3667 struct fib6_config r_cfg;
3668 struct mx6_config mxc;
3669 struct list_head next;
3670};
3671
3672static void ip6_print_replace_route_err(struct list_head *rt6_nh_list)
3673{
3674 struct rt6_nh *nh;
3675
3676 list_for_each_entry(nh, rt6_nh_list, next) {
David Ahern7d4d5062017-02-02 12:37:12 -08003677 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 -07003678 &nh->r_cfg.fc_dst, &nh->r_cfg.fc_gateway,
3679 nh->r_cfg.fc_ifindex);
3680 }
3681}
3682
3683static int ip6_route_info_append(struct list_head *rt6_nh_list,
3684 struct rt6_info *rt, struct fib6_config *r_cfg)
3685{
3686 struct rt6_nh *nh;
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003687 int err = -EEXIST;
3688
3689 list_for_each_entry(nh, rt6_nh_list, next) {
3690 /* check if rt6_info already exists */
David Ahernf06b7542017-07-05 14:41:46 -06003691 if (rt6_duplicate_nexthop(nh->rt6_info, rt))
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003692 return err;
3693 }
3694
3695 nh = kzalloc(sizeof(*nh), GFP_KERNEL);
3696 if (!nh)
3697 return -ENOMEM;
3698 nh->rt6_info = rt;
3699 err = ip6_convert_metrics(&nh->mxc, r_cfg);
3700 if (err) {
3701 kfree(nh);
3702 return err;
3703 }
3704 memcpy(&nh->r_cfg, r_cfg, sizeof(*r_cfg));
3705 list_add_tail(&nh->next, rt6_nh_list);
3706
3707 return 0;
3708}
3709
David Ahern3b1137f2017-02-02 12:37:10 -08003710static void ip6_route_mpath_notify(struct rt6_info *rt,
3711 struct rt6_info *rt_last,
3712 struct nl_info *info,
3713 __u16 nlflags)
3714{
3715 /* if this is an APPEND route, then rt points to the first route
3716 * inserted and rt_last points to last route inserted. Userspace
3717 * wants a consistent dump of the route which starts at the first
3718 * nexthop. Since sibling routes are always added at the end of
3719 * the list, find the first sibling of the last route appended
3720 */
3721 if ((nlflags & NLM_F_APPEND) && rt_last && rt_last->rt6i_nsiblings) {
3722 rt = list_first_entry(&rt_last->rt6i_siblings,
3723 struct rt6_info,
3724 rt6i_siblings);
3725 }
3726
3727 if (rt)
3728 inet6_rt_notify(RTM_NEWROUTE, rt, info, nlflags);
3729}
3730
David Ahern333c4302017-05-21 10:12:04 -06003731static int ip6_route_multipath_add(struct fib6_config *cfg,
3732 struct netlink_ext_ack *extack)
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00003733{
David Ahern3b1137f2017-02-02 12:37:10 -08003734 struct rt6_info *rt_notif = NULL, *rt_last = NULL;
3735 struct nl_info *info = &cfg->fc_nlinfo;
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00003736 struct fib6_config r_cfg;
3737 struct rtnexthop *rtnh;
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003738 struct rt6_info *rt;
3739 struct rt6_nh *err_nh;
3740 struct rt6_nh *nh, *nh_safe;
David Ahern3b1137f2017-02-02 12:37:10 -08003741 __u16 nlflags;
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00003742 int remaining;
3743 int attrlen;
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003744 int err = 1;
3745 int nhn = 0;
3746 int replace = (cfg->fc_nlinfo.nlh &&
3747 (cfg->fc_nlinfo.nlh->nlmsg_flags & NLM_F_REPLACE));
3748 LIST_HEAD(rt6_nh_list);
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00003749
David Ahern3b1137f2017-02-02 12:37:10 -08003750 nlflags = replace ? NLM_F_REPLACE : NLM_F_CREATE;
3751 if (info->nlh && info->nlh->nlmsg_flags & NLM_F_APPEND)
3752 nlflags |= NLM_F_APPEND;
3753
Michal Kubeček35f1b4e2015-05-18 20:53:55 +02003754 remaining = cfg->fc_mp_len;
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00003755 rtnh = (struct rtnexthop *)cfg->fc_mp;
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00003756
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003757 /* Parse a Multipath Entry and build a list (rt6_nh_list) of
3758 * rt6_info structs per nexthop
3759 */
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00003760 while (rtnh_ok(rtnh, remaining)) {
3761 memcpy(&r_cfg, cfg, sizeof(*cfg));
3762 if (rtnh->rtnh_ifindex)
3763 r_cfg.fc_ifindex = rtnh->rtnh_ifindex;
3764
3765 attrlen = rtnh_attrlen(rtnh);
3766 if (attrlen > 0) {
3767 struct nlattr *nla, *attrs = rtnh_attrs(rtnh);
3768
3769 nla = nla_find(attrs, attrlen, RTA_GATEWAY);
3770 if (nla) {
Jiri Benc67b61f62015-03-29 16:59:26 +02003771 r_cfg.fc_gateway = nla_get_in6_addr(nla);
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00003772 r_cfg.fc_flags |= RTF_GATEWAY;
3773 }
Roopa Prabhu19e42e42015-07-21 10:43:48 +02003774 r_cfg.fc_encap = nla_find(attrs, attrlen, RTA_ENCAP);
3775 nla = nla_find(attrs, attrlen, RTA_ENCAP_TYPE);
3776 if (nla)
3777 r_cfg.fc_encap_type = nla_get_u16(nla);
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00003778 }
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003779
David Ahern333c4302017-05-21 10:12:04 -06003780 rt = ip6_route_info_create(&r_cfg, extack);
Roopa Prabhu8c5b83f2015-10-10 08:26:36 -07003781 if (IS_ERR(rt)) {
3782 err = PTR_ERR(rt);
3783 rt = NULL;
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003784 goto cleanup;
Roopa Prabhu8c5b83f2015-10-10 08:26:36 -07003785 }
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003786
3787 err = ip6_route_info_append(&rt6_nh_list, rt, &r_cfg);
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00003788 if (err) {
Wei Wang587fea72017-06-17 10:42:36 -07003789 dst_release_immediate(&rt->dst);
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003790 goto cleanup;
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00003791 }
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003792
3793 rtnh = rtnh_next(rtnh, &remaining);
3794 }
3795
David Ahern3b1137f2017-02-02 12:37:10 -08003796 /* for add and replace send one notification with all nexthops.
3797 * Skip the notification in fib6_add_rt2node and send one with
3798 * the full route when done
3799 */
3800 info->skip_notify = 1;
3801
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003802 err_nh = NULL;
3803 list_for_each_entry(nh, &rt6_nh_list, next) {
David Ahern3b1137f2017-02-02 12:37:10 -08003804 rt_last = nh->rt6_info;
David Ahern333c4302017-05-21 10:12:04 -06003805 err = __ip6_ins_rt(nh->rt6_info, info, &nh->mxc, extack);
David Ahern3b1137f2017-02-02 12:37:10 -08003806 /* save reference to first route for notification */
3807 if (!rt_notif && !err)
3808 rt_notif = nh->rt6_info;
3809
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003810 /* nh->rt6_info is used or freed at this point, reset to NULL*/
3811 nh->rt6_info = NULL;
3812 if (err) {
3813 if (replace && nhn)
3814 ip6_print_replace_route_err(&rt6_nh_list);
3815 err_nh = nh;
3816 goto add_errout;
3817 }
3818
Nicolas Dichtel1a724182012-11-01 22:58:22 +00003819 /* Because each route is added like a single route we remove
Michal Kubeček27596472015-05-18 20:54:00 +02003820 * these flags after the first nexthop: if there is a collision,
3821 * we have already failed to add the first nexthop:
3822 * fib6_add_rt2node() has rejected it; when replacing, old
3823 * nexthops have been replaced by first new, the rest should
3824 * be added to it.
Nicolas Dichtel1a724182012-11-01 22:58:22 +00003825 */
Michal Kubeček27596472015-05-18 20:54:00 +02003826 cfg->fc_nlinfo.nlh->nlmsg_flags &= ~(NLM_F_EXCL |
3827 NLM_F_REPLACE);
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003828 nhn++;
3829 }
3830
David Ahern3b1137f2017-02-02 12:37:10 -08003831 /* success ... tell user about new route */
3832 ip6_route_mpath_notify(rt_notif, rt_last, info, nlflags);
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003833 goto cleanup;
3834
3835add_errout:
David Ahern3b1137f2017-02-02 12:37:10 -08003836 /* send notification for routes that were added so that
3837 * the delete notifications sent by ip6_route_del are
3838 * coherent
3839 */
3840 if (rt_notif)
3841 ip6_route_mpath_notify(rt_notif, rt_last, info, nlflags);
3842
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003843 /* Delete routes that were already added */
3844 list_for_each_entry(nh, &rt6_nh_list, next) {
3845 if (err_nh == nh)
3846 break;
David Ahern333c4302017-05-21 10:12:04 -06003847 ip6_route_del(&nh->r_cfg, extack);
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003848 }
3849
3850cleanup:
3851 list_for_each_entry_safe(nh, nh_safe, &rt6_nh_list, next) {
Wei Wang587fea72017-06-17 10:42:36 -07003852 if (nh->rt6_info)
3853 dst_release_immediate(&nh->rt6_info->dst);
Wu Fengguang52fe51f2015-09-10 06:57:12 +08003854 kfree(nh->mxc.mx);
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003855 list_del(&nh->next);
3856 kfree(nh);
3857 }
3858
3859 return err;
3860}
3861
David Ahern333c4302017-05-21 10:12:04 -06003862static int ip6_route_multipath_del(struct fib6_config *cfg,
3863 struct netlink_ext_ack *extack)
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003864{
3865 struct fib6_config r_cfg;
3866 struct rtnexthop *rtnh;
3867 int remaining;
3868 int attrlen;
3869 int err = 1, last_err = 0;
3870
3871 remaining = cfg->fc_mp_len;
3872 rtnh = (struct rtnexthop *)cfg->fc_mp;
3873
3874 /* Parse a Multipath Entry */
3875 while (rtnh_ok(rtnh, remaining)) {
3876 memcpy(&r_cfg, cfg, sizeof(*cfg));
3877 if (rtnh->rtnh_ifindex)
3878 r_cfg.fc_ifindex = rtnh->rtnh_ifindex;
3879
3880 attrlen = rtnh_attrlen(rtnh);
3881 if (attrlen > 0) {
3882 struct nlattr *nla, *attrs = rtnh_attrs(rtnh);
3883
3884 nla = nla_find(attrs, attrlen, RTA_GATEWAY);
3885 if (nla) {
3886 nla_memcpy(&r_cfg.fc_gateway, nla, 16);
3887 r_cfg.fc_flags |= RTF_GATEWAY;
3888 }
3889 }
David Ahern333c4302017-05-21 10:12:04 -06003890 err = ip6_route_del(&r_cfg, extack);
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003891 if (err)
3892 last_err = err;
3893
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00003894 rtnh = rtnh_next(rtnh, &remaining);
3895 }
3896
3897 return last_err;
3898}
3899
David Ahernc21ef3e2017-04-16 09:48:24 -07003900static int inet6_rtm_delroute(struct sk_buff *skb, struct nlmsghdr *nlh,
3901 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003902{
Thomas Graf86872cb2006-08-22 00:01:08 -07003903 struct fib6_config cfg;
3904 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003905
David Ahern333c4302017-05-21 10:12:04 -06003906 err = rtm_to_fib6_config(skb, nlh, &cfg, extack);
Thomas Graf86872cb2006-08-22 00:01:08 -07003907 if (err < 0)
3908 return err;
3909
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00003910 if (cfg.fc_mp)
David Ahern333c4302017-05-21 10:12:04 -06003911 return ip6_route_multipath_del(&cfg, extack);
David Ahern0ae81332017-02-02 12:37:08 -08003912 else {
3913 cfg.fc_delete_all_nh = 1;
David Ahern333c4302017-05-21 10:12:04 -06003914 return ip6_route_del(&cfg, extack);
David Ahern0ae81332017-02-02 12:37:08 -08003915 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003916}
3917
David Ahernc21ef3e2017-04-16 09:48:24 -07003918static int inet6_rtm_newroute(struct sk_buff *skb, struct nlmsghdr *nlh,
3919 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003920{
Thomas Graf86872cb2006-08-22 00:01:08 -07003921 struct fib6_config cfg;
3922 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003923
David Ahern333c4302017-05-21 10:12:04 -06003924 err = rtm_to_fib6_config(skb, nlh, &cfg, extack);
Thomas Graf86872cb2006-08-22 00:01:08 -07003925 if (err < 0)
3926 return err;
3927
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00003928 if (cfg.fc_mp)
David Ahern333c4302017-05-21 10:12:04 -06003929 return ip6_route_multipath_add(&cfg, extack);
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00003930 else
David Ahern333c4302017-05-21 10:12:04 -06003931 return ip6_route_add(&cfg, extack);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003932}
3933
David Ahernbeb1afac52017-02-02 12:37:09 -08003934static size_t rt6_nlmsg_size(struct rt6_info *rt)
Thomas Graf339bf982006-11-10 14:10:15 -08003935{
David Ahernbeb1afac52017-02-02 12:37:09 -08003936 int nexthop_len = 0;
3937
3938 if (rt->rt6i_nsiblings) {
3939 nexthop_len = nla_total_size(0) /* RTA_MULTIPATH */
3940 + NLA_ALIGN(sizeof(struct rtnexthop))
3941 + nla_total_size(16) /* RTA_GATEWAY */
David Ahernbeb1afac52017-02-02 12:37:09 -08003942 + lwtunnel_get_encap_size(rt->dst.lwtstate);
3943
3944 nexthop_len *= rt->rt6i_nsiblings;
3945 }
3946
Thomas Graf339bf982006-11-10 14:10:15 -08003947 return NLMSG_ALIGN(sizeof(struct rtmsg))
3948 + nla_total_size(16) /* RTA_SRC */
3949 + nla_total_size(16) /* RTA_DST */
3950 + nla_total_size(16) /* RTA_GATEWAY */
3951 + nla_total_size(16) /* RTA_PREFSRC */
3952 + nla_total_size(4) /* RTA_TABLE */
3953 + nla_total_size(4) /* RTA_IIF */
3954 + nla_total_size(4) /* RTA_OIF */
3955 + nla_total_size(4) /* RTA_PRIORITY */
Noriaki TAKAMIYA6a2b9ce2007-01-23 22:09:41 -08003956 + RTAX_MAX * nla_total_size(4) /* RTA_METRICS */
Daniel Borkmannea697632015-01-05 23:57:47 +01003957 + nla_total_size(sizeof(struct rta_cacheinfo))
Lubomir Rintelc78ba6d2015-03-11 15:39:21 +01003958 + nla_total_size(TCP_CA_NAME_MAX) /* RTAX_CC_ALGO */
Roopa Prabhu19e42e42015-07-21 10:43:48 +02003959 + nla_total_size(1) /* RTA_PREF */
David Ahernbeb1afac52017-02-02 12:37:09 -08003960 + lwtunnel_get_encap_size(rt->dst.lwtstate)
3961 + nexthop_len;
3962}
3963
3964static int rt6_nexthop_info(struct sk_buff *skb, struct rt6_info *rt,
David Ahern5be083c2017-03-06 15:57:31 -08003965 unsigned int *flags, bool skip_oif)
David Ahernbeb1afac52017-02-02 12:37:09 -08003966{
3967 if (!netif_running(rt->dst.dev) || !netif_carrier_ok(rt->dst.dev)) {
3968 *flags |= RTNH_F_LINKDOWN;
3969 if (rt->rt6i_idev->cnf.ignore_routes_with_linkdown)
3970 *flags |= RTNH_F_DEAD;
3971 }
3972
3973 if (rt->rt6i_flags & RTF_GATEWAY) {
3974 if (nla_put_in6_addr(skb, RTA_GATEWAY, &rt->rt6i_gateway) < 0)
3975 goto nla_put_failure;
3976 }
3977
Ido Schimmelfe400792017-08-15 09:09:49 +02003978 if (rt->rt6i_nh_flags & RTNH_F_OFFLOAD)
Ido Schimmel61e4d012017-08-03 13:28:20 +02003979 *flags |= RTNH_F_OFFLOAD;
3980
David Ahern5be083c2017-03-06 15:57:31 -08003981 /* not needed for multipath encoding b/c it has a rtnexthop struct */
3982 if (!skip_oif && rt->dst.dev &&
David Ahernbeb1afac52017-02-02 12:37:09 -08003983 nla_put_u32(skb, RTA_OIF, rt->dst.dev->ifindex))
3984 goto nla_put_failure;
3985
3986 if (rt->dst.lwtstate &&
3987 lwtunnel_fill_encap(skb, rt->dst.lwtstate) < 0)
3988 goto nla_put_failure;
3989
3990 return 0;
3991
3992nla_put_failure:
3993 return -EMSGSIZE;
3994}
3995
David Ahern5be083c2017-03-06 15:57:31 -08003996/* add multipath next hop */
David Ahernbeb1afac52017-02-02 12:37:09 -08003997static int rt6_add_nexthop(struct sk_buff *skb, struct rt6_info *rt)
3998{
3999 struct rtnexthop *rtnh;
4000 unsigned int flags = 0;
4001
4002 rtnh = nla_reserve_nohdr(skb, sizeof(*rtnh));
4003 if (!rtnh)
4004 goto nla_put_failure;
4005
4006 rtnh->rtnh_hops = 0;
4007 rtnh->rtnh_ifindex = rt->dst.dev ? rt->dst.dev->ifindex : 0;
4008
David Ahern5be083c2017-03-06 15:57:31 -08004009 if (rt6_nexthop_info(skb, rt, &flags, true) < 0)
David Ahernbeb1afac52017-02-02 12:37:09 -08004010 goto nla_put_failure;
4011
4012 rtnh->rtnh_flags = flags;
4013
4014 /* length of rtnetlink header + attributes */
4015 rtnh->rtnh_len = nlmsg_get_pos(skb) - (void *)rtnh;
4016
4017 return 0;
4018
4019nla_put_failure:
4020 return -EMSGSIZE;
Thomas Graf339bf982006-11-10 14:10:15 -08004021}
4022
Brian Haley191cd582008-08-14 15:33:21 -07004023static int rt6_fill_node(struct net *net,
4024 struct sk_buff *skb, struct rt6_info *rt,
Jamal Hadi Salim0d51aa82005-06-21 13:51:04 -07004025 struct in6_addr *dst, struct in6_addr *src,
Eric W. Biederman15e47302012-09-07 20:12:54 +00004026 int iif, int type, u32 portid, u32 seq,
David Ahernf8cfe2c2017-01-17 15:51:08 -08004027 unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004028{
Martin KaFai Lau4b32b5a2015-04-28 13:03:06 -07004029 u32 metrics[RTAX_MAX];
Linus Torvalds1da177e2005-04-16 15:20:36 -07004030 struct rtmsg *rtm;
Thomas Graf2d7202b2006-08-22 00:01:27 -07004031 struct nlmsghdr *nlh;
Thomas Grafe3703b32006-11-27 09:27:07 -08004032 long expires;
Patrick McHardy9e762a42006-08-10 23:09:48 -07004033 u32 table;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004034
Eric W. Biederman15e47302012-09-07 20:12:54 +00004035 nlh = nlmsg_put(skb, portid, seq, type, sizeof(*rtm), flags);
David S. Miller38308472011-12-03 18:02:47 -05004036 if (!nlh)
Patrick McHardy26932562007-01-31 23:16:40 -08004037 return -EMSGSIZE;
Thomas Graf2d7202b2006-08-22 00:01:27 -07004038
4039 rtm = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004040 rtm->rtm_family = AF_INET6;
4041 rtm->rtm_dst_len = rt->rt6i_dst.plen;
4042 rtm->rtm_src_len = rt->rt6i_src.plen;
4043 rtm->rtm_tos = 0;
Thomas Grafc71099a2006-08-04 23:20:06 -07004044 if (rt->rt6i_table)
Patrick McHardy9e762a42006-08-10 23:09:48 -07004045 table = rt->rt6i_table->tb6_id;
Thomas Grafc71099a2006-08-04 23:20:06 -07004046 else
Patrick McHardy9e762a42006-08-10 23:09:48 -07004047 table = RT6_TABLE_UNSPEC;
4048 rtm->rtm_table = table;
David S. Millerc78679e2012-04-01 20:27:33 -04004049 if (nla_put_u32(skb, RTA_TABLE, table))
4050 goto nla_put_failure;
Nicolas Dichtelef2c7d72012-09-05 02:12:42 +00004051 if (rt->rt6i_flags & RTF_REJECT) {
4052 switch (rt->dst.error) {
4053 case -EINVAL:
4054 rtm->rtm_type = RTN_BLACKHOLE;
4055 break;
4056 case -EACCES:
4057 rtm->rtm_type = RTN_PROHIBIT;
4058 break;
Nicolas Dichtelb4949ab2012-09-06 05:53:35 +00004059 case -EAGAIN:
4060 rtm->rtm_type = RTN_THROW;
4061 break;
Nicolas Dichtelef2c7d72012-09-05 02:12:42 +00004062 default:
4063 rtm->rtm_type = RTN_UNREACHABLE;
4064 break;
4065 }
4066 }
David S. Miller38308472011-12-03 18:02:47 -05004067 else if (rt->rt6i_flags & RTF_LOCAL)
Maciej Żenczykowskiab79ad12010-09-27 00:07:02 +00004068 rtm->rtm_type = RTN_LOCAL;
David Ahern4ee39732017-03-15 18:14:33 -07004069 else if (rt->rt6i_flags & RTF_ANYCAST)
4070 rtm->rtm_type = RTN_ANYCAST;
David S. Millerd1918542011-12-28 20:19:20 -05004071 else if (rt->dst.dev && (rt->dst.dev->flags & IFF_LOOPBACK))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004072 rtm->rtm_type = RTN_LOCAL;
4073 else
4074 rtm->rtm_type = RTN_UNICAST;
4075 rtm->rtm_flags = 0;
4076 rtm->rtm_scope = RT_SCOPE_UNIVERSE;
4077 rtm->rtm_protocol = rt->rt6i_protocol;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004078
David S. Miller38308472011-12-03 18:02:47 -05004079 if (rt->rt6i_flags & RTF_CACHE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004080 rtm->rtm_flags |= RTM_F_CLONED;
4081
4082 if (dst) {
Jiri Benc930345e2015-03-29 16:59:25 +02004083 if (nla_put_in6_addr(skb, RTA_DST, dst))
David S. Millerc78679e2012-04-01 20:27:33 -04004084 goto nla_put_failure;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09004085 rtm->rtm_dst_len = 128;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004086 } else if (rtm->rtm_dst_len)
Jiri Benc930345e2015-03-29 16:59:25 +02004087 if (nla_put_in6_addr(skb, RTA_DST, &rt->rt6i_dst.addr))
David S. Millerc78679e2012-04-01 20:27:33 -04004088 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004089#ifdef CONFIG_IPV6_SUBTREES
4090 if (src) {
Jiri Benc930345e2015-03-29 16:59:25 +02004091 if (nla_put_in6_addr(skb, RTA_SRC, src))
David S. Millerc78679e2012-04-01 20:27:33 -04004092 goto nla_put_failure;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09004093 rtm->rtm_src_len = 128;
David S. Millerc78679e2012-04-01 20:27:33 -04004094 } else if (rtm->rtm_src_len &&
Jiri Benc930345e2015-03-29 16:59:25 +02004095 nla_put_in6_addr(skb, RTA_SRC, &rt->rt6i_src.addr))
David S. Millerc78679e2012-04-01 20:27:33 -04004096 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004097#endif
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09004098 if (iif) {
4099#ifdef CONFIG_IPV6_MROUTE
4100 if (ipv6_addr_is_multicast(&rt->rt6i_dst.addr)) {
David Ahernfd61c6b2017-01-17 15:51:07 -08004101 int err = ip6mr_get_route(net, skb, rtm, portid);
Nikolay Aleksandrov2cf75072016-09-25 23:08:31 +02004102
David Ahernfd61c6b2017-01-17 15:51:07 -08004103 if (err == 0)
4104 return 0;
4105 if (err < 0)
4106 goto nla_put_failure;
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09004107 } else
4108#endif
David S. Millerc78679e2012-04-01 20:27:33 -04004109 if (nla_put_u32(skb, RTA_IIF, iif))
4110 goto nla_put_failure;
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09004111 } else if (dst) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004112 struct in6_addr saddr_buf;
David S. Millerc78679e2012-04-01 20:27:33 -04004113 if (ip6_route_get_saddr(net, rt, dst, 0, &saddr_buf) == 0 &&
Jiri Benc930345e2015-03-29 16:59:25 +02004114 nla_put_in6_addr(skb, RTA_PREFSRC, &saddr_buf))
David S. Millerc78679e2012-04-01 20:27:33 -04004115 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004116 }
Thomas Graf2d7202b2006-08-22 00:01:27 -07004117
Daniel Walterc3968a82011-04-13 21:10:57 +00004118 if (rt->rt6i_prefsrc.plen) {
4119 struct in6_addr saddr_buf;
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00004120 saddr_buf = rt->rt6i_prefsrc.addr;
Jiri Benc930345e2015-03-29 16:59:25 +02004121 if (nla_put_in6_addr(skb, RTA_PREFSRC, &saddr_buf))
David S. Millerc78679e2012-04-01 20:27:33 -04004122 goto nla_put_failure;
Daniel Walterc3968a82011-04-13 21:10:57 +00004123 }
4124
Martin KaFai Lau4b32b5a2015-04-28 13:03:06 -07004125 memcpy(metrics, dst_metrics_ptr(&rt->dst), sizeof(metrics));
4126 if (rt->rt6i_pmtu)
4127 metrics[RTAX_MTU - 1] = rt->rt6i_pmtu;
4128 if (rtnetlink_put_metrics(skb, metrics) < 0)
Thomas Graf2d7202b2006-08-22 00:01:27 -07004129 goto nla_put_failure;
4130
David S. Millerc78679e2012-04-01 20:27:33 -04004131 if (nla_put_u32(skb, RTA_PRIORITY, rt->rt6i_metric))
4132 goto nla_put_failure;
Li Wei82539472012-07-29 16:01:30 +00004133
David Ahernbeb1afac52017-02-02 12:37:09 -08004134 /* For multipath routes, walk the siblings list and add
4135 * each as a nexthop within RTA_MULTIPATH.
4136 */
4137 if (rt->rt6i_nsiblings) {
4138 struct rt6_info *sibling, *next_sibling;
4139 struct nlattr *mp;
4140
4141 mp = nla_nest_start(skb, RTA_MULTIPATH);
4142 if (!mp)
4143 goto nla_put_failure;
4144
4145 if (rt6_add_nexthop(skb, rt) < 0)
4146 goto nla_put_failure;
4147
4148 list_for_each_entry_safe(sibling, next_sibling,
4149 &rt->rt6i_siblings, rt6i_siblings) {
4150 if (rt6_add_nexthop(skb, sibling) < 0)
4151 goto nla_put_failure;
4152 }
4153
4154 nla_nest_end(skb, mp);
4155 } else {
David Ahern5be083c2017-03-06 15:57:31 -08004156 if (rt6_nexthop_info(skb, rt, &rtm->rtm_flags, false) < 0)
David Ahernbeb1afac52017-02-02 12:37:09 -08004157 goto nla_put_failure;
4158 }
4159
Li Wei82539472012-07-29 16:01:30 +00004160 expires = (rt->rt6i_flags & RTF_EXPIRES) ? rt->dst.expires - jiffies : 0;
YOSHIFUJI Hideaki69cdf8f2008-05-19 16:55:13 -07004161
David S. Miller87a50692012-07-10 05:06:14 -07004162 if (rtnl_put_cacheinfo(skb, &rt->dst, 0, expires, rt->dst.error) < 0)
Thomas Grafe3703b32006-11-27 09:27:07 -08004163 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004164
Lubomir Rintelc78ba6d2015-03-11 15:39:21 +01004165 if (nla_put_u8(skb, RTA_PREF, IPV6_EXTRACT_PREF(rt->rt6i_flags)))
4166 goto nla_put_failure;
4167
Roopa Prabhu19e42e42015-07-21 10:43:48 +02004168
Johannes Berg053c0952015-01-16 22:09:00 +01004169 nlmsg_end(skb, nlh);
4170 return 0;
Thomas Graf2d7202b2006-08-22 00:01:27 -07004171
4172nla_put_failure:
Patrick McHardy26932562007-01-31 23:16:40 -08004173 nlmsg_cancel(skb, nlh);
4174 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004175}
4176
Patrick McHardy1b43af52006-08-10 23:11:17 -07004177int rt6_dump_route(struct rt6_info *rt, void *p_arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004178{
4179 struct rt6_rtnl_dump_arg *arg = (struct rt6_rtnl_dump_arg *) p_arg;
David Ahern1f17e2f2017-01-26 13:54:08 -08004180 struct net *net = arg->net;
4181
4182 if (rt == net->ipv6.ip6_null_entry)
4183 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004184
Thomas Graf2d7202b2006-08-22 00:01:27 -07004185 if (nlmsg_len(arg->cb->nlh) >= sizeof(struct rtmsg)) {
4186 struct rtmsg *rtm = nlmsg_data(arg->cb->nlh);
David Ahernf8cfe2c2017-01-17 15:51:08 -08004187
4188 /* user wants prefix routes only */
4189 if (rtm->rtm_flags & RTM_F_PREFIX &&
4190 !(rt->rt6i_flags & RTF_PREFIX_RT)) {
4191 /* success since this is not a prefix route */
4192 return 1;
4193 }
4194 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004195
David Ahern1f17e2f2017-01-26 13:54:08 -08004196 return rt6_fill_node(net,
Brian Haley191cd582008-08-14 15:33:21 -07004197 arg->skb, rt, NULL, NULL, 0, RTM_NEWROUTE,
Eric W. Biederman15e47302012-09-07 20:12:54 +00004198 NETLINK_CB(arg->cb->skb).portid, arg->cb->nlh->nlmsg_seq,
David Ahernf8cfe2c2017-01-17 15:51:08 -08004199 NLM_F_MULTI);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004200}
4201
David Ahernc21ef3e2017-04-16 09:48:24 -07004202static int inet6_rtm_getroute(struct sk_buff *in_skb, struct nlmsghdr *nlh,
4203 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004204{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09004205 struct net *net = sock_net(in_skb->sk);
Thomas Grafab364a62006-08-22 00:01:47 -07004206 struct nlattr *tb[RTA_MAX+1];
Roopa Prabhu18c3a612017-05-25 10:42:40 -07004207 int err, iif = 0, oif = 0;
4208 struct dst_entry *dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004209 struct rt6_info *rt;
Thomas Grafab364a62006-08-22 00:01:47 -07004210 struct sk_buff *skb;
4211 struct rtmsg *rtm;
David S. Miller4c9483b2011-03-12 16:22:43 -05004212 struct flowi6 fl6;
Roopa Prabhu18c3a612017-05-25 10:42:40 -07004213 bool fibmatch;
Thomas Grafab364a62006-08-22 00:01:47 -07004214
Johannes Bergfceb6432017-04-12 14:34:07 +02004215 err = nlmsg_parse(nlh, sizeof(*rtm), tb, RTA_MAX, rtm_ipv6_policy,
David Ahernc21ef3e2017-04-16 09:48:24 -07004216 extack);
Thomas Grafab364a62006-08-22 00:01:47 -07004217 if (err < 0)
4218 goto errout;
4219
4220 err = -EINVAL;
David S. Miller4c9483b2011-03-12 16:22:43 -05004221 memset(&fl6, 0, sizeof(fl6));
Hannes Frederic Sowa38b70972016-06-11 20:08:19 +02004222 rtm = nlmsg_data(nlh);
4223 fl6.flowlabel = ip6_make_flowinfo(rtm->rtm_tos, 0);
Roopa Prabhu18c3a612017-05-25 10:42:40 -07004224 fibmatch = !!(rtm->rtm_flags & RTM_F_FIB_MATCH);
Thomas Grafab364a62006-08-22 00:01:47 -07004225
4226 if (tb[RTA_SRC]) {
4227 if (nla_len(tb[RTA_SRC]) < sizeof(struct in6_addr))
4228 goto errout;
4229
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00004230 fl6.saddr = *(struct in6_addr *)nla_data(tb[RTA_SRC]);
Thomas Grafab364a62006-08-22 00:01:47 -07004231 }
4232
4233 if (tb[RTA_DST]) {
4234 if (nla_len(tb[RTA_DST]) < sizeof(struct in6_addr))
4235 goto errout;
4236
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00004237 fl6.daddr = *(struct in6_addr *)nla_data(tb[RTA_DST]);
Thomas Grafab364a62006-08-22 00:01:47 -07004238 }
4239
4240 if (tb[RTA_IIF])
4241 iif = nla_get_u32(tb[RTA_IIF]);
4242
4243 if (tb[RTA_OIF])
Shmulik Ladkani72331bc2012-04-01 04:03:45 +00004244 oif = nla_get_u32(tb[RTA_OIF]);
Thomas Grafab364a62006-08-22 00:01:47 -07004245
Lorenzo Colitti2e47b292014-05-15 16:38:41 -07004246 if (tb[RTA_MARK])
4247 fl6.flowi6_mark = nla_get_u32(tb[RTA_MARK]);
4248
Lorenzo Colitti622ec2c2016-11-04 02:23:42 +09004249 if (tb[RTA_UID])
4250 fl6.flowi6_uid = make_kuid(current_user_ns(),
4251 nla_get_u32(tb[RTA_UID]));
4252 else
4253 fl6.flowi6_uid = iif ? INVALID_UID : current_uid();
4254
Thomas Grafab364a62006-08-22 00:01:47 -07004255 if (iif) {
4256 struct net_device *dev;
Shmulik Ladkani72331bc2012-04-01 04:03:45 +00004257 int flags = 0;
4258
Florian Westphal121622d2017-08-15 16:34:42 +02004259 rcu_read_lock();
4260
4261 dev = dev_get_by_index_rcu(net, iif);
Thomas Grafab364a62006-08-22 00:01:47 -07004262 if (!dev) {
Florian Westphal121622d2017-08-15 16:34:42 +02004263 rcu_read_unlock();
Thomas Grafab364a62006-08-22 00:01:47 -07004264 err = -ENODEV;
4265 goto errout;
4266 }
Shmulik Ladkani72331bc2012-04-01 04:03:45 +00004267
4268 fl6.flowi6_iif = iif;
4269
4270 if (!ipv6_addr_any(&fl6.saddr))
4271 flags |= RT6_LOOKUP_F_HAS_SADDR;
4272
Roopa Prabhu18c3a612017-05-25 10:42:40 -07004273 if (!fibmatch)
4274 dst = ip6_route_input_lookup(net, dev, &fl6, flags);
Arnd Bergmann401481e2017-08-18 13:34:22 +02004275 else
4276 dst = ip6_route_lookup(net, &fl6, 0);
Florian Westphal121622d2017-08-15 16:34:42 +02004277
4278 rcu_read_unlock();
Shmulik Ladkani72331bc2012-04-01 04:03:45 +00004279 } else {
4280 fl6.flowi6_oif = oif;
4281
Roopa Prabhu18c3a612017-05-25 10:42:40 -07004282 if (!fibmatch)
4283 dst = ip6_route_output(net, NULL, &fl6);
Arnd Bergmann401481e2017-08-18 13:34:22 +02004284 else
4285 dst = ip6_route_lookup(net, &fl6, 0);
Roopa Prabhu18c3a612017-05-25 10:42:40 -07004286 }
4287
Roopa Prabhu18c3a612017-05-25 10:42:40 -07004288
4289 rt = container_of(dst, struct rt6_info, dst);
4290 if (rt->dst.error) {
4291 err = rt->dst.error;
4292 ip6_rt_put(rt);
4293 goto errout;
Thomas Grafab364a62006-08-22 00:01:47 -07004294 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004295
WANG Cong9d6acb32017-03-01 20:48:39 -08004296 if (rt == net->ipv6.ip6_null_entry) {
4297 err = rt->dst.error;
4298 ip6_rt_put(rt);
4299 goto errout;
4300 }
4301
Linus Torvalds1da177e2005-04-16 15:20:36 -07004302 skb = alloc_skb(NLMSG_GOODSIZE, GFP_KERNEL);
David S. Miller38308472011-12-03 18:02:47 -05004303 if (!skb) {
Amerigo Wang94e187c2012-10-29 00:13:19 +00004304 ip6_rt_put(rt);
Thomas Grafab364a62006-08-22 00:01:47 -07004305 err = -ENOBUFS;
4306 goto errout;
4307 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004308
Changli Gaod8d1f302010-06-10 23:31:35 -07004309 skb_dst_set(skb, &rt->dst);
Roopa Prabhu18c3a612017-05-25 10:42:40 -07004310 if (fibmatch)
4311 err = rt6_fill_node(net, skb, rt, NULL, NULL, iif,
4312 RTM_NEWROUTE, NETLINK_CB(in_skb).portid,
4313 nlh->nlmsg_seq, 0);
4314 else
4315 err = rt6_fill_node(net, skb, rt, &fl6.daddr, &fl6.saddr, iif,
4316 RTM_NEWROUTE, NETLINK_CB(in_skb).portid,
4317 nlh->nlmsg_seq, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004318 if (err < 0) {
Thomas Grafab364a62006-08-22 00:01:47 -07004319 kfree_skb(skb);
4320 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004321 }
4322
Eric W. Biederman15e47302012-09-07 20:12:54 +00004323 err = rtnl_unicast(skb, net, NETLINK_CB(in_skb).portid);
Thomas Grafab364a62006-08-22 00:01:47 -07004324errout:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004325 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004326}
4327
Roopa Prabhu37a1d362015-09-13 10:18:33 -07004328void inet6_rt_notify(int event, struct rt6_info *rt, struct nl_info *info,
4329 unsigned int nlm_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004330{
4331 struct sk_buff *skb;
Daniel Lezcano55786892008-03-04 13:47:47 -08004332 struct net *net = info->nl_net;
Denis V. Lunev528c4ce2007-12-13 09:45:12 -08004333 u32 seq;
4334 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004335
Denis V. Lunev528c4ce2007-12-13 09:45:12 -08004336 err = -ENOBUFS;
David S. Miller38308472011-12-03 18:02:47 -05004337 seq = info->nlh ? info->nlh->nlmsg_seq : 0;
Thomas Graf86872cb2006-08-22 00:01:08 -07004338
Roopa Prabhu19e42e42015-07-21 10:43:48 +02004339 skb = nlmsg_new(rt6_nlmsg_size(rt), gfp_any());
David S. Miller38308472011-12-03 18:02:47 -05004340 if (!skb)
Thomas Graf21713eb2006-08-15 00:35:24 -07004341 goto errout;
4342
Brian Haley191cd582008-08-14 15:33:21 -07004343 err = rt6_fill_node(net, skb, rt, NULL, NULL, 0,
David Ahernf8cfe2c2017-01-17 15:51:08 -08004344 event, info->portid, seq, nlm_flags);
Patrick McHardy26932562007-01-31 23:16:40 -08004345 if (err < 0) {
4346 /* -EMSGSIZE implies BUG in rt6_nlmsg_size() */
4347 WARN_ON(err == -EMSGSIZE);
4348 kfree_skb(skb);
4349 goto errout;
4350 }
Eric W. Biederman15e47302012-09-07 20:12:54 +00004351 rtnl_notify(skb, net, info->portid, RTNLGRP_IPV6_ROUTE,
Pablo Neira Ayuso1ce85fe2009-02-24 23:18:28 -08004352 info->nlh, gfp_any());
4353 return;
Thomas Graf21713eb2006-08-15 00:35:24 -07004354errout:
4355 if (err < 0)
Daniel Lezcano55786892008-03-04 13:47:47 -08004356 rtnl_set_sk_err(net, RTNLGRP_IPV6_ROUTE, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004357}
4358
Daniel Lezcano8ed67782008-03-04 13:48:30 -08004359static int ip6_route_dev_notify(struct notifier_block *this,
Jiri Pirko351638e2013-05-28 01:30:21 +00004360 unsigned long event, void *ptr)
Daniel Lezcano8ed67782008-03-04 13:48:30 -08004361{
Jiri Pirko351638e2013-05-28 01:30:21 +00004362 struct net_device *dev = netdev_notifier_info_to_dev(ptr);
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09004363 struct net *net = dev_net(dev);
Daniel Lezcano8ed67782008-03-04 13:48:30 -08004364
WANG Cong242d3a42017-05-08 10:12:13 -07004365 if (!(dev->flags & IFF_LOOPBACK))
4366 return NOTIFY_OK;
4367
4368 if (event == NETDEV_REGISTER) {
Changli Gaod8d1f302010-06-10 23:31:35 -07004369 net->ipv6.ip6_null_entry->dst.dev = dev;
Daniel Lezcano8ed67782008-03-04 13:48:30 -08004370 net->ipv6.ip6_null_entry->rt6i_idev = in6_dev_get(dev);
4371#ifdef CONFIG_IPV6_MULTIPLE_TABLES
Changli Gaod8d1f302010-06-10 23:31:35 -07004372 net->ipv6.ip6_prohibit_entry->dst.dev = dev;
Daniel Lezcano8ed67782008-03-04 13:48:30 -08004373 net->ipv6.ip6_prohibit_entry->rt6i_idev = in6_dev_get(dev);
Changli Gaod8d1f302010-06-10 23:31:35 -07004374 net->ipv6.ip6_blk_hole_entry->dst.dev = dev;
Daniel Lezcano8ed67782008-03-04 13:48:30 -08004375 net->ipv6.ip6_blk_hole_entry->rt6i_idev = in6_dev_get(dev);
4376#endif
WANG Cong76da0702017-06-20 11:42:27 -07004377 } else if (event == NETDEV_UNREGISTER &&
4378 dev->reg_state != NETREG_UNREGISTERED) {
4379 /* NETDEV_UNREGISTER could be fired for multiple times by
4380 * netdev_wait_allrefs(). Make sure we only call this once.
4381 */
Eric Dumazet12d94a82017-08-15 04:09:51 -07004382 in6_dev_put_clear(&net->ipv6.ip6_null_entry->rt6i_idev);
WANG Cong242d3a42017-05-08 10:12:13 -07004383#ifdef CONFIG_IPV6_MULTIPLE_TABLES
Eric Dumazet12d94a82017-08-15 04:09:51 -07004384 in6_dev_put_clear(&net->ipv6.ip6_prohibit_entry->rt6i_idev);
4385 in6_dev_put_clear(&net->ipv6.ip6_blk_hole_entry->rt6i_idev);
WANG Cong242d3a42017-05-08 10:12:13 -07004386#endif
Daniel Lezcano8ed67782008-03-04 13:48:30 -08004387 }
4388
4389 return NOTIFY_OK;
4390}
4391
Linus Torvalds1da177e2005-04-16 15:20:36 -07004392/*
4393 * /proc
4394 */
4395
4396#ifdef CONFIG_PROC_FS
4397
Alexey Dobriyan33120b32007-11-06 05:27:11 -08004398static const struct file_operations ipv6_route_proc_fops = {
4399 .owner = THIS_MODULE,
4400 .open = ipv6_route_open,
4401 .read = seq_read,
4402 .llseek = seq_lseek,
Hannes Frederic Sowa8d2ca1d2013-09-21 16:55:59 +02004403 .release = seq_release_net,
Alexey Dobriyan33120b32007-11-06 05:27:11 -08004404};
4405
Linus Torvalds1da177e2005-04-16 15:20:36 -07004406static int rt6_stats_seq_show(struct seq_file *seq, void *v)
4407{
Daniel Lezcano69ddb802008-03-04 13:46:23 -08004408 struct net *net = (struct net *)seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004409 seq_printf(seq, "%04x %04x %04x %04x %04x %04x %04x\n",
Daniel Lezcano69ddb802008-03-04 13:46:23 -08004410 net->ipv6.rt6_stats->fib_nodes,
4411 net->ipv6.rt6_stats->fib_route_nodes,
4412 net->ipv6.rt6_stats->fib_rt_alloc,
4413 net->ipv6.rt6_stats->fib_rt_entries,
4414 net->ipv6.rt6_stats->fib_rt_cache,
Eric Dumazetfc66f952010-10-08 06:37:34 +00004415 dst_entries_get_slow(&net->ipv6.ip6_dst_ops),
Daniel Lezcano69ddb802008-03-04 13:46:23 -08004416 net->ipv6.rt6_stats->fib_discarded_routes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004417
4418 return 0;
4419}
4420
4421static int rt6_stats_seq_open(struct inode *inode, struct file *file)
4422{
Pavel Emelyanovde05c552008-07-18 04:07:21 -07004423 return single_open_net(inode, file, rt6_stats_seq_show);
Daniel Lezcano69ddb802008-03-04 13:46:23 -08004424}
4425
Arjan van de Ven9a321442007-02-12 00:55:35 -08004426static const struct file_operations rt6_stats_seq_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004427 .owner = THIS_MODULE,
4428 .open = rt6_stats_seq_open,
4429 .read = seq_read,
4430 .llseek = seq_lseek,
Pavel Emelyanovb6fcbdb2008-07-18 04:07:44 -07004431 .release = single_release_net,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004432};
4433#endif /* CONFIG_PROC_FS */
4434
4435#ifdef CONFIG_SYSCTL
4436
Linus Torvalds1da177e2005-04-16 15:20:36 -07004437static
Joe Perchesfe2c6332013-06-11 23:04:25 -07004438int ipv6_sysctl_rtcache_flush(struct ctl_table *ctl, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004439 void __user *buffer, size_t *lenp, loff_t *ppos)
4440{
Lucian Adrian Grijincuc486da32011-02-24 19:48:03 +00004441 struct net *net;
4442 int delay;
4443 if (!write)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004444 return -EINVAL;
Lucian Adrian Grijincuc486da32011-02-24 19:48:03 +00004445
4446 net = (struct net *)ctl->extra1;
4447 delay = net->ipv6.sysctl.flush_delay;
4448 proc_dointvec(ctl, write, buffer, lenp, ppos);
Michal Kubeček2ac3ac82013-08-01 10:04:14 +02004449 fib6_run_gc(delay <= 0 ? 0 : (unsigned long)delay, net, delay > 0);
Lucian Adrian Grijincuc486da32011-02-24 19:48:03 +00004450 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004451}
4452
Joe Perchesfe2c6332013-06-11 23:04:25 -07004453struct ctl_table ipv6_route_table_template[] = {
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09004454 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004455 .procname = "flush",
Daniel Lezcano49905092008-01-10 03:01:01 -08004456 .data = &init_net.ipv6.sysctl.flush_delay,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004457 .maxlen = sizeof(int),
Dave Jones89c8b3a12005-04-28 12:11:49 -07004458 .mode = 0200,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08004459 .proc_handler = ipv6_sysctl_rtcache_flush
Linus Torvalds1da177e2005-04-16 15:20:36 -07004460 },
4461 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004462 .procname = "gc_thresh",
Daniel Lezcano9a7ec3a2008-03-04 13:48:53 -08004463 .data = &ip6_dst_ops_template.gc_thresh,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004464 .maxlen = sizeof(int),
4465 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08004466 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004467 },
4468 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004469 .procname = "max_size",
Daniel Lezcano49905092008-01-10 03:01:01 -08004470 .data = &init_net.ipv6.sysctl.ip6_rt_max_size,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004471 .maxlen = sizeof(int),
4472 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08004473 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004474 },
4475 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004476 .procname = "gc_min_interval",
Daniel Lezcano49905092008-01-10 03:01:01 -08004477 .data = &init_net.ipv6.sysctl.ip6_rt_gc_min_interval,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004478 .maxlen = sizeof(int),
4479 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08004480 .proc_handler = proc_dointvec_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004481 },
4482 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004483 .procname = "gc_timeout",
Daniel Lezcano49905092008-01-10 03:01:01 -08004484 .data = &init_net.ipv6.sysctl.ip6_rt_gc_timeout,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004485 .maxlen = sizeof(int),
4486 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08004487 .proc_handler = proc_dointvec_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004488 },
4489 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004490 .procname = "gc_interval",
Daniel Lezcano49905092008-01-10 03:01:01 -08004491 .data = &init_net.ipv6.sysctl.ip6_rt_gc_interval,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004492 .maxlen = sizeof(int),
4493 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08004494 .proc_handler = proc_dointvec_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004495 },
4496 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004497 .procname = "gc_elasticity",
Daniel Lezcano49905092008-01-10 03:01:01 -08004498 .data = &init_net.ipv6.sysctl.ip6_rt_gc_elasticity,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004499 .maxlen = sizeof(int),
4500 .mode = 0644,
Min Zhangf3d3f612010-08-14 22:42:51 -07004501 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004502 },
4503 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004504 .procname = "mtu_expires",
Daniel Lezcano49905092008-01-10 03:01:01 -08004505 .data = &init_net.ipv6.sysctl.ip6_rt_mtu_expires,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004506 .maxlen = sizeof(int),
4507 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08004508 .proc_handler = proc_dointvec_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004509 },
4510 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004511 .procname = "min_adv_mss",
Daniel Lezcano49905092008-01-10 03:01:01 -08004512 .data = &init_net.ipv6.sysctl.ip6_rt_min_advmss,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004513 .maxlen = sizeof(int),
4514 .mode = 0644,
Min Zhangf3d3f612010-08-14 22:42:51 -07004515 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004516 },
4517 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004518 .procname = "gc_min_interval_ms",
Daniel Lezcano49905092008-01-10 03:01:01 -08004519 .data = &init_net.ipv6.sysctl.ip6_rt_gc_min_interval,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004520 .maxlen = sizeof(int),
4521 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08004522 .proc_handler = proc_dointvec_ms_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004523 },
Eric W. Biedermanf8572d82009-11-05 13:32:03 -08004524 { }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004525};
4526
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00004527struct ctl_table * __net_init ipv6_route_sysctl_init(struct net *net)
Daniel Lezcano760f2d02008-01-10 02:53:43 -08004528{
4529 struct ctl_table *table;
4530
4531 table = kmemdup(ipv6_route_table_template,
4532 sizeof(ipv6_route_table_template),
4533 GFP_KERNEL);
YOSHIFUJI Hideaki5ee09102008-02-28 00:24:28 +09004534
4535 if (table) {
4536 table[0].data = &net->ipv6.sysctl.flush_delay;
Lucian Adrian Grijincuc486da32011-02-24 19:48:03 +00004537 table[0].extra1 = net;
Alexey Dobriyan86393e52009-08-29 01:34:49 +00004538 table[1].data = &net->ipv6.ip6_dst_ops.gc_thresh;
YOSHIFUJI Hideaki5ee09102008-02-28 00:24:28 +09004539 table[2].data = &net->ipv6.sysctl.ip6_rt_max_size;
4540 table[3].data = &net->ipv6.sysctl.ip6_rt_gc_min_interval;
4541 table[4].data = &net->ipv6.sysctl.ip6_rt_gc_timeout;
4542 table[5].data = &net->ipv6.sysctl.ip6_rt_gc_interval;
4543 table[6].data = &net->ipv6.sysctl.ip6_rt_gc_elasticity;
4544 table[7].data = &net->ipv6.sysctl.ip6_rt_mtu_expires;
4545 table[8].data = &net->ipv6.sysctl.ip6_rt_min_advmss;
Alexey Dobriyan9c69fab2009-12-18 20:11:03 -08004546 table[9].data = &net->ipv6.sysctl.ip6_rt_gc_min_interval;
Eric W. Biederman464dc802012-11-16 03:02:59 +00004547
4548 /* Don't export sysctls to unprivileged users */
4549 if (net->user_ns != &init_user_ns)
4550 table[0].procname = NULL;
YOSHIFUJI Hideaki5ee09102008-02-28 00:24:28 +09004551 }
4552
Daniel Lezcano760f2d02008-01-10 02:53:43 -08004553 return table;
4554}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004555#endif
4556
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00004557static int __net_init ip6_route_net_init(struct net *net)
Daniel Lezcanocdb18762008-03-04 13:45:33 -08004558{
Pavel Emelyanov633d424b2008-04-21 14:25:23 -07004559 int ret = -ENOMEM;
Daniel Lezcano8ed67782008-03-04 13:48:30 -08004560
Alexey Dobriyan86393e52009-08-29 01:34:49 +00004561 memcpy(&net->ipv6.ip6_dst_ops, &ip6_dst_ops_template,
4562 sizeof(net->ipv6.ip6_dst_ops));
Benjamin Theryf2fc6a52008-03-04 13:49:23 -08004563
Eric Dumazetfc66f952010-10-08 06:37:34 +00004564 if (dst_entries_init(&net->ipv6.ip6_dst_ops) < 0)
4565 goto out_ip6_dst_ops;
4566
Daniel Lezcano8ed67782008-03-04 13:48:30 -08004567 net->ipv6.ip6_null_entry = kmemdup(&ip6_null_entry_template,
4568 sizeof(*net->ipv6.ip6_null_entry),
4569 GFP_KERNEL);
4570 if (!net->ipv6.ip6_null_entry)
Eric Dumazetfc66f952010-10-08 06:37:34 +00004571 goto out_ip6_dst_entries;
Changli Gaod8d1f302010-06-10 23:31:35 -07004572 net->ipv6.ip6_null_entry->dst.path =
Daniel Lezcano8ed67782008-03-04 13:48:30 -08004573 (struct dst_entry *)net->ipv6.ip6_null_entry;
Changli Gaod8d1f302010-06-10 23:31:35 -07004574 net->ipv6.ip6_null_entry->dst.ops = &net->ipv6.ip6_dst_ops;
David S. Miller62fa8a82011-01-26 20:51:05 -08004575 dst_init_metrics(&net->ipv6.ip6_null_entry->dst,
4576 ip6_template_metrics, true);
Daniel Lezcano8ed67782008-03-04 13:48:30 -08004577
4578#ifdef CONFIG_IPV6_MULTIPLE_TABLES
Vincent Bernatfeca7d82017-08-08 20:23:49 +02004579 net->ipv6.fib6_has_custom_rules = false;
Daniel Lezcano8ed67782008-03-04 13:48:30 -08004580 net->ipv6.ip6_prohibit_entry = kmemdup(&ip6_prohibit_entry_template,
4581 sizeof(*net->ipv6.ip6_prohibit_entry),
4582 GFP_KERNEL);
Peter Zijlstra68fffc62008-10-07 14:12:10 -07004583 if (!net->ipv6.ip6_prohibit_entry)
4584 goto out_ip6_null_entry;
Changli Gaod8d1f302010-06-10 23:31:35 -07004585 net->ipv6.ip6_prohibit_entry->dst.path =
Daniel Lezcano8ed67782008-03-04 13:48:30 -08004586 (struct dst_entry *)net->ipv6.ip6_prohibit_entry;
Changli Gaod8d1f302010-06-10 23:31:35 -07004587 net->ipv6.ip6_prohibit_entry->dst.ops = &net->ipv6.ip6_dst_ops;
David S. Miller62fa8a82011-01-26 20:51:05 -08004588 dst_init_metrics(&net->ipv6.ip6_prohibit_entry->dst,
4589 ip6_template_metrics, true);
Daniel Lezcano8ed67782008-03-04 13:48:30 -08004590
4591 net->ipv6.ip6_blk_hole_entry = kmemdup(&ip6_blk_hole_entry_template,
4592 sizeof(*net->ipv6.ip6_blk_hole_entry),
4593 GFP_KERNEL);
Peter Zijlstra68fffc62008-10-07 14:12:10 -07004594 if (!net->ipv6.ip6_blk_hole_entry)
4595 goto out_ip6_prohibit_entry;
Changli Gaod8d1f302010-06-10 23:31:35 -07004596 net->ipv6.ip6_blk_hole_entry->dst.path =
Daniel Lezcano8ed67782008-03-04 13:48:30 -08004597 (struct dst_entry *)net->ipv6.ip6_blk_hole_entry;
Changli Gaod8d1f302010-06-10 23:31:35 -07004598 net->ipv6.ip6_blk_hole_entry->dst.ops = &net->ipv6.ip6_dst_ops;
David S. Miller62fa8a82011-01-26 20:51:05 -08004599 dst_init_metrics(&net->ipv6.ip6_blk_hole_entry->dst,
4600 ip6_template_metrics, true);
Daniel Lezcano8ed67782008-03-04 13:48:30 -08004601#endif
4602
Peter Zijlstrab339a47c2008-10-07 14:15:00 -07004603 net->ipv6.sysctl.flush_delay = 0;
4604 net->ipv6.sysctl.ip6_rt_max_size = 4096;
4605 net->ipv6.sysctl.ip6_rt_gc_min_interval = HZ / 2;
4606 net->ipv6.sysctl.ip6_rt_gc_timeout = 60*HZ;
4607 net->ipv6.sysctl.ip6_rt_gc_interval = 30*HZ;
4608 net->ipv6.sysctl.ip6_rt_gc_elasticity = 9;
4609 net->ipv6.sysctl.ip6_rt_mtu_expires = 10*60*HZ;
4610 net->ipv6.sysctl.ip6_rt_min_advmss = IPV6_MIN_MTU - 20 - 40;
4611
Benjamin Thery6891a342008-03-04 13:49:47 -08004612 net->ipv6.ip6_rt_gc_expire = 30*HZ;
4613
Daniel Lezcano8ed67782008-03-04 13:48:30 -08004614 ret = 0;
4615out:
4616 return ret;
Benjamin Theryf2fc6a52008-03-04 13:49:23 -08004617
Peter Zijlstra68fffc62008-10-07 14:12:10 -07004618#ifdef CONFIG_IPV6_MULTIPLE_TABLES
4619out_ip6_prohibit_entry:
4620 kfree(net->ipv6.ip6_prohibit_entry);
4621out_ip6_null_entry:
4622 kfree(net->ipv6.ip6_null_entry);
4623#endif
Eric Dumazetfc66f952010-10-08 06:37:34 +00004624out_ip6_dst_entries:
4625 dst_entries_destroy(&net->ipv6.ip6_dst_ops);
Benjamin Theryf2fc6a52008-03-04 13:49:23 -08004626out_ip6_dst_ops:
Benjamin Theryf2fc6a52008-03-04 13:49:23 -08004627 goto out;
Daniel Lezcanocdb18762008-03-04 13:45:33 -08004628}
4629
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00004630static void __net_exit ip6_route_net_exit(struct net *net)
Daniel Lezcanocdb18762008-03-04 13:45:33 -08004631{
Daniel Lezcano8ed67782008-03-04 13:48:30 -08004632 kfree(net->ipv6.ip6_null_entry);
4633#ifdef CONFIG_IPV6_MULTIPLE_TABLES
4634 kfree(net->ipv6.ip6_prohibit_entry);
4635 kfree(net->ipv6.ip6_blk_hole_entry);
4636#endif
Xiaotian Feng41bb78b2010-11-02 16:11:05 +00004637 dst_entries_destroy(&net->ipv6.ip6_dst_ops);
Daniel Lezcanocdb18762008-03-04 13:45:33 -08004638}
4639
Thomas Grafd1896342012-06-18 12:08:33 +00004640static int __net_init ip6_route_net_init_late(struct net *net)
4641{
4642#ifdef CONFIG_PROC_FS
Gao fengd4beaa62013-02-18 01:34:54 +00004643 proc_create("ipv6_route", 0, net->proc_net, &ipv6_route_proc_fops);
4644 proc_create("rt6_stats", S_IRUGO, net->proc_net, &rt6_stats_seq_fops);
Thomas Grafd1896342012-06-18 12:08:33 +00004645#endif
4646 return 0;
4647}
4648
4649static void __net_exit ip6_route_net_exit_late(struct net *net)
4650{
4651#ifdef CONFIG_PROC_FS
Gao fengece31ff2013-02-18 01:34:56 +00004652 remove_proc_entry("ipv6_route", net->proc_net);
4653 remove_proc_entry("rt6_stats", net->proc_net);
Thomas Grafd1896342012-06-18 12:08:33 +00004654#endif
4655}
4656
Daniel Lezcanocdb18762008-03-04 13:45:33 -08004657static struct pernet_operations ip6_route_net_ops = {
4658 .init = ip6_route_net_init,
4659 .exit = ip6_route_net_exit,
4660};
4661
David S. Millerc3426b42012-06-09 16:27:05 -07004662static int __net_init ipv6_inetpeer_init(struct net *net)
4663{
4664 struct inet_peer_base *bp = kmalloc(sizeof(*bp), GFP_KERNEL);
4665
4666 if (!bp)
4667 return -ENOMEM;
4668 inet_peer_base_init(bp);
4669 net->ipv6.peers = bp;
4670 return 0;
4671}
4672
4673static void __net_exit ipv6_inetpeer_exit(struct net *net)
4674{
4675 struct inet_peer_base *bp = net->ipv6.peers;
4676
4677 net->ipv6.peers = NULL;
David S. Miller56a6b242012-06-09 16:32:41 -07004678 inetpeer_invalidate_tree(bp);
David S. Millerc3426b42012-06-09 16:27:05 -07004679 kfree(bp);
4680}
4681
David S. Miller2b823f72012-06-09 19:00:16 -07004682static struct pernet_operations ipv6_inetpeer_ops = {
David S. Millerc3426b42012-06-09 16:27:05 -07004683 .init = ipv6_inetpeer_init,
4684 .exit = ipv6_inetpeer_exit,
4685};
4686
Thomas Grafd1896342012-06-18 12:08:33 +00004687static struct pernet_operations ip6_route_net_late_ops = {
4688 .init = ip6_route_net_init_late,
4689 .exit = ip6_route_net_exit_late,
4690};
4691
Daniel Lezcano8ed67782008-03-04 13:48:30 -08004692static struct notifier_block ip6_route_dev_notifier = {
4693 .notifier_call = ip6_route_dev_notify,
WANG Cong242d3a42017-05-08 10:12:13 -07004694 .priority = ADDRCONF_NOTIFY_PRIORITY - 10,
Daniel Lezcano8ed67782008-03-04 13:48:30 -08004695};
4696
WANG Cong2f460932017-05-03 22:07:31 -07004697void __init ip6_route_init_special_entries(void)
4698{
4699 /* Registering of the loopback is done before this portion of code,
4700 * the loopback reference in rt6_info will not be taken, do it
4701 * manually for init_net */
4702 init_net.ipv6.ip6_null_entry->dst.dev = init_net.loopback_dev;
4703 init_net.ipv6.ip6_null_entry->rt6i_idev = in6_dev_get(init_net.loopback_dev);
4704 #ifdef CONFIG_IPV6_MULTIPLE_TABLES
4705 init_net.ipv6.ip6_prohibit_entry->dst.dev = init_net.loopback_dev;
4706 init_net.ipv6.ip6_prohibit_entry->rt6i_idev = in6_dev_get(init_net.loopback_dev);
4707 init_net.ipv6.ip6_blk_hole_entry->dst.dev = init_net.loopback_dev;
4708 init_net.ipv6.ip6_blk_hole_entry->rt6i_idev = in6_dev_get(init_net.loopback_dev);
4709 #endif
4710}
4711
Daniel Lezcano433d49c2007-12-07 00:43:48 -08004712int __init ip6_route_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004713{
Daniel Lezcano433d49c2007-12-07 00:43:48 -08004714 int ret;
Martin KaFai Lau8d0b94a2015-05-22 20:56:04 -07004715 int cpu;
Daniel Lezcano433d49c2007-12-07 00:43:48 -08004716
Daniel Lezcano9a7ec3a2008-03-04 13:48:53 -08004717 ret = -ENOMEM;
4718 ip6_dst_ops_template.kmem_cachep =
4719 kmem_cache_create("ip6_dst_cache", sizeof(struct rt6_info), 0,
4720 SLAB_HWCACHE_ALIGN, NULL);
4721 if (!ip6_dst_ops_template.kmem_cachep)
Fernando Carrijoc19a28e2009-01-07 18:09:08 -08004722 goto out;
David S. Miller14e50e52007-05-24 18:17:54 -07004723
Eric Dumazetfc66f952010-10-08 06:37:34 +00004724 ret = dst_entries_init(&ip6_dst_blackhole_ops);
Daniel Lezcano8ed67782008-03-04 13:48:30 -08004725 if (ret)
Daniel Lezcanobdb32892008-03-04 13:48:10 -08004726 goto out_kmem_cache;
Daniel Lezcanobdb32892008-03-04 13:48:10 -08004727
David S. Millerc3426b42012-06-09 16:27:05 -07004728 ret = register_pernet_subsys(&ipv6_inetpeer_ops);
4729 if (ret)
David S. Millere8803b62012-06-16 01:12:19 -07004730 goto out_dst_entries;
Thomas Graf2a0c4512012-06-14 23:00:17 +00004731
David S. Miller7e52b332012-06-15 15:51:55 -07004732 ret = register_pernet_subsys(&ip6_route_net_ops);
4733 if (ret)
4734 goto out_register_inetpeer;
David S. Millerc3426b42012-06-09 16:27:05 -07004735
Arnaud Ebalard5dc121e2008-10-01 02:37:56 -07004736 ip6_dst_blackhole_ops.kmem_cachep = ip6_dst_ops_template.kmem_cachep;
4737
David S. Millere8803b62012-06-16 01:12:19 -07004738 ret = fib6_init();
Daniel Lezcano433d49c2007-12-07 00:43:48 -08004739 if (ret)
Daniel Lezcano8ed67782008-03-04 13:48:30 -08004740 goto out_register_subsys;
Daniel Lezcano433d49c2007-12-07 00:43:48 -08004741
Daniel Lezcano433d49c2007-12-07 00:43:48 -08004742 ret = xfrm6_init();
4743 if (ret)
David S. Millere8803b62012-06-16 01:12:19 -07004744 goto out_fib6_init;
Daniel Lezcanoc35b7e72007-12-08 00:14:11 -08004745
Daniel Lezcano433d49c2007-12-07 00:43:48 -08004746 ret = fib6_rules_init();
4747 if (ret)
4748 goto xfrm6_init;
Daniel Lezcano7e5449c2007-12-08 00:14:54 -08004749
Thomas Grafd1896342012-06-18 12:08:33 +00004750 ret = register_pernet_subsys(&ip6_route_net_late_ops);
4751 if (ret)
4752 goto fib6_rules_init;
4753
Daniel Lezcano433d49c2007-12-07 00:43:48 -08004754 ret = -ENOBUFS;
Florian Westphalb97bac62017-08-09 20:41:48 +02004755 if (__rtnl_register(PF_INET6, RTM_NEWROUTE, inet6_rtm_newroute, NULL, 0) ||
4756 __rtnl_register(PF_INET6, RTM_DELROUTE, inet6_rtm_delroute, NULL, 0) ||
Florian Westphale3a22b72017-08-15 16:34:43 +02004757 __rtnl_register(PF_INET6, RTM_GETROUTE, inet6_rtm_getroute, NULL,
4758 RTNL_FLAG_DOIT_UNLOCKED))
Thomas Grafd1896342012-06-18 12:08:33 +00004759 goto out_register_late_subsys;
Daniel Lezcano433d49c2007-12-07 00:43:48 -08004760
Daniel Lezcano8ed67782008-03-04 13:48:30 -08004761 ret = register_netdevice_notifier(&ip6_route_dev_notifier);
Daniel Lezcanocdb18762008-03-04 13:45:33 -08004762 if (ret)
Thomas Grafd1896342012-06-18 12:08:33 +00004763 goto out_register_late_subsys;
Daniel Lezcano8ed67782008-03-04 13:48:30 -08004764
Martin KaFai Lau8d0b94a2015-05-22 20:56:04 -07004765 for_each_possible_cpu(cpu) {
4766 struct uncached_list *ul = per_cpu_ptr(&rt6_uncached_list, cpu);
4767
4768 INIT_LIST_HEAD(&ul->head);
4769 spin_lock_init(&ul->lock);
4770 }
4771
Daniel Lezcano433d49c2007-12-07 00:43:48 -08004772out:
4773 return ret;
4774
Thomas Grafd1896342012-06-18 12:08:33 +00004775out_register_late_subsys:
4776 unregister_pernet_subsys(&ip6_route_net_late_ops);
Daniel Lezcano433d49c2007-12-07 00:43:48 -08004777fib6_rules_init:
Daniel Lezcano433d49c2007-12-07 00:43:48 -08004778 fib6_rules_cleanup();
4779xfrm6_init:
Daniel Lezcano433d49c2007-12-07 00:43:48 -08004780 xfrm6_fini();
Thomas Graf2a0c4512012-06-14 23:00:17 +00004781out_fib6_init:
4782 fib6_gc_cleanup();
Daniel Lezcano8ed67782008-03-04 13:48:30 -08004783out_register_subsys:
4784 unregister_pernet_subsys(&ip6_route_net_ops);
David S. Miller7e52b332012-06-15 15:51:55 -07004785out_register_inetpeer:
4786 unregister_pernet_subsys(&ipv6_inetpeer_ops);
Eric Dumazetfc66f952010-10-08 06:37:34 +00004787out_dst_entries:
4788 dst_entries_destroy(&ip6_dst_blackhole_ops);
Daniel Lezcano433d49c2007-12-07 00:43:48 -08004789out_kmem_cache:
Benjamin Theryf2fc6a52008-03-04 13:49:23 -08004790 kmem_cache_destroy(ip6_dst_ops_template.kmem_cachep);
Daniel Lezcano433d49c2007-12-07 00:43:48 -08004791 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004792}
4793
4794void ip6_route_cleanup(void)
4795{
Daniel Lezcano8ed67782008-03-04 13:48:30 -08004796 unregister_netdevice_notifier(&ip6_route_dev_notifier);
Thomas Grafd1896342012-06-18 12:08:33 +00004797 unregister_pernet_subsys(&ip6_route_net_late_ops);
Thomas Graf101367c2006-08-04 03:39:02 -07004798 fib6_rules_cleanup();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004799 xfrm6_fini();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004800 fib6_gc_cleanup();
David S. Millerc3426b42012-06-09 16:27:05 -07004801 unregister_pernet_subsys(&ipv6_inetpeer_ops);
Daniel Lezcano8ed67782008-03-04 13:48:30 -08004802 unregister_pernet_subsys(&ip6_route_net_ops);
Xiaotian Feng41bb78b2010-11-02 16:11:05 +00004803 dst_entries_destroy(&ip6_dst_blackhole_ops);
Benjamin Theryf2fc6a52008-03-04 13:49:23 -08004804 kmem_cache_destroy(ip6_dst_ops_template.kmem_cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004805}