blob: 26cc9f483b6d282f0a665bfc4c2c206da7981921 [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
Martin KaFai Lau8d0b94a2015-05-22 20:56:04 -0700131 rt->rt6i_uncached_list = ul;
132
133 spin_lock_bh(&ul->lock);
134 list_add_tail(&rt->rt6i_uncached, &ul->head);
135 spin_unlock_bh(&ul->lock);
136}
137
138static void rt6_uncached_list_del(struct rt6_info *rt)
139{
140 if (!list_empty(&rt->rt6i_uncached)) {
141 struct uncached_list *ul = rt->rt6i_uncached_list;
142
143 spin_lock_bh(&ul->lock);
144 list_del(&rt->rt6i_uncached);
145 spin_unlock_bh(&ul->lock);
146 }
147}
148
149static void rt6_uncached_list_flush_dev(struct net *net, struct net_device *dev)
150{
151 struct net_device *loopback_dev = net->loopback_dev;
152 int cpu;
153
Eric W. Biedermane332bc62015-10-12 11:02:08 -0500154 if (dev == loopback_dev)
155 return;
156
Martin KaFai Lau8d0b94a2015-05-22 20:56:04 -0700157 for_each_possible_cpu(cpu) {
158 struct uncached_list *ul = per_cpu_ptr(&rt6_uncached_list, cpu);
159 struct rt6_info *rt;
160
161 spin_lock_bh(&ul->lock);
162 list_for_each_entry(rt, &ul->head, rt6i_uncached) {
163 struct inet6_dev *rt_idev = rt->rt6i_idev;
164 struct net_device *rt_dev = rt->dst.dev;
165
Eric W. Biedermane332bc62015-10-12 11:02:08 -0500166 if (rt_idev->dev == dev) {
Martin KaFai Lau8d0b94a2015-05-22 20:56:04 -0700167 rt->rt6i_idev = in6_dev_get(loopback_dev);
168 in6_dev_put(rt_idev);
169 }
170
Eric W. Biedermane332bc62015-10-12 11:02:08 -0500171 if (rt_dev == dev) {
Martin KaFai Lau8d0b94a2015-05-22 20:56:04 -0700172 rt->dst.dev = loopback_dev;
173 dev_hold(rt->dst.dev);
174 dev_put(rt_dev);
175 }
176 }
177 spin_unlock_bh(&ul->lock);
178 }
179}
180
Martin KaFai Laud52d3992015-05-22 20:56:06 -0700181static u32 *rt6_pcpu_cow_metrics(struct rt6_info *rt)
182{
183 return dst_metrics_write_ptr(rt->dst.from);
184}
185
David S. Miller06582542011-01-27 14:58:42 -0800186static u32 *ipv6_cow_metrics(struct dst_entry *dst, unsigned long old)
187{
Martin KaFai Lau4b32b5a2015-04-28 13:03:06 -0700188 struct rt6_info *rt = (struct rt6_info *)dst;
David S. Miller06582542011-01-27 14:58:42 -0800189
Martin KaFai Laud52d3992015-05-22 20:56:06 -0700190 if (rt->rt6i_flags & RTF_PCPU)
191 return rt6_pcpu_cow_metrics(rt);
192 else if (rt->rt6i_flags & RTF_CACHE)
Martin KaFai Lau4b32b5a2015-04-28 13:03:06 -0700193 return NULL;
194 else
Martin KaFai Lau3b471172015-02-12 16:14:08 -0800195 return dst_cow_metrics_generic(dst, old);
David S. Miller06582542011-01-27 14:58:42 -0800196}
197
David S. Millerf894cbf2012-07-02 21:52:24 -0700198static inline const void *choose_neigh_daddr(struct rt6_info *rt,
199 struct sk_buff *skb,
200 const void *daddr)
David S. Miller39232972012-01-26 15:22:32 -0500201{
202 struct in6_addr *p = &rt->rt6i_gateway;
203
David S. Millera7563f32012-01-26 16:29:16 -0500204 if (!ipv6_addr_any(p))
David S. Miller39232972012-01-26 15:22:32 -0500205 return (const void *) p;
David S. Millerf894cbf2012-07-02 21:52:24 -0700206 else if (skb)
207 return &ipv6_hdr(skb)->daddr;
David S. Miller39232972012-01-26 15:22:32 -0500208 return daddr;
209}
210
David S. Millerf894cbf2012-07-02 21:52:24 -0700211static struct neighbour *ip6_neigh_lookup(const struct dst_entry *dst,
212 struct sk_buff *skb,
213 const void *daddr)
David S. Millerd3aaeb32011-07-18 00:40:17 -0700214{
David S. Miller39232972012-01-26 15:22:32 -0500215 struct rt6_info *rt = (struct rt6_info *) dst;
216 struct neighbour *n;
217
David S. Millerf894cbf2012-07-02 21:52:24 -0700218 daddr = choose_neigh_daddr(rt, skb, daddr);
YOSHIFUJI Hideaki / 吉藤英明8e022ee2013-01-17 12:53:09 +0000219 n = __ipv6_neigh_lookup(dst->dev, daddr);
David S. Millerf83c7792011-12-28 15:41:23 -0500220 if (n)
221 return n;
222 return neigh_create(&nd_tbl, daddr, dst->dev);
223}
224
Julian Anastasov63fca652017-02-06 23:14:15 +0200225static void ip6_confirm_neigh(const struct dst_entry *dst, const void *daddr)
226{
227 struct net_device *dev = dst->dev;
228 struct rt6_info *rt = (struct rt6_info *)dst;
229
230 daddr = choose_neigh_daddr(rt, NULL, daddr);
231 if (!daddr)
232 return;
233 if (dev->flags & (IFF_NOARP | IFF_LOOPBACK))
234 return;
235 if (ipv6_addr_is_multicast((const struct in6_addr *)daddr))
236 return;
237 __ipv6_confirm_neigh(dev, daddr);
238}
239
Daniel Lezcano9a7ec3a2008-03-04 13:48:53 -0800240static struct dst_ops ip6_dst_ops_template = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 .family = AF_INET6,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 .gc = ip6_dst_gc,
243 .gc_thresh = 1024,
244 .check = ip6_dst_check,
David S. Miller0dbaee32010-12-13 12:52:14 -0800245 .default_advmss = ip6_default_advmss,
Steffen Klassertebb762f2011-11-23 02:12:51 +0000246 .mtu = ip6_mtu,
David S. Miller06582542011-01-27 14:58:42 -0800247 .cow_metrics = ipv6_cow_metrics,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 .destroy = ip6_dst_destroy,
249 .ifdown = ip6_dst_ifdown,
250 .negative_advice = ip6_negative_advice,
251 .link_failure = ip6_link_failure,
252 .update_pmtu = ip6_rt_update_pmtu,
David S. Miller6e157b62012-07-12 00:05:02 -0700253 .redirect = rt6_do_redirect,
Eric W. Biederman9f8955c2015-10-07 16:48:39 -0500254 .local_out = __ip6_local_out,
David S. Millerd3aaeb32011-07-18 00:40:17 -0700255 .neigh_lookup = ip6_neigh_lookup,
Julian Anastasov63fca652017-02-06 23:14:15 +0200256 .confirm_neigh = ip6_confirm_neigh,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257};
258
Steffen Klassertebb762f2011-11-23 02:12:51 +0000259static unsigned int ip6_blackhole_mtu(const struct dst_entry *dst)
Roland Dreierec831ea2011-01-31 13:16:00 -0800260{
Steffen Klassert618f9bc2011-11-23 02:13:31 +0000261 unsigned int mtu = dst_metric_raw(dst, RTAX_MTU);
262
263 return mtu ? : dst->dev->mtu;
Roland Dreierec831ea2011-01-31 13:16:00 -0800264}
265
David S. Miller6700c272012-07-17 03:29:28 -0700266static void ip6_rt_blackhole_update_pmtu(struct dst_entry *dst, struct sock *sk,
267 struct sk_buff *skb, u32 mtu)
David S. Miller14e50e52007-05-24 18:17:54 -0700268{
269}
270
David S. Miller6700c272012-07-17 03:29:28 -0700271static void ip6_rt_blackhole_redirect(struct dst_entry *dst, struct sock *sk,
272 struct sk_buff *skb)
David S. Millerb587ee32012-07-12 00:39:24 -0700273{
274}
275
David S. Miller14e50e52007-05-24 18:17:54 -0700276static struct dst_ops ip6_dst_blackhole_ops = {
277 .family = AF_INET6,
David S. Miller14e50e52007-05-24 18:17:54 -0700278 .destroy = ip6_dst_destroy,
279 .check = ip6_dst_check,
Steffen Klassertebb762f2011-11-23 02:12:51 +0000280 .mtu = ip6_blackhole_mtu,
Eric Dumazet214f45c2011-02-18 11:39:01 -0800281 .default_advmss = ip6_default_advmss,
David S. Miller14e50e52007-05-24 18:17:54 -0700282 .update_pmtu = ip6_rt_blackhole_update_pmtu,
David S. Millerb587ee32012-07-12 00:39:24 -0700283 .redirect = ip6_rt_blackhole_redirect,
Martin KaFai Lau0a1f5962015-10-15 16:39:58 -0700284 .cow_metrics = dst_cow_metrics_generic,
David S. Millerd3aaeb32011-07-18 00:40:17 -0700285 .neigh_lookup = ip6_neigh_lookup,
David S. Miller14e50e52007-05-24 18:17:54 -0700286};
287
David S. Miller62fa8a82011-01-26 20:51:05 -0800288static const u32 ip6_template_metrics[RTAX_MAX] = {
Li RongQing14edd872012-10-24 14:01:18 +0800289 [RTAX_HOPLIMIT - 1] = 0,
David S. Miller62fa8a82011-01-26 20:51:05 -0800290};
291
Eric Dumazetfb0af4c2012-09-11 21:47:51 +0000292static const struct rt6_info ip6_null_entry_template = {
Changli Gaod8d1f302010-06-10 23:31:35 -0700293 .dst = {
294 .__refcnt = ATOMIC_INIT(1),
295 .__use = 1,
Nicolas Dichtel2c20cbd2012-09-10 22:09:47 +0000296 .obsolete = DST_OBSOLETE_FORCE_CHK,
Changli Gaod8d1f302010-06-10 23:31:35 -0700297 .error = -ENETUNREACH,
Changli Gaod8d1f302010-06-10 23:31:35 -0700298 .input = ip6_pkt_discard,
299 .output = ip6_pkt_discard_out,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 },
301 .rt6i_flags = (RTF_REJECT | RTF_NONEXTHOP),
Jean-Mickael Guerin4f724272009-05-20 17:38:59 -0700302 .rt6i_protocol = RTPROT_KERNEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 .rt6i_metric = ~(u32) 0,
304 .rt6i_ref = ATOMIC_INIT(1),
305};
306
Thomas Graf101367c2006-08-04 03:39:02 -0700307#ifdef CONFIG_IPV6_MULTIPLE_TABLES
308
Eric Dumazetfb0af4c2012-09-11 21:47:51 +0000309static const struct rt6_info ip6_prohibit_entry_template = {
Changli Gaod8d1f302010-06-10 23:31:35 -0700310 .dst = {
311 .__refcnt = ATOMIC_INIT(1),
312 .__use = 1,
Nicolas Dichtel2c20cbd2012-09-10 22:09:47 +0000313 .obsolete = DST_OBSOLETE_FORCE_CHK,
Changli Gaod8d1f302010-06-10 23:31:35 -0700314 .error = -EACCES,
Changli Gaod8d1f302010-06-10 23:31:35 -0700315 .input = ip6_pkt_prohibit,
316 .output = ip6_pkt_prohibit_out,
Thomas Graf101367c2006-08-04 03:39:02 -0700317 },
318 .rt6i_flags = (RTF_REJECT | RTF_NONEXTHOP),
Jean-Mickael Guerin4f724272009-05-20 17:38:59 -0700319 .rt6i_protocol = RTPROT_KERNEL,
Thomas Graf101367c2006-08-04 03:39:02 -0700320 .rt6i_metric = ~(u32) 0,
321 .rt6i_ref = ATOMIC_INIT(1),
322};
323
Eric Dumazetfb0af4c2012-09-11 21:47:51 +0000324static const struct rt6_info ip6_blk_hole_entry_template = {
Changli Gaod8d1f302010-06-10 23:31:35 -0700325 .dst = {
326 .__refcnt = ATOMIC_INIT(1),
327 .__use = 1,
Nicolas Dichtel2c20cbd2012-09-10 22:09:47 +0000328 .obsolete = DST_OBSOLETE_FORCE_CHK,
Changli Gaod8d1f302010-06-10 23:31:35 -0700329 .error = -EINVAL,
Changli Gaod8d1f302010-06-10 23:31:35 -0700330 .input = dst_discard,
Eric W. Biedermanede20592015-10-07 16:48:47 -0500331 .output = dst_discard_out,
Thomas Graf101367c2006-08-04 03:39:02 -0700332 },
333 .rt6i_flags = (RTF_REJECT | RTF_NONEXTHOP),
Jean-Mickael Guerin4f724272009-05-20 17:38:59 -0700334 .rt6i_protocol = RTPROT_KERNEL,
Thomas Graf101367c2006-08-04 03:39:02 -0700335 .rt6i_metric = ~(u32) 0,
336 .rt6i_ref = ATOMIC_INIT(1),
337};
338
339#endif
340
Martin KaFai Lauebfa45f2015-10-15 16:39:57 -0700341static void rt6_info_init(struct rt6_info *rt)
342{
343 struct dst_entry *dst = &rt->dst;
344
345 memset(dst + 1, 0, sizeof(*rt) - sizeof(*dst));
346 INIT_LIST_HEAD(&rt->rt6i_siblings);
347 INIT_LIST_HEAD(&rt->rt6i_uncached);
348}
349
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350/* allocate dst with ip6_dst_ops */
Martin KaFai Laud52d3992015-05-22 20:56:06 -0700351static struct rt6_info *__ip6_dst_alloc(struct net *net,
352 struct net_device *dev,
Martin KaFai Lauad706862015-08-14 11:05:52 -0700353 int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354{
David S. Miller97bab732012-06-09 22:36:36 -0700355 struct rt6_info *rt = dst_alloc(&net->ipv6.ip6_dst_ops, dev,
Wei Wangb2a9c0e2017-06-17 10:42:41 -0700356 1, DST_OBSOLETE_FORCE_CHK, flags);
David S. Millercf911662011-04-28 14:31:47 -0700357
Martin KaFai Lauebfa45f2015-10-15 16:39:57 -0700358 if (rt)
359 rt6_info_init(rt);
Steffen Klassert81048912012-07-05 23:37:09 +0000360
David S. Millercf911662011-04-28 14:31:47 -0700361 return rt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362}
363
David Ahern9ab179d2016-04-07 11:10:06 -0700364struct rt6_info *ip6_dst_alloc(struct net *net,
365 struct net_device *dev,
366 int flags)
Martin KaFai Laud52d3992015-05-22 20:56:06 -0700367{
Martin KaFai Lauad706862015-08-14 11:05:52 -0700368 struct rt6_info *rt = __ip6_dst_alloc(net, dev, flags);
Martin KaFai Laud52d3992015-05-22 20:56:06 -0700369
370 if (rt) {
371 rt->rt6i_pcpu = alloc_percpu_gfp(struct rt6_info *, GFP_ATOMIC);
372 if (rt->rt6i_pcpu) {
373 int cpu;
374
375 for_each_possible_cpu(cpu) {
376 struct rt6_info **p;
377
378 p = per_cpu_ptr(rt->rt6i_pcpu, cpu);
379 /* no one shares rt */
380 *p = NULL;
381 }
382 } else {
Wei Wang587fea72017-06-17 10:42:36 -0700383 dst_release_immediate(&rt->dst);
Martin KaFai Laud52d3992015-05-22 20:56:06 -0700384 return NULL;
385 }
386 }
387
388 return rt;
389}
David Ahern9ab179d2016-04-07 11:10:06 -0700390EXPORT_SYMBOL(ip6_dst_alloc);
Martin KaFai Laud52d3992015-05-22 20:56:06 -0700391
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392static void ip6_dst_destroy(struct dst_entry *dst)
393{
394 struct rt6_info *rt = (struct rt6_info *)dst;
YOSHIFUJI Hideaki / 吉藤英明ecd98832013-02-20 00:29:08 +0000395 struct dst_entry *from = dst->from;
Martin KaFai Lau8d0b94a2015-05-22 20:56:04 -0700396 struct inet6_dev *idev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397
Martin KaFai Lau4b32b5a2015-04-28 13:03:06 -0700398 dst_destroy_metrics_generic(dst);
Markus Elfring87775312015-07-02 16:30:24 +0200399 free_percpu(rt->rt6i_pcpu);
Martin KaFai Lau8d0b94a2015-05-22 20:56:04 -0700400 rt6_uncached_list_del(rt);
401
402 idev = rt->rt6i_idev;
David S. Miller38308472011-12-03 18:02:47 -0500403 if (idev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 rt->rt6i_idev = NULL;
405 in6_dev_put(idev);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900406 }
Gao feng1716a962012-04-06 00:13:10 +0000407
YOSHIFUJI Hideaki / 吉藤英明ecd98832013-02-20 00:29:08 +0000408 dst->from = NULL;
409 dst_release(from);
David S. Millerb3419362010-11-30 12:27:11 -0800410}
411
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412static void ip6_dst_ifdown(struct dst_entry *dst, struct net_device *dev,
413 int how)
414{
415 struct rt6_info *rt = (struct rt6_info *)dst;
416 struct inet6_dev *idev = rt->rt6i_idev;
Denis V. Lunev5a3e55d2007-12-07 00:38:10 -0800417 struct net_device *loopback_dev =
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900418 dev_net(dev)->loopback_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419
Wei Wange5645f52017-08-14 10:44:59 -0700420 if (idev && idev->dev != loopback_dev) {
421 struct inet6_dev *loopback_idev = in6_dev_get(loopback_dev);
422 if (loopback_idev) {
423 rt->rt6i_idev = loopback_idev;
424 in6_dev_put(idev);
David S. Miller97cac082012-07-02 22:43:47 -0700425 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 }
427}
428
Martin KaFai Lau5973fb12015-11-11 11:51:07 -0800429static bool __rt6_check_expired(const struct rt6_info *rt)
430{
431 if (rt->rt6i_flags & RTF_EXPIRES)
432 return time_after(jiffies, rt->dst.expires);
433 else
434 return false;
435}
436
Eric Dumazeta50feda2012-05-18 18:57:34 +0000437static bool rt6_check_expired(const struct rt6_info *rt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438{
Gao feng1716a962012-04-06 00:13:10 +0000439 if (rt->rt6i_flags & RTF_EXPIRES) {
440 if (time_after(jiffies, rt->dst.expires))
Eric Dumazeta50feda2012-05-18 18:57:34 +0000441 return true;
Gao feng1716a962012-04-06 00:13:10 +0000442 } else if (rt->dst.from) {
Xin Long1e2ea8a2017-08-26 20:10:10 +0800443 return rt->dst.obsolete != DST_OBSOLETE_FORCE_CHK ||
444 rt6_check_expired((struct rt6_info *)rt->dst.from);
Gao feng1716a962012-04-06 00:13:10 +0000445 }
Eric Dumazeta50feda2012-05-18 18:57:34 +0000446 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447}
448
Nicolas Dichtel51ebd312012-10-22 03:42:09 +0000449static struct rt6_info *rt6_multipath_select(struct rt6_info *match,
Nicolas Dichtel52bd4c02013-06-28 17:35:48 +0200450 struct flowi6 *fl6, int oif,
451 int strict)
Nicolas Dichtel51ebd312012-10-22 03:42:09 +0000452{
453 struct rt6_info *sibling, *next_sibling;
454 int route_choosen;
455
Jakub Sitnickib673d6c2017-08-23 09:58:31 +0200456 /* We might have already computed the hash for ICMPv6 errors. In such
457 * case it will always be non-zero. Otherwise now is the time to do it.
458 */
459 if (!fl6->mp_hash)
460 fl6->mp_hash = rt6_multipath_hash(fl6, NULL);
461
462 route_choosen = fl6->mp_hash % (match->rt6i_nsiblings + 1);
Nicolas Dichtel51ebd312012-10-22 03:42:09 +0000463 /* Don't change the route, if route_choosen == 0
464 * (siblings does not include ourself)
465 */
466 if (route_choosen)
467 list_for_each_entry_safe(sibling, next_sibling,
468 &match->rt6i_siblings, rt6i_siblings) {
469 route_choosen--;
470 if (route_choosen == 0) {
Nicolas Dichtel52bd4c02013-06-28 17:35:48 +0200471 if (rt6_score_route(sibling, oif, strict) < 0)
472 break;
Nicolas Dichtel51ebd312012-10-22 03:42:09 +0000473 match = sibling;
474 break;
475 }
476 }
477 return match;
478}
479
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480/*
Thomas Grafc71099a2006-08-04 23:20:06 -0700481 * Route lookup. Any table->tb6_lock is implied.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 */
483
Daniel Lezcano8ed67782008-03-04 13:48:30 -0800484static inline struct rt6_info *rt6_device_match(struct net *net,
485 struct rt6_info *rt,
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000486 const struct in6_addr *saddr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 int oif,
YOSHIFUJI Hideakid4208952008-06-27 20:14:54 -0700488 int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489{
490 struct rt6_info *local = NULL;
491 struct rt6_info *sprt;
492
YOSHIFUJI Hideakidd3abc42008-07-02 18:30:18 +0900493 if (!oif && ipv6_addr_any(saddr))
494 goto out;
495
Changli Gaod8d1f302010-06-10 23:31:35 -0700496 for (sprt = rt; sprt; sprt = sprt->dst.rt6_next) {
David S. Millerd1918542011-12-28 20:19:20 -0500497 struct net_device *dev = sprt->dst.dev;
YOSHIFUJI Hideakidd3abc42008-07-02 18:30:18 +0900498
499 if (oif) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 if (dev->ifindex == oif)
501 return sprt;
502 if (dev->flags & IFF_LOOPBACK) {
David S. Miller38308472011-12-03 18:02:47 -0500503 if (!sprt->rt6i_idev ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 sprt->rt6i_idev->dev->ifindex != oif) {
David Ahern17fb0b22015-09-25 15:22:54 -0600505 if (flags & RT6_LOOKUP_F_IFACE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 continue;
David Ahern17fb0b22015-09-25 15:22:54 -0600507 if (local &&
508 local->rt6i_idev->dev->ifindex == oif)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 continue;
510 }
511 local = sprt;
512 }
YOSHIFUJI Hideakidd3abc42008-07-02 18:30:18 +0900513 } else {
514 if (ipv6_chk_addr(net, saddr, dev,
515 flags & RT6_LOOKUP_F_IFACE))
516 return sprt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 }
YOSHIFUJI Hideakidd3abc42008-07-02 18:30:18 +0900518 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519
YOSHIFUJI Hideakidd3abc42008-07-02 18:30:18 +0900520 if (oif) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 if (local)
522 return local;
523
YOSHIFUJI Hideakid4208952008-06-27 20:14:54 -0700524 if (flags & RT6_LOOKUP_F_IFACE)
Daniel Lezcano8ed67782008-03-04 13:48:30 -0800525 return net->ipv6.ip6_null_entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 }
YOSHIFUJI Hideakidd3abc42008-07-02 18:30:18 +0900527out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 return rt;
529}
530
YOSHIFUJI Hideaki27097252006-03-20 17:05:13 -0800531#ifdef CONFIG_IPV6_ROUTER_PREF
Hannes Frederic Sowac2f17e82013-10-21 06:17:15 +0200532struct __rt6_probe_work {
533 struct work_struct work;
534 struct in6_addr target;
535 struct net_device *dev;
536};
537
538static void rt6_probe_deferred(struct work_struct *w)
539{
540 struct in6_addr mcaddr;
541 struct __rt6_probe_work *work =
542 container_of(w, struct __rt6_probe_work, work);
543
544 addrconf_addr_solict_mult(&work->target, &mcaddr);
Erik Nordmarkadc176c2016-12-02 14:00:08 -0800545 ndisc_send_ns(work->dev, &work->target, &mcaddr, NULL, 0);
Hannes Frederic Sowac2f17e82013-10-21 06:17:15 +0200546 dev_put(work->dev);
Michael Büsch662f5532015-02-08 10:14:07 +0100547 kfree(work);
Hannes Frederic Sowac2f17e82013-10-21 06:17:15 +0200548}
549
YOSHIFUJI Hideaki27097252006-03-20 17:05:13 -0800550static void rt6_probe(struct rt6_info *rt)
551{
Martin KaFai Lau990edb42015-07-24 09:57:42 -0700552 struct __rt6_probe_work *work;
Eric Dumazetf2c31e32011-07-29 19:00:53 +0000553 struct neighbour *neigh;
YOSHIFUJI Hideaki27097252006-03-20 17:05:13 -0800554 /*
555 * Okay, this does not seem to be appropriate
556 * for now, however, we need to check if it
557 * is really so; aka Router Reachability Probing.
558 *
559 * Router Reachability Probe MUST be rate-limited
560 * to no more than one per minute.
561 */
YOSHIFUJI Hideaki / 吉藤英明2152cae2013-01-17 12:53:43 +0000562 if (!rt || !(rt->rt6i_flags & RTF_GATEWAY))
Amerigo Wangfdd66812012-09-10 02:48:44 +0000563 return;
YOSHIFUJI Hideaki / 吉藤英明2152cae2013-01-17 12:53:43 +0000564 rcu_read_lock_bh();
565 neigh = __ipv6_neigh_lookup_noref(rt->dst.dev, &rt->rt6i_gateway);
566 if (neigh) {
Martin KaFai Lau8d6c31b2015-07-24 09:57:43 -0700567 if (neigh->nud_state & NUD_VALID)
568 goto out;
569
Martin KaFai Lau990edb42015-07-24 09:57:42 -0700570 work = NULL;
YOSHIFUJI Hideaki / 吉藤英明2152cae2013-01-17 12:53:43 +0000571 write_lock(&neigh->lock);
Martin KaFai Lau990edb42015-07-24 09:57:42 -0700572 if (!(neigh->nud_state & NUD_VALID) &&
573 time_after(jiffies,
574 neigh->updated +
575 rt->rt6i_idev->cnf.rtr_probe_interval)) {
576 work = kmalloc(sizeof(*work), GFP_ATOMIC);
577 if (work)
578 __neigh_set_probe_once(neigh);
Hannes Frederic Sowac2f17e82013-10-21 06:17:15 +0200579 }
YOSHIFUJI Hideaki / 吉藤英明2152cae2013-01-17 12:53:43 +0000580 write_unlock(&neigh->lock);
Martin KaFai Lau990edb42015-07-24 09:57:42 -0700581 } else {
582 work = kmalloc(sizeof(*work), GFP_ATOMIC);
Eric Dumazetf2c31e32011-07-29 19:00:53 +0000583 }
Martin KaFai Lau990edb42015-07-24 09:57:42 -0700584
585 if (work) {
586 INIT_WORK(&work->work, rt6_probe_deferred);
587 work->target = rt->rt6i_gateway;
588 dev_hold(rt->dst.dev);
589 work->dev = rt->dst.dev;
590 schedule_work(&work->work);
591 }
592
Martin KaFai Lau8d6c31b2015-07-24 09:57:43 -0700593out:
YOSHIFUJI Hideaki / 吉藤英明2152cae2013-01-17 12:53:43 +0000594 rcu_read_unlock_bh();
YOSHIFUJI Hideaki27097252006-03-20 17:05:13 -0800595}
596#else
597static inline void rt6_probe(struct rt6_info *rt)
598{
YOSHIFUJI Hideaki27097252006-03-20 17:05:13 -0800599}
600#endif
601
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602/*
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800603 * Default Router Selection (RFC 2461 6.3.6)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 */
Dave Jonesb6f99a22007-03-22 12:27:49 -0700605static inline int rt6_check_dev(struct rt6_info *rt, int oif)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606{
David S. Millerd1918542011-12-28 20:19:20 -0500607 struct net_device *dev = rt->dst.dev;
David S. Miller161980f2007-04-06 11:42:27 -0700608 if (!oif || dev->ifindex == oif)
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800609 return 2;
David S. Miller161980f2007-04-06 11:42:27 -0700610 if ((dev->flags & IFF_LOOPBACK) &&
611 rt->rt6i_idev && rt->rt6i_idev->dev->ifindex == oif)
612 return 1;
613 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614}
615
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200616static inline enum rt6_nud_state rt6_check_neigh(struct rt6_info *rt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617{
Eric Dumazetf2c31e32011-07-29 19:00:53 +0000618 struct neighbour *neigh;
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200619 enum rt6_nud_state ret = RT6_NUD_FAIL_HARD;
Eric Dumazetf2c31e32011-07-29 19:00:53 +0000620
YOSHIFUJI Hideaki4d0c5912006-05-26 13:23:41 -0700621 if (rt->rt6i_flags & RTF_NONEXTHOP ||
622 !(rt->rt6i_flags & RTF_GATEWAY))
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200623 return RT6_NUD_SUCCEED;
YOSHIFUJI Hideaki / 吉藤英明145a3622013-01-17 12:53:38 +0000624
625 rcu_read_lock_bh();
626 neigh = __ipv6_neigh_lookup_noref(rt->dst.dev, &rt->rt6i_gateway);
627 if (neigh) {
628 read_lock(&neigh->lock);
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800629 if (neigh->nud_state & NUD_VALID)
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200630 ret = RT6_NUD_SUCCEED;
YOSHIFUJI Hideaki398bcbe2008-01-19 00:35:16 -0800631#ifdef CONFIG_IPV6_ROUTER_PREF
Paul Marksa5a81f02012-12-03 10:26:54 +0000632 else if (!(neigh->nud_state & NUD_FAILED))
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200633 ret = RT6_NUD_SUCCEED;
Jiri Benc7e980562013-12-11 13:48:20 +0100634 else
635 ret = RT6_NUD_FAIL_PROBE;
YOSHIFUJI Hideaki398bcbe2008-01-19 00:35:16 -0800636#endif
YOSHIFUJI Hideaki / 吉藤英明145a3622013-01-17 12:53:38 +0000637 read_unlock(&neigh->lock);
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200638 } else {
639 ret = IS_ENABLED(CONFIG_IPV6_ROUTER_PREF) ?
Jiri Benc7e980562013-12-11 13:48:20 +0100640 RT6_NUD_SUCCEED : RT6_NUD_FAIL_DO_RR;
Paul Marksa5a81f02012-12-03 10:26:54 +0000641 }
YOSHIFUJI Hideaki / 吉藤英明145a3622013-01-17 12:53:38 +0000642 rcu_read_unlock_bh();
643
Paul Marksa5a81f02012-12-03 10:26:54 +0000644 return ret;
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800645}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800647static int rt6_score_route(struct rt6_info *rt, int oif,
648 int strict)
649{
Paul Marksa5a81f02012-12-03 10:26:54 +0000650 int m;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900651
YOSHIFUJI Hideaki4d0c5912006-05-26 13:23:41 -0700652 m = rt6_check_dev(rt, oif);
YOSHIFUJI Hideaki77d16f42006-08-23 17:25:05 -0700653 if (!m && (strict & RT6_LOOKUP_F_IFACE))
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200654 return RT6_NUD_FAIL_HARD;
YOSHIFUJI Hideakiebacaaa2006-03-20 17:04:53 -0800655#ifdef CONFIG_IPV6_ROUTER_PREF
656 m |= IPV6_DECODE_PREF(IPV6_EXTRACT_PREF(rt->rt6i_flags)) << 2;
657#endif
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200658 if (strict & RT6_LOOKUP_F_REACHABLE) {
659 int n = rt6_check_neigh(rt);
660 if (n < 0)
661 return n;
662 }
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800663 return m;
664}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665
David S. Millerf11e6652007-03-24 20:36:25 -0700666static struct rt6_info *find_match(struct rt6_info *rt, int oif, int strict,
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200667 int *mpri, struct rt6_info *match,
668 bool *do_rr)
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800669{
David S. Millerf11e6652007-03-24 20:36:25 -0700670 int m;
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200671 bool match_do_rr = false;
Andy Gospodarek35103d12015-08-13 10:39:01 -0400672 struct inet6_dev *idev = rt->rt6i_idev;
673 struct net_device *dev = rt->dst.dev;
674
675 if (dev && !netif_carrier_ok(dev) &&
David Ahernd5d32e42016-10-24 12:27:23 -0700676 idev->cnf.ignore_routes_with_linkdown &&
677 !(strict & RT6_LOOKUP_F_IGNORE_LINKSTATE))
Andy Gospodarek35103d12015-08-13 10:39:01 -0400678 goto out;
David S. Millerf11e6652007-03-24 20:36:25 -0700679
680 if (rt6_check_expired(rt))
681 goto out;
682
683 m = rt6_score_route(rt, oif, strict);
Jiri Benc7e980562013-12-11 13:48:20 +0100684 if (m == RT6_NUD_FAIL_DO_RR) {
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200685 match_do_rr = true;
686 m = 0; /* lowest valid score */
Jiri Benc7e980562013-12-11 13:48:20 +0100687 } else if (m == RT6_NUD_FAIL_HARD) {
David S. Millerf11e6652007-03-24 20:36:25 -0700688 goto out;
David S. Millerf11e6652007-03-24 20:36:25 -0700689 }
690
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200691 if (strict & RT6_LOOKUP_F_REACHABLE)
692 rt6_probe(rt);
693
Jiri Benc7e980562013-12-11 13:48:20 +0100694 /* note that m can be RT6_NUD_FAIL_PROBE at this point */
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200695 if (m > *mpri) {
696 *do_rr = match_do_rr;
697 *mpri = m;
698 match = rt;
699 }
David S. Millerf11e6652007-03-24 20:36:25 -0700700out:
701 return match;
702}
703
704static struct rt6_info *find_rr_leaf(struct fib6_node *fn,
705 struct rt6_info *rr_head,
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200706 u32 metric, int oif, int strict,
707 bool *do_rr)
David S. Millerf11e6652007-03-24 20:36:25 -0700708{
Steffen Klassert9fbdcfa2015-04-28 13:03:04 -0700709 struct rt6_info *rt, *match, *cont;
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800710 int mpri = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711
David S. Millerf11e6652007-03-24 20:36:25 -0700712 match = NULL;
Steffen Klassert9fbdcfa2015-04-28 13:03:04 -0700713 cont = NULL;
714 for (rt = rr_head; rt; rt = rt->dst.rt6_next) {
715 if (rt->rt6i_metric != metric) {
716 cont = rt;
717 break;
718 }
719
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200720 match = find_match(rt, oif, strict, &mpri, match, do_rr);
Steffen Klassert9fbdcfa2015-04-28 13:03:04 -0700721 }
722
723 for (rt = fn->leaf; rt && rt != rr_head; rt = rt->dst.rt6_next) {
724 if (rt->rt6i_metric != metric) {
725 cont = rt;
726 break;
727 }
728
729 match = find_match(rt, oif, strict, &mpri, match, do_rr);
730 }
731
732 if (match || !cont)
733 return match;
734
735 for (rt = cont; rt; rt = rt->dst.rt6_next)
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200736 match = find_match(rt, oif, strict, &mpri, match, do_rr);
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800737
David S. Millerf11e6652007-03-24 20:36:25 -0700738 return match;
739}
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800740
David S. Millerf11e6652007-03-24 20:36:25 -0700741static struct rt6_info *rt6_select(struct fib6_node *fn, int oif, int strict)
742{
743 struct rt6_info *match, *rt0;
Daniel Lezcano8ed67782008-03-04 13:48:30 -0800744 struct net *net;
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200745 bool do_rr = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746
David S. Millerf11e6652007-03-24 20:36:25 -0700747 rt0 = fn->rr_ptr;
748 if (!rt0)
749 fn->rr_ptr = rt0 = fn->leaf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200751 match = find_rr_leaf(fn, rt0, rt0->rt6i_metric, oif, strict,
752 &do_rr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200754 if (do_rr) {
Changli Gaod8d1f302010-06-10 23:31:35 -0700755 struct rt6_info *next = rt0->dst.rt6_next;
David S. Millerf11e6652007-03-24 20:36:25 -0700756
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800757 /* no entries matched; do round-robin */
David S. Millerf11e6652007-03-24 20:36:25 -0700758 if (!next || next->rt6i_metric != rt0->rt6i_metric)
759 next = fn->leaf;
760
761 if (next != rt0)
762 fn->rr_ptr = next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 }
764
David S. Millerd1918542011-12-28 20:19:20 -0500765 net = dev_net(rt0->dst.dev);
Eric Dumazeta02cec22010-09-22 20:43:57 +0000766 return match ? match : net->ipv6.ip6_null_entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767}
768
Martin KaFai Lau8b9df262015-05-22 20:55:59 -0700769static bool rt6_is_gw_or_nonexthop(const struct rt6_info *rt)
770{
771 return (rt->rt6i_flags & (RTF_NONEXTHOP | RTF_GATEWAY));
772}
773
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800774#ifdef CONFIG_IPV6_ROUTE_INFO
775int rt6_route_rcv(struct net_device *dev, u8 *opt, int len,
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000776 const struct in6_addr *gwaddr)
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800777{
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900778 struct net *net = dev_net(dev);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800779 struct route_info *rinfo = (struct route_info *) opt;
780 struct in6_addr prefix_buf, *prefix;
781 unsigned int pref;
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +0900782 unsigned long lifetime;
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800783 struct rt6_info *rt;
784
785 if (len < sizeof(struct route_info)) {
786 return -EINVAL;
787 }
788
789 /* Sanity check for prefix_len and length */
790 if (rinfo->length > 3) {
791 return -EINVAL;
792 } else if (rinfo->prefix_len > 128) {
793 return -EINVAL;
794 } else if (rinfo->prefix_len > 64) {
795 if (rinfo->length < 2) {
796 return -EINVAL;
797 }
798 } else if (rinfo->prefix_len > 0) {
799 if (rinfo->length < 1) {
800 return -EINVAL;
801 }
802 }
803
804 pref = rinfo->route_pref;
805 if (pref == ICMPV6_ROUTER_PREF_INVALID)
Jens Rosenboom3933fc92009-09-10 06:25:11 +0000806 return -EINVAL;
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800807
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +0900808 lifetime = addrconf_timeout_fixup(ntohl(rinfo->lifetime), HZ);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800809
810 if (rinfo->length == 3)
811 prefix = (struct in6_addr *)rinfo->prefix;
812 else {
813 /* this function is safe */
814 ipv6_addr_prefix(&prefix_buf,
815 (struct in6_addr *)rinfo->prefix,
816 rinfo->prefix_len);
817 prefix = &prefix_buf;
818 }
819
Duan Jiongf104a562013-11-08 09:56:53 +0800820 if (rinfo->prefix_len == 0)
821 rt = rt6_get_dflt_router(gwaddr, dev);
822 else
823 rt = rt6_get_route_info(net, prefix, rinfo->prefix_len,
David Ahern830218c2016-10-24 10:52:35 -0700824 gwaddr, dev);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800825
826 if (rt && !lifetime) {
Thomas Grafe0a1ad732006-08-22 00:00:21 -0700827 ip6_del_rt(rt);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800828 rt = NULL;
829 }
830
831 if (!rt && lifetime)
David Ahern830218c2016-10-24 10:52:35 -0700832 rt = rt6_add_route_info(net, prefix, rinfo->prefix_len, gwaddr,
833 dev, pref);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800834 else if (rt)
835 rt->rt6i_flags = RTF_ROUTEINFO |
836 (rt->rt6i_flags & ~RTF_PREF_MASK) | RTF_PREF(pref);
837
838 if (rt) {
Gao feng1716a962012-04-06 00:13:10 +0000839 if (!addrconf_finite_timeout(lifetime))
840 rt6_clean_expires(rt);
841 else
842 rt6_set_expires(rt, jiffies + HZ * lifetime);
843
Amerigo Wang94e187c2012-10-29 00:13:19 +0000844 ip6_rt_put(rt);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800845 }
846 return 0;
847}
848#endif
849
Martin KaFai Laua3c00e42014-10-20 13:42:43 -0700850static struct fib6_node* fib6_backtrack(struct fib6_node *fn,
851 struct in6_addr *saddr)
852{
853 struct fib6_node *pn;
854 while (1) {
855 if (fn->fn_flags & RTN_TL_ROOT)
856 return NULL;
857 pn = fn->parent;
858 if (FIB6_SUBTREE(pn) && FIB6_SUBTREE(pn) != fn)
859 fn = fib6_lookup(FIB6_SUBTREE(pn), NULL, saddr);
860 else
861 fn = pn;
862 if (fn->fn_flags & RTN_RTINFO)
863 return fn;
864 }
865}
Thomas Grafc71099a2006-08-04 23:20:06 -0700866
Daniel Lezcano8ed67782008-03-04 13:48:30 -0800867static struct rt6_info *ip6_pol_route_lookup(struct net *net,
868 struct fib6_table *table,
David S. Miller4c9483b2011-03-12 16:22:43 -0500869 struct flowi6 *fl6, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870{
871 struct fib6_node *fn;
872 struct rt6_info *rt;
873
Thomas Grafc71099a2006-08-04 23:20:06 -0700874 read_lock_bh(&table->tb6_lock);
David S. Miller4c9483b2011-03-12 16:22:43 -0500875 fn = fib6_lookup(&table->tb6_root, &fl6->daddr, &fl6->saddr);
Thomas Grafc71099a2006-08-04 23:20:06 -0700876restart:
877 rt = fn->leaf;
David S. Miller4c9483b2011-03-12 16:22:43 -0500878 rt = rt6_device_match(net, rt, &fl6->saddr, fl6->flowi6_oif, flags);
Nicolas Dichtel51ebd312012-10-22 03:42:09 +0000879 if (rt->rt6i_nsiblings && fl6->flowi6_oif == 0)
Nicolas Dichtel52bd4c02013-06-28 17:35:48 +0200880 rt = rt6_multipath_select(rt, fl6, fl6->flowi6_oif, flags);
Martin KaFai Laua3c00e42014-10-20 13:42:43 -0700881 if (rt == net->ipv6.ip6_null_entry) {
882 fn = fib6_backtrack(fn, &fl6->saddr);
883 if (fn)
884 goto restart;
885 }
Changli Gaod8d1f302010-06-10 23:31:35 -0700886 dst_use(&rt->dst, jiffies);
Thomas Grafc71099a2006-08-04 23:20:06 -0700887 read_unlock_bh(&table->tb6_lock);
David Ahernb8115802015-11-19 12:24:22 -0800888
889 trace_fib6_table_lookup(net, rt, table->tb6_id, fl6);
890
Thomas Grafc71099a2006-08-04 23:20:06 -0700891 return rt;
892
893}
894
Ian Morris67ba4152014-08-24 21:53:10 +0100895struct dst_entry *ip6_route_lookup(struct net *net, struct flowi6 *fl6,
Florian Westphalea6e5742011-09-05 16:05:44 +0200896 int flags)
897{
898 return fib6_rule_lookup(net, fl6, flags, ip6_pol_route_lookup);
899}
900EXPORT_SYMBOL_GPL(ip6_route_lookup);
901
YOSHIFUJI Hideaki9acd9f32008-04-10 15:42:10 +0900902struct rt6_info *rt6_lookup(struct net *net, const struct in6_addr *daddr,
903 const struct in6_addr *saddr, int oif, int strict)
Thomas Grafc71099a2006-08-04 23:20:06 -0700904{
David S. Miller4c9483b2011-03-12 16:22:43 -0500905 struct flowi6 fl6 = {
906 .flowi6_oif = oif,
907 .daddr = *daddr,
Thomas Grafc71099a2006-08-04 23:20:06 -0700908 };
909 struct dst_entry *dst;
YOSHIFUJI Hideaki77d16f42006-08-23 17:25:05 -0700910 int flags = strict ? RT6_LOOKUP_F_IFACE : 0;
Thomas Grafc71099a2006-08-04 23:20:06 -0700911
Thomas Grafadaa70b2006-10-13 15:01:03 -0700912 if (saddr) {
David S. Miller4c9483b2011-03-12 16:22:43 -0500913 memcpy(&fl6.saddr, saddr, sizeof(*saddr));
Thomas Grafadaa70b2006-10-13 15:01:03 -0700914 flags |= RT6_LOOKUP_F_HAS_SADDR;
915 }
916
David S. Miller4c9483b2011-03-12 16:22:43 -0500917 dst = fib6_rule_lookup(net, &fl6, flags, ip6_pol_route_lookup);
Thomas Grafc71099a2006-08-04 23:20:06 -0700918 if (dst->error == 0)
919 return (struct rt6_info *) dst;
920
921 dst_release(dst);
922
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923 return NULL;
924}
YOSHIFUJI Hideaki71590392007-02-22 22:05:40 +0900925EXPORT_SYMBOL(rt6_lookup);
926
Thomas Grafc71099a2006-08-04 23:20:06 -0700927/* ip6_ins_rt is called with FREE table->tb6_lock.
Wei Wang1cfb71e2017-06-17 10:42:33 -0700928 * It takes new route entry, the addition fails by any reason the
929 * route is released.
930 * Caller must hold dst before calling it.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931 */
932
Michal Kubečeke5fd3872014-03-27 13:04:08 +0100933static int __ip6_ins_rt(struct rt6_info *rt, struct nl_info *info,
David Ahern333c4302017-05-21 10:12:04 -0600934 struct mx6_config *mxc,
935 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936{
937 int err;
Thomas Grafc71099a2006-08-04 23:20:06 -0700938 struct fib6_table *table;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939
Thomas Grafc71099a2006-08-04 23:20:06 -0700940 table = rt->rt6i_table;
941 write_lock_bh(&table->tb6_lock);
David Ahern333c4302017-05-21 10:12:04 -0600942 err = fib6_add(&table->tb6_root, rt, info, mxc, extack);
Thomas Grafc71099a2006-08-04 23:20:06 -0700943 write_unlock_bh(&table->tb6_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944
945 return err;
946}
947
Thomas Graf40e22e82006-08-22 00:00:45 -0700948int ip6_ins_rt(struct rt6_info *rt)
949{
Florian Westphale715b6d2015-01-05 23:57:44 +0100950 struct nl_info info = { .nl_net = dev_net(rt->dst.dev), };
951 struct mx6_config mxc = { .mx = NULL, };
952
Wei Wang1cfb71e2017-06-17 10:42:33 -0700953 /* Hold dst to account for the reference from the fib6 tree */
954 dst_hold(&rt->dst);
David Ahern333c4302017-05-21 10:12:04 -0600955 return __ip6_ins_rt(rt, &info, &mxc, NULL);
Thomas Graf40e22e82006-08-22 00:00:45 -0700956}
957
David Ahern4832c302017-08-17 12:17:20 -0700958/* called with rcu_lock held */
959static struct net_device *ip6_rt_get_dev_rcu(struct rt6_info *rt)
960{
961 struct net_device *dev = rt->dst.dev;
962
963 if (rt->rt6i_flags & RTF_LOCAL) {
964 /* for copies of local routes, dst->dev needs to be the
965 * device if it is a master device, the master device if
966 * device is enslaved, and the loopback as the default
967 */
968 if (netif_is_l3_slave(dev) &&
969 !rt6_need_strict(&rt->rt6i_dst.addr))
970 dev = l3mdev_master_dev_rcu(dev);
971 else if (!netif_is_l3_master(dev))
972 dev = dev_net(dev)->loopback_dev;
973 /* last case is netif_is_l3_master(dev) is true in which
974 * case we want dev returned to be dev
975 */
976 }
977
978 return dev;
979}
980
Martin KaFai Lau8b9df262015-05-22 20:55:59 -0700981static struct rt6_info *ip6_rt_cache_alloc(struct rt6_info *ort,
982 const struct in6_addr *daddr,
983 const struct in6_addr *saddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984{
David Ahern4832c302017-08-17 12:17:20 -0700985 struct net_device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986 struct rt6_info *rt;
987
988 /*
989 * Clone the route.
990 */
991
Martin KaFai Laud52d3992015-05-22 20:56:06 -0700992 if (ort->rt6i_flags & (RTF_CACHE | RTF_PCPU))
Martin KaFai Lau83a09ab2015-05-22 20:56:05 -0700993 ort = (struct rt6_info *)ort->dst.from;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994
David Ahern4832c302017-08-17 12:17:20 -0700995 rcu_read_lock();
996 dev = ip6_rt_get_dev_rcu(ort);
997 rt = __ip6_dst_alloc(dev_net(dev), dev, 0);
998 rcu_read_unlock();
Martin KaFai Lau83a09ab2015-05-22 20:56:05 -0700999 if (!rt)
1000 return NULL;
1001
1002 ip6_rt_copy_init(rt, ort);
1003 rt->rt6i_flags |= RTF_CACHE;
1004 rt->rt6i_metric = 0;
1005 rt->dst.flags |= DST_HOST;
1006 rt->rt6i_dst.addr = *daddr;
1007 rt->rt6i_dst.plen = 128;
1008
1009 if (!rt6_is_gw_or_nonexthop(ort)) {
1010 if (ort->rt6i_dst.plen != 128 &&
1011 ipv6_addr_equal(&ort->rt6i_dst.addr, daddr))
1012 rt->rt6i_flags |= RTF_ANYCAST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013#ifdef CONFIG_IPV6_SUBTREES
Martin KaFai Lau83a09ab2015-05-22 20:56:05 -07001014 if (rt->rt6i_src.plen && saddr) {
1015 rt->rt6i_src.addr = *saddr;
1016 rt->rt6i_src.plen = 128;
Martin KaFai Lau8b9df262015-05-22 20:55:59 -07001017 }
Martin KaFai Lau83a09ab2015-05-22 20:56:05 -07001018#endif
YOSHIFUJI Hideaki95a9a5b2006-03-20 16:55:51 -08001019 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020
YOSHIFUJI Hideaki95a9a5b2006-03-20 16:55:51 -08001021 return rt;
1022}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001024static struct rt6_info *ip6_rt_pcpu_alloc(struct rt6_info *rt)
1025{
David Ahern4832c302017-08-17 12:17:20 -07001026 struct net_device *dev;
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001027 struct rt6_info *pcpu_rt;
1028
David Ahern4832c302017-08-17 12:17:20 -07001029 rcu_read_lock();
1030 dev = ip6_rt_get_dev_rcu(rt);
1031 pcpu_rt = __ip6_dst_alloc(dev_net(dev), dev, rt->dst.flags);
1032 rcu_read_unlock();
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001033 if (!pcpu_rt)
1034 return NULL;
1035 ip6_rt_copy_init(pcpu_rt, rt);
1036 pcpu_rt->rt6i_protocol = rt->rt6i_protocol;
1037 pcpu_rt->rt6i_flags |= RTF_PCPU;
1038 return pcpu_rt;
1039}
1040
1041/* It should be called with read_lock_bh(&tb6_lock) acquired */
1042static struct rt6_info *rt6_get_pcpu_route(struct rt6_info *rt)
1043{
Martin KaFai Laua73e4192015-08-14 11:05:53 -07001044 struct rt6_info *pcpu_rt, **p;
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001045
1046 p = this_cpu_ptr(rt->rt6i_pcpu);
1047 pcpu_rt = *p;
1048
Martin KaFai Laua73e4192015-08-14 11:05:53 -07001049 if (pcpu_rt) {
1050 dst_hold(&pcpu_rt->dst);
1051 rt6_dst_from_metrics_check(pcpu_rt);
1052 }
1053 return pcpu_rt;
1054}
1055
1056static struct rt6_info *rt6_make_pcpu_route(struct rt6_info *rt)
1057{
Martin KaFai Lau9c7370a2015-08-14 11:05:54 -07001058 struct fib6_table *table = rt->rt6i_table;
Martin KaFai Laua73e4192015-08-14 11:05:53 -07001059 struct rt6_info *pcpu_rt, *prev, **p;
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001060
1061 pcpu_rt = ip6_rt_pcpu_alloc(rt);
1062 if (!pcpu_rt) {
1063 struct net *net = dev_net(rt->dst.dev);
1064
Martin KaFai Lau9c7370a2015-08-14 11:05:54 -07001065 dst_hold(&net->ipv6.ip6_null_entry->dst);
1066 return net->ipv6.ip6_null_entry;
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001067 }
1068
Martin KaFai Lau9c7370a2015-08-14 11:05:54 -07001069 read_lock_bh(&table->tb6_lock);
1070 if (rt->rt6i_pcpu) {
1071 p = this_cpu_ptr(rt->rt6i_pcpu);
1072 prev = cmpxchg(p, NULL, pcpu_rt);
1073 if (prev) {
1074 /* If someone did it before us, return prev instead */
Wei Wang587fea72017-06-17 10:42:36 -07001075 dst_release_immediate(&pcpu_rt->dst);
Martin KaFai Lau9c7370a2015-08-14 11:05:54 -07001076 pcpu_rt = prev;
1077 }
1078 } else {
1079 /* rt has been removed from the fib6 tree
1080 * before we have a chance to acquire the read_lock.
1081 * In this case, don't brother to create a pcpu rt
1082 * since rt is going away anyway. The next
1083 * dst_check() will trigger a re-lookup.
1084 */
Wei Wang587fea72017-06-17 10:42:36 -07001085 dst_release_immediate(&pcpu_rt->dst);
Martin KaFai Lau9c7370a2015-08-14 11:05:54 -07001086 pcpu_rt = rt;
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001087 }
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001088 dst_hold(&pcpu_rt->dst);
1089 rt6_dst_from_metrics_check(pcpu_rt);
Martin KaFai Lau9c7370a2015-08-14 11:05:54 -07001090 read_unlock_bh(&table->tb6_lock);
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001091 return pcpu_rt;
1092}
1093
David Ahern9ff74382016-06-13 13:44:19 -07001094struct rt6_info *ip6_pol_route(struct net *net, struct fib6_table *table,
1095 int oif, struct flowi6 *fl6, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096{
Martin KaFai Lau367efcb2014-10-20 13:42:45 -07001097 struct fib6_node *fn, *saved_fn;
Martin KaFai Lau45e4fd22015-05-22 20:56:00 -07001098 struct rt6_info *rt;
Thomas Grafc71099a2006-08-04 23:20:06 -07001099 int strict = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100
YOSHIFUJI Hideaki77d16f42006-08-23 17:25:05 -07001101 strict |= flags & RT6_LOOKUP_F_IFACE;
David Ahernd5d32e42016-10-24 12:27:23 -07001102 strict |= flags & RT6_LOOKUP_F_IGNORE_LINKSTATE;
Martin KaFai Lau367efcb2014-10-20 13:42:45 -07001103 if (net->ipv6.devconf_all->forwarding == 0)
1104 strict |= RT6_LOOKUP_F_REACHABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105
Thomas Grafc71099a2006-08-04 23:20:06 -07001106 read_lock_bh(&table->tb6_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107
David S. Miller4c9483b2011-03-12 16:22:43 -05001108 fn = fib6_lookup(&table->tb6_root, &fl6->daddr, &fl6->saddr);
Martin KaFai Lau367efcb2014-10-20 13:42:45 -07001109 saved_fn = fn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110
David Ahernca254492015-10-12 11:47:10 -07001111 if (fl6->flowi6_flags & FLOWI_FLAG_SKIP_NH_OIF)
1112 oif = 0;
1113
Martin KaFai Laua3c00e42014-10-20 13:42:43 -07001114redo_rt6_select:
Martin KaFai Lau367efcb2014-10-20 13:42:45 -07001115 rt = rt6_select(fn, oif, strict);
Nicolas Dichtel52bd4c02013-06-28 17:35:48 +02001116 if (rt->rt6i_nsiblings)
Martin KaFai Lau367efcb2014-10-20 13:42:45 -07001117 rt = rt6_multipath_select(rt, fl6, oif, strict);
Martin KaFai Laua3c00e42014-10-20 13:42:43 -07001118 if (rt == net->ipv6.ip6_null_entry) {
1119 fn = fib6_backtrack(fn, &fl6->saddr);
1120 if (fn)
1121 goto redo_rt6_select;
Martin KaFai Lau367efcb2014-10-20 13:42:45 -07001122 else if (strict & RT6_LOOKUP_F_REACHABLE) {
1123 /* also consider unreachable route */
1124 strict &= ~RT6_LOOKUP_F_REACHABLE;
1125 fn = saved_fn;
1126 goto redo_rt6_select;
Martin KaFai Lau367efcb2014-10-20 13:42:45 -07001127 }
Martin KaFai Laua3c00e42014-10-20 13:42:43 -07001128 }
1129
YOSHIFUJI Hideakifb9de912006-03-20 16:59:08 -08001130
Martin KaFai Lau3da59bd2015-05-22 20:56:03 -07001131 if (rt == net->ipv6.ip6_null_entry || (rt->rt6i_flags & RTF_CACHE)) {
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001132 dst_use(&rt->dst, jiffies);
1133 read_unlock_bh(&table->tb6_lock);
1134
1135 rt6_dst_from_metrics_check(rt);
David Ahernb8115802015-11-19 12:24:22 -08001136
1137 trace_fib6_table_lookup(net, rt, table->tb6_id, fl6);
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001138 return rt;
Martin KaFai Lau3da59bd2015-05-22 20:56:03 -07001139 } else if (unlikely((fl6->flowi6_flags & FLOWI_FLAG_KNOWN_NH) &&
1140 !(rt->rt6i_flags & RTF_GATEWAY))) {
1141 /* Create a RTF_CACHE clone which will not be
1142 * owned by the fib6 tree. It is for the special case where
1143 * the daddr in the skb during the neighbor look-up is different
1144 * from the fl6->daddr used to look-up route here.
1145 */
Thomas Grafc71099a2006-08-04 23:20:06 -07001146
Martin KaFai Lau3da59bd2015-05-22 20:56:03 -07001147 struct rt6_info *uncached_rt;
1148
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001149 dst_use(&rt->dst, jiffies);
1150 read_unlock_bh(&table->tb6_lock);
1151
Martin KaFai Lau3da59bd2015-05-22 20:56:03 -07001152 uncached_rt = ip6_rt_cache_alloc(rt, &fl6->daddr, NULL);
1153 dst_release(&rt->dst);
1154
Wei Wang1cfb71e2017-06-17 10:42:33 -07001155 if (uncached_rt) {
1156 /* Uncached_rt's refcnt is taken during ip6_rt_cache_alloc()
1157 * No need for another dst_hold()
1158 */
Martin KaFai Lau8d0b94a2015-05-22 20:56:04 -07001159 rt6_uncached_list_add(uncached_rt);
Wei Wang1cfb71e2017-06-17 10:42:33 -07001160 } else {
Martin KaFai Lau3da59bd2015-05-22 20:56:03 -07001161 uncached_rt = net->ipv6.ip6_null_entry;
Wei Wang1cfb71e2017-06-17 10:42:33 -07001162 dst_hold(&uncached_rt->dst);
1163 }
David Ahernb8115802015-11-19 12:24:22 -08001164
1165 trace_fib6_table_lookup(net, uncached_rt, table->tb6_id, fl6);
Martin KaFai Lau3da59bd2015-05-22 20:56:03 -07001166 return uncached_rt;
Martin KaFai Lau3da59bd2015-05-22 20:56:03 -07001167
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001168 } else {
1169 /* Get a percpu copy */
1170
1171 struct rt6_info *pcpu_rt;
1172
1173 rt->dst.lastuse = jiffies;
1174 rt->dst.__use++;
1175 pcpu_rt = rt6_get_pcpu_route(rt);
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001176
Martin KaFai Lau9c7370a2015-08-14 11:05:54 -07001177 if (pcpu_rt) {
1178 read_unlock_bh(&table->tb6_lock);
1179 } else {
1180 /* We have to do the read_unlock first
1181 * because rt6_make_pcpu_route() may trigger
1182 * ip6_dst_gc() which will take the write_lock.
1183 */
1184 dst_hold(&rt->dst);
1185 read_unlock_bh(&table->tb6_lock);
Martin KaFai Laua73e4192015-08-14 11:05:53 -07001186 pcpu_rt = rt6_make_pcpu_route(rt);
Martin KaFai Lau9c7370a2015-08-14 11:05:54 -07001187 dst_release(&rt->dst);
1188 }
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001189
David Ahernb8115802015-11-19 12:24:22 -08001190 trace_fib6_table_lookup(net, pcpu_rt, table->tb6_id, fl6);
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001191 return pcpu_rt;
Martin KaFai Lau9c7370a2015-08-14 11:05:54 -07001192
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001193 }
Thomas Grafc71099a2006-08-04 23:20:06 -07001194}
David Ahern9ff74382016-06-13 13:44:19 -07001195EXPORT_SYMBOL_GPL(ip6_pol_route);
Thomas Grafc71099a2006-08-04 23:20:06 -07001196
Daniel Lezcano8ed67782008-03-04 13:48:30 -08001197static struct rt6_info *ip6_pol_route_input(struct net *net, struct fib6_table *table,
David S. Miller4c9483b2011-03-12 16:22:43 -05001198 struct flowi6 *fl6, int flags)
Pavel Emelyanov4acad722007-10-15 13:02:51 -07001199{
David S. Miller4c9483b2011-03-12 16:22:43 -05001200 return ip6_pol_route(net, table, fl6->flowi6_iif, fl6, flags);
Pavel Emelyanov4acad722007-10-15 13:02:51 -07001201}
1202
Mahesh Bandeward409b842016-09-16 12:59:08 -07001203struct dst_entry *ip6_route_input_lookup(struct net *net,
1204 struct net_device *dev,
1205 struct flowi6 *fl6, int flags)
Shmulik Ladkani72331bc2012-04-01 04:03:45 +00001206{
1207 if (rt6_need_strict(&fl6->daddr) && dev->type != ARPHRD_PIMREG)
1208 flags |= RT6_LOOKUP_F_IFACE;
1209
1210 return fib6_rule_lookup(net, fl6, flags, ip6_pol_route_input);
1211}
Mahesh Bandeward409b842016-09-16 12:59:08 -07001212EXPORT_SYMBOL_GPL(ip6_route_input_lookup);
Shmulik Ladkani72331bc2012-04-01 04:03:45 +00001213
Jakub Sitnicki23aebda2017-08-23 09:58:29 +02001214static void ip6_multipath_l3_keys(const struct sk_buff *skb,
1215 struct flow_keys *keys)
1216{
1217 const struct ipv6hdr *outer_iph = ipv6_hdr(skb);
1218 const struct ipv6hdr *key_iph = outer_iph;
1219 const struct ipv6hdr *inner_iph;
1220 const struct icmp6hdr *icmph;
1221 struct ipv6hdr _inner_iph;
1222
1223 if (likely(outer_iph->nexthdr != IPPROTO_ICMPV6))
1224 goto out;
1225
1226 icmph = icmp6_hdr(skb);
1227 if (icmph->icmp6_type != ICMPV6_DEST_UNREACH &&
1228 icmph->icmp6_type != ICMPV6_PKT_TOOBIG &&
1229 icmph->icmp6_type != ICMPV6_TIME_EXCEED &&
1230 icmph->icmp6_type != ICMPV6_PARAMPROB)
1231 goto out;
1232
1233 inner_iph = skb_header_pointer(skb,
1234 skb_transport_offset(skb) + sizeof(*icmph),
1235 sizeof(_inner_iph), &_inner_iph);
1236 if (!inner_iph)
1237 goto out;
1238
1239 key_iph = inner_iph;
1240out:
1241 memset(keys, 0, sizeof(*keys));
1242 keys->control.addr_type = FLOW_DISSECTOR_KEY_IPV6_ADDRS;
1243 keys->addrs.v6addrs.src = key_iph->saddr;
1244 keys->addrs.v6addrs.dst = key_iph->daddr;
1245 keys->tags.flow_label = ip6_flowinfo(key_iph);
1246 keys->basic.ip_proto = key_iph->nexthdr;
1247}
1248
1249/* if skb is set it will be used and fl6 can be NULL */
1250u32 rt6_multipath_hash(const struct flowi6 *fl6, const struct sk_buff *skb)
1251{
1252 struct flow_keys hash_keys;
1253
1254 if (skb) {
1255 ip6_multipath_l3_keys(skb, &hash_keys);
1256 return flow_hash_from_keys(&hash_keys);
1257 }
1258
1259 return get_hash_from_flowi6(fl6);
1260}
1261
Thomas Grafc71099a2006-08-04 23:20:06 -07001262void ip6_route_input(struct sk_buff *skb)
1263{
Eric Dumazetb71d1d42011-04-22 04:53:02 +00001264 const struct ipv6hdr *iph = ipv6_hdr(skb);
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001265 struct net *net = dev_net(skb->dev);
Thomas Grafadaa70b2006-10-13 15:01:03 -07001266 int flags = RT6_LOOKUP_F_HAS_SADDR;
Jiri Benc904af042015-08-20 13:56:31 +02001267 struct ip_tunnel_info *tun_info;
David S. Miller4c9483b2011-03-12 16:22:43 -05001268 struct flowi6 fl6 = {
David Aherne0d56fd2016-09-10 12:09:57 -07001269 .flowi6_iif = skb->dev->ifindex,
David S. Miller4c9483b2011-03-12 16:22:43 -05001270 .daddr = iph->daddr,
1271 .saddr = iph->saddr,
YOSHIFUJI Hideaki / 吉藤英明6502ca52013-01-13 05:01:51 +00001272 .flowlabel = ip6_flowinfo(iph),
David S. Miller4c9483b2011-03-12 16:22:43 -05001273 .flowi6_mark = skb->mark,
1274 .flowi6_proto = iph->nexthdr,
Thomas Grafc71099a2006-08-04 23:20:06 -07001275 };
Thomas Grafadaa70b2006-10-13 15:01:03 -07001276
Jiri Benc904af042015-08-20 13:56:31 +02001277 tun_info = skb_tunnel_info(skb);
Jiri Benc46fa0622015-08-28 20:48:19 +02001278 if (tun_info && !(tun_info->mode & IP_TUNNEL_INFO_TX))
Jiri Benc904af042015-08-20 13:56:31 +02001279 fl6.flowi6_tun_key.tun_id = tun_info->key.tun_id;
Jakub Sitnicki23aebda2017-08-23 09:58:29 +02001280 if (unlikely(fl6.flowi6_proto == IPPROTO_ICMPV6))
1281 fl6.mp_hash = rt6_multipath_hash(&fl6, skb);
Jiri Benc06e9d042015-08-20 13:56:26 +02001282 skb_dst_drop(skb);
Shmulik Ladkani72331bc2012-04-01 04:03:45 +00001283 skb_dst_set(skb, ip6_route_input_lookup(net, skb->dev, &fl6, flags));
Thomas Grafc71099a2006-08-04 23:20:06 -07001284}
1285
Daniel Lezcano8ed67782008-03-04 13:48:30 -08001286static struct rt6_info *ip6_pol_route_output(struct net *net, struct fib6_table *table,
David S. Miller4c9483b2011-03-12 16:22:43 -05001287 struct flowi6 *fl6, int flags)
Thomas Grafc71099a2006-08-04 23:20:06 -07001288{
David S. Miller4c9483b2011-03-12 16:22:43 -05001289 return ip6_pol_route(net, table, fl6->flowi6_oif, fl6, flags);
Thomas Grafc71099a2006-08-04 23:20:06 -07001290}
1291
Paolo Abeni6f21c962016-01-29 12:30:19 +01001292struct dst_entry *ip6_route_output_flags(struct net *net, const struct sock *sk,
1293 struct flowi6 *fl6, int flags)
Thomas Grafc71099a2006-08-04 23:20:06 -07001294{
David Ahernd46a9d62015-10-21 08:42:22 -07001295 bool any_src;
Thomas Grafc71099a2006-08-04 23:20:06 -07001296
David Ahern4c1feac2016-09-10 12:09:56 -07001297 if (rt6_need_strict(&fl6->daddr)) {
1298 struct dst_entry *dst;
1299
1300 dst = l3mdev_link_scope_lookup(net, fl6);
1301 if (dst)
1302 return dst;
1303 }
David Ahernca254492015-10-12 11:47:10 -07001304
Pavel Emelyanov1fb94892012-08-08 21:53:36 +00001305 fl6->flowi6_iif = LOOPBACK_IFINDEX;
David McCullough4dc27d1c2012-06-25 15:42:26 +00001306
David Ahernd46a9d62015-10-21 08:42:22 -07001307 any_src = ipv6_addr_any(&fl6->saddr);
David Ahern741a11d2015-09-28 10:12:13 -07001308 if ((sk && sk->sk_bound_dev_if) || rt6_need_strict(&fl6->daddr) ||
David Ahernd46a9d62015-10-21 08:42:22 -07001309 (fl6->flowi6_oif && any_src))
YOSHIFUJI Hideaki77d16f42006-08-23 17:25:05 -07001310 flags |= RT6_LOOKUP_F_IFACE;
Thomas Grafc71099a2006-08-04 23:20:06 -07001311
David Ahernd46a9d62015-10-21 08:42:22 -07001312 if (!any_src)
Thomas Grafadaa70b2006-10-13 15:01:03 -07001313 flags |= RT6_LOOKUP_F_HAS_SADDR;
YOSHIFUJI Hideaki / 吉藤英明0c9a2ac2010-03-07 00:14:44 +00001314 else if (sk)
1315 flags |= rt6_srcprefs2flags(inet6_sk(sk)->srcprefs);
Thomas Grafadaa70b2006-10-13 15:01:03 -07001316
David S. Miller4c9483b2011-03-12 16:22:43 -05001317 return fib6_rule_lookup(net, fl6, flags, ip6_pol_route_output);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318}
Paolo Abeni6f21c962016-01-29 12:30:19 +01001319EXPORT_SYMBOL_GPL(ip6_route_output_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320
David S. Miller2774c132011-03-01 14:59:04 -08001321struct dst_entry *ip6_blackhole_route(struct net *net, struct dst_entry *dst_orig)
David S. Miller14e50e52007-05-24 18:17:54 -07001322{
David S. Miller5c1e6aa2011-04-28 14:13:38 -07001323 struct rt6_info *rt, *ort = (struct rt6_info *) dst_orig;
Wei Wang1dbe32522017-06-17 10:42:26 -07001324 struct net_device *loopback_dev = net->loopback_dev;
David S. Miller14e50e52007-05-24 18:17:54 -07001325 struct dst_entry *new = NULL;
1326
Wei Wang1dbe32522017-06-17 10:42:26 -07001327 rt = dst_alloc(&ip6_dst_blackhole_ops, loopback_dev, 1,
Wei Wangb2a9c0e2017-06-17 10:42:41 -07001328 DST_OBSOLETE_NONE, 0);
David S. Miller14e50e52007-05-24 18:17:54 -07001329 if (rt) {
Martin KaFai Lau0a1f5962015-10-15 16:39:58 -07001330 rt6_info_init(rt);
1331
Changli Gaod8d1f302010-06-10 23:31:35 -07001332 new = &rt->dst;
David S. Miller14e50e52007-05-24 18:17:54 -07001333 new->__use = 1;
Herbert Xu352e5122007-11-13 21:34:06 -08001334 new->input = dst_discard;
Eric W. Biedermanede20592015-10-07 16:48:47 -05001335 new->output = dst_discard_out;
David S. Miller14e50e52007-05-24 18:17:54 -07001336
Martin KaFai Lau0a1f5962015-10-15 16:39:58 -07001337 dst_copy_metrics(new, &ort->dst);
David S. Miller14e50e52007-05-24 18:17:54 -07001338
Wei Wang1dbe32522017-06-17 10:42:26 -07001339 rt->rt6i_idev = in6_dev_get(loopback_dev);
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001340 rt->rt6i_gateway = ort->rt6i_gateway;
Martin KaFai Lau0a1f5962015-10-15 16:39:58 -07001341 rt->rt6i_flags = ort->rt6i_flags & ~RTF_PCPU;
David S. Miller14e50e52007-05-24 18:17:54 -07001342 rt->rt6i_metric = 0;
1343
1344 memcpy(&rt->rt6i_dst, &ort->rt6i_dst, sizeof(struct rt6key));
1345#ifdef CONFIG_IPV6_SUBTREES
1346 memcpy(&rt->rt6i_src, &ort->rt6i_src, sizeof(struct rt6key));
1347#endif
David S. Miller14e50e52007-05-24 18:17:54 -07001348 }
1349
David S. Miller69ead7a2011-03-01 14:45:33 -08001350 dst_release(dst_orig);
1351 return new ? new : ERR_PTR(-ENOMEM);
David S. Miller14e50e52007-05-24 18:17:54 -07001352}
David S. Miller14e50e52007-05-24 18:17:54 -07001353
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354/*
1355 * Destination cache support functions
1356 */
1357
Martin KaFai Lau4b32b5a2015-04-28 13:03:06 -07001358static void rt6_dst_from_metrics_check(struct rt6_info *rt)
1359{
1360 if (rt->dst.from &&
1361 dst_metrics_ptr(&rt->dst) != dst_metrics_ptr(rt->dst.from))
1362 dst_init_metrics(&rt->dst, dst_metrics_ptr(rt->dst.from), true);
1363}
1364
Martin KaFai Lau3da59bd2015-05-22 20:56:03 -07001365static struct dst_entry *rt6_check(struct rt6_info *rt, u32 cookie)
1366{
Steffen Klassert36143642017-08-25 09:05:42 +02001367 u32 rt_cookie = 0;
Wei Wangc5cff852017-08-21 09:47:10 -07001368
1369 if (!rt6_get_cookie_safe(rt, &rt_cookie) || rt_cookie != cookie)
Martin KaFai Lau3da59bd2015-05-22 20:56:03 -07001370 return NULL;
1371
1372 if (rt6_check_expired(rt))
1373 return NULL;
1374
1375 return &rt->dst;
1376}
1377
1378static struct dst_entry *rt6_dst_from_check(struct rt6_info *rt, u32 cookie)
1379{
Martin KaFai Lau5973fb12015-11-11 11:51:07 -08001380 if (!__rt6_check_expired(rt) &&
1381 rt->dst.obsolete == DST_OBSOLETE_FORCE_CHK &&
Martin KaFai Lau3da59bd2015-05-22 20:56:03 -07001382 rt6_check((struct rt6_info *)(rt->dst.from), cookie))
1383 return &rt->dst;
1384 else
1385 return NULL;
1386}
1387
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388static struct dst_entry *ip6_dst_check(struct dst_entry *dst, u32 cookie)
1389{
1390 struct rt6_info *rt;
1391
1392 rt = (struct rt6_info *) dst;
1393
Nicolas Dichtel6f3118b2012-09-10 22:09:46 +00001394 /* All IPV6 dsts are created with ->obsolete set to the value
1395 * DST_OBSOLETE_FORCE_CHK which forces validation calls down
1396 * into this function always.
1397 */
Hannes Frederic Sowae3bc10b2013-10-24 07:48:24 +02001398
Martin KaFai Lau4b32b5a2015-04-28 13:03:06 -07001399 rt6_dst_from_metrics_check(rt);
1400
Martin KaFai Lau02bcf4e2015-11-11 11:51:08 -08001401 if (rt->rt6i_flags & RTF_PCPU ||
Wei Wanga4c2fd72017-06-17 10:42:42 -07001402 (unlikely(!list_empty(&rt->rt6i_uncached)) && rt->dst.from))
Martin KaFai Lau3da59bd2015-05-22 20:56:03 -07001403 return rt6_dst_from_check(rt, cookie);
1404 else
1405 return rt6_check(rt, cookie);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406}
1407
1408static struct dst_entry *ip6_negative_advice(struct dst_entry *dst)
1409{
1410 struct rt6_info *rt = (struct rt6_info *) dst;
1411
1412 if (rt) {
YOSHIFUJI Hideaki / 吉藤英明54c1a852010-03-28 07:15:45 +00001413 if (rt->rt6i_flags & RTF_CACHE) {
1414 if (rt6_check_expired(rt)) {
1415 ip6_del_rt(rt);
1416 dst = NULL;
1417 }
1418 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419 dst_release(dst);
YOSHIFUJI Hideaki / 吉藤英明54c1a852010-03-28 07:15:45 +00001420 dst = NULL;
1421 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422 }
YOSHIFUJI Hideaki / 吉藤英明54c1a852010-03-28 07:15:45 +00001423 return dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424}
1425
1426static void ip6_link_failure(struct sk_buff *skb)
1427{
1428 struct rt6_info *rt;
1429
Alexey Dobriyan3ffe5332010-02-18 08:25:24 +00001430 icmpv6_send(skb, ICMPV6_DEST_UNREACH, ICMPV6_ADDR_UNREACH, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431
Eric Dumazetadf30902009-06-02 05:19:30 +00001432 rt = (struct rt6_info *) skb_dst(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433 if (rt) {
Hannes Frederic Sowa1eb4f752013-07-10 23:00:57 +02001434 if (rt->rt6i_flags & RTF_CACHE) {
Wei Wangad65a2f2017-06-17 10:42:35 -07001435 if (dst_hold_safe(&rt->dst))
1436 ip6_del_rt(rt);
Wei Wangc5cff852017-08-21 09:47:10 -07001437 } else {
1438 struct fib6_node *fn;
1439
1440 rcu_read_lock();
1441 fn = rcu_dereference(rt->rt6i_node);
1442 if (fn && (rt->rt6i_flags & RTF_DEFAULT))
1443 fn->fn_sernum = -1;
1444 rcu_read_unlock();
Hannes Frederic Sowa1eb4f752013-07-10 23:00:57 +02001445 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446 }
1447}
1448
Martin KaFai Lau45e4fd22015-05-22 20:56:00 -07001449static void rt6_do_update_pmtu(struct rt6_info *rt, u32 mtu)
1450{
1451 struct net *net = dev_net(rt->dst.dev);
1452
1453 rt->rt6i_flags |= RTF_MODIFIED;
1454 rt->rt6i_pmtu = mtu;
1455 rt6_update_expires(rt, net->ipv6.sysctl.ip6_rt_mtu_expires);
1456}
1457
Martin KaFai Lau0d3f6d22015-11-11 11:51:06 -08001458static bool rt6_cache_allowed_for_pmtu(const struct rt6_info *rt)
1459{
1460 return !(rt->rt6i_flags & RTF_CACHE) &&
Wei Wang4e587ea2017-08-25 15:03:10 -07001461 (rt->rt6i_flags & RTF_PCPU ||
1462 rcu_access_pointer(rt->rt6i_node));
Martin KaFai Lau0d3f6d22015-11-11 11:51:06 -08001463}
1464
Martin KaFai Lau45e4fd22015-05-22 20:56:00 -07001465static void __ip6_rt_update_pmtu(struct dst_entry *dst, const struct sock *sk,
1466 const struct ipv6hdr *iph, u32 mtu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467{
Julian Anastasov0dec8792017-02-06 23:14:16 +02001468 const struct in6_addr *daddr, *saddr;
Ian Morris67ba4152014-08-24 21:53:10 +01001469 struct rt6_info *rt6 = (struct rt6_info *)dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470
Martin KaFai Lau45e4fd22015-05-22 20:56:00 -07001471 if (rt6->rt6i_flags & RTF_LOCAL)
1472 return;
1473
Xin Long19bda362016-10-28 18:18:01 +08001474 if (dst_metric_locked(dst, RTAX_MTU))
1475 return;
1476
Julian Anastasov0dec8792017-02-06 23:14:16 +02001477 if (iph) {
1478 daddr = &iph->daddr;
1479 saddr = &iph->saddr;
1480 } else if (sk) {
1481 daddr = &sk->sk_v6_daddr;
1482 saddr = &inet6_sk(sk)->saddr;
1483 } else {
1484 daddr = NULL;
1485 saddr = NULL;
1486 }
1487 dst_confirm_neigh(dst, daddr);
Martin KaFai Lau45e4fd22015-05-22 20:56:00 -07001488 mtu = max_t(u32, mtu, IPV6_MIN_MTU);
1489 if (mtu >= dst_mtu(dst))
1490 return;
David S. Miller81aded22012-06-15 14:54:11 -07001491
Martin KaFai Lau0d3f6d22015-11-11 11:51:06 -08001492 if (!rt6_cache_allowed_for_pmtu(rt6)) {
Martin KaFai Lau45e4fd22015-05-22 20:56:00 -07001493 rt6_do_update_pmtu(rt6, mtu);
Julian Anastasov0dec8792017-02-06 23:14:16 +02001494 } else if (daddr) {
Martin KaFai Lau45e4fd22015-05-22 20:56:00 -07001495 struct rt6_info *nrt6;
Hagen Paul Pfeifer9d289712015-01-15 22:34:25 +01001496
Martin KaFai Lau45e4fd22015-05-22 20:56:00 -07001497 nrt6 = ip6_rt_cache_alloc(rt6, daddr, saddr);
1498 if (nrt6) {
1499 rt6_do_update_pmtu(nrt6, mtu);
1500
1501 /* ip6_ins_rt(nrt6) will bump the
1502 * rt6->rt6i_node->fn_sernum
1503 * which will fail the next rt6_check() and
1504 * invalidate the sk->sk_dst_cache.
1505 */
1506 ip6_ins_rt(nrt6);
Wei Wang1cfb71e2017-06-17 10:42:33 -07001507 /* Release the reference taken in
1508 * ip6_rt_cache_alloc()
1509 */
1510 dst_release(&nrt6->dst);
Martin KaFai Lau45e4fd22015-05-22 20:56:00 -07001511 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512 }
1513}
1514
Martin KaFai Lau45e4fd22015-05-22 20:56:00 -07001515static void ip6_rt_update_pmtu(struct dst_entry *dst, struct sock *sk,
1516 struct sk_buff *skb, u32 mtu)
1517{
1518 __ip6_rt_update_pmtu(dst, sk, skb ? ipv6_hdr(skb) : NULL, mtu);
1519}
1520
David S. Miller42ae66c2012-06-15 20:01:57 -07001521void ip6_update_pmtu(struct sk_buff *skb, struct net *net, __be32 mtu,
Lorenzo Colittie2d118a2016-11-04 02:23:43 +09001522 int oif, u32 mark, kuid_t uid)
David S. Miller81aded22012-06-15 14:54:11 -07001523{
1524 const struct ipv6hdr *iph = (struct ipv6hdr *) skb->data;
1525 struct dst_entry *dst;
1526 struct flowi6 fl6;
1527
1528 memset(&fl6, 0, sizeof(fl6));
1529 fl6.flowi6_oif = oif;
Lorenzo Colitti1b3c61d2014-05-13 10:17:34 -07001530 fl6.flowi6_mark = mark ? mark : IP6_REPLY_MARK(net, skb->mark);
David S. Miller81aded22012-06-15 14:54:11 -07001531 fl6.daddr = iph->daddr;
1532 fl6.saddr = iph->saddr;
YOSHIFUJI Hideaki / 吉藤英明6502ca52013-01-13 05:01:51 +00001533 fl6.flowlabel = ip6_flowinfo(iph);
Lorenzo Colittie2d118a2016-11-04 02:23:43 +09001534 fl6.flowi6_uid = uid;
David S. Miller81aded22012-06-15 14:54:11 -07001535
1536 dst = ip6_route_output(net, NULL, &fl6);
1537 if (!dst->error)
Martin KaFai Lau45e4fd22015-05-22 20:56:00 -07001538 __ip6_rt_update_pmtu(dst, NULL, iph, ntohl(mtu));
David S. Miller81aded22012-06-15 14:54:11 -07001539 dst_release(dst);
1540}
1541EXPORT_SYMBOL_GPL(ip6_update_pmtu);
1542
1543void ip6_sk_update_pmtu(struct sk_buff *skb, struct sock *sk, __be32 mtu)
1544{
Martin KaFai Lau33c162a2016-04-11 15:29:36 -07001545 struct dst_entry *dst;
1546
David S. Miller81aded22012-06-15 14:54:11 -07001547 ip6_update_pmtu(skb, sock_net(sk), mtu,
Lorenzo Colittie2d118a2016-11-04 02:23:43 +09001548 sk->sk_bound_dev_if, sk->sk_mark, sk->sk_uid);
Martin KaFai Lau33c162a2016-04-11 15:29:36 -07001549
1550 dst = __sk_dst_get(sk);
1551 if (!dst || !dst->obsolete ||
1552 dst->ops->check(dst, inet6_sk(sk)->dst_cookie))
1553 return;
1554
1555 bh_lock_sock(sk);
1556 if (!sock_owned_by_user(sk) && !ipv6_addr_v4mapped(&sk->sk_v6_daddr))
1557 ip6_datagram_dst_update(sk, false);
1558 bh_unlock_sock(sk);
David S. Miller81aded22012-06-15 14:54:11 -07001559}
1560EXPORT_SYMBOL_GPL(ip6_sk_update_pmtu);
1561
Duan Jiongb55b76b2013-09-04 19:44:21 +08001562/* Handle redirects */
1563struct ip6rd_flowi {
1564 struct flowi6 fl6;
1565 struct in6_addr gateway;
1566};
1567
1568static struct rt6_info *__ip6_route_redirect(struct net *net,
1569 struct fib6_table *table,
1570 struct flowi6 *fl6,
1571 int flags)
1572{
1573 struct ip6rd_flowi *rdfl = (struct ip6rd_flowi *)fl6;
1574 struct rt6_info *rt;
1575 struct fib6_node *fn;
1576
1577 /* Get the "current" route for this destination and
Alexander Alemayhu67c408c2017-01-07 23:53:00 +01001578 * check if the redirect has come from appropriate router.
Duan Jiongb55b76b2013-09-04 19:44:21 +08001579 *
1580 * RFC 4861 specifies that redirects should only be
1581 * accepted if they come from the nexthop to the target.
1582 * Due to the way the routes are chosen, this notion
1583 * is a bit fuzzy and one might need to check all possible
1584 * routes.
1585 */
1586
1587 read_lock_bh(&table->tb6_lock);
1588 fn = fib6_lookup(&table->tb6_root, &fl6->daddr, &fl6->saddr);
1589restart:
1590 for (rt = fn->leaf; rt; rt = rt->dst.rt6_next) {
1591 if (rt6_check_expired(rt))
1592 continue;
1593 if (rt->dst.error)
1594 break;
1595 if (!(rt->rt6i_flags & RTF_GATEWAY))
1596 continue;
1597 if (fl6->flowi6_oif != rt->dst.dev->ifindex)
1598 continue;
1599 if (!ipv6_addr_equal(&rdfl->gateway, &rt->rt6i_gateway))
1600 continue;
1601 break;
1602 }
1603
1604 if (!rt)
1605 rt = net->ipv6.ip6_null_entry;
1606 else if (rt->dst.error) {
1607 rt = net->ipv6.ip6_null_entry;
Martin KaFai Laub0a1ba52015-01-20 19:16:02 -08001608 goto out;
1609 }
1610
1611 if (rt == net->ipv6.ip6_null_entry) {
Martin KaFai Laua3c00e42014-10-20 13:42:43 -07001612 fn = fib6_backtrack(fn, &fl6->saddr);
1613 if (fn)
1614 goto restart;
Duan Jiongb55b76b2013-09-04 19:44:21 +08001615 }
Martin KaFai Laua3c00e42014-10-20 13:42:43 -07001616
Martin KaFai Laub0a1ba52015-01-20 19:16:02 -08001617out:
Duan Jiongb55b76b2013-09-04 19:44:21 +08001618 dst_hold(&rt->dst);
1619
1620 read_unlock_bh(&table->tb6_lock);
1621
David Ahernb8115802015-11-19 12:24:22 -08001622 trace_fib6_table_lookup(net, rt, table->tb6_id, fl6);
Duan Jiongb55b76b2013-09-04 19:44:21 +08001623 return rt;
1624};
1625
1626static struct dst_entry *ip6_route_redirect(struct net *net,
1627 const struct flowi6 *fl6,
1628 const struct in6_addr *gateway)
1629{
1630 int flags = RT6_LOOKUP_F_HAS_SADDR;
1631 struct ip6rd_flowi rdfl;
1632
1633 rdfl.fl6 = *fl6;
1634 rdfl.gateway = *gateway;
1635
1636 return fib6_rule_lookup(net, &rdfl.fl6,
1637 flags, __ip6_route_redirect);
1638}
1639
Lorenzo Colittie2d118a2016-11-04 02:23:43 +09001640void ip6_redirect(struct sk_buff *skb, struct net *net, int oif, u32 mark,
1641 kuid_t uid)
David S. Miller3a5ad2e2012-07-12 00:08:07 -07001642{
1643 const struct ipv6hdr *iph = (struct ipv6hdr *) skb->data;
1644 struct dst_entry *dst;
1645 struct flowi6 fl6;
1646
1647 memset(&fl6, 0, sizeof(fl6));
Julian Anastasove374c612014-04-28 10:51:56 +03001648 fl6.flowi6_iif = LOOPBACK_IFINDEX;
David S. Miller3a5ad2e2012-07-12 00:08:07 -07001649 fl6.flowi6_oif = oif;
1650 fl6.flowi6_mark = mark;
David S. Miller3a5ad2e2012-07-12 00:08:07 -07001651 fl6.daddr = iph->daddr;
1652 fl6.saddr = iph->saddr;
YOSHIFUJI Hideaki / 吉藤英明6502ca52013-01-13 05:01:51 +00001653 fl6.flowlabel = ip6_flowinfo(iph);
Lorenzo Colittie2d118a2016-11-04 02:23:43 +09001654 fl6.flowi6_uid = uid;
David S. Miller3a5ad2e2012-07-12 00:08:07 -07001655
Duan Jiongb55b76b2013-09-04 19:44:21 +08001656 dst = ip6_route_redirect(net, &fl6, &ipv6_hdr(skb)->saddr);
1657 rt6_do_redirect(dst, NULL, skb);
David S. Miller3a5ad2e2012-07-12 00:08:07 -07001658 dst_release(dst);
1659}
1660EXPORT_SYMBOL_GPL(ip6_redirect);
1661
Duan Jiongc92a59e2013-08-22 12:07:35 +08001662void ip6_redirect_no_header(struct sk_buff *skb, struct net *net, int oif,
1663 u32 mark)
1664{
1665 const struct ipv6hdr *iph = ipv6_hdr(skb);
1666 const struct rd_msg *msg = (struct rd_msg *)icmp6_hdr(skb);
1667 struct dst_entry *dst;
1668 struct flowi6 fl6;
1669
1670 memset(&fl6, 0, sizeof(fl6));
Julian Anastasove374c612014-04-28 10:51:56 +03001671 fl6.flowi6_iif = LOOPBACK_IFINDEX;
Duan Jiongc92a59e2013-08-22 12:07:35 +08001672 fl6.flowi6_oif = oif;
1673 fl6.flowi6_mark = mark;
Duan Jiongc92a59e2013-08-22 12:07:35 +08001674 fl6.daddr = msg->dest;
1675 fl6.saddr = iph->daddr;
Lorenzo Colittie2d118a2016-11-04 02:23:43 +09001676 fl6.flowi6_uid = sock_net_uid(net, NULL);
Duan Jiongc92a59e2013-08-22 12:07:35 +08001677
Duan Jiongb55b76b2013-09-04 19:44:21 +08001678 dst = ip6_route_redirect(net, &fl6, &iph->saddr);
1679 rt6_do_redirect(dst, NULL, skb);
Duan Jiongc92a59e2013-08-22 12:07:35 +08001680 dst_release(dst);
1681}
1682
David S. Miller3a5ad2e2012-07-12 00:08:07 -07001683void ip6_sk_redirect(struct sk_buff *skb, struct sock *sk)
1684{
Lorenzo Colittie2d118a2016-11-04 02:23:43 +09001685 ip6_redirect(skb, sock_net(sk), sk->sk_bound_dev_if, sk->sk_mark,
1686 sk->sk_uid);
David S. Miller3a5ad2e2012-07-12 00:08:07 -07001687}
1688EXPORT_SYMBOL_GPL(ip6_sk_redirect);
1689
David S. Miller0dbaee32010-12-13 12:52:14 -08001690static unsigned int ip6_default_advmss(const struct dst_entry *dst)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691{
David S. Miller0dbaee32010-12-13 12:52:14 -08001692 struct net_device *dev = dst->dev;
1693 unsigned int mtu = dst_mtu(dst);
1694 struct net *net = dev_net(dev);
1695
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696 mtu -= sizeof(struct ipv6hdr) + sizeof(struct tcphdr);
1697
Daniel Lezcano55786892008-03-04 13:47:47 -08001698 if (mtu < net->ipv6.sysctl.ip6_rt_min_advmss)
1699 mtu = net->ipv6.sysctl.ip6_rt_min_advmss;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700
1701 /*
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001702 * Maximal non-jumbo IPv6 payload is IPV6_MAXPLEN and
1703 * corresponding MSS is IPV6_MAXPLEN - tcp_header_size.
1704 * IPV6_MAXPLEN is also valid and means: "any MSS,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705 * rely only on pmtu discovery"
1706 */
1707 if (mtu > IPV6_MAXPLEN - sizeof(struct tcphdr))
1708 mtu = IPV6_MAXPLEN;
1709 return mtu;
1710}
1711
Steffen Klassertebb762f2011-11-23 02:12:51 +00001712static unsigned int ip6_mtu(const struct dst_entry *dst)
David S. Millerd33e4552010-12-14 13:01:14 -08001713{
Martin KaFai Lau4b32b5a2015-04-28 13:03:06 -07001714 const struct rt6_info *rt = (const struct rt6_info *)dst;
1715 unsigned int mtu = rt->rt6i_pmtu;
David S. Millerd33e4552010-12-14 13:01:14 -08001716 struct inet6_dev *idev;
Steffen Klassert618f9bc2011-11-23 02:13:31 +00001717
1718 if (mtu)
Eric Dumazet30f78d82014-04-10 21:23:36 -07001719 goto out;
Steffen Klassert618f9bc2011-11-23 02:13:31 +00001720
Martin KaFai Lau4b32b5a2015-04-28 13:03:06 -07001721 mtu = dst_metric_raw(dst, RTAX_MTU);
1722 if (mtu)
1723 goto out;
1724
Steffen Klassert618f9bc2011-11-23 02:13:31 +00001725 mtu = IPV6_MIN_MTU;
David S. Millerd33e4552010-12-14 13:01:14 -08001726
1727 rcu_read_lock();
1728 idev = __in6_dev_get(dst->dev);
1729 if (idev)
1730 mtu = idev->cnf.mtu6;
1731 rcu_read_unlock();
1732
Eric Dumazet30f78d82014-04-10 21:23:36 -07001733out:
Roopa Prabhu14972cb2016-08-24 20:10:43 -07001734 mtu = min_t(unsigned int, mtu, IP6_MAX_MTU);
1735
1736 return mtu - lwtunnel_headroom(dst->lwtstate, mtu);
David S. Millerd33e4552010-12-14 13:01:14 -08001737}
1738
YOSHIFUJI Hideaki3b009442007-12-06 16:11:48 -08001739struct dst_entry *icmp6_dst_alloc(struct net_device *dev,
David S. Miller87a11572011-12-06 17:04:13 -05001740 struct flowi6 *fl6)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741{
David S. Miller87a11572011-12-06 17:04:13 -05001742 struct dst_entry *dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743 struct rt6_info *rt;
1744 struct inet6_dev *idev = in6_dev_get(dev);
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001745 struct net *net = dev_net(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001746
David S. Miller38308472011-12-03 18:02:47 -05001747 if (unlikely(!idev))
Eric Dumazet122bdf62012-03-14 21:13:11 +00001748 return ERR_PTR(-ENODEV);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749
Martin KaFai Lauad706862015-08-14 11:05:52 -07001750 rt = ip6_dst_alloc(net, dev, 0);
David S. Miller38308472011-12-03 18:02:47 -05001751 if (unlikely(!rt)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752 in6_dev_put(idev);
David S. Miller87a11572011-12-06 17:04:13 -05001753 dst = ERR_PTR(-ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001754 goto out;
1755 }
1756
Yan, Zheng8e2ec632011-09-05 21:34:30 +00001757 rt->dst.flags |= DST_HOST;
1758 rt->dst.output = ip6_output;
Julian Anastasov550bab42013-10-20 15:43:04 +03001759 rt->rt6i_gateway = fl6->daddr;
David S. Miller87a11572011-12-06 17:04:13 -05001760 rt->rt6i_dst.addr = fl6->daddr;
Yan, Zheng8e2ec632011-09-05 21:34:30 +00001761 rt->rt6i_dst.plen = 128;
1762 rt->rt6i_idev = idev;
Li RongQing14edd872012-10-24 14:01:18 +08001763 dst_metric_set(&rt->dst, RTAX_HOPLIMIT, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764
Wei Wang587fea72017-06-17 10:42:36 -07001765 /* Add this dst into uncached_list so that rt6_ifdown() can
1766 * do proper release of the net_device
1767 */
1768 rt6_uncached_list_add(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001769
David S. Miller87a11572011-12-06 17:04:13 -05001770 dst = xfrm_lookup(net, &rt->dst, flowi6_to_flowi(fl6), NULL, 0);
1771
Linus Torvalds1da177e2005-04-16 15:20:36 -07001772out:
David S. Miller87a11572011-12-06 17:04:13 -05001773 return dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774}
1775
Daniel Lezcano569d3642008-01-18 03:56:57 -08001776static int ip6_dst_gc(struct dst_ops *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001777{
Alexey Dobriyan86393e52009-08-29 01:34:49 +00001778 struct net *net = container_of(ops, struct net, ipv6.ip6_dst_ops);
Daniel Lezcano7019b782008-03-04 13:50:14 -08001779 int rt_min_interval = net->ipv6.sysctl.ip6_rt_gc_min_interval;
1780 int rt_max_size = net->ipv6.sysctl.ip6_rt_max_size;
1781 int rt_elasticity = net->ipv6.sysctl.ip6_rt_gc_elasticity;
1782 int rt_gc_timeout = net->ipv6.sysctl.ip6_rt_gc_timeout;
1783 unsigned long rt_last_gc = net->ipv6.ip6_rt_last_gc;
Eric Dumazetfc66f952010-10-08 06:37:34 +00001784 int entries;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785
Eric Dumazetfc66f952010-10-08 06:37:34 +00001786 entries = dst_entries_get_fast(ops);
Michal Kubeček49a18d82013-08-01 10:04:24 +02001787 if (time_after(rt_last_gc + rt_min_interval, jiffies) &&
Eric Dumazetfc66f952010-10-08 06:37:34 +00001788 entries <= rt_max_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001789 goto out;
1790
Benjamin Thery6891a342008-03-04 13:49:47 -08001791 net->ipv6.ip6_rt_gc_expire++;
Li RongQing14956642014-05-19 17:30:28 +08001792 fib6_run_gc(net->ipv6.ip6_rt_gc_expire, net, true);
Eric Dumazetfc66f952010-10-08 06:37:34 +00001793 entries = dst_entries_get_slow(ops);
1794 if (entries < ops->gc_thresh)
Daniel Lezcano7019b782008-03-04 13:50:14 -08001795 net->ipv6.ip6_rt_gc_expire = rt_gc_timeout>>1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001796out:
Daniel Lezcano7019b782008-03-04 13:50:14 -08001797 net->ipv6.ip6_rt_gc_expire -= net->ipv6.ip6_rt_gc_expire>>rt_elasticity;
Eric Dumazetfc66f952010-10-08 06:37:34 +00001798 return entries > rt_max_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799}
1800
Florian Westphale715b6d2015-01-05 23:57:44 +01001801static int ip6_convert_metrics(struct mx6_config *mxc,
1802 const struct fib6_config *cfg)
1803{
Daniel Borkmannc3a8d942015-08-31 15:58:47 +02001804 bool ecn_ca = false;
Florian Westphale715b6d2015-01-05 23:57:44 +01001805 struct nlattr *nla;
1806 int remaining;
1807 u32 *mp;
1808
Ian Morris63159f22015-03-29 14:00:04 +01001809 if (!cfg->fc_mx)
Florian Westphale715b6d2015-01-05 23:57:44 +01001810 return 0;
1811
1812 mp = kzalloc(sizeof(u32) * RTAX_MAX, GFP_KERNEL);
1813 if (unlikely(!mp))
1814 return -ENOMEM;
1815
1816 nla_for_each_attr(nla, cfg->fc_mx, cfg->fc_mx_len, remaining) {
1817 int type = nla_type(nla);
Daniel Borkmann1bb14802015-08-31 15:58:45 +02001818 u32 val;
Florian Westphale715b6d2015-01-05 23:57:44 +01001819
Daniel Borkmann1bb14802015-08-31 15:58:45 +02001820 if (!type)
1821 continue;
1822 if (unlikely(type > RTAX_MAX))
1823 goto err;
Daniel Borkmannea697632015-01-05 23:57:47 +01001824
Daniel Borkmann1bb14802015-08-31 15:58:45 +02001825 if (type == RTAX_CC_ALGO) {
1826 char tmp[TCP_CA_NAME_MAX];
1827
1828 nla_strlcpy(tmp, nla, sizeof(tmp));
Daniel Borkmannc3a8d942015-08-31 15:58:47 +02001829 val = tcp_ca_get_key_by_name(tmp, &ecn_ca);
Daniel Borkmann1bb14802015-08-31 15:58:45 +02001830 if (val == TCP_CA_UNSPEC)
Florian Westphale715b6d2015-01-05 23:57:44 +01001831 goto err;
Daniel Borkmann1bb14802015-08-31 15:58:45 +02001832 } else {
1833 val = nla_get_u32(nla);
Florian Westphale715b6d2015-01-05 23:57:44 +01001834 }
Paolo Abeni626abd52016-05-13 18:33:41 +02001835 if (type == RTAX_HOPLIMIT && val > 255)
1836 val = 255;
Daniel Borkmannb8d3e412015-08-31 15:58:46 +02001837 if (type == RTAX_FEATURES && (val & ~RTAX_FEATURE_MASK))
1838 goto err;
Daniel Borkmann1bb14802015-08-31 15:58:45 +02001839
1840 mp[type - 1] = val;
1841 __set_bit(type - 1, mxc->mx_valid);
Florian Westphale715b6d2015-01-05 23:57:44 +01001842 }
1843
Daniel Borkmannc3a8d942015-08-31 15:58:47 +02001844 if (ecn_ca) {
1845 __set_bit(RTAX_FEATURES - 1, mxc->mx_valid);
1846 mp[RTAX_FEATURES - 1] |= DST_FEATURE_ECN_CA;
1847 }
Florian Westphale715b6d2015-01-05 23:57:44 +01001848
Daniel Borkmannc3a8d942015-08-31 15:58:47 +02001849 mxc->mx = mp;
Florian Westphale715b6d2015-01-05 23:57:44 +01001850 return 0;
1851 err:
1852 kfree(mp);
1853 return -EINVAL;
1854}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855
David Ahern8c145862016-04-24 21:26:04 -07001856static struct rt6_info *ip6_nh_lookup_table(struct net *net,
1857 struct fib6_config *cfg,
1858 const struct in6_addr *gw_addr)
1859{
1860 struct flowi6 fl6 = {
1861 .flowi6_oif = cfg->fc_ifindex,
1862 .daddr = *gw_addr,
1863 .saddr = cfg->fc_prefsrc,
1864 };
1865 struct fib6_table *table;
1866 struct rt6_info *rt;
David Ahernd5d32e42016-10-24 12:27:23 -07001867 int flags = RT6_LOOKUP_F_IFACE | RT6_LOOKUP_F_IGNORE_LINKSTATE;
David Ahern8c145862016-04-24 21:26:04 -07001868
1869 table = fib6_get_table(net, cfg->fc_table);
1870 if (!table)
1871 return NULL;
1872
1873 if (!ipv6_addr_any(&cfg->fc_prefsrc))
1874 flags |= RT6_LOOKUP_F_HAS_SADDR;
1875
1876 rt = ip6_pol_route(net, table, cfg->fc_ifindex, &fl6, flags);
1877
1878 /* if table lookup failed, fall back to full lookup */
1879 if (rt == net->ipv6.ip6_null_entry) {
1880 ip6_rt_put(rt);
1881 rt = NULL;
1882 }
1883
1884 return rt;
1885}
1886
David Ahern333c4302017-05-21 10:12:04 -06001887static struct rt6_info *ip6_route_info_create(struct fib6_config *cfg,
1888 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001889{
Daniel Lezcano55786892008-03-04 13:47:47 -08001890 struct net *net = cfg->fc_nlinfo.nl_net;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001891 struct rt6_info *rt = NULL;
1892 struct net_device *dev = NULL;
1893 struct inet6_dev *idev = NULL;
Thomas Grafc71099a2006-08-04 23:20:06 -07001894 struct fib6_table *table;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001895 int addr_type;
Roopa Prabhu8c5b83f2015-10-10 08:26:36 -07001896 int err = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897
David Ahern557c44b2017-04-19 14:19:43 -07001898 /* RTF_PCPU is an internal flag; can not be set by userspace */
David Ahernd5d531c2017-05-21 10:12:05 -06001899 if (cfg->fc_flags & RTF_PCPU) {
1900 NL_SET_ERR_MSG(extack, "Userspace can not set RTF_PCPU");
David Ahern557c44b2017-04-19 14:19:43 -07001901 goto out;
David Ahernd5d531c2017-05-21 10:12:05 -06001902 }
David Ahern557c44b2017-04-19 14:19:43 -07001903
David Ahernd5d531c2017-05-21 10:12:05 -06001904 if (cfg->fc_dst_len > 128) {
1905 NL_SET_ERR_MSG(extack, "Invalid prefix length");
Roopa Prabhu8c5b83f2015-10-10 08:26:36 -07001906 goto out;
David Ahernd5d531c2017-05-21 10:12:05 -06001907 }
1908 if (cfg->fc_src_len > 128) {
1909 NL_SET_ERR_MSG(extack, "Invalid source address length");
1910 goto out;
1911 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912#ifndef CONFIG_IPV6_SUBTREES
David Ahernd5d531c2017-05-21 10:12:05 -06001913 if (cfg->fc_src_len) {
1914 NL_SET_ERR_MSG(extack,
1915 "Specifying source address requires IPV6_SUBTREES to be enabled");
Roopa Prabhu8c5b83f2015-10-10 08:26:36 -07001916 goto out;
David Ahernd5d531c2017-05-21 10:12:05 -06001917 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001918#endif
Thomas Graf86872cb2006-08-22 00:01:08 -07001919 if (cfg->fc_ifindex) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920 err = -ENODEV;
Daniel Lezcano55786892008-03-04 13:47:47 -08001921 dev = dev_get_by_index(net, cfg->fc_ifindex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922 if (!dev)
1923 goto out;
1924 idev = in6_dev_get(dev);
1925 if (!idev)
1926 goto out;
1927 }
1928
Thomas Graf86872cb2006-08-22 00:01:08 -07001929 if (cfg->fc_metric == 0)
1930 cfg->fc_metric = IP6_RT_PRIO_USER;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931
Matti Vaittinend71314b2011-11-14 00:14:49 +00001932 err = -ENOBUFS;
David S. Miller38308472011-12-03 18:02:47 -05001933 if (cfg->fc_nlinfo.nlh &&
1934 !(cfg->fc_nlinfo.nlh->nlmsg_flags & NLM_F_CREATE)) {
Matti Vaittinend71314b2011-11-14 00:14:49 +00001935 table = fib6_get_table(net, cfg->fc_table);
David S. Miller38308472011-12-03 18:02:47 -05001936 if (!table) {
Joe Perchesf3213832012-05-15 14:11:53 +00001937 pr_warn("NLM_F_CREATE should be specified when creating new route\n");
Matti Vaittinend71314b2011-11-14 00:14:49 +00001938 table = fib6_new_table(net, cfg->fc_table);
1939 }
1940 } else {
1941 table = fib6_new_table(net, cfg->fc_table);
1942 }
David S. Miller38308472011-12-03 18:02:47 -05001943
1944 if (!table)
Thomas Grafc71099a2006-08-04 23:20:06 -07001945 goto out;
Thomas Grafc71099a2006-08-04 23:20:06 -07001946
Martin KaFai Lauad706862015-08-14 11:05:52 -07001947 rt = ip6_dst_alloc(net, NULL,
1948 (cfg->fc_flags & RTF_ADDRCONF) ? 0 : DST_NOCOUNT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949
David S. Miller38308472011-12-03 18:02:47 -05001950 if (!rt) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951 err = -ENOMEM;
1952 goto out;
1953 }
1954
Gao feng1716a962012-04-06 00:13:10 +00001955 if (cfg->fc_flags & RTF_EXPIRES)
1956 rt6_set_expires(rt, jiffies +
1957 clock_t_to_jiffies(cfg->fc_expires));
1958 else
1959 rt6_clean_expires(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001960
Thomas Graf86872cb2006-08-22 00:01:08 -07001961 if (cfg->fc_protocol == RTPROT_UNSPEC)
1962 cfg->fc_protocol = RTPROT_BOOT;
1963 rt->rt6i_protocol = cfg->fc_protocol;
1964
1965 addr_type = ipv6_addr_type(&cfg->fc_dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966
1967 if (addr_type & IPV6_ADDR_MULTICAST)
Changli Gaod8d1f302010-06-10 23:31:35 -07001968 rt->dst.input = ip6_mc_input;
Maciej Żenczykowskiab79ad12010-09-27 00:07:02 +00001969 else if (cfg->fc_flags & RTF_LOCAL)
1970 rt->dst.input = ip6_input;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971 else
Changli Gaod8d1f302010-06-10 23:31:35 -07001972 rt->dst.input = ip6_forward;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001973
Changli Gaod8d1f302010-06-10 23:31:35 -07001974 rt->dst.output = ip6_output;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001975
Roopa Prabhu19e42e42015-07-21 10:43:48 +02001976 if (cfg->fc_encap) {
1977 struct lwtunnel_state *lwtstate;
1978
David Ahern30357d72017-01-30 12:07:37 -08001979 err = lwtunnel_build_state(cfg->fc_encap_type,
Tom Herbert127eb7c2015-08-24 09:45:41 -07001980 cfg->fc_encap, AF_INET6, cfg,
David Ahern9ae28722017-05-27 16:19:28 -06001981 &lwtstate, extack);
Roopa Prabhu19e42e42015-07-21 10:43:48 +02001982 if (err)
1983 goto out;
Jiri Benc61adedf2015-08-20 13:56:25 +02001984 rt->dst.lwtstate = lwtstate_get(lwtstate);
1985 if (lwtunnel_output_redirect(rt->dst.lwtstate)) {
1986 rt->dst.lwtstate->orig_output = rt->dst.output;
1987 rt->dst.output = lwtunnel_output;
Tom Herbert25368622015-08-17 13:42:24 -07001988 }
Jiri Benc61adedf2015-08-20 13:56:25 +02001989 if (lwtunnel_input_redirect(rt->dst.lwtstate)) {
1990 rt->dst.lwtstate->orig_input = rt->dst.input;
1991 rt->dst.input = lwtunnel_input;
Tom Herbert25368622015-08-17 13:42:24 -07001992 }
Roopa Prabhu19e42e42015-07-21 10:43:48 +02001993 }
1994
Thomas Graf86872cb2006-08-22 00:01:08 -07001995 ipv6_addr_prefix(&rt->rt6i_dst.addr, &cfg->fc_dst, cfg->fc_dst_len);
1996 rt->rt6i_dst.plen = cfg->fc_dst_len;
Martin KaFai Lauafc4eef2015-04-28 13:03:07 -07001997 if (rt->rt6i_dst.plen == 128)
Michal Kubečeke5fd3872014-03-27 13:04:08 +01001998 rt->dst.flags |= DST_HOST;
Michal Kubečeke5fd3872014-03-27 13:04:08 +01001999
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000#ifdef CONFIG_IPV6_SUBTREES
Thomas Graf86872cb2006-08-22 00:01:08 -07002001 ipv6_addr_prefix(&rt->rt6i_src.addr, &cfg->fc_src, cfg->fc_src_len);
2002 rt->rt6i_src.plen = cfg->fc_src_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003#endif
2004
Thomas Graf86872cb2006-08-22 00:01:08 -07002005 rt->rt6i_metric = cfg->fc_metric;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002006
2007 /* We cannot add true routes via loopback here,
2008 they would result in kernel looping; promote them to reject routes
2009 */
Thomas Graf86872cb2006-08-22 00:01:08 -07002010 if ((cfg->fc_flags & RTF_REJECT) ||
David S. Miller38308472011-12-03 18:02:47 -05002011 (dev && (dev->flags & IFF_LOOPBACK) &&
2012 !(addr_type & IPV6_ADDR_LOOPBACK) &&
2013 !(cfg->fc_flags & RTF_LOCAL))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002014 /* hold loopback dev/idev if we haven't done so. */
Daniel Lezcano55786892008-03-04 13:47:47 -08002015 if (dev != net->loopback_dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002016 if (dev) {
2017 dev_put(dev);
2018 in6_dev_put(idev);
2019 }
Daniel Lezcano55786892008-03-04 13:47:47 -08002020 dev = net->loopback_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002021 dev_hold(dev);
2022 idev = in6_dev_get(dev);
2023 if (!idev) {
2024 err = -ENODEV;
2025 goto out;
2026 }
2027 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028 rt->rt6i_flags = RTF_REJECT|RTF_NONEXTHOP;
Nicolas Dichtelef2c7d72012-09-05 02:12:42 +00002029 switch (cfg->fc_type) {
2030 case RTN_BLACKHOLE:
2031 rt->dst.error = -EINVAL;
Eric W. Biedermanede20592015-10-07 16:48:47 -05002032 rt->dst.output = dst_discard_out;
Kamala R7150aed2013-12-02 19:55:21 +05302033 rt->dst.input = dst_discard;
Nicolas Dichtelef2c7d72012-09-05 02:12:42 +00002034 break;
2035 case RTN_PROHIBIT:
2036 rt->dst.error = -EACCES;
Kamala R7150aed2013-12-02 19:55:21 +05302037 rt->dst.output = ip6_pkt_prohibit_out;
2038 rt->dst.input = ip6_pkt_prohibit;
Nicolas Dichtelef2c7d72012-09-05 02:12:42 +00002039 break;
Nicolas Dichtelb4949ab2012-09-06 05:53:35 +00002040 case RTN_THROW:
Nikola Forró0315e382015-09-17 16:01:32 +02002041 case RTN_UNREACHABLE:
Nicolas Dichtelef2c7d72012-09-05 02:12:42 +00002042 default:
Kamala R7150aed2013-12-02 19:55:21 +05302043 rt->dst.error = (cfg->fc_type == RTN_THROW) ? -EAGAIN
Nikola Forró0315e382015-09-17 16:01:32 +02002044 : (cfg->fc_type == RTN_UNREACHABLE)
2045 ? -EHOSTUNREACH : -ENETUNREACH;
Kamala R7150aed2013-12-02 19:55:21 +05302046 rt->dst.output = ip6_pkt_discard_out;
2047 rt->dst.input = ip6_pkt_discard;
Nicolas Dichtelef2c7d72012-09-05 02:12:42 +00002048 break;
2049 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050 goto install_route;
2051 }
2052
Thomas Graf86872cb2006-08-22 00:01:08 -07002053 if (cfg->fc_flags & RTF_GATEWAY) {
Eric Dumazetb71d1d42011-04-22 04:53:02 +00002054 const struct in6_addr *gw_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002055 int gwa_type;
2056
Thomas Graf86872cb2006-08-22 00:01:08 -07002057 gw_addr = &cfg->fc_gateway;
Florian Westphal330567b2015-08-07 10:54:28 +02002058 gwa_type = ipv6_addr_type(gw_addr);
Florian Westphal48ed7b22015-05-21 00:25:41 +02002059
2060 /* if gw_addr is local we will fail to detect this in case
2061 * address is still TENTATIVE (DAD in progress). rt6_lookup()
2062 * will return already-added prefix route via interface that
2063 * prefix route was assigned to, which might be non-loopback.
2064 */
2065 err = -EINVAL;
Florian Westphal330567b2015-08-07 10:54:28 +02002066 if (ipv6_chk_addr_and_flags(net, gw_addr,
2067 gwa_type & IPV6_ADDR_LINKLOCAL ?
David Ahernd5d531c2017-05-21 10:12:05 -06002068 dev : NULL, 0, 0)) {
2069 NL_SET_ERR_MSG(extack, "Invalid gateway address");
Florian Westphal48ed7b22015-05-21 00:25:41 +02002070 goto out;
David Ahernd5d531c2017-05-21 10:12:05 -06002071 }
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00002072 rt->rt6i_gateway = *gw_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073
2074 if (gwa_type != (IPV6_ADDR_LINKLOCAL|IPV6_ADDR_UNICAST)) {
David Ahern8c145862016-04-24 21:26:04 -07002075 struct rt6_info *grt = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002076
2077 /* IPv6 strictly inhibits using not link-local
2078 addresses as nexthop address.
2079 Otherwise, router will not able to send redirects.
2080 It is very good, but in some (rare!) circumstances
2081 (SIT, PtP, NBMA NOARP links) it is handy to allow
2082 some exceptions. --ANK
Erik Nordmark96d58222016-12-03 20:57:09 -08002083 We allow IPv4-mapped nexthops to support RFC4798-type
2084 addressing
Linus Torvalds1da177e2005-04-16 15:20:36 -07002085 */
Erik Nordmark96d58222016-12-03 20:57:09 -08002086 if (!(gwa_type & (IPV6_ADDR_UNICAST |
David Ahernd5d531c2017-05-21 10:12:05 -06002087 IPV6_ADDR_MAPPED))) {
2088 NL_SET_ERR_MSG(extack,
2089 "Invalid gateway address");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002090 goto out;
David Ahernd5d531c2017-05-21 10:12:05 -06002091 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002092
Vincent Bernata435a072016-09-18 17:46:07 +02002093 if (cfg->fc_table) {
David Ahern8c145862016-04-24 21:26:04 -07002094 grt = ip6_nh_lookup_table(net, cfg, gw_addr);
2095
Vincent Bernata435a072016-09-18 17:46:07 +02002096 if (grt) {
2097 if (grt->rt6i_flags & RTF_GATEWAY ||
2098 (dev && dev != grt->dst.dev)) {
2099 ip6_rt_put(grt);
2100 grt = NULL;
2101 }
2102 }
2103 }
2104
David Ahern8c145862016-04-24 21:26:04 -07002105 if (!grt)
2106 grt = rt6_lookup(net, gw_addr, NULL,
2107 cfg->fc_ifindex, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002108
2109 err = -EHOSTUNREACH;
David S. Miller38308472011-12-03 18:02:47 -05002110 if (!grt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002111 goto out;
2112 if (dev) {
David S. Millerd1918542011-12-28 20:19:20 -05002113 if (dev != grt->dst.dev) {
Amerigo Wang94e187c2012-10-29 00:13:19 +00002114 ip6_rt_put(grt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002115 goto out;
2116 }
2117 } else {
David S. Millerd1918542011-12-28 20:19:20 -05002118 dev = grt->dst.dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002119 idev = grt->rt6i_idev;
2120 dev_hold(dev);
2121 in6_dev_hold(grt->rt6i_idev);
2122 }
David S. Miller38308472011-12-03 18:02:47 -05002123 if (!(grt->rt6i_flags & RTF_GATEWAY))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002124 err = 0;
Amerigo Wang94e187c2012-10-29 00:13:19 +00002125 ip6_rt_put(grt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126
2127 if (err)
2128 goto out;
2129 }
2130 err = -EINVAL;
David Ahernd5d531c2017-05-21 10:12:05 -06002131 if (!dev) {
2132 NL_SET_ERR_MSG(extack, "Egress device not specified");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002133 goto out;
David Ahernd5d531c2017-05-21 10:12:05 -06002134 } else if (dev->flags & IFF_LOOPBACK) {
2135 NL_SET_ERR_MSG(extack,
2136 "Egress device can not be loopback device for this route");
2137 goto out;
2138 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002139 }
2140
2141 err = -ENODEV;
David S. Miller38308472011-12-03 18:02:47 -05002142 if (!dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002143 goto out;
2144
Daniel Walterc3968a82011-04-13 21:10:57 +00002145 if (!ipv6_addr_any(&cfg->fc_prefsrc)) {
2146 if (!ipv6_chk_addr(net, &cfg->fc_prefsrc, dev, 0)) {
David Ahernd5d531c2017-05-21 10:12:05 -06002147 NL_SET_ERR_MSG(extack, "Invalid source address");
Daniel Walterc3968a82011-04-13 21:10:57 +00002148 err = -EINVAL;
2149 goto out;
2150 }
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00002151 rt->rt6i_prefsrc.addr = cfg->fc_prefsrc;
Daniel Walterc3968a82011-04-13 21:10:57 +00002152 rt->rt6i_prefsrc.plen = 128;
2153 } else
2154 rt->rt6i_prefsrc.plen = 0;
2155
Thomas Graf86872cb2006-08-22 00:01:08 -07002156 rt->rt6i_flags = cfg->fc_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002157
2158install_route:
Changli Gaod8d1f302010-06-10 23:31:35 -07002159 rt->dst.dev = dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002160 rt->rt6i_idev = idev;
Thomas Grafc71099a2006-08-04 23:20:06 -07002161 rt->rt6i_table = table;
Daniel Lezcano63152fc2008-03-03 23:31:11 -08002162
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09002163 cfg->fc_nlinfo.nl_net = dev_net(dev);
Daniel Lezcano63152fc2008-03-03 23:31:11 -08002164
Roopa Prabhu8c5b83f2015-10-10 08:26:36 -07002165 return rt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002166out:
2167 if (dev)
2168 dev_put(dev);
2169 if (idev)
2170 in6_dev_put(idev);
Wei Wang587fea72017-06-17 10:42:36 -07002171 if (rt)
2172 dst_release_immediate(&rt->dst);
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07002173
Roopa Prabhu8c5b83f2015-10-10 08:26:36 -07002174 return ERR_PTR(err);
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07002175}
2176
David Ahern333c4302017-05-21 10:12:04 -06002177int ip6_route_add(struct fib6_config *cfg,
2178 struct netlink_ext_ack *extack)
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07002179{
2180 struct mx6_config mxc = { .mx = NULL, };
Roopa Prabhu8c5b83f2015-10-10 08:26:36 -07002181 struct rt6_info *rt;
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07002182 int err;
2183
David Ahern333c4302017-05-21 10:12:04 -06002184 rt = ip6_route_info_create(cfg, extack);
Roopa Prabhu8c5b83f2015-10-10 08:26:36 -07002185 if (IS_ERR(rt)) {
2186 err = PTR_ERR(rt);
2187 rt = NULL;
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07002188 goto out;
Roopa Prabhu8c5b83f2015-10-10 08:26:36 -07002189 }
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07002190
2191 err = ip6_convert_metrics(&mxc, cfg);
2192 if (err)
2193 goto out;
2194
David Ahern333c4302017-05-21 10:12:04 -06002195 err = __ip6_ins_rt(rt, &cfg->fc_nlinfo, &mxc, extack);
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07002196
2197 kfree(mxc.mx);
2198
2199 return err;
2200out:
Wei Wang587fea72017-06-17 10:42:36 -07002201 if (rt)
2202 dst_release_immediate(&rt->dst);
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07002203
Linus Torvalds1da177e2005-04-16 15:20:36 -07002204 return err;
2205}
2206
Thomas Graf86872cb2006-08-22 00:01:08 -07002207static int __ip6_del_rt(struct rt6_info *rt, struct nl_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002208{
2209 int err;
Thomas Grafc71099a2006-08-04 23:20:06 -07002210 struct fib6_table *table;
David S. Millerd1918542011-12-28 20:19:20 -05002211 struct net *net = dev_net(rt->dst.dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002212
Wei Wanga4c2fd72017-06-17 10:42:42 -07002213 if (rt == net->ipv6.ip6_null_entry) {
Gao feng6825a262012-09-19 19:25:34 +00002214 err = -ENOENT;
2215 goto out;
2216 }
Patrick McHardy6c813a72006-08-06 22:22:47 -07002217
Thomas Grafc71099a2006-08-04 23:20:06 -07002218 table = rt->rt6i_table;
2219 write_lock_bh(&table->tb6_lock);
Thomas Graf86872cb2006-08-22 00:01:08 -07002220 err = fib6_del(rt, info);
Thomas Grafc71099a2006-08-04 23:20:06 -07002221 write_unlock_bh(&table->tb6_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002222
Gao feng6825a262012-09-19 19:25:34 +00002223out:
Amerigo Wang94e187c2012-10-29 00:13:19 +00002224 ip6_rt_put(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002225 return err;
2226}
2227
Thomas Grafe0a1ad732006-08-22 00:00:21 -07002228int ip6_del_rt(struct rt6_info *rt)
2229{
Denis V. Lunev4d1169c2008-01-10 03:26:13 -08002230 struct nl_info info = {
David S. Millerd1918542011-12-28 20:19:20 -05002231 .nl_net = dev_net(rt->dst.dev),
Denis V. Lunev4d1169c2008-01-10 03:26:13 -08002232 };
Denis V. Lunev528c4ce2007-12-13 09:45:12 -08002233 return __ip6_del_rt(rt, &info);
Thomas Grafe0a1ad732006-08-22 00:00:21 -07002234}
2235
David Ahern0ae81332017-02-02 12:37:08 -08002236static int __ip6_del_rt_siblings(struct rt6_info *rt, struct fib6_config *cfg)
2237{
2238 struct nl_info *info = &cfg->fc_nlinfo;
WANG Conge3330032017-02-27 16:07:43 -08002239 struct net *net = info->nl_net;
David Ahern16a16cd2017-02-02 12:37:11 -08002240 struct sk_buff *skb = NULL;
David Ahern0ae81332017-02-02 12:37:08 -08002241 struct fib6_table *table;
WANG Conge3330032017-02-27 16:07:43 -08002242 int err = -ENOENT;
David Ahern0ae81332017-02-02 12:37:08 -08002243
WANG Conge3330032017-02-27 16:07:43 -08002244 if (rt == net->ipv6.ip6_null_entry)
2245 goto out_put;
David Ahern0ae81332017-02-02 12:37:08 -08002246 table = rt->rt6i_table;
2247 write_lock_bh(&table->tb6_lock);
2248
2249 if (rt->rt6i_nsiblings && cfg->fc_delete_all_nh) {
2250 struct rt6_info *sibling, *next_sibling;
2251
David Ahern16a16cd2017-02-02 12:37:11 -08002252 /* prefer to send a single notification with all hops */
2253 skb = nlmsg_new(rt6_nlmsg_size(rt), gfp_any());
2254 if (skb) {
2255 u32 seq = info->nlh ? info->nlh->nlmsg_seq : 0;
2256
WANG Conge3330032017-02-27 16:07:43 -08002257 if (rt6_fill_node(net, skb, rt,
David Ahern16a16cd2017-02-02 12:37:11 -08002258 NULL, NULL, 0, RTM_DELROUTE,
2259 info->portid, seq, 0) < 0) {
2260 kfree_skb(skb);
2261 skb = NULL;
2262 } else
2263 info->skip_notify = 1;
2264 }
2265
David Ahern0ae81332017-02-02 12:37:08 -08002266 list_for_each_entry_safe(sibling, next_sibling,
2267 &rt->rt6i_siblings,
2268 rt6i_siblings) {
2269 err = fib6_del(sibling, info);
2270 if (err)
WANG Conge3330032017-02-27 16:07:43 -08002271 goto out_unlock;
David Ahern0ae81332017-02-02 12:37:08 -08002272 }
2273 }
2274
2275 err = fib6_del(rt, info);
WANG Conge3330032017-02-27 16:07:43 -08002276out_unlock:
David Ahern0ae81332017-02-02 12:37:08 -08002277 write_unlock_bh(&table->tb6_lock);
WANG Conge3330032017-02-27 16:07:43 -08002278out_put:
David Ahern0ae81332017-02-02 12:37:08 -08002279 ip6_rt_put(rt);
David Ahern16a16cd2017-02-02 12:37:11 -08002280
2281 if (skb) {
WANG Conge3330032017-02-27 16:07:43 -08002282 rtnl_notify(skb, net, info->portid, RTNLGRP_IPV6_ROUTE,
David Ahern16a16cd2017-02-02 12:37:11 -08002283 info->nlh, gfp_any());
2284 }
David Ahern0ae81332017-02-02 12:37:08 -08002285 return err;
2286}
2287
David Ahern333c4302017-05-21 10:12:04 -06002288static int ip6_route_del(struct fib6_config *cfg,
2289 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002290{
Thomas Grafc71099a2006-08-04 23:20:06 -07002291 struct fib6_table *table;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002292 struct fib6_node *fn;
2293 struct rt6_info *rt;
2294 int err = -ESRCH;
2295
Daniel Lezcano55786892008-03-04 13:47:47 -08002296 table = fib6_get_table(cfg->fc_nlinfo.nl_net, cfg->fc_table);
David Ahernd5d531c2017-05-21 10:12:05 -06002297 if (!table) {
2298 NL_SET_ERR_MSG(extack, "FIB table does not exist");
Thomas Grafc71099a2006-08-04 23:20:06 -07002299 return err;
David Ahernd5d531c2017-05-21 10:12:05 -06002300 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002301
Thomas Grafc71099a2006-08-04 23:20:06 -07002302 read_lock_bh(&table->tb6_lock);
2303
2304 fn = fib6_locate(&table->tb6_root,
Thomas Graf86872cb2006-08-22 00:01:08 -07002305 &cfg->fc_dst, cfg->fc_dst_len,
2306 &cfg->fc_src, cfg->fc_src_len);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002307
Linus Torvalds1da177e2005-04-16 15:20:36 -07002308 if (fn) {
Changli Gaod8d1f302010-06-10 23:31:35 -07002309 for (rt = fn->leaf; rt; rt = rt->dst.rt6_next) {
Martin KaFai Lau1f56a01f2015-04-28 13:03:03 -07002310 if ((rt->rt6i_flags & RTF_CACHE) &&
2311 !(cfg->fc_flags & RTF_CACHE))
2312 continue;
Thomas Graf86872cb2006-08-22 00:01:08 -07002313 if (cfg->fc_ifindex &&
David S. Millerd1918542011-12-28 20:19:20 -05002314 (!rt->dst.dev ||
2315 rt->dst.dev->ifindex != cfg->fc_ifindex))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002316 continue;
Thomas Graf86872cb2006-08-22 00:01:08 -07002317 if (cfg->fc_flags & RTF_GATEWAY &&
2318 !ipv6_addr_equal(&cfg->fc_gateway, &rt->rt6i_gateway))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002319 continue;
Thomas Graf86872cb2006-08-22 00:01:08 -07002320 if (cfg->fc_metric && cfg->fc_metric != rt->rt6i_metric)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002321 continue;
Mantas Mc2ed1882016-12-16 10:30:59 +02002322 if (cfg->fc_protocol && cfg->fc_protocol != rt->rt6i_protocol)
2323 continue;
Changli Gaod8d1f302010-06-10 23:31:35 -07002324 dst_hold(&rt->dst);
Thomas Grafc71099a2006-08-04 23:20:06 -07002325 read_unlock_bh(&table->tb6_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002326
David Ahern0ae81332017-02-02 12:37:08 -08002327 /* if gateway was specified only delete the one hop */
2328 if (cfg->fc_flags & RTF_GATEWAY)
2329 return __ip6_del_rt(rt, &cfg->fc_nlinfo);
2330
2331 return __ip6_del_rt_siblings(rt, cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002332 }
2333 }
Thomas Grafc71099a2006-08-04 23:20:06 -07002334 read_unlock_bh(&table->tb6_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002335
2336 return err;
2337}
2338
David S. Miller6700c272012-07-17 03:29:28 -07002339static void rt6_do_redirect(struct dst_entry *dst, struct sock *sk, struct sk_buff *skb)
YOSHIFUJI Hideakia6279452006-08-23 17:18:26 -07002340{
YOSHIFUJI Hideakia6279452006-08-23 17:18:26 -07002341 struct netevent_redirect netevent;
David S. Millere8599ff2012-07-11 23:43:53 -07002342 struct rt6_info *rt, *nrt = NULL;
David S. Millere8599ff2012-07-11 23:43:53 -07002343 struct ndisc_options ndopts;
2344 struct inet6_dev *in6_dev;
2345 struct neighbour *neigh;
YOSHIFUJI Hideaki / 吉藤英明71bcdba2013-01-05 16:34:51 +00002346 struct rd_msg *msg;
David S. Miller6e157b62012-07-12 00:05:02 -07002347 int optlen, on_link;
2348 u8 *lladdr;
David S. Millere8599ff2012-07-11 23:43:53 -07002349
Simon Horman29a3cad2013-05-28 20:34:26 +00002350 optlen = skb_tail_pointer(skb) - skb_transport_header(skb);
YOSHIFUJI Hideaki / 吉藤英明71bcdba2013-01-05 16:34:51 +00002351 optlen -= sizeof(*msg);
David S. Millere8599ff2012-07-11 23:43:53 -07002352
2353 if (optlen < 0) {
David S. Miller6e157b62012-07-12 00:05:02 -07002354 net_dbg_ratelimited("rt6_do_redirect: packet too short\n");
David S. Millere8599ff2012-07-11 23:43:53 -07002355 return;
2356 }
2357
YOSHIFUJI Hideaki / 吉藤英明71bcdba2013-01-05 16:34:51 +00002358 msg = (struct rd_msg *)icmp6_hdr(skb);
David S. Millere8599ff2012-07-11 23:43:53 -07002359
YOSHIFUJI Hideaki / 吉藤英明71bcdba2013-01-05 16:34:51 +00002360 if (ipv6_addr_is_multicast(&msg->dest)) {
David S. Miller6e157b62012-07-12 00:05:02 -07002361 net_dbg_ratelimited("rt6_do_redirect: destination address is multicast\n");
David S. Millere8599ff2012-07-11 23:43:53 -07002362 return;
2363 }
2364
David S. Miller6e157b62012-07-12 00:05:02 -07002365 on_link = 0;
YOSHIFUJI Hideaki / 吉藤英明71bcdba2013-01-05 16:34:51 +00002366 if (ipv6_addr_equal(&msg->dest, &msg->target)) {
David S. Millere8599ff2012-07-11 23:43:53 -07002367 on_link = 1;
YOSHIFUJI Hideaki / 吉藤英明71bcdba2013-01-05 16:34:51 +00002368 } else if (ipv6_addr_type(&msg->target) !=
David S. Millere8599ff2012-07-11 23:43:53 -07002369 (IPV6_ADDR_UNICAST|IPV6_ADDR_LINKLOCAL)) {
David S. Miller6e157b62012-07-12 00:05:02 -07002370 net_dbg_ratelimited("rt6_do_redirect: target address is not link-local unicast\n");
David S. Millere8599ff2012-07-11 23:43:53 -07002371 return;
2372 }
2373
2374 in6_dev = __in6_dev_get(skb->dev);
2375 if (!in6_dev)
2376 return;
2377 if (in6_dev->cnf.forwarding || !in6_dev->cnf.accept_redirects)
2378 return;
2379
2380 /* RFC2461 8.1:
2381 * The IP source address of the Redirect MUST be the same as the current
2382 * first-hop router for the specified ICMP Destination Address.
2383 */
2384
Alexander Aringf997c552016-06-15 21:20:23 +02002385 if (!ndisc_parse_options(skb->dev, msg->opt, optlen, &ndopts)) {
David S. Millere8599ff2012-07-11 23:43:53 -07002386 net_dbg_ratelimited("rt6_redirect: invalid ND options\n");
2387 return;
2388 }
David S. Miller6e157b62012-07-12 00:05:02 -07002389
2390 lladdr = NULL;
David S. Millere8599ff2012-07-11 23:43:53 -07002391 if (ndopts.nd_opts_tgt_lladdr) {
2392 lladdr = ndisc_opt_addr_data(ndopts.nd_opts_tgt_lladdr,
2393 skb->dev);
2394 if (!lladdr) {
2395 net_dbg_ratelimited("rt6_redirect: invalid link-layer address length\n");
2396 return;
2397 }
2398 }
2399
David S. Miller6e157b62012-07-12 00:05:02 -07002400 rt = (struct rt6_info *) dst;
Matthias Schifferec13ad12015-11-02 01:24:38 +01002401 if (rt->rt6i_flags & RTF_REJECT) {
David S. Miller6e157b62012-07-12 00:05:02 -07002402 net_dbg_ratelimited("rt6_redirect: source isn't a valid nexthop for redirect target\n");
2403 return;
2404 }
2405
2406 /* Redirect received -> path was valid.
2407 * Look, redirects are sent only in response to data packets,
2408 * so that this nexthop apparently is reachable. --ANK
2409 */
Julian Anastasov0dec8792017-02-06 23:14:16 +02002410 dst_confirm_neigh(&rt->dst, &ipv6_hdr(skb)->saddr);
David S. Miller6e157b62012-07-12 00:05:02 -07002411
YOSHIFUJI Hideaki / 吉藤英明71bcdba2013-01-05 16:34:51 +00002412 neigh = __neigh_lookup(&nd_tbl, &msg->target, skb->dev, 1);
David S. Millere8599ff2012-07-11 23:43:53 -07002413 if (!neigh)
2414 return;
2415
Linus Torvalds1da177e2005-04-16 15:20:36 -07002416 /*
2417 * We have finally decided to accept it.
2418 */
2419
Alexander Aringf997c552016-06-15 21:20:23 +02002420 ndisc_update(skb->dev, neigh, lladdr, NUD_STALE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002421 NEIGH_UPDATE_F_WEAK_OVERRIDE|
2422 NEIGH_UPDATE_F_OVERRIDE|
2423 (on_link ? 0 : (NEIGH_UPDATE_F_OVERRIDE_ISROUTER|
Alexander Aringf997c552016-06-15 21:20:23 +02002424 NEIGH_UPDATE_F_ISROUTER)),
2425 NDISC_REDIRECT, &ndopts);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002426
Martin KaFai Lau83a09ab2015-05-22 20:56:05 -07002427 nrt = ip6_rt_cache_alloc(rt, &msg->dest, NULL);
David S. Miller38308472011-12-03 18:02:47 -05002428 if (!nrt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002429 goto out;
2430
2431 nrt->rt6i_flags = RTF_GATEWAY|RTF_UP|RTF_DYNAMIC|RTF_CACHE;
2432 if (on_link)
2433 nrt->rt6i_flags &= ~RTF_GATEWAY;
2434
Xin Longb91d5322017-08-03 14:13:46 +08002435 nrt->rt6i_protocol = RTPROT_REDIRECT;
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00002436 nrt->rt6i_gateway = *(struct in6_addr *)neigh->primary_key;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002437
Thomas Graf40e22e82006-08-22 00:00:45 -07002438 if (ip6_ins_rt(nrt))
Wei Wang1cfb71e2017-06-17 10:42:33 -07002439 goto out_release;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002440
Changli Gaod8d1f302010-06-10 23:31:35 -07002441 netevent.old = &rt->dst;
2442 netevent.new = &nrt->dst;
YOSHIFUJI Hideaki / 吉藤英明71bcdba2013-01-05 16:34:51 +00002443 netevent.daddr = &msg->dest;
YOSHIFUJI Hideaki / 吉藤英明60592832013-01-14 09:28:27 +00002444 netevent.neigh = neigh;
Tom Tucker8d717402006-07-30 20:43:36 -07002445 call_netevent_notifiers(NETEVENT_REDIRECT, &netevent);
2446
David S. Miller38308472011-12-03 18:02:47 -05002447 if (rt->rt6i_flags & RTF_CACHE) {
David S. Miller6e157b62012-07-12 00:05:02 -07002448 rt = (struct rt6_info *) dst_clone(&rt->dst);
Thomas Grafe0a1ad732006-08-22 00:00:21 -07002449 ip6_del_rt(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002450 }
2451
Wei Wang1cfb71e2017-06-17 10:42:33 -07002452out_release:
2453 /* Release the reference taken in
2454 * ip6_rt_cache_alloc()
2455 */
2456 dst_release(&nrt->dst);
2457
Linus Torvalds1da177e2005-04-16 15:20:36 -07002458out:
David S. Millere8599ff2012-07-11 23:43:53 -07002459 neigh_release(neigh);
David S. Miller6e157b62012-07-12 00:05:02 -07002460}
2461
Linus Torvalds1da177e2005-04-16 15:20:36 -07002462/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002463 * Misc support functions
2464 */
2465
Martin KaFai Lau4b32b5a2015-04-28 13:03:06 -07002466static void rt6_set_from(struct rt6_info *rt, struct rt6_info *from)
2467{
2468 BUG_ON(from->dst.from);
2469
2470 rt->rt6i_flags &= ~RTF_EXPIRES;
2471 dst_hold(&from->dst);
2472 rt->dst.from = &from->dst;
2473 dst_init_metrics(&rt->dst, dst_metrics_ptr(&from->dst), true);
2474}
2475
Martin KaFai Lau83a09ab2015-05-22 20:56:05 -07002476static void ip6_rt_copy_init(struct rt6_info *rt, struct rt6_info *ort)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002477{
Martin KaFai Lau83a09ab2015-05-22 20:56:05 -07002478 rt->dst.input = ort->dst.input;
2479 rt->dst.output = ort->dst.output;
2480 rt->rt6i_dst = ort->rt6i_dst;
2481 rt->dst.error = ort->dst.error;
2482 rt->rt6i_idev = ort->rt6i_idev;
2483 if (rt->rt6i_idev)
2484 in6_dev_hold(rt->rt6i_idev);
2485 rt->dst.lastuse = jiffies;
2486 rt->rt6i_gateway = ort->rt6i_gateway;
2487 rt->rt6i_flags = ort->rt6i_flags;
2488 rt6_set_from(rt, ort);
2489 rt->rt6i_metric = ort->rt6i_metric;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002490#ifdef CONFIG_IPV6_SUBTREES
Martin KaFai Lau83a09ab2015-05-22 20:56:05 -07002491 rt->rt6i_src = ort->rt6i_src;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002492#endif
Martin KaFai Lau83a09ab2015-05-22 20:56:05 -07002493 rt->rt6i_prefsrc = ort->rt6i_prefsrc;
2494 rt->rt6i_table = ort->rt6i_table;
Jiri Benc61adedf2015-08-20 13:56:25 +02002495 rt->dst.lwtstate = lwtstate_get(ort->dst.lwtstate);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002496}
2497
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08002498#ifdef CONFIG_IPV6_ROUTE_INFO
Daniel Lezcanoefa2cea2008-03-04 13:46:48 -08002499static struct rt6_info *rt6_get_route_info(struct net *net,
Eric Dumazetb71d1d42011-04-22 04:53:02 +00002500 const struct in6_addr *prefix, int prefixlen,
David Ahern830218c2016-10-24 10:52:35 -07002501 const struct in6_addr *gwaddr,
2502 struct net_device *dev)
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08002503{
David Ahern830218c2016-10-24 10:52:35 -07002504 u32 tb_id = l3mdev_fib_table(dev) ? : RT6_TABLE_INFO;
2505 int ifindex = dev->ifindex;
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08002506 struct fib6_node *fn;
2507 struct rt6_info *rt = NULL;
Thomas Grafc71099a2006-08-04 23:20:06 -07002508 struct fib6_table *table;
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08002509
David Ahern830218c2016-10-24 10:52:35 -07002510 table = fib6_get_table(net, tb_id);
David S. Miller38308472011-12-03 18:02:47 -05002511 if (!table)
Thomas Grafc71099a2006-08-04 23:20:06 -07002512 return NULL;
2513
Li RongQing5744dd92012-09-11 21:59:01 +00002514 read_lock_bh(&table->tb6_lock);
Ian Morris67ba4152014-08-24 21:53:10 +01002515 fn = fib6_locate(&table->tb6_root, prefix, prefixlen, NULL, 0);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08002516 if (!fn)
2517 goto out;
2518
Changli Gaod8d1f302010-06-10 23:31:35 -07002519 for (rt = fn->leaf; rt; rt = rt->dst.rt6_next) {
David S. Millerd1918542011-12-28 20:19:20 -05002520 if (rt->dst.dev->ifindex != ifindex)
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08002521 continue;
2522 if ((rt->rt6i_flags & (RTF_ROUTEINFO|RTF_GATEWAY)) != (RTF_ROUTEINFO|RTF_GATEWAY))
2523 continue;
2524 if (!ipv6_addr_equal(&rt->rt6i_gateway, gwaddr))
2525 continue;
Changli Gaod8d1f302010-06-10 23:31:35 -07002526 dst_hold(&rt->dst);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08002527 break;
2528 }
2529out:
Li RongQing5744dd92012-09-11 21:59:01 +00002530 read_unlock_bh(&table->tb6_lock);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08002531 return rt;
2532}
2533
Daniel Lezcanoefa2cea2008-03-04 13:46:48 -08002534static struct rt6_info *rt6_add_route_info(struct net *net,
Eric Dumazetb71d1d42011-04-22 04:53:02 +00002535 const struct in6_addr *prefix, int prefixlen,
David Ahern830218c2016-10-24 10:52:35 -07002536 const struct in6_addr *gwaddr,
2537 struct net_device *dev,
Eric Dumazet95c96172012-04-15 05:58:06 +00002538 unsigned int pref)
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08002539{
Thomas Graf86872cb2006-08-22 00:01:08 -07002540 struct fib6_config cfg = {
Rami Rosen238fc7e2008-02-09 23:43:11 -08002541 .fc_metric = IP6_RT_PRIO_USER,
David Ahern830218c2016-10-24 10:52:35 -07002542 .fc_ifindex = dev->ifindex,
Thomas Graf86872cb2006-08-22 00:01:08 -07002543 .fc_dst_len = prefixlen,
2544 .fc_flags = RTF_GATEWAY | RTF_ADDRCONF | RTF_ROUTEINFO |
2545 RTF_UP | RTF_PREF(pref),
Xin Longb91d5322017-08-03 14:13:46 +08002546 .fc_protocol = RTPROT_RA,
Eric W. Biederman15e47302012-09-07 20:12:54 +00002547 .fc_nlinfo.portid = 0,
Daniel Lezcanoefa2cea2008-03-04 13:46:48 -08002548 .fc_nlinfo.nlh = NULL,
2549 .fc_nlinfo.nl_net = net,
Thomas Graf86872cb2006-08-22 00:01:08 -07002550 };
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08002551
David Ahern830218c2016-10-24 10:52:35 -07002552 cfg.fc_table = l3mdev_fib_table(dev) ? : RT6_TABLE_INFO,
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00002553 cfg.fc_dst = *prefix;
2554 cfg.fc_gateway = *gwaddr;
Thomas Graf86872cb2006-08-22 00:01:08 -07002555
YOSHIFUJI Hideakie317da92006-03-20 17:06:42 -08002556 /* We should treat it as a default route if prefix length is 0. */
2557 if (!prefixlen)
Thomas Graf86872cb2006-08-22 00:01:08 -07002558 cfg.fc_flags |= RTF_DEFAULT;
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08002559
David Ahern333c4302017-05-21 10:12:04 -06002560 ip6_route_add(&cfg, NULL);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08002561
David Ahern830218c2016-10-24 10:52:35 -07002562 return rt6_get_route_info(net, prefix, prefixlen, gwaddr, dev);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08002563}
2564#endif
2565
Eric Dumazetb71d1d42011-04-22 04:53:02 +00002566struct rt6_info *rt6_get_dflt_router(const struct in6_addr *addr, struct net_device *dev)
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002567{
David Ahern830218c2016-10-24 10:52:35 -07002568 u32 tb_id = l3mdev_fib_table(dev) ? : RT6_TABLE_DFLT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002569 struct rt6_info *rt;
Thomas Grafc71099a2006-08-04 23:20:06 -07002570 struct fib6_table *table;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002571
David Ahern830218c2016-10-24 10:52:35 -07002572 table = fib6_get_table(dev_net(dev), tb_id);
David S. Miller38308472011-12-03 18:02:47 -05002573 if (!table)
Thomas Grafc71099a2006-08-04 23:20:06 -07002574 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002575
Li RongQing5744dd92012-09-11 21:59:01 +00002576 read_lock_bh(&table->tb6_lock);
Ian Morris67ba4152014-08-24 21:53:10 +01002577 for (rt = table->tb6_root.leaf; rt; rt = rt->dst.rt6_next) {
David S. Millerd1918542011-12-28 20:19:20 -05002578 if (dev == rt->dst.dev &&
YOSHIFUJI Hideaki045927f2006-03-20 17:00:48 -08002579 ((rt->rt6i_flags & (RTF_ADDRCONF | RTF_DEFAULT)) == (RTF_ADDRCONF | RTF_DEFAULT)) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07002580 ipv6_addr_equal(&rt->rt6i_gateway, addr))
2581 break;
2582 }
2583 if (rt)
Changli Gaod8d1f302010-06-10 23:31:35 -07002584 dst_hold(&rt->dst);
Li RongQing5744dd92012-09-11 21:59:01 +00002585 read_unlock_bh(&table->tb6_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002586 return rt;
2587}
2588
Eric Dumazetb71d1d42011-04-22 04:53:02 +00002589struct rt6_info *rt6_add_dflt_router(const struct in6_addr *gwaddr,
YOSHIFUJI Hideakiebacaaa2006-03-20 17:04:53 -08002590 struct net_device *dev,
2591 unsigned int pref)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002592{
Thomas Graf86872cb2006-08-22 00:01:08 -07002593 struct fib6_config cfg = {
David Ahernca254492015-10-12 11:47:10 -07002594 .fc_table = l3mdev_fib_table(dev) ? : RT6_TABLE_DFLT,
Rami Rosen238fc7e2008-02-09 23:43:11 -08002595 .fc_metric = IP6_RT_PRIO_USER,
Thomas Graf86872cb2006-08-22 00:01:08 -07002596 .fc_ifindex = dev->ifindex,
2597 .fc_flags = RTF_GATEWAY | RTF_ADDRCONF | RTF_DEFAULT |
2598 RTF_UP | RTF_EXPIRES | RTF_PREF(pref),
Xin Longb91d5322017-08-03 14:13:46 +08002599 .fc_protocol = RTPROT_RA,
Eric W. Biederman15e47302012-09-07 20:12:54 +00002600 .fc_nlinfo.portid = 0,
Daniel Lezcano55786892008-03-04 13:47:47 -08002601 .fc_nlinfo.nlh = NULL,
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09002602 .fc_nlinfo.nl_net = dev_net(dev),
Thomas Graf86872cb2006-08-22 00:01:08 -07002603 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002604
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00002605 cfg.fc_gateway = *gwaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002606
David Ahern333c4302017-05-21 10:12:04 -06002607 if (!ip6_route_add(&cfg, NULL)) {
David Ahern830218c2016-10-24 10:52:35 -07002608 struct fib6_table *table;
2609
2610 table = fib6_get_table(dev_net(dev), cfg.fc_table);
2611 if (table)
2612 table->flags |= RT6_TABLE_HAS_DFLT_ROUTER;
2613 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002614
Linus Torvalds1da177e2005-04-16 15:20:36 -07002615 return rt6_get_dflt_router(gwaddr, dev);
2616}
2617
David Ahern830218c2016-10-24 10:52:35 -07002618static void __rt6_purge_dflt_routers(struct fib6_table *table)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002619{
2620 struct rt6_info *rt;
2621
2622restart:
Thomas Grafc71099a2006-08-04 23:20:06 -07002623 read_lock_bh(&table->tb6_lock);
Changli Gaod8d1f302010-06-10 23:31:35 -07002624 for (rt = table->tb6_root.leaf; rt; rt = rt->dst.rt6_next) {
Lorenzo Colitti3e8b0ac2013-03-03 20:46:46 +00002625 if (rt->rt6i_flags & (RTF_DEFAULT | RTF_ADDRCONF) &&
2626 (!rt->rt6i_idev || rt->rt6i_idev->cnf.accept_ra != 2)) {
Changli Gaod8d1f302010-06-10 23:31:35 -07002627 dst_hold(&rt->dst);
Thomas Grafc71099a2006-08-04 23:20:06 -07002628 read_unlock_bh(&table->tb6_lock);
Thomas Grafe0a1ad732006-08-22 00:00:21 -07002629 ip6_del_rt(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002630 goto restart;
2631 }
2632 }
Thomas Grafc71099a2006-08-04 23:20:06 -07002633 read_unlock_bh(&table->tb6_lock);
David Ahern830218c2016-10-24 10:52:35 -07002634
2635 table->flags &= ~RT6_TABLE_HAS_DFLT_ROUTER;
2636}
2637
2638void rt6_purge_dflt_routers(struct net *net)
2639{
2640 struct fib6_table *table;
2641 struct hlist_head *head;
2642 unsigned int h;
2643
2644 rcu_read_lock();
2645
2646 for (h = 0; h < FIB6_TABLE_HASHSZ; h++) {
2647 head = &net->ipv6.fib_table_hash[h];
2648 hlist_for_each_entry_rcu(table, head, tb6_hlist) {
2649 if (table->flags & RT6_TABLE_HAS_DFLT_ROUTER)
2650 __rt6_purge_dflt_routers(table);
2651 }
2652 }
2653
2654 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002655}
2656
Daniel Lezcano55786892008-03-04 13:47:47 -08002657static void rtmsg_to_fib6_config(struct net *net,
2658 struct in6_rtmsg *rtmsg,
Thomas Graf86872cb2006-08-22 00:01:08 -07002659 struct fib6_config *cfg)
2660{
2661 memset(cfg, 0, sizeof(*cfg));
2662
David Ahernca254492015-10-12 11:47:10 -07002663 cfg->fc_table = l3mdev_fib_table_by_index(net, rtmsg->rtmsg_ifindex) ?
2664 : RT6_TABLE_MAIN;
Thomas Graf86872cb2006-08-22 00:01:08 -07002665 cfg->fc_ifindex = rtmsg->rtmsg_ifindex;
2666 cfg->fc_metric = rtmsg->rtmsg_metric;
2667 cfg->fc_expires = rtmsg->rtmsg_info;
2668 cfg->fc_dst_len = rtmsg->rtmsg_dst_len;
2669 cfg->fc_src_len = rtmsg->rtmsg_src_len;
2670 cfg->fc_flags = rtmsg->rtmsg_flags;
2671
Daniel Lezcano55786892008-03-04 13:47:47 -08002672 cfg->fc_nlinfo.nl_net = net;
Benjamin Theryf1243c22008-02-26 18:10:03 -08002673
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00002674 cfg->fc_dst = rtmsg->rtmsg_dst;
2675 cfg->fc_src = rtmsg->rtmsg_src;
2676 cfg->fc_gateway = rtmsg->rtmsg_gateway;
Thomas Graf86872cb2006-08-22 00:01:08 -07002677}
2678
Daniel Lezcano55786892008-03-04 13:47:47 -08002679int ipv6_route_ioctl(struct net *net, unsigned int cmd, void __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002680{
Thomas Graf86872cb2006-08-22 00:01:08 -07002681 struct fib6_config cfg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002682 struct in6_rtmsg rtmsg;
2683 int err;
2684
Ian Morris67ba4152014-08-24 21:53:10 +01002685 switch (cmd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002686 case SIOCADDRT: /* Add a route */
2687 case SIOCDELRT: /* Delete a route */
Eric W. Biedermanaf31f412012-11-16 03:03:06 +00002688 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002689 return -EPERM;
2690 err = copy_from_user(&rtmsg, arg,
2691 sizeof(struct in6_rtmsg));
2692 if (err)
2693 return -EFAULT;
Thomas Graf86872cb2006-08-22 00:01:08 -07002694
Daniel Lezcano55786892008-03-04 13:47:47 -08002695 rtmsg_to_fib6_config(net, &rtmsg, &cfg);
Thomas Graf86872cb2006-08-22 00:01:08 -07002696
Linus Torvalds1da177e2005-04-16 15:20:36 -07002697 rtnl_lock();
2698 switch (cmd) {
2699 case SIOCADDRT:
David Ahern333c4302017-05-21 10:12:04 -06002700 err = ip6_route_add(&cfg, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002701 break;
2702 case SIOCDELRT:
David Ahern333c4302017-05-21 10:12:04 -06002703 err = ip6_route_del(&cfg, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002704 break;
2705 default:
2706 err = -EINVAL;
2707 }
2708 rtnl_unlock();
2709
2710 return err;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07002711 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002712
2713 return -EINVAL;
2714}
2715
2716/*
2717 * Drop the packet on the floor
2718 */
2719
Brian Haleyd5fdd6b2009-06-23 04:31:07 -07002720static int ip6_pkt_drop(struct sk_buff *skb, u8 code, int ipstats_mib_noroutes)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002721{
YOSHIFUJI Hideaki612f09e2007-04-13 16:18:02 -07002722 int type;
Eric Dumazetadf30902009-06-02 05:19:30 +00002723 struct dst_entry *dst = skb_dst(skb);
YOSHIFUJI Hideaki612f09e2007-04-13 16:18:02 -07002724 switch (ipstats_mib_noroutes) {
2725 case IPSTATS_MIB_INNOROUTES:
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -07002726 type = ipv6_addr_type(&ipv6_hdr(skb)->daddr);
Ulrich Weber45bb0062010-02-25 23:28:58 +00002727 if (type == IPV6_ADDR_ANY) {
Denis V. Lunev3bd653c2008-10-08 10:54:51 -07002728 IP6_INC_STATS(dev_net(dst->dev), ip6_dst_idev(dst),
2729 IPSTATS_MIB_INADDRERRORS);
YOSHIFUJI Hideaki612f09e2007-04-13 16:18:02 -07002730 break;
2731 }
2732 /* FALLTHROUGH */
2733 case IPSTATS_MIB_OUTNOROUTES:
Denis V. Lunev3bd653c2008-10-08 10:54:51 -07002734 IP6_INC_STATS(dev_net(dst->dev), ip6_dst_idev(dst),
2735 ipstats_mib_noroutes);
YOSHIFUJI Hideaki612f09e2007-04-13 16:18:02 -07002736 break;
2737 }
Alexey Dobriyan3ffe5332010-02-18 08:25:24 +00002738 icmpv6_send(skb, ICMPV6_DEST_UNREACH, code, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002739 kfree_skb(skb);
2740 return 0;
2741}
2742
Thomas Graf9ce8ade2006-10-18 20:46:54 -07002743static int ip6_pkt_discard(struct sk_buff *skb)
2744{
YOSHIFUJI Hideaki612f09e2007-04-13 16:18:02 -07002745 return ip6_pkt_drop(skb, ICMPV6_NOROUTE, IPSTATS_MIB_INNOROUTES);
Thomas Graf9ce8ade2006-10-18 20:46:54 -07002746}
2747
Eric W. Biedermanede20592015-10-07 16:48:47 -05002748static int ip6_pkt_discard_out(struct net *net, struct sock *sk, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002749{
Eric Dumazetadf30902009-06-02 05:19:30 +00002750 skb->dev = skb_dst(skb)->dev;
YOSHIFUJI Hideaki612f09e2007-04-13 16:18:02 -07002751 return ip6_pkt_drop(skb, ICMPV6_NOROUTE, IPSTATS_MIB_OUTNOROUTES);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002752}
2753
Thomas Graf9ce8ade2006-10-18 20:46:54 -07002754static int ip6_pkt_prohibit(struct sk_buff *skb)
2755{
YOSHIFUJI Hideaki612f09e2007-04-13 16:18:02 -07002756 return ip6_pkt_drop(skb, ICMPV6_ADM_PROHIBITED, IPSTATS_MIB_INNOROUTES);
Thomas Graf9ce8ade2006-10-18 20:46:54 -07002757}
2758
Eric W. Biedermanede20592015-10-07 16:48:47 -05002759static int ip6_pkt_prohibit_out(struct net *net, struct sock *sk, struct sk_buff *skb)
Thomas Graf9ce8ade2006-10-18 20:46:54 -07002760{
Eric Dumazetadf30902009-06-02 05:19:30 +00002761 skb->dev = skb_dst(skb)->dev;
YOSHIFUJI Hideaki612f09e2007-04-13 16:18:02 -07002762 return ip6_pkt_drop(skb, ICMPV6_ADM_PROHIBITED, IPSTATS_MIB_OUTNOROUTES);
Thomas Graf9ce8ade2006-10-18 20:46:54 -07002763}
2764
Linus Torvalds1da177e2005-04-16 15:20:36 -07002765/*
2766 * Allocate a dst for local (unicast / anycast) address.
2767 */
2768
2769struct rt6_info *addrconf_dst_alloc(struct inet6_dev *idev,
2770 const struct in6_addr *addr,
David S. Miller8f031512011-12-06 16:48:14 -05002771 bool anycast)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002772{
David Ahernca254492015-10-12 11:47:10 -07002773 u32 tb_id;
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09002774 struct net *net = dev_net(idev->dev);
David Ahern4832c302017-08-17 12:17:20 -07002775 struct net_device *dev = idev->dev;
David Ahern5f02ce242016-09-10 12:09:54 -07002776 struct rt6_info *rt;
2777
David Ahern5f02ce242016-09-10 12:09:54 -07002778 rt = ip6_dst_alloc(net, dev, DST_NOCOUNT);
Hannes Frederic Sowaa3300ef2013-12-07 03:33:45 +01002779 if (!rt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002780 return ERR_PTR(-ENOMEM);
2781
Linus Torvalds1da177e2005-04-16 15:20:36 -07002782 in6_dev_hold(idev);
2783
David S. Miller11d53b42011-06-24 15:23:34 -07002784 rt->dst.flags |= DST_HOST;
Changli Gaod8d1f302010-06-10 23:31:35 -07002785 rt->dst.input = ip6_input;
2786 rt->dst.output = ip6_output;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002787 rt->rt6i_idev = idev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002788
David Ahern94b5e0f2017-02-02 08:52:21 -08002789 rt->rt6i_protocol = RTPROT_KERNEL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002790 rt->rt6i_flags = RTF_UP | RTF_NONEXTHOP;
YOSHIFUJI Hideaki58c4fb82005-12-21 22:56:42 +09002791 if (anycast)
2792 rt->rt6i_flags |= RTF_ANYCAST;
2793 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002794 rt->rt6i_flags |= RTF_LOCAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002795
Julian Anastasov550bab42013-10-20 15:43:04 +03002796 rt->rt6i_gateway = *addr;
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00002797 rt->rt6i_dst.addr = *addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002798 rt->rt6i_dst.plen = 128;
David Ahernca254492015-10-12 11:47:10 -07002799 tb_id = l3mdev_fib_table(idev->dev) ? : RT6_TABLE_LOCAL;
2800 rt->rt6i_table = fib6_get_table(net, tb_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002801
Linus Torvalds1da177e2005-04-16 15:20:36 -07002802 return rt;
2803}
2804
Daniel Walterc3968a82011-04-13 21:10:57 +00002805/* remove deleted ip from prefsrc entries */
2806struct arg_dev_net_ip {
2807 struct net_device *dev;
2808 struct net *net;
2809 struct in6_addr *addr;
2810};
2811
2812static int fib6_remove_prefsrc(struct rt6_info *rt, void *arg)
2813{
2814 struct net_device *dev = ((struct arg_dev_net_ip *)arg)->dev;
2815 struct net *net = ((struct arg_dev_net_ip *)arg)->net;
2816 struct in6_addr *addr = ((struct arg_dev_net_ip *)arg)->addr;
2817
David S. Millerd1918542011-12-28 20:19:20 -05002818 if (((void *)rt->dst.dev == dev || !dev) &&
Daniel Walterc3968a82011-04-13 21:10:57 +00002819 rt != net->ipv6.ip6_null_entry &&
2820 ipv6_addr_equal(addr, &rt->rt6i_prefsrc.addr)) {
2821 /* remove prefsrc entry */
2822 rt->rt6i_prefsrc.plen = 0;
2823 }
2824 return 0;
2825}
2826
2827void rt6_remove_prefsrc(struct inet6_ifaddr *ifp)
2828{
2829 struct net *net = dev_net(ifp->idev->dev);
2830 struct arg_dev_net_ip adni = {
2831 .dev = ifp->idev->dev,
2832 .net = net,
2833 .addr = &ifp->addr,
2834 };
Li RongQing0c3584d2013-12-27 16:32:38 +08002835 fib6_clean_all(net, fib6_remove_prefsrc, &adni);
Daniel Walterc3968a82011-04-13 21:10:57 +00002836}
2837
Duan Jiongbe7a0102014-05-15 15:56:14 +08002838#define RTF_RA_ROUTER (RTF_ADDRCONF | RTF_DEFAULT | RTF_GATEWAY)
2839#define RTF_CACHE_GATEWAY (RTF_GATEWAY | RTF_CACHE)
2840
2841/* Remove routers and update dst entries when gateway turn into host. */
2842static int fib6_clean_tohost(struct rt6_info *rt, void *arg)
2843{
2844 struct in6_addr *gateway = (struct in6_addr *)arg;
2845
2846 if ((((rt->rt6i_flags & RTF_RA_ROUTER) == RTF_RA_ROUTER) ||
2847 ((rt->rt6i_flags & RTF_CACHE_GATEWAY) == RTF_CACHE_GATEWAY)) &&
2848 ipv6_addr_equal(gateway, &rt->rt6i_gateway)) {
2849 return -1;
2850 }
2851 return 0;
2852}
2853
2854void rt6_clean_tohost(struct net *net, struct in6_addr *gateway)
2855{
2856 fib6_clean_all(net, fib6_clean_tohost, gateway);
2857}
2858
Daniel Lezcano8ed67782008-03-04 13:48:30 -08002859struct arg_dev_net {
2860 struct net_device *dev;
2861 struct net *net;
2862};
2863
David Aherna1a22c12017-01-18 07:40:36 -08002864/* called with write lock held for table with rt */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002865static int fib6_ifdown(struct rt6_info *rt, void *arg)
2866{
stephen hemmingerbc3ef662010-12-16 17:42:40 +00002867 const struct arg_dev_net *adn = arg;
2868 const struct net_device *dev = adn->dev;
Daniel Lezcano8ed67782008-03-04 13:48:30 -08002869
David S. Millerd1918542011-12-28 20:19:20 -05002870 if ((rt->dst.dev == dev || !dev) &&
David Aherna1a22c12017-01-18 07:40:36 -08002871 rt != adn->net->ipv6.ip6_null_entry &&
2872 (rt->rt6i_nsiblings == 0 ||
David Ahern8397ed32017-06-07 12:26:23 -06002873 (dev && netdev_unregistering(dev)) ||
David Aherna1a22c12017-01-18 07:40:36 -08002874 !rt->rt6i_idev->cnf.ignore_routes_with_linkdown))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002875 return -1;
David S. Millerc159d302011-12-26 15:24:36 -05002876
Linus Torvalds1da177e2005-04-16 15:20:36 -07002877 return 0;
2878}
2879
Daniel Lezcanof3db4852008-03-03 23:27:06 -08002880void rt6_ifdown(struct net *net, struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002881{
Daniel Lezcano8ed67782008-03-04 13:48:30 -08002882 struct arg_dev_net adn = {
2883 .dev = dev,
2884 .net = net,
2885 };
2886
Li RongQing0c3584d2013-12-27 16:32:38 +08002887 fib6_clean_all(net, fib6_ifdown, &adn);
Eric W. Biedermane332bc62015-10-12 11:02:08 -05002888 if (dev)
2889 rt6_uncached_list_flush_dev(net, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002890}
2891
Eric Dumazet95c96172012-04-15 05:58:06 +00002892struct rt6_mtu_change_arg {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002893 struct net_device *dev;
Eric Dumazet95c96172012-04-15 05:58:06 +00002894 unsigned int mtu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002895};
2896
2897static int rt6_mtu_change_route(struct rt6_info *rt, void *p_arg)
2898{
2899 struct rt6_mtu_change_arg *arg = (struct rt6_mtu_change_arg *) p_arg;
2900 struct inet6_dev *idev;
2901
2902 /* In IPv6 pmtu discovery is not optional,
2903 so that RTAX_MTU lock cannot disable it.
2904 We still use this lock to block changes
2905 caused by addrconf/ndisc.
2906 */
2907
2908 idev = __in6_dev_get(arg->dev);
David S. Miller38308472011-12-03 18:02:47 -05002909 if (!idev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002910 return 0;
2911
2912 /* For administrative MTU increase, there is no way to discover
2913 IPv6 PMTU increase, so PMTU increase should be updated here.
2914 Since RFC 1981 doesn't include administrative MTU increase
2915 update PMTU increase is a MUST. (i.e. jumbo frame)
2916 */
2917 /*
2918 If new MTU is less than route PMTU, this new MTU will be the
2919 lowest MTU in the path, update the route PMTU to reflect PMTU
2920 decreases; if new MTU is greater than route PMTU, and the
2921 old MTU is the lowest MTU in the path, update the route PMTU
2922 to reflect the increase. In this case if the other nodes' MTU
2923 also have the lowest MTU, TOO BIG MESSAGE will be lead to
Alexander Alemayhu67c408c2017-01-07 23:53:00 +01002924 PMTU discovery.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002925 */
David S. Millerd1918542011-12-28 20:19:20 -05002926 if (rt->dst.dev == arg->dev &&
Maciej Żenczykowskifb56be82016-11-04 14:51:54 -07002927 dst_metric_raw(&rt->dst, RTAX_MTU) &&
Martin KaFai Lau4b32b5a2015-04-28 13:03:06 -07002928 !dst_metric_locked(&rt->dst, RTAX_MTU)) {
2929 if (rt->rt6i_flags & RTF_CACHE) {
2930 /* For RTF_CACHE with rt6i_pmtu == 0
2931 * (i.e. a redirected route),
2932 * the metrics of its rt->dst.from has already
2933 * been updated.
2934 */
2935 if (rt->rt6i_pmtu && rt->rt6i_pmtu > arg->mtu)
2936 rt->rt6i_pmtu = arg->mtu;
2937 } else if (dst_mtu(&rt->dst) >= arg->mtu ||
2938 (dst_mtu(&rt->dst) < arg->mtu &&
2939 dst_mtu(&rt->dst) == idev->cnf.mtu6)) {
2940 dst_metric_set(&rt->dst, RTAX_MTU, arg->mtu);
2941 }
Simon Arlott566cfd82007-07-26 00:09:55 -07002942 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002943 return 0;
2944}
2945
Eric Dumazet95c96172012-04-15 05:58:06 +00002946void rt6_mtu_change(struct net_device *dev, unsigned int mtu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002947{
Thomas Grafc71099a2006-08-04 23:20:06 -07002948 struct rt6_mtu_change_arg arg = {
2949 .dev = dev,
2950 .mtu = mtu,
2951 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002952
Li RongQing0c3584d2013-12-27 16:32:38 +08002953 fib6_clean_all(dev_net(dev), rt6_mtu_change_route, &arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002954}
2955
Patrick McHardyef7c79e2007-06-05 12:38:30 -07002956static const struct nla_policy rtm_ipv6_policy[RTA_MAX+1] = {
Thomas Graf5176f912006-08-26 20:13:18 -07002957 [RTA_GATEWAY] = { .len = sizeof(struct in6_addr) },
Thomas Graf86872cb2006-08-22 00:01:08 -07002958 [RTA_OIF] = { .type = NLA_U32 },
Thomas Grafab364a62006-08-22 00:01:47 -07002959 [RTA_IIF] = { .type = NLA_U32 },
Thomas Graf86872cb2006-08-22 00:01:08 -07002960 [RTA_PRIORITY] = { .type = NLA_U32 },
2961 [RTA_METRICS] = { .type = NLA_NESTED },
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00002962 [RTA_MULTIPATH] = { .len = sizeof(struct rtnexthop) },
Lubomir Rintelc78ba6d2015-03-11 15:39:21 +01002963 [RTA_PREF] = { .type = NLA_U8 },
Roopa Prabhu19e42e42015-07-21 10:43:48 +02002964 [RTA_ENCAP_TYPE] = { .type = NLA_U16 },
2965 [RTA_ENCAP] = { .type = NLA_NESTED },
Xin Long32bc2012015-12-16 17:50:11 +08002966 [RTA_EXPIRES] = { .type = NLA_U32 },
Lorenzo Colitti622ec2c2016-11-04 02:23:42 +09002967 [RTA_UID] = { .type = NLA_U32 },
Liping Zhang3b45a412017-02-27 20:59:39 +08002968 [RTA_MARK] = { .type = NLA_U32 },
Thomas Graf86872cb2006-08-22 00:01:08 -07002969};
2970
2971static int rtm_to_fib6_config(struct sk_buff *skb, struct nlmsghdr *nlh,
David Ahern333c4302017-05-21 10:12:04 -06002972 struct fib6_config *cfg,
2973 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002974{
Thomas Graf86872cb2006-08-22 00:01:08 -07002975 struct rtmsg *rtm;
2976 struct nlattr *tb[RTA_MAX+1];
Lubomir Rintelc78ba6d2015-03-11 15:39:21 +01002977 unsigned int pref;
Thomas Graf86872cb2006-08-22 00:01:08 -07002978 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002979
Johannes Bergfceb6432017-04-12 14:34:07 +02002980 err = nlmsg_parse(nlh, sizeof(*rtm), tb, RTA_MAX, rtm_ipv6_policy,
2981 NULL);
Thomas Graf86872cb2006-08-22 00:01:08 -07002982 if (err < 0)
2983 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002984
Thomas Graf86872cb2006-08-22 00:01:08 -07002985 err = -EINVAL;
2986 rtm = nlmsg_data(nlh);
2987 memset(cfg, 0, sizeof(*cfg));
2988
2989 cfg->fc_table = rtm->rtm_table;
2990 cfg->fc_dst_len = rtm->rtm_dst_len;
2991 cfg->fc_src_len = rtm->rtm_src_len;
2992 cfg->fc_flags = RTF_UP;
2993 cfg->fc_protocol = rtm->rtm_protocol;
Nicolas Dichtelef2c7d72012-09-05 02:12:42 +00002994 cfg->fc_type = rtm->rtm_type;
Thomas Graf86872cb2006-08-22 00:01:08 -07002995
Nicolas Dichtelef2c7d72012-09-05 02:12:42 +00002996 if (rtm->rtm_type == RTN_UNREACHABLE ||
2997 rtm->rtm_type == RTN_BLACKHOLE ||
Nicolas Dichtelb4949ab2012-09-06 05:53:35 +00002998 rtm->rtm_type == RTN_PROHIBIT ||
2999 rtm->rtm_type == RTN_THROW)
Thomas Graf86872cb2006-08-22 00:01:08 -07003000 cfg->fc_flags |= RTF_REJECT;
3001
Maciej Żenczykowskiab79ad12010-09-27 00:07:02 +00003002 if (rtm->rtm_type == RTN_LOCAL)
3003 cfg->fc_flags |= RTF_LOCAL;
3004
Martin KaFai Lau1f56a01f2015-04-28 13:03:03 -07003005 if (rtm->rtm_flags & RTM_F_CLONED)
3006 cfg->fc_flags |= RTF_CACHE;
3007
Eric W. Biederman15e47302012-09-07 20:12:54 +00003008 cfg->fc_nlinfo.portid = NETLINK_CB(skb).portid;
Thomas Graf86872cb2006-08-22 00:01:08 -07003009 cfg->fc_nlinfo.nlh = nlh;
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09003010 cfg->fc_nlinfo.nl_net = sock_net(skb->sk);
Thomas Graf86872cb2006-08-22 00:01:08 -07003011
3012 if (tb[RTA_GATEWAY]) {
Jiri Benc67b61f62015-03-29 16:59:26 +02003013 cfg->fc_gateway = nla_get_in6_addr(tb[RTA_GATEWAY]);
Thomas Graf86872cb2006-08-22 00:01:08 -07003014 cfg->fc_flags |= RTF_GATEWAY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003015 }
Thomas Graf86872cb2006-08-22 00:01:08 -07003016
3017 if (tb[RTA_DST]) {
3018 int plen = (rtm->rtm_dst_len + 7) >> 3;
3019
3020 if (nla_len(tb[RTA_DST]) < plen)
3021 goto errout;
3022
3023 nla_memcpy(&cfg->fc_dst, tb[RTA_DST], plen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003024 }
Thomas Graf86872cb2006-08-22 00:01:08 -07003025
3026 if (tb[RTA_SRC]) {
3027 int plen = (rtm->rtm_src_len + 7) >> 3;
3028
3029 if (nla_len(tb[RTA_SRC]) < plen)
3030 goto errout;
3031
3032 nla_memcpy(&cfg->fc_src, tb[RTA_SRC], plen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003033 }
Thomas Graf86872cb2006-08-22 00:01:08 -07003034
Daniel Walterc3968a82011-04-13 21:10:57 +00003035 if (tb[RTA_PREFSRC])
Jiri Benc67b61f62015-03-29 16:59:26 +02003036 cfg->fc_prefsrc = nla_get_in6_addr(tb[RTA_PREFSRC]);
Daniel Walterc3968a82011-04-13 21:10:57 +00003037
Thomas Graf86872cb2006-08-22 00:01:08 -07003038 if (tb[RTA_OIF])
3039 cfg->fc_ifindex = nla_get_u32(tb[RTA_OIF]);
3040
3041 if (tb[RTA_PRIORITY])
3042 cfg->fc_metric = nla_get_u32(tb[RTA_PRIORITY]);
3043
3044 if (tb[RTA_METRICS]) {
3045 cfg->fc_mx = nla_data(tb[RTA_METRICS]);
3046 cfg->fc_mx_len = nla_len(tb[RTA_METRICS]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003047 }
Thomas Graf86872cb2006-08-22 00:01:08 -07003048
3049 if (tb[RTA_TABLE])
3050 cfg->fc_table = nla_get_u32(tb[RTA_TABLE]);
3051
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00003052 if (tb[RTA_MULTIPATH]) {
3053 cfg->fc_mp = nla_data(tb[RTA_MULTIPATH]);
3054 cfg->fc_mp_len = nla_len(tb[RTA_MULTIPATH]);
David Ahern9ed59592017-01-17 14:57:36 -08003055
3056 err = lwtunnel_valid_encap_type_attr(cfg->fc_mp,
David Ahernc255bd62017-05-27 16:19:27 -06003057 cfg->fc_mp_len, extack);
David Ahern9ed59592017-01-17 14:57:36 -08003058 if (err < 0)
3059 goto errout;
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00003060 }
3061
Lubomir Rintelc78ba6d2015-03-11 15:39:21 +01003062 if (tb[RTA_PREF]) {
3063 pref = nla_get_u8(tb[RTA_PREF]);
3064 if (pref != ICMPV6_ROUTER_PREF_LOW &&
3065 pref != ICMPV6_ROUTER_PREF_HIGH)
3066 pref = ICMPV6_ROUTER_PREF_MEDIUM;
3067 cfg->fc_flags |= RTF_PREF(pref);
3068 }
3069
Roopa Prabhu19e42e42015-07-21 10:43:48 +02003070 if (tb[RTA_ENCAP])
3071 cfg->fc_encap = tb[RTA_ENCAP];
3072
David Ahern9ed59592017-01-17 14:57:36 -08003073 if (tb[RTA_ENCAP_TYPE]) {
Roopa Prabhu19e42e42015-07-21 10:43:48 +02003074 cfg->fc_encap_type = nla_get_u16(tb[RTA_ENCAP_TYPE]);
3075
David Ahernc255bd62017-05-27 16:19:27 -06003076 err = lwtunnel_valid_encap_type(cfg->fc_encap_type, extack);
David Ahern9ed59592017-01-17 14:57:36 -08003077 if (err < 0)
3078 goto errout;
3079 }
3080
Xin Long32bc2012015-12-16 17:50:11 +08003081 if (tb[RTA_EXPIRES]) {
3082 unsigned long timeout = addrconf_timeout_fixup(nla_get_u32(tb[RTA_EXPIRES]), HZ);
3083
3084 if (addrconf_finite_timeout(timeout)) {
3085 cfg->fc_expires = jiffies_to_clock_t(timeout * HZ);
3086 cfg->fc_flags |= RTF_EXPIRES;
3087 }
3088 }
3089
Thomas Graf86872cb2006-08-22 00:01:08 -07003090 err = 0;
3091errout:
3092 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003093}
3094
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003095struct rt6_nh {
3096 struct rt6_info *rt6_info;
3097 struct fib6_config r_cfg;
3098 struct mx6_config mxc;
3099 struct list_head next;
3100};
3101
3102static void ip6_print_replace_route_err(struct list_head *rt6_nh_list)
3103{
3104 struct rt6_nh *nh;
3105
3106 list_for_each_entry(nh, rt6_nh_list, next) {
David Ahern7d4d5062017-02-02 12:37:12 -08003107 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 -07003108 &nh->r_cfg.fc_dst, &nh->r_cfg.fc_gateway,
3109 nh->r_cfg.fc_ifindex);
3110 }
3111}
3112
3113static int ip6_route_info_append(struct list_head *rt6_nh_list,
3114 struct rt6_info *rt, struct fib6_config *r_cfg)
3115{
3116 struct rt6_nh *nh;
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003117 int err = -EEXIST;
3118
3119 list_for_each_entry(nh, rt6_nh_list, next) {
3120 /* check if rt6_info already exists */
David Ahernf06b7542017-07-05 14:41:46 -06003121 if (rt6_duplicate_nexthop(nh->rt6_info, rt))
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003122 return err;
3123 }
3124
3125 nh = kzalloc(sizeof(*nh), GFP_KERNEL);
3126 if (!nh)
3127 return -ENOMEM;
3128 nh->rt6_info = rt;
3129 err = ip6_convert_metrics(&nh->mxc, r_cfg);
3130 if (err) {
3131 kfree(nh);
3132 return err;
3133 }
3134 memcpy(&nh->r_cfg, r_cfg, sizeof(*r_cfg));
3135 list_add_tail(&nh->next, rt6_nh_list);
3136
3137 return 0;
3138}
3139
David Ahern3b1137f2017-02-02 12:37:10 -08003140static void ip6_route_mpath_notify(struct rt6_info *rt,
3141 struct rt6_info *rt_last,
3142 struct nl_info *info,
3143 __u16 nlflags)
3144{
3145 /* if this is an APPEND route, then rt points to the first route
3146 * inserted and rt_last points to last route inserted. Userspace
3147 * wants a consistent dump of the route which starts at the first
3148 * nexthop. Since sibling routes are always added at the end of
3149 * the list, find the first sibling of the last route appended
3150 */
3151 if ((nlflags & NLM_F_APPEND) && rt_last && rt_last->rt6i_nsiblings) {
3152 rt = list_first_entry(&rt_last->rt6i_siblings,
3153 struct rt6_info,
3154 rt6i_siblings);
3155 }
3156
3157 if (rt)
3158 inet6_rt_notify(RTM_NEWROUTE, rt, info, nlflags);
3159}
3160
David Ahern333c4302017-05-21 10:12:04 -06003161static int ip6_route_multipath_add(struct fib6_config *cfg,
3162 struct netlink_ext_ack *extack)
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00003163{
David Ahern3b1137f2017-02-02 12:37:10 -08003164 struct rt6_info *rt_notif = NULL, *rt_last = NULL;
3165 struct nl_info *info = &cfg->fc_nlinfo;
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00003166 struct fib6_config r_cfg;
3167 struct rtnexthop *rtnh;
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003168 struct rt6_info *rt;
3169 struct rt6_nh *err_nh;
3170 struct rt6_nh *nh, *nh_safe;
David Ahern3b1137f2017-02-02 12:37:10 -08003171 __u16 nlflags;
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00003172 int remaining;
3173 int attrlen;
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003174 int err = 1;
3175 int nhn = 0;
3176 int replace = (cfg->fc_nlinfo.nlh &&
3177 (cfg->fc_nlinfo.nlh->nlmsg_flags & NLM_F_REPLACE));
3178 LIST_HEAD(rt6_nh_list);
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00003179
David Ahern3b1137f2017-02-02 12:37:10 -08003180 nlflags = replace ? NLM_F_REPLACE : NLM_F_CREATE;
3181 if (info->nlh && info->nlh->nlmsg_flags & NLM_F_APPEND)
3182 nlflags |= NLM_F_APPEND;
3183
Michal Kubeček35f1b4e2015-05-18 20:53:55 +02003184 remaining = cfg->fc_mp_len;
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00003185 rtnh = (struct rtnexthop *)cfg->fc_mp;
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00003186
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003187 /* Parse a Multipath Entry and build a list (rt6_nh_list) of
3188 * rt6_info structs per nexthop
3189 */
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00003190 while (rtnh_ok(rtnh, remaining)) {
3191 memcpy(&r_cfg, cfg, sizeof(*cfg));
3192 if (rtnh->rtnh_ifindex)
3193 r_cfg.fc_ifindex = rtnh->rtnh_ifindex;
3194
3195 attrlen = rtnh_attrlen(rtnh);
3196 if (attrlen > 0) {
3197 struct nlattr *nla, *attrs = rtnh_attrs(rtnh);
3198
3199 nla = nla_find(attrs, attrlen, RTA_GATEWAY);
3200 if (nla) {
Jiri Benc67b61f62015-03-29 16:59:26 +02003201 r_cfg.fc_gateway = nla_get_in6_addr(nla);
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00003202 r_cfg.fc_flags |= RTF_GATEWAY;
3203 }
Roopa Prabhu19e42e42015-07-21 10:43:48 +02003204 r_cfg.fc_encap = nla_find(attrs, attrlen, RTA_ENCAP);
3205 nla = nla_find(attrs, attrlen, RTA_ENCAP_TYPE);
3206 if (nla)
3207 r_cfg.fc_encap_type = nla_get_u16(nla);
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00003208 }
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003209
David Ahern333c4302017-05-21 10:12:04 -06003210 rt = ip6_route_info_create(&r_cfg, extack);
Roopa Prabhu8c5b83f2015-10-10 08:26:36 -07003211 if (IS_ERR(rt)) {
3212 err = PTR_ERR(rt);
3213 rt = NULL;
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003214 goto cleanup;
Roopa Prabhu8c5b83f2015-10-10 08:26:36 -07003215 }
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003216
3217 err = ip6_route_info_append(&rt6_nh_list, rt, &r_cfg);
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00003218 if (err) {
Wei Wang587fea72017-06-17 10:42:36 -07003219 dst_release_immediate(&rt->dst);
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003220 goto cleanup;
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00003221 }
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003222
3223 rtnh = rtnh_next(rtnh, &remaining);
3224 }
3225
David Ahern3b1137f2017-02-02 12:37:10 -08003226 /* for add and replace send one notification with all nexthops.
3227 * Skip the notification in fib6_add_rt2node and send one with
3228 * the full route when done
3229 */
3230 info->skip_notify = 1;
3231
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003232 err_nh = NULL;
3233 list_for_each_entry(nh, &rt6_nh_list, next) {
David Ahern3b1137f2017-02-02 12:37:10 -08003234 rt_last = nh->rt6_info;
David Ahern333c4302017-05-21 10:12:04 -06003235 err = __ip6_ins_rt(nh->rt6_info, info, &nh->mxc, extack);
David Ahern3b1137f2017-02-02 12:37:10 -08003236 /* save reference to first route for notification */
3237 if (!rt_notif && !err)
3238 rt_notif = nh->rt6_info;
3239
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003240 /* nh->rt6_info is used or freed at this point, reset to NULL*/
3241 nh->rt6_info = NULL;
3242 if (err) {
3243 if (replace && nhn)
3244 ip6_print_replace_route_err(&rt6_nh_list);
3245 err_nh = nh;
3246 goto add_errout;
3247 }
3248
Nicolas Dichtel1a724182012-11-01 22:58:22 +00003249 /* Because each route is added like a single route we remove
Michal Kubeček27596472015-05-18 20:54:00 +02003250 * these flags after the first nexthop: if there is a collision,
3251 * we have already failed to add the first nexthop:
3252 * fib6_add_rt2node() has rejected it; when replacing, old
3253 * nexthops have been replaced by first new, the rest should
3254 * be added to it.
Nicolas Dichtel1a724182012-11-01 22:58:22 +00003255 */
Michal Kubeček27596472015-05-18 20:54:00 +02003256 cfg->fc_nlinfo.nlh->nlmsg_flags &= ~(NLM_F_EXCL |
3257 NLM_F_REPLACE);
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003258 nhn++;
3259 }
3260
David Ahern3b1137f2017-02-02 12:37:10 -08003261 /* success ... tell user about new route */
3262 ip6_route_mpath_notify(rt_notif, rt_last, info, nlflags);
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003263 goto cleanup;
3264
3265add_errout:
David Ahern3b1137f2017-02-02 12:37:10 -08003266 /* send notification for routes that were added so that
3267 * the delete notifications sent by ip6_route_del are
3268 * coherent
3269 */
3270 if (rt_notif)
3271 ip6_route_mpath_notify(rt_notif, rt_last, info, nlflags);
3272
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003273 /* Delete routes that were already added */
3274 list_for_each_entry(nh, &rt6_nh_list, next) {
3275 if (err_nh == nh)
3276 break;
David Ahern333c4302017-05-21 10:12:04 -06003277 ip6_route_del(&nh->r_cfg, extack);
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003278 }
3279
3280cleanup:
3281 list_for_each_entry_safe(nh, nh_safe, &rt6_nh_list, next) {
Wei Wang587fea72017-06-17 10:42:36 -07003282 if (nh->rt6_info)
3283 dst_release_immediate(&nh->rt6_info->dst);
Wu Fengguang52fe51f2015-09-10 06:57:12 +08003284 kfree(nh->mxc.mx);
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003285 list_del(&nh->next);
3286 kfree(nh);
3287 }
3288
3289 return err;
3290}
3291
David Ahern333c4302017-05-21 10:12:04 -06003292static int ip6_route_multipath_del(struct fib6_config *cfg,
3293 struct netlink_ext_ack *extack)
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003294{
3295 struct fib6_config r_cfg;
3296 struct rtnexthop *rtnh;
3297 int remaining;
3298 int attrlen;
3299 int err = 1, last_err = 0;
3300
3301 remaining = cfg->fc_mp_len;
3302 rtnh = (struct rtnexthop *)cfg->fc_mp;
3303
3304 /* Parse a Multipath Entry */
3305 while (rtnh_ok(rtnh, remaining)) {
3306 memcpy(&r_cfg, cfg, sizeof(*cfg));
3307 if (rtnh->rtnh_ifindex)
3308 r_cfg.fc_ifindex = rtnh->rtnh_ifindex;
3309
3310 attrlen = rtnh_attrlen(rtnh);
3311 if (attrlen > 0) {
3312 struct nlattr *nla, *attrs = rtnh_attrs(rtnh);
3313
3314 nla = nla_find(attrs, attrlen, RTA_GATEWAY);
3315 if (nla) {
3316 nla_memcpy(&r_cfg.fc_gateway, nla, 16);
3317 r_cfg.fc_flags |= RTF_GATEWAY;
3318 }
3319 }
David Ahern333c4302017-05-21 10:12:04 -06003320 err = ip6_route_del(&r_cfg, extack);
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003321 if (err)
3322 last_err = err;
3323
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00003324 rtnh = rtnh_next(rtnh, &remaining);
3325 }
3326
3327 return last_err;
3328}
3329
David Ahernc21ef3e2017-04-16 09:48:24 -07003330static int inet6_rtm_delroute(struct sk_buff *skb, struct nlmsghdr *nlh,
3331 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003332{
Thomas Graf86872cb2006-08-22 00:01:08 -07003333 struct fib6_config cfg;
3334 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003335
David Ahern333c4302017-05-21 10:12:04 -06003336 err = rtm_to_fib6_config(skb, nlh, &cfg, extack);
Thomas Graf86872cb2006-08-22 00:01:08 -07003337 if (err < 0)
3338 return err;
3339
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00003340 if (cfg.fc_mp)
David Ahern333c4302017-05-21 10:12:04 -06003341 return ip6_route_multipath_del(&cfg, extack);
David Ahern0ae81332017-02-02 12:37:08 -08003342 else {
3343 cfg.fc_delete_all_nh = 1;
David Ahern333c4302017-05-21 10:12:04 -06003344 return ip6_route_del(&cfg, extack);
David Ahern0ae81332017-02-02 12:37:08 -08003345 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003346}
3347
David Ahernc21ef3e2017-04-16 09:48:24 -07003348static int inet6_rtm_newroute(struct sk_buff *skb, struct nlmsghdr *nlh,
3349 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003350{
Thomas Graf86872cb2006-08-22 00:01:08 -07003351 struct fib6_config cfg;
3352 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003353
David Ahern333c4302017-05-21 10:12:04 -06003354 err = rtm_to_fib6_config(skb, nlh, &cfg, extack);
Thomas Graf86872cb2006-08-22 00:01:08 -07003355 if (err < 0)
3356 return err;
3357
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00003358 if (cfg.fc_mp)
David Ahern333c4302017-05-21 10:12:04 -06003359 return ip6_route_multipath_add(&cfg, extack);
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00003360 else
David Ahern333c4302017-05-21 10:12:04 -06003361 return ip6_route_add(&cfg, extack);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003362}
3363
David Ahernbeb1afac52017-02-02 12:37:09 -08003364static size_t rt6_nlmsg_size(struct rt6_info *rt)
Thomas Graf339bf982006-11-10 14:10:15 -08003365{
David Ahernbeb1afac52017-02-02 12:37:09 -08003366 int nexthop_len = 0;
3367
3368 if (rt->rt6i_nsiblings) {
3369 nexthop_len = nla_total_size(0) /* RTA_MULTIPATH */
3370 + NLA_ALIGN(sizeof(struct rtnexthop))
3371 + nla_total_size(16) /* RTA_GATEWAY */
David Ahernbeb1afac52017-02-02 12:37:09 -08003372 + lwtunnel_get_encap_size(rt->dst.lwtstate);
3373
3374 nexthop_len *= rt->rt6i_nsiblings;
3375 }
3376
Thomas Graf339bf982006-11-10 14:10:15 -08003377 return NLMSG_ALIGN(sizeof(struct rtmsg))
3378 + nla_total_size(16) /* RTA_SRC */
3379 + nla_total_size(16) /* RTA_DST */
3380 + nla_total_size(16) /* RTA_GATEWAY */
3381 + nla_total_size(16) /* RTA_PREFSRC */
3382 + nla_total_size(4) /* RTA_TABLE */
3383 + nla_total_size(4) /* RTA_IIF */
3384 + nla_total_size(4) /* RTA_OIF */
3385 + nla_total_size(4) /* RTA_PRIORITY */
Noriaki TAKAMIYA6a2b9ce2007-01-23 22:09:41 -08003386 + RTAX_MAX * nla_total_size(4) /* RTA_METRICS */
Daniel Borkmannea697632015-01-05 23:57:47 +01003387 + nla_total_size(sizeof(struct rta_cacheinfo))
Lubomir Rintelc78ba6d2015-03-11 15:39:21 +01003388 + nla_total_size(TCP_CA_NAME_MAX) /* RTAX_CC_ALGO */
Roopa Prabhu19e42e42015-07-21 10:43:48 +02003389 + nla_total_size(1) /* RTA_PREF */
David Ahernbeb1afac52017-02-02 12:37:09 -08003390 + lwtunnel_get_encap_size(rt->dst.lwtstate)
3391 + nexthop_len;
3392}
3393
3394static int rt6_nexthop_info(struct sk_buff *skb, struct rt6_info *rt,
David Ahern5be083c2017-03-06 15:57:31 -08003395 unsigned int *flags, bool skip_oif)
David Ahernbeb1afac52017-02-02 12:37:09 -08003396{
3397 if (!netif_running(rt->dst.dev) || !netif_carrier_ok(rt->dst.dev)) {
3398 *flags |= RTNH_F_LINKDOWN;
3399 if (rt->rt6i_idev->cnf.ignore_routes_with_linkdown)
3400 *flags |= RTNH_F_DEAD;
3401 }
3402
3403 if (rt->rt6i_flags & RTF_GATEWAY) {
3404 if (nla_put_in6_addr(skb, RTA_GATEWAY, &rt->rt6i_gateway) < 0)
3405 goto nla_put_failure;
3406 }
3407
Ido Schimmelfe400792017-08-15 09:09:49 +02003408 if (rt->rt6i_nh_flags & RTNH_F_OFFLOAD)
Ido Schimmel61e4d012017-08-03 13:28:20 +02003409 *flags |= RTNH_F_OFFLOAD;
3410
David Ahern5be083c2017-03-06 15:57:31 -08003411 /* not needed for multipath encoding b/c it has a rtnexthop struct */
3412 if (!skip_oif && rt->dst.dev &&
David Ahernbeb1afac52017-02-02 12:37:09 -08003413 nla_put_u32(skb, RTA_OIF, rt->dst.dev->ifindex))
3414 goto nla_put_failure;
3415
3416 if (rt->dst.lwtstate &&
3417 lwtunnel_fill_encap(skb, rt->dst.lwtstate) < 0)
3418 goto nla_put_failure;
3419
3420 return 0;
3421
3422nla_put_failure:
3423 return -EMSGSIZE;
3424}
3425
David Ahern5be083c2017-03-06 15:57:31 -08003426/* add multipath next hop */
David Ahernbeb1afac52017-02-02 12:37:09 -08003427static int rt6_add_nexthop(struct sk_buff *skb, struct rt6_info *rt)
3428{
3429 struct rtnexthop *rtnh;
3430 unsigned int flags = 0;
3431
3432 rtnh = nla_reserve_nohdr(skb, sizeof(*rtnh));
3433 if (!rtnh)
3434 goto nla_put_failure;
3435
3436 rtnh->rtnh_hops = 0;
3437 rtnh->rtnh_ifindex = rt->dst.dev ? rt->dst.dev->ifindex : 0;
3438
David Ahern5be083c2017-03-06 15:57:31 -08003439 if (rt6_nexthop_info(skb, rt, &flags, true) < 0)
David Ahernbeb1afac52017-02-02 12:37:09 -08003440 goto nla_put_failure;
3441
3442 rtnh->rtnh_flags = flags;
3443
3444 /* length of rtnetlink header + attributes */
3445 rtnh->rtnh_len = nlmsg_get_pos(skb) - (void *)rtnh;
3446
3447 return 0;
3448
3449nla_put_failure:
3450 return -EMSGSIZE;
Thomas Graf339bf982006-11-10 14:10:15 -08003451}
3452
Brian Haley191cd582008-08-14 15:33:21 -07003453static int rt6_fill_node(struct net *net,
3454 struct sk_buff *skb, struct rt6_info *rt,
Jamal Hadi Salim0d51aa82005-06-21 13:51:04 -07003455 struct in6_addr *dst, struct in6_addr *src,
Eric W. Biederman15e47302012-09-07 20:12:54 +00003456 int iif, int type, u32 portid, u32 seq,
David Ahernf8cfe2c2017-01-17 15:51:08 -08003457 unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003458{
Martin KaFai Lau4b32b5a2015-04-28 13:03:06 -07003459 u32 metrics[RTAX_MAX];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003460 struct rtmsg *rtm;
Thomas Graf2d7202b2006-08-22 00:01:27 -07003461 struct nlmsghdr *nlh;
Thomas Grafe3703b32006-11-27 09:27:07 -08003462 long expires;
Patrick McHardy9e762a42006-08-10 23:09:48 -07003463 u32 table;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003464
Eric W. Biederman15e47302012-09-07 20:12:54 +00003465 nlh = nlmsg_put(skb, portid, seq, type, sizeof(*rtm), flags);
David S. Miller38308472011-12-03 18:02:47 -05003466 if (!nlh)
Patrick McHardy26932562007-01-31 23:16:40 -08003467 return -EMSGSIZE;
Thomas Graf2d7202b2006-08-22 00:01:27 -07003468
3469 rtm = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003470 rtm->rtm_family = AF_INET6;
3471 rtm->rtm_dst_len = rt->rt6i_dst.plen;
3472 rtm->rtm_src_len = rt->rt6i_src.plen;
3473 rtm->rtm_tos = 0;
Thomas Grafc71099a2006-08-04 23:20:06 -07003474 if (rt->rt6i_table)
Patrick McHardy9e762a42006-08-10 23:09:48 -07003475 table = rt->rt6i_table->tb6_id;
Thomas Grafc71099a2006-08-04 23:20:06 -07003476 else
Patrick McHardy9e762a42006-08-10 23:09:48 -07003477 table = RT6_TABLE_UNSPEC;
3478 rtm->rtm_table = table;
David S. Millerc78679e2012-04-01 20:27:33 -04003479 if (nla_put_u32(skb, RTA_TABLE, table))
3480 goto nla_put_failure;
Nicolas Dichtelef2c7d72012-09-05 02:12:42 +00003481 if (rt->rt6i_flags & RTF_REJECT) {
3482 switch (rt->dst.error) {
3483 case -EINVAL:
3484 rtm->rtm_type = RTN_BLACKHOLE;
3485 break;
3486 case -EACCES:
3487 rtm->rtm_type = RTN_PROHIBIT;
3488 break;
Nicolas Dichtelb4949ab2012-09-06 05:53:35 +00003489 case -EAGAIN:
3490 rtm->rtm_type = RTN_THROW;
3491 break;
Nicolas Dichtelef2c7d72012-09-05 02:12:42 +00003492 default:
3493 rtm->rtm_type = RTN_UNREACHABLE;
3494 break;
3495 }
3496 }
David S. Miller38308472011-12-03 18:02:47 -05003497 else if (rt->rt6i_flags & RTF_LOCAL)
Maciej Żenczykowskiab79ad12010-09-27 00:07:02 +00003498 rtm->rtm_type = RTN_LOCAL;
David Ahern4ee39732017-03-15 18:14:33 -07003499 else if (rt->rt6i_flags & RTF_ANYCAST)
3500 rtm->rtm_type = RTN_ANYCAST;
David S. Millerd1918542011-12-28 20:19:20 -05003501 else if (rt->dst.dev && (rt->dst.dev->flags & IFF_LOOPBACK))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003502 rtm->rtm_type = RTN_LOCAL;
3503 else
3504 rtm->rtm_type = RTN_UNICAST;
3505 rtm->rtm_flags = 0;
3506 rtm->rtm_scope = RT_SCOPE_UNIVERSE;
3507 rtm->rtm_protocol = rt->rt6i_protocol;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003508
David S. Miller38308472011-12-03 18:02:47 -05003509 if (rt->rt6i_flags & RTF_CACHE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003510 rtm->rtm_flags |= RTM_F_CLONED;
3511
3512 if (dst) {
Jiri Benc930345e2015-03-29 16:59:25 +02003513 if (nla_put_in6_addr(skb, RTA_DST, dst))
David S. Millerc78679e2012-04-01 20:27:33 -04003514 goto nla_put_failure;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003515 rtm->rtm_dst_len = 128;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003516 } else if (rtm->rtm_dst_len)
Jiri Benc930345e2015-03-29 16:59:25 +02003517 if (nla_put_in6_addr(skb, RTA_DST, &rt->rt6i_dst.addr))
David S. Millerc78679e2012-04-01 20:27:33 -04003518 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003519#ifdef CONFIG_IPV6_SUBTREES
3520 if (src) {
Jiri Benc930345e2015-03-29 16:59:25 +02003521 if (nla_put_in6_addr(skb, RTA_SRC, src))
David S. Millerc78679e2012-04-01 20:27:33 -04003522 goto nla_put_failure;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003523 rtm->rtm_src_len = 128;
David S. Millerc78679e2012-04-01 20:27:33 -04003524 } else if (rtm->rtm_src_len &&
Jiri Benc930345e2015-03-29 16:59:25 +02003525 nla_put_in6_addr(skb, RTA_SRC, &rt->rt6i_src.addr))
David S. Millerc78679e2012-04-01 20:27:33 -04003526 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003527#endif
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09003528 if (iif) {
3529#ifdef CONFIG_IPV6_MROUTE
3530 if (ipv6_addr_is_multicast(&rt->rt6i_dst.addr)) {
David Ahernfd61c6b2017-01-17 15:51:07 -08003531 int err = ip6mr_get_route(net, skb, rtm, portid);
Nikolay Aleksandrov2cf75072016-09-25 23:08:31 +02003532
David Ahernfd61c6b2017-01-17 15:51:07 -08003533 if (err == 0)
3534 return 0;
3535 if (err < 0)
3536 goto nla_put_failure;
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09003537 } else
3538#endif
David S. Millerc78679e2012-04-01 20:27:33 -04003539 if (nla_put_u32(skb, RTA_IIF, iif))
3540 goto nla_put_failure;
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09003541 } else if (dst) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003542 struct in6_addr saddr_buf;
David S. Millerc78679e2012-04-01 20:27:33 -04003543 if (ip6_route_get_saddr(net, rt, dst, 0, &saddr_buf) == 0 &&
Jiri Benc930345e2015-03-29 16:59:25 +02003544 nla_put_in6_addr(skb, RTA_PREFSRC, &saddr_buf))
David S. Millerc78679e2012-04-01 20:27:33 -04003545 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003546 }
Thomas Graf2d7202b2006-08-22 00:01:27 -07003547
Daniel Walterc3968a82011-04-13 21:10:57 +00003548 if (rt->rt6i_prefsrc.plen) {
3549 struct in6_addr saddr_buf;
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00003550 saddr_buf = rt->rt6i_prefsrc.addr;
Jiri Benc930345e2015-03-29 16:59:25 +02003551 if (nla_put_in6_addr(skb, RTA_PREFSRC, &saddr_buf))
David S. Millerc78679e2012-04-01 20:27:33 -04003552 goto nla_put_failure;
Daniel Walterc3968a82011-04-13 21:10:57 +00003553 }
3554
Martin KaFai Lau4b32b5a2015-04-28 13:03:06 -07003555 memcpy(metrics, dst_metrics_ptr(&rt->dst), sizeof(metrics));
3556 if (rt->rt6i_pmtu)
3557 metrics[RTAX_MTU - 1] = rt->rt6i_pmtu;
3558 if (rtnetlink_put_metrics(skb, metrics) < 0)
Thomas Graf2d7202b2006-08-22 00:01:27 -07003559 goto nla_put_failure;
3560
David S. Millerc78679e2012-04-01 20:27:33 -04003561 if (nla_put_u32(skb, RTA_PRIORITY, rt->rt6i_metric))
3562 goto nla_put_failure;
Li Wei82539472012-07-29 16:01:30 +00003563
David Ahernbeb1afac52017-02-02 12:37:09 -08003564 /* For multipath routes, walk the siblings list and add
3565 * each as a nexthop within RTA_MULTIPATH.
3566 */
3567 if (rt->rt6i_nsiblings) {
3568 struct rt6_info *sibling, *next_sibling;
3569 struct nlattr *mp;
3570
3571 mp = nla_nest_start(skb, RTA_MULTIPATH);
3572 if (!mp)
3573 goto nla_put_failure;
3574
3575 if (rt6_add_nexthop(skb, rt) < 0)
3576 goto nla_put_failure;
3577
3578 list_for_each_entry_safe(sibling, next_sibling,
3579 &rt->rt6i_siblings, rt6i_siblings) {
3580 if (rt6_add_nexthop(skb, sibling) < 0)
3581 goto nla_put_failure;
3582 }
3583
3584 nla_nest_end(skb, mp);
3585 } else {
David Ahern5be083c2017-03-06 15:57:31 -08003586 if (rt6_nexthop_info(skb, rt, &rtm->rtm_flags, false) < 0)
David Ahernbeb1afac52017-02-02 12:37:09 -08003587 goto nla_put_failure;
3588 }
3589
Li Wei82539472012-07-29 16:01:30 +00003590 expires = (rt->rt6i_flags & RTF_EXPIRES) ? rt->dst.expires - jiffies : 0;
YOSHIFUJI Hideaki69cdf8f2008-05-19 16:55:13 -07003591
David S. Miller87a50692012-07-10 05:06:14 -07003592 if (rtnl_put_cacheinfo(skb, &rt->dst, 0, expires, rt->dst.error) < 0)
Thomas Grafe3703b32006-11-27 09:27:07 -08003593 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003594
Lubomir Rintelc78ba6d2015-03-11 15:39:21 +01003595 if (nla_put_u8(skb, RTA_PREF, IPV6_EXTRACT_PREF(rt->rt6i_flags)))
3596 goto nla_put_failure;
3597
Roopa Prabhu19e42e42015-07-21 10:43:48 +02003598
Johannes Berg053c0952015-01-16 22:09:00 +01003599 nlmsg_end(skb, nlh);
3600 return 0;
Thomas Graf2d7202b2006-08-22 00:01:27 -07003601
3602nla_put_failure:
Patrick McHardy26932562007-01-31 23:16:40 -08003603 nlmsg_cancel(skb, nlh);
3604 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003605}
3606
Patrick McHardy1b43af52006-08-10 23:11:17 -07003607int rt6_dump_route(struct rt6_info *rt, void *p_arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003608{
3609 struct rt6_rtnl_dump_arg *arg = (struct rt6_rtnl_dump_arg *) p_arg;
David Ahern1f17e2f2017-01-26 13:54:08 -08003610 struct net *net = arg->net;
3611
3612 if (rt == net->ipv6.ip6_null_entry)
3613 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003614
Thomas Graf2d7202b2006-08-22 00:01:27 -07003615 if (nlmsg_len(arg->cb->nlh) >= sizeof(struct rtmsg)) {
3616 struct rtmsg *rtm = nlmsg_data(arg->cb->nlh);
David Ahernf8cfe2c2017-01-17 15:51:08 -08003617
3618 /* user wants prefix routes only */
3619 if (rtm->rtm_flags & RTM_F_PREFIX &&
3620 !(rt->rt6i_flags & RTF_PREFIX_RT)) {
3621 /* success since this is not a prefix route */
3622 return 1;
3623 }
3624 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003625
David Ahern1f17e2f2017-01-26 13:54:08 -08003626 return rt6_fill_node(net,
Brian Haley191cd582008-08-14 15:33:21 -07003627 arg->skb, rt, NULL, NULL, 0, RTM_NEWROUTE,
Eric W. Biederman15e47302012-09-07 20:12:54 +00003628 NETLINK_CB(arg->cb->skb).portid, arg->cb->nlh->nlmsg_seq,
David Ahernf8cfe2c2017-01-17 15:51:08 -08003629 NLM_F_MULTI);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003630}
3631
David Ahernc21ef3e2017-04-16 09:48:24 -07003632static int inet6_rtm_getroute(struct sk_buff *in_skb, struct nlmsghdr *nlh,
3633 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003634{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09003635 struct net *net = sock_net(in_skb->sk);
Thomas Grafab364a62006-08-22 00:01:47 -07003636 struct nlattr *tb[RTA_MAX+1];
Roopa Prabhu18c3a612017-05-25 10:42:40 -07003637 int err, iif = 0, oif = 0;
3638 struct dst_entry *dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003639 struct rt6_info *rt;
Thomas Grafab364a62006-08-22 00:01:47 -07003640 struct sk_buff *skb;
3641 struct rtmsg *rtm;
David S. Miller4c9483b2011-03-12 16:22:43 -05003642 struct flowi6 fl6;
Roopa Prabhu18c3a612017-05-25 10:42:40 -07003643 bool fibmatch;
Thomas Grafab364a62006-08-22 00:01:47 -07003644
Johannes Bergfceb6432017-04-12 14:34:07 +02003645 err = nlmsg_parse(nlh, sizeof(*rtm), tb, RTA_MAX, rtm_ipv6_policy,
David Ahernc21ef3e2017-04-16 09:48:24 -07003646 extack);
Thomas Grafab364a62006-08-22 00:01:47 -07003647 if (err < 0)
3648 goto errout;
3649
3650 err = -EINVAL;
David S. Miller4c9483b2011-03-12 16:22:43 -05003651 memset(&fl6, 0, sizeof(fl6));
Hannes Frederic Sowa38b70972016-06-11 20:08:19 +02003652 rtm = nlmsg_data(nlh);
3653 fl6.flowlabel = ip6_make_flowinfo(rtm->rtm_tos, 0);
Roopa Prabhu18c3a612017-05-25 10:42:40 -07003654 fibmatch = !!(rtm->rtm_flags & RTM_F_FIB_MATCH);
Thomas Grafab364a62006-08-22 00:01:47 -07003655
3656 if (tb[RTA_SRC]) {
3657 if (nla_len(tb[RTA_SRC]) < sizeof(struct in6_addr))
3658 goto errout;
3659
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00003660 fl6.saddr = *(struct in6_addr *)nla_data(tb[RTA_SRC]);
Thomas Grafab364a62006-08-22 00:01:47 -07003661 }
3662
3663 if (tb[RTA_DST]) {
3664 if (nla_len(tb[RTA_DST]) < sizeof(struct in6_addr))
3665 goto errout;
3666
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00003667 fl6.daddr = *(struct in6_addr *)nla_data(tb[RTA_DST]);
Thomas Grafab364a62006-08-22 00:01:47 -07003668 }
3669
3670 if (tb[RTA_IIF])
3671 iif = nla_get_u32(tb[RTA_IIF]);
3672
3673 if (tb[RTA_OIF])
Shmulik Ladkani72331bc2012-04-01 04:03:45 +00003674 oif = nla_get_u32(tb[RTA_OIF]);
Thomas Grafab364a62006-08-22 00:01:47 -07003675
Lorenzo Colitti2e47b292014-05-15 16:38:41 -07003676 if (tb[RTA_MARK])
3677 fl6.flowi6_mark = nla_get_u32(tb[RTA_MARK]);
3678
Lorenzo Colitti622ec2c2016-11-04 02:23:42 +09003679 if (tb[RTA_UID])
3680 fl6.flowi6_uid = make_kuid(current_user_ns(),
3681 nla_get_u32(tb[RTA_UID]));
3682 else
3683 fl6.flowi6_uid = iif ? INVALID_UID : current_uid();
3684
Thomas Grafab364a62006-08-22 00:01:47 -07003685 if (iif) {
3686 struct net_device *dev;
Shmulik Ladkani72331bc2012-04-01 04:03:45 +00003687 int flags = 0;
3688
Florian Westphal121622d2017-08-15 16:34:42 +02003689 rcu_read_lock();
3690
3691 dev = dev_get_by_index_rcu(net, iif);
Thomas Grafab364a62006-08-22 00:01:47 -07003692 if (!dev) {
Florian Westphal121622d2017-08-15 16:34:42 +02003693 rcu_read_unlock();
Thomas Grafab364a62006-08-22 00:01:47 -07003694 err = -ENODEV;
3695 goto errout;
3696 }
Shmulik Ladkani72331bc2012-04-01 04:03:45 +00003697
3698 fl6.flowi6_iif = iif;
3699
3700 if (!ipv6_addr_any(&fl6.saddr))
3701 flags |= RT6_LOOKUP_F_HAS_SADDR;
3702
Roopa Prabhu18c3a612017-05-25 10:42:40 -07003703 if (!fibmatch)
3704 dst = ip6_route_input_lookup(net, dev, &fl6, flags);
Arnd Bergmann401481e2017-08-18 13:34:22 +02003705 else
3706 dst = ip6_route_lookup(net, &fl6, 0);
Florian Westphal121622d2017-08-15 16:34:42 +02003707
3708 rcu_read_unlock();
Shmulik Ladkani72331bc2012-04-01 04:03:45 +00003709 } else {
3710 fl6.flowi6_oif = oif;
3711
Roopa Prabhu18c3a612017-05-25 10:42:40 -07003712 if (!fibmatch)
3713 dst = ip6_route_output(net, NULL, &fl6);
Arnd Bergmann401481e2017-08-18 13:34:22 +02003714 else
3715 dst = ip6_route_lookup(net, &fl6, 0);
Roopa Prabhu18c3a612017-05-25 10:42:40 -07003716 }
3717
Roopa Prabhu18c3a612017-05-25 10:42:40 -07003718
3719 rt = container_of(dst, struct rt6_info, dst);
3720 if (rt->dst.error) {
3721 err = rt->dst.error;
3722 ip6_rt_put(rt);
3723 goto errout;
Thomas Grafab364a62006-08-22 00:01:47 -07003724 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003725
WANG Cong9d6acb32017-03-01 20:48:39 -08003726 if (rt == net->ipv6.ip6_null_entry) {
3727 err = rt->dst.error;
3728 ip6_rt_put(rt);
3729 goto errout;
3730 }
3731
Linus Torvalds1da177e2005-04-16 15:20:36 -07003732 skb = alloc_skb(NLMSG_GOODSIZE, GFP_KERNEL);
David S. Miller38308472011-12-03 18:02:47 -05003733 if (!skb) {
Amerigo Wang94e187c2012-10-29 00:13:19 +00003734 ip6_rt_put(rt);
Thomas Grafab364a62006-08-22 00:01:47 -07003735 err = -ENOBUFS;
3736 goto errout;
3737 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003738
Changli Gaod8d1f302010-06-10 23:31:35 -07003739 skb_dst_set(skb, &rt->dst);
Roopa Prabhu18c3a612017-05-25 10:42:40 -07003740 if (fibmatch)
3741 err = rt6_fill_node(net, skb, rt, NULL, NULL, iif,
3742 RTM_NEWROUTE, NETLINK_CB(in_skb).portid,
3743 nlh->nlmsg_seq, 0);
3744 else
3745 err = rt6_fill_node(net, skb, rt, &fl6.daddr, &fl6.saddr, iif,
3746 RTM_NEWROUTE, NETLINK_CB(in_skb).portid,
3747 nlh->nlmsg_seq, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003748 if (err < 0) {
Thomas Grafab364a62006-08-22 00:01:47 -07003749 kfree_skb(skb);
3750 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003751 }
3752
Eric W. Biederman15e47302012-09-07 20:12:54 +00003753 err = rtnl_unicast(skb, net, NETLINK_CB(in_skb).portid);
Thomas Grafab364a62006-08-22 00:01:47 -07003754errout:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003755 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003756}
3757
Roopa Prabhu37a1d362015-09-13 10:18:33 -07003758void inet6_rt_notify(int event, struct rt6_info *rt, struct nl_info *info,
3759 unsigned int nlm_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003760{
3761 struct sk_buff *skb;
Daniel Lezcano55786892008-03-04 13:47:47 -08003762 struct net *net = info->nl_net;
Denis V. Lunev528c4ce2007-12-13 09:45:12 -08003763 u32 seq;
3764 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003765
Denis V. Lunev528c4ce2007-12-13 09:45:12 -08003766 err = -ENOBUFS;
David S. Miller38308472011-12-03 18:02:47 -05003767 seq = info->nlh ? info->nlh->nlmsg_seq : 0;
Thomas Graf86872cb2006-08-22 00:01:08 -07003768
Roopa Prabhu19e42e42015-07-21 10:43:48 +02003769 skb = nlmsg_new(rt6_nlmsg_size(rt), gfp_any());
David S. Miller38308472011-12-03 18:02:47 -05003770 if (!skb)
Thomas Graf21713eb2006-08-15 00:35:24 -07003771 goto errout;
3772
Brian Haley191cd582008-08-14 15:33:21 -07003773 err = rt6_fill_node(net, skb, rt, NULL, NULL, 0,
David Ahernf8cfe2c2017-01-17 15:51:08 -08003774 event, info->portid, seq, nlm_flags);
Patrick McHardy26932562007-01-31 23:16:40 -08003775 if (err < 0) {
3776 /* -EMSGSIZE implies BUG in rt6_nlmsg_size() */
3777 WARN_ON(err == -EMSGSIZE);
3778 kfree_skb(skb);
3779 goto errout;
3780 }
Eric W. Biederman15e47302012-09-07 20:12:54 +00003781 rtnl_notify(skb, net, info->portid, RTNLGRP_IPV6_ROUTE,
Pablo Neira Ayuso1ce85fe2009-02-24 23:18:28 -08003782 info->nlh, gfp_any());
3783 return;
Thomas Graf21713eb2006-08-15 00:35:24 -07003784errout:
3785 if (err < 0)
Daniel Lezcano55786892008-03-04 13:47:47 -08003786 rtnl_set_sk_err(net, RTNLGRP_IPV6_ROUTE, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003787}
3788
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003789static int ip6_route_dev_notify(struct notifier_block *this,
Jiri Pirko351638e2013-05-28 01:30:21 +00003790 unsigned long event, void *ptr)
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003791{
Jiri Pirko351638e2013-05-28 01:30:21 +00003792 struct net_device *dev = netdev_notifier_info_to_dev(ptr);
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09003793 struct net *net = dev_net(dev);
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003794
WANG Cong242d3a42017-05-08 10:12:13 -07003795 if (!(dev->flags & IFF_LOOPBACK))
3796 return NOTIFY_OK;
3797
3798 if (event == NETDEV_REGISTER) {
Changli Gaod8d1f302010-06-10 23:31:35 -07003799 net->ipv6.ip6_null_entry->dst.dev = dev;
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003800 net->ipv6.ip6_null_entry->rt6i_idev = in6_dev_get(dev);
3801#ifdef CONFIG_IPV6_MULTIPLE_TABLES
Changli Gaod8d1f302010-06-10 23:31:35 -07003802 net->ipv6.ip6_prohibit_entry->dst.dev = dev;
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003803 net->ipv6.ip6_prohibit_entry->rt6i_idev = in6_dev_get(dev);
Changli Gaod8d1f302010-06-10 23:31:35 -07003804 net->ipv6.ip6_blk_hole_entry->dst.dev = dev;
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003805 net->ipv6.ip6_blk_hole_entry->rt6i_idev = in6_dev_get(dev);
3806#endif
WANG Cong76da0702017-06-20 11:42:27 -07003807 } else if (event == NETDEV_UNREGISTER &&
3808 dev->reg_state != NETREG_UNREGISTERED) {
3809 /* NETDEV_UNREGISTER could be fired for multiple times by
3810 * netdev_wait_allrefs(). Make sure we only call this once.
3811 */
Eric Dumazet12d94a82017-08-15 04:09:51 -07003812 in6_dev_put_clear(&net->ipv6.ip6_null_entry->rt6i_idev);
WANG Cong242d3a42017-05-08 10:12:13 -07003813#ifdef CONFIG_IPV6_MULTIPLE_TABLES
Eric Dumazet12d94a82017-08-15 04:09:51 -07003814 in6_dev_put_clear(&net->ipv6.ip6_prohibit_entry->rt6i_idev);
3815 in6_dev_put_clear(&net->ipv6.ip6_blk_hole_entry->rt6i_idev);
WANG Cong242d3a42017-05-08 10:12:13 -07003816#endif
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003817 }
3818
3819 return NOTIFY_OK;
3820}
3821
Linus Torvalds1da177e2005-04-16 15:20:36 -07003822/*
3823 * /proc
3824 */
3825
3826#ifdef CONFIG_PROC_FS
3827
Alexey Dobriyan33120b32007-11-06 05:27:11 -08003828static const struct file_operations ipv6_route_proc_fops = {
3829 .owner = THIS_MODULE,
3830 .open = ipv6_route_open,
3831 .read = seq_read,
3832 .llseek = seq_lseek,
Hannes Frederic Sowa8d2ca1d2013-09-21 16:55:59 +02003833 .release = seq_release_net,
Alexey Dobriyan33120b32007-11-06 05:27:11 -08003834};
3835
Linus Torvalds1da177e2005-04-16 15:20:36 -07003836static int rt6_stats_seq_show(struct seq_file *seq, void *v)
3837{
Daniel Lezcano69ddb802008-03-04 13:46:23 -08003838 struct net *net = (struct net *)seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003839 seq_printf(seq, "%04x %04x %04x %04x %04x %04x %04x\n",
Daniel Lezcano69ddb802008-03-04 13:46:23 -08003840 net->ipv6.rt6_stats->fib_nodes,
3841 net->ipv6.rt6_stats->fib_route_nodes,
3842 net->ipv6.rt6_stats->fib_rt_alloc,
3843 net->ipv6.rt6_stats->fib_rt_entries,
3844 net->ipv6.rt6_stats->fib_rt_cache,
Eric Dumazetfc66f952010-10-08 06:37:34 +00003845 dst_entries_get_slow(&net->ipv6.ip6_dst_ops),
Daniel Lezcano69ddb802008-03-04 13:46:23 -08003846 net->ipv6.rt6_stats->fib_discarded_routes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003847
3848 return 0;
3849}
3850
3851static int rt6_stats_seq_open(struct inode *inode, struct file *file)
3852{
Pavel Emelyanovde05c552008-07-18 04:07:21 -07003853 return single_open_net(inode, file, rt6_stats_seq_show);
Daniel Lezcano69ddb802008-03-04 13:46:23 -08003854}
3855
Arjan van de Ven9a321442007-02-12 00:55:35 -08003856static const struct file_operations rt6_stats_seq_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003857 .owner = THIS_MODULE,
3858 .open = rt6_stats_seq_open,
3859 .read = seq_read,
3860 .llseek = seq_lseek,
Pavel Emelyanovb6fcbdb2008-07-18 04:07:44 -07003861 .release = single_release_net,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003862};
3863#endif /* CONFIG_PROC_FS */
3864
3865#ifdef CONFIG_SYSCTL
3866
Linus Torvalds1da177e2005-04-16 15:20:36 -07003867static
Joe Perchesfe2c6332013-06-11 23:04:25 -07003868int ipv6_sysctl_rtcache_flush(struct ctl_table *ctl, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003869 void __user *buffer, size_t *lenp, loff_t *ppos)
3870{
Lucian Adrian Grijincuc486da32011-02-24 19:48:03 +00003871 struct net *net;
3872 int delay;
3873 if (!write)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003874 return -EINVAL;
Lucian Adrian Grijincuc486da32011-02-24 19:48:03 +00003875
3876 net = (struct net *)ctl->extra1;
3877 delay = net->ipv6.sysctl.flush_delay;
3878 proc_dointvec(ctl, write, buffer, lenp, ppos);
Michal Kubeček2ac3ac82013-08-01 10:04:14 +02003879 fib6_run_gc(delay <= 0 ? 0 : (unsigned long)delay, net, delay > 0);
Lucian Adrian Grijincuc486da32011-02-24 19:48:03 +00003880 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003881}
3882
Joe Perchesfe2c6332013-06-11 23:04:25 -07003883struct ctl_table ipv6_route_table_template[] = {
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003884 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003885 .procname = "flush",
Daniel Lezcano49905092008-01-10 03:01:01 -08003886 .data = &init_net.ipv6.sysctl.flush_delay,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003887 .maxlen = sizeof(int),
Dave Jones89c8b3a12005-04-28 12:11:49 -07003888 .mode = 0200,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08003889 .proc_handler = ipv6_sysctl_rtcache_flush
Linus Torvalds1da177e2005-04-16 15:20:36 -07003890 },
3891 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003892 .procname = "gc_thresh",
Daniel Lezcano9a7ec3a2008-03-04 13:48:53 -08003893 .data = &ip6_dst_ops_template.gc_thresh,
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,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003897 },
3898 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003899 .procname = "max_size",
Daniel Lezcano49905092008-01-10 03:01:01 -08003900 .data = &init_net.ipv6.sysctl.ip6_rt_max_size,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003901 .maxlen = sizeof(int),
3902 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08003903 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003904 },
3905 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003906 .procname = "gc_min_interval",
Daniel Lezcano49905092008-01-10 03:01:01 -08003907 .data = &init_net.ipv6.sysctl.ip6_rt_gc_min_interval,
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 = "gc_timeout",
Daniel Lezcano49905092008-01-10 03:01:01 -08003914 .data = &init_net.ipv6.sysctl.ip6_rt_gc_timeout,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003915 .maxlen = sizeof(int),
3916 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08003917 .proc_handler = proc_dointvec_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003918 },
3919 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003920 .procname = "gc_interval",
Daniel Lezcano49905092008-01-10 03:01:01 -08003921 .data = &init_net.ipv6.sysctl.ip6_rt_gc_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_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003925 },
3926 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003927 .procname = "gc_elasticity",
Daniel Lezcano49905092008-01-10 03:01:01 -08003928 .data = &init_net.ipv6.sysctl.ip6_rt_gc_elasticity,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003929 .maxlen = sizeof(int),
3930 .mode = 0644,
Min Zhangf3d3f612010-08-14 22:42:51 -07003931 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003932 },
3933 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003934 .procname = "mtu_expires",
Daniel Lezcano49905092008-01-10 03:01:01 -08003935 .data = &init_net.ipv6.sysctl.ip6_rt_mtu_expires,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003936 .maxlen = sizeof(int),
3937 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08003938 .proc_handler = proc_dointvec_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003939 },
3940 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003941 .procname = "min_adv_mss",
Daniel Lezcano49905092008-01-10 03:01:01 -08003942 .data = &init_net.ipv6.sysctl.ip6_rt_min_advmss,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003943 .maxlen = sizeof(int),
3944 .mode = 0644,
Min Zhangf3d3f612010-08-14 22:42:51 -07003945 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003946 },
3947 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003948 .procname = "gc_min_interval_ms",
Daniel Lezcano49905092008-01-10 03:01:01 -08003949 .data = &init_net.ipv6.sysctl.ip6_rt_gc_min_interval,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003950 .maxlen = sizeof(int),
3951 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08003952 .proc_handler = proc_dointvec_ms_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003953 },
Eric W. Biedermanf8572d82009-11-05 13:32:03 -08003954 { }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003955};
3956
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00003957struct ctl_table * __net_init ipv6_route_sysctl_init(struct net *net)
Daniel Lezcano760f2d02008-01-10 02:53:43 -08003958{
3959 struct ctl_table *table;
3960
3961 table = kmemdup(ipv6_route_table_template,
3962 sizeof(ipv6_route_table_template),
3963 GFP_KERNEL);
YOSHIFUJI Hideaki5ee09102008-02-28 00:24:28 +09003964
3965 if (table) {
3966 table[0].data = &net->ipv6.sysctl.flush_delay;
Lucian Adrian Grijincuc486da32011-02-24 19:48:03 +00003967 table[0].extra1 = net;
Alexey Dobriyan86393e52009-08-29 01:34:49 +00003968 table[1].data = &net->ipv6.ip6_dst_ops.gc_thresh;
YOSHIFUJI Hideaki5ee09102008-02-28 00:24:28 +09003969 table[2].data = &net->ipv6.sysctl.ip6_rt_max_size;
3970 table[3].data = &net->ipv6.sysctl.ip6_rt_gc_min_interval;
3971 table[4].data = &net->ipv6.sysctl.ip6_rt_gc_timeout;
3972 table[5].data = &net->ipv6.sysctl.ip6_rt_gc_interval;
3973 table[6].data = &net->ipv6.sysctl.ip6_rt_gc_elasticity;
3974 table[7].data = &net->ipv6.sysctl.ip6_rt_mtu_expires;
3975 table[8].data = &net->ipv6.sysctl.ip6_rt_min_advmss;
Alexey Dobriyan9c69fab2009-12-18 20:11:03 -08003976 table[9].data = &net->ipv6.sysctl.ip6_rt_gc_min_interval;
Eric W. Biederman464dc802012-11-16 03:02:59 +00003977
3978 /* Don't export sysctls to unprivileged users */
3979 if (net->user_ns != &init_user_ns)
3980 table[0].procname = NULL;
YOSHIFUJI Hideaki5ee09102008-02-28 00:24:28 +09003981 }
3982
Daniel Lezcano760f2d02008-01-10 02:53:43 -08003983 return table;
3984}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003985#endif
3986
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00003987static int __net_init ip6_route_net_init(struct net *net)
Daniel Lezcanocdb18762008-03-04 13:45:33 -08003988{
Pavel Emelyanov633d424b2008-04-21 14:25:23 -07003989 int ret = -ENOMEM;
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003990
Alexey Dobriyan86393e52009-08-29 01:34:49 +00003991 memcpy(&net->ipv6.ip6_dst_ops, &ip6_dst_ops_template,
3992 sizeof(net->ipv6.ip6_dst_ops));
Benjamin Theryf2fc6a52008-03-04 13:49:23 -08003993
Eric Dumazetfc66f952010-10-08 06:37:34 +00003994 if (dst_entries_init(&net->ipv6.ip6_dst_ops) < 0)
3995 goto out_ip6_dst_ops;
3996
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003997 net->ipv6.ip6_null_entry = kmemdup(&ip6_null_entry_template,
3998 sizeof(*net->ipv6.ip6_null_entry),
3999 GFP_KERNEL);
4000 if (!net->ipv6.ip6_null_entry)
Eric Dumazetfc66f952010-10-08 06:37:34 +00004001 goto out_ip6_dst_entries;
Changli Gaod8d1f302010-06-10 23:31:35 -07004002 net->ipv6.ip6_null_entry->dst.path =
Daniel Lezcano8ed67782008-03-04 13:48:30 -08004003 (struct dst_entry *)net->ipv6.ip6_null_entry;
Changli Gaod8d1f302010-06-10 23:31:35 -07004004 net->ipv6.ip6_null_entry->dst.ops = &net->ipv6.ip6_dst_ops;
David S. Miller62fa8a82011-01-26 20:51:05 -08004005 dst_init_metrics(&net->ipv6.ip6_null_entry->dst,
4006 ip6_template_metrics, true);
Daniel Lezcano8ed67782008-03-04 13:48:30 -08004007
4008#ifdef CONFIG_IPV6_MULTIPLE_TABLES
Vincent Bernatfeca7d82017-08-08 20:23:49 +02004009 net->ipv6.fib6_has_custom_rules = false;
Daniel Lezcano8ed67782008-03-04 13:48:30 -08004010 net->ipv6.ip6_prohibit_entry = kmemdup(&ip6_prohibit_entry_template,
4011 sizeof(*net->ipv6.ip6_prohibit_entry),
4012 GFP_KERNEL);
Peter Zijlstra68fffc62008-10-07 14:12:10 -07004013 if (!net->ipv6.ip6_prohibit_entry)
4014 goto out_ip6_null_entry;
Changli Gaod8d1f302010-06-10 23:31:35 -07004015 net->ipv6.ip6_prohibit_entry->dst.path =
Daniel Lezcano8ed67782008-03-04 13:48:30 -08004016 (struct dst_entry *)net->ipv6.ip6_prohibit_entry;
Changli Gaod8d1f302010-06-10 23:31:35 -07004017 net->ipv6.ip6_prohibit_entry->dst.ops = &net->ipv6.ip6_dst_ops;
David S. Miller62fa8a82011-01-26 20:51:05 -08004018 dst_init_metrics(&net->ipv6.ip6_prohibit_entry->dst,
4019 ip6_template_metrics, true);
Daniel Lezcano8ed67782008-03-04 13:48:30 -08004020
4021 net->ipv6.ip6_blk_hole_entry = kmemdup(&ip6_blk_hole_entry_template,
4022 sizeof(*net->ipv6.ip6_blk_hole_entry),
4023 GFP_KERNEL);
Peter Zijlstra68fffc62008-10-07 14:12:10 -07004024 if (!net->ipv6.ip6_blk_hole_entry)
4025 goto out_ip6_prohibit_entry;
Changli Gaod8d1f302010-06-10 23:31:35 -07004026 net->ipv6.ip6_blk_hole_entry->dst.path =
Daniel Lezcano8ed67782008-03-04 13:48:30 -08004027 (struct dst_entry *)net->ipv6.ip6_blk_hole_entry;
Changli Gaod8d1f302010-06-10 23:31:35 -07004028 net->ipv6.ip6_blk_hole_entry->dst.ops = &net->ipv6.ip6_dst_ops;
David S. Miller62fa8a82011-01-26 20:51:05 -08004029 dst_init_metrics(&net->ipv6.ip6_blk_hole_entry->dst,
4030 ip6_template_metrics, true);
Daniel Lezcano8ed67782008-03-04 13:48:30 -08004031#endif
4032
Peter Zijlstrab339a47c2008-10-07 14:15:00 -07004033 net->ipv6.sysctl.flush_delay = 0;
4034 net->ipv6.sysctl.ip6_rt_max_size = 4096;
4035 net->ipv6.sysctl.ip6_rt_gc_min_interval = HZ / 2;
4036 net->ipv6.sysctl.ip6_rt_gc_timeout = 60*HZ;
4037 net->ipv6.sysctl.ip6_rt_gc_interval = 30*HZ;
4038 net->ipv6.sysctl.ip6_rt_gc_elasticity = 9;
4039 net->ipv6.sysctl.ip6_rt_mtu_expires = 10*60*HZ;
4040 net->ipv6.sysctl.ip6_rt_min_advmss = IPV6_MIN_MTU - 20 - 40;
4041
Benjamin Thery6891a342008-03-04 13:49:47 -08004042 net->ipv6.ip6_rt_gc_expire = 30*HZ;
4043
Daniel Lezcano8ed67782008-03-04 13:48:30 -08004044 ret = 0;
4045out:
4046 return ret;
Benjamin Theryf2fc6a52008-03-04 13:49:23 -08004047
Peter Zijlstra68fffc62008-10-07 14:12:10 -07004048#ifdef CONFIG_IPV6_MULTIPLE_TABLES
4049out_ip6_prohibit_entry:
4050 kfree(net->ipv6.ip6_prohibit_entry);
4051out_ip6_null_entry:
4052 kfree(net->ipv6.ip6_null_entry);
4053#endif
Eric Dumazetfc66f952010-10-08 06:37:34 +00004054out_ip6_dst_entries:
4055 dst_entries_destroy(&net->ipv6.ip6_dst_ops);
Benjamin Theryf2fc6a52008-03-04 13:49:23 -08004056out_ip6_dst_ops:
Benjamin Theryf2fc6a52008-03-04 13:49:23 -08004057 goto out;
Daniel Lezcanocdb18762008-03-04 13:45:33 -08004058}
4059
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00004060static void __net_exit ip6_route_net_exit(struct net *net)
Daniel Lezcanocdb18762008-03-04 13:45:33 -08004061{
Daniel Lezcano8ed67782008-03-04 13:48:30 -08004062 kfree(net->ipv6.ip6_null_entry);
4063#ifdef CONFIG_IPV6_MULTIPLE_TABLES
4064 kfree(net->ipv6.ip6_prohibit_entry);
4065 kfree(net->ipv6.ip6_blk_hole_entry);
4066#endif
Xiaotian Feng41bb78b2010-11-02 16:11:05 +00004067 dst_entries_destroy(&net->ipv6.ip6_dst_ops);
Daniel Lezcanocdb18762008-03-04 13:45:33 -08004068}
4069
Thomas Grafd1896342012-06-18 12:08:33 +00004070static int __net_init ip6_route_net_init_late(struct net *net)
4071{
4072#ifdef CONFIG_PROC_FS
Gao fengd4beaa62013-02-18 01:34:54 +00004073 proc_create("ipv6_route", 0, net->proc_net, &ipv6_route_proc_fops);
4074 proc_create("rt6_stats", S_IRUGO, net->proc_net, &rt6_stats_seq_fops);
Thomas Grafd1896342012-06-18 12:08:33 +00004075#endif
4076 return 0;
4077}
4078
4079static void __net_exit ip6_route_net_exit_late(struct net *net)
4080{
4081#ifdef CONFIG_PROC_FS
Gao fengece31ff2013-02-18 01:34:56 +00004082 remove_proc_entry("ipv6_route", net->proc_net);
4083 remove_proc_entry("rt6_stats", net->proc_net);
Thomas Grafd1896342012-06-18 12:08:33 +00004084#endif
4085}
4086
Daniel Lezcanocdb18762008-03-04 13:45:33 -08004087static struct pernet_operations ip6_route_net_ops = {
4088 .init = ip6_route_net_init,
4089 .exit = ip6_route_net_exit,
4090};
4091
David S. Millerc3426b42012-06-09 16:27:05 -07004092static int __net_init ipv6_inetpeer_init(struct net *net)
4093{
4094 struct inet_peer_base *bp = kmalloc(sizeof(*bp), GFP_KERNEL);
4095
4096 if (!bp)
4097 return -ENOMEM;
4098 inet_peer_base_init(bp);
4099 net->ipv6.peers = bp;
4100 return 0;
4101}
4102
4103static void __net_exit ipv6_inetpeer_exit(struct net *net)
4104{
4105 struct inet_peer_base *bp = net->ipv6.peers;
4106
4107 net->ipv6.peers = NULL;
David S. Miller56a6b242012-06-09 16:32:41 -07004108 inetpeer_invalidate_tree(bp);
David S. Millerc3426b42012-06-09 16:27:05 -07004109 kfree(bp);
4110}
4111
David S. Miller2b823f72012-06-09 19:00:16 -07004112static struct pernet_operations ipv6_inetpeer_ops = {
David S. Millerc3426b42012-06-09 16:27:05 -07004113 .init = ipv6_inetpeer_init,
4114 .exit = ipv6_inetpeer_exit,
4115};
4116
Thomas Grafd1896342012-06-18 12:08:33 +00004117static struct pernet_operations ip6_route_net_late_ops = {
4118 .init = ip6_route_net_init_late,
4119 .exit = ip6_route_net_exit_late,
4120};
4121
Daniel Lezcano8ed67782008-03-04 13:48:30 -08004122static struct notifier_block ip6_route_dev_notifier = {
4123 .notifier_call = ip6_route_dev_notify,
WANG Cong242d3a42017-05-08 10:12:13 -07004124 .priority = ADDRCONF_NOTIFY_PRIORITY - 10,
Daniel Lezcano8ed67782008-03-04 13:48:30 -08004125};
4126
WANG Cong2f460932017-05-03 22:07:31 -07004127void __init ip6_route_init_special_entries(void)
4128{
4129 /* Registering of the loopback is done before this portion of code,
4130 * the loopback reference in rt6_info will not be taken, do it
4131 * manually for init_net */
4132 init_net.ipv6.ip6_null_entry->dst.dev = init_net.loopback_dev;
4133 init_net.ipv6.ip6_null_entry->rt6i_idev = in6_dev_get(init_net.loopback_dev);
4134 #ifdef CONFIG_IPV6_MULTIPLE_TABLES
4135 init_net.ipv6.ip6_prohibit_entry->dst.dev = init_net.loopback_dev;
4136 init_net.ipv6.ip6_prohibit_entry->rt6i_idev = in6_dev_get(init_net.loopback_dev);
4137 init_net.ipv6.ip6_blk_hole_entry->dst.dev = init_net.loopback_dev;
4138 init_net.ipv6.ip6_blk_hole_entry->rt6i_idev = in6_dev_get(init_net.loopback_dev);
4139 #endif
4140}
4141
Daniel Lezcano433d49c2007-12-07 00:43:48 -08004142int __init ip6_route_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004143{
Daniel Lezcano433d49c2007-12-07 00:43:48 -08004144 int ret;
Martin KaFai Lau8d0b94a2015-05-22 20:56:04 -07004145 int cpu;
Daniel Lezcano433d49c2007-12-07 00:43:48 -08004146
Daniel Lezcano9a7ec3a2008-03-04 13:48:53 -08004147 ret = -ENOMEM;
4148 ip6_dst_ops_template.kmem_cachep =
4149 kmem_cache_create("ip6_dst_cache", sizeof(struct rt6_info), 0,
4150 SLAB_HWCACHE_ALIGN, NULL);
4151 if (!ip6_dst_ops_template.kmem_cachep)
Fernando Carrijoc19a28e2009-01-07 18:09:08 -08004152 goto out;
David S. Miller14e50e52007-05-24 18:17:54 -07004153
Eric Dumazetfc66f952010-10-08 06:37:34 +00004154 ret = dst_entries_init(&ip6_dst_blackhole_ops);
Daniel Lezcano8ed67782008-03-04 13:48:30 -08004155 if (ret)
Daniel Lezcanobdb32892008-03-04 13:48:10 -08004156 goto out_kmem_cache;
Daniel Lezcanobdb32892008-03-04 13:48:10 -08004157
David S. Millerc3426b42012-06-09 16:27:05 -07004158 ret = register_pernet_subsys(&ipv6_inetpeer_ops);
4159 if (ret)
David S. Millere8803b62012-06-16 01:12:19 -07004160 goto out_dst_entries;
Thomas Graf2a0c4512012-06-14 23:00:17 +00004161
David S. Miller7e52b332012-06-15 15:51:55 -07004162 ret = register_pernet_subsys(&ip6_route_net_ops);
4163 if (ret)
4164 goto out_register_inetpeer;
David S. Millerc3426b42012-06-09 16:27:05 -07004165
Arnaud Ebalard5dc121e2008-10-01 02:37:56 -07004166 ip6_dst_blackhole_ops.kmem_cachep = ip6_dst_ops_template.kmem_cachep;
4167
David S. Millere8803b62012-06-16 01:12:19 -07004168 ret = fib6_init();
Daniel Lezcano433d49c2007-12-07 00:43:48 -08004169 if (ret)
Daniel Lezcano8ed67782008-03-04 13:48:30 -08004170 goto out_register_subsys;
Daniel Lezcano433d49c2007-12-07 00:43:48 -08004171
Daniel Lezcano433d49c2007-12-07 00:43:48 -08004172 ret = xfrm6_init();
4173 if (ret)
David S. Millere8803b62012-06-16 01:12:19 -07004174 goto out_fib6_init;
Daniel Lezcanoc35b7e72007-12-08 00:14:11 -08004175
Daniel Lezcano433d49c2007-12-07 00:43:48 -08004176 ret = fib6_rules_init();
4177 if (ret)
4178 goto xfrm6_init;
Daniel Lezcano7e5449c2007-12-08 00:14:54 -08004179
Thomas Grafd1896342012-06-18 12:08:33 +00004180 ret = register_pernet_subsys(&ip6_route_net_late_ops);
4181 if (ret)
4182 goto fib6_rules_init;
4183
Daniel Lezcano433d49c2007-12-07 00:43:48 -08004184 ret = -ENOBUFS;
Florian Westphalb97bac62017-08-09 20:41:48 +02004185 if (__rtnl_register(PF_INET6, RTM_NEWROUTE, inet6_rtm_newroute, NULL, 0) ||
4186 __rtnl_register(PF_INET6, RTM_DELROUTE, inet6_rtm_delroute, NULL, 0) ||
Florian Westphale3a22b72017-08-15 16:34:43 +02004187 __rtnl_register(PF_INET6, RTM_GETROUTE, inet6_rtm_getroute, NULL,
4188 RTNL_FLAG_DOIT_UNLOCKED))
Thomas Grafd1896342012-06-18 12:08:33 +00004189 goto out_register_late_subsys;
Daniel Lezcano433d49c2007-12-07 00:43:48 -08004190
Daniel Lezcano8ed67782008-03-04 13:48:30 -08004191 ret = register_netdevice_notifier(&ip6_route_dev_notifier);
Daniel Lezcanocdb18762008-03-04 13:45:33 -08004192 if (ret)
Thomas Grafd1896342012-06-18 12:08:33 +00004193 goto out_register_late_subsys;
Daniel Lezcano8ed67782008-03-04 13:48:30 -08004194
Martin KaFai Lau8d0b94a2015-05-22 20:56:04 -07004195 for_each_possible_cpu(cpu) {
4196 struct uncached_list *ul = per_cpu_ptr(&rt6_uncached_list, cpu);
4197
4198 INIT_LIST_HEAD(&ul->head);
4199 spin_lock_init(&ul->lock);
4200 }
4201
Daniel Lezcano433d49c2007-12-07 00:43:48 -08004202out:
4203 return ret;
4204
Thomas Grafd1896342012-06-18 12:08:33 +00004205out_register_late_subsys:
4206 unregister_pernet_subsys(&ip6_route_net_late_ops);
Daniel Lezcano433d49c2007-12-07 00:43:48 -08004207fib6_rules_init:
Daniel Lezcano433d49c2007-12-07 00:43:48 -08004208 fib6_rules_cleanup();
4209xfrm6_init:
Daniel Lezcano433d49c2007-12-07 00:43:48 -08004210 xfrm6_fini();
Thomas Graf2a0c4512012-06-14 23:00:17 +00004211out_fib6_init:
4212 fib6_gc_cleanup();
Daniel Lezcano8ed67782008-03-04 13:48:30 -08004213out_register_subsys:
4214 unregister_pernet_subsys(&ip6_route_net_ops);
David S. Miller7e52b332012-06-15 15:51:55 -07004215out_register_inetpeer:
4216 unregister_pernet_subsys(&ipv6_inetpeer_ops);
Eric Dumazetfc66f952010-10-08 06:37:34 +00004217out_dst_entries:
4218 dst_entries_destroy(&ip6_dst_blackhole_ops);
Daniel Lezcano433d49c2007-12-07 00:43:48 -08004219out_kmem_cache:
Benjamin Theryf2fc6a52008-03-04 13:49:23 -08004220 kmem_cache_destroy(ip6_dst_ops_template.kmem_cachep);
Daniel Lezcano433d49c2007-12-07 00:43:48 -08004221 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004222}
4223
4224void ip6_route_cleanup(void)
4225{
Daniel Lezcano8ed67782008-03-04 13:48:30 -08004226 unregister_netdevice_notifier(&ip6_route_dev_notifier);
Thomas Grafd1896342012-06-18 12:08:33 +00004227 unregister_pernet_subsys(&ip6_route_net_late_ops);
Thomas Graf101367c2006-08-04 03:39:02 -07004228 fib6_rules_cleanup();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004229 xfrm6_fini();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004230 fib6_gc_cleanup();
David S. Millerc3426b42012-06-09 16:27:05 -07004231 unregister_pernet_subsys(&ipv6_inetpeer_ops);
Daniel Lezcano8ed67782008-03-04 13:48:30 -08004232 unregister_pernet_subsys(&ip6_route_net_ops);
Xiaotian Feng41bb78b2010-11-02 16:11:05 +00004233 dst_entries_destroy(&ip6_dst_blackhole_ops);
Benjamin Theryf2fc6a52008-03-04 13:49:23 -08004234 kmem_cache_destroy(ip6_dst_ops_template.kmem_cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004235}