blob: 86fb2411e2bda7d148a6467411b4d025bd4c397c [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) {
Li RongQing3fd91fb2012-09-13 19:54:57 +0000443 return rt6_check_expired((struct rt6_info *) rt->dst.from);
Gao feng1716a962012-04-06 00:13:10 +0000444 }
Eric Dumazeta50feda2012-05-18 18:57:34 +0000445 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446}
447
Nicolas Dichtel51ebd312012-10-22 03:42:09 +0000448/* Multipath route selection:
449 * Hash based function using packet header and flowlabel.
450 * Adapted from fib_info_hashfn()
451 */
452static int rt6_info_hash_nhsfn(unsigned int candidate_count,
453 const struct flowi6 *fl6)
454{
Tom Herbert644d0e62015-09-23 14:13:35 -0700455 return get_hash_from_flowi6(fl6) % candidate_count;
Nicolas Dichtel51ebd312012-10-22 03:42:09 +0000456}
457
458static struct rt6_info *rt6_multipath_select(struct rt6_info *match,
Nicolas Dichtel52bd4c02013-06-28 17:35:48 +0200459 struct flowi6 *fl6, int oif,
460 int strict)
Nicolas Dichtel51ebd312012-10-22 03:42:09 +0000461{
462 struct rt6_info *sibling, *next_sibling;
463 int route_choosen;
464
465 route_choosen = rt6_info_hash_nhsfn(match->rt6i_nsiblings + 1, fl6);
466 /* Don't change the route, if route_choosen == 0
467 * (siblings does not include ourself)
468 */
469 if (route_choosen)
470 list_for_each_entry_safe(sibling, next_sibling,
471 &match->rt6i_siblings, rt6i_siblings) {
472 route_choosen--;
473 if (route_choosen == 0) {
Nicolas Dichtel52bd4c02013-06-28 17:35:48 +0200474 if (rt6_score_route(sibling, oif, strict) < 0)
475 break;
Nicolas Dichtel51ebd312012-10-22 03:42:09 +0000476 match = sibling;
477 break;
478 }
479 }
480 return match;
481}
482
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483/*
Thomas Grafc71099a2006-08-04 23:20:06 -0700484 * Route lookup. Any table->tb6_lock is implied.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 */
486
Daniel Lezcano8ed67782008-03-04 13:48:30 -0800487static inline struct rt6_info *rt6_device_match(struct net *net,
488 struct rt6_info *rt,
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000489 const struct in6_addr *saddr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 int oif,
YOSHIFUJI Hideakid4208952008-06-27 20:14:54 -0700491 int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492{
493 struct rt6_info *local = NULL;
494 struct rt6_info *sprt;
495
YOSHIFUJI Hideakidd3abc42008-07-02 18:30:18 +0900496 if (!oif && ipv6_addr_any(saddr))
497 goto out;
498
Changli Gaod8d1f302010-06-10 23:31:35 -0700499 for (sprt = rt; sprt; sprt = sprt->dst.rt6_next) {
David S. Millerd1918542011-12-28 20:19:20 -0500500 struct net_device *dev = sprt->dst.dev;
YOSHIFUJI Hideakidd3abc42008-07-02 18:30:18 +0900501
502 if (oif) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 if (dev->ifindex == oif)
504 return sprt;
505 if (dev->flags & IFF_LOOPBACK) {
David S. Miller38308472011-12-03 18:02:47 -0500506 if (!sprt->rt6i_idev ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 sprt->rt6i_idev->dev->ifindex != oif) {
David Ahern17fb0b22015-09-25 15:22:54 -0600508 if (flags & RT6_LOOKUP_F_IFACE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 continue;
David Ahern17fb0b22015-09-25 15:22:54 -0600510 if (local &&
511 local->rt6i_idev->dev->ifindex == oif)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 continue;
513 }
514 local = sprt;
515 }
YOSHIFUJI Hideakidd3abc42008-07-02 18:30:18 +0900516 } else {
517 if (ipv6_chk_addr(net, saddr, dev,
518 flags & RT6_LOOKUP_F_IFACE))
519 return sprt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 }
YOSHIFUJI Hideakidd3abc42008-07-02 18:30:18 +0900521 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522
YOSHIFUJI Hideakidd3abc42008-07-02 18:30:18 +0900523 if (oif) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 if (local)
525 return local;
526
YOSHIFUJI Hideakid4208952008-06-27 20:14:54 -0700527 if (flags & RT6_LOOKUP_F_IFACE)
Daniel Lezcano8ed67782008-03-04 13:48:30 -0800528 return net->ipv6.ip6_null_entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 }
YOSHIFUJI Hideakidd3abc42008-07-02 18:30:18 +0900530out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 return rt;
532}
533
YOSHIFUJI Hideaki27097252006-03-20 17:05:13 -0800534#ifdef CONFIG_IPV6_ROUTER_PREF
Hannes Frederic Sowac2f17e82013-10-21 06:17:15 +0200535struct __rt6_probe_work {
536 struct work_struct work;
537 struct in6_addr target;
538 struct net_device *dev;
539};
540
541static void rt6_probe_deferred(struct work_struct *w)
542{
543 struct in6_addr mcaddr;
544 struct __rt6_probe_work *work =
545 container_of(w, struct __rt6_probe_work, work);
546
547 addrconf_addr_solict_mult(&work->target, &mcaddr);
Erik Nordmarkadc176c2016-12-02 14:00:08 -0800548 ndisc_send_ns(work->dev, &work->target, &mcaddr, NULL, 0);
Hannes Frederic Sowac2f17e82013-10-21 06:17:15 +0200549 dev_put(work->dev);
Michael Büsch662f5532015-02-08 10:14:07 +0100550 kfree(work);
Hannes Frederic Sowac2f17e82013-10-21 06:17:15 +0200551}
552
YOSHIFUJI Hideaki27097252006-03-20 17:05:13 -0800553static void rt6_probe(struct rt6_info *rt)
554{
Martin KaFai Lau990edb42015-07-24 09:57:42 -0700555 struct __rt6_probe_work *work;
Eric Dumazetf2c31e32011-07-29 19:00:53 +0000556 struct neighbour *neigh;
YOSHIFUJI Hideaki27097252006-03-20 17:05:13 -0800557 /*
558 * Okay, this does not seem to be appropriate
559 * for now, however, we need to check if it
560 * is really so; aka Router Reachability Probing.
561 *
562 * Router Reachability Probe MUST be rate-limited
563 * to no more than one per minute.
564 */
YOSHIFUJI Hideaki / 吉藤英明2152cae2013-01-17 12:53:43 +0000565 if (!rt || !(rt->rt6i_flags & RTF_GATEWAY))
Amerigo Wangfdd66812012-09-10 02:48:44 +0000566 return;
YOSHIFUJI Hideaki / 吉藤英明2152cae2013-01-17 12:53:43 +0000567 rcu_read_lock_bh();
568 neigh = __ipv6_neigh_lookup_noref(rt->dst.dev, &rt->rt6i_gateway);
569 if (neigh) {
Martin KaFai Lau8d6c31b2015-07-24 09:57:43 -0700570 if (neigh->nud_state & NUD_VALID)
571 goto out;
572
Martin KaFai Lau990edb42015-07-24 09:57:42 -0700573 work = NULL;
YOSHIFUJI Hideaki / 吉藤英明2152cae2013-01-17 12:53:43 +0000574 write_lock(&neigh->lock);
Martin KaFai Lau990edb42015-07-24 09:57:42 -0700575 if (!(neigh->nud_state & NUD_VALID) &&
576 time_after(jiffies,
577 neigh->updated +
578 rt->rt6i_idev->cnf.rtr_probe_interval)) {
579 work = kmalloc(sizeof(*work), GFP_ATOMIC);
580 if (work)
581 __neigh_set_probe_once(neigh);
Hannes Frederic Sowac2f17e82013-10-21 06:17:15 +0200582 }
YOSHIFUJI Hideaki / 吉藤英明2152cae2013-01-17 12:53:43 +0000583 write_unlock(&neigh->lock);
Martin KaFai Lau990edb42015-07-24 09:57:42 -0700584 } else {
585 work = kmalloc(sizeof(*work), GFP_ATOMIC);
Eric Dumazetf2c31e32011-07-29 19:00:53 +0000586 }
Martin KaFai Lau990edb42015-07-24 09:57:42 -0700587
588 if (work) {
589 INIT_WORK(&work->work, rt6_probe_deferred);
590 work->target = rt->rt6i_gateway;
591 dev_hold(rt->dst.dev);
592 work->dev = rt->dst.dev;
593 schedule_work(&work->work);
594 }
595
Martin KaFai Lau8d6c31b2015-07-24 09:57:43 -0700596out:
YOSHIFUJI Hideaki / 吉藤英明2152cae2013-01-17 12:53:43 +0000597 rcu_read_unlock_bh();
YOSHIFUJI Hideaki27097252006-03-20 17:05:13 -0800598}
599#else
600static inline void rt6_probe(struct rt6_info *rt)
601{
YOSHIFUJI Hideaki27097252006-03-20 17:05:13 -0800602}
603#endif
604
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605/*
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800606 * Default Router Selection (RFC 2461 6.3.6)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 */
Dave Jonesb6f99a22007-03-22 12:27:49 -0700608static inline int rt6_check_dev(struct rt6_info *rt, int oif)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609{
David S. Millerd1918542011-12-28 20:19:20 -0500610 struct net_device *dev = rt->dst.dev;
David S. Miller161980f2007-04-06 11:42:27 -0700611 if (!oif || dev->ifindex == oif)
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800612 return 2;
David S. Miller161980f2007-04-06 11:42:27 -0700613 if ((dev->flags & IFF_LOOPBACK) &&
614 rt->rt6i_idev && rt->rt6i_idev->dev->ifindex == oif)
615 return 1;
616 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617}
618
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200619static inline enum rt6_nud_state rt6_check_neigh(struct rt6_info *rt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620{
Eric Dumazetf2c31e32011-07-29 19:00:53 +0000621 struct neighbour *neigh;
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200622 enum rt6_nud_state ret = RT6_NUD_FAIL_HARD;
Eric Dumazetf2c31e32011-07-29 19:00:53 +0000623
YOSHIFUJI Hideaki4d0c5912006-05-26 13:23:41 -0700624 if (rt->rt6i_flags & RTF_NONEXTHOP ||
625 !(rt->rt6i_flags & RTF_GATEWAY))
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200626 return RT6_NUD_SUCCEED;
YOSHIFUJI Hideaki / 吉藤英明145a3622013-01-17 12:53:38 +0000627
628 rcu_read_lock_bh();
629 neigh = __ipv6_neigh_lookup_noref(rt->dst.dev, &rt->rt6i_gateway);
630 if (neigh) {
631 read_lock(&neigh->lock);
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800632 if (neigh->nud_state & NUD_VALID)
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200633 ret = RT6_NUD_SUCCEED;
YOSHIFUJI Hideaki398bcbe2008-01-19 00:35:16 -0800634#ifdef CONFIG_IPV6_ROUTER_PREF
Paul Marksa5a81f02012-12-03 10:26:54 +0000635 else if (!(neigh->nud_state & NUD_FAILED))
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200636 ret = RT6_NUD_SUCCEED;
Jiri Benc7e980562013-12-11 13:48:20 +0100637 else
638 ret = RT6_NUD_FAIL_PROBE;
YOSHIFUJI Hideaki398bcbe2008-01-19 00:35:16 -0800639#endif
YOSHIFUJI Hideaki / 吉藤英明145a3622013-01-17 12:53:38 +0000640 read_unlock(&neigh->lock);
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200641 } else {
642 ret = IS_ENABLED(CONFIG_IPV6_ROUTER_PREF) ?
Jiri Benc7e980562013-12-11 13:48:20 +0100643 RT6_NUD_SUCCEED : RT6_NUD_FAIL_DO_RR;
Paul Marksa5a81f02012-12-03 10:26:54 +0000644 }
YOSHIFUJI Hideaki / 吉藤英明145a3622013-01-17 12:53:38 +0000645 rcu_read_unlock_bh();
646
Paul Marksa5a81f02012-12-03 10:26:54 +0000647 return ret;
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800648}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800650static int rt6_score_route(struct rt6_info *rt, int oif,
651 int strict)
652{
Paul Marksa5a81f02012-12-03 10:26:54 +0000653 int m;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900654
YOSHIFUJI Hideaki4d0c5912006-05-26 13:23:41 -0700655 m = rt6_check_dev(rt, oif);
YOSHIFUJI Hideaki77d16f42006-08-23 17:25:05 -0700656 if (!m && (strict & RT6_LOOKUP_F_IFACE))
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200657 return RT6_NUD_FAIL_HARD;
YOSHIFUJI Hideakiebacaaa2006-03-20 17:04:53 -0800658#ifdef CONFIG_IPV6_ROUTER_PREF
659 m |= IPV6_DECODE_PREF(IPV6_EXTRACT_PREF(rt->rt6i_flags)) << 2;
660#endif
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200661 if (strict & RT6_LOOKUP_F_REACHABLE) {
662 int n = rt6_check_neigh(rt);
663 if (n < 0)
664 return n;
665 }
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800666 return m;
667}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668
David S. Millerf11e6652007-03-24 20:36:25 -0700669static struct rt6_info *find_match(struct rt6_info *rt, int oif, int strict,
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200670 int *mpri, struct rt6_info *match,
671 bool *do_rr)
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800672{
David S. Millerf11e6652007-03-24 20:36:25 -0700673 int m;
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200674 bool match_do_rr = false;
Andy Gospodarek35103d12015-08-13 10:39:01 -0400675 struct inet6_dev *idev = rt->rt6i_idev;
676 struct net_device *dev = rt->dst.dev;
677
678 if (dev && !netif_carrier_ok(dev) &&
David Ahernd5d32e42016-10-24 12:27:23 -0700679 idev->cnf.ignore_routes_with_linkdown &&
680 !(strict & RT6_LOOKUP_F_IGNORE_LINKSTATE))
Andy Gospodarek35103d12015-08-13 10:39:01 -0400681 goto out;
David S. Millerf11e6652007-03-24 20:36:25 -0700682
683 if (rt6_check_expired(rt))
684 goto out;
685
686 m = rt6_score_route(rt, oif, strict);
Jiri Benc7e980562013-12-11 13:48:20 +0100687 if (m == RT6_NUD_FAIL_DO_RR) {
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200688 match_do_rr = true;
689 m = 0; /* lowest valid score */
Jiri Benc7e980562013-12-11 13:48:20 +0100690 } else if (m == RT6_NUD_FAIL_HARD) {
David S. Millerf11e6652007-03-24 20:36:25 -0700691 goto out;
David S. Millerf11e6652007-03-24 20:36:25 -0700692 }
693
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200694 if (strict & RT6_LOOKUP_F_REACHABLE)
695 rt6_probe(rt);
696
Jiri Benc7e980562013-12-11 13:48:20 +0100697 /* note that m can be RT6_NUD_FAIL_PROBE at this point */
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200698 if (m > *mpri) {
699 *do_rr = match_do_rr;
700 *mpri = m;
701 match = rt;
702 }
David S. Millerf11e6652007-03-24 20:36:25 -0700703out:
704 return match;
705}
706
707static struct rt6_info *find_rr_leaf(struct fib6_node *fn,
708 struct rt6_info *rr_head,
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200709 u32 metric, int oif, int strict,
710 bool *do_rr)
David S. Millerf11e6652007-03-24 20:36:25 -0700711{
Steffen Klassert9fbdcfa2015-04-28 13:03:04 -0700712 struct rt6_info *rt, *match, *cont;
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800713 int mpri = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714
David S. Millerf11e6652007-03-24 20:36:25 -0700715 match = NULL;
Steffen Klassert9fbdcfa2015-04-28 13:03:04 -0700716 cont = NULL;
717 for (rt = rr_head; rt; rt = rt->dst.rt6_next) {
718 if (rt->rt6i_metric != metric) {
719 cont = rt;
720 break;
721 }
722
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200723 match = find_match(rt, oif, strict, &mpri, match, do_rr);
Steffen Klassert9fbdcfa2015-04-28 13:03:04 -0700724 }
725
726 for (rt = fn->leaf; rt && rt != rr_head; rt = rt->dst.rt6_next) {
727 if (rt->rt6i_metric != metric) {
728 cont = rt;
729 break;
730 }
731
732 match = find_match(rt, oif, strict, &mpri, match, do_rr);
733 }
734
735 if (match || !cont)
736 return match;
737
738 for (rt = cont; rt; rt = rt->dst.rt6_next)
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200739 match = find_match(rt, oif, strict, &mpri, match, do_rr);
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800740
David S. Millerf11e6652007-03-24 20:36:25 -0700741 return match;
742}
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800743
David S. Millerf11e6652007-03-24 20:36:25 -0700744static struct rt6_info *rt6_select(struct fib6_node *fn, int oif, int strict)
745{
746 struct rt6_info *match, *rt0;
Daniel Lezcano8ed67782008-03-04 13:48:30 -0800747 struct net *net;
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200748 bool do_rr = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749
David S. Millerf11e6652007-03-24 20:36:25 -0700750 rt0 = fn->rr_ptr;
751 if (!rt0)
752 fn->rr_ptr = rt0 = fn->leaf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200754 match = find_rr_leaf(fn, rt0, rt0->rt6i_metric, oif, strict,
755 &do_rr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200757 if (do_rr) {
Changli Gaod8d1f302010-06-10 23:31:35 -0700758 struct rt6_info *next = rt0->dst.rt6_next;
David S. Millerf11e6652007-03-24 20:36:25 -0700759
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800760 /* no entries matched; do round-robin */
David S. Millerf11e6652007-03-24 20:36:25 -0700761 if (!next || next->rt6i_metric != rt0->rt6i_metric)
762 next = fn->leaf;
763
764 if (next != rt0)
765 fn->rr_ptr = next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 }
767
David S. Millerd1918542011-12-28 20:19:20 -0500768 net = dev_net(rt0->dst.dev);
Eric Dumazeta02cec22010-09-22 20:43:57 +0000769 return match ? match : net->ipv6.ip6_null_entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770}
771
Martin KaFai Lau8b9df262015-05-22 20:55:59 -0700772static bool rt6_is_gw_or_nonexthop(const struct rt6_info *rt)
773{
774 return (rt->rt6i_flags & (RTF_NONEXTHOP | RTF_GATEWAY));
775}
776
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800777#ifdef CONFIG_IPV6_ROUTE_INFO
778int rt6_route_rcv(struct net_device *dev, u8 *opt, int len,
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000779 const struct in6_addr *gwaddr)
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800780{
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900781 struct net *net = dev_net(dev);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800782 struct route_info *rinfo = (struct route_info *) opt;
783 struct in6_addr prefix_buf, *prefix;
784 unsigned int pref;
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +0900785 unsigned long lifetime;
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800786 struct rt6_info *rt;
787
788 if (len < sizeof(struct route_info)) {
789 return -EINVAL;
790 }
791
792 /* Sanity check for prefix_len and length */
793 if (rinfo->length > 3) {
794 return -EINVAL;
795 } else if (rinfo->prefix_len > 128) {
796 return -EINVAL;
797 } else if (rinfo->prefix_len > 64) {
798 if (rinfo->length < 2) {
799 return -EINVAL;
800 }
801 } else if (rinfo->prefix_len > 0) {
802 if (rinfo->length < 1) {
803 return -EINVAL;
804 }
805 }
806
807 pref = rinfo->route_pref;
808 if (pref == ICMPV6_ROUTER_PREF_INVALID)
Jens Rosenboom3933fc92009-09-10 06:25:11 +0000809 return -EINVAL;
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800810
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +0900811 lifetime = addrconf_timeout_fixup(ntohl(rinfo->lifetime), HZ);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800812
813 if (rinfo->length == 3)
814 prefix = (struct in6_addr *)rinfo->prefix;
815 else {
816 /* this function is safe */
817 ipv6_addr_prefix(&prefix_buf,
818 (struct in6_addr *)rinfo->prefix,
819 rinfo->prefix_len);
820 prefix = &prefix_buf;
821 }
822
Duan Jiongf104a562013-11-08 09:56:53 +0800823 if (rinfo->prefix_len == 0)
824 rt = rt6_get_dflt_router(gwaddr, dev);
825 else
826 rt = rt6_get_route_info(net, prefix, rinfo->prefix_len,
David Ahern830218c2016-10-24 10:52:35 -0700827 gwaddr, dev);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800828
829 if (rt && !lifetime) {
Thomas Grafe0a1ad732006-08-22 00:00:21 -0700830 ip6_del_rt(rt);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800831 rt = NULL;
832 }
833
834 if (!rt && lifetime)
David Ahern830218c2016-10-24 10:52:35 -0700835 rt = rt6_add_route_info(net, prefix, rinfo->prefix_len, gwaddr,
836 dev, pref);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800837 else if (rt)
838 rt->rt6i_flags = RTF_ROUTEINFO |
839 (rt->rt6i_flags & ~RTF_PREF_MASK) | RTF_PREF(pref);
840
841 if (rt) {
Gao feng1716a962012-04-06 00:13:10 +0000842 if (!addrconf_finite_timeout(lifetime))
843 rt6_clean_expires(rt);
844 else
845 rt6_set_expires(rt, jiffies + HZ * lifetime);
846
Amerigo Wang94e187c2012-10-29 00:13:19 +0000847 ip6_rt_put(rt);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800848 }
849 return 0;
850}
851#endif
852
Martin KaFai Laua3c00e42014-10-20 13:42:43 -0700853static struct fib6_node* fib6_backtrack(struct fib6_node *fn,
854 struct in6_addr *saddr)
855{
856 struct fib6_node *pn;
857 while (1) {
858 if (fn->fn_flags & RTN_TL_ROOT)
859 return NULL;
860 pn = fn->parent;
861 if (FIB6_SUBTREE(pn) && FIB6_SUBTREE(pn) != fn)
862 fn = fib6_lookup(FIB6_SUBTREE(pn), NULL, saddr);
863 else
864 fn = pn;
865 if (fn->fn_flags & RTN_RTINFO)
866 return fn;
867 }
868}
Thomas Grafc71099a2006-08-04 23:20:06 -0700869
Daniel Lezcano8ed67782008-03-04 13:48:30 -0800870static struct rt6_info *ip6_pol_route_lookup(struct net *net,
871 struct fib6_table *table,
David S. Miller4c9483b2011-03-12 16:22:43 -0500872 struct flowi6 *fl6, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873{
874 struct fib6_node *fn;
875 struct rt6_info *rt;
876
Thomas Grafc71099a2006-08-04 23:20:06 -0700877 read_lock_bh(&table->tb6_lock);
David S. Miller4c9483b2011-03-12 16:22:43 -0500878 fn = fib6_lookup(&table->tb6_root, &fl6->daddr, &fl6->saddr);
Thomas Grafc71099a2006-08-04 23:20:06 -0700879restart:
880 rt = fn->leaf;
David S. Miller4c9483b2011-03-12 16:22:43 -0500881 rt = rt6_device_match(net, rt, &fl6->saddr, fl6->flowi6_oif, flags);
Nicolas Dichtel51ebd312012-10-22 03:42:09 +0000882 if (rt->rt6i_nsiblings && fl6->flowi6_oif == 0)
Nicolas Dichtel52bd4c02013-06-28 17:35:48 +0200883 rt = rt6_multipath_select(rt, fl6, fl6->flowi6_oif, flags);
Martin KaFai Laua3c00e42014-10-20 13:42:43 -0700884 if (rt == net->ipv6.ip6_null_entry) {
885 fn = fib6_backtrack(fn, &fl6->saddr);
886 if (fn)
887 goto restart;
888 }
Changli Gaod8d1f302010-06-10 23:31:35 -0700889 dst_use(&rt->dst, jiffies);
Thomas Grafc71099a2006-08-04 23:20:06 -0700890 read_unlock_bh(&table->tb6_lock);
David Ahernb8115802015-11-19 12:24:22 -0800891
892 trace_fib6_table_lookup(net, rt, table->tb6_id, fl6);
893
Thomas Grafc71099a2006-08-04 23:20:06 -0700894 return rt;
895
896}
897
Ian Morris67ba4152014-08-24 21:53:10 +0100898struct dst_entry *ip6_route_lookup(struct net *net, struct flowi6 *fl6,
Florian Westphalea6e5742011-09-05 16:05:44 +0200899 int flags)
900{
901 return fib6_rule_lookup(net, fl6, flags, ip6_pol_route_lookup);
902}
903EXPORT_SYMBOL_GPL(ip6_route_lookup);
904
YOSHIFUJI Hideaki9acd9f32008-04-10 15:42:10 +0900905struct rt6_info *rt6_lookup(struct net *net, const struct in6_addr *daddr,
906 const struct in6_addr *saddr, int oif, int strict)
Thomas Grafc71099a2006-08-04 23:20:06 -0700907{
David S. Miller4c9483b2011-03-12 16:22:43 -0500908 struct flowi6 fl6 = {
909 .flowi6_oif = oif,
910 .daddr = *daddr,
Thomas Grafc71099a2006-08-04 23:20:06 -0700911 };
912 struct dst_entry *dst;
YOSHIFUJI Hideaki77d16f42006-08-23 17:25:05 -0700913 int flags = strict ? RT6_LOOKUP_F_IFACE : 0;
Thomas Grafc71099a2006-08-04 23:20:06 -0700914
Thomas Grafadaa70b2006-10-13 15:01:03 -0700915 if (saddr) {
David S. Miller4c9483b2011-03-12 16:22:43 -0500916 memcpy(&fl6.saddr, saddr, sizeof(*saddr));
Thomas Grafadaa70b2006-10-13 15:01:03 -0700917 flags |= RT6_LOOKUP_F_HAS_SADDR;
918 }
919
David S. Miller4c9483b2011-03-12 16:22:43 -0500920 dst = fib6_rule_lookup(net, &fl6, flags, ip6_pol_route_lookup);
Thomas Grafc71099a2006-08-04 23:20:06 -0700921 if (dst->error == 0)
922 return (struct rt6_info *) dst;
923
924 dst_release(dst);
925
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926 return NULL;
927}
YOSHIFUJI Hideaki71590392007-02-22 22:05:40 +0900928EXPORT_SYMBOL(rt6_lookup);
929
Thomas Grafc71099a2006-08-04 23:20:06 -0700930/* ip6_ins_rt is called with FREE table->tb6_lock.
Wei Wang1cfb71e2017-06-17 10:42:33 -0700931 * It takes new route entry, the addition fails by any reason the
932 * route is released.
933 * Caller must hold dst before calling it.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934 */
935
Michal Kubečeke5fd3872014-03-27 13:04:08 +0100936static int __ip6_ins_rt(struct rt6_info *rt, struct nl_info *info,
David Ahern333c4302017-05-21 10:12:04 -0600937 struct mx6_config *mxc,
938 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939{
940 int err;
Thomas Grafc71099a2006-08-04 23:20:06 -0700941 struct fib6_table *table;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942
Thomas Grafc71099a2006-08-04 23:20:06 -0700943 table = rt->rt6i_table;
944 write_lock_bh(&table->tb6_lock);
David Ahern333c4302017-05-21 10:12:04 -0600945 err = fib6_add(&table->tb6_root, rt, info, mxc, extack);
Thomas Grafc71099a2006-08-04 23:20:06 -0700946 write_unlock_bh(&table->tb6_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947
948 return err;
949}
950
Thomas Graf40e22e82006-08-22 00:00:45 -0700951int ip6_ins_rt(struct rt6_info *rt)
952{
Florian Westphale715b6d2015-01-05 23:57:44 +0100953 struct nl_info info = { .nl_net = dev_net(rt->dst.dev), };
954 struct mx6_config mxc = { .mx = NULL, };
955
Wei Wang1cfb71e2017-06-17 10:42:33 -0700956 /* Hold dst to account for the reference from the fib6 tree */
957 dst_hold(&rt->dst);
David Ahern333c4302017-05-21 10:12:04 -0600958 return __ip6_ins_rt(rt, &info, &mxc, NULL);
Thomas Graf40e22e82006-08-22 00:00:45 -0700959}
960
Martin KaFai Lau8b9df262015-05-22 20:55:59 -0700961static struct rt6_info *ip6_rt_cache_alloc(struct rt6_info *ort,
962 const struct in6_addr *daddr,
963 const struct in6_addr *saddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965 struct rt6_info *rt;
966
967 /*
968 * Clone the route.
969 */
970
Martin KaFai Laud52d3992015-05-22 20:56:06 -0700971 if (ort->rt6i_flags & (RTF_CACHE | RTF_PCPU))
Martin KaFai Lau83a09ab2015-05-22 20:56:05 -0700972 ort = (struct rt6_info *)ort->dst.from;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973
Martin KaFai Lauad706862015-08-14 11:05:52 -0700974 rt = __ip6_dst_alloc(dev_net(ort->dst.dev), ort->dst.dev, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975
Martin KaFai Lau83a09ab2015-05-22 20:56:05 -0700976 if (!rt)
977 return NULL;
978
979 ip6_rt_copy_init(rt, ort);
980 rt->rt6i_flags |= RTF_CACHE;
981 rt->rt6i_metric = 0;
982 rt->dst.flags |= DST_HOST;
983 rt->rt6i_dst.addr = *daddr;
984 rt->rt6i_dst.plen = 128;
985
986 if (!rt6_is_gw_or_nonexthop(ort)) {
987 if (ort->rt6i_dst.plen != 128 &&
988 ipv6_addr_equal(&ort->rt6i_dst.addr, daddr))
989 rt->rt6i_flags |= RTF_ANYCAST;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990#ifdef CONFIG_IPV6_SUBTREES
Martin KaFai Lau83a09ab2015-05-22 20:56:05 -0700991 if (rt->rt6i_src.plen && saddr) {
992 rt->rt6i_src.addr = *saddr;
993 rt->rt6i_src.plen = 128;
Martin KaFai Lau8b9df262015-05-22 20:55:59 -0700994 }
Martin KaFai Lau83a09ab2015-05-22 20:56:05 -0700995#endif
YOSHIFUJI Hideaki95a9a5b2006-03-20 16:55:51 -0800996 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997
YOSHIFUJI Hideaki95a9a5b2006-03-20 16:55:51 -0800998 return rt;
999}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001001static struct rt6_info *ip6_rt_pcpu_alloc(struct rt6_info *rt)
1002{
1003 struct rt6_info *pcpu_rt;
1004
1005 pcpu_rt = __ip6_dst_alloc(dev_net(rt->dst.dev),
Martin KaFai Lauad706862015-08-14 11:05:52 -07001006 rt->dst.dev, rt->dst.flags);
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001007
1008 if (!pcpu_rt)
1009 return NULL;
1010 ip6_rt_copy_init(pcpu_rt, rt);
1011 pcpu_rt->rt6i_protocol = rt->rt6i_protocol;
1012 pcpu_rt->rt6i_flags |= RTF_PCPU;
1013 return pcpu_rt;
1014}
1015
1016/* It should be called with read_lock_bh(&tb6_lock) acquired */
1017static struct rt6_info *rt6_get_pcpu_route(struct rt6_info *rt)
1018{
Martin KaFai Laua73e4192015-08-14 11:05:53 -07001019 struct rt6_info *pcpu_rt, **p;
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001020
1021 p = this_cpu_ptr(rt->rt6i_pcpu);
1022 pcpu_rt = *p;
1023
Martin KaFai Laua73e4192015-08-14 11:05:53 -07001024 if (pcpu_rt) {
1025 dst_hold(&pcpu_rt->dst);
1026 rt6_dst_from_metrics_check(pcpu_rt);
1027 }
1028 return pcpu_rt;
1029}
1030
1031static struct rt6_info *rt6_make_pcpu_route(struct rt6_info *rt)
1032{
Martin KaFai Lau9c7370a2015-08-14 11:05:54 -07001033 struct fib6_table *table = rt->rt6i_table;
Martin KaFai Laua73e4192015-08-14 11:05:53 -07001034 struct rt6_info *pcpu_rt, *prev, **p;
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001035
1036 pcpu_rt = ip6_rt_pcpu_alloc(rt);
1037 if (!pcpu_rt) {
1038 struct net *net = dev_net(rt->dst.dev);
1039
Martin KaFai Lau9c7370a2015-08-14 11:05:54 -07001040 dst_hold(&net->ipv6.ip6_null_entry->dst);
1041 return net->ipv6.ip6_null_entry;
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001042 }
1043
Martin KaFai Lau9c7370a2015-08-14 11:05:54 -07001044 read_lock_bh(&table->tb6_lock);
1045 if (rt->rt6i_pcpu) {
1046 p = this_cpu_ptr(rt->rt6i_pcpu);
1047 prev = cmpxchg(p, NULL, pcpu_rt);
1048 if (prev) {
1049 /* If someone did it before us, return prev instead */
Wei Wang587fea72017-06-17 10:42:36 -07001050 dst_release_immediate(&pcpu_rt->dst);
Martin KaFai Lau9c7370a2015-08-14 11:05:54 -07001051 pcpu_rt = prev;
1052 }
1053 } else {
1054 /* rt has been removed from the fib6 tree
1055 * before we have a chance to acquire the read_lock.
1056 * In this case, don't brother to create a pcpu rt
1057 * since rt is going away anyway. The next
1058 * dst_check() will trigger a re-lookup.
1059 */
Wei Wang587fea72017-06-17 10:42:36 -07001060 dst_release_immediate(&pcpu_rt->dst);
Martin KaFai Lau9c7370a2015-08-14 11:05:54 -07001061 pcpu_rt = rt;
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001062 }
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001063 dst_hold(&pcpu_rt->dst);
1064 rt6_dst_from_metrics_check(pcpu_rt);
Martin KaFai Lau9c7370a2015-08-14 11:05:54 -07001065 read_unlock_bh(&table->tb6_lock);
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001066 return pcpu_rt;
1067}
1068
David Ahern9ff74382016-06-13 13:44:19 -07001069struct rt6_info *ip6_pol_route(struct net *net, struct fib6_table *table,
1070 int oif, struct flowi6 *fl6, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071{
Martin KaFai Lau367efcb2014-10-20 13:42:45 -07001072 struct fib6_node *fn, *saved_fn;
Martin KaFai Lau45e4fd22015-05-22 20:56:00 -07001073 struct rt6_info *rt;
Thomas Grafc71099a2006-08-04 23:20:06 -07001074 int strict = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075
YOSHIFUJI Hideaki77d16f42006-08-23 17:25:05 -07001076 strict |= flags & RT6_LOOKUP_F_IFACE;
David Ahernd5d32e42016-10-24 12:27:23 -07001077 strict |= flags & RT6_LOOKUP_F_IGNORE_LINKSTATE;
Martin KaFai Lau367efcb2014-10-20 13:42:45 -07001078 if (net->ipv6.devconf_all->forwarding == 0)
1079 strict |= RT6_LOOKUP_F_REACHABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080
Thomas Grafc71099a2006-08-04 23:20:06 -07001081 read_lock_bh(&table->tb6_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082
David S. Miller4c9483b2011-03-12 16:22:43 -05001083 fn = fib6_lookup(&table->tb6_root, &fl6->daddr, &fl6->saddr);
Martin KaFai Lau367efcb2014-10-20 13:42:45 -07001084 saved_fn = fn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085
David Ahernca254492015-10-12 11:47:10 -07001086 if (fl6->flowi6_flags & FLOWI_FLAG_SKIP_NH_OIF)
1087 oif = 0;
1088
Martin KaFai Laua3c00e42014-10-20 13:42:43 -07001089redo_rt6_select:
Martin KaFai Lau367efcb2014-10-20 13:42:45 -07001090 rt = rt6_select(fn, oif, strict);
Nicolas Dichtel52bd4c02013-06-28 17:35:48 +02001091 if (rt->rt6i_nsiblings)
Martin KaFai Lau367efcb2014-10-20 13:42:45 -07001092 rt = rt6_multipath_select(rt, fl6, oif, strict);
Martin KaFai Laua3c00e42014-10-20 13:42:43 -07001093 if (rt == net->ipv6.ip6_null_entry) {
1094 fn = fib6_backtrack(fn, &fl6->saddr);
1095 if (fn)
1096 goto redo_rt6_select;
Martin KaFai Lau367efcb2014-10-20 13:42:45 -07001097 else if (strict & RT6_LOOKUP_F_REACHABLE) {
1098 /* also consider unreachable route */
1099 strict &= ~RT6_LOOKUP_F_REACHABLE;
1100 fn = saved_fn;
1101 goto redo_rt6_select;
Martin KaFai Lau367efcb2014-10-20 13:42:45 -07001102 }
Martin KaFai Laua3c00e42014-10-20 13:42:43 -07001103 }
1104
YOSHIFUJI Hideakifb9de912006-03-20 16:59:08 -08001105
Martin KaFai Lau3da59bd2015-05-22 20:56:03 -07001106 if (rt == net->ipv6.ip6_null_entry || (rt->rt6i_flags & RTF_CACHE)) {
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001107 dst_use(&rt->dst, jiffies);
1108 read_unlock_bh(&table->tb6_lock);
1109
1110 rt6_dst_from_metrics_check(rt);
David Ahernb8115802015-11-19 12:24:22 -08001111
1112 trace_fib6_table_lookup(net, rt, table->tb6_id, fl6);
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001113 return rt;
Martin KaFai Lau3da59bd2015-05-22 20:56:03 -07001114 } else if (unlikely((fl6->flowi6_flags & FLOWI_FLAG_KNOWN_NH) &&
1115 !(rt->rt6i_flags & RTF_GATEWAY))) {
1116 /* Create a RTF_CACHE clone which will not be
1117 * owned by the fib6 tree. It is for the special case where
1118 * the daddr in the skb during the neighbor look-up is different
1119 * from the fl6->daddr used to look-up route here.
1120 */
Thomas Grafc71099a2006-08-04 23:20:06 -07001121
Martin KaFai Lau3da59bd2015-05-22 20:56:03 -07001122 struct rt6_info *uncached_rt;
1123
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001124 dst_use(&rt->dst, jiffies);
1125 read_unlock_bh(&table->tb6_lock);
1126
Martin KaFai Lau3da59bd2015-05-22 20:56:03 -07001127 uncached_rt = ip6_rt_cache_alloc(rt, &fl6->daddr, NULL);
1128 dst_release(&rt->dst);
1129
Wei Wang1cfb71e2017-06-17 10:42:33 -07001130 if (uncached_rt) {
1131 /* Uncached_rt's refcnt is taken during ip6_rt_cache_alloc()
1132 * No need for another dst_hold()
1133 */
Martin KaFai Lau8d0b94a2015-05-22 20:56:04 -07001134 rt6_uncached_list_add(uncached_rt);
Wei Wang1cfb71e2017-06-17 10:42:33 -07001135 } else {
Martin KaFai Lau3da59bd2015-05-22 20:56:03 -07001136 uncached_rt = net->ipv6.ip6_null_entry;
Wei Wang1cfb71e2017-06-17 10:42:33 -07001137 dst_hold(&uncached_rt->dst);
1138 }
David Ahernb8115802015-11-19 12:24:22 -08001139
1140 trace_fib6_table_lookup(net, uncached_rt, table->tb6_id, fl6);
Martin KaFai Lau3da59bd2015-05-22 20:56:03 -07001141 return uncached_rt;
Martin KaFai Lau3da59bd2015-05-22 20:56:03 -07001142
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001143 } else {
1144 /* Get a percpu copy */
1145
1146 struct rt6_info *pcpu_rt;
1147
1148 rt->dst.lastuse = jiffies;
1149 rt->dst.__use++;
1150 pcpu_rt = rt6_get_pcpu_route(rt);
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001151
Martin KaFai Lau9c7370a2015-08-14 11:05:54 -07001152 if (pcpu_rt) {
1153 read_unlock_bh(&table->tb6_lock);
1154 } else {
1155 /* We have to do the read_unlock first
1156 * because rt6_make_pcpu_route() may trigger
1157 * ip6_dst_gc() which will take the write_lock.
1158 */
1159 dst_hold(&rt->dst);
1160 read_unlock_bh(&table->tb6_lock);
Martin KaFai Laua73e4192015-08-14 11:05:53 -07001161 pcpu_rt = rt6_make_pcpu_route(rt);
Martin KaFai Lau9c7370a2015-08-14 11:05:54 -07001162 dst_release(&rt->dst);
1163 }
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001164
David Ahernb8115802015-11-19 12:24:22 -08001165 trace_fib6_table_lookup(net, pcpu_rt, table->tb6_id, fl6);
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001166 return pcpu_rt;
Martin KaFai Lau9c7370a2015-08-14 11:05:54 -07001167
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001168 }
Thomas Grafc71099a2006-08-04 23:20:06 -07001169}
David Ahern9ff74382016-06-13 13:44:19 -07001170EXPORT_SYMBOL_GPL(ip6_pol_route);
Thomas Grafc71099a2006-08-04 23:20:06 -07001171
Daniel Lezcano8ed67782008-03-04 13:48:30 -08001172static struct rt6_info *ip6_pol_route_input(struct net *net, struct fib6_table *table,
David S. Miller4c9483b2011-03-12 16:22:43 -05001173 struct flowi6 *fl6, int flags)
Pavel Emelyanov4acad722007-10-15 13:02:51 -07001174{
David S. Miller4c9483b2011-03-12 16:22:43 -05001175 return ip6_pol_route(net, table, fl6->flowi6_iif, fl6, flags);
Pavel Emelyanov4acad722007-10-15 13:02:51 -07001176}
1177
Mahesh Bandeward409b842016-09-16 12:59:08 -07001178struct dst_entry *ip6_route_input_lookup(struct net *net,
1179 struct net_device *dev,
1180 struct flowi6 *fl6, int flags)
Shmulik Ladkani72331bc2012-04-01 04:03:45 +00001181{
1182 if (rt6_need_strict(&fl6->daddr) && dev->type != ARPHRD_PIMREG)
1183 flags |= RT6_LOOKUP_F_IFACE;
1184
1185 return fib6_rule_lookup(net, fl6, flags, ip6_pol_route_input);
1186}
Mahesh Bandeward409b842016-09-16 12:59:08 -07001187EXPORT_SYMBOL_GPL(ip6_route_input_lookup);
Shmulik Ladkani72331bc2012-04-01 04:03:45 +00001188
Thomas Grafc71099a2006-08-04 23:20:06 -07001189void ip6_route_input(struct sk_buff *skb)
1190{
Eric Dumazetb71d1d42011-04-22 04:53:02 +00001191 const struct ipv6hdr *iph = ipv6_hdr(skb);
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001192 struct net *net = dev_net(skb->dev);
Thomas Grafadaa70b2006-10-13 15:01:03 -07001193 int flags = RT6_LOOKUP_F_HAS_SADDR;
Jiri Benc904af042015-08-20 13:56:31 +02001194 struct ip_tunnel_info *tun_info;
David S. Miller4c9483b2011-03-12 16:22:43 -05001195 struct flowi6 fl6 = {
David Aherne0d56fd2016-09-10 12:09:57 -07001196 .flowi6_iif = skb->dev->ifindex,
David S. Miller4c9483b2011-03-12 16:22:43 -05001197 .daddr = iph->daddr,
1198 .saddr = iph->saddr,
YOSHIFUJI Hideaki / 吉藤英明6502ca52013-01-13 05:01:51 +00001199 .flowlabel = ip6_flowinfo(iph),
David S. Miller4c9483b2011-03-12 16:22:43 -05001200 .flowi6_mark = skb->mark,
1201 .flowi6_proto = iph->nexthdr,
Thomas Grafc71099a2006-08-04 23:20:06 -07001202 };
Thomas Grafadaa70b2006-10-13 15:01:03 -07001203
Jiri Benc904af042015-08-20 13:56:31 +02001204 tun_info = skb_tunnel_info(skb);
Jiri Benc46fa0622015-08-28 20:48:19 +02001205 if (tun_info && !(tun_info->mode & IP_TUNNEL_INFO_TX))
Jiri Benc904af042015-08-20 13:56:31 +02001206 fl6.flowi6_tun_key.tun_id = tun_info->key.tun_id;
Jiri Benc06e9d042015-08-20 13:56:26 +02001207 skb_dst_drop(skb);
Shmulik Ladkani72331bc2012-04-01 04:03:45 +00001208 skb_dst_set(skb, ip6_route_input_lookup(net, skb->dev, &fl6, flags));
Thomas Grafc71099a2006-08-04 23:20:06 -07001209}
1210
Daniel Lezcano8ed67782008-03-04 13:48:30 -08001211static struct rt6_info *ip6_pol_route_output(struct net *net, struct fib6_table *table,
David S. Miller4c9483b2011-03-12 16:22:43 -05001212 struct flowi6 *fl6, int flags)
Thomas Grafc71099a2006-08-04 23:20:06 -07001213{
David S. Miller4c9483b2011-03-12 16:22:43 -05001214 return ip6_pol_route(net, table, fl6->flowi6_oif, fl6, flags);
Thomas Grafc71099a2006-08-04 23:20:06 -07001215}
1216
Paolo Abeni6f21c962016-01-29 12:30:19 +01001217struct dst_entry *ip6_route_output_flags(struct net *net, const struct sock *sk,
1218 struct flowi6 *fl6, int flags)
Thomas Grafc71099a2006-08-04 23:20:06 -07001219{
David Ahernd46a9d62015-10-21 08:42:22 -07001220 bool any_src;
Thomas Grafc71099a2006-08-04 23:20:06 -07001221
David Ahern4c1feac2016-09-10 12:09:56 -07001222 if (rt6_need_strict(&fl6->daddr)) {
1223 struct dst_entry *dst;
1224
1225 dst = l3mdev_link_scope_lookup(net, fl6);
1226 if (dst)
1227 return dst;
1228 }
David Ahernca254492015-10-12 11:47:10 -07001229
Pavel Emelyanov1fb94892012-08-08 21:53:36 +00001230 fl6->flowi6_iif = LOOPBACK_IFINDEX;
David McCullough4dc27d1c2012-06-25 15:42:26 +00001231
David Ahernd46a9d62015-10-21 08:42:22 -07001232 any_src = ipv6_addr_any(&fl6->saddr);
David Ahern741a11d2015-09-28 10:12:13 -07001233 if ((sk && sk->sk_bound_dev_if) || rt6_need_strict(&fl6->daddr) ||
David Ahernd46a9d62015-10-21 08:42:22 -07001234 (fl6->flowi6_oif && any_src))
YOSHIFUJI Hideaki77d16f42006-08-23 17:25:05 -07001235 flags |= RT6_LOOKUP_F_IFACE;
Thomas Grafc71099a2006-08-04 23:20:06 -07001236
David Ahernd46a9d62015-10-21 08:42:22 -07001237 if (!any_src)
Thomas Grafadaa70b2006-10-13 15:01:03 -07001238 flags |= RT6_LOOKUP_F_HAS_SADDR;
YOSHIFUJI Hideaki / 吉藤英明0c9a2ac2010-03-07 00:14:44 +00001239 else if (sk)
1240 flags |= rt6_srcprefs2flags(inet6_sk(sk)->srcprefs);
Thomas Grafadaa70b2006-10-13 15:01:03 -07001241
David S. Miller4c9483b2011-03-12 16:22:43 -05001242 return fib6_rule_lookup(net, fl6, flags, ip6_pol_route_output);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243}
Paolo Abeni6f21c962016-01-29 12:30:19 +01001244EXPORT_SYMBOL_GPL(ip6_route_output_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245
David S. Miller2774c132011-03-01 14:59:04 -08001246struct dst_entry *ip6_blackhole_route(struct net *net, struct dst_entry *dst_orig)
David S. Miller14e50e52007-05-24 18:17:54 -07001247{
David S. Miller5c1e6aa2011-04-28 14:13:38 -07001248 struct rt6_info *rt, *ort = (struct rt6_info *) dst_orig;
Wei Wang1dbe32522017-06-17 10:42:26 -07001249 struct net_device *loopback_dev = net->loopback_dev;
David S. Miller14e50e52007-05-24 18:17:54 -07001250 struct dst_entry *new = NULL;
1251
Wei Wang1dbe32522017-06-17 10:42:26 -07001252 rt = dst_alloc(&ip6_dst_blackhole_ops, loopback_dev, 1,
Wei Wangb2a9c0e2017-06-17 10:42:41 -07001253 DST_OBSOLETE_NONE, 0);
David S. Miller14e50e52007-05-24 18:17:54 -07001254 if (rt) {
Martin KaFai Lau0a1f5962015-10-15 16:39:58 -07001255 rt6_info_init(rt);
1256
Changli Gaod8d1f302010-06-10 23:31:35 -07001257 new = &rt->dst;
David S. Miller14e50e52007-05-24 18:17:54 -07001258 new->__use = 1;
Herbert Xu352e5122007-11-13 21:34:06 -08001259 new->input = dst_discard;
Eric W. Biedermanede20592015-10-07 16:48:47 -05001260 new->output = dst_discard_out;
David S. Miller14e50e52007-05-24 18:17:54 -07001261
Martin KaFai Lau0a1f5962015-10-15 16:39:58 -07001262 dst_copy_metrics(new, &ort->dst);
David S. Miller14e50e52007-05-24 18:17:54 -07001263
Wei Wang1dbe32522017-06-17 10:42:26 -07001264 rt->rt6i_idev = in6_dev_get(loopback_dev);
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001265 rt->rt6i_gateway = ort->rt6i_gateway;
Martin KaFai Lau0a1f5962015-10-15 16:39:58 -07001266 rt->rt6i_flags = ort->rt6i_flags & ~RTF_PCPU;
David S. Miller14e50e52007-05-24 18:17:54 -07001267 rt->rt6i_metric = 0;
1268
1269 memcpy(&rt->rt6i_dst, &ort->rt6i_dst, sizeof(struct rt6key));
1270#ifdef CONFIG_IPV6_SUBTREES
1271 memcpy(&rt->rt6i_src, &ort->rt6i_src, sizeof(struct rt6key));
1272#endif
David S. Miller14e50e52007-05-24 18:17:54 -07001273 }
1274
David S. Miller69ead7a2011-03-01 14:45:33 -08001275 dst_release(dst_orig);
1276 return new ? new : ERR_PTR(-ENOMEM);
David S. Miller14e50e52007-05-24 18:17:54 -07001277}
David S. Miller14e50e52007-05-24 18:17:54 -07001278
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279/*
1280 * Destination cache support functions
1281 */
1282
Martin KaFai Lau4b32b5a2015-04-28 13:03:06 -07001283static void rt6_dst_from_metrics_check(struct rt6_info *rt)
1284{
1285 if (rt->dst.from &&
1286 dst_metrics_ptr(&rt->dst) != dst_metrics_ptr(rt->dst.from))
1287 dst_init_metrics(&rt->dst, dst_metrics_ptr(rt->dst.from), true);
1288}
1289
Martin KaFai Lau3da59bd2015-05-22 20:56:03 -07001290static struct dst_entry *rt6_check(struct rt6_info *rt, u32 cookie)
1291{
Steffen Klassert36143642017-08-25 09:05:42 +02001292 u32 rt_cookie = 0;
Wei Wangc5cff852017-08-21 09:47:10 -07001293
1294 if (!rt6_get_cookie_safe(rt, &rt_cookie) || rt_cookie != cookie)
Martin KaFai Lau3da59bd2015-05-22 20:56:03 -07001295 return NULL;
1296
1297 if (rt6_check_expired(rt))
1298 return NULL;
1299
1300 return &rt->dst;
1301}
1302
1303static struct dst_entry *rt6_dst_from_check(struct rt6_info *rt, u32 cookie)
1304{
Martin KaFai Lau5973fb12015-11-11 11:51:07 -08001305 if (!__rt6_check_expired(rt) &&
1306 rt->dst.obsolete == DST_OBSOLETE_FORCE_CHK &&
Martin KaFai Lau3da59bd2015-05-22 20:56:03 -07001307 rt6_check((struct rt6_info *)(rt->dst.from), cookie))
1308 return &rt->dst;
1309 else
1310 return NULL;
1311}
1312
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313static struct dst_entry *ip6_dst_check(struct dst_entry *dst, u32 cookie)
1314{
1315 struct rt6_info *rt;
1316
1317 rt = (struct rt6_info *) dst;
1318
Nicolas Dichtel6f3118b2012-09-10 22:09:46 +00001319 /* All IPV6 dsts are created with ->obsolete set to the value
1320 * DST_OBSOLETE_FORCE_CHK which forces validation calls down
1321 * into this function always.
1322 */
Hannes Frederic Sowae3bc10b2013-10-24 07:48:24 +02001323
Martin KaFai Lau4b32b5a2015-04-28 13:03:06 -07001324 rt6_dst_from_metrics_check(rt);
1325
Martin KaFai Lau02bcf4e2015-11-11 11:51:08 -08001326 if (rt->rt6i_flags & RTF_PCPU ||
Wei Wanga4c2fd72017-06-17 10:42:42 -07001327 (unlikely(!list_empty(&rt->rt6i_uncached)) && rt->dst.from))
Martin KaFai Lau3da59bd2015-05-22 20:56:03 -07001328 return rt6_dst_from_check(rt, cookie);
1329 else
1330 return rt6_check(rt, cookie);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331}
1332
1333static struct dst_entry *ip6_negative_advice(struct dst_entry *dst)
1334{
1335 struct rt6_info *rt = (struct rt6_info *) dst;
1336
1337 if (rt) {
YOSHIFUJI Hideaki / 吉藤英明54c1a852010-03-28 07:15:45 +00001338 if (rt->rt6i_flags & RTF_CACHE) {
1339 if (rt6_check_expired(rt)) {
1340 ip6_del_rt(rt);
1341 dst = NULL;
1342 }
1343 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344 dst_release(dst);
YOSHIFUJI Hideaki / 吉藤英明54c1a852010-03-28 07:15:45 +00001345 dst = NULL;
1346 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347 }
YOSHIFUJI Hideaki / 吉藤英明54c1a852010-03-28 07:15:45 +00001348 return dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349}
1350
1351static void ip6_link_failure(struct sk_buff *skb)
1352{
1353 struct rt6_info *rt;
1354
Alexey Dobriyan3ffe5332010-02-18 08:25:24 +00001355 icmpv6_send(skb, ICMPV6_DEST_UNREACH, ICMPV6_ADDR_UNREACH, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356
Eric Dumazetadf30902009-06-02 05:19:30 +00001357 rt = (struct rt6_info *) skb_dst(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358 if (rt) {
Hannes Frederic Sowa1eb4f752013-07-10 23:00:57 +02001359 if (rt->rt6i_flags & RTF_CACHE) {
Wei Wangad65a2f2017-06-17 10:42:35 -07001360 if (dst_hold_safe(&rt->dst))
1361 ip6_del_rt(rt);
Wei Wangc5cff852017-08-21 09:47:10 -07001362 } else {
1363 struct fib6_node *fn;
1364
1365 rcu_read_lock();
1366 fn = rcu_dereference(rt->rt6i_node);
1367 if (fn && (rt->rt6i_flags & RTF_DEFAULT))
1368 fn->fn_sernum = -1;
1369 rcu_read_unlock();
Hannes Frederic Sowa1eb4f752013-07-10 23:00:57 +02001370 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371 }
1372}
1373
Martin KaFai Lau45e4fd22015-05-22 20:56:00 -07001374static void rt6_do_update_pmtu(struct rt6_info *rt, u32 mtu)
1375{
1376 struct net *net = dev_net(rt->dst.dev);
1377
1378 rt->rt6i_flags |= RTF_MODIFIED;
1379 rt->rt6i_pmtu = mtu;
1380 rt6_update_expires(rt, net->ipv6.sysctl.ip6_rt_mtu_expires);
1381}
1382
Martin KaFai Lau0d3f6d22015-11-11 11:51:06 -08001383static bool rt6_cache_allowed_for_pmtu(const struct rt6_info *rt)
1384{
1385 return !(rt->rt6i_flags & RTF_CACHE) &&
Wei Wang4e587ea2017-08-25 15:03:10 -07001386 (rt->rt6i_flags & RTF_PCPU ||
1387 rcu_access_pointer(rt->rt6i_node));
Martin KaFai Lau0d3f6d22015-11-11 11:51:06 -08001388}
1389
Martin KaFai Lau45e4fd22015-05-22 20:56:00 -07001390static void __ip6_rt_update_pmtu(struct dst_entry *dst, const struct sock *sk,
1391 const struct ipv6hdr *iph, u32 mtu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392{
Julian Anastasov0dec8792017-02-06 23:14:16 +02001393 const struct in6_addr *daddr, *saddr;
Ian Morris67ba4152014-08-24 21:53:10 +01001394 struct rt6_info *rt6 = (struct rt6_info *)dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395
Martin KaFai Lau45e4fd22015-05-22 20:56:00 -07001396 if (rt6->rt6i_flags & RTF_LOCAL)
1397 return;
1398
Xin Long19bda362016-10-28 18:18:01 +08001399 if (dst_metric_locked(dst, RTAX_MTU))
1400 return;
1401
Julian Anastasov0dec8792017-02-06 23:14:16 +02001402 if (iph) {
1403 daddr = &iph->daddr;
1404 saddr = &iph->saddr;
1405 } else if (sk) {
1406 daddr = &sk->sk_v6_daddr;
1407 saddr = &inet6_sk(sk)->saddr;
1408 } else {
1409 daddr = NULL;
1410 saddr = NULL;
1411 }
1412 dst_confirm_neigh(dst, daddr);
Martin KaFai Lau45e4fd22015-05-22 20:56:00 -07001413 mtu = max_t(u32, mtu, IPV6_MIN_MTU);
1414 if (mtu >= dst_mtu(dst))
1415 return;
David S. Miller81aded22012-06-15 14:54:11 -07001416
Martin KaFai Lau0d3f6d22015-11-11 11:51:06 -08001417 if (!rt6_cache_allowed_for_pmtu(rt6)) {
Martin KaFai Lau45e4fd22015-05-22 20:56:00 -07001418 rt6_do_update_pmtu(rt6, mtu);
Julian Anastasov0dec8792017-02-06 23:14:16 +02001419 } else if (daddr) {
Martin KaFai Lau45e4fd22015-05-22 20:56:00 -07001420 struct rt6_info *nrt6;
Hagen Paul Pfeifer9d289712015-01-15 22:34:25 +01001421
Martin KaFai Lau45e4fd22015-05-22 20:56:00 -07001422 nrt6 = ip6_rt_cache_alloc(rt6, daddr, saddr);
1423 if (nrt6) {
1424 rt6_do_update_pmtu(nrt6, mtu);
1425
1426 /* ip6_ins_rt(nrt6) will bump the
1427 * rt6->rt6i_node->fn_sernum
1428 * which will fail the next rt6_check() and
1429 * invalidate the sk->sk_dst_cache.
1430 */
1431 ip6_ins_rt(nrt6);
Wei Wang1cfb71e2017-06-17 10:42:33 -07001432 /* Release the reference taken in
1433 * ip6_rt_cache_alloc()
1434 */
1435 dst_release(&nrt6->dst);
Martin KaFai Lau45e4fd22015-05-22 20:56:00 -07001436 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437 }
1438}
1439
Martin KaFai Lau45e4fd22015-05-22 20:56:00 -07001440static void ip6_rt_update_pmtu(struct dst_entry *dst, struct sock *sk,
1441 struct sk_buff *skb, u32 mtu)
1442{
1443 __ip6_rt_update_pmtu(dst, sk, skb ? ipv6_hdr(skb) : NULL, mtu);
1444}
1445
David S. Miller42ae66c2012-06-15 20:01:57 -07001446void ip6_update_pmtu(struct sk_buff *skb, struct net *net, __be32 mtu,
Lorenzo Colittie2d118a2016-11-04 02:23:43 +09001447 int oif, u32 mark, kuid_t uid)
David S. Miller81aded22012-06-15 14:54:11 -07001448{
1449 const struct ipv6hdr *iph = (struct ipv6hdr *) skb->data;
1450 struct dst_entry *dst;
1451 struct flowi6 fl6;
1452
1453 memset(&fl6, 0, sizeof(fl6));
1454 fl6.flowi6_oif = oif;
Lorenzo Colitti1b3c61d2014-05-13 10:17:34 -07001455 fl6.flowi6_mark = mark ? mark : IP6_REPLY_MARK(net, skb->mark);
David S. Miller81aded22012-06-15 14:54:11 -07001456 fl6.daddr = iph->daddr;
1457 fl6.saddr = iph->saddr;
YOSHIFUJI Hideaki / 吉藤英明6502ca52013-01-13 05:01:51 +00001458 fl6.flowlabel = ip6_flowinfo(iph);
Lorenzo Colittie2d118a2016-11-04 02:23:43 +09001459 fl6.flowi6_uid = uid;
David S. Miller81aded22012-06-15 14:54:11 -07001460
1461 dst = ip6_route_output(net, NULL, &fl6);
1462 if (!dst->error)
Martin KaFai Lau45e4fd22015-05-22 20:56:00 -07001463 __ip6_rt_update_pmtu(dst, NULL, iph, ntohl(mtu));
David S. Miller81aded22012-06-15 14:54:11 -07001464 dst_release(dst);
1465}
1466EXPORT_SYMBOL_GPL(ip6_update_pmtu);
1467
1468void ip6_sk_update_pmtu(struct sk_buff *skb, struct sock *sk, __be32 mtu)
1469{
Martin KaFai Lau33c162a2016-04-11 15:29:36 -07001470 struct dst_entry *dst;
1471
David S. Miller81aded22012-06-15 14:54:11 -07001472 ip6_update_pmtu(skb, sock_net(sk), mtu,
Lorenzo Colittie2d118a2016-11-04 02:23:43 +09001473 sk->sk_bound_dev_if, sk->sk_mark, sk->sk_uid);
Martin KaFai Lau33c162a2016-04-11 15:29:36 -07001474
1475 dst = __sk_dst_get(sk);
1476 if (!dst || !dst->obsolete ||
1477 dst->ops->check(dst, inet6_sk(sk)->dst_cookie))
1478 return;
1479
1480 bh_lock_sock(sk);
1481 if (!sock_owned_by_user(sk) && !ipv6_addr_v4mapped(&sk->sk_v6_daddr))
1482 ip6_datagram_dst_update(sk, false);
1483 bh_unlock_sock(sk);
David S. Miller81aded22012-06-15 14:54:11 -07001484}
1485EXPORT_SYMBOL_GPL(ip6_sk_update_pmtu);
1486
Duan Jiongb55b76b2013-09-04 19:44:21 +08001487/* Handle redirects */
1488struct ip6rd_flowi {
1489 struct flowi6 fl6;
1490 struct in6_addr gateway;
1491};
1492
1493static struct rt6_info *__ip6_route_redirect(struct net *net,
1494 struct fib6_table *table,
1495 struct flowi6 *fl6,
1496 int flags)
1497{
1498 struct ip6rd_flowi *rdfl = (struct ip6rd_flowi *)fl6;
1499 struct rt6_info *rt;
1500 struct fib6_node *fn;
1501
1502 /* Get the "current" route for this destination and
Alexander Alemayhu67c408c2017-01-07 23:53:00 +01001503 * check if the redirect has come from appropriate router.
Duan Jiongb55b76b2013-09-04 19:44:21 +08001504 *
1505 * RFC 4861 specifies that redirects should only be
1506 * accepted if they come from the nexthop to the target.
1507 * Due to the way the routes are chosen, this notion
1508 * is a bit fuzzy and one might need to check all possible
1509 * routes.
1510 */
1511
1512 read_lock_bh(&table->tb6_lock);
1513 fn = fib6_lookup(&table->tb6_root, &fl6->daddr, &fl6->saddr);
1514restart:
1515 for (rt = fn->leaf; rt; rt = rt->dst.rt6_next) {
1516 if (rt6_check_expired(rt))
1517 continue;
1518 if (rt->dst.error)
1519 break;
1520 if (!(rt->rt6i_flags & RTF_GATEWAY))
1521 continue;
1522 if (fl6->flowi6_oif != rt->dst.dev->ifindex)
1523 continue;
1524 if (!ipv6_addr_equal(&rdfl->gateway, &rt->rt6i_gateway))
1525 continue;
1526 break;
1527 }
1528
1529 if (!rt)
1530 rt = net->ipv6.ip6_null_entry;
1531 else if (rt->dst.error) {
1532 rt = net->ipv6.ip6_null_entry;
Martin KaFai Laub0a1ba52015-01-20 19:16:02 -08001533 goto out;
1534 }
1535
1536 if (rt == net->ipv6.ip6_null_entry) {
Martin KaFai Laua3c00e42014-10-20 13:42:43 -07001537 fn = fib6_backtrack(fn, &fl6->saddr);
1538 if (fn)
1539 goto restart;
Duan Jiongb55b76b2013-09-04 19:44:21 +08001540 }
Martin KaFai Laua3c00e42014-10-20 13:42:43 -07001541
Martin KaFai Laub0a1ba52015-01-20 19:16:02 -08001542out:
Duan Jiongb55b76b2013-09-04 19:44:21 +08001543 dst_hold(&rt->dst);
1544
1545 read_unlock_bh(&table->tb6_lock);
1546
David Ahernb8115802015-11-19 12:24:22 -08001547 trace_fib6_table_lookup(net, rt, table->tb6_id, fl6);
Duan Jiongb55b76b2013-09-04 19:44:21 +08001548 return rt;
1549};
1550
1551static struct dst_entry *ip6_route_redirect(struct net *net,
1552 const struct flowi6 *fl6,
1553 const struct in6_addr *gateway)
1554{
1555 int flags = RT6_LOOKUP_F_HAS_SADDR;
1556 struct ip6rd_flowi rdfl;
1557
1558 rdfl.fl6 = *fl6;
1559 rdfl.gateway = *gateway;
1560
1561 return fib6_rule_lookup(net, &rdfl.fl6,
1562 flags, __ip6_route_redirect);
1563}
1564
Lorenzo Colittie2d118a2016-11-04 02:23:43 +09001565void ip6_redirect(struct sk_buff *skb, struct net *net, int oif, u32 mark,
1566 kuid_t uid)
David S. Miller3a5ad2e2012-07-12 00:08:07 -07001567{
1568 const struct ipv6hdr *iph = (struct ipv6hdr *) skb->data;
1569 struct dst_entry *dst;
1570 struct flowi6 fl6;
1571
1572 memset(&fl6, 0, sizeof(fl6));
Julian Anastasove374c612014-04-28 10:51:56 +03001573 fl6.flowi6_iif = LOOPBACK_IFINDEX;
David S. Miller3a5ad2e2012-07-12 00:08:07 -07001574 fl6.flowi6_oif = oif;
1575 fl6.flowi6_mark = mark;
David S. Miller3a5ad2e2012-07-12 00:08:07 -07001576 fl6.daddr = iph->daddr;
1577 fl6.saddr = iph->saddr;
YOSHIFUJI Hideaki / 吉藤英明6502ca52013-01-13 05:01:51 +00001578 fl6.flowlabel = ip6_flowinfo(iph);
Lorenzo Colittie2d118a2016-11-04 02:23:43 +09001579 fl6.flowi6_uid = uid;
David S. Miller3a5ad2e2012-07-12 00:08:07 -07001580
Duan Jiongb55b76b2013-09-04 19:44:21 +08001581 dst = ip6_route_redirect(net, &fl6, &ipv6_hdr(skb)->saddr);
1582 rt6_do_redirect(dst, NULL, skb);
David S. Miller3a5ad2e2012-07-12 00:08:07 -07001583 dst_release(dst);
1584}
1585EXPORT_SYMBOL_GPL(ip6_redirect);
1586
Duan Jiongc92a59e2013-08-22 12:07:35 +08001587void ip6_redirect_no_header(struct sk_buff *skb, struct net *net, int oif,
1588 u32 mark)
1589{
1590 const struct ipv6hdr *iph = ipv6_hdr(skb);
1591 const struct rd_msg *msg = (struct rd_msg *)icmp6_hdr(skb);
1592 struct dst_entry *dst;
1593 struct flowi6 fl6;
1594
1595 memset(&fl6, 0, sizeof(fl6));
Julian Anastasove374c612014-04-28 10:51:56 +03001596 fl6.flowi6_iif = LOOPBACK_IFINDEX;
Duan Jiongc92a59e2013-08-22 12:07:35 +08001597 fl6.flowi6_oif = oif;
1598 fl6.flowi6_mark = mark;
Duan Jiongc92a59e2013-08-22 12:07:35 +08001599 fl6.daddr = msg->dest;
1600 fl6.saddr = iph->daddr;
Lorenzo Colittie2d118a2016-11-04 02:23:43 +09001601 fl6.flowi6_uid = sock_net_uid(net, NULL);
Duan Jiongc92a59e2013-08-22 12:07:35 +08001602
Duan Jiongb55b76b2013-09-04 19:44:21 +08001603 dst = ip6_route_redirect(net, &fl6, &iph->saddr);
1604 rt6_do_redirect(dst, NULL, skb);
Duan Jiongc92a59e2013-08-22 12:07:35 +08001605 dst_release(dst);
1606}
1607
David S. Miller3a5ad2e2012-07-12 00:08:07 -07001608void ip6_sk_redirect(struct sk_buff *skb, struct sock *sk)
1609{
Lorenzo Colittie2d118a2016-11-04 02:23:43 +09001610 ip6_redirect(skb, sock_net(sk), sk->sk_bound_dev_if, sk->sk_mark,
1611 sk->sk_uid);
David S. Miller3a5ad2e2012-07-12 00:08:07 -07001612}
1613EXPORT_SYMBOL_GPL(ip6_sk_redirect);
1614
David S. Miller0dbaee32010-12-13 12:52:14 -08001615static unsigned int ip6_default_advmss(const struct dst_entry *dst)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616{
David S. Miller0dbaee32010-12-13 12:52:14 -08001617 struct net_device *dev = dst->dev;
1618 unsigned int mtu = dst_mtu(dst);
1619 struct net *net = dev_net(dev);
1620
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621 mtu -= sizeof(struct ipv6hdr) + sizeof(struct tcphdr);
1622
Daniel Lezcano55786892008-03-04 13:47:47 -08001623 if (mtu < net->ipv6.sysctl.ip6_rt_min_advmss)
1624 mtu = net->ipv6.sysctl.ip6_rt_min_advmss;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625
1626 /*
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001627 * Maximal non-jumbo IPv6 payload is IPV6_MAXPLEN and
1628 * corresponding MSS is IPV6_MAXPLEN - tcp_header_size.
1629 * IPV6_MAXPLEN is also valid and means: "any MSS,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630 * rely only on pmtu discovery"
1631 */
1632 if (mtu > IPV6_MAXPLEN - sizeof(struct tcphdr))
1633 mtu = IPV6_MAXPLEN;
1634 return mtu;
1635}
1636
Steffen Klassertebb762f2011-11-23 02:12:51 +00001637static unsigned int ip6_mtu(const struct dst_entry *dst)
David S. Millerd33e4552010-12-14 13:01:14 -08001638{
Martin KaFai Lau4b32b5a2015-04-28 13:03:06 -07001639 const struct rt6_info *rt = (const struct rt6_info *)dst;
1640 unsigned int mtu = rt->rt6i_pmtu;
David S. Millerd33e4552010-12-14 13:01:14 -08001641 struct inet6_dev *idev;
Steffen Klassert618f9bc2011-11-23 02:13:31 +00001642
1643 if (mtu)
Eric Dumazet30f78d82014-04-10 21:23:36 -07001644 goto out;
Steffen Klassert618f9bc2011-11-23 02:13:31 +00001645
Martin KaFai Lau4b32b5a2015-04-28 13:03:06 -07001646 mtu = dst_metric_raw(dst, RTAX_MTU);
1647 if (mtu)
1648 goto out;
1649
Steffen Klassert618f9bc2011-11-23 02:13:31 +00001650 mtu = IPV6_MIN_MTU;
David S. Millerd33e4552010-12-14 13:01:14 -08001651
1652 rcu_read_lock();
1653 idev = __in6_dev_get(dst->dev);
1654 if (idev)
1655 mtu = idev->cnf.mtu6;
1656 rcu_read_unlock();
1657
Eric Dumazet30f78d82014-04-10 21:23:36 -07001658out:
Roopa Prabhu14972cb2016-08-24 20:10:43 -07001659 mtu = min_t(unsigned int, mtu, IP6_MAX_MTU);
1660
1661 return mtu - lwtunnel_headroom(dst->lwtstate, mtu);
David S. Millerd33e4552010-12-14 13:01:14 -08001662}
1663
YOSHIFUJI Hideaki3b009442007-12-06 16:11:48 -08001664struct dst_entry *icmp6_dst_alloc(struct net_device *dev,
David S. Miller87a11572011-12-06 17:04:13 -05001665 struct flowi6 *fl6)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666{
David S. Miller87a11572011-12-06 17:04:13 -05001667 struct dst_entry *dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668 struct rt6_info *rt;
1669 struct inet6_dev *idev = in6_dev_get(dev);
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001670 struct net *net = dev_net(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001671
David S. Miller38308472011-12-03 18:02:47 -05001672 if (unlikely(!idev))
Eric Dumazet122bdf62012-03-14 21:13:11 +00001673 return ERR_PTR(-ENODEV);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674
Martin KaFai Lauad706862015-08-14 11:05:52 -07001675 rt = ip6_dst_alloc(net, dev, 0);
David S. Miller38308472011-12-03 18:02:47 -05001676 if (unlikely(!rt)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677 in6_dev_put(idev);
David S. Miller87a11572011-12-06 17:04:13 -05001678 dst = ERR_PTR(-ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679 goto out;
1680 }
1681
Yan, Zheng8e2ec632011-09-05 21:34:30 +00001682 rt->dst.flags |= DST_HOST;
1683 rt->dst.output = ip6_output;
Julian Anastasov550bab42013-10-20 15:43:04 +03001684 rt->rt6i_gateway = fl6->daddr;
David S. Miller87a11572011-12-06 17:04:13 -05001685 rt->rt6i_dst.addr = fl6->daddr;
Yan, Zheng8e2ec632011-09-05 21:34:30 +00001686 rt->rt6i_dst.plen = 128;
1687 rt->rt6i_idev = idev;
Li RongQing14edd872012-10-24 14:01:18 +08001688 dst_metric_set(&rt->dst, RTAX_HOPLIMIT, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689
Wei Wang587fea72017-06-17 10:42:36 -07001690 /* Add this dst into uncached_list so that rt6_ifdown() can
1691 * do proper release of the net_device
1692 */
1693 rt6_uncached_list_add(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694
David S. Miller87a11572011-12-06 17:04:13 -05001695 dst = xfrm_lookup(net, &rt->dst, flowi6_to_flowi(fl6), NULL, 0);
1696
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697out:
David S. Miller87a11572011-12-06 17:04:13 -05001698 return dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699}
1700
Daniel Lezcano569d3642008-01-18 03:56:57 -08001701static int ip6_dst_gc(struct dst_ops *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702{
Alexey Dobriyan86393e52009-08-29 01:34:49 +00001703 struct net *net = container_of(ops, struct net, ipv6.ip6_dst_ops);
Daniel Lezcano7019b782008-03-04 13:50:14 -08001704 int rt_min_interval = net->ipv6.sysctl.ip6_rt_gc_min_interval;
1705 int rt_max_size = net->ipv6.sysctl.ip6_rt_max_size;
1706 int rt_elasticity = net->ipv6.sysctl.ip6_rt_gc_elasticity;
1707 int rt_gc_timeout = net->ipv6.sysctl.ip6_rt_gc_timeout;
1708 unsigned long rt_last_gc = net->ipv6.ip6_rt_last_gc;
Eric Dumazetfc66f952010-10-08 06:37:34 +00001709 int entries;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001710
Eric Dumazetfc66f952010-10-08 06:37:34 +00001711 entries = dst_entries_get_fast(ops);
Michal Kubeček49a18d82013-08-01 10:04:24 +02001712 if (time_after(rt_last_gc + rt_min_interval, jiffies) &&
Eric Dumazetfc66f952010-10-08 06:37:34 +00001713 entries <= rt_max_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714 goto out;
1715
Benjamin Thery6891a342008-03-04 13:49:47 -08001716 net->ipv6.ip6_rt_gc_expire++;
Li RongQing14956642014-05-19 17:30:28 +08001717 fib6_run_gc(net->ipv6.ip6_rt_gc_expire, net, true);
Eric Dumazetfc66f952010-10-08 06:37:34 +00001718 entries = dst_entries_get_slow(ops);
1719 if (entries < ops->gc_thresh)
Daniel Lezcano7019b782008-03-04 13:50:14 -08001720 net->ipv6.ip6_rt_gc_expire = rt_gc_timeout>>1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721out:
Daniel Lezcano7019b782008-03-04 13:50:14 -08001722 net->ipv6.ip6_rt_gc_expire -= net->ipv6.ip6_rt_gc_expire>>rt_elasticity;
Eric Dumazetfc66f952010-10-08 06:37:34 +00001723 return entries > rt_max_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001724}
1725
Florian Westphale715b6d2015-01-05 23:57:44 +01001726static int ip6_convert_metrics(struct mx6_config *mxc,
1727 const struct fib6_config *cfg)
1728{
Daniel Borkmannc3a8d942015-08-31 15:58:47 +02001729 bool ecn_ca = false;
Florian Westphale715b6d2015-01-05 23:57:44 +01001730 struct nlattr *nla;
1731 int remaining;
1732 u32 *mp;
1733
Ian Morris63159f22015-03-29 14:00:04 +01001734 if (!cfg->fc_mx)
Florian Westphale715b6d2015-01-05 23:57:44 +01001735 return 0;
1736
1737 mp = kzalloc(sizeof(u32) * RTAX_MAX, GFP_KERNEL);
1738 if (unlikely(!mp))
1739 return -ENOMEM;
1740
1741 nla_for_each_attr(nla, cfg->fc_mx, cfg->fc_mx_len, remaining) {
1742 int type = nla_type(nla);
Daniel Borkmann1bb14802015-08-31 15:58:45 +02001743 u32 val;
Florian Westphale715b6d2015-01-05 23:57:44 +01001744
Daniel Borkmann1bb14802015-08-31 15:58:45 +02001745 if (!type)
1746 continue;
1747 if (unlikely(type > RTAX_MAX))
1748 goto err;
Daniel Borkmannea697632015-01-05 23:57:47 +01001749
Daniel Borkmann1bb14802015-08-31 15:58:45 +02001750 if (type == RTAX_CC_ALGO) {
1751 char tmp[TCP_CA_NAME_MAX];
1752
1753 nla_strlcpy(tmp, nla, sizeof(tmp));
Daniel Borkmannc3a8d942015-08-31 15:58:47 +02001754 val = tcp_ca_get_key_by_name(tmp, &ecn_ca);
Daniel Borkmann1bb14802015-08-31 15:58:45 +02001755 if (val == TCP_CA_UNSPEC)
Florian Westphale715b6d2015-01-05 23:57:44 +01001756 goto err;
Daniel Borkmann1bb14802015-08-31 15:58:45 +02001757 } else {
1758 val = nla_get_u32(nla);
Florian Westphale715b6d2015-01-05 23:57:44 +01001759 }
Paolo Abeni626abd52016-05-13 18:33:41 +02001760 if (type == RTAX_HOPLIMIT && val > 255)
1761 val = 255;
Daniel Borkmannb8d3e412015-08-31 15:58:46 +02001762 if (type == RTAX_FEATURES && (val & ~RTAX_FEATURE_MASK))
1763 goto err;
Daniel Borkmann1bb14802015-08-31 15:58:45 +02001764
1765 mp[type - 1] = val;
1766 __set_bit(type - 1, mxc->mx_valid);
Florian Westphale715b6d2015-01-05 23:57:44 +01001767 }
1768
Daniel Borkmannc3a8d942015-08-31 15:58:47 +02001769 if (ecn_ca) {
1770 __set_bit(RTAX_FEATURES - 1, mxc->mx_valid);
1771 mp[RTAX_FEATURES - 1] |= DST_FEATURE_ECN_CA;
1772 }
Florian Westphale715b6d2015-01-05 23:57:44 +01001773
Daniel Borkmannc3a8d942015-08-31 15:58:47 +02001774 mxc->mx = mp;
Florian Westphale715b6d2015-01-05 23:57:44 +01001775 return 0;
1776 err:
1777 kfree(mp);
1778 return -EINVAL;
1779}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780
David Ahern8c145862016-04-24 21:26:04 -07001781static struct rt6_info *ip6_nh_lookup_table(struct net *net,
1782 struct fib6_config *cfg,
1783 const struct in6_addr *gw_addr)
1784{
1785 struct flowi6 fl6 = {
1786 .flowi6_oif = cfg->fc_ifindex,
1787 .daddr = *gw_addr,
1788 .saddr = cfg->fc_prefsrc,
1789 };
1790 struct fib6_table *table;
1791 struct rt6_info *rt;
David Ahernd5d32e42016-10-24 12:27:23 -07001792 int flags = RT6_LOOKUP_F_IFACE | RT6_LOOKUP_F_IGNORE_LINKSTATE;
David Ahern8c145862016-04-24 21:26:04 -07001793
1794 table = fib6_get_table(net, cfg->fc_table);
1795 if (!table)
1796 return NULL;
1797
1798 if (!ipv6_addr_any(&cfg->fc_prefsrc))
1799 flags |= RT6_LOOKUP_F_HAS_SADDR;
1800
1801 rt = ip6_pol_route(net, table, cfg->fc_ifindex, &fl6, flags);
1802
1803 /* if table lookup failed, fall back to full lookup */
1804 if (rt == net->ipv6.ip6_null_entry) {
1805 ip6_rt_put(rt);
1806 rt = NULL;
1807 }
1808
1809 return rt;
1810}
1811
David Ahern333c4302017-05-21 10:12:04 -06001812static struct rt6_info *ip6_route_info_create(struct fib6_config *cfg,
1813 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814{
Daniel Lezcano55786892008-03-04 13:47:47 -08001815 struct net *net = cfg->fc_nlinfo.nl_net;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001816 struct rt6_info *rt = NULL;
1817 struct net_device *dev = NULL;
1818 struct inet6_dev *idev = NULL;
Thomas Grafc71099a2006-08-04 23:20:06 -07001819 struct fib6_table *table;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001820 int addr_type;
Roopa Prabhu8c5b83f2015-10-10 08:26:36 -07001821 int err = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822
David Ahern557c44b2017-04-19 14:19:43 -07001823 /* RTF_PCPU is an internal flag; can not be set by userspace */
David Ahernd5d531c2017-05-21 10:12:05 -06001824 if (cfg->fc_flags & RTF_PCPU) {
1825 NL_SET_ERR_MSG(extack, "Userspace can not set RTF_PCPU");
David Ahern557c44b2017-04-19 14:19:43 -07001826 goto out;
David Ahernd5d531c2017-05-21 10:12:05 -06001827 }
David Ahern557c44b2017-04-19 14:19:43 -07001828
David Ahernd5d531c2017-05-21 10:12:05 -06001829 if (cfg->fc_dst_len > 128) {
1830 NL_SET_ERR_MSG(extack, "Invalid prefix length");
Roopa Prabhu8c5b83f2015-10-10 08:26:36 -07001831 goto out;
David Ahernd5d531c2017-05-21 10:12:05 -06001832 }
1833 if (cfg->fc_src_len > 128) {
1834 NL_SET_ERR_MSG(extack, "Invalid source address length");
1835 goto out;
1836 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837#ifndef CONFIG_IPV6_SUBTREES
David Ahernd5d531c2017-05-21 10:12:05 -06001838 if (cfg->fc_src_len) {
1839 NL_SET_ERR_MSG(extack,
1840 "Specifying source address requires IPV6_SUBTREES to be enabled");
Roopa Prabhu8c5b83f2015-10-10 08:26:36 -07001841 goto out;
David Ahernd5d531c2017-05-21 10:12:05 -06001842 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843#endif
Thomas Graf86872cb2006-08-22 00:01:08 -07001844 if (cfg->fc_ifindex) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001845 err = -ENODEV;
Daniel Lezcano55786892008-03-04 13:47:47 -08001846 dev = dev_get_by_index(net, cfg->fc_ifindex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847 if (!dev)
1848 goto out;
1849 idev = in6_dev_get(dev);
1850 if (!idev)
1851 goto out;
1852 }
1853
Thomas Graf86872cb2006-08-22 00:01:08 -07001854 if (cfg->fc_metric == 0)
1855 cfg->fc_metric = IP6_RT_PRIO_USER;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001856
Matti Vaittinend71314b2011-11-14 00:14:49 +00001857 err = -ENOBUFS;
David S. Miller38308472011-12-03 18:02:47 -05001858 if (cfg->fc_nlinfo.nlh &&
1859 !(cfg->fc_nlinfo.nlh->nlmsg_flags & NLM_F_CREATE)) {
Matti Vaittinend71314b2011-11-14 00:14:49 +00001860 table = fib6_get_table(net, cfg->fc_table);
David S. Miller38308472011-12-03 18:02:47 -05001861 if (!table) {
Joe Perchesf3213832012-05-15 14:11:53 +00001862 pr_warn("NLM_F_CREATE should be specified when creating new route\n");
Matti Vaittinend71314b2011-11-14 00:14:49 +00001863 table = fib6_new_table(net, cfg->fc_table);
1864 }
1865 } else {
1866 table = fib6_new_table(net, cfg->fc_table);
1867 }
David S. Miller38308472011-12-03 18:02:47 -05001868
1869 if (!table)
Thomas Grafc71099a2006-08-04 23:20:06 -07001870 goto out;
Thomas Grafc71099a2006-08-04 23:20:06 -07001871
Martin KaFai Lauad706862015-08-14 11:05:52 -07001872 rt = ip6_dst_alloc(net, NULL,
1873 (cfg->fc_flags & RTF_ADDRCONF) ? 0 : DST_NOCOUNT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874
David S. Miller38308472011-12-03 18:02:47 -05001875 if (!rt) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876 err = -ENOMEM;
1877 goto out;
1878 }
1879
Gao feng1716a962012-04-06 00:13:10 +00001880 if (cfg->fc_flags & RTF_EXPIRES)
1881 rt6_set_expires(rt, jiffies +
1882 clock_t_to_jiffies(cfg->fc_expires));
1883 else
1884 rt6_clean_expires(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885
Thomas Graf86872cb2006-08-22 00:01:08 -07001886 if (cfg->fc_protocol == RTPROT_UNSPEC)
1887 cfg->fc_protocol = RTPROT_BOOT;
1888 rt->rt6i_protocol = cfg->fc_protocol;
1889
1890 addr_type = ipv6_addr_type(&cfg->fc_dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001891
1892 if (addr_type & IPV6_ADDR_MULTICAST)
Changli Gaod8d1f302010-06-10 23:31:35 -07001893 rt->dst.input = ip6_mc_input;
Maciej Żenczykowskiab79ad12010-09-27 00:07:02 +00001894 else if (cfg->fc_flags & RTF_LOCAL)
1895 rt->dst.input = ip6_input;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001896 else
Changli Gaod8d1f302010-06-10 23:31:35 -07001897 rt->dst.input = ip6_forward;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001898
Changli Gaod8d1f302010-06-10 23:31:35 -07001899 rt->dst.output = ip6_output;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900
Roopa Prabhu19e42e42015-07-21 10:43:48 +02001901 if (cfg->fc_encap) {
1902 struct lwtunnel_state *lwtstate;
1903
David Ahern30357d72017-01-30 12:07:37 -08001904 err = lwtunnel_build_state(cfg->fc_encap_type,
Tom Herbert127eb7c2015-08-24 09:45:41 -07001905 cfg->fc_encap, AF_INET6, cfg,
David Ahern9ae28722017-05-27 16:19:28 -06001906 &lwtstate, extack);
Roopa Prabhu19e42e42015-07-21 10:43:48 +02001907 if (err)
1908 goto out;
Jiri Benc61adedf2015-08-20 13:56:25 +02001909 rt->dst.lwtstate = lwtstate_get(lwtstate);
1910 if (lwtunnel_output_redirect(rt->dst.lwtstate)) {
1911 rt->dst.lwtstate->orig_output = rt->dst.output;
1912 rt->dst.output = lwtunnel_output;
Tom Herbert25368622015-08-17 13:42:24 -07001913 }
Jiri Benc61adedf2015-08-20 13:56:25 +02001914 if (lwtunnel_input_redirect(rt->dst.lwtstate)) {
1915 rt->dst.lwtstate->orig_input = rt->dst.input;
1916 rt->dst.input = lwtunnel_input;
Tom Herbert25368622015-08-17 13:42:24 -07001917 }
Roopa Prabhu19e42e42015-07-21 10:43:48 +02001918 }
1919
Thomas Graf86872cb2006-08-22 00:01:08 -07001920 ipv6_addr_prefix(&rt->rt6i_dst.addr, &cfg->fc_dst, cfg->fc_dst_len);
1921 rt->rt6i_dst.plen = cfg->fc_dst_len;
Martin KaFai Lauafc4eef2015-04-28 13:03:07 -07001922 if (rt->rt6i_dst.plen == 128)
Michal Kubečeke5fd3872014-03-27 13:04:08 +01001923 rt->dst.flags |= DST_HOST;
Michal Kubečeke5fd3872014-03-27 13:04:08 +01001924
Linus Torvalds1da177e2005-04-16 15:20:36 -07001925#ifdef CONFIG_IPV6_SUBTREES
Thomas Graf86872cb2006-08-22 00:01:08 -07001926 ipv6_addr_prefix(&rt->rt6i_src.addr, &cfg->fc_src, cfg->fc_src_len);
1927 rt->rt6i_src.plen = cfg->fc_src_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928#endif
1929
Thomas Graf86872cb2006-08-22 00:01:08 -07001930 rt->rt6i_metric = cfg->fc_metric;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931
1932 /* We cannot add true routes via loopback here,
1933 they would result in kernel looping; promote them to reject routes
1934 */
Thomas Graf86872cb2006-08-22 00:01:08 -07001935 if ((cfg->fc_flags & RTF_REJECT) ||
David S. Miller38308472011-12-03 18:02:47 -05001936 (dev && (dev->flags & IFF_LOOPBACK) &&
1937 !(addr_type & IPV6_ADDR_LOOPBACK) &&
1938 !(cfg->fc_flags & RTF_LOCAL))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001939 /* hold loopback dev/idev if we haven't done so. */
Daniel Lezcano55786892008-03-04 13:47:47 -08001940 if (dev != net->loopback_dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001941 if (dev) {
1942 dev_put(dev);
1943 in6_dev_put(idev);
1944 }
Daniel Lezcano55786892008-03-04 13:47:47 -08001945 dev = net->loopback_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946 dev_hold(dev);
1947 idev = in6_dev_get(dev);
1948 if (!idev) {
1949 err = -ENODEV;
1950 goto out;
1951 }
1952 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953 rt->rt6i_flags = RTF_REJECT|RTF_NONEXTHOP;
Nicolas Dichtelef2c7d72012-09-05 02:12:42 +00001954 switch (cfg->fc_type) {
1955 case RTN_BLACKHOLE:
1956 rt->dst.error = -EINVAL;
Eric W. Biedermanede20592015-10-07 16:48:47 -05001957 rt->dst.output = dst_discard_out;
Kamala R7150aed2013-12-02 19:55:21 +05301958 rt->dst.input = dst_discard;
Nicolas Dichtelef2c7d72012-09-05 02:12:42 +00001959 break;
1960 case RTN_PROHIBIT:
1961 rt->dst.error = -EACCES;
Kamala R7150aed2013-12-02 19:55:21 +05301962 rt->dst.output = ip6_pkt_prohibit_out;
1963 rt->dst.input = ip6_pkt_prohibit;
Nicolas Dichtelef2c7d72012-09-05 02:12:42 +00001964 break;
Nicolas Dichtelb4949ab2012-09-06 05:53:35 +00001965 case RTN_THROW:
Nikola Forró0315e382015-09-17 16:01:32 +02001966 case RTN_UNREACHABLE:
Nicolas Dichtelef2c7d72012-09-05 02:12:42 +00001967 default:
Kamala R7150aed2013-12-02 19:55:21 +05301968 rt->dst.error = (cfg->fc_type == RTN_THROW) ? -EAGAIN
Nikola Forró0315e382015-09-17 16:01:32 +02001969 : (cfg->fc_type == RTN_UNREACHABLE)
1970 ? -EHOSTUNREACH : -ENETUNREACH;
Kamala R7150aed2013-12-02 19:55:21 +05301971 rt->dst.output = ip6_pkt_discard_out;
1972 rt->dst.input = ip6_pkt_discard;
Nicolas Dichtelef2c7d72012-09-05 02:12:42 +00001973 break;
1974 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001975 goto install_route;
1976 }
1977
Thomas Graf86872cb2006-08-22 00:01:08 -07001978 if (cfg->fc_flags & RTF_GATEWAY) {
Eric Dumazetb71d1d42011-04-22 04:53:02 +00001979 const struct in6_addr *gw_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001980 int gwa_type;
1981
Thomas Graf86872cb2006-08-22 00:01:08 -07001982 gw_addr = &cfg->fc_gateway;
Florian Westphal330567b2015-08-07 10:54:28 +02001983 gwa_type = ipv6_addr_type(gw_addr);
Florian Westphal48ed7b22015-05-21 00:25:41 +02001984
1985 /* if gw_addr is local we will fail to detect this in case
1986 * address is still TENTATIVE (DAD in progress). rt6_lookup()
1987 * will return already-added prefix route via interface that
1988 * prefix route was assigned to, which might be non-loopback.
1989 */
1990 err = -EINVAL;
Florian Westphal330567b2015-08-07 10:54:28 +02001991 if (ipv6_chk_addr_and_flags(net, gw_addr,
1992 gwa_type & IPV6_ADDR_LINKLOCAL ?
David Ahernd5d531c2017-05-21 10:12:05 -06001993 dev : NULL, 0, 0)) {
1994 NL_SET_ERR_MSG(extack, "Invalid gateway address");
Florian Westphal48ed7b22015-05-21 00:25:41 +02001995 goto out;
David Ahernd5d531c2017-05-21 10:12:05 -06001996 }
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001997 rt->rt6i_gateway = *gw_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001998
1999 if (gwa_type != (IPV6_ADDR_LINKLOCAL|IPV6_ADDR_UNICAST)) {
David Ahern8c145862016-04-24 21:26:04 -07002000 struct rt6_info *grt = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002001
2002 /* IPv6 strictly inhibits using not link-local
2003 addresses as nexthop address.
2004 Otherwise, router will not able to send redirects.
2005 It is very good, but in some (rare!) circumstances
2006 (SIT, PtP, NBMA NOARP links) it is handy to allow
2007 some exceptions. --ANK
Erik Nordmark96d58222016-12-03 20:57:09 -08002008 We allow IPv4-mapped nexthops to support RFC4798-type
2009 addressing
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010 */
Erik Nordmark96d58222016-12-03 20:57:09 -08002011 if (!(gwa_type & (IPV6_ADDR_UNICAST |
David Ahernd5d531c2017-05-21 10:12:05 -06002012 IPV6_ADDR_MAPPED))) {
2013 NL_SET_ERR_MSG(extack,
2014 "Invalid gateway address");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002015 goto out;
David Ahernd5d531c2017-05-21 10:12:05 -06002016 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017
Vincent Bernata435a072016-09-18 17:46:07 +02002018 if (cfg->fc_table) {
David Ahern8c145862016-04-24 21:26:04 -07002019 grt = ip6_nh_lookup_table(net, cfg, gw_addr);
2020
Vincent Bernata435a072016-09-18 17:46:07 +02002021 if (grt) {
2022 if (grt->rt6i_flags & RTF_GATEWAY ||
2023 (dev && dev != grt->dst.dev)) {
2024 ip6_rt_put(grt);
2025 grt = NULL;
2026 }
2027 }
2028 }
2029
David Ahern8c145862016-04-24 21:26:04 -07002030 if (!grt)
2031 grt = rt6_lookup(net, gw_addr, NULL,
2032 cfg->fc_ifindex, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002033
2034 err = -EHOSTUNREACH;
David S. Miller38308472011-12-03 18:02:47 -05002035 if (!grt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002036 goto out;
2037 if (dev) {
David S. Millerd1918542011-12-28 20:19:20 -05002038 if (dev != grt->dst.dev) {
Amerigo Wang94e187c2012-10-29 00:13:19 +00002039 ip6_rt_put(grt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002040 goto out;
2041 }
2042 } else {
David S. Millerd1918542011-12-28 20:19:20 -05002043 dev = grt->dst.dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044 idev = grt->rt6i_idev;
2045 dev_hold(dev);
2046 in6_dev_hold(grt->rt6i_idev);
2047 }
David S. Miller38308472011-12-03 18:02:47 -05002048 if (!(grt->rt6i_flags & RTF_GATEWAY))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002049 err = 0;
Amerigo Wang94e187c2012-10-29 00:13:19 +00002050 ip6_rt_put(grt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002051
2052 if (err)
2053 goto out;
2054 }
2055 err = -EINVAL;
David Ahernd5d531c2017-05-21 10:12:05 -06002056 if (!dev) {
2057 NL_SET_ERR_MSG(extack, "Egress device not specified");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058 goto out;
David Ahernd5d531c2017-05-21 10:12:05 -06002059 } else if (dev->flags & IFF_LOOPBACK) {
2060 NL_SET_ERR_MSG(extack,
2061 "Egress device can not be loopback device for this route");
2062 goto out;
2063 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064 }
2065
2066 err = -ENODEV;
David S. Miller38308472011-12-03 18:02:47 -05002067 if (!dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068 goto out;
2069
Daniel Walterc3968a82011-04-13 21:10:57 +00002070 if (!ipv6_addr_any(&cfg->fc_prefsrc)) {
2071 if (!ipv6_chk_addr(net, &cfg->fc_prefsrc, dev, 0)) {
David Ahernd5d531c2017-05-21 10:12:05 -06002072 NL_SET_ERR_MSG(extack, "Invalid source address");
Daniel Walterc3968a82011-04-13 21:10:57 +00002073 err = -EINVAL;
2074 goto out;
2075 }
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00002076 rt->rt6i_prefsrc.addr = cfg->fc_prefsrc;
Daniel Walterc3968a82011-04-13 21:10:57 +00002077 rt->rt6i_prefsrc.plen = 128;
2078 } else
2079 rt->rt6i_prefsrc.plen = 0;
2080
Thomas Graf86872cb2006-08-22 00:01:08 -07002081 rt->rt6i_flags = cfg->fc_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082
2083install_route:
Changli Gaod8d1f302010-06-10 23:31:35 -07002084 rt->dst.dev = dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002085 rt->rt6i_idev = idev;
Thomas Grafc71099a2006-08-04 23:20:06 -07002086 rt->rt6i_table = table;
Daniel Lezcano63152fc2008-03-03 23:31:11 -08002087
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09002088 cfg->fc_nlinfo.nl_net = dev_net(dev);
Daniel Lezcano63152fc2008-03-03 23:31:11 -08002089
Roopa Prabhu8c5b83f2015-10-10 08:26:36 -07002090 return rt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002091out:
2092 if (dev)
2093 dev_put(dev);
2094 if (idev)
2095 in6_dev_put(idev);
Wei Wang587fea72017-06-17 10:42:36 -07002096 if (rt)
2097 dst_release_immediate(&rt->dst);
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07002098
Roopa Prabhu8c5b83f2015-10-10 08:26:36 -07002099 return ERR_PTR(err);
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07002100}
2101
David Ahern333c4302017-05-21 10:12:04 -06002102int ip6_route_add(struct fib6_config *cfg,
2103 struct netlink_ext_ack *extack)
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07002104{
2105 struct mx6_config mxc = { .mx = NULL, };
Roopa Prabhu8c5b83f2015-10-10 08:26:36 -07002106 struct rt6_info *rt;
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07002107 int err;
2108
David Ahern333c4302017-05-21 10:12:04 -06002109 rt = ip6_route_info_create(cfg, extack);
Roopa Prabhu8c5b83f2015-10-10 08:26:36 -07002110 if (IS_ERR(rt)) {
2111 err = PTR_ERR(rt);
2112 rt = NULL;
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07002113 goto out;
Roopa Prabhu8c5b83f2015-10-10 08:26:36 -07002114 }
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07002115
2116 err = ip6_convert_metrics(&mxc, cfg);
2117 if (err)
2118 goto out;
2119
David Ahern333c4302017-05-21 10:12:04 -06002120 err = __ip6_ins_rt(rt, &cfg->fc_nlinfo, &mxc, extack);
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07002121
2122 kfree(mxc.mx);
2123
2124 return err;
2125out:
Wei Wang587fea72017-06-17 10:42:36 -07002126 if (rt)
2127 dst_release_immediate(&rt->dst);
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07002128
Linus Torvalds1da177e2005-04-16 15:20:36 -07002129 return err;
2130}
2131
Thomas Graf86872cb2006-08-22 00:01:08 -07002132static int __ip6_del_rt(struct rt6_info *rt, struct nl_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002133{
2134 int err;
Thomas Grafc71099a2006-08-04 23:20:06 -07002135 struct fib6_table *table;
David S. Millerd1918542011-12-28 20:19:20 -05002136 struct net *net = dev_net(rt->dst.dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002137
Wei Wanga4c2fd72017-06-17 10:42:42 -07002138 if (rt == net->ipv6.ip6_null_entry) {
Gao feng6825a262012-09-19 19:25:34 +00002139 err = -ENOENT;
2140 goto out;
2141 }
Patrick McHardy6c813a72006-08-06 22:22:47 -07002142
Thomas Grafc71099a2006-08-04 23:20:06 -07002143 table = rt->rt6i_table;
2144 write_lock_bh(&table->tb6_lock);
Thomas Graf86872cb2006-08-22 00:01:08 -07002145 err = fib6_del(rt, info);
Thomas Grafc71099a2006-08-04 23:20:06 -07002146 write_unlock_bh(&table->tb6_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002147
Gao feng6825a262012-09-19 19:25:34 +00002148out:
Amerigo Wang94e187c2012-10-29 00:13:19 +00002149 ip6_rt_put(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002150 return err;
2151}
2152
Thomas Grafe0a1ad732006-08-22 00:00:21 -07002153int ip6_del_rt(struct rt6_info *rt)
2154{
Denis V. Lunev4d1169c2008-01-10 03:26:13 -08002155 struct nl_info info = {
David S. Millerd1918542011-12-28 20:19:20 -05002156 .nl_net = dev_net(rt->dst.dev),
Denis V. Lunev4d1169c2008-01-10 03:26:13 -08002157 };
Denis V. Lunev528c4ce2007-12-13 09:45:12 -08002158 return __ip6_del_rt(rt, &info);
Thomas Grafe0a1ad732006-08-22 00:00:21 -07002159}
2160
David Ahern0ae81332017-02-02 12:37:08 -08002161static int __ip6_del_rt_siblings(struct rt6_info *rt, struct fib6_config *cfg)
2162{
2163 struct nl_info *info = &cfg->fc_nlinfo;
WANG Conge3330032017-02-27 16:07:43 -08002164 struct net *net = info->nl_net;
David Ahern16a16cd2017-02-02 12:37:11 -08002165 struct sk_buff *skb = NULL;
David Ahern0ae81332017-02-02 12:37:08 -08002166 struct fib6_table *table;
WANG Conge3330032017-02-27 16:07:43 -08002167 int err = -ENOENT;
David Ahern0ae81332017-02-02 12:37:08 -08002168
WANG Conge3330032017-02-27 16:07:43 -08002169 if (rt == net->ipv6.ip6_null_entry)
2170 goto out_put;
David Ahern0ae81332017-02-02 12:37:08 -08002171 table = rt->rt6i_table;
2172 write_lock_bh(&table->tb6_lock);
2173
2174 if (rt->rt6i_nsiblings && cfg->fc_delete_all_nh) {
2175 struct rt6_info *sibling, *next_sibling;
2176
David Ahern16a16cd2017-02-02 12:37:11 -08002177 /* prefer to send a single notification with all hops */
2178 skb = nlmsg_new(rt6_nlmsg_size(rt), gfp_any());
2179 if (skb) {
2180 u32 seq = info->nlh ? info->nlh->nlmsg_seq : 0;
2181
WANG Conge3330032017-02-27 16:07:43 -08002182 if (rt6_fill_node(net, skb, rt,
David Ahern16a16cd2017-02-02 12:37:11 -08002183 NULL, NULL, 0, RTM_DELROUTE,
2184 info->portid, seq, 0) < 0) {
2185 kfree_skb(skb);
2186 skb = NULL;
2187 } else
2188 info->skip_notify = 1;
2189 }
2190
David Ahern0ae81332017-02-02 12:37:08 -08002191 list_for_each_entry_safe(sibling, next_sibling,
2192 &rt->rt6i_siblings,
2193 rt6i_siblings) {
2194 err = fib6_del(sibling, info);
2195 if (err)
WANG Conge3330032017-02-27 16:07:43 -08002196 goto out_unlock;
David Ahern0ae81332017-02-02 12:37:08 -08002197 }
2198 }
2199
2200 err = fib6_del(rt, info);
WANG Conge3330032017-02-27 16:07:43 -08002201out_unlock:
David Ahern0ae81332017-02-02 12:37:08 -08002202 write_unlock_bh(&table->tb6_lock);
WANG Conge3330032017-02-27 16:07:43 -08002203out_put:
David Ahern0ae81332017-02-02 12:37:08 -08002204 ip6_rt_put(rt);
David Ahern16a16cd2017-02-02 12:37:11 -08002205
2206 if (skb) {
WANG Conge3330032017-02-27 16:07:43 -08002207 rtnl_notify(skb, net, info->portid, RTNLGRP_IPV6_ROUTE,
David Ahern16a16cd2017-02-02 12:37:11 -08002208 info->nlh, gfp_any());
2209 }
David Ahern0ae81332017-02-02 12:37:08 -08002210 return err;
2211}
2212
David Ahern333c4302017-05-21 10:12:04 -06002213static int ip6_route_del(struct fib6_config *cfg,
2214 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002215{
Thomas Grafc71099a2006-08-04 23:20:06 -07002216 struct fib6_table *table;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002217 struct fib6_node *fn;
2218 struct rt6_info *rt;
2219 int err = -ESRCH;
2220
Daniel Lezcano55786892008-03-04 13:47:47 -08002221 table = fib6_get_table(cfg->fc_nlinfo.nl_net, cfg->fc_table);
David Ahernd5d531c2017-05-21 10:12:05 -06002222 if (!table) {
2223 NL_SET_ERR_MSG(extack, "FIB table does not exist");
Thomas Grafc71099a2006-08-04 23:20:06 -07002224 return err;
David Ahernd5d531c2017-05-21 10:12:05 -06002225 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002226
Thomas Grafc71099a2006-08-04 23:20:06 -07002227 read_lock_bh(&table->tb6_lock);
2228
2229 fn = fib6_locate(&table->tb6_root,
Thomas Graf86872cb2006-08-22 00:01:08 -07002230 &cfg->fc_dst, cfg->fc_dst_len,
2231 &cfg->fc_src, cfg->fc_src_len);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002232
Linus Torvalds1da177e2005-04-16 15:20:36 -07002233 if (fn) {
Changli Gaod8d1f302010-06-10 23:31:35 -07002234 for (rt = fn->leaf; rt; rt = rt->dst.rt6_next) {
Martin KaFai Lau1f56a01f2015-04-28 13:03:03 -07002235 if ((rt->rt6i_flags & RTF_CACHE) &&
2236 !(cfg->fc_flags & RTF_CACHE))
2237 continue;
Thomas Graf86872cb2006-08-22 00:01:08 -07002238 if (cfg->fc_ifindex &&
David S. Millerd1918542011-12-28 20:19:20 -05002239 (!rt->dst.dev ||
2240 rt->dst.dev->ifindex != cfg->fc_ifindex))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002241 continue;
Thomas Graf86872cb2006-08-22 00:01:08 -07002242 if (cfg->fc_flags & RTF_GATEWAY &&
2243 !ipv6_addr_equal(&cfg->fc_gateway, &rt->rt6i_gateway))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002244 continue;
Thomas Graf86872cb2006-08-22 00:01:08 -07002245 if (cfg->fc_metric && cfg->fc_metric != rt->rt6i_metric)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002246 continue;
Mantas Mc2ed1882016-12-16 10:30:59 +02002247 if (cfg->fc_protocol && cfg->fc_protocol != rt->rt6i_protocol)
2248 continue;
Changli Gaod8d1f302010-06-10 23:31:35 -07002249 dst_hold(&rt->dst);
Thomas Grafc71099a2006-08-04 23:20:06 -07002250 read_unlock_bh(&table->tb6_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002251
David Ahern0ae81332017-02-02 12:37:08 -08002252 /* if gateway was specified only delete the one hop */
2253 if (cfg->fc_flags & RTF_GATEWAY)
2254 return __ip6_del_rt(rt, &cfg->fc_nlinfo);
2255
2256 return __ip6_del_rt_siblings(rt, cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002257 }
2258 }
Thomas Grafc71099a2006-08-04 23:20:06 -07002259 read_unlock_bh(&table->tb6_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002260
2261 return err;
2262}
2263
David S. Miller6700c272012-07-17 03:29:28 -07002264static void rt6_do_redirect(struct dst_entry *dst, struct sock *sk, struct sk_buff *skb)
YOSHIFUJI Hideakia6279452006-08-23 17:18:26 -07002265{
YOSHIFUJI Hideakia6279452006-08-23 17:18:26 -07002266 struct netevent_redirect netevent;
David S. Millere8599ff2012-07-11 23:43:53 -07002267 struct rt6_info *rt, *nrt = NULL;
David S. Millere8599ff2012-07-11 23:43:53 -07002268 struct ndisc_options ndopts;
2269 struct inet6_dev *in6_dev;
2270 struct neighbour *neigh;
YOSHIFUJI Hideaki / 吉藤英明71bcdba2013-01-05 16:34:51 +00002271 struct rd_msg *msg;
David S. Miller6e157b62012-07-12 00:05:02 -07002272 int optlen, on_link;
2273 u8 *lladdr;
David S. Millere8599ff2012-07-11 23:43:53 -07002274
Simon Horman29a3cad2013-05-28 20:34:26 +00002275 optlen = skb_tail_pointer(skb) - skb_transport_header(skb);
YOSHIFUJI Hideaki / 吉藤英明71bcdba2013-01-05 16:34:51 +00002276 optlen -= sizeof(*msg);
David S. Millere8599ff2012-07-11 23:43:53 -07002277
2278 if (optlen < 0) {
David S. Miller6e157b62012-07-12 00:05:02 -07002279 net_dbg_ratelimited("rt6_do_redirect: packet too short\n");
David S. Millere8599ff2012-07-11 23:43:53 -07002280 return;
2281 }
2282
YOSHIFUJI Hideaki / 吉藤英明71bcdba2013-01-05 16:34:51 +00002283 msg = (struct rd_msg *)icmp6_hdr(skb);
David S. Millere8599ff2012-07-11 23:43:53 -07002284
YOSHIFUJI Hideaki / 吉藤英明71bcdba2013-01-05 16:34:51 +00002285 if (ipv6_addr_is_multicast(&msg->dest)) {
David S. Miller6e157b62012-07-12 00:05:02 -07002286 net_dbg_ratelimited("rt6_do_redirect: destination address is multicast\n");
David S. Millere8599ff2012-07-11 23:43:53 -07002287 return;
2288 }
2289
David S. Miller6e157b62012-07-12 00:05:02 -07002290 on_link = 0;
YOSHIFUJI Hideaki / 吉藤英明71bcdba2013-01-05 16:34:51 +00002291 if (ipv6_addr_equal(&msg->dest, &msg->target)) {
David S. Millere8599ff2012-07-11 23:43:53 -07002292 on_link = 1;
YOSHIFUJI Hideaki / 吉藤英明71bcdba2013-01-05 16:34:51 +00002293 } else if (ipv6_addr_type(&msg->target) !=
David S. Millere8599ff2012-07-11 23:43:53 -07002294 (IPV6_ADDR_UNICAST|IPV6_ADDR_LINKLOCAL)) {
David S. Miller6e157b62012-07-12 00:05:02 -07002295 net_dbg_ratelimited("rt6_do_redirect: target address is not link-local unicast\n");
David S. Millere8599ff2012-07-11 23:43:53 -07002296 return;
2297 }
2298
2299 in6_dev = __in6_dev_get(skb->dev);
2300 if (!in6_dev)
2301 return;
2302 if (in6_dev->cnf.forwarding || !in6_dev->cnf.accept_redirects)
2303 return;
2304
2305 /* RFC2461 8.1:
2306 * The IP source address of the Redirect MUST be the same as the current
2307 * first-hop router for the specified ICMP Destination Address.
2308 */
2309
Alexander Aringf997c552016-06-15 21:20:23 +02002310 if (!ndisc_parse_options(skb->dev, msg->opt, optlen, &ndopts)) {
David S. Millere8599ff2012-07-11 23:43:53 -07002311 net_dbg_ratelimited("rt6_redirect: invalid ND options\n");
2312 return;
2313 }
David S. Miller6e157b62012-07-12 00:05:02 -07002314
2315 lladdr = NULL;
David S. Millere8599ff2012-07-11 23:43:53 -07002316 if (ndopts.nd_opts_tgt_lladdr) {
2317 lladdr = ndisc_opt_addr_data(ndopts.nd_opts_tgt_lladdr,
2318 skb->dev);
2319 if (!lladdr) {
2320 net_dbg_ratelimited("rt6_redirect: invalid link-layer address length\n");
2321 return;
2322 }
2323 }
2324
David S. Miller6e157b62012-07-12 00:05:02 -07002325 rt = (struct rt6_info *) dst;
Matthias Schifferec13ad12015-11-02 01:24:38 +01002326 if (rt->rt6i_flags & RTF_REJECT) {
David S. Miller6e157b62012-07-12 00:05:02 -07002327 net_dbg_ratelimited("rt6_redirect: source isn't a valid nexthop for redirect target\n");
2328 return;
2329 }
2330
2331 /* Redirect received -> path was valid.
2332 * Look, redirects are sent only in response to data packets,
2333 * so that this nexthop apparently is reachable. --ANK
2334 */
Julian Anastasov0dec8792017-02-06 23:14:16 +02002335 dst_confirm_neigh(&rt->dst, &ipv6_hdr(skb)->saddr);
David S. Miller6e157b62012-07-12 00:05:02 -07002336
YOSHIFUJI Hideaki / 吉藤英明71bcdba2013-01-05 16:34:51 +00002337 neigh = __neigh_lookup(&nd_tbl, &msg->target, skb->dev, 1);
David S. Millere8599ff2012-07-11 23:43:53 -07002338 if (!neigh)
2339 return;
2340
Linus Torvalds1da177e2005-04-16 15:20:36 -07002341 /*
2342 * We have finally decided to accept it.
2343 */
2344
Alexander Aringf997c552016-06-15 21:20:23 +02002345 ndisc_update(skb->dev, neigh, lladdr, NUD_STALE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002346 NEIGH_UPDATE_F_WEAK_OVERRIDE|
2347 NEIGH_UPDATE_F_OVERRIDE|
2348 (on_link ? 0 : (NEIGH_UPDATE_F_OVERRIDE_ISROUTER|
Alexander Aringf997c552016-06-15 21:20:23 +02002349 NEIGH_UPDATE_F_ISROUTER)),
2350 NDISC_REDIRECT, &ndopts);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002351
Martin KaFai Lau83a09ab2015-05-22 20:56:05 -07002352 nrt = ip6_rt_cache_alloc(rt, &msg->dest, NULL);
David S. Miller38308472011-12-03 18:02:47 -05002353 if (!nrt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002354 goto out;
2355
2356 nrt->rt6i_flags = RTF_GATEWAY|RTF_UP|RTF_DYNAMIC|RTF_CACHE;
2357 if (on_link)
2358 nrt->rt6i_flags &= ~RTF_GATEWAY;
2359
Xin Longb91d5322017-08-03 14:13:46 +08002360 nrt->rt6i_protocol = RTPROT_REDIRECT;
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00002361 nrt->rt6i_gateway = *(struct in6_addr *)neigh->primary_key;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002362
Thomas Graf40e22e82006-08-22 00:00:45 -07002363 if (ip6_ins_rt(nrt))
Wei Wang1cfb71e2017-06-17 10:42:33 -07002364 goto out_release;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002365
Changli Gaod8d1f302010-06-10 23:31:35 -07002366 netevent.old = &rt->dst;
2367 netevent.new = &nrt->dst;
YOSHIFUJI Hideaki / 吉藤英明71bcdba2013-01-05 16:34:51 +00002368 netevent.daddr = &msg->dest;
YOSHIFUJI Hideaki / 吉藤英明60592832013-01-14 09:28:27 +00002369 netevent.neigh = neigh;
Tom Tucker8d717402006-07-30 20:43:36 -07002370 call_netevent_notifiers(NETEVENT_REDIRECT, &netevent);
2371
David S. Miller38308472011-12-03 18:02:47 -05002372 if (rt->rt6i_flags & RTF_CACHE) {
David S. Miller6e157b62012-07-12 00:05:02 -07002373 rt = (struct rt6_info *) dst_clone(&rt->dst);
Thomas Grafe0a1ad732006-08-22 00:00:21 -07002374 ip6_del_rt(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002375 }
2376
Wei Wang1cfb71e2017-06-17 10:42:33 -07002377out_release:
2378 /* Release the reference taken in
2379 * ip6_rt_cache_alloc()
2380 */
2381 dst_release(&nrt->dst);
2382
Linus Torvalds1da177e2005-04-16 15:20:36 -07002383out:
David S. Millere8599ff2012-07-11 23:43:53 -07002384 neigh_release(neigh);
David S. Miller6e157b62012-07-12 00:05:02 -07002385}
2386
Linus Torvalds1da177e2005-04-16 15:20:36 -07002387/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002388 * Misc support functions
2389 */
2390
Martin KaFai Lau4b32b5a2015-04-28 13:03:06 -07002391static void rt6_set_from(struct rt6_info *rt, struct rt6_info *from)
2392{
2393 BUG_ON(from->dst.from);
2394
2395 rt->rt6i_flags &= ~RTF_EXPIRES;
2396 dst_hold(&from->dst);
2397 rt->dst.from = &from->dst;
2398 dst_init_metrics(&rt->dst, dst_metrics_ptr(&from->dst), true);
2399}
2400
Martin KaFai Lau83a09ab2015-05-22 20:56:05 -07002401static void ip6_rt_copy_init(struct rt6_info *rt, struct rt6_info *ort)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002402{
Martin KaFai Lau83a09ab2015-05-22 20:56:05 -07002403 rt->dst.input = ort->dst.input;
2404 rt->dst.output = ort->dst.output;
2405 rt->rt6i_dst = ort->rt6i_dst;
2406 rt->dst.error = ort->dst.error;
2407 rt->rt6i_idev = ort->rt6i_idev;
2408 if (rt->rt6i_idev)
2409 in6_dev_hold(rt->rt6i_idev);
2410 rt->dst.lastuse = jiffies;
2411 rt->rt6i_gateway = ort->rt6i_gateway;
2412 rt->rt6i_flags = ort->rt6i_flags;
2413 rt6_set_from(rt, ort);
2414 rt->rt6i_metric = ort->rt6i_metric;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002415#ifdef CONFIG_IPV6_SUBTREES
Martin KaFai Lau83a09ab2015-05-22 20:56:05 -07002416 rt->rt6i_src = ort->rt6i_src;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002417#endif
Martin KaFai Lau83a09ab2015-05-22 20:56:05 -07002418 rt->rt6i_prefsrc = ort->rt6i_prefsrc;
2419 rt->rt6i_table = ort->rt6i_table;
Jiri Benc61adedf2015-08-20 13:56:25 +02002420 rt->dst.lwtstate = lwtstate_get(ort->dst.lwtstate);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002421}
2422
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08002423#ifdef CONFIG_IPV6_ROUTE_INFO
Daniel Lezcanoefa2cea2008-03-04 13:46:48 -08002424static struct rt6_info *rt6_get_route_info(struct net *net,
Eric Dumazetb71d1d42011-04-22 04:53:02 +00002425 const struct in6_addr *prefix, int prefixlen,
David Ahern830218c2016-10-24 10:52:35 -07002426 const struct in6_addr *gwaddr,
2427 struct net_device *dev)
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08002428{
David Ahern830218c2016-10-24 10:52:35 -07002429 u32 tb_id = l3mdev_fib_table(dev) ? : RT6_TABLE_INFO;
2430 int ifindex = dev->ifindex;
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08002431 struct fib6_node *fn;
2432 struct rt6_info *rt = NULL;
Thomas Grafc71099a2006-08-04 23:20:06 -07002433 struct fib6_table *table;
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08002434
David Ahern830218c2016-10-24 10:52:35 -07002435 table = fib6_get_table(net, tb_id);
David S. Miller38308472011-12-03 18:02:47 -05002436 if (!table)
Thomas Grafc71099a2006-08-04 23:20:06 -07002437 return NULL;
2438
Li RongQing5744dd92012-09-11 21:59:01 +00002439 read_lock_bh(&table->tb6_lock);
Ian Morris67ba4152014-08-24 21:53:10 +01002440 fn = fib6_locate(&table->tb6_root, prefix, prefixlen, NULL, 0);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08002441 if (!fn)
2442 goto out;
2443
Changli Gaod8d1f302010-06-10 23:31:35 -07002444 for (rt = fn->leaf; rt; rt = rt->dst.rt6_next) {
David S. Millerd1918542011-12-28 20:19:20 -05002445 if (rt->dst.dev->ifindex != ifindex)
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08002446 continue;
2447 if ((rt->rt6i_flags & (RTF_ROUTEINFO|RTF_GATEWAY)) != (RTF_ROUTEINFO|RTF_GATEWAY))
2448 continue;
2449 if (!ipv6_addr_equal(&rt->rt6i_gateway, gwaddr))
2450 continue;
Changli Gaod8d1f302010-06-10 23:31:35 -07002451 dst_hold(&rt->dst);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08002452 break;
2453 }
2454out:
Li RongQing5744dd92012-09-11 21:59:01 +00002455 read_unlock_bh(&table->tb6_lock);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08002456 return rt;
2457}
2458
Daniel Lezcanoefa2cea2008-03-04 13:46:48 -08002459static struct rt6_info *rt6_add_route_info(struct net *net,
Eric Dumazetb71d1d42011-04-22 04:53:02 +00002460 const struct in6_addr *prefix, int prefixlen,
David Ahern830218c2016-10-24 10:52:35 -07002461 const struct in6_addr *gwaddr,
2462 struct net_device *dev,
Eric Dumazet95c96172012-04-15 05:58:06 +00002463 unsigned int pref)
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08002464{
Thomas Graf86872cb2006-08-22 00:01:08 -07002465 struct fib6_config cfg = {
Rami Rosen238fc7e2008-02-09 23:43:11 -08002466 .fc_metric = IP6_RT_PRIO_USER,
David Ahern830218c2016-10-24 10:52:35 -07002467 .fc_ifindex = dev->ifindex,
Thomas Graf86872cb2006-08-22 00:01:08 -07002468 .fc_dst_len = prefixlen,
2469 .fc_flags = RTF_GATEWAY | RTF_ADDRCONF | RTF_ROUTEINFO |
2470 RTF_UP | RTF_PREF(pref),
Xin Longb91d5322017-08-03 14:13:46 +08002471 .fc_protocol = RTPROT_RA,
Eric W. Biederman15e47302012-09-07 20:12:54 +00002472 .fc_nlinfo.portid = 0,
Daniel Lezcanoefa2cea2008-03-04 13:46:48 -08002473 .fc_nlinfo.nlh = NULL,
2474 .fc_nlinfo.nl_net = net,
Thomas Graf86872cb2006-08-22 00:01:08 -07002475 };
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08002476
David Ahern830218c2016-10-24 10:52:35 -07002477 cfg.fc_table = l3mdev_fib_table(dev) ? : RT6_TABLE_INFO,
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00002478 cfg.fc_dst = *prefix;
2479 cfg.fc_gateway = *gwaddr;
Thomas Graf86872cb2006-08-22 00:01:08 -07002480
YOSHIFUJI Hideakie317da92006-03-20 17:06:42 -08002481 /* We should treat it as a default route if prefix length is 0. */
2482 if (!prefixlen)
Thomas Graf86872cb2006-08-22 00:01:08 -07002483 cfg.fc_flags |= RTF_DEFAULT;
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08002484
David Ahern333c4302017-05-21 10:12:04 -06002485 ip6_route_add(&cfg, NULL);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08002486
David Ahern830218c2016-10-24 10:52:35 -07002487 return rt6_get_route_info(net, prefix, prefixlen, gwaddr, dev);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08002488}
2489#endif
2490
Eric Dumazetb71d1d42011-04-22 04:53:02 +00002491struct rt6_info *rt6_get_dflt_router(const struct in6_addr *addr, struct net_device *dev)
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002492{
David Ahern830218c2016-10-24 10:52:35 -07002493 u32 tb_id = l3mdev_fib_table(dev) ? : RT6_TABLE_DFLT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002494 struct rt6_info *rt;
Thomas Grafc71099a2006-08-04 23:20:06 -07002495 struct fib6_table *table;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002496
David Ahern830218c2016-10-24 10:52:35 -07002497 table = fib6_get_table(dev_net(dev), tb_id);
David S. Miller38308472011-12-03 18:02:47 -05002498 if (!table)
Thomas Grafc71099a2006-08-04 23:20:06 -07002499 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002500
Li RongQing5744dd92012-09-11 21:59:01 +00002501 read_lock_bh(&table->tb6_lock);
Ian Morris67ba4152014-08-24 21:53:10 +01002502 for (rt = table->tb6_root.leaf; rt; rt = rt->dst.rt6_next) {
David S. Millerd1918542011-12-28 20:19:20 -05002503 if (dev == rt->dst.dev &&
YOSHIFUJI Hideaki045927f2006-03-20 17:00:48 -08002504 ((rt->rt6i_flags & (RTF_ADDRCONF | RTF_DEFAULT)) == (RTF_ADDRCONF | RTF_DEFAULT)) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07002505 ipv6_addr_equal(&rt->rt6i_gateway, addr))
2506 break;
2507 }
2508 if (rt)
Changli Gaod8d1f302010-06-10 23:31:35 -07002509 dst_hold(&rt->dst);
Li RongQing5744dd92012-09-11 21:59:01 +00002510 read_unlock_bh(&table->tb6_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002511 return rt;
2512}
2513
Eric Dumazetb71d1d42011-04-22 04:53:02 +00002514struct rt6_info *rt6_add_dflt_router(const struct in6_addr *gwaddr,
YOSHIFUJI Hideakiebacaaa2006-03-20 17:04:53 -08002515 struct net_device *dev,
2516 unsigned int pref)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002517{
Thomas Graf86872cb2006-08-22 00:01:08 -07002518 struct fib6_config cfg = {
David Ahernca254492015-10-12 11:47:10 -07002519 .fc_table = l3mdev_fib_table(dev) ? : RT6_TABLE_DFLT,
Rami Rosen238fc7e2008-02-09 23:43:11 -08002520 .fc_metric = IP6_RT_PRIO_USER,
Thomas Graf86872cb2006-08-22 00:01:08 -07002521 .fc_ifindex = dev->ifindex,
2522 .fc_flags = RTF_GATEWAY | RTF_ADDRCONF | RTF_DEFAULT |
2523 RTF_UP | RTF_EXPIRES | RTF_PREF(pref),
Xin Longb91d5322017-08-03 14:13:46 +08002524 .fc_protocol = RTPROT_RA,
Eric W. Biederman15e47302012-09-07 20:12:54 +00002525 .fc_nlinfo.portid = 0,
Daniel Lezcano55786892008-03-04 13:47:47 -08002526 .fc_nlinfo.nlh = NULL,
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09002527 .fc_nlinfo.nl_net = dev_net(dev),
Thomas Graf86872cb2006-08-22 00:01:08 -07002528 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002529
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00002530 cfg.fc_gateway = *gwaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002531
David Ahern333c4302017-05-21 10:12:04 -06002532 if (!ip6_route_add(&cfg, NULL)) {
David Ahern830218c2016-10-24 10:52:35 -07002533 struct fib6_table *table;
2534
2535 table = fib6_get_table(dev_net(dev), cfg.fc_table);
2536 if (table)
2537 table->flags |= RT6_TABLE_HAS_DFLT_ROUTER;
2538 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002539
Linus Torvalds1da177e2005-04-16 15:20:36 -07002540 return rt6_get_dflt_router(gwaddr, dev);
2541}
2542
David Ahern830218c2016-10-24 10:52:35 -07002543static void __rt6_purge_dflt_routers(struct fib6_table *table)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002544{
2545 struct rt6_info *rt;
2546
2547restart:
Thomas Grafc71099a2006-08-04 23:20:06 -07002548 read_lock_bh(&table->tb6_lock);
Changli Gaod8d1f302010-06-10 23:31:35 -07002549 for (rt = table->tb6_root.leaf; rt; rt = rt->dst.rt6_next) {
Lorenzo Colitti3e8b0ac2013-03-03 20:46:46 +00002550 if (rt->rt6i_flags & (RTF_DEFAULT | RTF_ADDRCONF) &&
2551 (!rt->rt6i_idev || rt->rt6i_idev->cnf.accept_ra != 2)) {
Changli Gaod8d1f302010-06-10 23:31:35 -07002552 dst_hold(&rt->dst);
Thomas Grafc71099a2006-08-04 23:20:06 -07002553 read_unlock_bh(&table->tb6_lock);
Thomas Grafe0a1ad732006-08-22 00:00:21 -07002554 ip6_del_rt(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002555 goto restart;
2556 }
2557 }
Thomas Grafc71099a2006-08-04 23:20:06 -07002558 read_unlock_bh(&table->tb6_lock);
David Ahern830218c2016-10-24 10:52:35 -07002559
2560 table->flags &= ~RT6_TABLE_HAS_DFLT_ROUTER;
2561}
2562
2563void rt6_purge_dflt_routers(struct net *net)
2564{
2565 struct fib6_table *table;
2566 struct hlist_head *head;
2567 unsigned int h;
2568
2569 rcu_read_lock();
2570
2571 for (h = 0; h < FIB6_TABLE_HASHSZ; h++) {
2572 head = &net->ipv6.fib_table_hash[h];
2573 hlist_for_each_entry_rcu(table, head, tb6_hlist) {
2574 if (table->flags & RT6_TABLE_HAS_DFLT_ROUTER)
2575 __rt6_purge_dflt_routers(table);
2576 }
2577 }
2578
2579 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002580}
2581
Daniel Lezcano55786892008-03-04 13:47:47 -08002582static void rtmsg_to_fib6_config(struct net *net,
2583 struct in6_rtmsg *rtmsg,
Thomas Graf86872cb2006-08-22 00:01:08 -07002584 struct fib6_config *cfg)
2585{
2586 memset(cfg, 0, sizeof(*cfg));
2587
David Ahernca254492015-10-12 11:47:10 -07002588 cfg->fc_table = l3mdev_fib_table_by_index(net, rtmsg->rtmsg_ifindex) ?
2589 : RT6_TABLE_MAIN;
Thomas Graf86872cb2006-08-22 00:01:08 -07002590 cfg->fc_ifindex = rtmsg->rtmsg_ifindex;
2591 cfg->fc_metric = rtmsg->rtmsg_metric;
2592 cfg->fc_expires = rtmsg->rtmsg_info;
2593 cfg->fc_dst_len = rtmsg->rtmsg_dst_len;
2594 cfg->fc_src_len = rtmsg->rtmsg_src_len;
2595 cfg->fc_flags = rtmsg->rtmsg_flags;
2596
Daniel Lezcano55786892008-03-04 13:47:47 -08002597 cfg->fc_nlinfo.nl_net = net;
Benjamin Theryf1243c22008-02-26 18:10:03 -08002598
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00002599 cfg->fc_dst = rtmsg->rtmsg_dst;
2600 cfg->fc_src = rtmsg->rtmsg_src;
2601 cfg->fc_gateway = rtmsg->rtmsg_gateway;
Thomas Graf86872cb2006-08-22 00:01:08 -07002602}
2603
Daniel Lezcano55786892008-03-04 13:47:47 -08002604int ipv6_route_ioctl(struct net *net, unsigned int cmd, void __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002605{
Thomas Graf86872cb2006-08-22 00:01:08 -07002606 struct fib6_config cfg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002607 struct in6_rtmsg rtmsg;
2608 int err;
2609
Ian Morris67ba4152014-08-24 21:53:10 +01002610 switch (cmd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002611 case SIOCADDRT: /* Add a route */
2612 case SIOCDELRT: /* Delete a route */
Eric W. Biedermanaf31f412012-11-16 03:03:06 +00002613 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002614 return -EPERM;
2615 err = copy_from_user(&rtmsg, arg,
2616 sizeof(struct in6_rtmsg));
2617 if (err)
2618 return -EFAULT;
Thomas Graf86872cb2006-08-22 00:01:08 -07002619
Daniel Lezcano55786892008-03-04 13:47:47 -08002620 rtmsg_to_fib6_config(net, &rtmsg, &cfg);
Thomas Graf86872cb2006-08-22 00:01:08 -07002621
Linus Torvalds1da177e2005-04-16 15:20:36 -07002622 rtnl_lock();
2623 switch (cmd) {
2624 case SIOCADDRT:
David Ahern333c4302017-05-21 10:12:04 -06002625 err = ip6_route_add(&cfg, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002626 break;
2627 case SIOCDELRT:
David Ahern333c4302017-05-21 10:12:04 -06002628 err = ip6_route_del(&cfg, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002629 break;
2630 default:
2631 err = -EINVAL;
2632 }
2633 rtnl_unlock();
2634
2635 return err;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07002636 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002637
2638 return -EINVAL;
2639}
2640
2641/*
2642 * Drop the packet on the floor
2643 */
2644
Brian Haleyd5fdd6b2009-06-23 04:31:07 -07002645static int ip6_pkt_drop(struct sk_buff *skb, u8 code, int ipstats_mib_noroutes)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002646{
YOSHIFUJI Hideaki612f09e2007-04-13 16:18:02 -07002647 int type;
Eric Dumazetadf30902009-06-02 05:19:30 +00002648 struct dst_entry *dst = skb_dst(skb);
YOSHIFUJI Hideaki612f09e2007-04-13 16:18:02 -07002649 switch (ipstats_mib_noroutes) {
2650 case IPSTATS_MIB_INNOROUTES:
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -07002651 type = ipv6_addr_type(&ipv6_hdr(skb)->daddr);
Ulrich Weber45bb0062010-02-25 23:28:58 +00002652 if (type == IPV6_ADDR_ANY) {
Denis V. Lunev3bd653c2008-10-08 10:54:51 -07002653 IP6_INC_STATS(dev_net(dst->dev), ip6_dst_idev(dst),
2654 IPSTATS_MIB_INADDRERRORS);
YOSHIFUJI Hideaki612f09e2007-04-13 16:18:02 -07002655 break;
2656 }
2657 /* FALLTHROUGH */
2658 case IPSTATS_MIB_OUTNOROUTES:
Denis V. Lunev3bd653c2008-10-08 10:54:51 -07002659 IP6_INC_STATS(dev_net(dst->dev), ip6_dst_idev(dst),
2660 ipstats_mib_noroutes);
YOSHIFUJI Hideaki612f09e2007-04-13 16:18:02 -07002661 break;
2662 }
Alexey Dobriyan3ffe5332010-02-18 08:25:24 +00002663 icmpv6_send(skb, ICMPV6_DEST_UNREACH, code, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002664 kfree_skb(skb);
2665 return 0;
2666}
2667
Thomas Graf9ce8ade2006-10-18 20:46:54 -07002668static int ip6_pkt_discard(struct sk_buff *skb)
2669{
YOSHIFUJI Hideaki612f09e2007-04-13 16:18:02 -07002670 return ip6_pkt_drop(skb, ICMPV6_NOROUTE, IPSTATS_MIB_INNOROUTES);
Thomas Graf9ce8ade2006-10-18 20:46:54 -07002671}
2672
Eric W. Biedermanede20592015-10-07 16:48:47 -05002673static int ip6_pkt_discard_out(struct net *net, struct sock *sk, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002674{
Eric Dumazetadf30902009-06-02 05:19:30 +00002675 skb->dev = skb_dst(skb)->dev;
YOSHIFUJI Hideaki612f09e2007-04-13 16:18:02 -07002676 return ip6_pkt_drop(skb, ICMPV6_NOROUTE, IPSTATS_MIB_OUTNOROUTES);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002677}
2678
Thomas Graf9ce8ade2006-10-18 20:46:54 -07002679static int ip6_pkt_prohibit(struct sk_buff *skb)
2680{
YOSHIFUJI Hideaki612f09e2007-04-13 16:18:02 -07002681 return ip6_pkt_drop(skb, ICMPV6_ADM_PROHIBITED, IPSTATS_MIB_INNOROUTES);
Thomas Graf9ce8ade2006-10-18 20:46:54 -07002682}
2683
Eric W. Biedermanede20592015-10-07 16:48:47 -05002684static int ip6_pkt_prohibit_out(struct net *net, struct sock *sk, struct sk_buff *skb)
Thomas Graf9ce8ade2006-10-18 20:46:54 -07002685{
Eric Dumazetadf30902009-06-02 05:19:30 +00002686 skb->dev = skb_dst(skb)->dev;
YOSHIFUJI Hideaki612f09e2007-04-13 16:18:02 -07002687 return ip6_pkt_drop(skb, ICMPV6_ADM_PROHIBITED, IPSTATS_MIB_OUTNOROUTES);
Thomas Graf9ce8ade2006-10-18 20:46:54 -07002688}
2689
Linus Torvalds1da177e2005-04-16 15:20:36 -07002690/*
2691 * Allocate a dst for local (unicast / anycast) address.
2692 */
2693
2694struct rt6_info *addrconf_dst_alloc(struct inet6_dev *idev,
2695 const struct in6_addr *addr,
David S. Miller8f031512011-12-06 16:48:14 -05002696 bool anycast)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002697{
David Ahernca254492015-10-12 11:47:10 -07002698 u32 tb_id;
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09002699 struct net *net = dev_net(idev->dev);
David Ahern5f02ce242016-09-10 12:09:54 -07002700 struct net_device *dev = net->loopback_dev;
2701 struct rt6_info *rt;
2702
2703 /* use L3 Master device as loopback for host routes if device
2704 * is enslaved and address is not link local or multicast
2705 */
2706 if (!rt6_need_strict(addr))
2707 dev = l3mdev_master_dev_rcu(idev->dev) ? : dev;
2708
2709 rt = ip6_dst_alloc(net, dev, DST_NOCOUNT);
Hannes Frederic Sowaa3300ef2013-12-07 03:33:45 +01002710 if (!rt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002711 return ERR_PTR(-ENOMEM);
2712
Linus Torvalds1da177e2005-04-16 15:20:36 -07002713 in6_dev_hold(idev);
2714
David S. Miller11d53b42011-06-24 15:23:34 -07002715 rt->dst.flags |= DST_HOST;
Changli Gaod8d1f302010-06-10 23:31:35 -07002716 rt->dst.input = ip6_input;
2717 rt->dst.output = ip6_output;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002718 rt->rt6i_idev = idev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002719
David Ahern94b5e0f2017-02-02 08:52:21 -08002720 rt->rt6i_protocol = RTPROT_KERNEL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002721 rt->rt6i_flags = RTF_UP | RTF_NONEXTHOP;
YOSHIFUJI Hideaki58c4fb82005-12-21 22:56:42 +09002722 if (anycast)
2723 rt->rt6i_flags |= RTF_ANYCAST;
2724 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002725 rt->rt6i_flags |= RTF_LOCAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002726
Julian Anastasov550bab42013-10-20 15:43:04 +03002727 rt->rt6i_gateway = *addr;
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00002728 rt->rt6i_dst.addr = *addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002729 rt->rt6i_dst.plen = 128;
David Ahernca254492015-10-12 11:47:10 -07002730 tb_id = l3mdev_fib_table(idev->dev) ? : RT6_TABLE_LOCAL;
2731 rt->rt6i_table = fib6_get_table(net, tb_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002732
Linus Torvalds1da177e2005-04-16 15:20:36 -07002733 return rt;
2734}
2735
Daniel Walterc3968a82011-04-13 21:10:57 +00002736/* remove deleted ip from prefsrc entries */
2737struct arg_dev_net_ip {
2738 struct net_device *dev;
2739 struct net *net;
2740 struct in6_addr *addr;
2741};
2742
2743static int fib6_remove_prefsrc(struct rt6_info *rt, void *arg)
2744{
2745 struct net_device *dev = ((struct arg_dev_net_ip *)arg)->dev;
2746 struct net *net = ((struct arg_dev_net_ip *)arg)->net;
2747 struct in6_addr *addr = ((struct arg_dev_net_ip *)arg)->addr;
2748
David S. Millerd1918542011-12-28 20:19:20 -05002749 if (((void *)rt->dst.dev == dev || !dev) &&
Daniel Walterc3968a82011-04-13 21:10:57 +00002750 rt != net->ipv6.ip6_null_entry &&
2751 ipv6_addr_equal(addr, &rt->rt6i_prefsrc.addr)) {
2752 /* remove prefsrc entry */
2753 rt->rt6i_prefsrc.plen = 0;
2754 }
2755 return 0;
2756}
2757
2758void rt6_remove_prefsrc(struct inet6_ifaddr *ifp)
2759{
2760 struct net *net = dev_net(ifp->idev->dev);
2761 struct arg_dev_net_ip adni = {
2762 .dev = ifp->idev->dev,
2763 .net = net,
2764 .addr = &ifp->addr,
2765 };
Li RongQing0c3584d2013-12-27 16:32:38 +08002766 fib6_clean_all(net, fib6_remove_prefsrc, &adni);
Daniel Walterc3968a82011-04-13 21:10:57 +00002767}
2768
Duan Jiongbe7a0102014-05-15 15:56:14 +08002769#define RTF_RA_ROUTER (RTF_ADDRCONF | RTF_DEFAULT | RTF_GATEWAY)
2770#define RTF_CACHE_GATEWAY (RTF_GATEWAY | RTF_CACHE)
2771
2772/* Remove routers and update dst entries when gateway turn into host. */
2773static int fib6_clean_tohost(struct rt6_info *rt, void *arg)
2774{
2775 struct in6_addr *gateway = (struct in6_addr *)arg;
2776
2777 if ((((rt->rt6i_flags & RTF_RA_ROUTER) == RTF_RA_ROUTER) ||
2778 ((rt->rt6i_flags & RTF_CACHE_GATEWAY) == RTF_CACHE_GATEWAY)) &&
2779 ipv6_addr_equal(gateway, &rt->rt6i_gateway)) {
2780 return -1;
2781 }
2782 return 0;
2783}
2784
2785void rt6_clean_tohost(struct net *net, struct in6_addr *gateway)
2786{
2787 fib6_clean_all(net, fib6_clean_tohost, gateway);
2788}
2789
Daniel Lezcano8ed67782008-03-04 13:48:30 -08002790struct arg_dev_net {
2791 struct net_device *dev;
2792 struct net *net;
2793};
2794
David Aherna1a22c12017-01-18 07:40:36 -08002795/* called with write lock held for table with rt */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002796static int fib6_ifdown(struct rt6_info *rt, void *arg)
2797{
stephen hemmingerbc3ef662010-12-16 17:42:40 +00002798 const struct arg_dev_net *adn = arg;
2799 const struct net_device *dev = adn->dev;
Daniel Lezcano8ed67782008-03-04 13:48:30 -08002800
David S. Millerd1918542011-12-28 20:19:20 -05002801 if ((rt->dst.dev == dev || !dev) &&
David Aherna1a22c12017-01-18 07:40:36 -08002802 rt != adn->net->ipv6.ip6_null_entry &&
2803 (rt->rt6i_nsiblings == 0 ||
David Ahern8397ed32017-06-07 12:26:23 -06002804 (dev && netdev_unregistering(dev)) ||
David Aherna1a22c12017-01-18 07:40:36 -08002805 !rt->rt6i_idev->cnf.ignore_routes_with_linkdown))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002806 return -1;
David S. Millerc159d302011-12-26 15:24:36 -05002807
Linus Torvalds1da177e2005-04-16 15:20:36 -07002808 return 0;
2809}
2810
Daniel Lezcanof3db4852008-03-03 23:27:06 -08002811void rt6_ifdown(struct net *net, struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002812{
Daniel Lezcano8ed67782008-03-04 13:48:30 -08002813 struct arg_dev_net adn = {
2814 .dev = dev,
2815 .net = net,
2816 };
2817
Li RongQing0c3584d2013-12-27 16:32:38 +08002818 fib6_clean_all(net, fib6_ifdown, &adn);
Eric W. Biedermane332bc62015-10-12 11:02:08 -05002819 if (dev)
2820 rt6_uncached_list_flush_dev(net, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002821}
2822
Eric Dumazet95c96172012-04-15 05:58:06 +00002823struct rt6_mtu_change_arg {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002824 struct net_device *dev;
Eric Dumazet95c96172012-04-15 05:58:06 +00002825 unsigned int mtu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002826};
2827
2828static int rt6_mtu_change_route(struct rt6_info *rt, void *p_arg)
2829{
2830 struct rt6_mtu_change_arg *arg = (struct rt6_mtu_change_arg *) p_arg;
2831 struct inet6_dev *idev;
2832
2833 /* In IPv6 pmtu discovery is not optional,
2834 so that RTAX_MTU lock cannot disable it.
2835 We still use this lock to block changes
2836 caused by addrconf/ndisc.
2837 */
2838
2839 idev = __in6_dev_get(arg->dev);
David S. Miller38308472011-12-03 18:02:47 -05002840 if (!idev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002841 return 0;
2842
2843 /* For administrative MTU increase, there is no way to discover
2844 IPv6 PMTU increase, so PMTU increase should be updated here.
2845 Since RFC 1981 doesn't include administrative MTU increase
2846 update PMTU increase is a MUST. (i.e. jumbo frame)
2847 */
2848 /*
2849 If new MTU is less than route PMTU, this new MTU will be the
2850 lowest MTU in the path, update the route PMTU to reflect PMTU
2851 decreases; if new MTU is greater than route PMTU, and the
2852 old MTU is the lowest MTU in the path, update the route PMTU
2853 to reflect the increase. In this case if the other nodes' MTU
2854 also have the lowest MTU, TOO BIG MESSAGE will be lead to
Alexander Alemayhu67c408c2017-01-07 23:53:00 +01002855 PMTU discovery.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002856 */
David S. Millerd1918542011-12-28 20:19:20 -05002857 if (rt->dst.dev == arg->dev &&
Maciej Żenczykowskifb56be82016-11-04 14:51:54 -07002858 dst_metric_raw(&rt->dst, RTAX_MTU) &&
Martin KaFai Lau4b32b5a2015-04-28 13:03:06 -07002859 !dst_metric_locked(&rt->dst, RTAX_MTU)) {
2860 if (rt->rt6i_flags & RTF_CACHE) {
2861 /* For RTF_CACHE with rt6i_pmtu == 0
2862 * (i.e. a redirected route),
2863 * the metrics of its rt->dst.from has already
2864 * been updated.
2865 */
2866 if (rt->rt6i_pmtu && rt->rt6i_pmtu > arg->mtu)
2867 rt->rt6i_pmtu = arg->mtu;
2868 } else if (dst_mtu(&rt->dst) >= arg->mtu ||
2869 (dst_mtu(&rt->dst) < arg->mtu &&
2870 dst_mtu(&rt->dst) == idev->cnf.mtu6)) {
2871 dst_metric_set(&rt->dst, RTAX_MTU, arg->mtu);
2872 }
Simon Arlott566cfd82007-07-26 00:09:55 -07002873 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002874 return 0;
2875}
2876
Eric Dumazet95c96172012-04-15 05:58:06 +00002877void rt6_mtu_change(struct net_device *dev, unsigned int mtu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002878{
Thomas Grafc71099a2006-08-04 23:20:06 -07002879 struct rt6_mtu_change_arg arg = {
2880 .dev = dev,
2881 .mtu = mtu,
2882 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002883
Li RongQing0c3584d2013-12-27 16:32:38 +08002884 fib6_clean_all(dev_net(dev), rt6_mtu_change_route, &arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002885}
2886
Patrick McHardyef7c79e2007-06-05 12:38:30 -07002887static const struct nla_policy rtm_ipv6_policy[RTA_MAX+1] = {
Thomas Graf5176f912006-08-26 20:13:18 -07002888 [RTA_GATEWAY] = { .len = sizeof(struct in6_addr) },
Thomas Graf86872cb2006-08-22 00:01:08 -07002889 [RTA_OIF] = { .type = NLA_U32 },
Thomas Grafab364a62006-08-22 00:01:47 -07002890 [RTA_IIF] = { .type = NLA_U32 },
Thomas Graf86872cb2006-08-22 00:01:08 -07002891 [RTA_PRIORITY] = { .type = NLA_U32 },
2892 [RTA_METRICS] = { .type = NLA_NESTED },
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00002893 [RTA_MULTIPATH] = { .len = sizeof(struct rtnexthop) },
Lubomir Rintelc78ba6d2015-03-11 15:39:21 +01002894 [RTA_PREF] = { .type = NLA_U8 },
Roopa Prabhu19e42e42015-07-21 10:43:48 +02002895 [RTA_ENCAP_TYPE] = { .type = NLA_U16 },
2896 [RTA_ENCAP] = { .type = NLA_NESTED },
Xin Long32bc2012015-12-16 17:50:11 +08002897 [RTA_EXPIRES] = { .type = NLA_U32 },
Lorenzo Colitti622ec2c2016-11-04 02:23:42 +09002898 [RTA_UID] = { .type = NLA_U32 },
Liping Zhang3b45a412017-02-27 20:59:39 +08002899 [RTA_MARK] = { .type = NLA_U32 },
Thomas Graf86872cb2006-08-22 00:01:08 -07002900};
2901
2902static int rtm_to_fib6_config(struct sk_buff *skb, struct nlmsghdr *nlh,
David Ahern333c4302017-05-21 10:12:04 -06002903 struct fib6_config *cfg,
2904 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002905{
Thomas Graf86872cb2006-08-22 00:01:08 -07002906 struct rtmsg *rtm;
2907 struct nlattr *tb[RTA_MAX+1];
Lubomir Rintelc78ba6d2015-03-11 15:39:21 +01002908 unsigned int pref;
Thomas Graf86872cb2006-08-22 00:01:08 -07002909 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002910
Johannes Bergfceb6432017-04-12 14:34:07 +02002911 err = nlmsg_parse(nlh, sizeof(*rtm), tb, RTA_MAX, rtm_ipv6_policy,
2912 NULL);
Thomas Graf86872cb2006-08-22 00:01:08 -07002913 if (err < 0)
2914 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002915
Thomas Graf86872cb2006-08-22 00:01:08 -07002916 err = -EINVAL;
2917 rtm = nlmsg_data(nlh);
2918 memset(cfg, 0, sizeof(*cfg));
2919
2920 cfg->fc_table = rtm->rtm_table;
2921 cfg->fc_dst_len = rtm->rtm_dst_len;
2922 cfg->fc_src_len = rtm->rtm_src_len;
2923 cfg->fc_flags = RTF_UP;
2924 cfg->fc_protocol = rtm->rtm_protocol;
Nicolas Dichtelef2c7d72012-09-05 02:12:42 +00002925 cfg->fc_type = rtm->rtm_type;
Thomas Graf86872cb2006-08-22 00:01:08 -07002926
Nicolas Dichtelef2c7d72012-09-05 02:12:42 +00002927 if (rtm->rtm_type == RTN_UNREACHABLE ||
2928 rtm->rtm_type == RTN_BLACKHOLE ||
Nicolas Dichtelb4949ab2012-09-06 05:53:35 +00002929 rtm->rtm_type == RTN_PROHIBIT ||
2930 rtm->rtm_type == RTN_THROW)
Thomas Graf86872cb2006-08-22 00:01:08 -07002931 cfg->fc_flags |= RTF_REJECT;
2932
Maciej Żenczykowskiab79ad12010-09-27 00:07:02 +00002933 if (rtm->rtm_type == RTN_LOCAL)
2934 cfg->fc_flags |= RTF_LOCAL;
2935
Martin KaFai Lau1f56a01f2015-04-28 13:03:03 -07002936 if (rtm->rtm_flags & RTM_F_CLONED)
2937 cfg->fc_flags |= RTF_CACHE;
2938
Eric W. Biederman15e47302012-09-07 20:12:54 +00002939 cfg->fc_nlinfo.portid = NETLINK_CB(skb).portid;
Thomas Graf86872cb2006-08-22 00:01:08 -07002940 cfg->fc_nlinfo.nlh = nlh;
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09002941 cfg->fc_nlinfo.nl_net = sock_net(skb->sk);
Thomas Graf86872cb2006-08-22 00:01:08 -07002942
2943 if (tb[RTA_GATEWAY]) {
Jiri Benc67b61f62015-03-29 16:59:26 +02002944 cfg->fc_gateway = nla_get_in6_addr(tb[RTA_GATEWAY]);
Thomas Graf86872cb2006-08-22 00:01:08 -07002945 cfg->fc_flags |= RTF_GATEWAY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002946 }
Thomas Graf86872cb2006-08-22 00:01:08 -07002947
2948 if (tb[RTA_DST]) {
2949 int plen = (rtm->rtm_dst_len + 7) >> 3;
2950
2951 if (nla_len(tb[RTA_DST]) < plen)
2952 goto errout;
2953
2954 nla_memcpy(&cfg->fc_dst, tb[RTA_DST], plen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002955 }
Thomas Graf86872cb2006-08-22 00:01:08 -07002956
2957 if (tb[RTA_SRC]) {
2958 int plen = (rtm->rtm_src_len + 7) >> 3;
2959
2960 if (nla_len(tb[RTA_SRC]) < plen)
2961 goto errout;
2962
2963 nla_memcpy(&cfg->fc_src, tb[RTA_SRC], plen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002964 }
Thomas Graf86872cb2006-08-22 00:01:08 -07002965
Daniel Walterc3968a82011-04-13 21:10:57 +00002966 if (tb[RTA_PREFSRC])
Jiri Benc67b61f62015-03-29 16:59:26 +02002967 cfg->fc_prefsrc = nla_get_in6_addr(tb[RTA_PREFSRC]);
Daniel Walterc3968a82011-04-13 21:10:57 +00002968
Thomas Graf86872cb2006-08-22 00:01:08 -07002969 if (tb[RTA_OIF])
2970 cfg->fc_ifindex = nla_get_u32(tb[RTA_OIF]);
2971
2972 if (tb[RTA_PRIORITY])
2973 cfg->fc_metric = nla_get_u32(tb[RTA_PRIORITY]);
2974
2975 if (tb[RTA_METRICS]) {
2976 cfg->fc_mx = nla_data(tb[RTA_METRICS]);
2977 cfg->fc_mx_len = nla_len(tb[RTA_METRICS]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002978 }
Thomas Graf86872cb2006-08-22 00:01:08 -07002979
2980 if (tb[RTA_TABLE])
2981 cfg->fc_table = nla_get_u32(tb[RTA_TABLE]);
2982
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00002983 if (tb[RTA_MULTIPATH]) {
2984 cfg->fc_mp = nla_data(tb[RTA_MULTIPATH]);
2985 cfg->fc_mp_len = nla_len(tb[RTA_MULTIPATH]);
David Ahern9ed59592017-01-17 14:57:36 -08002986
2987 err = lwtunnel_valid_encap_type_attr(cfg->fc_mp,
David Ahernc255bd62017-05-27 16:19:27 -06002988 cfg->fc_mp_len, extack);
David Ahern9ed59592017-01-17 14:57:36 -08002989 if (err < 0)
2990 goto errout;
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00002991 }
2992
Lubomir Rintelc78ba6d2015-03-11 15:39:21 +01002993 if (tb[RTA_PREF]) {
2994 pref = nla_get_u8(tb[RTA_PREF]);
2995 if (pref != ICMPV6_ROUTER_PREF_LOW &&
2996 pref != ICMPV6_ROUTER_PREF_HIGH)
2997 pref = ICMPV6_ROUTER_PREF_MEDIUM;
2998 cfg->fc_flags |= RTF_PREF(pref);
2999 }
3000
Roopa Prabhu19e42e42015-07-21 10:43:48 +02003001 if (tb[RTA_ENCAP])
3002 cfg->fc_encap = tb[RTA_ENCAP];
3003
David Ahern9ed59592017-01-17 14:57:36 -08003004 if (tb[RTA_ENCAP_TYPE]) {
Roopa Prabhu19e42e42015-07-21 10:43:48 +02003005 cfg->fc_encap_type = nla_get_u16(tb[RTA_ENCAP_TYPE]);
3006
David Ahernc255bd62017-05-27 16:19:27 -06003007 err = lwtunnel_valid_encap_type(cfg->fc_encap_type, extack);
David Ahern9ed59592017-01-17 14:57:36 -08003008 if (err < 0)
3009 goto errout;
3010 }
3011
Xin Long32bc2012015-12-16 17:50:11 +08003012 if (tb[RTA_EXPIRES]) {
3013 unsigned long timeout = addrconf_timeout_fixup(nla_get_u32(tb[RTA_EXPIRES]), HZ);
3014
3015 if (addrconf_finite_timeout(timeout)) {
3016 cfg->fc_expires = jiffies_to_clock_t(timeout * HZ);
3017 cfg->fc_flags |= RTF_EXPIRES;
3018 }
3019 }
3020
Thomas Graf86872cb2006-08-22 00:01:08 -07003021 err = 0;
3022errout:
3023 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003024}
3025
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003026struct rt6_nh {
3027 struct rt6_info *rt6_info;
3028 struct fib6_config r_cfg;
3029 struct mx6_config mxc;
3030 struct list_head next;
3031};
3032
3033static void ip6_print_replace_route_err(struct list_head *rt6_nh_list)
3034{
3035 struct rt6_nh *nh;
3036
3037 list_for_each_entry(nh, rt6_nh_list, next) {
David Ahern7d4d5062017-02-02 12:37:12 -08003038 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 -07003039 &nh->r_cfg.fc_dst, &nh->r_cfg.fc_gateway,
3040 nh->r_cfg.fc_ifindex);
3041 }
3042}
3043
3044static int ip6_route_info_append(struct list_head *rt6_nh_list,
3045 struct rt6_info *rt, struct fib6_config *r_cfg)
3046{
3047 struct rt6_nh *nh;
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003048 int err = -EEXIST;
3049
3050 list_for_each_entry(nh, rt6_nh_list, next) {
3051 /* check if rt6_info already exists */
David Ahernf06b7542017-07-05 14:41:46 -06003052 if (rt6_duplicate_nexthop(nh->rt6_info, rt))
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003053 return err;
3054 }
3055
3056 nh = kzalloc(sizeof(*nh), GFP_KERNEL);
3057 if (!nh)
3058 return -ENOMEM;
3059 nh->rt6_info = rt;
3060 err = ip6_convert_metrics(&nh->mxc, r_cfg);
3061 if (err) {
3062 kfree(nh);
3063 return err;
3064 }
3065 memcpy(&nh->r_cfg, r_cfg, sizeof(*r_cfg));
3066 list_add_tail(&nh->next, rt6_nh_list);
3067
3068 return 0;
3069}
3070
David Ahern3b1137f2017-02-02 12:37:10 -08003071static void ip6_route_mpath_notify(struct rt6_info *rt,
3072 struct rt6_info *rt_last,
3073 struct nl_info *info,
3074 __u16 nlflags)
3075{
3076 /* if this is an APPEND route, then rt points to the first route
3077 * inserted and rt_last points to last route inserted. Userspace
3078 * wants a consistent dump of the route which starts at the first
3079 * nexthop. Since sibling routes are always added at the end of
3080 * the list, find the first sibling of the last route appended
3081 */
3082 if ((nlflags & NLM_F_APPEND) && rt_last && rt_last->rt6i_nsiblings) {
3083 rt = list_first_entry(&rt_last->rt6i_siblings,
3084 struct rt6_info,
3085 rt6i_siblings);
3086 }
3087
3088 if (rt)
3089 inet6_rt_notify(RTM_NEWROUTE, rt, info, nlflags);
3090}
3091
David Ahern333c4302017-05-21 10:12:04 -06003092static int ip6_route_multipath_add(struct fib6_config *cfg,
3093 struct netlink_ext_ack *extack)
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00003094{
David Ahern3b1137f2017-02-02 12:37:10 -08003095 struct rt6_info *rt_notif = NULL, *rt_last = NULL;
3096 struct nl_info *info = &cfg->fc_nlinfo;
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00003097 struct fib6_config r_cfg;
3098 struct rtnexthop *rtnh;
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003099 struct rt6_info *rt;
3100 struct rt6_nh *err_nh;
3101 struct rt6_nh *nh, *nh_safe;
David Ahern3b1137f2017-02-02 12:37:10 -08003102 __u16 nlflags;
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00003103 int remaining;
3104 int attrlen;
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003105 int err = 1;
3106 int nhn = 0;
3107 int replace = (cfg->fc_nlinfo.nlh &&
3108 (cfg->fc_nlinfo.nlh->nlmsg_flags & NLM_F_REPLACE));
3109 LIST_HEAD(rt6_nh_list);
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00003110
David Ahern3b1137f2017-02-02 12:37:10 -08003111 nlflags = replace ? NLM_F_REPLACE : NLM_F_CREATE;
3112 if (info->nlh && info->nlh->nlmsg_flags & NLM_F_APPEND)
3113 nlflags |= NLM_F_APPEND;
3114
Michal Kubeček35f1b4e2015-05-18 20:53:55 +02003115 remaining = cfg->fc_mp_len;
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00003116 rtnh = (struct rtnexthop *)cfg->fc_mp;
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00003117
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003118 /* Parse a Multipath Entry and build a list (rt6_nh_list) of
3119 * rt6_info structs per nexthop
3120 */
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00003121 while (rtnh_ok(rtnh, remaining)) {
3122 memcpy(&r_cfg, cfg, sizeof(*cfg));
3123 if (rtnh->rtnh_ifindex)
3124 r_cfg.fc_ifindex = rtnh->rtnh_ifindex;
3125
3126 attrlen = rtnh_attrlen(rtnh);
3127 if (attrlen > 0) {
3128 struct nlattr *nla, *attrs = rtnh_attrs(rtnh);
3129
3130 nla = nla_find(attrs, attrlen, RTA_GATEWAY);
3131 if (nla) {
Jiri Benc67b61f62015-03-29 16:59:26 +02003132 r_cfg.fc_gateway = nla_get_in6_addr(nla);
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00003133 r_cfg.fc_flags |= RTF_GATEWAY;
3134 }
Roopa Prabhu19e42e42015-07-21 10:43:48 +02003135 r_cfg.fc_encap = nla_find(attrs, attrlen, RTA_ENCAP);
3136 nla = nla_find(attrs, attrlen, RTA_ENCAP_TYPE);
3137 if (nla)
3138 r_cfg.fc_encap_type = nla_get_u16(nla);
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00003139 }
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003140
David Ahern333c4302017-05-21 10:12:04 -06003141 rt = ip6_route_info_create(&r_cfg, extack);
Roopa Prabhu8c5b83f2015-10-10 08:26:36 -07003142 if (IS_ERR(rt)) {
3143 err = PTR_ERR(rt);
3144 rt = NULL;
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003145 goto cleanup;
Roopa Prabhu8c5b83f2015-10-10 08:26:36 -07003146 }
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003147
3148 err = ip6_route_info_append(&rt6_nh_list, rt, &r_cfg);
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00003149 if (err) {
Wei Wang587fea72017-06-17 10:42:36 -07003150 dst_release_immediate(&rt->dst);
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003151 goto cleanup;
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00003152 }
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003153
3154 rtnh = rtnh_next(rtnh, &remaining);
3155 }
3156
David Ahern3b1137f2017-02-02 12:37:10 -08003157 /* for add and replace send one notification with all nexthops.
3158 * Skip the notification in fib6_add_rt2node and send one with
3159 * the full route when done
3160 */
3161 info->skip_notify = 1;
3162
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003163 err_nh = NULL;
3164 list_for_each_entry(nh, &rt6_nh_list, next) {
David Ahern3b1137f2017-02-02 12:37:10 -08003165 rt_last = nh->rt6_info;
David Ahern333c4302017-05-21 10:12:04 -06003166 err = __ip6_ins_rt(nh->rt6_info, info, &nh->mxc, extack);
David Ahern3b1137f2017-02-02 12:37:10 -08003167 /* save reference to first route for notification */
3168 if (!rt_notif && !err)
3169 rt_notif = nh->rt6_info;
3170
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003171 /* nh->rt6_info is used or freed at this point, reset to NULL*/
3172 nh->rt6_info = NULL;
3173 if (err) {
3174 if (replace && nhn)
3175 ip6_print_replace_route_err(&rt6_nh_list);
3176 err_nh = nh;
3177 goto add_errout;
3178 }
3179
Nicolas Dichtel1a724182012-11-01 22:58:22 +00003180 /* Because each route is added like a single route we remove
Michal Kubeček27596472015-05-18 20:54:00 +02003181 * these flags after the first nexthop: if there is a collision,
3182 * we have already failed to add the first nexthop:
3183 * fib6_add_rt2node() has rejected it; when replacing, old
3184 * nexthops have been replaced by first new, the rest should
3185 * be added to it.
Nicolas Dichtel1a724182012-11-01 22:58:22 +00003186 */
Michal Kubeček27596472015-05-18 20:54:00 +02003187 cfg->fc_nlinfo.nlh->nlmsg_flags &= ~(NLM_F_EXCL |
3188 NLM_F_REPLACE);
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003189 nhn++;
3190 }
3191
David Ahern3b1137f2017-02-02 12:37:10 -08003192 /* success ... tell user about new route */
3193 ip6_route_mpath_notify(rt_notif, rt_last, info, nlflags);
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003194 goto cleanup;
3195
3196add_errout:
David Ahern3b1137f2017-02-02 12:37:10 -08003197 /* send notification for routes that were added so that
3198 * the delete notifications sent by ip6_route_del are
3199 * coherent
3200 */
3201 if (rt_notif)
3202 ip6_route_mpath_notify(rt_notif, rt_last, info, nlflags);
3203
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003204 /* Delete routes that were already added */
3205 list_for_each_entry(nh, &rt6_nh_list, next) {
3206 if (err_nh == nh)
3207 break;
David Ahern333c4302017-05-21 10:12:04 -06003208 ip6_route_del(&nh->r_cfg, extack);
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003209 }
3210
3211cleanup:
3212 list_for_each_entry_safe(nh, nh_safe, &rt6_nh_list, next) {
Wei Wang587fea72017-06-17 10:42:36 -07003213 if (nh->rt6_info)
3214 dst_release_immediate(&nh->rt6_info->dst);
Wu Fengguang52fe51f2015-09-10 06:57:12 +08003215 kfree(nh->mxc.mx);
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003216 list_del(&nh->next);
3217 kfree(nh);
3218 }
3219
3220 return err;
3221}
3222
David Ahern333c4302017-05-21 10:12:04 -06003223static int ip6_route_multipath_del(struct fib6_config *cfg,
3224 struct netlink_ext_ack *extack)
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003225{
3226 struct fib6_config r_cfg;
3227 struct rtnexthop *rtnh;
3228 int remaining;
3229 int attrlen;
3230 int err = 1, last_err = 0;
3231
3232 remaining = cfg->fc_mp_len;
3233 rtnh = (struct rtnexthop *)cfg->fc_mp;
3234
3235 /* Parse a Multipath Entry */
3236 while (rtnh_ok(rtnh, remaining)) {
3237 memcpy(&r_cfg, cfg, sizeof(*cfg));
3238 if (rtnh->rtnh_ifindex)
3239 r_cfg.fc_ifindex = rtnh->rtnh_ifindex;
3240
3241 attrlen = rtnh_attrlen(rtnh);
3242 if (attrlen > 0) {
3243 struct nlattr *nla, *attrs = rtnh_attrs(rtnh);
3244
3245 nla = nla_find(attrs, attrlen, RTA_GATEWAY);
3246 if (nla) {
3247 nla_memcpy(&r_cfg.fc_gateway, nla, 16);
3248 r_cfg.fc_flags |= RTF_GATEWAY;
3249 }
3250 }
David Ahern333c4302017-05-21 10:12:04 -06003251 err = ip6_route_del(&r_cfg, extack);
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003252 if (err)
3253 last_err = err;
3254
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00003255 rtnh = rtnh_next(rtnh, &remaining);
3256 }
3257
3258 return last_err;
3259}
3260
David Ahernc21ef3e2017-04-16 09:48:24 -07003261static int inet6_rtm_delroute(struct sk_buff *skb, struct nlmsghdr *nlh,
3262 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003263{
Thomas Graf86872cb2006-08-22 00:01:08 -07003264 struct fib6_config cfg;
3265 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003266
David Ahern333c4302017-05-21 10:12:04 -06003267 err = rtm_to_fib6_config(skb, nlh, &cfg, extack);
Thomas Graf86872cb2006-08-22 00:01:08 -07003268 if (err < 0)
3269 return err;
3270
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00003271 if (cfg.fc_mp)
David Ahern333c4302017-05-21 10:12:04 -06003272 return ip6_route_multipath_del(&cfg, extack);
David Ahern0ae81332017-02-02 12:37:08 -08003273 else {
3274 cfg.fc_delete_all_nh = 1;
David Ahern333c4302017-05-21 10:12:04 -06003275 return ip6_route_del(&cfg, extack);
David Ahern0ae81332017-02-02 12:37:08 -08003276 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003277}
3278
David Ahernc21ef3e2017-04-16 09:48:24 -07003279static int inet6_rtm_newroute(struct sk_buff *skb, struct nlmsghdr *nlh,
3280 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003281{
Thomas Graf86872cb2006-08-22 00:01:08 -07003282 struct fib6_config cfg;
3283 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003284
David Ahern333c4302017-05-21 10:12:04 -06003285 err = rtm_to_fib6_config(skb, nlh, &cfg, extack);
Thomas Graf86872cb2006-08-22 00:01:08 -07003286 if (err < 0)
3287 return err;
3288
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00003289 if (cfg.fc_mp)
David Ahern333c4302017-05-21 10:12:04 -06003290 return ip6_route_multipath_add(&cfg, extack);
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00003291 else
David Ahern333c4302017-05-21 10:12:04 -06003292 return ip6_route_add(&cfg, extack);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003293}
3294
David Ahernbeb1afac52017-02-02 12:37:09 -08003295static size_t rt6_nlmsg_size(struct rt6_info *rt)
Thomas Graf339bf982006-11-10 14:10:15 -08003296{
David Ahernbeb1afac52017-02-02 12:37:09 -08003297 int nexthop_len = 0;
3298
3299 if (rt->rt6i_nsiblings) {
3300 nexthop_len = nla_total_size(0) /* RTA_MULTIPATH */
3301 + NLA_ALIGN(sizeof(struct rtnexthop))
3302 + nla_total_size(16) /* RTA_GATEWAY */
David Ahernbeb1afac52017-02-02 12:37:09 -08003303 + lwtunnel_get_encap_size(rt->dst.lwtstate);
3304
3305 nexthop_len *= rt->rt6i_nsiblings;
3306 }
3307
Thomas Graf339bf982006-11-10 14:10:15 -08003308 return NLMSG_ALIGN(sizeof(struct rtmsg))
3309 + nla_total_size(16) /* RTA_SRC */
3310 + nla_total_size(16) /* RTA_DST */
3311 + nla_total_size(16) /* RTA_GATEWAY */
3312 + nla_total_size(16) /* RTA_PREFSRC */
3313 + nla_total_size(4) /* RTA_TABLE */
3314 + nla_total_size(4) /* RTA_IIF */
3315 + nla_total_size(4) /* RTA_OIF */
3316 + nla_total_size(4) /* RTA_PRIORITY */
Noriaki TAKAMIYA6a2b9ce2007-01-23 22:09:41 -08003317 + RTAX_MAX * nla_total_size(4) /* RTA_METRICS */
Daniel Borkmannea697632015-01-05 23:57:47 +01003318 + nla_total_size(sizeof(struct rta_cacheinfo))
Lubomir Rintelc78ba6d2015-03-11 15:39:21 +01003319 + nla_total_size(TCP_CA_NAME_MAX) /* RTAX_CC_ALGO */
Roopa Prabhu19e42e42015-07-21 10:43:48 +02003320 + nla_total_size(1) /* RTA_PREF */
David Ahernbeb1afac52017-02-02 12:37:09 -08003321 + lwtunnel_get_encap_size(rt->dst.lwtstate)
3322 + nexthop_len;
3323}
3324
3325static int rt6_nexthop_info(struct sk_buff *skb, struct rt6_info *rt,
David Ahern5be083c2017-03-06 15:57:31 -08003326 unsigned int *flags, bool skip_oif)
David Ahernbeb1afac52017-02-02 12:37:09 -08003327{
3328 if (!netif_running(rt->dst.dev) || !netif_carrier_ok(rt->dst.dev)) {
3329 *flags |= RTNH_F_LINKDOWN;
3330 if (rt->rt6i_idev->cnf.ignore_routes_with_linkdown)
3331 *flags |= RTNH_F_DEAD;
3332 }
3333
3334 if (rt->rt6i_flags & RTF_GATEWAY) {
3335 if (nla_put_in6_addr(skb, RTA_GATEWAY, &rt->rt6i_gateway) < 0)
3336 goto nla_put_failure;
3337 }
3338
David Ahern5be083c2017-03-06 15:57:31 -08003339 /* not needed for multipath encoding b/c it has a rtnexthop struct */
3340 if (!skip_oif && rt->dst.dev &&
David Ahernbeb1afac52017-02-02 12:37:09 -08003341 nla_put_u32(skb, RTA_OIF, rt->dst.dev->ifindex))
3342 goto nla_put_failure;
3343
3344 if (rt->dst.lwtstate &&
3345 lwtunnel_fill_encap(skb, rt->dst.lwtstate) < 0)
3346 goto nla_put_failure;
3347
3348 return 0;
3349
3350nla_put_failure:
3351 return -EMSGSIZE;
3352}
3353
David Ahern5be083c2017-03-06 15:57:31 -08003354/* add multipath next hop */
David Ahernbeb1afac52017-02-02 12:37:09 -08003355static int rt6_add_nexthop(struct sk_buff *skb, struct rt6_info *rt)
3356{
3357 struct rtnexthop *rtnh;
3358 unsigned int flags = 0;
3359
3360 rtnh = nla_reserve_nohdr(skb, sizeof(*rtnh));
3361 if (!rtnh)
3362 goto nla_put_failure;
3363
3364 rtnh->rtnh_hops = 0;
3365 rtnh->rtnh_ifindex = rt->dst.dev ? rt->dst.dev->ifindex : 0;
3366
David Ahern5be083c2017-03-06 15:57:31 -08003367 if (rt6_nexthop_info(skb, rt, &flags, true) < 0)
David Ahernbeb1afac52017-02-02 12:37:09 -08003368 goto nla_put_failure;
3369
3370 rtnh->rtnh_flags = flags;
3371
3372 /* length of rtnetlink header + attributes */
3373 rtnh->rtnh_len = nlmsg_get_pos(skb) - (void *)rtnh;
3374
3375 return 0;
3376
3377nla_put_failure:
3378 return -EMSGSIZE;
Thomas Graf339bf982006-11-10 14:10:15 -08003379}
3380
Brian Haley191cd582008-08-14 15:33:21 -07003381static int rt6_fill_node(struct net *net,
3382 struct sk_buff *skb, struct rt6_info *rt,
Jamal Hadi Salim0d51aa82005-06-21 13:51:04 -07003383 struct in6_addr *dst, struct in6_addr *src,
Eric W. Biederman15e47302012-09-07 20:12:54 +00003384 int iif, int type, u32 portid, u32 seq,
David Ahernf8cfe2c2017-01-17 15:51:08 -08003385 unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003386{
Martin KaFai Lau4b32b5a2015-04-28 13:03:06 -07003387 u32 metrics[RTAX_MAX];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003388 struct rtmsg *rtm;
Thomas Graf2d7202b2006-08-22 00:01:27 -07003389 struct nlmsghdr *nlh;
Thomas Grafe3703b32006-11-27 09:27:07 -08003390 long expires;
Patrick McHardy9e762a42006-08-10 23:09:48 -07003391 u32 table;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003392
Eric W. Biederman15e47302012-09-07 20:12:54 +00003393 nlh = nlmsg_put(skb, portid, seq, type, sizeof(*rtm), flags);
David S. Miller38308472011-12-03 18:02:47 -05003394 if (!nlh)
Patrick McHardy26932562007-01-31 23:16:40 -08003395 return -EMSGSIZE;
Thomas Graf2d7202b2006-08-22 00:01:27 -07003396
3397 rtm = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003398 rtm->rtm_family = AF_INET6;
3399 rtm->rtm_dst_len = rt->rt6i_dst.plen;
3400 rtm->rtm_src_len = rt->rt6i_src.plen;
3401 rtm->rtm_tos = 0;
Thomas Grafc71099a2006-08-04 23:20:06 -07003402 if (rt->rt6i_table)
Patrick McHardy9e762a42006-08-10 23:09:48 -07003403 table = rt->rt6i_table->tb6_id;
Thomas Grafc71099a2006-08-04 23:20:06 -07003404 else
Patrick McHardy9e762a42006-08-10 23:09:48 -07003405 table = RT6_TABLE_UNSPEC;
3406 rtm->rtm_table = table;
David S. Millerc78679e2012-04-01 20:27:33 -04003407 if (nla_put_u32(skb, RTA_TABLE, table))
3408 goto nla_put_failure;
Nicolas Dichtelef2c7d72012-09-05 02:12:42 +00003409 if (rt->rt6i_flags & RTF_REJECT) {
3410 switch (rt->dst.error) {
3411 case -EINVAL:
3412 rtm->rtm_type = RTN_BLACKHOLE;
3413 break;
3414 case -EACCES:
3415 rtm->rtm_type = RTN_PROHIBIT;
3416 break;
Nicolas Dichtelb4949ab2012-09-06 05:53:35 +00003417 case -EAGAIN:
3418 rtm->rtm_type = RTN_THROW;
3419 break;
Nicolas Dichtelef2c7d72012-09-05 02:12:42 +00003420 default:
3421 rtm->rtm_type = RTN_UNREACHABLE;
3422 break;
3423 }
3424 }
David S. Miller38308472011-12-03 18:02:47 -05003425 else if (rt->rt6i_flags & RTF_LOCAL)
Maciej Żenczykowskiab79ad12010-09-27 00:07:02 +00003426 rtm->rtm_type = RTN_LOCAL;
David Ahern4ee39732017-03-15 18:14:33 -07003427 else if (rt->rt6i_flags & RTF_ANYCAST)
3428 rtm->rtm_type = RTN_ANYCAST;
David S. Millerd1918542011-12-28 20:19:20 -05003429 else if (rt->dst.dev && (rt->dst.dev->flags & IFF_LOOPBACK))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003430 rtm->rtm_type = RTN_LOCAL;
3431 else
3432 rtm->rtm_type = RTN_UNICAST;
3433 rtm->rtm_flags = 0;
3434 rtm->rtm_scope = RT_SCOPE_UNIVERSE;
3435 rtm->rtm_protocol = rt->rt6i_protocol;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003436
David S. Miller38308472011-12-03 18:02:47 -05003437 if (rt->rt6i_flags & RTF_CACHE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003438 rtm->rtm_flags |= RTM_F_CLONED;
3439
3440 if (dst) {
Jiri Benc930345e2015-03-29 16:59:25 +02003441 if (nla_put_in6_addr(skb, RTA_DST, dst))
David S. Millerc78679e2012-04-01 20:27:33 -04003442 goto nla_put_failure;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003443 rtm->rtm_dst_len = 128;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003444 } else if (rtm->rtm_dst_len)
Jiri Benc930345e2015-03-29 16:59:25 +02003445 if (nla_put_in6_addr(skb, RTA_DST, &rt->rt6i_dst.addr))
David S. Millerc78679e2012-04-01 20:27:33 -04003446 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003447#ifdef CONFIG_IPV6_SUBTREES
3448 if (src) {
Jiri Benc930345e2015-03-29 16:59:25 +02003449 if (nla_put_in6_addr(skb, RTA_SRC, src))
David S. Millerc78679e2012-04-01 20:27:33 -04003450 goto nla_put_failure;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003451 rtm->rtm_src_len = 128;
David S. Millerc78679e2012-04-01 20:27:33 -04003452 } else if (rtm->rtm_src_len &&
Jiri Benc930345e2015-03-29 16:59:25 +02003453 nla_put_in6_addr(skb, RTA_SRC, &rt->rt6i_src.addr))
David S. Millerc78679e2012-04-01 20:27:33 -04003454 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003455#endif
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09003456 if (iif) {
3457#ifdef CONFIG_IPV6_MROUTE
3458 if (ipv6_addr_is_multicast(&rt->rt6i_dst.addr)) {
David Ahernfd61c6b2017-01-17 15:51:07 -08003459 int err = ip6mr_get_route(net, skb, rtm, portid);
Nikolay Aleksandrov2cf75072016-09-25 23:08:31 +02003460
David Ahernfd61c6b2017-01-17 15:51:07 -08003461 if (err == 0)
3462 return 0;
3463 if (err < 0)
3464 goto nla_put_failure;
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09003465 } else
3466#endif
David S. Millerc78679e2012-04-01 20:27:33 -04003467 if (nla_put_u32(skb, RTA_IIF, iif))
3468 goto nla_put_failure;
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09003469 } else if (dst) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003470 struct in6_addr saddr_buf;
David S. Millerc78679e2012-04-01 20:27:33 -04003471 if (ip6_route_get_saddr(net, rt, dst, 0, &saddr_buf) == 0 &&
Jiri Benc930345e2015-03-29 16:59:25 +02003472 nla_put_in6_addr(skb, RTA_PREFSRC, &saddr_buf))
David S. Millerc78679e2012-04-01 20:27:33 -04003473 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003474 }
Thomas Graf2d7202b2006-08-22 00:01:27 -07003475
Daniel Walterc3968a82011-04-13 21:10:57 +00003476 if (rt->rt6i_prefsrc.plen) {
3477 struct in6_addr saddr_buf;
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00003478 saddr_buf = rt->rt6i_prefsrc.addr;
Jiri Benc930345e2015-03-29 16:59:25 +02003479 if (nla_put_in6_addr(skb, RTA_PREFSRC, &saddr_buf))
David S. Millerc78679e2012-04-01 20:27:33 -04003480 goto nla_put_failure;
Daniel Walterc3968a82011-04-13 21:10:57 +00003481 }
3482
Martin KaFai Lau4b32b5a2015-04-28 13:03:06 -07003483 memcpy(metrics, dst_metrics_ptr(&rt->dst), sizeof(metrics));
3484 if (rt->rt6i_pmtu)
3485 metrics[RTAX_MTU - 1] = rt->rt6i_pmtu;
3486 if (rtnetlink_put_metrics(skb, metrics) < 0)
Thomas Graf2d7202b2006-08-22 00:01:27 -07003487 goto nla_put_failure;
3488
David S. Millerc78679e2012-04-01 20:27:33 -04003489 if (nla_put_u32(skb, RTA_PRIORITY, rt->rt6i_metric))
3490 goto nla_put_failure;
Li Wei82539472012-07-29 16:01:30 +00003491
David Ahernbeb1afac52017-02-02 12:37:09 -08003492 /* For multipath routes, walk the siblings list and add
3493 * each as a nexthop within RTA_MULTIPATH.
3494 */
3495 if (rt->rt6i_nsiblings) {
3496 struct rt6_info *sibling, *next_sibling;
3497 struct nlattr *mp;
3498
3499 mp = nla_nest_start(skb, RTA_MULTIPATH);
3500 if (!mp)
3501 goto nla_put_failure;
3502
3503 if (rt6_add_nexthop(skb, rt) < 0)
3504 goto nla_put_failure;
3505
3506 list_for_each_entry_safe(sibling, next_sibling,
3507 &rt->rt6i_siblings, rt6i_siblings) {
3508 if (rt6_add_nexthop(skb, sibling) < 0)
3509 goto nla_put_failure;
3510 }
3511
3512 nla_nest_end(skb, mp);
3513 } else {
David Ahern5be083c2017-03-06 15:57:31 -08003514 if (rt6_nexthop_info(skb, rt, &rtm->rtm_flags, false) < 0)
David Ahernbeb1afac52017-02-02 12:37:09 -08003515 goto nla_put_failure;
3516 }
3517
Li Wei82539472012-07-29 16:01:30 +00003518 expires = (rt->rt6i_flags & RTF_EXPIRES) ? rt->dst.expires - jiffies : 0;
YOSHIFUJI Hideaki69cdf8f2008-05-19 16:55:13 -07003519
David S. Miller87a50692012-07-10 05:06:14 -07003520 if (rtnl_put_cacheinfo(skb, &rt->dst, 0, expires, rt->dst.error) < 0)
Thomas Grafe3703b32006-11-27 09:27:07 -08003521 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003522
Lubomir Rintelc78ba6d2015-03-11 15:39:21 +01003523 if (nla_put_u8(skb, RTA_PREF, IPV6_EXTRACT_PREF(rt->rt6i_flags)))
3524 goto nla_put_failure;
3525
Roopa Prabhu19e42e42015-07-21 10:43:48 +02003526
Johannes Berg053c0952015-01-16 22:09:00 +01003527 nlmsg_end(skb, nlh);
3528 return 0;
Thomas Graf2d7202b2006-08-22 00:01:27 -07003529
3530nla_put_failure:
Patrick McHardy26932562007-01-31 23:16:40 -08003531 nlmsg_cancel(skb, nlh);
3532 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003533}
3534
Patrick McHardy1b43af52006-08-10 23:11:17 -07003535int rt6_dump_route(struct rt6_info *rt, void *p_arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003536{
3537 struct rt6_rtnl_dump_arg *arg = (struct rt6_rtnl_dump_arg *) p_arg;
David Ahern1f17e2f2017-01-26 13:54:08 -08003538 struct net *net = arg->net;
3539
3540 if (rt == net->ipv6.ip6_null_entry)
3541 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003542
Thomas Graf2d7202b2006-08-22 00:01:27 -07003543 if (nlmsg_len(arg->cb->nlh) >= sizeof(struct rtmsg)) {
3544 struct rtmsg *rtm = nlmsg_data(arg->cb->nlh);
David Ahernf8cfe2c2017-01-17 15:51:08 -08003545
3546 /* user wants prefix routes only */
3547 if (rtm->rtm_flags & RTM_F_PREFIX &&
3548 !(rt->rt6i_flags & RTF_PREFIX_RT)) {
3549 /* success since this is not a prefix route */
3550 return 1;
3551 }
3552 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003553
David Ahern1f17e2f2017-01-26 13:54:08 -08003554 return rt6_fill_node(net,
Brian Haley191cd582008-08-14 15:33:21 -07003555 arg->skb, rt, NULL, NULL, 0, RTM_NEWROUTE,
Eric W. Biederman15e47302012-09-07 20:12:54 +00003556 NETLINK_CB(arg->cb->skb).portid, arg->cb->nlh->nlmsg_seq,
David Ahernf8cfe2c2017-01-17 15:51:08 -08003557 NLM_F_MULTI);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003558}
3559
David Ahernc21ef3e2017-04-16 09:48:24 -07003560static int inet6_rtm_getroute(struct sk_buff *in_skb, struct nlmsghdr *nlh,
3561 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003562{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09003563 struct net *net = sock_net(in_skb->sk);
Thomas Grafab364a62006-08-22 00:01:47 -07003564 struct nlattr *tb[RTA_MAX+1];
Roopa Prabhu18c3a612017-05-25 10:42:40 -07003565 int err, iif = 0, oif = 0;
3566 struct dst_entry *dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003567 struct rt6_info *rt;
Thomas Grafab364a62006-08-22 00:01:47 -07003568 struct sk_buff *skb;
3569 struct rtmsg *rtm;
David S. Miller4c9483b2011-03-12 16:22:43 -05003570 struct flowi6 fl6;
Roopa Prabhu18c3a612017-05-25 10:42:40 -07003571 bool fibmatch;
Thomas Grafab364a62006-08-22 00:01:47 -07003572
Johannes Bergfceb6432017-04-12 14:34:07 +02003573 err = nlmsg_parse(nlh, sizeof(*rtm), tb, RTA_MAX, rtm_ipv6_policy,
David Ahernc21ef3e2017-04-16 09:48:24 -07003574 extack);
Thomas Grafab364a62006-08-22 00:01:47 -07003575 if (err < 0)
3576 goto errout;
3577
3578 err = -EINVAL;
David S. Miller4c9483b2011-03-12 16:22:43 -05003579 memset(&fl6, 0, sizeof(fl6));
Hannes Frederic Sowa38b70972016-06-11 20:08:19 +02003580 rtm = nlmsg_data(nlh);
3581 fl6.flowlabel = ip6_make_flowinfo(rtm->rtm_tos, 0);
Roopa Prabhu18c3a612017-05-25 10:42:40 -07003582 fibmatch = !!(rtm->rtm_flags & RTM_F_FIB_MATCH);
Thomas Grafab364a62006-08-22 00:01:47 -07003583
3584 if (tb[RTA_SRC]) {
3585 if (nla_len(tb[RTA_SRC]) < sizeof(struct in6_addr))
3586 goto errout;
3587
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00003588 fl6.saddr = *(struct in6_addr *)nla_data(tb[RTA_SRC]);
Thomas Grafab364a62006-08-22 00:01:47 -07003589 }
3590
3591 if (tb[RTA_DST]) {
3592 if (nla_len(tb[RTA_DST]) < sizeof(struct in6_addr))
3593 goto errout;
3594
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00003595 fl6.daddr = *(struct in6_addr *)nla_data(tb[RTA_DST]);
Thomas Grafab364a62006-08-22 00:01:47 -07003596 }
3597
3598 if (tb[RTA_IIF])
3599 iif = nla_get_u32(tb[RTA_IIF]);
3600
3601 if (tb[RTA_OIF])
Shmulik Ladkani72331bc2012-04-01 04:03:45 +00003602 oif = nla_get_u32(tb[RTA_OIF]);
Thomas Grafab364a62006-08-22 00:01:47 -07003603
Lorenzo Colitti2e47b292014-05-15 16:38:41 -07003604 if (tb[RTA_MARK])
3605 fl6.flowi6_mark = nla_get_u32(tb[RTA_MARK]);
3606
Lorenzo Colitti622ec2c2016-11-04 02:23:42 +09003607 if (tb[RTA_UID])
3608 fl6.flowi6_uid = make_kuid(current_user_ns(),
3609 nla_get_u32(tb[RTA_UID]));
3610 else
3611 fl6.flowi6_uid = iif ? INVALID_UID : current_uid();
3612
Thomas Grafab364a62006-08-22 00:01:47 -07003613 if (iif) {
3614 struct net_device *dev;
Shmulik Ladkani72331bc2012-04-01 04:03:45 +00003615 int flags = 0;
3616
Daniel Lezcano55786892008-03-04 13:47:47 -08003617 dev = __dev_get_by_index(net, iif);
Thomas Grafab364a62006-08-22 00:01:47 -07003618 if (!dev) {
3619 err = -ENODEV;
3620 goto errout;
3621 }
Shmulik Ladkani72331bc2012-04-01 04:03:45 +00003622
3623 fl6.flowi6_iif = iif;
3624
3625 if (!ipv6_addr_any(&fl6.saddr))
3626 flags |= RT6_LOOKUP_F_HAS_SADDR;
3627
Roopa Prabhu18c3a612017-05-25 10:42:40 -07003628 if (!fibmatch)
3629 dst = ip6_route_input_lookup(net, dev, &fl6, flags);
Shmulik Ladkani72331bc2012-04-01 04:03:45 +00003630 } else {
3631 fl6.flowi6_oif = oif;
3632
Roopa Prabhu18c3a612017-05-25 10:42:40 -07003633 if (!fibmatch)
3634 dst = ip6_route_output(net, NULL, &fl6);
3635 }
3636
3637 if (fibmatch)
3638 dst = ip6_route_lookup(net, &fl6, 0);
3639
3640 rt = container_of(dst, struct rt6_info, dst);
3641 if (rt->dst.error) {
3642 err = rt->dst.error;
3643 ip6_rt_put(rt);
3644 goto errout;
Thomas Grafab364a62006-08-22 00:01:47 -07003645 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003646
WANG Cong9d6acb32017-03-01 20:48:39 -08003647 if (rt == net->ipv6.ip6_null_entry) {
3648 err = rt->dst.error;
3649 ip6_rt_put(rt);
3650 goto errout;
3651 }
3652
Linus Torvalds1da177e2005-04-16 15:20:36 -07003653 skb = alloc_skb(NLMSG_GOODSIZE, GFP_KERNEL);
David S. Miller38308472011-12-03 18:02:47 -05003654 if (!skb) {
Amerigo Wang94e187c2012-10-29 00:13:19 +00003655 ip6_rt_put(rt);
Thomas Grafab364a62006-08-22 00:01:47 -07003656 err = -ENOBUFS;
3657 goto errout;
3658 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003659
Changli Gaod8d1f302010-06-10 23:31:35 -07003660 skb_dst_set(skb, &rt->dst);
Roopa Prabhu18c3a612017-05-25 10:42:40 -07003661 if (fibmatch)
3662 err = rt6_fill_node(net, skb, rt, NULL, NULL, iif,
3663 RTM_NEWROUTE, NETLINK_CB(in_skb).portid,
3664 nlh->nlmsg_seq, 0);
3665 else
3666 err = rt6_fill_node(net, skb, rt, &fl6.daddr, &fl6.saddr, iif,
3667 RTM_NEWROUTE, NETLINK_CB(in_skb).portid,
3668 nlh->nlmsg_seq, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003669 if (err < 0) {
Thomas Grafab364a62006-08-22 00:01:47 -07003670 kfree_skb(skb);
3671 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003672 }
3673
Eric W. Biederman15e47302012-09-07 20:12:54 +00003674 err = rtnl_unicast(skb, net, NETLINK_CB(in_skb).portid);
Thomas Grafab364a62006-08-22 00:01:47 -07003675errout:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003676 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003677}
3678
Roopa Prabhu37a1d362015-09-13 10:18:33 -07003679void inet6_rt_notify(int event, struct rt6_info *rt, struct nl_info *info,
3680 unsigned int nlm_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003681{
3682 struct sk_buff *skb;
Daniel Lezcano55786892008-03-04 13:47:47 -08003683 struct net *net = info->nl_net;
Denis V. Lunev528c4ce2007-12-13 09:45:12 -08003684 u32 seq;
3685 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003686
Denis V. Lunev528c4ce2007-12-13 09:45:12 -08003687 err = -ENOBUFS;
David S. Miller38308472011-12-03 18:02:47 -05003688 seq = info->nlh ? info->nlh->nlmsg_seq : 0;
Thomas Graf86872cb2006-08-22 00:01:08 -07003689
Roopa Prabhu19e42e42015-07-21 10:43:48 +02003690 skb = nlmsg_new(rt6_nlmsg_size(rt), gfp_any());
David S. Miller38308472011-12-03 18:02:47 -05003691 if (!skb)
Thomas Graf21713eb2006-08-15 00:35:24 -07003692 goto errout;
3693
Brian Haley191cd582008-08-14 15:33:21 -07003694 err = rt6_fill_node(net, skb, rt, NULL, NULL, 0,
David Ahernf8cfe2c2017-01-17 15:51:08 -08003695 event, info->portid, seq, nlm_flags);
Patrick McHardy26932562007-01-31 23:16:40 -08003696 if (err < 0) {
3697 /* -EMSGSIZE implies BUG in rt6_nlmsg_size() */
3698 WARN_ON(err == -EMSGSIZE);
3699 kfree_skb(skb);
3700 goto errout;
3701 }
Eric W. Biederman15e47302012-09-07 20:12:54 +00003702 rtnl_notify(skb, net, info->portid, RTNLGRP_IPV6_ROUTE,
Pablo Neira Ayuso1ce85fe2009-02-24 23:18:28 -08003703 info->nlh, gfp_any());
3704 return;
Thomas Graf21713eb2006-08-15 00:35:24 -07003705errout:
3706 if (err < 0)
Daniel Lezcano55786892008-03-04 13:47:47 -08003707 rtnl_set_sk_err(net, RTNLGRP_IPV6_ROUTE, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003708}
3709
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003710static int ip6_route_dev_notify(struct notifier_block *this,
Jiri Pirko351638e2013-05-28 01:30:21 +00003711 unsigned long event, void *ptr)
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003712{
Jiri Pirko351638e2013-05-28 01:30:21 +00003713 struct net_device *dev = netdev_notifier_info_to_dev(ptr);
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09003714 struct net *net = dev_net(dev);
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003715
WANG Cong242d3a42017-05-08 10:12:13 -07003716 if (!(dev->flags & IFF_LOOPBACK))
3717 return NOTIFY_OK;
3718
3719 if (event == NETDEV_REGISTER) {
Changli Gaod8d1f302010-06-10 23:31:35 -07003720 net->ipv6.ip6_null_entry->dst.dev = dev;
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003721 net->ipv6.ip6_null_entry->rt6i_idev = in6_dev_get(dev);
3722#ifdef CONFIG_IPV6_MULTIPLE_TABLES
Changli Gaod8d1f302010-06-10 23:31:35 -07003723 net->ipv6.ip6_prohibit_entry->dst.dev = dev;
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003724 net->ipv6.ip6_prohibit_entry->rt6i_idev = in6_dev_get(dev);
Changli Gaod8d1f302010-06-10 23:31:35 -07003725 net->ipv6.ip6_blk_hole_entry->dst.dev = dev;
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003726 net->ipv6.ip6_blk_hole_entry->rt6i_idev = in6_dev_get(dev);
3727#endif
WANG Cong76da0702017-06-20 11:42:27 -07003728 } else if (event == NETDEV_UNREGISTER &&
3729 dev->reg_state != NETREG_UNREGISTERED) {
3730 /* NETDEV_UNREGISTER could be fired for multiple times by
3731 * netdev_wait_allrefs(). Make sure we only call this once.
3732 */
Eric Dumazet12d94a82017-08-15 04:09:51 -07003733 in6_dev_put_clear(&net->ipv6.ip6_null_entry->rt6i_idev);
WANG Cong242d3a42017-05-08 10:12:13 -07003734#ifdef CONFIG_IPV6_MULTIPLE_TABLES
Eric Dumazet12d94a82017-08-15 04:09:51 -07003735 in6_dev_put_clear(&net->ipv6.ip6_prohibit_entry->rt6i_idev);
3736 in6_dev_put_clear(&net->ipv6.ip6_blk_hole_entry->rt6i_idev);
WANG Cong242d3a42017-05-08 10:12:13 -07003737#endif
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003738 }
3739
3740 return NOTIFY_OK;
3741}
3742
Linus Torvalds1da177e2005-04-16 15:20:36 -07003743/*
3744 * /proc
3745 */
3746
3747#ifdef CONFIG_PROC_FS
3748
Alexey Dobriyan33120b32007-11-06 05:27:11 -08003749static const struct file_operations ipv6_route_proc_fops = {
3750 .owner = THIS_MODULE,
3751 .open = ipv6_route_open,
3752 .read = seq_read,
3753 .llseek = seq_lseek,
Hannes Frederic Sowa8d2ca1d2013-09-21 16:55:59 +02003754 .release = seq_release_net,
Alexey Dobriyan33120b32007-11-06 05:27:11 -08003755};
3756
Linus Torvalds1da177e2005-04-16 15:20:36 -07003757static int rt6_stats_seq_show(struct seq_file *seq, void *v)
3758{
Daniel Lezcano69ddb802008-03-04 13:46:23 -08003759 struct net *net = (struct net *)seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003760 seq_printf(seq, "%04x %04x %04x %04x %04x %04x %04x\n",
Daniel Lezcano69ddb802008-03-04 13:46:23 -08003761 net->ipv6.rt6_stats->fib_nodes,
3762 net->ipv6.rt6_stats->fib_route_nodes,
3763 net->ipv6.rt6_stats->fib_rt_alloc,
3764 net->ipv6.rt6_stats->fib_rt_entries,
3765 net->ipv6.rt6_stats->fib_rt_cache,
Eric Dumazetfc66f952010-10-08 06:37:34 +00003766 dst_entries_get_slow(&net->ipv6.ip6_dst_ops),
Daniel Lezcano69ddb802008-03-04 13:46:23 -08003767 net->ipv6.rt6_stats->fib_discarded_routes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003768
3769 return 0;
3770}
3771
3772static int rt6_stats_seq_open(struct inode *inode, struct file *file)
3773{
Pavel Emelyanovde05c552008-07-18 04:07:21 -07003774 return single_open_net(inode, file, rt6_stats_seq_show);
Daniel Lezcano69ddb802008-03-04 13:46:23 -08003775}
3776
Arjan van de Ven9a321442007-02-12 00:55:35 -08003777static const struct file_operations rt6_stats_seq_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003778 .owner = THIS_MODULE,
3779 .open = rt6_stats_seq_open,
3780 .read = seq_read,
3781 .llseek = seq_lseek,
Pavel Emelyanovb6fcbdb2008-07-18 04:07:44 -07003782 .release = single_release_net,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003783};
3784#endif /* CONFIG_PROC_FS */
3785
3786#ifdef CONFIG_SYSCTL
3787
Linus Torvalds1da177e2005-04-16 15:20:36 -07003788static
Joe Perchesfe2c6332013-06-11 23:04:25 -07003789int ipv6_sysctl_rtcache_flush(struct ctl_table *ctl, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003790 void __user *buffer, size_t *lenp, loff_t *ppos)
3791{
Lucian Adrian Grijincuc486da32011-02-24 19:48:03 +00003792 struct net *net;
3793 int delay;
3794 if (!write)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003795 return -EINVAL;
Lucian Adrian Grijincuc486da32011-02-24 19:48:03 +00003796
3797 net = (struct net *)ctl->extra1;
3798 delay = net->ipv6.sysctl.flush_delay;
3799 proc_dointvec(ctl, write, buffer, lenp, ppos);
Michal Kubeček2ac3ac82013-08-01 10:04:14 +02003800 fib6_run_gc(delay <= 0 ? 0 : (unsigned long)delay, net, delay > 0);
Lucian Adrian Grijincuc486da32011-02-24 19:48:03 +00003801 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003802}
3803
Joe Perchesfe2c6332013-06-11 23:04:25 -07003804struct ctl_table ipv6_route_table_template[] = {
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003805 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003806 .procname = "flush",
Daniel Lezcano49905092008-01-10 03:01:01 -08003807 .data = &init_net.ipv6.sysctl.flush_delay,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003808 .maxlen = sizeof(int),
Dave Jones89c8b3a12005-04-28 12:11:49 -07003809 .mode = 0200,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08003810 .proc_handler = ipv6_sysctl_rtcache_flush
Linus Torvalds1da177e2005-04-16 15:20:36 -07003811 },
3812 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003813 .procname = "gc_thresh",
Daniel Lezcano9a7ec3a2008-03-04 13:48:53 -08003814 .data = &ip6_dst_ops_template.gc_thresh,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003815 .maxlen = sizeof(int),
3816 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08003817 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003818 },
3819 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003820 .procname = "max_size",
Daniel Lezcano49905092008-01-10 03:01:01 -08003821 .data = &init_net.ipv6.sysctl.ip6_rt_max_size,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003822 .maxlen = sizeof(int),
3823 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08003824 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003825 },
3826 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003827 .procname = "gc_min_interval",
Daniel Lezcano49905092008-01-10 03:01:01 -08003828 .data = &init_net.ipv6.sysctl.ip6_rt_gc_min_interval,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003829 .maxlen = sizeof(int),
3830 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08003831 .proc_handler = proc_dointvec_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003832 },
3833 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003834 .procname = "gc_timeout",
Daniel Lezcano49905092008-01-10 03:01:01 -08003835 .data = &init_net.ipv6.sysctl.ip6_rt_gc_timeout,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003836 .maxlen = sizeof(int),
3837 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08003838 .proc_handler = proc_dointvec_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003839 },
3840 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003841 .procname = "gc_interval",
Daniel Lezcano49905092008-01-10 03:01:01 -08003842 .data = &init_net.ipv6.sysctl.ip6_rt_gc_interval,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003843 .maxlen = sizeof(int),
3844 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08003845 .proc_handler = proc_dointvec_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003846 },
3847 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003848 .procname = "gc_elasticity",
Daniel Lezcano49905092008-01-10 03:01:01 -08003849 .data = &init_net.ipv6.sysctl.ip6_rt_gc_elasticity,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003850 .maxlen = sizeof(int),
3851 .mode = 0644,
Min Zhangf3d3f612010-08-14 22:42:51 -07003852 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003853 },
3854 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003855 .procname = "mtu_expires",
Daniel Lezcano49905092008-01-10 03:01:01 -08003856 .data = &init_net.ipv6.sysctl.ip6_rt_mtu_expires,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003857 .maxlen = sizeof(int),
3858 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08003859 .proc_handler = proc_dointvec_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003860 },
3861 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003862 .procname = "min_adv_mss",
Daniel Lezcano49905092008-01-10 03:01:01 -08003863 .data = &init_net.ipv6.sysctl.ip6_rt_min_advmss,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003864 .maxlen = sizeof(int),
3865 .mode = 0644,
Min Zhangf3d3f612010-08-14 22:42:51 -07003866 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003867 },
3868 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003869 .procname = "gc_min_interval_ms",
Daniel Lezcano49905092008-01-10 03:01:01 -08003870 .data = &init_net.ipv6.sysctl.ip6_rt_gc_min_interval,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003871 .maxlen = sizeof(int),
3872 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08003873 .proc_handler = proc_dointvec_ms_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003874 },
Eric W. Biedermanf8572d82009-11-05 13:32:03 -08003875 { }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003876};
3877
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00003878struct ctl_table * __net_init ipv6_route_sysctl_init(struct net *net)
Daniel Lezcano760f2d02008-01-10 02:53:43 -08003879{
3880 struct ctl_table *table;
3881
3882 table = kmemdup(ipv6_route_table_template,
3883 sizeof(ipv6_route_table_template),
3884 GFP_KERNEL);
YOSHIFUJI Hideaki5ee09102008-02-28 00:24:28 +09003885
3886 if (table) {
3887 table[0].data = &net->ipv6.sysctl.flush_delay;
Lucian Adrian Grijincuc486da32011-02-24 19:48:03 +00003888 table[0].extra1 = net;
Alexey Dobriyan86393e52009-08-29 01:34:49 +00003889 table[1].data = &net->ipv6.ip6_dst_ops.gc_thresh;
YOSHIFUJI Hideaki5ee09102008-02-28 00:24:28 +09003890 table[2].data = &net->ipv6.sysctl.ip6_rt_max_size;
3891 table[3].data = &net->ipv6.sysctl.ip6_rt_gc_min_interval;
3892 table[4].data = &net->ipv6.sysctl.ip6_rt_gc_timeout;
3893 table[5].data = &net->ipv6.sysctl.ip6_rt_gc_interval;
3894 table[6].data = &net->ipv6.sysctl.ip6_rt_gc_elasticity;
3895 table[7].data = &net->ipv6.sysctl.ip6_rt_mtu_expires;
3896 table[8].data = &net->ipv6.sysctl.ip6_rt_min_advmss;
Alexey Dobriyan9c69fab2009-12-18 20:11:03 -08003897 table[9].data = &net->ipv6.sysctl.ip6_rt_gc_min_interval;
Eric W. Biederman464dc802012-11-16 03:02:59 +00003898
3899 /* Don't export sysctls to unprivileged users */
3900 if (net->user_ns != &init_user_ns)
3901 table[0].procname = NULL;
YOSHIFUJI Hideaki5ee09102008-02-28 00:24:28 +09003902 }
3903
Daniel Lezcano760f2d02008-01-10 02:53:43 -08003904 return table;
3905}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003906#endif
3907
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00003908static int __net_init ip6_route_net_init(struct net *net)
Daniel Lezcanocdb18762008-03-04 13:45:33 -08003909{
Pavel Emelyanov633d424b2008-04-21 14:25:23 -07003910 int ret = -ENOMEM;
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003911
Alexey Dobriyan86393e52009-08-29 01:34:49 +00003912 memcpy(&net->ipv6.ip6_dst_ops, &ip6_dst_ops_template,
3913 sizeof(net->ipv6.ip6_dst_ops));
Benjamin Theryf2fc6a52008-03-04 13:49:23 -08003914
Eric Dumazetfc66f952010-10-08 06:37:34 +00003915 if (dst_entries_init(&net->ipv6.ip6_dst_ops) < 0)
3916 goto out_ip6_dst_ops;
3917
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003918 net->ipv6.ip6_null_entry = kmemdup(&ip6_null_entry_template,
3919 sizeof(*net->ipv6.ip6_null_entry),
3920 GFP_KERNEL);
3921 if (!net->ipv6.ip6_null_entry)
Eric Dumazetfc66f952010-10-08 06:37:34 +00003922 goto out_ip6_dst_entries;
Changli Gaod8d1f302010-06-10 23:31:35 -07003923 net->ipv6.ip6_null_entry->dst.path =
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003924 (struct dst_entry *)net->ipv6.ip6_null_entry;
Changli Gaod8d1f302010-06-10 23:31:35 -07003925 net->ipv6.ip6_null_entry->dst.ops = &net->ipv6.ip6_dst_ops;
David S. Miller62fa8a82011-01-26 20:51:05 -08003926 dst_init_metrics(&net->ipv6.ip6_null_entry->dst,
3927 ip6_template_metrics, true);
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003928
3929#ifdef CONFIG_IPV6_MULTIPLE_TABLES
3930 net->ipv6.ip6_prohibit_entry = kmemdup(&ip6_prohibit_entry_template,
3931 sizeof(*net->ipv6.ip6_prohibit_entry),
3932 GFP_KERNEL);
Peter Zijlstra68fffc62008-10-07 14:12:10 -07003933 if (!net->ipv6.ip6_prohibit_entry)
3934 goto out_ip6_null_entry;
Changli Gaod8d1f302010-06-10 23:31:35 -07003935 net->ipv6.ip6_prohibit_entry->dst.path =
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003936 (struct dst_entry *)net->ipv6.ip6_prohibit_entry;
Changli Gaod8d1f302010-06-10 23:31:35 -07003937 net->ipv6.ip6_prohibit_entry->dst.ops = &net->ipv6.ip6_dst_ops;
David S. Miller62fa8a82011-01-26 20:51:05 -08003938 dst_init_metrics(&net->ipv6.ip6_prohibit_entry->dst,
3939 ip6_template_metrics, true);
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003940
3941 net->ipv6.ip6_blk_hole_entry = kmemdup(&ip6_blk_hole_entry_template,
3942 sizeof(*net->ipv6.ip6_blk_hole_entry),
3943 GFP_KERNEL);
Peter Zijlstra68fffc62008-10-07 14:12:10 -07003944 if (!net->ipv6.ip6_blk_hole_entry)
3945 goto out_ip6_prohibit_entry;
Changli Gaod8d1f302010-06-10 23:31:35 -07003946 net->ipv6.ip6_blk_hole_entry->dst.path =
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003947 (struct dst_entry *)net->ipv6.ip6_blk_hole_entry;
Changli Gaod8d1f302010-06-10 23:31:35 -07003948 net->ipv6.ip6_blk_hole_entry->dst.ops = &net->ipv6.ip6_dst_ops;
David S. Miller62fa8a82011-01-26 20:51:05 -08003949 dst_init_metrics(&net->ipv6.ip6_blk_hole_entry->dst,
3950 ip6_template_metrics, true);
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003951#endif
3952
Peter Zijlstrab339a47c2008-10-07 14:15:00 -07003953 net->ipv6.sysctl.flush_delay = 0;
3954 net->ipv6.sysctl.ip6_rt_max_size = 4096;
3955 net->ipv6.sysctl.ip6_rt_gc_min_interval = HZ / 2;
3956 net->ipv6.sysctl.ip6_rt_gc_timeout = 60*HZ;
3957 net->ipv6.sysctl.ip6_rt_gc_interval = 30*HZ;
3958 net->ipv6.sysctl.ip6_rt_gc_elasticity = 9;
3959 net->ipv6.sysctl.ip6_rt_mtu_expires = 10*60*HZ;
3960 net->ipv6.sysctl.ip6_rt_min_advmss = IPV6_MIN_MTU - 20 - 40;
3961
Benjamin Thery6891a342008-03-04 13:49:47 -08003962 net->ipv6.ip6_rt_gc_expire = 30*HZ;
3963
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003964 ret = 0;
3965out:
3966 return ret;
Benjamin Theryf2fc6a52008-03-04 13:49:23 -08003967
Peter Zijlstra68fffc62008-10-07 14:12:10 -07003968#ifdef CONFIG_IPV6_MULTIPLE_TABLES
3969out_ip6_prohibit_entry:
3970 kfree(net->ipv6.ip6_prohibit_entry);
3971out_ip6_null_entry:
3972 kfree(net->ipv6.ip6_null_entry);
3973#endif
Eric Dumazetfc66f952010-10-08 06:37:34 +00003974out_ip6_dst_entries:
3975 dst_entries_destroy(&net->ipv6.ip6_dst_ops);
Benjamin Theryf2fc6a52008-03-04 13:49:23 -08003976out_ip6_dst_ops:
Benjamin Theryf2fc6a52008-03-04 13:49:23 -08003977 goto out;
Daniel Lezcanocdb18762008-03-04 13:45:33 -08003978}
3979
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00003980static void __net_exit ip6_route_net_exit(struct net *net)
Daniel Lezcanocdb18762008-03-04 13:45:33 -08003981{
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003982 kfree(net->ipv6.ip6_null_entry);
3983#ifdef CONFIG_IPV6_MULTIPLE_TABLES
3984 kfree(net->ipv6.ip6_prohibit_entry);
3985 kfree(net->ipv6.ip6_blk_hole_entry);
3986#endif
Xiaotian Feng41bb78b2010-11-02 16:11:05 +00003987 dst_entries_destroy(&net->ipv6.ip6_dst_ops);
Daniel Lezcanocdb18762008-03-04 13:45:33 -08003988}
3989
Thomas Grafd1896342012-06-18 12:08:33 +00003990static int __net_init ip6_route_net_init_late(struct net *net)
3991{
3992#ifdef CONFIG_PROC_FS
Gao fengd4beaa62013-02-18 01:34:54 +00003993 proc_create("ipv6_route", 0, net->proc_net, &ipv6_route_proc_fops);
3994 proc_create("rt6_stats", S_IRUGO, net->proc_net, &rt6_stats_seq_fops);
Thomas Grafd1896342012-06-18 12:08:33 +00003995#endif
3996 return 0;
3997}
3998
3999static void __net_exit ip6_route_net_exit_late(struct net *net)
4000{
4001#ifdef CONFIG_PROC_FS
Gao fengece31ff2013-02-18 01:34:56 +00004002 remove_proc_entry("ipv6_route", net->proc_net);
4003 remove_proc_entry("rt6_stats", net->proc_net);
Thomas Grafd1896342012-06-18 12:08:33 +00004004#endif
4005}
4006
Daniel Lezcanocdb18762008-03-04 13:45:33 -08004007static struct pernet_operations ip6_route_net_ops = {
4008 .init = ip6_route_net_init,
4009 .exit = ip6_route_net_exit,
4010};
4011
David S. Millerc3426b42012-06-09 16:27:05 -07004012static int __net_init ipv6_inetpeer_init(struct net *net)
4013{
4014 struct inet_peer_base *bp = kmalloc(sizeof(*bp), GFP_KERNEL);
4015
4016 if (!bp)
4017 return -ENOMEM;
4018 inet_peer_base_init(bp);
4019 net->ipv6.peers = bp;
4020 return 0;
4021}
4022
4023static void __net_exit ipv6_inetpeer_exit(struct net *net)
4024{
4025 struct inet_peer_base *bp = net->ipv6.peers;
4026
4027 net->ipv6.peers = NULL;
David S. Miller56a6b242012-06-09 16:32:41 -07004028 inetpeer_invalidate_tree(bp);
David S. Millerc3426b42012-06-09 16:27:05 -07004029 kfree(bp);
4030}
4031
David S. Miller2b823f72012-06-09 19:00:16 -07004032static struct pernet_operations ipv6_inetpeer_ops = {
David S. Millerc3426b42012-06-09 16:27:05 -07004033 .init = ipv6_inetpeer_init,
4034 .exit = ipv6_inetpeer_exit,
4035};
4036
Thomas Grafd1896342012-06-18 12:08:33 +00004037static struct pernet_operations ip6_route_net_late_ops = {
4038 .init = ip6_route_net_init_late,
4039 .exit = ip6_route_net_exit_late,
4040};
4041
Daniel Lezcano8ed67782008-03-04 13:48:30 -08004042static struct notifier_block ip6_route_dev_notifier = {
4043 .notifier_call = ip6_route_dev_notify,
WANG Cong242d3a42017-05-08 10:12:13 -07004044 .priority = ADDRCONF_NOTIFY_PRIORITY - 10,
Daniel Lezcano8ed67782008-03-04 13:48:30 -08004045};
4046
WANG Cong2f460932017-05-03 22:07:31 -07004047void __init ip6_route_init_special_entries(void)
4048{
4049 /* Registering of the loopback is done before this portion of code,
4050 * the loopback reference in rt6_info will not be taken, do it
4051 * manually for init_net */
4052 init_net.ipv6.ip6_null_entry->dst.dev = init_net.loopback_dev;
4053 init_net.ipv6.ip6_null_entry->rt6i_idev = in6_dev_get(init_net.loopback_dev);
4054 #ifdef CONFIG_IPV6_MULTIPLE_TABLES
4055 init_net.ipv6.ip6_prohibit_entry->dst.dev = init_net.loopback_dev;
4056 init_net.ipv6.ip6_prohibit_entry->rt6i_idev = in6_dev_get(init_net.loopback_dev);
4057 init_net.ipv6.ip6_blk_hole_entry->dst.dev = init_net.loopback_dev;
4058 init_net.ipv6.ip6_blk_hole_entry->rt6i_idev = in6_dev_get(init_net.loopback_dev);
4059 #endif
4060}
4061
Daniel Lezcano433d49c2007-12-07 00:43:48 -08004062int __init ip6_route_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004063{
Daniel Lezcano433d49c2007-12-07 00:43:48 -08004064 int ret;
Martin KaFai Lau8d0b94a2015-05-22 20:56:04 -07004065 int cpu;
Daniel Lezcano433d49c2007-12-07 00:43:48 -08004066
Daniel Lezcano9a7ec3a2008-03-04 13:48:53 -08004067 ret = -ENOMEM;
4068 ip6_dst_ops_template.kmem_cachep =
4069 kmem_cache_create("ip6_dst_cache", sizeof(struct rt6_info), 0,
4070 SLAB_HWCACHE_ALIGN, NULL);
4071 if (!ip6_dst_ops_template.kmem_cachep)
Fernando Carrijoc19a28e2009-01-07 18:09:08 -08004072 goto out;
David S. Miller14e50e52007-05-24 18:17:54 -07004073
Eric Dumazetfc66f952010-10-08 06:37:34 +00004074 ret = dst_entries_init(&ip6_dst_blackhole_ops);
Daniel Lezcano8ed67782008-03-04 13:48:30 -08004075 if (ret)
Daniel Lezcanobdb32892008-03-04 13:48:10 -08004076 goto out_kmem_cache;
Daniel Lezcanobdb32892008-03-04 13:48:10 -08004077
David S. Millerc3426b42012-06-09 16:27:05 -07004078 ret = register_pernet_subsys(&ipv6_inetpeer_ops);
4079 if (ret)
David S. Millere8803b62012-06-16 01:12:19 -07004080 goto out_dst_entries;
Thomas Graf2a0c4512012-06-14 23:00:17 +00004081
David S. Miller7e52b332012-06-15 15:51:55 -07004082 ret = register_pernet_subsys(&ip6_route_net_ops);
4083 if (ret)
4084 goto out_register_inetpeer;
David S. Millerc3426b42012-06-09 16:27:05 -07004085
Arnaud Ebalard5dc121e2008-10-01 02:37:56 -07004086 ip6_dst_blackhole_ops.kmem_cachep = ip6_dst_ops_template.kmem_cachep;
4087
David S. Millere8803b62012-06-16 01:12:19 -07004088 ret = fib6_init();
Daniel Lezcano433d49c2007-12-07 00:43:48 -08004089 if (ret)
Daniel Lezcano8ed67782008-03-04 13:48:30 -08004090 goto out_register_subsys;
Daniel Lezcano433d49c2007-12-07 00:43:48 -08004091
Daniel Lezcano433d49c2007-12-07 00:43:48 -08004092 ret = xfrm6_init();
4093 if (ret)
David S. Millere8803b62012-06-16 01:12:19 -07004094 goto out_fib6_init;
Daniel Lezcanoc35b7e72007-12-08 00:14:11 -08004095
Daniel Lezcano433d49c2007-12-07 00:43:48 -08004096 ret = fib6_rules_init();
4097 if (ret)
4098 goto xfrm6_init;
Daniel Lezcano7e5449c2007-12-08 00:14:54 -08004099
Thomas Grafd1896342012-06-18 12:08:33 +00004100 ret = register_pernet_subsys(&ip6_route_net_late_ops);
4101 if (ret)
4102 goto fib6_rules_init;
4103
Daniel Lezcano433d49c2007-12-07 00:43:48 -08004104 ret = -ENOBUFS;
Greg Rosec7ac8672011-06-10 01:27:09 +00004105 if (__rtnl_register(PF_INET6, RTM_NEWROUTE, inet6_rtm_newroute, NULL, NULL) ||
4106 __rtnl_register(PF_INET6, RTM_DELROUTE, inet6_rtm_delroute, NULL, NULL) ||
4107 __rtnl_register(PF_INET6, RTM_GETROUTE, inet6_rtm_getroute, NULL, NULL))
Thomas Grafd1896342012-06-18 12:08:33 +00004108 goto out_register_late_subsys;
Daniel Lezcano433d49c2007-12-07 00:43:48 -08004109
Daniel Lezcano8ed67782008-03-04 13:48:30 -08004110 ret = register_netdevice_notifier(&ip6_route_dev_notifier);
Daniel Lezcanocdb18762008-03-04 13:45:33 -08004111 if (ret)
Thomas Grafd1896342012-06-18 12:08:33 +00004112 goto out_register_late_subsys;
Daniel Lezcano8ed67782008-03-04 13:48:30 -08004113
Martin KaFai Lau8d0b94a2015-05-22 20:56:04 -07004114 for_each_possible_cpu(cpu) {
4115 struct uncached_list *ul = per_cpu_ptr(&rt6_uncached_list, cpu);
4116
4117 INIT_LIST_HEAD(&ul->head);
4118 spin_lock_init(&ul->lock);
4119 }
4120
Daniel Lezcano433d49c2007-12-07 00:43:48 -08004121out:
4122 return ret;
4123
Thomas Grafd1896342012-06-18 12:08:33 +00004124out_register_late_subsys:
4125 unregister_pernet_subsys(&ip6_route_net_late_ops);
Daniel Lezcano433d49c2007-12-07 00:43:48 -08004126fib6_rules_init:
Daniel Lezcano433d49c2007-12-07 00:43:48 -08004127 fib6_rules_cleanup();
4128xfrm6_init:
Daniel Lezcano433d49c2007-12-07 00:43:48 -08004129 xfrm6_fini();
Thomas Graf2a0c4512012-06-14 23:00:17 +00004130out_fib6_init:
4131 fib6_gc_cleanup();
Daniel Lezcano8ed67782008-03-04 13:48:30 -08004132out_register_subsys:
4133 unregister_pernet_subsys(&ip6_route_net_ops);
David S. Miller7e52b332012-06-15 15:51:55 -07004134out_register_inetpeer:
4135 unregister_pernet_subsys(&ipv6_inetpeer_ops);
Eric Dumazetfc66f952010-10-08 06:37:34 +00004136out_dst_entries:
4137 dst_entries_destroy(&ip6_dst_blackhole_ops);
Daniel Lezcano433d49c2007-12-07 00:43:48 -08004138out_kmem_cache:
Benjamin Theryf2fc6a52008-03-04 13:49:23 -08004139 kmem_cache_destroy(ip6_dst_ops_template.kmem_cachep);
Daniel Lezcano433d49c2007-12-07 00:43:48 -08004140 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004141}
4142
4143void ip6_route_cleanup(void)
4144{
Daniel Lezcano8ed67782008-03-04 13:48:30 -08004145 unregister_netdevice_notifier(&ip6_route_dev_notifier);
Thomas Grafd1896342012-06-18 12:08:33 +00004146 unregister_pernet_subsys(&ip6_route_net_late_ops);
Thomas Graf101367c2006-08-04 03:39:02 -07004147 fib6_rules_cleanup();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004148 xfrm6_fini();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004149 fib6_gc_cleanup();
David S. Millerc3426b42012-06-09 16:27:05 -07004150 unregister_pernet_subsys(&ipv6_inetpeer_ops);
Daniel Lezcano8ed67782008-03-04 13:48:30 -08004151 unregister_pernet_subsys(&ip6_route_net_ops);
Xiaotian Feng41bb78b2010-11-02 16:11:05 +00004152 dst_entries_destroy(&ip6_dst_blackhole_ops);
Benjamin Theryf2fc6a52008-03-04 13:49:23 -08004153 kmem_cache_destroy(ip6_dst_ops_template.kmem_cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004154}