blob: 11ff19ba7efd074ccd0ba51432723186b2497eb1 [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
David S. Miller97cac082012-07-02 22:43:47 -0700420 if (dev != loopback_dev) {
421 if (idev && idev->dev == dev) {
422 struct inet6_dev *loopback_idev =
423 in6_dev_get(loopback_dev);
424 if (loopback_idev) {
425 rt->rt6i_idev = loopback_idev;
426 in6_dev_put(idev);
427 }
428 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 }
430}
431
Martin KaFai Lau5973fb12015-11-11 11:51:07 -0800432static bool __rt6_check_expired(const struct rt6_info *rt)
433{
434 if (rt->rt6i_flags & RTF_EXPIRES)
435 return time_after(jiffies, rt->dst.expires);
436 else
437 return false;
438}
439
Eric Dumazeta50feda2012-05-18 18:57:34 +0000440static bool rt6_check_expired(const struct rt6_info *rt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441{
Gao feng1716a962012-04-06 00:13:10 +0000442 if (rt->rt6i_flags & RTF_EXPIRES) {
443 if (time_after(jiffies, rt->dst.expires))
Eric Dumazeta50feda2012-05-18 18:57:34 +0000444 return true;
Gao feng1716a962012-04-06 00:13:10 +0000445 } else if (rt->dst.from) {
Li RongQing3fd91fb2012-09-13 19:54:57 +0000446 return rt6_check_expired((struct rt6_info *) rt->dst.from);
Gao feng1716a962012-04-06 00:13:10 +0000447 }
Eric Dumazeta50feda2012-05-18 18:57:34 +0000448 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449}
450
Nicolas Dichtel51ebd312012-10-22 03:42:09 +0000451/* Multipath route selection:
452 * Hash based function using packet header and flowlabel.
453 * Adapted from fib_info_hashfn()
454 */
455static int rt6_info_hash_nhsfn(unsigned int candidate_count,
456 const struct flowi6 *fl6)
457{
Tom Herbert644d0e62015-09-23 14:13:35 -0700458 return get_hash_from_flowi6(fl6) % candidate_count;
Nicolas Dichtel51ebd312012-10-22 03:42:09 +0000459}
460
461static struct rt6_info *rt6_multipath_select(struct rt6_info *match,
Nicolas Dichtel52bd4c02013-06-28 17:35:48 +0200462 struct flowi6 *fl6, int oif,
463 int strict)
Nicolas Dichtel51ebd312012-10-22 03:42:09 +0000464{
465 struct rt6_info *sibling, *next_sibling;
466 int route_choosen;
467
468 route_choosen = rt6_info_hash_nhsfn(match->rt6i_nsiblings + 1, fl6);
469 /* Don't change the route, if route_choosen == 0
470 * (siblings does not include ourself)
471 */
472 if (route_choosen)
473 list_for_each_entry_safe(sibling, next_sibling,
474 &match->rt6i_siblings, rt6i_siblings) {
475 route_choosen--;
476 if (route_choosen == 0) {
Nicolas Dichtel52bd4c02013-06-28 17:35:48 +0200477 if (rt6_score_route(sibling, oif, strict) < 0)
478 break;
Nicolas Dichtel51ebd312012-10-22 03:42:09 +0000479 match = sibling;
480 break;
481 }
482 }
483 return match;
484}
485
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486/*
Thomas Grafc71099a2006-08-04 23:20:06 -0700487 * Route lookup. Any table->tb6_lock is implied.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 */
489
Daniel Lezcano8ed67782008-03-04 13:48:30 -0800490static inline struct rt6_info *rt6_device_match(struct net *net,
491 struct rt6_info *rt,
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000492 const struct in6_addr *saddr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 int oif,
YOSHIFUJI Hideakid4208952008-06-27 20:14:54 -0700494 int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495{
496 struct rt6_info *local = NULL;
497 struct rt6_info *sprt;
498
YOSHIFUJI Hideakidd3abc42008-07-02 18:30:18 +0900499 if (!oif && ipv6_addr_any(saddr))
500 goto out;
501
Changli Gaod8d1f302010-06-10 23:31:35 -0700502 for (sprt = rt; sprt; sprt = sprt->dst.rt6_next) {
David S. Millerd1918542011-12-28 20:19:20 -0500503 struct net_device *dev = sprt->dst.dev;
YOSHIFUJI Hideakidd3abc42008-07-02 18:30:18 +0900504
505 if (oif) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 if (dev->ifindex == oif)
507 return sprt;
508 if (dev->flags & IFF_LOOPBACK) {
David S. Miller38308472011-12-03 18:02:47 -0500509 if (!sprt->rt6i_idev ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 sprt->rt6i_idev->dev->ifindex != oif) {
David Ahern17fb0b22015-09-25 15:22:54 -0600511 if (flags & RT6_LOOKUP_F_IFACE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 continue;
David Ahern17fb0b22015-09-25 15:22:54 -0600513 if (local &&
514 local->rt6i_idev->dev->ifindex == oif)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 continue;
516 }
517 local = sprt;
518 }
YOSHIFUJI Hideakidd3abc42008-07-02 18:30:18 +0900519 } else {
520 if (ipv6_chk_addr(net, saddr, dev,
521 flags & RT6_LOOKUP_F_IFACE))
522 return sprt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 }
YOSHIFUJI Hideakidd3abc42008-07-02 18:30:18 +0900524 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525
YOSHIFUJI Hideakidd3abc42008-07-02 18:30:18 +0900526 if (oif) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 if (local)
528 return local;
529
YOSHIFUJI Hideakid4208952008-06-27 20:14:54 -0700530 if (flags & RT6_LOOKUP_F_IFACE)
Daniel Lezcano8ed67782008-03-04 13:48:30 -0800531 return net->ipv6.ip6_null_entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 }
YOSHIFUJI Hideakidd3abc42008-07-02 18:30:18 +0900533out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 return rt;
535}
536
YOSHIFUJI Hideaki27097252006-03-20 17:05:13 -0800537#ifdef CONFIG_IPV6_ROUTER_PREF
Hannes Frederic Sowac2f17e82013-10-21 06:17:15 +0200538struct __rt6_probe_work {
539 struct work_struct work;
540 struct in6_addr target;
541 struct net_device *dev;
542};
543
544static void rt6_probe_deferred(struct work_struct *w)
545{
546 struct in6_addr mcaddr;
547 struct __rt6_probe_work *work =
548 container_of(w, struct __rt6_probe_work, work);
549
550 addrconf_addr_solict_mult(&work->target, &mcaddr);
Erik Nordmarkadc176c2016-12-02 14:00:08 -0800551 ndisc_send_ns(work->dev, &work->target, &mcaddr, NULL, 0);
Hannes Frederic Sowac2f17e82013-10-21 06:17:15 +0200552 dev_put(work->dev);
Michael Büsch662f5532015-02-08 10:14:07 +0100553 kfree(work);
Hannes Frederic Sowac2f17e82013-10-21 06:17:15 +0200554}
555
YOSHIFUJI Hideaki27097252006-03-20 17:05:13 -0800556static void rt6_probe(struct rt6_info *rt)
557{
Martin KaFai Lau990edb42015-07-24 09:57:42 -0700558 struct __rt6_probe_work *work;
Eric Dumazetf2c31e32011-07-29 19:00:53 +0000559 struct neighbour *neigh;
YOSHIFUJI Hideaki27097252006-03-20 17:05:13 -0800560 /*
561 * Okay, this does not seem to be appropriate
562 * for now, however, we need to check if it
563 * is really so; aka Router Reachability Probing.
564 *
565 * Router Reachability Probe MUST be rate-limited
566 * to no more than one per minute.
567 */
YOSHIFUJI Hideaki / 吉藤英明2152cae2013-01-17 12:53:43 +0000568 if (!rt || !(rt->rt6i_flags & RTF_GATEWAY))
Amerigo Wangfdd66812012-09-10 02:48:44 +0000569 return;
YOSHIFUJI Hideaki / 吉藤英明2152cae2013-01-17 12:53:43 +0000570 rcu_read_lock_bh();
571 neigh = __ipv6_neigh_lookup_noref(rt->dst.dev, &rt->rt6i_gateway);
572 if (neigh) {
Martin KaFai Lau8d6c31b2015-07-24 09:57:43 -0700573 if (neigh->nud_state & NUD_VALID)
574 goto out;
575
Martin KaFai Lau990edb42015-07-24 09:57:42 -0700576 work = NULL;
YOSHIFUJI Hideaki / 吉藤英明2152cae2013-01-17 12:53:43 +0000577 write_lock(&neigh->lock);
Martin KaFai Lau990edb42015-07-24 09:57:42 -0700578 if (!(neigh->nud_state & NUD_VALID) &&
579 time_after(jiffies,
580 neigh->updated +
581 rt->rt6i_idev->cnf.rtr_probe_interval)) {
582 work = kmalloc(sizeof(*work), GFP_ATOMIC);
583 if (work)
584 __neigh_set_probe_once(neigh);
Hannes Frederic Sowac2f17e82013-10-21 06:17:15 +0200585 }
YOSHIFUJI Hideaki / 吉藤英明2152cae2013-01-17 12:53:43 +0000586 write_unlock(&neigh->lock);
Martin KaFai Lau990edb42015-07-24 09:57:42 -0700587 } else {
588 work = kmalloc(sizeof(*work), GFP_ATOMIC);
Eric Dumazetf2c31e32011-07-29 19:00:53 +0000589 }
Martin KaFai Lau990edb42015-07-24 09:57:42 -0700590
591 if (work) {
592 INIT_WORK(&work->work, rt6_probe_deferred);
593 work->target = rt->rt6i_gateway;
594 dev_hold(rt->dst.dev);
595 work->dev = rt->dst.dev;
596 schedule_work(&work->work);
597 }
598
Martin KaFai Lau8d6c31b2015-07-24 09:57:43 -0700599out:
YOSHIFUJI Hideaki / 吉藤英明2152cae2013-01-17 12:53:43 +0000600 rcu_read_unlock_bh();
YOSHIFUJI Hideaki27097252006-03-20 17:05:13 -0800601}
602#else
603static inline void rt6_probe(struct rt6_info *rt)
604{
YOSHIFUJI Hideaki27097252006-03-20 17:05:13 -0800605}
606#endif
607
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608/*
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800609 * Default Router Selection (RFC 2461 6.3.6)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 */
Dave Jonesb6f99a22007-03-22 12:27:49 -0700611static inline int rt6_check_dev(struct rt6_info *rt, int oif)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612{
David S. Millerd1918542011-12-28 20:19:20 -0500613 struct net_device *dev = rt->dst.dev;
David S. Miller161980f2007-04-06 11:42:27 -0700614 if (!oif || dev->ifindex == oif)
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800615 return 2;
David S. Miller161980f2007-04-06 11:42:27 -0700616 if ((dev->flags & IFF_LOOPBACK) &&
617 rt->rt6i_idev && rt->rt6i_idev->dev->ifindex == oif)
618 return 1;
619 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620}
621
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200622static inline enum rt6_nud_state rt6_check_neigh(struct rt6_info *rt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623{
Eric Dumazetf2c31e32011-07-29 19:00:53 +0000624 struct neighbour *neigh;
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200625 enum rt6_nud_state ret = RT6_NUD_FAIL_HARD;
Eric Dumazetf2c31e32011-07-29 19:00:53 +0000626
YOSHIFUJI Hideaki4d0c5912006-05-26 13:23:41 -0700627 if (rt->rt6i_flags & RTF_NONEXTHOP ||
628 !(rt->rt6i_flags & RTF_GATEWAY))
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200629 return RT6_NUD_SUCCEED;
YOSHIFUJI Hideaki / 吉藤英明145a3622013-01-17 12:53:38 +0000630
631 rcu_read_lock_bh();
632 neigh = __ipv6_neigh_lookup_noref(rt->dst.dev, &rt->rt6i_gateway);
633 if (neigh) {
634 read_lock(&neigh->lock);
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800635 if (neigh->nud_state & NUD_VALID)
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200636 ret = RT6_NUD_SUCCEED;
YOSHIFUJI Hideaki398bcbe2008-01-19 00:35:16 -0800637#ifdef CONFIG_IPV6_ROUTER_PREF
Paul Marksa5a81f02012-12-03 10:26:54 +0000638 else if (!(neigh->nud_state & NUD_FAILED))
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200639 ret = RT6_NUD_SUCCEED;
Jiri Benc7e980562013-12-11 13:48:20 +0100640 else
641 ret = RT6_NUD_FAIL_PROBE;
YOSHIFUJI Hideaki398bcbe2008-01-19 00:35:16 -0800642#endif
YOSHIFUJI Hideaki / 吉藤英明145a3622013-01-17 12:53:38 +0000643 read_unlock(&neigh->lock);
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200644 } else {
645 ret = IS_ENABLED(CONFIG_IPV6_ROUTER_PREF) ?
Jiri Benc7e980562013-12-11 13:48:20 +0100646 RT6_NUD_SUCCEED : RT6_NUD_FAIL_DO_RR;
Paul Marksa5a81f02012-12-03 10:26:54 +0000647 }
YOSHIFUJI Hideaki / 吉藤英明145a3622013-01-17 12:53:38 +0000648 rcu_read_unlock_bh();
649
Paul Marksa5a81f02012-12-03 10:26:54 +0000650 return ret;
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800651}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800653static int rt6_score_route(struct rt6_info *rt, int oif,
654 int strict)
655{
Paul Marksa5a81f02012-12-03 10:26:54 +0000656 int m;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900657
YOSHIFUJI Hideaki4d0c5912006-05-26 13:23:41 -0700658 m = rt6_check_dev(rt, oif);
YOSHIFUJI Hideaki77d16f42006-08-23 17:25:05 -0700659 if (!m && (strict & RT6_LOOKUP_F_IFACE))
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200660 return RT6_NUD_FAIL_HARD;
YOSHIFUJI Hideakiebacaaa2006-03-20 17:04:53 -0800661#ifdef CONFIG_IPV6_ROUTER_PREF
662 m |= IPV6_DECODE_PREF(IPV6_EXTRACT_PREF(rt->rt6i_flags)) << 2;
663#endif
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200664 if (strict & RT6_LOOKUP_F_REACHABLE) {
665 int n = rt6_check_neigh(rt);
666 if (n < 0)
667 return n;
668 }
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800669 return m;
670}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671
David S. Millerf11e6652007-03-24 20:36:25 -0700672static struct rt6_info *find_match(struct rt6_info *rt, int oif, int strict,
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200673 int *mpri, struct rt6_info *match,
674 bool *do_rr)
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800675{
David S. Millerf11e6652007-03-24 20:36:25 -0700676 int m;
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200677 bool match_do_rr = false;
Andy Gospodarek35103d12015-08-13 10:39:01 -0400678 struct inet6_dev *idev = rt->rt6i_idev;
679 struct net_device *dev = rt->dst.dev;
680
681 if (dev && !netif_carrier_ok(dev) &&
David Ahernd5d32e42016-10-24 12:27:23 -0700682 idev->cnf.ignore_routes_with_linkdown &&
683 !(strict & RT6_LOOKUP_F_IGNORE_LINKSTATE))
Andy Gospodarek35103d12015-08-13 10:39:01 -0400684 goto out;
David S. Millerf11e6652007-03-24 20:36:25 -0700685
686 if (rt6_check_expired(rt))
687 goto out;
688
689 m = rt6_score_route(rt, oif, strict);
Jiri Benc7e980562013-12-11 13:48:20 +0100690 if (m == RT6_NUD_FAIL_DO_RR) {
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200691 match_do_rr = true;
692 m = 0; /* lowest valid score */
Jiri Benc7e980562013-12-11 13:48:20 +0100693 } else if (m == RT6_NUD_FAIL_HARD) {
David S. Millerf11e6652007-03-24 20:36:25 -0700694 goto out;
David S. Millerf11e6652007-03-24 20:36:25 -0700695 }
696
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200697 if (strict & RT6_LOOKUP_F_REACHABLE)
698 rt6_probe(rt);
699
Jiri Benc7e980562013-12-11 13:48:20 +0100700 /* note that m can be RT6_NUD_FAIL_PROBE at this point */
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200701 if (m > *mpri) {
702 *do_rr = match_do_rr;
703 *mpri = m;
704 match = rt;
705 }
David S. Millerf11e6652007-03-24 20:36:25 -0700706out:
707 return match;
708}
709
710static struct rt6_info *find_rr_leaf(struct fib6_node *fn,
711 struct rt6_info *rr_head,
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200712 u32 metric, int oif, int strict,
713 bool *do_rr)
David S. Millerf11e6652007-03-24 20:36:25 -0700714{
Steffen Klassert9fbdcfa2015-04-28 13:03:04 -0700715 struct rt6_info *rt, *match, *cont;
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800716 int mpri = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717
David S. Millerf11e6652007-03-24 20:36:25 -0700718 match = NULL;
Steffen Klassert9fbdcfa2015-04-28 13:03:04 -0700719 cont = NULL;
720 for (rt = rr_head; rt; rt = rt->dst.rt6_next) {
721 if (rt->rt6i_metric != metric) {
722 cont = rt;
723 break;
724 }
725
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200726 match = find_match(rt, oif, strict, &mpri, match, do_rr);
Steffen Klassert9fbdcfa2015-04-28 13:03:04 -0700727 }
728
729 for (rt = fn->leaf; rt && rt != rr_head; rt = rt->dst.rt6_next) {
730 if (rt->rt6i_metric != metric) {
731 cont = rt;
732 break;
733 }
734
735 match = find_match(rt, oif, strict, &mpri, match, do_rr);
736 }
737
738 if (match || !cont)
739 return match;
740
741 for (rt = cont; rt; rt = rt->dst.rt6_next)
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200742 match = find_match(rt, oif, strict, &mpri, match, do_rr);
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800743
David S. Millerf11e6652007-03-24 20:36:25 -0700744 return match;
745}
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800746
David S. Millerf11e6652007-03-24 20:36:25 -0700747static struct rt6_info *rt6_select(struct fib6_node *fn, int oif, int strict)
748{
749 struct rt6_info *match, *rt0;
Daniel Lezcano8ed67782008-03-04 13:48:30 -0800750 struct net *net;
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200751 bool do_rr = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752
David S. Millerf11e6652007-03-24 20:36:25 -0700753 rt0 = fn->rr_ptr;
754 if (!rt0)
755 fn->rr_ptr = rt0 = fn->leaf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200757 match = find_rr_leaf(fn, rt0, rt0->rt6i_metric, oif, strict,
758 &do_rr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200760 if (do_rr) {
Changli Gaod8d1f302010-06-10 23:31:35 -0700761 struct rt6_info *next = rt0->dst.rt6_next;
David S. Millerf11e6652007-03-24 20:36:25 -0700762
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800763 /* no entries matched; do round-robin */
David S. Millerf11e6652007-03-24 20:36:25 -0700764 if (!next || next->rt6i_metric != rt0->rt6i_metric)
765 next = fn->leaf;
766
767 if (next != rt0)
768 fn->rr_ptr = next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 }
770
David S. Millerd1918542011-12-28 20:19:20 -0500771 net = dev_net(rt0->dst.dev);
Eric Dumazeta02cec22010-09-22 20:43:57 +0000772 return match ? match : net->ipv6.ip6_null_entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773}
774
Martin KaFai Lau8b9df262015-05-22 20:55:59 -0700775static bool rt6_is_gw_or_nonexthop(const struct rt6_info *rt)
776{
777 return (rt->rt6i_flags & (RTF_NONEXTHOP | RTF_GATEWAY));
778}
779
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800780#ifdef CONFIG_IPV6_ROUTE_INFO
781int rt6_route_rcv(struct net_device *dev, u8 *opt, int len,
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000782 const struct in6_addr *gwaddr)
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800783{
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900784 struct net *net = dev_net(dev);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800785 struct route_info *rinfo = (struct route_info *) opt;
786 struct in6_addr prefix_buf, *prefix;
787 unsigned int pref;
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +0900788 unsigned long lifetime;
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800789 struct rt6_info *rt;
790
791 if (len < sizeof(struct route_info)) {
792 return -EINVAL;
793 }
794
795 /* Sanity check for prefix_len and length */
796 if (rinfo->length > 3) {
797 return -EINVAL;
798 } else if (rinfo->prefix_len > 128) {
799 return -EINVAL;
800 } else if (rinfo->prefix_len > 64) {
801 if (rinfo->length < 2) {
802 return -EINVAL;
803 }
804 } else if (rinfo->prefix_len > 0) {
805 if (rinfo->length < 1) {
806 return -EINVAL;
807 }
808 }
809
810 pref = rinfo->route_pref;
811 if (pref == ICMPV6_ROUTER_PREF_INVALID)
Jens Rosenboom3933fc92009-09-10 06:25:11 +0000812 return -EINVAL;
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800813
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +0900814 lifetime = addrconf_timeout_fixup(ntohl(rinfo->lifetime), HZ);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800815
816 if (rinfo->length == 3)
817 prefix = (struct in6_addr *)rinfo->prefix;
818 else {
819 /* this function is safe */
820 ipv6_addr_prefix(&prefix_buf,
821 (struct in6_addr *)rinfo->prefix,
822 rinfo->prefix_len);
823 prefix = &prefix_buf;
824 }
825
Duan Jiongf104a562013-11-08 09:56:53 +0800826 if (rinfo->prefix_len == 0)
827 rt = rt6_get_dflt_router(gwaddr, dev);
828 else
829 rt = rt6_get_route_info(net, prefix, rinfo->prefix_len,
David Ahern830218c2016-10-24 10:52:35 -0700830 gwaddr, dev);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800831
832 if (rt && !lifetime) {
Thomas Grafe0a1ad732006-08-22 00:00:21 -0700833 ip6_del_rt(rt);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800834 rt = NULL;
835 }
836
837 if (!rt && lifetime)
David Ahern830218c2016-10-24 10:52:35 -0700838 rt = rt6_add_route_info(net, prefix, rinfo->prefix_len, gwaddr,
839 dev, pref);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800840 else if (rt)
841 rt->rt6i_flags = RTF_ROUTEINFO |
842 (rt->rt6i_flags & ~RTF_PREF_MASK) | RTF_PREF(pref);
843
844 if (rt) {
Gao feng1716a962012-04-06 00:13:10 +0000845 if (!addrconf_finite_timeout(lifetime))
846 rt6_clean_expires(rt);
847 else
848 rt6_set_expires(rt, jiffies + HZ * lifetime);
849
Amerigo Wang94e187c2012-10-29 00:13:19 +0000850 ip6_rt_put(rt);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800851 }
852 return 0;
853}
854#endif
855
Martin KaFai Laua3c00e42014-10-20 13:42:43 -0700856static struct fib6_node* fib6_backtrack(struct fib6_node *fn,
857 struct in6_addr *saddr)
858{
859 struct fib6_node *pn;
860 while (1) {
861 if (fn->fn_flags & RTN_TL_ROOT)
862 return NULL;
863 pn = fn->parent;
864 if (FIB6_SUBTREE(pn) && FIB6_SUBTREE(pn) != fn)
865 fn = fib6_lookup(FIB6_SUBTREE(pn), NULL, saddr);
866 else
867 fn = pn;
868 if (fn->fn_flags & RTN_RTINFO)
869 return fn;
870 }
871}
Thomas Grafc71099a2006-08-04 23:20:06 -0700872
Daniel Lezcano8ed67782008-03-04 13:48:30 -0800873static struct rt6_info *ip6_pol_route_lookup(struct net *net,
874 struct fib6_table *table,
David S. Miller4c9483b2011-03-12 16:22:43 -0500875 struct flowi6 *fl6, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876{
877 struct fib6_node *fn;
878 struct rt6_info *rt;
879
Thomas Grafc71099a2006-08-04 23:20:06 -0700880 read_lock_bh(&table->tb6_lock);
David S. Miller4c9483b2011-03-12 16:22:43 -0500881 fn = fib6_lookup(&table->tb6_root, &fl6->daddr, &fl6->saddr);
Thomas Grafc71099a2006-08-04 23:20:06 -0700882restart:
883 rt = fn->leaf;
David S. Miller4c9483b2011-03-12 16:22:43 -0500884 rt = rt6_device_match(net, rt, &fl6->saddr, fl6->flowi6_oif, flags);
Nicolas Dichtel51ebd312012-10-22 03:42:09 +0000885 if (rt->rt6i_nsiblings && fl6->flowi6_oif == 0)
Nicolas Dichtel52bd4c02013-06-28 17:35:48 +0200886 rt = rt6_multipath_select(rt, fl6, fl6->flowi6_oif, flags);
Martin KaFai Laua3c00e42014-10-20 13:42:43 -0700887 if (rt == net->ipv6.ip6_null_entry) {
888 fn = fib6_backtrack(fn, &fl6->saddr);
889 if (fn)
890 goto restart;
891 }
Changli Gaod8d1f302010-06-10 23:31:35 -0700892 dst_use(&rt->dst, jiffies);
Thomas Grafc71099a2006-08-04 23:20:06 -0700893 read_unlock_bh(&table->tb6_lock);
David Ahernb8115802015-11-19 12:24:22 -0800894
895 trace_fib6_table_lookup(net, rt, table->tb6_id, fl6);
896
Thomas Grafc71099a2006-08-04 23:20:06 -0700897 return rt;
898
899}
900
Ian Morris67ba4152014-08-24 21:53:10 +0100901struct dst_entry *ip6_route_lookup(struct net *net, struct flowi6 *fl6,
Florian Westphalea6e5742011-09-05 16:05:44 +0200902 int flags)
903{
904 return fib6_rule_lookup(net, fl6, flags, ip6_pol_route_lookup);
905}
906EXPORT_SYMBOL_GPL(ip6_route_lookup);
907
YOSHIFUJI Hideaki9acd9f32008-04-10 15:42:10 +0900908struct rt6_info *rt6_lookup(struct net *net, const struct in6_addr *daddr,
909 const struct in6_addr *saddr, int oif, int strict)
Thomas Grafc71099a2006-08-04 23:20:06 -0700910{
David S. Miller4c9483b2011-03-12 16:22:43 -0500911 struct flowi6 fl6 = {
912 .flowi6_oif = oif,
913 .daddr = *daddr,
Thomas Grafc71099a2006-08-04 23:20:06 -0700914 };
915 struct dst_entry *dst;
YOSHIFUJI Hideaki77d16f42006-08-23 17:25:05 -0700916 int flags = strict ? RT6_LOOKUP_F_IFACE : 0;
Thomas Grafc71099a2006-08-04 23:20:06 -0700917
Thomas Grafadaa70b2006-10-13 15:01:03 -0700918 if (saddr) {
David S. Miller4c9483b2011-03-12 16:22:43 -0500919 memcpy(&fl6.saddr, saddr, sizeof(*saddr));
Thomas Grafadaa70b2006-10-13 15:01:03 -0700920 flags |= RT6_LOOKUP_F_HAS_SADDR;
921 }
922
David S. Miller4c9483b2011-03-12 16:22:43 -0500923 dst = fib6_rule_lookup(net, &fl6, flags, ip6_pol_route_lookup);
Thomas Grafc71099a2006-08-04 23:20:06 -0700924 if (dst->error == 0)
925 return (struct rt6_info *) dst;
926
927 dst_release(dst);
928
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929 return NULL;
930}
YOSHIFUJI Hideaki71590392007-02-22 22:05:40 +0900931EXPORT_SYMBOL(rt6_lookup);
932
Thomas Grafc71099a2006-08-04 23:20:06 -0700933/* ip6_ins_rt is called with FREE table->tb6_lock.
Wei Wang1cfb71e2017-06-17 10:42:33 -0700934 * It takes new route entry, the addition fails by any reason the
935 * route is released.
936 * Caller must hold dst before calling it.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937 */
938
Michal Kubečeke5fd3872014-03-27 13:04:08 +0100939static int __ip6_ins_rt(struct rt6_info *rt, struct nl_info *info,
David Ahern333c4302017-05-21 10:12:04 -0600940 struct mx6_config *mxc,
941 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942{
943 int err;
Thomas Grafc71099a2006-08-04 23:20:06 -0700944 struct fib6_table *table;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945
Thomas Grafc71099a2006-08-04 23:20:06 -0700946 table = rt->rt6i_table;
947 write_lock_bh(&table->tb6_lock);
David Ahern333c4302017-05-21 10:12:04 -0600948 err = fib6_add(&table->tb6_root, rt, info, mxc, extack);
Thomas Grafc71099a2006-08-04 23:20:06 -0700949 write_unlock_bh(&table->tb6_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950
951 return err;
952}
953
Thomas Graf40e22e82006-08-22 00:00:45 -0700954int ip6_ins_rt(struct rt6_info *rt)
955{
Florian Westphale715b6d2015-01-05 23:57:44 +0100956 struct nl_info info = { .nl_net = dev_net(rt->dst.dev), };
957 struct mx6_config mxc = { .mx = NULL, };
958
Wei Wang1cfb71e2017-06-17 10:42:33 -0700959 /* Hold dst to account for the reference from the fib6 tree */
960 dst_hold(&rt->dst);
David Ahern333c4302017-05-21 10:12:04 -0600961 return __ip6_ins_rt(rt, &info, &mxc, NULL);
Thomas Graf40e22e82006-08-22 00:00:45 -0700962}
963
Martin KaFai Lau8b9df262015-05-22 20:55:59 -0700964static struct rt6_info *ip6_rt_cache_alloc(struct rt6_info *ort,
965 const struct in6_addr *daddr,
966 const struct in6_addr *saddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968 struct rt6_info *rt;
969
970 /*
971 * Clone the route.
972 */
973
Martin KaFai Laud52d3992015-05-22 20:56:06 -0700974 if (ort->rt6i_flags & (RTF_CACHE | RTF_PCPU))
Martin KaFai Lau83a09ab2015-05-22 20:56:05 -0700975 ort = (struct rt6_info *)ort->dst.from;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976
Martin KaFai Lauad706862015-08-14 11:05:52 -0700977 rt = __ip6_dst_alloc(dev_net(ort->dst.dev), ort->dst.dev, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978
Martin KaFai Lau83a09ab2015-05-22 20:56:05 -0700979 if (!rt)
980 return NULL;
981
982 ip6_rt_copy_init(rt, ort);
983 rt->rt6i_flags |= RTF_CACHE;
984 rt->rt6i_metric = 0;
985 rt->dst.flags |= DST_HOST;
986 rt->rt6i_dst.addr = *daddr;
987 rt->rt6i_dst.plen = 128;
988
989 if (!rt6_is_gw_or_nonexthop(ort)) {
990 if (ort->rt6i_dst.plen != 128 &&
991 ipv6_addr_equal(&ort->rt6i_dst.addr, daddr))
992 rt->rt6i_flags |= RTF_ANYCAST;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993#ifdef CONFIG_IPV6_SUBTREES
Martin KaFai Lau83a09ab2015-05-22 20:56:05 -0700994 if (rt->rt6i_src.plen && saddr) {
995 rt->rt6i_src.addr = *saddr;
996 rt->rt6i_src.plen = 128;
Martin KaFai Lau8b9df262015-05-22 20:55:59 -0700997 }
Martin KaFai Lau83a09ab2015-05-22 20:56:05 -0700998#endif
YOSHIFUJI Hideaki95a9a5b2006-03-20 16:55:51 -0800999 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000
YOSHIFUJI Hideaki95a9a5b2006-03-20 16:55:51 -08001001 return rt;
1002}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001004static struct rt6_info *ip6_rt_pcpu_alloc(struct rt6_info *rt)
1005{
1006 struct rt6_info *pcpu_rt;
1007
1008 pcpu_rt = __ip6_dst_alloc(dev_net(rt->dst.dev),
Martin KaFai Lauad706862015-08-14 11:05:52 -07001009 rt->dst.dev, rt->dst.flags);
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001010
1011 if (!pcpu_rt)
1012 return NULL;
1013 ip6_rt_copy_init(pcpu_rt, rt);
1014 pcpu_rt->rt6i_protocol = rt->rt6i_protocol;
1015 pcpu_rt->rt6i_flags |= RTF_PCPU;
1016 return pcpu_rt;
1017}
1018
1019/* It should be called with read_lock_bh(&tb6_lock) acquired */
1020static struct rt6_info *rt6_get_pcpu_route(struct rt6_info *rt)
1021{
Martin KaFai Laua73e4192015-08-14 11:05:53 -07001022 struct rt6_info *pcpu_rt, **p;
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001023
1024 p = this_cpu_ptr(rt->rt6i_pcpu);
1025 pcpu_rt = *p;
1026
Martin KaFai Laua73e4192015-08-14 11:05:53 -07001027 if (pcpu_rt) {
1028 dst_hold(&pcpu_rt->dst);
1029 rt6_dst_from_metrics_check(pcpu_rt);
1030 }
1031 return pcpu_rt;
1032}
1033
1034static struct rt6_info *rt6_make_pcpu_route(struct rt6_info *rt)
1035{
Martin KaFai Lau9c7370a2015-08-14 11:05:54 -07001036 struct fib6_table *table = rt->rt6i_table;
Martin KaFai Laua73e4192015-08-14 11:05:53 -07001037 struct rt6_info *pcpu_rt, *prev, **p;
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001038
1039 pcpu_rt = ip6_rt_pcpu_alloc(rt);
1040 if (!pcpu_rt) {
1041 struct net *net = dev_net(rt->dst.dev);
1042
Martin KaFai Lau9c7370a2015-08-14 11:05:54 -07001043 dst_hold(&net->ipv6.ip6_null_entry->dst);
1044 return net->ipv6.ip6_null_entry;
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001045 }
1046
Martin KaFai Lau9c7370a2015-08-14 11:05:54 -07001047 read_lock_bh(&table->tb6_lock);
1048 if (rt->rt6i_pcpu) {
1049 p = this_cpu_ptr(rt->rt6i_pcpu);
1050 prev = cmpxchg(p, NULL, pcpu_rt);
1051 if (prev) {
1052 /* If someone did it before us, return prev instead */
Wei Wang587fea72017-06-17 10:42:36 -07001053 dst_release_immediate(&pcpu_rt->dst);
Martin KaFai Lau9c7370a2015-08-14 11:05:54 -07001054 pcpu_rt = prev;
1055 }
1056 } else {
1057 /* rt has been removed from the fib6 tree
1058 * before we have a chance to acquire the read_lock.
1059 * In this case, don't brother to create a pcpu rt
1060 * since rt is going away anyway. The next
1061 * dst_check() will trigger a re-lookup.
1062 */
Wei Wang587fea72017-06-17 10:42:36 -07001063 dst_release_immediate(&pcpu_rt->dst);
Martin KaFai Lau9c7370a2015-08-14 11:05:54 -07001064 pcpu_rt = rt;
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001065 }
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001066 dst_hold(&pcpu_rt->dst);
1067 rt6_dst_from_metrics_check(pcpu_rt);
Martin KaFai Lau9c7370a2015-08-14 11:05:54 -07001068 read_unlock_bh(&table->tb6_lock);
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001069 return pcpu_rt;
1070}
1071
David Ahern9ff74382016-06-13 13:44:19 -07001072struct rt6_info *ip6_pol_route(struct net *net, struct fib6_table *table,
1073 int oif, struct flowi6 *fl6, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074{
Martin KaFai Lau367efcb2014-10-20 13:42:45 -07001075 struct fib6_node *fn, *saved_fn;
Martin KaFai Lau45e4fd22015-05-22 20:56:00 -07001076 struct rt6_info *rt;
Thomas Grafc71099a2006-08-04 23:20:06 -07001077 int strict = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078
YOSHIFUJI Hideaki77d16f42006-08-23 17:25:05 -07001079 strict |= flags & RT6_LOOKUP_F_IFACE;
David Ahernd5d32e42016-10-24 12:27:23 -07001080 strict |= flags & RT6_LOOKUP_F_IGNORE_LINKSTATE;
Martin KaFai Lau367efcb2014-10-20 13:42:45 -07001081 if (net->ipv6.devconf_all->forwarding == 0)
1082 strict |= RT6_LOOKUP_F_REACHABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083
Thomas Grafc71099a2006-08-04 23:20:06 -07001084 read_lock_bh(&table->tb6_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085
David S. Miller4c9483b2011-03-12 16:22:43 -05001086 fn = fib6_lookup(&table->tb6_root, &fl6->daddr, &fl6->saddr);
Martin KaFai Lau367efcb2014-10-20 13:42:45 -07001087 saved_fn = fn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088
David Ahernca254492015-10-12 11:47:10 -07001089 if (fl6->flowi6_flags & FLOWI_FLAG_SKIP_NH_OIF)
1090 oif = 0;
1091
Martin KaFai Laua3c00e42014-10-20 13:42:43 -07001092redo_rt6_select:
Martin KaFai Lau367efcb2014-10-20 13:42:45 -07001093 rt = rt6_select(fn, oif, strict);
Nicolas Dichtel52bd4c02013-06-28 17:35:48 +02001094 if (rt->rt6i_nsiblings)
Martin KaFai Lau367efcb2014-10-20 13:42:45 -07001095 rt = rt6_multipath_select(rt, fl6, oif, strict);
Martin KaFai Laua3c00e42014-10-20 13:42:43 -07001096 if (rt == net->ipv6.ip6_null_entry) {
1097 fn = fib6_backtrack(fn, &fl6->saddr);
1098 if (fn)
1099 goto redo_rt6_select;
Martin KaFai Lau367efcb2014-10-20 13:42:45 -07001100 else if (strict & RT6_LOOKUP_F_REACHABLE) {
1101 /* also consider unreachable route */
1102 strict &= ~RT6_LOOKUP_F_REACHABLE;
1103 fn = saved_fn;
1104 goto redo_rt6_select;
Martin KaFai Lau367efcb2014-10-20 13:42:45 -07001105 }
Martin KaFai Laua3c00e42014-10-20 13:42:43 -07001106 }
1107
YOSHIFUJI Hideakifb9de912006-03-20 16:59:08 -08001108
Martin KaFai Lau3da59bd2015-05-22 20:56:03 -07001109 if (rt == net->ipv6.ip6_null_entry || (rt->rt6i_flags & RTF_CACHE)) {
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001110 dst_use(&rt->dst, jiffies);
1111 read_unlock_bh(&table->tb6_lock);
1112
1113 rt6_dst_from_metrics_check(rt);
David Ahernb8115802015-11-19 12:24:22 -08001114
1115 trace_fib6_table_lookup(net, rt, table->tb6_id, fl6);
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001116 return rt;
Martin KaFai Lau3da59bd2015-05-22 20:56:03 -07001117 } else if (unlikely((fl6->flowi6_flags & FLOWI_FLAG_KNOWN_NH) &&
1118 !(rt->rt6i_flags & RTF_GATEWAY))) {
1119 /* Create a RTF_CACHE clone which will not be
1120 * owned by the fib6 tree. It is for the special case where
1121 * the daddr in the skb during the neighbor look-up is different
1122 * from the fl6->daddr used to look-up route here.
1123 */
Thomas Grafc71099a2006-08-04 23:20:06 -07001124
Martin KaFai Lau3da59bd2015-05-22 20:56:03 -07001125 struct rt6_info *uncached_rt;
1126
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001127 dst_use(&rt->dst, jiffies);
1128 read_unlock_bh(&table->tb6_lock);
1129
Martin KaFai Lau3da59bd2015-05-22 20:56:03 -07001130 uncached_rt = ip6_rt_cache_alloc(rt, &fl6->daddr, NULL);
1131 dst_release(&rt->dst);
1132
Wei Wang1cfb71e2017-06-17 10:42:33 -07001133 if (uncached_rt) {
1134 /* Uncached_rt's refcnt is taken during ip6_rt_cache_alloc()
1135 * No need for another dst_hold()
1136 */
Martin KaFai Lau8d0b94a2015-05-22 20:56:04 -07001137 rt6_uncached_list_add(uncached_rt);
Wei Wang1cfb71e2017-06-17 10:42:33 -07001138 } else {
Martin KaFai Lau3da59bd2015-05-22 20:56:03 -07001139 uncached_rt = net->ipv6.ip6_null_entry;
Wei Wang1cfb71e2017-06-17 10:42:33 -07001140 dst_hold(&uncached_rt->dst);
1141 }
David Ahernb8115802015-11-19 12:24:22 -08001142
1143 trace_fib6_table_lookup(net, uncached_rt, table->tb6_id, fl6);
Martin KaFai Lau3da59bd2015-05-22 20:56:03 -07001144 return uncached_rt;
Martin KaFai Lau3da59bd2015-05-22 20:56:03 -07001145
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001146 } else {
1147 /* Get a percpu copy */
1148
1149 struct rt6_info *pcpu_rt;
1150
1151 rt->dst.lastuse = jiffies;
1152 rt->dst.__use++;
1153 pcpu_rt = rt6_get_pcpu_route(rt);
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001154
Martin KaFai Lau9c7370a2015-08-14 11:05:54 -07001155 if (pcpu_rt) {
1156 read_unlock_bh(&table->tb6_lock);
1157 } else {
1158 /* We have to do the read_unlock first
1159 * because rt6_make_pcpu_route() may trigger
1160 * ip6_dst_gc() which will take the write_lock.
1161 */
1162 dst_hold(&rt->dst);
1163 read_unlock_bh(&table->tb6_lock);
Martin KaFai Laua73e4192015-08-14 11:05:53 -07001164 pcpu_rt = rt6_make_pcpu_route(rt);
Martin KaFai Lau9c7370a2015-08-14 11:05:54 -07001165 dst_release(&rt->dst);
1166 }
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001167
David Ahernb8115802015-11-19 12:24:22 -08001168 trace_fib6_table_lookup(net, pcpu_rt, table->tb6_id, fl6);
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001169 return pcpu_rt;
Martin KaFai Lau9c7370a2015-08-14 11:05:54 -07001170
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001171 }
Thomas Grafc71099a2006-08-04 23:20:06 -07001172}
David Ahern9ff74382016-06-13 13:44:19 -07001173EXPORT_SYMBOL_GPL(ip6_pol_route);
Thomas Grafc71099a2006-08-04 23:20:06 -07001174
Daniel Lezcano8ed67782008-03-04 13:48:30 -08001175static struct rt6_info *ip6_pol_route_input(struct net *net, struct fib6_table *table,
David S. Miller4c9483b2011-03-12 16:22:43 -05001176 struct flowi6 *fl6, int flags)
Pavel Emelyanov4acad722007-10-15 13:02:51 -07001177{
David S. Miller4c9483b2011-03-12 16:22:43 -05001178 return ip6_pol_route(net, table, fl6->flowi6_iif, fl6, flags);
Pavel Emelyanov4acad722007-10-15 13:02:51 -07001179}
1180
Mahesh Bandeward409b842016-09-16 12:59:08 -07001181struct dst_entry *ip6_route_input_lookup(struct net *net,
1182 struct net_device *dev,
1183 struct flowi6 *fl6, int flags)
Shmulik Ladkani72331bc2012-04-01 04:03:45 +00001184{
1185 if (rt6_need_strict(&fl6->daddr) && dev->type != ARPHRD_PIMREG)
1186 flags |= RT6_LOOKUP_F_IFACE;
1187
1188 return fib6_rule_lookup(net, fl6, flags, ip6_pol_route_input);
1189}
Mahesh Bandeward409b842016-09-16 12:59:08 -07001190EXPORT_SYMBOL_GPL(ip6_route_input_lookup);
Shmulik Ladkani72331bc2012-04-01 04:03:45 +00001191
Thomas Grafc71099a2006-08-04 23:20:06 -07001192void ip6_route_input(struct sk_buff *skb)
1193{
Eric Dumazetb71d1d42011-04-22 04:53:02 +00001194 const struct ipv6hdr *iph = ipv6_hdr(skb);
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001195 struct net *net = dev_net(skb->dev);
Thomas Grafadaa70b2006-10-13 15:01:03 -07001196 int flags = RT6_LOOKUP_F_HAS_SADDR;
Jiri Benc904af042015-08-20 13:56:31 +02001197 struct ip_tunnel_info *tun_info;
David S. Miller4c9483b2011-03-12 16:22:43 -05001198 struct flowi6 fl6 = {
David Aherne0d56fd2016-09-10 12:09:57 -07001199 .flowi6_iif = skb->dev->ifindex,
David S. Miller4c9483b2011-03-12 16:22:43 -05001200 .daddr = iph->daddr,
1201 .saddr = iph->saddr,
YOSHIFUJI Hideaki / 吉藤英明6502ca52013-01-13 05:01:51 +00001202 .flowlabel = ip6_flowinfo(iph),
David S. Miller4c9483b2011-03-12 16:22:43 -05001203 .flowi6_mark = skb->mark,
1204 .flowi6_proto = iph->nexthdr,
Thomas Grafc71099a2006-08-04 23:20:06 -07001205 };
Thomas Grafadaa70b2006-10-13 15:01:03 -07001206
Jiri Benc904af042015-08-20 13:56:31 +02001207 tun_info = skb_tunnel_info(skb);
Jiri Benc46fa0622015-08-28 20:48:19 +02001208 if (tun_info && !(tun_info->mode & IP_TUNNEL_INFO_TX))
Jiri Benc904af042015-08-20 13:56:31 +02001209 fl6.flowi6_tun_key.tun_id = tun_info->key.tun_id;
Jiri Benc06e9d042015-08-20 13:56:26 +02001210 skb_dst_drop(skb);
Shmulik Ladkani72331bc2012-04-01 04:03:45 +00001211 skb_dst_set(skb, ip6_route_input_lookup(net, skb->dev, &fl6, flags));
Thomas Grafc71099a2006-08-04 23:20:06 -07001212}
1213
Daniel Lezcano8ed67782008-03-04 13:48:30 -08001214static struct rt6_info *ip6_pol_route_output(struct net *net, struct fib6_table *table,
David S. Miller4c9483b2011-03-12 16:22:43 -05001215 struct flowi6 *fl6, int flags)
Thomas Grafc71099a2006-08-04 23:20:06 -07001216{
David S. Miller4c9483b2011-03-12 16:22:43 -05001217 return ip6_pol_route(net, table, fl6->flowi6_oif, fl6, flags);
Thomas Grafc71099a2006-08-04 23:20:06 -07001218}
1219
Paolo Abeni6f21c962016-01-29 12:30:19 +01001220struct dst_entry *ip6_route_output_flags(struct net *net, const struct sock *sk,
1221 struct flowi6 *fl6, int flags)
Thomas Grafc71099a2006-08-04 23:20:06 -07001222{
David Ahernd46a9d62015-10-21 08:42:22 -07001223 bool any_src;
Thomas Grafc71099a2006-08-04 23:20:06 -07001224
David Ahern4c1feac2016-09-10 12:09:56 -07001225 if (rt6_need_strict(&fl6->daddr)) {
1226 struct dst_entry *dst;
1227
1228 dst = l3mdev_link_scope_lookup(net, fl6);
1229 if (dst)
1230 return dst;
1231 }
David Ahernca254492015-10-12 11:47:10 -07001232
Pavel Emelyanov1fb94892012-08-08 21:53:36 +00001233 fl6->flowi6_iif = LOOPBACK_IFINDEX;
David McCullough4dc27d1c2012-06-25 15:42:26 +00001234
David Ahernd46a9d62015-10-21 08:42:22 -07001235 any_src = ipv6_addr_any(&fl6->saddr);
David Ahern741a11d2015-09-28 10:12:13 -07001236 if ((sk && sk->sk_bound_dev_if) || rt6_need_strict(&fl6->daddr) ||
David Ahernd46a9d62015-10-21 08:42:22 -07001237 (fl6->flowi6_oif && any_src))
YOSHIFUJI Hideaki77d16f42006-08-23 17:25:05 -07001238 flags |= RT6_LOOKUP_F_IFACE;
Thomas Grafc71099a2006-08-04 23:20:06 -07001239
David Ahernd46a9d62015-10-21 08:42:22 -07001240 if (!any_src)
Thomas Grafadaa70b2006-10-13 15:01:03 -07001241 flags |= RT6_LOOKUP_F_HAS_SADDR;
YOSHIFUJI Hideaki / 吉藤英明0c9a2ac2010-03-07 00:14:44 +00001242 else if (sk)
1243 flags |= rt6_srcprefs2flags(inet6_sk(sk)->srcprefs);
Thomas Grafadaa70b2006-10-13 15:01:03 -07001244
David S. Miller4c9483b2011-03-12 16:22:43 -05001245 return fib6_rule_lookup(net, fl6, flags, ip6_pol_route_output);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246}
Paolo Abeni6f21c962016-01-29 12:30:19 +01001247EXPORT_SYMBOL_GPL(ip6_route_output_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248
David S. Miller2774c132011-03-01 14:59:04 -08001249struct dst_entry *ip6_blackhole_route(struct net *net, struct dst_entry *dst_orig)
David S. Miller14e50e52007-05-24 18:17:54 -07001250{
David S. Miller5c1e6aa2011-04-28 14:13:38 -07001251 struct rt6_info *rt, *ort = (struct rt6_info *) dst_orig;
Wei Wang1dbe32522017-06-17 10:42:26 -07001252 struct net_device *loopback_dev = net->loopback_dev;
David S. Miller14e50e52007-05-24 18:17:54 -07001253 struct dst_entry *new = NULL;
1254
Wei Wang1dbe32522017-06-17 10:42:26 -07001255 rt = dst_alloc(&ip6_dst_blackhole_ops, loopback_dev, 1,
Wei Wangb2a9c0e2017-06-17 10:42:41 -07001256 DST_OBSOLETE_NONE, 0);
David S. Miller14e50e52007-05-24 18:17:54 -07001257 if (rt) {
Martin KaFai Lau0a1f5962015-10-15 16:39:58 -07001258 rt6_info_init(rt);
1259
Changli Gaod8d1f302010-06-10 23:31:35 -07001260 new = &rt->dst;
David S. Miller14e50e52007-05-24 18:17:54 -07001261 new->__use = 1;
Herbert Xu352e5122007-11-13 21:34:06 -08001262 new->input = dst_discard;
Eric W. Biedermanede20592015-10-07 16:48:47 -05001263 new->output = dst_discard_out;
David S. Miller14e50e52007-05-24 18:17:54 -07001264
Martin KaFai Lau0a1f5962015-10-15 16:39:58 -07001265 dst_copy_metrics(new, &ort->dst);
David S. Miller14e50e52007-05-24 18:17:54 -07001266
Wei Wang1dbe32522017-06-17 10:42:26 -07001267 rt->rt6i_idev = in6_dev_get(loopback_dev);
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001268 rt->rt6i_gateway = ort->rt6i_gateway;
Martin KaFai Lau0a1f5962015-10-15 16:39:58 -07001269 rt->rt6i_flags = ort->rt6i_flags & ~RTF_PCPU;
David S. Miller14e50e52007-05-24 18:17:54 -07001270 rt->rt6i_metric = 0;
1271
1272 memcpy(&rt->rt6i_dst, &ort->rt6i_dst, sizeof(struct rt6key));
1273#ifdef CONFIG_IPV6_SUBTREES
1274 memcpy(&rt->rt6i_src, &ort->rt6i_src, sizeof(struct rt6key));
1275#endif
David S. Miller14e50e52007-05-24 18:17:54 -07001276 }
1277
David S. Miller69ead7a2011-03-01 14:45:33 -08001278 dst_release(dst_orig);
1279 return new ? new : ERR_PTR(-ENOMEM);
David S. Miller14e50e52007-05-24 18:17:54 -07001280}
David S. Miller14e50e52007-05-24 18:17:54 -07001281
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282/*
1283 * Destination cache support functions
1284 */
1285
Martin KaFai Lau4b32b5a2015-04-28 13:03:06 -07001286static void rt6_dst_from_metrics_check(struct rt6_info *rt)
1287{
1288 if (rt->dst.from &&
1289 dst_metrics_ptr(&rt->dst) != dst_metrics_ptr(rt->dst.from))
1290 dst_init_metrics(&rt->dst, dst_metrics_ptr(rt->dst.from), true);
1291}
1292
Martin KaFai Lau3da59bd2015-05-22 20:56:03 -07001293static struct dst_entry *rt6_check(struct rt6_info *rt, u32 cookie)
1294{
1295 if (!rt->rt6i_node || (rt->rt6i_node->fn_sernum != cookie))
1296 return NULL;
1297
1298 if (rt6_check_expired(rt))
1299 return NULL;
1300
1301 return &rt->dst;
1302}
1303
1304static struct dst_entry *rt6_dst_from_check(struct rt6_info *rt, u32 cookie)
1305{
Martin KaFai Lau5973fb12015-11-11 11:51:07 -08001306 if (!__rt6_check_expired(rt) &&
1307 rt->dst.obsolete == DST_OBSOLETE_FORCE_CHK &&
Martin KaFai Lau3da59bd2015-05-22 20:56:03 -07001308 rt6_check((struct rt6_info *)(rt->dst.from), cookie))
1309 return &rt->dst;
1310 else
1311 return NULL;
1312}
1313
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314static struct dst_entry *ip6_dst_check(struct dst_entry *dst, u32 cookie)
1315{
1316 struct rt6_info *rt;
1317
1318 rt = (struct rt6_info *) dst;
1319
Nicolas Dichtel6f3118b2012-09-10 22:09:46 +00001320 /* All IPV6 dsts are created with ->obsolete set to the value
1321 * DST_OBSOLETE_FORCE_CHK which forces validation calls down
1322 * into this function always.
1323 */
Hannes Frederic Sowae3bc10b2013-10-24 07:48:24 +02001324
Martin KaFai Lau4b32b5a2015-04-28 13:03:06 -07001325 rt6_dst_from_metrics_check(rt);
1326
Martin KaFai Lau02bcf4e2015-11-11 11:51:08 -08001327 if (rt->rt6i_flags & RTF_PCPU ||
Wei Wanga4c2fd72017-06-17 10:42:42 -07001328 (unlikely(!list_empty(&rt->rt6i_uncached)) && rt->dst.from))
Martin KaFai Lau3da59bd2015-05-22 20:56:03 -07001329 return rt6_dst_from_check(rt, cookie);
1330 else
1331 return rt6_check(rt, cookie);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332}
1333
1334static struct dst_entry *ip6_negative_advice(struct dst_entry *dst)
1335{
1336 struct rt6_info *rt = (struct rt6_info *) dst;
1337
1338 if (rt) {
YOSHIFUJI Hideaki / 吉藤英明54c1a852010-03-28 07:15:45 +00001339 if (rt->rt6i_flags & RTF_CACHE) {
1340 if (rt6_check_expired(rt)) {
1341 ip6_del_rt(rt);
1342 dst = NULL;
1343 }
1344 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345 dst_release(dst);
YOSHIFUJI Hideaki / 吉藤英明54c1a852010-03-28 07:15:45 +00001346 dst = NULL;
1347 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348 }
YOSHIFUJI Hideaki / 吉藤英明54c1a852010-03-28 07:15:45 +00001349 return dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350}
1351
1352static void ip6_link_failure(struct sk_buff *skb)
1353{
1354 struct rt6_info *rt;
1355
Alexey Dobriyan3ffe5332010-02-18 08:25:24 +00001356 icmpv6_send(skb, ICMPV6_DEST_UNREACH, ICMPV6_ADDR_UNREACH, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357
Eric Dumazetadf30902009-06-02 05:19:30 +00001358 rt = (struct rt6_info *) skb_dst(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359 if (rt) {
Hannes Frederic Sowa1eb4f752013-07-10 23:00:57 +02001360 if (rt->rt6i_flags & RTF_CACHE) {
Wei Wangad65a2f2017-06-17 10:42:35 -07001361 if (dst_hold_safe(&rt->dst))
1362 ip6_del_rt(rt);
Hannes Frederic Sowa1eb4f752013-07-10 23:00:57 +02001363 } else if (rt->rt6i_node && (rt->rt6i_flags & RTF_DEFAULT)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364 rt->rt6i_node->fn_sernum = -1;
Hannes Frederic Sowa1eb4f752013-07-10 23:00:57 +02001365 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366 }
1367}
1368
Martin KaFai Lau45e4fd22015-05-22 20:56:00 -07001369static void rt6_do_update_pmtu(struct rt6_info *rt, u32 mtu)
1370{
1371 struct net *net = dev_net(rt->dst.dev);
1372
1373 rt->rt6i_flags |= RTF_MODIFIED;
1374 rt->rt6i_pmtu = mtu;
1375 rt6_update_expires(rt, net->ipv6.sysctl.ip6_rt_mtu_expires);
1376}
1377
Martin KaFai Lau0d3f6d22015-11-11 11:51:06 -08001378static bool rt6_cache_allowed_for_pmtu(const struct rt6_info *rt)
1379{
1380 return !(rt->rt6i_flags & RTF_CACHE) &&
1381 (rt->rt6i_flags & RTF_PCPU || rt->rt6i_node);
1382}
1383
Martin KaFai Lau45e4fd22015-05-22 20:56:00 -07001384static void __ip6_rt_update_pmtu(struct dst_entry *dst, const struct sock *sk,
1385 const struct ipv6hdr *iph, u32 mtu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386{
Julian Anastasov0dec8792017-02-06 23:14:16 +02001387 const struct in6_addr *daddr, *saddr;
Ian Morris67ba4152014-08-24 21:53:10 +01001388 struct rt6_info *rt6 = (struct rt6_info *)dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389
Martin KaFai Lau45e4fd22015-05-22 20:56:00 -07001390 if (rt6->rt6i_flags & RTF_LOCAL)
1391 return;
1392
Xin Long19bda362016-10-28 18:18:01 +08001393 if (dst_metric_locked(dst, RTAX_MTU))
1394 return;
1395
Julian Anastasov0dec8792017-02-06 23:14:16 +02001396 if (iph) {
1397 daddr = &iph->daddr;
1398 saddr = &iph->saddr;
1399 } else if (sk) {
1400 daddr = &sk->sk_v6_daddr;
1401 saddr = &inet6_sk(sk)->saddr;
1402 } else {
1403 daddr = NULL;
1404 saddr = NULL;
1405 }
1406 dst_confirm_neigh(dst, daddr);
Martin KaFai Lau45e4fd22015-05-22 20:56:00 -07001407 mtu = max_t(u32, mtu, IPV6_MIN_MTU);
1408 if (mtu >= dst_mtu(dst))
1409 return;
David S. Miller81aded22012-06-15 14:54:11 -07001410
Martin KaFai Lau0d3f6d22015-11-11 11:51:06 -08001411 if (!rt6_cache_allowed_for_pmtu(rt6)) {
Martin KaFai Lau45e4fd22015-05-22 20:56:00 -07001412 rt6_do_update_pmtu(rt6, mtu);
Julian Anastasov0dec8792017-02-06 23:14:16 +02001413 } else if (daddr) {
Martin KaFai Lau45e4fd22015-05-22 20:56:00 -07001414 struct rt6_info *nrt6;
Hagen Paul Pfeifer9d289712015-01-15 22:34:25 +01001415
Martin KaFai Lau45e4fd22015-05-22 20:56:00 -07001416 nrt6 = ip6_rt_cache_alloc(rt6, daddr, saddr);
1417 if (nrt6) {
1418 rt6_do_update_pmtu(nrt6, mtu);
1419
1420 /* ip6_ins_rt(nrt6) will bump the
1421 * rt6->rt6i_node->fn_sernum
1422 * which will fail the next rt6_check() and
1423 * invalidate the sk->sk_dst_cache.
1424 */
1425 ip6_ins_rt(nrt6);
Wei Wang1cfb71e2017-06-17 10:42:33 -07001426 /* Release the reference taken in
1427 * ip6_rt_cache_alloc()
1428 */
1429 dst_release(&nrt6->dst);
Martin KaFai Lau45e4fd22015-05-22 20:56:00 -07001430 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431 }
1432}
1433
Martin KaFai Lau45e4fd22015-05-22 20:56:00 -07001434static void ip6_rt_update_pmtu(struct dst_entry *dst, struct sock *sk,
1435 struct sk_buff *skb, u32 mtu)
1436{
1437 __ip6_rt_update_pmtu(dst, sk, skb ? ipv6_hdr(skb) : NULL, mtu);
1438}
1439
David S. Miller42ae66c2012-06-15 20:01:57 -07001440void ip6_update_pmtu(struct sk_buff *skb, struct net *net, __be32 mtu,
Lorenzo Colittie2d118a2016-11-04 02:23:43 +09001441 int oif, u32 mark, kuid_t uid)
David S. Miller81aded22012-06-15 14:54:11 -07001442{
1443 const struct ipv6hdr *iph = (struct ipv6hdr *) skb->data;
1444 struct dst_entry *dst;
1445 struct flowi6 fl6;
1446
1447 memset(&fl6, 0, sizeof(fl6));
1448 fl6.flowi6_oif = oif;
Lorenzo Colitti1b3c61d2014-05-13 10:17:34 -07001449 fl6.flowi6_mark = mark ? mark : IP6_REPLY_MARK(net, skb->mark);
David S. Miller81aded22012-06-15 14:54:11 -07001450 fl6.daddr = iph->daddr;
1451 fl6.saddr = iph->saddr;
YOSHIFUJI Hideaki / 吉藤英明6502ca52013-01-13 05:01:51 +00001452 fl6.flowlabel = ip6_flowinfo(iph);
Lorenzo Colittie2d118a2016-11-04 02:23:43 +09001453 fl6.flowi6_uid = uid;
David S. Miller81aded22012-06-15 14:54:11 -07001454
1455 dst = ip6_route_output(net, NULL, &fl6);
1456 if (!dst->error)
Martin KaFai Lau45e4fd22015-05-22 20:56:00 -07001457 __ip6_rt_update_pmtu(dst, NULL, iph, ntohl(mtu));
David S. Miller81aded22012-06-15 14:54:11 -07001458 dst_release(dst);
1459}
1460EXPORT_SYMBOL_GPL(ip6_update_pmtu);
1461
1462void ip6_sk_update_pmtu(struct sk_buff *skb, struct sock *sk, __be32 mtu)
1463{
Martin KaFai Lau33c162a2016-04-11 15:29:36 -07001464 struct dst_entry *dst;
1465
David S. Miller81aded22012-06-15 14:54:11 -07001466 ip6_update_pmtu(skb, sock_net(sk), mtu,
Lorenzo Colittie2d118a2016-11-04 02:23:43 +09001467 sk->sk_bound_dev_if, sk->sk_mark, sk->sk_uid);
Martin KaFai Lau33c162a2016-04-11 15:29:36 -07001468
1469 dst = __sk_dst_get(sk);
1470 if (!dst || !dst->obsolete ||
1471 dst->ops->check(dst, inet6_sk(sk)->dst_cookie))
1472 return;
1473
1474 bh_lock_sock(sk);
1475 if (!sock_owned_by_user(sk) && !ipv6_addr_v4mapped(&sk->sk_v6_daddr))
1476 ip6_datagram_dst_update(sk, false);
1477 bh_unlock_sock(sk);
David S. Miller81aded22012-06-15 14:54:11 -07001478}
1479EXPORT_SYMBOL_GPL(ip6_sk_update_pmtu);
1480
Duan Jiongb55b76b2013-09-04 19:44:21 +08001481/* Handle redirects */
1482struct ip6rd_flowi {
1483 struct flowi6 fl6;
1484 struct in6_addr gateway;
1485};
1486
1487static struct rt6_info *__ip6_route_redirect(struct net *net,
1488 struct fib6_table *table,
1489 struct flowi6 *fl6,
1490 int flags)
1491{
1492 struct ip6rd_flowi *rdfl = (struct ip6rd_flowi *)fl6;
1493 struct rt6_info *rt;
1494 struct fib6_node *fn;
1495
1496 /* Get the "current" route for this destination and
Alexander Alemayhu67c408c2017-01-07 23:53:00 +01001497 * check if the redirect has come from appropriate router.
Duan Jiongb55b76b2013-09-04 19:44:21 +08001498 *
1499 * RFC 4861 specifies that redirects should only be
1500 * accepted if they come from the nexthop to the target.
1501 * Due to the way the routes are chosen, this notion
1502 * is a bit fuzzy and one might need to check all possible
1503 * routes.
1504 */
1505
1506 read_lock_bh(&table->tb6_lock);
1507 fn = fib6_lookup(&table->tb6_root, &fl6->daddr, &fl6->saddr);
1508restart:
1509 for (rt = fn->leaf; rt; rt = rt->dst.rt6_next) {
1510 if (rt6_check_expired(rt))
1511 continue;
1512 if (rt->dst.error)
1513 break;
1514 if (!(rt->rt6i_flags & RTF_GATEWAY))
1515 continue;
1516 if (fl6->flowi6_oif != rt->dst.dev->ifindex)
1517 continue;
1518 if (!ipv6_addr_equal(&rdfl->gateway, &rt->rt6i_gateway))
1519 continue;
1520 break;
1521 }
1522
1523 if (!rt)
1524 rt = net->ipv6.ip6_null_entry;
1525 else if (rt->dst.error) {
1526 rt = net->ipv6.ip6_null_entry;
Martin KaFai Laub0a1ba52015-01-20 19:16:02 -08001527 goto out;
1528 }
1529
1530 if (rt == net->ipv6.ip6_null_entry) {
Martin KaFai Laua3c00e42014-10-20 13:42:43 -07001531 fn = fib6_backtrack(fn, &fl6->saddr);
1532 if (fn)
1533 goto restart;
Duan Jiongb55b76b2013-09-04 19:44:21 +08001534 }
Martin KaFai Laua3c00e42014-10-20 13:42:43 -07001535
Martin KaFai Laub0a1ba52015-01-20 19:16:02 -08001536out:
Duan Jiongb55b76b2013-09-04 19:44:21 +08001537 dst_hold(&rt->dst);
1538
1539 read_unlock_bh(&table->tb6_lock);
1540
David Ahernb8115802015-11-19 12:24:22 -08001541 trace_fib6_table_lookup(net, rt, table->tb6_id, fl6);
Duan Jiongb55b76b2013-09-04 19:44:21 +08001542 return rt;
1543};
1544
1545static struct dst_entry *ip6_route_redirect(struct net *net,
1546 const struct flowi6 *fl6,
1547 const struct in6_addr *gateway)
1548{
1549 int flags = RT6_LOOKUP_F_HAS_SADDR;
1550 struct ip6rd_flowi rdfl;
1551
1552 rdfl.fl6 = *fl6;
1553 rdfl.gateway = *gateway;
1554
1555 return fib6_rule_lookup(net, &rdfl.fl6,
1556 flags, __ip6_route_redirect);
1557}
1558
Lorenzo Colittie2d118a2016-11-04 02:23:43 +09001559void ip6_redirect(struct sk_buff *skb, struct net *net, int oif, u32 mark,
1560 kuid_t uid)
David S. Miller3a5ad2e2012-07-12 00:08:07 -07001561{
1562 const struct ipv6hdr *iph = (struct ipv6hdr *) skb->data;
1563 struct dst_entry *dst;
1564 struct flowi6 fl6;
1565
1566 memset(&fl6, 0, sizeof(fl6));
Julian Anastasove374c612014-04-28 10:51:56 +03001567 fl6.flowi6_iif = LOOPBACK_IFINDEX;
David S. Miller3a5ad2e2012-07-12 00:08:07 -07001568 fl6.flowi6_oif = oif;
1569 fl6.flowi6_mark = mark;
David S. Miller3a5ad2e2012-07-12 00:08:07 -07001570 fl6.daddr = iph->daddr;
1571 fl6.saddr = iph->saddr;
YOSHIFUJI Hideaki / 吉藤英明6502ca52013-01-13 05:01:51 +00001572 fl6.flowlabel = ip6_flowinfo(iph);
Lorenzo Colittie2d118a2016-11-04 02:23:43 +09001573 fl6.flowi6_uid = uid;
David S. Miller3a5ad2e2012-07-12 00:08:07 -07001574
Duan Jiongb55b76b2013-09-04 19:44:21 +08001575 dst = ip6_route_redirect(net, &fl6, &ipv6_hdr(skb)->saddr);
1576 rt6_do_redirect(dst, NULL, skb);
David S. Miller3a5ad2e2012-07-12 00:08:07 -07001577 dst_release(dst);
1578}
1579EXPORT_SYMBOL_GPL(ip6_redirect);
1580
Duan Jiongc92a59e2013-08-22 12:07:35 +08001581void ip6_redirect_no_header(struct sk_buff *skb, struct net *net, int oif,
1582 u32 mark)
1583{
1584 const struct ipv6hdr *iph = ipv6_hdr(skb);
1585 const struct rd_msg *msg = (struct rd_msg *)icmp6_hdr(skb);
1586 struct dst_entry *dst;
1587 struct flowi6 fl6;
1588
1589 memset(&fl6, 0, sizeof(fl6));
Julian Anastasove374c612014-04-28 10:51:56 +03001590 fl6.flowi6_iif = LOOPBACK_IFINDEX;
Duan Jiongc92a59e2013-08-22 12:07:35 +08001591 fl6.flowi6_oif = oif;
1592 fl6.flowi6_mark = mark;
Duan Jiongc92a59e2013-08-22 12:07:35 +08001593 fl6.daddr = msg->dest;
1594 fl6.saddr = iph->daddr;
Lorenzo Colittie2d118a2016-11-04 02:23:43 +09001595 fl6.flowi6_uid = sock_net_uid(net, NULL);
Duan Jiongc92a59e2013-08-22 12:07:35 +08001596
Duan Jiongb55b76b2013-09-04 19:44:21 +08001597 dst = ip6_route_redirect(net, &fl6, &iph->saddr);
1598 rt6_do_redirect(dst, NULL, skb);
Duan Jiongc92a59e2013-08-22 12:07:35 +08001599 dst_release(dst);
1600}
1601
David S. Miller3a5ad2e2012-07-12 00:08:07 -07001602void ip6_sk_redirect(struct sk_buff *skb, struct sock *sk)
1603{
Lorenzo Colittie2d118a2016-11-04 02:23:43 +09001604 ip6_redirect(skb, sock_net(sk), sk->sk_bound_dev_if, sk->sk_mark,
1605 sk->sk_uid);
David S. Miller3a5ad2e2012-07-12 00:08:07 -07001606}
1607EXPORT_SYMBOL_GPL(ip6_sk_redirect);
1608
David S. Miller0dbaee32010-12-13 12:52:14 -08001609static unsigned int ip6_default_advmss(const struct dst_entry *dst)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610{
David S. Miller0dbaee32010-12-13 12:52:14 -08001611 struct net_device *dev = dst->dev;
1612 unsigned int mtu = dst_mtu(dst);
1613 struct net *net = dev_net(dev);
1614
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615 mtu -= sizeof(struct ipv6hdr) + sizeof(struct tcphdr);
1616
Daniel Lezcano55786892008-03-04 13:47:47 -08001617 if (mtu < net->ipv6.sysctl.ip6_rt_min_advmss)
1618 mtu = net->ipv6.sysctl.ip6_rt_min_advmss;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619
1620 /*
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001621 * Maximal non-jumbo IPv6 payload is IPV6_MAXPLEN and
1622 * corresponding MSS is IPV6_MAXPLEN - tcp_header_size.
1623 * IPV6_MAXPLEN is also valid and means: "any MSS,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624 * rely only on pmtu discovery"
1625 */
1626 if (mtu > IPV6_MAXPLEN - sizeof(struct tcphdr))
1627 mtu = IPV6_MAXPLEN;
1628 return mtu;
1629}
1630
Steffen Klassertebb762f2011-11-23 02:12:51 +00001631static unsigned int ip6_mtu(const struct dst_entry *dst)
David S. Millerd33e4552010-12-14 13:01:14 -08001632{
Martin KaFai Lau4b32b5a2015-04-28 13:03:06 -07001633 const struct rt6_info *rt = (const struct rt6_info *)dst;
1634 unsigned int mtu = rt->rt6i_pmtu;
David S. Millerd33e4552010-12-14 13:01:14 -08001635 struct inet6_dev *idev;
Steffen Klassert618f9bc2011-11-23 02:13:31 +00001636
1637 if (mtu)
Eric Dumazet30f78d82014-04-10 21:23:36 -07001638 goto out;
Steffen Klassert618f9bc2011-11-23 02:13:31 +00001639
Martin KaFai Lau4b32b5a2015-04-28 13:03:06 -07001640 mtu = dst_metric_raw(dst, RTAX_MTU);
1641 if (mtu)
1642 goto out;
1643
Steffen Klassert618f9bc2011-11-23 02:13:31 +00001644 mtu = IPV6_MIN_MTU;
David S. Millerd33e4552010-12-14 13:01:14 -08001645
1646 rcu_read_lock();
1647 idev = __in6_dev_get(dst->dev);
1648 if (idev)
1649 mtu = idev->cnf.mtu6;
1650 rcu_read_unlock();
1651
Eric Dumazet30f78d82014-04-10 21:23:36 -07001652out:
Roopa Prabhu14972cb2016-08-24 20:10:43 -07001653 mtu = min_t(unsigned int, mtu, IP6_MAX_MTU);
1654
1655 return mtu - lwtunnel_headroom(dst->lwtstate, mtu);
David S. Millerd33e4552010-12-14 13:01:14 -08001656}
1657
YOSHIFUJI Hideaki3b009442007-12-06 16:11:48 -08001658struct dst_entry *icmp6_dst_alloc(struct net_device *dev,
David S. Miller87a11572011-12-06 17:04:13 -05001659 struct flowi6 *fl6)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660{
David S. Miller87a11572011-12-06 17:04:13 -05001661 struct dst_entry *dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662 struct rt6_info *rt;
1663 struct inet6_dev *idev = in6_dev_get(dev);
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001664 struct net *net = dev_net(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665
David S. Miller38308472011-12-03 18:02:47 -05001666 if (unlikely(!idev))
Eric Dumazet122bdf62012-03-14 21:13:11 +00001667 return ERR_PTR(-ENODEV);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668
Martin KaFai Lauad706862015-08-14 11:05:52 -07001669 rt = ip6_dst_alloc(net, dev, 0);
David S. Miller38308472011-12-03 18:02:47 -05001670 if (unlikely(!rt)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001671 in6_dev_put(idev);
David S. Miller87a11572011-12-06 17:04:13 -05001672 dst = ERR_PTR(-ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673 goto out;
1674 }
1675
Yan, Zheng8e2ec632011-09-05 21:34:30 +00001676 rt->dst.flags |= DST_HOST;
1677 rt->dst.output = ip6_output;
Julian Anastasov550bab42013-10-20 15:43:04 +03001678 rt->rt6i_gateway = fl6->daddr;
David S. Miller87a11572011-12-06 17:04:13 -05001679 rt->rt6i_dst.addr = fl6->daddr;
Yan, Zheng8e2ec632011-09-05 21:34:30 +00001680 rt->rt6i_dst.plen = 128;
1681 rt->rt6i_idev = idev;
Li RongQing14edd872012-10-24 14:01:18 +08001682 dst_metric_set(&rt->dst, RTAX_HOPLIMIT, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683
Wei Wang587fea72017-06-17 10:42:36 -07001684 /* Add this dst into uncached_list so that rt6_ifdown() can
1685 * do proper release of the net_device
1686 */
1687 rt6_uncached_list_add(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688
David S. Miller87a11572011-12-06 17:04:13 -05001689 dst = xfrm_lookup(net, &rt->dst, flowi6_to_flowi(fl6), NULL, 0);
1690
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691out:
David S. Miller87a11572011-12-06 17:04:13 -05001692 return dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693}
1694
Daniel Lezcano569d3642008-01-18 03:56:57 -08001695static int ip6_dst_gc(struct dst_ops *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696{
Alexey Dobriyan86393e52009-08-29 01:34:49 +00001697 struct net *net = container_of(ops, struct net, ipv6.ip6_dst_ops);
Daniel Lezcano7019b782008-03-04 13:50:14 -08001698 int rt_min_interval = net->ipv6.sysctl.ip6_rt_gc_min_interval;
1699 int rt_max_size = net->ipv6.sysctl.ip6_rt_max_size;
1700 int rt_elasticity = net->ipv6.sysctl.ip6_rt_gc_elasticity;
1701 int rt_gc_timeout = net->ipv6.sysctl.ip6_rt_gc_timeout;
1702 unsigned long rt_last_gc = net->ipv6.ip6_rt_last_gc;
Eric Dumazetfc66f952010-10-08 06:37:34 +00001703 int entries;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704
Eric Dumazetfc66f952010-10-08 06:37:34 +00001705 entries = dst_entries_get_fast(ops);
Michal Kubeček49a18d82013-08-01 10:04:24 +02001706 if (time_after(rt_last_gc + rt_min_interval, jiffies) &&
Eric Dumazetfc66f952010-10-08 06:37:34 +00001707 entries <= rt_max_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001708 goto out;
1709
Benjamin Thery6891a342008-03-04 13:49:47 -08001710 net->ipv6.ip6_rt_gc_expire++;
Li RongQing14956642014-05-19 17:30:28 +08001711 fib6_run_gc(net->ipv6.ip6_rt_gc_expire, net, true);
Eric Dumazetfc66f952010-10-08 06:37:34 +00001712 entries = dst_entries_get_slow(ops);
1713 if (entries < ops->gc_thresh)
Daniel Lezcano7019b782008-03-04 13:50:14 -08001714 net->ipv6.ip6_rt_gc_expire = rt_gc_timeout>>1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715out:
Daniel Lezcano7019b782008-03-04 13:50:14 -08001716 net->ipv6.ip6_rt_gc_expire -= net->ipv6.ip6_rt_gc_expire>>rt_elasticity;
Eric Dumazetfc66f952010-10-08 06:37:34 +00001717 return entries > rt_max_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718}
1719
Florian Westphale715b6d2015-01-05 23:57:44 +01001720static int ip6_convert_metrics(struct mx6_config *mxc,
1721 const struct fib6_config *cfg)
1722{
Daniel Borkmannc3a8d942015-08-31 15:58:47 +02001723 bool ecn_ca = false;
Florian Westphale715b6d2015-01-05 23:57:44 +01001724 struct nlattr *nla;
1725 int remaining;
1726 u32 *mp;
1727
Ian Morris63159f22015-03-29 14:00:04 +01001728 if (!cfg->fc_mx)
Florian Westphale715b6d2015-01-05 23:57:44 +01001729 return 0;
1730
1731 mp = kzalloc(sizeof(u32) * RTAX_MAX, GFP_KERNEL);
1732 if (unlikely(!mp))
1733 return -ENOMEM;
1734
1735 nla_for_each_attr(nla, cfg->fc_mx, cfg->fc_mx_len, remaining) {
1736 int type = nla_type(nla);
Daniel Borkmann1bb14802015-08-31 15:58:45 +02001737 u32 val;
Florian Westphale715b6d2015-01-05 23:57:44 +01001738
Daniel Borkmann1bb14802015-08-31 15:58:45 +02001739 if (!type)
1740 continue;
1741 if (unlikely(type > RTAX_MAX))
1742 goto err;
Daniel Borkmannea697632015-01-05 23:57:47 +01001743
Daniel Borkmann1bb14802015-08-31 15:58:45 +02001744 if (type == RTAX_CC_ALGO) {
1745 char tmp[TCP_CA_NAME_MAX];
1746
1747 nla_strlcpy(tmp, nla, sizeof(tmp));
Daniel Borkmannc3a8d942015-08-31 15:58:47 +02001748 val = tcp_ca_get_key_by_name(tmp, &ecn_ca);
Daniel Borkmann1bb14802015-08-31 15:58:45 +02001749 if (val == TCP_CA_UNSPEC)
Florian Westphale715b6d2015-01-05 23:57:44 +01001750 goto err;
Daniel Borkmann1bb14802015-08-31 15:58:45 +02001751 } else {
1752 val = nla_get_u32(nla);
Florian Westphale715b6d2015-01-05 23:57:44 +01001753 }
Paolo Abeni626abd52016-05-13 18:33:41 +02001754 if (type == RTAX_HOPLIMIT && val > 255)
1755 val = 255;
Daniel Borkmannb8d3e412015-08-31 15:58:46 +02001756 if (type == RTAX_FEATURES && (val & ~RTAX_FEATURE_MASK))
1757 goto err;
Daniel Borkmann1bb14802015-08-31 15:58:45 +02001758
1759 mp[type - 1] = val;
1760 __set_bit(type - 1, mxc->mx_valid);
Florian Westphale715b6d2015-01-05 23:57:44 +01001761 }
1762
Daniel Borkmannc3a8d942015-08-31 15:58:47 +02001763 if (ecn_ca) {
1764 __set_bit(RTAX_FEATURES - 1, mxc->mx_valid);
1765 mp[RTAX_FEATURES - 1] |= DST_FEATURE_ECN_CA;
1766 }
Florian Westphale715b6d2015-01-05 23:57:44 +01001767
Daniel Borkmannc3a8d942015-08-31 15:58:47 +02001768 mxc->mx = mp;
Florian Westphale715b6d2015-01-05 23:57:44 +01001769 return 0;
1770 err:
1771 kfree(mp);
1772 return -EINVAL;
1773}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774
David Ahern8c145862016-04-24 21:26:04 -07001775static struct rt6_info *ip6_nh_lookup_table(struct net *net,
1776 struct fib6_config *cfg,
1777 const struct in6_addr *gw_addr)
1778{
1779 struct flowi6 fl6 = {
1780 .flowi6_oif = cfg->fc_ifindex,
1781 .daddr = *gw_addr,
1782 .saddr = cfg->fc_prefsrc,
1783 };
1784 struct fib6_table *table;
1785 struct rt6_info *rt;
David Ahernd5d32e42016-10-24 12:27:23 -07001786 int flags = RT6_LOOKUP_F_IFACE | RT6_LOOKUP_F_IGNORE_LINKSTATE;
David Ahern8c145862016-04-24 21:26:04 -07001787
1788 table = fib6_get_table(net, cfg->fc_table);
1789 if (!table)
1790 return NULL;
1791
1792 if (!ipv6_addr_any(&cfg->fc_prefsrc))
1793 flags |= RT6_LOOKUP_F_HAS_SADDR;
1794
1795 rt = ip6_pol_route(net, table, cfg->fc_ifindex, &fl6, flags);
1796
1797 /* if table lookup failed, fall back to full lookup */
1798 if (rt == net->ipv6.ip6_null_entry) {
1799 ip6_rt_put(rt);
1800 rt = NULL;
1801 }
1802
1803 return rt;
1804}
1805
David Ahern333c4302017-05-21 10:12:04 -06001806static struct rt6_info *ip6_route_info_create(struct fib6_config *cfg,
1807 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808{
Daniel Lezcano55786892008-03-04 13:47:47 -08001809 struct net *net = cfg->fc_nlinfo.nl_net;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001810 struct rt6_info *rt = NULL;
1811 struct net_device *dev = NULL;
1812 struct inet6_dev *idev = NULL;
Thomas Grafc71099a2006-08-04 23:20:06 -07001813 struct fib6_table *table;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814 int addr_type;
Roopa Prabhu8c5b83f2015-10-10 08:26:36 -07001815 int err = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001816
David Ahern557c44b2017-04-19 14:19:43 -07001817 /* RTF_PCPU is an internal flag; can not be set by userspace */
David Ahernd5d531c2017-05-21 10:12:05 -06001818 if (cfg->fc_flags & RTF_PCPU) {
1819 NL_SET_ERR_MSG(extack, "Userspace can not set RTF_PCPU");
David Ahern557c44b2017-04-19 14:19:43 -07001820 goto out;
David Ahernd5d531c2017-05-21 10:12:05 -06001821 }
David Ahern557c44b2017-04-19 14:19:43 -07001822
David Ahernd5d531c2017-05-21 10:12:05 -06001823 if (cfg->fc_dst_len > 128) {
1824 NL_SET_ERR_MSG(extack, "Invalid prefix length");
Roopa Prabhu8c5b83f2015-10-10 08:26:36 -07001825 goto out;
David Ahernd5d531c2017-05-21 10:12:05 -06001826 }
1827 if (cfg->fc_src_len > 128) {
1828 NL_SET_ERR_MSG(extack, "Invalid source address length");
1829 goto out;
1830 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831#ifndef CONFIG_IPV6_SUBTREES
David Ahernd5d531c2017-05-21 10:12:05 -06001832 if (cfg->fc_src_len) {
1833 NL_SET_ERR_MSG(extack,
1834 "Specifying source address requires IPV6_SUBTREES to be enabled");
Roopa Prabhu8c5b83f2015-10-10 08:26:36 -07001835 goto out;
David Ahernd5d531c2017-05-21 10:12:05 -06001836 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837#endif
Thomas Graf86872cb2006-08-22 00:01:08 -07001838 if (cfg->fc_ifindex) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001839 err = -ENODEV;
Daniel Lezcano55786892008-03-04 13:47:47 -08001840 dev = dev_get_by_index(net, cfg->fc_ifindex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841 if (!dev)
1842 goto out;
1843 idev = in6_dev_get(dev);
1844 if (!idev)
1845 goto out;
1846 }
1847
Thomas Graf86872cb2006-08-22 00:01:08 -07001848 if (cfg->fc_metric == 0)
1849 cfg->fc_metric = IP6_RT_PRIO_USER;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850
Matti Vaittinend71314b2011-11-14 00:14:49 +00001851 err = -ENOBUFS;
David S. Miller38308472011-12-03 18:02:47 -05001852 if (cfg->fc_nlinfo.nlh &&
1853 !(cfg->fc_nlinfo.nlh->nlmsg_flags & NLM_F_CREATE)) {
Matti Vaittinend71314b2011-11-14 00:14:49 +00001854 table = fib6_get_table(net, cfg->fc_table);
David S. Miller38308472011-12-03 18:02:47 -05001855 if (!table) {
Joe Perchesf3213832012-05-15 14:11:53 +00001856 pr_warn("NLM_F_CREATE should be specified when creating new route\n");
Matti Vaittinend71314b2011-11-14 00:14:49 +00001857 table = fib6_new_table(net, cfg->fc_table);
1858 }
1859 } else {
1860 table = fib6_new_table(net, cfg->fc_table);
1861 }
David S. Miller38308472011-12-03 18:02:47 -05001862
1863 if (!table)
Thomas Grafc71099a2006-08-04 23:20:06 -07001864 goto out;
Thomas Grafc71099a2006-08-04 23:20:06 -07001865
Martin KaFai Lauad706862015-08-14 11:05:52 -07001866 rt = ip6_dst_alloc(net, NULL,
1867 (cfg->fc_flags & RTF_ADDRCONF) ? 0 : DST_NOCOUNT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001868
David S. Miller38308472011-12-03 18:02:47 -05001869 if (!rt) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001870 err = -ENOMEM;
1871 goto out;
1872 }
1873
Gao feng1716a962012-04-06 00:13:10 +00001874 if (cfg->fc_flags & RTF_EXPIRES)
1875 rt6_set_expires(rt, jiffies +
1876 clock_t_to_jiffies(cfg->fc_expires));
1877 else
1878 rt6_clean_expires(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879
Thomas Graf86872cb2006-08-22 00:01:08 -07001880 if (cfg->fc_protocol == RTPROT_UNSPEC)
1881 cfg->fc_protocol = RTPROT_BOOT;
1882 rt->rt6i_protocol = cfg->fc_protocol;
1883
1884 addr_type = ipv6_addr_type(&cfg->fc_dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885
1886 if (addr_type & IPV6_ADDR_MULTICAST)
Changli Gaod8d1f302010-06-10 23:31:35 -07001887 rt->dst.input = ip6_mc_input;
Maciej Żenczykowskiab79ad12010-09-27 00:07:02 +00001888 else if (cfg->fc_flags & RTF_LOCAL)
1889 rt->dst.input = ip6_input;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001890 else
Changli Gaod8d1f302010-06-10 23:31:35 -07001891 rt->dst.input = ip6_forward;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892
Changli Gaod8d1f302010-06-10 23:31:35 -07001893 rt->dst.output = ip6_output;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001894
Roopa Prabhu19e42e42015-07-21 10:43:48 +02001895 if (cfg->fc_encap) {
1896 struct lwtunnel_state *lwtstate;
1897
David Ahern30357d72017-01-30 12:07:37 -08001898 err = lwtunnel_build_state(cfg->fc_encap_type,
Tom Herbert127eb7c2015-08-24 09:45:41 -07001899 cfg->fc_encap, AF_INET6, cfg,
David Ahern9ae28722017-05-27 16:19:28 -06001900 &lwtstate, extack);
Roopa Prabhu19e42e42015-07-21 10:43:48 +02001901 if (err)
1902 goto out;
Jiri Benc61adedf2015-08-20 13:56:25 +02001903 rt->dst.lwtstate = lwtstate_get(lwtstate);
1904 if (lwtunnel_output_redirect(rt->dst.lwtstate)) {
1905 rt->dst.lwtstate->orig_output = rt->dst.output;
1906 rt->dst.output = lwtunnel_output;
Tom Herbert25368622015-08-17 13:42:24 -07001907 }
Jiri Benc61adedf2015-08-20 13:56:25 +02001908 if (lwtunnel_input_redirect(rt->dst.lwtstate)) {
1909 rt->dst.lwtstate->orig_input = rt->dst.input;
1910 rt->dst.input = lwtunnel_input;
Tom Herbert25368622015-08-17 13:42:24 -07001911 }
Roopa Prabhu19e42e42015-07-21 10:43:48 +02001912 }
1913
Thomas Graf86872cb2006-08-22 00:01:08 -07001914 ipv6_addr_prefix(&rt->rt6i_dst.addr, &cfg->fc_dst, cfg->fc_dst_len);
1915 rt->rt6i_dst.plen = cfg->fc_dst_len;
Martin KaFai Lauafc4eef2015-04-28 13:03:07 -07001916 if (rt->rt6i_dst.plen == 128)
Michal Kubečeke5fd3872014-03-27 13:04:08 +01001917 rt->dst.flags |= DST_HOST;
Michal Kubečeke5fd3872014-03-27 13:04:08 +01001918
Linus Torvalds1da177e2005-04-16 15:20:36 -07001919#ifdef CONFIG_IPV6_SUBTREES
Thomas Graf86872cb2006-08-22 00:01:08 -07001920 ipv6_addr_prefix(&rt->rt6i_src.addr, &cfg->fc_src, cfg->fc_src_len);
1921 rt->rt6i_src.plen = cfg->fc_src_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922#endif
1923
Thomas Graf86872cb2006-08-22 00:01:08 -07001924 rt->rt6i_metric = cfg->fc_metric;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001925
1926 /* We cannot add true routes via loopback here,
1927 they would result in kernel looping; promote them to reject routes
1928 */
Thomas Graf86872cb2006-08-22 00:01:08 -07001929 if ((cfg->fc_flags & RTF_REJECT) ||
David S. Miller38308472011-12-03 18:02:47 -05001930 (dev && (dev->flags & IFF_LOOPBACK) &&
1931 !(addr_type & IPV6_ADDR_LOOPBACK) &&
1932 !(cfg->fc_flags & RTF_LOCAL))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933 /* hold loopback dev/idev if we haven't done so. */
Daniel Lezcano55786892008-03-04 13:47:47 -08001934 if (dev != net->loopback_dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001935 if (dev) {
1936 dev_put(dev);
1937 in6_dev_put(idev);
1938 }
Daniel Lezcano55786892008-03-04 13:47:47 -08001939 dev = net->loopback_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001940 dev_hold(dev);
1941 idev = in6_dev_get(dev);
1942 if (!idev) {
1943 err = -ENODEV;
1944 goto out;
1945 }
1946 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001947 rt->rt6i_flags = RTF_REJECT|RTF_NONEXTHOP;
Nicolas Dichtelef2c7d72012-09-05 02:12:42 +00001948 switch (cfg->fc_type) {
1949 case RTN_BLACKHOLE:
1950 rt->dst.error = -EINVAL;
Eric W. Biedermanede20592015-10-07 16:48:47 -05001951 rt->dst.output = dst_discard_out;
Kamala R7150aed2013-12-02 19:55:21 +05301952 rt->dst.input = dst_discard;
Nicolas Dichtelef2c7d72012-09-05 02:12:42 +00001953 break;
1954 case RTN_PROHIBIT:
1955 rt->dst.error = -EACCES;
Kamala R7150aed2013-12-02 19:55:21 +05301956 rt->dst.output = ip6_pkt_prohibit_out;
1957 rt->dst.input = ip6_pkt_prohibit;
Nicolas Dichtelef2c7d72012-09-05 02:12:42 +00001958 break;
Nicolas Dichtelb4949ab2012-09-06 05:53:35 +00001959 case RTN_THROW:
Nikola Forró0315e382015-09-17 16:01:32 +02001960 case RTN_UNREACHABLE:
Nicolas Dichtelef2c7d72012-09-05 02:12:42 +00001961 default:
Kamala R7150aed2013-12-02 19:55:21 +05301962 rt->dst.error = (cfg->fc_type == RTN_THROW) ? -EAGAIN
Nikola Forró0315e382015-09-17 16:01:32 +02001963 : (cfg->fc_type == RTN_UNREACHABLE)
1964 ? -EHOSTUNREACH : -ENETUNREACH;
Kamala R7150aed2013-12-02 19:55:21 +05301965 rt->dst.output = ip6_pkt_discard_out;
1966 rt->dst.input = ip6_pkt_discard;
Nicolas Dichtelef2c7d72012-09-05 02:12:42 +00001967 break;
1968 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969 goto install_route;
1970 }
1971
Thomas Graf86872cb2006-08-22 00:01:08 -07001972 if (cfg->fc_flags & RTF_GATEWAY) {
Eric Dumazetb71d1d42011-04-22 04:53:02 +00001973 const struct in6_addr *gw_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001974 int gwa_type;
1975
Thomas Graf86872cb2006-08-22 00:01:08 -07001976 gw_addr = &cfg->fc_gateway;
Florian Westphal330567b2015-08-07 10:54:28 +02001977 gwa_type = ipv6_addr_type(gw_addr);
Florian Westphal48ed7b22015-05-21 00:25:41 +02001978
1979 /* if gw_addr is local we will fail to detect this in case
1980 * address is still TENTATIVE (DAD in progress). rt6_lookup()
1981 * will return already-added prefix route via interface that
1982 * prefix route was assigned to, which might be non-loopback.
1983 */
1984 err = -EINVAL;
Florian Westphal330567b2015-08-07 10:54:28 +02001985 if (ipv6_chk_addr_and_flags(net, gw_addr,
1986 gwa_type & IPV6_ADDR_LINKLOCAL ?
David Ahernd5d531c2017-05-21 10:12:05 -06001987 dev : NULL, 0, 0)) {
1988 NL_SET_ERR_MSG(extack, "Invalid gateway address");
Florian Westphal48ed7b22015-05-21 00:25:41 +02001989 goto out;
David Ahernd5d531c2017-05-21 10:12:05 -06001990 }
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001991 rt->rt6i_gateway = *gw_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001992
1993 if (gwa_type != (IPV6_ADDR_LINKLOCAL|IPV6_ADDR_UNICAST)) {
David Ahern8c145862016-04-24 21:26:04 -07001994 struct rt6_info *grt = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001995
1996 /* IPv6 strictly inhibits using not link-local
1997 addresses as nexthop address.
1998 Otherwise, router will not able to send redirects.
1999 It is very good, but in some (rare!) circumstances
2000 (SIT, PtP, NBMA NOARP links) it is handy to allow
2001 some exceptions. --ANK
Erik Nordmark96d58222016-12-03 20:57:09 -08002002 We allow IPv4-mapped nexthops to support RFC4798-type
2003 addressing
Linus Torvalds1da177e2005-04-16 15:20:36 -07002004 */
Erik Nordmark96d58222016-12-03 20:57:09 -08002005 if (!(gwa_type & (IPV6_ADDR_UNICAST |
David Ahernd5d531c2017-05-21 10:12:05 -06002006 IPV6_ADDR_MAPPED))) {
2007 NL_SET_ERR_MSG(extack,
2008 "Invalid gateway address");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002009 goto out;
David Ahernd5d531c2017-05-21 10:12:05 -06002010 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002011
Vincent Bernata435a072016-09-18 17:46:07 +02002012 if (cfg->fc_table) {
David Ahern8c145862016-04-24 21:26:04 -07002013 grt = ip6_nh_lookup_table(net, cfg, gw_addr);
2014
Vincent Bernata435a072016-09-18 17:46:07 +02002015 if (grt) {
2016 if (grt->rt6i_flags & RTF_GATEWAY ||
2017 (dev && dev != grt->dst.dev)) {
2018 ip6_rt_put(grt);
2019 grt = NULL;
2020 }
2021 }
2022 }
2023
David Ahern8c145862016-04-24 21:26:04 -07002024 if (!grt)
2025 grt = rt6_lookup(net, gw_addr, NULL,
2026 cfg->fc_ifindex, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027
2028 err = -EHOSTUNREACH;
David S. Miller38308472011-12-03 18:02:47 -05002029 if (!grt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002030 goto out;
2031 if (dev) {
David S. Millerd1918542011-12-28 20:19:20 -05002032 if (dev != grt->dst.dev) {
Amerigo Wang94e187c2012-10-29 00:13:19 +00002033 ip6_rt_put(grt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002034 goto out;
2035 }
2036 } else {
David S. Millerd1918542011-12-28 20:19:20 -05002037 dev = grt->dst.dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002038 idev = grt->rt6i_idev;
2039 dev_hold(dev);
2040 in6_dev_hold(grt->rt6i_idev);
2041 }
David S. Miller38308472011-12-03 18:02:47 -05002042 if (!(grt->rt6i_flags & RTF_GATEWAY))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002043 err = 0;
Amerigo Wang94e187c2012-10-29 00:13:19 +00002044 ip6_rt_put(grt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002045
2046 if (err)
2047 goto out;
2048 }
2049 err = -EINVAL;
David Ahernd5d531c2017-05-21 10:12:05 -06002050 if (!dev) {
2051 NL_SET_ERR_MSG(extack, "Egress device not specified");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052 goto out;
David Ahernd5d531c2017-05-21 10:12:05 -06002053 } else if (dev->flags & IFF_LOOPBACK) {
2054 NL_SET_ERR_MSG(extack,
2055 "Egress device can not be loopback device for this route");
2056 goto out;
2057 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058 }
2059
2060 err = -ENODEV;
David S. Miller38308472011-12-03 18:02:47 -05002061 if (!dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002062 goto out;
2063
Daniel Walterc3968a82011-04-13 21:10:57 +00002064 if (!ipv6_addr_any(&cfg->fc_prefsrc)) {
2065 if (!ipv6_chk_addr(net, &cfg->fc_prefsrc, dev, 0)) {
David Ahernd5d531c2017-05-21 10:12:05 -06002066 NL_SET_ERR_MSG(extack, "Invalid source address");
Daniel Walterc3968a82011-04-13 21:10:57 +00002067 err = -EINVAL;
2068 goto out;
2069 }
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00002070 rt->rt6i_prefsrc.addr = cfg->fc_prefsrc;
Daniel Walterc3968a82011-04-13 21:10:57 +00002071 rt->rt6i_prefsrc.plen = 128;
2072 } else
2073 rt->rt6i_prefsrc.plen = 0;
2074
Thomas Graf86872cb2006-08-22 00:01:08 -07002075 rt->rt6i_flags = cfg->fc_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002076
2077install_route:
Changli Gaod8d1f302010-06-10 23:31:35 -07002078 rt->dst.dev = dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002079 rt->rt6i_idev = idev;
Thomas Grafc71099a2006-08-04 23:20:06 -07002080 rt->rt6i_table = table;
Daniel Lezcano63152fc2008-03-03 23:31:11 -08002081
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09002082 cfg->fc_nlinfo.nl_net = dev_net(dev);
Daniel Lezcano63152fc2008-03-03 23:31:11 -08002083
Roopa Prabhu8c5b83f2015-10-10 08:26:36 -07002084 return rt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002085out:
2086 if (dev)
2087 dev_put(dev);
2088 if (idev)
2089 in6_dev_put(idev);
Wei Wang587fea72017-06-17 10:42:36 -07002090 if (rt)
2091 dst_release_immediate(&rt->dst);
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07002092
Roopa Prabhu8c5b83f2015-10-10 08:26:36 -07002093 return ERR_PTR(err);
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07002094}
2095
David Ahern333c4302017-05-21 10:12:04 -06002096int ip6_route_add(struct fib6_config *cfg,
2097 struct netlink_ext_ack *extack)
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07002098{
2099 struct mx6_config mxc = { .mx = NULL, };
Roopa Prabhu8c5b83f2015-10-10 08:26:36 -07002100 struct rt6_info *rt;
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07002101 int err;
2102
David Ahern333c4302017-05-21 10:12:04 -06002103 rt = ip6_route_info_create(cfg, extack);
Roopa Prabhu8c5b83f2015-10-10 08:26:36 -07002104 if (IS_ERR(rt)) {
2105 err = PTR_ERR(rt);
2106 rt = NULL;
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07002107 goto out;
Roopa Prabhu8c5b83f2015-10-10 08:26:36 -07002108 }
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07002109
2110 err = ip6_convert_metrics(&mxc, cfg);
2111 if (err)
2112 goto out;
2113
David Ahern333c4302017-05-21 10:12:04 -06002114 err = __ip6_ins_rt(rt, &cfg->fc_nlinfo, &mxc, extack);
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07002115
2116 kfree(mxc.mx);
2117
2118 return err;
2119out:
Wei Wang587fea72017-06-17 10:42:36 -07002120 if (rt)
2121 dst_release_immediate(&rt->dst);
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07002122
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123 return err;
2124}
2125
Thomas Graf86872cb2006-08-22 00:01:08 -07002126static int __ip6_del_rt(struct rt6_info *rt, struct nl_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002127{
2128 int err;
Thomas Grafc71099a2006-08-04 23:20:06 -07002129 struct fib6_table *table;
David S. Millerd1918542011-12-28 20:19:20 -05002130 struct net *net = dev_net(rt->dst.dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002131
Wei Wanga4c2fd72017-06-17 10:42:42 -07002132 if (rt == net->ipv6.ip6_null_entry) {
Gao feng6825a262012-09-19 19:25:34 +00002133 err = -ENOENT;
2134 goto out;
2135 }
Patrick McHardy6c813a72006-08-06 22:22:47 -07002136
Thomas Grafc71099a2006-08-04 23:20:06 -07002137 table = rt->rt6i_table;
2138 write_lock_bh(&table->tb6_lock);
Thomas Graf86872cb2006-08-22 00:01:08 -07002139 err = fib6_del(rt, info);
Thomas Grafc71099a2006-08-04 23:20:06 -07002140 write_unlock_bh(&table->tb6_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002141
Gao feng6825a262012-09-19 19:25:34 +00002142out:
Amerigo Wang94e187c2012-10-29 00:13:19 +00002143 ip6_rt_put(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002144 return err;
2145}
2146
Thomas Grafe0a1ad732006-08-22 00:00:21 -07002147int ip6_del_rt(struct rt6_info *rt)
2148{
Denis V. Lunev4d1169c2008-01-10 03:26:13 -08002149 struct nl_info info = {
David S. Millerd1918542011-12-28 20:19:20 -05002150 .nl_net = dev_net(rt->dst.dev),
Denis V. Lunev4d1169c2008-01-10 03:26:13 -08002151 };
Denis V. Lunev528c4ce2007-12-13 09:45:12 -08002152 return __ip6_del_rt(rt, &info);
Thomas Grafe0a1ad732006-08-22 00:00:21 -07002153}
2154
David Ahern0ae81332017-02-02 12:37:08 -08002155static int __ip6_del_rt_siblings(struct rt6_info *rt, struct fib6_config *cfg)
2156{
2157 struct nl_info *info = &cfg->fc_nlinfo;
WANG Conge3330032017-02-27 16:07:43 -08002158 struct net *net = info->nl_net;
David Ahern16a16cd2017-02-02 12:37:11 -08002159 struct sk_buff *skb = NULL;
David Ahern0ae81332017-02-02 12:37:08 -08002160 struct fib6_table *table;
WANG Conge3330032017-02-27 16:07:43 -08002161 int err = -ENOENT;
David Ahern0ae81332017-02-02 12:37:08 -08002162
WANG Conge3330032017-02-27 16:07:43 -08002163 if (rt == net->ipv6.ip6_null_entry)
2164 goto out_put;
David Ahern0ae81332017-02-02 12:37:08 -08002165 table = rt->rt6i_table;
2166 write_lock_bh(&table->tb6_lock);
2167
2168 if (rt->rt6i_nsiblings && cfg->fc_delete_all_nh) {
2169 struct rt6_info *sibling, *next_sibling;
2170
David Ahern16a16cd2017-02-02 12:37:11 -08002171 /* prefer to send a single notification with all hops */
2172 skb = nlmsg_new(rt6_nlmsg_size(rt), gfp_any());
2173 if (skb) {
2174 u32 seq = info->nlh ? info->nlh->nlmsg_seq : 0;
2175
WANG Conge3330032017-02-27 16:07:43 -08002176 if (rt6_fill_node(net, skb, rt,
David Ahern16a16cd2017-02-02 12:37:11 -08002177 NULL, NULL, 0, RTM_DELROUTE,
2178 info->portid, seq, 0) < 0) {
2179 kfree_skb(skb);
2180 skb = NULL;
2181 } else
2182 info->skip_notify = 1;
2183 }
2184
David Ahern0ae81332017-02-02 12:37:08 -08002185 list_for_each_entry_safe(sibling, next_sibling,
2186 &rt->rt6i_siblings,
2187 rt6i_siblings) {
2188 err = fib6_del(sibling, info);
2189 if (err)
WANG Conge3330032017-02-27 16:07:43 -08002190 goto out_unlock;
David Ahern0ae81332017-02-02 12:37:08 -08002191 }
2192 }
2193
2194 err = fib6_del(rt, info);
WANG Conge3330032017-02-27 16:07:43 -08002195out_unlock:
David Ahern0ae81332017-02-02 12:37:08 -08002196 write_unlock_bh(&table->tb6_lock);
WANG Conge3330032017-02-27 16:07:43 -08002197out_put:
David Ahern0ae81332017-02-02 12:37:08 -08002198 ip6_rt_put(rt);
David Ahern16a16cd2017-02-02 12:37:11 -08002199
2200 if (skb) {
WANG Conge3330032017-02-27 16:07:43 -08002201 rtnl_notify(skb, net, info->portid, RTNLGRP_IPV6_ROUTE,
David Ahern16a16cd2017-02-02 12:37:11 -08002202 info->nlh, gfp_any());
2203 }
David Ahern0ae81332017-02-02 12:37:08 -08002204 return err;
2205}
2206
David Ahern333c4302017-05-21 10:12:04 -06002207static int ip6_route_del(struct fib6_config *cfg,
2208 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002209{
Thomas Grafc71099a2006-08-04 23:20:06 -07002210 struct fib6_table *table;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002211 struct fib6_node *fn;
2212 struct rt6_info *rt;
2213 int err = -ESRCH;
2214
Daniel Lezcano55786892008-03-04 13:47:47 -08002215 table = fib6_get_table(cfg->fc_nlinfo.nl_net, cfg->fc_table);
David Ahernd5d531c2017-05-21 10:12:05 -06002216 if (!table) {
2217 NL_SET_ERR_MSG(extack, "FIB table does not exist");
Thomas Grafc71099a2006-08-04 23:20:06 -07002218 return err;
David Ahernd5d531c2017-05-21 10:12:05 -06002219 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002220
Thomas Grafc71099a2006-08-04 23:20:06 -07002221 read_lock_bh(&table->tb6_lock);
2222
2223 fn = fib6_locate(&table->tb6_root,
Thomas Graf86872cb2006-08-22 00:01:08 -07002224 &cfg->fc_dst, cfg->fc_dst_len,
2225 &cfg->fc_src, cfg->fc_src_len);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002226
Linus Torvalds1da177e2005-04-16 15:20:36 -07002227 if (fn) {
Changli Gaod8d1f302010-06-10 23:31:35 -07002228 for (rt = fn->leaf; rt; rt = rt->dst.rt6_next) {
Martin KaFai Lau1f56a01f2015-04-28 13:03:03 -07002229 if ((rt->rt6i_flags & RTF_CACHE) &&
2230 !(cfg->fc_flags & RTF_CACHE))
2231 continue;
Thomas Graf86872cb2006-08-22 00:01:08 -07002232 if (cfg->fc_ifindex &&
David S. Millerd1918542011-12-28 20:19:20 -05002233 (!rt->dst.dev ||
2234 rt->dst.dev->ifindex != cfg->fc_ifindex))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002235 continue;
Thomas Graf86872cb2006-08-22 00:01:08 -07002236 if (cfg->fc_flags & RTF_GATEWAY &&
2237 !ipv6_addr_equal(&cfg->fc_gateway, &rt->rt6i_gateway))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002238 continue;
Thomas Graf86872cb2006-08-22 00:01:08 -07002239 if (cfg->fc_metric && cfg->fc_metric != rt->rt6i_metric)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240 continue;
Mantas Mc2ed1882016-12-16 10:30:59 +02002241 if (cfg->fc_protocol && cfg->fc_protocol != rt->rt6i_protocol)
2242 continue;
Changli Gaod8d1f302010-06-10 23:31:35 -07002243 dst_hold(&rt->dst);
Thomas Grafc71099a2006-08-04 23:20:06 -07002244 read_unlock_bh(&table->tb6_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002245
David Ahern0ae81332017-02-02 12:37:08 -08002246 /* if gateway was specified only delete the one hop */
2247 if (cfg->fc_flags & RTF_GATEWAY)
2248 return __ip6_del_rt(rt, &cfg->fc_nlinfo);
2249
2250 return __ip6_del_rt_siblings(rt, cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002251 }
2252 }
Thomas Grafc71099a2006-08-04 23:20:06 -07002253 read_unlock_bh(&table->tb6_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002254
2255 return err;
2256}
2257
David S. Miller6700c272012-07-17 03:29:28 -07002258static void rt6_do_redirect(struct dst_entry *dst, struct sock *sk, struct sk_buff *skb)
YOSHIFUJI Hideakia6279452006-08-23 17:18:26 -07002259{
YOSHIFUJI Hideakia6279452006-08-23 17:18:26 -07002260 struct netevent_redirect netevent;
David S. Millere8599ff2012-07-11 23:43:53 -07002261 struct rt6_info *rt, *nrt = NULL;
David S. Millere8599ff2012-07-11 23:43:53 -07002262 struct ndisc_options ndopts;
2263 struct inet6_dev *in6_dev;
2264 struct neighbour *neigh;
YOSHIFUJI Hideaki / 吉藤英明71bcdba2013-01-05 16:34:51 +00002265 struct rd_msg *msg;
David S. Miller6e157b62012-07-12 00:05:02 -07002266 int optlen, on_link;
2267 u8 *lladdr;
David S. Millere8599ff2012-07-11 23:43:53 -07002268
Simon Horman29a3cad2013-05-28 20:34:26 +00002269 optlen = skb_tail_pointer(skb) - skb_transport_header(skb);
YOSHIFUJI Hideaki / 吉藤英明71bcdba2013-01-05 16:34:51 +00002270 optlen -= sizeof(*msg);
David S. Millere8599ff2012-07-11 23:43:53 -07002271
2272 if (optlen < 0) {
David S. Miller6e157b62012-07-12 00:05:02 -07002273 net_dbg_ratelimited("rt6_do_redirect: packet too short\n");
David S. Millere8599ff2012-07-11 23:43:53 -07002274 return;
2275 }
2276
YOSHIFUJI Hideaki / 吉藤英明71bcdba2013-01-05 16:34:51 +00002277 msg = (struct rd_msg *)icmp6_hdr(skb);
David S. Millere8599ff2012-07-11 23:43:53 -07002278
YOSHIFUJI Hideaki / 吉藤英明71bcdba2013-01-05 16:34:51 +00002279 if (ipv6_addr_is_multicast(&msg->dest)) {
David S. Miller6e157b62012-07-12 00:05:02 -07002280 net_dbg_ratelimited("rt6_do_redirect: destination address is multicast\n");
David S. Millere8599ff2012-07-11 23:43:53 -07002281 return;
2282 }
2283
David S. Miller6e157b62012-07-12 00:05:02 -07002284 on_link = 0;
YOSHIFUJI Hideaki / 吉藤英明71bcdba2013-01-05 16:34:51 +00002285 if (ipv6_addr_equal(&msg->dest, &msg->target)) {
David S. Millere8599ff2012-07-11 23:43:53 -07002286 on_link = 1;
YOSHIFUJI Hideaki / 吉藤英明71bcdba2013-01-05 16:34:51 +00002287 } else if (ipv6_addr_type(&msg->target) !=
David S. Millere8599ff2012-07-11 23:43:53 -07002288 (IPV6_ADDR_UNICAST|IPV6_ADDR_LINKLOCAL)) {
David S. Miller6e157b62012-07-12 00:05:02 -07002289 net_dbg_ratelimited("rt6_do_redirect: target address is not link-local unicast\n");
David S. Millere8599ff2012-07-11 23:43:53 -07002290 return;
2291 }
2292
2293 in6_dev = __in6_dev_get(skb->dev);
2294 if (!in6_dev)
2295 return;
2296 if (in6_dev->cnf.forwarding || !in6_dev->cnf.accept_redirects)
2297 return;
2298
2299 /* RFC2461 8.1:
2300 * The IP source address of the Redirect MUST be the same as the current
2301 * first-hop router for the specified ICMP Destination Address.
2302 */
2303
Alexander Aringf997c552016-06-15 21:20:23 +02002304 if (!ndisc_parse_options(skb->dev, msg->opt, optlen, &ndopts)) {
David S. Millere8599ff2012-07-11 23:43:53 -07002305 net_dbg_ratelimited("rt6_redirect: invalid ND options\n");
2306 return;
2307 }
David S. Miller6e157b62012-07-12 00:05:02 -07002308
2309 lladdr = NULL;
David S. Millere8599ff2012-07-11 23:43:53 -07002310 if (ndopts.nd_opts_tgt_lladdr) {
2311 lladdr = ndisc_opt_addr_data(ndopts.nd_opts_tgt_lladdr,
2312 skb->dev);
2313 if (!lladdr) {
2314 net_dbg_ratelimited("rt6_redirect: invalid link-layer address length\n");
2315 return;
2316 }
2317 }
2318
David S. Miller6e157b62012-07-12 00:05:02 -07002319 rt = (struct rt6_info *) dst;
Matthias Schifferec13ad12015-11-02 01:24:38 +01002320 if (rt->rt6i_flags & RTF_REJECT) {
David S. Miller6e157b62012-07-12 00:05:02 -07002321 net_dbg_ratelimited("rt6_redirect: source isn't a valid nexthop for redirect target\n");
2322 return;
2323 }
2324
2325 /* Redirect received -> path was valid.
2326 * Look, redirects are sent only in response to data packets,
2327 * so that this nexthop apparently is reachable. --ANK
2328 */
Julian Anastasov0dec8792017-02-06 23:14:16 +02002329 dst_confirm_neigh(&rt->dst, &ipv6_hdr(skb)->saddr);
David S. Miller6e157b62012-07-12 00:05:02 -07002330
YOSHIFUJI Hideaki / 吉藤英明71bcdba2013-01-05 16:34:51 +00002331 neigh = __neigh_lookup(&nd_tbl, &msg->target, skb->dev, 1);
David S. Millere8599ff2012-07-11 23:43:53 -07002332 if (!neigh)
2333 return;
2334
Linus Torvalds1da177e2005-04-16 15:20:36 -07002335 /*
2336 * We have finally decided to accept it.
2337 */
2338
Alexander Aringf997c552016-06-15 21:20:23 +02002339 ndisc_update(skb->dev, neigh, lladdr, NUD_STALE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002340 NEIGH_UPDATE_F_WEAK_OVERRIDE|
2341 NEIGH_UPDATE_F_OVERRIDE|
2342 (on_link ? 0 : (NEIGH_UPDATE_F_OVERRIDE_ISROUTER|
Alexander Aringf997c552016-06-15 21:20:23 +02002343 NEIGH_UPDATE_F_ISROUTER)),
2344 NDISC_REDIRECT, &ndopts);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002345
Martin KaFai Lau83a09ab2015-05-22 20:56:05 -07002346 nrt = ip6_rt_cache_alloc(rt, &msg->dest, NULL);
David S. Miller38308472011-12-03 18:02:47 -05002347 if (!nrt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002348 goto out;
2349
2350 nrt->rt6i_flags = RTF_GATEWAY|RTF_UP|RTF_DYNAMIC|RTF_CACHE;
2351 if (on_link)
2352 nrt->rt6i_flags &= ~RTF_GATEWAY;
2353
Xin Longb91d5322017-08-03 14:13:46 +08002354 nrt->rt6i_protocol = RTPROT_REDIRECT;
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00002355 nrt->rt6i_gateway = *(struct in6_addr *)neigh->primary_key;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002356
Thomas Graf40e22e82006-08-22 00:00:45 -07002357 if (ip6_ins_rt(nrt))
Wei Wang1cfb71e2017-06-17 10:42:33 -07002358 goto out_release;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002359
Changli Gaod8d1f302010-06-10 23:31:35 -07002360 netevent.old = &rt->dst;
2361 netevent.new = &nrt->dst;
YOSHIFUJI Hideaki / 吉藤英明71bcdba2013-01-05 16:34:51 +00002362 netevent.daddr = &msg->dest;
YOSHIFUJI Hideaki / 吉藤英明60592832013-01-14 09:28:27 +00002363 netevent.neigh = neigh;
Tom Tucker8d717402006-07-30 20:43:36 -07002364 call_netevent_notifiers(NETEVENT_REDIRECT, &netevent);
2365
David S. Miller38308472011-12-03 18:02:47 -05002366 if (rt->rt6i_flags & RTF_CACHE) {
David S. Miller6e157b62012-07-12 00:05:02 -07002367 rt = (struct rt6_info *) dst_clone(&rt->dst);
Thomas Grafe0a1ad732006-08-22 00:00:21 -07002368 ip6_del_rt(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002369 }
2370
Wei Wang1cfb71e2017-06-17 10:42:33 -07002371out_release:
2372 /* Release the reference taken in
2373 * ip6_rt_cache_alloc()
2374 */
2375 dst_release(&nrt->dst);
2376
Linus Torvalds1da177e2005-04-16 15:20:36 -07002377out:
David S. Millere8599ff2012-07-11 23:43:53 -07002378 neigh_release(neigh);
David S. Miller6e157b62012-07-12 00:05:02 -07002379}
2380
Linus Torvalds1da177e2005-04-16 15:20:36 -07002381/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002382 * Misc support functions
2383 */
2384
Martin KaFai Lau4b32b5a2015-04-28 13:03:06 -07002385static void rt6_set_from(struct rt6_info *rt, struct rt6_info *from)
2386{
2387 BUG_ON(from->dst.from);
2388
2389 rt->rt6i_flags &= ~RTF_EXPIRES;
2390 dst_hold(&from->dst);
2391 rt->dst.from = &from->dst;
2392 dst_init_metrics(&rt->dst, dst_metrics_ptr(&from->dst), true);
2393}
2394
Martin KaFai Lau83a09ab2015-05-22 20:56:05 -07002395static void ip6_rt_copy_init(struct rt6_info *rt, struct rt6_info *ort)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002396{
Martin KaFai Lau83a09ab2015-05-22 20:56:05 -07002397 rt->dst.input = ort->dst.input;
2398 rt->dst.output = ort->dst.output;
2399 rt->rt6i_dst = ort->rt6i_dst;
2400 rt->dst.error = ort->dst.error;
2401 rt->rt6i_idev = ort->rt6i_idev;
2402 if (rt->rt6i_idev)
2403 in6_dev_hold(rt->rt6i_idev);
2404 rt->dst.lastuse = jiffies;
2405 rt->rt6i_gateway = ort->rt6i_gateway;
2406 rt->rt6i_flags = ort->rt6i_flags;
2407 rt6_set_from(rt, ort);
2408 rt->rt6i_metric = ort->rt6i_metric;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002409#ifdef CONFIG_IPV6_SUBTREES
Martin KaFai Lau83a09ab2015-05-22 20:56:05 -07002410 rt->rt6i_src = ort->rt6i_src;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002411#endif
Martin KaFai Lau83a09ab2015-05-22 20:56:05 -07002412 rt->rt6i_prefsrc = ort->rt6i_prefsrc;
2413 rt->rt6i_table = ort->rt6i_table;
Jiri Benc61adedf2015-08-20 13:56:25 +02002414 rt->dst.lwtstate = lwtstate_get(ort->dst.lwtstate);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002415}
2416
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08002417#ifdef CONFIG_IPV6_ROUTE_INFO
Daniel Lezcanoefa2cea2008-03-04 13:46:48 -08002418static struct rt6_info *rt6_get_route_info(struct net *net,
Eric Dumazetb71d1d42011-04-22 04:53:02 +00002419 const struct in6_addr *prefix, int prefixlen,
David Ahern830218c2016-10-24 10:52:35 -07002420 const struct in6_addr *gwaddr,
2421 struct net_device *dev)
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08002422{
David Ahern830218c2016-10-24 10:52:35 -07002423 u32 tb_id = l3mdev_fib_table(dev) ? : RT6_TABLE_INFO;
2424 int ifindex = dev->ifindex;
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08002425 struct fib6_node *fn;
2426 struct rt6_info *rt = NULL;
Thomas Grafc71099a2006-08-04 23:20:06 -07002427 struct fib6_table *table;
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08002428
David Ahern830218c2016-10-24 10:52:35 -07002429 table = fib6_get_table(net, tb_id);
David S. Miller38308472011-12-03 18:02:47 -05002430 if (!table)
Thomas Grafc71099a2006-08-04 23:20:06 -07002431 return NULL;
2432
Li RongQing5744dd92012-09-11 21:59:01 +00002433 read_lock_bh(&table->tb6_lock);
Ian Morris67ba4152014-08-24 21:53:10 +01002434 fn = fib6_locate(&table->tb6_root, prefix, prefixlen, NULL, 0);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08002435 if (!fn)
2436 goto out;
2437
Changli Gaod8d1f302010-06-10 23:31:35 -07002438 for (rt = fn->leaf; rt; rt = rt->dst.rt6_next) {
David S. Millerd1918542011-12-28 20:19:20 -05002439 if (rt->dst.dev->ifindex != ifindex)
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08002440 continue;
2441 if ((rt->rt6i_flags & (RTF_ROUTEINFO|RTF_GATEWAY)) != (RTF_ROUTEINFO|RTF_GATEWAY))
2442 continue;
2443 if (!ipv6_addr_equal(&rt->rt6i_gateway, gwaddr))
2444 continue;
Changli Gaod8d1f302010-06-10 23:31:35 -07002445 dst_hold(&rt->dst);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08002446 break;
2447 }
2448out:
Li RongQing5744dd92012-09-11 21:59:01 +00002449 read_unlock_bh(&table->tb6_lock);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08002450 return rt;
2451}
2452
Daniel Lezcanoefa2cea2008-03-04 13:46:48 -08002453static struct rt6_info *rt6_add_route_info(struct net *net,
Eric Dumazetb71d1d42011-04-22 04:53:02 +00002454 const struct in6_addr *prefix, int prefixlen,
David Ahern830218c2016-10-24 10:52:35 -07002455 const struct in6_addr *gwaddr,
2456 struct net_device *dev,
Eric Dumazet95c96172012-04-15 05:58:06 +00002457 unsigned int pref)
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08002458{
Thomas Graf86872cb2006-08-22 00:01:08 -07002459 struct fib6_config cfg = {
Rami Rosen238fc7e2008-02-09 23:43:11 -08002460 .fc_metric = IP6_RT_PRIO_USER,
David Ahern830218c2016-10-24 10:52:35 -07002461 .fc_ifindex = dev->ifindex,
Thomas Graf86872cb2006-08-22 00:01:08 -07002462 .fc_dst_len = prefixlen,
2463 .fc_flags = RTF_GATEWAY | RTF_ADDRCONF | RTF_ROUTEINFO |
2464 RTF_UP | RTF_PREF(pref),
Xin Longb91d5322017-08-03 14:13:46 +08002465 .fc_protocol = RTPROT_RA,
Eric W. Biederman15e47302012-09-07 20:12:54 +00002466 .fc_nlinfo.portid = 0,
Daniel Lezcanoefa2cea2008-03-04 13:46:48 -08002467 .fc_nlinfo.nlh = NULL,
2468 .fc_nlinfo.nl_net = net,
Thomas Graf86872cb2006-08-22 00:01:08 -07002469 };
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08002470
David Ahern830218c2016-10-24 10:52:35 -07002471 cfg.fc_table = l3mdev_fib_table(dev) ? : RT6_TABLE_INFO,
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00002472 cfg.fc_dst = *prefix;
2473 cfg.fc_gateway = *gwaddr;
Thomas Graf86872cb2006-08-22 00:01:08 -07002474
YOSHIFUJI Hideakie317da92006-03-20 17:06:42 -08002475 /* We should treat it as a default route if prefix length is 0. */
2476 if (!prefixlen)
Thomas Graf86872cb2006-08-22 00:01:08 -07002477 cfg.fc_flags |= RTF_DEFAULT;
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08002478
David Ahern333c4302017-05-21 10:12:04 -06002479 ip6_route_add(&cfg, NULL);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08002480
David Ahern830218c2016-10-24 10:52:35 -07002481 return rt6_get_route_info(net, prefix, prefixlen, gwaddr, dev);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08002482}
2483#endif
2484
Eric Dumazetb71d1d42011-04-22 04:53:02 +00002485struct rt6_info *rt6_get_dflt_router(const struct in6_addr *addr, struct net_device *dev)
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002486{
David Ahern830218c2016-10-24 10:52:35 -07002487 u32 tb_id = l3mdev_fib_table(dev) ? : RT6_TABLE_DFLT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002488 struct rt6_info *rt;
Thomas Grafc71099a2006-08-04 23:20:06 -07002489 struct fib6_table *table;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002490
David Ahern830218c2016-10-24 10:52:35 -07002491 table = fib6_get_table(dev_net(dev), tb_id);
David S. Miller38308472011-12-03 18:02:47 -05002492 if (!table)
Thomas Grafc71099a2006-08-04 23:20:06 -07002493 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002494
Li RongQing5744dd92012-09-11 21:59:01 +00002495 read_lock_bh(&table->tb6_lock);
Ian Morris67ba4152014-08-24 21:53:10 +01002496 for (rt = table->tb6_root.leaf; rt; rt = rt->dst.rt6_next) {
David S. Millerd1918542011-12-28 20:19:20 -05002497 if (dev == rt->dst.dev &&
YOSHIFUJI Hideaki045927f2006-03-20 17:00:48 -08002498 ((rt->rt6i_flags & (RTF_ADDRCONF | RTF_DEFAULT)) == (RTF_ADDRCONF | RTF_DEFAULT)) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07002499 ipv6_addr_equal(&rt->rt6i_gateway, addr))
2500 break;
2501 }
2502 if (rt)
Changli Gaod8d1f302010-06-10 23:31:35 -07002503 dst_hold(&rt->dst);
Li RongQing5744dd92012-09-11 21:59:01 +00002504 read_unlock_bh(&table->tb6_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002505 return rt;
2506}
2507
Eric Dumazetb71d1d42011-04-22 04:53:02 +00002508struct rt6_info *rt6_add_dflt_router(const struct in6_addr *gwaddr,
YOSHIFUJI Hideakiebacaaa2006-03-20 17:04:53 -08002509 struct net_device *dev,
2510 unsigned int pref)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002511{
Thomas Graf86872cb2006-08-22 00:01:08 -07002512 struct fib6_config cfg = {
David Ahernca254492015-10-12 11:47:10 -07002513 .fc_table = l3mdev_fib_table(dev) ? : RT6_TABLE_DFLT,
Rami Rosen238fc7e2008-02-09 23:43:11 -08002514 .fc_metric = IP6_RT_PRIO_USER,
Thomas Graf86872cb2006-08-22 00:01:08 -07002515 .fc_ifindex = dev->ifindex,
2516 .fc_flags = RTF_GATEWAY | RTF_ADDRCONF | RTF_DEFAULT |
2517 RTF_UP | RTF_EXPIRES | RTF_PREF(pref),
Xin Longb91d5322017-08-03 14:13:46 +08002518 .fc_protocol = RTPROT_RA,
Eric W. Biederman15e47302012-09-07 20:12:54 +00002519 .fc_nlinfo.portid = 0,
Daniel Lezcano55786892008-03-04 13:47:47 -08002520 .fc_nlinfo.nlh = NULL,
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09002521 .fc_nlinfo.nl_net = dev_net(dev),
Thomas Graf86872cb2006-08-22 00:01:08 -07002522 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002523
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00002524 cfg.fc_gateway = *gwaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002525
David Ahern333c4302017-05-21 10:12:04 -06002526 if (!ip6_route_add(&cfg, NULL)) {
David Ahern830218c2016-10-24 10:52:35 -07002527 struct fib6_table *table;
2528
2529 table = fib6_get_table(dev_net(dev), cfg.fc_table);
2530 if (table)
2531 table->flags |= RT6_TABLE_HAS_DFLT_ROUTER;
2532 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002533
Linus Torvalds1da177e2005-04-16 15:20:36 -07002534 return rt6_get_dflt_router(gwaddr, dev);
2535}
2536
David Ahern830218c2016-10-24 10:52:35 -07002537static void __rt6_purge_dflt_routers(struct fib6_table *table)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002538{
2539 struct rt6_info *rt;
2540
2541restart:
Thomas Grafc71099a2006-08-04 23:20:06 -07002542 read_lock_bh(&table->tb6_lock);
Changli Gaod8d1f302010-06-10 23:31:35 -07002543 for (rt = table->tb6_root.leaf; rt; rt = rt->dst.rt6_next) {
Lorenzo Colitti3e8b0ac2013-03-03 20:46:46 +00002544 if (rt->rt6i_flags & (RTF_DEFAULT | RTF_ADDRCONF) &&
2545 (!rt->rt6i_idev || rt->rt6i_idev->cnf.accept_ra != 2)) {
Changli Gaod8d1f302010-06-10 23:31:35 -07002546 dst_hold(&rt->dst);
Thomas Grafc71099a2006-08-04 23:20:06 -07002547 read_unlock_bh(&table->tb6_lock);
Thomas Grafe0a1ad732006-08-22 00:00:21 -07002548 ip6_del_rt(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002549 goto restart;
2550 }
2551 }
Thomas Grafc71099a2006-08-04 23:20:06 -07002552 read_unlock_bh(&table->tb6_lock);
David Ahern830218c2016-10-24 10:52:35 -07002553
2554 table->flags &= ~RT6_TABLE_HAS_DFLT_ROUTER;
2555}
2556
2557void rt6_purge_dflt_routers(struct net *net)
2558{
2559 struct fib6_table *table;
2560 struct hlist_head *head;
2561 unsigned int h;
2562
2563 rcu_read_lock();
2564
2565 for (h = 0; h < FIB6_TABLE_HASHSZ; h++) {
2566 head = &net->ipv6.fib_table_hash[h];
2567 hlist_for_each_entry_rcu(table, head, tb6_hlist) {
2568 if (table->flags & RT6_TABLE_HAS_DFLT_ROUTER)
2569 __rt6_purge_dflt_routers(table);
2570 }
2571 }
2572
2573 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002574}
2575
Daniel Lezcano55786892008-03-04 13:47:47 -08002576static void rtmsg_to_fib6_config(struct net *net,
2577 struct in6_rtmsg *rtmsg,
Thomas Graf86872cb2006-08-22 00:01:08 -07002578 struct fib6_config *cfg)
2579{
2580 memset(cfg, 0, sizeof(*cfg));
2581
David Ahernca254492015-10-12 11:47:10 -07002582 cfg->fc_table = l3mdev_fib_table_by_index(net, rtmsg->rtmsg_ifindex) ?
2583 : RT6_TABLE_MAIN;
Thomas Graf86872cb2006-08-22 00:01:08 -07002584 cfg->fc_ifindex = rtmsg->rtmsg_ifindex;
2585 cfg->fc_metric = rtmsg->rtmsg_metric;
2586 cfg->fc_expires = rtmsg->rtmsg_info;
2587 cfg->fc_dst_len = rtmsg->rtmsg_dst_len;
2588 cfg->fc_src_len = rtmsg->rtmsg_src_len;
2589 cfg->fc_flags = rtmsg->rtmsg_flags;
2590
Daniel Lezcano55786892008-03-04 13:47:47 -08002591 cfg->fc_nlinfo.nl_net = net;
Benjamin Theryf1243c22008-02-26 18:10:03 -08002592
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00002593 cfg->fc_dst = rtmsg->rtmsg_dst;
2594 cfg->fc_src = rtmsg->rtmsg_src;
2595 cfg->fc_gateway = rtmsg->rtmsg_gateway;
Thomas Graf86872cb2006-08-22 00:01:08 -07002596}
2597
Daniel Lezcano55786892008-03-04 13:47:47 -08002598int ipv6_route_ioctl(struct net *net, unsigned int cmd, void __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002599{
Thomas Graf86872cb2006-08-22 00:01:08 -07002600 struct fib6_config cfg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002601 struct in6_rtmsg rtmsg;
2602 int err;
2603
Ian Morris67ba4152014-08-24 21:53:10 +01002604 switch (cmd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002605 case SIOCADDRT: /* Add a route */
2606 case SIOCDELRT: /* Delete a route */
Eric W. Biedermanaf31f412012-11-16 03:03:06 +00002607 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002608 return -EPERM;
2609 err = copy_from_user(&rtmsg, arg,
2610 sizeof(struct in6_rtmsg));
2611 if (err)
2612 return -EFAULT;
Thomas Graf86872cb2006-08-22 00:01:08 -07002613
Daniel Lezcano55786892008-03-04 13:47:47 -08002614 rtmsg_to_fib6_config(net, &rtmsg, &cfg);
Thomas Graf86872cb2006-08-22 00:01:08 -07002615
Linus Torvalds1da177e2005-04-16 15:20:36 -07002616 rtnl_lock();
2617 switch (cmd) {
2618 case SIOCADDRT:
David Ahern333c4302017-05-21 10:12:04 -06002619 err = ip6_route_add(&cfg, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002620 break;
2621 case SIOCDELRT:
David Ahern333c4302017-05-21 10:12:04 -06002622 err = ip6_route_del(&cfg, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002623 break;
2624 default:
2625 err = -EINVAL;
2626 }
2627 rtnl_unlock();
2628
2629 return err;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07002630 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002631
2632 return -EINVAL;
2633}
2634
2635/*
2636 * Drop the packet on the floor
2637 */
2638
Brian Haleyd5fdd6b2009-06-23 04:31:07 -07002639static int ip6_pkt_drop(struct sk_buff *skb, u8 code, int ipstats_mib_noroutes)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002640{
YOSHIFUJI Hideaki612f09e2007-04-13 16:18:02 -07002641 int type;
Eric Dumazetadf30902009-06-02 05:19:30 +00002642 struct dst_entry *dst = skb_dst(skb);
YOSHIFUJI Hideaki612f09e2007-04-13 16:18:02 -07002643 switch (ipstats_mib_noroutes) {
2644 case IPSTATS_MIB_INNOROUTES:
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -07002645 type = ipv6_addr_type(&ipv6_hdr(skb)->daddr);
Ulrich Weber45bb0062010-02-25 23:28:58 +00002646 if (type == IPV6_ADDR_ANY) {
Denis V. Lunev3bd653c2008-10-08 10:54:51 -07002647 IP6_INC_STATS(dev_net(dst->dev), ip6_dst_idev(dst),
2648 IPSTATS_MIB_INADDRERRORS);
YOSHIFUJI Hideaki612f09e2007-04-13 16:18:02 -07002649 break;
2650 }
2651 /* FALLTHROUGH */
2652 case IPSTATS_MIB_OUTNOROUTES:
Denis V. Lunev3bd653c2008-10-08 10:54:51 -07002653 IP6_INC_STATS(dev_net(dst->dev), ip6_dst_idev(dst),
2654 ipstats_mib_noroutes);
YOSHIFUJI Hideaki612f09e2007-04-13 16:18:02 -07002655 break;
2656 }
Alexey Dobriyan3ffe5332010-02-18 08:25:24 +00002657 icmpv6_send(skb, ICMPV6_DEST_UNREACH, code, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002658 kfree_skb(skb);
2659 return 0;
2660}
2661
Thomas Graf9ce8ade2006-10-18 20:46:54 -07002662static int ip6_pkt_discard(struct sk_buff *skb)
2663{
YOSHIFUJI Hideaki612f09e2007-04-13 16:18:02 -07002664 return ip6_pkt_drop(skb, ICMPV6_NOROUTE, IPSTATS_MIB_INNOROUTES);
Thomas Graf9ce8ade2006-10-18 20:46:54 -07002665}
2666
Eric W. Biedermanede20592015-10-07 16:48:47 -05002667static int ip6_pkt_discard_out(struct net *net, struct sock *sk, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002668{
Eric Dumazetadf30902009-06-02 05:19:30 +00002669 skb->dev = skb_dst(skb)->dev;
YOSHIFUJI Hideaki612f09e2007-04-13 16:18:02 -07002670 return ip6_pkt_drop(skb, ICMPV6_NOROUTE, IPSTATS_MIB_OUTNOROUTES);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002671}
2672
Thomas Graf9ce8ade2006-10-18 20:46:54 -07002673static int ip6_pkt_prohibit(struct sk_buff *skb)
2674{
YOSHIFUJI Hideaki612f09e2007-04-13 16:18:02 -07002675 return ip6_pkt_drop(skb, ICMPV6_ADM_PROHIBITED, IPSTATS_MIB_INNOROUTES);
Thomas Graf9ce8ade2006-10-18 20:46:54 -07002676}
2677
Eric W. Biedermanede20592015-10-07 16:48:47 -05002678static int ip6_pkt_prohibit_out(struct net *net, struct sock *sk, struct sk_buff *skb)
Thomas Graf9ce8ade2006-10-18 20:46:54 -07002679{
Eric Dumazetadf30902009-06-02 05:19:30 +00002680 skb->dev = skb_dst(skb)->dev;
YOSHIFUJI Hideaki612f09e2007-04-13 16:18:02 -07002681 return ip6_pkt_drop(skb, ICMPV6_ADM_PROHIBITED, IPSTATS_MIB_OUTNOROUTES);
Thomas Graf9ce8ade2006-10-18 20:46:54 -07002682}
2683
Linus Torvalds1da177e2005-04-16 15:20:36 -07002684/*
2685 * Allocate a dst for local (unicast / anycast) address.
2686 */
2687
2688struct rt6_info *addrconf_dst_alloc(struct inet6_dev *idev,
2689 const struct in6_addr *addr,
David S. Miller8f031512011-12-06 16:48:14 -05002690 bool anycast)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002691{
David Ahernca254492015-10-12 11:47:10 -07002692 u32 tb_id;
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09002693 struct net *net = dev_net(idev->dev);
David Ahern5f02ce242016-09-10 12:09:54 -07002694 struct net_device *dev = net->loopback_dev;
2695 struct rt6_info *rt;
2696
2697 /* use L3 Master device as loopback for host routes if device
2698 * is enslaved and address is not link local or multicast
2699 */
2700 if (!rt6_need_strict(addr))
2701 dev = l3mdev_master_dev_rcu(idev->dev) ? : dev;
2702
2703 rt = ip6_dst_alloc(net, dev, DST_NOCOUNT);
Hannes Frederic Sowaa3300ef2013-12-07 03:33:45 +01002704 if (!rt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002705 return ERR_PTR(-ENOMEM);
2706
Linus Torvalds1da177e2005-04-16 15:20:36 -07002707 in6_dev_hold(idev);
2708
David S. Miller11d53b42011-06-24 15:23:34 -07002709 rt->dst.flags |= DST_HOST;
Changli Gaod8d1f302010-06-10 23:31:35 -07002710 rt->dst.input = ip6_input;
2711 rt->dst.output = ip6_output;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002712 rt->rt6i_idev = idev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002713
David Ahern94b5e0f2017-02-02 08:52:21 -08002714 rt->rt6i_protocol = RTPROT_KERNEL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002715 rt->rt6i_flags = RTF_UP | RTF_NONEXTHOP;
YOSHIFUJI Hideaki58c4fb82005-12-21 22:56:42 +09002716 if (anycast)
2717 rt->rt6i_flags |= RTF_ANYCAST;
2718 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002719 rt->rt6i_flags |= RTF_LOCAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002720
Julian Anastasov550bab42013-10-20 15:43:04 +03002721 rt->rt6i_gateway = *addr;
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00002722 rt->rt6i_dst.addr = *addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002723 rt->rt6i_dst.plen = 128;
David Ahernca254492015-10-12 11:47:10 -07002724 tb_id = l3mdev_fib_table(idev->dev) ? : RT6_TABLE_LOCAL;
2725 rt->rt6i_table = fib6_get_table(net, tb_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002726
Linus Torvalds1da177e2005-04-16 15:20:36 -07002727 return rt;
2728}
2729
Daniel Walterc3968a82011-04-13 21:10:57 +00002730/* remove deleted ip from prefsrc entries */
2731struct arg_dev_net_ip {
2732 struct net_device *dev;
2733 struct net *net;
2734 struct in6_addr *addr;
2735};
2736
2737static int fib6_remove_prefsrc(struct rt6_info *rt, void *arg)
2738{
2739 struct net_device *dev = ((struct arg_dev_net_ip *)arg)->dev;
2740 struct net *net = ((struct arg_dev_net_ip *)arg)->net;
2741 struct in6_addr *addr = ((struct arg_dev_net_ip *)arg)->addr;
2742
David S. Millerd1918542011-12-28 20:19:20 -05002743 if (((void *)rt->dst.dev == dev || !dev) &&
Daniel Walterc3968a82011-04-13 21:10:57 +00002744 rt != net->ipv6.ip6_null_entry &&
2745 ipv6_addr_equal(addr, &rt->rt6i_prefsrc.addr)) {
2746 /* remove prefsrc entry */
2747 rt->rt6i_prefsrc.plen = 0;
2748 }
2749 return 0;
2750}
2751
2752void rt6_remove_prefsrc(struct inet6_ifaddr *ifp)
2753{
2754 struct net *net = dev_net(ifp->idev->dev);
2755 struct arg_dev_net_ip adni = {
2756 .dev = ifp->idev->dev,
2757 .net = net,
2758 .addr = &ifp->addr,
2759 };
Li RongQing0c3584d2013-12-27 16:32:38 +08002760 fib6_clean_all(net, fib6_remove_prefsrc, &adni);
Daniel Walterc3968a82011-04-13 21:10:57 +00002761}
2762
Duan Jiongbe7a0102014-05-15 15:56:14 +08002763#define RTF_RA_ROUTER (RTF_ADDRCONF | RTF_DEFAULT | RTF_GATEWAY)
2764#define RTF_CACHE_GATEWAY (RTF_GATEWAY | RTF_CACHE)
2765
2766/* Remove routers and update dst entries when gateway turn into host. */
2767static int fib6_clean_tohost(struct rt6_info *rt, void *arg)
2768{
2769 struct in6_addr *gateway = (struct in6_addr *)arg;
2770
2771 if ((((rt->rt6i_flags & RTF_RA_ROUTER) == RTF_RA_ROUTER) ||
2772 ((rt->rt6i_flags & RTF_CACHE_GATEWAY) == RTF_CACHE_GATEWAY)) &&
2773 ipv6_addr_equal(gateway, &rt->rt6i_gateway)) {
2774 return -1;
2775 }
2776 return 0;
2777}
2778
2779void rt6_clean_tohost(struct net *net, struct in6_addr *gateway)
2780{
2781 fib6_clean_all(net, fib6_clean_tohost, gateway);
2782}
2783
Daniel Lezcano8ed67782008-03-04 13:48:30 -08002784struct arg_dev_net {
2785 struct net_device *dev;
2786 struct net *net;
2787};
2788
David Aherna1a22c12017-01-18 07:40:36 -08002789/* called with write lock held for table with rt */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002790static int fib6_ifdown(struct rt6_info *rt, void *arg)
2791{
stephen hemmingerbc3ef662010-12-16 17:42:40 +00002792 const struct arg_dev_net *adn = arg;
2793 const struct net_device *dev = adn->dev;
Daniel Lezcano8ed67782008-03-04 13:48:30 -08002794
David S. Millerd1918542011-12-28 20:19:20 -05002795 if ((rt->dst.dev == dev || !dev) &&
David Aherna1a22c12017-01-18 07:40:36 -08002796 rt != adn->net->ipv6.ip6_null_entry &&
2797 (rt->rt6i_nsiblings == 0 ||
David Ahern8397ed32017-06-07 12:26:23 -06002798 (dev && netdev_unregistering(dev)) ||
David Aherna1a22c12017-01-18 07:40:36 -08002799 !rt->rt6i_idev->cnf.ignore_routes_with_linkdown))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002800 return -1;
David S. Millerc159d302011-12-26 15:24:36 -05002801
Linus Torvalds1da177e2005-04-16 15:20:36 -07002802 return 0;
2803}
2804
Daniel Lezcanof3db4852008-03-03 23:27:06 -08002805void rt6_ifdown(struct net *net, struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002806{
Daniel Lezcano8ed67782008-03-04 13:48:30 -08002807 struct arg_dev_net adn = {
2808 .dev = dev,
2809 .net = net,
2810 };
2811
Li RongQing0c3584d2013-12-27 16:32:38 +08002812 fib6_clean_all(net, fib6_ifdown, &adn);
Eric W. Biedermane332bc62015-10-12 11:02:08 -05002813 if (dev)
2814 rt6_uncached_list_flush_dev(net, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002815}
2816
Eric Dumazet95c96172012-04-15 05:58:06 +00002817struct rt6_mtu_change_arg {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002818 struct net_device *dev;
Eric Dumazet95c96172012-04-15 05:58:06 +00002819 unsigned int mtu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002820};
2821
2822static int rt6_mtu_change_route(struct rt6_info *rt, void *p_arg)
2823{
2824 struct rt6_mtu_change_arg *arg = (struct rt6_mtu_change_arg *) p_arg;
2825 struct inet6_dev *idev;
2826
2827 /* In IPv6 pmtu discovery is not optional,
2828 so that RTAX_MTU lock cannot disable it.
2829 We still use this lock to block changes
2830 caused by addrconf/ndisc.
2831 */
2832
2833 idev = __in6_dev_get(arg->dev);
David S. Miller38308472011-12-03 18:02:47 -05002834 if (!idev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002835 return 0;
2836
2837 /* For administrative MTU increase, there is no way to discover
2838 IPv6 PMTU increase, so PMTU increase should be updated here.
2839 Since RFC 1981 doesn't include administrative MTU increase
2840 update PMTU increase is a MUST. (i.e. jumbo frame)
2841 */
2842 /*
2843 If new MTU is less than route PMTU, this new MTU will be the
2844 lowest MTU in the path, update the route PMTU to reflect PMTU
2845 decreases; if new MTU is greater than route PMTU, and the
2846 old MTU is the lowest MTU in the path, update the route PMTU
2847 to reflect the increase. In this case if the other nodes' MTU
2848 also have the lowest MTU, TOO BIG MESSAGE will be lead to
Alexander Alemayhu67c408c2017-01-07 23:53:00 +01002849 PMTU discovery.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002850 */
David S. Millerd1918542011-12-28 20:19:20 -05002851 if (rt->dst.dev == arg->dev &&
Maciej Żenczykowskifb56be82016-11-04 14:51:54 -07002852 dst_metric_raw(&rt->dst, RTAX_MTU) &&
Martin KaFai Lau4b32b5a2015-04-28 13:03:06 -07002853 !dst_metric_locked(&rt->dst, RTAX_MTU)) {
2854 if (rt->rt6i_flags & RTF_CACHE) {
2855 /* For RTF_CACHE with rt6i_pmtu == 0
2856 * (i.e. a redirected route),
2857 * the metrics of its rt->dst.from has already
2858 * been updated.
2859 */
2860 if (rt->rt6i_pmtu && rt->rt6i_pmtu > arg->mtu)
2861 rt->rt6i_pmtu = arg->mtu;
2862 } else if (dst_mtu(&rt->dst) >= arg->mtu ||
2863 (dst_mtu(&rt->dst) < arg->mtu &&
2864 dst_mtu(&rt->dst) == idev->cnf.mtu6)) {
2865 dst_metric_set(&rt->dst, RTAX_MTU, arg->mtu);
2866 }
Simon Arlott566cfd82007-07-26 00:09:55 -07002867 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002868 return 0;
2869}
2870
Eric Dumazet95c96172012-04-15 05:58:06 +00002871void rt6_mtu_change(struct net_device *dev, unsigned int mtu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002872{
Thomas Grafc71099a2006-08-04 23:20:06 -07002873 struct rt6_mtu_change_arg arg = {
2874 .dev = dev,
2875 .mtu = mtu,
2876 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002877
Li RongQing0c3584d2013-12-27 16:32:38 +08002878 fib6_clean_all(dev_net(dev), rt6_mtu_change_route, &arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002879}
2880
Patrick McHardyef7c79e2007-06-05 12:38:30 -07002881static const struct nla_policy rtm_ipv6_policy[RTA_MAX+1] = {
Thomas Graf5176f912006-08-26 20:13:18 -07002882 [RTA_GATEWAY] = { .len = sizeof(struct in6_addr) },
Thomas Graf86872cb2006-08-22 00:01:08 -07002883 [RTA_OIF] = { .type = NLA_U32 },
Thomas Grafab364a62006-08-22 00:01:47 -07002884 [RTA_IIF] = { .type = NLA_U32 },
Thomas Graf86872cb2006-08-22 00:01:08 -07002885 [RTA_PRIORITY] = { .type = NLA_U32 },
2886 [RTA_METRICS] = { .type = NLA_NESTED },
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00002887 [RTA_MULTIPATH] = { .len = sizeof(struct rtnexthop) },
Lubomir Rintelc78ba6d2015-03-11 15:39:21 +01002888 [RTA_PREF] = { .type = NLA_U8 },
Roopa Prabhu19e42e42015-07-21 10:43:48 +02002889 [RTA_ENCAP_TYPE] = { .type = NLA_U16 },
2890 [RTA_ENCAP] = { .type = NLA_NESTED },
Xin Long32bc2012015-12-16 17:50:11 +08002891 [RTA_EXPIRES] = { .type = NLA_U32 },
Lorenzo Colitti622ec2c2016-11-04 02:23:42 +09002892 [RTA_UID] = { .type = NLA_U32 },
Liping Zhang3b45a412017-02-27 20:59:39 +08002893 [RTA_MARK] = { .type = NLA_U32 },
Thomas Graf86872cb2006-08-22 00:01:08 -07002894};
2895
2896static int rtm_to_fib6_config(struct sk_buff *skb, struct nlmsghdr *nlh,
David Ahern333c4302017-05-21 10:12:04 -06002897 struct fib6_config *cfg,
2898 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002899{
Thomas Graf86872cb2006-08-22 00:01:08 -07002900 struct rtmsg *rtm;
2901 struct nlattr *tb[RTA_MAX+1];
Lubomir Rintelc78ba6d2015-03-11 15:39:21 +01002902 unsigned int pref;
Thomas Graf86872cb2006-08-22 00:01:08 -07002903 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002904
Johannes Bergfceb6432017-04-12 14:34:07 +02002905 err = nlmsg_parse(nlh, sizeof(*rtm), tb, RTA_MAX, rtm_ipv6_policy,
2906 NULL);
Thomas Graf86872cb2006-08-22 00:01:08 -07002907 if (err < 0)
2908 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002909
Thomas Graf86872cb2006-08-22 00:01:08 -07002910 err = -EINVAL;
2911 rtm = nlmsg_data(nlh);
2912 memset(cfg, 0, sizeof(*cfg));
2913
2914 cfg->fc_table = rtm->rtm_table;
2915 cfg->fc_dst_len = rtm->rtm_dst_len;
2916 cfg->fc_src_len = rtm->rtm_src_len;
2917 cfg->fc_flags = RTF_UP;
2918 cfg->fc_protocol = rtm->rtm_protocol;
Nicolas Dichtelef2c7d72012-09-05 02:12:42 +00002919 cfg->fc_type = rtm->rtm_type;
Thomas Graf86872cb2006-08-22 00:01:08 -07002920
Nicolas Dichtelef2c7d72012-09-05 02:12:42 +00002921 if (rtm->rtm_type == RTN_UNREACHABLE ||
2922 rtm->rtm_type == RTN_BLACKHOLE ||
Nicolas Dichtelb4949ab2012-09-06 05:53:35 +00002923 rtm->rtm_type == RTN_PROHIBIT ||
2924 rtm->rtm_type == RTN_THROW)
Thomas Graf86872cb2006-08-22 00:01:08 -07002925 cfg->fc_flags |= RTF_REJECT;
2926
Maciej Żenczykowskiab79ad12010-09-27 00:07:02 +00002927 if (rtm->rtm_type == RTN_LOCAL)
2928 cfg->fc_flags |= RTF_LOCAL;
2929
Martin KaFai Lau1f56a01f2015-04-28 13:03:03 -07002930 if (rtm->rtm_flags & RTM_F_CLONED)
2931 cfg->fc_flags |= RTF_CACHE;
2932
Eric W. Biederman15e47302012-09-07 20:12:54 +00002933 cfg->fc_nlinfo.portid = NETLINK_CB(skb).portid;
Thomas Graf86872cb2006-08-22 00:01:08 -07002934 cfg->fc_nlinfo.nlh = nlh;
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09002935 cfg->fc_nlinfo.nl_net = sock_net(skb->sk);
Thomas Graf86872cb2006-08-22 00:01:08 -07002936
2937 if (tb[RTA_GATEWAY]) {
Jiri Benc67b61f62015-03-29 16:59:26 +02002938 cfg->fc_gateway = nla_get_in6_addr(tb[RTA_GATEWAY]);
Thomas Graf86872cb2006-08-22 00:01:08 -07002939 cfg->fc_flags |= RTF_GATEWAY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002940 }
Thomas Graf86872cb2006-08-22 00:01:08 -07002941
2942 if (tb[RTA_DST]) {
2943 int plen = (rtm->rtm_dst_len + 7) >> 3;
2944
2945 if (nla_len(tb[RTA_DST]) < plen)
2946 goto errout;
2947
2948 nla_memcpy(&cfg->fc_dst, tb[RTA_DST], plen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002949 }
Thomas Graf86872cb2006-08-22 00:01:08 -07002950
2951 if (tb[RTA_SRC]) {
2952 int plen = (rtm->rtm_src_len + 7) >> 3;
2953
2954 if (nla_len(tb[RTA_SRC]) < plen)
2955 goto errout;
2956
2957 nla_memcpy(&cfg->fc_src, tb[RTA_SRC], plen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002958 }
Thomas Graf86872cb2006-08-22 00:01:08 -07002959
Daniel Walterc3968a82011-04-13 21:10:57 +00002960 if (tb[RTA_PREFSRC])
Jiri Benc67b61f62015-03-29 16:59:26 +02002961 cfg->fc_prefsrc = nla_get_in6_addr(tb[RTA_PREFSRC]);
Daniel Walterc3968a82011-04-13 21:10:57 +00002962
Thomas Graf86872cb2006-08-22 00:01:08 -07002963 if (tb[RTA_OIF])
2964 cfg->fc_ifindex = nla_get_u32(tb[RTA_OIF]);
2965
2966 if (tb[RTA_PRIORITY])
2967 cfg->fc_metric = nla_get_u32(tb[RTA_PRIORITY]);
2968
2969 if (tb[RTA_METRICS]) {
2970 cfg->fc_mx = nla_data(tb[RTA_METRICS]);
2971 cfg->fc_mx_len = nla_len(tb[RTA_METRICS]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002972 }
Thomas Graf86872cb2006-08-22 00:01:08 -07002973
2974 if (tb[RTA_TABLE])
2975 cfg->fc_table = nla_get_u32(tb[RTA_TABLE]);
2976
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00002977 if (tb[RTA_MULTIPATH]) {
2978 cfg->fc_mp = nla_data(tb[RTA_MULTIPATH]);
2979 cfg->fc_mp_len = nla_len(tb[RTA_MULTIPATH]);
David Ahern9ed59592017-01-17 14:57:36 -08002980
2981 err = lwtunnel_valid_encap_type_attr(cfg->fc_mp,
David Ahernc255bd62017-05-27 16:19:27 -06002982 cfg->fc_mp_len, extack);
David Ahern9ed59592017-01-17 14:57:36 -08002983 if (err < 0)
2984 goto errout;
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00002985 }
2986
Lubomir Rintelc78ba6d2015-03-11 15:39:21 +01002987 if (tb[RTA_PREF]) {
2988 pref = nla_get_u8(tb[RTA_PREF]);
2989 if (pref != ICMPV6_ROUTER_PREF_LOW &&
2990 pref != ICMPV6_ROUTER_PREF_HIGH)
2991 pref = ICMPV6_ROUTER_PREF_MEDIUM;
2992 cfg->fc_flags |= RTF_PREF(pref);
2993 }
2994
Roopa Prabhu19e42e42015-07-21 10:43:48 +02002995 if (tb[RTA_ENCAP])
2996 cfg->fc_encap = tb[RTA_ENCAP];
2997
David Ahern9ed59592017-01-17 14:57:36 -08002998 if (tb[RTA_ENCAP_TYPE]) {
Roopa Prabhu19e42e42015-07-21 10:43:48 +02002999 cfg->fc_encap_type = nla_get_u16(tb[RTA_ENCAP_TYPE]);
3000
David Ahernc255bd62017-05-27 16:19:27 -06003001 err = lwtunnel_valid_encap_type(cfg->fc_encap_type, extack);
David Ahern9ed59592017-01-17 14:57:36 -08003002 if (err < 0)
3003 goto errout;
3004 }
3005
Xin Long32bc2012015-12-16 17:50:11 +08003006 if (tb[RTA_EXPIRES]) {
3007 unsigned long timeout = addrconf_timeout_fixup(nla_get_u32(tb[RTA_EXPIRES]), HZ);
3008
3009 if (addrconf_finite_timeout(timeout)) {
3010 cfg->fc_expires = jiffies_to_clock_t(timeout * HZ);
3011 cfg->fc_flags |= RTF_EXPIRES;
3012 }
3013 }
3014
Thomas Graf86872cb2006-08-22 00:01:08 -07003015 err = 0;
3016errout:
3017 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003018}
3019
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003020struct rt6_nh {
3021 struct rt6_info *rt6_info;
3022 struct fib6_config r_cfg;
3023 struct mx6_config mxc;
3024 struct list_head next;
3025};
3026
3027static void ip6_print_replace_route_err(struct list_head *rt6_nh_list)
3028{
3029 struct rt6_nh *nh;
3030
3031 list_for_each_entry(nh, rt6_nh_list, next) {
David Ahern7d4d5062017-02-02 12:37:12 -08003032 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 -07003033 &nh->r_cfg.fc_dst, &nh->r_cfg.fc_gateway,
3034 nh->r_cfg.fc_ifindex);
3035 }
3036}
3037
3038static int ip6_route_info_append(struct list_head *rt6_nh_list,
3039 struct rt6_info *rt, struct fib6_config *r_cfg)
3040{
3041 struct rt6_nh *nh;
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003042 int err = -EEXIST;
3043
3044 list_for_each_entry(nh, rt6_nh_list, next) {
3045 /* check if rt6_info already exists */
David Ahernf06b7542017-07-05 14:41:46 -06003046 if (rt6_duplicate_nexthop(nh->rt6_info, rt))
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003047 return err;
3048 }
3049
3050 nh = kzalloc(sizeof(*nh), GFP_KERNEL);
3051 if (!nh)
3052 return -ENOMEM;
3053 nh->rt6_info = rt;
3054 err = ip6_convert_metrics(&nh->mxc, r_cfg);
3055 if (err) {
3056 kfree(nh);
3057 return err;
3058 }
3059 memcpy(&nh->r_cfg, r_cfg, sizeof(*r_cfg));
3060 list_add_tail(&nh->next, rt6_nh_list);
3061
3062 return 0;
3063}
3064
David Ahern3b1137f2017-02-02 12:37:10 -08003065static void ip6_route_mpath_notify(struct rt6_info *rt,
3066 struct rt6_info *rt_last,
3067 struct nl_info *info,
3068 __u16 nlflags)
3069{
3070 /* if this is an APPEND route, then rt points to the first route
3071 * inserted and rt_last points to last route inserted. Userspace
3072 * wants a consistent dump of the route which starts at the first
3073 * nexthop. Since sibling routes are always added at the end of
3074 * the list, find the first sibling of the last route appended
3075 */
3076 if ((nlflags & NLM_F_APPEND) && rt_last && rt_last->rt6i_nsiblings) {
3077 rt = list_first_entry(&rt_last->rt6i_siblings,
3078 struct rt6_info,
3079 rt6i_siblings);
3080 }
3081
3082 if (rt)
3083 inet6_rt_notify(RTM_NEWROUTE, rt, info, nlflags);
3084}
3085
David Ahern333c4302017-05-21 10:12:04 -06003086static int ip6_route_multipath_add(struct fib6_config *cfg,
3087 struct netlink_ext_ack *extack)
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00003088{
David Ahern3b1137f2017-02-02 12:37:10 -08003089 struct rt6_info *rt_notif = NULL, *rt_last = NULL;
3090 struct nl_info *info = &cfg->fc_nlinfo;
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00003091 struct fib6_config r_cfg;
3092 struct rtnexthop *rtnh;
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003093 struct rt6_info *rt;
3094 struct rt6_nh *err_nh;
3095 struct rt6_nh *nh, *nh_safe;
David Ahern3b1137f2017-02-02 12:37:10 -08003096 __u16 nlflags;
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00003097 int remaining;
3098 int attrlen;
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003099 int err = 1;
3100 int nhn = 0;
3101 int replace = (cfg->fc_nlinfo.nlh &&
3102 (cfg->fc_nlinfo.nlh->nlmsg_flags & NLM_F_REPLACE));
3103 LIST_HEAD(rt6_nh_list);
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00003104
David Ahern3b1137f2017-02-02 12:37:10 -08003105 nlflags = replace ? NLM_F_REPLACE : NLM_F_CREATE;
3106 if (info->nlh && info->nlh->nlmsg_flags & NLM_F_APPEND)
3107 nlflags |= NLM_F_APPEND;
3108
Michal Kubeček35f1b4e2015-05-18 20:53:55 +02003109 remaining = cfg->fc_mp_len;
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00003110 rtnh = (struct rtnexthop *)cfg->fc_mp;
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00003111
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003112 /* Parse a Multipath Entry and build a list (rt6_nh_list) of
3113 * rt6_info structs per nexthop
3114 */
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00003115 while (rtnh_ok(rtnh, remaining)) {
3116 memcpy(&r_cfg, cfg, sizeof(*cfg));
3117 if (rtnh->rtnh_ifindex)
3118 r_cfg.fc_ifindex = rtnh->rtnh_ifindex;
3119
3120 attrlen = rtnh_attrlen(rtnh);
3121 if (attrlen > 0) {
3122 struct nlattr *nla, *attrs = rtnh_attrs(rtnh);
3123
3124 nla = nla_find(attrs, attrlen, RTA_GATEWAY);
3125 if (nla) {
Jiri Benc67b61f62015-03-29 16:59:26 +02003126 r_cfg.fc_gateway = nla_get_in6_addr(nla);
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00003127 r_cfg.fc_flags |= RTF_GATEWAY;
3128 }
Roopa Prabhu19e42e42015-07-21 10:43:48 +02003129 r_cfg.fc_encap = nla_find(attrs, attrlen, RTA_ENCAP);
3130 nla = nla_find(attrs, attrlen, RTA_ENCAP_TYPE);
3131 if (nla)
3132 r_cfg.fc_encap_type = nla_get_u16(nla);
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00003133 }
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003134
David Ahern333c4302017-05-21 10:12:04 -06003135 rt = ip6_route_info_create(&r_cfg, extack);
Roopa Prabhu8c5b83f2015-10-10 08:26:36 -07003136 if (IS_ERR(rt)) {
3137 err = PTR_ERR(rt);
3138 rt = NULL;
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003139 goto cleanup;
Roopa Prabhu8c5b83f2015-10-10 08:26:36 -07003140 }
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003141
3142 err = ip6_route_info_append(&rt6_nh_list, rt, &r_cfg);
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00003143 if (err) {
Wei Wang587fea72017-06-17 10:42:36 -07003144 dst_release_immediate(&rt->dst);
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003145 goto cleanup;
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00003146 }
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003147
3148 rtnh = rtnh_next(rtnh, &remaining);
3149 }
3150
David Ahern3b1137f2017-02-02 12:37:10 -08003151 /* for add and replace send one notification with all nexthops.
3152 * Skip the notification in fib6_add_rt2node and send one with
3153 * the full route when done
3154 */
3155 info->skip_notify = 1;
3156
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003157 err_nh = NULL;
3158 list_for_each_entry(nh, &rt6_nh_list, next) {
David Ahern3b1137f2017-02-02 12:37:10 -08003159 rt_last = nh->rt6_info;
David Ahern333c4302017-05-21 10:12:04 -06003160 err = __ip6_ins_rt(nh->rt6_info, info, &nh->mxc, extack);
David Ahern3b1137f2017-02-02 12:37:10 -08003161 /* save reference to first route for notification */
3162 if (!rt_notif && !err)
3163 rt_notif = nh->rt6_info;
3164
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003165 /* nh->rt6_info is used or freed at this point, reset to NULL*/
3166 nh->rt6_info = NULL;
3167 if (err) {
3168 if (replace && nhn)
3169 ip6_print_replace_route_err(&rt6_nh_list);
3170 err_nh = nh;
3171 goto add_errout;
3172 }
3173
Nicolas Dichtel1a724182012-11-01 22:58:22 +00003174 /* Because each route is added like a single route we remove
Michal Kubeček27596472015-05-18 20:54:00 +02003175 * these flags after the first nexthop: if there is a collision,
3176 * we have already failed to add the first nexthop:
3177 * fib6_add_rt2node() has rejected it; when replacing, old
3178 * nexthops have been replaced by first new, the rest should
3179 * be added to it.
Nicolas Dichtel1a724182012-11-01 22:58:22 +00003180 */
Michal Kubeček27596472015-05-18 20:54:00 +02003181 cfg->fc_nlinfo.nlh->nlmsg_flags &= ~(NLM_F_EXCL |
3182 NLM_F_REPLACE);
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003183 nhn++;
3184 }
3185
David Ahern3b1137f2017-02-02 12:37:10 -08003186 /* success ... tell user about new route */
3187 ip6_route_mpath_notify(rt_notif, rt_last, info, nlflags);
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003188 goto cleanup;
3189
3190add_errout:
David Ahern3b1137f2017-02-02 12:37:10 -08003191 /* send notification for routes that were added so that
3192 * the delete notifications sent by ip6_route_del are
3193 * coherent
3194 */
3195 if (rt_notif)
3196 ip6_route_mpath_notify(rt_notif, rt_last, info, nlflags);
3197
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003198 /* Delete routes that were already added */
3199 list_for_each_entry(nh, &rt6_nh_list, next) {
3200 if (err_nh == nh)
3201 break;
David Ahern333c4302017-05-21 10:12:04 -06003202 ip6_route_del(&nh->r_cfg, extack);
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003203 }
3204
3205cleanup:
3206 list_for_each_entry_safe(nh, nh_safe, &rt6_nh_list, next) {
Wei Wang587fea72017-06-17 10:42:36 -07003207 if (nh->rt6_info)
3208 dst_release_immediate(&nh->rt6_info->dst);
Wu Fengguang52fe51f2015-09-10 06:57:12 +08003209 kfree(nh->mxc.mx);
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003210 list_del(&nh->next);
3211 kfree(nh);
3212 }
3213
3214 return err;
3215}
3216
David Ahern333c4302017-05-21 10:12:04 -06003217static int ip6_route_multipath_del(struct fib6_config *cfg,
3218 struct netlink_ext_ack *extack)
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003219{
3220 struct fib6_config r_cfg;
3221 struct rtnexthop *rtnh;
3222 int remaining;
3223 int attrlen;
3224 int err = 1, last_err = 0;
3225
3226 remaining = cfg->fc_mp_len;
3227 rtnh = (struct rtnexthop *)cfg->fc_mp;
3228
3229 /* Parse a Multipath Entry */
3230 while (rtnh_ok(rtnh, remaining)) {
3231 memcpy(&r_cfg, cfg, sizeof(*cfg));
3232 if (rtnh->rtnh_ifindex)
3233 r_cfg.fc_ifindex = rtnh->rtnh_ifindex;
3234
3235 attrlen = rtnh_attrlen(rtnh);
3236 if (attrlen > 0) {
3237 struct nlattr *nla, *attrs = rtnh_attrs(rtnh);
3238
3239 nla = nla_find(attrs, attrlen, RTA_GATEWAY);
3240 if (nla) {
3241 nla_memcpy(&r_cfg.fc_gateway, nla, 16);
3242 r_cfg.fc_flags |= RTF_GATEWAY;
3243 }
3244 }
David Ahern333c4302017-05-21 10:12:04 -06003245 err = ip6_route_del(&r_cfg, extack);
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003246 if (err)
3247 last_err = err;
3248
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00003249 rtnh = rtnh_next(rtnh, &remaining);
3250 }
3251
3252 return last_err;
3253}
3254
David Ahernc21ef3e2017-04-16 09:48:24 -07003255static int inet6_rtm_delroute(struct sk_buff *skb, struct nlmsghdr *nlh,
3256 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003257{
Thomas Graf86872cb2006-08-22 00:01:08 -07003258 struct fib6_config cfg;
3259 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003260
David Ahern333c4302017-05-21 10:12:04 -06003261 err = rtm_to_fib6_config(skb, nlh, &cfg, extack);
Thomas Graf86872cb2006-08-22 00:01:08 -07003262 if (err < 0)
3263 return err;
3264
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00003265 if (cfg.fc_mp)
David Ahern333c4302017-05-21 10:12:04 -06003266 return ip6_route_multipath_del(&cfg, extack);
David Ahern0ae81332017-02-02 12:37:08 -08003267 else {
3268 cfg.fc_delete_all_nh = 1;
David Ahern333c4302017-05-21 10:12:04 -06003269 return ip6_route_del(&cfg, extack);
David Ahern0ae81332017-02-02 12:37:08 -08003270 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003271}
3272
David Ahernc21ef3e2017-04-16 09:48:24 -07003273static int inet6_rtm_newroute(struct sk_buff *skb, struct nlmsghdr *nlh,
3274 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003275{
Thomas Graf86872cb2006-08-22 00:01:08 -07003276 struct fib6_config cfg;
3277 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003278
David Ahern333c4302017-05-21 10:12:04 -06003279 err = rtm_to_fib6_config(skb, nlh, &cfg, extack);
Thomas Graf86872cb2006-08-22 00:01:08 -07003280 if (err < 0)
3281 return err;
3282
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00003283 if (cfg.fc_mp)
David Ahern333c4302017-05-21 10:12:04 -06003284 return ip6_route_multipath_add(&cfg, extack);
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00003285 else
David Ahern333c4302017-05-21 10:12:04 -06003286 return ip6_route_add(&cfg, extack);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003287}
3288
David Ahernbeb1afac52017-02-02 12:37:09 -08003289static size_t rt6_nlmsg_size(struct rt6_info *rt)
Thomas Graf339bf982006-11-10 14:10:15 -08003290{
David Ahernbeb1afac52017-02-02 12:37:09 -08003291 int nexthop_len = 0;
3292
3293 if (rt->rt6i_nsiblings) {
3294 nexthop_len = nla_total_size(0) /* RTA_MULTIPATH */
3295 + NLA_ALIGN(sizeof(struct rtnexthop))
3296 + nla_total_size(16) /* RTA_GATEWAY */
David Ahernbeb1afac52017-02-02 12:37:09 -08003297 + lwtunnel_get_encap_size(rt->dst.lwtstate);
3298
3299 nexthop_len *= rt->rt6i_nsiblings;
3300 }
3301
Thomas Graf339bf982006-11-10 14:10:15 -08003302 return NLMSG_ALIGN(sizeof(struct rtmsg))
3303 + nla_total_size(16) /* RTA_SRC */
3304 + nla_total_size(16) /* RTA_DST */
3305 + nla_total_size(16) /* RTA_GATEWAY */
3306 + nla_total_size(16) /* RTA_PREFSRC */
3307 + nla_total_size(4) /* RTA_TABLE */
3308 + nla_total_size(4) /* RTA_IIF */
3309 + nla_total_size(4) /* RTA_OIF */
3310 + nla_total_size(4) /* RTA_PRIORITY */
Noriaki TAKAMIYA6a2b9ce2007-01-23 22:09:41 -08003311 + RTAX_MAX * nla_total_size(4) /* RTA_METRICS */
Daniel Borkmannea697632015-01-05 23:57:47 +01003312 + nla_total_size(sizeof(struct rta_cacheinfo))
Lubomir Rintelc78ba6d2015-03-11 15:39:21 +01003313 + nla_total_size(TCP_CA_NAME_MAX) /* RTAX_CC_ALGO */
Roopa Prabhu19e42e42015-07-21 10:43:48 +02003314 + nla_total_size(1) /* RTA_PREF */
David Ahernbeb1afac52017-02-02 12:37:09 -08003315 + lwtunnel_get_encap_size(rt->dst.lwtstate)
3316 + nexthop_len;
3317}
3318
3319static int rt6_nexthop_info(struct sk_buff *skb, struct rt6_info *rt,
David Ahern5be083c2017-03-06 15:57:31 -08003320 unsigned int *flags, bool skip_oif)
David Ahernbeb1afac52017-02-02 12:37:09 -08003321{
3322 if (!netif_running(rt->dst.dev) || !netif_carrier_ok(rt->dst.dev)) {
3323 *flags |= RTNH_F_LINKDOWN;
3324 if (rt->rt6i_idev->cnf.ignore_routes_with_linkdown)
3325 *flags |= RTNH_F_DEAD;
3326 }
3327
3328 if (rt->rt6i_flags & RTF_GATEWAY) {
3329 if (nla_put_in6_addr(skb, RTA_GATEWAY, &rt->rt6i_gateway) < 0)
3330 goto nla_put_failure;
3331 }
3332
Ido Schimmelfe400792017-08-15 09:09:49 +02003333 if (rt->rt6i_nh_flags & RTNH_F_OFFLOAD)
Ido Schimmel61e4d012017-08-03 13:28:20 +02003334 *flags |= RTNH_F_OFFLOAD;
3335
David Ahern5be083c2017-03-06 15:57:31 -08003336 /* not needed for multipath encoding b/c it has a rtnexthop struct */
3337 if (!skip_oif && rt->dst.dev &&
David Ahernbeb1afac52017-02-02 12:37:09 -08003338 nla_put_u32(skb, RTA_OIF, rt->dst.dev->ifindex))
3339 goto nla_put_failure;
3340
3341 if (rt->dst.lwtstate &&
3342 lwtunnel_fill_encap(skb, rt->dst.lwtstate) < 0)
3343 goto nla_put_failure;
3344
3345 return 0;
3346
3347nla_put_failure:
3348 return -EMSGSIZE;
3349}
3350
David Ahern5be083c2017-03-06 15:57:31 -08003351/* add multipath next hop */
David Ahernbeb1afac52017-02-02 12:37:09 -08003352static int rt6_add_nexthop(struct sk_buff *skb, struct rt6_info *rt)
3353{
3354 struct rtnexthop *rtnh;
3355 unsigned int flags = 0;
3356
3357 rtnh = nla_reserve_nohdr(skb, sizeof(*rtnh));
3358 if (!rtnh)
3359 goto nla_put_failure;
3360
3361 rtnh->rtnh_hops = 0;
3362 rtnh->rtnh_ifindex = rt->dst.dev ? rt->dst.dev->ifindex : 0;
3363
David Ahern5be083c2017-03-06 15:57:31 -08003364 if (rt6_nexthop_info(skb, rt, &flags, true) < 0)
David Ahernbeb1afac52017-02-02 12:37:09 -08003365 goto nla_put_failure;
3366
3367 rtnh->rtnh_flags = flags;
3368
3369 /* length of rtnetlink header + attributes */
3370 rtnh->rtnh_len = nlmsg_get_pos(skb) - (void *)rtnh;
3371
3372 return 0;
3373
3374nla_put_failure:
3375 return -EMSGSIZE;
Thomas Graf339bf982006-11-10 14:10:15 -08003376}
3377
Brian Haley191cd582008-08-14 15:33:21 -07003378static int rt6_fill_node(struct net *net,
3379 struct sk_buff *skb, struct rt6_info *rt,
Jamal Hadi Salim0d51aa82005-06-21 13:51:04 -07003380 struct in6_addr *dst, struct in6_addr *src,
Eric W. Biederman15e47302012-09-07 20:12:54 +00003381 int iif, int type, u32 portid, u32 seq,
David Ahernf8cfe2c2017-01-17 15:51:08 -08003382 unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003383{
Martin KaFai Lau4b32b5a2015-04-28 13:03:06 -07003384 u32 metrics[RTAX_MAX];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003385 struct rtmsg *rtm;
Thomas Graf2d7202b2006-08-22 00:01:27 -07003386 struct nlmsghdr *nlh;
Thomas Grafe3703b32006-11-27 09:27:07 -08003387 long expires;
Patrick McHardy9e762a42006-08-10 23:09:48 -07003388 u32 table;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003389
Eric W. Biederman15e47302012-09-07 20:12:54 +00003390 nlh = nlmsg_put(skb, portid, seq, type, sizeof(*rtm), flags);
David S. Miller38308472011-12-03 18:02:47 -05003391 if (!nlh)
Patrick McHardy26932562007-01-31 23:16:40 -08003392 return -EMSGSIZE;
Thomas Graf2d7202b2006-08-22 00:01:27 -07003393
3394 rtm = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003395 rtm->rtm_family = AF_INET6;
3396 rtm->rtm_dst_len = rt->rt6i_dst.plen;
3397 rtm->rtm_src_len = rt->rt6i_src.plen;
3398 rtm->rtm_tos = 0;
Thomas Grafc71099a2006-08-04 23:20:06 -07003399 if (rt->rt6i_table)
Patrick McHardy9e762a42006-08-10 23:09:48 -07003400 table = rt->rt6i_table->tb6_id;
Thomas Grafc71099a2006-08-04 23:20:06 -07003401 else
Patrick McHardy9e762a42006-08-10 23:09:48 -07003402 table = RT6_TABLE_UNSPEC;
3403 rtm->rtm_table = table;
David S. Millerc78679e2012-04-01 20:27:33 -04003404 if (nla_put_u32(skb, RTA_TABLE, table))
3405 goto nla_put_failure;
Nicolas Dichtelef2c7d72012-09-05 02:12:42 +00003406 if (rt->rt6i_flags & RTF_REJECT) {
3407 switch (rt->dst.error) {
3408 case -EINVAL:
3409 rtm->rtm_type = RTN_BLACKHOLE;
3410 break;
3411 case -EACCES:
3412 rtm->rtm_type = RTN_PROHIBIT;
3413 break;
Nicolas Dichtelb4949ab2012-09-06 05:53:35 +00003414 case -EAGAIN:
3415 rtm->rtm_type = RTN_THROW;
3416 break;
Nicolas Dichtelef2c7d72012-09-05 02:12:42 +00003417 default:
3418 rtm->rtm_type = RTN_UNREACHABLE;
3419 break;
3420 }
3421 }
David S. Miller38308472011-12-03 18:02:47 -05003422 else if (rt->rt6i_flags & RTF_LOCAL)
Maciej Żenczykowskiab79ad12010-09-27 00:07:02 +00003423 rtm->rtm_type = RTN_LOCAL;
David Ahern4ee39732017-03-15 18:14:33 -07003424 else if (rt->rt6i_flags & RTF_ANYCAST)
3425 rtm->rtm_type = RTN_ANYCAST;
David S. Millerd1918542011-12-28 20:19:20 -05003426 else if (rt->dst.dev && (rt->dst.dev->flags & IFF_LOOPBACK))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003427 rtm->rtm_type = RTN_LOCAL;
3428 else
3429 rtm->rtm_type = RTN_UNICAST;
3430 rtm->rtm_flags = 0;
3431 rtm->rtm_scope = RT_SCOPE_UNIVERSE;
3432 rtm->rtm_protocol = rt->rt6i_protocol;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003433
David S. Miller38308472011-12-03 18:02:47 -05003434 if (rt->rt6i_flags & RTF_CACHE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003435 rtm->rtm_flags |= RTM_F_CLONED;
3436
3437 if (dst) {
Jiri Benc930345e2015-03-29 16:59:25 +02003438 if (nla_put_in6_addr(skb, RTA_DST, dst))
David S. Millerc78679e2012-04-01 20:27:33 -04003439 goto nla_put_failure;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003440 rtm->rtm_dst_len = 128;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003441 } else if (rtm->rtm_dst_len)
Jiri Benc930345e2015-03-29 16:59:25 +02003442 if (nla_put_in6_addr(skb, RTA_DST, &rt->rt6i_dst.addr))
David S. Millerc78679e2012-04-01 20:27:33 -04003443 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003444#ifdef CONFIG_IPV6_SUBTREES
3445 if (src) {
Jiri Benc930345e2015-03-29 16:59:25 +02003446 if (nla_put_in6_addr(skb, RTA_SRC, src))
David S. Millerc78679e2012-04-01 20:27:33 -04003447 goto nla_put_failure;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003448 rtm->rtm_src_len = 128;
David S. Millerc78679e2012-04-01 20:27:33 -04003449 } else if (rtm->rtm_src_len &&
Jiri Benc930345e2015-03-29 16:59:25 +02003450 nla_put_in6_addr(skb, RTA_SRC, &rt->rt6i_src.addr))
David S. Millerc78679e2012-04-01 20:27:33 -04003451 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003452#endif
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09003453 if (iif) {
3454#ifdef CONFIG_IPV6_MROUTE
3455 if (ipv6_addr_is_multicast(&rt->rt6i_dst.addr)) {
David Ahernfd61c6b2017-01-17 15:51:07 -08003456 int err = ip6mr_get_route(net, skb, rtm, portid);
Nikolay Aleksandrov2cf75072016-09-25 23:08:31 +02003457
David Ahernfd61c6b2017-01-17 15:51:07 -08003458 if (err == 0)
3459 return 0;
3460 if (err < 0)
3461 goto nla_put_failure;
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09003462 } else
3463#endif
David S. Millerc78679e2012-04-01 20:27:33 -04003464 if (nla_put_u32(skb, RTA_IIF, iif))
3465 goto nla_put_failure;
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09003466 } else if (dst) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003467 struct in6_addr saddr_buf;
David S. Millerc78679e2012-04-01 20:27:33 -04003468 if (ip6_route_get_saddr(net, rt, dst, 0, &saddr_buf) == 0 &&
Jiri Benc930345e2015-03-29 16:59:25 +02003469 nla_put_in6_addr(skb, RTA_PREFSRC, &saddr_buf))
David S. Millerc78679e2012-04-01 20:27:33 -04003470 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003471 }
Thomas Graf2d7202b2006-08-22 00:01:27 -07003472
Daniel Walterc3968a82011-04-13 21:10:57 +00003473 if (rt->rt6i_prefsrc.plen) {
3474 struct in6_addr saddr_buf;
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00003475 saddr_buf = rt->rt6i_prefsrc.addr;
Jiri Benc930345e2015-03-29 16:59:25 +02003476 if (nla_put_in6_addr(skb, RTA_PREFSRC, &saddr_buf))
David S. Millerc78679e2012-04-01 20:27:33 -04003477 goto nla_put_failure;
Daniel Walterc3968a82011-04-13 21:10:57 +00003478 }
3479
Martin KaFai Lau4b32b5a2015-04-28 13:03:06 -07003480 memcpy(metrics, dst_metrics_ptr(&rt->dst), sizeof(metrics));
3481 if (rt->rt6i_pmtu)
3482 metrics[RTAX_MTU - 1] = rt->rt6i_pmtu;
3483 if (rtnetlink_put_metrics(skb, metrics) < 0)
Thomas Graf2d7202b2006-08-22 00:01:27 -07003484 goto nla_put_failure;
3485
David S. Millerc78679e2012-04-01 20:27:33 -04003486 if (nla_put_u32(skb, RTA_PRIORITY, rt->rt6i_metric))
3487 goto nla_put_failure;
Li Wei82539472012-07-29 16:01:30 +00003488
David Ahernbeb1afac52017-02-02 12:37:09 -08003489 /* For multipath routes, walk the siblings list and add
3490 * each as a nexthop within RTA_MULTIPATH.
3491 */
3492 if (rt->rt6i_nsiblings) {
3493 struct rt6_info *sibling, *next_sibling;
3494 struct nlattr *mp;
3495
3496 mp = nla_nest_start(skb, RTA_MULTIPATH);
3497 if (!mp)
3498 goto nla_put_failure;
3499
3500 if (rt6_add_nexthop(skb, rt) < 0)
3501 goto nla_put_failure;
3502
3503 list_for_each_entry_safe(sibling, next_sibling,
3504 &rt->rt6i_siblings, rt6i_siblings) {
3505 if (rt6_add_nexthop(skb, sibling) < 0)
3506 goto nla_put_failure;
3507 }
3508
3509 nla_nest_end(skb, mp);
3510 } else {
David Ahern5be083c2017-03-06 15:57:31 -08003511 if (rt6_nexthop_info(skb, rt, &rtm->rtm_flags, false) < 0)
David Ahernbeb1afac52017-02-02 12:37:09 -08003512 goto nla_put_failure;
3513 }
3514
Li Wei82539472012-07-29 16:01:30 +00003515 expires = (rt->rt6i_flags & RTF_EXPIRES) ? rt->dst.expires - jiffies : 0;
YOSHIFUJI Hideaki69cdf8f2008-05-19 16:55:13 -07003516
David S. Miller87a50692012-07-10 05:06:14 -07003517 if (rtnl_put_cacheinfo(skb, &rt->dst, 0, expires, rt->dst.error) < 0)
Thomas Grafe3703b32006-11-27 09:27:07 -08003518 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003519
Lubomir Rintelc78ba6d2015-03-11 15:39:21 +01003520 if (nla_put_u8(skb, RTA_PREF, IPV6_EXTRACT_PREF(rt->rt6i_flags)))
3521 goto nla_put_failure;
3522
Roopa Prabhu19e42e42015-07-21 10:43:48 +02003523
Johannes Berg053c0952015-01-16 22:09:00 +01003524 nlmsg_end(skb, nlh);
3525 return 0;
Thomas Graf2d7202b2006-08-22 00:01:27 -07003526
3527nla_put_failure:
Patrick McHardy26932562007-01-31 23:16:40 -08003528 nlmsg_cancel(skb, nlh);
3529 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003530}
3531
Patrick McHardy1b43af52006-08-10 23:11:17 -07003532int rt6_dump_route(struct rt6_info *rt, void *p_arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003533{
3534 struct rt6_rtnl_dump_arg *arg = (struct rt6_rtnl_dump_arg *) p_arg;
David Ahern1f17e2f2017-01-26 13:54:08 -08003535 struct net *net = arg->net;
3536
3537 if (rt == net->ipv6.ip6_null_entry)
3538 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003539
Thomas Graf2d7202b2006-08-22 00:01:27 -07003540 if (nlmsg_len(arg->cb->nlh) >= sizeof(struct rtmsg)) {
3541 struct rtmsg *rtm = nlmsg_data(arg->cb->nlh);
David Ahernf8cfe2c2017-01-17 15:51:08 -08003542
3543 /* user wants prefix routes only */
3544 if (rtm->rtm_flags & RTM_F_PREFIX &&
3545 !(rt->rt6i_flags & RTF_PREFIX_RT)) {
3546 /* success since this is not a prefix route */
3547 return 1;
3548 }
3549 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003550
David Ahern1f17e2f2017-01-26 13:54:08 -08003551 return rt6_fill_node(net,
Brian Haley191cd582008-08-14 15:33:21 -07003552 arg->skb, rt, NULL, NULL, 0, RTM_NEWROUTE,
Eric W. Biederman15e47302012-09-07 20:12:54 +00003553 NETLINK_CB(arg->cb->skb).portid, arg->cb->nlh->nlmsg_seq,
David Ahernf8cfe2c2017-01-17 15:51:08 -08003554 NLM_F_MULTI);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003555}
3556
David Ahernc21ef3e2017-04-16 09:48:24 -07003557static int inet6_rtm_getroute(struct sk_buff *in_skb, struct nlmsghdr *nlh,
3558 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003559{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09003560 struct net *net = sock_net(in_skb->sk);
Thomas Grafab364a62006-08-22 00:01:47 -07003561 struct nlattr *tb[RTA_MAX+1];
Roopa Prabhu18c3a612017-05-25 10:42:40 -07003562 int err, iif = 0, oif = 0;
3563 struct dst_entry *dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003564 struct rt6_info *rt;
Thomas Grafab364a62006-08-22 00:01:47 -07003565 struct sk_buff *skb;
3566 struct rtmsg *rtm;
David S. Miller4c9483b2011-03-12 16:22:43 -05003567 struct flowi6 fl6;
Roopa Prabhu18c3a612017-05-25 10:42:40 -07003568 bool fibmatch;
Thomas Grafab364a62006-08-22 00:01:47 -07003569
Johannes Bergfceb6432017-04-12 14:34:07 +02003570 err = nlmsg_parse(nlh, sizeof(*rtm), tb, RTA_MAX, rtm_ipv6_policy,
David Ahernc21ef3e2017-04-16 09:48:24 -07003571 extack);
Thomas Grafab364a62006-08-22 00:01:47 -07003572 if (err < 0)
3573 goto errout;
3574
3575 err = -EINVAL;
David S. Miller4c9483b2011-03-12 16:22:43 -05003576 memset(&fl6, 0, sizeof(fl6));
Hannes Frederic Sowa38b70972016-06-11 20:08:19 +02003577 rtm = nlmsg_data(nlh);
3578 fl6.flowlabel = ip6_make_flowinfo(rtm->rtm_tos, 0);
Roopa Prabhu18c3a612017-05-25 10:42:40 -07003579 fibmatch = !!(rtm->rtm_flags & RTM_F_FIB_MATCH);
Thomas Grafab364a62006-08-22 00:01:47 -07003580
3581 if (tb[RTA_SRC]) {
3582 if (nla_len(tb[RTA_SRC]) < sizeof(struct in6_addr))
3583 goto errout;
3584
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00003585 fl6.saddr = *(struct in6_addr *)nla_data(tb[RTA_SRC]);
Thomas Grafab364a62006-08-22 00:01:47 -07003586 }
3587
3588 if (tb[RTA_DST]) {
3589 if (nla_len(tb[RTA_DST]) < sizeof(struct in6_addr))
3590 goto errout;
3591
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00003592 fl6.daddr = *(struct in6_addr *)nla_data(tb[RTA_DST]);
Thomas Grafab364a62006-08-22 00:01:47 -07003593 }
3594
3595 if (tb[RTA_IIF])
3596 iif = nla_get_u32(tb[RTA_IIF]);
3597
3598 if (tb[RTA_OIF])
Shmulik Ladkani72331bc2012-04-01 04:03:45 +00003599 oif = nla_get_u32(tb[RTA_OIF]);
Thomas Grafab364a62006-08-22 00:01:47 -07003600
Lorenzo Colitti2e47b292014-05-15 16:38:41 -07003601 if (tb[RTA_MARK])
3602 fl6.flowi6_mark = nla_get_u32(tb[RTA_MARK]);
3603
Lorenzo Colitti622ec2c2016-11-04 02:23:42 +09003604 if (tb[RTA_UID])
3605 fl6.flowi6_uid = make_kuid(current_user_ns(),
3606 nla_get_u32(tb[RTA_UID]));
3607 else
3608 fl6.flowi6_uid = iif ? INVALID_UID : current_uid();
3609
Thomas Grafab364a62006-08-22 00:01:47 -07003610 if (iif) {
3611 struct net_device *dev;
Shmulik Ladkani72331bc2012-04-01 04:03:45 +00003612 int flags = 0;
3613
Florian Westphal121622d2017-08-15 16:34:42 +02003614 rcu_read_lock();
3615
3616 dev = dev_get_by_index_rcu(net, iif);
Thomas Grafab364a62006-08-22 00:01:47 -07003617 if (!dev) {
Florian Westphal121622d2017-08-15 16:34:42 +02003618 rcu_read_unlock();
Thomas Grafab364a62006-08-22 00:01:47 -07003619 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);
Florian Westphal121622d2017-08-15 16:34:42 +02003630
3631 rcu_read_unlock();
Shmulik Ladkani72331bc2012-04-01 04:03:45 +00003632 } else {
3633 fl6.flowi6_oif = oif;
3634
Roopa Prabhu18c3a612017-05-25 10:42:40 -07003635 if (!fibmatch)
3636 dst = ip6_route_output(net, NULL, &fl6);
3637 }
3638
3639 if (fibmatch)
3640 dst = ip6_route_lookup(net, &fl6, 0);
3641
3642 rt = container_of(dst, struct rt6_info, dst);
3643 if (rt->dst.error) {
3644 err = rt->dst.error;
3645 ip6_rt_put(rt);
3646 goto errout;
Thomas Grafab364a62006-08-22 00:01:47 -07003647 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003648
WANG Cong9d6acb32017-03-01 20:48:39 -08003649 if (rt == net->ipv6.ip6_null_entry) {
3650 err = rt->dst.error;
3651 ip6_rt_put(rt);
3652 goto errout;
3653 }
3654
Linus Torvalds1da177e2005-04-16 15:20:36 -07003655 skb = alloc_skb(NLMSG_GOODSIZE, GFP_KERNEL);
David S. Miller38308472011-12-03 18:02:47 -05003656 if (!skb) {
Amerigo Wang94e187c2012-10-29 00:13:19 +00003657 ip6_rt_put(rt);
Thomas Grafab364a62006-08-22 00:01:47 -07003658 err = -ENOBUFS;
3659 goto errout;
3660 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003661
Changli Gaod8d1f302010-06-10 23:31:35 -07003662 skb_dst_set(skb, &rt->dst);
Roopa Prabhu18c3a612017-05-25 10:42:40 -07003663 if (fibmatch)
3664 err = rt6_fill_node(net, skb, rt, NULL, NULL, iif,
3665 RTM_NEWROUTE, NETLINK_CB(in_skb).portid,
3666 nlh->nlmsg_seq, 0);
3667 else
3668 err = rt6_fill_node(net, skb, rt, &fl6.daddr, &fl6.saddr, iif,
3669 RTM_NEWROUTE, NETLINK_CB(in_skb).portid,
3670 nlh->nlmsg_seq, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003671 if (err < 0) {
Thomas Grafab364a62006-08-22 00:01:47 -07003672 kfree_skb(skb);
3673 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003674 }
3675
Eric W. Biederman15e47302012-09-07 20:12:54 +00003676 err = rtnl_unicast(skb, net, NETLINK_CB(in_skb).portid);
Thomas Grafab364a62006-08-22 00:01:47 -07003677errout:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003678 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003679}
3680
Roopa Prabhu37a1d362015-09-13 10:18:33 -07003681void inet6_rt_notify(int event, struct rt6_info *rt, struct nl_info *info,
3682 unsigned int nlm_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003683{
3684 struct sk_buff *skb;
Daniel Lezcano55786892008-03-04 13:47:47 -08003685 struct net *net = info->nl_net;
Denis V. Lunev528c4ce2007-12-13 09:45:12 -08003686 u32 seq;
3687 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003688
Denis V. Lunev528c4ce2007-12-13 09:45:12 -08003689 err = -ENOBUFS;
David S. Miller38308472011-12-03 18:02:47 -05003690 seq = info->nlh ? info->nlh->nlmsg_seq : 0;
Thomas Graf86872cb2006-08-22 00:01:08 -07003691
Roopa Prabhu19e42e42015-07-21 10:43:48 +02003692 skb = nlmsg_new(rt6_nlmsg_size(rt), gfp_any());
David S. Miller38308472011-12-03 18:02:47 -05003693 if (!skb)
Thomas Graf21713eb2006-08-15 00:35:24 -07003694 goto errout;
3695
Brian Haley191cd582008-08-14 15:33:21 -07003696 err = rt6_fill_node(net, skb, rt, NULL, NULL, 0,
David Ahernf8cfe2c2017-01-17 15:51:08 -08003697 event, info->portid, seq, nlm_flags);
Patrick McHardy26932562007-01-31 23:16:40 -08003698 if (err < 0) {
3699 /* -EMSGSIZE implies BUG in rt6_nlmsg_size() */
3700 WARN_ON(err == -EMSGSIZE);
3701 kfree_skb(skb);
3702 goto errout;
3703 }
Eric W. Biederman15e47302012-09-07 20:12:54 +00003704 rtnl_notify(skb, net, info->portid, RTNLGRP_IPV6_ROUTE,
Pablo Neira Ayuso1ce85fe2009-02-24 23:18:28 -08003705 info->nlh, gfp_any());
3706 return;
Thomas Graf21713eb2006-08-15 00:35:24 -07003707errout:
3708 if (err < 0)
Daniel Lezcano55786892008-03-04 13:47:47 -08003709 rtnl_set_sk_err(net, RTNLGRP_IPV6_ROUTE, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003710}
3711
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003712static int ip6_route_dev_notify(struct notifier_block *this,
Jiri Pirko351638e2013-05-28 01:30:21 +00003713 unsigned long event, void *ptr)
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003714{
Jiri Pirko351638e2013-05-28 01:30:21 +00003715 struct net_device *dev = netdev_notifier_info_to_dev(ptr);
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09003716 struct net *net = dev_net(dev);
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003717
WANG Cong242d3a42017-05-08 10:12:13 -07003718 if (!(dev->flags & IFF_LOOPBACK))
3719 return NOTIFY_OK;
3720
3721 if (event == NETDEV_REGISTER) {
Changli Gaod8d1f302010-06-10 23:31:35 -07003722 net->ipv6.ip6_null_entry->dst.dev = dev;
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003723 net->ipv6.ip6_null_entry->rt6i_idev = in6_dev_get(dev);
3724#ifdef CONFIG_IPV6_MULTIPLE_TABLES
Changli Gaod8d1f302010-06-10 23:31:35 -07003725 net->ipv6.ip6_prohibit_entry->dst.dev = dev;
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003726 net->ipv6.ip6_prohibit_entry->rt6i_idev = in6_dev_get(dev);
Changli Gaod8d1f302010-06-10 23:31:35 -07003727 net->ipv6.ip6_blk_hole_entry->dst.dev = dev;
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003728 net->ipv6.ip6_blk_hole_entry->rt6i_idev = in6_dev_get(dev);
3729#endif
WANG Cong76da0702017-06-20 11:42:27 -07003730 } else if (event == NETDEV_UNREGISTER &&
3731 dev->reg_state != NETREG_UNREGISTERED) {
3732 /* NETDEV_UNREGISTER could be fired for multiple times by
3733 * netdev_wait_allrefs(). Make sure we only call this once.
3734 */
WANG Cong242d3a42017-05-08 10:12:13 -07003735 in6_dev_put(net->ipv6.ip6_null_entry->rt6i_idev);
3736#ifdef CONFIG_IPV6_MULTIPLE_TABLES
3737 in6_dev_put(net->ipv6.ip6_prohibit_entry->rt6i_idev);
3738 in6_dev_put(net->ipv6.ip6_blk_hole_entry->rt6i_idev);
3739#endif
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003740 }
3741
3742 return NOTIFY_OK;
3743}
3744
Linus Torvalds1da177e2005-04-16 15:20:36 -07003745/*
3746 * /proc
3747 */
3748
3749#ifdef CONFIG_PROC_FS
3750
Alexey Dobriyan33120b32007-11-06 05:27:11 -08003751static const struct file_operations ipv6_route_proc_fops = {
3752 .owner = THIS_MODULE,
3753 .open = ipv6_route_open,
3754 .read = seq_read,
3755 .llseek = seq_lseek,
Hannes Frederic Sowa8d2ca1d2013-09-21 16:55:59 +02003756 .release = seq_release_net,
Alexey Dobriyan33120b32007-11-06 05:27:11 -08003757};
3758
Linus Torvalds1da177e2005-04-16 15:20:36 -07003759static int rt6_stats_seq_show(struct seq_file *seq, void *v)
3760{
Daniel Lezcano69ddb802008-03-04 13:46:23 -08003761 struct net *net = (struct net *)seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003762 seq_printf(seq, "%04x %04x %04x %04x %04x %04x %04x\n",
Daniel Lezcano69ddb802008-03-04 13:46:23 -08003763 net->ipv6.rt6_stats->fib_nodes,
3764 net->ipv6.rt6_stats->fib_route_nodes,
3765 net->ipv6.rt6_stats->fib_rt_alloc,
3766 net->ipv6.rt6_stats->fib_rt_entries,
3767 net->ipv6.rt6_stats->fib_rt_cache,
Eric Dumazetfc66f952010-10-08 06:37:34 +00003768 dst_entries_get_slow(&net->ipv6.ip6_dst_ops),
Daniel Lezcano69ddb802008-03-04 13:46:23 -08003769 net->ipv6.rt6_stats->fib_discarded_routes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003770
3771 return 0;
3772}
3773
3774static int rt6_stats_seq_open(struct inode *inode, struct file *file)
3775{
Pavel Emelyanovde05c552008-07-18 04:07:21 -07003776 return single_open_net(inode, file, rt6_stats_seq_show);
Daniel Lezcano69ddb802008-03-04 13:46:23 -08003777}
3778
Arjan van de Ven9a321442007-02-12 00:55:35 -08003779static const struct file_operations rt6_stats_seq_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003780 .owner = THIS_MODULE,
3781 .open = rt6_stats_seq_open,
3782 .read = seq_read,
3783 .llseek = seq_lseek,
Pavel Emelyanovb6fcbdb2008-07-18 04:07:44 -07003784 .release = single_release_net,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003785};
3786#endif /* CONFIG_PROC_FS */
3787
3788#ifdef CONFIG_SYSCTL
3789
Linus Torvalds1da177e2005-04-16 15:20:36 -07003790static
Joe Perchesfe2c6332013-06-11 23:04:25 -07003791int ipv6_sysctl_rtcache_flush(struct ctl_table *ctl, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003792 void __user *buffer, size_t *lenp, loff_t *ppos)
3793{
Lucian Adrian Grijincuc486da32011-02-24 19:48:03 +00003794 struct net *net;
3795 int delay;
3796 if (!write)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003797 return -EINVAL;
Lucian Adrian Grijincuc486da32011-02-24 19:48:03 +00003798
3799 net = (struct net *)ctl->extra1;
3800 delay = net->ipv6.sysctl.flush_delay;
3801 proc_dointvec(ctl, write, buffer, lenp, ppos);
Michal Kubeček2ac3ac82013-08-01 10:04:14 +02003802 fib6_run_gc(delay <= 0 ? 0 : (unsigned long)delay, net, delay > 0);
Lucian Adrian Grijincuc486da32011-02-24 19:48:03 +00003803 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003804}
3805
Joe Perchesfe2c6332013-06-11 23:04:25 -07003806struct ctl_table ipv6_route_table_template[] = {
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003807 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003808 .procname = "flush",
Daniel Lezcano49905092008-01-10 03:01:01 -08003809 .data = &init_net.ipv6.sysctl.flush_delay,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003810 .maxlen = sizeof(int),
Dave Jones89c8b3a12005-04-28 12:11:49 -07003811 .mode = 0200,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08003812 .proc_handler = ipv6_sysctl_rtcache_flush
Linus Torvalds1da177e2005-04-16 15:20:36 -07003813 },
3814 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003815 .procname = "gc_thresh",
Daniel Lezcano9a7ec3a2008-03-04 13:48:53 -08003816 .data = &ip6_dst_ops_template.gc_thresh,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003817 .maxlen = sizeof(int),
3818 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08003819 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003820 },
3821 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003822 .procname = "max_size",
Daniel Lezcano49905092008-01-10 03:01:01 -08003823 .data = &init_net.ipv6.sysctl.ip6_rt_max_size,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003824 .maxlen = sizeof(int),
3825 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08003826 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003827 },
3828 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003829 .procname = "gc_min_interval",
Daniel Lezcano49905092008-01-10 03:01:01 -08003830 .data = &init_net.ipv6.sysctl.ip6_rt_gc_min_interval,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003831 .maxlen = sizeof(int),
3832 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08003833 .proc_handler = proc_dointvec_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003834 },
3835 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003836 .procname = "gc_timeout",
Daniel Lezcano49905092008-01-10 03:01:01 -08003837 .data = &init_net.ipv6.sysctl.ip6_rt_gc_timeout,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003838 .maxlen = sizeof(int),
3839 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08003840 .proc_handler = proc_dointvec_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003841 },
3842 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003843 .procname = "gc_interval",
Daniel Lezcano49905092008-01-10 03:01:01 -08003844 .data = &init_net.ipv6.sysctl.ip6_rt_gc_interval,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003845 .maxlen = sizeof(int),
3846 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08003847 .proc_handler = proc_dointvec_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003848 },
3849 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003850 .procname = "gc_elasticity",
Daniel Lezcano49905092008-01-10 03:01:01 -08003851 .data = &init_net.ipv6.sysctl.ip6_rt_gc_elasticity,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003852 .maxlen = sizeof(int),
3853 .mode = 0644,
Min Zhangf3d3f612010-08-14 22:42:51 -07003854 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003855 },
3856 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003857 .procname = "mtu_expires",
Daniel Lezcano49905092008-01-10 03:01:01 -08003858 .data = &init_net.ipv6.sysctl.ip6_rt_mtu_expires,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003859 .maxlen = sizeof(int),
3860 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08003861 .proc_handler = proc_dointvec_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003862 },
3863 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003864 .procname = "min_adv_mss",
Daniel Lezcano49905092008-01-10 03:01:01 -08003865 .data = &init_net.ipv6.sysctl.ip6_rt_min_advmss,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003866 .maxlen = sizeof(int),
3867 .mode = 0644,
Min Zhangf3d3f612010-08-14 22:42:51 -07003868 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003869 },
3870 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003871 .procname = "gc_min_interval_ms",
Daniel Lezcano49905092008-01-10 03:01:01 -08003872 .data = &init_net.ipv6.sysctl.ip6_rt_gc_min_interval,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003873 .maxlen = sizeof(int),
3874 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08003875 .proc_handler = proc_dointvec_ms_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003876 },
Eric W. Biedermanf8572d82009-11-05 13:32:03 -08003877 { }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003878};
3879
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00003880struct ctl_table * __net_init ipv6_route_sysctl_init(struct net *net)
Daniel Lezcano760f2d02008-01-10 02:53:43 -08003881{
3882 struct ctl_table *table;
3883
3884 table = kmemdup(ipv6_route_table_template,
3885 sizeof(ipv6_route_table_template),
3886 GFP_KERNEL);
YOSHIFUJI Hideaki5ee09102008-02-28 00:24:28 +09003887
3888 if (table) {
3889 table[0].data = &net->ipv6.sysctl.flush_delay;
Lucian Adrian Grijincuc486da32011-02-24 19:48:03 +00003890 table[0].extra1 = net;
Alexey Dobriyan86393e52009-08-29 01:34:49 +00003891 table[1].data = &net->ipv6.ip6_dst_ops.gc_thresh;
YOSHIFUJI Hideaki5ee09102008-02-28 00:24:28 +09003892 table[2].data = &net->ipv6.sysctl.ip6_rt_max_size;
3893 table[3].data = &net->ipv6.sysctl.ip6_rt_gc_min_interval;
3894 table[4].data = &net->ipv6.sysctl.ip6_rt_gc_timeout;
3895 table[5].data = &net->ipv6.sysctl.ip6_rt_gc_interval;
3896 table[6].data = &net->ipv6.sysctl.ip6_rt_gc_elasticity;
3897 table[7].data = &net->ipv6.sysctl.ip6_rt_mtu_expires;
3898 table[8].data = &net->ipv6.sysctl.ip6_rt_min_advmss;
Alexey Dobriyan9c69fab2009-12-18 20:11:03 -08003899 table[9].data = &net->ipv6.sysctl.ip6_rt_gc_min_interval;
Eric W. Biederman464dc802012-11-16 03:02:59 +00003900
3901 /* Don't export sysctls to unprivileged users */
3902 if (net->user_ns != &init_user_ns)
3903 table[0].procname = NULL;
YOSHIFUJI Hideaki5ee09102008-02-28 00:24:28 +09003904 }
3905
Daniel Lezcano760f2d02008-01-10 02:53:43 -08003906 return table;
3907}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003908#endif
3909
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00003910static int __net_init ip6_route_net_init(struct net *net)
Daniel Lezcanocdb18762008-03-04 13:45:33 -08003911{
Pavel Emelyanov633d424b2008-04-21 14:25:23 -07003912 int ret = -ENOMEM;
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003913
Alexey Dobriyan86393e52009-08-29 01:34:49 +00003914 memcpy(&net->ipv6.ip6_dst_ops, &ip6_dst_ops_template,
3915 sizeof(net->ipv6.ip6_dst_ops));
Benjamin Theryf2fc6a52008-03-04 13:49:23 -08003916
Eric Dumazetfc66f952010-10-08 06:37:34 +00003917 if (dst_entries_init(&net->ipv6.ip6_dst_ops) < 0)
3918 goto out_ip6_dst_ops;
3919
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003920 net->ipv6.ip6_null_entry = kmemdup(&ip6_null_entry_template,
3921 sizeof(*net->ipv6.ip6_null_entry),
3922 GFP_KERNEL);
3923 if (!net->ipv6.ip6_null_entry)
Eric Dumazetfc66f952010-10-08 06:37:34 +00003924 goto out_ip6_dst_entries;
Changli Gaod8d1f302010-06-10 23:31:35 -07003925 net->ipv6.ip6_null_entry->dst.path =
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003926 (struct dst_entry *)net->ipv6.ip6_null_entry;
Changli Gaod8d1f302010-06-10 23:31:35 -07003927 net->ipv6.ip6_null_entry->dst.ops = &net->ipv6.ip6_dst_ops;
David S. Miller62fa8a82011-01-26 20:51:05 -08003928 dst_init_metrics(&net->ipv6.ip6_null_entry->dst,
3929 ip6_template_metrics, true);
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003930
3931#ifdef CONFIG_IPV6_MULTIPLE_TABLES
Vincent Bernatfeca7d82017-08-08 20:23:49 +02003932 net->ipv6.fib6_has_custom_rules = false;
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003933 net->ipv6.ip6_prohibit_entry = kmemdup(&ip6_prohibit_entry_template,
3934 sizeof(*net->ipv6.ip6_prohibit_entry),
3935 GFP_KERNEL);
Peter Zijlstra68fffc62008-10-07 14:12:10 -07003936 if (!net->ipv6.ip6_prohibit_entry)
3937 goto out_ip6_null_entry;
Changli Gaod8d1f302010-06-10 23:31:35 -07003938 net->ipv6.ip6_prohibit_entry->dst.path =
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003939 (struct dst_entry *)net->ipv6.ip6_prohibit_entry;
Changli Gaod8d1f302010-06-10 23:31:35 -07003940 net->ipv6.ip6_prohibit_entry->dst.ops = &net->ipv6.ip6_dst_ops;
David S. Miller62fa8a82011-01-26 20:51:05 -08003941 dst_init_metrics(&net->ipv6.ip6_prohibit_entry->dst,
3942 ip6_template_metrics, true);
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003943
3944 net->ipv6.ip6_blk_hole_entry = kmemdup(&ip6_blk_hole_entry_template,
3945 sizeof(*net->ipv6.ip6_blk_hole_entry),
3946 GFP_KERNEL);
Peter Zijlstra68fffc62008-10-07 14:12:10 -07003947 if (!net->ipv6.ip6_blk_hole_entry)
3948 goto out_ip6_prohibit_entry;
Changli Gaod8d1f302010-06-10 23:31:35 -07003949 net->ipv6.ip6_blk_hole_entry->dst.path =
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003950 (struct dst_entry *)net->ipv6.ip6_blk_hole_entry;
Changli Gaod8d1f302010-06-10 23:31:35 -07003951 net->ipv6.ip6_blk_hole_entry->dst.ops = &net->ipv6.ip6_dst_ops;
David S. Miller62fa8a82011-01-26 20:51:05 -08003952 dst_init_metrics(&net->ipv6.ip6_blk_hole_entry->dst,
3953 ip6_template_metrics, true);
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003954#endif
3955
Peter Zijlstrab339a47c2008-10-07 14:15:00 -07003956 net->ipv6.sysctl.flush_delay = 0;
3957 net->ipv6.sysctl.ip6_rt_max_size = 4096;
3958 net->ipv6.sysctl.ip6_rt_gc_min_interval = HZ / 2;
3959 net->ipv6.sysctl.ip6_rt_gc_timeout = 60*HZ;
3960 net->ipv6.sysctl.ip6_rt_gc_interval = 30*HZ;
3961 net->ipv6.sysctl.ip6_rt_gc_elasticity = 9;
3962 net->ipv6.sysctl.ip6_rt_mtu_expires = 10*60*HZ;
3963 net->ipv6.sysctl.ip6_rt_min_advmss = IPV6_MIN_MTU - 20 - 40;
3964
Benjamin Thery6891a342008-03-04 13:49:47 -08003965 net->ipv6.ip6_rt_gc_expire = 30*HZ;
3966
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003967 ret = 0;
3968out:
3969 return ret;
Benjamin Theryf2fc6a52008-03-04 13:49:23 -08003970
Peter Zijlstra68fffc62008-10-07 14:12:10 -07003971#ifdef CONFIG_IPV6_MULTIPLE_TABLES
3972out_ip6_prohibit_entry:
3973 kfree(net->ipv6.ip6_prohibit_entry);
3974out_ip6_null_entry:
3975 kfree(net->ipv6.ip6_null_entry);
3976#endif
Eric Dumazetfc66f952010-10-08 06:37:34 +00003977out_ip6_dst_entries:
3978 dst_entries_destroy(&net->ipv6.ip6_dst_ops);
Benjamin Theryf2fc6a52008-03-04 13:49:23 -08003979out_ip6_dst_ops:
Benjamin Theryf2fc6a52008-03-04 13:49:23 -08003980 goto out;
Daniel Lezcanocdb18762008-03-04 13:45:33 -08003981}
3982
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00003983static void __net_exit ip6_route_net_exit(struct net *net)
Daniel Lezcanocdb18762008-03-04 13:45:33 -08003984{
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003985 kfree(net->ipv6.ip6_null_entry);
3986#ifdef CONFIG_IPV6_MULTIPLE_TABLES
3987 kfree(net->ipv6.ip6_prohibit_entry);
3988 kfree(net->ipv6.ip6_blk_hole_entry);
3989#endif
Xiaotian Feng41bb78b2010-11-02 16:11:05 +00003990 dst_entries_destroy(&net->ipv6.ip6_dst_ops);
Daniel Lezcanocdb18762008-03-04 13:45:33 -08003991}
3992
Thomas Grafd1896342012-06-18 12:08:33 +00003993static int __net_init ip6_route_net_init_late(struct net *net)
3994{
3995#ifdef CONFIG_PROC_FS
Gao fengd4beaa62013-02-18 01:34:54 +00003996 proc_create("ipv6_route", 0, net->proc_net, &ipv6_route_proc_fops);
3997 proc_create("rt6_stats", S_IRUGO, net->proc_net, &rt6_stats_seq_fops);
Thomas Grafd1896342012-06-18 12:08:33 +00003998#endif
3999 return 0;
4000}
4001
4002static void __net_exit ip6_route_net_exit_late(struct net *net)
4003{
4004#ifdef CONFIG_PROC_FS
Gao fengece31ff2013-02-18 01:34:56 +00004005 remove_proc_entry("ipv6_route", net->proc_net);
4006 remove_proc_entry("rt6_stats", net->proc_net);
Thomas Grafd1896342012-06-18 12:08:33 +00004007#endif
4008}
4009
Daniel Lezcanocdb18762008-03-04 13:45:33 -08004010static struct pernet_operations ip6_route_net_ops = {
4011 .init = ip6_route_net_init,
4012 .exit = ip6_route_net_exit,
4013};
4014
David S. Millerc3426b42012-06-09 16:27:05 -07004015static int __net_init ipv6_inetpeer_init(struct net *net)
4016{
4017 struct inet_peer_base *bp = kmalloc(sizeof(*bp), GFP_KERNEL);
4018
4019 if (!bp)
4020 return -ENOMEM;
4021 inet_peer_base_init(bp);
4022 net->ipv6.peers = bp;
4023 return 0;
4024}
4025
4026static void __net_exit ipv6_inetpeer_exit(struct net *net)
4027{
4028 struct inet_peer_base *bp = net->ipv6.peers;
4029
4030 net->ipv6.peers = NULL;
David S. Miller56a6b242012-06-09 16:32:41 -07004031 inetpeer_invalidate_tree(bp);
David S. Millerc3426b42012-06-09 16:27:05 -07004032 kfree(bp);
4033}
4034
David S. Miller2b823f72012-06-09 19:00:16 -07004035static struct pernet_operations ipv6_inetpeer_ops = {
David S. Millerc3426b42012-06-09 16:27:05 -07004036 .init = ipv6_inetpeer_init,
4037 .exit = ipv6_inetpeer_exit,
4038};
4039
Thomas Grafd1896342012-06-18 12:08:33 +00004040static struct pernet_operations ip6_route_net_late_ops = {
4041 .init = ip6_route_net_init_late,
4042 .exit = ip6_route_net_exit_late,
4043};
4044
Daniel Lezcano8ed67782008-03-04 13:48:30 -08004045static struct notifier_block ip6_route_dev_notifier = {
4046 .notifier_call = ip6_route_dev_notify,
WANG Cong242d3a42017-05-08 10:12:13 -07004047 .priority = ADDRCONF_NOTIFY_PRIORITY - 10,
Daniel Lezcano8ed67782008-03-04 13:48:30 -08004048};
4049
WANG Cong2f460932017-05-03 22:07:31 -07004050void __init ip6_route_init_special_entries(void)
4051{
4052 /* Registering of the loopback is done before this portion of code,
4053 * the loopback reference in rt6_info will not be taken, do it
4054 * manually for init_net */
4055 init_net.ipv6.ip6_null_entry->dst.dev = init_net.loopback_dev;
4056 init_net.ipv6.ip6_null_entry->rt6i_idev = in6_dev_get(init_net.loopback_dev);
4057 #ifdef CONFIG_IPV6_MULTIPLE_TABLES
4058 init_net.ipv6.ip6_prohibit_entry->dst.dev = init_net.loopback_dev;
4059 init_net.ipv6.ip6_prohibit_entry->rt6i_idev = in6_dev_get(init_net.loopback_dev);
4060 init_net.ipv6.ip6_blk_hole_entry->dst.dev = init_net.loopback_dev;
4061 init_net.ipv6.ip6_blk_hole_entry->rt6i_idev = in6_dev_get(init_net.loopback_dev);
4062 #endif
4063}
4064
Daniel Lezcano433d49c2007-12-07 00:43:48 -08004065int __init ip6_route_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004066{
Daniel Lezcano433d49c2007-12-07 00:43:48 -08004067 int ret;
Martin KaFai Lau8d0b94a2015-05-22 20:56:04 -07004068 int cpu;
Daniel Lezcano433d49c2007-12-07 00:43:48 -08004069
Daniel Lezcano9a7ec3a2008-03-04 13:48:53 -08004070 ret = -ENOMEM;
4071 ip6_dst_ops_template.kmem_cachep =
4072 kmem_cache_create("ip6_dst_cache", sizeof(struct rt6_info), 0,
4073 SLAB_HWCACHE_ALIGN, NULL);
4074 if (!ip6_dst_ops_template.kmem_cachep)
Fernando Carrijoc19a28e2009-01-07 18:09:08 -08004075 goto out;
David S. Miller14e50e52007-05-24 18:17:54 -07004076
Eric Dumazetfc66f952010-10-08 06:37:34 +00004077 ret = dst_entries_init(&ip6_dst_blackhole_ops);
Daniel Lezcano8ed67782008-03-04 13:48:30 -08004078 if (ret)
Daniel Lezcanobdb32892008-03-04 13:48:10 -08004079 goto out_kmem_cache;
Daniel Lezcanobdb32892008-03-04 13:48:10 -08004080
David S. Millerc3426b42012-06-09 16:27:05 -07004081 ret = register_pernet_subsys(&ipv6_inetpeer_ops);
4082 if (ret)
David S. Millere8803b62012-06-16 01:12:19 -07004083 goto out_dst_entries;
Thomas Graf2a0c4512012-06-14 23:00:17 +00004084
David S. Miller7e52b332012-06-15 15:51:55 -07004085 ret = register_pernet_subsys(&ip6_route_net_ops);
4086 if (ret)
4087 goto out_register_inetpeer;
David S. Millerc3426b42012-06-09 16:27:05 -07004088
Arnaud Ebalard5dc121e2008-10-01 02:37:56 -07004089 ip6_dst_blackhole_ops.kmem_cachep = ip6_dst_ops_template.kmem_cachep;
4090
David S. Millere8803b62012-06-16 01:12:19 -07004091 ret = fib6_init();
Daniel Lezcano433d49c2007-12-07 00:43:48 -08004092 if (ret)
Daniel Lezcano8ed67782008-03-04 13:48:30 -08004093 goto out_register_subsys;
Daniel Lezcano433d49c2007-12-07 00:43:48 -08004094
Daniel Lezcano433d49c2007-12-07 00:43:48 -08004095 ret = xfrm6_init();
4096 if (ret)
David S. Millere8803b62012-06-16 01:12:19 -07004097 goto out_fib6_init;
Daniel Lezcanoc35b7e72007-12-08 00:14:11 -08004098
Daniel Lezcano433d49c2007-12-07 00:43:48 -08004099 ret = fib6_rules_init();
4100 if (ret)
4101 goto xfrm6_init;
Daniel Lezcano7e5449c2007-12-08 00:14:54 -08004102
Thomas Grafd1896342012-06-18 12:08:33 +00004103 ret = register_pernet_subsys(&ip6_route_net_late_ops);
4104 if (ret)
4105 goto fib6_rules_init;
4106
Daniel Lezcano433d49c2007-12-07 00:43:48 -08004107 ret = -ENOBUFS;
Florian Westphalb97bac62017-08-09 20:41:48 +02004108 if (__rtnl_register(PF_INET6, RTM_NEWROUTE, inet6_rtm_newroute, NULL, 0) ||
4109 __rtnl_register(PF_INET6, RTM_DELROUTE, inet6_rtm_delroute, NULL, 0) ||
Florian Westphale3a22b72017-08-15 16:34:43 +02004110 __rtnl_register(PF_INET6, RTM_GETROUTE, inet6_rtm_getroute, NULL,
4111 RTNL_FLAG_DOIT_UNLOCKED))
Thomas Grafd1896342012-06-18 12:08:33 +00004112 goto out_register_late_subsys;
Daniel Lezcano433d49c2007-12-07 00:43:48 -08004113
Daniel Lezcano8ed67782008-03-04 13:48:30 -08004114 ret = register_netdevice_notifier(&ip6_route_dev_notifier);
Daniel Lezcanocdb18762008-03-04 13:45:33 -08004115 if (ret)
Thomas Grafd1896342012-06-18 12:08:33 +00004116 goto out_register_late_subsys;
Daniel Lezcano8ed67782008-03-04 13:48:30 -08004117
Martin KaFai Lau8d0b94a2015-05-22 20:56:04 -07004118 for_each_possible_cpu(cpu) {
4119 struct uncached_list *ul = per_cpu_ptr(&rt6_uncached_list, cpu);
4120
4121 INIT_LIST_HEAD(&ul->head);
4122 spin_lock_init(&ul->lock);
4123 }
4124
Daniel Lezcano433d49c2007-12-07 00:43:48 -08004125out:
4126 return ret;
4127
Thomas Grafd1896342012-06-18 12:08:33 +00004128out_register_late_subsys:
4129 unregister_pernet_subsys(&ip6_route_net_late_ops);
Daniel Lezcano433d49c2007-12-07 00:43:48 -08004130fib6_rules_init:
Daniel Lezcano433d49c2007-12-07 00:43:48 -08004131 fib6_rules_cleanup();
4132xfrm6_init:
Daniel Lezcano433d49c2007-12-07 00:43:48 -08004133 xfrm6_fini();
Thomas Graf2a0c4512012-06-14 23:00:17 +00004134out_fib6_init:
4135 fib6_gc_cleanup();
Daniel Lezcano8ed67782008-03-04 13:48:30 -08004136out_register_subsys:
4137 unregister_pernet_subsys(&ip6_route_net_ops);
David S. Miller7e52b332012-06-15 15:51:55 -07004138out_register_inetpeer:
4139 unregister_pernet_subsys(&ipv6_inetpeer_ops);
Eric Dumazetfc66f952010-10-08 06:37:34 +00004140out_dst_entries:
4141 dst_entries_destroy(&ip6_dst_blackhole_ops);
Daniel Lezcano433d49c2007-12-07 00:43:48 -08004142out_kmem_cache:
Benjamin Theryf2fc6a52008-03-04 13:49:23 -08004143 kmem_cache_destroy(ip6_dst_ops_template.kmem_cachep);
Daniel Lezcano433d49c2007-12-07 00:43:48 -08004144 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004145}
4146
4147void ip6_route_cleanup(void)
4148{
Daniel Lezcano8ed67782008-03-04 13:48:30 -08004149 unregister_netdevice_notifier(&ip6_route_dev_notifier);
Thomas Grafd1896342012-06-18 12:08:33 +00004150 unregister_pernet_subsys(&ip6_route_net_late_ops);
Thomas Graf101367c2006-08-04 03:39:02 -07004151 fib6_rules_cleanup();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004152 xfrm6_fini();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004153 fib6_gc_cleanup();
David S. Millerc3426b42012-06-09 16:27:05 -07004154 unregister_pernet_subsys(&ipv6_inetpeer_ops);
Daniel Lezcano8ed67782008-03-04 13:48:30 -08004155 unregister_pernet_subsys(&ip6_route_net_ops);
Xiaotian Feng41bb78b2010-11-02 16:11:05 +00004156 dst_entries_destroy(&ip6_dst_blackhole_ops);
Benjamin Theryf2fc6a52008-03-04 13:49:23 -08004157 kmem_cache_destroy(ip6_dst_ops_template.kmem_cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004158}