blob: 5f859ee67172ae8badedf136301205292427b629 [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>
Eric W. Biederman457c4cb2007-09-12 12:01:34 +020047#include <net/net_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070048#include <net/snmp.h>
49#include <net/ipv6.h>
50#include <net/ip6_fib.h>
51#include <net/ip6_route.h>
52#include <net/ndisc.h>
53#include <net/addrconf.h>
54#include <net/tcp.h>
55#include <linux/rtnetlink.h>
56#include <net/dst.h>
Jiri Benc904af042015-08-20 13:56:31 +020057#include <net/dst_metadata.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070058#include <net/xfrm.h>
Tom Tucker8d717402006-07-30 20:43:36 -070059#include <net/netevent.h>
Thomas Graf21713eb2006-08-15 00:35:24 -070060#include <net/netlink.h>
Nicolas Dichtel51ebd312012-10-22 03:42:09 +000061#include <net/nexthop.h>
Roopa Prabhu19e42e42015-07-21 10:43:48 +020062#include <net/lwtunnel.h>
Jiri Benc904af042015-08-20 13:56:31 +020063#include <net/ip_tunnels.h>
David Ahernca254492015-10-12 11:47:10 -070064#include <net/l3mdev.h>
David Ahernb8115802015-11-19 12:24:22 -080065#include <trace/events/fib6.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070066
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080067#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
69#ifdef CONFIG_SYSCTL
70#include <linux/sysctl.h>
71#endif
72
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +020073enum rt6_nud_state {
Jiri Benc7e980562013-12-11 13:48:20 +010074 RT6_NUD_FAIL_HARD = -3,
75 RT6_NUD_FAIL_PROBE = -2,
76 RT6_NUD_FAIL_DO_RR = -1,
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +020077 RT6_NUD_SUCCEED = 1
78};
79
Martin KaFai Lau83a09ab2015-05-22 20:56:05 -070080static void ip6_rt_copy_init(struct rt6_info *rt, struct rt6_info *ort);
Linus Torvalds1da177e2005-04-16 15:20:36 -070081static struct dst_entry *ip6_dst_check(struct dst_entry *dst, u32 cookie);
David S. Miller0dbaee32010-12-13 12:52:14 -080082static unsigned int ip6_default_advmss(const struct dst_entry *dst);
Steffen Klassertebb762f2011-11-23 02:12:51 +000083static unsigned int ip6_mtu(const struct dst_entry *dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -070084static struct dst_entry *ip6_negative_advice(struct dst_entry *);
85static void ip6_dst_destroy(struct dst_entry *);
86static void ip6_dst_ifdown(struct dst_entry *,
87 struct net_device *dev, int how);
Daniel Lezcano569d3642008-01-18 03:56:57 -080088static int ip6_dst_gc(struct dst_ops *ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -070089
90static int ip6_pkt_discard(struct sk_buff *skb);
Eric W. Biedermanede20592015-10-07 16:48:47 -050091static int ip6_pkt_discard_out(struct net *net, struct sock *sk, struct sk_buff *skb);
Kamala R7150aed2013-12-02 19:55:21 +053092static int ip6_pkt_prohibit(struct sk_buff *skb);
Eric W. Biedermanede20592015-10-07 16:48:47 -050093static int ip6_pkt_prohibit_out(struct net *net, struct sock *sk, struct sk_buff *skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -070094static void ip6_link_failure(struct sk_buff *skb);
David S. Miller6700c272012-07-17 03:29:28 -070095static void ip6_rt_update_pmtu(struct dst_entry *dst, struct sock *sk,
96 struct sk_buff *skb, u32 mtu);
97static void rt6_do_redirect(struct dst_entry *dst, struct sock *sk,
98 struct sk_buff *skb);
Martin KaFai Lau4b32b5a2015-04-28 13:03:06 -070099static void rt6_dst_from_metrics_check(struct rt6_info *rt);
Nicolas Dichtel52bd4c02013-06-28 17:35:48 +0200100static int rt6_score_route(struct rt6_info *rt, int oif, int strict);
David Ahern16a16cd2017-02-02 12:37:11 -0800101static size_t rt6_nlmsg_size(struct rt6_info *rt);
102static int rt6_fill_node(struct net *net,
103 struct sk_buff *skb, struct rt6_info *rt,
104 struct in6_addr *dst, struct in6_addr *src,
105 int iif, int type, u32 portid, u32 seq,
106 unsigned int flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800108#ifdef CONFIG_IPV6_ROUTE_INFO
Daniel Lezcanoefa2cea2008-03-04 13:46:48 -0800109static struct rt6_info *rt6_add_route_info(struct net *net,
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000110 const struct in6_addr *prefix, int prefixlen,
David Ahern830218c2016-10-24 10:52:35 -0700111 const struct in6_addr *gwaddr,
112 struct net_device *dev,
Eric Dumazet95c96172012-04-15 05:58:06 +0000113 unsigned int pref);
Daniel Lezcanoefa2cea2008-03-04 13:46:48 -0800114static struct rt6_info *rt6_get_route_info(struct net *net,
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000115 const struct in6_addr *prefix, int prefixlen,
David Ahern830218c2016-10-24 10:52:35 -0700116 const struct in6_addr *gwaddr,
117 struct net_device *dev);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800118#endif
119
Martin KaFai Lau8d0b94a2015-05-22 20:56:04 -0700120struct uncached_list {
121 spinlock_t lock;
122 struct list_head head;
123};
124
125static DEFINE_PER_CPU_ALIGNED(struct uncached_list, rt6_uncached_list);
126
127static void rt6_uncached_list_add(struct rt6_info *rt)
128{
129 struct uncached_list *ul = raw_cpu_ptr(&rt6_uncached_list);
130
131 rt->dst.flags |= DST_NOCACHE;
132 rt->rt6i_uncached_list = ul;
133
134 spin_lock_bh(&ul->lock);
135 list_add_tail(&rt->rt6i_uncached, &ul->head);
136 spin_unlock_bh(&ul->lock);
137}
138
139static void rt6_uncached_list_del(struct rt6_info *rt)
140{
141 if (!list_empty(&rt->rt6i_uncached)) {
142 struct uncached_list *ul = rt->rt6i_uncached_list;
143
144 spin_lock_bh(&ul->lock);
145 list_del(&rt->rt6i_uncached);
146 spin_unlock_bh(&ul->lock);
147 }
148}
149
150static void rt6_uncached_list_flush_dev(struct net *net, struct net_device *dev)
151{
152 struct net_device *loopback_dev = net->loopback_dev;
153 int cpu;
154
Eric W. Biedermane332bc62015-10-12 11:02:08 -0500155 if (dev == loopback_dev)
156 return;
157
Martin KaFai Lau8d0b94a2015-05-22 20:56:04 -0700158 for_each_possible_cpu(cpu) {
159 struct uncached_list *ul = per_cpu_ptr(&rt6_uncached_list, cpu);
160 struct rt6_info *rt;
161
162 spin_lock_bh(&ul->lock);
163 list_for_each_entry(rt, &ul->head, rt6i_uncached) {
164 struct inet6_dev *rt_idev = rt->rt6i_idev;
165 struct net_device *rt_dev = rt->dst.dev;
166
Eric W. Biedermane332bc62015-10-12 11:02:08 -0500167 if (rt_idev->dev == dev) {
Martin KaFai Lau8d0b94a2015-05-22 20:56:04 -0700168 rt->rt6i_idev = in6_dev_get(loopback_dev);
169 in6_dev_put(rt_idev);
170 }
171
Eric W. Biedermane332bc62015-10-12 11:02:08 -0500172 if (rt_dev == dev) {
Martin KaFai Lau8d0b94a2015-05-22 20:56:04 -0700173 rt->dst.dev = loopback_dev;
174 dev_hold(rt->dst.dev);
175 dev_put(rt_dev);
176 }
177 }
178 spin_unlock_bh(&ul->lock);
179 }
180}
181
Martin KaFai Laud52d3992015-05-22 20:56:06 -0700182static u32 *rt6_pcpu_cow_metrics(struct rt6_info *rt)
183{
184 return dst_metrics_write_ptr(rt->dst.from);
185}
186
David S. Miller06582542011-01-27 14:58:42 -0800187static u32 *ipv6_cow_metrics(struct dst_entry *dst, unsigned long old)
188{
Martin KaFai Lau4b32b5a2015-04-28 13:03:06 -0700189 struct rt6_info *rt = (struct rt6_info *)dst;
David S. Miller06582542011-01-27 14:58:42 -0800190
Martin KaFai Laud52d3992015-05-22 20:56:06 -0700191 if (rt->rt6i_flags & RTF_PCPU)
192 return rt6_pcpu_cow_metrics(rt);
193 else if (rt->rt6i_flags & RTF_CACHE)
Martin KaFai Lau4b32b5a2015-04-28 13:03:06 -0700194 return NULL;
195 else
Martin KaFai Lau3b471172015-02-12 16:14:08 -0800196 return dst_cow_metrics_generic(dst, old);
David S. Miller06582542011-01-27 14:58:42 -0800197}
198
David S. Millerf894cbf2012-07-02 21:52:24 -0700199static inline const void *choose_neigh_daddr(struct rt6_info *rt,
200 struct sk_buff *skb,
201 const void *daddr)
David S. Miller39232972012-01-26 15:22:32 -0500202{
203 struct in6_addr *p = &rt->rt6i_gateway;
204
David S. Millera7563f32012-01-26 16:29:16 -0500205 if (!ipv6_addr_any(p))
David S. Miller39232972012-01-26 15:22:32 -0500206 return (const void *) p;
David S. Millerf894cbf2012-07-02 21:52:24 -0700207 else if (skb)
208 return &ipv6_hdr(skb)->daddr;
David S. Miller39232972012-01-26 15:22:32 -0500209 return daddr;
210}
211
David S. Millerf894cbf2012-07-02 21:52:24 -0700212static struct neighbour *ip6_neigh_lookup(const struct dst_entry *dst,
213 struct sk_buff *skb,
214 const void *daddr)
David S. Millerd3aaeb32011-07-18 00:40:17 -0700215{
David S. Miller39232972012-01-26 15:22:32 -0500216 struct rt6_info *rt = (struct rt6_info *) dst;
217 struct neighbour *n;
218
David S. Millerf894cbf2012-07-02 21:52:24 -0700219 daddr = choose_neigh_daddr(rt, skb, daddr);
YOSHIFUJI Hideaki / 吉藤英明8e022ee2013-01-17 12:53:09 +0000220 n = __ipv6_neigh_lookup(dst->dev, daddr);
David S. Millerf83c7792011-12-28 15:41:23 -0500221 if (n)
222 return n;
223 return neigh_create(&nd_tbl, daddr, dst->dev);
224}
225
Julian Anastasov63fca652017-02-06 23:14:15 +0200226static void ip6_confirm_neigh(const struct dst_entry *dst, const void *daddr)
227{
228 struct net_device *dev = dst->dev;
229 struct rt6_info *rt = (struct rt6_info *)dst;
230
231 daddr = choose_neigh_daddr(rt, NULL, daddr);
232 if (!daddr)
233 return;
234 if (dev->flags & (IFF_NOARP | IFF_LOOPBACK))
235 return;
236 if (ipv6_addr_is_multicast((const struct in6_addr *)daddr))
237 return;
238 __ipv6_confirm_neigh(dev, daddr);
239}
240
Daniel Lezcano9a7ec3a2008-03-04 13:48:53 -0800241static struct dst_ops ip6_dst_ops_template = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 .family = AF_INET6,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 .gc = ip6_dst_gc,
244 .gc_thresh = 1024,
245 .check = ip6_dst_check,
David S. Miller0dbaee32010-12-13 12:52:14 -0800246 .default_advmss = ip6_default_advmss,
Steffen Klassertebb762f2011-11-23 02:12:51 +0000247 .mtu = ip6_mtu,
David S. Miller06582542011-01-27 14:58:42 -0800248 .cow_metrics = ipv6_cow_metrics,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 .destroy = ip6_dst_destroy,
250 .ifdown = ip6_dst_ifdown,
251 .negative_advice = ip6_negative_advice,
252 .link_failure = ip6_link_failure,
253 .update_pmtu = ip6_rt_update_pmtu,
David S. Miller6e157b62012-07-12 00:05:02 -0700254 .redirect = rt6_do_redirect,
Eric W. Biederman9f8955c2015-10-07 16:48:39 -0500255 .local_out = __ip6_local_out,
David S. Millerd3aaeb32011-07-18 00:40:17 -0700256 .neigh_lookup = ip6_neigh_lookup,
Julian Anastasov63fca652017-02-06 23:14:15 +0200257 .confirm_neigh = ip6_confirm_neigh,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258};
259
Steffen Klassertebb762f2011-11-23 02:12:51 +0000260static unsigned int ip6_blackhole_mtu(const struct dst_entry *dst)
Roland Dreierec831ea2011-01-31 13:16:00 -0800261{
Steffen Klassert618f9bc2011-11-23 02:13:31 +0000262 unsigned int mtu = dst_metric_raw(dst, RTAX_MTU);
263
264 return mtu ? : dst->dev->mtu;
Roland Dreierec831ea2011-01-31 13:16:00 -0800265}
266
David S. Miller6700c272012-07-17 03:29:28 -0700267static void ip6_rt_blackhole_update_pmtu(struct dst_entry *dst, struct sock *sk,
268 struct sk_buff *skb, u32 mtu)
David S. Miller14e50e52007-05-24 18:17:54 -0700269{
270}
271
David S. Miller6700c272012-07-17 03:29:28 -0700272static void ip6_rt_blackhole_redirect(struct dst_entry *dst, struct sock *sk,
273 struct sk_buff *skb)
David S. Millerb587ee32012-07-12 00:39:24 -0700274{
275}
276
David S. Miller14e50e52007-05-24 18:17:54 -0700277static struct dst_ops ip6_dst_blackhole_ops = {
278 .family = AF_INET6,
David S. Miller14e50e52007-05-24 18:17:54 -0700279 .destroy = ip6_dst_destroy,
280 .check = ip6_dst_check,
Steffen Klassertebb762f2011-11-23 02:12:51 +0000281 .mtu = ip6_blackhole_mtu,
Eric Dumazet214f45c2011-02-18 11:39:01 -0800282 .default_advmss = ip6_default_advmss,
David S. Miller14e50e52007-05-24 18:17:54 -0700283 .update_pmtu = ip6_rt_blackhole_update_pmtu,
David S. Millerb587ee32012-07-12 00:39:24 -0700284 .redirect = ip6_rt_blackhole_redirect,
Martin KaFai Lau0a1f5962015-10-15 16:39:58 -0700285 .cow_metrics = dst_cow_metrics_generic,
David S. Millerd3aaeb32011-07-18 00:40:17 -0700286 .neigh_lookup = ip6_neigh_lookup,
David S. Miller14e50e52007-05-24 18:17:54 -0700287};
288
David S. Miller62fa8a82011-01-26 20:51:05 -0800289static const u32 ip6_template_metrics[RTAX_MAX] = {
Li RongQing14edd872012-10-24 14:01:18 +0800290 [RTAX_HOPLIMIT - 1] = 0,
David S. Miller62fa8a82011-01-26 20:51:05 -0800291};
292
Eric Dumazetfb0af4c2012-09-11 21:47:51 +0000293static const struct rt6_info ip6_null_entry_template = {
Changli Gaod8d1f302010-06-10 23:31:35 -0700294 .dst = {
295 .__refcnt = ATOMIC_INIT(1),
296 .__use = 1,
Nicolas Dichtel2c20cbd2012-09-10 22:09:47 +0000297 .obsolete = DST_OBSOLETE_FORCE_CHK,
Changli Gaod8d1f302010-06-10 23:31:35 -0700298 .error = -ENETUNREACH,
Changli Gaod8d1f302010-06-10 23:31:35 -0700299 .input = ip6_pkt_discard,
300 .output = ip6_pkt_discard_out,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 },
302 .rt6i_flags = (RTF_REJECT | RTF_NONEXTHOP),
Jean-Mickael Guerin4f724272009-05-20 17:38:59 -0700303 .rt6i_protocol = RTPROT_KERNEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 .rt6i_metric = ~(u32) 0,
305 .rt6i_ref = ATOMIC_INIT(1),
306};
307
Thomas Graf101367c2006-08-04 03:39:02 -0700308#ifdef CONFIG_IPV6_MULTIPLE_TABLES
309
Eric Dumazetfb0af4c2012-09-11 21:47:51 +0000310static const struct rt6_info ip6_prohibit_entry_template = {
Changli Gaod8d1f302010-06-10 23:31:35 -0700311 .dst = {
312 .__refcnt = ATOMIC_INIT(1),
313 .__use = 1,
Nicolas Dichtel2c20cbd2012-09-10 22:09:47 +0000314 .obsolete = DST_OBSOLETE_FORCE_CHK,
Changli Gaod8d1f302010-06-10 23:31:35 -0700315 .error = -EACCES,
Changli Gaod8d1f302010-06-10 23:31:35 -0700316 .input = ip6_pkt_prohibit,
317 .output = ip6_pkt_prohibit_out,
Thomas Graf101367c2006-08-04 03:39:02 -0700318 },
319 .rt6i_flags = (RTF_REJECT | RTF_NONEXTHOP),
Jean-Mickael Guerin4f724272009-05-20 17:38:59 -0700320 .rt6i_protocol = RTPROT_KERNEL,
Thomas Graf101367c2006-08-04 03:39:02 -0700321 .rt6i_metric = ~(u32) 0,
322 .rt6i_ref = ATOMIC_INIT(1),
323};
324
Eric Dumazetfb0af4c2012-09-11 21:47:51 +0000325static const struct rt6_info ip6_blk_hole_entry_template = {
Changli Gaod8d1f302010-06-10 23:31:35 -0700326 .dst = {
327 .__refcnt = ATOMIC_INIT(1),
328 .__use = 1,
Nicolas Dichtel2c20cbd2012-09-10 22:09:47 +0000329 .obsolete = DST_OBSOLETE_FORCE_CHK,
Changli Gaod8d1f302010-06-10 23:31:35 -0700330 .error = -EINVAL,
Changli Gaod8d1f302010-06-10 23:31:35 -0700331 .input = dst_discard,
Eric W. Biedermanede20592015-10-07 16:48:47 -0500332 .output = dst_discard_out,
Thomas Graf101367c2006-08-04 03:39:02 -0700333 },
334 .rt6i_flags = (RTF_REJECT | RTF_NONEXTHOP),
Jean-Mickael Guerin4f724272009-05-20 17:38:59 -0700335 .rt6i_protocol = RTPROT_KERNEL,
Thomas Graf101367c2006-08-04 03:39:02 -0700336 .rt6i_metric = ~(u32) 0,
337 .rt6i_ref = ATOMIC_INIT(1),
338};
339
340#endif
341
Martin KaFai Lauebfa45f2015-10-15 16:39:57 -0700342static void rt6_info_init(struct rt6_info *rt)
343{
344 struct dst_entry *dst = &rt->dst;
345
346 memset(dst + 1, 0, sizeof(*rt) - sizeof(*dst));
347 INIT_LIST_HEAD(&rt->rt6i_siblings);
348 INIT_LIST_HEAD(&rt->rt6i_uncached);
349}
350
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351/* allocate dst with ip6_dst_ops */
Martin KaFai Laud52d3992015-05-22 20:56:06 -0700352static struct rt6_info *__ip6_dst_alloc(struct net *net,
353 struct net_device *dev,
Martin KaFai Lauad706862015-08-14 11:05:52 -0700354 int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355{
David S. Miller97bab732012-06-09 22:36:36 -0700356 struct rt6_info *rt = dst_alloc(&net->ipv6.ip6_dst_ops, dev,
Wei Wang587fea72017-06-17 10:42:36 -0700357 1, DST_OBSOLETE_FORCE_CHK,
358 flags | DST_NOGC);
David S. Millercf911662011-04-28 14:31:47 -0700359
Martin KaFai Lauebfa45f2015-10-15 16:39:57 -0700360 if (rt)
361 rt6_info_init(rt);
Steffen Klassert81048912012-07-05 23:37:09 +0000362
David S. Millercf911662011-04-28 14:31:47 -0700363 return rt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364}
365
David Ahern9ab179d2016-04-07 11:10:06 -0700366struct rt6_info *ip6_dst_alloc(struct net *net,
367 struct net_device *dev,
368 int flags)
Martin KaFai Laud52d3992015-05-22 20:56:06 -0700369{
Martin KaFai Lauad706862015-08-14 11:05:52 -0700370 struct rt6_info *rt = __ip6_dst_alloc(net, dev, flags);
Martin KaFai Laud52d3992015-05-22 20:56:06 -0700371
372 if (rt) {
373 rt->rt6i_pcpu = alloc_percpu_gfp(struct rt6_info *, GFP_ATOMIC);
374 if (rt->rt6i_pcpu) {
375 int cpu;
376
377 for_each_possible_cpu(cpu) {
378 struct rt6_info **p;
379
380 p = per_cpu_ptr(rt->rt6i_pcpu, cpu);
381 /* no one shares rt */
382 *p = NULL;
383 }
384 } else {
Wei Wang587fea72017-06-17 10:42:36 -0700385 dst_release_immediate(&rt->dst);
Martin KaFai Laud52d3992015-05-22 20:56:06 -0700386 return NULL;
387 }
388 }
389
390 return rt;
391}
David Ahern9ab179d2016-04-07 11:10:06 -0700392EXPORT_SYMBOL(ip6_dst_alloc);
Martin KaFai Laud52d3992015-05-22 20:56:06 -0700393
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394static void ip6_dst_destroy(struct dst_entry *dst)
395{
396 struct rt6_info *rt = (struct rt6_info *)dst;
YOSHIFUJI Hideaki / 吉藤英明ecd98832013-02-20 00:29:08 +0000397 struct dst_entry *from = dst->from;
Martin KaFai Lau8d0b94a2015-05-22 20:56:04 -0700398 struct inet6_dev *idev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399
Martin KaFai Lau4b32b5a2015-04-28 13:03:06 -0700400 dst_destroy_metrics_generic(dst);
Markus Elfring87775312015-07-02 16:30:24 +0200401 free_percpu(rt->rt6i_pcpu);
Martin KaFai Lau8d0b94a2015-05-22 20:56:04 -0700402 rt6_uncached_list_del(rt);
403
404 idev = rt->rt6i_idev;
David S. Miller38308472011-12-03 18:02:47 -0500405 if (idev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 rt->rt6i_idev = NULL;
407 in6_dev_put(idev);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900408 }
Gao feng1716a962012-04-06 00:13:10 +0000409
YOSHIFUJI Hideaki / 吉藤英明ecd98832013-02-20 00:29:08 +0000410 dst->from = NULL;
411 dst_release(from);
David S. Millerb3419362010-11-30 12:27:11 -0800412}
413
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414static void ip6_dst_ifdown(struct dst_entry *dst, struct net_device *dev,
415 int how)
416{
417 struct rt6_info *rt = (struct rt6_info *)dst;
418 struct inet6_dev *idev = rt->rt6i_idev;
Denis V. Lunev5a3e55d2007-12-07 00:38:10 -0800419 struct net_device *loopback_dev =
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900420 dev_net(dev)->loopback_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421
David S. Miller97cac082012-07-02 22:43:47 -0700422 if (dev != loopback_dev) {
423 if (idev && idev->dev == dev) {
424 struct inet6_dev *loopback_idev =
425 in6_dev_get(loopback_dev);
426 if (loopback_idev) {
427 rt->rt6i_idev = loopback_idev;
428 in6_dev_put(idev);
429 }
430 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 }
432}
433
Martin KaFai Lau5973fb12015-11-11 11:51:07 -0800434static bool __rt6_check_expired(const struct rt6_info *rt)
435{
436 if (rt->rt6i_flags & RTF_EXPIRES)
437 return time_after(jiffies, rt->dst.expires);
438 else
439 return false;
440}
441
Eric Dumazeta50feda2012-05-18 18:57:34 +0000442static bool rt6_check_expired(const struct rt6_info *rt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443{
Gao feng1716a962012-04-06 00:13:10 +0000444 if (rt->rt6i_flags & RTF_EXPIRES) {
445 if (time_after(jiffies, rt->dst.expires))
Eric Dumazeta50feda2012-05-18 18:57:34 +0000446 return true;
Gao feng1716a962012-04-06 00:13:10 +0000447 } else if (rt->dst.from) {
Li RongQing3fd91fb2012-09-13 19:54:57 +0000448 return rt6_check_expired((struct rt6_info *) rt->dst.from);
Gao feng1716a962012-04-06 00:13:10 +0000449 }
Eric Dumazeta50feda2012-05-18 18:57:34 +0000450 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451}
452
Nicolas Dichtel51ebd312012-10-22 03:42:09 +0000453/* Multipath route selection:
454 * Hash based function using packet header and flowlabel.
455 * Adapted from fib_info_hashfn()
456 */
457static int rt6_info_hash_nhsfn(unsigned int candidate_count,
458 const struct flowi6 *fl6)
459{
Tom Herbert644d0e62015-09-23 14:13:35 -0700460 return get_hash_from_flowi6(fl6) % candidate_count;
Nicolas Dichtel51ebd312012-10-22 03:42:09 +0000461}
462
463static 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
470 route_choosen = rt6_info_hash_nhsfn(match->rt6i_nsiblings + 1, fl6);
471 /* Don't change the route, if route_choosen == 0
472 * (siblings does not include ourself)
473 */
474 if (route_choosen)
475 list_for_each_entry_safe(sibling, next_sibling,
476 &match->rt6i_siblings, rt6i_siblings) {
477 route_choosen--;
478 if (route_choosen == 0) {
Nicolas Dichtel52bd4c02013-06-28 17:35:48 +0200479 if (rt6_score_route(sibling, oif, strict) < 0)
480 break;
Nicolas Dichtel51ebd312012-10-22 03:42:09 +0000481 match = sibling;
482 break;
483 }
484 }
485 return match;
486}
487
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488/*
Thomas Grafc71099a2006-08-04 23:20:06 -0700489 * Route lookup. Any table->tb6_lock is implied.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 */
491
Daniel Lezcano8ed67782008-03-04 13:48:30 -0800492static inline struct rt6_info *rt6_device_match(struct net *net,
493 struct rt6_info *rt,
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000494 const struct in6_addr *saddr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 int oif,
YOSHIFUJI Hideakid4208952008-06-27 20:14:54 -0700496 int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497{
498 struct rt6_info *local = NULL;
499 struct rt6_info *sprt;
500
YOSHIFUJI Hideakidd3abc42008-07-02 18:30:18 +0900501 if (!oif && ipv6_addr_any(saddr))
502 goto out;
503
Changli Gaod8d1f302010-06-10 23:31:35 -0700504 for (sprt = rt; sprt; sprt = sprt->dst.rt6_next) {
David S. Millerd1918542011-12-28 20:19:20 -0500505 struct net_device *dev = sprt->dst.dev;
YOSHIFUJI Hideakidd3abc42008-07-02 18:30:18 +0900506
507 if (oif) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 if (dev->ifindex == oif)
509 return sprt;
510 if (dev->flags & IFF_LOOPBACK) {
David S. Miller38308472011-12-03 18:02:47 -0500511 if (!sprt->rt6i_idev ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 sprt->rt6i_idev->dev->ifindex != oif) {
David Ahern17fb0b22015-09-25 15:22:54 -0600513 if (flags & RT6_LOOKUP_F_IFACE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 continue;
David Ahern17fb0b22015-09-25 15:22:54 -0600515 if (local &&
516 local->rt6i_idev->dev->ifindex == oif)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 continue;
518 }
519 local = sprt;
520 }
YOSHIFUJI Hideakidd3abc42008-07-02 18:30:18 +0900521 } else {
522 if (ipv6_chk_addr(net, saddr, dev,
523 flags & RT6_LOOKUP_F_IFACE))
524 return sprt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 }
YOSHIFUJI Hideakidd3abc42008-07-02 18:30:18 +0900526 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527
YOSHIFUJI Hideakidd3abc42008-07-02 18:30:18 +0900528 if (oif) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 if (local)
530 return local;
531
YOSHIFUJI Hideakid4208952008-06-27 20:14:54 -0700532 if (flags & RT6_LOOKUP_F_IFACE)
Daniel Lezcano8ed67782008-03-04 13:48:30 -0800533 return net->ipv6.ip6_null_entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 }
YOSHIFUJI Hideakidd3abc42008-07-02 18:30:18 +0900535out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 return rt;
537}
538
YOSHIFUJI Hideaki27097252006-03-20 17:05:13 -0800539#ifdef CONFIG_IPV6_ROUTER_PREF
Hannes Frederic Sowac2f17e82013-10-21 06:17:15 +0200540struct __rt6_probe_work {
541 struct work_struct work;
542 struct in6_addr target;
543 struct net_device *dev;
544};
545
546static void rt6_probe_deferred(struct work_struct *w)
547{
548 struct in6_addr mcaddr;
549 struct __rt6_probe_work *work =
550 container_of(w, struct __rt6_probe_work, work);
551
552 addrconf_addr_solict_mult(&work->target, &mcaddr);
Erik Nordmarkadc176c2016-12-02 14:00:08 -0800553 ndisc_send_ns(work->dev, &work->target, &mcaddr, NULL, 0);
Hannes Frederic Sowac2f17e82013-10-21 06:17:15 +0200554 dev_put(work->dev);
Michael Büsch662f5532015-02-08 10:14:07 +0100555 kfree(work);
Hannes Frederic Sowac2f17e82013-10-21 06:17:15 +0200556}
557
YOSHIFUJI Hideaki27097252006-03-20 17:05:13 -0800558static void rt6_probe(struct rt6_info *rt)
559{
Martin KaFai Lau990edb42015-07-24 09:57:42 -0700560 struct __rt6_probe_work *work;
Eric Dumazetf2c31e32011-07-29 19:00:53 +0000561 struct neighbour *neigh;
YOSHIFUJI Hideaki27097252006-03-20 17:05:13 -0800562 /*
563 * Okay, this does not seem to be appropriate
564 * for now, however, we need to check if it
565 * is really so; aka Router Reachability Probing.
566 *
567 * Router Reachability Probe MUST be rate-limited
568 * to no more than one per minute.
569 */
YOSHIFUJI Hideaki / 吉藤英明2152cae2013-01-17 12:53:43 +0000570 if (!rt || !(rt->rt6i_flags & RTF_GATEWAY))
Amerigo Wangfdd66812012-09-10 02:48:44 +0000571 return;
YOSHIFUJI Hideaki / 吉藤英明2152cae2013-01-17 12:53:43 +0000572 rcu_read_lock_bh();
573 neigh = __ipv6_neigh_lookup_noref(rt->dst.dev, &rt->rt6i_gateway);
574 if (neigh) {
Martin KaFai Lau8d6c31b2015-07-24 09:57:43 -0700575 if (neigh->nud_state & NUD_VALID)
576 goto out;
577
Martin KaFai Lau990edb42015-07-24 09:57:42 -0700578 work = NULL;
YOSHIFUJI Hideaki / 吉藤英明2152cae2013-01-17 12:53:43 +0000579 write_lock(&neigh->lock);
Martin KaFai Lau990edb42015-07-24 09:57:42 -0700580 if (!(neigh->nud_state & NUD_VALID) &&
581 time_after(jiffies,
582 neigh->updated +
583 rt->rt6i_idev->cnf.rtr_probe_interval)) {
584 work = kmalloc(sizeof(*work), GFP_ATOMIC);
585 if (work)
586 __neigh_set_probe_once(neigh);
Hannes Frederic Sowac2f17e82013-10-21 06:17:15 +0200587 }
YOSHIFUJI Hideaki / 吉藤英明2152cae2013-01-17 12:53:43 +0000588 write_unlock(&neigh->lock);
Martin KaFai Lau990edb42015-07-24 09:57:42 -0700589 } else {
590 work = kmalloc(sizeof(*work), GFP_ATOMIC);
Eric Dumazetf2c31e32011-07-29 19:00:53 +0000591 }
Martin KaFai Lau990edb42015-07-24 09:57:42 -0700592
593 if (work) {
594 INIT_WORK(&work->work, rt6_probe_deferred);
595 work->target = rt->rt6i_gateway;
596 dev_hold(rt->dst.dev);
597 work->dev = rt->dst.dev;
598 schedule_work(&work->work);
599 }
600
Martin KaFai Lau8d6c31b2015-07-24 09:57:43 -0700601out:
YOSHIFUJI Hideaki / 吉藤英明2152cae2013-01-17 12:53:43 +0000602 rcu_read_unlock_bh();
YOSHIFUJI Hideaki27097252006-03-20 17:05:13 -0800603}
604#else
605static inline void rt6_probe(struct rt6_info *rt)
606{
YOSHIFUJI Hideaki27097252006-03-20 17:05:13 -0800607}
608#endif
609
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610/*
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800611 * Default Router Selection (RFC 2461 6.3.6)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 */
Dave Jonesb6f99a22007-03-22 12:27:49 -0700613static inline int rt6_check_dev(struct rt6_info *rt, int oif)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614{
David S. Millerd1918542011-12-28 20:19:20 -0500615 struct net_device *dev = rt->dst.dev;
David S. Miller161980f2007-04-06 11:42:27 -0700616 if (!oif || dev->ifindex == oif)
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800617 return 2;
David S. Miller161980f2007-04-06 11:42:27 -0700618 if ((dev->flags & IFF_LOOPBACK) &&
619 rt->rt6i_idev && rt->rt6i_idev->dev->ifindex == oif)
620 return 1;
621 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622}
623
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200624static inline enum rt6_nud_state rt6_check_neigh(struct rt6_info *rt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625{
Eric Dumazetf2c31e32011-07-29 19:00:53 +0000626 struct neighbour *neigh;
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200627 enum rt6_nud_state ret = RT6_NUD_FAIL_HARD;
Eric Dumazetf2c31e32011-07-29 19:00:53 +0000628
YOSHIFUJI Hideaki4d0c5912006-05-26 13:23:41 -0700629 if (rt->rt6i_flags & RTF_NONEXTHOP ||
630 !(rt->rt6i_flags & RTF_GATEWAY))
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200631 return RT6_NUD_SUCCEED;
YOSHIFUJI Hideaki / 吉藤英明145a3622013-01-17 12:53:38 +0000632
633 rcu_read_lock_bh();
634 neigh = __ipv6_neigh_lookup_noref(rt->dst.dev, &rt->rt6i_gateway);
635 if (neigh) {
636 read_lock(&neigh->lock);
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800637 if (neigh->nud_state & NUD_VALID)
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200638 ret = RT6_NUD_SUCCEED;
YOSHIFUJI Hideaki398bcbe2008-01-19 00:35:16 -0800639#ifdef CONFIG_IPV6_ROUTER_PREF
Paul Marksa5a81f02012-12-03 10:26:54 +0000640 else if (!(neigh->nud_state & NUD_FAILED))
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200641 ret = RT6_NUD_SUCCEED;
Jiri Benc7e980562013-12-11 13:48:20 +0100642 else
643 ret = RT6_NUD_FAIL_PROBE;
YOSHIFUJI Hideaki398bcbe2008-01-19 00:35:16 -0800644#endif
YOSHIFUJI Hideaki / 吉藤英明145a3622013-01-17 12:53:38 +0000645 read_unlock(&neigh->lock);
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200646 } else {
647 ret = IS_ENABLED(CONFIG_IPV6_ROUTER_PREF) ?
Jiri Benc7e980562013-12-11 13:48:20 +0100648 RT6_NUD_SUCCEED : RT6_NUD_FAIL_DO_RR;
Paul Marksa5a81f02012-12-03 10:26:54 +0000649 }
YOSHIFUJI Hideaki / 吉藤英明145a3622013-01-17 12:53:38 +0000650 rcu_read_unlock_bh();
651
Paul Marksa5a81f02012-12-03 10:26:54 +0000652 return ret;
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800653}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800655static int rt6_score_route(struct rt6_info *rt, int oif,
656 int strict)
657{
Paul Marksa5a81f02012-12-03 10:26:54 +0000658 int m;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900659
YOSHIFUJI Hideaki4d0c5912006-05-26 13:23:41 -0700660 m = rt6_check_dev(rt, oif);
YOSHIFUJI Hideaki77d16f42006-08-23 17:25:05 -0700661 if (!m && (strict & RT6_LOOKUP_F_IFACE))
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200662 return RT6_NUD_FAIL_HARD;
YOSHIFUJI Hideakiebacaaa2006-03-20 17:04:53 -0800663#ifdef CONFIG_IPV6_ROUTER_PREF
664 m |= IPV6_DECODE_PREF(IPV6_EXTRACT_PREF(rt->rt6i_flags)) << 2;
665#endif
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200666 if (strict & RT6_LOOKUP_F_REACHABLE) {
667 int n = rt6_check_neigh(rt);
668 if (n < 0)
669 return n;
670 }
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800671 return m;
672}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673
David S. Millerf11e6652007-03-24 20:36:25 -0700674static struct rt6_info *find_match(struct rt6_info *rt, int oif, int strict,
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200675 int *mpri, struct rt6_info *match,
676 bool *do_rr)
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800677{
David S. Millerf11e6652007-03-24 20:36:25 -0700678 int m;
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200679 bool match_do_rr = false;
Andy Gospodarek35103d12015-08-13 10:39:01 -0400680 struct inet6_dev *idev = rt->rt6i_idev;
681 struct net_device *dev = rt->dst.dev;
682
683 if (dev && !netif_carrier_ok(dev) &&
David Ahernd5d32e42016-10-24 12:27:23 -0700684 idev->cnf.ignore_routes_with_linkdown &&
685 !(strict & RT6_LOOKUP_F_IGNORE_LINKSTATE))
Andy Gospodarek35103d12015-08-13 10:39:01 -0400686 goto out;
David S. Millerf11e6652007-03-24 20:36:25 -0700687
688 if (rt6_check_expired(rt))
689 goto out;
690
691 m = rt6_score_route(rt, oif, strict);
Jiri Benc7e980562013-12-11 13:48:20 +0100692 if (m == RT6_NUD_FAIL_DO_RR) {
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200693 match_do_rr = true;
694 m = 0; /* lowest valid score */
Jiri Benc7e980562013-12-11 13:48:20 +0100695 } else if (m == RT6_NUD_FAIL_HARD) {
David S. Millerf11e6652007-03-24 20:36:25 -0700696 goto out;
David S. Millerf11e6652007-03-24 20:36:25 -0700697 }
698
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200699 if (strict & RT6_LOOKUP_F_REACHABLE)
700 rt6_probe(rt);
701
Jiri Benc7e980562013-12-11 13:48:20 +0100702 /* note that m can be RT6_NUD_FAIL_PROBE at this point */
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200703 if (m > *mpri) {
704 *do_rr = match_do_rr;
705 *mpri = m;
706 match = rt;
707 }
David S. Millerf11e6652007-03-24 20:36:25 -0700708out:
709 return match;
710}
711
712static struct rt6_info *find_rr_leaf(struct fib6_node *fn,
713 struct rt6_info *rr_head,
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200714 u32 metric, int oif, int strict,
715 bool *do_rr)
David S. Millerf11e6652007-03-24 20:36:25 -0700716{
Steffen Klassert9fbdcfa2015-04-28 13:03:04 -0700717 struct rt6_info *rt, *match, *cont;
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800718 int mpri = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719
David S. Millerf11e6652007-03-24 20:36:25 -0700720 match = NULL;
Steffen Klassert9fbdcfa2015-04-28 13:03:04 -0700721 cont = NULL;
722 for (rt = rr_head; rt; rt = rt->dst.rt6_next) {
723 if (rt->rt6i_metric != metric) {
724 cont = rt;
725 break;
726 }
727
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200728 match = find_match(rt, oif, strict, &mpri, match, do_rr);
Steffen Klassert9fbdcfa2015-04-28 13:03:04 -0700729 }
730
731 for (rt = fn->leaf; rt && rt != rr_head; rt = rt->dst.rt6_next) {
732 if (rt->rt6i_metric != metric) {
733 cont = rt;
734 break;
735 }
736
737 match = find_match(rt, oif, strict, &mpri, match, do_rr);
738 }
739
740 if (match || !cont)
741 return match;
742
743 for (rt = cont; rt; rt = rt->dst.rt6_next)
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200744 match = find_match(rt, oif, strict, &mpri, match, do_rr);
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800745
David S. Millerf11e6652007-03-24 20:36:25 -0700746 return match;
747}
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800748
David S. Millerf11e6652007-03-24 20:36:25 -0700749static struct rt6_info *rt6_select(struct fib6_node *fn, int oif, int strict)
750{
751 struct rt6_info *match, *rt0;
Daniel Lezcano8ed67782008-03-04 13:48:30 -0800752 struct net *net;
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200753 bool do_rr = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754
David S. Millerf11e6652007-03-24 20:36:25 -0700755 rt0 = fn->rr_ptr;
756 if (!rt0)
757 fn->rr_ptr = rt0 = fn->leaf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200759 match = find_rr_leaf(fn, rt0, rt0->rt6i_metric, oif, strict,
760 &do_rr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200762 if (do_rr) {
Changli Gaod8d1f302010-06-10 23:31:35 -0700763 struct rt6_info *next = rt0->dst.rt6_next;
David S. Millerf11e6652007-03-24 20:36:25 -0700764
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800765 /* no entries matched; do round-robin */
David S. Millerf11e6652007-03-24 20:36:25 -0700766 if (!next || next->rt6i_metric != rt0->rt6i_metric)
767 next = fn->leaf;
768
769 if (next != rt0)
770 fn->rr_ptr = next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 }
772
David S. Millerd1918542011-12-28 20:19:20 -0500773 net = dev_net(rt0->dst.dev);
Eric Dumazeta02cec22010-09-22 20:43:57 +0000774 return match ? match : net->ipv6.ip6_null_entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775}
776
Martin KaFai Lau8b9df262015-05-22 20:55:59 -0700777static bool rt6_is_gw_or_nonexthop(const struct rt6_info *rt)
778{
779 return (rt->rt6i_flags & (RTF_NONEXTHOP | RTF_GATEWAY));
780}
781
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800782#ifdef CONFIG_IPV6_ROUTE_INFO
783int rt6_route_rcv(struct net_device *dev, u8 *opt, int len,
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000784 const struct in6_addr *gwaddr)
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800785{
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900786 struct net *net = dev_net(dev);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800787 struct route_info *rinfo = (struct route_info *) opt;
788 struct in6_addr prefix_buf, *prefix;
789 unsigned int pref;
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +0900790 unsigned long lifetime;
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800791 struct rt6_info *rt;
792
793 if (len < sizeof(struct route_info)) {
794 return -EINVAL;
795 }
796
797 /* Sanity check for prefix_len and length */
798 if (rinfo->length > 3) {
799 return -EINVAL;
800 } else if (rinfo->prefix_len > 128) {
801 return -EINVAL;
802 } else if (rinfo->prefix_len > 64) {
803 if (rinfo->length < 2) {
804 return -EINVAL;
805 }
806 } else if (rinfo->prefix_len > 0) {
807 if (rinfo->length < 1) {
808 return -EINVAL;
809 }
810 }
811
812 pref = rinfo->route_pref;
813 if (pref == ICMPV6_ROUTER_PREF_INVALID)
Jens Rosenboom3933fc92009-09-10 06:25:11 +0000814 return -EINVAL;
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800815
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +0900816 lifetime = addrconf_timeout_fixup(ntohl(rinfo->lifetime), HZ);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800817
818 if (rinfo->length == 3)
819 prefix = (struct in6_addr *)rinfo->prefix;
820 else {
821 /* this function is safe */
822 ipv6_addr_prefix(&prefix_buf,
823 (struct in6_addr *)rinfo->prefix,
824 rinfo->prefix_len);
825 prefix = &prefix_buf;
826 }
827
Duan Jiongf104a562013-11-08 09:56:53 +0800828 if (rinfo->prefix_len == 0)
829 rt = rt6_get_dflt_router(gwaddr, dev);
830 else
831 rt = rt6_get_route_info(net, prefix, rinfo->prefix_len,
David Ahern830218c2016-10-24 10:52:35 -0700832 gwaddr, dev);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800833
834 if (rt && !lifetime) {
Thomas Grafe0a1ad732006-08-22 00:00:21 -0700835 ip6_del_rt(rt);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800836 rt = NULL;
837 }
838
839 if (!rt && lifetime)
David Ahern830218c2016-10-24 10:52:35 -0700840 rt = rt6_add_route_info(net, prefix, rinfo->prefix_len, gwaddr,
841 dev, pref);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800842 else if (rt)
843 rt->rt6i_flags = RTF_ROUTEINFO |
844 (rt->rt6i_flags & ~RTF_PREF_MASK) | RTF_PREF(pref);
845
846 if (rt) {
Gao feng1716a962012-04-06 00:13:10 +0000847 if (!addrconf_finite_timeout(lifetime))
848 rt6_clean_expires(rt);
849 else
850 rt6_set_expires(rt, jiffies + HZ * lifetime);
851
Amerigo Wang94e187c2012-10-29 00:13:19 +0000852 ip6_rt_put(rt);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800853 }
854 return 0;
855}
856#endif
857
Martin KaFai Laua3c00e42014-10-20 13:42:43 -0700858static struct fib6_node* fib6_backtrack(struct fib6_node *fn,
859 struct in6_addr *saddr)
860{
861 struct fib6_node *pn;
862 while (1) {
863 if (fn->fn_flags & RTN_TL_ROOT)
864 return NULL;
865 pn = fn->parent;
866 if (FIB6_SUBTREE(pn) && FIB6_SUBTREE(pn) != fn)
867 fn = fib6_lookup(FIB6_SUBTREE(pn), NULL, saddr);
868 else
869 fn = pn;
870 if (fn->fn_flags & RTN_RTINFO)
871 return fn;
872 }
873}
Thomas Grafc71099a2006-08-04 23:20:06 -0700874
Daniel Lezcano8ed67782008-03-04 13:48:30 -0800875static struct rt6_info *ip6_pol_route_lookup(struct net *net,
876 struct fib6_table *table,
David S. Miller4c9483b2011-03-12 16:22:43 -0500877 struct flowi6 *fl6, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878{
879 struct fib6_node *fn;
880 struct rt6_info *rt;
881
Thomas Grafc71099a2006-08-04 23:20:06 -0700882 read_lock_bh(&table->tb6_lock);
David S. Miller4c9483b2011-03-12 16:22:43 -0500883 fn = fib6_lookup(&table->tb6_root, &fl6->daddr, &fl6->saddr);
Thomas Grafc71099a2006-08-04 23:20:06 -0700884restart:
885 rt = fn->leaf;
David S. Miller4c9483b2011-03-12 16:22:43 -0500886 rt = rt6_device_match(net, rt, &fl6->saddr, fl6->flowi6_oif, flags);
Nicolas Dichtel51ebd312012-10-22 03:42:09 +0000887 if (rt->rt6i_nsiblings && fl6->flowi6_oif == 0)
Nicolas Dichtel52bd4c02013-06-28 17:35:48 +0200888 rt = rt6_multipath_select(rt, fl6, fl6->flowi6_oif, flags);
Martin KaFai Laua3c00e42014-10-20 13:42:43 -0700889 if (rt == net->ipv6.ip6_null_entry) {
890 fn = fib6_backtrack(fn, &fl6->saddr);
891 if (fn)
892 goto restart;
893 }
Changli Gaod8d1f302010-06-10 23:31:35 -0700894 dst_use(&rt->dst, jiffies);
Thomas Grafc71099a2006-08-04 23:20:06 -0700895 read_unlock_bh(&table->tb6_lock);
David Ahernb8115802015-11-19 12:24:22 -0800896
897 trace_fib6_table_lookup(net, rt, table->tb6_id, fl6);
898
Thomas Grafc71099a2006-08-04 23:20:06 -0700899 return rt;
900
901}
902
Ian Morris67ba4152014-08-24 21:53:10 +0100903struct dst_entry *ip6_route_lookup(struct net *net, struct flowi6 *fl6,
Florian Westphalea6e5742011-09-05 16:05:44 +0200904 int flags)
905{
906 return fib6_rule_lookup(net, fl6, flags, ip6_pol_route_lookup);
907}
908EXPORT_SYMBOL_GPL(ip6_route_lookup);
909
YOSHIFUJI Hideaki9acd9f32008-04-10 15:42:10 +0900910struct rt6_info *rt6_lookup(struct net *net, const struct in6_addr *daddr,
911 const struct in6_addr *saddr, int oif, int strict)
Thomas Grafc71099a2006-08-04 23:20:06 -0700912{
David S. Miller4c9483b2011-03-12 16:22:43 -0500913 struct flowi6 fl6 = {
914 .flowi6_oif = oif,
915 .daddr = *daddr,
Thomas Grafc71099a2006-08-04 23:20:06 -0700916 };
917 struct dst_entry *dst;
YOSHIFUJI Hideaki77d16f42006-08-23 17:25:05 -0700918 int flags = strict ? RT6_LOOKUP_F_IFACE : 0;
Thomas Grafc71099a2006-08-04 23:20:06 -0700919
Thomas Grafadaa70b2006-10-13 15:01:03 -0700920 if (saddr) {
David S. Miller4c9483b2011-03-12 16:22:43 -0500921 memcpy(&fl6.saddr, saddr, sizeof(*saddr));
Thomas Grafadaa70b2006-10-13 15:01:03 -0700922 flags |= RT6_LOOKUP_F_HAS_SADDR;
923 }
924
David S. Miller4c9483b2011-03-12 16:22:43 -0500925 dst = fib6_rule_lookup(net, &fl6, flags, ip6_pol_route_lookup);
Thomas Grafc71099a2006-08-04 23:20:06 -0700926 if (dst->error == 0)
927 return (struct rt6_info *) dst;
928
929 dst_release(dst);
930
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931 return NULL;
932}
YOSHIFUJI Hideaki71590392007-02-22 22:05:40 +0900933EXPORT_SYMBOL(rt6_lookup);
934
Thomas Grafc71099a2006-08-04 23:20:06 -0700935/* ip6_ins_rt is called with FREE table->tb6_lock.
Wei Wang1cfb71e2017-06-17 10:42:33 -0700936 * It takes new route entry, the addition fails by any reason the
937 * route is released.
938 * Caller must hold dst before calling it.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939 */
940
Michal Kubečeke5fd3872014-03-27 13:04:08 +0100941static int __ip6_ins_rt(struct rt6_info *rt, struct nl_info *info,
David Ahern333c4302017-05-21 10:12:04 -0600942 struct mx6_config *mxc,
943 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944{
945 int err;
Thomas Grafc71099a2006-08-04 23:20:06 -0700946 struct fib6_table *table;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947
Thomas Grafc71099a2006-08-04 23:20:06 -0700948 table = rt->rt6i_table;
949 write_lock_bh(&table->tb6_lock);
David Ahern333c4302017-05-21 10:12:04 -0600950 err = fib6_add(&table->tb6_root, rt, info, mxc, extack);
Thomas Grafc71099a2006-08-04 23:20:06 -0700951 write_unlock_bh(&table->tb6_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952
953 return err;
954}
955
Thomas Graf40e22e82006-08-22 00:00:45 -0700956int ip6_ins_rt(struct rt6_info *rt)
957{
Florian Westphale715b6d2015-01-05 23:57:44 +0100958 struct nl_info info = { .nl_net = dev_net(rt->dst.dev), };
959 struct mx6_config mxc = { .mx = NULL, };
960
Wei Wang1cfb71e2017-06-17 10:42:33 -0700961 /* Hold dst to account for the reference from the fib6 tree */
962 dst_hold(&rt->dst);
David Ahern333c4302017-05-21 10:12:04 -0600963 return __ip6_ins_rt(rt, &info, &mxc, NULL);
Thomas Graf40e22e82006-08-22 00:00:45 -0700964}
965
Martin KaFai Lau8b9df262015-05-22 20:55:59 -0700966static struct rt6_info *ip6_rt_cache_alloc(struct rt6_info *ort,
967 const struct in6_addr *daddr,
968 const struct in6_addr *saddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970 struct rt6_info *rt;
971
972 /*
973 * Clone the route.
974 */
975
Martin KaFai Laud52d3992015-05-22 20:56:06 -0700976 if (ort->rt6i_flags & (RTF_CACHE | RTF_PCPU))
Martin KaFai Lau83a09ab2015-05-22 20:56:05 -0700977 ort = (struct rt6_info *)ort->dst.from;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978
Martin KaFai Lauad706862015-08-14 11:05:52 -0700979 rt = __ip6_dst_alloc(dev_net(ort->dst.dev), ort->dst.dev, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980
Martin KaFai Lau83a09ab2015-05-22 20:56:05 -0700981 if (!rt)
982 return NULL;
983
984 ip6_rt_copy_init(rt, ort);
985 rt->rt6i_flags |= RTF_CACHE;
986 rt->rt6i_metric = 0;
987 rt->dst.flags |= DST_HOST;
988 rt->rt6i_dst.addr = *daddr;
989 rt->rt6i_dst.plen = 128;
990
991 if (!rt6_is_gw_or_nonexthop(ort)) {
992 if (ort->rt6i_dst.plen != 128 &&
993 ipv6_addr_equal(&ort->rt6i_dst.addr, daddr))
994 rt->rt6i_flags |= RTF_ANYCAST;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995#ifdef CONFIG_IPV6_SUBTREES
Martin KaFai Lau83a09ab2015-05-22 20:56:05 -0700996 if (rt->rt6i_src.plen && saddr) {
997 rt->rt6i_src.addr = *saddr;
998 rt->rt6i_src.plen = 128;
Martin KaFai Lau8b9df262015-05-22 20:55:59 -0700999 }
Martin KaFai Lau83a09ab2015-05-22 20:56:05 -07001000#endif
YOSHIFUJI Hideaki95a9a5b2006-03-20 16:55:51 -08001001 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002
YOSHIFUJI Hideaki95a9a5b2006-03-20 16:55:51 -08001003 return rt;
1004}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001006static struct rt6_info *ip6_rt_pcpu_alloc(struct rt6_info *rt)
1007{
1008 struct rt6_info *pcpu_rt;
1009
1010 pcpu_rt = __ip6_dst_alloc(dev_net(rt->dst.dev),
Martin KaFai Lauad706862015-08-14 11:05:52 -07001011 rt->dst.dev, rt->dst.flags);
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001012
1013 if (!pcpu_rt)
1014 return NULL;
1015 ip6_rt_copy_init(pcpu_rt, rt);
1016 pcpu_rt->rt6i_protocol = rt->rt6i_protocol;
1017 pcpu_rt->rt6i_flags |= RTF_PCPU;
1018 return pcpu_rt;
1019}
1020
1021/* It should be called with read_lock_bh(&tb6_lock) acquired */
1022static struct rt6_info *rt6_get_pcpu_route(struct rt6_info *rt)
1023{
Martin KaFai Laua73e4192015-08-14 11:05:53 -07001024 struct rt6_info *pcpu_rt, **p;
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001025
1026 p = this_cpu_ptr(rt->rt6i_pcpu);
1027 pcpu_rt = *p;
1028
Martin KaFai Laua73e4192015-08-14 11:05:53 -07001029 if (pcpu_rt) {
1030 dst_hold(&pcpu_rt->dst);
1031 rt6_dst_from_metrics_check(pcpu_rt);
1032 }
1033 return pcpu_rt;
1034}
1035
1036static struct rt6_info *rt6_make_pcpu_route(struct rt6_info *rt)
1037{
Martin KaFai Lau9c7370a2015-08-14 11:05:54 -07001038 struct fib6_table *table = rt->rt6i_table;
Martin KaFai Laua73e4192015-08-14 11:05:53 -07001039 struct rt6_info *pcpu_rt, *prev, **p;
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001040
1041 pcpu_rt = ip6_rt_pcpu_alloc(rt);
1042 if (!pcpu_rt) {
1043 struct net *net = dev_net(rt->dst.dev);
1044
Martin KaFai Lau9c7370a2015-08-14 11:05:54 -07001045 dst_hold(&net->ipv6.ip6_null_entry->dst);
1046 return net->ipv6.ip6_null_entry;
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001047 }
1048
Martin KaFai Lau9c7370a2015-08-14 11:05:54 -07001049 read_lock_bh(&table->tb6_lock);
1050 if (rt->rt6i_pcpu) {
1051 p = this_cpu_ptr(rt->rt6i_pcpu);
1052 prev = cmpxchg(p, NULL, pcpu_rt);
1053 if (prev) {
1054 /* If someone did it before us, return prev instead */
Wei Wang587fea72017-06-17 10:42:36 -07001055 dst_release_immediate(&pcpu_rt->dst);
Martin KaFai Lau9c7370a2015-08-14 11:05:54 -07001056 pcpu_rt = prev;
1057 }
1058 } else {
1059 /* rt has been removed from the fib6 tree
1060 * before we have a chance to acquire the read_lock.
1061 * In this case, don't brother to create a pcpu rt
1062 * since rt is going away anyway. The next
1063 * dst_check() will trigger a re-lookup.
1064 */
Wei Wang587fea72017-06-17 10:42:36 -07001065 dst_release_immediate(&pcpu_rt->dst);
Martin KaFai Lau9c7370a2015-08-14 11:05:54 -07001066 pcpu_rt = rt;
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001067 }
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001068 dst_hold(&pcpu_rt->dst);
1069 rt6_dst_from_metrics_check(pcpu_rt);
Martin KaFai Lau9c7370a2015-08-14 11:05:54 -07001070 read_unlock_bh(&table->tb6_lock);
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001071 return pcpu_rt;
1072}
1073
David Ahern9ff74382016-06-13 13:44:19 -07001074struct rt6_info *ip6_pol_route(struct net *net, struct fib6_table *table,
1075 int oif, struct flowi6 *fl6, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076{
Martin KaFai Lau367efcb2014-10-20 13:42:45 -07001077 struct fib6_node *fn, *saved_fn;
Martin KaFai Lau45e4fd22015-05-22 20:56:00 -07001078 struct rt6_info *rt;
Thomas Grafc71099a2006-08-04 23:20:06 -07001079 int strict = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080
YOSHIFUJI Hideaki77d16f42006-08-23 17:25:05 -07001081 strict |= flags & RT6_LOOKUP_F_IFACE;
David Ahernd5d32e42016-10-24 12:27:23 -07001082 strict |= flags & RT6_LOOKUP_F_IGNORE_LINKSTATE;
Martin KaFai Lau367efcb2014-10-20 13:42:45 -07001083 if (net->ipv6.devconf_all->forwarding == 0)
1084 strict |= RT6_LOOKUP_F_REACHABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085
Thomas Grafc71099a2006-08-04 23:20:06 -07001086 read_lock_bh(&table->tb6_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087
David S. Miller4c9483b2011-03-12 16:22:43 -05001088 fn = fib6_lookup(&table->tb6_root, &fl6->daddr, &fl6->saddr);
Martin KaFai Lau367efcb2014-10-20 13:42:45 -07001089 saved_fn = fn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090
David Ahernca254492015-10-12 11:47:10 -07001091 if (fl6->flowi6_flags & FLOWI_FLAG_SKIP_NH_OIF)
1092 oif = 0;
1093
Martin KaFai Laua3c00e42014-10-20 13:42:43 -07001094redo_rt6_select:
Martin KaFai Lau367efcb2014-10-20 13:42:45 -07001095 rt = rt6_select(fn, oif, strict);
Nicolas Dichtel52bd4c02013-06-28 17:35:48 +02001096 if (rt->rt6i_nsiblings)
Martin KaFai Lau367efcb2014-10-20 13:42:45 -07001097 rt = rt6_multipath_select(rt, fl6, oif, strict);
Martin KaFai Laua3c00e42014-10-20 13:42:43 -07001098 if (rt == net->ipv6.ip6_null_entry) {
1099 fn = fib6_backtrack(fn, &fl6->saddr);
1100 if (fn)
1101 goto redo_rt6_select;
Martin KaFai Lau367efcb2014-10-20 13:42:45 -07001102 else if (strict & RT6_LOOKUP_F_REACHABLE) {
1103 /* also consider unreachable route */
1104 strict &= ~RT6_LOOKUP_F_REACHABLE;
1105 fn = saved_fn;
1106 goto redo_rt6_select;
Martin KaFai Lau367efcb2014-10-20 13:42:45 -07001107 }
Martin KaFai Laua3c00e42014-10-20 13:42:43 -07001108 }
1109
YOSHIFUJI Hideakifb9de912006-03-20 16:59:08 -08001110
Martin KaFai Lau3da59bd2015-05-22 20:56:03 -07001111 if (rt == net->ipv6.ip6_null_entry || (rt->rt6i_flags & RTF_CACHE)) {
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001112 dst_use(&rt->dst, jiffies);
1113 read_unlock_bh(&table->tb6_lock);
1114
1115 rt6_dst_from_metrics_check(rt);
David Ahernb8115802015-11-19 12:24:22 -08001116
1117 trace_fib6_table_lookup(net, rt, table->tb6_id, fl6);
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001118 return rt;
Martin KaFai Lau3da59bd2015-05-22 20:56:03 -07001119 } else if (unlikely((fl6->flowi6_flags & FLOWI_FLAG_KNOWN_NH) &&
1120 !(rt->rt6i_flags & RTF_GATEWAY))) {
1121 /* Create a RTF_CACHE clone which will not be
1122 * owned by the fib6 tree. It is for the special case where
1123 * the daddr in the skb during the neighbor look-up is different
1124 * from the fl6->daddr used to look-up route here.
1125 */
Thomas Grafc71099a2006-08-04 23:20:06 -07001126
Martin KaFai Lau3da59bd2015-05-22 20:56:03 -07001127 struct rt6_info *uncached_rt;
1128
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001129 dst_use(&rt->dst, jiffies);
1130 read_unlock_bh(&table->tb6_lock);
1131
Martin KaFai Lau3da59bd2015-05-22 20:56:03 -07001132 uncached_rt = ip6_rt_cache_alloc(rt, &fl6->daddr, NULL);
1133 dst_release(&rt->dst);
1134
Wei Wang1cfb71e2017-06-17 10:42:33 -07001135 if (uncached_rt) {
1136 /* Uncached_rt's refcnt is taken during ip6_rt_cache_alloc()
1137 * No need for another dst_hold()
1138 */
Martin KaFai Lau8d0b94a2015-05-22 20:56:04 -07001139 rt6_uncached_list_add(uncached_rt);
Wei Wang1cfb71e2017-06-17 10:42:33 -07001140 } else {
Martin KaFai Lau3da59bd2015-05-22 20:56:03 -07001141 uncached_rt = net->ipv6.ip6_null_entry;
Wei Wang1cfb71e2017-06-17 10:42:33 -07001142 dst_hold(&uncached_rt->dst);
1143 }
David Ahernb8115802015-11-19 12:24:22 -08001144
1145 trace_fib6_table_lookup(net, uncached_rt, table->tb6_id, fl6);
Martin KaFai Lau3da59bd2015-05-22 20:56:03 -07001146 return uncached_rt;
Martin KaFai Lau3da59bd2015-05-22 20:56:03 -07001147
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001148 } else {
1149 /* Get a percpu copy */
1150
1151 struct rt6_info *pcpu_rt;
1152
1153 rt->dst.lastuse = jiffies;
1154 rt->dst.__use++;
1155 pcpu_rt = rt6_get_pcpu_route(rt);
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001156
Martin KaFai Lau9c7370a2015-08-14 11:05:54 -07001157 if (pcpu_rt) {
1158 read_unlock_bh(&table->tb6_lock);
1159 } else {
1160 /* We have to do the read_unlock first
1161 * because rt6_make_pcpu_route() may trigger
1162 * ip6_dst_gc() which will take the write_lock.
1163 */
1164 dst_hold(&rt->dst);
1165 read_unlock_bh(&table->tb6_lock);
Martin KaFai Laua73e4192015-08-14 11:05:53 -07001166 pcpu_rt = rt6_make_pcpu_route(rt);
Martin KaFai Lau9c7370a2015-08-14 11:05:54 -07001167 dst_release(&rt->dst);
1168 }
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001169
David Ahernb8115802015-11-19 12:24:22 -08001170 trace_fib6_table_lookup(net, pcpu_rt, table->tb6_id, fl6);
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001171 return pcpu_rt;
Martin KaFai Lau9c7370a2015-08-14 11:05:54 -07001172
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001173 }
Thomas Grafc71099a2006-08-04 23:20:06 -07001174}
David Ahern9ff74382016-06-13 13:44:19 -07001175EXPORT_SYMBOL_GPL(ip6_pol_route);
Thomas Grafc71099a2006-08-04 23:20:06 -07001176
Daniel Lezcano8ed67782008-03-04 13:48:30 -08001177static struct rt6_info *ip6_pol_route_input(struct net *net, struct fib6_table *table,
David S. Miller4c9483b2011-03-12 16:22:43 -05001178 struct flowi6 *fl6, int flags)
Pavel Emelyanov4acad722007-10-15 13:02:51 -07001179{
David S. Miller4c9483b2011-03-12 16:22:43 -05001180 return ip6_pol_route(net, table, fl6->flowi6_iif, fl6, flags);
Pavel Emelyanov4acad722007-10-15 13:02:51 -07001181}
1182
Mahesh Bandeward409b842016-09-16 12:59:08 -07001183struct dst_entry *ip6_route_input_lookup(struct net *net,
1184 struct net_device *dev,
1185 struct flowi6 *fl6, int flags)
Shmulik Ladkani72331bc2012-04-01 04:03:45 +00001186{
1187 if (rt6_need_strict(&fl6->daddr) && dev->type != ARPHRD_PIMREG)
1188 flags |= RT6_LOOKUP_F_IFACE;
1189
1190 return fib6_rule_lookup(net, fl6, flags, ip6_pol_route_input);
1191}
Mahesh Bandeward409b842016-09-16 12:59:08 -07001192EXPORT_SYMBOL_GPL(ip6_route_input_lookup);
Shmulik Ladkani72331bc2012-04-01 04:03:45 +00001193
Thomas Grafc71099a2006-08-04 23:20:06 -07001194void ip6_route_input(struct sk_buff *skb)
1195{
Eric Dumazetb71d1d42011-04-22 04:53:02 +00001196 const struct ipv6hdr *iph = ipv6_hdr(skb);
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001197 struct net *net = dev_net(skb->dev);
Thomas Grafadaa70b2006-10-13 15:01:03 -07001198 int flags = RT6_LOOKUP_F_HAS_SADDR;
Jiri Benc904af042015-08-20 13:56:31 +02001199 struct ip_tunnel_info *tun_info;
David S. Miller4c9483b2011-03-12 16:22:43 -05001200 struct flowi6 fl6 = {
David Aherne0d56fd2016-09-10 12:09:57 -07001201 .flowi6_iif = skb->dev->ifindex,
David S. Miller4c9483b2011-03-12 16:22:43 -05001202 .daddr = iph->daddr,
1203 .saddr = iph->saddr,
YOSHIFUJI Hideaki / 吉藤英明6502ca52013-01-13 05:01:51 +00001204 .flowlabel = ip6_flowinfo(iph),
David S. Miller4c9483b2011-03-12 16:22:43 -05001205 .flowi6_mark = skb->mark,
1206 .flowi6_proto = iph->nexthdr,
Thomas Grafc71099a2006-08-04 23:20:06 -07001207 };
Thomas Grafadaa70b2006-10-13 15:01:03 -07001208
Jiri Benc904af042015-08-20 13:56:31 +02001209 tun_info = skb_tunnel_info(skb);
Jiri Benc46fa0622015-08-28 20:48:19 +02001210 if (tun_info && !(tun_info->mode & IP_TUNNEL_INFO_TX))
Jiri Benc904af042015-08-20 13:56:31 +02001211 fl6.flowi6_tun_key.tun_id = tun_info->key.tun_id;
Jiri Benc06e9d042015-08-20 13:56:26 +02001212 skb_dst_drop(skb);
Shmulik Ladkani72331bc2012-04-01 04:03:45 +00001213 skb_dst_set(skb, ip6_route_input_lookup(net, skb->dev, &fl6, flags));
Thomas Grafc71099a2006-08-04 23:20:06 -07001214}
1215
Daniel Lezcano8ed67782008-03-04 13:48:30 -08001216static struct rt6_info *ip6_pol_route_output(struct net *net, struct fib6_table *table,
David S. Miller4c9483b2011-03-12 16:22:43 -05001217 struct flowi6 *fl6, int flags)
Thomas Grafc71099a2006-08-04 23:20:06 -07001218{
David S. Miller4c9483b2011-03-12 16:22:43 -05001219 return ip6_pol_route(net, table, fl6->flowi6_oif, fl6, flags);
Thomas Grafc71099a2006-08-04 23:20:06 -07001220}
1221
Paolo Abeni6f21c962016-01-29 12:30:19 +01001222struct dst_entry *ip6_route_output_flags(struct net *net, const struct sock *sk,
1223 struct flowi6 *fl6, int flags)
Thomas Grafc71099a2006-08-04 23:20:06 -07001224{
David Ahernd46a9d62015-10-21 08:42:22 -07001225 bool any_src;
Thomas Grafc71099a2006-08-04 23:20:06 -07001226
David Ahern4c1feac2016-09-10 12:09:56 -07001227 if (rt6_need_strict(&fl6->daddr)) {
1228 struct dst_entry *dst;
1229
1230 dst = l3mdev_link_scope_lookup(net, fl6);
1231 if (dst)
1232 return dst;
1233 }
David Ahernca254492015-10-12 11:47:10 -07001234
Pavel Emelyanov1fb94892012-08-08 21:53:36 +00001235 fl6->flowi6_iif = LOOPBACK_IFINDEX;
David McCullough4dc27d1c2012-06-25 15:42:26 +00001236
David Ahernd46a9d62015-10-21 08:42:22 -07001237 any_src = ipv6_addr_any(&fl6->saddr);
David Ahern741a11d2015-09-28 10:12:13 -07001238 if ((sk && sk->sk_bound_dev_if) || rt6_need_strict(&fl6->daddr) ||
David Ahernd46a9d62015-10-21 08:42:22 -07001239 (fl6->flowi6_oif && any_src))
YOSHIFUJI Hideaki77d16f42006-08-23 17:25:05 -07001240 flags |= RT6_LOOKUP_F_IFACE;
Thomas Grafc71099a2006-08-04 23:20:06 -07001241
David Ahernd46a9d62015-10-21 08:42:22 -07001242 if (!any_src)
Thomas Grafadaa70b2006-10-13 15:01:03 -07001243 flags |= RT6_LOOKUP_F_HAS_SADDR;
YOSHIFUJI Hideaki / 吉藤英明0c9a2ac2010-03-07 00:14:44 +00001244 else if (sk)
1245 flags |= rt6_srcprefs2flags(inet6_sk(sk)->srcprefs);
Thomas Grafadaa70b2006-10-13 15:01:03 -07001246
David S. Miller4c9483b2011-03-12 16:22:43 -05001247 return fib6_rule_lookup(net, fl6, flags, ip6_pol_route_output);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248}
Paolo Abeni6f21c962016-01-29 12:30:19 +01001249EXPORT_SYMBOL_GPL(ip6_route_output_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250
David S. Miller2774c132011-03-01 14:59:04 -08001251struct dst_entry *ip6_blackhole_route(struct net *net, struct dst_entry *dst_orig)
David S. Miller14e50e52007-05-24 18:17:54 -07001252{
David S. Miller5c1e6aa2011-04-28 14:13:38 -07001253 struct rt6_info *rt, *ort = (struct rt6_info *) dst_orig;
Wei Wang1dbe32522017-06-17 10:42:26 -07001254 struct net_device *loopback_dev = net->loopback_dev;
David S. Miller14e50e52007-05-24 18:17:54 -07001255 struct dst_entry *new = NULL;
1256
Wei Wang1dbe32522017-06-17 10:42:26 -07001257 rt = dst_alloc(&ip6_dst_blackhole_ops, loopback_dev, 1,
Wei Wang587fea72017-06-17 10:42:36 -07001258 DST_OBSOLETE_NONE, DST_NOGC);
David S. Miller14e50e52007-05-24 18:17:54 -07001259 if (rt) {
Martin KaFai Lau0a1f5962015-10-15 16:39:58 -07001260 rt6_info_init(rt);
1261
Changli Gaod8d1f302010-06-10 23:31:35 -07001262 new = &rt->dst;
David S. Miller14e50e52007-05-24 18:17:54 -07001263 new->__use = 1;
Herbert Xu352e5122007-11-13 21:34:06 -08001264 new->input = dst_discard;
Eric W. Biedermanede20592015-10-07 16:48:47 -05001265 new->output = dst_discard_out;
David S. Miller14e50e52007-05-24 18:17:54 -07001266
Martin KaFai Lau0a1f5962015-10-15 16:39:58 -07001267 dst_copy_metrics(new, &ort->dst);
David S. Miller14e50e52007-05-24 18:17:54 -07001268
Wei Wang1dbe32522017-06-17 10:42:26 -07001269 rt->rt6i_idev = in6_dev_get(loopback_dev);
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001270 rt->rt6i_gateway = ort->rt6i_gateway;
Martin KaFai Lau0a1f5962015-10-15 16:39:58 -07001271 rt->rt6i_flags = ort->rt6i_flags & ~RTF_PCPU;
David S. Miller14e50e52007-05-24 18:17:54 -07001272 rt->rt6i_metric = 0;
1273
1274 memcpy(&rt->rt6i_dst, &ort->rt6i_dst, sizeof(struct rt6key));
1275#ifdef CONFIG_IPV6_SUBTREES
1276 memcpy(&rt->rt6i_src, &ort->rt6i_src, sizeof(struct rt6key));
1277#endif
David S. Miller14e50e52007-05-24 18:17:54 -07001278 }
1279
David S. Miller69ead7a2011-03-01 14:45:33 -08001280 dst_release(dst_orig);
1281 return new ? new : ERR_PTR(-ENOMEM);
David S. Miller14e50e52007-05-24 18:17:54 -07001282}
David S. Miller14e50e52007-05-24 18:17:54 -07001283
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284/*
1285 * Destination cache support functions
1286 */
1287
Martin KaFai Lau4b32b5a2015-04-28 13:03:06 -07001288static void rt6_dst_from_metrics_check(struct rt6_info *rt)
1289{
1290 if (rt->dst.from &&
1291 dst_metrics_ptr(&rt->dst) != dst_metrics_ptr(rt->dst.from))
1292 dst_init_metrics(&rt->dst, dst_metrics_ptr(rt->dst.from), true);
1293}
1294
Martin KaFai Lau3da59bd2015-05-22 20:56:03 -07001295static struct dst_entry *rt6_check(struct rt6_info *rt, u32 cookie)
1296{
1297 if (!rt->rt6i_node || (rt->rt6i_node->fn_sernum != cookie))
1298 return NULL;
1299
1300 if (rt6_check_expired(rt))
1301 return NULL;
1302
1303 return &rt->dst;
1304}
1305
1306static struct dst_entry *rt6_dst_from_check(struct rt6_info *rt, u32 cookie)
1307{
Martin KaFai Lau5973fb12015-11-11 11:51:07 -08001308 if (!__rt6_check_expired(rt) &&
1309 rt->dst.obsolete == DST_OBSOLETE_FORCE_CHK &&
Martin KaFai Lau3da59bd2015-05-22 20:56:03 -07001310 rt6_check((struct rt6_info *)(rt->dst.from), cookie))
1311 return &rt->dst;
1312 else
1313 return NULL;
1314}
1315
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316static struct dst_entry *ip6_dst_check(struct dst_entry *dst, u32 cookie)
1317{
1318 struct rt6_info *rt;
1319
1320 rt = (struct rt6_info *) dst;
1321
Nicolas Dichtel6f3118b2012-09-10 22:09:46 +00001322 /* All IPV6 dsts are created with ->obsolete set to the value
1323 * DST_OBSOLETE_FORCE_CHK which forces validation calls down
1324 * into this function always.
1325 */
Hannes Frederic Sowae3bc10b2013-10-24 07:48:24 +02001326
Martin KaFai Lau4b32b5a2015-04-28 13:03:06 -07001327 rt6_dst_from_metrics_check(rt);
1328
Martin KaFai Lau02bcf4e2015-11-11 11:51:08 -08001329 if (rt->rt6i_flags & RTF_PCPU ||
1330 (unlikely(dst->flags & DST_NOCACHE) && rt->dst.from))
Martin KaFai Lau3da59bd2015-05-22 20:56:03 -07001331 return rt6_dst_from_check(rt, cookie);
1332 else
1333 return rt6_check(rt, cookie);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334}
1335
1336static struct dst_entry *ip6_negative_advice(struct dst_entry *dst)
1337{
1338 struct rt6_info *rt = (struct rt6_info *) dst;
1339
1340 if (rt) {
YOSHIFUJI Hideaki / 吉藤英明54c1a852010-03-28 07:15:45 +00001341 if (rt->rt6i_flags & RTF_CACHE) {
1342 if (rt6_check_expired(rt)) {
1343 ip6_del_rt(rt);
1344 dst = NULL;
1345 }
1346 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347 dst_release(dst);
YOSHIFUJI Hideaki / 吉藤英明54c1a852010-03-28 07:15:45 +00001348 dst = NULL;
1349 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350 }
YOSHIFUJI Hideaki / 吉藤英明54c1a852010-03-28 07:15:45 +00001351 return dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352}
1353
1354static void ip6_link_failure(struct sk_buff *skb)
1355{
1356 struct rt6_info *rt;
1357
Alexey Dobriyan3ffe5332010-02-18 08:25:24 +00001358 icmpv6_send(skb, ICMPV6_DEST_UNREACH, ICMPV6_ADDR_UNREACH, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359
Eric Dumazetadf30902009-06-02 05:19:30 +00001360 rt = (struct rt6_info *) skb_dst(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361 if (rt) {
Hannes Frederic Sowa1eb4f752013-07-10 23:00:57 +02001362 if (rt->rt6i_flags & RTF_CACHE) {
Wei Wangad65a2f2017-06-17 10:42:35 -07001363 if (dst_hold_safe(&rt->dst))
1364 ip6_del_rt(rt);
Hannes Frederic Sowa1eb4f752013-07-10 23:00:57 +02001365 } else if (rt->rt6i_node && (rt->rt6i_flags & RTF_DEFAULT)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366 rt->rt6i_node->fn_sernum = -1;
Hannes Frederic Sowa1eb4f752013-07-10 23:00:57 +02001367 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368 }
1369}
1370
Martin KaFai Lau45e4fd22015-05-22 20:56:00 -07001371static void rt6_do_update_pmtu(struct rt6_info *rt, u32 mtu)
1372{
1373 struct net *net = dev_net(rt->dst.dev);
1374
1375 rt->rt6i_flags |= RTF_MODIFIED;
1376 rt->rt6i_pmtu = mtu;
1377 rt6_update_expires(rt, net->ipv6.sysctl.ip6_rt_mtu_expires);
1378}
1379
Martin KaFai Lau0d3f6d22015-11-11 11:51:06 -08001380static bool rt6_cache_allowed_for_pmtu(const struct rt6_info *rt)
1381{
1382 return !(rt->rt6i_flags & RTF_CACHE) &&
1383 (rt->rt6i_flags & RTF_PCPU || rt->rt6i_node);
1384}
1385
Martin KaFai Lau45e4fd22015-05-22 20:56:00 -07001386static void __ip6_rt_update_pmtu(struct dst_entry *dst, const struct sock *sk,
1387 const struct ipv6hdr *iph, u32 mtu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388{
Julian Anastasov0dec8792017-02-06 23:14:16 +02001389 const struct in6_addr *daddr, *saddr;
Ian Morris67ba4152014-08-24 21:53:10 +01001390 struct rt6_info *rt6 = (struct rt6_info *)dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391
Martin KaFai Lau45e4fd22015-05-22 20:56:00 -07001392 if (rt6->rt6i_flags & RTF_LOCAL)
1393 return;
1394
Xin Long19bda362016-10-28 18:18:01 +08001395 if (dst_metric_locked(dst, RTAX_MTU))
1396 return;
1397
Julian Anastasov0dec8792017-02-06 23:14:16 +02001398 if (iph) {
1399 daddr = &iph->daddr;
1400 saddr = &iph->saddr;
1401 } else if (sk) {
1402 daddr = &sk->sk_v6_daddr;
1403 saddr = &inet6_sk(sk)->saddr;
1404 } else {
1405 daddr = NULL;
1406 saddr = NULL;
1407 }
1408 dst_confirm_neigh(dst, daddr);
Martin KaFai Lau45e4fd22015-05-22 20:56:00 -07001409 mtu = max_t(u32, mtu, IPV6_MIN_MTU);
1410 if (mtu >= dst_mtu(dst))
1411 return;
David S. Miller81aded22012-06-15 14:54:11 -07001412
Martin KaFai Lau0d3f6d22015-11-11 11:51:06 -08001413 if (!rt6_cache_allowed_for_pmtu(rt6)) {
Martin KaFai Lau45e4fd22015-05-22 20:56:00 -07001414 rt6_do_update_pmtu(rt6, mtu);
Julian Anastasov0dec8792017-02-06 23:14:16 +02001415 } else if (daddr) {
Martin KaFai Lau45e4fd22015-05-22 20:56:00 -07001416 struct rt6_info *nrt6;
Hagen Paul Pfeifer9d289712015-01-15 22:34:25 +01001417
Martin KaFai Lau45e4fd22015-05-22 20:56:00 -07001418 nrt6 = ip6_rt_cache_alloc(rt6, daddr, saddr);
1419 if (nrt6) {
1420 rt6_do_update_pmtu(nrt6, mtu);
1421
1422 /* ip6_ins_rt(nrt6) will bump the
1423 * rt6->rt6i_node->fn_sernum
1424 * which will fail the next rt6_check() and
1425 * invalidate the sk->sk_dst_cache.
1426 */
1427 ip6_ins_rt(nrt6);
Wei Wang1cfb71e2017-06-17 10:42:33 -07001428 /* Release the reference taken in
1429 * ip6_rt_cache_alloc()
1430 */
1431 dst_release(&nrt6->dst);
Martin KaFai Lau45e4fd22015-05-22 20:56:00 -07001432 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433 }
1434}
1435
Martin KaFai Lau45e4fd22015-05-22 20:56:00 -07001436static void ip6_rt_update_pmtu(struct dst_entry *dst, struct sock *sk,
1437 struct sk_buff *skb, u32 mtu)
1438{
1439 __ip6_rt_update_pmtu(dst, sk, skb ? ipv6_hdr(skb) : NULL, mtu);
1440}
1441
David S. Miller42ae66c2012-06-15 20:01:57 -07001442void ip6_update_pmtu(struct sk_buff *skb, struct net *net, __be32 mtu,
Lorenzo Colittie2d118a2016-11-04 02:23:43 +09001443 int oif, u32 mark, kuid_t uid)
David S. Miller81aded22012-06-15 14:54:11 -07001444{
1445 const struct ipv6hdr *iph = (struct ipv6hdr *) skb->data;
1446 struct dst_entry *dst;
1447 struct flowi6 fl6;
1448
1449 memset(&fl6, 0, sizeof(fl6));
1450 fl6.flowi6_oif = oif;
Lorenzo Colitti1b3c61d2014-05-13 10:17:34 -07001451 fl6.flowi6_mark = mark ? mark : IP6_REPLY_MARK(net, skb->mark);
David S. Miller81aded22012-06-15 14:54:11 -07001452 fl6.daddr = iph->daddr;
1453 fl6.saddr = iph->saddr;
YOSHIFUJI Hideaki / 吉藤英明6502ca52013-01-13 05:01:51 +00001454 fl6.flowlabel = ip6_flowinfo(iph);
Lorenzo Colittie2d118a2016-11-04 02:23:43 +09001455 fl6.flowi6_uid = uid;
David S. Miller81aded22012-06-15 14:54:11 -07001456
1457 dst = ip6_route_output(net, NULL, &fl6);
1458 if (!dst->error)
Martin KaFai Lau45e4fd22015-05-22 20:56:00 -07001459 __ip6_rt_update_pmtu(dst, NULL, iph, ntohl(mtu));
David S. Miller81aded22012-06-15 14:54:11 -07001460 dst_release(dst);
1461}
1462EXPORT_SYMBOL_GPL(ip6_update_pmtu);
1463
1464void ip6_sk_update_pmtu(struct sk_buff *skb, struct sock *sk, __be32 mtu)
1465{
Martin KaFai Lau33c162a2016-04-11 15:29:36 -07001466 struct dst_entry *dst;
1467
David S. Miller81aded22012-06-15 14:54:11 -07001468 ip6_update_pmtu(skb, sock_net(sk), mtu,
Lorenzo Colittie2d118a2016-11-04 02:23:43 +09001469 sk->sk_bound_dev_if, sk->sk_mark, sk->sk_uid);
Martin KaFai Lau33c162a2016-04-11 15:29:36 -07001470
1471 dst = __sk_dst_get(sk);
1472 if (!dst || !dst->obsolete ||
1473 dst->ops->check(dst, inet6_sk(sk)->dst_cookie))
1474 return;
1475
1476 bh_lock_sock(sk);
1477 if (!sock_owned_by_user(sk) && !ipv6_addr_v4mapped(&sk->sk_v6_daddr))
1478 ip6_datagram_dst_update(sk, false);
1479 bh_unlock_sock(sk);
David S. Miller81aded22012-06-15 14:54:11 -07001480}
1481EXPORT_SYMBOL_GPL(ip6_sk_update_pmtu);
1482
Duan Jiongb55b76b2013-09-04 19:44:21 +08001483/* Handle redirects */
1484struct ip6rd_flowi {
1485 struct flowi6 fl6;
1486 struct in6_addr gateway;
1487};
1488
1489static struct rt6_info *__ip6_route_redirect(struct net *net,
1490 struct fib6_table *table,
1491 struct flowi6 *fl6,
1492 int flags)
1493{
1494 struct ip6rd_flowi *rdfl = (struct ip6rd_flowi *)fl6;
1495 struct rt6_info *rt;
1496 struct fib6_node *fn;
1497
1498 /* Get the "current" route for this destination and
Alexander Alemayhu67c408c2017-01-07 23:53:00 +01001499 * check if the redirect has come from appropriate router.
Duan Jiongb55b76b2013-09-04 19:44:21 +08001500 *
1501 * RFC 4861 specifies that redirects should only be
1502 * accepted if they come from the nexthop to the target.
1503 * Due to the way the routes are chosen, this notion
1504 * is a bit fuzzy and one might need to check all possible
1505 * routes.
1506 */
1507
1508 read_lock_bh(&table->tb6_lock);
1509 fn = fib6_lookup(&table->tb6_root, &fl6->daddr, &fl6->saddr);
1510restart:
1511 for (rt = fn->leaf; rt; rt = rt->dst.rt6_next) {
1512 if (rt6_check_expired(rt))
1513 continue;
1514 if (rt->dst.error)
1515 break;
1516 if (!(rt->rt6i_flags & RTF_GATEWAY))
1517 continue;
1518 if (fl6->flowi6_oif != rt->dst.dev->ifindex)
1519 continue;
1520 if (!ipv6_addr_equal(&rdfl->gateway, &rt->rt6i_gateway))
1521 continue;
1522 break;
1523 }
1524
1525 if (!rt)
1526 rt = net->ipv6.ip6_null_entry;
1527 else if (rt->dst.error) {
1528 rt = net->ipv6.ip6_null_entry;
Martin KaFai Laub0a1ba52015-01-20 19:16:02 -08001529 goto out;
1530 }
1531
1532 if (rt == net->ipv6.ip6_null_entry) {
Martin KaFai Laua3c00e42014-10-20 13:42:43 -07001533 fn = fib6_backtrack(fn, &fl6->saddr);
1534 if (fn)
1535 goto restart;
Duan Jiongb55b76b2013-09-04 19:44:21 +08001536 }
Martin KaFai Laua3c00e42014-10-20 13:42:43 -07001537
Martin KaFai Laub0a1ba52015-01-20 19:16:02 -08001538out:
Duan Jiongb55b76b2013-09-04 19:44:21 +08001539 dst_hold(&rt->dst);
1540
1541 read_unlock_bh(&table->tb6_lock);
1542
David Ahernb8115802015-11-19 12:24:22 -08001543 trace_fib6_table_lookup(net, rt, table->tb6_id, fl6);
Duan Jiongb55b76b2013-09-04 19:44:21 +08001544 return rt;
1545};
1546
1547static struct dst_entry *ip6_route_redirect(struct net *net,
1548 const struct flowi6 *fl6,
1549 const struct in6_addr *gateway)
1550{
1551 int flags = RT6_LOOKUP_F_HAS_SADDR;
1552 struct ip6rd_flowi rdfl;
1553
1554 rdfl.fl6 = *fl6;
1555 rdfl.gateway = *gateway;
1556
1557 return fib6_rule_lookup(net, &rdfl.fl6,
1558 flags, __ip6_route_redirect);
1559}
1560
Lorenzo Colittie2d118a2016-11-04 02:23:43 +09001561void ip6_redirect(struct sk_buff *skb, struct net *net, int oif, u32 mark,
1562 kuid_t uid)
David S. Miller3a5ad2e2012-07-12 00:08:07 -07001563{
1564 const struct ipv6hdr *iph = (struct ipv6hdr *) skb->data;
1565 struct dst_entry *dst;
1566 struct flowi6 fl6;
1567
1568 memset(&fl6, 0, sizeof(fl6));
Julian Anastasove374c612014-04-28 10:51:56 +03001569 fl6.flowi6_iif = LOOPBACK_IFINDEX;
David S. Miller3a5ad2e2012-07-12 00:08:07 -07001570 fl6.flowi6_oif = oif;
1571 fl6.flowi6_mark = mark;
David S. Miller3a5ad2e2012-07-12 00:08:07 -07001572 fl6.daddr = iph->daddr;
1573 fl6.saddr = iph->saddr;
YOSHIFUJI Hideaki / 吉藤英明6502ca52013-01-13 05:01:51 +00001574 fl6.flowlabel = ip6_flowinfo(iph);
Lorenzo Colittie2d118a2016-11-04 02:23:43 +09001575 fl6.flowi6_uid = uid;
David S. Miller3a5ad2e2012-07-12 00:08:07 -07001576
Duan Jiongb55b76b2013-09-04 19:44:21 +08001577 dst = ip6_route_redirect(net, &fl6, &ipv6_hdr(skb)->saddr);
1578 rt6_do_redirect(dst, NULL, skb);
David S. Miller3a5ad2e2012-07-12 00:08:07 -07001579 dst_release(dst);
1580}
1581EXPORT_SYMBOL_GPL(ip6_redirect);
1582
Duan Jiongc92a59e2013-08-22 12:07:35 +08001583void ip6_redirect_no_header(struct sk_buff *skb, struct net *net, int oif,
1584 u32 mark)
1585{
1586 const struct ipv6hdr *iph = ipv6_hdr(skb);
1587 const struct rd_msg *msg = (struct rd_msg *)icmp6_hdr(skb);
1588 struct dst_entry *dst;
1589 struct flowi6 fl6;
1590
1591 memset(&fl6, 0, sizeof(fl6));
Julian Anastasove374c612014-04-28 10:51:56 +03001592 fl6.flowi6_iif = LOOPBACK_IFINDEX;
Duan Jiongc92a59e2013-08-22 12:07:35 +08001593 fl6.flowi6_oif = oif;
1594 fl6.flowi6_mark = mark;
Duan Jiongc92a59e2013-08-22 12:07:35 +08001595 fl6.daddr = msg->dest;
1596 fl6.saddr = iph->daddr;
Lorenzo Colittie2d118a2016-11-04 02:23:43 +09001597 fl6.flowi6_uid = sock_net_uid(net, NULL);
Duan Jiongc92a59e2013-08-22 12:07:35 +08001598
Duan Jiongb55b76b2013-09-04 19:44:21 +08001599 dst = ip6_route_redirect(net, &fl6, &iph->saddr);
1600 rt6_do_redirect(dst, NULL, skb);
Duan Jiongc92a59e2013-08-22 12:07:35 +08001601 dst_release(dst);
1602}
1603
David S. Miller3a5ad2e2012-07-12 00:08:07 -07001604void ip6_sk_redirect(struct sk_buff *skb, struct sock *sk)
1605{
Lorenzo Colittie2d118a2016-11-04 02:23:43 +09001606 ip6_redirect(skb, sock_net(sk), sk->sk_bound_dev_if, sk->sk_mark,
1607 sk->sk_uid);
David S. Miller3a5ad2e2012-07-12 00:08:07 -07001608}
1609EXPORT_SYMBOL_GPL(ip6_sk_redirect);
1610
David S. Miller0dbaee32010-12-13 12:52:14 -08001611static unsigned int ip6_default_advmss(const struct dst_entry *dst)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612{
David S. Miller0dbaee32010-12-13 12:52:14 -08001613 struct net_device *dev = dst->dev;
1614 unsigned int mtu = dst_mtu(dst);
1615 struct net *net = dev_net(dev);
1616
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617 mtu -= sizeof(struct ipv6hdr) + sizeof(struct tcphdr);
1618
Daniel Lezcano55786892008-03-04 13:47:47 -08001619 if (mtu < net->ipv6.sysctl.ip6_rt_min_advmss)
1620 mtu = net->ipv6.sysctl.ip6_rt_min_advmss;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621
1622 /*
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001623 * Maximal non-jumbo IPv6 payload is IPV6_MAXPLEN and
1624 * corresponding MSS is IPV6_MAXPLEN - tcp_header_size.
1625 * IPV6_MAXPLEN is also valid and means: "any MSS,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626 * rely only on pmtu discovery"
1627 */
1628 if (mtu > IPV6_MAXPLEN - sizeof(struct tcphdr))
1629 mtu = IPV6_MAXPLEN;
1630 return mtu;
1631}
1632
Steffen Klassertebb762f2011-11-23 02:12:51 +00001633static unsigned int ip6_mtu(const struct dst_entry *dst)
David S. Millerd33e4552010-12-14 13:01:14 -08001634{
Martin KaFai Lau4b32b5a2015-04-28 13:03:06 -07001635 const struct rt6_info *rt = (const struct rt6_info *)dst;
1636 unsigned int mtu = rt->rt6i_pmtu;
David S. Millerd33e4552010-12-14 13:01:14 -08001637 struct inet6_dev *idev;
Steffen Klassert618f9bc2011-11-23 02:13:31 +00001638
1639 if (mtu)
Eric Dumazet30f78d82014-04-10 21:23:36 -07001640 goto out;
Steffen Klassert618f9bc2011-11-23 02:13:31 +00001641
Martin KaFai Lau4b32b5a2015-04-28 13:03:06 -07001642 mtu = dst_metric_raw(dst, RTAX_MTU);
1643 if (mtu)
1644 goto out;
1645
Steffen Klassert618f9bc2011-11-23 02:13:31 +00001646 mtu = IPV6_MIN_MTU;
David S. Millerd33e4552010-12-14 13:01:14 -08001647
1648 rcu_read_lock();
1649 idev = __in6_dev_get(dst->dev);
1650 if (idev)
1651 mtu = idev->cnf.mtu6;
1652 rcu_read_unlock();
1653
Eric Dumazet30f78d82014-04-10 21:23:36 -07001654out:
Roopa Prabhu14972cb2016-08-24 20:10:43 -07001655 mtu = min_t(unsigned int, mtu, IP6_MAX_MTU);
1656
1657 return mtu - lwtunnel_headroom(dst->lwtstate, mtu);
David S. Millerd33e4552010-12-14 13:01:14 -08001658}
1659
YOSHIFUJI Hideaki3b009442007-12-06 16:11:48 -08001660static struct dst_entry *icmp6_dst_gc_list;
1661static DEFINE_SPINLOCK(icmp6_dst_lock);
Thomas Graf5d0bbee2006-08-04 03:37:36 -07001662
YOSHIFUJI Hideaki3b009442007-12-06 16:11:48 -08001663struct dst_entry *icmp6_dst_alloc(struct net_device *dev,
David S. Miller87a11572011-12-06 17:04:13 -05001664 struct flowi6 *fl6)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665{
David S. Miller87a11572011-12-06 17:04:13 -05001666 struct dst_entry *dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667 struct rt6_info *rt;
1668 struct inet6_dev *idev = in6_dev_get(dev);
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001669 struct net *net = dev_net(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670
David S. Miller38308472011-12-03 18:02:47 -05001671 if (unlikely(!idev))
Eric Dumazet122bdf62012-03-14 21:13:11 +00001672 return ERR_PTR(-ENODEV);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673
Martin KaFai Lauad706862015-08-14 11:05:52 -07001674 rt = ip6_dst_alloc(net, dev, 0);
David S. Miller38308472011-12-03 18:02:47 -05001675 if (unlikely(!rt)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676 in6_dev_put(idev);
David S. Miller87a11572011-12-06 17:04:13 -05001677 dst = ERR_PTR(-ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678 goto out;
1679 }
1680
Yan, Zheng8e2ec632011-09-05 21:34:30 +00001681 rt->dst.flags |= DST_HOST;
1682 rt->dst.output = ip6_output;
Julian Anastasov550bab42013-10-20 15:43:04 +03001683 rt->rt6i_gateway = fl6->daddr;
David S. Miller87a11572011-12-06 17:04:13 -05001684 rt->rt6i_dst.addr = fl6->daddr;
Yan, Zheng8e2ec632011-09-05 21:34:30 +00001685 rt->rt6i_dst.plen = 128;
1686 rt->rt6i_idev = idev;
Li RongQing14edd872012-10-24 14:01:18 +08001687 dst_metric_set(&rt->dst, RTAX_HOPLIMIT, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688
Wei Wang587fea72017-06-17 10:42:36 -07001689 /* Add this dst into uncached_list so that rt6_ifdown() can
1690 * do proper release of the net_device
1691 */
1692 rt6_uncached_list_add(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693
David S. Miller87a11572011-12-06 17:04:13 -05001694 dst = xfrm_lookup(net, &rt->dst, flowi6_to_flowi(fl6), NULL, 0);
1695
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696out:
David S. Miller87a11572011-12-06 17:04:13 -05001697 return dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698}
1699
Stephen Hemminger3d0f24a2008-07-22 14:35:50 -07001700int icmp6_dst_gc(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701{
Hagen Paul Pfeifere9476e952011-02-25 05:45:19 +00001702 struct dst_entry *dst, **pprev;
Stephen Hemminger3d0f24a2008-07-22 14:35:50 -07001703 int more = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704
YOSHIFUJI Hideaki3b009442007-12-06 16:11:48 -08001705 spin_lock_bh(&icmp6_dst_lock);
1706 pprev = &icmp6_dst_gc_list;
Thomas Graf5d0bbee2006-08-04 03:37:36 -07001707
Linus Torvalds1da177e2005-04-16 15:20:36 -07001708 while ((dst = *pprev) != NULL) {
1709 if (!atomic_read(&dst->__refcnt)) {
1710 *pprev = dst->next;
1711 dst_free(dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712 } else {
1713 pprev = &dst->next;
Stephen Hemminger3d0f24a2008-07-22 14:35:50 -07001714 ++more;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715 }
1716 }
1717
YOSHIFUJI Hideaki3b009442007-12-06 16:11:48 -08001718 spin_unlock_bh(&icmp6_dst_lock);
Thomas Graf5d0bbee2006-08-04 03:37:36 -07001719
Stephen Hemminger3d0f24a2008-07-22 14:35:50 -07001720 return more;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721}
1722
David S. Miller1e493d12008-09-10 17:27:15 -07001723static void icmp6_clean_all(int (*func)(struct rt6_info *rt, void *arg),
1724 void *arg)
1725{
1726 struct dst_entry *dst, **pprev;
1727
1728 spin_lock_bh(&icmp6_dst_lock);
1729 pprev = &icmp6_dst_gc_list;
1730 while ((dst = *pprev) != NULL) {
1731 struct rt6_info *rt = (struct rt6_info *) dst;
1732 if (func(rt, arg)) {
1733 *pprev = dst->next;
1734 dst_free(dst);
1735 } else {
1736 pprev = &dst->next;
1737 }
1738 }
1739 spin_unlock_bh(&icmp6_dst_lock);
1740}
1741
Daniel Lezcano569d3642008-01-18 03:56:57 -08001742static int ip6_dst_gc(struct dst_ops *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743{
Alexey Dobriyan86393e52009-08-29 01:34:49 +00001744 struct net *net = container_of(ops, struct net, ipv6.ip6_dst_ops);
Daniel Lezcano7019b782008-03-04 13:50:14 -08001745 int rt_min_interval = net->ipv6.sysctl.ip6_rt_gc_min_interval;
1746 int rt_max_size = net->ipv6.sysctl.ip6_rt_max_size;
1747 int rt_elasticity = net->ipv6.sysctl.ip6_rt_gc_elasticity;
1748 int rt_gc_timeout = net->ipv6.sysctl.ip6_rt_gc_timeout;
1749 unsigned long rt_last_gc = net->ipv6.ip6_rt_last_gc;
Eric Dumazetfc66f952010-10-08 06:37:34 +00001750 int entries;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751
Eric Dumazetfc66f952010-10-08 06:37:34 +00001752 entries = dst_entries_get_fast(ops);
Michal Kubeček49a18d82013-08-01 10:04:24 +02001753 if (time_after(rt_last_gc + rt_min_interval, jiffies) &&
Eric Dumazetfc66f952010-10-08 06:37:34 +00001754 entries <= rt_max_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755 goto out;
1756
Benjamin Thery6891a342008-03-04 13:49:47 -08001757 net->ipv6.ip6_rt_gc_expire++;
Li RongQing14956642014-05-19 17:30:28 +08001758 fib6_run_gc(net->ipv6.ip6_rt_gc_expire, net, true);
Eric Dumazetfc66f952010-10-08 06:37:34 +00001759 entries = dst_entries_get_slow(ops);
1760 if (entries < ops->gc_thresh)
Daniel Lezcano7019b782008-03-04 13:50:14 -08001761 net->ipv6.ip6_rt_gc_expire = rt_gc_timeout>>1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762out:
Daniel Lezcano7019b782008-03-04 13:50:14 -08001763 net->ipv6.ip6_rt_gc_expire -= net->ipv6.ip6_rt_gc_expire>>rt_elasticity;
Eric Dumazetfc66f952010-10-08 06:37:34 +00001764 return entries > rt_max_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765}
1766
Florian Westphale715b6d2015-01-05 23:57:44 +01001767static int ip6_convert_metrics(struct mx6_config *mxc,
1768 const struct fib6_config *cfg)
1769{
Daniel Borkmannc3a8d942015-08-31 15:58:47 +02001770 bool ecn_ca = false;
Florian Westphale715b6d2015-01-05 23:57:44 +01001771 struct nlattr *nla;
1772 int remaining;
1773 u32 *mp;
1774
Ian Morris63159f22015-03-29 14:00:04 +01001775 if (!cfg->fc_mx)
Florian Westphale715b6d2015-01-05 23:57:44 +01001776 return 0;
1777
1778 mp = kzalloc(sizeof(u32) * RTAX_MAX, GFP_KERNEL);
1779 if (unlikely(!mp))
1780 return -ENOMEM;
1781
1782 nla_for_each_attr(nla, cfg->fc_mx, cfg->fc_mx_len, remaining) {
1783 int type = nla_type(nla);
Daniel Borkmann1bb14802015-08-31 15:58:45 +02001784 u32 val;
Florian Westphale715b6d2015-01-05 23:57:44 +01001785
Daniel Borkmann1bb14802015-08-31 15:58:45 +02001786 if (!type)
1787 continue;
1788 if (unlikely(type > RTAX_MAX))
1789 goto err;
Daniel Borkmannea697632015-01-05 23:57:47 +01001790
Daniel Borkmann1bb14802015-08-31 15:58:45 +02001791 if (type == RTAX_CC_ALGO) {
1792 char tmp[TCP_CA_NAME_MAX];
1793
1794 nla_strlcpy(tmp, nla, sizeof(tmp));
Daniel Borkmannc3a8d942015-08-31 15:58:47 +02001795 val = tcp_ca_get_key_by_name(tmp, &ecn_ca);
Daniel Borkmann1bb14802015-08-31 15:58:45 +02001796 if (val == TCP_CA_UNSPEC)
Florian Westphale715b6d2015-01-05 23:57:44 +01001797 goto err;
Daniel Borkmann1bb14802015-08-31 15:58:45 +02001798 } else {
1799 val = nla_get_u32(nla);
Florian Westphale715b6d2015-01-05 23:57:44 +01001800 }
Paolo Abeni626abd52016-05-13 18:33:41 +02001801 if (type == RTAX_HOPLIMIT && val > 255)
1802 val = 255;
Daniel Borkmannb8d3e412015-08-31 15:58:46 +02001803 if (type == RTAX_FEATURES && (val & ~RTAX_FEATURE_MASK))
1804 goto err;
Daniel Borkmann1bb14802015-08-31 15:58:45 +02001805
1806 mp[type - 1] = val;
1807 __set_bit(type - 1, mxc->mx_valid);
Florian Westphale715b6d2015-01-05 23:57:44 +01001808 }
1809
Daniel Borkmannc3a8d942015-08-31 15:58:47 +02001810 if (ecn_ca) {
1811 __set_bit(RTAX_FEATURES - 1, mxc->mx_valid);
1812 mp[RTAX_FEATURES - 1] |= DST_FEATURE_ECN_CA;
1813 }
Florian Westphale715b6d2015-01-05 23:57:44 +01001814
Daniel Borkmannc3a8d942015-08-31 15:58:47 +02001815 mxc->mx = mp;
Florian Westphale715b6d2015-01-05 23:57:44 +01001816 return 0;
1817 err:
1818 kfree(mp);
1819 return -EINVAL;
1820}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821
David Ahern8c145862016-04-24 21:26:04 -07001822static struct rt6_info *ip6_nh_lookup_table(struct net *net,
1823 struct fib6_config *cfg,
1824 const struct in6_addr *gw_addr)
1825{
1826 struct flowi6 fl6 = {
1827 .flowi6_oif = cfg->fc_ifindex,
1828 .daddr = *gw_addr,
1829 .saddr = cfg->fc_prefsrc,
1830 };
1831 struct fib6_table *table;
1832 struct rt6_info *rt;
David Ahernd5d32e42016-10-24 12:27:23 -07001833 int flags = RT6_LOOKUP_F_IFACE | RT6_LOOKUP_F_IGNORE_LINKSTATE;
David Ahern8c145862016-04-24 21:26:04 -07001834
1835 table = fib6_get_table(net, cfg->fc_table);
1836 if (!table)
1837 return NULL;
1838
1839 if (!ipv6_addr_any(&cfg->fc_prefsrc))
1840 flags |= RT6_LOOKUP_F_HAS_SADDR;
1841
1842 rt = ip6_pol_route(net, table, cfg->fc_ifindex, &fl6, flags);
1843
1844 /* if table lookup failed, fall back to full lookup */
1845 if (rt == net->ipv6.ip6_null_entry) {
1846 ip6_rt_put(rt);
1847 rt = NULL;
1848 }
1849
1850 return rt;
1851}
1852
David Ahern333c4302017-05-21 10:12:04 -06001853static struct rt6_info *ip6_route_info_create(struct fib6_config *cfg,
1854 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855{
Daniel Lezcano55786892008-03-04 13:47:47 -08001856 struct net *net = cfg->fc_nlinfo.nl_net;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857 struct rt6_info *rt = NULL;
1858 struct net_device *dev = NULL;
1859 struct inet6_dev *idev = NULL;
Thomas Grafc71099a2006-08-04 23:20:06 -07001860 struct fib6_table *table;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001861 int addr_type;
Roopa Prabhu8c5b83f2015-10-10 08:26:36 -07001862 int err = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863
David Ahern557c44b2017-04-19 14:19:43 -07001864 /* RTF_PCPU is an internal flag; can not be set by userspace */
David Ahernd5d531c2017-05-21 10:12:05 -06001865 if (cfg->fc_flags & RTF_PCPU) {
1866 NL_SET_ERR_MSG(extack, "Userspace can not set RTF_PCPU");
David Ahern557c44b2017-04-19 14:19:43 -07001867 goto out;
David Ahernd5d531c2017-05-21 10:12:05 -06001868 }
David Ahern557c44b2017-04-19 14:19:43 -07001869
David Ahernd5d531c2017-05-21 10:12:05 -06001870 if (cfg->fc_dst_len > 128) {
1871 NL_SET_ERR_MSG(extack, "Invalid prefix length");
Roopa Prabhu8c5b83f2015-10-10 08:26:36 -07001872 goto out;
David Ahernd5d531c2017-05-21 10:12:05 -06001873 }
1874 if (cfg->fc_src_len > 128) {
1875 NL_SET_ERR_MSG(extack, "Invalid source address length");
1876 goto out;
1877 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001878#ifndef CONFIG_IPV6_SUBTREES
David Ahernd5d531c2017-05-21 10:12:05 -06001879 if (cfg->fc_src_len) {
1880 NL_SET_ERR_MSG(extack,
1881 "Specifying source address requires IPV6_SUBTREES to be enabled");
Roopa Prabhu8c5b83f2015-10-10 08:26:36 -07001882 goto out;
David Ahernd5d531c2017-05-21 10:12:05 -06001883 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884#endif
Thomas Graf86872cb2006-08-22 00:01:08 -07001885 if (cfg->fc_ifindex) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001886 err = -ENODEV;
Daniel Lezcano55786892008-03-04 13:47:47 -08001887 dev = dev_get_by_index(net, cfg->fc_ifindex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888 if (!dev)
1889 goto out;
1890 idev = in6_dev_get(dev);
1891 if (!idev)
1892 goto out;
1893 }
1894
Thomas Graf86872cb2006-08-22 00:01:08 -07001895 if (cfg->fc_metric == 0)
1896 cfg->fc_metric = IP6_RT_PRIO_USER;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897
Matti Vaittinend71314b2011-11-14 00:14:49 +00001898 err = -ENOBUFS;
David S. Miller38308472011-12-03 18:02:47 -05001899 if (cfg->fc_nlinfo.nlh &&
1900 !(cfg->fc_nlinfo.nlh->nlmsg_flags & NLM_F_CREATE)) {
Matti Vaittinend71314b2011-11-14 00:14:49 +00001901 table = fib6_get_table(net, cfg->fc_table);
David S. Miller38308472011-12-03 18:02:47 -05001902 if (!table) {
Joe Perchesf3213832012-05-15 14:11:53 +00001903 pr_warn("NLM_F_CREATE should be specified when creating new route\n");
Matti Vaittinend71314b2011-11-14 00:14:49 +00001904 table = fib6_new_table(net, cfg->fc_table);
1905 }
1906 } else {
1907 table = fib6_new_table(net, cfg->fc_table);
1908 }
David S. Miller38308472011-12-03 18:02:47 -05001909
1910 if (!table)
Thomas Grafc71099a2006-08-04 23:20:06 -07001911 goto out;
Thomas Grafc71099a2006-08-04 23:20:06 -07001912
Martin KaFai Lauad706862015-08-14 11:05:52 -07001913 rt = ip6_dst_alloc(net, NULL,
1914 (cfg->fc_flags & RTF_ADDRCONF) ? 0 : DST_NOCOUNT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915
David S. Miller38308472011-12-03 18:02:47 -05001916 if (!rt) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001917 err = -ENOMEM;
1918 goto out;
1919 }
1920
Gao feng1716a962012-04-06 00:13:10 +00001921 if (cfg->fc_flags & RTF_EXPIRES)
1922 rt6_set_expires(rt, jiffies +
1923 clock_t_to_jiffies(cfg->fc_expires));
1924 else
1925 rt6_clean_expires(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001926
Thomas Graf86872cb2006-08-22 00:01:08 -07001927 if (cfg->fc_protocol == RTPROT_UNSPEC)
1928 cfg->fc_protocol = RTPROT_BOOT;
1929 rt->rt6i_protocol = cfg->fc_protocol;
1930
1931 addr_type = ipv6_addr_type(&cfg->fc_dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932
1933 if (addr_type & IPV6_ADDR_MULTICAST)
Changli Gaod8d1f302010-06-10 23:31:35 -07001934 rt->dst.input = ip6_mc_input;
Maciej Żenczykowskiab79ad12010-09-27 00:07:02 +00001935 else if (cfg->fc_flags & RTF_LOCAL)
1936 rt->dst.input = ip6_input;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001937 else
Changli Gaod8d1f302010-06-10 23:31:35 -07001938 rt->dst.input = ip6_forward;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001939
Changli Gaod8d1f302010-06-10 23:31:35 -07001940 rt->dst.output = ip6_output;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001941
Roopa Prabhu19e42e42015-07-21 10:43:48 +02001942 if (cfg->fc_encap) {
1943 struct lwtunnel_state *lwtstate;
1944
David Ahern30357d72017-01-30 12:07:37 -08001945 err = lwtunnel_build_state(cfg->fc_encap_type,
Tom Herbert127eb7c2015-08-24 09:45:41 -07001946 cfg->fc_encap, AF_INET6, cfg,
David Ahern9ae28722017-05-27 16:19:28 -06001947 &lwtstate, extack);
Roopa Prabhu19e42e42015-07-21 10:43:48 +02001948 if (err)
1949 goto out;
Jiri Benc61adedf2015-08-20 13:56:25 +02001950 rt->dst.lwtstate = lwtstate_get(lwtstate);
1951 if (lwtunnel_output_redirect(rt->dst.lwtstate)) {
1952 rt->dst.lwtstate->orig_output = rt->dst.output;
1953 rt->dst.output = lwtunnel_output;
Tom Herbert25368622015-08-17 13:42:24 -07001954 }
Jiri Benc61adedf2015-08-20 13:56:25 +02001955 if (lwtunnel_input_redirect(rt->dst.lwtstate)) {
1956 rt->dst.lwtstate->orig_input = rt->dst.input;
1957 rt->dst.input = lwtunnel_input;
Tom Herbert25368622015-08-17 13:42:24 -07001958 }
Roopa Prabhu19e42e42015-07-21 10:43:48 +02001959 }
1960
Thomas Graf86872cb2006-08-22 00:01:08 -07001961 ipv6_addr_prefix(&rt->rt6i_dst.addr, &cfg->fc_dst, cfg->fc_dst_len);
1962 rt->rt6i_dst.plen = cfg->fc_dst_len;
Martin KaFai Lauafc4eef2015-04-28 13:03:07 -07001963 if (rt->rt6i_dst.plen == 128)
Michal Kubečeke5fd3872014-03-27 13:04:08 +01001964 rt->dst.flags |= DST_HOST;
Michal Kubečeke5fd3872014-03-27 13:04:08 +01001965
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966#ifdef CONFIG_IPV6_SUBTREES
Thomas Graf86872cb2006-08-22 00:01:08 -07001967 ipv6_addr_prefix(&rt->rt6i_src.addr, &cfg->fc_src, cfg->fc_src_len);
1968 rt->rt6i_src.plen = cfg->fc_src_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969#endif
1970
Thomas Graf86872cb2006-08-22 00:01:08 -07001971 rt->rt6i_metric = cfg->fc_metric;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972
1973 /* We cannot add true routes via loopback here,
1974 they would result in kernel looping; promote them to reject routes
1975 */
Thomas Graf86872cb2006-08-22 00:01:08 -07001976 if ((cfg->fc_flags & RTF_REJECT) ||
David S. Miller38308472011-12-03 18:02:47 -05001977 (dev && (dev->flags & IFF_LOOPBACK) &&
1978 !(addr_type & IPV6_ADDR_LOOPBACK) &&
1979 !(cfg->fc_flags & RTF_LOCAL))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001980 /* hold loopback dev/idev if we haven't done so. */
Daniel Lezcano55786892008-03-04 13:47:47 -08001981 if (dev != net->loopback_dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001982 if (dev) {
1983 dev_put(dev);
1984 in6_dev_put(idev);
1985 }
Daniel Lezcano55786892008-03-04 13:47:47 -08001986 dev = net->loopback_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001987 dev_hold(dev);
1988 idev = in6_dev_get(dev);
1989 if (!idev) {
1990 err = -ENODEV;
1991 goto out;
1992 }
1993 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001994 rt->rt6i_flags = RTF_REJECT|RTF_NONEXTHOP;
Nicolas Dichtelef2c7d72012-09-05 02:12:42 +00001995 switch (cfg->fc_type) {
1996 case RTN_BLACKHOLE:
1997 rt->dst.error = -EINVAL;
Eric W. Biedermanede20592015-10-07 16:48:47 -05001998 rt->dst.output = dst_discard_out;
Kamala R7150aed2013-12-02 19:55:21 +05301999 rt->dst.input = dst_discard;
Nicolas Dichtelef2c7d72012-09-05 02:12:42 +00002000 break;
2001 case RTN_PROHIBIT:
2002 rt->dst.error = -EACCES;
Kamala R7150aed2013-12-02 19:55:21 +05302003 rt->dst.output = ip6_pkt_prohibit_out;
2004 rt->dst.input = ip6_pkt_prohibit;
Nicolas Dichtelef2c7d72012-09-05 02:12:42 +00002005 break;
Nicolas Dichtelb4949ab2012-09-06 05:53:35 +00002006 case RTN_THROW:
Nikola Forró0315e382015-09-17 16:01:32 +02002007 case RTN_UNREACHABLE:
Nicolas Dichtelef2c7d72012-09-05 02:12:42 +00002008 default:
Kamala R7150aed2013-12-02 19:55:21 +05302009 rt->dst.error = (cfg->fc_type == RTN_THROW) ? -EAGAIN
Nikola Forró0315e382015-09-17 16:01:32 +02002010 : (cfg->fc_type == RTN_UNREACHABLE)
2011 ? -EHOSTUNREACH : -ENETUNREACH;
Kamala R7150aed2013-12-02 19:55:21 +05302012 rt->dst.output = ip6_pkt_discard_out;
2013 rt->dst.input = ip6_pkt_discard;
Nicolas Dichtelef2c7d72012-09-05 02:12:42 +00002014 break;
2015 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002016 goto install_route;
2017 }
2018
Thomas Graf86872cb2006-08-22 00:01:08 -07002019 if (cfg->fc_flags & RTF_GATEWAY) {
Eric Dumazetb71d1d42011-04-22 04:53:02 +00002020 const struct in6_addr *gw_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002021 int gwa_type;
2022
Thomas Graf86872cb2006-08-22 00:01:08 -07002023 gw_addr = &cfg->fc_gateway;
Florian Westphal330567b2015-08-07 10:54:28 +02002024 gwa_type = ipv6_addr_type(gw_addr);
Florian Westphal48ed7b22015-05-21 00:25:41 +02002025
2026 /* if gw_addr is local we will fail to detect this in case
2027 * address is still TENTATIVE (DAD in progress). rt6_lookup()
2028 * will return already-added prefix route via interface that
2029 * prefix route was assigned to, which might be non-loopback.
2030 */
2031 err = -EINVAL;
Florian Westphal330567b2015-08-07 10:54:28 +02002032 if (ipv6_chk_addr_and_flags(net, gw_addr,
2033 gwa_type & IPV6_ADDR_LINKLOCAL ?
David Ahernd5d531c2017-05-21 10:12:05 -06002034 dev : NULL, 0, 0)) {
2035 NL_SET_ERR_MSG(extack, "Invalid gateway address");
Florian Westphal48ed7b22015-05-21 00:25:41 +02002036 goto out;
David Ahernd5d531c2017-05-21 10:12:05 -06002037 }
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00002038 rt->rt6i_gateway = *gw_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002039
2040 if (gwa_type != (IPV6_ADDR_LINKLOCAL|IPV6_ADDR_UNICAST)) {
David Ahern8c145862016-04-24 21:26:04 -07002041 struct rt6_info *grt = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002042
2043 /* IPv6 strictly inhibits using not link-local
2044 addresses as nexthop address.
2045 Otherwise, router will not able to send redirects.
2046 It is very good, but in some (rare!) circumstances
2047 (SIT, PtP, NBMA NOARP links) it is handy to allow
2048 some exceptions. --ANK
Erik Nordmark96d58222016-12-03 20:57:09 -08002049 We allow IPv4-mapped nexthops to support RFC4798-type
2050 addressing
Linus Torvalds1da177e2005-04-16 15:20:36 -07002051 */
Erik Nordmark96d58222016-12-03 20:57:09 -08002052 if (!(gwa_type & (IPV6_ADDR_UNICAST |
David Ahernd5d531c2017-05-21 10:12:05 -06002053 IPV6_ADDR_MAPPED))) {
2054 NL_SET_ERR_MSG(extack,
2055 "Invalid gateway address");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002056 goto out;
David Ahernd5d531c2017-05-21 10:12:05 -06002057 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058
Vincent Bernata435a072016-09-18 17:46:07 +02002059 if (cfg->fc_table) {
David Ahern8c145862016-04-24 21:26:04 -07002060 grt = ip6_nh_lookup_table(net, cfg, gw_addr);
2061
Vincent Bernata435a072016-09-18 17:46:07 +02002062 if (grt) {
2063 if (grt->rt6i_flags & RTF_GATEWAY ||
2064 (dev && dev != grt->dst.dev)) {
2065 ip6_rt_put(grt);
2066 grt = NULL;
2067 }
2068 }
2069 }
2070
David Ahern8c145862016-04-24 21:26:04 -07002071 if (!grt)
2072 grt = rt6_lookup(net, gw_addr, NULL,
2073 cfg->fc_ifindex, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002074
2075 err = -EHOSTUNREACH;
David S. Miller38308472011-12-03 18:02:47 -05002076 if (!grt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002077 goto out;
2078 if (dev) {
David S. Millerd1918542011-12-28 20:19:20 -05002079 if (dev != grt->dst.dev) {
Amerigo Wang94e187c2012-10-29 00:13:19 +00002080 ip6_rt_put(grt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081 goto out;
2082 }
2083 } else {
David S. Millerd1918542011-12-28 20:19:20 -05002084 dev = grt->dst.dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002085 idev = grt->rt6i_idev;
2086 dev_hold(dev);
2087 in6_dev_hold(grt->rt6i_idev);
2088 }
David S. Miller38308472011-12-03 18:02:47 -05002089 if (!(grt->rt6i_flags & RTF_GATEWAY))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002090 err = 0;
Amerigo Wang94e187c2012-10-29 00:13:19 +00002091 ip6_rt_put(grt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002092
2093 if (err)
2094 goto out;
2095 }
2096 err = -EINVAL;
David Ahernd5d531c2017-05-21 10:12:05 -06002097 if (!dev) {
2098 NL_SET_ERR_MSG(extack, "Egress device not specified");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002099 goto out;
David Ahernd5d531c2017-05-21 10:12:05 -06002100 } else if (dev->flags & IFF_LOOPBACK) {
2101 NL_SET_ERR_MSG(extack,
2102 "Egress device can not be loopback device for this route");
2103 goto out;
2104 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002105 }
2106
2107 err = -ENODEV;
David S. Miller38308472011-12-03 18:02:47 -05002108 if (!dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002109 goto out;
2110
Daniel Walterc3968a82011-04-13 21:10:57 +00002111 if (!ipv6_addr_any(&cfg->fc_prefsrc)) {
2112 if (!ipv6_chk_addr(net, &cfg->fc_prefsrc, dev, 0)) {
David Ahernd5d531c2017-05-21 10:12:05 -06002113 NL_SET_ERR_MSG(extack, "Invalid source address");
Daniel Walterc3968a82011-04-13 21:10:57 +00002114 err = -EINVAL;
2115 goto out;
2116 }
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00002117 rt->rt6i_prefsrc.addr = cfg->fc_prefsrc;
Daniel Walterc3968a82011-04-13 21:10:57 +00002118 rt->rt6i_prefsrc.plen = 128;
2119 } else
2120 rt->rt6i_prefsrc.plen = 0;
2121
Thomas Graf86872cb2006-08-22 00:01:08 -07002122 rt->rt6i_flags = cfg->fc_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123
2124install_route:
Changli Gaod8d1f302010-06-10 23:31:35 -07002125 rt->dst.dev = dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126 rt->rt6i_idev = idev;
Thomas Grafc71099a2006-08-04 23:20:06 -07002127 rt->rt6i_table = table;
Daniel Lezcano63152fc2008-03-03 23:31:11 -08002128
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09002129 cfg->fc_nlinfo.nl_net = dev_net(dev);
Daniel Lezcano63152fc2008-03-03 23:31:11 -08002130
Roopa Prabhu8c5b83f2015-10-10 08:26:36 -07002131 return rt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132out:
2133 if (dev)
2134 dev_put(dev);
2135 if (idev)
2136 in6_dev_put(idev);
Wei Wang587fea72017-06-17 10:42:36 -07002137 if (rt)
2138 dst_release_immediate(&rt->dst);
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07002139
Roopa Prabhu8c5b83f2015-10-10 08:26:36 -07002140 return ERR_PTR(err);
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07002141}
2142
David Ahern333c4302017-05-21 10:12:04 -06002143int ip6_route_add(struct fib6_config *cfg,
2144 struct netlink_ext_ack *extack)
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07002145{
2146 struct mx6_config mxc = { .mx = NULL, };
Roopa Prabhu8c5b83f2015-10-10 08:26:36 -07002147 struct rt6_info *rt;
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07002148 int err;
2149
David Ahern333c4302017-05-21 10:12:04 -06002150 rt = ip6_route_info_create(cfg, extack);
Roopa Prabhu8c5b83f2015-10-10 08:26:36 -07002151 if (IS_ERR(rt)) {
2152 err = PTR_ERR(rt);
2153 rt = NULL;
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07002154 goto out;
Roopa Prabhu8c5b83f2015-10-10 08:26:36 -07002155 }
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07002156
2157 err = ip6_convert_metrics(&mxc, cfg);
2158 if (err)
2159 goto out;
2160
David Ahern333c4302017-05-21 10:12:04 -06002161 err = __ip6_ins_rt(rt, &cfg->fc_nlinfo, &mxc, extack);
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07002162
2163 kfree(mxc.mx);
2164
2165 return err;
2166out:
Wei Wang587fea72017-06-17 10:42:36 -07002167 if (rt)
2168 dst_release_immediate(&rt->dst);
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07002169
Linus Torvalds1da177e2005-04-16 15:20:36 -07002170 return err;
2171}
2172
Thomas Graf86872cb2006-08-22 00:01:08 -07002173static int __ip6_del_rt(struct rt6_info *rt, struct nl_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002174{
2175 int err;
Thomas Grafc71099a2006-08-04 23:20:06 -07002176 struct fib6_table *table;
David S. Millerd1918542011-12-28 20:19:20 -05002177 struct net *net = dev_net(rt->dst.dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002178
Martin KaFai Lau8e3d5be2015-09-15 14:30:08 -07002179 if (rt == net->ipv6.ip6_null_entry ||
2180 rt->dst.flags & DST_NOCACHE) {
Gao feng6825a262012-09-19 19:25:34 +00002181 err = -ENOENT;
2182 goto out;
2183 }
Patrick McHardy6c813a72006-08-06 22:22:47 -07002184
Thomas Grafc71099a2006-08-04 23:20:06 -07002185 table = rt->rt6i_table;
2186 write_lock_bh(&table->tb6_lock);
Thomas Graf86872cb2006-08-22 00:01:08 -07002187 err = fib6_del(rt, info);
Thomas Grafc71099a2006-08-04 23:20:06 -07002188 write_unlock_bh(&table->tb6_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002189
Gao feng6825a262012-09-19 19:25:34 +00002190out:
Amerigo Wang94e187c2012-10-29 00:13:19 +00002191 ip6_rt_put(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002192 return err;
2193}
2194
Thomas Grafe0a1ad732006-08-22 00:00:21 -07002195int ip6_del_rt(struct rt6_info *rt)
2196{
Denis V. Lunev4d1169c2008-01-10 03:26:13 -08002197 struct nl_info info = {
David S. Millerd1918542011-12-28 20:19:20 -05002198 .nl_net = dev_net(rt->dst.dev),
Denis V. Lunev4d1169c2008-01-10 03:26:13 -08002199 };
Denis V. Lunev528c4ce2007-12-13 09:45:12 -08002200 return __ip6_del_rt(rt, &info);
Thomas Grafe0a1ad732006-08-22 00:00:21 -07002201}
2202
David Ahern0ae81332017-02-02 12:37:08 -08002203static int __ip6_del_rt_siblings(struct rt6_info *rt, struct fib6_config *cfg)
2204{
2205 struct nl_info *info = &cfg->fc_nlinfo;
WANG Conge3330032017-02-27 16:07:43 -08002206 struct net *net = info->nl_net;
David Ahern16a16cd2017-02-02 12:37:11 -08002207 struct sk_buff *skb = NULL;
David Ahern0ae81332017-02-02 12:37:08 -08002208 struct fib6_table *table;
WANG Conge3330032017-02-27 16:07:43 -08002209 int err = -ENOENT;
David Ahern0ae81332017-02-02 12:37:08 -08002210
WANG Conge3330032017-02-27 16:07:43 -08002211 if (rt == net->ipv6.ip6_null_entry)
2212 goto out_put;
David Ahern0ae81332017-02-02 12:37:08 -08002213 table = rt->rt6i_table;
2214 write_lock_bh(&table->tb6_lock);
2215
2216 if (rt->rt6i_nsiblings && cfg->fc_delete_all_nh) {
2217 struct rt6_info *sibling, *next_sibling;
2218
David Ahern16a16cd2017-02-02 12:37:11 -08002219 /* prefer to send a single notification with all hops */
2220 skb = nlmsg_new(rt6_nlmsg_size(rt), gfp_any());
2221 if (skb) {
2222 u32 seq = info->nlh ? info->nlh->nlmsg_seq : 0;
2223
WANG Conge3330032017-02-27 16:07:43 -08002224 if (rt6_fill_node(net, skb, rt,
David Ahern16a16cd2017-02-02 12:37:11 -08002225 NULL, NULL, 0, RTM_DELROUTE,
2226 info->portid, seq, 0) < 0) {
2227 kfree_skb(skb);
2228 skb = NULL;
2229 } else
2230 info->skip_notify = 1;
2231 }
2232
David Ahern0ae81332017-02-02 12:37:08 -08002233 list_for_each_entry_safe(sibling, next_sibling,
2234 &rt->rt6i_siblings,
2235 rt6i_siblings) {
2236 err = fib6_del(sibling, info);
2237 if (err)
WANG Conge3330032017-02-27 16:07:43 -08002238 goto out_unlock;
David Ahern0ae81332017-02-02 12:37:08 -08002239 }
2240 }
2241
2242 err = fib6_del(rt, info);
WANG Conge3330032017-02-27 16:07:43 -08002243out_unlock:
David Ahern0ae81332017-02-02 12:37:08 -08002244 write_unlock_bh(&table->tb6_lock);
WANG Conge3330032017-02-27 16:07:43 -08002245out_put:
David Ahern0ae81332017-02-02 12:37:08 -08002246 ip6_rt_put(rt);
David Ahern16a16cd2017-02-02 12:37:11 -08002247
2248 if (skb) {
WANG Conge3330032017-02-27 16:07:43 -08002249 rtnl_notify(skb, net, info->portid, RTNLGRP_IPV6_ROUTE,
David Ahern16a16cd2017-02-02 12:37:11 -08002250 info->nlh, gfp_any());
2251 }
David Ahern0ae81332017-02-02 12:37:08 -08002252 return err;
2253}
2254
David Ahern333c4302017-05-21 10:12:04 -06002255static int ip6_route_del(struct fib6_config *cfg,
2256 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002257{
Thomas Grafc71099a2006-08-04 23:20:06 -07002258 struct fib6_table *table;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002259 struct fib6_node *fn;
2260 struct rt6_info *rt;
2261 int err = -ESRCH;
2262
Daniel Lezcano55786892008-03-04 13:47:47 -08002263 table = fib6_get_table(cfg->fc_nlinfo.nl_net, cfg->fc_table);
David Ahernd5d531c2017-05-21 10:12:05 -06002264 if (!table) {
2265 NL_SET_ERR_MSG(extack, "FIB table does not exist");
Thomas Grafc71099a2006-08-04 23:20:06 -07002266 return err;
David Ahernd5d531c2017-05-21 10:12:05 -06002267 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002268
Thomas Grafc71099a2006-08-04 23:20:06 -07002269 read_lock_bh(&table->tb6_lock);
2270
2271 fn = fib6_locate(&table->tb6_root,
Thomas Graf86872cb2006-08-22 00:01:08 -07002272 &cfg->fc_dst, cfg->fc_dst_len,
2273 &cfg->fc_src, cfg->fc_src_len);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002274
Linus Torvalds1da177e2005-04-16 15:20:36 -07002275 if (fn) {
Changli Gaod8d1f302010-06-10 23:31:35 -07002276 for (rt = fn->leaf; rt; rt = rt->dst.rt6_next) {
Martin KaFai Lau1f56a01f2015-04-28 13:03:03 -07002277 if ((rt->rt6i_flags & RTF_CACHE) &&
2278 !(cfg->fc_flags & RTF_CACHE))
2279 continue;
Thomas Graf86872cb2006-08-22 00:01:08 -07002280 if (cfg->fc_ifindex &&
David S. Millerd1918542011-12-28 20:19:20 -05002281 (!rt->dst.dev ||
2282 rt->dst.dev->ifindex != cfg->fc_ifindex))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002283 continue;
Thomas Graf86872cb2006-08-22 00:01:08 -07002284 if (cfg->fc_flags & RTF_GATEWAY &&
2285 !ipv6_addr_equal(&cfg->fc_gateway, &rt->rt6i_gateway))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002286 continue;
Thomas Graf86872cb2006-08-22 00:01:08 -07002287 if (cfg->fc_metric && cfg->fc_metric != rt->rt6i_metric)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002288 continue;
Mantas Mc2ed1882016-12-16 10:30:59 +02002289 if (cfg->fc_protocol && cfg->fc_protocol != rt->rt6i_protocol)
2290 continue;
Changli Gaod8d1f302010-06-10 23:31:35 -07002291 dst_hold(&rt->dst);
Thomas Grafc71099a2006-08-04 23:20:06 -07002292 read_unlock_bh(&table->tb6_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002293
David Ahern0ae81332017-02-02 12:37:08 -08002294 /* if gateway was specified only delete the one hop */
2295 if (cfg->fc_flags & RTF_GATEWAY)
2296 return __ip6_del_rt(rt, &cfg->fc_nlinfo);
2297
2298 return __ip6_del_rt_siblings(rt, cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002299 }
2300 }
Thomas Grafc71099a2006-08-04 23:20:06 -07002301 read_unlock_bh(&table->tb6_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002302
2303 return err;
2304}
2305
David S. Miller6700c272012-07-17 03:29:28 -07002306static void rt6_do_redirect(struct dst_entry *dst, struct sock *sk, struct sk_buff *skb)
YOSHIFUJI Hideakia6279452006-08-23 17:18:26 -07002307{
YOSHIFUJI Hideakia6279452006-08-23 17:18:26 -07002308 struct netevent_redirect netevent;
David S. Millere8599ff2012-07-11 23:43:53 -07002309 struct rt6_info *rt, *nrt = NULL;
David S. Millere8599ff2012-07-11 23:43:53 -07002310 struct ndisc_options ndopts;
2311 struct inet6_dev *in6_dev;
2312 struct neighbour *neigh;
YOSHIFUJI Hideaki / 吉藤英明71bcdba2013-01-05 16:34:51 +00002313 struct rd_msg *msg;
David S. Miller6e157b62012-07-12 00:05:02 -07002314 int optlen, on_link;
2315 u8 *lladdr;
David S. Millere8599ff2012-07-11 23:43:53 -07002316
Simon Horman29a3cad2013-05-28 20:34:26 +00002317 optlen = skb_tail_pointer(skb) - skb_transport_header(skb);
YOSHIFUJI Hideaki / 吉藤英明71bcdba2013-01-05 16:34:51 +00002318 optlen -= sizeof(*msg);
David S. Millere8599ff2012-07-11 23:43:53 -07002319
2320 if (optlen < 0) {
David S. Miller6e157b62012-07-12 00:05:02 -07002321 net_dbg_ratelimited("rt6_do_redirect: packet too short\n");
David S. Millere8599ff2012-07-11 23:43:53 -07002322 return;
2323 }
2324
YOSHIFUJI Hideaki / 吉藤英明71bcdba2013-01-05 16:34:51 +00002325 msg = (struct rd_msg *)icmp6_hdr(skb);
David S. Millere8599ff2012-07-11 23:43:53 -07002326
YOSHIFUJI Hideaki / 吉藤英明71bcdba2013-01-05 16:34:51 +00002327 if (ipv6_addr_is_multicast(&msg->dest)) {
David S. Miller6e157b62012-07-12 00:05:02 -07002328 net_dbg_ratelimited("rt6_do_redirect: destination address is multicast\n");
David S. Millere8599ff2012-07-11 23:43:53 -07002329 return;
2330 }
2331
David S. Miller6e157b62012-07-12 00:05:02 -07002332 on_link = 0;
YOSHIFUJI Hideaki / 吉藤英明71bcdba2013-01-05 16:34:51 +00002333 if (ipv6_addr_equal(&msg->dest, &msg->target)) {
David S. Millere8599ff2012-07-11 23:43:53 -07002334 on_link = 1;
YOSHIFUJI Hideaki / 吉藤英明71bcdba2013-01-05 16:34:51 +00002335 } else if (ipv6_addr_type(&msg->target) !=
David S. Millere8599ff2012-07-11 23:43:53 -07002336 (IPV6_ADDR_UNICAST|IPV6_ADDR_LINKLOCAL)) {
David S. Miller6e157b62012-07-12 00:05:02 -07002337 net_dbg_ratelimited("rt6_do_redirect: target address is not link-local unicast\n");
David S. Millere8599ff2012-07-11 23:43:53 -07002338 return;
2339 }
2340
2341 in6_dev = __in6_dev_get(skb->dev);
2342 if (!in6_dev)
2343 return;
2344 if (in6_dev->cnf.forwarding || !in6_dev->cnf.accept_redirects)
2345 return;
2346
2347 /* RFC2461 8.1:
2348 * The IP source address of the Redirect MUST be the same as the current
2349 * first-hop router for the specified ICMP Destination Address.
2350 */
2351
Alexander Aringf997c552016-06-15 21:20:23 +02002352 if (!ndisc_parse_options(skb->dev, msg->opt, optlen, &ndopts)) {
David S. Millere8599ff2012-07-11 23:43:53 -07002353 net_dbg_ratelimited("rt6_redirect: invalid ND options\n");
2354 return;
2355 }
David S. Miller6e157b62012-07-12 00:05:02 -07002356
2357 lladdr = NULL;
David S. Millere8599ff2012-07-11 23:43:53 -07002358 if (ndopts.nd_opts_tgt_lladdr) {
2359 lladdr = ndisc_opt_addr_data(ndopts.nd_opts_tgt_lladdr,
2360 skb->dev);
2361 if (!lladdr) {
2362 net_dbg_ratelimited("rt6_redirect: invalid link-layer address length\n");
2363 return;
2364 }
2365 }
2366
David S. Miller6e157b62012-07-12 00:05:02 -07002367 rt = (struct rt6_info *) dst;
Matthias Schifferec13ad12015-11-02 01:24:38 +01002368 if (rt->rt6i_flags & RTF_REJECT) {
David S. Miller6e157b62012-07-12 00:05:02 -07002369 net_dbg_ratelimited("rt6_redirect: source isn't a valid nexthop for redirect target\n");
2370 return;
2371 }
2372
2373 /* Redirect received -> path was valid.
2374 * Look, redirects are sent only in response to data packets,
2375 * so that this nexthop apparently is reachable. --ANK
2376 */
Julian Anastasov0dec8792017-02-06 23:14:16 +02002377 dst_confirm_neigh(&rt->dst, &ipv6_hdr(skb)->saddr);
David S. Miller6e157b62012-07-12 00:05:02 -07002378
YOSHIFUJI Hideaki / 吉藤英明71bcdba2013-01-05 16:34:51 +00002379 neigh = __neigh_lookup(&nd_tbl, &msg->target, skb->dev, 1);
David S. Millere8599ff2012-07-11 23:43:53 -07002380 if (!neigh)
2381 return;
2382
Linus Torvalds1da177e2005-04-16 15:20:36 -07002383 /*
2384 * We have finally decided to accept it.
2385 */
2386
Alexander Aringf997c552016-06-15 21:20:23 +02002387 ndisc_update(skb->dev, neigh, lladdr, NUD_STALE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002388 NEIGH_UPDATE_F_WEAK_OVERRIDE|
2389 NEIGH_UPDATE_F_OVERRIDE|
2390 (on_link ? 0 : (NEIGH_UPDATE_F_OVERRIDE_ISROUTER|
Alexander Aringf997c552016-06-15 21:20:23 +02002391 NEIGH_UPDATE_F_ISROUTER)),
2392 NDISC_REDIRECT, &ndopts);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002393
Martin KaFai Lau83a09ab2015-05-22 20:56:05 -07002394 nrt = ip6_rt_cache_alloc(rt, &msg->dest, NULL);
David S. Miller38308472011-12-03 18:02:47 -05002395 if (!nrt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002396 goto out;
2397
2398 nrt->rt6i_flags = RTF_GATEWAY|RTF_UP|RTF_DYNAMIC|RTF_CACHE;
2399 if (on_link)
2400 nrt->rt6i_flags &= ~RTF_GATEWAY;
2401
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00002402 nrt->rt6i_gateway = *(struct in6_addr *)neigh->primary_key;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002403
Thomas Graf40e22e82006-08-22 00:00:45 -07002404 if (ip6_ins_rt(nrt))
Wei Wang1cfb71e2017-06-17 10:42:33 -07002405 goto out_release;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002406
Changli Gaod8d1f302010-06-10 23:31:35 -07002407 netevent.old = &rt->dst;
2408 netevent.new = &nrt->dst;
YOSHIFUJI Hideaki / 吉藤英明71bcdba2013-01-05 16:34:51 +00002409 netevent.daddr = &msg->dest;
YOSHIFUJI Hideaki / 吉藤英明60592832013-01-14 09:28:27 +00002410 netevent.neigh = neigh;
Tom Tucker8d717402006-07-30 20:43:36 -07002411 call_netevent_notifiers(NETEVENT_REDIRECT, &netevent);
2412
David S. Miller38308472011-12-03 18:02:47 -05002413 if (rt->rt6i_flags & RTF_CACHE) {
David S. Miller6e157b62012-07-12 00:05:02 -07002414 rt = (struct rt6_info *) dst_clone(&rt->dst);
Thomas Grafe0a1ad732006-08-22 00:00:21 -07002415 ip6_del_rt(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002416 }
2417
Wei Wang1cfb71e2017-06-17 10:42:33 -07002418out_release:
2419 /* Release the reference taken in
2420 * ip6_rt_cache_alloc()
2421 */
2422 dst_release(&nrt->dst);
2423
Linus Torvalds1da177e2005-04-16 15:20:36 -07002424out:
David S. Millere8599ff2012-07-11 23:43:53 -07002425 neigh_release(neigh);
David S. Miller6e157b62012-07-12 00:05:02 -07002426}
2427
Linus Torvalds1da177e2005-04-16 15:20:36 -07002428/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002429 * Misc support functions
2430 */
2431
Martin KaFai Lau4b32b5a2015-04-28 13:03:06 -07002432static void rt6_set_from(struct rt6_info *rt, struct rt6_info *from)
2433{
2434 BUG_ON(from->dst.from);
2435
2436 rt->rt6i_flags &= ~RTF_EXPIRES;
2437 dst_hold(&from->dst);
2438 rt->dst.from = &from->dst;
2439 dst_init_metrics(&rt->dst, dst_metrics_ptr(&from->dst), true);
2440}
2441
Martin KaFai Lau83a09ab2015-05-22 20:56:05 -07002442static void ip6_rt_copy_init(struct rt6_info *rt, struct rt6_info *ort)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002443{
Martin KaFai Lau83a09ab2015-05-22 20:56:05 -07002444 rt->dst.input = ort->dst.input;
2445 rt->dst.output = ort->dst.output;
2446 rt->rt6i_dst = ort->rt6i_dst;
2447 rt->dst.error = ort->dst.error;
2448 rt->rt6i_idev = ort->rt6i_idev;
2449 if (rt->rt6i_idev)
2450 in6_dev_hold(rt->rt6i_idev);
2451 rt->dst.lastuse = jiffies;
2452 rt->rt6i_gateway = ort->rt6i_gateway;
2453 rt->rt6i_flags = ort->rt6i_flags;
2454 rt6_set_from(rt, ort);
2455 rt->rt6i_metric = ort->rt6i_metric;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002456#ifdef CONFIG_IPV6_SUBTREES
Martin KaFai Lau83a09ab2015-05-22 20:56:05 -07002457 rt->rt6i_src = ort->rt6i_src;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002458#endif
Martin KaFai Lau83a09ab2015-05-22 20:56:05 -07002459 rt->rt6i_prefsrc = ort->rt6i_prefsrc;
2460 rt->rt6i_table = ort->rt6i_table;
Jiri Benc61adedf2015-08-20 13:56:25 +02002461 rt->dst.lwtstate = lwtstate_get(ort->dst.lwtstate);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002462}
2463
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08002464#ifdef CONFIG_IPV6_ROUTE_INFO
Daniel Lezcanoefa2cea2008-03-04 13:46:48 -08002465static struct rt6_info *rt6_get_route_info(struct net *net,
Eric Dumazetb71d1d42011-04-22 04:53:02 +00002466 const struct in6_addr *prefix, int prefixlen,
David Ahern830218c2016-10-24 10:52:35 -07002467 const struct in6_addr *gwaddr,
2468 struct net_device *dev)
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08002469{
David Ahern830218c2016-10-24 10:52:35 -07002470 u32 tb_id = l3mdev_fib_table(dev) ? : RT6_TABLE_INFO;
2471 int ifindex = dev->ifindex;
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08002472 struct fib6_node *fn;
2473 struct rt6_info *rt = NULL;
Thomas Grafc71099a2006-08-04 23:20:06 -07002474 struct fib6_table *table;
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08002475
David Ahern830218c2016-10-24 10:52:35 -07002476 table = fib6_get_table(net, tb_id);
David S. Miller38308472011-12-03 18:02:47 -05002477 if (!table)
Thomas Grafc71099a2006-08-04 23:20:06 -07002478 return NULL;
2479
Li RongQing5744dd92012-09-11 21:59:01 +00002480 read_lock_bh(&table->tb6_lock);
Ian Morris67ba4152014-08-24 21:53:10 +01002481 fn = fib6_locate(&table->tb6_root, prefix, prefixlen, NULL, 0);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08002482 if (!fn)
2483 goto out;
2484
Changli Gaod8d1f302010-06-10 23:31:35 -07002485 for (rt = fn->leaf; rt; rt = rt->dst.rt6_next) {
David S. Millerd1918542011-12-28 20:19:20 -05002486 if (rt->dst.dev->ifindex != ifindex)
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08002487 continue;
2488 if ((rt->rt6i_flags & (RTF_ROUTEINFO|RTF_GATEWAY)) != (RTF_ROUTEINFO|RTF_GATEWAY))
2489 continue;
2490 if (!ipv6_addr_equal(&rt->rt6i_gateway, gwaddr))
2491 continue;
Changli Gaod8d1f302010-06-10 23:31:35 -07002492 dst_hold(&rt->dst);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08002493 break;
2494 }
2495out:
Li RongQing5744dd92012-09-11 21:59:01 +00002496 read_unlock_bh(&table->tb6_lock);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08002497 return rt;
2498}
2499
Daniel Lezcanoefa2cea2008-03-04 13:46:48 -08002500static struct rt6_info *rt6_add_route_info(struct net *net,
Eric Dumazetb71d1d42011-04-22 04:53:02 +00002501 const struct in6_addr *prefix, int prefixlen,
David Ahern830218c2016-10-24 10:52:35 -07002502 const struct in6_addr *gwaddr,
2503 struct net_device *dev,
Eric Dumazet95c96172012-04-15 05:58:06 +00002504 unsigned int pref)
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08002505{
Thomas Graf86872cb2006-08-22 00:01:08 -07002506 struct fib6_config cfg = {
Rami Rosen238fc7e2008-02-09 23:43:11 -08002507 .fc_metric = IP6_RT_PRIO_USER,
David Ahern830218c2016-10-24 10:52:35 -07002508 .fc_ifindex = dev->ifindex,
Thomas Graf86872cb2006-08-22 00:01:08 -07002509 .fc_dst_len = prefixlen,
2510 .fc_flags = RTF_GATEWAY | RTF_ADDRCONF | RTF_ROUTEINFO |
2511 RTF_UP | RTF_PREF(pref),
Eric W. Biederman15e47302012-09-07 20:12:54 +00002512 .fc_nlinfo.portid = 0,
Daniel Lezcanoefa2cea2008-03-04 13:46:48 -08002513 .fc_nlinfo.nlh = NULL,
2514 .fc_nlinfo.nl_net = net,
Thomas Graf86872cb2006-08-22 00:01:08 -07002515 };
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08002516
David Ahern830218c2016-10-24 10:52:35 -07002517 cfg.fc_table = l3mdev_fib_table(dev) ? : RT6_TABLE_INFO,
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00002518 cfg.fc_dst = *prefix;
2519 cfg.fc_gateway = *gwaddr;
Thomas Graf86872cb2006-08-22 00:01:08 -07002520
YOSHIFUJI Hideakie317da92006-03-20 17:06:42 -08002521 /* We should treat it as a default route if prefix length is 0. */
2522 if (!prefixlen)
Thomas Graf86872cb2006-08-22 00:01:08 -07002523 cfg.fc_flags |= RTF_DEFAULT;
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08002524
David Ahern333c4302017-05-21 10:12:04 -06002525 ip6_route_add(&cfg, NULL);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08002526
David Ahern830218c2016-10-24 10:52:35 -07002527 return rt6_get_route_info(net, prefix, prefixlen, gwaddr, dev);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08002528}
2529#endif
2530
Eric Dumazetb71d1d42011-04-22 04:53:02 +00002531struct rt6_info *rt6_get_dflt_router(const struct in6_addr *addr, struct net_device *dev)
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002532{
David Ahern830218c2016-10-24 10:52:35 -07002533 u32 tb_id = l3mdev_fib_table(dev) ? : RT6_TABLE_DFLT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002534 struct rt6_info *rt;
Thomas Grafc71099a2006-08-04 23:20:06 -07002535 struct fib6_table *table;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002536
David Ahern830218c2016-10-24 10:52:35 -07002537 table = fib6_get_table(dev_net(dev), tb_id);
David S. Miller38308472011-12-03 18:02:47 -05002538 if (!table)
Thomas Grafc71099a2006-08-04 23:20:06 -07002539 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002540
Li RongQing5744dd92012-09-11 21:59:01 +00002541 read_lock_bh(&table->tb6_lock);
Ian Morris67ba4152014-08-24 21:53:10 +01002542 for (rt = table->tb6_root.leaf; rt; rt = rt->dst.rt6_next) {
David S. Millerd1918542011-12-28 20:19:20 -05002543 if (dev == rt->dst.dev &&
YOSHIFUJI Hideaki045927f2006-03-20 17:00:48 -08002544 ((rt->rt6i_flags & (RTF_ADDRCONF | RTF_DEFAULT)) == (RTF_ADDRCONF | RTF_DEFAULT)) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07002545 ipv6_addr_equal(&rt->rt6i_gateway, addr))
2546 break;
2547 }
2548 if (rt)
Changli Gaod8d1f302010-06-10 23:31:35 -07002549 dst_hold(&rt->dst);
Li RongQing5744dd92012-09-11 21:59:01 +00002550 read_unlock_bh(&table->tb6_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002551 return rt;
2552}
2553
Eric Dumazetb71d1d42011-04-22 04:53:02 +00002554struct rt6_info *rt6_add_dflt_router(const struct in6_addr *gwaddr,
YOSHIFUJI Hideakiebacaaa2006-03-20 17:04:53 -08002555 struct net_device *dev,
2556 unsigned int pref)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002557{
Thomas Graf86872cb2006-08-22 00:01:08 -07002558 struct fib6_config cfg = {
David Ahernca254492015-10-12 11:47:10 -07002559 .fc_table = l3mdev_fib_table(dev) ? : RT6_TABLE_DFLT,
Rami Rosen238fc7e2008-02-09 23:43:11 -08002560 .fc_metric = IP6_RT_PRIO_USER,
Thomas Graf86872cb2006-08-22 00:01:08 -07002561 .fc_ifindex = dev->ifindex,
2562 .fc_flags = RTF_GATEWAY | RTF_ADDRCONF | RTF_DEFAULT |
2563 RTF_UP | RTF_EXPIRES | RTF_PREF(pref),
Eric W. Biederman15e47302012-09-07 20:12:54 +00002564 .fc_nlinfo.portid = 0,
Daniel Lezcano55786892008-03-04 13:47:47 -08002565 .fc_nlinfo.nlh = NULL,
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09002566 .fc_nlinfo.nl_net = dev_net(dev),
Thomas Graf86872cb2006-08-22 00:01:08 -07002567 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002568
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00002569 cfg.fc_gateway = *gwaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002570
David Ahern333c4302017-05-21 10:12:04 -06002571 if (!ip6_route_add(&cfg, NULL)) {
David Ahern830218c2016-10-24 10:52:35 -07002572 struct fib6_table *table;
2573
2574 table = fib6_get_table(dev_net(dev), cfg.fc_table);
2575 if (table)
2576 table->flags |= RT6_TABLE_HAS_DFLT_ROUTER;
2577 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002578
Linus Torvalds1da177e2005-04-16 15:20:36 -07002579 return rt6_get_dflt_router(gwaddr, dev);
2580}
2581
David Ahern830218c2016-10-24 10:52:35 -07002582static void __rt6_purge_dflt_routers(struct fib6_table *table)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002583{
2584 struct rt6_info *rt;
2585
2586restart:
Thomas Grafc71099a2006-08-04 23:20:06 -07002587 read_lock_bh(&table->tb6_lock);
Changli Gaod8d1f302010-06-10 23:31:35 -07002588 for (rt = table->tb6_root.leaf; rt; rt = rt->dst.rt6_next) {
Lorenzo Colitti3e8b0ac2013-03-03 20:46:46 +00002589 if (rt->rt6i_flags & (RTF_DEFAULT | RTF_ADDRCONF) &&
2590 (!rt->rt6i_idev || rt->rt6i_idev->cnf.accept_ra != 2)) {
Changli Gaod8d1f302010-06-10 23:31:35 -07002591 dst_hold(&rt->dst);
Thomas Grafc71099a2006-08-04 23:20:06 -07002592 read_unlock_bh(&table->tb6_lock);
Thomas Grafe0a1ad732006-08-22 00:00:21 -07002593 ip6_del_rt(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002594 goto restart;
2595 }
2596 }
Thomas Grafc71099a2006-08-04 23:20:06 -07002597 read_unlock_bh(&table->tb6_lock);
David Ahern830218c2016-10-24 10:52:35 -07002598
2599 table->flags &= ~RT6_TABLE_HAS_DFLT_ROUTER;
2600}
2601
2602void rt6_purge_dflt_routers(struct net *net)
2603{
2604 struct fib6_table *table;
2605 struct hlist_head *head;
2606 unsigned int h;
2607
2608 rcu_read_lock();
2609
2610 for (h = 0; h < FIB6_TABLE_HASHSZ; h++) {
2611 head = &net->ipv6.fib_table_hash[h];
2612 hlist_for_each_entry_rcu(table, head, tb6_hlist) {
2613 if (table->flags & RT6_TABLE_HAS_DFLT_ROUTER)
2614 __rt6_purge_dflt_routers(table);
2615 }
2616 }
2617
2618 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002619}
2620
Daniel Lezcano55786892008-03-04 13:47:47 -08002621static void rtmsg_to_fib6_config(struct net *net,
2622 struct in6_rtmsg *rtmsg,
Thomas Graf86872cb2006-08-22 00:01:08 -07002623 struct fib6_config *cfg)
2624{
2625 memset(cfg, 0, sizeof(*cfg));
2626
David Ahernca254492015-10-12 11:47:10 -07002627 cfg->fc_table = l3mdev_fib_table_by_index(net, rtmsg->rtmsg_ifindex) ?
2628 : RT6_TABLE_MAIN;
Thomas Graf86872cb2006-08-22 00:01:08 -07002629 cfg->fc_ifindex = rtmsg->rtmsg_ifindex;
2630 cfg->fc_metric = rtmsg->rtmsg_metric;
2631 cfg->fc_expires = rtmsg->rtmsg_info;
2632 cfg->fc_dst_len = rtmsg->rtmsg_dst_len;
2633 cfg->fc_src_len = rtmsg->rtmsg_src_len;
2634 cfg->fc_flags = rtmsg->rtmsg_flags;
2635
Daniel Lezcano55786892008-03-04 13:47:47 -08002636 cfg->fc_nlinfo.nl_net = net;
Benjamin Theryf1243c22008-02-26 18:10:03 -08002637
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00002638 cfg->fc_dst = rtmsg->rtmsg_dst;
2639 cfg->fc_src = rtmsg->rtmsg_src;
2640 cfg->fc_gateway = rtmsg->rtmsg_gateway;
Thomas Graf86872cb2006-08-22 00:01:08 -07002641}
2642
Daniel Lezcano55786892008-03-04 13:47:47 -08002643int ipv6_route_ioctl(struct net *net, unsigned int cmd, void __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002644{
Thomas Graf86872cb2006-08-22 00:01:08 -07002645 struct fib6_config cfg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002646 struct in6_rtmsg rtmsg;
2647 int err;
2648
Ian Morris67ba4152014-08-24 21:53:10 +01002649 switch (cmd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002650 case SIOCADDRT: /* Add a route */
2651 case SIOCDELRT: /* Delete a route */
Eric W. Biedermanaf31f412012-11-16 03:03:06 +00002652 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002653 return -EPERM;
2654 err = copy_from_user(&rtmsg, arg,
2655 sizeof(struct in6_rtmsg));
2656 if (err)
2657 return -EFAULT;
Thomas Graf86872cb2006-08-22 00:01:08 -07002658
Daniel Lezcano55786892008-03-04 13:47:47 -08002659 rtmsg_to_fib6_config(net, &rtmsg, &cfg);
Thomas Graf86872cb2006-08-22 00:01:08 -07002660
Linus Torvalds1da177e2005-04-16 15:20:36 -07002661 rtnl_lock();
2662 switch (cmd) {
2663 case SIOCADDRT:
David Ahern333c4302017-05-21 10:12:04 -06002664 err = ip6_route_add(&cfg, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002665 break;
2666 case SIOCDELRT:
David Ahern333c4302017-05-21 10:12:04 -06002667 err = ip6_route_del(&cfg, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002668 break;
2669 default:
2670 err = -EINVAL;
2671 }
2672 rtnl_unlock();
2673
2674 return err;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07002675 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002676
2677 return -EINVAL;
2678}
2679
2680/*
2681 * Drop the packet on the floor
2682 */
2683
Brian Haleyd5fdd6b2009-06-23 04:31:07 -07002684static int ip6_pkt_drop(struct sk_buff *skb, u8 code, int ipstats_mib_noroutes)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002685{
YOSHIFUJI Hideaki612f09e2007-04-13 16:18:02 -07002686 int type;
Eric Dumazetadf30902009-06-02 05:19:30 +00002687 struct dst_entry *dst = skb_dst(skb);
YOSHIFUJI Hideaki612f09e2007-04-13 16:18:02 -07002688 switch (ipstats_mib_noroutes) {
2689 case IPSTATS_MIB_INNOROUTES:
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -07002690 type = ipv6_addr_type(&ipv6_hdr(skb)->daddr);
Ulrich Weber45bb0062010-02-25 23:28:58 +00002691 if (type == IPV6_ADDR_ANY) {
Denis V. Lunev3bd653c2008-10-08 10:54:51 -07002692 IP6_INC_STATS(dev_net(dst->dev), ip6_dst_idev(dst),
2693 IPSTATS_MIB_INADDRERRORS);
YOSHIFUJI Hideaki612f09e2007-04-13 16:18:02 -07002694 break;
2695 }
2696 /* FALLTHROUGH */
2697 case IPSTATS_MIB_OUTNOROUTES:
Denis V. Lunev3bd653c2008-10-08 10:54:51 -07002698 IP6_INC_STATS(dev_net(dst->dev), ip6_dst_idev(dst),
2699 ipstats_mib_noroutes);
YOSHIFUJI Hideaki612f09e2007-04-13 16:18:02 -07002700 break;
2701 }
Alexey Dobriyan3ffe5332010-02-18 08:25:24 +00002702 icmpv6_send(skb, ICMPV6_DEST_UNREACH, code, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002703 kfree_skb(skb);
2704 return 0;
2705}
2706
Thomas Graf9ce8ade2006-10-18 20:46:54 -07002707static int ip6_pkt_discard(struct sk_buff *skb)
2708{
YOSHIFUJI Hideaki612f09e2007-04-13 16:18:02 -07002709 return ip6_pkt_drop(skb, ICMPV6_NOROUTE, IPSTATS_MIB_INNOROUTES);
Thomas Graf9ce8ade2006-10-18 20:46:54 -07002710}
2711
Eric W. Biedermanede20592015-10-07 16:48:47 -05002712static int ip6_pkt_discard_out(struct net *net, struct sock *sk, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002713{
Eric Dumazetadf30902009-06-02 05:19:30 +00002714 skb->dev = skb_dst(skb)->dev;
YOSHIFUJI Hideaki612f09e2007-04-13 16:18:02 -07002715 return ip6_pkt_drop(skb, ICMPV6_NOROUTE, IPSTATS_MIB_OUTNOROUTES);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002716}
2717
Thomas Graf9ce8ade2006-10-18 20:46:54 -07002718static int ip6_pkt_prohibit(struct sk_buff *skb)
2719{
YOSHIFUJI Hideaki612f09e2007-04-13 16:18:02 -07002720 return ip6_pkt_drop(skb, ICMPV6_ADM_PROHIBITED, IPSTATS_MIB_INNOROUTES);
Thomas Graf9ce8ade2006-10-18 20:46:54 -07002721}
2722
Eric W. Biedermanede20592015-10-07 16:48:47 -05002723static int ip6_pkt_prohibit_out(struct net *net, struct sock *sk, struct sk_buff *skb)
Thomas Graf9ce8ade2006-10-18 20:46:54 -07002724{
Eric Dumazetadf30902009-06-02 05:19:30 +00002725 skb->dev = skb_dst(skb)->dev;
YOSHIFUJI Hideaki612f09e2007-04-13 16:18:02 -07002726 return ip6_pkt_drop(skb, ICMPV6_ADM_PROHIBITED, IPSTATS_MIB_OUTNOROUTES);
Thomas Graf9ce8ade2006-10-18 20:46:54 -07002727}
2728
Linus Torvalds1da177e2005-04-16 15:20:36 -07002729/*
2730 * Allocate a dst for local (unicast / anycast) address.
2731 */
2732
2733struct rt6_info *addrconf_dst_alloc(struct inet6_dev *idev,
2734 const struct in6_addr *addr,
David S. Miller8f031512011-12-06 16:48:14 -05002735 bool anycast)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002736{
David Ahernca254492015-10-12 11:47:10 -07002737 u32 tb_id;
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09002738 struct net *net = dev_net(idev->dev);
David Ahern5f02ce242016-09-10 12:09:54 -07002739 struct net_device *dev = net->loopback_dev;
2740 struct rt6_info *rt;
2741
2742 /* use L3 Master device as loopback for host routes if device
2743 * is enslaved and address is not link local or multicast
2744 */
2745 if (!rt6_need_strict(addr))
2746 dev = l3mdev_master_dev_rcu(idev->dev) ? : dev;
2747
2748 rt = ip6_dst_alloc(net, dev, DST_NOCOUNT);
Hannes Frederic Sowaa3300ef2013-12-07 03:33:45 +01002749 if (!rt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002750 return ERR_PTR(-ENOMEM);
2751
Linus Torvalds1da177e2005-04-16 15:20:36 -07002752 in6_dev_hold(idev);
2753
David S. Miller11d53b42011-06-24 15:23:34 -07002754 rt->dst.flags |= DST_HOST;
Changli Gaod8d1f302010-06-10 23:31:35 -07002755 rt->dst.input = ip6_input;
2756 rt->dst.output = ip6_output;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002757 rt->rt6i_idev = idev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002758
David Ahern94b5e0f2017-02-02 08:52:21 -08002759 rt->rt6i_protocol = RTPROT_KERNEL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002760 rt->rt6i_flags = RTF_UP | RTF_NONEXTHOP;
YOSHIFUJI Hideaki58c4fb82005-12-21 22:56:42 +09002761 if (anycast)
2762 rt->rt6i_flags |= RTF_ANYCAST;
2763 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002764 rt->rt6i_flags |= RTF_LOCAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002765
Julian Anastasov550bab42013-10-20 15:43:04 +03002766 rt->rt6i_gateway = *addr;
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00002767 rt->rt6i_dst.addr = *addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002768 rt->rt6i_dst.plen = 128;
David Ahernca254492015-10-12 11:47:10 -07002769 tb_id = l3mdev_fib_table(idev->dev) ? : RT6_TABLE_LOCAL;
2770 rt->rt6i_table = fib6_get_table(net, tb_id);
Martin KaFai Lau8e3d5be2015-09-15 14:30:08 -07002771 rt->dst.flags |= DST_NOCACHE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002772
Linus Torvalds1da177e2005-04-16 15:20:36 -07002773 return rt;
2774}
2775
Daniel Walterc3968a82011-04-13 21:10:57 +00002776/* remove deleted ip from prefsrc entries */
2777struct arg_dev_net_ip {
2778 struct net_device *dev;
2779 struct net *net;
2780 struct in6_addr *addr;
2781};
2782
2783static int fib6_remove_prefsrc(struct rt6_info *rt, void *arg)
2784{
2785 struct net_device *dev = ((struct arg_dev_net_ip *)arg)->dev;
2786 struct net *net = ((struct arg_dev_net_ip *)arg)->net;
2787 struct in6_addr *addr = ((struct arg_dev_net_ip *)arg)->addr;
2788
David S. Millerd1918542011-12-28 20:19:20 -05002789 if (((void *)rt->dst.dev == dev || !dev) &&
Daniel Walterc3968a82011-04-13 21:10:57 +00002790 rt != net->ipv6.ip6_null_entry &&
2791 ipv6_addr_equal(addr, &rt->rt6i_prefsrc.addr)) {
2792 /* remove prefsrc entry */
2793 rt->rt6i_prefsrc.plen = 0;
2794 }
2795 return 0;
2796}
2797
2798void rt6_remove_prefsrc(struct inet6_ifaddr *ifp)
2799{
2800 struct net *net = dev_net(ifp->idev->dev);
2801 struct arg_dev_net_ip adni = {
2802 .dev = ifp->idev->dev,
2803 .net = net,
2804 .addr = &ifp->addr,
2805 };
Li RongQing0c3584d2013-12-27 16:32:38 +08002806 fib6_clean_all(net, fib6_remove_prefsrc, &adni);
Daniel Walterc3968a82011-04-13 21:10:57 +00002807}
2808
Duan Jiongbe7a0102014-05-15 15:56:14 +08002809#define RTF_RA_ROUTER (RTF_ADDRCONF | RTF_DEFAULT | RTF_GATEWAY)
2810#define RTF_CACHE_GATEWAY (RTF_GATEWAY | RTF_CACHE)
2811
2812/* Remove routers and update dst entries when gateway turn into host. */
2813static int fib6_clean_tohost(struct rt6_info *rt, void *arg)
2814{
2815 struct in6_addr *gateway = (struct in6_addr *)arg;
2816
2817 if ((((rt->rt6i_flags & RTF_RA_ROUTER) == RTF_RA_ROUTER) ||
2818 ((rt->rt6i_flags & RTF_CACHE_GATEWAY) == RTF_CACHE_GATEWAY)) &&
2819 ipv6_addr_equal(gateway, &rt->rt6i_gateway)) {
2820 return -1;
2821 }
2822 return 0;
2823}
2824
2825void rt6_clean_tohost(struct net *net, struct in6_addr *gateway)
2826{
2827 fib6_clean_all(net, fib6_clean_tohost, gateway);
2828}
2829
Daniel Lezcano8ed67782008-03-04 13:48:30 -08002830struct arg_dev_net {
2831 struct net_device *dev;
2832 struct net *net;
2833};
2834
David Aherna1a22c12017-01-18 07:40:36 -08002835/* called with write lock held for table with rt */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002836static int fib6_ifdown(struct rt6_info *rt, void *arg)
2837{
stephen hemmingerbc3ef662010-12-16 17:42:40 +00002838 const struct arg_dev_net *adn = arg;
2839 const struct net_device *dev = adn->dev;
Daniel Lezcano8ed67782008-03-04 13:48:30 -08002840
David S. Millerd1918542011-12-28 20:19:20 -05002841 if ((rt->dst.dev == dev || !dev) &&
David Aherna1a22c12017-01-18 07:40:36 -08002842 rt != adn->net->ipv6.ip6_null_entry &&
2843 (rt->rt6i_nsiblings == 0 ||
David Ahern8397ed32017-06-07 12:26:23 -06002844 (dev && netdev_unregistering(dev)) ||
David Aherna1a22c12017-01-18 07:40:36 -08002845 !rt->rt6i_idev->cnf.ignore_routes_with_linkdown))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002846 return -1;
David S. Millerc159d302011-12-26 15:24:36 -05002847
Linus Torvalds1da177e2005-04-16 15:20:36 -07002848 return 0;
2849}
2850
Daniel Lezcanof3db4852008-03-03 23:27:06 -08002851void rt6_ifdown(struct net *net, struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002852{
Daniel Lezcano8ed67782008-03-04 13:48:30 -08002853 struct arg_dev_net adn = {
2854 .dev = dev,
2855 .net = net,
2856 };
2857
Li RongQing0c3584d2013-12-27 16:32:38 +08002858 fib6_clean_all(net, fib6_ifdown, &adn);
David S. Miller1e493d12008-09-10 17:27:15 -07002859 icmp6_clean_all(fib6_ifdown, &adn);
Eric W. Biedermane332bc62015-10-12 11:02:08 -05002860 if (dev)
2861 rt6_uncached_list_flush_dev(net, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002862}
2863
Eric Dumazet95c96172012-04-15 05:58:06 +00002864struct rt6_mtu_change_arg {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002865 struct net_device *dev;
Eric Dumazet95c96172012-04-15 05:58:06 +00002866 unsigned int mtu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002867};
2868
2869static int rt6_mtu_change_route(struct rt6_info *rt, void *p_arg)
2870{
2871 struct rt6_mtu_change_arg *arg = (struct rt6_mtu_change_arg *) p_arg;
2872 struct inet6_dev *idev;
2873
2874 /* In IPv6 pmtu discovery is not optional,
2875 so that RTAX_MTU lock cannot disable it.
2876 We still use this lock to block changes
2877 caused by addrconf/ndisc.
2878 */
2879
2880 idev = __in6_dev_get(arg->dev);
David S. Miller38308472011-12-03 18:02:47 -05002881 if (!idev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002882 return 0;
2883
2884 /* For administrative MTU increase, there is no way to discover
2885 IPv6 PMTU increase, so PMTU increase should be updated here.
2886 Since RFC 1981 doesn't include administrative MTU increase
2887 update PMTU increase is a MUST. (i.e. jumbo frame)
2888 */
2889 /*
2890 If new MTU is less than route PMTU, this new MTU will be the
2891 lowest MTU in the path, update the route PMTU to reflect PMTU
2892 decreases; if new MTU is greater than route PMTU, and the
2893 old MTU is the lowest MTU in the path, update the route PMTU
2894 to reflect the increase. In this case if the other nodes' MTU
2895 also have the lowest MTU, TOO BIG MESSAGE will be lead to
Alexander Alemayhu67c408c2017-01-07 23:53:00 +01002896 PMTU discovery.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002897 */
David S. Millerd1918542011-12-28 20:19:20 -05002898 if (rt->dst.dev == arg->dev &&
Maciej Żenczykowskifb56be82016-11-04 14:51:54 -07002899 dst_metric_raw(&rt->dst, RTAX_MTU) &&
Martin KaFai Lau4b32b5a2015-04-28 13:03:06 -07002900 !dst_metric_locked(&rt->dst, RTAX_MTU)) {
2901 if (rt->rt6i_flags & RTF_CACHE) {
2902 /* For RTF_CACHE with rt6i_pmtu == 0
2903 * (i.e. a redirected route),
2904 * the metrics of its rt->dst.from has already
2905 * been updated.
2906 */
2907 if (rt->rt6i_pmtu && rt->rt6i_pmtu > arg->mtu)
2908 rt->rt6i_pmtu = arg->mtu;
2909 } else if (dst_mtu(&rt->dst) >= arg->mtu ||
2910 (dst_mtu(&rt->dst) < arg->mtu &&
2911 dst_mtu(&rt->dst) == idev->cnf.mtu6)) {
2912 dst_metric_set(&rt->dst, RTAX_MTU, arg->mtu);
2913 }
Simon Arlott566cfd82007-07-26 00:09:55 -07002914 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002915 return 0;
2916}
2917
Eric Dumazet95c96172012-04-15 05:58:06 +00002918void rt6_mtu_change(struct net_device *dev, unsigned int mtu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002919{
Thomas Grafc71099a2006-08-04 23:20:06 -07002920 struct rt6_mtu_change_arg arg = {
2921 .dev = dev,
2922 .mtu = mtu,
2923 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002924
Li RongQing0c3584d2013-12-27 16:32:38 +08002925 fib6_clean_all(dev_net(dev), rt6_mtu_change_route, &arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002926}
2927
Patrick McHardyef7c79e2007-06-05 12:38:30 -07002928static const struct nla_policy rtm_ipv6_policy[RTA_MAX+1] = {
Thomas Graf5176f912006-08-26 20:13:18 -07002929 [RTA_GATEWAY] = { .len = sizeof(struct in6_addr) },
Thomas Graf86872cb2006-08-22 00:01:08 -07002930 [RTA_OIF] = { .type = NLA_U32 },
Thomas Grafab364a62006-08-22 00:01:47 -07002931 [RTA_IIF] = { .type = NLA_U32 },
Thomas Graf86872cb2006-08-22 00:01:08 -07002932 [RTA_PRIORITY] = { .type = NLA_U32 },
2933 [RTA_METRICS] = { .type = NLA_NESTED },
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00002934 [RTA_MULTIPATH] = { .len = sizeof(struct rtnexthop) },
Lubomir Rintelc78ba6d2015-03-11 15:39:21 +01002935 [RTA_PREF] = { .type = NLA_U8 },
Roopa Prabhu19e42e42015-07-21 10:43:48 +02002936 [RTA_ENCAP_TYPE] = { .type = NLA_U16 },
2937 [RTA_ENCAP] = { .type = NLA_NESTED },
Xin Long32bc2012015-12-16 17:50:11 +08002938 [RTA_EXPIRES] = { .type = NLA_U32 },
Lorenzo Colitti622ec2c2016-11-04 02:23:42 +09002939 [RTA_UID] = { .type = NLA_U32 },
Liping Zhang3b45a412017-02-27 20:59:39 +08002940 [RTA_MARK] = { .type = NLA_U32 },
Thomas Graf86872cb2006-08-22 00:01:08 -07002941};
2942
2943static int rtm_to_fib6_config(struct sk_buff *skb, struct nlmsghdr *nlh,
David Ahern333c4302017-05-21 10:12:04 -06002944 struct fib6_config *cfg,
2945 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002946{
Thomas Graf86872cb2006-08-22 00:01:08 -07002947 struct rtmsg *rtm;
2948 struct nlattr *tb[RTA_MAX+1];
Lubomir Rintelc78ba6d2015-03-11 15:39:21 +01002949 unsigned int pref;
Thomas Graf86872cb2006-08-22 00:01:08 -07002950 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002951
Johannes Bergfceb6432017-04-12 14:34:07 +02002952 err = nlmsg_parse(nlh, sizeof(*rtm), tb, RTA_MAX, rtm_ipv6_policy,
2953 NULL);
Thomas Graf86872cb2006-08-22 00:01:08 -07002954 if (err < 0)
2955 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002956
Thomas Graf86872cb2006-08-22 00:01:08 -07002957 err = -EINVAL;
2958 rtm = nlmsg_data(nlh);
2959 memset(cfg, 0, sizeof(*cfg));
2960
2961 cfg->fc_table = rtm->rtm_table;
2962 cfg->fc_dst_len = rtm->rtm_dst_len;
2963 cfg->fc_src_len = rtm->rtm_src_len;
2964 cfg->fc_flags = RTF_UP;
2965 cfg->fc_protocol = rtm->rtm_protocol;
Nicolas Dichtelef2c7d72012-09-05 02:12:42 +00002966 cfg->fc_type = rtm->rtm_type;
Thomas Graf86872cb2006-08-22 00:01:08 -07002967
Nicolas Dichtelef2c7d72012-09-05 02:12:42 +00002968 if (rtm->rtm_type == RTN_UNREACHABLE ||
2969 rtm->rtm_type == RTN_BLACKHOLE ||
Nicolas Dichtelb4949ab2012-09-06 05:53:35 +00002970 rtm->rtm_type == RTN_PROHIBIT ||
2971 rtm->rtm_type == RTN_THROW)
Thomas Graf86872cb2006-08-22 00:01:08 -07002972 cfg->fc_flags |= RTF_REJECT;
2973
Maciej Żenczykowskiab79ad12010-09-27 00:07:02 +00002974 if (rtm->rtm_type == RTN_LOCAL)
2975 cfg->fc_flags |= RTF_LOCAL;
2976
Martin KaFai Lau1f56a01f2015-04-28 13:03:03 -07002977 if (rtm->rtm_flags & RTM_F_CLONED)
2978 cfg->fc_flags |= RTF_CACHE;
2979
Eric W. Biederman15e47302012-09-07 20:12:54 +00002980 cfg->fc_nlinfo.portid = NETLINK_CB(skb).portid;
Thomas Graf86872cb2006-08-22 00:01:08 -07002981 cfg->fc_nlinfo.nlh = nlh;
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09002982 cfg->fc_nlinfo.nl_net = sock_net(skb->sk);
Thomas Graf86872cb2006-08-22 00:01:08 -07002983
2984 if (tb[RTA_GATEWAY]) {
Jiri Benc67b61f62015-03-29 16:59:26 +02002985 cfg->fc_gateway = nla_get_in6_addr(tb[RTA_GATEWAY]);
Thomas Graf86872cb2006-08-22 00:01:08 -07002986 cfg->fc_flags |= RTF_GATEWAY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002987 }
Thomas Graf86872cb2006-08-22 00:01:08 -07002988
2989 if (tb[RTA_DST]) {
2990 int plen = (rtm->rtm_dst_len + 7) >> 3;
2991
2992 if (nla_len(tb[RTA_DST]) < plen)
2993 goto errout;
2994
2995 nla_memcpy(&cfg->fc_dst, tb[RTA_DST], plen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002996 }
Thomas Graf86872cb2006-08-22 00:01:08 -07002997
2998 if (tb[RTA_SRC]) {
2999 int plen = (rtm->rtm_src_len + 7) >> 3;
3000
3001 if (nla_len(tb[RTA_SRC]) < plen)
3002 goto errout;
3003
3004 nla_memcpy(&cfg->fc_src, tb[RTA_SRC], plen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003005 }
Thomas Graf86872cb2006-08-22 00:01:08 -07003006
Daniel Walterc3968a82011-04-13 21:10:57 +00003007 if (tb[RTA_PREFSRC])
Jiri Benc67b61f62015-03-29 16:59:26 +02003008 cfg->fc_prefsrc = nla_get_in6_addr(tb[RTA_PREFSRC]);
Daniel Walterc3968a82011-04-13 21:10:57 +00003009
Thomas Graf86872cb2006-08-22 00:01:08 -07003010 if (tb[RTA_OIF])
3011 cfg->fc_ifindex = nla_get_u32(tb[RTA_OIF]);
3012
3013 if (tb[RTA_PRIORITY])
3014 cfg->fc_metric = nla_get_u32(tb[RTA_PRIORITY]);
3015
3016 if (tb[RTA_METRICS]) {
3017 cfg->fc_mx = nla_data(tb[RTA_METRICS]);
3018 cfg->fc_mx_len = nla_len(tb[RTA_METRICS]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003019 }
Thomas Graf86872cb2006-08-22 00:01:08 -07003020
3021 if (tb[RTA_TABLE])
3022 cfg->fc_table = nla_get_u32(tb[RTA_TABLE]);
3023
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00003024 if (tb[RTA_MULTIPATH]) {
3025 cfg->fc_mp = nla_data(tb[RTA_MULTIPATH]);
3026 cfg->fc_mp_len = nla_len(tb[RTA_MULTIPATH]);
David Ahern9ed59592017-01-17 14:57:36 -08003027
3028 err = lwtunnel_valid_encap_type_attr(cfg->fc_mp,
David Ahernc255bd62017-05-27 16:19:27 -06003029 cfg->fc_mp_len, extack);
David Ahern9ed59592017-01-17 14:57:36 -08003030 if (err < 0)
3031 goto errout;
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00003032 }
3033
Lubomir Rintelc78ba6d2015-03-11 15:39:21 +01003034 if (tb[RTA_PREF]) {
3035 pref = nla_get_u8(tb[RTA_PREF]);
3036 if (pref != ICMPV6_ROUTER_PREF_LOW &&
3037 pref != ICMPV6_ROUTER_PREF_HIGH)
3038 pref = ICMPV6_ROUTER_PREF_MEDIUM;
3039 cfg->fc_flags |= RTF_PREF(pref);
3040 }
3041
Roopa Prabhu19e42e42015-07-21 10:43:48 +02003042 if (tb[RTA_ENCAP])
3043 cfg->fc_encap = tb[RTA_ENCAP];
3044
David Ahern9ed59592017-01-17 14:57:36 -08003045 if (tb[RTA_ENCAP_TYPE]) {
Roopa Prabhu19e42e42015-07-21 10:43:48 +02003046 cfg->fc_encap_type = nla_get_u16(tb[RTA_ENCAP_TYPE]);
3047
David Ahernc255bd62017-05-27 16:19:27 -06003048 err = lwtunnel_valid_encap_type(cfg->fc_encap_type, extack);
David Ahern9ed59592017-01-17 14:57:36 -08003049 if (err < 0)
3050 goto errout;
3051 }
3052
Xin Long32bc2012015-12-16 17:50:11 +08003053 if (tb[RTA_EXPIRES]) {
3054 unsigned long timeout = addrconf_timeout_fixup(nla_get_u32(tb[RTA_EXPIRES]), HZ);
3055
3056 if (addrconf_finite_timeout(timeout)) {
3057 cfg->fc_expires = jiffies_to_clock_t(timeout * HZ);
3058 cfg->fc_flags |= RTF_EXPIRES;
3059 }
3060 }
3061
Thomas Graf86872cb2006-08-22 00:01:08 -07003062 err = 0;
3063errout:
3064 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003065}
3066
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003067struct rt6_nh {
3068 struct rt6_info *rt6_info;
3069 struct fib6_config r_cfg;
3070 struct mx6_config mxc;
3071 struct list_head next;
3072};
3073
3074static void ip6_print_replace_route_err(struct list_head *rt6_nh_list)
3075{
3076 struct rt6_nh *nh;
3077
3078 list_for_each_entry(nh, rt6_nh_list, next) {
David Ahern7d4d5062017-02-02 12:37:12 -08003079 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 -07003080 &nh->r_cfg.fc_dst, &nh->r_cfg.fc_gateway,
3081 nh->r_cfg.fc_ifindex);
3082 }
3083}
3084
3085static int ip6_route_info_append(struct list_head *rt6_nh_list,
3086 struct rt6_info *rt, struct fib6_config *r_cfg)
3087{
3088 struct rt6_nh *nh;
3089 struct rt6_info *rtnh;
3090 int err = -EEXIST;
3091
3092 list_for_each_entry(nh, rt6_nh_list, next) {
3093 /* check if rt6_info already exists */
3094 rtnh = nh->rt6_info;
3095
3096 if (rtnh->dst.dev == rt->dst.dev &&
3097 rtnh->rt6i_idev == rt->rt6i_idev &&
3098 ipv6_addr_equal(&rtnh->rt6i_gateway,
3099 &rt->rt6i_gateway))
3100 return err;
3101 }
3102
3103 nh = kzalloc(sizeof(*nh), GFP_KERNEL);
3104 if (!nh)
3105 return -ENOMEM;
3106 nh->rt6_info = rt;
3107 err = ip6_convert_metrics(&nh->mxc, r_cfg);
3108 if (err) {
3109 kfree(nh);
3110 return err;
3111 }
3112 memcpy(&nh->r_cfg, r_cfg, sizeof(*r_cfg));
3113 list_add_tail(&nh->next, rt6_nh_list);
3114
3115 return 0;
3116}
3117
David Ahern3b1137f2017-02-02 12:37:10 -08003118static void ip6_route_mpath_notify(struct rt6_info *rt,
3119 struct rt6_info *rt_last,
3120 struct nl_info *info,
3121 __u16 nlflags)
3122{
3123 /* if this is an APPEND route, then rt points to the first route
3124 * inserted and rt_last points to last route inserted. Userspace
3125 * wants a consistent dump of the route which starts at the first
3126 * nexthop. Since sibling routes are always added at the end of
3127 * the list, find the first sibling of the last route appended
3128 */
3129 if ((nlflags & NLM_F_APPEND) && rt_last && rt_last->rt6i_nsiblings) {
3130 rt = list_first_entry(&rt_last->rt6i_siblings,
3131 struct rt6_info,
3132 rt6i_siblings);
3133 }
3134
3135 if (rt)
3136 inet6_rt_notify(RTM_NEWROUTE, rt, info, nlflags);
3137}
3138
David Ahern333c4302017-05-21 10:12:04 -06003139static int ip6_route_multipath_add(struct fib6_config *cfg,
3140 struct netlink_ext_ack *extack)
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00003141{
David Ahern3b1137f2017-02-02 12:37:10 -08003142 struct rt6_info *rt_notif = NULL, *rt_last = NULL;
3143 struct nl_info *info = &cfg->fc_nlinfo;
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00003144 struct fib6_config r_cfg;
3145 struct rtnexthop *rtnh;
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003146 struct rt6_info *rt;
3147 struct rt6_nh *err_nh;
3148 struct rt6_nh *nh, *nh_safe;
David Ahern3b1137f2017-02-02 12:37:10 -08003149 __u16 nlflags;
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00003150 int remaining;
3151 int attrlen;
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003152 int err = 1;
3153 int nhn = 0;
3154 int replace = (cfg->fc_nlinfo.nlh &&
3155 (cfg->fc_nlinfo.nlh->nlmsg_flags & NLM_F_REPLACE));
3156 LIST_HEAD(rt6_nh_list);
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00003157
David Ahern3b1137f2017-02-02 12:37:10 -08003158 nlflags = replace ? NLM_F_REPLACE : NLM_F_CREATE;
3159 if (info->nlh && info->nlh->nlmsg_flags & NLM_F_APPEND)
3160 nlflags |= NLM_F_APPEND;
3161
Michal Kubeček35f1b4e2015-05-18 20:53:55 +02003162 remaining = cfg->fc_mp_len;
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00003163 rtnh = (struct rtnexthop *)cfg->fc_mp;
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00003164
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003165 /* Parse a Multipath Entry and build a list (rt6_nh_list) of
3166 * rt6_info structs per nexthop
3167 */
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00003168 while (rtnh_ok(rtnh, remaining)) {
3169 memcpy(&r_cfg, cfg, sizeof(*cfg));
3170 if (rtnh->rtnh_ifindex)
3171 r_cfg.fc_ifindex = rtnh->rtnh_ifindex;
3172
3173 attrlen = rtnh_attrlen(rtnh);
3174 if (attrlen > 0) {
3175 struct nlattr *nla, *attrs = rtnh_attrs(rtnh);
3176
3177 nla = nla_find(attrs, attrlen, RTA_GATEWAY);
3178 if (nla) {
Jiri Benc67b61f62015-03-29 16:59:26 +02003179 r_cfg.fc_gateway = nla_get_in6_addr(nla);
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00003180 r_cfg.fc_flags |= RTF_GATEWAY;
3181 }
Roopa Prabhu19e42e42015-07-21 10:43:48 +02003182 r_cfg.fc_encap = nla_find(attrs, attrlen, RTA_ENCAP);
3183 nla = nla_find(attrs, attrlen, RTA_ENCAP_TYPE);
3184 if (nla)
3185 r_cfg.fc_encap_type = nla_get_u16(nla);
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00003186 }
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003187
David Ahern333c4302017-05-21 10:12:04 -06003188 rt = ip6_route_info_create(&r_cfg, extack);
Roopa Prabhu8c5b83f2015-10-10 08:26:36 -07003189 if (IS_ERR(rt)) {
3190 err = PTR_ERR(rt);
3191 rt = NULL;
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003192 goto cleanup;
Roopa Prabhu8c5b83f2015-10-10 08:26:36 -07003193 }
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003194
3195 err = ip6_route_info_append(&rt6_nh_list, rt, &r_cfg);
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00003196 if (err) {
Wei Wang587fea72017-06-17 10:42:36 -07003197 dst_release_immediate(&rt->dst);
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003198 goto cleanup;
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00003199 }
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003200
3201 rtnh = rtnh_next(rtnh, &remaining);
3202 }
3203
David Ahern3b1137f2017-02-02 12:37:10 -08003204 /* for add and replace send one notification with all nexthops.
3205 * Skip the notification in fib6_add_rt2node and send one with
3206 * the full route when done
3207 */
3208 info->skip_notify = 1;
3209
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003210 err_nh = NULL;
3211 list_for_each_entry(nh, &rt6_nh_list, next) {
David Ahern3b1137f2017-02-02 12:37:10 -08003212 rt_last = nh->rt6_info;
David Ahern333c4302017-05-21 10:12:04 -06003213 err = __ip6_ins_rt(nh->rt6_info, info, &nh->mxc, extack);
David Ahern3b1137f2017-02-02 12:37:10 -08003214 /* save reference to first route for notification */
3215 if (!rt_notif && !err)
3216 rt_notif = nh->rt6_info;
3217
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003218 /* nh->rt6_info is used or freed at this point, reset to NULL*/
3219 nh->rt6_info = NULL;
3220 if (err) {
3221 if (replace && nhn)
3222 ip6_print_replace_route_err(&rt6_nh_list);
3223 err_nh = nh;
3224 goto add_errout;
3225 }
3226
Nicolas Dichtel1a724182012-11-01 22:58:22 +00003227 /* Because each route is added like a single route we remove
Michal Kubeček27596472015-05-18 20:54:00 +02003228 * these flags after the first nexthop: if there is a collision,
3229 * we have already failed to add the first nexthop:
3230 * fib6_add_rt2node() has rejected it; when replacing, old
3231 * nexthops have been replaced by first new, the rest should
3232 * be added to it.
Nicolas Dichtel1a724182012-11-01 22:58:22 +00003233 */
Michal Kubeček27596472015-05-18 20:54:00 +02003234 cfg->fc_nlinfo.nlh->nlmsg_flags &= ~(NLM_F_EXCL |
3235 NLM_F_REPLACE);
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003236 nhn++;
3237 }
3238
David Ahern3b1137f2017-02-02 12:37:10 -08003239 /* success ... tell user about new route */
3240 ip6_route_mpath_notify(rt_notif, rt_last, info, nlflags);
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003241 goto cleanup;
3242
3243add_errout:
David Ahern3b1137f2017-02-02 12:37:10 -08003244 /* send notification for routes that were added so that
3245 * the delete notifications sent by ip6_route_del are
3246 * coherent
3247 */
3248 if (rt_notif)
3249 ip6_route_mpath_notify(rt_notif, rt_last, info, nlflags);
3250
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003251 /* Delete routes that were already added */
3252 list_for_each_entry(nh, &rt6_nh_list, next) {
3253 if (err_nh == nh)
3254 break;
David Ahern333c4302017-05-21 10:12:04 -06003255 ip6_route_del(&nh->r_cfg, extack);
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003256 }
3257
3258cleanup:
3259 list_for_each_entry_safe(nh, nh_safe, &rt6_nh_list, next) {
Wei Wang587fea72017-06-17 10:42:36 -07003260 if (nh->rt6_info)
3261 dst_release_immediate(&nh->rt6_info->dst);
Wu Fengguang52fe51f2015-09-10 06:57:12 +08003262 kfree(nh->mxc.mx);
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003263 list_del(&nh->next);
3264 kfree(nh);
3265 }
3266
3267 return err;
3268}
3269
David Ahern333c4302017-05-21 10:12:04 -06003270static int ip6_route_multipath_del(struct fib6_config *cfg,
3271 struct netlink_ext_ack *extack)
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003272{
3273 struct fib6_config r_cfg;
3274 struct rtnexthop *rtnh;
3275 int remaining;
3276 int attrlen;
3277 int err = 1, last_err = 0;
3278
3279 remaining = cfg->fc_mp_len;
3280 rtnh = (struct rtnexthop *)cfg->fc_mp;
3281
3282 /* Parse a Multipath Entry */
3283 while (rtnh_ok(rtnh, remaining)) {
3284 memcpy(&r_cfg, cfg, sizeof(*cfg));
3285 if (rtnh->rtnh_ifindex)
3286 r_cfg.fc_ifindex = rtnh->rtnh_ifindex;
3287
3288 attrlen = rtnh_attrlen(rtnh);
3289 if (attrlen > 0) {
3290 struct nlattr *nla, *attrs = rtnh_attrs(rtnh);
3291
3292 nla = nla_find(attrs, attrlen, RTA_GATEWAY);
3293 if (nla) {
3294 nla_memcpy(&r_cfg.fc_gateway, nla, 16);
3295 r_cfg.fc_flags |= RTF_GATEWAY;
3296 }
3297 }
David Ahern333c4302017-05-21 10:12:04 -06003298 err = ip6_route_del(&r_cfg, extack);
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003299 if (err)
3300 last_err = err;
3301
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00003302 rtnh = rtnh_next(rtnh, &remaining);
3303 }
3304
3305 return last_err;
3306}
3307
David Ahernc21ef3e2017-04-16 09:48:24 -07003308static int inet6_rtm_delroute(struct sk_buff *skb, struct nlmsghdr *nlh,
3309 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003310{
Thomas Graf86872cb2006-08-22 00:01:08 -07003311 struct fib6_config cfg;
3312 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003313
David Ahern333c4302017-05-21 10:12:04 -06003314 err = rtm_to_fib6_config(skb, nlh, &cfg, extack);
Thomas Graf86872cb2006-08-22 00:01:08 -07003315 if (err < 0)
3316 return err;
3317
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00003318 if (cfg.fc_mp)
David Ahern333c4302017-05-21 10:12:04 -06003319 return ip6_route_multipath_del(&cfg, extack);
David Ahern0ae81332017-02-02 12:37:08 -08003320 else {
3321 cfg.fc_delete_all_nh = 1;
David Ahern333c4302017-05-21 10:12:04 -06003322 return ip6_route_del(&cfg, extack);
David Ahern0ae81332017-02-02 12:37:08 -08003323 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003324}
3325
David Ahernc21ef3e2017-04-16 09:48:24 -07003326static int inet6_rtm_newroute(struct sk_buff *skb, struct nlmsghdr *nlh,
3327 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003328{
Thomas Graf86872cb2006-08-22 00:01:08 -07003329 struct fib6_config cfg;
3330 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003331
David Ahern333c4302017-05-21 10:12:04 -06003332 err = rtm_to_fib6_config(skb, nlh, &cfg, extack);
Thomas Graf86872cb2006-08-22 00:01:08 -07003333 if (err < 0)
3334 return err;
3335
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00003336 if (cfg.fc_mp)
David Ahern333c4302017-05-21 10:12:04 -06003337 return ip6_route_multipath_add(&cfg, extack);
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00003338 else
David Ahern333c4302017-05-21 10:12:04 -06003339 return ip6_route_add(&cfg, extack);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003340}
3341
David Ahernbeb1afac52017-02-02 12:37:09 -08003342static size_t rt6_nlmsg_size(struct rt6_info *rt)
Thomas Graf339bf982006-11-10 14:10:15 -08003343{
David Ahernbeb1afac52017-02-02 12:37:09 -08003344 int nexthop_len = 0;
3345
3346 if (rt->rt6i_nsiblings) {
3347 nexthop_len = nla_total_size(0) /* RTA_MULTIPATH */
3348 + NLA_ALIGN(sizeof(struct rtnexthop))
3349 + nla_total_size(16) /* RTA_GATEWAY */
David Ahernbeb1afac52017-02-02 12:37:09 -08003350 + lwtunnel_get_encap_size(rt->dst.lwtstate);
3351
3352 nexthop_len *= rt->rt6i_nsiblings;
3353 }
3354
Thomas Graf339bf982006-11-10 14:10:15 -08003355 return NLMSG_ALIGN(sizeof(struct rtmsg))
3356 + nla_total_size(16) /* RTA_SRC */
3357 + nla_total_size(16) /* RTA_DST */
3358 + nla_total_size(16) /* RTA_GATEWAY */
3359 + nla_total_size(16) /* RTA_PREFSRC */
3360 + nla_total_size(4) /* RTA_TABLE */
3361 + nla_total_size(4) /* RTA_IIF */
3362 + nla_total_size(4) /* RTA_OIF */
3363 + nla_total_size(4) /* RTA_PRIORITY */
Noriaki TAKAMIYA6a2b9ce2007-01-23 22:09:41 -08003364 + RTAX_MAX * nla_total_size(4) /* RTA_METRICS */
Daniel Borkmannea697632015-01-05 23:57:47 +01003365 + nla_total_size(sizeof(struct rta_cacheinfo))
Lubomir Rintelc78ba6d2015-03-11 15:39:21 +01003366 + nla_total_size(TCP_CA_NAME_MAX) /* RTAX_CC_ALGO */
Roopa Prabhu19e42e42015-07-21 10:43:48 +02003367 + nla_total_size(1) /* RTA_PREF */
David Ahernbeb1afac52017-02-02 12:37:09 -08003368 + lwtunnel_get_encap_size(rt->dst.lwtstate)
3369 + nexthop_len;
3370}
3371
3372static int rt6_nexthop_info(struct sk_buff *skb, struct rt6_info *rt,
David Ahern5be083c2017-03-06 15:57:31 -08003373 unsigned int *flags, bool skip_oif)
David Ahernbeb1afac52017-02-02 12:37:09 -08003374{
3375 if (!netif_running(rt->dst.dev) || !netif_carrier_ok(rt->dst.dev)) {
3376 *flags |= RTNH_F_LINKDOWN;
3377 if (rt->rt6i_idev->cnf.ignore_routes_with_linkdown)
3378 *flags |= RTNH_F_DEAD;
3379 }
3380
3381 if (rt->rt6i_flags & RTF_GATEWAY) {
3382 if (nla_put_in6_addr(skb, RTA_GATEWAY, &rt->rt6i_gateway) < 0)
3383 goto nla_put_failure;
3384 }
3385
David Ahern5be083c2017-03-06 15:57:31 -08003386 /* not needed for multipath encoding b/c it has a rtnexthop struct */
3387 if (!skip_oif && rt->dst.dev &&
David Ahernbeb1afac52017-02-02 12:37:09 -08003388 nla_put_u32(skb, RTA_OIF, rt->dst.dev->ifindex))
3389 goto nla_put_failure;
3390
3391 if (rt->dst.lwtstate &&
3392 lwtunnel_fill_encap(skb, rt->dst.lwtstate) < 0)
3393 goto nla_put_failure;
3394
3395 return 0;
3396
3397nla_put_failure:
3398 return -EMSGSIZE;
3399}
3400
David Ahern5be083c2017-03-06 15:57:31 -08003401/* add multipath next hop */
David Ahernbeb1afac52017-02-02 12:37:09 -08003402static int rt6_add_nexthop(struct sk_buff *skb, struct rt6_info *rt)
3403{
3404 struct rtnexthop *rtnh;
3405 unsigned int flags = 0;
3406
3407 rtnh = nla_reserve_nohdr(skb, sizeof(*rtnh));
3408 if (!rtnh)
3409 goto nla_put_failure;
3410
3411 rtnh->rtnh_hops = 0;
3412 rtnh->rtnh_ifindex = rt->dst.dev ? rt->dst.dev->ifindex : 0;
3413
David Ahern5be083c2017-03-06 15:57:31 -08003414 if (rt6_nexthop_info(skb, rt, &flags, true) < 0)
David Ahernbeb1afac52017-02-02 12:37:09 -08003415 goto nla_put_failure;
3416
3417 rtnh->rtnh_flags = flags;
3418
3419 /* length of rtnetlink header + attributes */
3420 rtnh->rtnh_len = nlmsg_get_pos(skb) - (void *)rtnh;
3421
3422 return 0;
3423
3424nla_put_failure:
3425 return -EMSGSIZE;
Thomas Graf339bf982006-11-10 14:10:15 -08003426}
3427
Brian Haley191cd582008-08-14 15:33:21 -07003428static int rt6_fill_node(struct net *net,
3429 struct sk_buff *skb, struct rt6_info *rt,
Jamal Hadi Salim0d51aa82005-06-21 13:51:04 -07003430 struct in6_addr *dst, struct in6_addr *src,
Eric W. Biederman15e47302012-09-07 20:12:54 +00003431 int iif, int type, u32 portid, u32 seq,
David Ahernf8cfe2c2017-01-17 15:51:08 -08003432 unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003433{
Martin KaFai Lau4b32b5a2015-04-28 13:03:06 -07003434 u32 metrics[RTAX_MAX];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003435 struct rtmsg *rtm;
Thomas Graf2d7202b2006-08-22 00:01:27 -07003436 struct nlmsghdr *nlh;
Thomas Grafe3703b32006-11-27 09:27:07 -08003437 long expires;
Patrick McHardy9e762a42006-08-10 23:09:48 -07003438 u32 table;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003439
Eric W. Biederman15e47302012-09-07 20:12:54 +00003440 nlh = nlmsg_put(skb, portid, seq, type, sizeof(*rtm), flags);
David S. Miller38308472011-12-03 18:02:47 -05003441 if (!nlh)
Patrick McHardy26932562007-01-31 23:16:40 -08003442 return -EMSGSIZE;
Thomas Graf2d7202b2006-08-22 00:01:27 -07003443
3444 rtm = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003445 rtm->rtm_family = AF_INET6;
3446 rtm->rtm_dst_len = rt->rt6i_dst.plen;
3447 rtm->rtm_src_len = rt->rt6i_src.plen;
3448 rtm->rtm_tos = 0;
Thomas Grafc71099a2006-08-04 23:20:06 -07003449 if (rt->rt6i_table)
Patrick McHardy9e762a42006-08-10 23:09:48 -07003450 table = rt->rt6i_table->tb6_id;
Thomas Grafc71099a2006-08-04 23:20:06 -07003451 else
Patrick McHardy9e762a42006-08-10 23:09:48 -07003452 table = RT6_TABLE_UNSPEC;
3453 rtm->rtm_table = table;
David S. Millerc78679e2012-04-01 20:27:33 -04003454 if (nla_put_u32(skb, RTA_TABLE, table))
3455 goto nla_put_failure;
Nicolas Dichtelef2c7d72012-09-05 02:12:42 +00003456 if (rt->rt6i_flags & RTF_REJECT) {
3457 switch (rt->dst.error) {
3458 case -EINVAL:
3459 rtm->rtm_type = RTN_BLACKHOLE;
3460 break;
3461 case -EACCES:
3462 rtm->rtm_type = RTN_PROHIBIT;
3463 break;
Nicolas Dichtelb4949ab2012-09-06 05:53:35 +00003464 case -EAGAIN:
3465 rtm->rtm_type = RTN_THROW;
3466 break;
Nicolas Dichtelef2c7d72012-09-05 02:12:42 +00003467 default:
3468 rtm->rtm_type = RTN_UNREACHABLE;
3469 break;
3470 }
3471 }
David S. Miller38308472011-12-03 18:02:47 -05003472 else if (rt->rt6i_flags & RTF_LOCAL)
Maciej Żenczykowskiab79ad12010-09-27 00:07:02 +00003473 rtm->rtm_type = RTN_LOCAL;
David Ahern4ee39732017-03-15 18:14:33 -07003474 else if (rt->rt6i_flags & RTF_ANYCAST)
3475 rtm->rtm_type = RTN_ANYCAST;
David S. Millerd1918542011-12-28 20:19:20 -05003476 else if (rt->dst.dev && (rt->dst.dev->flags & IFF_LOOPBACK))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003477 rtm->rtm_type = RTN_LOCAL;
3478 else
3479 rtm->rtm_type = RTN_UNICAST;
3480 rtm->rtm_flags = 0;
3481 rtm->rtm_scope = RT_SCOPE_UNIVERSE;
3482 rtm->rtm_protocol = rt->rt6i_protocol;
David S. Miller38308472011-12-03 18:02:47 -05003483 if (rt->rt6i_flags & RTF_DYNAMIC)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003484 rtm->rtm_protocol = RTPROT_REDIRECT;
Denis Ovsienkof0396f602012-07-10 04:45:50 +00003485 else if (rt->rt6i_flags & RTF_ADDRCONF) {
3486 if (rt->rt6i_flags & (RTF_DEFAULT | RTF_ROUTEINFO))
3487 rtm->rtm_protocol = RTPROT_RA;
3488 else
3489 rtm->rtm_protocol = RTPROT_KERNEL;
3490 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003491
David S. Miller38308472011-12-03 18:02:47 -05003492 if (rt->rt6i_flags & RTF_CACHE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003493 rtm->rtm_flags |= RTM_F_CLONED;
3494
3495 if (dst) {
Jiri Benc930345e2015-03-29 16:59:25 +02003496 if (nla_put_in6_addr(skb, RTA_DST, dst))
David S. Millerc78679e2012-04-01 20:27:33 -04003497 goto nla_put_failure;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003498 rtm->rtm_dst_len = 128;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003499 } else if (rtm->rtm_dst_len)
Jiri Benc930345e2015-03-29 16:59:25 +02003500 if (nla_put_in6_addr(skb, RTA_DST, &rt->rt6i_dst.addr))
David S. Millerc78679e2012-04-01 20:27:33 -04003501 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003502#ifdef CONFIG_IPV6_SUBTREES
3503 if (src) {
Jiri Benc930345e2015-03-29 16:59:25 +02003504 if (nla_put_in6_addr(skb, RTA_SRC, src))
David S. Millerc78679e2012-04-01 20:27:33 -04003505 goto nla_put_failure;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003506 rtm->rtm_src_len = 128;
David S. Millerc78679e2012-04-01 20:27:33 -04003507 } else if (rtm->rtm_src_len &&
Jiri Benc930345e2015-03-29 16:59:25 +02003508 nla_put_in6_addr(skb, RTA_SRC, &rt->rt6i_src.addr))
David S. Millerc78679e2012-04-01 20:27:33 -04003509 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003510#endif
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09003511 if (iif) {
3512#ifdef CONFIG_IPV6_MROUTE
3513 if (ipv6_addr_is_multicast(&rt->rt6i_dst.addr)) {
David Ahernfd61c6b2017-01-17 15:51:07 -08003514 int err = ip6mr_get_route(net, skb, rtm, portid);
Nikolay Aleksandrov2cf75072016-09-25 23:08:31 +02003515
David Ahernfd61c6b2017-01-17 15:51:07 -08003516 if (err == 0)
3517 return 0;
3518 if (err < 0)
3519 goto nla_put_failure;
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09003520 } else
3521#endif
David S. Millerc78679e2012-04-01 20:27:33 -04003522 if (nla_put_u32(skb, RTA_IIF, iif))
3523 goto nla_put_failure;
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09003524 } else if (dst) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003525 struct in6_addr saddr_buf;
David S. Millerc78679e2012-04-01 20:27:33 -04003526 if (ip6_route_get_saddr(net, rt, dst, 0, &saddr_buf) == 0 &&
Jiri Benc930345e2015-03-29 16:59:25 +02003527 nla_put_in6_addr(skb, RTA_PREFSRC, &saddr_buf))
David S. Millerc78679e2012-04-01 20:27:33 -04003528 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003529 }
Thomas Graf2d7202b2006-08-22 00:01:27 -07003530
Daniel Walterc3968a82011-04-13 21:10:57 +00003531 if (rt->rt6i_prefsrc.plen) {
3532 struct in6_addr saddr_buf;
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00003533 saddr_buf = rt->rt6i_prefsrc.addr;
Jiri Benc930345e2015-03-29 16:59:25 +02003534 if (nla_put_in6_addr(skb, RTA_PREFSRC, &saddr_buf))
David S. Millerc78679e2012-04-01 20:27:33 -04003535 goto nla_put_failure;
Daniel Walterc3968a82011-04-13 21:10:57 +00003536 }
3537
Martin KaFai Lau4b32b5a2015-04-28 13:03:06 -07003538 memcpy(metrics, dst_metrics_ptr(&rt->dst), sizeof(metrics));
3539 if (rt->rt6i_pmtu)
3540 metrics[RTAX_MTU - 1] = rt->rt6i_pmtu;
3541 if (rtnetlink_put_metrics(skb, metrics) < 0)
Thomas Graf2d7202b2006-08-22 00:01:27 -07003542 goto nla_put_failure;
3543
David S. Millerc78679e2012-04-01 20:27:33 -04003544 if (nla_put_u32(skb, RTA_PRIORITY, rt->rt6i_metric))
3545 goto nla_put_failure;
Li Wei82539472012-07-29 16:01:30 +00003546
David Ahernbeb1afac52017-02-02 12:37:09 -08003547 /* For multipath routes, walk the siblings list and add
3548 * each as a nexthop within RTA_MULTIPATH.
3549 */
3550 if (rt->rt6i_nsiblings) {
3551 struct rt6_info *sibling, *next_sibling;
3552 struct nlattr *mp;
3553
3554 mp = nla_nest_start(skb, RTA_MULTIPATH);
3555 if (!mp)
3556 goto nla_put_failure;
3557
3558 if (rt6_add_nexthop(skb, rt) < 0)
3559 goto nla_put_failure;
3560
3561 list_for_each_entry_safe(sibling, next_sibling,
3562 &rt->rt6i_siblings, rt6i_siblings) {
3563 if (rt6_add_nexthop(skb, sibling) < 0)
3564 goto nla_put_failure;
3565 }
3566
3567 nla_nest_end(skb, mp);
3568 } else {
David Ahern5be083c2017-03-06 15:57:31 -08003569 if (rt6_nexthop_info(skb, rt, &rtm->rtm_flags, false) < 0)
David Ahernbeb1afac52017-02-02 12:37:09 -08003570 goto nla_put_failure;
3571 }
3572
Li Wei82539472012-07-29 16:01:30 +00003573 expires = (rt->rt6i_flags & RTF_EXPIRES) ? rt->dst.expires - jiffies : 0;
YOSHIFUJI Hideaki69cdf8f2008-05-19 16:55:13 -07003574
David S. Miller87a50692012-07-10 05:06:14 -07003575 if (rtnl_put_cacheinfo(skb, &rt->dst, 0, expires, rt->dst.error) < 0)
Thomas Grafe3703b32006-11-27 09:27:07 -08003576 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003577
Lubomir Rintelc78ba6d2015-03-11 15:39:21 +01003578 if (nla_put_u8(skb, RTA_PREF, IPV6_EXTRACT_PREF(rt->rt6i_flags)))
3579 goto nla_put_failure;
3580
Roopa Prabhu19e42e42015-07-21 10:43:48 +02003581
Johannes Berg053c0952015-01-16 22:09:00 +01003582 nlmsg_end(skb, nlh);
3583 return 0;
Thomas Graf2d7202b2006-08-22 00:01:27 -07003584
3585nla_put_failure:
Patrick McHardy26932562007-01-31 23:16:40 -08003586 nlmsg_cancel(skb, nlh);
3587 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003588}
3589
Patrick McHardy1b43af52006-08-10 23:11:17 -07003590int rt6_dump_route(struct rt6_info *rt, void *p_arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003591{
3592 struct rt6_rtnl_dump_arg *arg = (struct rt6_rtnl_dump_arg *) p_arg;
David Ahern1f17e2f2017-01-26 13:54:08 -08003593 struct net *net = arg->net;
3594
3595 if (rt == net->ipv6.ip6_null_entry)
3596 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003597
Thomas Graf2d7202b2006-08-22 00:01:27 -07003598 if (nlmsg_len(arg->cb->nlh) >= sizeof(struct rtmsg)) {
3599 struct rtmsg *rtm = nlmsg_data(arg->cb->nlh);
David Ahernf8cfe2c2017-01-17 15:51:08 -08003600
3601 /* user wants prefix routes only */
3602 if (rtm->rtm_flags & RTM_F_PREFIX &&
3603 !(rt->rt6i_flags & RTF_PREFIX_RT)) {
3604 /* success since this is not a prefix route */
3605 return 1;
3606 }
3607 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003608
David Ahern1f17e2f2017-01-26 13:54:08 -08003609 return rt6_fill_node(net,
Brian Haley191cd582008-08-14 15:33:21 -07003610 arg->skb, rt, NULL, NULL, 0, RTM_NEWROUTE,
Eric W. Biederman15e47302012-09-07 20:12:54 +00003611 NETLINK_CB(arg->cb->skb).portid, arg->cb->nlh->nlmsg_seq,
David Ahernf8cfe2c2017-01-17 15:51:08 -08003612 NLM_F_MULTI);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003613}
3614
David Ahernc21ef3e2017-04-16 09:48:24 -07003615static int inet6_rtm_getroute(struct sk_buff *in_skb, struct nlmsghdr *nlh,
3616 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003617{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09003618 struct net *net = sock_net(in_skb->sk);
Thomas Grafab364a62006-08-22 00:01:47 -07003619 struct nlattr *tb[RTA_MAX+1];
Roopa Prabhu18c3a612017-05-25 10:42:40 -07003620 int err, iif = 0, oif = 0;
3621 struct dst_entry *dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003622 struct rt6_info *rt;
Thomas Grafab364a62006-08-22 00:01:47 -07003623 struct sk_buff *skb;
3624 struct rtmsg *rtm;
David S. Miller4c9483b2011-03-12 16:22:43 -05003625 struct flowi6 fl6;
Roopa Prabhu18c3a612017-05-25 10:42:40 -07003626 bool fibmatch;
Thomas Grafab364a62006-08-22 00:01:47 -07003627
Johannes Bergfceb6432017-04-12 14:34:07 +02003628 err = nlmsg_parse(nlh, sizeof(*rtm), tb, RTA_MAX, rtm_ipv6_policy,
David Ahernc21ef3e2017-04-16 09:48:24 -07003629 extack);
Thomas Grafab364a62006-08-22 00:01:47 -07003630 if (err < 0)
3631 goto errout;
3632
3633 err = -EINVAL;
David S. Miller4c9483b2011-03-12 16:22:43 -05003634 memset(&fl6, 0, sizeof(fl6));
Hannes Frederic Sowa38b70972016-06-11 20:08:19 +02003635 rtm = nlmsg_data(nlh);
3636 fl6.flowlabel = ip6_make_flowinfo(rtm->rtm_tos, 0);
Roopa Prabhu18c3a612017-05-25 10:42:40 -07003637 fibmatch = !!(rtm->rtm_flags & RTM_F_FIB_MATCH);
Thomas Grafab364a62006-08-22 00:01:47 -07003638
3639 if (tb[RTA_SRC]) {
3640 if (nla_len(tb[RTA_SRC]) < sizeof(struct in6_addr))
3641 goto errout;
3642
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00003643 fl6.saddr = *(struct in6_addr *)nla_data(tb[RTA_SRC]);
Thomas Grafab364a62006-08-22 00:01:47 -07003644 }
3645
3646 if (tb[RTA_DST]) {
3647 if (nla_len(tb[RTA_DST]) < sizeof(struct in6_addr))
3648 goto errout;
3649
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00003650 fl6.daddr = *(struct in6_addr *)nla_data(tb[RTA_DST]);
Thomas Grafab364a62006-08-22 00:01:47 -07003651 }
3652
3653 if (tb[RTA_IIF])
3654 iif = nla_get_u32(tb[RTA_IIF]);
3655
3656 if (tb[RTA_OIF])
Shmulik Ladkani72331bc2012-04-01 04:03:45 +00003657 oif = nla_get_u32(tb[RTA_OIF]);
Thomas Grafab364a62006-08-22 00:01:47 -07003658
Lorenzo Colitti2e47b292014-05-15 16:38:41 -07003659 if (tb[RTA_MARK])
3660 fl6.flowi6_mark = nla_get_u32(tb[RTA_MARK]);
3661
Lorenzo Colitti622ec2c2016-11-04 02:23:42 +09003662 if (tb[RTA_UID])
3663 fl6.flowi6_uid = make_kuid(current_user_ns(),
3664 nla_get_u32(tb[RTA_UID]));
3665 else
3666 fl6.flowi6_uid = iif ? INVALID_UID : current_uid();
3667
Thomas Grafab364a62006-08-22 00:01:47 -07003668 if (iif) {
3669 struct net_device *dev;
Shmulik Ladkani72331bc2012-04-01 04:03:45 +00003670 int flags = 0;
3671
Daniel Lezcano55786892008-03-04 13:47:47 -08003672 dev = __dev_get_by_index(net, iif);
Thomas Grafab364a62006-08-22 00:01:47 -07003673 if (!dev) {
3674 err = -ENODEV;
3675 goto errout;
3676 }
Shmulik Ladkani72331bc2012-04-01 04:03:45 +00003677
3678 fl6.flowi6_iif = iif;
3679
3680 if (!ipv6_addr_any(&fl6.saddr))
3681 flags |= RT6_LOOKUP_F_HAS_SADDR;
3682
Roopa Prabhu18c3a612017-05-25 10:42:40 -07003683 if (!fibmatch)
3684 dst = ip6_route_input_lookup(net, dev, &fl6, flags);
Shmulik Ladkani72331bc2012-04-01 04:03:45 +00003685 } else {
3686 fl6.flowi6_oif = oif;
3687
Roopa Prabhu18c3a612017-05-25 10:42:40 -07003688 if (!fibmatch)
3689 dst = ip6_route_output(net, NULL, &fl6);
3690 }
3691
3692 if (fibmatch)
3693 dst = ip6_route_lookup(net, &fl6, 0);
3694
3695 rt = container_of(dst, struct rt6_info, dst);
3696 if (rt->dst.error) {
3697 err = rt->dst.error;
3698 ip6_rt_put(rt);
3699 goto errout;
Thomas Grafab364a62006-08-22 00:01:47 -07003700 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003701
WANG Cong9d6acb32017-03-01 20:48:39 -08003702 if (rt == net->ipv6.ip6_null_entry) {
3703 err = rt->dst.error;
3704 ip6_rt_put(rt);
3705 goto errout;
3706 }
3707
Linus Torvalds1da177e2005-04-16 15:20:36 -07003708 skb = alloc_skb(NLMSG_GOODSIZE, GFP_KERNEL);
David S. Miller38308472011-12-03 18:02:47 -05003709 if (!skb) {
Amerigo Wang94e187c2012-10-29 00:13:19 +00003710 ip6_rt_put(rt);
Thomas Grafab364a62006-08-22 00:01:47 -07003711 err = -ENOBUFS;
3712 goto errout;
3713 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003714
Changli Gaod8d1f302010-06-10 23:31:35 -07003715 skb_dst_set(skb, &rt->dst);
Roopa Prabhu18c3a612017-05-25 10:42:40 -07003716 if (fibmatch)
3717 err = rt6_fill_node(net, skb, rt, NULL, NULL, iif,
3718 RTM_NEWROUTE, NETLINK_CB(in_skb).portid,
3719 nlh->nlmsg_seq, 0);
3720 else
3721 err = rt6_fill_node(net, skb, rt, &fl6.daddr, &fl6.saddr, iif,
3722 RTM_NEWROUTE, NETLINK_CB(in_skb).portid,
3723 nlh->nlmsg_seq, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003724 if (err < 0) {
Thomas Grafab364a62006-08-22 00:01:47 -07003725 kfree_skb(skb);
3726 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003727 }
3728
Eric W. Biederman15e47302012-09-07 20:12:54 +00003729 err = rtnl_unicast(skb, net, NETLINK_CB(in_skb).portid);
Thomas Grafab364a62006-08-22 00:01:47 -07003730errout:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003731 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003732}
3733
Roopa Prabhu37a1d362015-09-13 10:18:33 -07003734void inet6_rt_notify(int event, struct rt6_info *rt, struct nl_info *info,
3735 unsigned int nlm_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003736{
3737 struct sk_buff *skb;
Daniel Lezcano55786892008-03-04 13:47:47 -08003738 struct net *net = info->nl_net;
Denis V. Lunev528c4ce2007-12-13 09:45:12 -08003739 u32 seq;
3740 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003741
Denis V. Lunev528c4ce2007-12-13 09:45:12 -08003742 err = -ENOBUFS;
David S. Miller38308472011-12-03 18:02:47 -05003743 seq = info->nlh ? info->nlh->nlmsg_seq : 0;
Thomas Graf86872cb2006-08-22 00:01:08 -07003744
Roopa Prabhu19e42e42015-07-21 10:43:48 +02003745 skb = nlmsg_new(rt6_nlmsg_size(rt), gfp_any());
David S. Miller38308472011-12-03 18:02:47 -05003746 if (!skb)
Thomas Graf21713eb2006-08-15 00:35:24 -07003747 goto errout;
3748
Brian Haley191cd582008-08-14 15:33:21 -07003749 err = rt6_fill_node(net, skb, rt, NULL, NULL, 0,
David Ahernf8cfe2c2017-01-17 15:51:08 -08003750 event, info->portid, seq, nlm_flags);
Patrick McHardy26932562007-01-31 23:16:40 -08003751 if (err < 0) {
3752 /* -EMSGSIZE implies BUG in rt6_nlmsg_size() */
3753 WARN_ON(err == -EMSGSIZE);
3754 kfree_skb(skb);
3755 goto errout;
3756 }
Eric W. Biederman15e47302012-09-07 20:12:54 +00003757 rtnl_notify(skb, net, info->portid, RTNLGRP_IPV6_ROUTE,
Pablo Neira Ayuso1ce85fe2009-02-24 23:18:28 -08003758 info->nlh, gfp_any());
3759 return;
Thomas Graf21713eb2006-08-15 00:35:24 -07003760errout:
3761 if (err < 0)
Daniel Lezcano55786892008-03-04 13:47:47 -08003762 rtnl_set_sk_err(net, RTNLGRP_IPV6_ROUTE, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003763}
3764
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003765static int ip6_route_dev_notify(struct notifier_block *this,
Jiri Pirko351638e2013-05-28 01:30:21 +00003766 unsigned long event, void *ptr)
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003767{
Jiri Pirko351638e2013-05-28 01:30:21 +00003768 struct net_device *dev = netdev_notifier_info_to_dev(ptr);
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09003769 struct net *net = dev_net(dev);
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003770
WANG Cong242d3a42017-05-08 10:12:13 -07003771 if (!(dev->flags & IFF_LOOPBACK))
3772 return NOTIFY_OK;
3773
3774 if (event == NETDEV_REGISTER) {
Changli Gaod8d1f302010-06-10 23:31:35 -07003775 net->ipv6.ip6_null_entry->dst.dev = dev;
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003776 net->ipv6.ip6_null_entry->rt6i_idev = in6_dev_get(dev);
3777#ifdef CONFIG_IPV6_MULTIPLE_TABLES
Changli Gaod8d1f302010-06-10 23:31:35 -07003778 net->ipv6.ip6_prohibit_entry->dst.dev = dev;
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003779 net->ipv6.ip6_prohibit_entry->rt6i_idev = in6_dev_get(dev);
Changli Gaod8d1f302010-06-10 23:31:35 -07003780 net->ipv6.ip6_blk_hole_entry->dst.dev = dev;
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003781 net->ipv6.ip6_blk_hole_entry->rt6i_idev = in6_dev_get(dev);
3782#endif
WANG Cong242d3a42017-05-08 10:12:13 -07003783 } else if (event == NETDEV_UNREGISTER) {
3784 in6_dev_put(net->ipv6.ip6_null_entry->rt6i_idev);
3785#ifdef CONFIG_IPV6_MULTIPLE_TABLES
3786 in6_dev_put(net->ipv6.ip6_prohibit_entry->rt6i_idev);
3787 in6_dev_put(net->ipv6.ip6_blk_hole_entry->rt6i_idev);
3788#endif
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003789 }
3790
3791 return NOTIFY_OK;
3792}
3793
Linus Torvalds1da177e2005-04-16 15:20:36 -07003794/*
3795 * /proc
3796 */
3797
3798#ifdef CONFIG_PROC_FS
3799
Alexey Dobriyan33120b32007-11-06 05:27:11 -08003800static const struct file_operations ipv6_route_proc_fops = {
3801 .owner = THIS_MODULE,
3802 .open = ipv6_route_open,
3803 .read = seq_read,
3804 .llseek = seq_lseek,
Hannes Frederic Sowa8d2ca1d2013-09-21 16:55:59 +02003805 .release = seq_release_net,
Alexey Dobriyan33120b32007-11-06 05:27:11 -08003806};
3807
Linus Torvalds1da177e2005-04-16 15:20:36 -07003808static int rt6_stats_seq_show(struct seq_file *seq, void *v)
3809{
Daniel Lezcano69ddb802008-03-04 13:46:23 -08003810 struct net *net = (struct net *)seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003811 seq_printf(seq, "%04x %04x %04x %04x %04x %04x %04x\n",
Daniel Lezcano69ddb802008-03-04 13:46:23 -08003812 net->ipv6.rt6_stats->fib_nodes,
3813 net->ipv6.rt6_stats->fib_route_nodes,
3814 net->ipv6.rt6_stats->fib_rt_alloc,
3815 net->ipv6.rt6_stats->fib_rt_entries,
3816 net->ipv6.rt6_stats->fib_rt_cache,
Eric Dumazetfc66f952010-10-08 06:37:34 +00003817 dst_entries_get_slow(&net->ipv6.ip6_dst_ops),
Daniel Lezcano69ddb802008-03-04 13:46:23 -08003818 net->ipv6.rt6_stats->fib_discarded_routes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003819
3820 return 0;
3821}
3822
3823static int rt6_stats_seq_open(struct inode *inode, struct file *file)
3824{
Pavel Emelyanovde05c552008-07-18 04:07:21 -07003825 return single_open_net(inode, file, rt6_stats_seq_show);
Daniel Lezcano69ddb802008-03-04 13:46:23 -08003826}
3827
Arjan van de Ven9a321442007-02-12 00:55:35 -08003828static const struct file_operations rt6_stats_seq_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003829 .owner = THIS_MODULE,
3830 .open = rt6_stats_seq_open,
3831 .read = seq_read,
3832 .llseek = seq_lseek,
Pavel Emelyanovb6fcbdb2008-07-18 04:07:44 -07003833 .release = single_release_net,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003834};
3835#endif /* CONFIG_PROC_FS */
3836
3837#ifdef CONFIG_SYSCTL
3838
Linus Torvalds1da177e2005-04-16 15:20:36 -07003839static
Joe Perchesfe2c6332013-06-11 23:04:25 -07003840int ipv6_sysctl_rtcache_flush(struct ctl_table *ctl, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003841 void __user *buffer, size_t *lenp, loff_t *ppos)
3842{
Lucian Adrian Grijincuc486da32011-02-24 19:48:03 +00003843 struct net *net;
3844 int delay;
3845 if (!write)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003846 return -EINVAL;
Lucian Adrian Grijincuc486da32011-02-24 19:48:03 +00003847
3848 net = (struct net *)ctl->extra1;
3849 delay = net->ipv6.sysctl.flush_delay;
3850 proc_dointvec(ctl, write, buffer, lenp, ppos);
Michal Kubeček2ac3ac82013-08-01 10:04:14 +02003851 fib6_run_gc(delay <= 0 ? 0 : (unsigned long)delay, net, delay > 0);
Lucian Adrian Grijincuc486da32011-02-24 19:48:03 +00003852 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003853}
3854
Joe Perchesfe2c6332013-06-11 23:04:25 -07003855struct ctl_table ipv6_route_table_template[] = {
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003856 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003857 .procname = "flush",
Daniel Lezcano49905092008-01-10 03:01:01 -08003858 .data = &init_net.ipv6.sysctl.flush_delay,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003859 .maxlen = sizeof(int),
Dave Jones89c8b3a12005-04-28 12:11:49 -07003860 .mode = 0200,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08003861 .proc_handler = ipv6_sysctl_rtcache_flush
Linus Torvalds1da177e2005-04-16 15:20:36 -07003862 },
3863 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003864 .procname = "gc_thresh",
Daniel Lezcano9a7ec3a2008-03-04 13:48:53 -08003865 .data = &ip6_dst_ops_template.gc_thresh,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003866 .maxlen = sizeof(int),
3867 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08003868 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003869 },
3870 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003871 .procname = "max_size",
Daniel Lezcano49905092008-01-10 03:01:01 -08003872 .data = &init_net.ipv6.sysctl.ip6_rt_max_size,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003873 .maxlen = sizeof(int),
3874 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08003875 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003876 },
3877 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003878 .procname = "gc_min_interval",
Daniel Lezcano49905092008-01-10 03:01:01 -08003879 .data = &init_net.ipv6.sysctl.ip6_rt_gc_min_interval,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003880 .maxlen = sizeof(int),
3881 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08003882 .proc_handler = proc_dointvec_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003883 },
3884 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003885 .procname = "gc_timeout",
Daniel Lezcano49905092008-01-10 03:01:01 -08003886 .data = &init_net.ipv6.sysctl.ip6_rt_gc_timeout,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003887 .maxlen = sizeof(int),
3888 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08003889 .proc_handler = proc_dointvec_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003890 },
3891 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003892 .procname = "gc_interval",
Daniel Lezcano49905092008-01-10 03:01:01 -08003893 .data = &init_net.ipv6.sysctl.ip6_rt_gc_interval,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003894 .maxlen = sizeof(int),
3895 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08003896 .proc_handler = proc_dointvec_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003897 },
3898 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003899 .procname = "gc_elasticity",
Daniel Lezcano49905092008-01-10 03:01:01 -08003900 .data = &init_net.ipv6.sysctl.ip6_rt_gc_elasticity,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003901 .maxlen = sizeof(int),
3902 .mode = 0644,
Min Zhangf3d3f612010-08-14 22:42:51 -07003903 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003904 },
3905 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003906 .procname = "mtu_expires",
Daniel Lezcano49905092008-01-10 03:01:01 -08003907 .data = &init_net.ipv6.sysctl.ip6_rt_mtu_expires,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003908 .maxlen = sizeof(int),
3909 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08003910 .proc_handler = proc_dointvec_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003911 },
3912 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003913 .procname = "min_adv_mss",
Daniel Lezcano49905092008-01-10 03:01:01 -08003914 .data = &init_net.ipv6.sysctl.ip6_rt_min_advmss,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003915 .maxlen = sizeof(int),
3916 .mode = 0644,
Min Zhangf3d3f612010-08-14 22:42:51 -07003917 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003918 },
3919 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003920 .procname = "gc_min_interval_ms",
Daniel Lezcano49905092008-01-10 03:01:01 -08003921 .data = &init_net.ipv6.sysctl.ip6_rt_gc_min_interval,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003922 .maxlen = sizeof(int),
3923 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08003924 .proc_handler = proc_dointvec_ms_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003925 },
Eric W. Biedermanf8572d82009-11-05 13:32:03 -08003926 { }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003927};
3928
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00003929struct ctl_table * __net_init ipv6_route_sysctl_init(struct net *net)
Daniel Lezcano760f2d02008-01-10 02:53:43 -08003930{
3931 struct ctl_table *table;
3932
3933 table = kmemdup(ipv6_route_table_template,
3934 sizeof(ipv6_route_table_template),
3935 GFP_KERNEL);
YOSHIFUJI Hideaki5ee09102008-02-28 00:24:28 +09003936
3937 if (table) {
3938 table[0].data = &net->ipv6.sysctl.flush_delay;
Lucian Adrian Grijincuc486da32011-02-24 19:48:03 +00003939 table[0].extra1 = net;
Alexey Dobriyan86393e52009-08-29 01:34:49 +00003940 table[1].data = &net->ipv6.ip6_dst_ops.gc_thresh;
YOSHIFUJI Hideaki5ee09102008-02-28 00:24:28 +09003941 table[2].data = &net->ipv6.sysctl.ip6_rt_max_size;
3942 table[3].data = &net->ipv6.sysctl.ip6_rt_gc_min_interval;
3943 table[4].data = &net->ipv6.sysctl.ip6_rt_gc_timeout;
3944 table[5].data = &net->ipv6.sysctl.ip6_rt_gc_interval;
3945 table[6].data = &net->ipv6.sysctl.ip6_rt_gc_elasticity;
3946 table[7].data = &net->ipv6.sysctl.ip6_rt_mtu_expires;
3947 table[8].data = &net->ipv6.sysctl.ip6_rt_min_advmss;
Alexey Dobriyan9c69fab2009-12-18 20:11:03 -08003948 table[9].data = &net->ipv6.sysctl.ip6_rt_gc_min_interval;
Eric W. Biederman464dc802012-11-16 03:02:59 +00003949
3950 /* Don't export sysctls to unprivileged users */
3951 if (net->user_ns != &init_user_ns)
3952 table[0].procname = NULL;
YOSHIFUJI Hideaki5ee09102008-02-28 00:24:28 +09003953 }
3954
Daniel Lezcano760f2d02008-01-10 02:53:43 -08003955 return table;
3956}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003957#endif
3958
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00003959static int __net_init ip6_route_net_init(struct net *net)
Daniel Lezcanocdb18762008-03-04 13:45:33 -08003960{
Pavel Emelyanov633d424b2008-04-21 14:25:23 -07003961 int ret = -ENOMEM;
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003962
Alexey Dobriyan86393e52009-08-29 01:34:49 +00003963 memcpy(&net->ipv6.ip6_dst_ops, &ip6_dst_ops_template,
3964 sizeof(net->ipv6.ip6_dst_ops));
Benjamin Theryf2fc6a52008-03-04 13:49:23 -08003965
Eric Dumazetfc66f952010-10-08 06:37:34 +00003966 if (dst_entries_init(&net->ipv6.ip6_dst_ops) < 0)
3967 goto out_ip6_dst_ops;
3968
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003969 net->ipv6.ip6_null_entry = kmemdup(&ip6_null_entry_template,
3970 sizeof(*net->ipv6.ip6_null_entry),
3971 GFP_KERNEL);
3972 if (!net->ipv6.ip6_null_entry)
Eric Dumazetfc66f952010-10-08 06:37:34 +00003973 goto out_ip6_dst_entries;
Changli Gaod8d1f302010-06-10 23:31:35 -07003974 net->ipv6.ip6_null_entry->dst.path =
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003975 (struct dst_entry *)net->ipv6.ip6_null_entry;
Changli Gaod8d1f302010-06-10 23:31:35 -07003976 net->ipv6.ip6_null_entry->dst.ops = &net->ipv6.ip6_dst_ops;
David S. Miller62fa8a82011-01-26 20:51:05 -08003977 dst_init_metrics(&net->ipv6.ip6_null_entry->dst,
3978 ip6_template_metrics, true);
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003979
3980#ifdef CONFIG_IPV6_MULTIPLE_TABLES
3981 net->ipv6.ip6_prohibit_entry = kmemdup(&ip6_prohibit_entry_template,
3982 sizeof(*net->ipv6.ip6_prohibit_entry),
3983 GFP_KERNEL);
Peter Zijlstra68fffc62008-10-07 14:12:10 -07003984 if (!net->ipv6.ip6_prohibit_entry)
3985 goto out_ip6_null_entry;
Changli Gaod8d1f302010-06-10 23:31:35 -07003986 net->ipv6.ip6_prohibit_entry->dst.path =
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003987 (struct dst_entry *)net->ipv6.ip6_prohibit_entry;
Changli Gaod8d1f302010-06-10 23:31:35 -07003988 net->ipv6.ip6_prohibit_entry->dst.ops = &net->ipv6.ip6_dst_ops;
David S. Miller62fa8a82011-01-26 20:51:05 -08003989 dst_init_metrics(&net->ipv6.ip6_prohibit_entry->dst,
3990 ip6_template_metrics, true);
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003991
3992 net->ipv6.ip6_blk_hole_entry = kmemdup(&ip6_blk_hole_entry_template,
3993 sizeof(*net->ipv6.ip6_blk_hole_entry),
3994 GFP_KERNEL);
Peter Zijlstra68fffc62008-10-07 14:12:10 -07003995 if (!net->ipv6.ip6_blk_hole_entry)
3996 goto out_ip6_prohibit_entry;
Changli Gaod8d1f302010-06-10 23:31:35 -07003997 net->ipv6.ip6_blk_hole_entry->dst.path =
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003998 (struct dst_entry *)net->ipv6.ip6_blk_hole_entry;
Changli Gaod8d1f302010-06-10 23:31:35 -07003999 net->ipv6.ip6_blk_hole_entry->dst.ops = &net->ipv6.ip6_dst_ops;
David S. Miller62fa8a82011-01-26 20:51:05 -08004000 dst_init_metrics(&net->ipv6.ip6_blk_hole_entry->dst,
4001 ip6_template_metrics, true);
Daniel Lezcano8ed67782008-03-04 13:48:30 -08004002#endif
4003
Peter Zijlstrab339a47c2008-10-07 14:15:00 -07004004 net->ipv6.sysctl.flush_delay = 0;
4005 net->ipv6.sysctl.ip6_rt_max_size = 4096;
4006 net->ipv6.sysctl.ip6_rt_gc_min_interval = HZ / 2;
4007 net->ipv6.sysctl.ip6_rt_gc_timeout = 60*HZ;
4008 net->ipv6.sysctl.ip6_rt_gc_interval = 30*HZ;
4009 net->ipv6.sysctl.ip6_rt_gc_elasticity = 9;
4010 net->ipv6.sysctl.ip6_rt_mtu_expires = 10*60*HZ;
4011 net->ipv6.sysctl.ip6_rt_min_advmss = IPV6_MIN_MTU - 20 - 40;
4012
Benjamin Thery6891a342008-03-04 13:49:47 -08004013 net->ipv6.ip6_rt_gc_expire = 30*HZ;
4014
Daniel Lezcano8ed67782008-03-04 13:48:30 -08004015 ret = 0;
4016out:
4017 return ret;
Benjamin Theryf2fc6a52008-03-04 13:49:23 -08004018
Peter Zijlstra68fffc62008-10-07 14:12:10 -07004019#ifdef CONFIG_IPV6_MULTIPLE_TABLES
4020out_ip6_prohibit_entry:
4021 kfree(net->ipv6.ip6_prohibit_entry);
4022out_ip6_null_entry:
4023 kfree(net->ipv6.ip6_null_entry);
4024#endif
Eric Dumazetfc66f952010-10-08 06:37:34 +00004025out_ip6_dst_entries:
4026 dst_entries_destroy(&net->ipv6.ip6_dst_ops);
Benjamin Theryf2fc6a52008-03-04 13:49:23 -08004027out_ip6_dst_ops:
Benjamin Theryf2fc6a52008-03-04 13:49:23 -08004028 goto out;
Daniel Lezcanocdb18762008-03-04 13:45:33 -08004029}
4030
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00004031static void __net_exit ip6_route_net_exit(struct net *net)
Daniel Lezcanocdb18762008-03-04 13:45:33 -08004032{
Daniel Lezcano8ed67782008-03-04 13:48:30 -08004033 kfree(net->ipv6.ip6_null_entry);
4034#ifdef CONFIG_IPV6_MULTIPLE_TABLES
4035 kfree(net->ipv6.ip6_prohibit_entry);
4036 kfree(net->ipv6.ip6_blk_hole_entry);
4037#endif
Xiaotian Feng41bb78b2010-11-02 16:11:05 +00004038 dst_entries_destroy(&net->ipv6.ip6_dst_ops);
Daniel Lezcanocdb18762008-03-04 13:45:33 -08004039}
4040
Thomas Grafd1896342012-06-18 12:08:33 +00004041static int __net_init ip6_route_net_init_late(struct net *net)
4042{
4043#ifdef CONFIG_PROC_FS
Gao fengd4beaa62013-02-18 01:34:54 +00004044 proc_create("ipv6_route", 0, net->proc_net, &ipv6_route_proc_fops);
4045 proc_create("rt6_stats", S_IRUGO, net->proc_net, &rt6_stats_seq_fops);
Thomas Grafd1896342012-06-18 12:08:33 +00004046#endif
4047 return 0;
4048}
4049
4050static void __net_exit ip6_route_net_exit_late(struct net *net)
4051{
4052#ifdef CONFIG_PROC_FS
Gao fengece31ff2013-02-18 01:34:56 +00004053 remove_proc_entry("ipv6_route", net->proc_net);
4054 remove_proc_entry("rt6_stats", net->proc_net);
Thomas Grafd1896342012-06-18 12:08:33 +00004055#endif
4056}
4057
Daniel Lezcanocdb18762008-03-04 13:45:33 -08004058static struct pernet_operations ip6_route_net_ops = {
4059 .init = ip6_route_net_init,
4060 .exit = ip6_route_net_exit,
4061};
4062
David S. Millerc3426b42012-06-09 16:27:05 -07004063static int __net_init ipv6_inetpeer_init(struct net *net)
4064{
4065 struct inet_peer_base *bp = kmalloc(sizeof(*bp), GFP_KERNEL);
4066
4067 if (!bp)
4068 return -ENOMEM;
4069 inet_peer_base_init(bp);
4070 net->ipv6.peers = bp;
4071 return 0;
4072}
4073
4074static void __net_exit ipv6_inetpeer_exit(struct net *net)
4075{
4076 struct inet_peer_base *bp = net->ipv6.peers;
4077
4078 net->ipv6.peers = NULL;
David S. Miller56a6b242012-06-09 16:32:41 -07004079 inetpeer_invalidate_tree(bp);
David S. Millerc3426b42012-06-09 16:27:05 -07004080 kfree(bp);
4081}
4082
David S. Miller2b823f72012-06-09 19:00:16 -07004083static struct pernet_operations ipv6_inetpeer_ops = {
David S. Millerc3426b42012-06-09 16:27:05 -07004084 .init = ipv6_inetpeer_init,
4085 .exit = ipv6_inetpeer_exit,
4086};
4087
Thomas Grafd1896342012-06-18 12:08:33 +00004088static struct pernet_operations ip6_route_net_late_ops = {
4089 .init = ip6_route_net_init_late,
4090 .exit = ip6_route_net_exit_late,
4091};
4092
Daniel Lezcano8ed67782008-03-04 13:48:30 -08004093static struct notifier_block ip6_route_dev_notifier = {
4094 .notifier_call = ip6_route_dev_notify,
WANG Cong242d3a42017-05-08 10:12:13 -07004095 .priority = ADDRCONF_NOTIFY_PRIORITY - 10,
Daniel Lezcano8ed67782008-03-04 13:48:30 -08004096};
4097
WANG Cong2f460932017-05-03 22:07:31 -07004098void __init ip6_route_init_special_entries(void)
4099{
4100 /* Registering of the loopback is done before this portion of code,
4101 * the loopback reference in rt6_info will not be taken, do it
4102 * manually for init_net */
4103 init_net.ipv6.ip6_null_entry->dst.dev = init_net.loopback_dev;
4104 init_net.ipv6.ip6_null_entry->rt6i_idev = in6_dev_get(init_net.loopback_dev);
4105 #ifdef CONFIG_IPV6_MULTIPLE_TABLES
4106 init_net.ipv6.ip6_prohibit_entry->dst.dev = init_net.loopback_dev;
4107 init_net.ipv6.ip6_prohibit_entry->rt6i_idev = in6_dev_get(init_net.loopback_dev);
4108 init_net.ipv6.ip6_blk_hole_entry->dst.dev = init_net.loopback_dev;
4109 init_net.ipv6.ip6_blk_hole_entry->rt6i_idev = in6_dev_get(init_net.loopback_dev);
4110 #endif
4111}
4112
Daniel Lezcano433d49c2007-12-07 00:43:48 -08004113int __init ip6_route_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004114{
Daniel Lezcano433d49c2007-12-07 00:43:48 -08004115 int ret;
Martin KaFai Lau8d0b94a2015-05-22 20:56:04 -07004116 int cpu;
Daniel Lezcano433d49c2007-12-07 00:43:48 -08004117
Daniel Lezcano9a7ec3a2008-03-04 13:48:53 -08004118 ret = -ENOMEM;
4119 ip6_dst_ops_template.kmem_cachep =
4120 kmem_cache_create("ip6_dst_cache", sizeof(struct rt6_info), 0,
4121 SLAB_HWCACHE_ALIGN, NULL);
4122 if (!ip6_dst_ops_template.kmem_cachep)
Fernando Carrijoc19a28e2009-01-07 18:09:08 -08004123 goto out;
David S. Miller14e50e52007-05-24 18:17:54 -07004124
Eric Dumazetfc66f952010-10-08 06:37:34 +00004125 ret = dst_entries_init(&ip6_dst_blackhole_ops);
Daniel Lezcano8ed67782008-03-04 13:48:30 -08004126 if (ret)
Daniel Lezcanobdb32892008-03-04 13:48:10 -08004127 goto out_kmem_cache;
Daniel Lezcanobdb32892008-03-04 13:48:10 -08004128
David S. Millerc3426b42012-06-09 16:27:05 -07004129 ret = register_pernet_subsys(&ipv6_inetpeer_ops);
4130 if (ret)
David S. Millere8803b62012-06-16 01:12:19 -07004131 goto out_dst_entries;
Thomas Graf2a0c4512012-06-14 23:00:17 +00004132
David S. Miller7e52b332012-06-15 15:51:55 -07004133 ret = register_pernet_subsys(&ip6_route_net_ops);
4134 if (ret)
4135 goto out_register_inetpeer;
David S. Millerc3426b42012-06-09 16:27:05 -07004136
Arnaud Ebalard5dc121e2008-10-01 02:37:56 -07004137 ip6_dst_blackhole_ops.kmem_cachep = ip6_dst_ops_template.kmem_cachep;
4138
David S. Millere8803b62012-06-16 01:12:19 -07004139 ret = fib6_init();
Daniel Lezcano433d49c2007-12-07 00:43:48 -08004140 if (ret)
Daniel Lezcano8ed67782008-03-04 13:48:30 -08004141 goto out_register_subsys;
Daniel Lezcano433d49c2007-12-07 00:43:48 -08004142
Daniel Lezcano433d49c2007-12-07 00:43:48 -08004143 ret = xfrm6_init();
4144 if (ret)
David S. Millere8803b62012-06-16 01:12:19 -07004145 goto out_fib6_init;
Daniel Lezcanoc35b7e72007-12-08 00:14:11 -08004146
Daniel Lezcano433d49c2007-12-07 00:43:48 -08004147 ret = fib6_rules_init();
4148 if (ret)
4149 goto xfrm6_init;
Daniel Lezcano7e5449c2007-12-08 00:14:54 -08004150
Thomas Grafd1896342012-06-18 12:08:33 +00004151 ret = register_pernet_subsys(&ip6_route_net_late_ops);
4152 if (ret)
4153 goto fib6_rules_init;
4154
Daniel Lezcano433d49c2007-12-07 00:43:48 -08004155 ret = -ENOBUFS;
Greg Rosec7ac8672011-06-10 01:27:09 +00004156 if (__rtnl_register(PF_INET6, RTM_NEWROUTE, inet6_rtm_newroute, NULL, NULL) ||
4157 __rtnl_register(PF_INET6, RTM_DELROUTE, inet6_rtm_delroute, NULL, NULL) ||
4158 __rtnl_register(PF_INET6, RTM_GETROUTE, inet6_rtm_getroute, NULL, NULL))
Thomas Grafd1896342012-06-18 12:08:33 +00004159 goto out_register_late_subsys;
Daniel Lezcano433d49c2007-12-07 00:43:48 -08004160
Daniel Lezcano8ed67782008-03-04 13:48:30 -08004161 ret = register_netdevice_notifier(&ip6_route_dev_notifier);
Daniel Lezcanocdb18762008-03-04 13:45:33 -08004162 if (ret)
Thomas Grafd1896342012-06-18 12:08:33 +00004163 goto out_register_late_subsys;
Daniel Lezcano8ed67782008-03-04 13:48:30 -08004164
Martin KaFai Lau8d0b94a2015-05-22 20:56:04 -07004165 for_each_possible_cpu(cpu) {
4166 struct uncached_list *ul = per_cpu_ptr(&rt6_uncached_list, cpu);
4167
4168 INIT_LIST_HEAD(&ul->head);
4169 spin_lock_init(&ul->lock);
4170 }
4171
Daniel Lezcano433d49c2007-12-07 00:43:48 -08004172out:
4173 return ret;
4174
Thomas Grafd1896342012-06-18 12:08:33 +00004175out_register_late_subsys:
4176 unregister_pernet_subsys(&ip6_route_net_late_ops);
Daniel Lezcano433d49c2007-12-07 00:43:48 -08004177fib6_rules_init:
Daniel Lezcano433d49c2007-12-07 00:43:48 -08004178 fib6_rules_cleanup();
4179xfrm6_init:
Daniel Lezcano433d49c2007-12-07 00:43:48 -08004180 xfrm6_fini();
Thomas Graf2a0c4512012-06-14 23:00:17 +00004181out_fib6_init:
4182 fib6_gc_cleanup();
Daniel Lezcano8ed67782008-03-04 13:48:30 -08004183out_register_subsys:
4184 unregister_pernet_subsys(&ip6_route_net_ops);
David S. Miller7e52b332012-06-15 15:51:55 -07004185out_register_inetpeer:
4186 unregister_pernet_subsys(&ipv6_inetpeer_ops);
Eric Dumazetfc66f952010-10-08 06:37:34 +00004187out_dst_entries:
4188 dst_entries_destroy(&ip6_dst_blackhole_ops);
Daniel Lezcano433d49c2007-12-07 00:43:48 -08004189out_kmem_cache:
Benjamin Theryf2fc6a52008-03-04 13:49:23 -08004190 kmem_cache_destroy(ip6_dst_ops_template.kmem_cachep);
Daniel Lezcano433d49c2007-12-07 00:43:48 -08004191 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004192}
4193
4194void ip6_route_cleanup(void)
4195{
Daniel Lezcano8ed67782008-03-04 13:48:30 -08004196 unregister_netdevice_notifier(&ip6_route_dev_notifier);
Thomas Grafd1896342012-06-18 12:08:33 +00004197 unregister_pernet_subsys(&ip6_route_net_late_ops);
Thomas Graf101367c2006-08-04 03:39:02 -07004198 fib6_rules_cleanup();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004199 xfrm6_fini();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004200 fib6_gc_cleanup();
David S. Millerc3426b42012-06-09 16:27:05 -07004201 unregister_pernet_subsys(&ipv6_inetpeer_ops);
Daniel Lezcano8ed67782008-03-04 13:48:30 -08004202 unregister_pernet_subsys(&ip6_route_net_ops);
Xiaotian Feng41bb78b2010-11-02 16:11:05 +00004203 dst_entries_destroy(&ip6_dst_blackhole_ops);
Benjamin Theryf2fc6a52008-03-04 13:49:23 -08004204 kmem_cache_destroy(ip6_dst_ops_template.kmem_cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004205}