blob: d9805a857809cb53d13823731efd1f1d5e61716d [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,
715 struct rt6_info *rr_head,
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200716 u32 metric, int oif, int strict,
717 bool *do_rr)
David S. Millerf11e6652007-03-24 20:36:25 -0700718{
Steffen Klassert9fbdcfa2015-04-28 13:03:04 -0700719 struct rt6_info *rt, *match, *cont;
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800720 int mpri = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721
David S. Millerf11e6652007-03-24 20:36:25 -0700722 match = NULL;
Steffen Klassert9fbdcfa2015-04-28 13:03:04 -0700723 cont = NULL;
724 for (rt = rr_head; rt; rt = rt->dst.rt6_next) {
725 if (rt->rt6i_metric != metric) {
726 cont = rt;
727 break;
728 }
729
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200730 match = find_match(rt, oif, strict, &mpri, match, do_rr);
Steffen Klassert9fbdcfa2015-04-28 13:03:04 -0700731 }
732
733 for (rt = fn->leaf; rt && rt != rr_head; rt = rt->dst.rt6_next) {
734 if (rt->rt6i_metric != metric) {
735 cont = rt;
736 break;
737 }
738
739 match = find_match(rt, oif, strict, &mpri, match, do_rr);
740 }
741
742 if (match || !cont)
743 return match;
744
745 for (rt = cont; rt; rt = rt->dst.rt6_next)
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200746 match = find_match(rt, oif, strict, &mpri, match, do_rr);
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800747
David S. Millerf11e6652007-03-24 20:36:25 -0700748 return match;
749}
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800750
David S. Millerf11e6652007-03-24 20:36:25 -0700751static struct rt6_info *rt6_select(struct fib6_node *fn, int oif, int strict)
752{
753 struct rt6_info *match, *rt0;
Daniel Lezcano8ed67782008-03-04 13:48:30 -0800754 struct net *net;
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200755 bool do_rr = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756
David S. Millerf11e6652007-03-24 20:36:25 -0700757 rt0 = fn->rr_ptr;
758 if (!rt0)
759 fn->rr_ptr = rt0 = fn->leaf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200761 match = find_rr_leaf(fn, rt0, rt0->rt6i_metric, oif, strict,
762 &do_rr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200764 if (do_rr) {
Changli Gaod8d1f302010-06-10 23:31:35 -0700765 struct rt6_info *next = rt0->dst.rt6_next;
David S. Millerf11e6652007-03-24 20:36:25 -0700766
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800767 /* no entries matched; do round-robin */
David S. Millerf11e6652007-03-24 20:36:25 -0700768 if (!next || next->rt6i_metric != rt0->rt6i_metric)
769 next = fn->leaf;
770
771 if (next != rt0)
772 fn->rr_ptr = next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 }
774
David S. Millerd1918542011-12-28 20:19:20 -0500775 net = dev_net(rt0->dst.dev);
Eric Dumazeta02cec22010-09-22 20:43:57 +0000776 return match ? match : net->ipv6.ip6_null_entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777}
778
Martin KaFai Lau8b9df262015-05-22 20:55:59 -0700779static bool rt6_is_gw_or_nonexthop(const struct rt6_info *rt)
780{
781 return (rt->rt6i_flags & (RTF_NONEXTHOP | RTF_GATEWAY));
782}
783
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800784#ifdef CONFIG_IPV6_ROUTE_INFO
785int rt6_route_rcv(struct net_device *dev, u8 *opt, int len,
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000786 const struct in6_addr *gwaddr)
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800787{
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900788 struct net *net = dev_net(dev);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800789 struct route_info *rinfo = (struct route_info *) opt;
790 struct in6_addr prefix_buf, *prefix;
791 unsigned int pref;
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +0900792 unsigned long lifetime;
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800793 struct rt6_info *rt;
794
795 if (len < sizeof(struct route_info)) {
796 return -EINVAL;
797 }
798
799 /* Sanity check for prefix_len and length */
800 if (rinfo->length > 3) {
801 return -EINVAL;
802 } else if (rinfo->prefix_len > 128) {
803 return -EINVAL;
804 } else if (rinfo->prefix_len > 64) {
805 if (rinfo->length < 2) {
806 return -EINVAL;
807 }
808 } else if (rinfo->prefix_len > 0) {
809 if (rinfo->length < 1) {
810 return -EINVAL;
811 }
812 }
813
814 pref = rinfo->route_pref;
815 if (pref == ICMPV6_ROUTER_PREF_INVALID)
Jens Rosenboom3933fc92009-09-10 06:25:11 +0000816 return -EINVAL;
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800817
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +0900818 lifetime = addrconf_timeout_fixup(ntohl(rinfo->lifetime), HZ);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800819
820 if (rinfo->length == 3)
821 prefix = (struct in6_addr *)rinfo->prefix;
822 else {
823 /* this function is safe */
824 ipv6_addr_prefix(&prefix_buf,
825 (struct in6_addr *)rinfo->prefix,
826 rinfo->prefix_len);
827 prefix = &prefix_buf;
828 }
829
Duan Jiongf104a562013-11-08 09:56:53 +0800830 if (rinfo->prefix_len == 0)
831 rt = rt6_get_dflt_router(gwaddr, dev);
832 else
833 rt = rt6_get_route_info(net, prefix, rinfo->prefix_len,
David Ahern830218c2016-10-24 10:52:35 -0700834 gwaddr, dev);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800835
836 if (rt && !lifetime) {
Thomas Grafe0a1ad732006-08-22 00:00:21 -0700837 ip6_del_rt(rt);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800838 rt = NULL;
839 }
840
841 if (!rt && lifetime)
David Ahern830218c2016-10-24 10:52:35 -0700842 rt = rt6_add_route_info(net, prefix, rinfo->prefix_len, gwaddr,
843 dev, pref);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800844 else if (rt)
845 rt->rt6i_flags = RTF_ROUTEINFO |
846 (rt->rt6i_flags & ~RTF_PREF_MASK) | RTF_PREF(pref);
847
848 if (rt) {
Gao feng1716a962012-04-06 00:13:10 +0000849 if (!addrconf_finite_timeout(lifetime))
850 rt6_clean_expires(rt);
851 else
852 rt6_set_expires(rt, jiffies + HZ * lifetime);
853
Amerigo Wang94e187c2012-10-29 00:13:19 +0000854 ip6_rt_put(rt);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800855 }
856 return 0;
857}
858#endif
859
Martin KaFai Laua3c00e42014-10-20 13:42:43 -0700860static struct fib6_node* fib6_backtrack(struct fib6_node *fn,
861 struct in6_addr *saddr)
862{
863 struct fib6_node *pn;
864 while (1) {
865 if (fn->fn_flags & RTN_TL_ROOT)
866 return NULL;
867 pn = fn->parent;
868 if (FIB6_SUBTREE(pn) && FIB6_SUBTREE(pn) != fn)
869 fn = fib6_lookup(FIB6_SUBTREE(pn), NULL, saddr);
870 else
871 fn = pn;
872 if (fn->fn_flags & RTN_RTINFO)
873 return fn;
874 }
875}
Thomas Grafc71099a2006-08-04 23:20:06 -0700876
Daniel Lezcano8ed67782008-03-04 13:48:30 -0800877static struct rt6_info *ip6_pol_route_lookup(struct net *net,
878 struct fib6_table *table,
David S. Miller4c9483b2011-03-12 16:22:43 -0500879 struct flowi6 *fl6, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880{
881 struct fib6_node *fn;
882 struct rt6_info *rt;
883
Thomas Grafc71099a2006-08-04 23:20:06 -0700884 read_lock_bh(&table->tb6_lock);
David S. Miller4c9483b2011-03-12 16:22:43 -0500885 fn = fib6_lookup(&table->tb6_root, &fl6->daddr, &fl6->saddr);
Thomas Grafc71099a2006-08-04 23:20:06 -0700886restart:
887 rt = fn->leaf;
David S. Miller4c9483b2011-03-12 16:22:43 -0500888 rt = rt6_device_match(net, rt, &fl6->saddr, fl6->flowi6_oif, flags);
Nicolas Dichtel51ebd312012-10-22 03:42:09 +0000889 if (rt->rt6i_nsiblings && fl6->flowi6_oif == 0)
Nicolas Dichtel52bd4c02013-06-28 17:35:48 +0200890 rt = rt6_multipath_select(rt, fl6, fl6->flowi6_oif, flags);
Martin KaFai Laua3c00e42014-10-20 13:42:43 -0700891 if (rt == net->ipv6.ip6_null_entry) {
892 fn = fib6_backtrack(fn, &fl6->saddr);
893 if (fn)
894 goto restart;
895 }
Changli Gaod8d1f302010-06-10 23:31:35 -0700896 dst_use(&rt->dst, jiffies);
Thomas Grafc71099a2006-08-04 23:20:06 -0700897 read_unlock_bh(&table->tb6_lock);
David Ahernb8115802015-11-19 12:24:22 -0800898
899 trace_fib6_table_lookup(net, rt, table->tb6_id, fl6);
900
Thomas Grafc71099a2006-08-04 23:20:06 -0700901 return rt;
902
903}
904
Ian Morris67ba4152014-08-24 21:53:10 +0100905struct dst_entry *ip6_route_lookup(struct net *net, struct flowi6 *fl6,
Florian Westphalea6e5742011-09-05 16:05:44 +0200906 int flags)
907{
908 return fib6_rule_lookup(net, fl6, flags, ip6_pol_route_lookup);
909}
910EXPORT_SYMBOL_GPL(ip6_route_lookup);
911
YOSHIFUJI Hideaki9acd9f32008-04-10 15:42:10 +0900912struct rt6_info *rt6_lookup(struct net *net, const struct in6_addr *daddr,
913 const struct in6_addr *saddr, int oif, int strict)
Thomas Grafc71099a2006-08-04 23:20:06 -0700914{
David S. Miller4c9483b2011-03-12 16:22:43 -0500915 struct flowi6 fl6 = {
916 .flowi6_oif = oif,
917 .daddr = *daddr,
Thomas Grafc71099a2006-08-04 23:20:06 -0700918 };
919 struct dst_entry *dst;
YOSHIFUJI Hideaki77d16f42006-08-23 17:25:05 -0700920 int flags = strict ? RT6_LOOKUP_F_IFACE : 0;
Thomas Grafc71099a2006-08-04 23:20:06 -0700921
Thomas Grafadaa70b2006-10-13 15:01:03 -0700922 if (saddr) {
David S. Miller4c9483b2011-03-12 16:22:43 -0500923 memcpy(&fl6.saddr, saddr, sizeof(*saddr));
Thomas Grafadaa70b2006-10-13 15:01:03 -0700924 flags |= RT6_LOOKUP_F_HAS_SADDR;
925 }
926
David S. Miller4c9483b2011-03-12 16:22:43 -0500927 dst = fib6_rule_lookup(net, &fl6, flags, ip6_pol_route_lookup);
Thomas Grafc71099a2006-08-04 23:20:06 -0700928 if (dst->error == 0)
929 return (struct rt6_info *) dst;
930
931 dst_release(dst);
932
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933 return NULL;
934}
YOSHIFUJI Hideaki71590392007-02-22 22:05:40 +0900935EXPORT_SYMBOL(rt6_lookup);
936
Thomas Grafc71099a2006-08-04 23:20:06 -0700937/* ip6_ins_rt is called with FREE table->tb6_lock.
Wei Wang1cfb71e2017-06-17 10:42:33 -0700938 * It takes new route entry, the addition fails by any reason the
939 * route is released.
940 * Caller must hold dst before calling it.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941 */
942
Michal Kubečeke5fd3872014-03-27 13:04:08 +0100943static int __ip6_ins_rt(struct rt6_info *rt, struct nl_info *info,
David Ahern333c4302017-05-21 10:12:04 -0600944 struct mx6_config *mxc,
945 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946{
947 int err;
Thomas Grafc71099a2006-08-04 23:20:06 -0700948 struct fib6_table *table;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949
Thomas Grafc71099a2006-08-04 23:20:06 -0700950 table = rt->rt6i_table;
951 write_lock_bh(&table->tb6_lock);
David Ahern333c4302017-05-21 10:12:04 -0600952 err = fib6_add(&table->tb6_root, rt, info, mxc, extack);
Thomas Grafc71099a2006-08-04 23:20:06 -0700953 write_unlock_bh(&table->tb6_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954
955 return err;
956}
957
Thomas Graf40e22e82006-08-22 00:00:45 -0700958int ip6_ins_rt(struct rt6_info *rt)
959{
Florian Westphale715b6d2015-01-05 23:57:44 +0100960 struct nl_info info = { .nl_net = dev_net(rt->dst.dev), };
961 struct mx6_config mxc = { .mx = NULL, };
962
Wei Wang1cfb71e2017-06-17 10:42:33 -0700963 /* Hold dst to account for the reference from the fib6 tree */
964 dst_hold(&rt->dst);
David Ahern333c4302017-05-21 10:12:04 -0600965 return __ip6_ins_rt(rt, &info, &mxc, NULL);
Thomas Graf40e22e82006-08-22 00:00:45 -0700966}
967
David Ahern4832c302017-08-17 12:17:20 -0700968/* called with rcu_lock held */
969static struct net_device *ip6_rt_get_dev_rcu(struct rt6_info *rt)
970{
971 struct net_device *dev = rt->dst.dev;
972
973 if (rt->rt6i_flags & RTF_LOCAL) {
974 /* for copies of local routes, dst->dev needs to be the
975 * device if it is a master device, the master device if
976 * device is enslaved, and the loopback as the default
977 */
978 if (netif_is_l3_slave(dev) &&
979 !rt6_need_strict(&rt->rt6i_dst.addr))
980 dev = l3mdev_master_dev_rcu(dev);
981 else if (!netif_is_l3_master(dev))
982 dev = dev_net(dev)->loopback_dev;
983 /* last case is netif_is_l3_master(dev) is true in which
984 * case we want dev returned to be dev
985 */
986 }
987
988 return dev;
989}
990
Martin KaFai Lau8b9df262015-05-22 20:55:59 -0700991static struct rt6_info *ip6_rt_cache_alloc(struct rt6_info *ort,
992 const struct in6_addr *daddr,
993 const struct in6_addr *saddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994{
David Ahern4832c302017-08-17 12:17:20 -0700995 struct net_device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996 struct rt6_info *rt;
997
998 /*
999 * Clone the route.
1000 */
1001
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001002 if (ort->rt6i_flags & (RTF_CACHE | RTF_PCPU))
Martin KaFai Lau83a09ab2015-05-22 20:56:05 -07001003 ort = (struct rt6_info *)ort->dst.from;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004
David Ahern4832c302017-08-17 12:17:20 -07001005 rcu_read_lock();
1006 dev = ip6_rt_get_dev_rcu(ort);
1007 rt = __ip6_dst_alloc(dev_net(dev), dev, 0);
1008 rcu_read_unlock();
Martin KaFai Lau83a09ab2015-05-22 20:56:05 -07001009 if (!rt)
1010 return NULL;
1011
1012 ip6_rt_copy_init(rt, ort);
1013 rt->rt6i_flags |= RTF_CACHE;
1014 rt->rt6i_metric = 0;
1015 rt->dst.flags |= DST_HOST;
1016 rt->rt6i_dst.addr = *daddr;
1017 rt->rt6i_dst.plen = 128;
1018
1019 if (!rt6_is_gw_or_nonexthop(ort)) {
1020 if (ort->rt6i_dst.plen != 128 &&
1021 ipv6_addr_equal(&ort->rt6i_dst.addr, daddr))
1022 rt->rt6i_flags |= RTF_ANYCAST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023#ifdef CONFIG_IPV6_SUBTREES
Martin KaFai Lau83a09ab2015-05-22 20:56:05 -07001024 if (rt->rt6i_src.plen && saddr) {
1025 rt->rt6i_src.addr = *saddr;
1026 rt->rt6i_src.plen = 128;
Martin KaFai Lau8b9df262015-05-22 20:55:59 -07001027 }
Martin KaFai Lau83a09ab2015-05-22 20:56:05 -07001028#endif
YOSHIFUJI Hideaki95a9a5b2006-03-20 16:55:51 -08001029 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030
YOSHIFUJI Hideaki95a9a5b2006-03-20 16:55:51 -08001031 return rt;
1032}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001034static struct rt6_info *ip6_rt_pcpu_alloc(struct rt6_info *rt)
1035{
David Ahern4832c302017-08-17 12:17:20 -07001036 struct net_device *dev;
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001037 struct rt6_info *pcpu_rt;
1038
David Ahern4832c302017-08-17 12:17:20 -07001039 rcu_read_lock();
1040 dev = ip6_rt_get_dev_rcu(rt);
1041 pcpu_rt = __ip6_dst_alloc(dev_net(dev), dev, rt->dst.flags);
1042 rcu_read_unlock();
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001043 if (!pcpu_rt)
1044 return NULL;
1045 ip6_rt_copy_init(pcpu_rt, rt);
1046 pcpu_rt->rt6i_protocol = rt->rt6i_protocol;
1047 pcpu_rt->rt6i_flags |= RTF_PCPU;
1048 return pcpu_rt;
1049}
1050
1051/* It should be called with read_lock_bh(&tb6_lock) acquired */
1052static struct rt6_info *rt6_get_pcpu_route(struct rt6_info *rt)
1053{
Martin KaFai Laua73e4192015-08-14 11:05:53 -07001054 struct rt6_info *pcpu_rt, **p;
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001055
1056 p = this_cpu_ptr(rt->rt6i_pcpu);
1057 pcpu_rt = *p;
1058
Martin KaFai Laua73e4192015-08-14 11:05:53 -07001059 if (pcpu_rt) {
1060 dst_hold(&pcpu_rt->dst);
1061 rt6_dst_from_metrics_check(pcpu_rt);
1062 }
1063 return pcpu_rt;
1064}
1065
1066static struct rt6_info *rt6_make_pcpu_route(struct rt6_info *rt)
1067{
Martin KaFai Lau9c7370a2015-08-14 11:05:54 -07001068 struct fib6_table *table = rt->rt6i_table;
Martin KaFai Laua73e4192015-08-14 11:05:53 -07001069 struct rt6_info *pcpu_rt, *prev, **p;
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001070
1071 pcpu_rt = ip6_rt_pcpu_alloc(rt);
1072 if (!pcpu_rt) {
1073 struct net *net = dev_net(rt->dst.dev);
1074
Martin KaFai Lau9c7370a2015-08-14 11:05:54 -07001075 dst_hold(&net->ipv6.ip6_null_entry->dst);
1076 return net->ipv6.ip6_null_entry;
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001077 }
1078
Martin KaFai Lau9c7370a2015-08-14 11:05:54 -07001079 read_lock_bh(&table->tb6_lock);
1080 if (rt->rt6i_pcpu) {
1081 p = this_cpu_ptr(rt->rt6i_pcpu);
1082 prev = cmpxchg(p, NULL, pcpu_rt);
1083 if (prev) {
1084 /* If someone did it before us, return prev instead */
Wei Wang587fea72017-06-17 10:42:36 -07001085 dst_release_immediate(&pcpu_rt->dst);
Martin KaFai Lau9c7370a2015-08-14 11:05:54 -07001086 pcpu_rt = prev;
1087 }
1088 } else {
1089 /* rt has been removed from the fib6 tree
1090 * before we have a chance to acquire the read_lock.
1091 * In this case, don't brother to create a pcpu rt
1092 * since rt is going away anyway. The next
1093 * dst_check() will trigger a re-lookup.
1094 */
Wei Wang587fea72017-06-17 10:42:36 -07001095 dst_release_immediate(&pcpu_rt->dst);
Martin KaFai Lau9c7370a2015-08-14 11:05:54 -07001096 pcpu_rt = rt;
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001097 }
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001098 dst_hold(&pcpu_rt->dst);
1099 rt6_dst_from_metrics_check(pcpu_rt);
Martin KaFai Lau9c7370a2015-08-14 11:05:54 -07001100 read_unlock_bh(&table->tb6_lock);
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001101 return pcpu_rt;
1102}
1103
Wei Wang35732d02017-10-06 12:05:57 -07001104/* exception hash table implementation
1105 */
1106static DEFINE_SPINLOCK(rt6_exception_lock);
1107
1108/* Remove rt6_ex from hash table and free the memory
1109 * Caller must hold rt6_exception_lock
1110 */
1111static void rt6_remove_exception(struct rt6_exception_bucket *bucket,
1112 struct rt6_exception *rt6_ex)
1113{
1114 if (!bucket || !rt6_ex)
1115 return;
1116 rt6_ex->rt6i->rt6i_node = NULL;
1117 hlist_del_rcu(&rt6_ex->hlist);
1118 rt6_release(rt6_ex->rt6i);
1119 kfree_rcu(rt6_ex, rcu);
1120 WARN_ON_ONCE(!bucket->depth);
1121 bucket->depth--;
1122}
1123
1124/* Remove oldest rt6_ex in bucket and free the memory
1125 * Caller must hold rt6_exception_lock
1126 */
1127static void rt6_exception_remove_oldest(struct rt6_exception_bucket *bucket)
1128{
1129 struct rt6_exception *rt6_ex, *oldest = NULL;
1130
1131 if (!bucket)
1132 return;
1133
1134 hlist_for_each_entry(rt6_ex, &bucket->chain, hlist) {
1135 if (!oldest || time_before(rt6_ex->stamp, oldest->stamp))
1136 oldest = rt6_ex;
1137 }
1138 rt6_remove_exception(bucket, oldest);
1139}
1140
1141static u32 rt6_exception_hash(const struct in6_addr *dst,
1142 const struct in6_addr *src)
1143{
1144 static u32 seed __read_mostly;
1145 u32 val;
1146
1147 net_get_random_once(&seed, sizeof(seed));
1148 val = jhash(dst, sizeof(*dst), seed);
1149
1150#ifdef CONFIG_IPV6_SUBTREES
1151 if (src)
1152 val = jhash(src, sizeof(*src), val);
1153#endif
1154 return hash_32(val, FIB6_EXCEPTION_BUCKET_SIZE_SHIFT);
1155}
1156
1157/* Helper function to find the cached rt in the hash table
1158 * and update bucket pointer to point to the bucket for this
1159 * (daddr, saddr) pair
1160 * Caller must hold rt6_exception_lock
1161 */
1162static struct rt6_exception *
1163__rt6_find_exception_spinlock(struct rt6_exception_bucket **bucket,
1164 const struct in6_addr *daddr,
1165 const struct in6_addr *saddr)
1166{
1167 struct rt6_exception *rt6_ex;
1168 u32 hval;
1169
1170 if (!(*bucket) || !daddr)
1171 return NULL;
1172
1173 hval = rt6_exception_hash(daddr, saddr);
1174 *bucket += hval;
1175
1176 hlist_for_each_entry(rt6_ex, &(*bucket)->chain, hlist) {
1177 struct rt6_info *rt6 = rt6_ex->rt6i;
1178 bool matched = ipv6_addr_equal(daddr, &rt6->rt6i_dst.addr);
1179
1180#ifdef CONFIG_IPV6_SUBTREES
1181 if (matched && saddr)
1182 matched = ipv6_addr_equal(saddr, &rt6->rt6i_src.addr);
1183#endif
1184 if (matched)
1185 return rt6_ex;
1186 }
1187 return NULL;
1188}
1189
1190/* Helper function to find the cached rt in the hash table
1191 * and update bucket pointer to point to the bucket for this
1192 * (daddr, saddr) pair
1193 * Caller must hold rcu_read_lock()
1194 */
1195static struct rt6_exception *
1196__rt6_find_exception_rcu(struct rt6_exception_bucket **bucket,
1197 const struct in6_addr *daddr,
1198 const struct in6_addr *saddr)
1199{
1200 struct rt6_exception *rt6_ex;
1201 u32 hval;
1202
1203 WARN_ON_ONCE(!rcu_read_lock_held());
1204
1205 if (!(*bucket) || !daddr)
1206 return NULL;
1207
1208 hval = rt6_exception_hash(daddr, saddr);
1209 *bucket += hval;
1210
1211 hlist_for_each_entry_rcu(rt6_ex, &(*bucket)->chain, hlist) {
1212 struct rt6_info *rt6 = rt6_ex->rt6i;
1213 bool matched = ipv6_addr_equal(daddr, &rt6->rt6i_dst.addr);
1214
1215#ifdef CONFIG_IPV6_SUBTREES
1216 if (matched && saddr)
1217 matched = ipv6_addr_equal(saddr, &rt6->rt6i_src.addr);
1218#endif
1219 if (matched)
1220 return rt6_ex;
1221 }
1222 return NULL;
1223}
1224
1225static int rt6_insert_exception(struct rt6_info *nrt,
1226 struct rt6_info *ort)
1227{
1228 struct rt6_exception_bucket *bucket;
1229 struct in6_addr *src_key = NULL;
1230 struct rt6_exception *rt6_ex;
1231 int err = 0;
1232
1233 /* ort can't be a cache or pcpu route */
1234 if (ort->rt6i_flags & (RTF_CACHE | RTF_PCPU))
1235 ort = (struct rt6_info *)ort->dst.from;
1236 WARN_ON_ONCE(ort->rt6i_flags & (RTF_CACHE | RTF_PCPU));
1237
1238 spin_lock_bh(&rt6_exception_lock);
1239
1240 if (ort->exception_bucket_flushed) {
1241 err = -EINVAL;
1242 goto out;
1243 }
1244
1245 bucket = rcu_dereference_protected(ort->rt6i_exception_bucket,
1246 lockdep_is_held(&rt6_exception_lock));
1247 if (!bucket) {
1248 bucket = kcalloc(FIB6_EXCEPTION_BUCKET_SIZE, sizeof(*bucket),
1249 GFP_ATOMIC);
1250 if (!bucket) {
1251 err = -ENOMEM;
1252 goto out;
1253 }
1254 rcu_assign_pointer(ort->rt6i_exception_bucket, bucket);
1255 }
1256
1257#ifdef CONFIG_IPV6_SUBTREES
1258 /* rt6i_src.plen != 0 indicates ort is in subtree
1259 * and exception table is indexed by a hash of
1260 * both rt6i_dst and rt6i_src.
1261 * Otherwise, the exception table is indexed by
1262 * a hash of only rt6i_dst.
1263 */
1264 if (ort->rt6i_src.plen)
1265 src_key = &nrt->rt6i_src.addr;
1266#endif
Wei Wang60006a42017-10-06 12:05:58 -07001267
1268 /* Update rt6i_prefsrc as it could be changed
1269 * in rt6_remove_prefsrc()
1270 */
1271 nrt->rt6i_prefsrc = ort->rt6i_prefsrc;
Wei Wangf5bbe7e2017-10-06 12:05:59 -07001272 /* rt6_mtu_change() might lower mtu on ort.
1273 * Only insert this exception route if its mtu
1274 * is less than ort's mtu value.
1275 */
1276 if (nrt->rt6i_pmtu >= dst_mtu(&ort->dst)) {
1277 err = -EINVAL;
1278 goto out;
1279 }
Wei Wang60006a42017-10-06 12:05:58 -07001280
Wei Wang35732d02017-10-06 12:05:57 -07001281 rt6_ex = __rt6_find_exception_spinlock(&bucket, &nrt->rt6i_dst.addr,
1282 src_key);
1283 if (rt6_ex)
1284 rt6_remove_exception(bucket, rt6_ex);
1285
1286 rt6_ex = kzalloc(sizeof(*rt6_ex), GFP_ATOMIC);
1287 if (!rt6_ex) {
1288 err = -ENOMEM;
1289 goto out;
1290 }
1291 rt6_ex->rt6i = nrt;
1292 rt6_ex->stamp = jiffies;
1293 atomic_inc(&nrt->rt6i_ref);
1294 nrt->rt6i_node = ort->rt6i_node;
1295 hlist_add_head_rcu(&rt6_ex->hlist, &bucket->chain);
1296 bucket->depth++;
1297
1298 if (bucket->depth > FIB6_MAX_DEPTH)
1299 rt6_exception_remove_oldest(bucket);
1300
1301out:
1302 spin_unlock_bh(&rt6_exception_lock);
1303
1304 /* Update fn->fn_sernum to invalidate all cached dst */
1305 if (!err)
1306 fib6_update_sernum(ort);
1307
1308 return err;
1309}
1310
1311void rt6_flush_exceptions(struct rt6_info *rt)
1312{
1313 struct rt6_exception_bucket *bucket;
1314 struct rt6_exception *rt6_ex;
1315 struct hlist_node *tmp;
1316 int i;
1317
1318 spin_lock_bh(&rt6_exception_lock);
1319 /* Prevent rt6_insert_exception() to recreate the bucket list */
1320 rt->exception_bucket_flushed = 1;
1321
1322 bucket = rcu_dereference_protected(rt->rt6i_exception_bucket,
1323 lockdep_is_held(&rt6_exception_lock));
1324 if (!bucket)
1325 goto out;
1326
1327 for (i = 0; i < FIB6_EXCEPTION_BUCKET_SIZE; i++) {
1328 hlist_for_each_entry_safe(rt6_ex, tmp, &bucket->chain, hlist)
1329 rt6_remove_exception(bucket, rt6_ex);
1330 WARN_ON_ONCE(bucket->depth);
1331 bucket++;
1332 }
1333
1334out:
1335 spin_unlock_bh(&rt6_exception_lock);
1336}
1337
1338/* Find cached rt in the hash table inside passed in rt
1339 * Caller has to hold rcu_read_lock()
1340 */
1341static struct rt6_info *rt6_find_cached_rt(struct rt6_info *rt,
1342 struct in6_addr *daddr,
1343 struct in6_addr *saddr)
1344{
1345 struct rt6_exception_bucket *bucket;
1346 struct in6_addr *src_key = NULL;
1347 struct rt6_exception *rt6_ex;
1348 struct rt6_info *res = NULL;
1349
1350 bucket = rcu_dereference(rt->rt6i_exception_bucket);
1351
1352#ifdef CONFIG_IPV6_SUBTREES
1353 /* rt6i_src.plen != 0 indicates rt is in subtree
1354 * and exception table is indexed by a hash of
1355 * both rt6i_dst and rt6i_src.
1356 * Otherwise, the exception table is indexed by
1357 * a hash of only rt6i_dst.
1358 */
1359 if (rt->rt6i_src.plen)
1360 src_key = saddr;
1361#endif
1362 rt6_ex = __rt6_find_exception_rcu(&bucket, daddr, src_key);
1363
1364 if (rt6_ex && !rt6_check_expired(rt6_ex->rt6i))
1365 res = rt6_ex->rt6i;
1366
1367 return res;
1368}
1369
1370/* Remove the passed in cached rt from the hash table that contains it */
1371int rt6_remove_exception_rt(struct rt6_info *rt)
1372{
1373 struct rt6_info *from = (struct rt6_info *)rt->dst.from;
1374 struct rt6_exception_bucket *bucket;
1375 struct in6_addr *src_key = NULL;
1376 struct rt6_exception *rt6_ex;
1377 int err;
1378
1379 if (!from ||
1380 !(rt->rt6i_flags | RTF_CACHE))
1381 return -EINVAL;
1382
1383 if (!rcu_access_pointer(from->rt6i_exception_bucket))
1384 return -ENOENT;
1385
1386 spin_lock_bh(&rt6_exception_lock);
1387 bucket = rcu_dereference_protected(from->rt6i_exception_bucket,
1388 lockdep_is_held(&rt6_exception_lock));
1389#ifdef CONFIG_IPV6_SUBTREES
1390 /* rt6i_src.plen != 0 indicates 'from' is in subtree
1391 * and exception table is indexed by a hash of
1392 * both rt6i_dst and rt6i_src.
1393 * Otherwise, the exception table is indexed by
1394 * a hash of only rt6i_dst.
1395 */
1396 if (from->rt6i_src.plen)
1397 src_key = &rt->rt6i_src.addr;
1398#endif
1399 rt6_ex = __rt6_find_exception_spinlock(&bucket,
1400 &rt->rt6i_dst.addr,
1401 src_key);
1402 if (rt6_ex) {
1403 rt6_remove_exception(bucket, rt6_ex);
1404 err = 0;
1405 } else {
1406 err = -ENOENT;
1407 }
1408
1409 spin_unlock_bh(&rt6_exception_lock);
1410 return err;
1411}
1412
1413/* Find rt6_ex which contains the passed in rt cache and
1414 * refresh its stamp
1415 */
1416static void rt6_update_exception_stamp_rt(struct rt6_info *rt)
1417{
1418 struct rt6_info *from = (struct rt6_info *)rt->dst.from;
1419 struct rt6_exception_bucket *bucket;
1420 struct in6_addr *src_key = NULL;
1421 struct rt6_exception *rt6_ex;
1422
1423 if (!from ||
1424 !(rt->rt6i_flags | RTF_CACHE))
1425 return;
1426
1427 rcu_read_lock();
1428 bucket = rcu_dereference(from->rt6i_exception_bucket);
1429
1430#ifdef CONFIG_IPV6_SUBTREES
1431 /* rt6i_src.plen != 0 indicates 'from' is in subtree
1432 * and exception table is indexed by a hash of
1433 * both rt6i_dst and rt6i_src.
1434 * Otherwise, the exception table is indexed by
1435 * a hash of only rt6i_dst.
1436 */
1437 if (from->rt6i_src.plen)
1438 src_key = &rt->rt6i_src.addr;
1439#endif
1440 rt6_ex = __rt6_find_exception_rcu(&bucket,
1441 &rt->rt6i_dst.addr,
1442 src_key);
1443 if (rt6_ex)
1444 rt6_ex->stamp = jiffies;
1445
1446 rcu_read_unlock();
1447}
1448
Wei Wang60006a42017-10-06 12:05:58 -07001449static void rt6_exceptions_remove_prefsrc(struct rt6_info *rt)
1450{
1451 struct rt6_exception_bucket *bucket;
1452 struct rt6_exception *rt6_ex;
1453 int i;
1454
1455 bucket = rcu_dereference_protected(rt->rt6i_exception_bucket,
1456 lockdep_is_held(&rt6_exception_lock));
1457
1458 if (bucket) {
1459 for (i = 0; i < FIB6_EXCEPTION_BUCKET_SIZE; i++) {
1460 hlist_for_each_entry(rt6_ex, &bucket->chain, hlist) {
1461 rt6_ex->rt6i->rt6i_prefsrc.plen = 0;
1462 }
1463 bucket++;
1464 }
1465 }
1466}
1467
Wei Wangf5bbe7e2017-10-06 12:05:59 -07001468static void rt6_exceptions_update_pmtu(struct rt6_info *rt, int mtu)
1469{
1470 struct rt6_exception_bucket *bucket;
1471 struct rt6_exception *rt6_ex;
1472 int i;
1473
1474 bucket = rcu_dereference_protected(rt->rt6i_exception_bucket,
1475 lockdep_is_held(&rt6_exception_lock));
1476
1477 if (bucket) {
1478 for (i = 0; i < FIB6_EXCEPTION_BUCKET_SIZE; i++) {
1479 hlist_for_each_entry(rt6_ex, &bucket->chain, hlist) {
1480 struct rt6_info *entry = rt6_ex->rt6i;
1481 /* For RTF_CACHE with rt6i_pmtu == 0
1482 * (i.e. a redirected route),
1483 * the metrics of its rt->dst.from has already
1484 * been updated.
1485 */
1486 if (entry->rt6i_pmtu && entry->rt6i_pmtu > mtu)
1487 entry->rt6i_pmtu = mtu;
1488 }
1489 bucket++;
1490 }
1491 }
1492}
1493
David Ahern9ff74382016-06-13 13:44:19 -07001494struct rt6_info *ip6_pol_route(struct net *net, struct fib6_table *table,
1495 int oif, struct flowi6 *fl6, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496{
Martin KaFai Lau367efcb2014-10-20 13:42:45 -07001497 struct fib6_node *fn, *saved_fn;
Martin KaFai Lau45e4fd22015-05-22 20:56:00 -07001498 struct rt6_info *rt;
Thomas Grafc71099a2006-08-04 23:20:06 -07001499 int strict = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500
YOSHIFUJI Hideaki77d16f42006-08-23 17:25:05 -07001501 strict |= flags & RT6_LOOKUP_F_IFACE;
David Ahernd5d32e42016-10-24 12:27:23 -07001502 strict |= flags & RT6_LOOKUP_F_IGNORE_LINKSTATE;
Martin KaFai Lau367efcb2014-10-20 13:42:45 -07001503 if (net->ipv6.devconf_all->forwarding == 0)
1504 strict |= RT6_LOOKUP_F_REACHABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505
Thomas Grafc71099a2006-08-04 23:20:06 -07001506 read_lock_bh(&table->tb6_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507
David S. Miller4c9483b2011-03-12 16:22:43 -05001508 fn = fib6_lookup(&table->tb6_root, &fl6->daddr, &fl6->saddr);
Martin KaFai Lau367efcb2014-10-20 13:42:45 -07001509 saved_fn = fn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510
David Ahernca254492015-10-12 11:47:10 -07001511 if (fl6->flowi6_flags & FLOWI_FLAG_SKIP_NH_OIF)
1512 oif = 0;
1513
Martin KaFai Laua3c00e42014-10-20 13:42:43 -07001514redo_rt6_select:
Martin KaFai Lau367efcb2014-10-20 13:42:45 -07001515 rt = rt6_select(fn, oif, strict);
Nicolas Dichtel52bd4c02013-06-28 17:35:48 +02001516 if (rt->rt6i_nsiblings)
Martin KaFai Lau367efcb2014-10-20 13:42:45 -07001517 rt = rt6_multipath_select(rt, fl6, oif, strict);
Martin KaFai Laua3c00e42014-10-20 13:42:43 -07001518 if (rt == net->ipv6.ip6_null_entry) {
1519 fn = fib6_backtrack(fn, &fl6->saddr);
1520 if (fn)
1521 goto redo_rt6_select;
Martin KaFai Lau367efcb2014-10-20 13:42:45 -07001522 else if (strict & RT6_LOOKUP_F_REACHABLE) {
1523 /* also consider unreachable route */
1524 strict &= ~RT6_LOOKUP_F_REACHABLE;
1525 fn = saved_fn;
1526 goto redo_rt6_select;
Martin KaFai Lau367efcb2014-10-20 13:42:45 -07001527 }
Martin KaFai Laua3c00e42014-10-20 13:42:43 -07001528 }
1529
YOSHIFUJI Hideakifb9de912006-03-20 16:59:08 -08001530
Martin KaFai Lau3da59bd2015-05-22 20:56:03 -07001531 if (rt == net->ipv6.ip6_null_entry || (rt->rt6i_flags & RTF_CACHE)) {
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001532 dst_use(&rt->dst, jiffies);
1533 read_unlock_bh(&table->tb6_lock);
1534
1535 rt6_dst_from_metrics_check(rt);
David Ahernb8115802015-11-19 12:24:22 -08001536
1537 trace_fib6_table_lookup(net, rt, table->tb6_id, fl6);
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001538 return rt;
Martin KaFai Lau3da59bd2015-05-22 20:56:03 -07001539 } else if (unlikely((fl6->flowi6_flags & FLOWI_FLAG_KNOWN_NH) &&
1540 !(rt->rt6i_flags & RTF_GATEWAY))) {
1541 /* Create a RTF_CACHE clone which will not be
1542 * owned by the fib6 tree. It is for the special case where
1543 * the daddr in the skb during the neighbor look-up is different
1544 * from the fl6->daddr used to look-up route here.
1545 */
Thomas Grafc71099a2006-08-04 23:20:06 -07001546
Martin KaFai Lau3da59bd2015-05-22 20:56:03 -07001547 struct rt6_info *uncached_rt;
1548
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001549 dst_use(&rt->dst, jiffies);
1550 read_unlock_bh(&table->tb6_lock);
1551
Martin KaFai Lau3da59bd2015-05-22 20:56:03 -07001552 uncached_rt = ip6_rt_cache_alloc(rt, &fl6->daddr, NULL);
1553 dst_release(&rt->dst);
1554
Wei Wang1cfb71e2017-06-17 10:42:33 -07001555 if (uncached_rt) {
1556 /* Uncached_rt's refcnt is taken during ip6_rt_cache_alloc()
1557 * No need for another dst_hold()
1558 */
Martin KaFai Lau8d0b94a2015-05-22 20:56:04 -07001559 rt6_uncached_list_add(uncached_rt);
Wei Wang1cfb71e2017-06-17 10:42:33 -07001560 } else {
Martin KaFai Lau3da59bd2015-05-22 20:56:03 -07001561 uncached_rt = net->ipv6.ip6_null_entry;
Wei Wang1cfb71e2017-06-17 10:42:33 -07001562 dst_hold(&uncached_rt->dst);
1563 }
David Ahernb8115802015-11-19 12:24:22 -08001564
1565 trace_fib6_table_lookup(net, uncached_rt, table->tb6_id, fl6);
Martin KaFai Lau3da59bd2015-05-22 20:56:03 -07001566 return uncached_rt;
Martin KaFai Lau3da59bd2015-05-22 20:56:03 -07001567
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001568 } else {
1569 /* Get a percpu copy */
1570
1571 struct rt6_info *pcpu_rt;
1572
1573 rt->dst.lastuse = jiffies;
1574 rt->dst.__use++;
1575 pcpu_rt = rt6_get_pcpu_route(rt);
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001576
Martin KaFai Lau9c7370a2015-08-14 11:05:54 -07001577 if (pcpu_rt) {
1578 read_unlock_bh(&table->tb6_lock);
1579 } else {
1580 /* We have to do the read_unlock first
1581 * because rt6_make_pcpu_route() may trigger
1582 * ip6_dst_gc() which will take the write_lock.
1583 */
1584 dst_hold(&rt->dst);
1585 read_unlock_bh(&table->tb6_lock);
Martin KaFai Laua73e4192015-08-14 11:05:53 -07001586 pcpu_rt = rt6_make_pcpu_route(rt);
Martin KaFai Lau9c7370a2015-08-14 11:05:54 -07001587 dst_release(&rt->dst);
1588 }
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001589
David Ahernb8115802015-11-19 12:24:22 -08001590 trace_fib6_table_lookup(net, pcpu_rt, table->tb6_id, fl6);
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001591 return pcpu_rt;
Martin KaFai Lau9c7370a2015-08-14 11:05:54 -07001592
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001593 }
Thomas Grafc71099a2006-08-04 23:20:06 -07001594}
David Ahern9ff74382016-06-13 13:44:19 -07001595EXPORT_SYMBOL_GPL(ip6_pol_route);
Thomas Grafc71099a2006-08-04 23:20:06 -07001596
Daniel Lezcano8ed67782008-03-04 13:48:30 -08001597static struct rt6_info *ip6_pol_route_input(struct net *net, struct fib6_table *table,
David S. Miller4c9483b2011-03-12 16:22:43 -05001598 struct flowi6 *fl6, int flags)
Pavel Emelyanov4acad722007-10-15 13:02:51 -07001599{
David S. Miller4c9483b2011-03-12 16:22:43 -05001600 return ip6_pol_route(net, table, fl6->flowi6_iif, fl6, flags);
Pavel Emelyanov4acad722007-10-15 13:02:51 -07001601}
1602
Mahesh Bandeward409b842016-09-16 12:59:08 -07001603struct dst_entry *ip6_route_input_lookup(struct net *net,
1604 struct net_device *dev,
1605 struct flowi6 *fl6, int flags)
Shmulik Ladkani72331bc2012-04-01 04:03:45 +00001606{
1607 if (rt6_need_strict(&fl6->daddr) && dev->type != ARPHRD_PIMREG)
1608 flags |= RT6_LOOKUP_F_IFACE;
1609
1610 return fib6_rule_lookup(net, fl6, flags, ip6_pol_route_input);
1611}
Mahesh Bandeward409b842016-09-16 12:59:08 -07001612EXPORT_SYMBOL_GPL(ip6_route_input_lookup);
Shmulik Ladkani72331bc2012-04-01 04:03:45 +00001613
Jakub Sitnicki23aebda2017-08-23 09:58:29 +02001614static void ip6_multipath_l3_keys(const struct sk_buff *skb,
1615 struct flow_keys *keys)
1616{
1617 const struct ipv6hdr *outer_iph = ipv6_hdr(skb);
1618 const struct ipv6hdr *key_iph = outer_iph;
1619 const struct ipv6hdr *inner_iph;
1620 const struct icmp6hdr *icmph;
1621 struct ipv6hdr _inner_iph;
1622
1623 if (likely(outer_iph->nexthdr != IPPROTO_ICMPV6))
1624 goto out;
1625
1626 icmph = icmp6_hdr(skb);
1627 if (icmph->icmp6_type != ICMPV6_DEST_UNREACH &&
1628 icmph->icmp6_type != ICMPV6_PKT_TOOBIG &&
1629 icmph->icmp6_type != ICMPV6_TIME_EXCEED &&
1630 icmph->icmp6_type != ICMPV6_PARAMPROB)
1631 goto out;
1632
1633 inner_iph = skb_header_pointer(skb,
1634 skb_transport_offset(skb) + sizeof(*icmph),
1635 sizeof(_inner_iph), &_inner_iph);
1636 if (!inner_iph)
1637 goto out;
1638
1639 key_iph = inner_iph;
1640out:
1641 memset(keys, 0, sizeof(*keys));
1642 keys->control.addr_type = FLOW_DISSECTOR_KEY_IPV6_ADDRS;
1643 keys->addrs.v6addrs.src = key_iph->saddr;
1644 keys->addrs.v6addrs.dst = key_iph->daddr;
1645 keys->tags.flow_label = ip6_flowinfo(key_iph);
1646 keys->basic.ip_proto = key_iph->nexthdr;
1647}
1648
1649/* if skb is set it will be used and fl6 can be NULL */
1650u32 rt6_multipath_hash(const struct flowi6 *fl6, const struct sk_buff *skb)
1651{
1652 struct flow_keys hash_keys;
1653
1654 if (skb) {
1655 ip6_multipath_l3_keys(skb, &hash_keys);
1656 return flow_hash_from_keys(&hash_keys);
1657 }
1658
1659 return get_hash_from_flowi6(fl6);
1660}
1661
Thomas Grafc71099a2006-08-04 23:20:06 -07001662void ip6_route_input(struct sk_buff *skb)
1663{
Eric Dumazetb71d1d42011-04-22 04:53:02 +00001664 const struct ipv6hdr *iph = ipv6_hdr(skb);
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001665 struct net *net = dev_net(skb->dev);
Thomas Grafadaa70b2006-10-13 15:01:03 -07001666 int flags = RT6_LOOKUP_F_HAS_SADDR;
Jiri Benc904af042015-08-20 13:56:31 +02001667 struct ip_tunnel_info *tun_info;
David S. Miller4c9483b2011-03-12 16:22:43 -05001668 struct flowi6 fl6 = {
David Aherne0d56fd2016-09-10 12:09:57 -07001669 .flowi6_iif = skb->dev->ifindex,
David S. Miller4c9483b2011-03-12 16:22:43 -05001670 .daddr = iph->daddr,
1671 .saddr = iph->saddr,
YOSHIFUJI Hideaki / 吉藤英明6502ca52013-01-13 05:01:51 +00001672 .flowlabel = ip6_flowinfo(iph),
David S. Miller4c9483b2011-03-12 16:22:43 -05001673 .flowi6_mark = skb->mark,
1674 .flowi6_proto = iph->nexthdr,
Thomas Grafc71099a2006-08-04 23:20:06 -07001675 };
Thomas Grafadaa70b2006-10-13 15:01:03 -07001676
Jiri Benc904af042015-08-20 13:56:31 +02001677 tun_info = skb_tunnel_info(skb);
Jiri Benc46fa0622015-08-28 20:48:19 +02001678 if (tun_info && !(tun_info->mode & IP_TUNNEL_INFO_TX))
Jiri Benc904af042015-08-20 13:56:31 +02001679 fl6.flowi6_tun_key.tun_id = tun_info->key.tun_id;
Jakub Sitnicki23aebda2017-08-23 09:58:29 +02001680 if (unlikely(fl6.flowi6_proto == IPPROTO_ICMPV6))
1681 fl6.mp_hash = rt6_multipath_hash(&fl6, skb);
Jiri Benc06e9d042015-08-20 13:56:26 +02001682 skb_dst_drop(skb);
Shmulik Ladkani72331bc2012-04-01 04:03:45 +00001683 skb_dst_set(skb, ip6_route_input_lookup(net, skb->dev, &fl6, flags));
Thomas Grafc71099a2006-08-04 23:20:06 -07001684}
1685
Daniel Lezcano8ed67782008-03-04 13:48:30 -08001686static struct rt6_info *ip6_pol_route_output(struct net *net, struct fib6_table *table,
David S. Miller4c9483b2011-03-12 16:22:43 -05001687 struct flowi6 *fl6, int flags)
Thomas Grafc71099a2006-08-04 23:20:06 -07001688{
David S. Miller4c9483b2011-03-12 16:22:43 -05001689 return ip6_pol_route(net, table, fl6->flowi6_oif, fl6, flags);
Thomas Grafc71099a2006-08-04 23:20:06 -07001690}
1691
Paolo Abeni6f21c962016-01-29 12:30:19 +01001692struct dst_entry *ip6_route_output_flags(struct net *net, const struct sock *sk,
1693 struct flowi6 *fl6, int flags)
Thomas Grafc71099a2006-08-04 23:20:06 -07001694{
David Ahernd46a9d62015-10-21 08:42:22 -07001695 bool any_src;
Thomas Grafc71099a2006-08-04 23:20:06 -07001696
David Ahern4c1feac2016-09-10 12:09:56 -07001697 if (rt6_need_strict(&fl6->daddr)) {
1698 struct dst_entry *dst;
1699
1700 dst = l3mdev_link_scope_lookup(net, fl6);
1701 if (dst)
1702 return dst;
1703 }
David Ahernca254492015-10-12 11:47:10 -07001704
Pavel Emelyanov1fb94892012-08-08 21:53:36 +00001705 fl6->flowi6_iif = LOOPBACK_IFINDEX;
David McCullough4dc27d1c2012-06-25 15:42:26 +00001706
David Ahernd46a9d62015-10-21 08:42:22 -07001707 any_src = ipv6_addr_any(&fl6->saddr);
David Ahern741a11d2015-09-28 10:12:13 -07001708 if ((sk && sk->sk_bound_dev_if) || rt6_need_strict(&fl6->daddr) ||
David Ahernd46a9d62015-10-21 08:42:22 -07001709 (fl6->flowi6_oif && any_src))
YOSHIFUJI Hideaki77d16f42006-08-23 17:25:05 -07001710 flags |= RT6_LOOKUP_F_IFACE;
Thomas Grafc71099a2006-08-04 23:20:06 -07001711
David Ahernd46a9d62015-10-21 08:42:22 -07001712 if (!any_src)
Thomas Grafadaa70b2006-10-13 15:01:03 -07001713 flags |= RT6_LOOKUP_F_HAS_SADDR;
YOSHIFUJI Hideaki / 吉藤英明0c9a2ac2010-03-07 00:14:44 +00001714 else if (sk)
1715 flags |= rt6_srcprefs2flags(inet6_sk(sk)->srcprefs);
Thomas Grafadaa70b2006-10-13 15:01:03 -07001716
David S. Miller4c9483b2011-03-12 16:22:43 -05001717 return fib6_rule_lookup(net, fl6, flags, ip6_pol_route_output);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718}
Paolo Abeni6f21c962016-01-29 12:30:19 +01001719EXPORT_SYMBOL_GPL(ip6_route_output_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720
David S. Miller2774c132011-03-01 14:59:04 -08001721struct dst_entry *ip6_blackhole_route(struct net *net, struct dst_entry *dst_orig)
David S. Miller14e50e52007-05-24 18:17:54 -07001722{
David S. Miller5c1e6aa2011-04-28 14:13:38 -07001723 struct rt6_info *rt, *ort = (struct rt6_info *) dst_orig;
Wei Wang1dbe32522017-06-17 10:42:26 -07001724 struct net_device *loopback_dev = net->loopback_dev;
David S. Miller14e50e52007-05-24 18:17:54 -07001725 struct dst_entry *new = NULL;
1726
Wei Wang1dbe32522017-06-17 10:42:26 -07001727 rt = dst_alloc(&ip6_dst_blackhole_ops, loopback_dev, 1,
Wei Wangb2a9c0e2017-06-17 10:42:41 -07001728 DST_OBSOLETE_NONE, 0);
David S. Miller14e50e52007-05-24 18:17:54 -07001729 if (rt) {
Martin KaFai Lau0a1f5962015-10-15 16:39:58 -07001730 rt6_info_init(rt);
1731
Changli Gaod8d1f302010-06-10 23:31:35 -07001732 new = &rt->dst;
David S. Miller14e50e52007-05-24 18:17:54 -07001733 new->__use = 1;
Herbert Xu352e5122007-11-13 21:34:06 -08001734 new->input = dst_discard;
Eric W. Biedermanede20592015-10-07 16:48:47 -05001735 new->output = dst_discard_out;
David S. Miller14e50e52007-05-24 18:17:54 -07001736
Martin KaFai Lau0a1f5962015-10-15 16:39:58 -07001737 dst_copy_metrics(new, &ort->dst);
David S. Miller14e50e52007-05-24 18:17:54 -07001738
Wei Wang1dbe32522017-06-17 10:42:26 -07001739 rt->rt6i_idev = in6_dev_get(loopback_dev);
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001740 rt->rt6i_gateway = ort->rt6i_gateway;
Martin KaFai Lau0a1f5962015-10-15 16:39:58 -07001741 rt->rt6i_flags = ort->rt6i_flags & ~RTF_PCPU;
David S. Miller14e50e52007-05-24 18:17:54 -07001742 rt->rt6i_metric = 0;
1743
1744 memcpy(&rt->rt6i_dst, &ort->rt6i_dst, sizeof(struct rt6key));
1745#ifdef CONFIG_IPV6_SUBTREES
1746 memcpy(&rt->rt6i_src, &ort->rt6i_src, sizeof(struct rt6key));
1747#endif
David S. Miller14e50e52007-05-24 18:17:54 -07001748 }
1749
David S. Miller69ead7a2011-03-01 14:45:33 -08001750 dst_release(dst_orig);
1751 return new ? new : ERR_PTR(-ENOMEM);
David S. Miller14e50e52007-05-24 18:17:54 -07001752}
David S. Miller14e50e52007-05-24 18:17:54 -07001753
Linus Torvalds1da177e2005-04-16 15:20:36 -07001754/*
1755 * Destination cache support functions
1756 */
1757
Martin KaFai Lau4b32b5a2015-04-28 13:03:06 -07001758static void rt6_dst_from_metrics_check(struct rt6_info *rt)
1759{
1760 if (rt->dst.from &&
1761 dst_metrics_ptr(&rt->dst) != dst_metrics_ptr(rt->dst.from))
1762 dst_init_metrics(&rt->dst, dst_metrics_ptr(rt->dst.from), true);
1763}
1764
Martin KaFai Lau3da59bd2015-05-22 20:56:03 -07001765static struct dst_entry *rt6_check(struct rt6_info *rt, u32 cookie)
1766{
Steffen Klassert36143642017-08-25 09:05:42 +02001767 u32 rt_cookie = 0;
Wei Wangc5cff852017-08-21 09:47:10 -07001768
1769 if (!rt6_get_cookie_safe(rt, &rt_cookie) || rt_cookie != cookie)
Martin KaFai Lau3da59bd2015-05-22 20:56:03 -07001770 return NULL;
1771
1772 if (rt6_check_expired(rt))
1773 return NULL;
1774
1775 return &rt->dst;
1776}
1777
1778static struct dst_entry *rt6_dst_from_check(struct rt6_info *rt, u32 cookie)
1779{
Martin KaFai Lau5973fb12015-11-11 11:51:07 -08001780 if (!__rt6_check_expired(rt) &&
1781 rt->dst.obsolete == DST_OBSOLETE_FORCE_CHK &&
Martin KaFai Lau3da59bd2015-05-22 20:56:03 -07001782 rt6_check((struct rt6_info *)(rt->dst.from), cookie))
1783 return &rt->dst;
1784 else
1785 return NULL;
1786}
1787
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788static struct dst_entry *ip6_dst_check(struct dst_entry *dst, u32 cookie)
1789{
1790 struct rt6_info *rt;
1791
1792 rt = (struct rt6_info *) dst;
1793
Nicolas Dichtel6f3118b2012-09-10 22:09:46 +00001794 /* All IPV6 dsts are created with ->obsolete set to the value
1795 * DST_OBSOLETE_FORCE_CHK which forces validation calls down
1796 * into this function always.
1797 */
Hannes Frederic Sowae3bc10b2013-10-24 07:48:24 +02001798
Martin KaFai Lau4b32b5a2015-04-28 13:03:06 -07001799 rt6_dst_from_metrics_check(rt);
1800
Martin KaFai Lau02bcf4e2015-11-11 11:51:08 -08001801 if (rt->rt6i_flags & RTF_PCPU ||
Wei Wanga4c2fd72017-06-17 10:42:42 -07001802 (unlikely(!list_empty(&rt->rt6i_uncached)) && rt->dst.from))
Martin KaFai Lau3da59bd2015-05-22 20:56:03 -07001803 return rt6_dst_from_check(rt, cookie);
1804 else
1805 return rt6_check(rt, cookie);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806}
1807
1808static struct dst_entry *ip6_negative_advice(struct dst_entry *dst)
1809{
1810 struct rt6_info *rt = (struct rt6_info *) dst;
1811
1812 if (rt) {
YOSHIFUJI Hideaki / 吉藤英明54c1a852010-03-28 07:15:45 +00001813 if (rt->rt6i_flags & RTF_CACHE) {
1814 if (rt6_check_expired(rt)) {
1815 ip6_del_rt(rt);
1816 dst = NULL;
1817 }
1818 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819 dst_release(dst);
YOSHIFUJI Hideaki / 吉藤英明54c1a852010-03-28 07:15:45 +00001820 dst = NULL;
1821 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822 }
YOSHIFUJI Hideaki / 吉藤英明54c1a852010-03-28 07:15:45 +00001823 return dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824}
1825
1826static void ip6_link_failure(struct sk_buff *skb)
1827{
1828 struct rt6_info *rt;
1829
Alexey Dobriyan3ffe5332010-02-18 08:25:24 +00001830 icmpv6_send(skb, ICMPV6_DEST_UNREACH, ICMPV6_ADDR_UNREACH, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831
Eric Dumazetadf30902009-06-02 05:19:30 +00001832 rt = (struct rt6_info *) skb_dst(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833 if (rt) {
Hannes Frederic Sowa1eb4f752013-07-10 23:00:57 +02001834 if (rt->rt6i_flags & RTF_CACHE) {
Wei Wangad65a2f2017-06-17 10:42:35 -07001835 if (dst_hold_safe(&rt->dst))
1836 ip6_del_rt(rt);
Wei Wangc5cff852017-08-21 09:47:10 -07001837 } else {
1838 struct fib6_node *fn;
1839
1840 rcu_read_lock();
1841 fn = rcu_dereference(rt->rt6i_node);
1842 if (fn && (rt->rt6i_flags & RTF_DEFAULT))
1843 fn->fn_sernum = -1;
1844 rcu_read_unlock();
Hannes Frederic Sowa1eb4f752013-07-10 23:00:57 +02001845 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846 }
1847}
1848
Martin KaFai Lau45e4fd22015-05-22 20:56:00 -07001849static void rt6_do_update_pmtu(struct rt6_info *rt, u32 mtu)
1850{
1851 struct net *net = dev_net(rt->dst.dev);
1852
1853 rt->rt6i_flags |= RTF_MODIFIED;
1854 rt->rt6i_pmtu = mtu;
1855 rt6_update_expires(rt, net->ipv6.sysctl.ip6_rt_mtu_expires);
1856}
1857
Martin KaFai Lau0d3f6d22015-11-11 11:51:06 -08001858static bool rt6_cache_allowed_for_pmtu(const struct rt6_info *rt)
1859{
1860 return !(rt->rt6i_flags & RTF_CACHE) &&
Wei Wang4e587ea2017-08-25 15:03:10 -07001861 (rt->rt6i_flags & RTF_PCPU ||
1862 rcu_access_pointer(rt->rt6i_node));
Martin KaFai Lau0d3f6d22015-11-11 11:51:06 -08001863}
1864
Martin KaFai Lau45e4fd22015-05-22 20:56:00 -07001865static void __ip6_rt_update_pmtu(struct dst_entry *dst, const struct sock *sk,
1866 const struct ipv6hdr *iph, u32 mtu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867{
Julian Anastasov0dec8792017-02-06 23:14:16 +02001868 const struct in6_addr *daddr, *saddr;
Ian Morris67ba4152014-08-24 21:53:10 +01001869 struct rt6_info *rt6 = (struct rt6_info *)dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001870
Martin KaFai Lau45e4fd22015-05-22 20:56:00 -07001871 if (rt6->rt6i_flags & RTF_LOCAL)
1872 return;
1873
Xin Long19bda362016-10-28 18:18:01 +08001874 if (dst_metric_locked(dst, RTAX_MTU))
1875 return;
1876
Julian Anastasov0dec8792017-02-06 23:14:16 +02001877 if (iph) {
1878 daddr = &iph->daddr;
1879 saddr = &iph->saddr;
1880 } else if (sk) {
1881 daddr = &sk->sk_v6_daddr;
1882 saddr = &inet6_sk(sk)->saddr;
1883 } else {
1884 daddr = NULL;
1885 saddr = NULL;
1886 }
1887 dst_confirm_neigh(dst, daddr);
Martin KaFai Lau45e4fd22015-05-22 20:56:00 -07001888 mtu = max_t(u32, mtu, IPV6_MIN_MTU);
1889 if (mtu >= dst_mtu(dst))
1890 return;
David S. Miller81aded22012-06-15 14:54:11 -07001891
Martin KaFai Lau0d3f6d22015-11-11 11:51:06 -08001892 if (!rt6_cache_allowed_for_pmtu(rt6)) {
Martin KaFai Lau45e4fd22015-05-22 20:56:00 -07001893 rt6_do_update_pmtu(rt6, mtu);
Julian Anastasov0dec8792017-02-06 23:14:16 +02001894 } else if (daddr) {
Martin KaFai Lau45e4fd22015-05-22 20:56:00 -07001895 struct rt6_info *nrt6;
Hagen Paul Pfeifer9d289712015-01-15 22:34:25 +01001896
Martin KaFai Lau45e4fd22015-05-22 20:56:00 -07001897 nrt6 = ip6_rt_cache_alloc(rt6, daddr, saddr);
1898 if (nrt6) {
1899 rt6_do_update_pmtu(nrt6, mtu);
1900
1901 /* ip6_ins_rt(nrt6) will bump the
1902 * rt6->rt6i_node->fn_sernum
1903 * which will fail the next rt6_check() and
1904 * invalidate the sk->sk_dst_cache.
1905 */
1906 ip6_ins_rt(nrt6);
Wei Wang1cfb71e2017-06-17 10:42:33 -07001907 /* Release the reference taken in
1908 * ip6_rt_cache_alloc()
1909 */
1910 dst_release(&nrt6->dst);
Martin KaFai Lau45e4fd22015-05-22 20:56:00 -07001911 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912 }
1913}
1914
Martin KaFai Lau45e4fd22015-05-22 20:56:00 -07001915static void ip6_rt_update_pmtu(struct dst_entry *dst, struct sock *sk,
1916 struct sk_buff *skb, u32 mtu)
1917{
1918 __ip6_rt_update_pmtu(dst, sk, skb ? ipv6_hdr(skb) : NULL, mtu);
1919}
1920
David S. Miller42ae66c2012-06-15 20:01:57 -07001921void ip6_update_pmtu(struct sk_buff *skb, struct net *net, __be32 mtu,
Lorenzo Colittie2d118a2016-11-04 02:23:43 +09001922 int oif, u32 mark, kuid_t uid)
David S. Miller81aded22012-06-15 14:54:11 -07001923{
1924 const struct ipv6hdr *iph = (struct ipv6hdr *) skb->data;
1925 struct dst_entry *dst;
1926 struct flowi6 fl6;
1927
1928 memset(&fl6, 0, sizeof(fl6));
1929 fl6.flowi6_oif = oif;
Lorenzo Colitti1b3c61d2014-05-13 10:17:34 -07001930 fl6.flowi6_mark = mark ? mark : IP6_REPLY_MARK(net, skb->mark);
David S. Miller81aded22012-06-15 14:54:11 -07001931 fl6.daddr = iph->daddr;
1932 fl6.saddr = iph->saddr;
YOSHIFUJI Hideaki / 吉藤英明6502ca52013-01-13 05:01:51 +00001933 fl6.flowlabel = ip6_flowinfo(iph);
Lorenzo Colittie2d118a2016-11-04 02:23:43 +09001934 fl6.flowi6_uid = uid;
David S. Miller81aded22012-06-15 14:54:11 -07001935
1936 dst = ip6_route_output(net, NULL, &fl6);
1937 if (!dst->error)
Martin KaFai Lau45e4fd22015-05-22 20:56:00 -07001938 __ip6_rt_update_pmtu(dst, NULL, iph, ntohl(mtu));
David S. Miller81aded22012-06-15 14:54:11 -07001939 dst_release(dst);
1940}
1941EXPORT_SYMBOL_GPL(ip6_update_pmtu);
1942
1943void ip6_sk_update_pmtu(struct sk_buff *skb, struct sock *sk, __be32 mtu)
1944{
Martin KaFai Lau33c162a2016-04-11 15:29:36 -07001945 struct dst_entry *dst;
1946
David S. Miller81aded22012-06-15 14:54:11 -07001947 ip6_update_pmtu(skb, sock_net(sk), mtu,
Lorenzo Colittie2d118a2016-11-04 02:23:43 +09001948 sk->sk_bound_dev_if, sk->sk_mark, sk->sk_uid);
Martin KaFai Lau33c162a2016-04-11 15:29:36 -07001949
1950 dst = __sk_dst_get(sk);
1951 if (!dst || !dst->obsolete ||
1952 dst->ops->check(dst, inet6_sk(sk)->dst_cookie))
1953 return;
1954
1955 bh_lock_sock(sk);
1956 if (!sock_owned_by_user(sk) && !ipv6_addr_v4mapped(&sk->sk_v6_daddr))
1957 ip6_datagram_dst_update(sk, false);
1958 bh_unlock_sock(sk);
David S. Miller81aded22012-06-15 14:54:11 -07001959}
1960EXPORT_SYMBOL_GPL(ip6_sk_update_pmtu);
1961
Duan Jiongb55b76b2013-09-04 19:44:21 +08001962/* Handle redirects */
1963struct ip6rd_flowi {
1964 struct flowi6 fl6;
1965 struct in6_addr gateway;
1966};
1967
1968static struct rt6_info *__ip6_route_redirect(struct net *net,
1969 struct fib6_table *table,
1970 struct flowi6 *fl6,
1971 int flags)
1972{
1973 struct ip6rd_flowi *rdfl = (struct ip6rd_flowi *)fl6;
1974 struct rt6_info *rt;
1975 struct fib6_node *fn;
1976
1977 /* Get the "current" route for this destination and
Alexander Alemayhu67c408c2017-01-07 23:53:00 +01001978 * check if the redirect has come from appropriate router.
Duan Jiongb55b76b2013-09-04 19:44:21 +08001979 *
1980 * RFC 4861 specifies that redirects should only be
1981 * accepted if they come from the nexthop to the target.
1982 * Due to the way the routes are chosen, this notion
1983 * is a bit fuzzy and one might need to check all possible
1984 * routes.
1985 */
1986
1987 read_lock_bh(&table->tb6_lock);
1988 fn = fib6_lookup(&table->tb6_root, &fl6->daddr, &fl6->saddr);
1989restart:
1990 for (rt = fn->leaf; rt; rt = rt->dst.rt6_next) {
1991 if (rt6_check_expired(rt))
1992 continue;
1993 if (rt->dst.error)
1994 break;
1995 if (!(rt->rt6i_flags & RTF_GATEWAY))
1996 continue;
1997 if (fl6->flowi6_oif != rt->dst.dev->ifindex)
1998 continue;
1999 if (!ipv6_addr_equal(&rdfl->gateway, &rt->rt6i_gateway))
2000 continue;
2001 break;
2002 }
2003
2004 if (!rt)
2005 rt = net->ipv6.ip6_null_entry;
2006 else if (rt->dst.error) {
2007 rt = net->ipv6.ip6_null_entry;
Martin KaFai Laub0a1ba52015-01-20 19:16:02 -08002008 goto out;
2009 }
2010
2011 if (rt == net->ipv6.ip6_null_entry) {
Martin KaFai Laua3c00e42014-10-20 13:42:43 -07002012 fn = fib6_backtrack(fn, &fl6->saddr);
2013 if (fn)
2014 goto restart;
Duan Jiongb55b76b2013-09-04 19:44:21 +08002015 }
Martin KaFai Laua3c00e42014-10-20 13:42:43 -07002016
Martin KaFai Laub0a1ba52015-01-20 19:16:02 -08002017out:
Duan Jiongb55b76b2013-09-04 19:44:21 +08002018 dst_hold(&rt->dst);
2019
2020 read_unlock_bh(&table->tb6_lock);
2021
David Ahernb8115802015-11-19 12:24:22 -08002022 trace_fib6_table_lookup(net, rt, table->tb6_id, fl6);
Duan Jiongb55b76b2013-09-04 19:44:21 +08002023 return rt;
2024};
2025
2026static struct dst_entry *ip6_route_redirect(struct net *net,
2027 const struct flowi6 *fl6,
2028 const struct in6_addr *gateway)
2029{
2030 int flags = RT6_LOOKUP_F_HAS_SADDR;
2031 struct ip6rd_flowi rdfl;
2032
2033 rdfl.fl6 = *fl6;
2034 rdfl.gateway = *gateway;
2035
2036 return fib6_rule_lookup(net, &rdfl.fl6,
2037 flags, __ip6_route_redirect);
2038}
2039
Lorenzo Colittie2d118a2016-11-04 02:23:43 +09002040void ip6_redirect(struct sk_buff *skb, struct net *net, int oif, u32 mark,
2041 kuid_t uid)
David S. Miller3a5ad2e2012-07-12 00:08:07 -07002042{
2043 const struct ipv6hdr *iph = (struct ipv6hdr *) skb->data;
2044 struct dst_entry *dst;
2045 struct flowi6 fl6;
2046
2047 memset(&fl6, 0, sizeof(fl6));
Julian Anastasove374c612014-04-28 10:51:56 +03002048 fl6.flowi6_iif = LOOPBACK_IFINDEX;
David S. Miller3a5ad2e2012-07-12 00:08:07 -07002049 fl6.flowi6_oif = oif;
2050 fl6.flowi6_mark = mark;
David S. Miller3a5ad2e2012-07-12 00:08:07 -07002051 fl6.daddr = iph->daddr;
2052 fl6.saddr = iph->saddr;
YOSHIFUJI Hideaki / 吉藤英明6502ca52013-01-13 05:01:51 +00002053 fl6.flowlabel = ip6_flowinfo(iph);
Lorenzo Colittie2d118a2016-11-04 02:23:43 +09002054 fl6.flowi6_uid = uid;
David S. Miller3a5ad2e2012-07-12 00:08:07 -07002055
Duan Jiongb55b76b2013-09-04 19:44:21 +08002056 dst = ip6_route_redirect(net, &fl6, &ipv6_hdr(skb)->saddr);
2057 rt6_do_redirect(dst, NULL, skb);
David S. Miller3a5ad2e2012-07-12 00:08:07 -07002058 dst_release(dst);
2059}
2060EXPORT_SYMBOL_GPL(ip6_redirect);
2061
Duan Jiongc92a59e2013-08-22 12:07:35 +08002062void ip6_redirect_no_header(struct sk_buff *skb, struct net *net, int oif,
2063 u32 mark)
2064{
2065 const struct ipv6hdr *iph = ipv6_hdr(skb);
2066 const struct rd_msg *msg = (struct rd_msg *)icmp6_hdr(skb);
2067 struct dst_entry *dst;
2068 struct flowi6 fl6;
2069
2070 memset(&fl6, 0, sizeof(fl6));
Julian Anastasove374c612014-04-28 10:51:56 +03002071 fl6.flowi6_iif = LOOPBACK_IFINDEX;
Duan Jiongc92a59e2013-08-22 12:07:35 +08002072 fl6.flowi6_oif = oif;
2073 fl6.flowi6_mark = mark;
Duan Jiongc92a59e2013-08-22 12:07:35 +08002074 fl6.daddr = msg->dest;
2075 fl6.saddr = iph->daddr;
Lorenzo Colittie2d118a2016-11-04 02:23:43 +09002076 fl6.flowi6_uid = sock_net_uid(net, NULL);
Duan Jiongc92a59e2013-08-22 12:07:35 +08002077
Duan Jiongb55b76b2013-09-04 19:44:21 +08002078 dst = ip6_route_redirect(net, &fl6, &iph->saddr);
2079 rt6_do_redirect(dst, NULL, skb);
Duan Jiongc92a59e2013-08-22 12:07:35 +08002080 dst_release(dst);
2081}
2082
David S. Miller3a5ad2e2012-07-12 00:08:07 -07002083void ip6_sk_redirect(struct sk_buff *skb, struct sock *sk)
2084{
Lorenzo Colittie2d118a2016-11-04 02:23:43 +09002085 ip6_redirect(skb, sock_net(sk), sk->sk_bound_dev_if, sk->sk_mark,
2086 sk->sk_uid);
David S. Miller3a5ad2e2012-07-12 00:08:07 -07002087}
2088EXPORT_SYMBOL_GPL(ip6_sk_redirect);
2089
David S. Miller0dbaee32010-12-13 12:52:14 -08002090static unsigned int ip6_default_advmss(const struct dst_entry *dst)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002091{
David S. Miller0dbaee32010-12-13 12:52:14 -08002092 struct net_device *dev = dst->dev;
2093 unsigned int mtu = dst_mtu(dst);
2094 struct net *net = dev_net(dev);
2095
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096 mtu -= sizeof(struct ipv6hdr) + sizeof(struct tcphdr);
2097
Daniel Lezcano55786892008-03-04 13:47:47 -08002098 if (mtu < net->ipv6.sysctl.ip6_rt_min_advmss)
2099 mtu = net->ipv6.sysctl.ip6_rt_min_advmss;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002100
2101 /*
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002102 * Maximal non-jumbo IPv6 payload is IPV6_MAXPLEN and
2103 * corresponding MSS is IPV6_MAXPLEN - tcp_header_size.
2104 * IPV6_MAXPLEN is also valid and means: "any MSS,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002105 * rely only on pmtu discovery"
2106 */
2107 if (mtu > IPV6_MAXPLEN - sizeof(struct tcphdr))
2108 mtu = IPV6_MAXPLEN;
2109 return mtu;
2110}
2111
Steffen Klassertebb762f2011-11-23 02:12:51 +00002112static unsigned int ip6_mtu(const struct dst_entry *dst)
David S. Millerd33e4552010-12-14 13:01:14 -08002113{
Martin KaFai Lau4b32b5a2015-04-28 13:03:06 -07002114 const struct rt6_info *rt = (const struct rt6_info *)dst;
2115 unsigned int mtu = rt->rt6i_pmtu;
David S. Millerd33e4552010-12-14 13:01:14 -08002116 struct inet6_dev *idev;
Steffen Klassert618f9bc2011-11-23 02:13:31 +00002117
2118 if (mtu)
Eric Dumazet30f78d82014-04-10 21:23:36 -07002119 goto out;
Steffen Klassert618f9bc2011-11-23 02:13:31 +00002120
Martin KaFai Lau4b32b5a2015-04-28 13:03:06 -07002121 mtu = dst_metric_raw(dst, RTAX_MTU);
2122 if (mtu)
2123 goto out;
2124
Steffen Klassert618f9bc2011-11-23 02:13:31 +00002125 mtu = IPV6_MIN_MTU;
David S. Millerd33e4552010-12-14 13:01:14 -08002126
2127 rcu_read_lock();
2128 idev = __in6_dev_get(dst->dev);
2129 if (idev)
2130 mtu = idev->cnf.mtu6;
2131 rcu_read_unlock();
2132
Eric Dumazet30f78d82014-04-10 21:23:36 -07002133out:
Roopa Prabhu14972cb2016-08-24 20:10:43 -07002134 mtu = min_t(unsigned int, mtu, IP6_MAX_MTU);
2135
2136 return mtu - lwtunnel_headroom(dst->lwtstate, mtu);
David S. Millerd33e4552010-12-14 13:01:14 -08002137}
2138
YOSHIFUJI Hideaki3b009442007-12-06 16:11:48 -08002139struct dst_entry *icmp6_dst_alloc(struct net_device *dev,
David S. Miller87a11572011-12-06 17:04:13 -05002140 struct flowi6 *fl6)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002141{
David S. Miller87a11572011-12-06 17:04:13 -05002142 struct dst_entry *dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002143 struct rt6_info *rt;
2144 struct inet6_dev *idev = in6_dev_get(dev);
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09002145 struct net *net = dev_net(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002146
David S. Miller38308472011-12-03 18:02:47 -05002147 if (unlikely(!idev))
Eric Dumazet122bdf62012-03-14 21:13:11 +00002148 return ERR_PTR(-ENODEV);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002149
Martin KaFai Lauad706862015-08-14 11:05:52 -07002150 rt = ip6_dst_alloc(net, dev, 0);
David S. Miller38308472011-12-03 18:02:47 -05002151 if (unlikely(!rt)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002152 in6_dev_put(idev);
David S. Miller87a11572011-12-06 17:04:13 -05002153 dst = ERR_PTR(-ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002154 goto out;
2155 }
2156
Yan, Zheng8e2ec632011-09-05 21:34:30 +00002157 rt->dst.flags |= DST_HOST;
2158 rt->dst.output = ip6_output;
Julian Anastasov550bab42013-10-20 15:43:04 +03002159 rt->rt6i_gateway = fl6->daddr;
David S. Miller87a11572011-12-06 17:04:13 -05002160 rt->rt6i_dst.addr = fl6->daddr;
Yan, Zheng8e2ec632011-09-05 21:34:30 +00002161 rt->rt6i_dst.plen = 128;
2162 rt->rt6i_idev = idev;
Li RongQing14edd872012-10-24 14:01:18 +08002163 dst_metric_set(&rt->dst, RTAX_HOPLIMIT, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002164
Wei Wang587fea72017-06-17 10:42:36 -07002165 /* Add this dst into uncached_list so that rt6_ifdown() can
2166 * do proper release of the net_device
2167 */
2168 rt6_uncached_list_add(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002169
David S. Miller87a11572011-12-06 17:04:13 -05002170 dst = xfrm_lookup(net, &rt->dst, flowi6_to_flowi(fl6), NULL, 0);
2171
Linus Torvalds1da177e2005-04-16 15:20:36 -07002172out:
David S. Miller87a11572011-12-06 17:04:13 -05002173 return dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002174}
2175
Daniel Lezcano569d3642008-01-18 03:56:57 -08002176static int ip6_dst_gc(struct dst_ops *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002177{
Alexey Dobriyan86393e52009-08-29 01:34:49 +00002178 struct net *net = container_of(ops, struct net, ipv6.ip6_dst_ops);
Daniel Lezcano7019b782008-03-04 13:50:14 -08002179 int rt_min_interval = net->ipv6.sysctl.ip6_rt_gc_min_interval;
2180 int rt_max_size = net->ipv6.sysctl.ip6_rt_max_size;
2181 int rt_elasticity = net->ipv6.sysctl.ip6_rt_gc_elasticity;
2182 int rt_gc_timeout = net->ipv6.sysctl.ip6_rt_gc_timeout;
2183 unsigned long rt_last_gc = net->ipv6.ip6_rt_last_gc;
Eric Dumazetfc66f952010-10-08 06:37:34 +00002184 int entries;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002185
Eric Dumazetfc66f952010-10-08 06:37:34 +00002186 entries = dst_entries_get_fast(ops);
Michal Kubeček49a18d82013-08-01 10:04:24 +02002187 if (time_after(rt_last_gc + rt_min_interval, jiffies) &&
Eric Dumazetfc66f952010-10-08 06:37:34 +00002188 entries <= rt_max_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002189 goto out;
2190
Benjamin Thery6891a342008-03-04 13:49:47 -08002191 net->ipv6.ip6_rt_gc_expire++;
Li RongQing14956642014-05-19 17:30:28 +08002192 fib6_run_gc(net->ipv6.ip6_rt_gc_expire, net, true);
Eric Dumazetfc66f952010-10-08 06:37:34 +00002193 entries = dst_entries_get_slow(ops);
2194 if (entries < ops->gc_thresh)
Daniel Lezcano7019b782008-03-04 13:50:14 -08002195 net->ipv6.ip6_rt_gc_expire = rt_gc_timeout>>1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002196out:
Daniel Lezcano7019b782008-03-04 13:50:14 -08002197 net->ipv6.ip6_rt_gc_expire -= net->ipv6.ip6_rt_gc_expire>>rt_elasticity;
Eric Dumazetfc66f952010-10-08 06:37:34 +00002198 return entries > rt_max_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002199}
2200
Florian Westphale715b6d2015-01-05 23:57:44 +01002201static int ip6_convert_metrics(struct mx6_config *mxc,
2202 const struct fib6_config *cfg)
2203{
Daniel Borkmannc3a8d942015-08-31 15:58:47 +02002204 bool ecn_ca = false;
Florian Westphale715b6d2015-01-05 23:57:44 +01002205 struct nlattr *nla;
2206 int remaining;
2207 u32 *mp;
2208
Ian Morris63159f22015-03-29 14:00:04 +01002209 if (!cfg->fc_mx)
Florian Westphale715b6d2015-01-05 23:57:44 +01002210 return 0;
2211
2212 mp = kzalloc(sizeof(u32) * RTAX_MAX, GFP_KERNEL);
2213 if (unlikely(!mp))
2214 return -ENOMEM;
2215
2216 nla_for_each_attr(nla, cfg->fc_mx, cfg->fc_mx_len, remaining) {
2217 int type = nla_type(nla);
Daniel Borkmann1bb14802015-08-31 15:58:45 +02002218 u32 val;
Florian Westphale715b6d2015-01-05 23:57:44 +01002219
Daniel Borkmann1bb14802015-08-31 15:58:45 +02002220 if (!type)
2221 continue;
2222 if (unlikely(type > RTAX_MAX))
2223 goto err;
Daniel Borkmannea697632015-01-05 23:57:47 +01002224
Daniel Borkmann1bb14802015-08-31 15:58:45 +02002225 if (type == RTAX_CC_ALGO) {
2226 char tmp[TCP_CA_NAME_MAX];
2227
2228 nla_strlcpy(tmp, nla, sizeof(tmp));
Daniel Borkmannc3a8d942015-08-31 15:58:47 +02002229 val = tcp_ca_get_key_by_name(tmp, &ecn_ca);
Daniel Borkmann1bb14802015-08-31 15:58:45 +02002230 if (val == TCP_CA_UNSPEC)
Florian Westphale715b6d2015-01-05 23:57:44 +01002231 goto err;
Daniel Borkmann1bb14802015-08-31 15:58:45 +02002232 } else {
2233 val = nla_get_u32(nla);
Florian Westphale715b6d2015-01-05 23:57:44 +01002234 }
Paolo Abeni626abd52016-05-13 18:33:41 +02002235 if (type == RTAX_HOPLIMIT && val > 255)
2236 val = 255;
Daniel Borkmannb8d3e412015-08-31 15:58:46 +02002237 if (type == RTAX_FEATURES && (val & ~RTAX_FEATURE_MASK))
2238 goto err;
Daniel Borkmann1bb14802015-08-31 15:58:45 +02002239
2240 mp[type - 1] = val;
2241 __set_bit(type - 1, mxc->mx_valid);
Florian Westphale715b6d2015-01-05 23:57:44 +01002242 }
2243
Daniel Borkmannc3a8d942015-08-31 15:58:47 +02002244 if (ecn_ca) {
2245 __set_bit(RTAX_FEATURES - 1, mxc->mx_valid);
2246 mp[RTAX_FEATURES - 1] |= DST_FEATURE_ECN_CA;
2247 }
Florian Westphale715b6d2015-01-05 23:57:44 +01002248
Daniel Borkmannc3a8d942015-08-31 15:58:47 +02002249 mxc->mx = mp;
Florian Westphale715b6d2015-01-05 23:57:44 +01002250 return 0;
2251 err:
2252 kfree(mp);
2253 return -EINVAL;
2254}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002255
David Ahern8c145862016-04-24 21:26:04 -07002256static struct rt6_info *ip6_nh_lookup_table(struct net *net,
2257 struct fib6_config *cfg,
2258 const struct in6_addr *gw_addr)
2259{
2260 struct flowi6 fl6 = {
2261 .flowi6_oif = cfg->fc_ifindex,
2262 .daddr = *gw_addr,
2263 .saddr = cfg->fc_prefsrc,
2264 };
2265 struct fib6_table *table;
2266 struct rt6_info *rt;
David Ahernd5d32e42016-10-24 12:27:23 -07002267 int flags = RT6_LOOKUP_F_IFACE | RT6_LOOKUP_F_IGNORE_LINKSTATE;
David Ahern8c145862016-04-24 21:26:04 -07002268
2269 table = fib6_get_table(net, cfg->fc_table);
2270 if (!table)
2271 return NULL;
2272
2273 if (!ipv6_addr_any(&cfg->fc_prefsrc))
2274 flags |= RT6_LOOKUP_F_HAS_SADDR;
2275
2276 rt = ip6_pol_route(net, table, cfg->fc_ifindex, &fl6, flags);
2277
2278 /* if table lookup failed, fall back to full lookup */
2279 if (rt == net->ipv6.ip6_null_entry) {
2280 ip6_rt_put(rt);
2281 rt = NULL;
2282 }
2283
2284 return rt;
2285}
2286
David Ahern333c4302017-05-21 10:12:04 -06002287static struct rt6_info *ip6_route_info_create(struct fib6_config *cfg,
2288 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002289{
Daniel Lezcano55786892008-03-04 13:47:47 -08002290 struct net *net = cfg->fc_nlinfo.nl_net;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002291 struct rt6_info *rt = NULL;
2292 struct net_device *dev = NULL;
2293 struct inet6_dev *idev = NULL;
Thomas Grafc71099a2006-08-04 23:20:06 -07002294 struct fib6_table *table;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002295 int addr_type;
Roopa Prabhu8c5b83f2015-10-10 08:26:36 -07002296 int err = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002297
David Ahern557c44b2017-04-19 14:19:43 -07002298 /* RTF_PCPU is an internal flag; can not be set by userspace */
David Ahernd5d531c2017-05-21 10:12:05 -06002299 if (cfg->fc_flags & RTF_PCPU) {
2300 NL_SET_ERR_MSG(extack, "Userspace can not set RTF_PCPU");
David Ahern557c44b2017-04-19 14:19:43 -07002301 goto out;
David Ahernd5d531c2017-05-21 10:12:05 -06002302 }
David Ahern557c44b2017-04-19 14:19:43 -07002303
David Ahernd5d531c2017-05-21 10:12:05 -06002304 if (cfg->fc_dst_len > 128) {
2305 NL_SET_ERR_MSG(extack, "Invalid prefix length");
Roopa Prabhu8c5b83f2015-10-10 08:26:36 -07002306 goto out;
David Ahernd5d531c2017-05-21 10:12:05 -06002307 }
2308 if (cfg->fc_src_len > 128) {
2309 NL_SET_ERR_MSG(extack, "Invalid source address length");
2310 goto out;
2311 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002312#ifndef CONFIG_IPV6_SUBTREES
David Ahernd5d531c2017-05-21 10:12:05 -06002313 if (cfg->fc_src_len) {
2314 NL_SET_ERR_MSG(extack,
2315 "Specifying source address requires IPV6_SUBTREES to be enabled");
Roopa Prabhu8c5b83f2015-10-10 08:26:36 -07002316 goto out;
David Ahernd5d531c2017-05-21 10:12:05 -06002317 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002318#endif
Thomas Graf86872cb2006-08-22 00:01:08 -07002319 if (cfg->fc_ifindex) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002320 err = -ENODEV;
Daniel Lezcano55786892008-03-04 13:47:47 -08002321 dev = dev_get_by_index(net, cfg->fc_ifindex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002322 if (!dev)
2323 goto out;
2324 idev = in6_dev_get(dev);
2325 if (!idev)
2326 goto out;
2327 }
2328
Thomas Graf86872cb2006-08-22 00:01:08 -07002329 if (cfg->fc_metric == 0)
2330 cfg->fc_metric = IP6_RT_PRIO_USER;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002331
Matti Vaittinend71314b2011-11-14 00:14:49 +00002332 err = -ENOBUFS;
David S. Miller38308472011-12-03 18:02:47 -05002333 if (cfg->fc_nlinfo.nlh &&
2334 !(cfg->fc_nlinfo.nlh->nlmsg_flags & NLM_F_CREATE)) {
Matti Vaittinend71314b2011-11-14 00:14:49 +00002335 table = fib6_get_table(net, cfg->fc_table);
David S. Miller38308472011-12-03 18:02:47 -05002336 if (!table) {
Joe Perchesf3213832012-05-15 14:11:53 +00002337 pr_warn("NLM_F_CREATE should be specified when creating new route\n");
Matti Vaittinend71314b2011-11-14 00:14:49 +00002338 table = fib6_new_table(net, cfg->fc_table);
2339 }
2340 } else {
2341 table = fib6_new_table(net, cfg->fc_table);
2342 }
David S. Miller38308472011-12-03 18:02:47 -05002343
2344 if (!table)
Thomas Grafc71099a2006-08-04 23:20:06 -07002345 goto out;
Thomas Grafc71099a2006-08-04 23:20:06 -07002346
Martin KaFai Lauad706862015-08-14 11:05:52 -07002347 rt = ip6_dst_alloc(net, NULL,
2348 (cfg->fc_flags & RTF_ADDRCONF) ? 0 : DST_NOCOUNT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002349
David S. Miller38308472011-12-03 18:02:47 -05002350 if (!rt) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002351 err = -ENOMEM;
2352 goto out;
2353 }
2354
Gao feng1716a962012-04-06 00:13:10 +00002355 if (cfg->fc_flags & RTF_EXPIRES)
2356 rt6_set_expires(rt, jiffies +
2357 clock_t_to_jiffies(cfg->fc_expires));
2358 else
2359 rt6_clean_expires(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002360
Thomas Graf86872cb2006-08-22 00:01:08 -07002361 if (cfg->fc_protocol == RTPROT_UNSPEC)
2362 cfg->fc_protocol = RTPROT_BOOT;
2363 rt->rt6i_protocol = cfg->fc_protocol;
2364
2365 addr_type = ipv6_addr_type(&cfg->fc_dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002366
2367 if (addr_type & IPV6_ADDR_MULTICAST)
Changli Gaod8d1f302010-06-10 23:31:35 -07002368 rt->dst.input = ip6_mc_input;
Maciej Żenczykowskiab79ad12010-09-27 00:07:02 +00002369 else if (cfg->fc_flags & RTF_LOCAL)
2370 rt->dst.input = ip6_input;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002371 else
Changli Gaod8d1f302010-06-10 23:31:35 -07002372 rt->dst.input = ip6_forward;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002373
Changli Gaod8d1f302010-06-10 23:31:35 -07002374 rt->dst.output = ip6_output;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002375
Roopa Prabhu19e42e42015-07-21 10:43:48 +02002376 if (cfg->fc_encap) {
2377 struct lwtunnel_state *lwtstate;
2378
David Ahern30357d72017-01-30 12:07:37 -08002379 err = lwtunnel_build_state(cfg->fc_encap_type,
Tom Herbert127eb7c2015-08-24 09:45:41 -07002380 cfg->fc_encap, AF_INET6, cfg,
David Ahern9ae28722017-05-27 16:19:28 -06002381 &lwtstate, extack);
Roopa Prabhu19e42e42015-07-21 10:43:48 +02002382 if (err)
2383 goto out;
Jiri Benc61adedf2015-08-20 13:56:25 +02002384 rt->dst.lwtstate = lwtstate_get(lwtstate);
2385 if (lwtunnel_output_redirect(rt->dst.lwtstate)) {
2386 rt->dst.lwtstate->orig_output = rt->dst.output;
2387 rt->dst.output = lwtunnel_output;
Tom Herbert25368622015-08-17 13:42:24 -07002388 }
Jiri Benc61adedf2015-08-20 13:56:25 +02002389 if (lwtunnel_input_redirect(rt->dst.lwtstate)) {
2390 rt->dst.lwtstate->orig_input = rt->dst.input;
2391 rt->dst.input = lwtunnel_input;
Tom Herbert25368622015-08-17 13:42:24 -07002392 }
Roopa Prabhu19e42e42015-07-21 10:43:48 +02002393 }
2394
Thomas Graf86872cb2006-08-22 00:01:08 -07002395 ipv6_addr_prefix(&rt->rt6i_dst.addr, &cfg->fc_dst, cfg->fc_dst_len);
2396 rt->rt6i_dst.plen = cfg->fc_dst_len;
Martin KaFai Lauafc4eef2015-04-28 13:03:07 -07002397 if (rt->rt6i_dst.plen == 128)
Michal Kubečeke5fd3872014-03-27 13:04:08 +01002398 rt->dst.flags |= DST_HOST;
Michal Kubečeke5fd3872014-03-27 13:04:08 +01002399
Linus Torvalds1da177e2005-04-16 15:20:36 -07002400#ifdef CONFIG_IPV6_SUBTREES
Thomas Graf86872cb2006-08-22 00:01:08 -07002401 ipv6_addr_prefix(&rt->rt6i_src.addr, &cfg->fc_src, cfg->fc_src_len);
2402 rt->rt6i_src.plen = cfg->fc_src_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002403#endif
2404
Thomas Graf86872cb2006-08-22 00:01:08 -07002405 rt->rt6i_metric = cfg->fc_metric;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002406
2407 /* We cannot add true routes via loopback here,
2408 they would result in kernel looping; promote them to reject routes
2409 */
Thomas Graf86872cb2006-08-22 00:01:08 -07002410 if ((cfg->fc_flags & RTF_REJECT) ||
David S. Miller38308472011-12-03 18:02:47 -05002411 (dev && (dev->flags & IFF_LOOPBACK) &&
2412 !(addr_type & IPV6_ADDR_LOOPBACK) &&
2413 !(cfg->fc_flags & RTF_LOCAL))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002414 /* hold loopback dev/idev if we haven't done so. */
Daniel Lezcano55786892008-03-04 13:47:47 -08002415 if (dev != net->loopback_dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002416 if (dev) {
2417 dev_put(dev);
2418 in6_dev_put(idev);
2419 }
Daniel Lezcano55786892008-03-04 13:47:47 -08002420 dev = net->loopback_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002421 dev_hold(dev);
2422 idev = in6_dev_get(dev);
2423 if (!idev) {
2424 err = -ENODEV;
2425 goto out;
2426 }
2427 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002428 rt->rt6i_flags = RTF_REJECT|RTF_NONEXTHOP;
Nicolas Dichtelef2c7d72012-09-05 02:12:42 +00002429 switch (cfg->fc_type) {
2430 case RTN_BLACKHOLE:
2431 rt->dst.error = -EINVAL;
Eric W. Biedermanede20592015-10-07 16:48:47 -05002432 rt->dst.output = dst_discard_out;
Kamala R7150aed2013-12-02 19:55:21 +05302433 rt->dst.input = dst_discard;
Nicolas Dichtelef2c7d72012-09-05 02:12:42 +00002434 break;
2435 case RTN_PROHIBIT:
2436 rt->dst.error = -EACCES;
Kamala R7150aed2013-12-02 19:55:21 +05302437 rt->dst.output = ip6_pkt_prohibit_out;
2438 rt->dst.input = ip6_pkt_prohibit;
Nicolas Dichtelef2c7d72012-09-05 02:12:42 +00002439 break;
Nicolas Dichtelb4949ab2012-09-06 05:53:35 +00002440 case RTN_THROW:
Nikola Forró0315e382015-09-17 16:01:32 +02002441 case RTN_UNREACHABLE:
Nicolas Dichtelef2c7d72012-09-05 02:12:42 +00002442 default:
Kamala R7150aed2013-12-02 19:55:21 +05302443 rt->dst.error = (cfg->fc_type == RTN_THROW) ? -EAGAIN
Nikola Forró0315e382015-09-17 16:01:32 +02002444 : (cfg->fc_type == RTN_UNREACHABLE)
2445 ? -EHOSTUNREACH : -ENETUNREACH;
Kamala R7150aed2013-12-02 19:55:21 +05302446 rt->dst.output = ip6_pkt_discard_out;
2447 rt->dst.input = ip6_pkt_discard;
Nicolas Dichtelef2c7d72012-09-05 02:12:42 +00002448 break;
2449 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002450 goto install_route;
2451 }
2452
Thomas Graf86872cb2006-08-22 00:01:08 -07002453 if (cfg->fc_flags & RTF_GATEWAY) {
Eric Dumazetb71d1d42011-04-22 04:53:02 +00002454 const struct in6_addr *gw_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002455 int gwa_type;
2456
Thomas Graf86872cb2006-08-22 00:01:08 -07002457 gw_addr = &cfg->fc_gateway;
Florian Westphal330567b2015-08-07 10:54:28 +02002458 gwa_type = ipv6_addr_type(gw_addr);
Florian Westphal48ed7b22015-05-21 00:25:41 +02002459
2460 /* if gw_addr is local we will fail to detect this in case
2461 * address is still TENTATIVE (DAD in progress). rt6_lookup()
2462 * will return already-added prefix route via interface that
2463 * prefix route was assigned to, which might be non-loopback.
2464 */
2465 err = -EINVAL;
Florian Westphal330567b2015-08-07 10:54:28 +02002466 if (ipv6_chk_addr_and_flags(net, gw_addr,
2467 gwa_type & IPV6_ADDR_LINKLOCAL ?
David Ahernd5d531c2017-05-21 10:12:05 -06002468 dev : NULL, 0, 0)) {
2469 NL_SET_ERR_MSG(extack, "Invalid gateway address");
Florian Westphal48ed7b22015-05-21 00:25:41 +02002470 goto out;
David Ahernd5d531c2017-05-21 10:12:05 -06002471 }
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00002472 rt->rt6i_gateway = *gw_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002473
2474 if (gwa_type != (IPV6_ADDR_LINKLOCAL|IPV6_ADDR_UNICAST)) {
David Ahern8c145862016-04-24 21:26:04 -07002475 struct rt6_info *grt = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002476
2477 /* IPv6 strictly inhibits using not link-local
2478 addresses as nexthop address.
2479 Otherwise, router will not able to send redirects.
2480 It is very good, but in some (rare!) circumstances
2481 (SIT, PtP, NBMA NOARP links) it is handy to allow
2482 some exceptions. --ANK
Erik Nordmark96d58222016-12-03 20:57:09 -08002483 We allow IPv4-mapped nexthops to support RFC4798-type
2484 addressing
Linus Torvalds1da177e2005-04-16 15:20:36 -07002485 */
Erik Nordmark96d58222016-12-03 20:57:09 -08002486 if (!(gwa_type & (IPV6_ADDR_UNICAST |
David Ahernd5d531c2017-05-21 10:12:05 -06002487 IPV6_ADDR_MAPPED))) {
2488 NL_SET_ERR_MSG(extack,
2489 "Invalid gateway address");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002490 goto out;
David Ahernd5d531c2017-05-21 10:12:05 -06002491 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002492
Vincent Bernata435a072016-09-18 17:46:07 +02002493 if (cfg->fc_table) {
David Ahern8c145862016-04-24 21:26:04 -07002494 grt = ip6_nh_lookup_table(net, cfg, gw_addr);
2495
Vincent Bernata435a072016-09-18 17:46:07 +02002496 if (grt) {
2497 if (grt->rt6i_flags & RTF_GATEWAY ||
2498 (dev && dev != grt->dst.dev)) {
2499 ip6_rt_put(grt);
2500 grt = NULL;
2501 }
2502 }
2503 }
2504
David Ahern8c145862016-04-24 21:26:04 -07002505 if (!grt)
2506 grt = rt6_lookup(net, gw_addr, NULL,
2507 cfg->fc_ifindex, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002508
2509 err = -EHOSTUNREACH;
David S. Miller38308472011-12-03 18:02:47 -05002510 if (!grt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002511 goto out;
2512 if (dev) {
David S. Millerd1918542011-12-28 20:19:20 -05002513 if (dev != grt->dst.dev) {
Amerigo Wang94e187c2012-10-29 00:13:19 +00002514 ip6_rt_put(grt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002515 goto out;
2516 }
2517 } else {
David S. Millerd1918542011-12-28 20:19:20 -05002518 dev = grt->dst.dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002519 idev = grt->rt6i_idev;
2520 dev_hold(dev);
2521 in6_dev_hold(grt->rt6i_idev);
2522 }
David S. Miller38308472011-12-03 18:02:47 -05002523 if (!(grt->rt6i_flags & RTF_GATEWAY))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002524 err = 0;
Amerigo Wang94e187c2012-10-29 00:13:19 +00002525 ip6_rt_put(grt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002526
2527 if (err)
2528 goto out;
2529 }
2530 err = -EINVAL;
David Ahernd5d531c2017-05-21 10:12:05 -06002531 if (!dev) {
2532 NL_SET_ERR_MSG(extack, "Egress device not specified");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002533 goto out;
David Ahernd5d531c2017-05-21 10:12:05 -06002534 } else if (dev->flags & IFF_LOOPBACK) {
2535 NL_SET_ERR_MSG(extack,
2536 "Egress device can not be loopback device for this route");
2537 goto out;
2538 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002539 }
2540
2541 err = -ENODEV;
David S. Miller38308472011-12-03 18:02:47 -05002542 if (!dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002543 goto out;
2544
Daniel Walterc3968a82011-04-13 21:10:57 +00002545 if (!ipv6_addr_any(&cfg->fc_prefsrc)) {
2546 if (!ipv6_chk_addr(net, &cfg->fc_prefsrc, dev, 0)) {
David Ahernd5d531c2017-05-21 10:12:05 -06002547 NL_SET_ERR_MSG(extack, "Invalid source address");
Daniel Walterc3968a82011-04-13 21:10:57 +00002548 err = -EINVAL;
2549 goto out;
2550 }
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00002551 rt->rt6i_prefsrc.addr = cfg->fc_prefsrc;
Daniel Walterc3968a82011-04-13 21:10:57 +00002552 rt->rt6i_prefsrc.plen = 128;
2553 } else
2554 rt->rt6i_prefsrc.plen = 0;
2555
Thomas Graf86872cb2006-08-22 00:01:08 -07002556 rt->rt6i_flags = cfg->fc_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002557
2558install_route:
Changli Gaod8d1f302010-06-10 23:31:35 -07002559 rt->dst.dev = dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002560 rt->rt6i_idev = idev;
Thomas Grafc71099a2006-08-04 23:20:06 -07002561 rt->rt6i_table = table;
Daniel Lezcano63152fc2008-03-03 23:31:11 -08002562
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09002563 cfg->fc_nlinfo.nl_net = dev_net(dev);
Daniel Lezcano63152fc2008-03-03 23:31:11 -08002564
Roopa Prabhu8c5b83f2015-10-10 08:26:36 -07002565 return rt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002566out:
2567 if (dev)
2568 dev_put(dev);
2569 if (idev)
2570 in6_dev_put(idev);
Wei Wang587fea72017-06-17 10:42:36 -07002571 if (rt)
2572 dst_release_immediate(&rt->dst);
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07002573
Roopa Prabhu8c5b83f2015-10-10 08:26:36 -07002574 return ERR_PTR(err);
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07002575}
2576
David Ahern333c4302017-05-21 10:12:04 -06002577int ip6_route_add(struct fib6_config *cfg,
2578 struct netlink_ext_ack *extack)
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07002579{
2580 struct mx6_config mxc = { .mx = NULL, };
Roopa Prabhu8c5b83f2015-10-10 08:26:36 -07002581 struct rt6_info *rt;
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07002582 int err;
2583
David Ahern333c4302017-05-21 10:12:04 -06002584 rt = ip6_route_info_create(cfg, extack);
Roopa Prabhu8c5b83f2015-10-10 08:26:36 -07002585 if (IS_ERR(rt)) {
2586 err = PTR_ERR(rt);
2587 rt = NULL;
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07002588 goto out;
Roopa Prabhu8c5b83f2015-10-10 08:26:36 -07002589 }
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07002590
2591 err = ip6_convert_metrics(&mxc, cfg);
2592 if (err)
2593 goto out;
2594
David Ahern333c4302017-05-21 10:12:04 -06002595 err = __ip6_ins_rt(rt, &cfg->fc_nlinfo, &mxc, extack);
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07002596
2597 kfree(mxc.mx);
2598
2599 return err;
2600out:
Wei Wang587fea72017-06-17 10:42:36 -07002601 if (rt)
2602 dst_release_immediate(&rt->dst);
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07002603
Linus Torvalds1da177e2005-04-16 15:20:36 -07002604 return err;
2605}
2606
Thomas Graf86872cb2006-08-22 00:01:08 -07002607static int __ip6_del_rt(struct rt6_info *rt, struct nl_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002608{
2609 int err;
Thomas Grafc71099a2006-08-04 23:20:06 -07002610 struct fib6_table *table;
David S. Millerd1918542011-12-28 20:19:20 -05002611 struct net *net = dev_net(rt->dst.dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002612
Wei Wanga4c2fd72017-06-17 10:42:42 -07002613 if (rt == net->ipv6.ip6_null_entry) {
Gao feng6825a262012-09-19 19:25:34 +00002614 err = -ENOENT;
2615 goto out;
2616 }
Patrick McHardy6c813a72006-08-06 22:22:47 -07002617
Thomas Grafc71099a2006-08-04 23:20:06 -07002618 table = rt->rt6i_table;
2619 write_lock_bh(&table->tb6_lock);
Thomas Graf86872cb2006-08-22 00:01:08 -07002620 err = fib6_del(rt, info);
Thomas Grafc71099a2006-08-04 23:20:06 -07002621 write_unlock_bh(&table->tb6_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002622
Gao feng6825a262012-09-19 19:25:34 +00002623out:
Amerigo Wang94e187c2012-10-29 00:13:19 +00002624 ip6_rt_put(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002625 return err;
2626}
2627
Thomas Grafe0a1ad732006-08-22 00:00:21 -07002628int ip6_del_rt(struct rt6_info *rt)
2629{
Denis V. Lunev4d1169c2008-01-10 03:26:13 -08002630 struct nl_info info = {
David S. Millerd1918542011-12-28 20:19:20 -05002631 .nl_net = dev_net(rt->dst.dev),
Denis V. Lunev4d1169c2008-01-10 03:26:13 -08002632 };
Denis V. Lunev528c4ce2007-12-13 09:45:12 -08002633 return __ip6_del_rt(rt, &info);
Thomas Grafe0a1ad732006-08-22 00:00:21 -07002634}
2635
David Ahern0ae81332017-02-02 12:37:08 -08002636static int __ip6_del_rt_siblings(struct rt6_info *rt, struct fib6_config *cfg)
2637{
2638 struct nl_info *info = &cfg->fc_nlinfo;
WANG Conge3330032017-02-27 16:07:43 -08002639 struct net *net = info->nl_net;
David Ahern16a16cd2017-02-02 12:37:11 -08002640 struct sk_buff *skb = NULL;
David Ahern0ae81332017-02-02 12:37:08 -08002641 struct fib6_table *table;
WANG Conge3330032017-02-27 16:07:43 -08002642 int err = -ENOENT;
David Ahern0ae81332017-02-02 12:37:08 -08002643
WANG Conge3330032017-02-27 16:07:43 -08002644 if (rt == net->ipv6.ip6_null_entry)
2645 goto out_put;
David Ahern0ae81332017-02-02 12:37:08 -08002646 table = rt->rt6i_table;
2647 write_lock_bh(&table->tb6_lock);
2648
2649 if (rt->rt6i_nsiblings && cfg->fc_delete_all_nh) {
2650 struct rt6_info *sibling, *next_sibling;
2651
David Ahern16a16cd2017-02-02 12:37:11 -08002652 /* prefer to send a single notification with all hops */
2653 skb = nlmsg_new(rt6_nlmsg_size(rt), gfp_any());
2654 if (skb) {
2655 u32 seq = info->nlh ? info->nlh->nlmsg_seq : 0;
2656
WANG Conge3330032017-02-27 16:07:43 -08002657 if (rt6_fill_node(net, skb, rt,
David Ahern16a16cd2017-02-02 12:37:11 -08002658 NULL, NULL, 0, RTM_DELROUTE,
2659 info->portid, seq, 0) < 0) {
2660 kfree_skb(skb);
2661 skb = NULL;
2662 } else
2663 info->skip_notify = 1;
2664 }
2665
David Ahern0ae81332017-02-02 12:37:08 -08002666 list_for_each_entry_safe(sibling, next_sibling,
2667 &rt->rt6i_siblings,
2668 rt6i_siblings) {
2669 err = fib6_del(sibling, info);
2670 if (err)
WANG Conge3330032017-02-27 16:07:43 -08002671 goto out_unlock;
David Ahern0ae81332017-02-02 12:37:08 -08002672 }
2673 }
2674
2675 err = fib6_del(rt, info);
WANG Conge3330032017-02-27 16:07:43 -08002676out_unlock:
David Ahern0ae81332017-02-02 12:37:08 -08002677 write_unlock_bh(&table->tb6_lock);
WANG Conge3330032017-02-27 16:07:43 -08002678out_put:
David Ahern0ae81332017-02-02 12:37:08 -08002679 ip6_rt_put(rt);
David Ahern16a16cd2017-02-02 12:37:11 -08002680
2681 if (skb) {
WANG Conge3330032017-02-27 16:07:43 -08002682 rtnl_notify(skb, net, info->portid, RTNLGRP_IPV6_ROUTE,
David Ahern16a16cd2017-02-02 12:37:11 -08002683 info->nlh, gfp_any());
2684 }
David Ahern0ae81332017-02-02 12:37:08 -08002685 return err;
2686}
2687
David Ahern333c4302017-05-21 10:12:04 -06002688static int ip6_route_del(struct fib6_config *cfg,
2689 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002690{
Thomas Grafc71099a2006-08-04 23:20:06 -07002691 struct fib6_table *table;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002692 struct fib6_node *fn;
2693 struct rt6_info *rt;
2694 int err = -ESRCH;
2695
Daniel Lezcano55786892008-03-04 13:47:47 -08002696 table = fib6_get_table(cfg->fc_nlinfo.nl_net, cfg->fc_table);
David Ahernd5d531c2017-05-21 10:12:05 -06002697 if (!table) {
2698 NL_SET_ERR_MSG(extack, "FIB table does not exist");
Thomas Grafc71099a2006-08-04 23:20:06 -07002699 return err;
David Ahernd5d531c2017-05-21 10:12:05 -06002700 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002701
Thomas Grafc71099a2006-08-04 23:20:06 -07002702 read_lock_bh(&table->tb6_lock);
2703
2704 fn = fib6_locate(&table->tb6_root,
Thomas Graf86872cb2006-08-22 00:01:08 -07002705 &cfg->fc_dst, cfg->fc_dst_len,
2706 &cfg->fc_src, cfg->fc_src_len);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002707
Linus Torvalds1da177e2005-04-16 15:20:36 -07002708 if (fn) {
Changli Gaod8d1f302010-06-10 23:31:35 -07002709 for (rt = fn->leaf; rt; rt = rt->dst.rt6_next) {
Martin KaFai Lau1f56a01f2015-04-28 13:03:03 -07002710 if ((rt->rt6i_flags & RTF_CACHE) &&
2711 !(cfg->fc_flags & RTF_CACHE))
2712 continue;
Thomas Graf86872cb2006-08-22 00:01:08 -07002713 if (cfg->fc_ifindex &&
David S. Millerd1918542011-12-28 20:19:20 -05002714 (!rt->dst.dev ||
2715 rt->dst.dev->ifindex != cfg->fc_ifindex))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002716 continue;
Thomas Graf86872cb2006-08-22 00:01:08 -07002717 if (cfg->fc_flags & RTF_GATEWAY &&
2718 !ipv6_addr_equal(&cfg->fc_gateway, &rt->rt6i_gateway))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002719 continue;
Thomas Graf86872cb2006-08-22 00:01:08 -07002720 if (cfg->fc_metric && cfg->fc_metric != rt->rt6i_metric)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002721 continue;
Mantas Mc2ed1882016-12-16 10:30:59 +02002722 if (cfg->fc_protocol && cfg->fc_protocol != rt->rt6i_protocol)
2723 continue;
Changli Gaod8d1f302010-06-10 23:31:35 -07002724 dst_hold(&rt->dst);
Thomas Grafc71099a2006-08-04 23:20:06 -07002725 read_unlock_bh(&table->tb6_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002726
David Ahern0ae81332017-02-02 12:37:08 -08002727 /* if gateway was specified only delete the one hop */
2728 if (cfg->fc_flags & RTF_GATEWAY)
2729 return __ip6_del_rt(rt, &cfg->fc_nlinfo);
2730
2731 return __ip6_del_rt_siblings(rt, cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002732 }
2733 }
Thomas Grafc71099a2006-08-04 23:20:06 -07002734 read_unlock_bh(&table->tb6_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002735
2736 return err;
2737}
2738
David S. Miller6700c272012-07-17 03:29:28 -07002739static void rt6_do_redirect(struct dst_entry *dst, struct sock *sk, struct sk_buff *skb)
YOSHIFUJI Hideakia6279452006-08-23 17:18:26 -07002740{
YOSHIFUJI Hideakia6279452006-08-23 17:18:26 -07002741 struct netevent_redirect netevent;
David S. Millere8599ff2012-07-11 23:43:53 -07002742 struct rt6_info *rt, *nrt = NULL;
David S. Millere8599ff2012-07-11 23:43:53 -07002743 struct ndisc_options ndopts;
2744 struct inet6_dev *in6_dev;
2745 struct neighbour *neigh;
YOSHIFUJI Hideaki / 吉藤英明71bcdba2013-01-05 16:34:51 +00002746 struct rd_msg *msg;
David S. Miller6e157b62012-07-12 00:05:02 -07002747 int optlen, on_link;
2748 u8 *lladdr;
David S. Millere8599ff2012-07-11 23:43:53 -07002749
Simon Horman29a3cad2013-05-28 20:34:26 +00002750 optlen = skb_tail_pointer(skb) - skb_transport_header(skb);
YOSHIFUJI Hideaki / 吉藤英明71bcdba2013-01-05 16:34:51 +00002751 optlen -= sizeof(*msg);
David S. Millere8599ff2012-07-11 23:43:53 -07002752
2753 if (optlen < 0) {
David S. Miller6e157b62012-07-12 00:05:02 -07002754 net_dbg_ratelimited("rt6_do_redirect: packet too short\n");
David S. Millere8599ff2012-07-11 23:43:53 -07002755 return;
2756 }
2757
YOSHIFUJI Hideaki / 吉藤英明71bcdba2013-01-05 16:34:51 +00002758 msg = (struct rd_msg *)icmp6_hdr(skb);
David S. Millere8599ff2012-07-11 23:43:53 -07002759
YOSHIFUJI Hideaki / 吉藤英明71bcdba2013-01-05 16:34:51 +00002760 if (ipv6_addr_is_multicast(&msg->dest)) {
David S. Miller6e157b62012-07-12 00:05:02 -07002761 net_dbg_ratelimited("rt6_do_redirect: destination address is multicast\n");
David S. Millere8599ff2012-07-11 23:43:53 -07002762 return;
2763 }
2764
David S. Miller6e157b62012-07-12 00:05:02 -07002765 on_link = 0;
YOSHIFUJI Hideaki / 吉藤英明71bcdba2013-01-05 16:34:51 +00002766 if (ipv6_addr_equal(&msg->dest, &msg->target)) {
David S. Millere8599ff2012-07-11 23:43:53 -07002767 on_link = 1;
YOSHIFUJI Hideaki / 吉藤英明71bcdba2013-01-05 16:34:51 +00002768 } else if (ipv6_addr_type(&msg->target) !=
David S. Millere8599ff2012-07-11 23:43:53 -07002769 (IPV6_ADDR_UNICAST|IPV6_ADDR_LINKLOCAL)) {
David S. Miller6e157b62012-07-12 00:05:02 -07002770 net_dbg_ratelimited("rt6_do_redirect: target address is not link-local unicast\n");
David S. Millere8599ff2012-07-11 23:43:53 -07002771 return;
2772 }
2773
2774 in6_dev = __in6_dev_get(skb->dev);
2775 if (!in6_dev)
2776 return;
2777 if (in6_dev->cnf.forwarding || !in6_dev->cnf.accept_redirects)
2778 return;
2779
2780 /* RFC2461 8.1:
2781 * The IP source address of the Redirect MUST be the same as the current
2782 * first-hop router for the specified ICMP Destination Address.
2783 */
2784
Alexander Aringf997c552016-06-15 21:20:23 +02002785 if (!ndisc_parse_options(skb->dev, msg->opt, optlen, &ndopts)) {
David S. Millere8599ff2012-07-11 23:43:53 -07002786 net_dbg_ratelimited("rt6_redirect: invalid ND options\n");
2787 return;
2788 }
David S. Miller6e157b62012-07-12 00:05:02 -07002789
2790 lladdr = NULL;
David S. Millere8599ff2012-07-11 23:43:53 -07002791 if (ndopts.nd_opts_tgt_lladdr) {
2792 lladdr = ndisc_opt_addr_data(ndopts.nd_opts_tgt_lladdr,
2793 skb->dev);
2794 if (!lladdr) {
2795 net_dbg_ratelimited("rt6_redirect: invalid link-layer address length\n");
2796 return;
2797 }
2798 }
2799
David S. Miller6e157b62012-07-12 00:05:02 -07002800 rt = (struct rt6_info *) dst;
Matthias Schifferec13ad12015-11-02 01:24:38 +01002801 if (rt->rt6i_flags & RTF_REJECT) {
David S. Miller6e157b62012-07-12 00:05:02 -07002802 net_dbg_ratelimited("rt6_redirect: source isn't a valid nexthop for redirect target\n");
2803 return;
2804 }
2805
2806 /* Redirect received -> path was valid.
2807 * Look, redirects are sent only in response to data packets,
2808 * so that this nexthop apparently is reachable. --ANK
2809 */
Julian Anastasov0dec8792017-02-06 23:14:16 +02002810 dst_confirm_neigh(&rt->dst, &ipv6_hdr(skb)->saddr);
David S. Miller6e157b62012-07-12 00:05:02 -07002811
YOSHIFUJI Hideaki / 吉藤英明71bcdba2013-01-05 16:34:51 +00002812 neigh = __neigh_lookup(&nd_tbl, &msg->target, skb->dev, 1);
David S. Millere8599ff2012-07-11 23:43:53 -07002813 if (!neigh)
2814 return;
2815
Linus Torvalds1da177e2005-04-16 15:20:36 -07002816 /*
2817 * We have finally decided to accept it.
2818 */
2819
Alexander Aringf997c552016-06-15 21:20:23 +02002820 ndisc_update(skb->dev, neigh, lladdr, NUD_STALE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002821 NEIGH_UPDATE_F_WEAK_OVERRIDE|
2822 NEIGH_UPDATE_F_OVERRIDE|
2823 (on_link ? 0 : (NEIGH_UPDATE_F_OVERRIDE_ISROUTER|
Alexander Aringf997c552016-06-15 21:20:23 +02002824 NEIGH_UPDATE_F_ISROUTER)),
2825 NDISC_REDIRECT, &ndopts);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002826
Martin KaFai Lau83a09ab2015-05-22 20:56:05 -07002827 nrt = ip6_rt_cache_alloc(rt, &msg->dest, NULL);
David S. Miller38308472011-12-03 18:02:47 -05002828 if (!nrt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002829 goto out;
2830
2831 nrt->rt6i_flags = RTF_GATEWAY|RTF_UP|RTF_DYNAMIC|RTF_CACHE;
2832 if (on_link)
2833 nrt->rt6i_flags &= ~RTF_GATEWAY;
2834
Xin Longb91d5322017-08-03 14:13:46 +08002835 nrt->rt6i_protocol = RTPROT_REDIRECT;
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00002836 nrt->rt6i_gateway = *(struct in6_addr *)neigh->primary_key;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002837
Thomas Graf40e22e82006-08-22 00:00:45 -07002838 if (ip6_ins_rt(nrt))
Wei Wang1cfb71e2017-06-17 10:42:33 -07002839 goto out_release;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002840
Changli Gaod8d1f302010-06-10 23:31:35 -07002841 netevent.old = &rt->dst;
2842 netevent.new = &nrt->dst;
YOSHIFUJI Hideaki / 吉藤英明71bcdba2013-01-05 16:34:51 +00002843 netevent.daddr = &msg->dest;
YOSHIFUJI Hideaki / 吉藤英明60592832013-01-14 09:28:27 +00002844 netevent.neigh = neigh;
Tom Tucker8d717402006-07-30 20:43:36 -07002845 call_netevent_notifiers(NETEVENT_REDIRECT, &netevent);
2846
David S. Miller38308472011-12-03 18:02:47 -05002847 if (rt->rt6i_flags & RTF_CACHE) {
David S. Miller6e157b62012-07-12 00:05:02 -07002848 rt = (struct rt6_info *) dst_clone(&rt->dst);
Thomas Grafe0a1ad732006-08-22 00:00:21 -07002849 ip6_del_rt(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002850 }
2851
Wei Wang1cfb71e2017-06-17 10:42:33 -07002852out_release:
2853 /* Release the reference taken in
2854 * ip6_rt_cache_alloc()
2855 */
2856 dst_release(&nrt->dst);
2857
Linus Torvalds1da177e2005-04-16 15:20:36 -07002858out:
David S. Millere8599ff2012-07-11 23:43:53 -07002859 neigh_release(neigh);
David S. Miller6e157b62012-07-12 00:05:02 -07002860}
2861
Linus Torvalds1da177e2005-04-16 15:20:36 -07002862/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002863 * Misc support functions
2864 */
2865
Martin KaFai Lau4b32b5a2015-04-28 13:03:06 -07002866static void rt6_set_from(struct rt6_info *rt, struct rt6_info *from)
2867{
2868 BUG_ON(from->dst.from);
2869
2870 rt->rt6i_flags &= ~RTF_EXPIRES;
2871 dst_hold(&from->dst);
2872 rt->dst.from = &from->dst;
2873 dst_init_metrics(&rt->dst, dst_metrics_ptr(&from->dst), true);
2874}
2875
Martin KaFai Lau83a09ab2015-05-22 20:56:05 -07002876static void ip6_rt_copy_init(struct rt6_info *rt, struct rt6_info *ort)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002877{
Martin KaFai Lau83a09ab2015-05-22 20:56:05 -07002878 rt->dst.input = ort->dst.input;
2879 rt->dst.output = ort->dst.output;
2880 rt->rt6i_dst = ort->rt6i_dst;
2881 rt->dst.error = ort->dst.error;
2882 rt->rt6i_idev = ort->rt6i_idev;
2883 if (rt->rt6i_idev)
2884 in6_dev_hold(rt->rt6i_idev);
2885 rt->dst.lastuse = jiffies;
2886 rt->rt6i_gateway = ort->rt6i_gateway;
2887 rt->rt6i_flags = ort->rt6i_flags;
2888 rt6_set_from(rt, ort);
2889 rt->rt6i_metric = ort->rt6i_metric;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002890#ifdef CONFIG_IPV6_SUBTREES
Martin KaFai Lau83a09ab2015-05-22 20:56:05 -07002891 rt->rt6i_src = ort->rt6i_src;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002892#endif
Martin KaFai Lau83a09ab2015-05-22 20:56:05 -07002893 rt->rt6i_prefsrc = ort->rt6i_prefsrc;
2894 rt->rt6i_table = ort->rt6i_table;
Jiri Benc61adedf2015-08-20 13:56:25 +02002895 rt->dst.lwtstate = lwtstate_get(ort->dst.lwtstate);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002896}
2897
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08002898#ifdef CONFIG_IPV6_ROUTE_INFO
Daniel Lezcanoefa2cea2008-03-04 13:46:48 -08002899static struct rt6_info *rt6_get_route_info(struct net *net,
Eric Dumazetb71d1d42011-04-22 04:53:02 +00002900 const struct in6_addr *prefix, int prefixlen,
David Ahern830218c2016-10-24 10:52:35 -07002901 const struct in6_addr *gwaddr,
2902 struct net_device *dev)
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08002903{
David Ahern830218c2016-10-24 10:52:35 -07002904 u32 tb_id = l3mdev_fib_table(dev) ? : RT6_TABLE_INFO;
2905 int ifindex = dev->ifindex;
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08002906 struct fib6_node *fn;
2907 struct rt6_info *rt = NULL;
Thomas Grafc71099a2006-08-04 23:20:06 -07002908 struct fib6_table *table;
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08002909
David Ahern830218c2016-10-24 10:52:35 -07002910 table = fib6_get_table(net, tb_id);
David S. Miller38308472011-12-03 18:02:47 -05002911 if (!table)
Thomas Grafc71099a2006-08-04 23:20:06 -07002912 return NULL;
2913
Li RongQing5744dd92012-09-11 21:59:01 +00002914 read_lock_bh(&table->tb6_lock);
Ian Morris67ba4152014-08-24 21:53:10 +01002915 fn = fib6_locate(&table->tb6_root, prefix, prefixlen, NULL, 0);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08002916 if (!fn)
2917 goto out;
2918
Changli Gaod8d1f302010-06-10 23:31:35 -07002919 for (rt = fn->leaf; rt; rt = rt->dst.rt6_next) {
David S. Millerd1918542011-12-28 20:19:20 -05002920 if (rt->dst.dev->ifindex != ifindex)
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08002921 continue;
2922 if ((rt->rt6i_flags & (RTF_ROUTEINFO|RTF_GATEWAY)) != (RTF_ROUTEINFO|RTF_GATEWAY))
2923 continue;
2924 if (!ipv6_addr_equal(&rt->rt6i_gateway, gwaddr))
2925 continue;
Changli Gaod8d1f302010-06-10 23:31:35 -07002926 dst_hold(&rt->dst);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08002927 break;
2928 }
2929out:
Li RongQing5744dd92012-09-11 21:59:01 +00002930 read_unlock_bh(&table->tb6_lock);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08002931 return rt;
2932}
2933
Daniel Lezcanoefa2cea2008-03-04 13:46:48 -08002934static struct rt6_info *rt6_add_route_info(struct net *net,
Eric Dumazetb71d1d42011-04-22 04:53:02 +00002935 const struct in6_addr *prefix, int prefixlen,
David Ahern830218c2016-10-24 10:52:35 -07002936 const struct in6_addr *gwaddr,
2937 struct net_device *dev,
Eric Dumazet95c96172012-04-15 05:58:06 +00002938 unsigned int pref)
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08002939{
Thomas Graf86872cb2006-08-22 00:01:08 -07002940 struct fib6_config cfg = {
Rami Rosen238fc7e2008-02-09 23:43:11 -08002941 .fc_metric = IP6_RT_PRIO_USER,
David Ahern830218c2016-10-24 10:52:35 -07002942 .fc_ifindex = dev->ifindex,
Thomas Graf86872cb2006-08-22 00:01:08 -07002943 .fc_dst_len = prefixlen,
2944 .fc_flags = RTF_GATEWAY | RTF_ADDRCONF | RTF_ROUTEINFO |
2945 RTF_UP | RTF_PREF(pref),
Xin Longb91d5322017-08-03 14:13:46 +08002946 .fc_protocol = RTPROT_RA,
Eric W. Biederman15e47302012-09-07 20:12:54 +00002947 .fc_nlinfo.portid = 0,
Daniel Lezcanoefa2cea2008-03-04 13:46:48 -08002948 .fc_nlinfo.nlh = NULL,
2949 .fc_nlinfo.nl_net = net,
Thomas Graf86872cb2006-08-22 00:01:08 -07002950 };
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08002951
David Ahern830218c2016-10-24 10:52:35 -07002952 cfg.fc_table = l3mdev_fib_table(dev) ? : RT6_TABLE_INFO,
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00002953 cfg.fc_dst = *prefix;
2954 cfg.fc_gateway = *gwaddr;
Thomas Graf86872cb2006-08-22 00:01:08 -07002955
YOSHIFUJI Hideakie317da92006-03-20 17:06:42 -08002956 /* We should treat it as a default route if prefix length is 0. */
2957 if (!prefixlen)
Thomas Graf86872cb2006-08-22 00:01:08 -07002958 cfg.fc_flags |= RTF_DEFAULT;
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08002959
David Ahern333c4302017-05-21 10:12:04 -06002960 ip6_route_add(&cfg, NULL);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08002961
David Ahern830218c2016-10-24 10:52:35 -07002962 return rt6_get_route_info(net, prefix, prefixlen, gwaddr, dev);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08002963}
2964#endif
2965
Eric Dumazetb71d1d42011-04-22 04:53:02 +00002966struct rt6_info *rt6_get_dflt_router(const struct in6_addr *addr, struct net_device *dev)
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002967{
David Ahern830218c2016-10-24 10:52:35 -07002968 u32 tb_id = l3mdev_fib_table(dev) ? : RT6_TABLE_DFLT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002969 struct rt6_info *rt;
Thomas Grafc71099a2006-08-04 23:20:06 -07002970 struct fib6_table *table;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002971
David Ahern830218c2016-10-24 10:52:35 -07002972 table = fib6_get_table(dev_net(dev), tb_id);
David S. Miller38308472011-12-03 18:02:47 -05002973 if (!table)
Thomas Grafc71099a2006-08-04 23:20:06 -07002974 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002975
Li RongQing5744dd92012-09-11 21:59:01 +00002976 read_lock_bh(&table->tb6_lock);
Ian Morris67ba4152014-08-24 21:53:10 +01002977 for (rt = table->tb6_root.leaf; rt; rt = rt->dst.rt6_next) {
David S. Millerd1918542011-12-28 20:19:20 -05002978 if (dev == rt->dst.dev &&
YOSHIFUJI Hideaki045927f2006-03-20 17:00:48 -08002979 ((rt->rt6i_flags & (RTF_ADDRCONF | RTF_DEFAULT)) == (RTF_ADDRCONF | RTF_DEFAULT)) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07002980 ipv6_addr_equal(&rt->rt6i_gateway, addr))
2981 break;
2982 }
2983 if (rt)
Changli Gaod8d1f302010-06-10 23:31:35 -07002984 dst_hold(&rt->dst);
Li RongQing5744dd92012-09-11 21:59:01 +00002985 read_unlock_bh(&table->tb6_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002986 return rt;
2987}
2988
Eric Dumazetb71d1d42011-04-22 04:53:02 +00002989struct rt6_info *rt6_add_dflt_router(const struct in6_addr *gwaddr,
YOSHIFUJI Hideakiebacaaa2006-03-20 17:04:53 -08002990 struct net_device *dev,
2991 unsigned int pref)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002992{
Thomas Graf86872cb2006-08-22 00:01:08 -07002993 struct fib6_config cfg = {
David Ahernca254492015-10-12 11:47:10 -07002994 .fc_table = l3mdev_fib_table(dev) ? : RT6_TABLE_DFLT,
Rami Rosen238fc7e2008-02-09 23:43:11 -08002995 .fc_metric = IP6_RT_PRIO_USER,
Thomas Graf86872cb2006-08-22 00:01:08 -07002996 .fc_ifindex = dev->ifindex,
2997 .fc_flags = RTF_GATEWAY | RTF_ADDRCONF | RTF_DEFAULT |
2998 RTF_UP | RTF_EXPIRES | RTF_PREF(pref),
Xin Longb91d5322017-08-03 14:13:46 +08002999 .fc_protocol = RTPROT_RA,
Eric W. Biederman15e47302012-09-07 20:12:54 +00003000 .fc_nlinfo.portid = 0,
Daniel Lezcano55786892008-03-04 13:47:47 -08003001 .fc_nlinfo.nlh = NULL,
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09003002 .fc_nlinfo.nl_net = dev_net(dev),
Thomas Graf86872cb2006-08-22 00:01:08 -07003003 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07003004
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00003005 cfg.fc_gateway = *gwaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003006
David Ahern333c4302017-05-21 10:12:04 -06003007 if (!ip6_route_add(&cfg, NULL)) {
David Ahern830218c2016-10-24 10:52:35 -07003008 struct fib6_table *table;
3009
3010 table = fib6_get_table(dev_net(dev), cfg.fc_table);
3011 if (table)
3012 table->flags |= RT6_TABLE_HAS_DFLT_ROUTER;
3013 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003014
Linus Torvalds1da177e2005-04-16 15:20:36 -07003015 return rt6_get_dflt_router(gwaddr, dev);
3016}
3017
David Ahern830218c2016-10-24 10:52:35 -07003018static void __rt6_purge_dflt_routers(struct fib6_table *table)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003019{
3020 struct rt6_info *rt;
3021
3022restart:
Thomas Grafc71099a2006-08-04 23:20:06 -07003023 read_lock_bh(&table->tb6_lock);
Changli Gaod8d1f302010-06-10 23:31:35 -07003024 for (rt = table->tb6_root.leaf; rt; rt = rt->dst.rt6_next) {
Lorenzo Colitti3e8b0ac2013-03-03 20:46:46 +00003025 if (rt->rt6i_flags & (RTF_DEFAULT | RTF_ADDRCONF) &&
3026 (!rt->rt6i_idev || rt->rt6i_idev->cnf.accept_ra != 2)) {
Changli Gaod8d1f302010-06-10 23:31:35 -07003027 dst_hold(&rt->dst);
Thomas Grafc71099a2006-08-04 23:20:06 -07003028 read_unlock_bh(&table->tb6_lock);
Thomas Grafe0a1ad732006-08-22 00:00:21 -07003029 ip6_del_rt(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003030 goto restart;
3031 }
3032 }
Thomas Grafc71099a2006-08-04 23:20:06 -07003033 read_unlock_bh(&table->tb6_lock);
David Ahern830218c2016-10-24 10:52:35 -07003034
3035 table->flags &= ~RT6_TABLE_HAS_DFLT_ROUTER;
3036}
3037
3038void rt6_purge_dflt_routers(struct net *net)
3039{
3040 struct fib6_table *table;
3041 struct hlist_head *head;
3042 unsigned int h;
3043
3044 rcu_read_lock();
3045
3046 for (h = 0; h < FIB6_TABLE_HASHSZ; h++) {
3047 head = &net->ipv6.fib_table_hash[h];
3048 hlist_for_each_entry_rcu(table, head, tb6_hlist) {
3049 if (table->flags & RT6_TABLE_HAS_DFLT_ROUTER)
3050 __rt6_purge_dflt_routers(table);
3051 }
3052 }
3053
3054 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003055}
3056
Daniel Lezcano55786892008-03-04 13:47:47 -08003057static void rtmsg_to_fib6_config(struct net *net,
3058 struct in6_rtmsg *rtmsg,
Thomas Graf86872cb2006-08-22 00:01:08 -07003059 struct fib6_config *cfg)
3060{
3061 memset(cfg, 0, sizeof(*cfg));
3062
David Ahernca254492015-10-12 11:47:10 -07003063 cfg->fc_table = l3mdev_fib_table_by_index(net, rtmsg->rtmsg_ifindex) ?
3064 : RT6_TABLE_MAIN;
Thomas Graf86872cb2006-08-22 00:01:08 -07003065 cfg->fc_ifindex = rtmsg->rtmsg_ifindex;
3066 cfg->fc_metric = rtmsg->rtmsg_metric;
3067 cfg->fc_expires = rtmsg->rtmsg_info;
3068 cfg->fc_dst_len = rtmsg->rtmsg_dst_len;
3069 cfg->fc_src_len = rtmsg->rtmsg_src_len;
3070 cfg->fc_flags = rtmsg->rtmsg_flags;
3071
Daniel Lezcano55786892008-03-04 13:47:47 -08003072 cfg->fc_nlinfo.nl_net = net;
Benjamin Theryf1243c22008-02-26 18:10:03 -08003073
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00003074 cfg->fc_dst = rtmsg->rtmsg_dst;
3075 cfg->fc_src = rtmsg->rtmsg_src;
3076 cfg->fc_gateway = rtmsg->rtmsg_gateway;
Thomas Graf86872cb2006-08-22 00:01:08 -07003077}
3078
Daniel Lezcano55786892008-03-04 13:47:47 -08003079int ipv6_route_ioctl(struct net *net, unsigned int cmd, void __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003080{
Thomas Graf86872cb2006-08-22 00:01:08 -07003081 struct fib6_config cfg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003082 struct in6_rtmsg rtmsg;
3083 int err;
3084
Ian Morris67ba4152014-08-24 21:53:10 +01003085 switch (cmd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003086 case SIOCADDRT: /* Add a route */
3087 case SIOCDELRT: /* Delete a route */
Eric W. Biedermanaf31f412012-11-16 03:03:06 +00003088 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003089 return -EPERM;
3090 err = copy_from_user(&rtmsg, arg,
3091 sizeof(struct in6_rtmsg));
3092 if (err)
3093 return -EFAULT;
Thomas Graf86872cb2006-08-22 00:01:08 -07003094
Daniel Lezcano55786892008-03-04 13:47:47 -08003095 rtmsg_to_fib6_config(net, &rtmsg, &cfg);
Thomas Graf86872cb2006-08-22 00:01:08 -07003096
Linus Torvalds1da177e2005-04-16 15:20:36 -07003097 rtnl_lock();
3098 switch (cmd) {
3099 case SIOCADDRT:
David Ahern333c4302017-05-21 10:12:04 -06003100 err = ip6_route_add(&cfg, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003101 break;
3102 case SIOCDELRT:
David Ahern333c4302017-05-21 10:12:04 -06003103 err = ip6_route_del(&cfg, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003104 break;
3105 default:
3106 err = -EINVAL;
3107 }
3108 rtnl_unlock();
3109
3110 return err;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07003111 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003112
3113 return -EINVAL;
3114}
3115
3116/*
3117 * Drop the packet on the floor
3118 */
3119
Brian Haleyd5fdd6b2009-06-23 04:31:07 -07003120static int ip6_pkt_drop(struct sk_buff *skb, u8 code, int ipstats_mib_noroutes)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003121{
YOSHIFUJI Hideaki612f09e2007-04-13 16:18:02 -07003122 int type;
Eric Dumazetadf30902009-06-02 05:19:30 +00003123 struct dst_entry *dst = skb_dst(skb);
YOSHIFUJI Hideaki612f09e2007-04-13 16:18:02 -07003124 switch (ipstats_mib_noroutes) {
3125 case IPSTATS_MIB_INNOROUTES:
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -07003126 type = ipv6_addr_type(&ipv6_hdr(skb)->daddr);
Ulrich Weber45bb0062010-02-25 23:28:58 +00003127 if (type == IPV6_ADDR_ANY) {
Denis V. Lunev3bd653c2008-10-08 10:54:51 -07003128 IP6_INC_STATS(dev_net(dst->dev), ip6_dst_idev(dst),
3129 IPSTATS_MIB_INADDRERRORS);
YOSHIFUJI Hideaki612f09e2007-04-13 16:18:02 -07003130 break;
3131 }
3132 /* FALLTHROUGH */
3133 case IPSTATS_MIB_OUTNOROUTES:
Denis V. Lunev3bd653c2008-10-08 10:54:51 -07003134 IP6_INC_STATS(dev_net(dst->dev), ip6_dst_idev(dst),
3135 ipstats_mib_noroutes);
YOSHIFUJI Hideaki612f09e2007-04-13 16:18:02 -07003136 break;
3137 }
Alexey Dobriyan3ffe5332010-02-18 08:25:24 +00003138 icmpv6_send(skb, ICMPV6_DEST_UNREACH, code, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003139 kfree_skb(skb);
3140 return 0;
3141}
3142
Thomas Graf9ce8ade2006-10-18 20:46:54 -07003143static int ip6_pkt_discard(struct sk_buff *skb)
3144{
YOSHIFUJI Hideaki612f09e2007-04-13 16:18:02 -07003145 return ip6_pkt_drop(skb, ICMPV6_NOROUTE, IPSTATS_MIB_INNOROUTES);
Thomas Graf9ce8ade2006-10-18 20:46:54 -07003146}
3147
Eric W. Biedermanede20592015-10-07 16:48:47 -05003148static int ip6_pkt_discard_out(struct net *net, struct sock *sk, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003149{
Eric Dumazetadf30902009-06-02 05:19:30 +00003150 skb->dev = skb_dst(skb)->dev;
YOSHIFUJI Hideaki612f09e2007-04-13 16:18:02 -07003151 return ip6_pkt_drop(skb, ICMPV6_NOROUTE, IPSTATS_MIB_OUTNOROUTES);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003152}
3153
Thomas Graf9ce8ade2006-10-18 20:46:54 -07003154static int ip6_pkt_prohibit(struct sk_buff *skb)
3155{
YOSHIFUJI Hideaki612f09e2007-04-13 16:18:02 -07003156 return ip6_pkt_drop(skb, ICMPV6_ADM_PROHIBITED, IPSTATS_MIB_INNOROUTES);
Thomas Graf9ce8ade2006-10-18 20:46:54 -07003157}
3158
Eric W. Biedermanede20592015-10-07 16:48:47 -05003159static int ip6_pkt_prohibit_out(struct net *net, struct sock *sk, struct sk_buff *skb)
Thomas Graf9ce8ade2006-10-18 20:46:54 -07003160{
Eric Dumazetadf30902009-06-02 05:19:30 +00003161 skb->dev = skb_dst(skb)->dev;
YOSHIFUJI Hideaki612f09e2007-04-13 16:18:02 -07003162 return ip6_pkt_drop(skb, ICMPV6_ADM_PROHIBITED, IPSTATS_MIB_OUTNOROUTES);
Thomas Graf9ce8ade2006-10-18 20:46:54 -07003163}
3164
Linus Torvalds1da177e2005-04-16 15:20:36 -07003165/*
3166 * Allocate a dst for local (unicast / anycast) address.
3167 */
3168
3169struct rt6_info *addrconf_dst_alloc(struct inet6_dev *idev,
3170 const struct in6_addr *addr,
David S. Miller8f031512011-12-06 16:48:14 -05003171 bool anycast)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003172{
David Ahernca254492015-10-12 11:47:10 -07003173 u32 tb_id;
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09003174 struct net *net = dev_net(idev->dev);
David Ahern4832c302017-08-17 12:17:20 -07003175 struct net_device *dev = idev->dev;
David Ahern5f02ce242016-09-10 12:09:54 -07003176 struct rt6_info *rt;
3177
David Ahern5f02ce242016-09-10 12:09:54 -07003178 rt = ip6_dst_alloc(net, dev, DST_NOCOUNT);
Hannes Frederic Sowaa3300ef2013-12-07 03:33:45 +01003179 if (!rt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003180 return ERR_PTR(-ENOMEM);
3181
Linus Torvalds1da177e2005-04-16 15:20:36 -07003182 in6_dev_hold(idev);
3183
David S. Miller11d53b42011-06-24 15:23:34 -07003184 rt->dst.flags |= DST_HOST;
Changli Gaod8d1f302010-06-10 23:31:35 -07003185 rt->dst.input = ip6_input;
3186 rt->dst.output = ip6_output;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003187 rt->rt6i_idev = idev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003188
David Ahern94b5e0f2017-02-02 08:52:21 -08003189 rt->rt6i_protocol = RTPROT_KERNEL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003190 rt->rt6i_flags = RTF_UP | RTF_NONEXTHOP;
YOSHIFUJI Hideaki58c4fb82005-12-21 22:56:42 +09003191 if (anycast)
3192 rt->rt6i_flags |= RTF_ANYCAST;
3193 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003194 rt->rt6i_flags |= RTF_LOCAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003195
Julian Anastasov550bab42013-10-20 15:43:04 +03003196 rt->rt6i_gateway = *addr;
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00003197 rt->rt6i_dst.addr = *addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003198 rt->rt6i_dst.plen = 128;
David Ahernca254492015-10-12 11:47:10 -07003199 tb_id = l3mdev_fib_table(idev->dev) ? : RT6_TABLE_LOCAL;
3200 rt->rt6i_table = fib6_get_table(net, tb_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003201
Linus Torvalds1da177e2005-04-16 15:20:36 -07003202 return rt;
3203}
3204
Daniel Walterc3968a82011-04-13 21:10:57 +00003205/* remove deleted ip from prefsrc entries */
3206struct arg_dev_net_ip {
3207 struct net_device *dev;
3208 struct net *net;
3209 struct in6_addr *addr;
3210};
3211
3212static int fib6_remove_prefsrc(struct rt6_info *rt, void *arg)
3213{
3214 struct net_device *dev = ((struct arg_dev_net_ip *)arg)->dev;
3215 struct net *net = ((struct arg_dev_net_ip *)arg)->net;
3216 struct in6_addr *addr = ((struct arg_dev_net_ip *)arg)->addr;
3217
David S. Millerd1918542011-12-28 20:19:20 -05003218 if (((void *)rt->dst.dev == dev || !dev) &&
Daniel Walterc3968a82011-04-13 21:10:57 +00003219 rt != net->ipv6.ip6_null_entry &&
3220 ipv6_addr_equal(addr, &rt->rt6i_prefsrc.addr)) {
Wei Wang60006a42017-10-06 12:05:58 -07003221 spin_lock_bh(&rt6_exception_lock);
Daniel Walterc3968a82011-04-13 21:10:57 +00003222 /* remove prefsrc entry */
3223 rt->rt6i_prefsrc.plen = 0;
Wei Wang60006a42017-10-06 12:05:58 -07003224 /* need to update cache as well */
3225 rt6_exceptions_remove_prefsrc(rt);
3226 spin_unlock_bh(&rt6_exception_lock);
Daniel Walterc3968a82011-04-13 21:10:57 +00003227 }
3228 return 0;
3229}
3230
3231void rt6_remove_prefsrc(struct inet6_ifaddr *ifp)
3232{
3233 struct net *net = dev_net(ifp->idev->dev);
3234 struct arg_dev_net_ip adni = {
3235 .dev = ifp->idev->dev,
3236 .net = net,
3237 .addr = &ifp->addr,
3238 };
Li RongQing0c3584d2013-12-27 16:32:38 +08003239 fib6_clean_all(net, fib6_remove_prefsrc, &adni);
Daniel Walterc3968a82011-04-13 21:10:57 +00003240}
3241
Duan Jiongbe7a0102014-05-15 15:56:14 +08003242#define RTF_RA_ROUTER (RTF_ADDRCONF | RTF_DEFAULT | RTF_GATEWAY)
3243#define RTF_CACHE_GATEWAY (RTF_GATEWAY | RTF_CACHE)
3244
3245/* Remove routers and update dst entries when gateway turn into host. */
3246static int fib6_clean_tohost(struct rt6_info *rt, void *arg)
3247{
3248 struct in6_addr *gateway = (struct in6_addr *)arg;
3249
3250 if ((((rt->rt6i_flags & RTF_RA_ROUTER) == RTF_RA_ROUTER) ||
3251 ((rt->rt6i_flags & RTF_CACHE_GATEWAY) == RTF_CACHE_GATEWAY)) &&
3252 ipv6_addr_equal(gateway, &rt->rt6i_gateway)) {
3253 return -1;
3254 }
3255 return 0;
3256}
3257
3258void rt6_clean_tohost(struct net *net, struct in6_addr *gateway)
3259{
3260 fib6_clean_all(net, fib6_clean_tohost, gateway);
3261}
3262
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003263struct arg_dev_net {
3264 struct net_device *dev;
3265 struct net *net;
3266};
3267
David Aherna1a22c12017-01-18 07:40:36 -08003268/* called with write lock held for table with rt */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003269static int fib6_ifdown(struct rt6_info *rt, void *arg)
3270{
stephen hemmingerbc3ef662010-12-16 17:42:40 +00003271 const struct arg_dev_net *adn = arg;
3272 const struct net_device *dev = adn->dev;
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003273
David S. Millerd1918542011-12-28 20:19:20 -05003274 if ((rt->dst.dev == dev || !dev) &&
David Aherna1a22c12017-01-18 07:40:36 -08003275 rt != adn->net->ipv6.ip6_null_entry &&
3276 (rt->rt6i_nsiblings == 0 ||
David Ahern8397ed32017-06-07 12:26:23 -06003277 (dev && netdev_unregistering(dev)) ||
David Aherna1a22c12017-01-18 07:40:36 -08003278 !rt->rt6i_idev->cnf.ignore_routes_with_linkdown))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003279 return -1;
David S. Millerc159d302011-12-26 15:24:36 -05003280
Linus Torvalds1da177e2005-04-16 15:20:36 -07003281 return 0;
3282}
3283
Daniel Lezcanof3db4852008-03-03 23:27:06 -08003284void rt6_ifdown(struct net *net, struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003285{
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003286 struct arg_dev_net adn = {
3287 .dev = dev,
3288 .net = net,
3289 };
3290
Li RongQing0c3584d2013-12-27 16:32:38 +08003291 fib6_clean_all(net, fib6_ifdown, &adn);
Eric W. Biedermane332bc62015-10-12 11:02:08 -05003292 if (dev)
3293 rt6_uncached_list_flush_dev(net, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003294}
3295
Eric Dumazet95c96172012-04-15 05:58:06 +00003296struct rt6_mtu_change_arg {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003297 struct net_device *dev;
Eric Dumazet95c96172012-04-15 05:58:06 +00003298 unsigned int mtu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003299};
3300
3301static int rt6_mtu_change_route(struct rt6_info *rt, void *p_arg)
3302{
3303 struct rt6_mtu_change_arg *arg = (struct rt6_mtu_change_arg *) p_arg;
3304 struct inet6_dev *idev;
3305
3306 /* In IPv6 pmtu discovery is not optional,
3307 so that RTAX_MTU lock cannot disable it.
3308 We still use this lock to block changes
3309 caused by addrconf/ndisc.
3310 */
3311
3312 idev = __in6_dev_get(arg->dev);
David S. Miller38308472011-12-03 18:02:47 -05003313 if (!idev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003314 return 0;
3315
3316 /* For administrative MTU increase, there is no way to discover
3317 IPv6 PMTU increase, so PMTU increase should be updated here.
3318 Since RFC 1981 doesn't include administrative MTU increase
3319 update PMTU increase is a MUST. (i.e. jumbo frame)
3320 */
3321 /*
3322 If new MTU is less than route PMTU, this new MTU will be the
3323 lowest MTU in the path, update the route PMTU to reflect PMTU
3324 decreases; if new MTU is greater than route PMTU, and the
3325 old MTU is the lowest MTU in the path, update the route PMTU
3326 to reflect the increase. In this case if the other nodes' MTU
3327 also have the lowest MTU, TOO BIG MESSAGE will be lead to
Alexander Alemayhu67c408c2017-01-07 23:53:00 +01003328 PMTU discovery.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003329 */
David S. Millerd1918542011-12-28 20:19:20 -05003330 if (rt->dst.dev == arg->dev &&
Maciej Żenczykowskifb56be82016-11-04 14:51:54 -07003331 dst_metric_raw(&rt->dst, RTAX_MTU) &&
Martin KaFai Lau4b32b5a2015-04-28 13:03:06 -07003332 !dst_metric_locked(&rt->dst, RTAX_MTU)) {
Wei Wangf5bbe7e2017-10-06 12:05:59 -07003333 spin_lock_bh(&rt6_exception_lock);
3334 /* This case will be removed once the exception table
3335 * is hooked up.
3336 */
Martin KaFai Lau4b32b5a2015-04-28 13:03:06 -07003337 if (rt->rt6i_flags & RTF_CACHE) {
3338 /* For RTF_CACHE with rt6i_pmtu == 0
3339 * (i.e. a redirected route),
3340 * the metrics of its rt->dst.from has already
3341 * been updated.
3342 */
3343 if (rt->rt6i_pmtu && rt->rt6i_pmtu > arg->mtu)
3344 rt->rt6i_pmtu = arg->mtu;
3345 } else if (dst_mtu(&rt->dst) >= arg->mtu ||
3346 (dst_mtu(&rt->dst) < arg->mtu &&
3347 dst_mtu(&rt->dst) == idev->cnf.mtu6)) {
3348 dst_metric_set(&rt->dst, RTAX_MTU, arg->mtu);
3349 }
Wei Wangf5bbe7e2017-10-06 12:05:59 -07003350 rt6_exceptions_update_pmtu(rt, arg->mtu);
3351 spin_unlock_bh(&rt6_exception_lock);
Simon Arlott566cfd82007-07-26 00:09:55 -07003352 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003353 return 0;
3354}
3355
Eric Dumazet95c96172012-04-15 05:58:06 +00003356void rt6_mtu_change(struct net_device *dev, unsigned int mtu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003357{
Thomas Grafc71099a2006-08-04 23:20:06 -07003358 struct rt6_mtu_change_arg arg = {
3359 .dev = dev,
3360 .mtu = mtu,
3361 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07003362
Li RongQing0c3584d2013-12-27 16:32:38 +08003363 fib6_clean_all(dev_net(dev), rt6_mtu_change_route, &arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003364}
3365
Patrick McHardyef7c79e2007-06-05 12:38:30 -07003366static const struct nla_policy rtm_ipv6_policy[RTA_MAX+1] = {
Thomas Graf5176f912006-08-26 20:13:18 -07003367 [RTA_GATEWAY] = { .len = sizeof(struct in6_addr) },
Thomas Graf86872cb2006-08-22 00:01:08 -07003368 [RTA_OIF] = { .type = NLA_U32 },
Thomas Grafab364a62006-08-22 00:01:47 -07003369 [RTA_IIF] = { .type = NLA_U32 },
Thomas Graf86872cb2006-08-22 00:01:08 -07003370 [RTA_PRIORITY] = { .type = NLA_U32 },
3371 [RTA_METRICS] = { .type = NLA_NESTED },
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00003372 [RTA_MULTIPATH] = { .len = sizeof(struct rtnexthop) },
Lubomir Rintelc78ba6d2015-03-11 15:39:21 +01003373 [RTA_PREF] = { .type = NLA_U8 },
Roopa Prabhu19e42e42015-07-21 10:43:48 +02003374 [RTA_ENCAP_TYPE] = { .type = NLA_U16 },
3375 [RTA_ENCAP] = { .type = NLA_NESTED },
Xin Long32bc2012015-12-16 17:50:11 +08003376 [RTA_EXPIRES] = { .type = NLA_U32 },
Lorenzo Colitti622ec2c2016-11-04 02:23:42 +09003377 [RTA_UID] = { .type = NLA_U32 },
Liping Zhang3b45a412017-02-27 20:59:39 +08003378 [RTA_MARK] = { .type = NLA_U32 },
Thomas Graf86872cb2006-08-22 00:01:08 -07003379};
3380
3381static int rtm_to_fib6_config(struct sk_buff *skb, struct nlmsghdr *nlh,
David Ahern333c4302017-05-21 10:12:04 -06003382 struct fib6_config *cfg,
3383 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003384{
Thomas Graf86872cb2006-08-22 00:01:08 -07003385 struct rtmsg *rtm;
3386 struct nlattr *tb[RTA_MAX+1];
Lubomir Rintelc78ba6d2015-03-11 15:39:21 +01003387 unsigned int pref;
Thomas Graf86872cb2006-08-22 00:01:08 -07003388 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003389
Johannes Bergfceb6432017-04-12 14:34:07 +02003390 err = nlmsg_parse(nlh, sizeof(*rtm), tb, RTA_MAX, rtm_ipv6_policy,
3391 NULL);
Thomas Graf86872cb2006-08-22 00:01:08 -07003392 if (err < 0)
3393 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003394
Thomas Graf86872cb2006-08-22 00:01:08 -07003395 err = -EINVAL;
3396 rtm = nlmsg_data(nlh);
3397 memset(cfg, 0, sizeof(*cfg));
3398
3399 cfg->fc_table = rtm->rtm_table;
3400 cfg->fc_dst_len = rtm->rtm_dst_len;
3401 cfg->fc_src_len = rtm->rtm_src_len;
3402 cfg->fc_flags = RTF_UP;
3403 cfg->fc_protocol = rtm->rtm_protocol;
Nicolas Dichtelef2c7d72012-09-05 02:12:42 +00003404 cfg->fc_type = rtm->rtm_type;
Thomas Graf86872cb2006-08-22 00:01:08 -07003405
Nicolas Dichtelef2c7d72012-09-05 02:12:42 +00003406 if (rtm->rtm_type == RTN_UNREACHABLE ||
3407 rtm->rtm_type == RTN_BLACKHOLE ||
Nicolas Dichtelb4949ab2012-09-06 05:53:35 +00003408 rtm->rtm_type == RTN_PROHIBIT ||
3409 rtm->rtm_type == RTN_THROW)
Thomas Graf86872cb2006-08-22 00:01:08 -07003410 cfg->fc_flags |= RTF_REJECT;
3411
Maciej Żenczykowskiab79ad12010-09-27 00:07:02 +00003412 if (rtm->rtm_type == RTN_LOCAL)
3413 cfg->fc_flags |= RTF_LOCAL;
3414
Martin KaFai Lau1f56a01f2015-04-28 13:03:03 -07003415 if (rtm->rtm_flags & RTM_F_CLONED)
3416 cfg->fc_flags |= RTF_CACHE;
3417
Eric W. Biederman15e47302012-09-07 20:12:54 +00003418 cfg->fc_nlinfo.portid = NETLINK_CB(skb).portid;
Thomas Graf86872cb2006-08-22 00:01:08 -07003419 cfg->fc_nlinfo.nlh = nlh;
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09003420 cfg->fc_nlinfo.nl_net = sock_net(skb->sk);
Thomas Graf86872cb2006-08-22 00:01:08 -07003421
3422 if (tb[RTA_GATEWAY]) {
Jiri Benc67b61f62015-03-29 16:59:26 +02003423 cfg->fc_gateway = nla_get_in6_addr(tb[RTA_GATEWAY]);
Thomas Graf86872cb2006-08-22 00:01:08 -07003424 cfg->fc_flags |= RTF_GATEWAY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003425 }
Thomas Graf86872cb2006-08-22 00:01:08 -07003426
3427 if (tb[RTA_DST]) {
3428 int plen = (rtm->rtm_dst_len + 7) >> 3;
3429
3430 if (nla_len(tb[RTA_DST]) < plen)
3431 goto errout;
3432
3433 nla_memcpy(&cfg->fc_dst, tb[RTA_DST], plen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003434 }
Thomas Graf86872cb2006-08-22 00:01:08 -07003435
3436 if (tb[RTA_SRC]) {
3437 int plen = (rtm->rtm_src_len + 7) >> 3;
3438
3439 if (nla_len(tb[RTA_SRC]) < plen)
3440 goto errout;
3441
3442 nla_memcpy(&cfg->fc_src, tb[RTA_SRC], plen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003443 }
Thomas Graf86872cb2006-08-22 00:01:08 -07003444
Daniel Walterc3968a82011-04-13 21:10:57 +00003445 if (tb[RTA_PREFSRC])
Jiri Benc67b61f62015-03-29 16:59:26 +02003446 cfg->fc_prefsrc = nla_get_in6_addr(tb[RTA_PREFSRC]);
Daniel Walterc3968a82011-04-13 21:10:57 +00003447
Thomas Graf86872cb2006-08-22 00:01:08 -07003448 if (tb[RTA_OIF])
3449 cfg->fc_ifindex = nla_get_u32(tb[RTA_OIF]);
3450
3451 if (tb[RTA_PRIORITY])
3452 cfg->fc_metric = nla_get_u32(tb[RTA_PRIORITY]);
3453
3454 if (tb[RTA_METRICS]) {
3455 cfg->fc_mx = nla_data(tb[RTA_METRICS]);
3456 cfg->fc_mx_len = nla_len(tb[RTA_METRICS]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003457 }
Thomas Graf86872cb2006-08-22 00:01:08 -07003458
3459 if (tb[RTA_TABLE])
3460 cfg->fc_table = nla_get_u32(tb[RTA_TABLE]);
3461
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00003462 if (tb[RTA_MULTIPATH]) {
3463 cfg->fc_mp = nla_data(tb[RTA_MULTIPATH]);
3464 cfg->fc_mp_len = nla_len(tb[RTA_MULTIPATH]);
David Ahern9ed59592017-01-17 14:57:36 -08003465
3466 err = lwtunnel_valid_encap_type_attr(cfg->fc_mp,
David Ahernc255bd62017-05-27 16:19:27 -06003467 cfg->fc_mp_len, extack);
David Ahern9ed59592017-01-17 14:57:36 -08003468 if (err < 0)
3469 goto errout;
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00003470 }
3471
Lubomir Rintelc78ba6d2015-03-11 15:39:21 +01003472 if (tb[RTA_PREF]) {
3473 pref = nla_get_u8(tb[RTA_PREF]);
3474 if (pref != ICMPV6_ROUTER_PREF_LOW &&
3475 pref != ICMPV6_ROUTER_PREF_HIGH)
3476 pref = ICMPV6_ROUTER_PREF_MEDIUM;
3477 cfg->fc_flags |= RTF_PREF(pref);
3478 }
3479
Roopa Prabhu19e42e42015-07-21 10:43:48 +02003480 if (tb[RTA_ENCAP])
3481 cfg->fc_encap = tb[RTA_ENCAP];
3482
David Ahern9ed59592017-01-17 14:57:36 -08003483 if (tb[RTA_ENCAP_TYPE]) {
Roopa Prabhu19e42e42015-07-21 10:43:48 +02003484 cfg->fc_encap_type = nla_get_u16(tb[RTA_ENCAP_TYPE]);
3485
David Ahernc255bd62017-05-27 16:19:27 -06003486 err = lwtunnel_valid_encap_type(cfg->fc_encap_type, extack);
David Ahern9ed59592017-01-17 14:57:36 -08003487 if (err < 0)
3488 goto errout;
3489 }
3490
Xin Long32bc2012015-12-16 17:50:11 +08003491 if (tb[RTA_EXPIRES]) {
3492 unsigned long timeout = addrconf_timeout_fixup(nla_get_u32(tb[RTA_EXPIRES]), HZ);
3493
3494 if (addrconf_finite_timeout(timeout)) {
3495 cfg->fc_expires = jiffies_to_clock_t(timeout * HZ);
3496 cfg->fc_flags |= RTF_EXPIRES;
3497 }
3498 }
3499
Thomas Graf86872cb2006-08-22 00:01:08 -07003500 err = 0;
3501errout:
3502 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003503}
3504
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003505struct rt6_nh {
3506 struct rt6_info *rt6_info;
3507 struct fib6_config r_cfg;
3508 struct mx6_config mxc;
3509 struct list_head next;
3510};
3511
3512static void ip6_print_replace_route_err(struct list_head *rt6_nh_list)
3513{
3514 struct rt6_nh *nh;
3515
3516 list_for_each_entry(nh, rt6_nh_list, next) {
David Ahern7d4d5062017-02-02 12:37:12 -08003517 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 -07003518 &nh->r_cfg.fc_dst, &nh->r_cfg.fc_gateway,
3519 nh->r_cfg.fc_ifindex);
3520 }
3521}
3522
3523static int ip6_route_info_append(struct list_head *rt6_nh_list,
3524 struct rt6_info *rt, struct fib6_config *r_cfg)
3525{
3526 struct rt6_nh *nh;
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003527 int err = -EEXIST;
3528
3529 list_for_each_entry(nh, rt6_nh_list, next) {
3530 /* check if rt6_info already exists */
David Ahernf06b7542017-07-05 14:41:46 -06003531 if (rt6_duplicate_nexthop(nh->rt6_info, rt))
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003532 return err;
3533 }
3534
3535 nh = kzalloc(sizeof(*nh), GFP_KERNEL);
3536 if (!nh)
3537 return -ENOMEM;
3538 nh->rt6_info = rt;
3539 err = ip6_convert_metrics(&nh->mxc, r_cfg);
3540 if (err) {
3541 kfree(nh);
3542 return err;
3543 }
3544 memcpy(&nh->r_cfg, r_cfg, sizeof(*r_cfg));
3545 list_add_tail(&nh->next, rt6_nh_list);
3546
3547 return 0;
3548}
3549
David Ahern3b1137f2017-02-02 12:37:10 -08003550static void ip6_route_mpath_notify(struct rt6_info *rt,
3551 struct rt6_info *rt_last,
3552 struct nl_info *info,
3553 __u16 nlflags)
3554{
3555 /* if this is an APPEND route, then rt points to the first route
3556 * inserted and rt_last points to last route inserted. Userspace
3557 * wants a consistent dump of the route which starts at the first
3558 * nexthop. Since sibling routes are always added at the end of
3559 * the list, find the first sibling of the last route appended
3560 */
3561 if ((nlflags & NLM_F_APPEND) && rt_last && rt_last->rt6i_nsiblings) {
3562 rt = list_first_entry(&rt_last->rt6i_siblings,
3563 struct rt6_info,
3564 rt6i_siblings);
3565 }
3566
3567 if (rt)
3568 inet6_rt_notify(RTM_NEWROUTE, rt, info, nlflags);
3569}
3570
David Ahern333c4302017-05-21 10:12:04 -06003571static int ip6_route_multipath_add(struct fib6_config *cfg,
3572 struct netlink_ext_ack *extack)
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00003573{
David Ahern3b1137f2017-02-02 12:37:10 -08003574 struct rt6_info *rt_notif = NULL, *rt_last = NULL;
3575 struct nl_info *info = &cfg->fc_nlinfo;
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00003576 struct fib6_config r_cfg;
3577 struct rtnexthop *rtnh;
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003578 struct rt6_info *rt;
3579 struct rt6_nh *err_nh;
3580 struct rt6_nh *nh, *nh_safe;
David Ahern3b1137f2017-02-02 12:37:10 -08003581 __u16 nlflags;
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00003582 int remaining;
3583 int attrlen;
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003584 int err = 1;
3585 int nhn = 0;
3586 int replace = (cfg->fc_nlinfo.nlh &&
3587 (cfg->fc_nlinfo.nlh->nlmsg_flags & NLM_F_REPLACE));
3588 LIST_HEAD(rt6_nh_list);
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00003589
David Ahern3b1137f2017-02-02 12:37:10 -08003590 nlflags = replace ? NLM_F_REPLACE : NLM_F_CREATE;
3591 if (info->nlh && info->nlh->nlmsg_flags & NLM_F_APPEND)
3592 nlflags |= NLM_F_APPEND;
3593
Michal Kubeček35f1b4e2015-05-18 20:53:55 +02003594 remaining = cfg->fc_mp_len;
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00003595 rtnh = (struct rtnexthop *)cfg->fc_mp;
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00003596
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003597 /* Parse a Multipath Entry and build a list (rt6_nh_list) of
3598 * rt6_info structs per nexthop
3599 */
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00003600 while (rtnh_ok(rtnh, remaining)) {
3601 memcpy(&r_cfg, cfg, sizeof(*cfg));
3602 if (rtnh->rtnh_ifindex)
3603 r_cfg.fc_ifindex = rtnh->rtnh_ifindex;
3604
3605 attrlen = rtnh_attrlen(rtnh);
3606 if (attrlen > 0) {
3607 struct nlattr *nla, *attrs = rtnh_attrs(rtnh);
3608
3609 nla = nla_find(attrs, attrlen, RTA_GATEWAY);
3610 if (nla) {
Jiri Benc67b61f62015-03-29 16:59:26 +02003611 r_cfg.fc_gateway = nla_get_in6_addr(nla);
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00003612 r_cfg.fc_flags |= RTF_GATEWAY;
3613 }
Roopa Prabhu19e42e42015-07-21 10:43:48 +02003614 r_cfg.fc_encap = nla_find(attrs, attrlen, RTA_ENCAP);
3615 nla = nla_find(attrs, attrlen, RTA_ENCAP_TYPE);
3616 if (nla)
3617 r_cfg.fc_encap_type = nla_get_u16(nla);
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00003618 }
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003619
David Ahern333c4302017-05-21 10:12:04 -06003620 rt = ip6_route_info_create(&r_cfg, extack);
Roopa Prabhu8c5b83f2015-10-10 08:26:36 -07003621 if (IS_ERR(rt)) {
3622 err = PTR_ERR(rt);
3623 rt = NULL;
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003624 goto cleanup;
Roopa Prabhu8c5b83f2015-10-10 08:26:36 -07003625 }
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003626
3627 err = ip6_route_info_append(&rt6_nh_list, rt, &r_cfg);
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00003628 if (err) {
Wei Wang587fea72017-06-17 10:42:36 -07003629 dst_release_immediate(&rt->dst);
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003630 goto cleanup;
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00003631 }
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003632
3633 rtnh = rtnh_next(rtnh, &remaining);
3634 }
3635
David Ahern3b1137f2017-02-02 12:37:10 -08003636 /* for add and replace send one notification with all nexthops.
3637 * Skip the notification in fib6_add_rt2node and send one with
3638 * the full route when done
3639 */
3640 info->skip_notify = 1;
3641
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003642 err_nh = NULL;
3643 list_for_each_entry(nh, &rt6_nh_list, next) {
David Ahern3b1137f2017-02-02 12:37:10 -08003644 rt_last = nh->rt6_info;
David Ahern333c4302017-05-21 10:12:04 -06003645 err = __ip6_ins_rt(nh->rt6_info, info, &nh->mxc, extack);
David Ahern3b1137f2017-02-02 12:37:10 -08003646 /* save reference to first route for notification */
3647 if (!rt_notif && !err)
3648 rt_notif = nh->rt6_info;
3649
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003650 /* nh->rt6_info is used or freed at this point, reset to NULL*/
3651 nh->rt6_info = NULL;
3652 if (err) {
3653 if (replace && nhn)
3654 ip6_print_replace_route_err(&rt6_nh_list);
3655 err_nh = nh;
3656 goto add_errout;
3657 }
3658
Nicolas Dichtel1a724182012-11-01 22:58:22 +00003659 /* Because each route is added like a single route we remove
Michal Kubeček27596472015-05-18 20:54:00 +02003660 * these flags after the first nexthop: if there is a collision,
3661 * we have already failed to add the first nexthop:
3662 * fib6_add_rt2node() has rejected it; when replacing, old
3663 * nexthops have been replaced by first new, the rest should
3664 * be added to it.
Nicolas Dichtel1a724182012-11-01 22:58:22 +00003665 */
Michal Kubeček27596472015-05-18 20:54:00 +02003666 cfg->fc_nlinfo.nlh->nlmsg_flags &= ~(NLM_F_EXCL |
3667 NLM_F_REPLACE);
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003668 nhn++;
3669 }
3670
David Ahern3b1137f2017-02-02 12:37:10 -08003671 /* success ... tell user about new route */
3672 ip6_route_mpath_notify(rt_notif, rt_last, info, nlflags);
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003673 goto cleanup;
3674
3675add_errout:
David Ahern3b1137f2017-02-02 12:37:10 -08003676 /* send notification for routes that were added so that
3677 * the delete notifications sent by ip6_route_del are
3678 * coherent
3679 */
3680 if (rt_notif)
3681 ip6_route_mpath_notify(rt_notif, rt_last, info, nlflags);
3682
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003683 /* Delete routes that were already added */
3684 list_for_each_entry(nh, &rt6_nh_list, next) {
3685 if (err_nh == nh)
3686 break;
David Ahern333c4302017-05-21 10:12:04 -06003687 ip6_route_del(&nh->r_cfg, extack);
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003688 }
3689
3690cleanup:
3691 list_for_each_entry_safe(nh, nh_safe, &rt6_nh_list, next) {
Wei Wang587fea72017-06-17 10:42:36 -07003692 if (nh->rt6_info)
3693 dst_release_immediate(&nh->rt6_info->dst);
Wu Fengguang52fe51f2015-09-10 06:57:12 +08003694 kfree(nh->mxc.mx);
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003695 list_del(&nh->next);
3696 kfree(nh);
3697 }
3698
3699 return err;
3700}
3701
David Ahern333c4302017-05-21 10:12:04 -06003702static int ip6_route_multipath_del(struct fib6_config *cfg,
3703 struct netlink_ext_ack *extack)
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003704{
3705 struct fib6_config r_cfg;
3706 struct rtnexthop *rtnh;
3707 int remaining;
3708 int attrlen;
3709 int err = 1, last_err = 0;
3710
3711 remaining = cfg->fc_mp_len;
3712 rtnh = (struct rtnexthop *)cfg->fc_mp;
3713
3714 /* Parse a Multipath Entry */
3715 while (rtnh_ok(rtnh, remaining)) {
3716 memcpy(&r_cfg, cfg, sizeof(*cfg));
3717 if (rtnh->rtnh_ifindex)
3718 r_cfg.fc_ifindex = rtnh->rtnh_ifindex;
3719
3720 attrlen = rtnh_attrlen(rtnh);
3721 if (attrlen > 0) {
3722 struct nlattr *nla, *attrs = rtnh_attrs(rtnh);
3723
3724 nla = nla_find(attrs, attrlen, RTA_GATEWAY);
3725 if (nla) {
3726 nla_memcpy(&r_cfg.fc_gateway, nla, 16);
3727 r_cfg.fc_flags |= RTF_GATEWAY;
3728 }
3729 }
David Ahern333c4302017-05-21 10:12:04 -06003730 err = ip6_route_del(&r_cfg, extack);
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003731 if (err)
3732 last_err = err;
3733
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00003734 rtnh = rtnh_next(rtnh, &remaining);
3735 }
3736
3737 return last_err;
3738}
3739
David Ahernc21ef3e2017-04-16 09:48:24 -07003740static int inet6_rtm_delroute(struct sk_buff *skb, struct nlmsghdr *nlh,
3741 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003742{
Thomas Graf86872cb2006-08-22 00:01:08 -07003743 struct fib6_config cfg;
3744 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003745
David Ahern333c4302017-05-21 10:12:04 -06003746 err = rtm_to_fib6_config(skb, nlh, &cfg, extack);
Thomas Graf86872cb2006-08-22 00:01:08 -07003747 if (err < 0)
3748 return err;
3749
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00003750 if (cfg.fc_mp)
David Ahern333c4302017-05-21 10:12:04 -06003751 return ip6_route_multipath_del(&cfg, extack);
David Ahern0ae81332017-02-02 12:37:08 -08003752 else {
3753 cfg.fc_delete_all_nh = 1;
David Ahern333c4302017-05-21 10:12:04 -06003754 return ip6_route_del(&cfg, extack);
David Ahern0ae81332017-02-02 12:37:08 -08003755 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003756}
3757
David Ahernc21ef3e2017-04-16 09:48:24 -07003758static int inet6_rtm_newroute(struct sk_buff *skb, struct nlmsghdr *nlh,
3759 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003760{
Thomas Graf86872cb2006-08-22 00:01:08 -07003761 struct fib6_config cfg;
3762 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003763
David Ahern333c4302017-05-21 10:12:04 -06003764 err = rtm_to_fib6_config(skb, nlh, &cfg, extack);
Thomas Graf86872cb2006-08-22 00:01:08 -07003765 if (err < 0)
3766 return err;
3767
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00003768 if (cfg.fc_mp)
David Ahern333c4302017-05-21 10:12:04 -06003769 return ip6_route_multipath_add(&cfg, extack);
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00003770 else
David Ahern333c4302017-05-21 10:12:04 -06003771 return ip6_route_add(&cfg, extack);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003772}
3773
David Ahernbeb1afac52017-02-02 12:37:09 -08003774static size_t rt6_nlmsg_size(struct rt6_info *rt)
Thomas Graf339bf982006-11-10 14:10:15 -08003775{
David Ahernbeb1afac52017-02-02 12:37:09 -08003776 int nexthop_len = 0;
3777
3778 if (rt->rt6i_nsiblings) {
3779 nexthop_len = nla_total_size(0) /* RTA_MULTIPATH */
3780 + NLA_ALIGN(sizeof(struct rtnexthop))
3781 + nla_total_size(16) /* RTA_GATEWAY */
David Ahernbeb1afac52017-02-02 12:37:09 -08003782 + lwtunnel_get_encap_size(rt->dst.lwtstate);
3783
3784 nexthop_len *= rt->rt6i_nsiblings;
3785 }
3786
Thomas Graf339bf982006-11-10 14:10:15 -08003787 return NLMSG_ALIGN(sizeof(struct rtmsg))
3788 + nla_total_size(16) /* RTA_SRC */
3789 + nla_total_size(16) /* RTA_DST */
3790 + nla_total_size(16) /* RTA_GATEWAY */
3791 + nla_total_size(16) /* RTA_PREFSRC */
3792 + nla_total_size(4) /* RTA_TABLE */
3793 + nla_total_size(4) /* RTA_IIF */
3794 + nla_total_size(4) /* RTA_OIF */
3795 + nla_total_size(4) /* RTA_PRIORITY */
Noriaki TAKAMIYA6a2b9ce2007-01-23 22:09:41 -08003796 + RTAX_MAX * nla_total_size(4) /* RTA_METRICS */
Daniel Borkmannea697632015-01-05 23:57:47 +01003797 + nla_total_size(sizeof(struct rta_cacheinfo))
Lubomir Rintelc78ba6d2015-03-11 15:39:21 +01003798 + nla_total_size(TCP_CA_NAME_MAX) /* RTAX_CC_ALGO */
Roopa Prabhu19e42e42015-07-21 10:43:48 +02003799 + nla_total_size(1) /* RTA_PREF */
David Ahernbeb1afac52017-02-02 12:37:09 -08003800 + lwtunnel_get_encap_size(rt->dst.lwtstate)
3801 + nexthop_len;
3802}
3803
3804static int rt6_nexthop_info(struct sk_buff *skb, struct rt6_info *rt,
David Ahern5be083c2017-03-06 15:57:31 -08003805 unsigned int *flags, bool skip_oif)
David Ahernbeb1afac52017-02-02 12:37:09 -08003806{
3807 if (!netif_running(rt->dst.dev) || !netif_carrier_ok(rt->dst.dev)) {
3808 *flags |= RTNH_F_LINKDOWN;
3809 if (rt->rt6i_idev->cnf.ignore_routes_with_linkdown)
3810 *flags |= RTNH_F_DEAD;
3811 }
3812
3813 if (rt->rt6i_flags & RTF_GATEWAY) {
3814 if (nla_put_in6_addr(skb, RTA_GATEWAY, &rt->rt6i_gateway) < 0)
3815 goto nla_put_failure;
3816 }
3817
Ido Schimmelfe400792017-08-15 09:09:49 +02003818 if (rt->rt6i_nh_flags & RTNH_F_OFFLOAD)
Ido Schimmel61e4d012017-08-03 13:28:20 +02003819 *flags |= RTNH_F_OFFLOAD;
3820
David Ahern5be083c2017-03-06 15:57:31 -08003821 /* not needed for multipath encoding b/c it has a rtnexthop struct */
3822 if (!skip_oif && rt->dst.dev &&
David Ahernbeb1afac52017-02-02 12:37:09 -08003823 nla_put_u32(skb, RTA_OIF, rt->dst.dev->ifindex))
3824 goto nla_put_failure;
3825
3826 if (rt->dst.lwtstate &&
3827 lwtunnel_fill_encap(skb, rt->dst.lwtstate) < 0)
3828 goto nla_put_failure;
3829
3830 return 0;
3831
3832nla_put_failure:
3833 return -EMSGSIZE;
3834}
3835
David Ahern5be083c2017-03-06 15:57:31 -08003836/* add multipath next hop */
David Ahernbeb1afac52017-02-02 12:37:09 -08003837static int rt6_add_nexthop(struct sk_buff *skb, struct rt6_info *rt)
3838{
3839 struct rtnexthop *rtnh;
3840 unsigned int flags = 0;
3841
3842 rtnh = nla_reserve_nohdr(skb, sizeof(*rtnh));
3843 if (!rtnh)
3844 goto nla_put_failure;
3845
3846 rtnh->rtnh_hops = 0;
3847 rtnh->rtnh_ifindex = rt->dst.dev ? rt->dst.dev->ifindex : 0;
3848
David Ahern5be083c2017-03-06 15:57:31 -08003849 if (rt6_nexthop_info(skb, rt, &flags, true) < 0)
David Ahernbeb1afac52017-02-02 12:37:09 -08003850 goto nla_put_failure;
3851
3852 rtnh->rtnh_flags = flags;
3853
3854 /* length of rtnetlink header + attributes */
3855 rtnh->rtnh_len = nlmsg_get_pos(skb) - (void *)rtnh;
3856
3857 return 0;
3858
3859nla_put_failure:
3860 return -EMSGSIZE;
Thomas Graf339bf982006-11-10 14:10:15 -08003861}
3862
Brian Haley191cd582008-08-14 15:33:21 -07003863static int rt6_fill_node(struct net *net,
3864 struct sk_buff *skb, struct rt6_info *rt,
Jamal Hadi Salim0d51aa82005-06-21 13:51:04 -07003865 struct in6_addr *dst, struct in6_addr *src,
Eric W. Biederman15e47302012-09-07 20:12:54 +00003866 int iif, int type, u32 portid, u32 seq,
David Ahernf8cfe2c2017-01-17 15:51:08 -08003867 unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003868{
Martin KaFai Lau4b32b5a2015-04-28 13:03:06 -07003869 u32 metrics[RTAX_MAX];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003870 struct rtmsg *rtm;
Thomas Graf2d7202b2006-08-22 00:01:27 -07003871 struct nlmsghdr *nlh;
Thomas Grafe3703b32006-11-27 09:27:07 -08003872 long expires;
Patrick McHardy9e762a42006-08-10 23:09:48 -07003873 u32 table;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003874
Eric W. Biederman15e47302012-09-07 20:12:54 +00003875 nlh = nlmsg_put(skb, portid, seq, type, sizeof(*rtm), flags);
David S. Miller38308472011-12-03 18:02:47 -05003876 if (!nlh)
Patrick McHardy26932562007-01-31 23:16:40 -08003877 return -EMSGSIZE;
Thomas Graf2d7202b2006-08-22 00:01:27 -07003878
3879 rtm = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003880 rtm->rtm_family = AF_INET6;
3881 rtm->rtm_dst_len = rt->rt6i_dst.plen;
3882 rtm->rtm_src_len = rt->rt6i_src.plen;
3883 rtm->rtm_tos = 0;
Thomas Grafc71099a2006-08-04 23:20:06 -07003884 if (rt->rt6i_table)
Patrick McHardy9e762a42006-08-10 23:09:48 -07003885 table = rt->rt6i_table->tb6_id;
Thomas Grafc71099a2006-08-04 23:20:06 -07003886 else
Patrick McHardy9e762a42006-08-10 23:09:48 -07003887 table = RT6_TABLE_UNSPEC;
3888 rtm->rtm_table = table;
David S. Millerc78679e2012-04-01 20:27:33 -04003889 if (nla_put_u32(skb, RTA_TABLE, table))
3890 goto nla_put_failure;
Nicolas Dichtelef2c7d72012-09-05 02:12:42 +00003891 if (rt->rt6i_flags & RTF_REJECT) {
3892 switch (rt->dst.error) {
3893 case -EINVAL:
3894 rtm->rtm_type = RTN_BLACKHOLE;
3895 break;
3896 case -EACCES:
3897 rtm->rtm_type = RTN_PROHIBIT;
3898 break;
Nicolas Dichtelb4949ab2012-09-06 05:53:35 +00003899 case -EAGAIN:
3900 rtm->rtm_type = RTN_THROW;
3901 break;
Nicolas Dichtelef2c7d72012-09-05 02:12:42 +00003902 default:
3903 rtm->rtm_type = RTN_UNREACHABLE;
3904 break;
3905 }
3906 }
David S. Miller38308472011-12-03 18:02:47 -05003907 else if (rt->rt6i_flags & RTF_LOCAL)
Maciej Żenczykowskiab79ad12010-09-27 00:07:02 +00003908 rtm->rtm_type = RTN_LOCAL;
David Ahern4ee39732017-03-15 18:14:33 -07003909 else if (rt->rt6i_flags & RTF_ANYCAST)
3910 rtm->rtm_type = RTN_ANYCAST;
David S. Millerd1918542011-12-28 20:19:20 -05003911 else if (rt->dst.dev && (rt->dst.dev->flags & IFF_LOOPBACK))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003912 rtm->rtm_type = RTN_LOCAL;
3913 else
3914 rtm->rtm_type = RTN_UNICAST;
3915 rtm->rtm_flags = 0;
3916 rtm->rtm_scope = RT_SCOPE_UNIVERSE;
3917 rtm->rtm_protocol = rt->rt6i_protocol;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003918
David S. Miller38308472011-12-03 18:02:47 -05003919 if (rt->rt6i_flags & RTF_CACHE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003920 rtm->rtm_flags |= RTM_F_CLONED;
3921
3922 if (dst) {
Jiri Benc930345e2015-03-29 16:59:25 +02003923 if (nla_put_in6_addr(skb, RTA_DST, dst))
David S. Millerc78679e2012-04-01 20:27:33 -04003924 goto nla_put_failure;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003925 rtm->rtm_dst_len = 128;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003926 } else if (rtm->rtm_dst_len)
Jiri Benc930345e2015-03-29 16:59:25 +02003927 if (nla_put_in6_addr(skb, RTA_DST, &rt->rt6i_dst.addr))
David S. Millerc78679e2012-04-01 20:27:33 -04003928 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003929#ifdef CONFIG_IPV6_SUBTREES
3930 if (src) {
Jiri Benc930345e2015-03-29 16:59:25 +02003931 if (nla_put_in6_addr(skb, RTA_SRC, src))
David S. Millerc78679e2012-04-01 20:27:33 -04003932 goto nla_put_failure;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003933 rtm->rtm_src_len = 128;
David S. Millerc78679e2012-04-01 20:27:33 -04003934 } else if (rtm->rtm_src_len &&
Jiri Benc930345e2015-03-29 16:59:25 +02003935 nla_put_in6_addr(skb, RTA_SRC, &rt->rt6i_src.addr))
David S. Millerc78679e2012-04-01 20:27:33 -04003936 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003937#endif
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09003938 if (iif) {
3939#ifdef CONFIG_IPV6_MROUTE
3940 if (ipv6_addr_is_multicast(&rt->rt6i_dst.addr)) {
David Ahernfd61c6b2017-01-17 15:51:07 -08003941 int err = ip6mr_get_route(net, skb, rtm, portid);
Nikolay Aleksandrov2cf75072016-09-25 23:08:31 +02003942
David Ahernfd61c6b2017-01-17 15:51:07 -08003943 if (err == 0)
3944 return 0;
3945 if (err < 0)
3946 goto nla_put_failure;
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09003947 } else
3948#endif
David S. Millerc78679e2012-04-01 20:27:33 -04003949 if (nla_put_u32(skb, RTA_IIF, iif))
3950 goto nla_put_failure;
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09003951 } else if (dst) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003952 struct in6_addr saddr_buf;
David S. Millerc78679e2012-04-01 20:27:33 -04003953 if (ip6_route_get_saddr(net, rt, dst, 0, &saddr_buf) == 0 &&
Jiri Benc930345e2015-03-29 16:59:25 +02003954 nla_put_in6_addr(skb, RTA_PREFSRC, &saddr_buf))
David S. Millerc78679e2012-04-01 20:27:33 -04003955 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003956 }
Thomas Graf2d7202b2006-08-22 00:01:27 -07003957
Daniel Walterc3968a82011-04-13 21:10:57 +00003958 if (rt->rt6i_prefsrc.plen) {
3959 struct in6_addr saddr_buf;
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00003960 saddr_buf = rt->rt6i_prefsrc.addr;
Jiri Benc930345e2015-03-29 16:59:25 +02003961 if (nla_put_in6_addr(skb, RTA_PREFSRC, &saddr_buf))
David S. Millerc78679e2012-04-01 20:27:33 -04003962 goto nla_put_failure;
Daniel Walterc3968a82011-04-13 21:10:57 +00003963 }
3964
Martin KaFai Lau4b32b5a2015-04-28 13:03:06 -07003965 memcpy(metrics, dst_metrics_ptr(&rt->dst), sizeof(metrics));
3966 if (rt->rt6i_pmtu)
3967 metrics[RTAX_MTU - 1] = rt->rt6i_pmtu;
3968 if (rtnetlink_put_metrics(skb, metrics) < 0)
Thomas Graf2d7202b2006-08-22 00:01:27 -07003969 goto nla_put_failure;
3970
David S. Millerc78679e2012-04-01 20:27:33 -04003971 if (nla_put_u32(skb, RTA_PRIORITY, rt->rt6i_metric))
3972 goto nla_put_failure;
Li Wei82539472012-07-29 16:01:30 +00003973
David Ahernbeb1afac52017-02-02 12:37:09 -08003974 /* For multipath routes, walk the siblings list and add
3975 * each as a nexthop within RTA_MULTIPATH.
3976 */
3977 if (rt->rt6i_nsiblings) {
3978 struct rt6_info *sibling, *next_sibling;
3979 struct nlattr *mp;
3980
3981 mp = nla_nest_start(skb, RTA_MULTIPATH);
3982 if (!mp)
3983 goto nla_put_failure;
3984
3985 if (rt6_add_nexthop(skb, rt) < 0)
3986 goto nla_put_failure;
3987
3988 list_for_each_entry_safe(sibling, next_sibling,
3989 &rt->rt6i_siblings, rt6i_siblings) {
3990 if (rt6_add_nexthop(skb, sibling) < 0)
3991 goto nla_put_failure;
3992 }
3993
3994 nla_nest_end(skb, mp);
3995 } else {
David Ahern5be083c2017-03-06 15:57:31 -08003996 if (rt6_nexthop_info(skb, rt, &rtm->rtm_flags, false) < 0)
David Ahernbeb1afac52017-02-02 12:37:09 -08003997 goto nla_put_failure;
3998 }
3999
Li Wei82539472012-07-29 16:01:30 +00004000 expires = (rt->rt6i_flags & RTF_EXPIRES) ? rt->dst.expires - jiffies : 0;
YOSHIFUJI Hideaki69cdf8f2008-05-19 16:55:13 -07004001
David S. Miller87a50692012-07-10 05:06:14 -07004002 if (rtnl_put_cacheinfo(skb, &rt->dst, 0, expires, rt->dst.error) < 0)
Thomas Grafe3703b32006-11-27 09:27:07 -08004003 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004004
Lubomir Rintelc78ba6d2015-03-11 15:39:21 +01004005 if (nla_put_u8(skb, RTA_PREF, IPV6_EXTRACT_PREF(rt->rt6i_flags)))
4006 goto nla_put_failure;
4007
Roopa Prabhu19e42e42015-07-21 10:43:48 +02004008
Johannes Berg053c0952015-01-16 22:09:00 +01004009 nlmsg_end(skb, nlh);
4010 return 0;
Thomas Graf2d7202b2006-08-22 00:01:27 -07004011
4012nla_put_failure:
Patrick McHardy26932562007-01-31 23:16:40 -08004013 nlmsg_cancel(skb, nlh);
4014 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004015}
4016
Patrick McHardy1b43af52006-08-10 23:11:17 -07004017int rt6_dump_route(struct rt6_info *rt, void *p_arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004018{
4019 struct rt6_rtnl_dump_arg *arg = (struct rt6_rtnl_dump_arg *) p_arg;
David Ahern1f17e2f2017-01-26 13:54:08 -08004020 struct net *net = arg->net;
4021
4022 if (rt == net->ipv6.ip6_null_entry)
4023 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004024
Thomas Graf2d7202b2006-08-22 00:01:27 -07004025 if (nlmsg_len(arg->cb->nlh) >= sizeof(struct rtmsg)) {
4026 struct rtmsg *rtm = nlmsg_data(arg->cb->nlh);
David Ahernf8cfe2c2017-01-17 15:51:08 -08004027
4028 /* user wants prefix routes only */
4029 if (rtm->rtm_flags & RTM_F_PREFIX &&
4030 !(rt->rt6i_flags & RTF_PREFIX_RT)) {
4031 /* success since this is not a prefix route */
4032 return 1;
4033 }
4034 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004035
David Ahern1f17e2f2017-01-26 13:54:08 -08004036 return rt6_fill_node(net,
Brian Haley191cd582008-08-14 15:33:21 -07004037 arg->skb, rt, NULL, NULL, 0, RTM_NEWROUTE,
Eric W. Biederman15e47302012-09-07 20:12:54 +00004038 NETLINK_CB(arg->cb->skb).portid, arg->cb->nlh->nlmsg_seq,
David Ahernf8cfe2c2017-01-17 15:51:08 -08004039 NLM_F_MULTI);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004040}
4041
David Ahernc21ef3e2017-04-16 09:48:24 -07004042static int inet6_rtm_getroute(struct sk_buff *in_skb, struct nlmsghdr *nlh,
4043 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004044{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09004045 struct net *net = sock_net(in_skb->sk);
Thomas Grafab364a62006-08-22 00:01:47 -07004046 struct nlattr *tb[RTA_MAX+1];
Roopa Prabhu18c3a612017-05-25 10:42:40 -07004047 int err, iif = 0, oif = 0;
4048 struct dst_entry *dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004049 struct rt6_info *rt;
Thomas Grafab364a62006-08-22 00:01:47 -07004050 struct sk_buff *skb;
4051 struct rtmsg *rtm;
David S. Miller4c9483b2011-03-12 16:22:43 -05004052 struct flowi6 fl6;
Roopa Prabhu18c3a612017-05-25 10:42:40 -07004053 bool fibmatch;
Thomas Grafab364a62006-08-22 00:01:47 -07004054
Johannes Bergfceb6432017-04-12 14:34:07 +02004055 err = nlmsg_parse(nlh, sizeof(*rtm), tb, RTA_MAX, rtm_ipv6_policy,
David Ahernc21ef3e2017-04-16 09:48:24 -07004056 extack);
Thomas Grafab364a62006-08-22 00:01:47 -07004057 if (err < 0)
4058 goto errout;
4059
4060 err = -EINVAL;
David S. Miller4c9483b2011-03-12 16:22:43 -05004061 memset(&fl6, 0, sizeof(fl6));
Hannes Frederic Sowa38b70972016-06-11 20:08:19 +02004062 rtm = nlmsg_data(nlh);
4063 fl6.flowlabel = ip6_make_flowinfo(rtm->rtm_tos, 0);
Roopa Prabhu18c3a612017-05-25 10:42:40 -07004064 fibmatch = !!(rtm->rtm_flags & RTM_F_FIB_MATCH);
Thomas Grafab364a62006-08-22 00:01:47 -07004065
4066 if (tb[RTA_SRC]) {
4067 if (nla_len(tb[RTA_SRC]) < sizeof(struct in6_addr))
4068 goto errout;
4069
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00004070 fl6.saddr = *(struct in6_addr *)nla_data(tb[RTA_SRC]);
Thomas Grafab364a62006-08-22 00:01:47 -07004071 }
4072
4073 if (tb[RTA_DST]) {
4074 if (nla_len(tb[RTA_DST]) < sizeof(struct in6_addr))
4075 goto errout;
4076
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00004077 fl6.daddr = *(struct in6_addr *)nla_data(tb[RTA_DST]);
Thomas Grafab364a62006-08-22 00:01:47 -07004078 }
4079
4080 if (tb[RTA_IIF])
4081 iif = nla_get_u32(tb[RTA_IIF]);
4082
4083 if (tb[RTA_OIF])
Shmulik Ladkani72331bc2012-04-01 04:03:45 +00004084 oif = nla_get_u32(tb[RTA_OIF]);
Thomas Grafab364a62006-08-22 00:01:47 -07004085
Lorenzo Colitti2e47b292014-05-15 16:38:41 -07004086 if (tb[RTA_MARK])
4087 fl6.flowi6_mark = nla_get_u32(tb[RTA_MARK]);
4088
Lorenzo Colitti622ec2c2016-11-04 02:23:42 +09004089 if (tb[RTA_UID])
4090 fl6.flowi6_uid = make_kuid(current_user_ns(),
4091 nla_get_u32(tb[RTA_UID]));
4092 else
4093 fl6.flowi6_uid = iif ? INVALID_UID : current_uid();
4094
Thomas Grafab364a62006-08-22 00:01:47 -07004095 if (iif) {
4096 struct net_device *dev;
Shmulik Ladkani72331bc2012-04-01 04:03:45 +00004097 int flags = 0;
4098
Florian Westphal121622d2017-08-15 16:34:42 +02004099 rcu_read_lock();
4100
4101 dev = dev_get_by_index_rcu(net, iif);
Thomas Grafab364a62006-08-22 00:01:47 -07004102 if (!dev) {
Florian Westphal121622d2017-08-15 16:34:42 +02004103 rcu_read_unlock();
Thomas Grafab364a62006-08-22 00:01:47 -07004104 err = -ENODEV;
4105 goto errout;
4106 }
Shmulik Ladkani72331bc2012-04-01 04:03:45 +00004107
4108 fl6.flowi6_iif = iif;
4109
4110 if (!ipv6_addr_any(&fl6.saddr))
4111 flags |= RT6_LOOKUP_F_HAS_SADDR;
4112
Roopa Prabhu18c3a612017-05-25 10:42:40 -07004113 if (!fibmatch)
4114 dst = ip6_route_input_lookup(net, dev, &fl6, flags);
Arnd Bergmann401481e2017-08-18 13:34:22 +02004115 else
4116 dst = ip6_route_lookup(net, &fl6, 0);
Florian Westphal121622d2017-08-15 16:34:42 +02004117
4118 rcu_read_unlock();
Shmulik Ladkani72331bc2012-04-01 04:03:45 +00004119 } else {
4120 fl6.flowi6_oif = oif;
4121
Roopa Prabhu18c3a612017-05-25 10:42:40 -07004122 if (!fibmatch)
4123 dst = ip6_route_output(net, NULL, &fl6);
Arnd Bergmann401481e2017-08-18 13:34:22 +02004124 else
4125 dst = ip6_route_lookup(net, &fl6, 0);
Roopa Prabhu18c3a612017-05-25 10:42:40 -07004126 }
4127
Roopa Prabhu18c3a612017-05-25 10:42:40 -07004128
4129 rt = container_of(dst, struct rt6_info, dst);
4130 if (rt->dst.error) {
4131 err = rt->dst.error;
4132 ip6_rt_put(rt);
4133 goto errout;
Thomas Grafab364a62006-08-22 00:01:47 -07004134 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004135
WANG Cong9d6acb32017-03-01 20:48:39 -08004136 if (rt == net->ipv6.ip6_null_entry) {
4137 err = rt->dst.error;
4138 ip6_rt_put(rt);
4139 goto errout;
4140 }
4141
Linus Torvalds1da177e2005-04-16 15:20:36 -07004142 skb = alloc_skb(NLMSG_GOODSIZE, GFP_KERNEL);
David S. Miller38308472011-12-03 18:02:47 -05004143 if (!skb) {
Amerigo Wang94e187c2012-10-29 00:13:19 +00004144 ip6_rt_put(rt);
Thomas Grafab364a62006-08-22 00:01:47 -07004145 err = -ENOBUFS;
4146 goto errout;
4147 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004148
Changli Gaod8d1f302010-06-10 23:31:35 -07004149 skb_dst_set(skb, &rt->dst);
Roopa Prabhu18c3a612017-05-25 10:42:40 -07004150 if (fibmatch)
4151 err = rt6_fill_node(net, skb, rt, NULL, NULL, iif,
4152 RTM_NEWROUTE, NETLINK_CB(in_skb).portid,
4153 nlh->nlmsg_seq, 0);
4154 else
4155 err = rt6_fill_node(net, skb, rt, &fl6.daddr, &fl6.saddr, iif,
4156 RTM_NEWROUTE, NETLINK_CB(in_skb).portid,
4157 nlh->nlmsg_seq, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004158 if (err < 0) {
Thomas Grafab364a62006-08-22 00:01:47 -07004159 kfree_skb(skb);
4160 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004161 }
4162
Eric W. Biederman15e47302012-09-07 20:12:54 +00004163 err = rtnl_unicast(skb, net, NETLINK_CB(in_skb).portid);
Thomas Grafab364a62006-08-22 00:01:47 -07004164errout:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004165 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004166}
4167
Roopa Prabhu37a1d362015-09-13 10:18:33 -07004168void inet6_rt_notify(int event, struct rt6_info *rt, struct nl_info *info,
4169 unsigned int nlm_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004170{
4171 struct sk_buff *skb;
Daniel Lezcano55786892008-03-04 13:47:47 -08004172 struct net *net = info->nl_net;
Denis V. Lunev528c4ce2007-12-13 09:45:12 -08004173 u32 seq;
4174 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004175
Denis V. Lunev528c4ce2007-12-13 09:45:12 -08004176 err = -ENOBUFS;
David S. Miller38308472011-12-03 18:02:47 -05004177 seq = info->nlh ? info->nlh->nlmsg_seq : 0;
Thomas Graf86872cb2006-08-22 00:01:08 -07004178
Roopa Prabhu19e42e42015-07-21 10:43:48 +02004179 skb = nlmsg_new(rt6_nlmsg_size(rt), gfp_any());
David S. Miller38308472011-12-03 18:02:47 -05004180 if (!skb)
Thomas Graf21713eb2006-08-15 00:35:24 -07004181 goto errout;
4182
Brian Haley191cd582008-08-14 15:33:21 -07004183 err = rt6_fill_node(net, skb, rt, NULL, NULL, 0,
David Ahernf8cfe2c2017-01-17 15:51:08 -08004184 event, info->portid, seq, nlm_flags);
Patrick McHardy26932562007-01-31 23:16:40 -08004185 if (err < 0) {
4186 /* -EMSGSIZE implies BUG in rt6_nlmsg_size() */
4187 WARN_ON(err == -EMSGSIZE);
4188 kfree_skb(skb);
4189 goto errout;
4190 }
Eric W. Biederman15e47302012-09-07 20:12:54 +00004191 rtnl_notify(skb, net, info->portid, RTNLGRP_IPV6_ROUTE,
Pablo Neira Ayuso1ce85fe2009-02-24 23:18:28 -08004192 info->nlh, gfp_any());
4193 return;
Thomas Graf21713eb2006-08-15 00:35:24 -07004194errout:
4195 if (err < 0)
Daniel Lezcano55786892008-03-04 13:47:47 -08004196 rtnl_set_sk_err(net, RTNLGRP_IPV6_ROUTE, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004197}
4198
Daniel Lezcano8ed67782008-03-04 13:48:30 -08004199static int ip6_route_dev_notify(struct notifier_block *this,
Jiri Pirko351638e2013-05-28 01:30:21 +00004200 unsigned long event, void *ptr)
Daniel Lezcano8ed67782008-03-04 13:48:30 -08004201{
Jiri Pirko351638e2013-05-28 01:30:21 +00004202 struct net_device *dev = netdev_notifier_info_to_dev(ptr);
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09004203 struct net *net = dev_net(dev);
Daniel Lezcano8ed67782008-03-04 13:48:30 -08004204
WANG Cong242d3a42017-05-08 10:12:13 -07004205 if (!(dev->flags & IFF_LOOPBACK))
4206 return NOTIFY_OK;
4207
4208 if (event == NETDEV_REGISTER) {
Changli Gaod8d1f302010-06-10 23:31:35 -07004209 net->ipv6.ip6_null_entry->dst.dev = dev;
Daniel Lezcano8ed67782008-03-04 13:48:30 -08004210 net->ipv6.ip6_null_entry->rt6i_idev = in6_dev_get(dev);
4211#ifdef CONFIG_IPV6_MULTIPLE_TABLES
Changli Gaod8d1f302010-06-10 23:31:35 -07004212 net->ipv6.ip6_prohibit_entry->dst.dev = dev;
Daniel Lezcano8ed67782008-03-04 13:48:30 -08004213 net->ipv6.ip6_prohibit_entry->rt6i_idev = in6_dev_get(dev);
Changli Gaod8d1f302010-06-10 23:31:35 -07004214 net->ipv6.ip6_blk_hole_entry->dst.dev = dev;
Daniel Lezcano8ed67782008-03-04 13:48:30 -08004215 net->ipv6.ip6_blk_hole_entry->rt6i_idev = in6_dev_get(dev);
4216#endif
WANG Cong76da0702017-06-20 11:42:27 -07004217 } else if (event == NETDEV_UNREGISTER &&
4218 dev->reg_state != NETREG_UNREGISTERED) {
4219 /* NETDEV_UNREGISTER could be fired for multiple times by
4220 * netdev_wait_allrefs(). Make sure we only call this once.
4221 */
Eric Dumazet12d94a82017-08-15 04:09:51 -07004222 in6_dev_put_clear(&net->ipv6.ip6_null_entry->rt6i_idev);
WANG Cong242d3a42017-05-08 10:12:13 -07004223#ifdef CONFIG_IPV6_MULTIPLE_TABLES
Eric Dumazet12d94a82017-08-15 04:09:51 -07004224 in6_dev_put_clear(&net->ipv6.ip6_prohibit_entry->rt6i_idev);
4225 in6_dev_put_clear(&net->ipv6.ip6_blk_hole_entry->rt6i_idev);
WANG Cong242d3a42017-05-08 10:12:13 -07004226#endif
Daniel Lezcano8ed67782008-03-04 13:48:30 -08004227 }
4228
4229 return NOTIFY_OK;
4230}
4231
Linus Torvalds1da177e2005-04-16 15:20:36 -07004232/*
4233 * /proc
4234 */
4235
4236#ifdef CONFIG_PROC_FS
4237
Alexey Dobriyan33120b32007-11-06 05:27:11 -08004238static const struct file_operations ipv6_route_proc_fops = {
4239 .owner = THIS_MODULE,
4240 .open = ipv6_route_open,
4241 .read = seq_read,
4242 .llseek = seq_lseek,
Hannes Frederic Sowa8d2ca1d2013-09-21 16:55:59 +02004243 .release = seq_release_net,
Alexey Dobriyan33120b32007-11-06 05:27:11 -08004244};
4245
Linus Torvalds1da177e2005-04-16 15:20:36 -07004246static int rt6_stats_seq_show(struct seq_file *seq, void *v)
4247{
Daniel Lezcano69ddb802008-03-04 13:46:23 -08004248 struct net *net = (struct net *)seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004249 seq_printf(seq, "%04x %04x %04x %04x %04x %04x %04x\n",
Daniel Lezcano69ddb802008-03-04 13:46:23 -08004250 net->ipv6.rt6_stats->fib_nodes,
4251 net->ipv6.rt6_stats->fib_route_nodes,
4252 net->ipv6.rt6_stats->fib_rt_alloc,
4253 net->ipv6.rt6_stats->fib_rt_entries,
4254 net->ipv6.rt6_stats->fib_rt_cache,
Eric Dumazetfc66f952010-10-08 06:37:34 +00004255 dst_entries_get_slow(&net->ipv6.ip6_dst_ops),
Daniel Lezcano69ddb802008-03-04 13:46:23 -08004256 net->ipv6.rt6_stats->fib_discarded_routes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004257
4258 return 0;
4259}
4260
4261static int rt6_stats_seq_open(struct inode *inode, struct file *file)
4262{
Pavel Emelyanovde05c552008-07-18 04:07:21 -07004263 return single_open_net(inode, file, rt6_stats_seq_show);
Daniel Lezcano69ddb802008-03-04 13:46:23 -08004264}
4265
Arjan van de Ven9a321442007-02-12 00:55:35 -08004266static const struct file_operations rt6_stats_seq_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004267 .owner = THIS_MODULE,
4268 .open = rt6_stats_seq_open,
4269 .read = seq_read,
4270 .llseek = seq_lseek,
Pavel Emelyanovb6fcbdb2008-07-18 04:07:44 -07004271 .release = single_release_net,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004272};
4273#endif /* CONFIG_PROC_FS */
4274
4275#ifdef CONFIG_SYSCTL
4276
Linus Torvalds1da177e2005-04-16 15:20:36 -07004277static
Joe Perchesfe2c6332013-06-11 23:04:25 -07004278int ipv6_sysctl_rtcache_flush(struct ctl_table *ctl, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004279 void __user *buffer, size_t *lenp, loff_t *ppos)
4280{
Lucian Adrian Grijincuc486da32011-02-24 19:48:03 +00004281 struct net *net;
4282 int delay;
4283 if (!write)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004284 return -EINVAL;
Lucian Adrian Grijincuc486da32011-02-24 19:48:03 +00004285
4286 net = (struct net *)ctl->extra1;
4287 delay = net->ipv6.sysctl.flush_delay;
4288 proc_dointvec(ctl, write, buffer, lenp, ppos);
Michal Kubeček2ac3ac82013-08-01 10:04:14 +02004289 fib6_run_gc(delay <= 0 ? 0 : (unsigned long)delay, net, delay > 0);
Lucian Adrian Grijincuc486da32011-02-24 19:48:03 +00004290 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004291}
4292
Joe Perchesfe2c6332013-06-11 23:04:25 -07004293struct ctl_table ipv6_route_table_template[] = {
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09004294 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004295 .procname = "flush",
Daniel Lezcano49905092008-01-10 03:01:01 -08004296 .data = &init_net.ipv6.sysctl.flush_delay,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004297 .maxlen = sizeof(int),
Dave Jones89c8b3a12005-04-28 12:11:49 -07004298 .mode = 0200,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08004299 .proc_handler = ipv6_sysctl_rtcache_flush
Linus Torvalds1da177e2005-04-16 15:20:36 -07004300 },
4301 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004302 .procname = "gc_thresh",
Daniel Lezcano9a7ec3a2008-03-04 13:48:53 -08004303 .data = &ip6_dst_ops_template.gc_thresh,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004304 .maxlen = sizeof(int),
4305 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08004306 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004307 },
4308 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004309 .procname = "max_size",
Daniel Lezcano49905092008-01-10 03:01:01 -08004310 .data = &init_net.ipv6.sysctl.ip6_rt_max_size,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004311 .maxlen = sizeof(int),
4312 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08004313 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004314 },
4315 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004316 .procname = "gc_min_interval",
Daniel Lezcano49905092008-01-10 03:01:01 -08004317 .data = &init_net.ipv6.sysctl.ip6_rt_gc_min_interval,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004318 .maxlen = sizeof(int),
4319 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08004320 .proc_handler = proc_dointvec_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004321 },
4322 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004323 .procname = "gc_timeout",
Daniel Lezcano49905092008-01-10 03:01:01 -08004324 .data = &init_net.ipv6.sysctl.ip6_rt_gc_timeout,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004325 .maxlen = sizeof(int),
4326 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08004327 .proc_handler = proc_dointvec_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004328 },
4329 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004330 .procname = "gc_interval",
Daniel Lezcano49905092008-01-10 03:01:01 -08004331 .data = &init_net.ipv6.sysctl.ip6_rt_gc_interval,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004332 .maxlen = sizeof(int),
4333 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08004334 .proc_handler = proc_dointvec_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004335 },
4336 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004337 .procname = "gc_elasticity",
Daniel Lezcano49905092008-01-10 03:01:01 -08004338 .data = &init_net.ipv6.sysctl.ip6_rt_gc_elasticity,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004339 .maxlen = sizeof(int),
4340 .mode = 0644,
Min Zhangf3d3f612010-08-14 22:42:51 -07004341 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004342 },
4343 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004344 .procname = "mtu_expires",
Daniel Lezcano49905092008-01-10 03:01:01 -08004345 .data = &init_net.ipv6.sysctl.ip6_rt_mtu_expires,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004346 .maxlen = sizeof(int),
4347 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08004348 .proc_handler = proc_dointvec_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004349 },
4350 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004351 .procname = "min_adv_mss",
Daniel Lezcano49905092008-01-10 03:01:01 -08004352 .data = &init_net.ipv6.sysctl.ip6_rt_min_advmss,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004353 .maxlen = sizeof(int),
4354 .mode = 0644,
Min Zhangf3d3f612010-08-14 22:42:51 -07004355 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004356 },
4357 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004358 .procname = "gc_min_interval_ms",
Daniel Lezcano49905092008-01-10 03:01:01 -08004359 .data = &init_net.ipv6.sysctl.ip6_rt_gc_min_interval,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004360 .maxlen = sizeof(int),
4361 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08004362 .proc_handler = proc_dointvec_ms_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004363 },
Eric W. Biedermanf8572d82009-11-05 13:32:03 -08004364 { }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004365};
4366
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00004367struct ctl_table * __net_init ipv6_route_sysctl_init(struct net *net)
Daniel Lezcano760f2d02008-01-10 02:53:43 -08004368{
4369 struct ctl_table *table;
4370
4371 table = kmemdup(ipv6_route_table_template,
4372 sizeof(ipv6_route_table_template),
4373 GFP_KERNEL);
YOSHIFUJI Hideaki5ee09102008-02-28 00:24:28 +09004374
4375 if (table) {
4376 table[0].data = &net->ipv6.sysctl.flush_delay;
Lucian Adrian Grijincuc486da32011-02-24 19:48:03 +00004377 table[0].extra1 = net;
Alexey Dobriyan86393e52009-08-29 01:34:49 +00004378 table[1].data = &net->ipv6.ip6_dst_ops.gc_thresh;
YOSHIFUJI Hideaki5ee09102008-02-28 00:24:28 +09004379 table[2].data = &net->ipv6.sysctl.ip6_rt_max_size;
4380 table[3].data = &net->ipv6.sysctl.ip6_rt_gc_min_interval;
4381 table[4].data = &net->ipv6.sysctl.ip6_rt_gc_timeout;
4382 table[5].data = &net->ipv6.sysctl.ip6_rt_gc_interval;
4383 table[6].data = &net->ipv6.sysctl.ip6_rt_gc_elasticity;
4384 table[7].data = &net->ipv6.sysctl.ip6_rt_mtu_expires;
4385 table[8].data = &net->ipv6.sysctl.ip6_rt_min_advmss;
Alexey Dobriyan9c69fab2009-12-18 20:11:03 -08004386 table[9].data = &net->ipv6.sysctl.ip6_rt_gc_min_interval;
Eric W. Biederman464dc802012-11-16 03:02:59 +00004387
4388 /* Don't export sysctls to unprivileged users */
4389 if (net->user_ns != &init_user_ns)
4390 table[0].procname = NULL;
YOSHIFUJI Hideaki5ee09102008-02-28 00:24:28 +09004391 }
4392
Daniel Lezcano760f2d02008-01-10 02:53:43 -08004393 return table;
4394}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004395#endif
4396
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00004397static int __net_init ip6_route_net_init(struct net *net)
Daniel Lezcanocdb18762008-03-04 13:45:33 -08004398{
Pavel Emelyanov633d424b2008-04-21 14:25:23 -07004399 int ret = -ENOMEM;
Daniel Lezcano8ed67782008-03-04 13:48:30 -08004400
Alexey Dobriyan86393e52009-08-29 01:34:49 +00004401 memcpy(&net->ipv6.ip6_dst_ops, &ip6_dst_ops_template,
4402 sizeof(net->ipv6.ip6_dst_ops));
Benjamin Theryf2fc6a52008-03-04 13:49:23 -08004403
Eric Dumazetfc66f952010-10-08 06:37:34 +00004404 if (dst_entries_init(&net->ipv6.ip6_dst_ops) < 0)
4405 goto out_ip6_dst_ops;
4406
Daniel Lezcano8ed67782008-03-04 13:48:30 -08004407 net->ipv6.ip6_null_entry = kmemdup(&ip6_null_entry_template,
4408 sizeof(*net->ipv6.ip6_null_entry),
4409 GFP_KERNEL);
4410 if (!net->ipv6.ip6_null_entry)
Eric Dumazetfc66f952010-10-08 06:37:34 +00004411 goto out_ip6_dst_entries;
Changli Gaod8d1f302010-06-10 23:31:35 -07004412 net->ipv6.ip6_null_entry->dst.path =
Daniel Lezcano8ed67782008-03-04 13:48:30 -08004413 (struct dst_entry *)net->ipv6.ip6_null_entry;
Changli Gaod8d1f302010-06-10 23:31:35 -07004414 net->ipv6.ip6_null_entry->dst.ops = &net->ipv6.ip6_dst_ops;
David S. Miller62fa8a82011-01-26 20:51:05 -08004415 dst_init_metrics(&net->ipv6.ip6_null_entry->dst,
4416 ip6_template_metrics, true);
Daniel Lezcano8ed67782008-03-04 13:48:30 -08004417
4418#ifdef CONFIG_IPV6_MULTIPLE_TABLES
Vincent Bernatfeca7d82017-08-08 20:23:49 +02004419 net->ipv6.fib6_has_custom_rules = false;
Daniel Lezcano8ed67782008-03-04 13:48:30 -08004420 net->ipv6.ip6_prohibit_entry = kmemdup(&ip6_prohibit_entry_template,
4421 sizeof(*net->ipv6.ip6_prohibit_entry),
4422 GFP_KERNEL);
Peter Zijlstra68fffc62008-10-07 14:12:10 -07004423 if (!net->ipv6.ip6_prohibit_entry)
4424 goto out_ip6_null_entry;
Changli Gaod8d1f302010-06-10 23:31:35 -07004425 net->ipv6.ip6_prohibit_entry->dst.path =
Daniel Lezcano8ed67782008-03-04 13:48:30 -08004426 (struct dst_entry *)net->ipv6.ip6_prohibit_entry;
Changli Gaod8d1f302010-06-10 23:31:35 -07004427 net->ipv6.ip6_prohibit_entry->dst.ops = &net->ipv6.ip6_dst_ops;
David S. Miller62fa8a82011-01-26 20:51:05 -08004428 dst_init_metrics(&net->ipv6.ip6_prohibit_entry->dst,
4429 ip6_template_metrics, true);
Daniel Lezcano8ed67782008-03-04 13:48:30 -08004430
4431 net->ipv6.ip6_blk_hole_entry = kmemdup(&ip6_blk_hole_entry_template,
4432 sizeof(*net->ipv6.ip6_blk_hole_entry),
4433 GFP_KERNEL);
Peter Zijlstra68fffc62008-10-07 14:12:10 -07004434 if (!net->ipv6.ip6_blk_hole_entry)
4435 goto out_ip6_prohibit_entry;
Changli Gaod8d1f302010-06-10 23:31:35 -07004436 net->ipv6.ip6_blk_hole_entry->dst.path =
Daniel Lezcano8ed67782008-03-04 13:48:30 -08004437 (struct dst_entry *)net->ipv6.ip6_blk_hole_entry;
Changli Gaod8d1f302010-06-10 23:31:35 -07004438 net->ipv6.ip6_blk_hole_entry->dst.ops = &net->ipv6.ip6_dst_ops;
David S. Miller62fa8a82011-01-26 20:51:05 -08004439 dst_init_metrics(&net->ipv6.ip6_blk_hole_entry->dst,
4440 ip6_template_metrics, true);
Daniel Lezcano8ed67782008-03-04 13:48:30 -08004441#endif
4442
Peter Zijlstrab339a47c2008-10-07 14:15:00 -07004443 net->ipv6.sysctl.flush_delay = 0;
4444 net->ipv6.sysctl.ip6_rt_max_size = 4096;
4445 net->ipv6.sysctl.ip6_rt_gc_min_interval = HZ / 2;
4446 net->ipv6.sysctl.ip6_rt_gc_timeout = 60*HZ;
4447 net->ipv6.sysctl.ip6_rt_gc_interval = 30*HZ;
4448 net->ipv6.sysctl.ip6_rt_gc_elasticity = 9;
4449 net->ipv6.sysctl.ip6_rt_mtu_expires = 10*60*HZ;
4450 net->ipv6.sysctl.ip6_rt_min_advmss = IPV6_MIN_MTU - 20 - 40;
4451
Benjamin Thery6891a342008-03-04 13:49:47 -08004452 net->ipv6.ip6_rt_gc_expire = 30*HZ;
4453
Daniel Lezcano8ed67782008-03-04 13:48:30 -08004454 ret = 0;
4455out:
4456 return ret;
Benjamin Theryf2fc6a52008-03-04 13:49:23 -08004457
Peter Zijlstra68fffc62008-10-07 14:12:10 -07004458#ifdef CONFIG_IPV6_MULTIPLE_TABLES
4459out_ip6_prohibit_entry:
4460 kfree(net->ipv6.ip6_prohibit_entry);
4461out_ip6_null_entry:
4462 kfree(net->ipv6.ip6_null_entry);
4463#endif
Eric Dumazetfc66f952010-10-08 06:37:34 +00004464out_ip6_dst_entries:
4465 dst_entries_destroy(&net->ipv6.ip6_dst_ops);
Benjamin Theryf2fc6a52008-03-04 13:49:23 -08004466out_ip6_dst_ops:
Benjamin Theryf2fc6a52008-03-04 13:49:23 -08004467 goto out;
Daniel Lezcanocdb18762008-03-04 13:45:33 -08004468}
4469
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00004470static void __net_exit ip6_route_net_exit(struct net *net)
Daniel Lezcanocdb18762008-03-04 13:45:33 -08004471{
Daniel Lezcano8ed67782008-03-04 13:48:30 -08004472 kfree(net->ipv6.ip6_null_entry);
4473#ifdef CONFIG_IPV6_MULTIPLE_TABLES
4474 kfree(net->ipv6.ip6_prohibit_entry);
4475 kfree(net->ipv6.ip6_blk_hole_entry);
4476#endif
Xiaotian Feng41bb78b2010-11-02 16:11:05 +00004477 dst_entries_destroy(&net->ipv6.ip6_dst_ops);
Daniel Lezcanocdb18762008-03-04 13:45:33 -08004478}
4479
Thomas Grafd1896342012-06-18 12:08:33 +00004480static int __net_init ip6_route_net_init_late(struct net *net)
4481{
4482#ifdef CONFIG_PROC_FS
Gao fengd4beaa62013-02-18 01:34:54 +00004483 proc_create("ipv6_route", 0, net->proc_net, &ipv6_route_proc_fops);
4484 proc_create("rt6_stats", S_IRUGO, net->proc_net, &rt6_stats_seq_fops);
Thomas Grafd1896342012-06-18 12:08:33 +00004485#endif
4486 return 0;
4487}
4488
4489static void __net_exit ip6_route_net_exit_late(struct net *net)
4490{
4491#ifdef CONFIG_PROC_FS
Gao fengece31ff2013-02-18 01:34:56 +00004492 remove_proc_entry("ipv6_route", net->proc_net);
4493 remove_proc_entry("rt6_stats", net->proc_net);
Thomas Grafd1896342012-06-18 12:08:33 +00004494#endif
4495}
4496
Daniel Lezcanocdb18762008-03-04 13:45:33 -08004497static struct pernet_operations ip6_route_net_ops = {
4498 .init = ip6_route_net_init,
4499 .exit = ip6_route_net_exit,
4500};
4501
David S. Millerc3426b42012-06-09 16:27:05 -07004502static int __net_init ipv6_inetpeer_init(struct net *net)
4503{
4504 struct inet_peer_base *bp = kmalloc(sizeof(*bp), GFP_KERNEL);
4505
4506 if (!bp)
4507 return -ENOMEM;
4508 inet_peer_base_init(bp);
4509 net->ipv6.peers = bp;
4510 return 0;
4511}
4512
4513static void __net_exit ipv6_inetpeer_exit(struct net *net)
4514{
4515 struct inet_peer_base *bp = net->ipv6.peers;
4516
4517 net->ipv6.peers = NULL;
David S. Miller56a6b242012-06-09 16:32:41 -07004518 inetpeer_invalidate_tree(bp);
David S. Millerc3426b42012-06-09 16:27:05 -07004519 kfree(bp);
4520}
4521
David S. Miller2b823f72012-06-09 19:00:16 -07004522static struct pernet_operations ipv6_inetpeer_ops = {
David S. Millerc3426b42012-06-09 16:27:05 -07004523 .init = ipv6_inetpeer_init,
4524 .exit = ipv6_inetpeer_exit,
4525};
4526
Thomas Grafd1896342012-06-18 12:08:33 +00004527static struct pernet_operations ip6_route_net_late_ops = {
4528 .init = ip6_route_net_init_late,
4529 .exit = ip6_route_net_exit_late,
4530};
4531
Daniel Lezcano8ed67782008-03-04 13:48:30 -08004532static struct notifier_block ip6_route_dev_notifier = {
4533 .notifier_call = ip6_route_dev_notify,
WANG Cong242d3a42017-05-08 10:12:13 -07004534 .priority = ADDRCONF_NOTIFY_PRIORITY - 10,
Daniel Lezcano8ed67782008-03-04 13:48:30 -08004535};
4536
WANG Cong2f460932017-05-03 22:07:31 -07004537void __init ip6_route_init_special_entries(void)
4538{
4539 /* Registering of the loopback is done before this portion of code,
4540 * the loopback reference in rt6_info will not be taken, do it
4541 * manually for init_net */
4542 init_net.ipv6.ip6_null_entry->dst.dev = init_net.loopback_dev;
4543 init_net.ipv6.ip6_null_entry->rt6i_idev = in6_dev_get(init_net.loopback_dev);
4544 #ifdef CONFIG_IPV6_MULTIPLE_TABLES
4545 init_net.ipv6.ip6_prohibit_entry->dst.dev = init_net.loopback_dev;
4546 init_net.ipv6.ip6_prohibit_entry->rt6i_idev = in6_dev_get(init_net.loopback_dev);
4547 init_net.ipv6.ip6_blk_hole_entry->dst.dev = init_net.loopback_dev;
4548 init_net.ipv6.ip6_blk_hole_entry->rt6i_idev = in6_dev_get(init_net.loopback_dev);
4549 #endif
4550}
4551
Daniel Lezcano433d49c2007-12-07 00:43:48 -08004552int __init ip6_route_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004553{
Daniel Lezcano433d49c2007-12-07 00:43:48 -08004554 int ret;
Martin KaFai Lau8d0b94a2015-05-22 20:56:04 -07004555 int cpu;
Daniel Lezcano433d49c2007-12-07 00:43:48 -08004556
Daniel Lezcano9a7ec3a2008-03-04 13:48:53 -08004557 ret = -ENOMEM;
4558 ip6_dst_ops_template.kmem_cachep =
4559 kmem_cache_create("ip6_dst_cache", sizeof(struct rt6_info), 0,
4560 SLAB_HWCACHE_ALIGN, NULL);
4561 if (!ip6_dst_ops_template.kmem_cachep)
Fernando Carrijoc19a28e2009-01-07 18:09:08 -08004562 goto out;
David S. Miller14e50e52007-05-24 18:17:54 -07004563
Eric Dumazetfc66f952010-10-08 06:37:34 +00004564 ret = dst_entries_init(&ip6_dst_blackhole_ops);
Daniel Lezcano8ed67782008-03-04 13:48:30 -08004565 if (ret)
Daniel Lezcanobdb32892008-03-04 13:48:10 -08004566 goto out_kmem_cache;
Daniel Lezcanobdb32892008-03-04 13:48:10 -08004567
David S. Millerc3426b42012-06-09 16:27:05 -07004568 ret = register_pernet_subsys(&ipv6_inetpeer_ops);
4569 if (ret)
David S. Millere8803b62012-06-16 01:12:19 -07004570 goto out_dst_entries;
Thomas Graf2a0c4512012-06-14 23:00:17 +00004571
David S. Miller7e52b332012-06-15 15:51:55 -07004572 ret = register_pernet_subsys(&ip6_route_net_ops);
4573 if (ret)
4574 goto out_register_inetpeer;
David S. Millerc3426b42012-06-09 16:27:05 -07004575
Arnaud Ebalard5dc121e2008-10-01 02:37:56 -07004576 ip6_dst_blackhole_ops.kmem_cachep = ip6_dst_ops_template.kmem_cachep;
4577
David S. Millere8803b62012-06-16 01:12:19 -07004578 ret = fib6_init();
Daniel Lezcano433d49c2007-12-07 00:43:48 -08004579 if (ret)
Daniel Lezcano8ed67782008-03-04 13:48:30 -08004580 goto out_register_subsys;
Daniel Lezcano433d49c2007-12-07 00:43:48 -08004581
Daniel Lezcano433d49c2007-12-07 00:43:48 -08004582 ret = xfrm6_init();
4583 if (ret)
David S. Millere8803b62012-06-16 01:12:19 -07004584 goto out_fib6_init;
Daniel Lezcanoc35b7e72007-12-08 00:14:11 -08004585
Daniel Lezcano433d49c2007-12-07 00:43:48 -08004586 ret = fib6_rules_init();
4587 if (ret)
4588 goto xfrm6_init;
Daniel Lezcano7e5449c2007-12-08 00:14:54 -08004589
Thomas Grafd1896342012-06-18 12:08:33 +00004590 ret = register_pernet_subsys(&ip6_route_net_late_ops);
4591 if (ret)
4592 goto fib6_rules_init;
4593
Daniel Lezcano433d49c2007-12-07 00:43:48 -08004594 ret = -ENOBUFS;
Florian Westphalb97bac62017-08-09 20:41:48 +02004595 if (__rtnl_register(PF_INET6, RTM_NEWROUTE, inet6_rtm_newroute, NULL, 0) ||
4596 __rtnl_register(PF_INET6, RTM_DELROUTE, inet6_rtm_delroute, NULL, 0) ||
Florian Westphale3a22b72017-08-15 16:34:43 +02004597 __rtnl_register(PF_INET6, RTM_GETROUTE, inet6_rtm_getroute, NULL,
4598 RTNL_FLAG_DOIT_UNLOCKED))
Thomas Grafd1896342012-06-18 12:08:33 +00004599 goto out_register_late_subsys;
Daniel Lezcano433d49c2007-12-07 00:43:48 -08004600
Daniel Lezcano8ed67782008-03-04 13:48:30 -08004601 ret = register_netdevice_notifier(&ip6_route_dev_notifier);
Daniel Lezcanocdb18762008-03-04 13:45:33 -08004602 if (ret)
Thomas Grafd1896342012-06-18 12:08:33 +00004603 goto out_register_late_subsys;
Daniel Lezcano8ed67782008-03-04 13:48:30 -08004604
Martin KaFai Lau8d0b94a2015-05-22 20:56:04 -07004605 for_each_possible_cpu(cpu) {
4606 struct uncached_list *ul = per_cpu_ptr(&rt6_uncached_list, cpu);
4607
4608 INIT_LIST_HEAD(&ul->head);
4609 spin_lock_init(&ul->lock);
4610 }
4611
Daniel Lezcano433d49c2007-12-07 00:43:48 -08004612out:
4613 return ret;
4614
Thomas Grafd1896342012-06-18 12:08:33 +00004615out_register_late_subsys:
4616 unregister_pernet_subsys(&ip6_route_net_late_ops);
Daniel Lezcano433d49c2007-12-07 00:43:48 -08004617fib6_rules_init:
Daniel Lezcano433d49c2007-12-07 00:43:48 -08004618 fib6_rules_cleanup();
4619xfrm6_init:
Daniel Lezcano433d49c2007-12-07 00:43:48 -08004620 xfrm6_fini();
Thomas Graf2a0c4512012-06-14 23:00:17 +00004621out_fib6_init:
4622 fib6_gc_cleanup();
Daniel Lezcano8ed67782008-03-04 13:48:30 -08004623out_register_subsys:
4624 unregister_pernet_subsys(&ip6_route_net_ops);
David S. Miller7e52b332012-06-15 15:51:55 -07004625out_register_inetpeer:
4626 unregister_pernet_subsys(&ipv6_inetpeer_ops);
Eric Dumazetfc66f952010-10-08 06:37:34 +00004627out_dst_entries:
4628 dst_entries_destroy(&ip6_dst_blackhole_ops);
Daniel Lezcano433d49c2007-12-07 00:43:48 -08004629out_kmem_cache:
Benjamin Theryf2fc6a52008-03-04 13:49:23 -08004630 kmem_cache_destroy(ip6_dst_ops_template.kmem_cachep);
Daniel Lezcano433d49c2007-12-07 00:43:48 -08004631 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004632}
4633
4634void ip6_route_cleanup(void)
4635{
Daniel Lezcano8ed67782008-03-04 13:48:30 -08004636 unregister_netdevice_notifier(&ip6_route_dev_notifier);
Thomas Grafd1896342012-06-18 12:08:33 +00004637 unregister_pernet_subsys(&ip6_route_net_late_ops);
Thomas Graf101367c2006-08-04 03:39:02 -07004638 fib6_rules_cleanup();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004639 xfrm6_fini();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004640 fib6_gc_cleanup();
David S. Millerc3426b42012-06-09 16:27:05 -07004641 unregister_pernet_subsys(&ipv6_inetpeer_ops);
Daniel Lezcano8ed67782008-03-04 13:48:30 -08004642 unregister_pernet_subsys(&ip6_route_net_ops);
Xiaotian Feng41bb78b2010-11-02 16:11:05 +00004643 dst_entries_destroy(&ip6_dst_blackhole_ops);
Benjamin Theryf2fc6a52008-03-04 13:49:23 -08004644 kmem_cache_destroy(ip6_dst_ops_template.kmem_cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004645}