blob: 399d1bceec4a6e6736c367e706dd2acbd4093d58 [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;
Wei Wang81eb8442017-10-06 12:06:11 -0700146 struct net *net = dev_net(rt->dst.dev);
Martin KaFai Lau8d0b94a2015-05-22 20:56:04 -0700147
148 spin_lock_bh(&ul->lock);
149 list_del(&rt->rt6i_uncached);
Wei Wang81eb8442017-10-06 12:06:11 -0700150 atomic_dec(&net->ipv6.rt6_stats->fib_rt_uncache);
Martin KaFai Lau8d0b94a2015-05-22 20:56:04 -0700151 spin_unlock_bh(&ul->lock);
152 }
153}
154
155static void rt6_uncached_list_flush_dev(struct net *net, struct net_device *dev)
156{
157 struct net_device *loopback_dev = net->loopback_dev;
158 int cpu;
159
Eric W. Biedermane332bc62015-10-12 11:02:08 -0500160 if (dev == loopback_dev)
161 return;
162
Martin KaFai Lau8d0b94a2015-05-22 20:56:04 -0700163 for_each_possible_cpu(cpu) {
164 struct uncached_list *ul = per_cpu_ptr(&rt6_uncached_list, cpu);
165 struct rt6_info *rt;
166
167 spin_lock_bh(&ul->lock);
168 list_for_each_entry(rt, &ul->head, rt6i_uncached) {
169 struct inet6_dev *rt_idev = rt->rt6i_idev;
170 struct net_device *rt_dev = rt->dst.dev;
171
Eric W. Biedermane332bc62015-10-12 11:02:08 -0500172 if (rt_idev->dev == dev) {
Martin KaFai Lau8d0b94a2015-05-22 20:56:04 -0700173 rt->rt6i_idev = in6_dev_get(loopback_dev);
174 in6_dev_put(rt_idev);
175 }
176
Eric W. Biedermane332bc62015-10-12 11:02:08 -0500177 if (rt_dev == dev) {
Martin KaFai Lau8d0b94a2015-05-22 20:56:04 -0700178 rt->dst.dev = loopback_dev;
179 dev_hold(rt->dst.dev);
180 dev_put(rt_dev);
181 }
182 }
183 spin_unlock_bh(&ul->lock);
184 }
185}
186
Martin KaFai Laud52d3992015-05-22 20:56:06 -0700187static u32 *rt6_pcpu_cow_metrics(struct rt6_info *rt)
188{
189 return dst_metrics_write_ptr(rt->dst.from);
190}
191
David S. Miller06582542011-01-27 14:58:42 -0800192static u32 *ipv6_cow_metrics(struct dst_entry *dst, unsigned long old)
193{
Martin KaFai Lau4b32b5a2015-04-28 13:03:06 -0700194 struct rt6_info *rt = (struct rt6_info *)dst;
David S. Miller06582542011-01-27 14:58:42 -0800195
Martin KaFai Laud52d3992015-05-22 20:56:06 -0700196 if (rt->rt6i_flags & RTF_PCPU)
197 return rt6_pcpu_cow_metrics(rt);
198 else if (rt->rt6i_flags & RTF_CACHE)
Martin KaFai Lau4b32b5a2015-04-28 13:03:06 -0700199 return NULL;
200 else
Martin KaFai Lau3b471172015-02-12 16:14:08 -0800201 return dst_cow_metrics_generic(dst, old);
David S. Miller06582542011-01-27 14:58:42 -0800202}
203
David S. Millerf894cbf2012-07-02 21:52:24 -0700204static inline const void *choose_neigh_daddr(struct rt6_info *rt,
205 struct sk_buff *skb,
206 const void *daddr)
David S. Miller39232972012-01-26 15:22:32 -0500207{
208 struct in6_addr *p = &rt->rt6i_gateway;
209
David S. Millera7563f32012-01-26 16:29:16 -0500210 if (!ipv6_addr_any(p))
David S. Miller39232972012-01-26 15:22:32 -0500211 return (const void *) p;
David S. Millerf894cbf2012-07-02 21:52:24 -0700212 else if (skb)
213 return &ipv6_hdr(skb)->daddr;
David S. Miller39232972012-01-26 15:22:32 -0500214 return daddr;
215}
216
David S. Millerf894cbf2012-07-02 21:52:24 -0700217static struct neighbour *ip6_neigh_lookup(const struct dst_entry *dst,
218 struct sk_buff *skb,
219 const void *daddr)
David S. Millerd3aaeb32011-07-18 00:40:17 -0700220{
David S. Miller39232972012-01-26 15:22:32 -0500221 struct rt6_info *rt = (struct rt6_info *) dst;
222 struct neighbour *n;
223
David S. Millerf894cbf2012-07-02 21:52:24 -0700224 daddr = choose_neigh_daddr(rt, skb, daddr);
YOSHIFUJI Hideaki / 吉藤英明8e022ee2013-01-17 12:53:09 +0000225 n = __ipv6_neigh_lookup(dst->dev, daddr);
David S. Millerf83c7792011-12-28 15:41:23 -0500226 if (n)
227 return n;
228 return neigh_create(&nd_tbl, daddr, dst->dev);
229}
230
Julian Anastasov63fca652017-02-06 23:14:15 +0200231static void ip6_confirm_neigh(const struct dst_entry *dst, const void *daddr)
232{
233 struct net_device *dev = dst->dev;
234 struct rt6_info *rt = (struct rt6_info *)dst;
235
236 daddr = choose_neigh_daddr(rt, NULL, daddr);
237 if (!daddr)
238 return;
239 if (dev->flags & (IFF_NOARP | IFF_LOOPBACK))
240 return;
241 if (ipv6_addr_is_multicast((const struct in6_addr *)daddr))
242 return;
243 __ipv6_confirm_neigh(dev, daddr);
244}
245
Daniel Lezcano9a7ec3a2008-03-04 13:48:53 -0800246static struct dst_ops ip6_dst_ops_template = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 .family = AF_INET6,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 .gc = ip6_dst_gc,
249 .gc_thresh = 1024,
250 .check = ip6_dst_check,
David S. Miller0dbaee32010-12-13 12:52:14 -0800251 .default_advmss = ip6_default_advmss,
Steffen Klassertebb762f2011-11-23 02:12:51 +0000252 .mtu = ip6_mtu,
David S. Miller06582542011-01-27 14:58:42 -0800253 .cow_metrics = ipv6_cow_metrics,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 .destroy = ip6_dst_destroy,
255 .ifdown = ip6_dst_ifdown,
256 .negative_advice = ip6_negative_advice,
257 .link_failure = ip6_link_failure,
258 .update_pmtu = ip6_rt_update_pmtu,
David S. Miller6e157b62012-07-12 00:05:02 -0700259 .redirect = rt6_do_redirect,
Eric W. Biederman9f8955c2015-10-07 16:48:39 -0500260 .local_out = __ip6_local_out,
David S. Millerd3aaeb32011-07-18 00:40:17 -0700261 .neigh_lookup = ip6_neigh_lookup,
Julian Anastasov63fca652017-02-06 23:14:15 +0200262 .confirm_neigh = ip6_confirm_neigh,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263};
264
Steffen Klassertebb762f2011-11-23 02:12:51 +0000265static unsigned int ip6_blackhole_mtu(const struct dst_entry *dst)
Roland Dreierec831ea2011-01-31 13:16:00 -0800266{
Steffen Klassert618f9bc2011-11-23 02:13:31 +0000267 unsigned int mtu = dst_metric_raw(dst, RTAX_MTU);
268
269 return mtu ? : dst->dev->mtu;
Roland Dreierec831ea2011-01-31 13:16:00 -0800270}
271
David S. Miller6700c272012-07-17 03:29:28 -0700272static void ip6_rt_blackhole_update_pmtu(struct dst_entry *dst, struct sock *sk,
273 struct sk_buff *skb, u32 mtu)
David S. Miller14e50e52007-05-24 18:17:54 -0700274{
275}
276
David S. Miller6700c272012-07-17 03:29:28 -0700277static void ip6_rt_blackhole_redirect(struct dst_entry *dst, struct sock *sk,
278 struct sk_buff *skb)
David S. Millerb587ee32012-07-12 00:39:24 -0700279{
280}
281
David S. Miller14e50e52007-05-24 18:17:54 -0700282static struct dst_ops ip6_dst_blackhole_ops = {
283 .family = AF_INET6,
David S. Miller14e50e52007-05-24 18:17:54 -0700284 .destroy = ip6_dst_destroy,
285 .check = ip6_dst_check,
Steffen Klassertebb762f2011-11-23 02:12:51 +0000286 .mtu = ip6_blackhole_mtu,
Eric Dumazet214f45c2011-02-18 11:39:01 -0800287 .default_advmss = ip6_default_advmss,
David S. Miller14e50e52007-05-24 18:17:54 -0700288 .update_pmtu = ip6_rt_blackhole_update_pmtu,
David S. Millerb587ee32012-07-12 00:39:24 -0700289 .redirect = ip6_rt_blackhole_redirect,
Martin KaFai Lau0a1f5962015-10-15 16:39:58 -0700290 .cow_metrics = dst_cow_metrics_generic,
David S. Millerd3aaeb32011-07-18 00:40:17 -0700291 .neigh_lookup = ip6_neigh_lookup,
David S. Miller14e50e52007-05-24 18:17:54 -0700292};
293
David S. Miller62fa8a82011-01-26 20:51:05 -0800294static const u32 ip6_template_metrics[RTAX_MAX] = {
Li RongQing14edd872012-10-24 14:01:18 +0800295 [RTAX_HOPLIMIT - 1] = 0,
David S. Miller62fa8a82011-01-26 20:51:05 -0800296};
297
Eric Dumazetfb0af4c2012-09-11 21:47:51 +0000298static const struct rt6_info ip6_null_entry_template = {
Changli Gaod8d1f302010-06-10 23:31:35 -0700299 .dst = {
300 .__refcnt = ATOMIC_INIT(1),
301 .__use = 1,
Nicolas Dichtel2c20cbd2012-09-10 22:09:47 +0000302 .obsolete = DST_OBSOLETE_FORCE_CHK,
Changli Gaod8d1f302010-06-10 23:31:35 -0700303 .error = -ENETUNREACH,
Changli Gaod8d1f302010-06-10 23:31:35 -0700304 .input = ip6_pkt_discard,
305 .output = ip6_pkt_discard_out,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 },
307 .rt6i_flags = (RTF_REJECT | RTF_NONEXTHOP),
Jean-Mickael Guerin4f724272009-05-20 17:38:59 -0700308 .rt6i_protocol = RTPROT_KERNEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 .rt6i_metric = ~(u32) 0,
310 .rt6i_ref = ATOMIC_INIT(1),
311};
312
Thomas Graf101367c2006-08-04 03:39:02 -0700313#ifdef CONFIG_IPV6_MULTIPLE_TABLES
314
Eric Dumazetfb0af4c2012-09-11 21:47:51 +0000315static const struct rt6_info ip6_prohibit_entry_template = {
Changli Gaod8d1f302010-06-10 23:31:35 -0700316 .dst = {
317 .__refcnt = ATOMIC_INIT(1),
318 .__use = 1,
Nicolas Dichtel2c20cbd2012-09-10 22:09:47 +0000319 .obsolete = DST_OBSOLETE_FORCE_CHK,
Changli Gaod8d1f302010-06-10 23:31:35 -0700320 .error = -EACCES,
Changli Gaod8d1f302010-06-10 23:31:35 -0700321 .input = ip6_pkt_prohibit,
322 .output = ip6_pkt_prohibit_out,
Thomas Graf101367c2006-08-04 03:39:02 -0700323 },
324 .rt6i_flags = (RTF_REJECT | RTF_NONEXTHOP),
Jean-Mickael Guerin4f724272009-05-20 17:38:59 -0700325 .rt6i_protocol = RTPROT_KERNEL,
Thomas Graf101367c2006-08-04 03:39:02 -0700326 .rt6i_metric = ~(u32) 0,
327 .rt6i_ref = ATOMIC_INIT(1),
328};
329
Eric Dumazetfb0af4c2012-09-11 21:47:51 +0000330static const struct rt6_info ip6_blk_hole_entry_template = {
Changli Gaod8d1f302010-06-10 23:31:35 -0700331 .dst = {
332 .__refcnt = ATOMIC_INIT(1),
333 .__use = 1,
Nicolas Dichtel2c20cbd2012-09-10 22:09:47 +0000334 .obsolete = DST_OBSOLETE_FORCE_CHK,
Changli Gaod8d1f302010-06-10 23:31:35 -0700335 .error = -EINVAL,
Changli Gaod8d1f302010-06-10 23:31:35 -0700336 .input = dst_discard,
Eric W. Biedermanede20592015-10-07 16:48:47 -0500337 .output = dst_discard_out,
Thomas Graf101367c2006-08-04 03:39:02 -0700338 },
339 .rt6i_flags = (RTF_REJECT | RTF_NONEXTHOP),
Jean-Mickael Guerin4f724272009-05-20 17:38:59 -0700340 .rt6i_protocol = RTPROT_KERNEL,
Thomas Graf101367c2006-08-04 03:39:02 -0700341 .rt6i_metric = ~(u32) 0,
342 .rt6i_ref = ATOMIC_INIT(1),
343};
344
345#endif
346
Martin KaFai Lauebfa45f2015-10-15 16:39:57 -0700347static void rt6_info_init(struct rt6_info *rt)
348{
349 struct dst_entry *dst = &rt->dst;
350
351 memset(dst + 1, 0, sizeof(*rt) - sizeof(*dst));
352 INIT_LIST_HEAD(&rt->rt6i_siblings);
353 INIT_LIST_HEAD(&rt->rt6i_uncached);
354}
355
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356/* allocate dst with ip6_dst_ops */
Martin KaFai Laud52d3992015-05-22 20:56:06 -0700357static struct rt6_info *__ip6_dst_alloc(struct net *net,
358 struct net_device *dev,
Martin KaFai Lauad706862015-08-14 11:05:52 -0700359 int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360{
David S. Miller97bab732012-06-09 22:36:36 -0700361 struct rt6_info *rt = dst_alloc(&net->ipv6.ip6_dst_ops, dev,
Wei Wangb2a9c0e2017-06-17 10:42:41 -0700362 1, DST_OBSOLETE_FORCE_CHK, flags);
David S. Millercf911662011-04-28 14:31:47 -0700363
Wei Wang81eb8442017-10-06 12:06:11 -0700364 if (rt) {
Martin KaFai Lauebfa45f2015-10-15 16:39:57 -0700365 rt6_info_init(rt);
Wei Wang81eb8442017-10-06 12:06:11 -0700366 atomic_inc(&net->ipv6.rt6_stats->fib_rt_alloc);
367 }
Steffen Klassert81048912012-07-05 23:37:09 +0000368
David S. Millercf911662011-04-28 14:31:47 -0700369 return rt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370}
371
David Ahern9ab179d2016-04-07 11:10:06 -0700372struct rt6_info *ip6_dst_alloc(struct net *net,
373 struct net_device *dev,
374 int flags)
Martin KaFai Laud52d3992015-05-22 20:56:06 -0700375{
Martin KaFai Lauad706862015-08-14 11:05:52 -0700376 struct rt6_info *rt = __ip6_dst_alloc(net, dev, flags);
Martin KaFai Laud52d3992015-05-22 20:56:06 -0700377
378 if (rt) {
379 rt->rt6i_pcpu = alloc_percpu_gfp(struct rt6_info *, GFP_ATOMIC);
380 if (rt->rt6i_pcpu) {
381 int cpu;
382
383 for_each_possible_cpu(cpu) {
384 struct rt6_info **p;
385
386 p = per_cpu_ptr(rt->rt6i_pcpu, cpu);
387 /* no one shares rt */
388 *p = NULL;
389 }
390 } else {
Wei Wang587fea72017-06-17 10:42:36 -0700391 dst_release_immediate(&rt->dst);
Martin KaFai Laud52d3992015-05-22 20:56:06 -0700392 return NULL;
393 }
394 }
395
396 return rt;
397}
David Ahern9ab179d2016-04-07 11:10:06 -0700398EXPORT_SYMBOL(ip6_dst_alloc);
Martin KaFai Laud52d3992015-05-22 20:56:06 -0700399
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400static void ip6_dst_destroy(struct dst_entry *dst)
401{
402 struct rt6_info *rt = (struct rt6_info *)dst;
Wei Wang35732d02017-10-06 12:05:57 -0700403 struct rt6_exception_bucket *bucket;
YOSHIFUJI Hideaki / 吉藤英明ecd98832013-02-20 00:29:08 +0000404 struct dst_entry *from = dst->from;
Martin KaFai Lau8d0b94a2015-05-22 20:56:04 -0700405 struct inet6_dev *idev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406
Martin KaFai Lau4b32b5a2015-04-28 13:03:06 -0700407 dst_destroy_metrics_generic(dst);
Markus Elfring87775312015-07-02 16:30:24 +0200408 free_percpu(rt->rt6i_pcpu);
Martin KaFai Lau8d0b94a2015-05-22 20:56:04 -0700409 rt6_uncached_list_del(rt);
410
411 idev = rt->rt6i_idev;
David S. Miller38308472011-12-03 18:02:47 -0500412 if (idev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 rt->rt6i_idev = NULL;
414 in6_dev_put(idev);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900415 }
Wei Wang35732d02017-10-06 12:05:57 -0700416 bucket = rcu_dereference_protected(rt->rt6i_exception_bucket, 1);
417 if (bucket) {
418 rt->rt6i_exception_bucket = NULL;
419 kfree(bucket);
420 }
Gao feng1716a962012-04-06 00:13:10 +0000421
YOSHIFUJI Hideaki / 吉藤英明ecd98832013-02-20 00:29:08 +0000422 dst->from = NULL;
423 dst_release(from);
David S. Millerb3419362010-11-30 12:27:11 -0800424}
425
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426static void ip6_dst_ifdown(struct dst_entry *dst, struct net_device *dev,
427 int how)
428{
429 struct rt6_info *rt = (struct rt6_info *)dst;
430 struct inet6_dev *idev = rt->rt6i_idev;
Denis V. Lunev5a3e55d2007-12-07 00:38:10 -0800431 struct net_device *loopback_dev =
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900432 dev_net(dev)->loopback_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433
Wei Wange5645f52017-08-14 10:44:59 -0700434 if (idev && idev->dev != loopback_dev) {
435 struct inet6_dev *loopback_idev = in6_dev_get(loopback_dev);
436 if (loopback_idev) {
437 rt->rt6i_idev = loopback_idev;
438 in6_dev_put(idev);
David S. Miller97cac082012-07-02 22:43:47 -0700439 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 }
441}
442
Martin KaFai Lau5973fb12015-11-11 11:51:07 -0800443static bool __rt6_check_expired(const struct rt6_info *rt)
444{
445 if (rt->rt6i_flags & RTF_EXPIRES)
446 return time_after(jiffies, rt->dst.expires);
447 else
448 return false;
449}
450
Eric Dumazeta50feda2012-05-18 18:57:34 +0000451static bool rt6_check_expired(const struct rt6_info *rt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452{
Gao feng1716a962012-04-06 00:13:10 +0000453 if (rt->rt6i_flags & RTF_EXPIRES) {
454 if (time_after(jiffies, rt->dst.expires))
Eric Dumazeta50feda2012-05-18 18:57:34 +0000455 return true;
Gao feng1716a962012-04-06 00:13:10 +0000456 } else if (rt->dst.from) {
Xin Long1e2ea8a2017-08-26 20:10:10 +0800457 return rt->dst.obsolete != DST_OBSOLETE_FORCE_CHK ||
458 rt6_check_expired((struct rt6_info *)rt->dst.from);
Gao feng1716a962012-04-06 00:13:10 +0000459 }
Eric Dumazeta50feda2012-05-18 18:57:34 +0000460 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461}
462
Nicolas Dichtel51ebd312012-10-22 03:42:09 +0000463static struct rt6_info *rt6_multipath_select(struct rt6_info *match,
Nicolas Dichtel52bd4c02013-06-28 17:35:48 +0200464 struct flowi6 *fl6, int oif,
465 int strict)
Nicolas Dichtel51ebd312012-10-22 03:42:09 +0000466{
467 struct rt6_info *sibling, *next_sibling;
468 int route_choosen;
469
Jakub Sitnickib673d6c2017-08-23 09:58:31 +0200470 /* We might have already computed the hash for ICMPv6 errors. In such
471 * case it will always be non-zero. Otherwise now is the time to do it.
472 */
473 if (!fl6->mp_hash)
474 fl6->mp_hash = rt6_multipath_hash(fl6, NULL);
475
476 route_choosen = fl6->mp_hash % (match->rt6i_nsiblings + 1);
Nicolas Dichtel51ebd312012-10-22 03:42:09 +0000477 /* Don't change the route, if route_choosen == 0
478 * (siblings does not include ourself)
479 */
480 if (route_choosen)
481 list_for_each_entry_safe(sibling, next_sibling,
482 &match->rt6i_siblings, rt6i_siblings) {
483 route_choosen--;
484 if (route_choosen == 0) {
Nicolas Dichtel52bd4c02013-06-28 17:35:48 +0200485 if (rt6_score_route(sibling, oif, strict) < 0)
486 break;
Nicolas Dichtel51ebd312012-10-22 03:42:09 +0000487 match = sibling;
488 break;
489 }
490 }
491 return match;
492}
493
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494/*
Wei Wang66f5d6c2017-10-06 12:06:10 -0700495 * Route lookup. rcu_read_lock() should be held.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 */
497
Daniel Lezcano8ed67782008-03-04 13:48:30 -0800498static inline struct rt6_info *rt6_device_match(struct net *net,
499 struct rt6_info *rt,
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000500 const struct in6_addr *saddr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 int oif,
YOSHIFUJI Hideakid4208952008-06-27 20:14:54 -0700502 int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503{
504 struct rt6_info *local = NULL;
505 struct rt6_info *sprt;
506
YOSHIFUJI Hideakidd3abc42008-07-02 18:30:18 +0900507 if (!oif && ipv6_addr_any(saddr))
508 goto out;
509
Wei Wang66f5d6c2017-10-06 12:06:10 -0700510 for (sprt = rt; sprt; sprt = rcu_dereference(sprt->dst.rt6_next)) {
David S. Millerd1918542011-12-28 20:19:20 -0500511 struct net_device *dev = sprt->dst.dev;
YOSHIFUJI Hideakidd3abc42008-07-02 18:30:18 +0900512
513 if (oif) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 if (dev->ifindex == oif)
515 return sprt;
516 if (dev->flags & IFF_LOOPBACK) {
David S. Miller38308472011-12-03 18:02:47 -0500517 if (!sprt->rt6i_idev ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 sprt->rt6i_idev->dev->ifindex != oif) {
David Ahern17fb0b22015-09-25 15:22:54 -0600519 if (flags & RT6_LOOKUP_F_IFACE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 continue;
David Ahern17fb0b22015-09-25 15:22:54 -0600521 if (local &&
522 local->rt6i_idev->dev->ifindex == oif)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 continue;
524 }
525 local = sprt;
526 }
YOSHIFUJI Hideakidd3abc42008-07-02 18:30:18 +0900527 } else {
528 if (ipv6_chk_addr(net, saddr, dev,
529 flags & RT6_LOOKUP_F_IFACE))
530 return sprt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 }
YOSHIFUJI Hideakidd3abc42008-07-02 18:30:18 +0900532 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533
YOSHIFUJI Hideakidd3abc42008-07-02 18:30:18 +0900534 if (oif) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 if (local)
536 return local;
537
YOSHIFUJI Hideakid4208952008-06-27 20:14:54 -0700538 if (flags & RT6_LOOKUP_F_IFACE)
Daniel Lezcano8ed67782008-03-04 13:48:30 -0800539 return net->ipv6.ip6_null_entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 }
YOSHIFUJI Hideakidd3abc42008-07-02 18:30:18 +0900541out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 return rt;
543}
544
YOSHIFUJI Hideaki27097252006-03-20 17:05:13 -0800545#ifdef CONFIG_IPV6_ROUTER_PREF
Hannes Frederic Sowac2f17e82013-10-21 06:17:15 +0200546struct __rt6_probe_work {
547 struct work_struct work;
548 struct in6_addr target;
549 struct net_device *dev;
550};
551
552static void rt6_probe_deferred(struct work_struct *w)
553{
554 struct in6_addr mcaddr;
555 struct __rt6_probe_work *work =
556 container_of(w, struct __rt6_probe_work, work);
557
558 addrconf_addr_solict_mult(&work->target, &mcaddr);
Erik Nordmarkadc176c2016-12-02 14:00:08 -0800559 ndisc_send_ns(work->dev, &work->target, &mcaddr, NULL, 0);
Hannes Frederic Sowac2f17e82013-10-21 06:17:15 +0200560 dev_put(work->dev);
Michael Büsch662f5532015-02-08 10:14:07 +0100561 kfree(work);
Hannes Frederic Sowac2f17e82013-10-21 06:17:15 +0200562}
563
YOSHIFUJI Hideaki27097252006-03-20 17:05:13 -0800564static void rt6_probe(struct rt6_info *rt)
565{
Martin KaFai Lau990edb42015-07-24 09:57:42 -0700566 struct __rt6_probe_work *work;
Eric Dumazetf2c31e32011-07-29 19:00:53 +0000567 struct neighbour *neigh;
YOSHIFUJI Hideaki27097252006-03-20 17:05:13 -0800568 /*
569 * Okay, this does not seem to be appropriate
570 * for now, however, we need to check if it
571 * is really so; aka Router Reachability Probing.
572 *
573 * Router Reachability Probe MUST be rate-limited
574 * to no more than one per minute.
575 */
YOSHIFUJI Hideaki / 吉藤英明2152cae2013-01-17 12:53:43 +0000576 if (!rt || !(rt->rt6i_flags & RTF_GATEWAY))
Amerigo Wangfdd66812012-09-10 02:48:44 +0000577 return;
YOSHIFUJI Hideaki / 吉藤英明2152cae2013-01-17 12:53:43 +0000578 rcu_read_lock_bh();
579 neigh = __ipv6_neigh_lookup_noref(rt->dst.dev, &rt->rt6i_gateway);
580 if (neigh) {
Martin KaFai Lau8d6c31b2015-07-24 09:57:43 -0700581 if (neigh->nud_state & NUD_VALID)
582 goto out;
583
Martin KaFai Lau990edb42015-07-24 09:57:42 -0700584 work = NULL;
YOSHIFUJI Hideaki / 吉藤英明2152cae2013-01-17 12:53:43 +0000585 write_lock(&neigh->lock);
Martin KaFai Lau990edb42015-07-24 09:57:42 -0700586 if (!(neigh->nud_state & NUD_VALID) &&
587 time_after(jiffies,
588 neigh->updated +
589 rt->rt6i_idev->cnf.rtr_probe_interval)) {
590 work = kmalloc(sizeof(*work), GFP_ATOMIC);
591 if (work)
592 __neigh_set_probe_once(neigh);
Hannes Frederic Sowac2f17e82013-10-21 06:17:15 +0200593 }
YOSHIFUJI Hideaki / 吉藤英明2152cae2013-01-17 12:53:43 +0000594 write_unlock(&neigh->lock);
Martin KaFai Lau990edb42015-07-24 09:57:42 -0700595 } else {
596 work = kmalloc(sizeof(*work), GFP_ATOMIC);
Eric Dumazetf2c31e32011-07-29 19:00:53 +0000597 }
Martin KaFai Lau990edb42015-07-24 09:57:42 -0700598
599 if (work) {
600 INIT_WORK(&work->work, rt6_probe_deferred);
601 work->target = rt->rt6i_gateway;
602 dev_hold(rt->dst.dev);
603 work->dev = rt->dst.dev;
604 schedule_work(&work->work);
605 }
606
Martin KaFai Lau8d6c31b2015-07-24 09:57:43 -0700607out:
YOSHIFUJI Hideaki / 吉藤英明2152cae2013-01-17 12:53:43 +0000608 rcu_read_unlock_bh();
YOSHIFUJI Hideaki27097252006-03-20 17:05:13 -0800609}
610#else
611static inline void rt6_probe(struct rt6_info *rt)
612{
YOSHIFUJI Hideaki27097252006-03-20 17:05:13 -0800613}
614#endif
615
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616/*
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800617 * Default Router Selection (RFC 2461 6.3.6)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 */
Dave Jonesb6f99a22007-03-22 12:27:49 -0700619static inline int rt6_check_dev(struct rt6_info *rt, int oif)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620{
David S. Millerd1918542011-12-28 20:19:20 -0500621 struct net_device *dev = rt->dst.dev;
David S. Miller161980f2007-04-06 11:42:27 -0700622 if (!oif || dev->ifindex == oif)
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800623 return 2;
David S. Miller161980f2007-04-06 11:42:27 -0700624 if ((dev->flags & IFF_LOOPBACK) &&
625 rt->rt6i_idev && rt->rt6i_idev->dev->ifindex == oif)
626 return 1;
627 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628}
629
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200630static inline enum rt6_nud_state rt6_check_neigh(struct rt6_info *rt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631{
Eric Dumazetf2c31e32011-07-29 19:00:53 +0000632 struct neighbour *neigh;
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200633 enum rt6_nud_state ret = RT6_NUD_FAIL_HARD;
Eric Dumazetf2c31e32011-07-29 19:00:53 +0000634
YOSHIFUJI Hideaki4d0c5912006-05-26 13:23:41 -0700635 if (rt->rt6i_flags & RTF_NONEXTHOP ||
636 !(rt->rt6i_flags & RTF_GATEWAY))
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200637 return RT6_NUD_SUCCEED;
YOSHIFUJI Hideaki / 吉藤英明145a3622013-01-17 12:53:38 +0000638
639 rcu_read_lock_bh();
640 neigh = __ipv6_neigh_lookup_noref(rt->dst.dev, &rt->rt6i_gateway);
641 if (neigh) {
642 read_lock(&neigh->lock);
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800643 if (neigh->nud_state & NUD_VALID)
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200644 ret = RT6_NUD_SUCCEED;
YOSHIFUJI Hideaki398bcbe2008-01-19 00:35:16 -0800645#ifdef CONFIG_IPV6_ROUTER_PREF
Paul Marksa5a81f02012-12-03 10:26:54 +0000646 else if (!(neigh->nud_state & NUD_FAILED))
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200647 ret = RT6_NUD_SUCCEED;
Jiri Benc7e980562013-12-11 13:48:20 +0100648 else
649 ret = RT6_NUD_FAIL_PROBE;
YOSHIFUJI Hideaki398bcbe2008-01-19 00:35:16 -0800650#endif
YOSHIFUJI Hideaki / 吉藤英明145a3622013-01-17 12:53:38 +0000651 read_unlock(&neigh->lock);
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200652 } else {
653 ret = IS_ENABLED(CONFIG_IPV6_ROUTER_PREF) ?
Jiri Benc7e980562013-12-11 13:48:20 +0100654 RT6_NUD_SUCCEED : RT6_NUD_FAIL_DO_RR;
Paul Marksa5a81f02012-12-03 10:26:54 +0000655 }
YOSHIFUJI Hideaki / 吉藤英明145a3622013-01-17 12:53:38 +0000656 rcu_read_unlock_bh();
657
Paul Marksa5a81f02012-12-03 10:26:54 +0000658 return ret;
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800659}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800661static int rt6_score_route(struct rt6_info *rt, int oif,
662 int strict)
663{
Paul Marksa5a81f02012-12-03 10:26:54 +0000664 int m;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900665
YOSHIFUJI Hideaki4d0c5912006-05-26 13:23:41 -0700666 m = rt6_check_dev(rt, oif);
YOSHIFUJI Hideaki77d16f42006-08-23 17:25:05 -0700667 if (!m && (strict & RT6_LOOKUP_F_IFACE))
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200668 return RT6_NUD_FAIL_HARD;
YOSHIFUJI Hideakiebacaaa2006-03-20 17:04:53 -0800669#ifdef CONFIG_IPV6_ROUTER_PREF
670 m |= IPV6_DECODE_PREF(IPV6_EXTRACT_PREF(rt->rt6i_flags)) << 2;
671#endif
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200672 if (strict & RT6_LOOKUP_F_REACHABLE) {
673 int n = rt6_check_neigh(rt);
674 if (n < 0)
675 return n;
676 }
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800677 return m;
678}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679
David S. Millerf11e6652007-03-24 20:36:25 -0700680static struct rt6_info *find_match(struct rt6_info *rt, int oif, int strict,
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200681 int *mpri, struct rt6_info *match,
682 bool *do_rr)
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800683{
David S. Millerf11e6652007-03-24 20:36:25 -0700684 int m;
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200685 bool match_do_rr = false;
Andy Gospodarek35103d12015-08-13 10:39:01 -0400686 struct inet6_dev *idev = rt->rt6i_idev;
687 struct net_device *dev = rt->dst.dev;
688
689 if (dev && !netif_carrier_ok(dev) &&
David Ahernd5d32e42016-10-24 12:27:23 -0700690 idev->cnf.ignore_routes_with_linkdown &&
691 !(strict & RT6_LOOKUP_F_IGNORE_LINKSTATE))
Andy Gospodarek35103d12015-08-13 10:39:01 -0400692 goto out;
David S. Millerf11e6652007-03-24 20:36:25 -0700693
694 if (rt6_check_expired(rt))
695 goto out;
696
697 m = rt6_score_route(rt, oif, strict);
Jiri Benc7e980562013-12-11 13:48:20 +0100698 if (m == RT6_NUD_FAIL_DO_RR) {
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200699 match_do_rr = true;
700 m = 0; /* lowest valid score */
Jiri Benc7e980562013-12-11 13:48:20 +0100701 } else if (m == RT6_NUD_FAIL_HARD) {
David S. Millerf11e6652007-03-24 20:36:25 -0700702 goto out;
David S. Millerf11e6652007-03-24 20:36:25 -0700703 }
704
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200705 if (strict & RT6_LOOKUP_F_REACHABLE)
706 rt6_probe(rt);
707
Jiri Benc7e980562013-12-11 13:48:20 +0100708 /* note that m can be RT6_NUD_FAIL_PROBE at this point */
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200709 if (m > *mpri) {
710 *do_rr = match_do_rr;
711 *mpri = m;
712 match = rt;
713 }
David S. Millerf11e6652007-03-24 20:36:25 -0700714out:
715 return match;
716}
717
718static struct rt6_info *find_rr_leaf(struct fib6_node *fn,
Wei Wang8d1040e2017-10-06 12:06:08 -0700719 struct rt6_info *leaf,
David S. Millerf11e6652007-03-24 20:36:25 -0700720 struct rt6_info *rr_head,
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200721 u32 metric, int oif, int strict,
722 bool *do_rr)
David S. Millerf11e6652007-03-24 20:36:25 -0700723{
Steffen Klassert9fbdcfa2015-04-28 13:03:04 -0700724 struct rt6_info *rt, *match, *cont;
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800725 int mpri = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726
David S. Millerf11e6652007-03-24 20:36:25 -0700727 match = NULL;
Steffen Klassert9fbdcfa2015-04-28 13:03:04 -0700728 cont = NULL;
Wei Wang66f5d6c2017-10-06 12:06:10 -0700729 for (rt = rr_head; rt; rt = rcu_dereference(rt->dst.rt6_next)) {
Steffen Klassert9fbdcfa2015-04-28 13:03:04 -0700730 if (rt->rt6i_metric != metric) {
731 cont = rt;
732 break;
733 }
734
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200735 match = find_match(rt, oif, strict, &mpri, match, do_rr);
Steffen Klassert9fbdcfa2015-04-28 13:03:04 -0700736 }
737
Wei Wang66f5d6c2017-10-06 12:06:10 -0700738 for (rt = leaf; rt && rt != rr_head;
739 rt = rcu_dereference(rt->dst.rt6_next)) {
Steffen Klassert9fbdcfa2015-04-28 13:03:04 -0700740 if (rt->rt6i_metric != metric) {
741 cont = rt;
742 break;
743 }
744
745 match = find_match(rt, oif, strict, &mpri, match, do_rr);
746 }
747
748 if (match || !cont)
749 return match;
750
Wei Wang66f5d6c2017-10-06 12:06:10 -0700751 for (rt = cont; rt; rt = rcu_dereference(rt->dst.rt6_next))
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200752 match = find_match(rt, oif, strict, &mpri, match, do_rr);
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800753
David S. Millerf11e6652007-03-24 20:36:25 -0700754 return match;
755}
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800756
Wei Wang8d1040e2017-10-06 12:06:08 -0700757static struct rt6_info *rt6_select(struct net *net, struct fib6_node *fn,
758 int oif, int strict)
David S. Millerf11e6652007-03-24 20:36:25 -0700759{
Wei Wang66f5d6c2017-10-06 12:06:10 -0700760 struct rt6_info *leaf = rcu_dereference(fn->leaf);
David S. Millerf11e6652007-03-24 20:36:25 -0700761 struct rt6_info *match, *rt0;
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200762 bool do_rr = false;
Wei Wang17ecf592017-10-06 12:06:09 -0700763 int key_plen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764
Wei Wang8d1040e2017-10-06 12:06:08 -0700765 if (!leaf)
766 return net->ipv6.ip6_null_entry;
767
Wei Wang66f5d6c2017-10-06 12:06:10 -0700768 rt0 = rcu_dereference(fn->rr_ptr);
David S. Millerf11e6652007-03-24 20:36:25 -0700769 if (!rt0)
Wei Wang66f5d6c2017-10-06 12:06:10 -0700770 rt0 = leaf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771
Wei Wang17ecf592017-10-06 12:06:09 -0700772 /* Double check to make sure fn is not an intermediate node
773 * and fn->leaf does not points to its child's leaf
774 * (This might happen if all routes under fn are deleted from
775 * the tree and fib6_repair_tree() is called on the node.)
776 */
777 key_plen = rt0->rt6i_dst.plen;
778#ifdef CONFIG_IPV6_SUBTREES
779 if (rt0->rt6i_src.plen)
780 key_plen = rt0->rt6i_src.plen;
781#endif
782 if (fn->fn_bit != key_plen)
783 return net->ipv6.ip6_null_entry;
784
Wei Wang8d1040e2017-10-06 12:06:08 -0700785 match = find_rr_leaf(fn, leaf, rt0, rt0->rt6i_metric, oif, strict,
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200786 &do_rr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200788 if (do_rr) {
Wei Wang66f5d6c2017-10-06 12:06:10 -0700789 struct rt6_info *next = rcu_dereference(rt0->dst.rt6_next);
David S. Millerf11e6652007-03-24 20:36:25 -0700790
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800791 /* no entries matched; do round-robin */
David S. Millerf11e6652007-03-24 20:36:25 -0700792 if (!next || next->rt6i_metric != rt0->rt6i_metric)
Wei Wang8d1040e2017-10-06 12:06:08 -0700793 next = leaf;
David S. Millerf11e6652007-03-24 20:36:25 -0700794
Wei Wang66f5d6c2017-10-06 12:06:10 -0700795 if (next != rt0) {
796 spin_lock_bh(&leaf->rt6i_table->tb6_lock);
797 /* make sure next is not being deleted from the tree */
798 if (next->rt6i_node)
799 rcu_assign_pointer(fn->rr_ptr, next);
800 spin_unlock_bh(&leaf->rt6i_table->tb6_lock);
801 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 }
803
Eric Dumazeta02cec22010-09-22 20:43:57 +0000804 return match ? match : net->ipv6.ip6_null_entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805}
806
Martin KaFai Lau8b9df262015-05-22 20:55:59 -0700807static bool rt6_is_gw_or_nonexthop(const struct rt6_info *rt)
808{
809 return (rt->rt6i_flags & (RTF_NONEXTHOP | RTF_GATEWAY));
810}
811
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800812#ifdef CONFIG_IPV6_ROUTE_INFO
813int rt6_route_rcv(struct net_device *dev, u8 *opt, int len,
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000814 const struct in6_addr *gwaddr)
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800815{
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900816 struct net *net = dev_net(dev);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800817 struct route_info *rinfo = (struct route_info *) opt;
818 struct in6_addr prefix_buf, *prefix;
819 unsigned int pref;
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +0900820 unsigned long lifetime;
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800821 struct rt6_info *rt;
822
823 if (len < sizeof(struct route_info)) {
824 return -EINVAL;
825 }
826
827 /* Sanity check for prefix_len and length */
828 if (rinfo->length > 3) {
829 return -EINVAL;
830 } else if (rinfo->prefix_len > 128) {
831 return -EINVAL;
832 } else if (rinfo->prefix_len > 64) {
833 if (rinfo->length < 2) {
834 return -EINVAL;
835 }
836 } else if (rinfo->prefix_len > 0) {
837 if (rinfo->length < 1) {
838 return -EINVAL;
839 }
840 }
841
842 pref = rinfo->route_pref;
843 if (pref == ICMPV6_ROUTER_PREF_INVALID)
Jens Rosenboom3933fc92009-09-10 06:25:11 +0000844 return -EINVAL;
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800845
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +0900846 lifetime = addrconf_timeout_fixup(ntohl(rinfo->lifetime), HZ);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800847
848 if (rinfo->length == 3)
849 prefix = (struct in6_addr *)rinfo->prefix;
850 else {
851 /* this function is safe */
852 ipv6_addr_prefix(&prefix_buf,
853 (struct in6_addr *)rinfo->prefix,
854 rinfo->prefix_len);
855 prefix = &prefix_buf;
856 }
857
Duan Jiongf104a562013-11-08 09:56:53 +0800858 if (rinfo->prefix_len == 0)
859 rt = rt6_get_dflt_router(gwaddr, dev);
860 else
861 rt = rt6_get_route_info(net, prefix, rinfo->prefix_len,
David Ahern830218c2016-10-24 10:52:35 -0700862 gwaddr, dev);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800863
864 if (rt && !lifetime) {
Thomas Grafe0a1ad732006-08-22 00:00:21 -0700865 ip6_del_rt(rt);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800866 rt = NULL;
867 }
868
869 if (!rt && lifetime)
David Ahern830218c2016-10-24 10:52:35 -0700870 rt = rt6_add_route_info(net, prefix, rinfo->prefix_len, gwaddr,
871 dev, pref);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800872 else if (rt)
873 rt->rt6i_flags = RTF_ROUTEINFO |
874 (rt->rt6i_flags & ~RTF_PREF_MASK) | RTF_PREF(pref);
875
876 if (rt) {
Gao feng1716a962012-04-06 00:13:10 +0000877 if (!addrconf_finite_timeout(lifetime))
878 rt6_clean_expires(rt);
879 else
880 rt6_set_expires(rt, jiffies + HZ * lifetime);
881
Amerigo Wang94e187c2012-10-29 00:13:19 +0000882 ip6_rt_put(rt);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800883 }
884 return 0;
885}
886#endif
887
Martin KaFai Laua3c00e42014-10-20 13:42:43 -0700888static struct fib6_node* fib6_backtrack(struct fib6_node *fn,
889 struct in6_addr *saddr)
890{
Wei Wang66f5d6c2017-10-06 12:06:10 -0700891 struct fib6_node *pn, *sn;
Martin KaFai Laua3c00e42014-10-20 13:42:43 -0700892 while (1) {
893 if (fn->fn_flags & RTN_TL_ROOT)
894 return NULL;
Wei Wang66f5d6c2017-10-06 12:06:10 -0700895 pn = rcu_dereference(fn->parent);
896 sn = FIB6_SUBTREE(pn);
897 if (sn && sn != fn)
898 fn = fib6_lookup(sn, NULL, saddr);
Martin KaFai Laua3c00e42014-10-20 13:42:43 -0700899 else
900 fn = pn;
901 if (fn->fn_flags & RTN_RTINFO)
902 return fn;
903 }
904}
Thomas Grafc71099a2006-08-04 23:20:06 -0700905
Wei Wangd3843fe2017-10-06 12:06:06 -0700906static bool ip6_hold_safe(struct net *net, struct rt6_info **prt,
907 bool null_fallback)
908{
909 struct rt6_info *rt = *prt;
910
911 if (dst_hold_safe(&rt->dst))
912 return true;
913 if (null_fallback) {
914 rt = net->ipv6.ip6_null_entry;
915 dst_hold(&rt->dst);
916 } else {
917 rt = NULL;
918 }
919 *prt = rt;
920 return false;
921}
922
Daniel Lezcano8ed67782008-03-04 13:48:30 -0800923static struct rt6_info *ip6_pol_route_lookup(struct net *net,
924 struct fib6_table *table,
David S. Miller4c9483b2011-03-12 16:22:43 -0500925 struct flowi6 *fl6, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926{
Wei Wang2b760fc2017-10-06 12:06:03 -0700927 struct rt6_info *rt, *rt_cache;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928 struct fib6_node *fn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929
Wei Wang66f5d6c2017-10-06 12:06:10 -0700930 rcu_read_lock();
David S. Miller4c9483b2011-03-12 16:22:43 -0500931 fn = fib6_lookup(&table->tb6_root, &fl6->daddr, &fl6->saddr);
Thomas Grafc71099a2006-08-04 23:20:06 -0700932restart:
Wei Wang66f5d6c2017-10-06 12:06:10 -0700933 rt = rcu_dereference(fn->leaf);
934 if (!rt) {
935 rt = net->ipv6.ip6_null_entry;
936 } else {
937 rt = rt6_device_match(net, rt, &fl6->saddr,
938 fl6->flowi6_oif, flags);
939 if (rt->rt6i_nsiblings && fl6->flowi6_oif == 0)
940 rt = rt6_multipath_select(rt, fl6,
941 fl6->flowi6_oif, flags);
942 }
Martin KaFai Laua3c00e42014-10-20 13:42:43 -0700943 if (rt == net->ipv6.ip6_null_entry) {
944 fn = fib6_backtrack(fn, &fl6->saddr);
945 if (fn)
946 goto restart;
947 }
Wei Wang2b760fc2017-10-06 12:06:03 -0700948 /* Search through exception table */
949 rt_cache = rt6_find_cached_rt(rt, &fl6->daddr, &fl6->saddr);
950 if (rt_cache)
951 rt = rt_cache;
952
Wei Wangd3843fe2017-10-06 12:06:06 -0700953 if (ip6_hold_safe(net, &rt, true))
954 dst_use_noref(&rt->dst, jiffies);
955
Wei Wang66f5d6c2017-10-06 12:06:10 -0700956 rcu_read_unlock();
David Ahernb8115802015-11-19 12:24:22 -0800957
958 trace_fib6_table_lookup(net, rt, table->tb6_id, fl6);
959
Thomas Grafc71099a2006-08-04 23:20:06 -0700960 return rt;
961
962}
963
Ian Morris67ba4152014-08-24 21:53:10 +0100964struct dst_entry *ip6_route_lookup(struct net *net, struct flowi6 *fl6,
Florian Westphalea6e5742011-09-05 16:05:44 +0200965 int flags)
966{
967 return fib6_rule_lookup(net, fl6, flags, ip6_pol_route_lookup);
968}
969EXPORT_SYMBOL_GPL(ip6_route_lookup);
970
YOSHIFUJI Hideaki9acd9f32008-04-10 15:42:10 +0900971struct rt6_info *rt6_lookup(struct net *net, const struct in6_addr *daddr,
972 const struct in6_addr *saddr, int oif, int strict)
Thomas Grafc71099a2006-08-04 23:20:06 -0700973{
David S. Miller4c9483b2011-03-12 16:22:43 -0500974 struct flowi6 fl6 = {
975 .flowi6_oif = oif,
976 .daddr = *daddr,
Thomas Grafc71099a2006-08-04 23:20:06 -0700977 };
978 struct dst_entry *dst;
YOSHIFUJI Hideaki77d16f42006-08-23 17:25:05 -0700979 int flags = strict ? RT6_LOOKUP_F_IFACE : 0;
Thomas Grafc71099a2006-08-04 23:20:06 -0700980
Thomas Grafadaa70b2006-10-13 15:01:03 -0700981 if (saddr) {
David S. Miller4c9483b2011-03-12 16:22:43 -0500982 memcpy(&fl6.saddr, saddr, sizeof(*saddr));
Thomas Grafadaa70b2006-10-13 15:01:03 -0700983 flags |= RT6_LOOKUP_F_HAS_SADDR;
984 }
985
David S. Miller4c9483b2011-03-12 16:22:43 -0500986 dst = fib6_rule_lookup(net, &fl6, flags, ip6_pol_route_lookup);
Thomas Grafc71099a2006-08-04 23:20:06 -0700987 if (dst->error == 0)
988 return (struct rt6_info *) dst;
989
990 dst_release(dst);
991
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992 return NULL;
993}
YOSHIFUJI Hideaki71590392007-02-22 22:05:40 +0900994EXPORT_SYMBOL(rt6_lookup);
995
Thomas Grafc71099a2006-08-04 23:20:06 -0700996/* ip6_ins_rt is called with FREE table->tb6_lock.
Wei Wang1cfb71e2017-06-17 10:42:33 -0700997 * It takes new route entry, the addition fails by any reason the
998 * route is released.
999 * Caller must hold dst before calling it.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000 */
1001
Michal Kubečeke5fd3872014-03-27 13:04:08 +01001002static int __ip6_ins_rt(struct rt6_info *rt, struct nl_info *info,
David Ahern333c4302017-05-21 10:12:04 -06001003 struct mx6_config *mxc,
1004 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005{
1006 int err;
Thomas Grafc71099a2006-08-04 23:20:06 -07001007 struct fib6_table *table;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008
Thomas Grafc71099a2006-08-04 23:20:06 -07001009 table = rt->rt6i_table;
Wei Wang66f5d6c2017-10-06 12:06:10 -07001010 spin_lock_bh(&table->tb6_lock);
David Ahern333c4302017-05-21 10:12:04 -06001011 err = fib6_add(&table->tb6_root, rt, info, mxc, extack);
Wei Wang66f5d6c2017-10-06 12:06:10 -07001012 spin_unlock_bh(&table->tb6_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013
1014 return err;
1015}
1016
Thomas Graf40e22e82006-08-22 00:00:45 -07001017int ip6_ins_rt(struct rt6_info *rt)
1018{
Florian Westphale715b6d2015-01-05 23:57:44 +01001019 struct nl_info info = { .nl_net = dev_net(rt->dst.dev), };
1020 struct mx6_config mxc = { .mx = NULL, };
1021
Wei Wang1cfb71e2017-06-17 10:42:33 -07001022 /* Hold dst to account for the reference from the fib6 tree */
1023 dst_hold(&rt->dst);
David Ahern333c4302017-05-21 10:12:04 -06001024 return __ip6_ins_rt(rt, &info, &mxc, NULL);
Thomas Graf40e22e82006-08-22 00:00:45 -07001025}
1026
David Ahern4832c302017-08-17 12:17:20 -07001027/* called with rcu_lock held */
1028static struct net_device *ip6_rt_get_dev_rcu(struct rt6_info *rt)
1029{
1030 struct net_device *dev = rt->dst.dev;
1031
1032 if (rt->rt6i_flags & RTF_LOCAL) {
1033 /* for copies of local routes, dst->dev needs to be the
1034 * device if it is a master device, the master device if
1035 * device is enslaved, and the loopback as the default
1036 */
1037 if (netif_is_l3_slave(dev) &&
1038 !rt6_need_strict(&rt->rt6i_dst.addr))
1039 dev = l3mdev_master_dev_rcu(dev);
1040 else if (!netif_is_l3_master(dev))
1041 dev = dev_net(dev)->loopback_dev;
1042 /* last case is netif_is_l3_master(dev) is true in which
1043 * case we want dev returned to be dev
1044 */
1045 }
1046
1047 return dev;
1048}
1049
Martin KaFai Lau8b9df262015-05-22 20:55:59 -07001050static struct rt6_info *ip6_rt_cache_alloc(struct rt6_info *ort,
1051 const struct in6_addr *daddr,
1052 const struct in6_addr *saddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053{
David Ahern4832c302017-08-17 12:17:20 -07001054 struct net_device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055 struct rt6_info *rt;
1056
1057 /*
1058 * Clone the route.
1059 */
1060
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001061 if (ort->rt6i_flags & (RTF_CACHE | RTF_PCPU))
Martin KaFai Lau83a09ab2015-05-22 20:56:05 -07001062 ort = (struct rt6_info *)ort->dst.from;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063
David Ahern4832c302017-08-17 12:17:20 -07001064 rcu_read_lock();
1065 dev = ip6_rt_get_dev_rcu(ort);
1066 rt = __ip6_dst_alloc(dev_net(dev), dev, 0);
1067 rcu_read_unlock();
Martin KaFai Lau83a09ab2015-05-22 20:56:05 -07001068 if (!rt)
1069 return NULL;
1070
1071 ip6_rt_copy_init(rt, ort);
1072 rt->rt6i_flags |= RTF_CACHE;
1073 rt->rt6i_metric = 0;
1074 rt->dst.flags |= DST_HOST;
1075 rt->rt6i_dst.addr = *daddr;
1076 rt->rt6i_dst.plen = 128;
1077
1078 if (!rt6_is_gw_or_nonexthop(ort)) {
1079 if (ort->rt6i_dst.plen != 128 &&
1080 ipv6_addr_equal(&ort->rt6i_dst.addr, daddr))
1081 rt->rt6i_flags |= RTF_ANYCAST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082#ifdef CONFIG_IPV6_SUBTREES
Martin KaFai Lau83a09ab2015-05-22 20:56:05 -07001083 if (rt->rt6i_src.plen && saddr) {
1084 rt->rt6i_src.addr = *saddr;
1085 rt->rt6i_src.plen = 128;
Martin KaFai Lau8b9df262015-05-22 20:55:59 -07001086 }
Martin KaFai Lau83a09ab2015-05-22 20:56:05 -07001087#endif
YOSHIFUJI Hideaki95a9a5b2006-03-20 16:55:51 -08001088 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089
YOSHIFUJI Hideaki95a9a5b2006-03-20 16:55:51 -08001090 return rt;
1091}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001093static struct rt6_info *ip6_rt_pcpu_alloc(struct rt6_info *rt)
1094{
David Ahern4832c302017-08-17 12:17:20 -07001095 struct net_device *dev;
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001096 struct rt6_info *pcpu_rt;
1097
David Ahern4832c302017-08-17 12:17:20 -07001098 rcu_read_lock();
1099 dev = ip6_rt_get_dev_rcu(rt);
1100 pcpu_rt = __ip6_dst_alloc(dev_net(dev), dev, rt->dst.flags);
1101 rcu_read_unlock();
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001102 if (!pcpu_rt)
1103 return NULL;
1104 ip6_rt_copy_init(pcpu_rt, rt);
1105 pcpu_rt->rt6i_protocol = rt->rt6i_protocol;
1106 pcpu_rt->rt6i_flags |= RTF_PCPU;
1107 return pcpu_rt;
1108}
1109
Wei Wang66f5d6c2017-10-06 12:06:10 -07001110/* It should be called with rcu_read_lock() acquired */
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001111static struct rt6_info *rt6_get_pcpu_route(struct rt6_info *rt)
1112{
Martin KaFai Laua73e4192015-08-14 11:05:53 -07001113 struct rt6_info *pcpu_rt, **p;
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001114
1115 p = this_cpu_ptr(rt->rt6i_pcpu);
1116 pcpu_rt = *p;
1117
Wei Wangd3843fe2017-10-06 12:06:06 -07001118 if (pcpu_rt && ip6_hold_safe(NULL, &pcpu_rt, false))
Martin KaFai Laua73e4192015-08-14 11:05:53 -07001119 rt6_dst_from_metrics_check(pcpu_rt);
Wei Wangd3843fe2017-10-06 12:06:06 -07001120
Martin KaFai Laua73e4192015-08-14 11:05:53 -07001121 return pcpu_rt;
1122}
1123
1124static struct rt6_info *rt6_make_pcpu_route(struct rt6_info *rt)
1125{
1126 struct rt6_info *pcpu_rt, *prev, **p;
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001127
1128 pcpu_rt = ip6_rt_pcpu_alloc(rt);
1129 if (!pcpu_rt) {
1130 struct net *net = dev_net(rt->dst.dev);
1131
Martin KaFai Lau9c7370a2015-08-14 11:05:54 -07001132 dst_hold(&net->ipv6.ip6_null_entry->dst);
1133 return net->ipv6.ip6_null_entry;
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001134 }
1135
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001136 dst_hold(&pcpu_rt->dst);
Wei Wanga94b9362017-10-06 12:06:04 -07001137 p = this_cpu_ptr(rt->rt6i_pcpu);
1138 prev = cmpxchg(p, NULL, pcpu_rt);
1139 if (prev) {
1140 /* If someone did it before us, return prev instead */
1141 /* release refcnt taken by ip6_rt_pcpu_alloc() */
1142 dst_release_immediate(&pcpu_rt->dst);
1143 /* release refcnt taken by above dst_hold() */
1144 dst_release_immediate(&pcpu_rt->dst);
1145 dst_hold(&prev->dst);
1146 pcpu_rt = prev;
1147 }
1148
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001149 rt6_dst_from_metrics_check(pcpu_rt);
1150 return pcpu_rt;
1151}
1152
Wei Wang35732d02017-10-06 12:05:57 -07001153/* exception hash table implementation
1154 */
1155static DEFINE_SPINLOCK(rt6_exception_lock);
1156
1157/* Remove rt6_ex from hash table and free the memory
1158 * Caller must hold rt6_exception_lock
1159 */
1160static void rt6_remove_exception(struct rt6_exception_bucket *bucket,
1161 struct rt6_exception *rt6_ex)
1162{
Wei Wang81eb8442017-10-06 12:06:11 -07001163 struct net *net = dev_net(rt6_ex->rt6i->dst.dev);
1164
Wei Wang35732d02017-10-06 12:05:57 -07001165 if (!bucket || !rt6_ex)
1166 return;
1167 rt6_ex->rt6i->rt6i_node = NULL;
1168 hlist_del_rcu(&rt6_ex->hlist);
1169 rt6_release(rt6_ex->rt6i);
1170 kfree_rcu(rt6_ex, rcu);
1171 WARN_ON_ONCE(!bucket->depth);
1172 bucket->depth--;
Wei Wang81eb8442017-10-06 12:06:11 -07001173 net->ipv6.rt6_stats->fib_rt_cache--;
Wei Wang35732d02017-10-06 12:05:57 -07001174}
1175
1176/* Remove oldest rt6_ex in bucket and free the memory
1177 * Caller must hold rt6_exception_lock
1178 */
1179static void rt6_exception_remove_oldest(struct rt6_exception_bucket *bucket)
1180{
1181 struct rt6_exception *rt6_ex, *oldest = NULL;
1182
1183 if (!bucket)
1184 return;
1185
1186 hlist_for_each_entry(rt6_ex, &bucket->chain, hlist) {
1187 if (!oldest || time_before(rt6_ex->stamp, oldest->stamp))
1188 oldest = rt6_ex;
1189 }
1190 rt6_remove_exception(bucket, oldest);
1191}
1192
1193static u32 rt6_exception_hash(const struct in6_addr *dst,
1194 const struct in6_addr *src)
1195{
1196 static u32 seed __read_mostly;
1197 u32 val;
1198
1199 net_get_random_once(&seed, sizeof(seed));
1200 val = jhash(dst, sizeof(*dst), seed);
1201
1202#ifdef CONFIG_IPV6_SUBTREES
1203 if (src)
1204 val = jhash(src, sizeof(*src), val);
1205#endif
1206 return hash_32(val, FIB6_EXCEPTION_BUCKET_SIZE_SHIFT);
1207}
1208
1209/* Helper function to find the cached rt in the hash table
1210 * and update bucket pointer to point to the bucket for this
1211 * (daddr, saddr) pair
1212 * Caller must hold rt6_exception_lock
1213 */
1214static struct rt6_exception *
1215__rt6_find_exception_spinlock(struct rt6_exception_bucket **bucket,
1216 const struct in6_addr *daddr,
1217 const struct in6_addr *saddr)
1218{
1219 struct rt6_exception *rt6_ex;
1220 u32 hval;
1221
1222 if (!(*bucket) || !daddr)
1223 return NULL;
1224
1225 hval = rt6_exception_hash(daddr, saddr);
1226 *bucket += hval;
1227
1228 hlist_for_each_entry(rt6_ex, &(*bucket)->chain, hlist) {
1229 struct rt6_info *rt6 = rt6_ex->rt6i;
1230 bool matched = ipv6_addr_equal(daddr, &rt6->rt6i_dst.addr);
1231
1232#ifdef CONFIG_IPV6_SUBTREES
1233 if (matched && saddr)
1234 matched = ipv6_addr_equal(saddr, &rt6->rt6i_src.addr);
1235#endif
1236 if (matched)
1237 return rt6_ex;
1238 }
1239 return NULL;
1240}
1241
1242/* Helper function to find the cached rt in the hash table
1243 * and update bucket pointer to point to the bucket for this
1244 * (daddr, saddr) pair
1245 * Caller must hold rcu_read_lock()
1246 */
1247static struct rt6_exception *
1248__rt6_find_exception_rcu(struct rt6_exception_bucket **bucket,
1249 const struct in6_addr *daddr,
1250 const struct in6_addr *saddr)
1251{
1252 struct rt6_exception *rt6_ex;
1253 u32 hval;
1254
1255 WARN_ON_ONCE(!rcu_read_lock_held());
1256
1257 if (!(*bucket) || !daddr)
1258 return NULL;
1259
1260 hval = rt6_exception_hash(daddr, saddr);
1261 *bucket += hval;
1262
1263 hlist_for_each_entry_rcu(rt6_ex, &(*bucket)->chain, hlist) {
1264 struct rt6_info *rt6 = rt6_ex->rt6i;
1265 bool matched = ipv6_addr_equal(daddr, &rt6->rt6i_dst.addr);
1266
1267#ifdef CONFIG_IPV6_SUBTREES
1268 if (matched && saddr)
1269 matched = ipv6_addr_equal(saddr, &rt6->rt6i_src.addr);
1270#endif
1271 if (matched)
1272 return rt6_ex;
1273 }
1274 return NULL;
1275}
1276
1277static int rt6_insert_exception(struct rt6_info *nrt,
1278 struct rt6_info *ort)
1279{
Wei Wang81eb8442017-10-06 12:06:11 -07001280 struct net *net = dev_net(ort->dst.dev);
Wei Wang35732d02017-10-06 12:05:57 -07001281 struct rt6_exception_bucket *bucket;
1282 struct in6_addr *src_key = NULL;
1283 struct rt6_exception *rt6_ex;
1284 int err = 0;
1285
1286 /* ort can't be a cache or pcpu route */
1287 if (ort->rt6i_flags & (RTF_CACHE | RTF_PCPU))
1288 ort = (struct rt6_info *)ort->dst.from;
1289 WARN_ON_ONCE(ort->rt6i_flags & (RTF_CACHE | RTF_PCPU));
1290
1291 spin_lock_bh(&rt6_exception_lock);
1292
1293 if (ort->exception_bucket_flushed) {
1294 err = -EINVAL;
1295 goto out;
1296 }
1297
1298 bucket = rcu_dereference_protected(ort->rt6i_exception_bucket,
1299 lockdep_is_held(&rt6_exception_lock));
1300 if (!bucket) {
1301 bucket = kcalloc(FIB6_EXCEPTION_BUCKET_SIZE, sizeof(*bucket),
1302 GFP_ATOMIC);
1303 if (!bucket) {
1304 err = -ENOMEM;
1305 goto out;
1306 }
1307 rcu_assign_pointer(ort->rt6i_exception_bucket, bucket);
1308 }
1309
1310#ifdef CONFIG_IPV6_SUBTREES
1311 /* rt6i_src.plen != 0 indicates ort is in subtree
1312 * and exception table is indexed by a hash of
1313 * both rt6i_dst and rt6i_src.
1314 * Otherwise, the exception table is indexed by
1315 * a hash of only rt6i_dst.
1316 */
1317 if (ort->rt6i_src.plen)
1318 src_key = &nrt->rt6i_src.addr;
1319#endif
Wei Wang60006a42017-10-06 12:05:58 -07001320
1321 /* Update rt6i_prefsrc as it could be changed
1322 * in rt6_remove_prefsrc()
1323 */
1324 nrt->rt6i_prefsrc = ort->rt6i_prefsrc;
Wei Wangf5bbe7e2017-10-06 12:05:59 -07001325 /* rt6_mtu_change() might lower mtu on ort.
1326 * Only insert this exception route if its mtu
1327 * is less than ort's mtu value.
1328 */
1329 if (nrt->rt6i_pmtu >= dst_mtu(&ort->dst)) {
1330 err = -EINVAL;
1331 goto out;
1332 }
Wei Wang60006a42017-10-06 12:05:58 -07001333
Wei Wang35732d02017-10-06 12:05:57 -07001334 rt6_ex = __rt6_find_exception_spinlock(&bucket, &nrt->rt6i_dst.addr,
1335 src_key);
1336 if (rt6_ex)
1337 rt6_remove_exception(bucket, rt6_ex);
1338
1339 rt6_ex = kzalloc(sizeof(*rt6_ex), GFP_ATOMIC);
1340 if (!rt6_ex) {
1341 err = -ENOMEM;
1342 goto out;
1343 }
1344 rt6_ex->rt6i = nrt;
1345 rt6_ex->stamp = jiffies;
1346 atomic_inc(&nrt->rt6i_ref);
1347 nrt->rt6i_node = ort->rt6i_node;
1348 hlist_add_head_rcu(&rt6_ex->hlist, &bucket->chain);
1349 bucket->depth++;
Wei Wang81eb8442017-10-06 12:06:11 -07001350 net->ipv6.rt6_stats->fib_rt_cache++;
Wei Wang35732d02017-10-06 12:05:57 -07001351
1352 if (bucket->depth > FIB6_MAX_DEPTH)
1353 rt6_exception_remove_oldest(bucket);
1354
1355out:
1356 spin_unlock_bh(&rt6_exception_lock);
1357
1358 /* Update fn->fn_sernum to invalidate all cached dst */
1359 if (!err)
1360 fib6_update_sernum(ort);
1361
1362 return err;
1363}
1364
1365void rt6_flush_exceptions(struct rt6_info *rt)
1366{
1367 struct rt6_exception_bucket *bucket;
1368 struct rt6_exception *rt6_ex;
1369 struct hlist_node *tmp;
1370 int i;
1371
1372 spin_lock_bh(&rt6_exception_lock);
1373 /* Prevent rt6_insert_exception() to recreate the bucket list */
1374 rt->exception_bucket_flushed = 1;
1375
1376 bucket = rcu_dereference_protected(rt->rt6i_exception_bucket,
1377 lockdep_is_held(&rt6_exception_lock));
1378 if (!bucket)
1379 goto out;
1380
1381 for (i = 0; i < FIB6_EXCEPTION_BUCKET_SIZE; i++) {
1382 hlist_for_each_entry_safe(rt6_ex, tmp, &bucket->chain, hlist)
1383 rt6_remove_exception(bucket, rt6_ex);
1384 WARN_ON_ONCE(bucket->depth);
1385 bucket++;
1386 }
1387
1388out:
1389 spin_unlock_bh(&rt6_exception_lock);
1390}
1391
1392/* Find cached rt in the hash table inside passed in rt
1393 * Caller has to hold rcu_read_lock()
1394 */
1395static struct rt6_info *rt6_find_cached_rt(struct rt6_info *rt,
1396 struct in6_addr *daddr,
1397 struct in6_addr *saddr)
1398{
1399 struct rt6_exception_bucket *bucket;
1400 struct in6_addr *src_key = NULL;
1401 struct rt6_exception *rt6_ex;
1402 struct rt6_info *res = NULL;
1403
1404 bucket = rcu_dereference(rt->rt6i_exception_bucket);
1405
1406#ifdef CONFIG_IPV6_SUBTREES
1407 /* rt6i_src.plen != 0 indicates rt is in subtree
1408 * and exception table is indexed by a hash of
1409 * both rt6i_dst and rt6i_src.
1410 * Otherwise, the exception table is indexed by
1411 * a hash of only rt6i_dst.
1412 */
1413 if (rt->rt6i_src.plen)
1414 src_key = saddr;
1415#endif
1416 rt6_ex = __rt6_find_exception_rcu(&bucket, daddr, src_key);
1417
1418 if (rt6_ex && !rt6_check_expired(rt6_ex->rt6i))
1419 res = rt6_ex->rt6i;
1420
1421 return res;
1422}
1423
1424/* Remove the passed in cached rt from the hash table that contains it */
1425int rt6_remove_exception_rt(struct rt6_info *rt)
1426{
1427 struct rt6_info *from = (struct rt6_info *)rt->dst.from;
1428 struct rt6_exception_bucket *bucket;
1429 struct in6_addr *src_key = NULL;
1430 struct rt6_exception *rt6_ex;
1431 int err;
1432
1433 if (!from ||
1434 !(rt->rt6i_flags | RTF_CACHE))
1435 return -EINVAL;
1436
1437 if (!rcu_access_pointer(from->rt6i_exception_bucket))
1438 return -ENOENT;
1439
1440 spin_lock_bh(&rt6_exception_lock);
1441 bucket = rcu_dereference_protected(from->rt6i_exception_bucket,
1442 lockdep_is_held(&rt6_exception_lock));
1443#ifdef CONFIG_IPV6_SUBTREES
1444 /* rt6i_src.plen != 0 indicates 'from' is in subtree
1445 * and exception table is indexed by a hash of
1446 * both rt6i_dst and rt6i_src.
1447 * Otherwise, the exception table is indexed by
1448 * a hash of only rt6i_dst.
1449 */
1450 if (from->rt6i_src.plen)
1451 src_key = &rt->rt6i_src.addr;
1452#endif
1453 rt6_ex = __rt6_find_exception_spinlock(&bucket,
1454 &rt->rt6i_dst.addr,
1455 src_key);
1456 if (rt6_ex) {
1457 rt6_remove_exception(bucket, rt6_ex);
1458 err = 0;
1459 } else {
1460 err = -ENOENT;
1461 }
1462
1463 spin_unlock_bh(&rt6_exception_lock);
1464 return err;
1465}
1466
1467/* Find rt6_ex which contains the passed in rt cache and
1468 * refresh its stamp
1469 */
1470static void rt6_update_exception_stamp_rt(struct rt6_info *rt)
1471{
1472 struct rt6_info *from = (struct rt6_info *)rt->dst.from;
1473 struct rt6_exception_bucket *bucket;
1474 struct in6_addr *src_key = NULL;
1475 struct rt6_exception *rt6_ex;
1476
1477 if (!from ||
1478 !(rt->rt6i_flags | RTF_CACHE))
1479 return;
1480
1481 rcu_read_lock();
1482 bucket = rcu_dereference(from->rt6i_exception_bucket);
1483
1484#ifdef CONFIG_IPV6_SUBTREES
1485 /* rt6i_src.plen != 0 indicates 'from' is in subtree
1486 * and exception table is indexed by a hash of
1487 * both rt6i_dst and rt6i_src.
1488 * Otherwise, the exception table is indexed by
1489 * a hash of only rt6i_dst.
1490 */
1491 if (from->rt6i_src.plen)
1492 src_key = &rt->rt6i_src.addr;
1493#endif
1494 rt6_ex = __rt6_find_exception_rcu(&bucket,
1495 &rt->rt6i_dst.addr,
1496 src_key);
1497 if (rt6_ex)
1498 rt6_ex->stamp = jiffies;
1499
1500 rcu_read_unlock();
1501}
1502
Wei Wang60006a42017-10-06 12:05:58 -07001503static void rt6_exceptions_remove_prefsrc(struct rt6_info *rt)
1504{
1505 struct rt6_exception_bucket *bucket;
1506 struct rt6_exception *rt6_ex;
1507 int i;
1508
1509 bucket = rcu_dereference_protected(rt->rt6i_exception_bucket,
1510 lockdep_is_held(&rt6_exception_lock));
1511
1512 if (bucket) {
1513 for (i = 0; i < FIB6_EXCEPTION_BUCKET_SIZE; i++) {
1514 hlist_for_each_entry(rt6_ex, &bucket->chain, hlist) {
1515 rt6_ex->rt6i->rt6i_prefsrc.plen = 0;
1516 }
1517 bucket++;
1518 }
1519 }
1520}
1521
Wei Wangf5bbe7e2017-10-06 12:05:59 -07001522static void rt6_exceptions_update_pmtu(struct rt6_info *rt, int mtu)
1523{
1524 struct rt6_exception_bucket *bucket;
1525 struct rt6_exception *rt6_ex;
1526 int i;
1527
1528 bucket = rcu_dereference_protected(rt->rt6i_exception_bucket,
1529 lockdep_is_held(&rt6_exception_lock));
1530
1531 if (bucket) {
1532 for (i = 0; i < FIB6_EXCEPTION_BUCKET_SIZE; i++) {
1533 hlist_for_each_entry(rt6_ex, &bucket->chain, hlist) {
1534 struct rt6_info *entry = rt6_ex->rt6i;
1535 /* For RTF_CACHE with rt6i_pmtu == 0
1536 * (i.e. a redirected route),
1537 * the metrics of its rt->dst.from has already
1538 * been updated.
1539 */
1540 if (entry->rt6i_pmtu && entry->rt6i_pmtu > mtu)
1541 entry->rt6i_pmtu = mtu;
1542 }
1543 bucket++;
1544 }
1545 }
1546}
1547
Wei Wangb16cb452017-10-06 12:06:00 -07001548#define RTF_CACHE_GATEWAY (RTF_GATEWAY | RTF_CACHE)
1549
1550static void rt6_exceptions_clean_tohost(struct rt6_info *rt,
1551 struct in6_addr *gateway)
1552{
1553 struct rt6_exception_bucket *bucket;
1554 struct rt6_exception *rt6_ex;
1555 struct hlist_node *tmp;
1556 int i;
1557
1558 if (!rcu_access_pointer(rt->rt6i_exception_bucket))
1559 return;
1560
1561 spin_lock_bh(&rt6_exception_lock);
1562 bucket = rcu_dereference_protected(rt->rt6i_exception_bucket,
1563 lockdep_is_held(&rt6_exception_lock));
1564
1565 if (bucket) {
1566 for (i = 0; i < FIB6_EXCEPTION_BUCKET_SIZE; i++) {
1567 hlist_for_each_entry_safe(rt6_ex, tmp,
1568 &bucket->chain, hlist) {
1569 struct rt6_info *entry = rt6_ex->rt6i;
1570
1571 if ((entry->rt6i_flags & RTF_CACHE_GATEWAY) ==
1572 RTF_CACHE_GATEWAY &&
1573 ipv6_addr_equal(gateway,
1574 &entry->rt6i_gateway)) {
1575 rt6_remove_exception(bucket, rt6_ex);
1576 }
1577 }
1578 bucket++;
1579 }
1580 }
1581
1582 spin_unlock_bh(&rt6_exception_lock);
1583}
1584
Wei Wangc757faa2017-10-06 12:06:01 -07001585static void rt6_age_examine_exception(struct rt6_exception_bucket *bucket,
1586 struct rt6_exception *rt6_ex,
1587 struct fib6_gc_args *gc_args,
1588 unsigned long now)
1589{
1590 struct rt6_info *rt = rt6_ex->rt6i;
1591
1592 if (atomic_read(&rt->dst.__refcnt) == 1 &&
1593 time_after_eq(now, rt->dst.lastuse + gc_args->timeout)) {
1594 RT6_TRACE("aging clone %p\n", rt);
1595 rt6_remove_exception(bucket, rt6_ex);
1596 return;
1597 } else if (rt->rt6i_flags & RTF_GATEWAY) {
1598 struct neighbour *neigh;
1599 __u8 neigh_flags = 0;
1600
1601 neigh = dst_neigh_lookup(&rt->dst, &rt->rt6i_gateway);
1602 if (neigh) {
1603 neigh_flags = neigh->flags;
1604 neigh_release(neigh);
1605 }
1606 if (!(neigh_flags & NTF_ROUTER)) {
1607 RT6_TRACE("purging route %p via non-router but gateway\n",
1608 rt);
1609 rt6_remove_exception(bucket, rt6_ex);
1610 return;
1611 }
1612 }
1613 gc_args->more++;
1614}
1615
1616void rt6_age_exceptions(struct rt6_info *rt,
1617 struct fib6_gc_args *gc_args,
1618 unsigned long now)
1619{
1620 struct rt6_exception_bucket *bucket;
1621 struct rt6_exception *rt6_ex;
1622 struct hlist_node *tmp;
1623 int i;
1624
1625 if (!rcu_access_pointer(rt->rt6i_exception_bucket))
1626 return;
1627
1628 spin_lock_bh(&rt6_exception_lock);
1629 bucket = rcu_dereference_protected(rt->rt6i_exception_bucket,
1630 lockdep_is_held(&rt6_exception_lock));
1631
1632 if (bucket) {
1633 for (i = 0; i < FIB6_EXCEPTION_BUCKET_SIZE; i++) {
1634 hlist_for_each_entry_safe(rt6_ex, tmp,
1635 &bucket->chain, hlist) {
1636 rt6_age_examine_exception(bucket, rt6_ex,
1637 gc_args, now);
1638 }
1639 bucket++;
1640 }
1641 }
1642 spin_unlock_bh(&rt6_exception_lock);
1643}
1644
David Ahern9ff74382016-06-13 13:44:19 -07001645struct rt6_info *ip6_pol_route(struct net *net, struct fib6_table *table,
1646 int oif, struct flowi6 *fl6, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647{
Martin KaFai Lau367efcb2014-10-20 13:42:45 -07001648 struct fib6_node *fn, *saved_fn;
Wei Wang2b760fc2017-10-06 12:06:03 -07001649 struct rt6_info *rt, *rt_cache;
Thomas Grafc71099a2006-08-04 23:20:06 -07001650 int strict = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651
YOSHIFUJI Hideaki77d16f42006-08-23 17:25:05 -07001652 strict |= flags & RT6_LOOKUP_F_IFACE;
David Ahernd5d32e42016-10-24 12:27:23 -07001653 strict |= flags & RT6_LOOKUP_F_IGNORE_LINKSTATE;
Martin KaFai Lau367efcb2014-10-20 13:42:45 -07001654 if (net->ipv6.devconf_all->forwarding == 0)
1655 strict |= RT6_LOOKUP_F_REACHABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656
Wei Wang66f5d6c2017-10-06 12:06:10 -07001657 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658
David S. Miller4c9483b2011-03-12 16:22:43 -05001659 fn = fib6_lookup(&table->tb6_root, &fl6->daddr, &fl6->saddr);
Martin KaFai Lau367efcb2014-10-20 13:42:45 -07001660 saved_fn = fn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661
David Ahernca254492015-10-12 11:47:10 -07001662 if (fl6->flowi6_flags & FLOWI_FLAG_SKIP_NH_OIF)
1663 oif = 0;
1664
Martin KaFai Laua3c00e42014-10-20 13:42:43 -07001665redo_rt6_select:
Wei Wang8d1040e2017-10-06 12:06:08 -07001666 rt = rt6_select(net, fn, oif, strict);
Nicolas Dichtel52bd4c02013-06-28 17:35:48 +02001667 if (rt->rt6i_nsiblings)
Martin KaFai Lau367efcb2014-10-20 13:42:45 -07001668 rt = rt6_multipath_select(rt, fl6, oif, strict);
Martin KaFai Laua3c00e42014-10-20 13:42:43 -07001669 if (rt == net->ipv6.ip6_null_entry) {
1670 fn = fib6_backtrack(fn, &fl6->saddr);
1671 if (fn)
1672 goto redo_rt6_select;
Martin KaFai Lau367efcb2014-10-20 13:42:45 -07001673 else if (strict & RT6_LOOKUP_F_REACHABLE) {
1674 /* also consider unreachable route */
1675 strict &= ~RT6_LOOKUP_F_REACHABLE;
1676 fn = saved_fn;
1677 goto redo_rt6_select;
Martin KaFai Lau367efcb2014-10-20 13:42:45 -07001678 }
Martin KaFai Laua3c00e42014-10-20 13:42:43 -07001679 }
1680
Wei Wang2b760fc2017-10-06 12:06:03 -07001681 /*Search through exception table */
1682 rt_cache = rt6_find_cached_rt(rt, &fl6->daddr, &fl6->saddr);
1683 if (rt_cache)
1684 rt = rt_cache;
YOSHIFUJI Hideakifb9de912006-03-20 16:59:08 -08001685
Wei Wangd3843fe2017-10-06 12:06:06 -07001686 if (rt == net->ipv6.ip6_null_entry) {
Wei Wang66f5d6c2017-10-06 12:06:10 -07001687 rcu_read_unlock();
Wei Wangd3843fe2017-10-06 12:06:06 -07001688 dst_hold(&rt->dst);
1689 trace_fib6_table_lookup(net, rt, table->tb6_id, fl6);
1690 return rt;
1691 } else if (rt->rt6i_flags & RTF_CACHE) {
1692 if (ip6_hold_safe(net, &rt, true)) {
1693 dst_use_noref(&rt->dst, jiffies);
1694 rt6_dst_from_metrics_check(rt);
1695 }
Wei Wang66f5d6c2017-10-06 12:06:10 -07001696 rcu_read_unlock();
David Ahernb8115802015-11-19 12:24:22 -08001697 trace_fib6_table_lookup(net, rt, table->tb6_id, fl6);
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001698 return rt;
Martin KaFai Lau3da59bd2015-05-22 20:56:03 -07001699 } else if (unlikely((fl6->flowi6_flags & FLOWI_FLAG_KNOWN_NH) &&
1700 !(rt->rt6i_flags & RTF_GATEWAY))) {
1701 /* Create a RTF_CACHE clone which will not be
1702 * owned by the fib6 tree. It is for the special case where
1703 * the daddr in the skb during the neighbor look-up is different
1704 * from the fl6->daddr used to look-up route here.
1705 */
Thomas Grafc71099a2006-08-04 23:20:06 -07001706
Martin KaFai Lau3da59bd2015-05-22 20:56:03 -07001707 struct rt6_info *uncached_rt;
1708
Wei Wangd3843fe2017-10-06 12:06:06 -07001709 if (ip6_hold_safe(net, &rt, true)) {
1710 dst_use_noref(&rt->dst, jiffies);
1711 } else {
Wei Wang66f5d6c2017-10-06 12:06:10 -07001712 rcu_read_unlock();
Wei Wangd3843fe2017-10-06 12:06:06 -07001713 uncached_rt = rt;
1714 goto uncached_rt_out;
1715 }
Wei Wang66f5d6c2017-10-06 12:06:10 -07001716 rcu_read_unlock();
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001717
Martin KaFai Lau3da59bd2015-05-22 20:56:03 -07001718 uncached_rt = ip6_rt_cache_alloc(rt, &fl6->daddr, NULL);
1719 dst_release(&rt->dst);
1720
Wei Wang1cfb71e2017-06-17 10:42:33 -07001721 if (uncached_rt) {
1722 /* Uncached_rt's refcnt is taken during ip6_rt_cache_alloc()
1723 * No need for another dst_hold()
1724 */
Martin KaFai Lau8d0b94a2015-05-22 20:56:04 -07001725 rt6_uncached_list_add(uncached_rt);
Wei Wang81eb8442017-10-06 12:06:11 -07001726 atomic_inc(&net->ipv6.rt6_stats->fib_rt_uncache);
Wei Wang1cfb71e2017-06-17 10:42:33 -07001727 } else {
Martin KaFai Lau3da59bd2015-05-22 20:56:03 -07001728 uncached_rt = net->ipv6.ip6_null_entry;
Wei Wang1cfb71e2017-06-17 10:42:33 -07001729 dst_hold(&uncached_rt->dst);
1730 }
David Ahernb8115802015-11-19 12:24:22 -08001731
Wei Wangd3843fe2017-10-06 12:06:06 -07001732uncached_rt_out:
David Ahernb8115802015-11-19 12:24:22 -08001733 trace_fib6_table_lookup(net, uncached_rt, table->tb6_id, fl6);
Martin KaFai Lau3da59bd2015-05-22 20:56:03 -07001734 return uncached_rt;
Martin KaFai Lau3da59bd2015-05-22 20:56:03 -07001735
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001736 } else {
1737 /* Get a percpu copy */
1738
1739 struct rt6_info *pcpu_rt;
1740
Wei Wangd3843fe2017-10-06 12:06:06 -07001741 dst_use_noref(&rt->dst, jiffies);
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001742 pcpu_rt = rt6_get_pcpu_route(rt);
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001743
Martin KaFai Lau9c7370a2015-08-14 11:05:54 -07001744 if (pcpu_rt) {
Wei Wang66f5d6c2017-10-06 12:06:10 -07001745 rcu_read_unlock();
Martin KaFai Lau9c7370a2015-08-14 11:05:54 -07001746 } else {
Wei Wanga94b9362017-10-06 12:06:04 -07001747 /* atomic_inc_not_zero() is needed when using rcu */
1748 if (atomic_inc_not_zero(&rt->rt6i_ref)) {
1749 /* We have to do the read_unlock first
1750 * because rt6_make_pcpu_route() may trigger
1751 * ip6_dst_gc() which will take the write_lock.
1752 *
1753 * No dst_hold() on rt is needed because grabbing
1754 * rt->rt6i_ref makes sure rt can't be released.
1755 */
Wei Wang66f5d6c2017-10-06 12:06:10 -07001756 rcu_read_unlock();
Wei Wanga94b9362017-10-06 12:06:04 -07001757 pcpu_rt = rt6_make_pcpu_route(rt);
1758 rt6_release(rt);
1759 } else {
1760 /* rt is already removed from tree */
Wei Wang66f5d6c2017-10-06 12:06:10 -07001761 rcu_read_unlock();
Wei Wanga94b9362017-10-06 12:06:04 -07001762 pcpu_rt = net->ipv6.ip6_null_entry;
1763 dst_hold(&pcpu_rt->dst);
1764 }
Martin KaFai Lau9c7370a2015-08-14 11:05:54 -07001765 }
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001766
David Ahernb8115802015-11-19 12:24:22 -08001767 trace_fib6_table_lookup(net, pcpu_rt, table->tb6_id, fl6);
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001768 return pcpu_rt;
1769 }
Thomas Grafc71099a2006-08-04 23:20:06 -07001770}
David Ahern9ff74382016-06-13 13:44:19 -07001771EXPORT_SYMBOL_GPL(ip6_pol_route);
Thomas Grafc71099a2006-08-04 23:20:06 -07001772
Daniel Lezcano8ed67782008-03-04 13:48:30 -08001773static struct rt6_info *ip6_pol_route_input(struct net *net, struct fib6_table *table,
David S. Miller4c9483b2011-03-12 16:22:43 -05001774 struct flowi6 *fl6, int flags)
Pavel Emelyanov4acad722007-10-15 13:02:51 -07001775{
David S. Miller4c9483b2011-03-12 16:22:43 -05001776 return ip6_pol_route(net, table, fl6->flowi6_iif, fl6, flags);
Pavel Emelyanov4acad722007-10-15 13:02:51 -07001777}
1778
Mahesh Bandeward409b842016-09-16 12:59:08 -07001779struct dst_entry *ip6_route_input_lookup(struct net *net,
1780 struct net_device *dev,
1781 struct flowi6 *fl6, int flags)
Shmulik Ladkani72331bc2012-04-01 04:03:45 +00001782{
1783 if (rt6_need_strict(&fl6->daddr) && dev->type != ARPHRD_PIMREG)
1784 flags |= RT6_LOOKUP_F_IFACE;
1785
1786 return fib6_rule_lookup(net, fl6, flags, ip6_pol_route_input);
1787}
Mahesh Bandeward409b842016-09-16 12:59:08 -07001788EXPORT_SYMBOL_GPL(ip6_route_input_lookup);
Shmulik Ladkani72331bc2012-04-01 04:03:45 +00001789
Jakub Sitnicki23aebda2017-08-23 09:58:29 +02001790static void ip6_multipath_l3_keys(const struct sk_buff *skb,
1791 struct flow_keys *keys)
1792{
1793 const struct ipv6hdr *outer_iph = ipv6_hdr(skb);
1794 const struct ipv6hdr *key_iph = outer_iph;
1795 const struct ipv6hdr *inner_iph;
1796 const struct icmp6hdr *icmph;
1797 struct ipv6hdr _inner_iph;
1798
1799 if (likely(outer_iph->nexthdr != IPPROTO_ICMPV6))
1800 goto out;
1801
1802 icmph = icmp6_hdr(skb);
1803 if (icmph->icmp6_type != ICMPV6_DEST_UNREACH &&
1804 icmph->icmp6_type != ICMPV6_PKT_TOOBIG &&
1805 icmph->icmp6_type != ICMPV6_TIME_EXCEED &&
1806 icmph->icmp6_type != ICMPV6_PARAMPROB)
1807 goto out;
1808
1809 inner_iph = skb_header_pointer(skb,
1810 skb_transport_offset(skb) + sizeof(*icmph),
1811 sizeof(_inner_iph), &_inner_iph);
1812 if (!inner_iph)
1813 goto out;
1814
1815 key_iph = inner_iph;
1816out:
1817 memset(keys, 0, sizeof(*keys));
1818 keys->control.addr_type = FLOW_DISSECTOR_KEY_IPV6_ADDRS;
1819 keys->addrs.v6addrs.src = key_iph->saddr;
1820 keys->addrs.v6addrs.dst = key_iph->daddr;
1821 keys->tags.flow_label = ip6_flowinfo(key_iph);
1822 keys->basic.ip_proto = key_iph->nexthdr;
1823}
1824
1825/* if skb is set it will be used and fl6 can be NULL */
1826u32 rt6_multipath_hash(const struct flowi6 *fl6, const struct sk_buff *skb)
1827{
1828 struct flow_keys hash_keys;
1829
1830 if (skb) {
1831 ip6_multipath_l3_keys(skb, &hash_keys);
1832 return flow_hash_from_keys(&hash_keys);
1833 }
1834
1835 return get_hash_from_flowi6(fl6);
1836}
1837
Thomas Grafc71099a2006-08-04 23:20:06 -07001838void ip6_route_input(struct sk_buff *skb)
1839{
Eric Dumazetb71d1d42011-04-22 04:53:02 +00001840 const struct ipv6hdr *iph = ipv6_hdr(skb);
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001841 struct net *net = dev_net(skb->dev);
Thomas Grafadaa70b2006-10-13 15:01:03 -07001842 int flags = RT6_LOOKUP_F_HAS_SADDR;
Jiri Benc904af042015-08-20 13:56:31 +02001843 struct ip_tunnel_info *tun_info;
David S. Miller4c9483b2011-03-12 16:22:43 -05001844 struct flowi6 fl6 = {
David Aherne0d56fd2016-09-10 12:09:57 -07001845 .flowi6_iif = skb->dev->ifindex,
David S. Miller4c9483b2011-03-12 16:22:43 -05001846 .daddr = iph->daddr,
1847 .saddr = iph->saddr,
YOSHIFUJI Hideaki / 吉藤英明6502ca52013-01-13 05:01:51 +00001848 .flowlabel = ip6_flowinfo(iph),
David S. Miller4c9483b2011-03-12 16:22:43 -05001849 .flowi6_mark = skb->mark,
1850 .flowi6_proto = iph->nexthdr,
Thomas Grafc71099a2006-08-04 23:20:06 -07001851 };
Thomas Grafadaa70b2006-10-13 15:01:03 -07001852
Jiri Benc904af042015-08-20 13:56:31 +02001853 tun_info = skb_tunnel_info(skb);
Jiri Benc46fa0622015-08-28 20:48:19 +02001854 if (tun_info && !(tun_info->mode & IP_TUNNEL_INFO_TX))
Jiri Benc904af042015-08-20 13:56:31 +02001855 fl6.flowi6_tun_key.tun_id = tun_info->key.tun_id;
Jakub Sitnicki23aebda2017-08-23 09:58:29 +02001856 if (unlikely(fl6.flowi6_proto == IPPROTO_ICMPV6))
1857 fl6.mp_hash = rt6_multipath_hash(&fl6, skb);
Jiri Benc06e9d042015-08-20 13:56:26 +02001858 skb_dst_drop(skb);
Shmulik Ladkani72331bc2012-04-01 04:03:45 +00001859 skb_dst_set(skb, ip6_route_input_lookup(net, skb->dev, &fl6, flags));
Thomas Grafc71099a2006-08-04 23:20:06 -07001860}
1861
Daniel Lezcano8ed67782008-03-04 13:48:30 -08001862static struct rt6_info *ip6_pol_route_output(struct net *net, struct fib6_table *table,
David S. Miller4c9483b2011-03-12 16:22:43 -05001863 struct flowi6 *fl6, int flags)
Thomas Grafc71099a2006-08-04 23:20:06 -07001864{
David S. Miller4c9483b2011-03-12 16:22:43 -05001865 return ip6_pol_route(net, table, fl6->flowi6_oif, fl6, flags);
Thomas Grafc71099a2006-08-04 23:20:06 -07001866}
1867
Paolo Abeni6f21c962016-01-29 12:30:19 +01001868struct dst_entry *ip6_route_output_flags(struct net *net, const struct sock *sk,
1869 struct flowi6 *fl6, int flags)
Thomas Grafc71099a2006-08-04 23:20:06 -07001870{
David Ahernd46a9d62015-10-21 08:42:22 -07001871 bool any_src;
Thomas Grafc71099a2006-08-04 23:20:06 -07001872
David Ahern4c1feac2016-09-10 12:09:56 -07001873 if (rt6_need_strict(&fl6->daddr)) {
1874 struct dst_entry *dst;
1875
1876 dst = l3mdev_link_scope_lookup(net, fl6);
1877 if (dst)
1878 return dst;
1879 }
David Ahernca254492015-10-12 11:47:10 -07001880
Pavel Emelyanov1fb94892012-08-08 21:53:36 +00001881 fl6->flowi6_iif = LOOPBACK_IFINDEX;
David McCullough4dc27d1c2012-06-25 15:42:26 +00001882
David Ahernd46a9d62015-10-21 08:42:22 -07001883 any_src = ipv6_addr_any(&fl6->saddr);
David Ahern741a11d2015-09-28 10:12:13 -07001884 if ((sk && sk->sk_bound_dev_if) || rt6_need_strict(&fl6->daddr) ||
David Ahernd46a9d62015-10-21 08:42:22 -07001885 (fl6->flowi6_oif && any_src))
YOSHIFUJI Hideaki77d16f42006-08-23 17:25:05 -07001886 flags |= RT6_LOOKUP_F_IFACE;
Thomas Grafc71099a2006-08-04 23:20:06 -07001887
David Ahernd46a9d62015-10-21 08:42:22 -07001888 if (!any_src)
Thomas Grafadaa70b2006-10-13 15:01:03 -07001889 flags |= RT6_LOOKUP_F_HAS_SADDR;
YOSHIFUJI Hideaki / 吉藤英明0c9a2ac2010-03-07 00:14:44 +00001890 else if (sk)
1891 flags |= rt6_srcprefs2flags(inet6_sk(sk)->srcprefs);
Thomas Grafadaa70b2006-10-13 15:01:03 -07001892
David S. Miller4c9483b2011-03-12 16:22:43 -05001893 return fib6_rule_lookup(net, fl6, flags, ip6_pol_route_output);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001894}
Paolo Abeni6f21c962016-01-29 12:30:19 +01001895EXPORT_SYMBOL_GPL(ip6_route_output_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001896
David S. Miller2774c132011-03-01 14:59:04 -08001897struct dst_entry *ip6_blackhole_route(struct net *net, struct dst_entry *dst_orig)
David S. Miller14e50e52007-05-24 18:17:54 -07001898{
David S. Miller5c1e6aa2011-04-28 14:13:38 -07001899 struct rt6_info *rt, *ort = (struct rt6_info *) dst_orig;
Wei Wang1dbe32522017-06-17 10:42:26 -07001900 struct net_device *loopback_dev = net->loopback_dev;
David S. Miller14e50e52007-05-24 18:17:54 -07001901 struct dst_entry *new = NULL;
1902
Wei Wang1dbe32522017-06-17 10:42:26 -07001903 rt = dst_alloc(&ip6_dst_blackhole_ops, loopback_dev, 1,
Wei Wangb2a9c0e2017-06-17 10:42:41 -07001904 DST_OBSOLETE_NONE, 0);
David S. Miller14e50e52007-05-24 18:17:54 -07001905 if (rt) {
Martin KaFai Lau0a1f5962015-10-15 16:39:58 -07001906 rt6_info_init(rt);
Wei Wang81eb8442017-10-06 12:06:11 -07001907 atomic_inc(&net->ipv6.rt6_stats->fib_rt_alloc);
Martin KaFai Lau0a1f5962015-10-15 16:39:58 -07001908
Changli Gaod8d1f302010-06-10 23:31:35 -07001909 new = &rt->dst;
David S. Miller14e50e52007-05-24 18:17:54 -07001910 new->__use = 1;
Herbert Xu352e5122007-11-13 21:34:06 -08001911 new->input = dst_discard;
Eric W. Biedermanede20592015-10-07 16:48:47 -05001912 new->output = dst_discard_out;
David S. Miller14e50e52007-05-24 18:17:54 -07001913
Martin KaFai Lau0a1f5962015-10-15 16:39:58 -07001914 dst_copy_metrics(new, &ort->dst);
David S. Miller14e50e52007-05-24 18:17:54 -07001915
Wei Wang1dbe32522017-06-17 10:42:26 -07001916 rt->rt6i_idev = in6_dev_get(loopback_dev);
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001917 rt->rt6i_gateway = ort->rt6i_gateway;
Martin KaFai Lau0a1f5962015-10-15 16:39:58 -07001918 rt->rt6i_flags = ort->rt6i_flags & ~RTF_PCPU;
David S. Miller14e50e52007-05-24 18:17:54 -07001919 rt->rt6i_metric = 0;
1920
1921 memcpy(&rt->rt6i_dst, &ort->rt6i_dst, sizeof(struct rt6key));
1922#ifdef CONFIG_IPV6_SUBTREES
1923 memcpy(&rt->rt6i_src, &ort->rt6i_src, sizeof(struct rt6key));
1924#endif
David S. Miller14e50e52007-05-24 18:17:54 -07001925 }
1926
David S. Miller69ead7a2011-03-01 14:45:33 -08001927 dst_release(dst_orig);
1928 return new ? new : ERR_PTR(-ENOMEM);
David S. Miller14e50e52007-05-24 18:17:54 -07001929}
David S. Miller14e50e52007-05-24 18:17:54 -07001930
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931/*
1932 * Destination cache support functions
1933 */
1934
Martin KaFai Lau4b32b5a2015-04-28 13:03:06 -07001935static void rt6_dst_from_metrics_check(struct rt6_info *rt)
1936{
1937 if (rt->dst.from &&
1938 dst_metrics_ptr(&rt->dst) != dst_metrics_ptr(rt->dst.from))
1939 dst_init_metrics(&rt->dst, dst_metrics_ptr(rt->dst.from), true);
1940}
1941
Martin KaFai Lau3da59bd2015-05-22 20:56:03 -07001942static struct dst_entry *rt6_check(struct rt6_info *rt, u32 cookie)
1943{
Steffen Klassert36143642017-08-25 09:05:42 +02001944 u32 rt_cookie = 0;
Wei Wangc5cff852017-08-21 09:47:10 -07001945
1946 if (!rt6_get_cookie_safe(rt, &rt_cookie) || rt_cookie != cookie)
Martin KaFai Lau3da59bd2015-05-22 20:56:03 -07001947 return NULL;
1948
1949 if (rt6_check_expired(rt))
1950 return NULL;
1951
1952 return &rt->dst;
1953}
1954
1955static struct dst_entry *rt6_dst_from_check(struct rt6_info *rt, u32 cookie)
1956{
Martin KaFai Lau5973fb12015-11-11 11:51:07 -08001957 if (!__rt6_check_expired(rt) &&
1958 rt->dst.obsolete == DST_OBSOLETE_FORCE_CHK &&
Martin KaFai Lau3da59bd2015-05-22 20:56:03 -07001959 rt6_check((struct rt6_info *)(rt->dst.from), cookie))
1960 return &rt->dst;
1961 else
1962 return NULL;
1963}
1964
Linus Torvalds1da177e2005-04-16 15:20:36 -07001965static struct dst_entry *ip6_dst_check(struct dst_entry *dst, u32 cookie)
1966{
1967 struct rt6_info *rt;
1968
1969 rt = (struct rt6_info *) dst;
1970
Nicolas Dichtel6f3118b2012-09-10 22:09:46 +00001971 /* All IPV6 dsts are created with ->obsolete set to the value
1972 * DST_OBSOLETE_FORCE_CHK which forces validation calls down
1973 * into this function always.
1974 */
Hannes Frederic Sowae3bc10b2013-10-24 07:48:24 +02001975
Martin KaFai Lau4b32b5a2015-04-28 13:03:06 -07001976 rt6_dst_from_metrics_check(rt);
1977
Martin KaFai Lau02bcf4e2015-11-11 11:51:08 -08001978 if (rt->rt6i_flags & RTF_PCPU ||
Wei Wanga4c2fd72017-06-17 10:42:42 -07001979 (unlikely(!list_empty(&rt->rt6i_uncached)) && rt->dst.from))
Martin KaFai Lau3da59bd2015-05-22 20:56:03 -07001980 return rt6_dst_from_check(rt, cookie);
1981 else
1982 return rt6_check(rt, cookie);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001983}
1984
1985static struct dst_entry *ip6_negative_advice(struct dst_entry *dst)
1986{
1987 struct rt6_info *rt = (struct rt6_info *) dst;
1988
1989 if (rt) {
YOSHIFUJI Hideaki / 吉藤英明54c1a852010-03-28 07:15:45 +00001990 if (rt->rt6i_flags & RTF_CACHE) {
1991 if (rt6_check_expired(rt)) {
1992 ip6_del_rt(rt);
1993 dst = NULL;
1994 }
1995 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996 dst_release(dst);
YOSHIFUJI Hideaki / 吉藤英明54c1a852010-03-28 07:15:45 +00001997 dst = NULL;
1998 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001999 }
YOSHIFUJI Hideaki / 吉藤英明54c1a852010-03-28 07:15:45 +00002000 return dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002001}
2002
2003static void ip6_link_failure(struct sk_buff *skb)
2004{
2005 struct rt6_info *rt;
2006
Alexey Dobriyan3ffe5332010-02-18 08:25:24 +00002007 icmpv6_send(skb, ICMPV6_DEST_UNREACH, ICMPV6_ADDR_UNREACH, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008
Eric Dumazetadf30902009-06-02 05:19:30 +00002009 rt = (struct rt6_info *) skb_dst(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010 if (rt) {
Hannes Frederic Sowa1eb4f752013-07-10 23:00:57 +02002011 if (rt->rt6i_flags & RTF_CACHE) {
Wei Wangad65a2f2017-06-17 10:42:35 -07002012 if (dst_hold_safe(&rt->dst))
2013 ip6_del_rt(rt);
Wei Wangc5cff852017-08-21 09:47:10 -07002014 } else {
2015 struct fib6_node *fn;
2016
2017 rcu_read_lock();
2018 fn = rcu_dereference(rt->rt6i_node);
2019 if (fn && (rt->rt6i_flags & RTF_DEFAULT))
2020 fn->fn_sernum = -1;
2021 rcu_read_unlock();
Hannes Frederic Sowa1eb4f752013-07-10 23:00:57 +02002022 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002023 }
2024}
2025
Martin KaFai Lau45e4fd22015-05-22 20:56:00 -07002026static void rt6_do_update_pmtu(struct rt6_info *rt, u32 mtu)
2027{
2028 struct net *net = dev_net(rt->dst.dev);
2029
2030 rt->rt6i_flags |= RTF_MODIFIED;
2031 rt->rt6i_pmtu = mtu;
2032 rt6_update_expires(rt, net->ipv6.sysctl.ip6_rt_mtu_expires);
2033}
2034
Martin KaFai Lau0d3f6d22015-11-11 11:51:06 -08002035static bool rt6_cache_allowed_for_pmtu(const struct rt6_info *rt)
2036{
2037 return !(rt->rt6i_flags & RTF_CACHE) &&
Wei Wang4e587ea2017-08-25 15:03:10 -07002038 (rt->rt6i_flags & RTF_PCPU ||
2039 rcu_access_pointer(rt->rt6i_node));
Martin KaFai Lau0d3f6d22015-11-11 11:51:06 -08002040}
2041
Martin KaFai Lau45e4fd22015-05-22 20:56:00 -07002042static void __ip6_rt_update_pmtu(struct dst_entry *dst, const struct sock *sk,
2043 const struct ipv6hdr *iph, u32 mtu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044{
Julian Anastasov0dec8792017-02-06 23:14:16 +02002045 const struct in6_addr *daddr, *saddr;
Ian Morris67ba4152014-08-24 21:53:10 +01002046 struct rt6_info *rt6 = (struct rt6_info *)dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002047
Martin KaFai Lau45e4fd22015-05-22 20:56:00 -07002048 if (rt6->rt6i_flags & RTF_LOCAL)
2049 return;
2050
Xin Long19bda362016-10-28 18:18:01 +08002051 if (dst_metric_locked(dst, RTAX_MTU))
2052 return;
2053
Julian Anastasov0dec8792017-02-06 23:14:16 +02002054 if (iph) {
2055 daddr = &iph->daddr;
2056 saddr = &iph->saddr;
2057 } else if (sk) {
2058 daddr = &sk->sk_v6_daddr;
2059 saddr = &inet6_sk(sk)->saddr;
2060 } else {
2061 daddr = NULL;
2062 saddr = NULL;
2063 }
2064 dst_confirm_neigh(dst, daddr);
Martin KaFai Lau45e4fd22015-05-22 20:56:00 -07002065 mtu = max_t(u32, mtu, IPV6_MIN_MTU);
2066 if (mtu >= dst_mtu(dst))
2067 return;
David S. Miller81aded22012-06-15 14:54:11 -07002068
Martin KaFai Lau0d3f6d22015-11-11 11:51:06 -08002069 if (!rt6_cache_allowed_for_pmtu(rt6)) {
Martin KaFai Lau45e4fd22015-05-22 20:56:00 -07002070 rt6_do_update_pmtu(rt6, mtu);
Wei Wang2b760fc2017-10-06 12:06:03 -07002071 /* update rt6_ex->stamp for cache */
2072 if (rt6->rt6i_flags & RTF_CACHE)
2073 rt6_update_exception_stamp_rt(rt6);
Julian Anastasov0dec8792017-02-06 23:14:16 +02002074 } else if (daddr) {
Martin KaFai Lau45e4fd22015-05-22 20:56:00 -07002075 struct rt6_info *nrt6;
Hagen Paul Pfeifer9d289712015-01-15 22:34:25 +01002076
Martin KaFai Lau45e4fd22015-05-22 20:56:00 -07002077 nrt6 = ip6_rt_cache_alloc(rt6, daddr, saddr);
2078 if (nrt6) {
2079 rt6_do_update_pmtu(nrt6, mtu);
Wei Wang2b760fc2017-10-06 12:06:03 -07002080 if (rt6_insert_exception(nrt6, rt6))
2081 dst_release_immediate(&nrt6->dst);
Martin KaFai Lau45e4fd22015-05-22 20:56:00 -07002082 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002083 }
2084}
2085
Martin KaFai Lau45e4fd22015-05-22 20:56:00 -07002086static void ip6_rt_update_pmtu(struct dst_entry *dst, struct sock *sk,
2087 struct sk_buff *skb, u32 mtu)
2088{
2089 __ip6_rt_update_pmtu(dst, sk, skb ? ipv6_hdr(skb) : NULL, mtu);
2090}
2091
David S. Miller42ae66c2012-06-15 20:01:57 -07002092void ip6_update_pmtu(struct sk_buff *skb, struct net *net, __be32 mtu,
Lorenzo Colittie2d118a2016-11-04 02:23:43 +09002093 int oif, u32 mark, kuid_t uid)
David S. Miller81aded22012-06-15 14:54:11 -07002094{
2095 const struct ipv6hdr *iph = (struct ipv6hdr *) skb->data;
2096 struct dst_entry *dst;
2097 struct flowi6 fl6;
2098
2099 memset(&fl6, 0, sizeof(fl6));
2100 fl6.flowi6_oif = oif;
Lorenzo Colitti1b3c61d2014-05-13 10:17:34 -07002101 fl6.flowi6_mark = mark ? mark : IP6_REPLY_MARK(net, skb->mark);
David S. Miller81aded22012-06-15 14:54:11 -07002102 fl6.daddr = iph->daddr;
2103 fl6.saddr = iph->saddr;
YOSHIFUJI Hideaki / 吉藤英明6502ca52013-01-13 05:01:51 +00002104 fl6.flowlabel = ip6_flowinfo(iph);
Lorenzo Colittie2d118a2016-11-04 02:23:43 +09002105 fl6.flowi6_uid = uid;
David S. Miller81aded22012-06-15 14:54:11 -07002106
2107 dst = ip6_route_output(net, NULL, &fl6);
2108 if (!dst->error)
Martin KaFai Lau45e4fd22015-05-22 20:56:00 -07002109 __ip6_rt_update_pmtu(dst, NULL, iph, ntohl(mtu));
David S. Miller81aded22012-06-15 14:54:11 -07002110 dst_release(dst);
2111}
2112EXPORT_SYMBOL_GPL(ip6_update_pmtu);
2113
2114void ip6_sk_update_pmtu(struct sk_buff *skb, struct sock *sk, __be32 mtu)
2115{
Martin KaFai Lau33c162a2016-04-11 15:29:36 -07002116 struct dst_entry *dst;
2117
David S. Miller81aded22012-06-15 14:54:11 -07002118 ip6_update_pmtu(skb, sock_net(sk), mtu,
Lorenzo Colittie2d118a2016-11-04 02:23:43 +09002119 sk->sk_bound_dev_if, sk->sk_mark, sk->sk_uid);
Martin KaFai Lau33c162a2016-04-11 15:29:36 -07002120
2121 dst = __sk_dst_get(sk);
2122 if (!dst || !dst->obsolete ||
2123 dst->ops->check(dst, inet6_sk(sk)->dst_cookie))
2124 return;
2125
2126 bh_lock_sock(sk);
2127 if (!sock_owned_by_user(sk) && !ipv6_addr_v4mapped(&sk->sk_v6_daddr))
2128 ip6_datagram_dst_update(sk, false);
2129 bh_unlock_sock(sk);
David S. Miller81aded22012-06-15 14:54:11 -07002130}
2131EXPORT_SYMBOL_GPL(ip6_sk_update_pmtu);
2132
Duan Jiongb55b76b2013-09-04 19:44:21 +08002133/* Handle redirects */
2134struct ip6rd_flowi {
2135 struct flowi6 fl6;
2136 struct in6_addr gateway;
2137};
2138
2139static struct rt6_info *__ip6_route_redirect(struct net *net,
2140 struct fib6_table *table,
2141 struct flowi6 *fl6,
2142 int flags)
2143{
2144 struct ip6rd_flowi *rdfl = (struct ip6rd_flowi *)fl6;
Wei Wang2b760fc2017-10-06 12:06:03 -07002145 struct rt6_info *rt, *rt_cache;
Duan Jiongb55b76b2013-09-04 19:44:21 +08002146 struct fib6_node *fn;
2147
2148 /* Get the "current" route for this destination and
Alexander Alemayhu67c408c2017-01-07 23:53:00 +01002149 * check if the redirect has come from appropriate router.
Duan Jiongb55b76b2013-09-04 19:44:21 +08002150 *
2151 * RFC 4861 specifies that redirects should only be
2152 * accepted if they come from the nexthop to the target.
2153 * Due to the way the routes are chosen, this notion
2154 * is a bit fuzzy and one might need to check all possible
2155 * routes.
2156 */
2157
Wei Wang66f5d6c2017-10-06 12:06:10 -07002158 rcu_read_lock();
Duan Jiongb55b76b2013-09-04 19:44:21 +08002159 fn = fib6_lookup(&table->tb6_root, &fl6->daddr, &fl6->saddr);
2160restart:
Wei Wang66f5d6c2017-10-06 12:06:10 -07002161 for_each_fib6_node_rt_rcu(fn) {
Duan Jiongb55b76b2013-09-04 19:44:21 +08002162 if (rt6_check_expired(rt))
2163 continue;
2164 if (rt->dst.error)
2165 break;
2166 if (!(rt->rt6i_flags & RTF_GATEWAY))
2167 continue;
2168 if (fl6->flowi6_oif != rt->dst.dev->ifindex)
2169 continue;
Wei Wang2b760fc2017-10-06 12:06:03 -07002170 /* rt_cache's gateway might be different from its 'parent'
2171 * in the case of an ip redirect.
2172 * So we keep searching in the exception table if the gateway
2173 * is different.
2174 */
2175 if (!ipv6_addr_equal(&rdfl->gateway, &rt->rt6i_gateway)) {
2176 rt_cache = rt6_find_cached_rt(rt,
2177 &fl6->daddr,
2178 &fl6->saddr);
2179 if (rt_cache &&
2180 ipv6_addr_equal(&rdfl->gateway,
2181 &rt_cache->rt6i_gateway)) {
2182 rt = rt_cache;
2183 break;
2184 }
Duan Jiongb55b76b2013-09-04 19:44:21 +08002185 continue;
Wei Wang2b760fc2017-10-06 12:06:03 -07002186 }
Duan Jiongb55b76b2013-09-04 19:44:21 +08002187 break;
2188 }
2189
2190 if (!rt)
2191 rt = net->ipv6.ip6_null_entry;
2192 else if (rt->dst.error) {
2193 rt = net->ipv6.ip6_null_entry;
Martin KaFai Laub0a1ba52015-01-20 19:16:02 -08002194 goto out;
2195 }
2196
2197 if (rt == net->ipv6.ip6_null_entry) {
Martin KaFai Laua3c00e42014-10-20 13:42:43 -07002198 fn = fib6_backtrack(fn, &fl6->saddr);
2199 if (fn)
2200 goto restart;
Duan Jiongb55b76b2013-09-04 19:44:21 +08002201 }
Martin KaFai Laua3c00e42014-10-20 13:42:43 -07002202
Martin KaFai Laub0a1ba52015-01-20 19:16:02 -08002203out:
Wei Wangd3843fe2017-10-06 12:06:06 -07002204 ip6_hold_safe(net, &rt, true);
Duan Jiongb55b76b2013-09-04 19:44:21 +08002205
Wei Wang66f5d6c2017-10-06 12:06:10 -07002206 rcu_read_unlock();
Duan Jiongb55b76b2013-09-04 19:44:21 +08002207
David Ahernb8115802015-11-19 12:24:22 -08002208 trace_fib6_table_lookup(net, rt, table->tb6_id, fl6);
Duan Jiongb55b76b2013-09-04 19:44:21 +08002209 return rt;
2210};
2211
2212static struct dst_entry *ip6_route_redirect(struct net *net,
2213 const struct flowi6 *fl6,
2214 const struct in6_addr *gateway)
2215{
2216 int flags = RT6_LOOKUP_F_HAS_SADDR;
2217 struct ip6rd_flowi rdfl;
2218
2219 rdfl.fl6 = *fl6;
2220 rdfl.gateway = *gateway;
2221
2222 return fib6_rule_lookup(net, &rdfl.fl6,
2223 flags, __ip6_route_redirect);
2224}
2225
Lorenzo Colittie2d118a2016-11-04 02:23:43 +09002226void ip6_redirect(struct sk_buff *skb, struct net *net, int oif, u32 mark,
2227 kuid_t uid)
David S. Miller3a5ad2e2012-07-12 00:08:07 -07002228{
2229 const struct ipv6hdr *iph = (struct ipv6hdr *) skb->data;
2230 struct dst_entry *dst;
2231 struct flowi6 fl6;
2232
2233 memset(&fl6, 0, sizeof(fl6));
Julian Anastasove374c612014-04-28 10:51:56 +03002234 fl6.flowi6_iif = LOOPBACK_IFINDEX;
David S. Miller3a5ad2e2012-07-12 00:08:07 -07002235 fl6.flowi6_oif = oif;
2236 fl6.flowi6_mark = mark;
David S. Miller3a5ad2e2012-07-12 00:08:07 -07002237 fl6.daddr = iph->daddr;
2238 fl6.saddr = iph->saddr;
YOSHIFUJI Hideaki / 吉藤英明6502ca52013-01-13 05:01:51 +00002239 fl6.flowlabel = ip6_flowinfo(iph);
Lorenzo Colittie2d118a2016-11-04 02:23:43 +09002240 fl6.flowi6_uid = uid;
David S. Miller3a5ad2e2012-07-12 00:08:07 -07002241
Duan Jiongb55b76b2013-09-04 19:44:21 +08002242 dst = ip6_route_redirect(net, &fl6, &ipv6_hdr(skb)->saddr);
2243 rt6_do_redirect(dst, NULL, skb);
David S. Miller3a5ad2e2012-07-12 00:08:07 -07002244 dst_release(dst);
2245}
2246EXPORT_SYMBOL_GPL(ip6_redirect);
2247
Duan Jiongc92a59e2013-08-22 12:07:35 +08002248void ip6_redirect_no_header(struct sk_buff *skb, struct net *net, int oif,
2249 u32 mark)
2250{
2251 const struct ipv6hdr *iph = ipv6_hdr(skb);
2252 const struct rd_msg *msg = (struct rd_msg *)icmp6_hdr(skb);
2253 struct dst_entry *dst;
2254 struct flowi6 fl6;
2255
2256 memset(&fl6, 0, sizeof(fl6));
Julian Anastasove374c612014-04-28 10:51:56 +03002257 fl6.flowi6_iif = LOOPBACK_IFINDEX;
Duan Jiongc92a59e2013-08-22 12:07:35 +08002258 fl6.flowi6_oif = oif;
2259 fl6.flowi6_mark = mark;
Duan Jiongc92a59e2013-08-22 12:07:35 +08002260 fl6.daddr = msg->dest;
2261 fl6.saddr = iph->daddr;
Lorenzo Colittie2d118a2016-11-04 02:23:43 +09002262 fl6.flowi6_uid = sock_net_uid(net, NULL);
Duan Jiongc92a59e2013-08-22 12:07:35 +08002263
Duan Jiongb55b76b2013-09-04 19:44:21 +08002264 dst = ip6_route_redirect(net, &fl6, &iph->saddr);
2265 rt6_do_redirect(dst, NULL, skb);
Duan Jiongc92a59e2013-08-22 12:07:35 +08002266 dst_release(dst);
2267}
2268
David S. Miller3a5ad2e2012-07-12 00:08:07 -07002269void ip6_sk_redirect(struct sk_buff *skb, struct sock *sk)
2270{
Lorenzo Colittie2d118a2016-11-04 02:23:43 +09002271 ip6_redirect(skb, sock_net(sk), sk->sk_bound_dev_if, sk->sk_mark,
2272 sk->sk_uid);
David S. Miller3a5ad2e2012-07-12 00:08:07 -07002273}
2274EXPORT_SYMBOL_GPL(ip6_sk_redirect);
2275
David S. Miller0dbaee32010-12-13 12:52:14 -08002276static unsigned int ip6_default_advmss(const struct dst_entry *dst)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002277{
David S. Miller0dbaee32010-12-13 12:52:14 -08002278 struct net_device *dev = dst->dev;
2279 unsigned int mtu = dst_mtu(dst);
2280 struct net *net = dev_net(dev);
2281
Linus Torvalds1da177e2005-04-16 15:20:36 -07002282 mtu -= sizeof(struct ipv6hdr) + sizeof(struct tcphdr);
2283
Daniel Lezcano55786892008-03-04 13:47:47 -08002284 if (mtu < net->ipv6.sysctl.ip6_rt_min_advmss)
2285 mtu = net->ipv6.sysctl.ip6_rt_min_advmss;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002286
2287 /*
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002288 * Maximal non-jumbo IPv6 payload is IPV6_MAXPLEN and
2289 * corresponding MSS is IPV6_MAXPLEN - tcp_header_size.
2290 * IPV6_MAXPLEN is also valid and means: "any MSS,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002291 * rely only on pmtu discovery"
2292 */
2293 if (mtu > IPV6_MAXPLEN - sizeof(struct tcphdr))
2294 mtu = IPV6_MAXPLEN;
2295 return mtu;
2296}
2297
Steffen Klassertebb762f2011-11-23 02:12:51 +00002298static unsigned int ip6_mtu(const struct dst_entry *dst)
David S. Millerd33e4552010-12-14 13:01:14 -08002299{
Martin KaFai Lau4b32b5a2015-04-28 13:03:06 -07002300 const struct rt6_info *rt = (const struct rt6_info *)dst;
2301 unsigned int mtu = rt->rt6i_pmtu;
David S. Millerd33e4552010-12-14 13:01:14 -08002302 struct inet6_dev *idev;
Steffen Klassert618f9bc2011-11-23 02:13:31 +00002303
2304 if (mtu)
Eric Dumazet30f78d82014-04-10 21:23:36 -07002305 goto out;
Steffen Klassert618f9bc2011-11-23 02:13:31 +00002306
Martin KaFai Lau4b32b5a2015-04-28 13:03:06 -07002307 mtu = dst_metric_raw(dst, RTAX_MTU);
2308 if (mtu)
2309 goto out;
2310
Steffen Klassert618f9bc2011-11-23 02:13:31 +00002311 mtu = IPV6_MIN_MTU;
David S. Millerd33e4552010-12-14 13:01:14 -08002312
2313 rcu_read_lock();
2314 idev = __in6_dev_get(dst->dev);
2315 if (idev)
2316 mtu = idev->cnf.mtu6;
2317 rcu_read_unlock();
2318
Eric Dumazet30f78d82014-04-10 21:23:36 -07002319out:
Roopa Prabhu14972cb2016-08-24 20:10:43 -07002320 mtu = min_t(unsigned int, mtu, IP6_MAX_MTU);
2321
2322 return mtu - lwtunnel_headroom(dst->lwtstate, mtu);
David S. Millerd33e4552010-12-14 13:01:14 -08002323}
2324
YOSHIFUJI Hideaki3b009442007-12-06 16:11:48 -08002325struct dst_entry *icmp6_dst_alloc(struct net_device *dev,
David S. Miller87a11572011-12-06 17:04:13 -05002326 struct flowi6 *fl6)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002327{
David S. Miller87a11572011-12-06 17:04:13 -05002328 struct dst_entry *dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002329 struct rt6_info *rt;
2330 struct inet6_dev *idev = in6_dev_get(dev);
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09002331 struct net *net = dev_net(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002332
David S. Miller38308472011-12-03 18:02:47 -05002333 if (unlikely(!idev))
Eric Dumazet122bdf62012-03-14 21:13:11 +00002334 return ERR_PTR(-ENODEV);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002335
Martin KaFai Lauad706862015-08-14 11:05:52 -07002336 rt = ip6_dst_alloc(net, dev, 0);
David S. Miller38308472011-12-03 18:02:47 -05002337 if (unlikely(!rt)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002338 in6_dev_put(idev);
David S. Miller87a11572011-12-06 17:04:13 -05002339 dst = ERR_PTR(-ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002340 goto out;
2341 }
2342
Yan, Zheng8e2ec632011-09-05 21:34:30 +00002343 rt->dst.flags |= DST_HOST;
2344 rt->dst.output = ip6_output;
Julian Anastasov550bab42013-10-20 15:43:04 +03002345 rt->rt6i_gateway = fl6->daddr;
David S. Miller87a11572011-12-06 17:04:13 -05002346 rt->rt6i_dst.addr = fl6->daddr;
Yan, Zheng8e2ec632011-09-05 21:34:30 +00002347 rt->rt6i_dst.plen = 128;
2348 rt->rt6i_idev = idev;
Li RongQing14edd872012-10-24 14:01:18 +08002349 dst_metric_set(&rt->dst, RTAX_HOPLIMIT, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002350
Wei Wang587fea72017-06-17 10:42:36 -07002351 /* Add this dst into uncached_list so that rt6_ifdown() can
2352 * do proper release of the net_device
2353 */
2354 rt6_uncached_list_add(rt);
Wei Wang81eb8442017-10-06 12:06:11 -07002355 atomic_inc(&net->ipv6.rt6_stats->fib_rt_uncache);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002356
David S. Miller87a11572011-12-06 17:04:13 -05002357 dst = xfrm_lookup(net, &rt->dst, flowi6_to_flowi(fl6), NULL, 0);
2358
Linus Torvalds1da177e2005-04-16 15:20:36 -07002359out:
David S. Miller87a11572011-12-06 17:04:13 -05002360 return dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002361}
2362
Daniel Lezcano569d3642008-01-18 03:56:57 -08002363static int ip6_dst_gc(struct dst_ops *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002364{
Alexey Dobriyan86393e52009-08-29 01:34:49 +00002365 struct net *net = container_of(ops, struct net, ipv6.ip6_dst_ops);
Daniel Lezcano7019b782008-03-04 13:50:14 -08002366 int rt_min_interval = net->ipv6.sysctl.ip6_rt_gc_min_interval;
2367 int rt_max_size = net->ipv6.sysctl.ip6_rt_max_size;
2368 int rt_elasticity = net->ipv6.sysctl.ip6_rt_gc_elasticity;
2369 int rt_gc_timeout = net->ipv6.sysctl.ip6_rt_gc_timeout;
2370 unsigned long rt_last_gc = net->ipv6.ip6_rt_last_gc;
Eric Dumazetfc66f952010-10-08 06:37:34 +00002371 int entries;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002372
Eric Dumazetfc66f952010-10-08 06:37:34 +00002373 entries = dst_entries_get_fast(ops);
Michal Kubeček49a18d82013-08-01 10:04:24 +02002374 if (time_after(rt_last_gc + rt_min_interval, jiffies) &&
Eric Dumazetfc66f952010-10-08 06:37:34 +00002375 entries <= rt_max_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002376 goto out;
2377
Benjamin Thery6891a342008-03-04 13:49:47 -08002378 net->ipv6.ip6_rt_gc_expire++;
Li RongQing14956642014-05-19 17:30:28 +08002379 fib6_run_gc(net->ipv6.ip6_rt_gc_expire, net, true);
Eric Dumazetfc66f952010-10-08 06:37:34 +00002380 entries = dst_entries_get_slow(ops);
2381 if (entries < ops->gc_thresh)
Daniel Lezcano7019b782008-03-04 13:50:14 -08002382 net->ipv6.ip6_rt_gc_expire = rt_gc_timeout>>1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002383out:
Daniel Lezcano7019b782008-03-04 13:50:14 -08002384 net->ipv6.ip6_rt_gc_expire -= net->ipv6.ip6_rt_gc_expire>>rt_elasticity;
Eric Dumazetfc66f952010-10-08 06:37:34 +00002385 return entries > rt_max_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002386}
2387
Florian Westphale715b6d2015-01-05 23:57:44 +01002388static int ip6_convert_metrics(struct mx6_config *mxc,
2389 const struct fib6_config *cfg)
2390{
Daniel Borkmannc3a8d942015-08-31 15:58:47 +02002391 bool ecn_ca = false;
Florian Westphale715b6d2015-01-05 23:57:44 +01002392 struct nlattr *nla;
2393 int remaining;
2394 u32 *mp;
2395
Ian Morris63159f22015-03-29 14:00:04 +01002396 if (!cfg->fc_mx)
Florian Westphale715b6d2015-01-05 23:57:44 +01002397 return 0;
2398
2399 mp = kzalloc(sizeof(u32) * RTAX_MAX, GFP_KERNEL);
2400 if (unlikely(!mp))
2401 return -ENOMEM;
2402
2403 nla_for_each_attr(nla, cfg->fc_mx, cfg->fc_mx_len, remaining) {
2404 int type = nla_type(nla);
Daniel Borkmann1bb14802015-08-31 15:58:45 +02002405 u32 val;
Florian Westphale715b6d2015-01-05 23:57:44 +01002406
Daniel Borkmann1bb14802015-08-31 15:58:45 +02002407 if (!type)
2408 continue;
2409 if (unlikely(type > RTAX_MAX))
2410 goto err;
Daniel Borkmannea697632015-01-05 23:57:47 +01002411
Daniel Borkmann1bb14802015-08-31 15:58:45 +02002412 if (type == RTAX_CC_ALGO) {
2413 char tmp[TCP_CA_NAME_MAX];
2414
2415 nla_strlcpy(tmp, nla, sizeof(tmp));
Daniel Borkmannc3a8d942015-08-31 15:58:47 +02002416 val = tcp_ca_get_key_by_name(tmp, &ecn_ca);
Daniel Borkmann1bb14802015-08-31 15:58:45 +02002417 if (val == TCP_CA_UNSPEC)
Florian Westphale715b6d2015-01-05 23:57:44 +01002418 goto err;
Daniel Borkmann1bb14802015-08-31 15:58:45 +02002419 } else {
2420 val = nla_get_u32(nla);
Florian Westphale715b6d2015-01-05 23:57:44 +01002421 }
Paolo Abeni626abd52016-05-13 18:33:41 +02002422 if (type == RTAX_HOPLIMIT && val > 255)
2423 val = 255;
Daniel Borkmannb8d3e412015-08-31 15:58:46 +02002424 if (type == RTAX_FEATURES && (val & ~RTAX_FEATURE_MASK))
2425 goto err;
Daniel Borkmann1bb14802015-08-31 15:58:45 +02002426
2427 mp[type - 1] = val;
2428 __set_bit(type - 1, mxc->mx_valid);
Florian Westphale715b6d2015-01-05 23:57:44 +01002429 }
2430
Daniel Borkmannc3a8d942015-08-31 15:58:47 +02002431 if (ecn_ca) {
2432 __set_bit(RTAX_FEATURES - 1, mxc->mx_valid);
2433 mp[RTAX_FEATURES - 1] |= DST_FEATURE_ECN_CA;
2434 }
Florian Westphale715b6d2015-01-05 23:57:44 +01002435
Daniel Borkmannc3a8d942015-08-31 15:58:47 +02002436 mxc->mx = mp;
Florian Westphale715b6d2015-01-05 23:57:44 +01002437 return 0;
2438 err:
2439 kfree(mp);
2440 return -EINVAL;
2441}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002442
David Ahern8c145862016-04-24 21:26:04 -07002443static struct rt6_info *ip6_nh_lookup_table(struct net *net,
2444 struct fib6_config *cfg,
2445 const struct in6_addr *gw_addr)
2446{
2447 struct flowi6 fl6 = {
2448 .flowi6_oif = cfg->fc_ifindex,
2449 .daddr = *gw_addr,
2450 .saddr = cfg->fc_prefsrc,
2451 };
2452 struct fib6_table *table;
2453 struct rt6_info *rt;
David Ahernd5d32e42016-10-24 12:27:23 -07002454 int flags = RT6_LOOKUP_F_IFACE | RT6_LOOKUP_F_IGNORE_LINKSTATE;
David Ahern8c145862016-04-24 21:26:04 -07002455
2456 table = fib6_get_table(net, cfg->fc_table);
2457 if (!table)
2458 return NULL;
2459
2460 if (!ipv6_addr_any(&cfg->fc_prefsrc))
2461 flags |= RT6_LOOKUP_F_HAS_SADDR;
2462
2463 rt = ip6_pol_route(net, table, cfg->fc_ifindex, &fl6, flags);
2464
2465 /* if table lookup failed, fall back to full lookup */
2466 if (rt == net->ipv6.ip6_null_entry) {
2467 ip6_rt_put(rt);
2468 rt = NULL;
2469 }
2470
2471 return rt;
2472}
2473
David Ahern333c4302017-05-21 10:12:04 -06002474static struct rt6_info *ip6_route_info_create(struct fib6_config *cfg,
2475 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002476{
Daniel Lezcano55786892008-03-04 13:47:47 -08002477 struct net *net = cfg->fc_nlinfo.nl_net;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002478 struct rt6_info *rt = NULL;
2479 struct net_device *dev = NULL;
2480 struct inet6_dev *idev = NULL;
Thomas Grafc71099a2006-08-04 23:20:06 -07002481 struct fib6_table *table;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002482 int addr_type;
Roopa Prabhu8c5b83f2015-10-10 08:26:36 -07002483 int err = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002484
David Ahern557c44b2017-04-19 14:19:43 -07002485 /* RTF_PCPU is an internal flag; can not be set by userspace */
David Ahernd5d531c2017-05-21 10:12:05 -06002486 if (cfg->fc_flags & RTF_PCPU) {
2487 NL_SET_ERR_MSG(extack, "Userspace can not set RTF_PCPU");
David Ahern557c44b2017-04-19 14:19:43 -07002488 goto out;
David Ahernd5d531c2017-05-21 10:12:05 -06002489 }
David Ahern557c44b2017-04-19 14:19:43 -07002490
David Ahernd5d531c2017-05-21 10:12:05 -06002491 if (cfg->fc_dst_len > 128) {
2492 NL_SET_ERR_MSG(extack, "Invalid prefix length");
Roopa Prabhu8c5b83f2015-10-10 08:26:36 -07002493 goto out;
David Ahernd5d531c2017-05-21 10:12:05 -06002494 }
2495 if (cfg->fc_src_len > 128) {
2496 NL_SET_ERR_MSG(extack, "Invalid source address length");
2497 goto out;
2498 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002499#ifndef CONFIG_IPV6_SUBTREES
David Ahernd5d531c2017-05-21 10:12:05 -06002500 if (cfg->fc_src_len) {
2501 NL_SET_ERR_MSG(extack,
2502 "Specifying source address requires IPV6_SUBTREES to be enabled");
Roopa Prabhu8c5b83f2015-10-10 08:26:36 -07002503 goto out;
David Ahernd5d531c2017-05-21 10:12:05 -06002504 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002505#endif
Thomas Graf86872cb2006-08-22 00:01:08 -07002506 if (cfg->fc_ifindex) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002507 err = -ENODEV;
Daniel Lezcano55786892008-03-04 13:47:47 -08002508 dev = dev_get_by_index(net, cfg->fc_ifindex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002509 if (!dev)
2510 goto out;
2511 idev = in6_dev_get(dev);
2512 if (!idev)
2513 goto out;
2514 }
2515
Thomas Graf86872cb2006-08-22 00:01:08 -07002516 if (cfg->fc_metric == 0)
2517 cfg->fc_metric = IP6_RT_PRIO_USER;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002518
Matti Vaittinend71314b2011-11-14 00:14:49 +00002519 err = -ENOBUFS;
David S. Miller38308472011-12-03 18:02:47 -05002520 if (cfg->fc_nlinfo.nlh &&
2521 !(cfg->fc_nlinfo.nlh->nlmsg_flags & NLM_F_CREATE)) {
Matti Vaittinend71314b2011-11-14 00:14:49 +00002522 table = fib6_get_table(net, cfg->fc_table);
David S. Miller38308472011-12-03 18:02:47 -05002523 if (!table) {
Joe Perchesf3213832012-05-15 14:11:53 +00002524 pr_warn("NLM_F_CREATE should be specified when creating new route\n");
Matti Vaittinend71314b2011-11-14 00:14:49 +00002525 table = fib6_new_table(net, cfg->fc_table);
2526 }
2527 } else {
2528 table = fib6_new_table(net, cfg->fc_table);
2529 }
David S. Miller38308472011-12-03 18:02:47 -05002530
2531 if (!table)
Thomas Grafc71099a2006-08-04 23:20:06 -07002532 goto out;
Thomas Grafc71099a2006-08-04 23:20:06 -07002533
Martin KaFai Lauad706862015-08-14 11:05:52 -07002534 rt = ip6_dst_alloc(net, NULL,
2535 (cfg->fc_flags & RTF_ADDRCONF) ? 0 : DST_NOCOUNT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002536
David S. Miller38308472011-12-03 18:02:47 -05002537 if (!rt) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002538 err = -ENOMEM;
2539 goto out;
2540 }
2541
Gao feng1716a962012-04-06 00:13:10 +00002542 if (cfg->fc_flags & RTF_EXPIRES)
2543 rt6_set_expires(rt, jiffies +
2544 clock_t_to_jiffies(cfg->fc_expires));
2545 else
2546 rt6_clean_expires(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002547
Thomas Graf86872cb2006-08-22 00:01:08 -07002548 if (cfg->fc_protocol == RTPROT_UNSPEC)
2549 cfg->fc_protocol = RTPROT_BOOT;
2550 rt->rt6i_protocol = cfg->fc_protocol;
2551
2552 addr_type = ipv6_addr_type(&cfg->fc_dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002553
2554 if (addr_type & IPV6_ADDR_MULTICAST)
Changli Gaod8d1f302010-06-10 23:31:35 -07002555 rt->dst.input = ip6_mc_input;
Maciej Żenczykowskiab79ad12010-09-27 00:07:02 +00002556 else if (cfg->fc_flags & RTF_LOCAL)
2557 rt->dst.input = ip6_input;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002558 else
Changli Gaod8d1f302010-06-10 23:31:35 -07002559 rt->dst.input = ip6_forward;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002560
Changli Gaod8d1f302010-06-10 23:31:35 -07002561 rt->dst.output = ip6_output;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002562
Roopa Prabhu19e42e42015-07-21 10:43:48 +02002563 if (cfg->fc_encap) {
2564 struct lwtunnel_state *lwtstate;
2565
David Ahern30357d72017-01-30 12:07:37 -08002566 err = lwtunnel_build_state(cfg->fc_encap_type,
Tom Herbert127eb7c2015-08-24 09:45:41 -07002567 cfg->fc_encap, AF_INET6, cfg,
David Ahern9ae28722017-05-27 16:19:28 -06002568 &lwtstate, extack);
Roopa Prabhu19e42e42015-07-21 10:43:48 +02002569 if (err)
2570 goto out;
Jiri Benc61adedf2015-08-20 13:56:25 +02002571 rt->dst.lwtstate = lwtstate_get(lwtstate);
2572 if (lwtunnel_output_redirect(rt->dst.lwtstate)) {
2573 rt->dst.lwtstate->orig_output = rt->dst.output;
2574 rt->dst.output = lwtunnel_output;
Tom Herbert25368622015-08-17 13:42:24 -07002575 }
Jiri Benc61adedf2015-08-20 13:56:25 +02002576 if (lwtunnel_input_redirect(rt->dst.lwtstate)) {
2577 rt->dst.lwtstate->orig_input = rt->dst.input;
2578 rt->dst.input = lwtunnel_input;
Tom Herbert25368622015-08-17 13:42:24 -07002579 }
Roopa Prabhu19e42e42015-07-21 10:43:48 +02002580 }
2581
Thomas Graf86872cb2006-08-22 00:01:08 -07002582 ipv6_addr_prefix(&rt->rt6i_dst.addr, &cfg->fc_dst, cfg->fc_dst_len);
2583 rt->rt6i_dst.plen = cfg->fc_dst_len;
Martin KaFai Lauafc4eef2015-04-28 13:03:07 -07002584 if (rt->rt6i_dst.plen == 128)
Michal Kubečeke5fd3872014-03-27 13:04:08 +01002585 rt->dst.flags |= DST_HOST;
Michal Kubečeke5fd3872014-03-27 13:04:08 +01002586
Linus Torvalds1da177e2005-04-16 15:20:36 -07002587#ifdef CONFIG_IPV6_SUBTREES
Thomas Graf86872cb2006-08-22 00:01:08 -07002588 ipv6_addr_prefix(&rt->rt6i_src.addr, &cfg->fc_src, cfg->fc_src_len);
2589 rt->rt6i_src.plen = cfg->fc_src_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002590#endif
2591
Thomas Graf86872cb2006-08-22 00:01:08 -07002592 rt->rt6i_metric = cfg->fc_metric;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002593
2594 /* We cannot add true routes via loopback here,
2595 they would result in kernel looping; promote them to reject routes
2596 */
Thomas Graf86872cb2006-08-22 00:01:08 -07002597 if ((cfg->fc_flags & RTF_REJECT) ||
David S. Miller38308472011-12-03 18:02:47 -05002598 (dev && (dev->flags & IFF_LOOPBACK) &&
2599 !(addr_type & IPV6_ADDR_LOOPBACK) &&
2600 !(cfg->fc_flags & RTF_LOCAL))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002601 /* hold loopback dev/idev if we haven't done so. */
Daniel Lezcano55786892008-03-04 13:47:47 -08002602 if (dev != net->loopback_dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002603 if (dev) {
2604 dev_put(dev);
2605 in6_dev_put(idev);
2606 }
Daniel Lezcano55786892008-03-04 13:47:47 -08002607 dev = net->loopback_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002608 dev_hold(dev);
2609 idev = in6_dev_get(dev);
2610 if (!idev) {
2611 err = -ENODEV;
2612 goto out;
2613 }
2614 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002615 rt->rt6i_flags = RTF_REJECT|RTF_NONEXTHOP;
Nicolas Dichtelef2c7d72012-09-05 02:12:42 +00002616 switch (cfg->fc_type) {
2617 case RTN_BLACKHOLE:
2618 rt->dst.error = -EINVAL;
Eric W. Biedermanede20592015-10-07 16:48:47 -05002619 rt->dst.output = dst_discard_out;
Kamala R7150aed2013-12-02 19:55:21 +05302620 rt->dst.input = dst_discard;
Nicolas Dichtelef2c7d72012-09-05 02:12:42 +00002621 break;
2622 case RTN_PROHIBIT:
2623 rt->dst.error = -EACCES;
Kamala R7150aed2013-12-02 19:55:21 +05302624 rt->dst.output = ip6_pkt_prohibit_out;
2625 rt->dst.input = ip6_pkt_prohibit;
Nicolas Dichtelef2c7d72012-09-05 02:12:42 +00002626 break;
Nicolas Dichtelb4949ab2012-09-06 05:53:35 +00002627 case RTN_THROW:
Nikola Forró0315e382015-09-17 16:01:32 +02002628 case RTN_UNREACHABLE:
Nicolas Dichtelef2c7d72012-09-05 02:12:42 +00002629 default:
Kamala R7150aed2013-12-02 19:55:21 +05302630 rt->dst.error = (cfg->fc_type == RTN_THROW) ? -EAGAIN
Nikola Forró0315e382015-09-17 16:01:32 +02002631 : (cfg->fc_type == RTN_UNREACHABLE)
2632 ? -EHOSTUNREACH : -ENETUNREACH;
Kamala R7150aed2013-12-02 19:55:21 +05302633 rt->dst.output = ip6_pkt_discard_out;
2634 rt->dst.input = ip6_pkt_discard;
Nicolas Dichtelef2c7d72012-09-05 02:12:42 +00002635 break;
2636 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002637 goto install_route;
2638 }
2639
Thomas Graf86872cb2006-08-22 00:01:08 -07002640 if (cfg->fc_flags & RTF_GATEWAY) {
Eric Dumazetb71d1d42011-04-22 04:53:02 +00002641 const struct in6_addr *gw_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002642 int gwa_type;
2643
Thomas Graf86872cb2006-08-22 00:01:08 -07002644 gw_addr = &cfg->fc_gateway;
Florian Westphal330567b2015-08-07 10:54:28 +02002645 gwa_type = ipv6_addr_type(gw_addr);
Florian Westphal48ed7b22015-05-21 00:25:41 +02002646
2647 /* if gw_addr is local we will fail to detect this in case
2648 * address is still TENTATIVE (DAD in progress). rt6_lookup()
2649 * will return already-added prefix route via interface that
2650 * prefix route was assigned to, which might be non-loopback.
2651 */
2652 err = -EINVAL;
Florian Westphal330567b2015-08-07 10:54:28 +02002653 if (ipv6_chk_addr_and_flags(net, gw_addr,
2654 gwa_type & IPV6_ADDR_LINKLOCAL ?
David Ahernd5d531c2017-05-21 10:12:05 -06002655 dev : NULL, 0, 0)) {
2656 NL_SET_ERR_MSG(extack, "Invalid gateway address");
Florian Westphal48ed7b22015-05-21 00:25:41 +02002657 goto out;
David Ahernd5d531c2017-05-21 10:12:05 -06002658 }
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00002659 rt->rt6i_gateway = *gw_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002660
2661 if (gwa_type != (IPV6_ADDR_LINKLOCAL|IPV6_ADDR_UNICAST)) {
David Ahern8c145862016-04-24 21:26:04 -07002662 struct rt6_info *grt = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002663
2664 /* IPv6 strictly inhibits using not link-local
2665 addresses as nexthop address.
2666 Otherwise, router will not able to send redirects.
2667 It is very good, but in some (rare!) circumstances
2668 (SIT, PtP, NBMA NOARP links) it is handy to allow
2669 some exceptions. --ANK
Erik Nordmark96d58222016-12-03 20:57:09 -08002670 We allow IPv4-mapped nexthops to support RFC4798-type
2671 addressing
Linus Torvalds1da177e2005-04-16 15:20:36 -07002672 */
Erik Nordmark96d58222016-12-03 20:57:09 -08002673 if (!(gwa_type & (IPV6_ADDR_UNICAST |
David Ahernd5d531c2017-05-21 10:12:05 -06002674 IPV6_ADDR_MAPPED))) {
2675 NL_SET_ERR_MSG(extack,
2676 "Invalid gateway address");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002677 goto out;
David Ahernd5d531c2017-05-21 10:12:05 -06002678 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002679
Vincent Bernata435a072016-09-18 17:46:07 +02002680 if (cfg->fc_table) {
David Ahern8c145862016-04-24 21:26:04 -07002681 grt = ip6_nh_lookup_table(net, cfg, gw_addr);
2682
Vincent Bernata435a072016-09-18 17:46:07 +02002683 if (grt) {
2684 if (grt->rt6i_flags & RTF_GATEWAY ||
2685 (dev && dev != grt->dst.dev)) {
2686 ip6_rt_put(grt);
2687 grt = NULL;
2688 }
2689 }
2690 }
2691
David Ahern8c145862016-04-24 21:26:04 -07002692 if (!grt)
2693 grt = rt6_lookup(net, gw_addr, NULL,
2694 cfg->fc_ifindex, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002695
2696 err = -EHOSTUNREACH;
David S. Miller38308472011-12-03 18:02:47 -05002697 if (!grt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002698 goto out;
2699 if (dev) {
David S. Millerd1918542011-12-28 20:19:20 -05002700 if (dev != grt->dst.dev) {
Amerigo Wang94e187c2012-10-29 00:13:19 +00002701 ip6_rt_put(grt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002702 goto out;
2703 }
2704 } else {
David S. Millerd1918542011-12-28 20:19:20 -05002705 dev = grt->dst.dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002706 idev = grt->rt6i_idev;
2707 dev_hold(dev);
2708 in6_dev_hold(grt->rt6i_idev);
2709 }
David S. Miller38308472011-12-03 18:02:47 -05002710 if (!(grt->rt6i_flags & RTF_GATEWAY))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002711 err = 0;
Amerigo Wang94e187c2012-10-29 00:13:19 +00002712 ip6_rt_put(grt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002713
2714 if (err)
2715 goto out;
2716 }
2717 err = -EINVAL;
David Ahernd5d531c2017-05-21 10:12:05 -06002718 if (!dev) {
2719 NL_SET_ERR_MSG(extack, "Egress device not specified");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002720 goto out;
David Ahernd5d531c2017-05-21 10:12:05 -06002721 } else if (dev->flags & IFF_LOOPBACK) {
2722 NL_SET_ERR_MSG(extack,
2723 "Egress device can not be loopback device for this route");
2724 goto out;
2725 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002726 }
2727
2728 err = -ENODEV;
David S. Miller38308472011-12-03 18:02:47 -05002729 if (!dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002730 goto out;
2731
Daniel Walterc3968a82011-04-13 21:10:57 +00002732 if (!ipv6_addr_any(&cfg->fc_prefsrc)) {
2733 if (!ipv6_chk_addr(net, &cfg->fc_prefsrc, dev, 0)) {
David Ahernd5d531c2017-05-21 10:12:05 -06002734 NL_SET_ERR_MSG(extack, "Invalid source address");
Daniel Walterc3968a82011-04-13 21:10:57 +00002735 err = -EINVAL;
2736 goto out;
2737 }
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00002738 rt->rt6i_prefsrc.addr = cfg->fc_prefsrc;
Daniel Walterc3968a82011-04-13 21:10:57 +00002739 rt->rt6i_prefsrc.plen = 128;
2740 } else
2741 rt->rt6i_prefsrc.plen = 0;
2742
Thomas Graf86872cb2006-08-22 00:01:08 -07002743 rt->rt6i_flags = cfg->fc_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002744
2745install_route:
Changli Gaod8d1f302010-06-10 23:31:35 -07002746 rt->dst.dev = dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002747 rt->rt6i_idev = idev;
Thomas Grafc71099a2006-08-04 23:20:06 -07002748 rt->rt6i_table = table;
Daniel Lezcano63152fc2008-03-03 23:31:11 -08002749
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09002750 cfg->fc_nlinfo.nl_net = dev_net(dev);
Daniel Lezcano63152fc2008-03-03 23:31:11 -08002751
Roopa Prabhu8c5b83f2015-10-10 08:26:36 -07002752 return rt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002753out:
2754 if (dev)
2755 dev_put(dev);
2756 if (idev)
2757 in6_dev_put(idev);
Wei Wang587fea72017-06-17 10:42:36 -07002758 if (rt)
2759 dst_release_immediate(&rt->dst);
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07002760
Roopa Prabhu8c5b83f2015-10-10 08:26:36 -07002761 return ERR_PTR(err);
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07002762}
2763
David Ahern333c4302017-05-21 10:12:04 -06002764int ip6_route_add(struct fib6_config *cfg,
2765 struct netlink_ext_ack *extack)
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07002766{
2767 struct mx6_config mxc = { .mx = NULL, };
Roopa Prabhu8c5b83f2015-10-10 08:26:36 -07002768 struct rt6_info *rt;
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07002769 int err;
2770
David Ahern333c4302017-05-21 10:12:04 -06002771 rt = ip6_route_info_create(cfg, extack);
Roopa Prabhu8c5b83f2015-10-10 08:26:36 -07002772 if (IS_ERR(rt)) {
2773 err = PTR_ERR(rt);
2774 rt = NULL;
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07002775 goto out;
Roopa Prabhu8c5b83f2015-10-10 08:26:36 -07002776 }
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07002777
2778 err = ip6_convert_metrics(&mxc, cfg);
2779 if (err)
2780 goto out;
2781
David Ahern333c4302017-05-21 10:12:04 -06002782 err = __ip6_ins_rt(rt, &cfg->fc_nlinfo, &mxc, extack);
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07002783
2784 kfree(mxc.mx);
2785
2786 return err;
2787out:
Wei Wang587fea72017-06-17 10:42:36 -07002788 if (rt)
2789 dst_release_immediate(&rt->dst);
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07002790
Linus Torvalds1da177e2005-04-16 15:20:36 -07002791 return err;
2792}
2793
Thomas Graf86872cb2006-08-22 00:01:08 -07002794static int __ip6_del_rt(struct rt6_info *rt, struct nl_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002795{
2796 int err;
Thomas Grafc71099a2006-08-04 23:20:06 -07002797 struct fib6_table *table;
David S. Millerd1918542011-12-28 20:19:20 -05002798 struct net *net = dev_net(rt->dst.dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002799
Wei Wanga4c2fd72017-06-17 10:42:42 -07002800 if (rt == net->ipv6.ip6_null_entry) {
Gao feng6825a262012-09-19 19:25:34 +00002801 err = -ENOENT;
2802 goto out;
2803 }
Patrick McHardy6c813a72006-08-06 22:22:47 -07002804
Thomas Grafc71099a2006-08-04 23:20:06 -07002805 table = rt->rt6i_table;
Wei Wang66f5d6c2017-10-06 12:06:10 -07002806 spin_lock_bh(&table->tb6_lock);
Thomas Graf86872cb2006-08-22 00:01:08 -07002807 err = fib6_del(rt, info);
Wei Wang66f5d6c2017-10-06 12:06:10 -07002808 spin_unlock_bh(&table->tb6_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002809
Gao feng6825a262012-09-19 19:25:34 +00002810out:
Amerigo Wang94e187c2012-10-29 00:13:19 +00002811 ip6_rt_put(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002812 return err;
2813}
2814
Thomas Grafe0a1ad732006-08-22 00:00:21 -07002815int ip6_del_rt(struct rt6_info *rt)
2816{
Denis V. Lunev4d1169c2008-01-10 03:26:13 -08002817 struct nl_info info = {
David S. Millerd1918542011-12-28 20:19:20 -05002818 .nl_net = dev_net(rt->dst.dev),
Denis V. Lunev4d1169c2008-01-10 03:26:13 -08002819 };
Denis V. Lunev528c4ce2007-12-13 09:45:12 -08002820 return __ip6_del_rt(rt, &info);
Thomas Grafe0a1ad732006-08-22 00:00:21 -07002821}
2822
David Ahern0ae81332017-02-02 12:37:08 -08002823static int __ip6_del_rt_siblings(struct rt6_info *rt, struct fib6_config *cfg)
2824{
2825 struct nl_info *info = &cfg->fc_nlinfo;
WANG Conge3330032017-02-27 16:07:43 -08002826 struct net *net = info->nl_net;
David Ahern16a16cd2017-02-02 12:37:11 -08002827 struct sk_buff *skb = NULL;
David Ahern0ae81332017-02-02 12:37:08 -08002828 struct fib6_table *table;
WANG Conge3330032017-02-27 16:07:43 -08002829 int err = -ENOENT;
David Ahern0ae81332017-02-02 12:37:08 -08002830
WANG Conge3330032017-02-27 16:07:43 -08002831 if (rt == net->ipv6.ip6_null_entry)
2832 goto out_put;
David Ahern0ae81332017-02-02 12:37:08 -08002833 table = rt->rt6i_table;
Wei Wang66f5d6c2017-10-06 12:06:10 -07002834 spin_lock_bh(&table->tb6_lock);
David Ahern0ae81332017-02-02 12:37:08 -08002835
2836 if (rt->rt6i_nsiblings && cfg->fc_delete_all_nh) {
2837 struct rt6_info *sibling, *next_sibling;
2838
David Ahern16a16cd2017-02-02 12:37:11 -08002839 /* prefer to send a single notification with all hops */
2840 skb = nlmsg_new(rt6_nlmsg_size(rt), gfp_any());
2841 if (skb) {
2842 u32 seq = info->nlh ? info->nlh->nlmsg_seq : 0;
2843
WANG Conge3330032017-02-27 16:07:43 -08002844 if (rt6_fill_node(net, skb, rt,
David Ahern16a16cd2017-02-02 12:37:11 -08002845 NULL, NULL, 0, RTM_DELROUTE,
2846 info->portid, seq, 0) < 0) {
2847 kfree_skb(skb);
2848 skb = NULL;
2849 } else
2850 info->skip_notify = 1;
2851 }
2852
David Ahern0ae81332017-02-02 12:37:08 -08002853 list_for_each_entry_safe(sibling, next_sibling,
2854 &rt->rt6i_siblings,
2855 rt6i_siblings) {
2856 err = fib6_del(sibling, info);
2857 if (err)
WANG Conge3330032017-02-27 16:07:43 -08002858 goto out_unlock;
David Ahern0ae81332017-02-02 12:37:08 -08002859 }
2860 }
2861
2862 err = fib6_del(rt, info);
WANG Conge3330032017-02-27 16:07:43 -08002863out_unlock:
Wei Wang66f5d6c2017-10-06 12:06:10 -07002864 spin_unlock_bh(&table->tb6_lock);
WANG Conge3330032017-02-27 16:07:43 -08002865out_put:
David Ahern0ae81332017-02-02 12:37:08 -08002866 ip6_rt_put(rt);
David Ahern16a16cd2017-02-02 12:37:11 -08002867
2868 if (skb) {
WANG Conge3330032017-02-27 16:07:43 -08002869 rtnl_notify(skb, net, info->portid, RTNLGRP_IPV6_ROUTE,
David Ahern16a16cd2017-02-02 12:37:11 -08002870 info->nlh, gfp_any());
2871 }
David Ahern0ae81332017-02-02 12:37:08 -08002872 return err;
2873}
2874
David Ahern333c4302017-05-21 10:12:04 -06002875static int ip6_route_del(struct fib6_config *cfg,
2876 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002877{
Wei Wang2b760fc2017-10-06 12:06:03 -07002878 struct rt6_info *rt, *rt_cache;
Thomas Grafc71099a2006-08-04 23:20:06 -07002879 struct fib6_table *table;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002880 struct fib6_node *fn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002881 int err = -ESRCH;
2882
Daniel Lezcano55786892008-03-04 13:47:47 -08002883 table = fib6_get_table(cfg->fc_nlinfo.nl_net, cfg->fc_table);
David Ahernd5d531c2017-05-21 10:12:05 -06002884 if (!table) {
2885 NL_SET_ERR_MSG(extack, "FIB table does not exist");
Thomas Grafc71099a2006-08-04 23:20:06 -07002886 return err;
David Ahernd5d531c2017-05-21 10:12:05 -06002887 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002888
Wei Wang66f5d6c2017-10-06 12:06:10 -07002889 rcu_read_lock();
Thomas Grafc71099a2006-08-04 23:20:06 -07002890
2891 fn = fib6_locate(&table->tb6_root,
Thomas Graf86872cb2006-08-22 00:01:08 -07002892 &cfg->fc_dst, cfg->fc_dst_len,
Wei Wang38fbeee2017-10-06 12:06:02 -07002893 &cfg->fc_src, cfg->fc_src_len,
Wei Wang2b760fc2017-10-06 12:06:03 -07002894 !(cfg->fc_flags & RTF_CACHE));
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002895
Linus Torvalds1da177e2005-04-16 15:20:36 -07002896 if (fn) {
Wei Wang66f5d6c2017-10-06 12:06:10 -07002897 for_each_fib6_node_rt_rcu(fn) {
Wei Wang2b760fc2017-10-06 12:06:03 -07002898 if (cfg->fc_flags & RTF_CACHE) {
2899 rt_cache = rt6_find_cached_rt(rt, &cfg->fc_dst,
2900 &cfg->fc_src);
2901 if (!rt_cache)
2902 continue;
2903 rt = rt_cache;
2904 }
Thomas Graf86872cb2006-08-22 00:01:08 -07002905 if (cfg->fc_ifindex &&
David S. Millerd1918542011-12-28 20:19:20 -05002906 (!rt->dst.dev ||
2907 rt->dst.dev->ifindex != cfg->fc_ifindex))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002908 continue;
Thomas Graf86872cb2006-08-22 00:01:08 -07002909 if (cfg->fc_flags & RTF_GATEWAY &&
2910 !ipv6_addr_equal(&cfg->fc_gateway, &rt->rt6i_gateway))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002911 continue;
Thomas Graf86872cb2006-08-22 00:01:08 -07002912 if (cfg->fc_metric && cfg->fc_metric != rt->rt6i_metric)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002913 continue;
Mantas Mc2ed1882016-12-16 10:30:59 +02002914 if (cfg->fc_protocol && cfg->fc_protocol != rt->rt6i_protocol)
2915 continue;
Wei Wangd3843fe2017-10-06 12:06:06 -07002916 if (!dst_hold_safe(&rt->dst))
2917 break;
Wei Wang66f5d6c2017-10-06 12:06:10 -07002918 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002919
David Ahern0ae81332017-02-02 12:37:08 -08002920 /* if gateway was specified only delete the one hop */
2921 if (cfg->fc_flags & RTF_GATEWAY)
2922 return __ip6_del_rt(rt, &cfg->fc_nlinfo);
2923
2924 return __ip6_del_rt_siblings(rt, cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002925 }
2926 }
Wei Wang66f5d6c2017-10-06 12:06:10 -07002927 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002928
2929 return err;
2930}
2931
David S. Miller6700c272012-07-17 03:29:28 -07002932static void rt6_do_redirect(struct dst_entry *dst, struct sock *sk, struct sk_buff *skb)
YOSHIFUJI Hideakia6279452006-08-23 17:18:26 -07002933{
YOSHIFUJI Hideakia6279452006-08-23 17:18:26 -07002934 struct netevent_redirect netevent;
David S. Millere8599ff2012-07-11 23:43:53 -07002935 struct rt6_info *rt, *nrt = NULL;
David S. Millere8599ff2012-07-11 23:43:53 -07002936 struct ndisc_options ndopts;
2937 struct inet6_dev *in6_dev;
2938 struct neighbour *neigh;
YOSHIFUJI Hideaki / 吉藤英明71bcdba2013-01-05 16:34:51 +00002939 struct rd_msg *msg;
David S. Miller6e157b62012-07-12 00:05:02 -07002940 int optlen, on_link;
2941 u8 *lladdr;
David S. Millere8599ff2012-07-11 23:43:53 -07002942
Simon Horman29a3cad2013-05-28 20:34:26 +00002943 optlen = skb_tail_pointer(skb) - skb_transport_header(skb);
YOSHIFUJI Hideaki / 吉藤英明71bcdba2013-01-05 16:34:51 +00002944 optlen -= sizeof(*msg);
David S. Millere8599ff2012-07-11 23:43:53 -07002945
2946 if (optlen < 0) {
David S. Miller6e157b62012-07-12 00:05:02 -07002947 net_dbg_ratelimited("rt6_do_redirect: packet too short\n");
David S. Millere8599ff2012-07-11 23:43:53 -07002948 return;
2949 }
2950
YOSHIFUJI Hideaki / 吉藤英明71bcdba2013-01-05 16:34:51 +00002951 msg = (struct rd_msg *)icmp6_hdr(skb);
David S. Millere8599ff2012-07-11 23:43:53 -07002952
YOSHIFUJI Hideaki / 吉藤英明71bcdba2013-01-05 16:34:51 +00002953 if (ipv6_addr_is_multicast(&msg->dest)) {
David S. Miller6e157b62012-07-12 00:05:02 -07002954 net_dbg_ratelimited("rt6_do_redirect: destination address is multicast\n");
David S. Millere8599ff2012-07-11 23:43:53 -07002955 return;
2956 }
2957
David S. Miller6e157b62012-07-12 00:05:02 -07002958 on_link = 0;
YOSHIFUJI Hideaki / 吉藤英明71bcdba2013-01-05 16:34:51 +00002959 if (ipv6_addr_equal(&msg->dest, &msg->target)) {
David S. Millere8599ff2012-07-11 23:43:53 -07002960 on_link = 1;
YOSHIFUJI Hideaki / 吉藤英明71bcdba2013-01-05 16:34:51 +00002961 } else if (ipv6_addr_type(&msg->target) !=
David S. Millere8599ff2012-07-11 23:43:53 -07002962 (IPV6_ADDR_UNICAST|IPV6_ADDR_LINKLOCAL)) {
David S. Miller6e157b62012-07-12 00:05:02 -07002963 net_dbg_ratelimited("rt6_do_redirect: target address is not link-local unicast\n");
David S. Millere8599ff2012-07-11 23:43:53 -07002964 return;
2965 }
2966
2967 in6_dev = __in6_dev_get(skb->dev);
2968 if (!in6_dev)
2969 return;
2970 if (in6_dev->cnf.forwarding || !in6_dev->cnf.accept_redirects)
2971 return;
2972
2973 /* RFC2461 8.1:
2974 * The IP source address of the Redirect MUST be the same as the current
2975 * first-hop router for the specified ICMP Destination Address.
2976 */
2977
Alexander Aringf997c552016-06-15 21:20:23 +02002978 if (!ndisc_parse_options(skb->dev, msg->opt, optlen, &ndopts)) {
David S. Millere8599ff2012-07-11 23:43:53 -07002979 net_dbg_ratelimited("rt6_redirect: invalid ND options\n");
2980 return;
2981 }
David S. Miller6e157b62012-07-12 00:05:02 -07002982
2983 lladdr = NULL;
David S. Millere8599ff2012-07-11 23:43:53 -07002984 if (ndopts.nd_opts_tgt_lladdr) {
2985 lladdr = ndisc_opt_addr_data(ndopts.nd_opts_tgt_lladdr,
2986 skb->dev);
2987 if (!lladdr) {
2988 net_dbg_ratelimited("rt6_redirect: invalid link-layer address length\n");
2989 return;
2990 }
2991 }
2992
David S. Miller6e157b62012-07-12 00:05:02 -07002993 rt = (struct rt6_info *) dst;
Matthias Schifferec13ad12015-11-02 01:24:38 +01002994 if (rt->rt6i_flags & RTF_REJECT) {
David S. Miller6e157b62012-07-12 00:05:02 -07002995 net_dbg_ratelimited("rt6_redirect: source isn't a valid nexthop for redirect target\n");
2996 return;
2997 }
2998
2999 /* Redirect received -> path was valid.
3000 * Look, redirects are sent only in response to data packets,
3001 * so that this nexthop apparently is reachable. --ANK
3002 */
Julian Anastasov0dec8792017-02-06 23:14:16 +02003003 dst_confirm_neigh(&rt->dst, &ipv6_hdr(skb)->saddr);
David S. Miller6e157b62012-07-12 00:05:02 -07003004
YOSHIFUJI Hideaki / 吉藤英明71bcdba2013-01-05 16:34:51 +00003005 neigh = __neigh_lookup(&nd_tbl, &msg->target, skb->dev, 1);
David S. Millere8599ff2012-07-11 23:43:53 -07003006 if (!neigh)
3007 return;
3008
Linus Torvalds1da177e2005-04-16 15:20:36 -07003009 /*
3010 * We have finally decided to accept it.
3011 */
3012
Alexander Aringf997c552016-06-15 21:20:23 +02003013 ndisc_update(skb->dev, neigh, lladdr, NUD_STALE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003014 NEIGH_UPDATE_F_WEAK_OVERRIDE|
3015 NEIGH_UPDATE_F_OVERRIDE|
3016 (on_link ? 0 : (NEIGH_UPDATE_F_OVERRIDE_ISROUTER|
Alexander Aringf997c552016-06-15 21:20:23 +02003017 NEIGH_UPDATE_F_ISROUTER)),
3018 NDISC_REDIRECT, &ndopts);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003019
Martin KaFai Lau83a09ab2015-05-22 20:56:05 -07003020 nrt = ip6_rt_cache_alloc(rt, &msg->dest, NULL);
David S. Miller38308472011-12-03 18:02:47 -05003021 if (!nrt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003022 goto out;
3023
3024 nrt->rt6i_flags = RTF_GATEWAY|RTF_UP|RTF_DYNAMIC|RTF_CACHE;
3025 if (on_link)
3026 nrt->rt6i_flags &= ~RTF_GATEWAY;
3027
Xin Longb91d5322017-08-03 14:13:46 +08003028 nrt->rt6i_protocol = RTPROT_REDIRECT;
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00003029 nrt->rt6i_gateway = *(struct in6_addr *)neigh->primary_key;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003030
Wei Wang2b760fc2017-10-06 12:06:03 -07003031 /* No need to remove rt from the exception table if rt is
3032 * a cached route because rt6_insert_exception() will
3033 * takes care of it
3034 */
3035 if (rt6_insert_exception(nrt, rt)) {
3036 dst_release_immediate(&nrt->dst);
3037 goto out;
3038 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003039
Changli Gaod8d1f302010-06-10 23:31:35 -07003040 netevent.old = &rt->dst;
3041 netevent.new = &nrt->dst;
YOSHIFUJI Hideaki / 吉藤英明71bcdba2013-01-05 16:34:51 +00003042 netevent.daddr = &msg->dest;
YOSHIFUJI Hideaki / 吉藤英明60592832013-01-14 09:28:27 +00003043 netevent.neigh = neigh;
Tom Tucker8d717402006-07-30 20:43:36 -07003044 call_netevent_notifiers(NETEVENT_REDIRECT, &netevent);
3045
Linus Torvalds1da177e2005-04-16 15:20:36 -07003046out:
David S. Millere8599ff2012-07-11 23:43:53 -07003047 neigh_release(neigh);
David S. Miller6e157b62012-07-12 00:05:02 -07003048}
3049
Linus Torvalds1da177e2005-04-16 15:20:36 -07003050/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003051 * Misc support functions
3052 */
3053
Martin KaFai Lau4b32b5a2015-04-28 13:03:06 -07003054static void rt6_set_from(struct rt6_info *rt, struct rt6_info *from)
3055{
3056 BUG_ON(from->dst.from);
3057
3058 rt->rt6i_flags &= ~RTF_EXPIRES;
3059 dst_hold(&from->dst);
3060 rt->dst.from = &from->dst;
3061 dst_init_metrics(&rt->dst, dst_metrics_ptr(&from->dst), true);
3062}
3063
Martin KaFai Lau83a09ab2015-05-22 20:56:05 -07003064static void ip6_rt_copy_init(struct rt6_info *rt, struct rt6_info *ort)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003065{
Martin KaFai Lau83a09ab2015-05-22 20:56:05 -07003066 rt->dst.input = ort->dst.input;
3067 rt->dst.output = ort->dst.output;
3068 rt->rt6i_dst = ort->rt6i_dst;
3069 rt->dst.error = ort->dst.error;
3070 rt->rt6i_idev = ort->rt6i_idev;
3071 if (rt->rt6i_idev)
3072 in6_dev_hold(rt->rt6i_idev);
3073 rt->dst.lastuse = jiffies;
3074 rt->rt6i_gateway = ort->rt6i_gateway;
3075 rt->rt6i_flags = ort->rt6i_flags;
3076 rt6_set_from(rt, ort);
3077 rt->rt6i_metric = ort->rt6i_metric;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003078#ifdef CONFIG_IPV6_SUBTREES
Martin KaFai Lau83a09ab2015-05-22 20:56:05 -07003079 rt->rt6i_src = ort->rt6i_src;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003080#endif
Martin KaFai Lau83a09ab2015-05-22 20:56:05 -07003081 rt->rt6i_prefsrc = ort->rt6i_prefsrc;
3082 rt->rt6i_table = ort->rt6i_table;
Jiri Benc61adedf2015-08-20 13:56:25 +02003083 rt->dst.lwtstate = lwtstate_get(ort->dst.lwtstate);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003084}
3085
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08003086#ifdef CONFIG_IPV6_ROUTE_INFO
Daniel Lezcanoefa2cea2008-03-04 13:46:48 -08003087static struct rt6_info *rt6_get_route_info(struct net *net,
Eric Dumazetb71d1d42011-04-22 04:53:02 +00003088 const struct in6_addr *prefix, int prefixlen,
David Ahern830218c2016-10-24 10:52:35 -07003089 const struct in6_addr *gwaddr,
3090 struct net_device *dev)
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08003091{
David Ahern830218c2016-10-24 10:52:35 -07003092 u32 tb_id = l3mdev_fib_table(dev) ? : RT6_TABLE_INFO;
3093 int ifindex = dev->ifindex;
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08003094 struct fib6_node *fn;
3095 struct rt6_info *rt = NULL;
Thomas Grafc71099a2006-08-04 23:20:06 -07003096 struct fib6_table *table;
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08003097
David Ahern830218c2016-10-24 10:52:35 -07003098 table = fib6_get_table(net, tb_id);
David S. Miller38308472011-12-03 18:02:47 -05003099 if (!table)
Thomas Grafc71099a2006-08-04 23:20:06 -07003100 return NULL;
3101
Wei Wang66f5d6c2017-10-06 12:06:10 -07003102 rcu_read_lock();
Wei Wang38fbeee2017-10-06 12:06:02 -07003103 fn = fib6_locate(&table->tb6_root, prefix, prefixlen, NULL, 0, true);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08003104 if (!fn)
3105 goto out;
3106
Wei Wang66f5d6c2017-10-06 12:06:10 -07003107 for_each_fib6_node_rt_rcu(fn) {
David S. Millerd1918542011-12-28 20:19:20 -05003108 if (rt->dst.dev->ifindex != ifindex)
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08003109 continue;
3110 if ((rt->rt6i_flags & (RTF_ROUTEINFO|RTF_GATEWAY)) != (RTF_ROUTEINFO|RTF_GATEWAY))
3111 continue;
3112 if (!ipv6_addr_equal(&rt->rt6i_gateway, gwaddr))
3113 continue;
Wei Wangd3843fe2017-10-06 12:06:06 -07003114 ip6_hold_safe(NULL, &rt, false);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08003115 break;
3116 }
3117out:
Wei Wang66f5d6c2017-10-06 12:06:10 -07003118 rcu_read_unlock();
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08003119 return rt;
3120}
3121
Daniel Lezcanoefa2cea2008-03-04 13:46:48 -08003122static struct rt6_info *rt6_add_route_info(struct net *net,
Eric Dumazetb71d1d42011-04-22 04:53:02 +00003123 const struct in6_addr *prefix, int prefixlen,
David Ahern830218c2016-10-24 10:52:35 -07003124 const struct in6_addr *gwaddr,
3125 struct net_device *dev,
Eric Dumazet95c96172012-04-15 05:58:06 +00003126 unsigned int pref)
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08003127{
Thomas Graf86872cb2006-08-22 00:01:08 -07003128 struct fib6_config cfg = {
Rami Rosen238fc7e2008-02-09 23:43:11 -08003129 .fc_metric = IP6_RT_PRIO_USER,
David Ahern830218c2016-10-24 10:52:35 -07003130 .fc_ifindex = dev->ifindex,
Thomas Graf86872cb2006-08-22 00:01:08 -07003131 .fc_dst_len = prefixlen,
3132 .fc_flags = RTF_GATEWAY | RTF_ADDRCONF | RTF_ROUTEINFO |
3133 RTF_UP | RTF_PREF(pref),
Xin Longb91d5322017-08-03 14:13:46 +08003134 .fc_protocol = RTPROT_RA,
Eric W. Biederman15e47302012-09-07 20:12:54 +00003135 .fc_nlinfo.portid = 0,
Daniel Lezcanoefa2cea2008-03-04 13:46:48 -08003136 .fc_nlinfo.nlh = NULL,
3137 .fc_nlinfo.nl_net = net,
Thomas Graf86872cb2006-08-22 00:01:08 -07003138 };
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08003139
David Ahern830218c2016-10-24 10:52:35 -07003140 cfg.fc_table = l3mdev_fib_table(dev) ? : RT6_TABLE_INFO,
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00003141 cfg.fc_dst = *prefix;
3142 cfg.fc_gateway = *gwaddr;
Thomas Graf86872cb2006-08-22 00:01:08 -07003143
YOSHIFUJI Hideakie317da92006-03-20 17:06:42 -08003144 /* We should treat it as a default route if prefix length is 0. */
3145 if (!prefixlen)
Thomas Graf86872cb2006-08-22 00:01:08 -07003146 cfg.fc_flags |= RTF_DEFAULT;
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08003147
David Ahern333c4302017-05-21 10:12:04 -06003148 ip6_route_add(&cfg, NULL);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08003149
David Ahern830218c2016-10-24 10:52:35 -07003150 return rt6_get_route_info(net, prefix, prefixlen, gwaddr, dev);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08003151}
3152#endif
3153
Eric Dumazetb71d1d42011-04-22 04:53:02 +00003154struct rt6_info *rt6_get_dflt_router(const struct in6_addr *addr, struct net_device *dev)
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003155{
David Ahern830218c2016-10-24 10:52:35 -07003156 u32 tb_id = l3mdev_fib_table(dev) ? : RT6_TABLE_DFLT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003157 struct rt6_info *rt;
Thomas Grafc71099a2006-08-04 23:20:06 -07003158 struct fib6_table *table;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003159
David Ahern830218c2016-10-24 10:52:35 -07003160 table = fib6_get_table(dev_net(dev), tb_id);
David S. Miller38308472011-12-03 18:02:47 -05003161 if (!table)
Thomas Grafc71099a2006-08-04 23:20:06 -07003162 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003163
Wei Wang66f5d6c2017-10-06 12:06:10 -07003164 rcu_read_lock();
3165 for_each_fib6_node_rt_rcu(&table->tb6_root) {
David S. Millerd1918542011-12-28 20:19:20 -05003166 if (dev == rt->dst.dev &&
YOSHIFUJI Hideaki045927f2006-03-20 17:00:48 -08003167 ((rt->rt6i_flags & (RTF_ADDRCONF | RTF_DEFAULT)) == (RTF_ADDRCONF | RTF_DEFAULT)) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07003168 ipv6_addr_equal(&rt->rt6i_gateway, addr))
3169 break;
3170 }
3171 if (rt)
Wei Wangd3843fe2017-10-06 12:06:06 -07003172 ip6_hold_safe(NULL, &rt, false);
Wei Wang66f5d6c2017-10-06 12:06:10 -07003173 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003174 return rt;
3175}
3176
Eric Dumazetb71d1d42011-04-22 04:53:02 +00003177struct rt6_info *rt6_add_dflt_router(const struct in6_addr *gwaddr,
YOSHIFUJI Hideakiebacaaa2006-03-20 17:04:53 -08003178 struct net_device *dev,
3179 unsigned int pref)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003180{
Thomas Graf86872cb2006-08-22 00:01:08 -07003181 struct fib6_config cfg = {
David Ahernca254492015-10-12 11:47:10 -07003182 .fc_table = l3mdev_fib_table(dev) ? : RT6_TABLE_DFLT,
Rami Rosen238fc7e2008-02-09 23:43:11 -08003183 .fc_metric = IP6_RT_PRIO_USER,
Thomas Graf86872cb2006-08-22 00:01:08 -07003184 .fc_ifindex = dev->ifindex,
3185 .fc_flags = RTF_GATEWAY | RTF_ADDRCONF | RTF_DEFAULT |
3186 RTF_UP | RTF_EXPIRES | RTF_PREF(pref),
Xin Longb91d5322017-08-03 14:13:46 +08003187 .fc_protocol = RTPROT_RA,
Eric W. Biederman15e47302012-09-07 20:12:54 +00003188 .fc_nlinfo.portid = 0,
Daniel Lezcano55786892008-03-04 13:47:47 -08003189 .fc_nlinfo.nlh = NULL,
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09003190 .fc_nlinfo.nl_net = dev_net(dev),
Thomas Graf86872cb2006-08-22 00:01:08 -07003191 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07003192
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00003193 cfg.fc_gateway = *gwaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003194
David Ahern333c4302017-05-21 10:12:04 -06003195 if (!ip6_route_add(&cfg, NULL)) {
David Ahern830218c2016-10-24 10:52:35 -07003196 struct fib6_table *table;
3197
3198 table = fib6_get_table(dev_net(dev), cfg.fc_table);
3199 if (table)
3200 table->flags |= RT6_TABLE_HAS_DFLT_ROUTER;
3201 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003202
Linus Torvalds1da177e2005-04-16 15:20:36 -07003203 return rt6_get_dflt_router(gwaddr, dev);
3204}
3205
David Ahern830218c2016-10-24 10:52:35 -07003206static void __rt6_purge_dflt_routers(struct fib6_table *table)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003207{
3208 struct rt6_info *rt;
3209
3210restart:
Wei Wang66f5d6c2017-10-06 12:06:10 -07003211 rcu_read_lock();
3212 for_each_fib6_node_rt_rcu(&table->tb6_root) {
Lorenzo Colitti3e8b0ac2013-03-03 20:46:46 +00003213 if (rt->rt6i_flags & (RTF_DEFAULT | RTF_ADDRCONF) &&
3214 (!rt->rt6i_idev || rt->rt6i_idev->cnf.accept_ra != 2)) {
Wei Wangd3843fe2017-10-06 12:06:06 -07003215 if (dst_hold_safe(&rt->dst)) {
Wei Wang66f5d6c2017-10-06 12:06:10 -07003216 rcu_read_unlock();
Wei Wangd3843fe2017-10-06 12:06:06 -07003217 ip6_del_rt(rt);
3218 } else {
Wei Wang66f5d6c2017-10-06 12:06:10 -07003219 rcu_read_unlock();
Wei Wangd3843fe2017-10-06 12:06:06 -07003220 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003221 goto restart;
3222 }
3223 }
Wei Wang66f5d6c2017-10-06 12:06:10 -07003224 rcu_read_unlock();
David Ahern830218c2016-10-24 10:52:35 -07003225
3226 table->flags &= ~RT6_TABLE_HAS_DFLT_ROUTER;
3227}
3228
3229void rt6_purge_dflt_routers(struct net *net)
3230{
3231 struct fib6_table *table;
3232 struct hlist_head *head;
3233 unsigned int h;
3234
3235 rcu_read_lock();
3236
3237 for (h = 0; h < FIB6_TABLE_HASHSZ; h++) {
3238 head = &net->ipv6.fib_table_hash[h];
3239 hlist_for_each_entry_rcu(table, head, tb6_hlist) {
3240 if (table->flags & RT6_TABLE_HAS_DFLT_ROUTER)
3241 __rt6_purge_dflt_routers(table);
3242 }
3243 }
3244
3245 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003246}
3247
Daniel Lezcano55786892008-03-04 13:47:47 -08003248static void rtmsg_to_fib6_config(struct net *net,
3249 struct in6_rtmsg *rtmsg,
Thomas Graf86872cb2006-08-22 00:01:08 -07003250 struct fib6_config *cfg)
3251{
3252 memset(cfg, 0, sizeof(*cfg));
3253
David Ahernca254492015-10-12 11:47:10 -07003254 cfg->fc_table = l3mdev_fib_table_by_index(net, rtmsg->rtmsg_ifindex) ?
3255 : RT6_TABLE_MAIN;
Thomas Graf86872cb2006-08-22 00:01:08 -07003256 cfg->fc_ifindex = rtmsg->rtmsg_ifindex;
3257 cfg->fc_metric = rtmsg->rtmsg_metric;
3258 cfg->fc_expires = rtmsg->rtmsg_info;
3259 cfg->fc_dst_len = rtmsg->rtmsg_dst_len;
3260 cfg->fc_src_len = rtmsg->rtmsg_src_len;
3261 cfg->fc_flags = rtmsg->rtmsg_flags;
3262
Daniel Lezcano55786892008-03-04 13:47:47 -08003263 cfg->fc_nlinfo.nl_net = net;
Benjamin Theryf1243c22008-02-26 18:10:03 -08003264
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00003265 cfg->fc_dst = rtmsg->rtmsg_dst;
3266 cfg->fc_src = rtmsg->rtmsg_src;
3267 cfg->fc_gateway = rtmsg->rtmsg_gateway;
Thomas Graf86872cb2006-08-22 00:01:08 -07003268}
3269
Daniel Lezcano55786892008-03-04 13:47:47 -08003270int ipv6_route_ioctl(struct net *net, unsigned int cmd, void __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003271{
Thomas Graf86872cb2006-08-22 00:01:08 -07003272 struct fib6_config cfg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003273 struct in6_rtmsg rtmsg;
3274 int err;
3275
Ian Morris67ba4152014-08-24 21:53:10 +01003276 switch (cmd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003277 case SIOCADDRT: /* Add a route */
3278 case SIOCDELRT: /* Delete a route */
Eric W. Biedermanaf31f412012-11-16 03:03:06 +00003279 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003280 return -EPERM;
3281 err = copy_from_user(&rtmsg, arg,
3282 sizeof(struct in6_rtmsg));
3283 if (err)
3284 return -EFAULT;
Thomas Graf86872cb2006-08-22 00:01:08 -07003285
Daniel Lezcano55786892008-03-04 13:47:47 -08003286 rtmsg_to_fib6_config(net, &rtmsg, &cfg);
Thomas Graf86872cb2006-08-22 00:01:08 -07003287
Linus Torvalds1da177e2005-04-16 15:20:36 -07003288 rtnl_lock();
3289 switch (cmd) {
3290 case SIOCADDRT:
David Ahern333c4302017-05-21 10:12:04 -06003291 err = ip6_route_add(&cfg, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003292 break;
3293 case SIOCDELRT:
David Ahern333c4302017-05-21 10:12:04 -06003294 err = ip6_route_del(&cfg, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003295 break;
3296 default:
3297 err = -EINVAL;
3298 }
3299 rtnl_unlock();
3300
3301 return err;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07003302 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003303
3304 return -EINVAL;
3305}
3306
3307/*
3308 * Drop the packet on the floor
3309 */
3310
Brian Haleyd5fdd6b2009-06-23 04:31:07 -07003311static int ip6_pkt_drop(struct sk_buff *skb, u8 code, int ipstats_mib_noroutes)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003312{
YOSHIFUJI Hideaki612f09e2007-04-13 16:18:02 -07003313 int type;
Eric Dumazetadf30902009-06-02 05:19:30 +00003314 struct dst_entry *dst = skb_dst(skb);
YOSHIFUJI Hideaki612f09e2007-04-13 16:18:02 -07003315 switch (ipstats_mib_noroutes) {
3316 case IPSTATS_MIB_INNOROUTES:
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -07003317 type = ipv6_addr_type(&ipv6_hdr(skb)->daddr);
Ulrich Weber45bb0062010-02-25 23:28:58 +00003318 if (type == IPV6_ADDR_ANY) {
Denis V. Lunev3bd653c2008-10-08 10:54:51 -07003319 IP6_INC_STATS(dev_net(dst->dev), ip6_dst_idev(dst),
3320 IPSTATS_MIB_INADDRERRORS);
YOSHIFUJI Hideaki612f09e2007-04-13 16:18:02 -07003321 break;
3322 }
3323 /* FALLTHROUGH */
3324 case IPSTATS_MIB_OUTNOROUTES:
Denis V. Lunev3bd653c2008-10-08 10:54:51 -07003325 IP6_INC_STATS(dev_net(dst->dev), ip6_dst_idev(dst),
3326 ipstats_mib_noroutes);
YOSHIFUJI Hideaki612f09e2007-04-13 16:18:02 -07003327 break;
3328 }
Alexey Dobriyan3ffe5332010-02-18 08:25:24 +00003329 icmpv6_send(skb, ICMPV6_DEST_UNREACH, code, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003330 kfree_skb(skb);
3331 return 0;
3332}
3333
Thomas Graf9ce8ade2006-10-18 20:46:54 -07003334static int ip6_pkt_discard(struct sk_buff *skb)
3335{
YOSHIFUJI Hideaki612f09e2007-04-13 16:18:02 -07003336 return ip6_pkt_drop(skb, ICMPV6_NOROUTE, IPSTATS_MIB_INNOROUTES);
Thomas Graf9ce8ade2006-10-18 20:46:54 -07003337}
3338
Eric W. Biedermanede20592015-10-07 16:48:47 -05003339static int ip6_pkt_discard_out(struct net *net, struct sock *sk, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003340{
Eric Dumazetadf30902009-06-02 05:19:30 +00003341 skb->dev = skb_dst(skb)->dev;
YOSHIFUJI Hideaki612f09e2007-04-13 16:18:02 -07003342 return ip6_pkt_drop(skb, ICMPV6_NOROUTE, IPSTATS_MIB_OUTNOROUTES);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003343}
3344
Thomas Graf9ce8ade2006-10-18 20:46:54 -07003345static int ip6_pkt_prohibit(struct sk_buff *skb)
3346{
YOSHIFUJI Hideaki612f09e2007-04-13 16:18:02 -07003347 return ip6_pkt_drop(skb, ICMPV6_ADM_PROHIBITED, IPSTATS_MIB_INNOROUTES);
Thomas Graf9ce8ade2006-10-18 20:46:54 -07003348}
3349
Eric W. Biedermanede20592015-10-07 16:48:47 -05003350static int ip6_pkt_prohibit_out(struct net *net, struct sock *sk, struct sk_buff *skb)
Thomas Graf9ce8ade2006-10-18 20:46:54 -07003351{
Eric Dumazetadf30902009-06-02 05:19:30 +00003352 skb->dev = skb_dst(skb)->dev;
YOSHIFUJI Hideaki612f09e2007-04-13 16:18:02 -07003353 return ip6_pkt_drop(skb, ICMPV6_ADM_PROHIBITED, IPSTATS_MIB_OUTNOROUTES);
Thomas Graf9ce8ade2006-10-18 20:46:54 -07003354}
3355
Linus Torvalds1da177e2005-04-16 15:20:36 -07003356/*
3357 * Allocate a dst for local (unicast / anycast) address.
3358 */
3359
3360struct rt6_info *addrconf_dst_alloc(struct inet6_dev *idev,
3361 const struct in6_addr *addr,
David S. Miller8f031512011-12-06 16:48:14 -05003362 bool anycast)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003363{
David Ahernca254492015-10-12 11:47:10 -07003364 u32 tb_id;
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09003365 struct net *net = dev_net(idev->dev);
David Ahern4832c302017-08-17 12:17:20 -07003366 struct net_device *dev = idev->dev;
David Ahern5f02ce242016-09-10 12:09:54 -07003367 struct rt6_info *rt;
3368
David Ahern5f02ce242016-09-10 12:09:54 -07003369 rt = ip6_dst_alloc(net, dev, DST_NOCOUNT);
Hannes Frederic Sowaa3300ef2013-12-07 03:33:45 +01003370 if (!rt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003371 return ERR_PTR(-ENOMEM);
3372
Linus Torvalds1da177e2005-04-16 15:20:36 -07003373 in6_dev_hold(idev);
3374
David S. Miller11d53b42011-06-24 15:23:34 -07003375 rt->dst.flags |= DST_HOST;
Changli Gaod8d1f302010-06-10 23:31:35 -07003376 rt->dst.input = ip6_input;
3377 rt->dst.output = ip6_output;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003378 rt->rt6i_idev = idev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003379
David Ahern94b5e0f2017-02-02 08:52:21 -08003380 rt->rt6i_protocol = RTPROT_KERNEL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003381 rt->rt6i_flags = RTF_UP | RTF_NONEXTHOP;
YOSHIFUJI Hideaki58c4fb82005-12-21 22:56:42 +09003382 if (anycast)
3383 rt->rt6i_flags |= RTF_ANYCAST;
3384 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003385 rt->rt6i_flags |= RTF_LOCAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003386
Julian Anastasov550bab42013-10-20 15:43:04 +03003387 rt->rt6i_gateway = *addr;
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00003388 rt->rt6i_dst.addr = *addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003389 rt->rt6i_dst.plen = 128;
David Ahernca254492015-10-12 11:47:10 -07003390 tb_id = l3mdev_fib_table(idev->dev) ? : RT6_TABLE_LOCAL;
3391 rt->rt6i_table = fib6_get_table(net, tb_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003392
Linus Torvalds1da177e2005-04-16 15:20:36 -07003393 return rt;
3394}
3395
Daniel Walterc3968a82011-04-13 21:10:57 +00003396/* remove deleted ip from prefsrc entries */
3397struct arg_dev_net_ip {
3398 struct net_device *dev;
3399 struct net *net;
3400 struct in6_addr *addr;
3401};
3402
3403static int fib6_remove_prefsrc(struct rt6_info *rt, void *arg)
3404{
3405 struct net_device *dev = ((struct arg_dev_net_ip *)arg)->dev;
3406 struct net *net = ((struct arg_dev_net_ip *)arg)->net;
3407 struct in6_addr *addr = ((struct arg_dev_net_ip *)arg)->addr;
3408
David S. Millerd1918542011-12-28 20:19:20 -05003409 if (((void *)rt->dst.dev == dev || !dev) &&
Daniel Walterc3968a82011-04-13 21:10:57 +00003410 rt != net->ipv6.ip6_null_entry &&
3411 ipv6_addr_equal(addr, &rt->rt6i_prefsrc.addr)) {
Wei Wang60006a42017-10-06 12:05:58 -07003412 spin_lock_bh(&rt6_exception_lock);
Daniel Walterc3968a82011-04-13 21:10:57 +00003413 /* remove prefsrc entry */
3414 rt->rt6i_prefsrc.plen = 0;
Wei Wang60006a42017-10-06 12:05:58 -07003415 /* need to update cache as well */
3416 rt6_exceptions_remove_prefsrc(rt);
3417 spin_unlock_bh(&rt6_exception_lock);
Daniel Walterc3968a82011-04-13 21:10:57 +00003418 }
3419 return 0;
3420}
3421
3422void rt6_remove_prefsrc(struct inet6_ifaddr *ifp)
3423{
3424 struct net *net = dev_net(ifp->idev->dev);
3425 struct arg_dev_net_ip adni = {
3426 .dev = ifp->idev->dev,
3427 .net = net,
3428 .addr = &ifp->addr,
3429 };
Li RongQing0c3584d2013-12-27 16:32:38 +08003430 fib6_clean_all(net, fib6_remove_prefsrc, &adni);
Daniel Walterc3968a82011-04-13 21:10:57 +00003431}
3432
Duan Jiongbe7a0102014-05-15 15:56:14 +08003433#define RTF_RA_ROUTER (RTF_ADDRCONF | RTF_DEFAULT | RTF_GATEWAY)
Duan Jiongbe7a0102014-05-15 15:56:14 +08003434
3435/* Remove routers and update dst entries when gateway turn into host. */
3436static int fib6_clean_tohost(struct rt6_info *rt, void *arg)
3437{
3438 struct in6_addr *gateway = (struct in6_addr *)arg;
3439
Wei Wang2b760fc2017-10-06 12:06:03 -07003440 if (((rt->rt6i_flags & RTF_RA_ROUTER) == RTF_RA_ROUTER) &&
3441 ipv6_addr_equal(gateway, &rt->rt6i_gateway)) {
Duan Jiongbe7a0102014-05-15 15:56:14 +08003442 return -1;
3443 }
Wei Wangb16cb452017-10-06 12:06:00 -07003444
3445 /* Further clean up cached routes in exception table.
3446 * This is needed because cached route may have a different
3447 * gateway than its 'parent' in the case of an ip redirect.
3448 */
3449 rt6_exceptions_clean_tohost(rt, gateway);
3450
Duan Jiongbe7a0102014-05-15 15:56:14 +08003451 return 0;
3452}
3453
3454void rt6_clean_tohost(struct net *net, struct in6_addr *gateway)
3455{
3456 fib6_clean_all(net, fib6_clean_tohost, gateway);
3457}
3458
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003459struct arg_dev_net {
3460 struct net_device *dev;
3461 struct net *net;
3462};
3463
David Aherna1a22c12017-01-18 07:40:36 -08003464/* called with write lock held for table with rt */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003465static int fib6_ifdown(struct rt6_info *rt, void *arg)
3466{
stephen hemmingerbc3ef662010-12-16 17:42:40 +00003467 const struct arg_dev_net *adn = arg;
3468 const struct net_device *dev = adn->dev;
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003469
David S. Millerd1918542011-12-28 20:19:20 -05003470 if ((rt->dst.dev == dev || !dev) &&
David Aherna1a22c12017-01-18 07:40:36 -08003471 rt != adn->net->ipv6.ip6_null_entry &&
3472 (rt->rt6i_nsiblings == 0 ||
David Ahern8397ed32017-06-07 12:26:23 -06003473 (dev && netdev_unregistering(dev)) ||
David Aherna1a22c12017-01-18 07:40:36 -08003474 !rt->rt6i_idev->cnf.ignore_routes_with_linkdown))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003475 return -1;
David S. Millerc159d302011-12-26 15:24:36 -05003476
Linus Torvalds1da177e2005-04-16 15:20:36 -07003477 return 0;
3478}
3479
Daniel Lezcanof3db4852008-03-03 23:27:06 -08003480void rt6_ifdown(struct net *net, struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003481{
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003482 struct arg_dev_net adn = {
3483 .dev = dev,
3484 .net = net,
3485 };
3486
Li RongQing0c3584d2013-12-27 16:32:38 +08003487 fib6_clean_all(net, fib6_ifdown, &adn);
Eric W. Biedermane332bc62015-10-12 11:02:08 -05003488 if (dev)
3489 rt6_uncached_list_flush_dev(net, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003490}
3491
Eric Dumazet95c96172012-04-15 05:58:06 +00003492struct rt6_mtu_change_arg {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003493 struct net_device *dev;
Eric Dumazet95c96172012-04-15 05:58:06 +00003494 unsigned int mtu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003495};
3496
3497static int rt6_mtu_change_route(struct rt6_info *rt, void *p_arg)
3498{
3499 struct rt6_mtu_change_arg *arg = (struct rt6_mtu_change_arg *) p_arg;
3500 struct inet6_dev *idev;
3501
3502 /* In IPv6 pmtu discovery is not optional,
3503 so that RTAX_MTU lock cannot disable it.
3504 We still use this lock to block changes
3505 caused by addrconf/ndisc.
3506 */
3507
3508 idev = __in6_dev_get(arg->dev);
David S. Miller38308472011-12-03 18:02:47 -05003509 if (!idev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003510 return 0;
3511
3512 /* For administrative MTU increase, there is no way to discover
3513 IPv6 PMTU increase, so PMTU increase should be updated here.
3514 Since RFC 1981 doesn't include administrative MTU increase
3515 update PMTU increase is a MUST. (i.e. jumbo frame)
3516 */
3517 /*
3518 If new MTU is less than route PMTU, this new MTU will be the
3519 lowest MTU in the path, update the route PMTU to reflect PMTU
3520 decreases; if new MTU is greater than route PMTU, and the
3521 old MTU is the lowest MTU in the path, update the route PMTU
3522 to reflect the increase. In this case if the other nodes' MTU
3523 also have the lowest MTU, TOO BIG MESSAGE will be lead to
Alexander Alemayhu67c408c2017-01-07 23:53:00 +01003524 PMTU discovery.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003525 */
David S. Millerd1918542011-12-28 20:19:20 -05003526 if (rt->dst.dev == arg->dev &&
Maciej Żenczykowskifb56be82016-11-04 14:51:54 -07003527 dst_metric_raw(&rt->dst, RTAX_MTU) &&
Martin KaFai Lau4b32b5a2015-04-28 13:03:06 -07003528 !dst_metric_locked(&rt->dst, RTAX_MTU)) {
Wei Wangf5bbe7e2017-10-06 12:05:59 -07003529 spin_lock_bh(&rt6_exception_lock);
Wei Wang2b760fc2017-10-06 12:06:03 -07003530 if (dst_mtu(&rt->dst) >= arg->mtu ||
3531 (dst_mtu(&rt->dst) < arg->mtu &&
3532 dst_mtu(&rt->dst) == idev->cnf.mtu6)) {
Martin KaFai Lau4b32b5a2015-04-28 13:03:06 -07003533 dst_metric_set(&rt->dst, RTAX_MTU, arg->mtu);
3534 }
Wei Wangf5bbe7e2017-10-06 12:05:59 -07003535 rt6_exceptions_update_pmtu(rt, arg->mtu);
3536 spin_unlock_bh(&rt6_exception_lock);
Simon Arlott566cfd82007-07-26 00:09:55 -07003537 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003538 return 0;
3539}
3540
Eric Dumazet95c96172012-04-15 05:58:06 +00003541void rt6_mtu_change(struct net_device *dev, unsigned int mtu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003542{
Thomas Grafc71099a2006-08-04 23:20:06 -07003543 struct rt6_mtu_change_arg arg = {
3544 .dev = dev,
3545 .mtu = mtu,
3546 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07003547
Li RongQing0c3584d2013-12-27 16:32:38 +08003548 fib6_clean_all(dev_net(dev), rt6_mtu_change_route, &arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003549}
3550
Patrick McHardyef7c79e2007-06-05 12:38:30 -07003551static const struct nla_policy rtm_ipv6_policy[RTA_MAX+1] = {
Thomas Graf5176f912006-08-26 20:13:18 -07003552 [RTA_GATEWAY] = { .len = sizeof(struct in6_addr) },
Thomas Graf86872cb2006-08-22 00:01:08 -07003553 [RTA_OIF] = { .type = NLA_U32 },
Thomas Grafab364a62006-08-22 00:01:47 -07003554 [RTA_IIF] = { .type = NLA_U32 },
Thomas Graf86872cb2006-08-22 00:01:08 -07003555 [RTA_PRIORITY] = { .type = NLA_U32 },
3556 [RTA_METRICS] = { .type = NLA_NESTED },
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00003557 [RTA_MULTIPATH] = { .len = sizeof(struct rtnexthop) },
Lubomir Rintelc78ba6d2015-03-11 15:39:21 +01003558 [RTA_PREF] = { .type = NLA_U8 },
Roopa Prabhu19e42e42015-07-21 10:43:48 +02003559 [RTA_ENCAP_TYPE] = { .type = NLA_U16 },
3560 [RTA_ENCAP] = { .type = NLA_NESTED },
Xin Long32bc2012015-12-16 17:50:11 +08003561 [RTA_EXPIRES] = { .type = NLA_U32 },
Lorenzo Colitti622ec2c2016-11-04 02:23:42 +09003562 [RTA_UID] = { .type = NLA_U32 },
Liping Zhang3b45a412017-02-27 20:59:39 +08003563 [RTA_MARK] = { .type = NLA_U32 },
Thomas Graf86872cb2006-08-22 00:01:08 -07003564};
3565
3566static int rtm_to_fib6_config(struct sk_buff *skb, struct nlmsghdr *nlh,
David Ahern333c4302017-05-21 10:12:04 -06003567 struct fib6_config *cfg,
3568 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003569{
Thomas Graf86872cb2006-08-22 00:01:08 -07003570 struct rtmsg *rtm;
3571 struct nlattr *tb[RTA_MAX+1];
Lubomir Rintelc78ba6d2015-03-11 15:39:21 +01003572 unsigned int pref;
Thomas Graf86872cb2006-08-22 00:01:08 -07003573 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003574
Johannes Bergfceb6432017-04-12 14:34:07 +02003575 err = nlmsg_parse(nlh, sizeof(*rtm), tb, RTA_MAX, rtm_ipv6_policy,
3576 NULL);
Thomas Graf86872cb2006-08-22 00:01:08 -07003577 if (err < 0)
3578 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003579
Thomas Graf86872cb2006-08-22 00:01:08 -07003580 err = -EINVAL;
3581 rtm = nlmsg_data(nlh);
3582 memset(cfg, 0, sizeof(*cfg));
3583
3584 cfg->fc_table = rtm->rtm_table;
3585 cfg->fc_dst_len = rtm->rtm_dst_len;
3586 cfg->fc_src_len = rtm->rtm_src_len;
3587 cfg->fc_flags = RTF_UP;
3588 cfg->fc_protocol = rtm->rtm_protocol;
Nicolas Dichtelef2c7d72012-09-05 02:12:42 +00003589 cfg->fc_type = rtm->rtm_type;
Thomas Graf86872cb2006-08-22 00:01:08 -07003590
Nicolas Dichtelef2c7d72012-09-05 02:12:42 +00003591 if (rtm->rtm_type == RTN_UNREACHABLE ||
3592 rtm->rtm_type == RTN_BLACKHOLE ||
Nicolas Dichtelb4949ab2012-09-06 05:53:35 +00003593 rtm->rtm_type == RTN_PROHIBIT ||
3594 rtm->rtm_type == RTN_THROW)
Thomas Graf86872cb2006-08-22 00:01:08 -07003595 cfg->fc_flags |= RTF_REJECT;
3596
Maciej Żenczykowskiab79ad12010-09-27 00:07:02 +00003597 if (rtm->rtm_type == RTN_LOCAL)
3598 cfg->fc_flags |= RTF_LOCAL;
3599
Martin KaFai Lau1f56a01f2015-04-28 13:03:03 -07003600 if (rtm->rtm_flags & RTM_F_CLONED)
3601 cfg->fc_flags |= RTF_CACHE;
3602
Eric W. Biederman15e47302012-09-07 20:12:54 +00003603 cfg->fc_nlinfo.portid = NETLINK_CB(skb).portid;
Thomas Graf86872cb2006-08-22 00:01:08 -07003604 cfg->fc_nlinfo.nlh = nlh;
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09003605 cfg->fc_nlinfo.nl_net = sock_net(skb->sk);
Thomas Graf86872cb2006-08-22 00:01:08 -07003606
3607 if (tb[RTA_GATEWAY]) {
Jiri Benc67b61f62015-03-29 16:59:26 +02003608 cfg->fc_gateway = nla_get_in6_addr(tb[RTA_GATEWAY]);
Thomas Graf86872cb2006-08-22 00:01:08 -07003609 cfg->fc_flags |= RTF_GATEWAY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003610 }
Thomas Graf86872cb2006-08-22 00:01:08 -07003611
3612 if (tb[RTA_DST]) {
3613 int plen = (rtm->rtm_dst_len + 7) >> 3;
3614
3615 if (nla_len(tb[RTA_DST]) < plen)
3616 goto errout;
3617
3618 nla_memcpy(&cfg->fc_dst, tb[RTA_DST], plen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003619 }
Thomas Graf86872cb2006-08-22 00:01:08 -07003620
3621 if (tb[RTA_SRC]) {
3622 int plen = (rtm->rtm_src_len + 7) >> 3;
3623
3624 if (nla_len(tb[RTA_SRC]) < plen)
3625 goto errout;
3626
3627 nla_memcpy(&cfg->fc_src, tb[RTA_SRC], plen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003628 }
Thomas Graf86872cb2006-08-22 00:01:08 -07003629
Daniel Walterc3968a82011-04-13 21:10:57 +00003630 if (tb[RTA_PREFSRC])
Jiri Benc67b61f62015-03-29 16:59:26 +02003631 cfg->fc_prefsrc = nla_get_in6_addr(tb[RTA_PREFSRC]);
Daniel Walterc3968a82011-04-13 21:10:57 +00003632
Thomas Graf86872cb2006-08-22 00:01:08 -07003633 if (tb[RTA_OIF])
3634 cfg->fc_ifindex = nla_get_u32(tb[RTA_OIF]);
3635
3636 if (tb[RTA_PRIORITY])
3637 cfg->fc_metric = nla_get_u32(tb[RTA_PRIORITY]);
3638
3639 if (tb[RTA_METRICS]) {
3640 cfg->fc_mx = nla_data(tb[RTA_METRICS]);
3641 cfg->fc_mx_len = nla_len(tb[RTA_METRICS]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003642 }
Thomas Graf86872cb2006-08-22 00:01:08 -07003643
3644 if (tb[RTA_TABLE])
3645 cfg->fc_table = nla_get_u32(tb[RTA_TABLE]);
3646
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00003647 if (tb[RTA_MULTIPATH]) {
3648 cfg->fc_mp = nla_data(tb[RTA_MULTIPATH]);
3649 cfg->fc_mp_len = nla_len(tb[RTA_MULTIPATH]);
David Ahern9ed59592017-01-17 14:57:36 -08003650
3651 err = lwtunnel_valid_encap_type_attr(cfg->fc_mp,
David Ahernc255bd62017-05-27 16:19:27 -06003652 cfg->fc_mp_len, extack);
David Ahern9ed59592017-01-17 14:57:36 -08003653 if (err < 0)
3654 goto errout;
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00003655 }
3656
Lubomir Rintelc78ba6d2015-03-11 15:39:21 +01003657 if (tb[RTA_PREF]) {
3658 pref = nla_get_u8(tb[RTA_PREF]);
3659 if (pref != ICMPV6_ROUTER_PREF_LOW &&
3660 pref != ICMPV6_ROUTER_PREF_HIGH)
3661 pref = ICMPV6_ROUTER_PREF_MEDIUM;
3662 cfg->fc_flags |= RTF_PREF(pref);
3663 }
3664
Roopa Prabhu19e42e42015-07-21 10:43:48 +02003665 if (tb[RTA_ENCAP])
3666 cfg->fc_encap = tb[RTA_ENCAP];
3667
David Ahern9ed59592017-01-17 14:57:36 -08003668 if (tb[RTA_ENCAP_TYPE]) {
Roopa Prabhu19e42e42015-07-21 10:43:48 +02003669 cfg->fc_encap_type = nla_get_u16(tb[RTA_ENCAP_TYPE]);
3670
David Ahernc255bd62017-05-27 16:19:27 -06003671 err = lwtunnel_valid_encap_type(cfg->fc_encap_type, extack);
David Ahern9ed59592017-01-17 14:57:36 -08003672 if (err < 0)
3673 goto errout;
3674 }
3675
Xin Long32bc2012015-12-16 17:50:11 +08003676 if (tb[RTA_EXPIRES]) {
3677 unsigned long timeout = addrconf_timeout_fixup(nla_get_u32(tb[RTA_EXPIRES]), HZ);
3678
3679 if (addrconf_finite_timeout(timeout)) {
3680 cfg->fc_expires = jiffies_to_clock_t(timeout * HZ);
3681 cfg->fc_flags |= RTF_EXPIRES;
3682 }
3683 }
3684
Thomas Graf86872cb2006-08-22 00:01:08 -07003685 err = 0;
3686errout:
3687 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003688}
3689
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003690struct rt6_nh {
3691 struct rt6_info *rt6_info;
3692 struct fib6_config r_cfg;
3693 struct mx6_config mxc;
3694 struct list_head next;
3695};
3696
3697static void ip6_print_replace_route_err(struct list_head *rt6_nh_list)
3698{
3699 struct rt6_nh *nh;
3700
3701 list_for_each_entry(nh, rt6_nh_list, next) {
David Ahern7d4d5062017-02-02 12:37:12 -08003702 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 -07003703 &nh->r_cfg.fc_dst, &nh->r_cfg.fc_gateway,
3704 nh->r_cfg.fc_ifindex);
3705 }
3706}
3707
3708static int ip6_route_info_append(struct list_head *rt6_nh_list,
3709 struct rt6_info *rt, struct fib6_config *r_cfg)
3710{
3711 struct rt6_nh *nh;
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003712 int err = -EEXIST;
3713
3714 list_for_each_entry(nh, rt6_nh_list, next) {
3715 /* check if rt6_info already exists */
David Ahernf06b7542017-07-05 14:41:46 -06003716 if (rt6_duplicate_nexthop(nh->rt6_info, rt))
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003717 return err;
3718 }
3719
3720 nh = kzalloc(sizeof(*nh), GFP_KERNEL);
3721 if (!nh)
3722 return -ENOMEM;
3723 nh->rt6_info = rt;
3724 err = ip6_convert_metrics(&nh->mxc, r_cfg);
3725 if (err) {
3726 kfree(nh);
3727 return err;
3728 }
3729 memcpy(&nh->r_cfg, r_cfg, sizeof(*r_cfg));
3730 list_add_tail(&nh->next, rt6_nh_list);
3731
3732 return 0;
3733}
3734
David Ahern3b1137f2017-02-02 12:37:10 -08003735static void ip6_route_mpath_notify(struct rt6_info *rt,
3736 struct rt6_info *rt_last,
3737 struct nl_info *info,
3738 __u16 nlflags)
3739{
3740 /* if this is an APPEND route, then rt points to the first route
3741 * inserted and rt_last points to last route inserted. Userspace
3742 * wants a consistent dump of the route which starts at the first
3743 * nexthop. Since sibling routes are always added at the end of
3744 * the list, find the first sibling of the last route appended
3745 */
3746 if ((nlflags & NLM_F_APPEND) && rt_last && rt_last->rt6i_nsiblings) {
3747 rt = list_first_entry(&rt_last->rt6i_siblings,
3748 struct rt6_info,
3749 rt6i_siblings);
3750 }
3751
3752 if (rt)
3753 inet6_rt_notify(RTM_NEWROUTE, rt, info, nlflags);
3754}
3755
David Ahern333c4302017-05-21 10:12:04 -06003756static int ip6_route_multipath_add(struct fib6_config *cfg,
3757 struct netlink_ext_ack *extack)
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00003758{
David Ahern3b1137f2017-02-02 12:37:10 -08003759 struct rt6_info *rt_notif = NULL, *rt_last = NULL;
3760 struct nl_info *info = &cfg->fc_nlinfo;
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00003761 struct fib6_config r_cfg;
3762 struct rtnexthop *rtnh;
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003763 struct rt6_info *rt;
3764 struct rt6_nh *err_nh;
3765 struct rt6_nh *nh, *nh_safe;
David Ahern3b1137f2017-02-02 12:37:10 -08003766 __u16 nlflags;
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00003767 int remaining;
3768 int attrlen;
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003769 int err = 1;
3770 int nhn = 0;
3771 int replace = (cfg->fc_nlinfo.nlh &&
3772 (cfg->fc_nlinfo.nlh->nlmsg_flags & NLM_F_REPLACE));
3773 LIST_HEAD(rt6_nh_list);
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00003774
David Ahern3b1137f2017-02-02 12:37:10 -08003775 nlflags = replace ? NLM_F_REPLACE : NLM_F_CREATE;
3776 if (info->nlh && info->nlh->nlmsg_flags & NLM_F_APPEND)
3777 nlflags |= NLM_F_APPEND;
3778
Michal Kubeček35f1b4e2015-05-18 20:53:55 +02003779 remaining = cfg->fc_mp_len;
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00003780 rtnh = (struct rtnexthop *)cfg->fc_mp;
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00003781
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003782 /* Parse a Multipath Entry and build a list (rt6_nh_list) of
3783 * rt6_info structs per nexthop
3784 */
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00003785 while (rtnh_ok(rtnh, remaining)) {
3786 memcpy(&r_cfg, cfg, sizeof(*cfg));
3787 if (rtnh->rtnh_ifindex)
3788 r_cfg.fc_ifindex = rtnh->rtnh_ifindex;
3789
3790 attrlen = rtnh_attrlen(rtnh);
3791 if (attrlen > 0) {
3792 struct nlattr *nla, *attrs = rtnh_attrs(rtnh);
3793
3794 nla = nla_find(attrs, attrlen, RTA_GATEWAY);
3795 if (nla) {
Jiri Benc67b61f62015-03-29 16:59:26 +02003796 r_cfg.fc_gateway = nla_get_in6_addr(nla);
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00003797 r_cfg.fc_flags |= RTF_GATEWAY;
3798 }
Roopa Prabhu19e42e42015-07-21 10:43:48 +02003799 r_cfg.fc_encap = nla_find(attrs, attrlen, RTA_ENCAP);
3800 nla = nla_find(attrs, attrlen, RTA_ENCAP_TYPE);
3801 if (nla)
3802 r_cfg.fc_encap_type = nla_get_u16(nla);
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00003803 }
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003804
David Ahern333c4302017-05-21 10:12:04 -06003805 rt = ip6_route_info_create(&r_cfg, extack);
Roopa Prabhu8c5b83f2015-10-10 08:26:36 -07003806 if (IS_ERR(rt)) {
3807 err = PTR_ERR(rt);
3808 rt = NULL;
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003809 goto cleanup;
Roopa Prabhu8c5b83f2015-10-10 08:26:36 -07003810 }
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003811
3812 err = ip6_route_info_append(&rt6_nh_list, rt, &r_cfg);
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00003813 if (err) {
Wei Wang587fea72017-06-17 10:42:36 -07003814 dst_release_immediate(&rt->dst);
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003815 goto cleanup;
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00003816 }
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003817
3818 rtnh = rtnh_next(rtnh, &remaining);
3819 }
3820
David Ahern3b1137f2017-02-02 12:37:10 -08003821 /* for add and replace send one notification with all nexthops.
3822 * Skip the notification in fib6_add_rt2node and send one with
3823 * the full route when done
3824 */
3825 info->skip_notify = 1;
3826
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003827 err_nh = NULL;
3828 list_for_each_entry(nh, &rt6_nh_list, next) {
David Ahern3b1137f2017-02-02 12:37:10 -08003829 rt_last = nh->rt6_info;
David Ahern333c4302017-05-21 10:12:04 -06003830 err = __ip6_ins_rt(nh->rt6_info, info, &nh->mxc, extack);
David Ahern3b1137f2017-02-02 12:37:10 -08003831 /* save reference to first route for notification */
3832 if (!rt_notif && !err)
3833 rt_notif = nh->rt6_info;
3834
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003835 /* nh->rt6_info is used or freed at this point, reset to NULL*/
3836 nh->rt6_info = NULL;
3837 if (err) {
3838 if (replace && nhn)
3839 ip6_print_replace_route_err(&rt6_nh_list);
3840 err_nh = nh;
3841 goto add_errout;
3842 }
3843
Nicolas Dichtel1a724182012-11-01 22:58:22 +00003844 /* Because each route is added like a single route we remove
Michal Kubeček27596472015-05-18 20:54:00 +02003845 * these flags after the first nexthop: if there is a collision,
3846 * we have already failed to add the first nexthop:
3847 * fib6_add_rt2node() has rejected it; when replacing, old
3848 * nexthops have been replaced by first new, the rest should
3849 * be added to it.
Nicolas Dichtel1a724182012-11-01 22:58:22 +00003850 */
Michal Kubeček27596472015-05-18 20:54:00 +02003851 cfg->fc_nlinfo.nlh->nlmsg_flags &= ~(NLM_F_EXCL |
3852 NLM_F_REPLACE);
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003853 nhn++;
3854 }
3855
David Ahern3b1137f2017-02-02 12:37:10 -08003856 /* success ... tell user about new route */
3857 ip6_route_mpath_notify(rt_notif, rt_last, info, nlflags);
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003858 goto cleanup;
3859
3860add_errout:
David Ahern3b1137f2017-02-02 12:37:10 -08003861 /* send notification for routes that were added so that
3862 * the delete notifications sent by ip6_route_del are
3863 * coherent
3864 */
3865 if (rt_notif)
3866 ip6_route_mpath_notify(rt_notif, rt_last, info, nlflags);
3867
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003868 /* Delete routes that were already added */
3869 list_for_each_entry(nh, &rt6_nh_list, next) {
3870 if (err_nh == nh)
3871 break;
David Ahern333c4302017-05-21 10:12:04 -06003872 ip6_route_del(&nh->r_cfg, extack);
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003873 }
3874
3875cleanup:
3876 list_for_each_entry_safe(nh, nh_safe, &rt6_nh_list, next) {
Wei Wang587fea72017-06-17 10:42:36 -07003877 if (nh->rt6_info)
3878 dst_release_immediate(&nh->rt6_info->dst);
Wu Fengguang52fe51f2015-09-10 06:57:12 +08003879 kfree(nh->mxc.mx);
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003880 list_del(&nh->next);
3881 kfree(nh);
3882 }
3883
3884 return err;
3885}
3886
David Ahern333c4302017-05-21 10:12:04 -06003887static int ip6_route_multipath_del(struct fib6_config *cfg,
3888 struct netlink_ext_ack *extack)
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003889{
3890 struct fib6_config r_cfg;
3891 struct rtnexthop *rtnh;
3892 int remaining;
3893 int attrlen;
3894 int err = 1, last_err = 0;
3895
3896 remaining = cfg->fc_mp_len;
3897 rtnh = (struct rtnexthop *)cfg->fc_mp;
3898
3899 /* Parse a Multipath Entry */
3900 while (rtnh_ok(rtnh, remaining)) {
3901 memcpy(&r_cfg, cfg, sizeof(*cfg));
3902 if (rtnh->rtnh_ifindex)
3903 r_cfg.fc_ifindex = rtnh->rtnh_ifindex;
3904
3905 attrlen = rtnh_attrlen(rtnh);
3906 if (attrlen > 0) {
3907 struct nlattr *nla, *attrs = rtnh_attrs(rtnh);
3908
3909 nla = nla_find(attrs, attrlen, RTA_GATEWAY);
3910 if (nla) {
3911 nla_memcpy(&r_cfg.fc_gateway, nla, 16);
3912 r_cfg.fc_flags |= RTF_GATEWAY;
3913 }
3914 }
David Ahern333c4302017-05-21 10:12:04 -06003915 err = ip6_route_del(&r_cfg, extack);
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003916 if (err)
3917 last_err = err;
3918
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00003919 rtnh = rtnh_next(rtnh, &remaining);
3920 }
3921
3922 return last_err;
3923}
3924
David Ahernc21ef3e2017-04-16 09:48:24 -07003925static int inet6_rtm_delroute(struct sk_buff *skb, struct nlmsghdr *nlh,
3926 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003927{
Thomas Graf86872cb2006-08-22 00:01:08 -07003928 struct fib6_config cfg;
3929 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003930
David Ahern333c4302017-05-21 10:12:04 -06003931 err = rtm_to_fib6_config(skb, nlh, &cfg, extack);
Thomas Graf86872cb2006-08-22 00:01:08 -07003932 if (err < 0)
3933 return err;
3934
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00003935 if (cfg.fc_mp)
David Ahern333c4302017-05-21 10:12:04 -06003936 return ip6_route_multipath_del(&cfg, extack);
David Ahern0ae81332017-02-02 12:37:08 -08003937 else {
3938 cfg.fc_delete_all_nh = 1;
David Ahern333c4302017-05-21 10:12:04 -06003939 return ip6_route_del(&cfg, extack);
David Ahern0ae81332017-02-02 12:37:08 -08003940 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003941}
3942
David Ahernc21ef3e2017-04-16 09:48:24 -07003943static int inet6_rtm_newroute(struct sk_buff *skb, struct nlmsghdr *nlh,
3944 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003945{
Thomas Graf86872cb2006-08-22 00:01:08 -07003946 struct fib6_config cfg;
3947 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003948
David Ahern333c4302017-05-21 10:12:04 -06003949 err = rtm_to_fib6_config(skb, nlh, &cfg, extack);
Thomas Graf86872cb2006-08-22 00:01:08 -07003950 if (err < 0)
3951 return err;
3952
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00003953 if (cfg.fc_mp)
David Ahern333c4302017-05-21 10:12:04 -06003954 return ip6_route_multipath_add(&cfg, extack);
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00003955 else
David Ahern333c4302017-05-21 10:12:04 -06003956 return ip6_route_add(&cfg, extack);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003957}
3958
David Ahernbeb1afac52017-02-02 12:37:09 -08003959static size_t rt6_nlmsg_size(struct rt6_info *rt)
Thomas Graf339bf982006-11-10 14:10:15 -08003960{
David Ahernbeb1afac52017-02-02 12:37:09 -08003961 int nexthop_len = 0;
3962
3963 if (rt->rt6i_nsiblings) {
3964 nexthop_len = nla_total_size(0) /* RTA_MULTIPATH */
3965 + NLA_ALIGN(sizeof(struct rtnexthop))
3966 + nla_total_size(16) /* RTA_GATEWAY */
David Ahernbeb1afac52017-02-02 12:37:09 -08003967 + lwtunnel_get_encap_size(rt->dst.lwtstate);
3968
3969 nexthop_len *= rt->rt6i_nsiblings;
3970 }
3971
Thomas Graf339bf982006-11-10 14:10:15 -08003972 return NLMSG_ALIGN(sizeof(struct rtmsg))
3973 + nla_total_size(16) /* RTA_SRC */
3974 + nla_total_size(16) /* RTA_DST */
3975 + nla_total_size(16) /* RTA_GATEWAY */
3976 + nla_total_size(16) /* RTA_PREFSRC */
3977 + nla_total_size(4) /* RTA_TABLE */
3978 + nla_total_size(4) /* RTA_IIF */
3979 + nla_total_size(4) /* RTA_OIF */
3980 + nla_total_size(4) /* RTA_PRIORITY */
Noriaki TAKAMIYA6a2b9ce2007-01-23 22:09:41 -08003981 + RTAX_MAX * nla_total_size(4) /* RTA_METRICS */
Daniel Borkmannea697632015-01-05 23:57:47 +01003982 + nla_total_size(sizeof(struct rta_cacheinfo))
Lubomir Rintelc78ba6d2015-03-11 15:39:21 +01003983 + nla_total_size(TCP_CA_NAME_MAX) /* RTAX_CC_ALGO */
Roopa Prabhu19e42e42015-07-21 10:43:48 +02003984 + nla_total_size(1) /* RTA_PREF */
David Ahernbeb1afac52017-02-02 12:37:09 -08003985 + lwtunnel_get_encap_size(rt->dst.lwtstate)
3986 + nexthop_len;
3987}
3988
3989static int rt6_nexthop_info(struct sk_buff *skb, struct rt6_info *rt,
David Ahern5be083c2017-03-06 15:57:31 -08003990 unsigned int *flags, bool skip_oif)
David Ahernbeb1afac52017-02-02 12:37:09 -08003991{
3992 if (!netif_running(rt->dst.dev) || !netif_carrier_ok(rt->dst.dev)) {
3993 *flags |= RTNH_F_LINKDOWN;
3994 if (rt->rt6i_idev->cnf.ignore_routes_with_linkdown)
3995 *flags |= RTNH_F_DEAD;
3996 }
3997
3998 if (rt->rt6i_flags & RTF_GATEWAY) {
3999 if (nla_put_in6_addr(skb, RTA_GATEWAY, &rt->rt6i_gateway) < 0)
4000 goto nla_put_failure;
4001 }
4002
Ido Schimmelfe400792017-08-15 09:09:49 +02004003 if (rt->rt6i_nh_flags & RTNH_F_OFFLOAD)
Ido Schimmel61e4d012017-08-03 13:28:20 +02004004 *flags |= RTNH_F_OFFLOAD;
4005
David Ahern5be083c2017-03-06 15:57:31 -08004006 /* not needed for multipath encoding b/c it has a rtnexthop struct */
4007 if (!skip_oif && rt->dst.dev &&
David Ahernbeb1afac52017-02-02 12:37:09 -08004008 nla_put_u32(skb, RTA_OIF, rt->dst.dev->ifindex))
4009 goto nla_put_failure;
4010
4011 if (rt->dst.lwtstate &&
4012 lwtunnel_fill_encap(skb, rt->dst.lwtstate) < 0)
4013 goto nla_put_failure;
4014
4015 return 0;
4016
4017nla_put_failure:
4018 return -EMSGSIZE;
4019}
4020
David Ahern5be083c2017-03-06 15:57:31 -08004021/* add multipath next hop */
David Ahernbeb1afac52017-02-02 12:37:09 -08004022static int rt6_add_nexthop(struct sk_buff *skb, struct rt6_info *rt)
4023{
4024 struct rtnexthop *rtnh;
4025 unsigned int flags = 0;
4026
4027 rtnh = nla_reserve_nohdr(skb, sizeof(*rtnh));
4028 if (!rtnh)
4029 goto nla_put_failure;
4030
4031 rtnh->rtnh_hops = 0;
4032 rtnh->rtnh_ifindex = rt->dst.dev ? rt->dst.dev->ifindex : 0;
4033
David Ahern5be083c2017-03-06 15:57:31 -08004034 if (rt6_nexthop_info(skb, rt, &flags, true) < 0)
David Ahernbeb1afac52017-02-02 12:37:09 -08004035 goto nla_put_failure;
4036
4037 rtnh->rtnh_flags = flags;
4038
4039 /* length of rtnetlink header + attributes */
4040 rtnh->rtnh_len = nlmsg_get_pos(skb) - (void *)rtnh;
4041
4042 return 0;
4043
4044nla_put_failure:
4045 return -EMSGSIZE;
Thomas Graf339bf982006-11-10 14:10:15 -08004046}
4047
Brian Haley191cd582008-08-14 15:33:21 -07004048static int rt6_fill_node(struct net *net,
4049 struct sk_buff *skb, struct rt6_info *rt,
Jamal Hadi Salim0d51aa82005-06-21 13:51:04 -07004050 struct in6_addr *dst, struct in6_addr *src,
Eric W. Biederman15e47302012-09-07 20:12:54 +00004051 int iif, int type, u32 portid, u32 seq,
David Ahernf8cfe2c2017-01-17 15:51:08 -08004052 unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004053{
Martin KaFai Lau4b32b5a2015-04-28 13:03:06 -07004054 u32 metrics[RTAX_MAX];
Linus Torvalds1da177e2005-04-16 15:20:36 -07004055 struct rtmsg *rtm;
Thomas Graf2d7202b2006-08-22 00:01:27 -07004056 struct nlmsghdr *nlh;
Thomas Grafe3703b32006-11-27 09:27:07 -08004057 long expires;
Patrick McHardy9e762a42006-08-10 23:09:48 -07004058 u32 table;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004059
Eric W. Biederman15e47302012-09-07 20:12:54 +00004060 nlh = nlmsg_put(skb, portid, seq, type, sizeof(*rtm), flags);
David S. Miller38308472011-12-03 18:02:47 -05004061 if (!nlh)
Patrick McHardy26932562007-01-31 23:16:40 -08004062 return -EMSGSIZE;
Thomas Graf2d7202b2006-08-22 00:01:27 -07004063
4064 rtm = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004065 rtm->rtm_family = AF_INET6;
4066 rtm->rtm_dst_len = rt->rt6i_dst.plen;
4067 rtm->rtm_src_len = rt->rt6i_src.plen;
4068 rtm->rtm_tos = 0;
Thomas Grafc71099a2006-08-04 23:20:06 -07004069 if (rt->rt6i_table)
Patrick McHardy9e762a42006-08-10 23:09:48 -07004070 table = rt->rt6i_table->tb6_id;
Thomas Grafc71099a2006-08-04 23:20:06 -07004071 else
Patrick McHardy9e762a42006-08-10 23:09:48 -07004072 table = RT6_TABLE_UNSPEC;
4073 rtm->rtm_table = table;
David S. Millerc78679e2012-04-01 20:27:33 -04004074 if (nla_put_u32(skb, RTA_TABLE, table))
4075 goto nla_put_failure;
Nicolas Dichtelef2c7d72012-09-05 02:12:42 +00004076 if (rt->rt6i_flags & RTF_REJECT) {
4077 switch (rt->dst.error) {
4078 case -EINVAL:
4079 rtm->rtm_type = RTN_BLACKHOLE;
4080 break;
4081 case -EACCES:
4082 rtm->rtm_type = RTN_PROHIBIT;
4083 break;
Nicolas Dichtelb4949ab2012-09-06 05:53:35 +00004084 case -EAGAIN:
4085 rtm->rtm_type = RTN_THROW;
4086 break;
Nicolas Dichtelef2c7d72012-09-05 02:12:42 +00004087 default:
4088 rtm->rtm_type = RTN_UNREACHABLE;
4089 break;
4090 }
4091 }
David S. Miller38308472011-12-03 18:02:47 -05004092 else if (rt->rt6i_flags & RTF_LOCAL)
Maciej Żenczykowskiab79ad12010-09-27 00:07:02 +00004093 rtm->rtm_type = RTN_LOCAL;
David Ahern4ee39732017-03-15 18:14:33 -07004094 else if (rt->rt6i_flags & RTF_ANYCAST)
4095 rtm->rtm_type = RTN_ANYCAST;
David S. Millerd1918542011-12-28 20:19:20 -05004096 else if (rt->dst.dev && (rt->dst.dev->flags & IFF_LOOPBACK))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004097 rtm->rtm_type = RTN_LOCAL;
4098 else
4099 rtm->rtm_type = RTN_UNICAST;
4100 rtm->rtm_flags = 0;
4101 rtm->rtm_scope = RT_SCOPE_UNIVERSE;
4102 rtm->rtm_protocol = rt->rt6i_protocol;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004103
David S. Miller38308472011-12-03 18:02:47 -05004104 if (rt->rt6i_flags & RTF_CACHE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004105 rtm->rtm_flags |= RTM_F_CLONED;
4106
4107 if (dst) {
Jiri Benc930345e2015-03-29 16:59:25 +02004108 if (nla_put_in6_addr(skb, RTA_DST, dst))
David S. Millerc78679e2012-04-01 20:27:33 -04004109 goto nla_put_failure;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09004110 rtm->rtm_dst_len = 128;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004111 } else if (rtm->rtm_dst_len)
Jiri Benc930345e2015-03-29 16:59:25 +02004112 if (nla_put_in6_addr(skb, RTA_DST, &rt->rt6i_dst.addr))
David S. Millerc78679e2012-04-01 20:27:33 -04004113 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004114#ifdef CONFIG_IPV6_SUBTREES
4115 if (src) {
Jiri Benc930345e2015-03-29 16:59:25 +02004116 if (nla_put_in6_addr(skb, RTA_SRC, src))
David S. Millerc78679e2012-04-01 20:27:33 -04004117 goto nla_put_failure;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09004118 rtm->rtm_src_len = 128;
David S. Millerc78679e2012-04-01 20:27:33 -04004119 } else if (rtm->rtm_src_len &&
Jiri Benc930345e2015-03-29 16:59:25 +02004120 nla_put_in6_addr(skb, RTA_SRC, &rt->rt6i_src.addr))
David S. Millerc78679e2012-04-01 20:27:33 -04004121 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004122#endif
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09004123 if (iif) {
4124#ifdef CONFIG_IPV6_MROUTE
4125 if (ipv6_addr_is_multicast(&rt->rt6i_dst.addr)) {
David Ahernfd61c6b2017-01-17 15:51:07 -08004126 int err = ip6mr_get_route(net, skb, rtm, portid);
Nikolay Aleksandrov2cf75072016-09-25 23:08:31 +02004127
David Ahernfd61c6b2017-01-17 15:51:07 -08004128 if (err == 0)
4129 return 0;
4130 if (err < 0)
4131 goto nla_put_failure;
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09004132 } else
4133#endif
David S. Millerc78679e2012-04-01 20:27:33 -04004134 if (nla_put_u32(skb, RTA_IIF, iif))
4135 goto nla_put_failure;
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09004136 } else if (dst) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004137 struct in6_addr saddr_buf;
David S. Millerc78679e2012-04-01 20:27:33 -04004138 if (ip6_route_get_saddr(net, rt, dst, 0, &saddr_buf) == 0 &&
Jiri Benc930345e2015-03-29 16:59:25 +02004139 nla_put_in6_addr(skb, RTA_PREFSRC, &saddr_buf))
David S. Millerc78679e2012-04-01 20:27:33 -04004140 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004141 }
Thomas Graf2d7202b2006-08-22 00:01:27 -07004142
Daniel Walterc3968a82011-04-13 21:10:57 +00004143 if (rt->rt6i_prefsrc.plen) {
4144 struct in6_addr saddr_buf;
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00004145 saddr_buf = rt->rt6i_prefsrc.addr;
Jiri Benc930345e2015-03-29 16:59:25 +02004146 if (nla_put_in6_addr(skb, RTA_PREFSRC, &saddr_buf))
David S. Millerc78679e2012-04-01 20:27:33 -04004147 goto nla_put_failure;
Daniel Walterc3968a82011-04-13 21:10:57 +00004148 }
4149
Martin KaFai Lau4b32b5a2015-04-28 13:03:06 -07004150 memcpy(metrics, dst_metrics_ptr(&rt->dst), sizeof(metrics));
4151 if (rt->rt6i_pmtu)
4152 metrics[RTAX_MTU - 1] = rt->rt6i_pmtu;
4153 if (rtnetlink_put_metrics(skb, metrics) < 0)
Thomas Graf2d7202b2006-08-22 00:01:27 -07004154 goto nla_put_failure;
4155
David S. Millerc78679e2012-04-01 20:27:33 -04004156 if (nla_put_u32(skb, RTA_PRIORITY, rt->rt6i_metric))
4157 goto nla_put_failure;
Li Wei82539472012-07-29 16:01:30 +00004158
David Ahernbeb1afac52017-02-02 12:37:09 -08004159 /* For multipath routes, walk the siblings list and add
4160 * each as a nexthop within RTA_MULTIPATH.
4161 */
4162 if (rt->rt6i_nsiblings) {
4163 struct rt6_info *sibling, *next_sibling;
4164 struct nlattr *mp;
4165
4166 mp = nla_nest_start(skb, RTA_MULTIPATH);
4167 if (!mp)
4168 goto nla_put_failure;
4169
4170 if (rt6_add_nexthop(skb, rt) < 0)
4171 goto nla_put_failure;
4172
4173 list_for_each_entry_safe(sibling, next_sibling,
4174 &rt->rt6i_siblings, rt6i_siblings) {
4175 if (rt6_add_nexthop(skb, sibling) < 0)
4176 goto nla_put_failure;
4177 }
4178
4179 nla_nest_end(skb, mp);
4180 } else {
David Ahern5be083c2017-03-06 15:57:31 -08004181 if (rt6_nexthop_info(skb, rt, &rtm->rtm_flags, false) < 0)
David Ahernbeb1afac52017-02-02 12:37:09 -08004182 goto nla_put_failure;
4183 }
4184
Li Wei82539472012-07-29 16:01:30 +00004185 expires = (rt->rt6i_flags & RTF_EXPIRES) ? rt->dst.expires - jiffies : 0;
YOSHIFUJI Hideaki69cdf8f2008-05-19 16:55:13 -07004186
David S. Miller87a50692012-07-10 05:06:14 -07004187 if (rtnl_put_cacheinfo(skb, &rt->dst, 0, expires, rt->dst.error) < 0)
Thomas Grafe3703b32006-11-27 09:27:07 -08004188 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004189
Lubomir Rintelc78ba6d2015-03-11 15:39:21 +01004190 if (nla_put_u8(skb, RTA_PREF, IPV6_EXTRACT_PREF(rt->rt6i_flags)))
4191 goto nla_put_failure;
4192
Roopa Prabhu19e42e42015-07-21 10:43:48 +02004193
Johannes Berg053c0952015-01-16 22:09:00 +01004194 nlmsg_end(skb, nlh);
4195 return 0;
Thomas Graf2d7202b2006-08-22 00:01:27 -07004196
4197nla_put_failure:
Patrick McHardy26932562007-01-31 23:16:40 -08004198 nlmsg_cancel(skb, nlh);
4199 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004200}
4201
Patrick McHardy1b43af52006-08-10 23:11:17 -07004202int rt6_dump_route(struct rt6_info *rt, void *p_arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004203{
4204 struct rt6_rtnl_dump_arg *arg = (struct rt6_rtnl_dump_arg *) p_arg;
David Ahern1f17e2f2017-01-26 13:54:08 -08004205 struct net *net = arg->net;
4206
4207 if (rt == net->ipv6.ip6_null_entry)
4208 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004209
Thomas Graf2d7202b2006-08-22 00:01:27 -07004210 if (nlmsg_len(arg->cb->nlh) >= sizeof(struct rtmsg)) {
4211 struct rtmsg *rtm = nlmsg_data(arg->cb->nlh);
David Ahernf8cfe2c2017-01-17 15:51:08 -08004212
4213 /* user wants prefix routes only */
4214 if (rtm->rtm_flags & RTM_F_PREFIX &&
4215 !(rt->rt6i_flags & RTF_PREFIX_RT)) {
4216 /* success since this is not a prefix route */
4217 return 1;
4218 }
4219 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004220
David Ahern1f17e2f2017-01-26 13:54:08 -08004221 return rt6_fill_node(net,
Brian Haley191cd582008-08-14 15:33:21 -07004222 arg->skb, rt, NULL, NULL, 0, RTM_NEWROUTE,
Eric W. Biederman15e47302012-09-07 20:12:54 +00004223 NETLINK_CB(arg->cb->skb).portid, arg->cb->nlh->nlmsg_seq,
David Ahernf8cfe2c2017-01-17 15:51:08 -08004224 NLM_F_MULTI);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004225}
4226
David Ahernc21ef3e2017-04-16 09:48:24 -07004227static int inet6_rtm_getroute(struct sk_buff *in_skb, struct nlmsghdr *nlh,
4228 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004229{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09004230 struct net *net = sock_net(in_skb->sk);
Thomas Grafab364a62006-08-22 00:01:47 -07004231 struct nlattr *tb[RTA_MAX+1];
Roopa Prabhu18c3a612017-05-25 10:42:40 -07004232 int err, iif = 0, oif = 0;
4233 struct dst_entry *dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004234 struct rt6_info *rt;
Thomas Grafab364a62006-08-22 00:01:47 -07004235 struct sk_buff *skb;
4236 struct rtmsg *rtm;
David S. Miller4c9483b2011-03-12 16:22:43 -05004237 struct flowi6 fl6;
Roopa Prabhu18c3a612017-05-25 10:42:40 -07004238 bool fibmatch;
Thomas Grafab364a62006-08-22 00:01:47 -07004239
Johannes Bergfceb6432017-04-12 14:34:07 +02004240 err = nlmsg_parse(nlh, sizeof(*rtm), tb, RTA_MAX, rtm_ipv6_policy,
David Ahernc21ef3e2017-04-16 09:48:24 -07004241 extack);
Thomas Grafab364a62006-08-22 00:01:47 -07004242 if (err < 0)
4243 goto errout;
4244
4245 err = -EINVAL;
David S. Miller4c9483b2011-03-12 16:22:43 -05004246 memset(&fl6, 0, sizeof(fl6));
Hannes Frederic Sowa38b70972016-06-11 20:08:19 +02004247 rtm = nlmsg_data(nlh);
4248 fl6.flowlabel = ip6_make_flowinfo(rtm->rtm_tos, 0);
Roopa Prabhu18c3a612017-05-25 10:42:40 -07004249 fibmatch = !!(rtm->rtm_flags & RTM_F_FIB_MATCH);
Thomas Grafab364a62006-08-22 00:01:47 -07004250
4251 if (tb[RTA_SRC]) {
4252 if (nla_len(tb[RTA_SRC]) < sizeof(struct in6_addr))
4253 goto errout;
4254
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00004255 fl6.saddr = *(struct in6_addr *)nla_data(tb[RTA_SRC]);
Thomas Grafab364a62006-08-22 00:01:47 -07004256 }
4257
4258 if (tb[RTA_DST]) {
4259 if (nla_len(tb[RTA_DST]) < sizeof(struct in6_addr))
4260 goto errout;
4261
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00004262 fl6.daddr = *(struct in6_addr *)nla_data(tb[RTA_DST]);
Thomas Grafab364a62006-08-22 00:01:47 -07004263 }
4264
4265 if (tb[RTA_IIF])
4266 iif = nla_get_u32(tb[RTA_IIF]);
4267
4268 if (tb[RTA_OIF])
Shmulik Ladkani72331bc2012-04-01 04:03:45 +00004269 oif = nla_get_u32(tb[RTA_OIF]);
Thomas Grafab364a62006-08-22 00:01:47 -07004270
Lorenzo Colitti2e47b292014-05-15 16:38:41 -07004271 if (tb[RTA_MARK])
4272 fl6.flowi6_mark = nla_get_u32(tb[RTA_MARK]);
4273
Lorenzo Colitti622ec2c2016-11-04 02:23:42 +09004274 if (tb[RTA_UID])
4275 fl6.flowi6_uid = make_kuid(current_user_ns(),
4276 nla_get_u32(tb[RTA_UID]));
4277 else
4278 fl6.flowi6_uid = iif ? INVALID_UID : current_uid();
4279
Thomas Grafab364a62006-08-22 00:01:47 -07004280 if (iif) {
4281 struct net_device *dev;
Shmulik Ladkani72331bc2012-04-01 04:03:45 +00004282 int flags = 0;
4283
Florian Westphal121622d2017-08-15 16:34:42 +02004284 rcu_read_lock();
4285
4286 dev = dev_get_by_index_rcu(net, iif);
Thomas Grafab364a62006-08-22 00:01:47 -07004287 if (!dev) {
Florian Westphal121622d2017-08-15 16:34:42 +02004288 rcu_read_unlock();
Thomas Grafab364a62006-08-22 00:01:47 -07004289 err = -ENODEV;
4290 goto errout;
4291 }
Shmulik Ladkani72331bc2012-04-01 04:03:45 +00004292
4293 fl6.flowi6_iif = iif;
4294
4295 if (!ipv6_addr_any(&fl6.saddr))
4296 flags |= RT6_LOOKUP_F_HAS_SADDR;
4297
Roopa Prabhu18c3a612017-05-25 10:42:40 -07004298 if (!fibmatch)
4299 dst = ip6_route_input_lookup(net, dev, &fl6, flags);
Arnd Bergmann401481e2017-08-18 13:34:22 +02004300 else
4301 dst = ip6_route_lookup(net, &fl6, 0);
Florian Westphal121622d2017-08-15 16:34:42 +02004302
4303 rcu_read_unlock();
Shmulik Ladkani72331bc2012-04-01 04:03:45 +00004304 } else {
4305 fl6.flowi6_oif = oif;
4306
Roopa Prabhu18c3a612017-05-25 10:42:40 -07004307 if (!fibmatch)
4308 dst = ip6_route_output(net, NULL, &fl6);
Arnd Bergmann401481e2017-08-18 13:34:22 +02004309 else
4310 dst = ip6_route_lookup(net, &fl6, 0);
Roopa Prabhu18c3a612017-05-25 10:42:40 -07004311 }
4312
Roopa Prabhu18c3a612017-05-25 10:42:40 -07004313
4314 rt = container_of(dst, struct rt6_info, dst);
4315 if (rt->dst.error) {
4316 err = rt->dst.error;
4317 ip6_rt_put(rt);
4318 goto errout;
Thomas Grafab364a62006-08-22 00:01:47 -07004319 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004320
WANG Cong9d6acb32017-03-01 20:48:39 -08004321 if (rt == net->ipv6.ip6_null_entry) {
4322 err = rt->dst.error;
4323 ip6_rt_put(rt);
4324 goto errout;
4325 }
4326
Linus Torvalds1da177e2005-04-16 15:20:36 -07004327 skb = alloc_skb(NLMSG_GOODSIZE, GFP_KERNEL);
David S. Miller38308472011-12-03 18:02:47 -05004328 if (!skb) {
Amerigo Wang94e187c2012-10-29 00:13:19 +00004329 ip6_rt_put(rt);
Thomas Grafab364a62006-08-22 00:01:47 -07004330 err = -ENOBUFS;
4331 goto errout;
4332 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004333
Changli Gaod8d1f302010-06-10 23:31:35 -07004334 skb_dst_set(skb, &rt->dst);
Roopa Prabhu18c3a612017-05-25 10:42:40 -07004335 if (fibmatch)
4336 err = rt6_fill_node(net, skb, rt, NULL, NULL, iif,
4337 RTM_NEWROUTE, NETLINK_CB(in_skb).portid,
4338 nlh->nlmsg_seq, 0);
4339 else
4340 err = rt6_fill_node(net, skb, rt, &fl6.daddr, &fl6.saddr, iif,
4341 RTM_NEWROUTE, NETLINK_CB(in_skb).portid,
4342 nlh->nlmsg_seq, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004343 if (err < 0) {
Thomas Grafab364a62006-08-22 00:01:47 -07004344 kfree_skb(skb);
4345 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004346 }
4347
Eric W. Biederman15e47302012-09-07 20:12:54 +00004348 err = rtnl_unicast(skb, net, NETLINK_CB(in_skb).portid);
Thomas Grafab364a62006-08-22 00:01:47 -07004349errout:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004350 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004351}
4352
Roopa Prabhu37a1d362015-09-13 10:18:33 -07004353void inet6_rt_notify(int event, struct rt6_info *rt, struct nl_info *info,
4354 unsigned int nlm_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004355{
4356 struct sk_buff *skb;
Daniel Lezcano55786892008-03-04 13:47:47 -08004357 struct net *net = info->nl_net;
Denis V. Lunev528c4ce2007-12-13 09:45:12 -08004358 u32 seq;
4359 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004360
Denis V. Lunev528c4ce2007-12-13 09:45:12 -08004361 err = -ENOBUFS;
David S. Miller38308472011-12-03 18:02:47 -05004362 seq = info->nlh ? info->nlh->nlmsg_seq : 0;
Thomas Graf86872cb2006-08-22 00:01:08 -07004363
Roopa Prabhu19e42e42015-07-21 10:43:48 +02004364 skb = nlmsg_new(rt6_nlmsg_size(rt), gfp_any());
David S. Miller38308472011-12-03 18:02:47 -05004365 if (!skb)
Thomas Graf21713eb2006-08-15 00:35:24 -07004366 goto errout;
4367
Brian Haley191cd582008-08-14 15:33:21 -07004368 err = rt6_fill_node(net, skb, rt, NULL, NULL, 0,
David Ahernf8cfe2c2017-01-17 15:51:08 -08004369 event, info->portid, seq, nlm_flags);
Patrick McHardy26932562007-01-31 23:16:40 -08004370 if (err < 0) {
4371 /* -EMSGSIZE implies BUG in rt6_nlmsg_size() */
4372 WARN_ON(err == -EMSGSIZE);
4373 kfree_skb(skb);
4374 goto errout;
4375 }
Eric W. Biederman15e47302012-09-07 20:12:54 +00004376 rtnl_notify(skb, net, info->portid, RTNLGRP_IPV6_ROUTE,
Pablo Neira Ayuso1ce85fe2009-02-24 23:18:28 -08004377 info->nlh, gfp_any());
4378 return;
Thomas Graf21713eb2006-08-15 00:35:24 -07004379errout:
4380 if (err < 0)
Daniel Lezcano55786892008-03-04 13:47:47 -08004381 rtnl_set_sk_err(net, RTNLGRP_IPV6_ROUTE, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004382}
4383
Daniel Lezcano8ed67782008-03-04 13:48:30 -08004384static int ip6_route_dev_notify(struct notifier_block *this,
Jiri Pirko351638e2013-05-28 01:30:21 +00004385 unsigned long event, void *ptr)
Daniel Lezcano8ed67782008-03-04 13:48:30 -08004386{
Jiri Pirko351638e2013-05-28 01:30:21 +00004387 struct net_device *dev = netdev_notifier_info_to_dev(ptr);
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09004388 struct net *net = dev_net(dev);
Daniel Lezcano8ed67782008-03-04 13:48:30 -08004389
WANG Cong242d3a42017-05-08 10:12:13 -07004390 if (!(dev->flags & IFF_LOOPBACK))
4391 return NOTIFY_OK;
4392
4393 if (event == NETDEV_REGISTER) {
Changli Gaod8d1f302010-06-10 23:31:35 -07004394 net->ipv6.ip6_null_entry->dst.dev = dev;
Daniel Lezcano8ed67782008-03-04 13:48:30 -08004395 net->ipv6.ip6_null_entry->rt6i_idev = in6_dev_get(dev);
4396#ifdef CONFIG_IPV6_MULTIPLE_TABLES
Changli Gaod8d1f302010-06-10 23:31:35 -07004397 net->ipv6.ip6_prohibit_entry->dst.dev = dev;
Daniel Lezcano8ed67782008-03-04 13:48:30 -08004398 net->ipv6.ip6_prohibit_entry->rt6i_idev = in6_dev_get(dev);
Changli Gaod8d1f302010-06-10 23:31:35 -07004399 net->ipv6.ip6_blk_hole_entry->dst.dev = dev;
Daniel Lezcano8ed67782008-03-04 13:48:30 -08004400 net->ipv6.ip6_blk_hole_entry->rt6i_idev = in6_dev_get(dev);
4401#endif
WANG Cong76da0702017-06-20 11:42:27 -07004402 } else if (event == NETDEV_UNREGISTER &&
4403 dev->reg_state != NETREG_UNREGISTERED) {
4404 /* NETDEV_UNREGISTER could be fired for multiple times by
4405 * netdev_wait_allrefs(). Make sure we only call this once.
4406 */
Eric Dumazet12d94a82017-08-15 04:09:51 -07004407 in6_dev_put_clear(&net->ipv6.ip6_null_entry->rt6i_idev);
WANG Cong242d3a42017-05-08 10:12:13 -07004408#ifdef CONFIG_IPV6_MULTIPLE_TABLES
Eric Dumazet12d94a82017-08-15 04:09:51 -07004409 in6_dev_put_clear(&net->ipv6.ip6_prohibit_entry->rt6i_idev);
4410 in6_dev_put_clear(&net->ipv6.ip6_blk_hole_entry->rt6i_idev);
WANG Cong242d3a42017-05-08 10:12:13 -07004411#endif
Daniel Lezcano8ed67782008-03-04 13:48:30 -08004412 }
4413
4414 return NOTIFY_OK;
4415}
4416
Linus Torvalds1da177e2005-04-16 15:20:36 -07004417/*
4418 * /proc
4419 */
4420
4421#ifdef CONFIG_PROC_FS
4422
Alexey Dobriyan33120b32007-11-06 05:27:11 -08004423static const struct file_operations ipv6_route_proc_fops = {
4424 .owner = THIS_MODULE,
4425 .open = ipv6_route_open,
4426 .read = seq_read,
4427 .llseek = seq_lseek,
Hannes Frederic Sowa8d2ca1d2013-09-21 16:55:59 +02004428 .release = seq_release_net,
Alexey Dobriyan33120b32007-11-06 05:27:11 -08004429};
4430
Linus Torvalds1da177e2005-04-16 15:20:36 -07004431static int rt6_stats_seq_show(struct seq_file *seq, void *v)
4432{
Daniel Lezcano69ddb802008-03-04 13:46:23 -08004433 struct net *net = (struct net *)seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004434 seq_printf(seq, "%04x %04x %04x %04x %04x %04x %04x\n",
Daniel Lezcano69ddb802008-03-04 13:46:23 -08004435 net->ipv6.rt6_stats->fib_nodes,
4436 net->ipv6.rt6_stats->fib_route_nodes,
Wei Wang81eb8442017-10-06 12:06:11 -07004437 atomic_read(&net->ipv6.rt6_stats->fib_rt_alloc),
Daniel Lezcano69ddb802008-03-04 13:46:23 -08004438 net->ipv6.rt6_stats->fib_rt_entries,
4439 net->ipv6.rt6_stats->fib_rt_cache,
Eric Dumazetfc66f952010-10-08 06:37:34 +00004440 dst_entries_get_slow(&net->ipv6.ip6_dst_ops),
Daniel Lezcano69ddb802008-03-04 13:46:23 -08004441 net->ipv6.rt6_stats->fib_discarded_routes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004442
4443 return 0;
4444}
4445
4446static int rt6_stats_seq_open(struct inode *inode, struct file *file)
4447{
Pavel Emelyanovde05c552008-07-18 04:07:21 -07004448 return single_open_net(inode, file, rt6_stats_seq_show);
Daniel Lezcano69ddb802008-03-04 13:46:23 -08004449}
4450
Arjan van de Ven9a321442007-02-12 00:55:35 -08004451static const struct file_operations rt6_stats_seq_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004452 .owner = THIS_MODULE,
4453 .open = rt6_stats_seq_open,
4454 .read = seq_read,
4455 .llseek = seq_lseek,
Pavel Emelyanovb6fcbdb2008-07-18 04:07:44 -07004456 .release = single_release_net,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004457};
4458#endif /* CONFIG_PROC_FS */
4459
4460#ifdef CONFIG_SYSCTL
4461
Linus Torvalds1da177e2005-04-16 15:20:36 -07004462static
Joe Perchesfe2c6332013-06-11 23:04:25 -07004463int ipv6_sysctl_rtcache_flush(struct ctl_table *ctl, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004464 void __user *buffer, size_t *lenp, loff_t *ppos)
4465{
Lucian Adrian Grijincuc486da32011-02-24 19:48:03 +00004466 struct net *net;
4467 int delay;
4468 if (!write)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004469 return -EINVAL;
Lucian Adrian Grijincuc486da32011-02-24 19:48:03 +00004470
4471 net = (struct net *)ctl->extra1;
4472 delay = net->ipv6.sysctl.flush_delay;
4473 proc_dointvec(ctl, write, buffer, lenp, ppos);
Michal Kubeček2ac3ac82013-08-01 10:04:14 +02004474 fib6_run_gc(delay <= 0 ? 0 : (unsigned long)delay, net, delay > 0);
Lucian Adrian Grijincuc486da32011-02-24 19:48:03 +00004475 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004476}
4477
Joe Perchesfe2c6332013-06-11 23:04:25 -07004478struct ctl_table ipv6_route_table_template[] = {
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09004479 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004480 .procname = "flush",
Daniel Lezcano49905092008-01-10 03:01:01 -08004481 .data = &init_net.ipv6.sysctl.flush_delay,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004482 .maxlen = sizeof(int),
Dave Jones89c8b3a12005-04-28 12:11:49 -07004483 .mode = 0200,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08004484 .proc_handler = ipv6_sysctl_rtcache_flush
Linus Torvalds1da177e2005-04-16 15:20:36 -07004485 },
4486 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004487 .procname = "gc_thresh",
Daniel Lezcano9a7ec3a2008-03-04 13:48:53 -08004488 .data = &ip6_dst_ops_template.gc_thresh,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004489 .maxlen = sizeof(int),
4490 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08004491 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004492 },
4493 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004494 .procname = "max_size",
Daniel Lezcano49905092008-01-10 03:01:01 -08004495 .data = &init_net.ipv6.sysctl.ip6_rt_max_size,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004496 .maxlen = sizeof(int),
4497 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08004498 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004499 },
4500 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004501 .procname = "gc_min_interval",
Daniel Lezcano49905092008-01-10 03:01:01 -08004502 .data = &init_net.ipv6.sysctl.ip6_rt_gc_min_interval,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004503 .maxlen = sizeof(int),
4504 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08004505 .proc_handler = proc_dointvec_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004506 },
4507 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004508 .procname = "gc_timeout",
Daniel Lezcano49905092008-01-10 03:01:01 -08004509 .data = &init_net.ipv6.sysctl.ip6_rt_gc_timeout,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004510 .maxlen = sizeof(int),
4511 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08004512 .proc_handler = proc_dointvec_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004513 },
4514 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004515 .procname = "gc_interval",
Daniel Lezcano49905092008-01-10 03:01:01 -08004516 .data = &init_net.ipv6.sysctl.ip6_rt_gc_interval,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004517 .maxlen = sizeof(int),
4518 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08004519 .proc_handler = proc_dointvec_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004520 },
4521 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004522 .procname = "gc_elasticity",
Daniel Lezcano49905092008-01-10 03:01:01 -08004523 .data = &init_net.ipv6.sysctl.ip6_rt_gc_elasticity,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004524 .maxlen = sizeof(int),
4525 .mode = 0644,
Min Zhangf3d3f612010-08-14 22:42:51 -07004526 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004527 },
4528 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004529 .procname = "mtu_expires",
Daniel Lezcano49905092008-01-10 03:01:01 -08004530 .data = &init_net.ipv6.sysctl.ip6_rt_mtu_expires,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004531 .maxlen = sizeof(int),
4532 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08004533 .proc_handler = proc_dointvec_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004534 },
4535 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004536 .procname = "min_adv_mss",
Daniel Lezcano49905092008-01-10 03:01:01 -08004537 .data = &init_net.ipv6.sysctl.ip6_rt_min_advmss,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004538 .maxlen = sizeof(int),
4539 .mode = 0644,
Min Zhangf3d3f612010-08-14 22:42:51 -07004540 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004541 },
4542 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004543 .procname = "gc_min_interval_ms",
Daniel Lezcano49905092008-01-10 03:01:01 -08004544 .data = &init_net.ipv6.sysctl.ip6_rt_gc_min_interval,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004545 .maxlen = sizeof(int),
4546 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08004547 .proc_handler = proc_dointvec_ms_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004548 },
Eric W. Biedermanf8572d82009-11-05 13:32:03 -08004549 { }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004550};
4551
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00004552struct ctl_table * __net_init ipv6_route_sysctl_init(struct net *net)
Daniel Lezcano760f2d02008-01-10 02:53:43 -08004553{
4554 struct ctl_table *table;
4555
4556 table = kmemdup(ipv6_route_table_template,
4557 sizeof(ipv6_route_table_template),
4558 GFP_KERNEL);
YOSHIFUJI Hideaki5ee09102008-02-28 00:24:28 +09004559
4560 if (table) {
4561 table[0].data = &net->ipv6.sysctl.flush_delay;
Lucian Adrian Grijincuc486da32011-02-24 19:48:03 +00004562 table[0].extra1 = net;
Alexey Dobriyan86393e52009-08-29 01:34:49 +00004563 table[1].data = &net->ipv6.ip6_dst_ops.gc_thresh;
YOSHIFUJI Hideaki5ee09102008-02-28 00:24:28 +09004564 table[2].data = &net->ipv6.sysctl.ip6_rt_max_size;
4565 table[3].data = &net->ipv6.sysctl.ip6_rt_gc_min_interval;
4566 table[4].data = &net->ipv6.sysctl.ip6_rt_gc_timeout;
4567 table[5].data = &net->ipv6.sysctl.ip6_rt_gc_interval;
4568 table[6].data = &net->ipv6.sysctl.ip6_rt_gc_elasticity;
4569 table[7].data = &net->ipv6.sysctl.ip6_rt_mtu_expires;
4570 table[8].data = &net->ipv6.sysctl.ip6_rt_min_advmss;
Alexey Dobriyan9c69fab2009-12-18 20:11:03 -08004571 table[9].data = &net->ipv6.sysctl.ip6_rt_gc_min_interval;
Eric W. Biederman464dc802012-11-16 03:02:59 +00004572
4573 /* Don't export sysctls to unprivileged users */
4574 if (net->user_ns != &init_user_ns)
4575 table[0].procname = NULL;
YOSHIFUJI Hideaki5ee09102008-02-28 00:24:28 +09004576 }
4577
Daniel Lezcano760f2d02008-01-10 02:53:43 -08004578 return table;
4579}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004580#endif
4581
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00004582static int __net_init ip6_route_net_init(struct net *net)
Daniel Lezcanocdb18762008-03-04 13:45:33 -08004583{
Pavel Emelyanov633d424b2008-04-21 14:25:23 -07004584 int ret = -ENOMEM;
Daniel Lezcano8ed67782008-03-04 13:48:30 -08004585
Alexey Dobriyan86393e52009-08-29 01:34:49 +00004586 memcpy(&net->ipv6.ip6_dst_ops, &ip6_dst_ops_template,
4587 sizeof(net->ipv6.ip6_dst_ops));
Benjamin Theryf2fc6a52008-03-04 13:49:23 -08004588
Eric Dumazetfc66f952010-10-08 06:37:34 +00004589 if (dst_entries_init(&net->ipv6.ip6_dst_ops) < 0)
4590 goto out_ip6_dst_ops;
4591
Daniel Lezcano8ed67782008-03-04 13:48:30 -08004592 net->ipv6.ip6_null_entry = kmemdup(&ip6_null_entry_template,
4593 sizeof(*net->ipv6.ip6_null_entry),
4594 GFP_KERNEL);
4595 if (!net->ipv6.ip6_null_entry)
Eric Dumazetfc66f952010-10-08 06:37:34 +00004596 goto out_ip6_dst_entries;
Changli Gaod8d1f302010-06-10 23:31:35 -07004597 net->ipv6.ip6_null_entry->dst.path =
Daniel Lezcano8ed67782008-03-04 13:48:30 -08004598 (struct dst_entry *)net->ipv6.ip6_null_entry;
Changli Gaod8d1f302010-06-10 23:31:35 -07004599 net->ipv6.ip6_null_entry->dst.ops = &net->ipv6.ip6_dst_ops;
David S. Miller62fa8a82011-01-26 20:51:05 -08004600 dst_init_metrics(&net->ipv6.ip6_null_entry->dst,
4601 ip6_template_metrics, true);
Daniel Lezcano8ed67782008-03-04 13:48:30 -08004602
4603#ifdef CONFIG_IPV6_MULTIPLE_TABLES
Vincent Bernatfeca7d82017-08-08 20:23:49 +02004604 net->ipv6.fib6_has_custom_rules = false;
Daniel Lezcano8ed67782008-03-04 13:48:30 -08004605 net->ipv6.ip6_prohibit_entry = kmemdup(&ip6_prohibit_entry_template,
4606 sizeof(*net->ipv6.ip6_prohibit_entry),
4607 GFP_KERNEL);
Peter Zijlstra68fffc62008-10-07 14:12:10 -07004608 if (!net->ipv6.ip6_prohibit_entry)
4609 goto out_ip6_null_entry;
Changli Gaod8d1f302010-06-10 23:31:35 -07004610 net->ipv6.ip6_prohibit_entry->dst.path =
Daniel Lezcano8ed67782008-03-04 13:48:30 -08004611 (struct dst_entry *)net->ipv6.ip6_prohibit_entry;
Changli Gaod8d1f302010-06-10 23:31:35 -07004612 net->ipv6.ip6_prohibit_entry->dst.ops = &net->ipv6.ip6_dst_ops;
David S. Miller62fa8a82011-01-26 20:51:05 -08004613 dst_init_metrics(&net->ipv6.ip6_prohibit_entry->dst,
4614 ip6_template_metrics, true);
Daniel Lezcano8ed67782008-03-04 13:48:30 -08004615
4616 net->ipv6.ip6_blk_hole_entry = kmemdup(&ip6_blk_hole_entry_template,
4617 sizeof(*net->ipv6.ip6_blk_hole_entry),
4618 GFP_KERNEL);
Peter Zijlstra68fffc62008-10-07 14:12:10 -07004619 if (!net->ipv6.ip6_blk_hole_entry)
4620 goto out_ip6_prohibit_entry;
Changli Gaod8d1f302010-06-10 23:31:35 -07004621 net->ipv6.ip6_blk_hole_entry->dst.path =
Daniel Lezcano8ed67782008-03-04 13:48:30 -08004622 (struct dst_entry *)net->ipv6.ip6_blk_hole_entry;
Changli Gaod8d1f302010-06-10 23:31:35 -07004623 net->ipv6.ip6_blk_hole_entry->dst.ops = &net->ipv6.ip6_dst_ops;
David S. Miller62fa8a82011-01-26 20:51:05 -08004624 dst_init_metrics(&net->ipv6.ip6_blk_hole_entry->dst,
4625 ip6_template_metrics, true);
Daniel Lezcano8ed67782008-03-04 13:48:30 -08004626#endif
4627
Peter Zijlstrab339a47c2008-10-07 14:15:00 -07004628 net->ipv6.sysctl.flush_delay = 0;
4629 net->ipv6.sysctl.ip6_rt_max_size = 4096;
4630 net->ipv6.sysctl.ip6_rt_gc_min_interval = HZ / 2;
4631 net->ipv6.sysctl.ip6_rt_gc_timeout = 60*HZ;
4632 net->ipv6.sysctl.ip6_rt_gc_interval = 30*HZ;
4633 net->ipv6.sysctl.ip6_rt_gc_elasticity = 9;
4634 net->ipv6.sysctl.ip6_rt_mtu_expires = 10*60*HZ;
4635 net->ipv6.sysctl.ip6_rt_min_advmss = IPV6_MIN_MTU - 20 - 40;
4636
Benjamin Thery6891a342008-03-04 13:49:47 -08004637 net->ipv6.ip6_rt_gc_expire = 30*HZ;
4638
Daniel Lezcano8ed67782008-03-04 13:48:30 -08004639 ret = 0;
4640out:
4641 return ret;
Benjamin Theryf2fc6a52008-03-04 13:49:23 -08004642
Peter Zijlstra68fffc62008-10-07 14:12:10 -07004643#ifdef CONFIG_IPV6_MULTIPLE_TABLES
4644out_ip6_prohibit_entry:
4645 kfree(net->ipv6.ip6_prohibit_entry);
4646out_ip6_null_entry:
4647 kfree(net->ipv6.ip6_null_entry);
4648#endif
Eric Dumazetfc66f952010-10-08 06:37:34 +00004649out_ip6_dst_entries:
4650 dst_entries_destroy(&net->ipv6.ip6_dst_ops);
Benjamin Theryf2fc6a52008-03-04 13:49:23 -08004651out_ip6_dst_ops:
Benjamin Theryf2fc6a52008-03-04 13:49:23 -08004652 goto out;
Daniel Lezcanocdb18762008-03-04 13:45:33 -08004653}
4654
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00004655static void __net_exit ip6_route_net_exit(struct net *net)
Daniel Lezcanocdb18762008-03-04 13:45:33 -08004656{
Daniel Lezcano8ed67782008-03-04 13:48:30 -08004657 kfree(net->ipv6.ip6_null_entry);
4658#ifdef CONFIG_IPV6_MULTIPLE_TABLES
4659 kfree(net->ipv6.ip6_prohibit_entry);
4660 kfree(net->ipv6.ip6_blk_hole_entry);
4661#endif
Xiaotian Feng41bb78b2010-11-02 16:11:05 +00004662 dst_entries_destroy(&net->ipv6.ip6_dst_ops);
Daniel Lezcanocdb18762008-03-04 13:45:33 -08004663}
4664
Thomas Grafd1896342012-06-18 12:08:33 +00004665static int __net_init ip6_route_net_init_late(struct net *net)
4666{
4667#ifdef CONFIG_PROC_FS
Gao fengd4beaa62013-02-18 01:34:54 +00004668 proc_create("ipv6_route", 0, net->proc_net, &ipv6_route_proc_fops);
4669 proc_create("rt6_stats", S_IRUGO, net->proc_net, &rt6_stats_seq_fops);
Thomas Grafd1896342012-06-18 12:08:33 +00004670#endif
4671 return 0;
4672}
4673
4674static void __net_exit ip6_route_net_exit_late(struct net *net)
4675{
4676#ifdef CONFIG_PROC_FS
Gao fengece31ff2013-02-18 01:34:56 +00004677 remove_proc_entry("ipv6_route", net->proc_net);
4678 remove_proc_entry("rt6_stats", net->proc_net);
Thomas Grafd1896342012-06-18 12:08:33 +00004679#endif
4680}
4681
Daniel Lezcanocdb18762008-03-04 13:45:33 -08004682static struct pernet_operations ip6_route_net_ops = {
4683 .init = ip6_route_net_init,
4684 .exit = ip6_route_net_exit,
4685};
4686
David S. Millerc3426b42012-06-09 16:27:05 -07004687static int __net_init ipv6_inetpeer_init(struct net *net)
4688{
4689 struct inet_peer_base *bp = kmalloc(sizeof(*bp), GFP_KERNEL);
4690
4691 if (!bp)
4692 return -ENOMEM;
4693 inet_peer_base_init(bp);
4694 net->ipv6.peers = bp;
4695 return 0;
4696}
4697
4698static void __net_exit ipv6_inetpeer_exit(struct net *net)
4699{
4700 struct inet_peer_base *bp = net->ipv6.peers;
4701
4702 net->ipv6.peers = NULL;
David S. Miller56a6b242012-06-09 16:32:41 -07004703 inetpeer_invalidate_tree(bp);
David S. Millerc3426b42012-06-09 16:27:05 -07004704 kfree(bp);
4705}
4706
David S. Miller2b823f72012-06-09 19:00:16 -07004707static struct pernet_operations ipv6_inetpeer_ops = {
David S. Millerc3426b42012-06-09 16:27:05 -07004708 .init = ipv6_inetpeer_init,
4709 .exit = ipv6_inetpeer_exit,
4710};
4711
Thomas Grafd1896342012-06-18 12:08:33 +00004712static struct pernet_operations ip6_route_net_late_ops = {
4713 .init = ip6_route_net_init_late,
4714 .exit = ip6_route_net_exit_late,
4715};
4716
Daniel Lezcano8ed67782008-03-04 13:48:30 -08004717static struct notifier_block ip6_route_dev_notifier = {
4718 .notifier_call = ip6_route_dev_notify,
WANG Cong242d3a42017-05-08 10:12:13 -07004719 .priority = ADDRCONF_NOTIFY_PRIORITY - 10,
Daniel Lezcano8ed67782008-03-04 13:48:30 -08004720};
4721
WANG Cong2f460932017-05-03 22:07:31 -07004722void __init ip6_route_init_special_entries(void)
4723{
4724 /* Registering of the loopback is done before this portion of code,
4725 * the loopback reference in rt6_info will not be taken, do it
4726 * manually for init_net */
4727 init_net.ipv6.ip6_null_entry->dst.dev = init_net.loopback_dev;
4728 init_net.ipv6.ip6_null_entry->rt6i_idev = in6_dev_get(init_net.loopback_dev);
4729 #ifdef CONFIG_IPV6_MULTIPLE_TABLES
4730 init_net.ipv6.ip6_prohibit_entry->dst.dev = init_net.loopback_dev;
4731 init_net.ipv6.ip6_prohibit_entry->rt6i_idev = in6_dev_get(init_net.loopback_dev);
4732 init_net.ipv6.ip6_blk_hole_entry->dst.dev = init_net.loopback_dev;
4733 init_net.ipv6.ip6_blk_hole_entry->rt6i_idev = in6_dev_get(init_net.loopback_dev);
4734 #endif
4735}
4736
Daniel Lezcano433d49c2007-12-07 00:43:48 -08004737int __init ip6_route_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004738{
Daniel Lezcano433d49c2007-12-07 00:43:48 -08004739 int ret;
Martin KaFai Lau8d0b94a2015-05-22 20:56:04 -07004740 int cpu;
Daniel Lezcano433d49c2007-12-07 00:43:48 -08004741
Daniel Lezcano9a7ec3a2008-03-04 13:48:53 -08004742 ret = -ENOMEM;
4743 ip6_dst_ops_template.kmem_cachep =
4744 kmem_cache_create("ip6_dst_cache", sizeof(struct rt6_info), 0,
4745 SLAB_HWCACHE_ALIGN, NULL);
4746 if (!ip6_dst_ops_template.kmem_cachep)
Fernando Carrijoc19a28e2009-01-07 18:09:08 -08004747 goto out;
David S. Miller14e50e52007-05-24 18:17:54 -07004748
Eric Dumazetfc66f952010-10-08 06:37:34 +00004749 ret = dst_entries_init(&ip6_dst_blackhole_ops);
Daniel Lezcano8ed67782008-03-04 13:48:30 -08004750 if (ret)
Daniel Lezcanobdb32892008-03-04 13:48:10 -08004751 goto out_kmem_cache;
Daniel Lezcanobdb32892008-03-04 13:48:10 -08004752
David S. Millerc3426b42012-06-09 16:27:05 -07004753 ret = register_pernet_subsys(&ipv6_inetpeer_ops);
4754 if (ret)
David S. Millere8803b62012-06-16 01:12:19 -07004755 goto out_dst_entries;
Thomas Graf2a0c4512012-06-14 23:00:17 +00004756
David S. Miller7e52b332012-06-15 15:51:55 -07004757 ret = register_pernet_subsys(&ip6_route_net_ops);
4758 if (ret)
4759 goto out_register_inetpeer;
David S. Millerc3426b42012-06-09 16:27:05 -07004760
Arnaud Ebalard5dc121e2008-10-01 02:37:56 -07004761 ip6_dst_blackhole_ops.kmem_cachep = ip6_dst_ops_template.kmem_cachep;
4762
David S. Millere8803b62012-06-16 01:12:19 -07004763 ret = fib6_init();
Daniel Lezcano433d49c2007-12-07 00:43:48 -08004764 if (ret)
Daniel Lezcano8ed67782008-03-04 13:48:30 -08004765 goto out_register_subsys;
Daniel Lezcano433d49c2007-12-07 00:43:48 -08004766
Daniel Lezcano433d49c2007-12-07 00:43:48 -08004767 ret = xfrm6_init();
4768 if (ret)
David S. Millere8803b62012-06-16 01:12:19 -07004769 goto out_fib6_init;
Daniel Lezcanoc35b7e72007-12-08 00:14:11 -08004770
Daniel Lezcano433d49c2007-12-07 00:43:48 -08004771 ret = fib6_rules_init();
4772 if (ret)
4773 goto xfrm6_init;
Daniel Lezcano7e5449c2007-12-08 00:14:54 -08004774
Thomas Grafd1896342012-06-18 12:08:33 +00004775 ret = register_pernet_subsys(&ip6_route_net_late_ops);
4776 if (ret)
4777 goto fib6_rules_init;
4778
Daniel Lezcano433d49c2007-12-07 00:43:48 -08004779 ret = -ENOBUFS;
Florian Westphalb97bac62017-08-09 20:41:48 +02004780 if (__rtnl_register(PF_INET6, RTM_NEWROUTE, inet6_rtm_newroute, NULL, 0) ||
4781 __rtnl_register(PF_INET6, RTM_DELROUTE, inet6_rtm_delroute, NULL, 0) ||
Florian Westphale3a22b72017-08-15 16:34:43 +02004782 __rtnl_register(PF_INET6, RTM_GETROUTE, inet6_rtm_getroute, NULL,
4783 RTNL_FLAG_DOIT_UNLOCKED))
Thomas Grafd1896342012-06-18 12:08:33 +00004784 goto out_register_late_subsys;
Daniel Lezcano433d49c2007-12-07 00:43:48 -08004785
Daniel Lezcano8ed67782008-03-04 13:48:30 -08004786 ret = register_netdevice_notifier(&ip6_route_dev_notifier);
Daniel Lezcanocdb18762008-03-04 13:45:33 -08004787 if (ret)
Thomas Grafd1896342012-06-18 12:08:33 +00004788 goto out_register_late_subsys;
Daniel Lezcano8ed67782008-03-04 13:48:30 -08004789
Martin KaFai Lau8d0b94a2015-05-22 20:56:04 -07004790 for_each_possible_cpu(cpu) {
4791 struct uncached_list *ul = per_cpu_ptr(&rt6_uncached_list, cpu);
4792
4793 INIT_LIST_HEAD(&ul->head);
4794 spin_lock_init(&ul->lock);
4795 }
4796
Daniel Lezcano433d49c2007-12-07 00:43:48 -08004797out:
4798 return ret;
4799
Thomas Grafd1896342012-06-18 12:08:33 +00004800out_register_late_subsys:
4801 unregister_pernet_subsys(&ip6_route_net_late_ops);
Daniel Lezcano433d49c2007-12-07 00:43:48 -08004802fib6_rules_init:
Daniel Lezcano433d49c2007-12-07 00:43:48 -08004803 fib6_rules_cleanup();
4804xfrm6_init:
Daniel Lezcano433d49c2007-12-07 00:43:48 -08004805 xfrm6_fini();
Thomas Graf2a0c4512012-06-14 23:00:17 +00004806out_fib6_init:
4807 fib6_gc_cleanup();
Daniel Lezcano8ed67782008-03-04 13:48:30 -08004808out_register_subsys:
4809 unregister_pernet_subsys(&ip6_route_net_ops);
David S. Miller7e52b332012-06-15 15:51:55 -07004810out_register_inetpeer:
4811 unregister_pernet_subsys(&ipv6_inetpeer_ops);
Eric Dumazetfc66f952010-10-08 06:37:34 +00004812out_dst_entries:
4813 dst_entries_destroy(&ip6_dst_blackhole_ops);
Daniel Lezcano433d49c2007-12-07 00:43:48 -08004814out_kmem_cache:
Benjamin Theryf2fc6a52008-03-04 13:49:23 -08004815 kmem_cache_destroy(ip6_dst_ops_template.kmem_cachep);
Daniel Lezcano433d49c2007-12-07 00:43:48 -08004816 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004817}
4818
4819void ip6_route_cleanup(void)
4820{
Daniel Lezcano8ed67782008-03-04 13:48:30 -08004821 unregister_netdevice_notifier(&ip6_route_dev_notifier);
Thomas Grafd1896342012-06-18 12:08:33 +00004822 unregister_pernet_subsys(&ip6_route_net_late_ops);
Thomas Graf101367c2006-08-04 03:39:02 -07004823 fib6_rules_cleanup();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004824 xfrm6_fini();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004825 fib6_gc_cleanup();
David S. Millerc3426b42012-06-09 16:27:05 -07004826 unregister_pernet_subsys(&ipv6_inetpeer_ops);
Daniel Lezcano8ed67782008-03-04 13:48:30 -08004827 unregister_pernet_subsys(&ip6_route_net_ops);
Xiaotian Feng41bb78b2010-11-02 16:11:05 +00004828 dst_entries_destroy(&ip6_dst_blackhole_ops);
Benjamin Theryf2fc6a52008-03-04 13:49:23 -08004829 kmem_cache_destroy(ip6_dst_ops_template.kmem_cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004830}