blob: 99d4727f2b186348cacb4e9a9004e1625671ac5c [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 Dichtel51ebd3182012-10-22 03:42:09 +000061#include <net/nexthop.h>
Roopa Prabhu19e42e42015-07-21 10:43:48 +020062#include <net/lwtunnel.h>
Jiri Benc904af042015-08-20 13:56:31 +020063#include <net/ip_tunnels.h>
David Ahernca254492015-10-12 11:47:10 -070064#include <net/l3mdev.h>
David Ahernb8115802015-11-19 12:24:22 -080065#include <trace/events/fib6.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070066
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080067#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
69#ifdef CONFIG_SYSCTL
70#include <linux/sysctl.h>
71#endif
72
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +020073enum rt6_nud_state {
Jiri Benc7e980562013-12-11 13:48:20 +010074 RT6_NUD_FAIL_HARD = -3,
75 RT6_NUD_FAIL_PROBE = -2,
76 RT6_NUD_FAIL_DO_RR = -1,
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +020077 RT6_NUD_SUCCEED = 1
78};
79
Martin KaFai Lau83a09ab2015-05-22 20:56:05 -070080static void ip6_rt_copy_init(struct rt6_info *rt, struct rt6_info *ort);
Linus Torvalds1da177e2005-04-16 15:20:36 -070081static struct dst_entry *ip6_dst_check(struct dst_entry *dst, u32 cookie);
David S. Miller0dbaee32010-12-13 12:52:14 -080082static unsigned int ip6_default_advmss(const struct dst_entry *dst);
Steffen Klassertebb762f2011-11-23 02:12:51 +000083static unsigned int ip6_mtu(const struct dst_entry *dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -070084static struct dst_entry *ip6_negative_advice(struct dst_entry *);
85static void ip6_dst_destroy(struct dst_entry *);
86static void ip6_dst_ifdown(struct dst_entry *,
87 struct net_device *dev, int how);
Daniel Lezcano569d3642008-01-18 03:56:57 -080088static int ip6_dst_gc(struct dst_ops *ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -070089
90static int ip6_pkt_discard(struct sk_buff *skb);
Eric W. Biedermanede20592015-10-07 16:48:47 -050091static int ip6_pkt_discard_out(struct net *net, struct sock *sk, struct sk_buff *skb);
Kamala R7150aed2013-12-02 19:55:21 +053092static int ip6_pkt_prohibit(struct sk_buff *skb);
Eric W. Biedermanede20592015-10-07 16:48:47 -050093static int ip6_pkt_prohibit_out(struct net *net, struct sock *sk, struct sk_buff *skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -070094static void ip6_link_failure(struct sk_buff *skb);
David S. Miller6700c272012-07-17 03:29:28 -070095static void ip6_rt_update_pmtu(struct dst_entry *dst, struct sock *sk,
96 struct sk_buff *skb, u32 mtu);
97static void rt6_do_redirect(struct dst_entry *dst, struct sock *sk,
98 struct sk_buff *skb);
Martin KaFai Lau4b32b5a2015-04-28 13:03:06 -070099static void rt6_dst_from_metrics_check(struct rt6_info *rt);
Nicolas Dichtel52bd4c02013-06-28 17:35:48 +0200100static int rt6_score_route(struct rt6_info *rt, int oif, int strict);
David Ahern16a16cd2017-02-02 12:37:11 -0800101static size_t rt6_nlmsg_size(struct rt6_info *rt);
102static int rt6_fill_node(struct net *net,
103 struct sk_buff *skb, struct rt6_info *rt,
104 struct in6_addr *dst, struct in6_addr *src,
105 int iif, int type, u32 portid, u32 seq,
106 unsigned int flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800108#ifdef CONFIG_IPV6_ROUTE_INFO
Daniel Lezcanoefa2cea2008-03-04 13:46:48 -0800109static struct rt6_info *rt6_add_route_info(struct net *net,
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000110 const struct in6_addr *prefix, int prefixlen,
David Ahern830218c2016-10-24 10:52:35 -0700111 const struct in6_addr *gwaddr,
112 struct net_device *dev,
Eric Dumazet95c96172012-04-15 05:58:06 +0000113 unsigned int pref);
Daniel Lezcanoefa2cea2008-03-04 13:46:48 -0800114static struct rt6_info *rt6_get_route_info(struct net *net,
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000115 const struct in6_addr *prefix, int prefixlen,
David Ahern830218c2016-10-24 10:52:35 -0700116 const struct in6_addr *gwaddr,
117 struct net_device *dev);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800118#endif
119
Martin KaFai Lau8d0b94a2015-05-22 20:56:04 -0700120struct uncached_list {
121 spinlock_t lock;
122 struct list_head head;
123};
124
125static DEFINE_PER_CPU_ALIGNED(struct uncached_list, rt6_uncached_list);
126
127static void rt6_uncached_list_add(struct rt6_info *rt)
128{
129 struct uncached_list *ul = raw_cpu_ptr(&rt6_uncached_list);
130
Martin KaFai Lau8d0b94a2015-05-22 20:56:04 -0700131 rt->rt6i_uncached_list = ul;
132
133 spin_lock_bh(&ul->lock);
134 list_add_tail(&rt->rt6i_uncached, &ul->head);
135 spin_unlock_bh(&ul->lock);
136}
137
138static void rt6_uncached_list_del(struct rt6_info *rt)
139{
140 if (!list_empty(&rt->rt6i_uncached)) {
141 struct uncached_list *ul = rt->rt6i_uncached_list;
142
143 spin_lock_bh(&ul->lock);
144 list_del(&rt->rt6i_uncached);
145 spin_unlock_bh(&ul->lock);
146 }
147}
148
149static void rt6_uncached_list_flush_dev(struct net *net, struct net_device *dev)
150{
151 struct net_device *loopback_dev = net->loopback_dev;
152 int cpu;
153
Eric W. Biedermane332bc62015-10-12 11:02:08 -0500154 if (dev == loopback_dev)
155 return;
156
Martin KaFai Lau8d0b94a2015-05-22 20:56:04 -0700157 for_each_possible_cpu(cpu) {
158 struct uncached_list *ul = per_cpu_ptr(&rt6_uncached_list, cpu);
159 struct rt6_info *rt;
160
161 spin_lock_bh(&ul->lock);
162 list_for_each_entry(rt, &ul->head, rt6i_uncached) {
163 struct inet6_dev *rt_idev = rt->rt6i_idev;
164 struct net_device *rt_dev = rt->dst.dev;
165
Eric W. Biedermane332bc62015-10-12 11:02:08 -0500166 if (rt_idev->dev == dev) {
Martin KaFai Lau8d0b94a2015-05-22 20:56:04 -0700167 rt->rt6i_idev = in6_dev_get(loopback_dev);
168 in6_dev_put(rt_idev);
169 }
170
Eric W. Biedermane332bc62015-10-12 11:02:08 -0500171 if (rt_dev == dev) {
Martin KaFai Lau8d0b94a2015-05-22 20:56:04 -0700172 rt->dst.dev = loopback_dev;
173 dev_hold(rt->dst.dev);
174 dev_put(rt_dev);
175 }
176 }
177 spin_unlock_bh(&ul->lock);
178 }
179}
180
Martin KaFai Laud52d3992015-05-22 20:56:06 -0700181static u32 *rt6_pcpu_cow_metrics(struct rt6_info *rt)
182{
183 return dst_metrics_write_ptr(rt->dst.from);
184}
185
David S. Miller06582542011-01-27 14:58:42 -0800186static u32 *ipv6_cow_metrics(struct dst_entry *dst, unsigned long old)
187{
Martin KaFai Lau4b32b5a2015-04-28 13:03:06 -0700188 struct rt6_info *rt = (struct rt6_info *)dst;
David S. Miller06582542011-01-27 14:58:42 -0800189
Martin KaFai Laud52d3992015-05-22 20:56:06 -0700190 if (rt->rt6i_flags & RTF_PCPU)
191 return rt6_pcpu_cow_metrics(rt);
192 else if (rt->rt6i_flags & RTF_CACHE)
Martin KaFai Lau4b32b5a2015-04-28 13:03:06 -0700193 return NULL;
194 else
Martin KaFai Lau3b471172015-02-12 16:14:08 -0800195 return dst_cow_metrics_generic(dst, old);
David S. Miller06582542011-01-27 14:58:42 -0800196}
197
David S. Millerf894cbf2012-07-02 21:52:24 -0700198static inline const void *choose_neigh_daddr(struct rt6_info *rt,
199 struct sk_buff *skb,
200 const void *daddr)
David S. Miller39232972012-01-26 15:22:32 -0500201{
202 struct in6_addr *p = &rt->rt6i_gateway;
203
David S. Millera7563f32012-01-26 16:29:16 -0500204 if (!ipv6_addr_any(p))
David S. Miller39232972012-01-26 15:22:32 -0500205 return (const void *) p;
David S. Millerf894cbf2012-07-02 21:52:24 -0700206 else if (skb)
207 return &ipv6_hdr(skb)->daddr;
David S. Miller39232972012-01-26 15:22:32 -0500208 return daddr;
209}
210
David S. Millerf894cbf2012-07-02 21:52:24 -0700211static struct neighbour *ip6_neigh_lookup(const struct dst_entry *dst,
212 struct sk_buff *skb,
213 const void *daddr)
David S. Millerd3aaeb32011-07-18 00:40:17 -0700214{
David S. Miller39232972012-01-26 15:22:32 -0500215 struct rt6_info *rt = (struct rt6_info *) dst;
216 struct neighbour *n;
217
David S. Millerf894cbf2012-07-02 21:52:24 -0700218 daddr = choose_neigh_daddr(rt, skb, daddr);
YOSHIFUJI Hideaki / 吉藤英明8e022ee2013-01-17 12:53:09 +0000219 n = __ipv6_neigh_lookup(dst->dev, daddr);
David S. Millerf83c7792011-12-28 15:41:23 -0500220 if (n)
221 return n;
222 return neigh_create(&nd_tbl, daddr, dst->dev);
223}
224
Julian Anastasov63fca652017-02-06 23:14:15 +0200225static void ip6_confirm_neigh(const struct dst_entry *dst, const void *daddr)
226{
227 struct net_device *dev = dst->dev;
228 struct rt6_info *rt = (struct rt6_info *)dst;
229
230 daddr = choose_neigh_daddr(rt, NULL, daddr);
231 if (!daddr)
232 return;
233 if (dev->flags & (IFF_NOARP | IFF_LOOPBACK))
234 return;
235 if (ipv6_addr_is_multicast((const struct in6_addr *)daddr))
236 return;
237 __ipv6_confirm_neigh(dev, daddr);
238}
239
Daniel Lezcano9a7ec3a2008-03-04 13:48:53 -0800240static struct dst_ops ip6_dst_ops_template = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 .family = AF_INET6,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 .gc = ip6_dst_gc,
243 .gc_thresh = 1024,
244 .check = ip6_dst_check,
David S. Miller0dbaee32010-12-13 12:52:14 -0800245 .default_advmss = ip6_default_advmss,
Steffen Klassertebb762f2011-11-23 02:12:51 +0000246 .mtu = ip6_mtu,
David S. Miller06582542011-01-27 14:58:42 -0800247 .cow_metrics = ipv6_cow_metrics,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 .destroy = ip6_dst_destroy,
249 .ifdown = ip6_dst_ifdown,
250 .negative_advice = ip6_negative_advice,
251 .link_failure = ip6_link_failure,
252 .update_pmtu = ip6_rt_update_pmtu,
David S. Miller6e157b62012-07-12 00:05:02 -0700253 .redirect = rt6_do_redirect,
Eric W. Biederman9f8955c2015-10-07 16:48:39 -0500254 .local_out = __ip6_local_out,
David S. Millerd3aaeb32011-07-18 00:40:17 -0700255 .neigh_lookup = ip6_neigh_lookup,
Julian Anastasov63fca652017-02-06 23:14:15 +0200256 .confirm_neigh = ip6_confirm_neigh,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257};
258
Steffen Klassertebb762f2011-11-23 02:12:51 +0000259static unsigned int ip6_blackhole_mtu(const struct dst_entry *dst)
Roland Dreierec831ea2011-01-31 13:16:00 -0800260{
Steffen Klassert618f9bc2011-11-23 02:13:31 +0000261 unsigned int mtu = dst_metric_raw(dst, RTAX_MTU);
262
263 return mtu ? : dst->dev->mtu;
Roland Dreierec831ea2011-01-31 13:16:00 -0800264}
265
David S. Miller6700c272012-07-17 03:29:28 -0700266static void ip6_rt_blackhole_update_pmtu(struct dst_entry *dst, struct sock *sk,
267 struct sk_buff *skb, u32 mtu)
David S. Miller14e50e52007-05-24 18:17:54 -0700268{
269}
270
David S. Miller6700c272012-07-17 03:29:28 -0700271static void ip6_rt_blackhole_redirect(struct dst_entry *dst, struct sock *sk,
272 struct sk_buff *skb)
David S. Millerb587ee32012-07-12 00:39:24 -0700273{
274}
275
David S. Miller14e50e52007-05-24 18:17:54 -0700276static struct dst_ops ip6_dst_blackhole_ops = {
277 .family = AF_INET6,
David S. Miller14e50e52007-05-24 18:17:54 -0700278 .destroy = ip6_dst_destroy,
279 .check = ip6_dst_check,
Steffen Klassertebb762f2011-11-23 02:12:51 +0000280 .mtu = ip6_blackhole_mtu,
Eric Dumazet214f45c2011-02-18 11:39:01 -0800281 .default_advmss = ip6_default_advmss,
David S. Miller14e50e52007-05-24 18:17:54 -0700282 .update_pmtu = ip6_rt_blackhole_update_pmtu,
David S. Millerb587ee32012-07-12 00:39:24 -0700283 .redirect = ip6_rt_blackhole_redirect,
Martin KaFai Lau0a1f5962015-10-15 16:39:58 -0700284 .cow_metrics = dst_cow_metrics_generic,
David S. Millerd3aaeb32011-07-18 00:40:17 -0700285 .neigh_lookup = ip6_neigh_lookup,
David S. Miller14e50e52007-05-24 18:17:54 -0700286};
287
David S. Miller62fa8a82011-01-26 20:51:05 -0800288static const u32 ip6_template_metrics[RTAX_MAX] = {
Li RongQing14edd872012-10-24 14:01:18 +0800289 [RTAX_HOPLIMIT - 1] = 0,
David S. Miller62fa8a82011-01-26 20:51:05 -0800290};
291
Eric Dumazetfb0af4c2012-09-11 21:47:51 +0000292static const struct rt6_info ip6_null_entry_template = {
Changli Gaod8d1f302010-06-10 23:31:35 -0700293 .dst = {
294 .__refcnt = ATOMIC_INIT(1),
295 .__use = 1,
Nicolas Dichtel2c20cbd2012-09-10 22:09:47 +0000296 .obsolete = DST_OBSOLETE_FORCE_CHK,
Changli Gaod8d1f302010-06-10 23:31:35 -0700297 .error = -ENETUNREACH,
Changli Gaod8d1f302010-06-10 23:31:35 -0700298 .input = ip6_pkt_discard,
299 .output = ip6_pkt_discard_out,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 },
301 .rt6i_flags = (RTF_REJECT | RTF_NONEXTHOP),
Jean-Mickael Guerin4f724272009-05-20 17:38:59 -0700302 .rt6i_protocol = RTPROT_KERNEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 .rt6i_metric = ~(u32) 0,
304 .rt6i_ref = ATOMIC_INIT(1),
305};
306
Thomas Graf101367c2006-08-04 03:39:02 -0700307#ifdef CONFIG_IPV6_MULTIPLE_TABLES
308
Eric Dumazetfb0af4c2012-09-11 21:47:51 +0000309static const struct rt6_info ip6_prohibit_entry_template = {
Changli Gaod8d1f302010-06-10 23:31:35 -0700310 .dst = {
311 .__refcnt = ATOMIC_INIT(1),
312 .__use = 1,
Nicolas Dichtel2c20cbd2012-09-10 22:09:47 +0000313 .obsolete = DST_OBSOLETE_FORCE_CHK,
Changli Gaod8d1f302010-06-10 23:31:35 -0700314 .error = -EACCES,
Changli Gaod8d1f302010-06-10 23:31:35 -0700315 .input = ip6_pkt_prohibit,
316 .output = ip6_pkt_prohibit_out,
Thomas Graf101367c2006-08-04 03:39:02 -0700317 },
318 .rt6i_flags = (RTF_REJECT | RTF_NONEXTHOP),
Jean-Mickael Guerin4f724272009-05-20 17:38:59 -0700319 .rt6i_protocol = RTPROT_KERNEL,
Thomas Graf101367c2006-08-04 03:39:02 -0700320 .rt6i_metric = ~(u32) 0,
321 .rt6i_ref = ATOMIC_INIT(1),
322};
323
Eric Dumazetfb0af4c2012-09-11 21:47:51 +0000324static const struct rt6_info ip6_blk_hole_entry_template = {
Changli Gaod8d1f302010-06-10 23:31:35 -0700325 .dst = {
326 .__refcnt = ATOMIC_INIT(1),
327 .__use = 1,
Nicolas Dichtel2c20cbd2012-09-10 22:09:47 +0000328 .obsolete = DST_OBSOLETE_FORCE_CHK,
Changli Gaod8d1f302010-06-10 23:31:35 -0700329 .error = -EINVAL,
Changli Gaod8d1f302010-06-10 23:31:35 -0700330 .input = dst_discard,
Eric W. Biedermanede20592015-10-07 16:48:47 -0500331 .output = dst_discard_out,
Thomas Graf101367c2006-08-04 03:39:02 -0700332 },
333 .rt6i_flags = (RTF_REJECT | RTF_NONEXTHOP),
Jean-Mickael Guerin4f724272009-05-20 17:38:59 -0700334 .rt6i_protocol = RTPROT_KERNEL,
Thomas Graf101367c2006-08-04 03:39:02 -0700335 .rt6i_metric = ~(u32) 0,
336 .rt6i_ref = ATOMIC_INIT(1),
337};
338
339#endif
340
Martin KaFai Lauebfa45f2015-10-15 16:39:57 -0700341static void rt6_info_init(struct rt6_info *rt)
342{
343 struct dst_entry *dst = &rt->dst;
344
345 memset(dst + 1, 0, sizeof(*rt) - sizeof(*dst));
346 INIT_LIST_HEAD(&rt->rt6i_siblings);
347 INIT_LIST_HEAD(&rt->rt6i_uncached);
348}
349
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350/* allocate dst with ip6_dst_ops */
Martin KaFai Laud52d3992015-05-22 20:56:06 -0700351static struct rt6_info *__ip6_dst_alloc(struct net *net,
352 struct net_device *dev,
Martin KaFai Lauad706862015-08-14 11:05:52 -0700353 int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354{
David S. Miller97bab732012-06-09 22:36:36 -0700355 struct rt6_info *rt = dst_alloc(&net->ipv6.ip6_dst_ops, dev,
Wei Wangb2a9c0e2017-06-17 10:42:41 -0700356 1, DST_OBSOLETE_FORCE_CHK, flags);
David S. Millercf911662011-04-28 14:31:47 -0700357
Martin KaFai Lauebfa45f2015-10-15 16:39:57 -0700358 if (rt)
359 rt6_info_init(rt);
Steffen Klassert81048912012-07-05 23:37:09 +0000360
David S. Millercf911662011-04-28 14:31:47 -0700361 return rt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362}
363
David Ahern9ab179d2016-04-07 11:10:06 -0700364struct rt6_info *ip6_dst_alloc(struct net *net,
365 struct net_device *dev,
366 int flags)
Martin KaFai Laud52d3992015-05-22 20:56:06 -0700367{
Martin KaFai Lauad706862015-08-14 11:05:52 -0700368 struct rt6_info *rt = __ip6_dst_alloc(net, dev, flags);
Martin KaFai Laud52d3992015-05-22 20:56:06 -0700369
370 if (rt) {
371 rt->rt6i_pcpu = alloc_percpu_gfp(struct rt6_info *, GFP_ATOMIC);
372 if (rt->rt6i_pcpu) {
373 int cpu;
374
375 for_each_possible_cpu(cpu) {
376 struct rt6_info **p;
377
378 p = per_cpu_ptr(rt->rt6i_pcpu, cpu);
379 /* no one shares rt */
380 *p = NULL;
381 }
382 } else {
Wei Wang587fea72017-06-17 10:42:36 -0700383 dst_release_immediate(&rt->dst);
Martin KaFai Laud52d3992015-05-22 20:56:06 -0700384 return NULL;
385 }
386 }
387
388 return rt;
389}
David Ahern9ab179d2016-04-07 11:10:06 -0700390EXPORT_SYMBOL(ip6_dst_alloc);
Martin KaFai Laud52d3992015-05-22 20:56:06 -0700391
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392static void ip6_dst_destroy(struct dst_entry *dst)
393{
394 struct rt6_info *rt = (struct rt6_info *)dst;
YOSHIFUJI Hideaki / 吉藤英明ecd98832013-02-20 00:29:08 +0000395 struct dst_entry *from = dst->from;
Martin KaFai Lau8d0b94a2015-05-22 20:56:04 -0700396 struct inet6_dev *idev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397
Martin KaFai Lau4b32b5a2015-04-28 13:03:06 -0700398 dst_destroy_metrics_generic(dst);
Markus Elfring87775312015-07-02 16:30:24 +0200399 free_percpu(rt->rt6i_pcpu);
Martin KaFai Lau8d0b94a2015-05-22 20:56:04 -0700400 rt6_uncached_list_del(rt);
401
402 idev = rt->rt6i_idev;
David S. Miller38308472011-12-03 18:02:47 -0500403 if (idev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 rt->rt6i_idev = NULL;
405 in6_dev_put(idev);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900406 }
Gao feng1716a962012-04-06 00:13:10 +0000407
YOSHIFUJI Hideaki / 吉藤英明ecd98832013-02-20 00:29:08 +0000408 dst->from = NULL;
409 dst_release(from);
David S. Millerb3419362010-11-30 12:27:11 -0800410}
411
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412static void ip6_dst_ifdown(struct dst_entry *dst, struct net_device *dev,
413 int how)
414{
415 struct rt6_info *rt = (struct rt6_info *)dst;
416 struct inet6_dev *idev = rt->rt6i_idev;
Denis V. Lunev5a3e55d2007-12-07 00:38:10 -0800417 struct net_device *loopback_dev =
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900418 dev_net(dev)->loopback_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419
Wei Wange5645f52017-08-14 10:44:59 -0700420 if (idev && idev->dev != loopback_dev) {
421 struct inet6_dev *loopback_idev = in6_dev_get(loopback_dev);
422 if (loopback_idev) {
423 rt->rt6i_idev = loopback_idev;
424 in6_dev_put(idev);
David S. Miller97cac082012-07-02 22:43:47 -0700425 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 }
427}
428
Martin KaFai Lau5973fb12015-11-11 11:51:07 -0800429static bool __rt6_check_expired(const struct rt6_info *rt)
430{
431 if (rt->rt6i_flags & RTF_EXPIRES)
432 return time_after(jiffies, rt->dst.expires);
433 else
434 return false;
435}
436
Eric Dumazeta50feda2012-05-18 18:57:34 +0000437static bool rt6_check_expired(const struct rt6_info *rt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438{
Gao feng1716a962012-04-06 00:13:10 +0000439 if (rt->rt6i_flags & RTF_EXPIRES) {
440 if (time_after(jiffies, rt->dst.expires))
Eric Dumazeta50feda2012-05-18 18:57:34 +0000441 return true;
Gao feng1716a962012-04-06 00:13:10 +0000442 } else if (rt->dst.from) {
Li RongQing3fd91fb2012-09-13 19:54:57 +0000443 return rt6_check_expired((struct rt6_info *) rt->dst.from);
Gao feng1716a962012-04-06 00:13:10 +0000444 }
Eric Dumazeta50feda2012-05-18 18:57:34 +0000445 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446}
447
Nicolas Dichtel51ebd3182012-10-22 03:42:09 +0000448/* Multipath route selection:
449 * Hash based function using packet header and flowlabel.
450 * Adapted from fib_info_hashfn()
451 */
452static int rt6_info_hash_nhsfn(unsigned int candidate_count,
453 const struct flowi6 *fl6)
454{
Tom Herbert644d0e62015-09-23 14:13:35 -0700455 return get_hash_from_flowi6(fl6) % candidate_count;
Nicolas Dichtel51ebd3182012-10-22 03:42:09 +0000456}
457
458static struct rt6_info *rt6_multipath_select(struct rt6_info *match,
Nicolas Dichtel52bd4c02013-06-28 17:35:48 +0200459 struct flowi6 *fl6, int oif,
460 int strict)
Nicolas Dichtel51ebd3182012-10-22 03:42:09 +0000461{
462 struct rt6_info *sibling, *next_sibling;
463 int route_choosen;
464
465 route_choosen = rt6_info_hash_nhsfn(match->rt6i_nsiblings + 1, fl6);
466 /* Don't change the route, if route_choosen == 0
467 * (siblings does not include ourself)
468 */
469 if (route_choosen)
470 list_for_each_entry_safe(sibling, next_sibling,
471 &match->rt6i_siblings, rt6i_siblings) {
472 route_choosen--;
473 if (route_choosen == 0) {
Nicolas Dichtel52bd4c02013-06-28 17:35:48 +0200474 if (rt6_score_route(sibling, oif, strict) < 0)
475 break;
Nicolas Dichtel51ebd3182012-10-22 03:42:09 +0000476 match = sibling;
477 break;
478 }
479 }
480 return match;
481}
482
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483/*
Thomas Grafc71099a2006-08-04 23:20:06 -0700484 * Route lookup. Any table->tb6_lock is implied.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 */
486
Daniel Lezcano8ed67782008-03-04 13:48:30 -0800487static inline struct rt6_info *rt6_device_match(struct net *net,
488 struct rt6_info *rt,
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000489 const struct in6_addr *saddr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 int oif,
YOSHIFUJI Hideakid4208952008-06-27 20:14:54 -0700491 int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492{
493 struct rt6_info *local = NULL;
494 struct rt6_info *sprt;
495
YOSHIFUJI Hideakidd3abc42008-07-02 18:30:18 +0900496 if (!oif && ipv6_addr_any(saddr))
497 goto out;
498
Changli Gaod8d1f302010-06-10 23:31:35 -0700499 for (sprt = rt; sprt; sprt = sprt->dst.rt6_next) {
David S. Millerd1918542011-12-28 20:19:20 -0500500 struct net_device *dev = sprt->dst.dev;
YOSHIFUJI Hideakidd3abc42008-07-02 18:30:18 +0900501
502 if (oif) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 if (dev->ifindex == oif)
504 return sprt;
505 if (dev->flags & IFF_LOOPBACK) {
David S. Miller38308472011-12-03 18:02:47 -0500506 if (!sprt->rt6i_idev ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 sprt->rt6i_idev->dev->ifindex != oif) {
David Ahern17fb0b22015-09-25 15:22:54 -0600508 if (flags & RT6_LOOKUP_F_IFACE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 continue;
David Ahern17fb0b22015-09-25 15:22:54 -0600510 if (local &&
511 local->rt6i_idev->dev->ifindex == oif)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 continue;
513 }
514 local = sprt;
515 }
YOSHIFUJI Hideakidd3abc42008-07-02 18:30:18 +0900516 } else {
517 if (ipv6_chk_addr(net, saddr, dev,
518 flags & RT6_LOOKUP_F_IFACE))
519 return sprt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 }
YOSHIFUJI Hideakidd3abc42008-07-02 18:30:18 +0900521 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522
YOSHIFUJI Hideakidd3abc42008-07-02 18:30:18 +0900523 if (oif) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 if (local)
525 return local;
526
YOSHIFUJI Hideakid4208952008-06-27 20:14:54 -0700527 if (flags & RT6_LOOKUP_F_IFACE)
Daniel Lezcano8ed67782008-03-04 13:48:30 -0800528 return net->ipv6.ip6_null_entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 }
YOSHIFUJI Hideakidd3abc42008-07-02 18:30:18 +0900530out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 return rt;
532}
533
YOSHIFUJI Hideaki27097252006-03-20 17:05:13 -0800534#ifdef CONFIG_IPV6_ROUTER_PREF
Hannes Frederic Sowac2f17e82013-10-21 06:17:15 +0200535struct __rt6_probe_work {
536 struct work_struct work;
537 struct in6_addr target;
538 struct net_device *dev;
539};
540
541static void rt6_probe_deferred(struct work_struct *w)
542{
543 struct in6_addr mcaddr;
544 struct __rt6_probe_work *work =
545 container_of(w, struct __rt6_probe_work, work);
546
547 addrconf_addr_solict_mult(&work->target, &mcaddr);
Erik Nordmarkadc176c2016-12-02 14:00:08 -0800548 ndisc_send_ns(work->dev, &work->target, &mcaddr, NULL, 0);
Hannes Frederic Sowac2f17e82013-10-21 06:17:15 +0200549 dev_put(work->dev);
Michael Büsch662f5532015-02-08 10:14:07 +0100550 kfree(work);
Hannes Frederic Sowac2f17e82013-10-21 06:17:15 +0200551}
552
YOSHIFUJI Hideaki27097252006-03-20 17:05:13 -0800553static void rt6_probe(struct rt6_info *rt)
554{
Martin KaFai Lau990edb42015-07-24 09:57:42 -0700555 struct __rt6_probe_work *work;
Eric Dumazetf2c31e32011-07-29 19:00:53 +0000556 struct neighbour *neigh;
YOSHIFUJI Hideaki27097252006-03-20 17:05:13 -0800557 /*
558 * Okay, this does not seem to be appropriate
559 * for now, however, we need to check if it
560 * is really so; aka Router Reachability Probing.
561 *
562 * Router Reachability Probe MUST be rate-limited
563 * to no more than one per minute.
564 */
YOSHIFUJI Hideaki / 吉藤英明2152cae2013-01-17 12:53:43 +0000565 if (!rt || !(rt->rt6i_flags & RTF_GATEWAY))
Amerigo Wangfdd66812012-09-10 02:48:44 +0000566 return;
YOSHIFUJI Hideaki / 吉藤英明2152cae2013-01-17 12:53:43 +0000567 rcu_read_lock_bh();
568 neigh = __ipv6_neigh_lookup_noref(rt->dst.dev, &rt->rt6i_gateway);
569 if (neigh) {
Martin KaFai Lau8d6c31b2015-07-24 09:57:43 -0700570 if (neigh->nud_state & NUD_VALID)
571 goto out;
572
Martin KaFai Lau990edb42015-07-24 09:57:42 -0700573 work = NULL;
YOSHIFUJI Hideaki / 吉藤英明2152cae2013-01-17 12:53:43 +0000574 write_lock(&neigh->lock);
Martin KaFai Lau990edb42015-07-24 09:57:42 -0700575 if (!(neigh->nud_state & NUD_VALID) &&
576 time_after(jiffies,
577 neigh->updated +
578 rt->rt6i_idev->cnf.rtr_probe_interval)) {
579 work = kmalloc(sizeof(*work), GFP_ATOMIC);
580 if (work)
581 __neigh_set_probe_once(neigh);
Hannes Frederic Sowac2f17e82013-10-21 06:17:15 +0200582 }
YOSHIFUJI Hideaki / 吉藤英明2152cae2013-01-17 12:53:43 +0000583 write_unlock(&neigh->lock);
Martin KaFai Lau990edb42015-07-24 09:57:42 -0700584 } else {
585 work = kmalloc(sizeof(*work), GFP_ATOMIC);
Eric Dumazetf2c31e32011-07-29 19:00:53 +0000586 }
Martin KaFai Lau990edb42015-07-24 09:57:42 -0700587
588 if (work) {
589 INIT_WORK(&work->work, rt6_probe_deferred);
590 work->target = rt->rt6i_gateway;
591 dev_hold(rt->dst.dev);
592 work->dev = rt->dst.dev;
593 schedule_work(&work->work);
594 }
595
Martin KaFai Lau8d6c31b2015-07-24 09:57:43 -0700596out:
YOSHIFUJI Hideaki / 吉藤英明2152cae2013-01-17 12:53:43 +0000597 rcu_read_unlock_bh();
YOSHIFUJI Hideaki27097252006-03-20 17:05:13 -0800598}
599#else
600static inline void rt6_probe(struct rt6_info *rt)
601{
YOSHIFUJI Hideaki27097252006-03-20 17:05:13 -0800602}
603#endif
604
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605/*
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800606 * Default Router Selection (RFC 2461 6.3.6)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 */
Dave Jonesb6f99a22007-03-22 12:27:49 -0700608static inline int rt6_check_dev(struct rt6_info *rt, int oif)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609{
David S. Millerd1918542011-12-28 20:19:20 -0500610 struct net_device *dev = rt->dst.dev;
David S. Miller161980f2007-04-06 11:42:27 -0700611 if (!oif || dev->ifindex == oif)
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800612 return 2;
David S. Miller161980f2007-04-06 11:42:27 -0700613 if ((dev->flags & IFF_LOOPBACK) &&
614 rt->rt6i_idev && rt->rt6i_idev->dev->ifindex == oif)
615 return 1;
616 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617}
618
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200619static inline enum rt6_nud_state rt6_check_neigh(struct rt6_info *rt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620{
Eric Dumazetf2c31e32011-07-29 19:00:53 +0000621 struct neighbour *neigh;
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200622 enum rt6_nud_state ret = RT6_NUD_FAIL_HARD;
Eric Dumazetf2c31e32011-07-29 19:00:53 +0000623
YOSHIFUJI Hideaki4d0c5912006-05-26 13:23:41 -0700624 if (rt->rt6i_flags & RTF_NONEXTHOP ||
625 !(rt->rt6i_flags & RTF_GATEWAY))
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200626 return RT6_NUD_SUCCEED;
YOSHIFUJI Hideaki / 吉藤英明145a3622013-01-17 12:53:38 +0000627
628 rcu_read_lock_bh();
629 neigh = __ipv6_neigh_lookup_noref(rt->dst.dev, &rt->rt6i_gateway);
630 if (neigh) {
631 read_lock(&neigh->lock);
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800632 if (neigh->nud_state & NUD_VALID)
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200633 ret = RT6_NUD_SUCCEED;
YOSHIFUJI Hideaki398bcbe2008-01-19 00:35:16 -0800634#ifdef CONFIG_IPV6_ROUTER_PREF
Paul Marksa5a81f02012-12-03 10:26:54 +0000635 else if (!(neigh->nud_state & NUD_FAILED))
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200636 ret = RT6_NUD_SUCCEED;
Jiri Benc7e980562013-12-11 13:48:20 +0100637 else
638 ret = RT6_NUD_FAIL_PROBE;
YOSHIFUJI Hideaki398bcbe2008-01-19 00:35:16 -0800639#endif
YOSHIFUJI Hideaki / 吉藤英明145a3622013-01-17 12:53:38 +0000640 read_unlock(&neigh->lock);
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200641 } else {
642 ret = IS_ENABLED(CONFIG_IPV6_ROUTER_PREF) ?
Jiri Benc7e980562013-12-11 13:48:20 +0100643 RT6_NUD_SUCCEED : RT6_NUD_FAIL_DO_RR;
Paul Marksa5a81f02012-12-03 10:26:54 +0000644 }
YOSHIFUJI Hideaki / 吉藤英明145a3622013-01-17 12:53:38 +0000645 rcu_read_unlock_bh();
646
Paul Marksa5a81f02012-12-03 10:26:54 +0000647 return ret;
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800648}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800650static int rt6_score_route(struct rt6_info *rt, int oif,
651 int strict)
652{
Paul Marksa5a81f02012-12-03 10:26:54 +0000653 int m;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900654
YOSHIFUJI Hideaki4d0c5912006-05-26 13:23:41 -0700655 m = rt6_check_dev(rt, oif);
YOSHIFUJI Hideaki77d16f42006-08-23 17:25:05 -0700656 if (!m && (strict & RT6_LOOKUP_F_IFACE))
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200657 return RT6_NUD_FAIL_HARD;
YOSHIFUJI Hideakiebacaaa2006-03-20 17:04:53 -0800658#ifdef CONFIG_IPV6_ROUTER_PREF
659 m |= IPV6_DECODE_PREF(IPV6_EXTRACT_PREF(rt->rt6i_flags)) << 2;
660#endif
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200661 if (strict & RT6_LOOKUP_F_REACHABLE) {
662 int n = rt6_check_neigh(rt);
663 if (n < 0)
664 return n;
665 }
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800666 return m;
667}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668
David S. Millerf11e6652007-03-24 20:36:25 -0700669static struct rt6_info *find_match(struct rt6_info *rt, int oif, int strict,
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200670 int *mpri, struct rt6_info *match,
671 bool *do_rr)
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800672{
David S. Millerf11e6652007-03-24 20:36:25 -0700673 int m;
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200674 bool match_do_rr = false;
Andy Gospodarek35103d12015-08-13 10:39:01 -0400675 struct inet6_dev *idev = rt->rt6i_idev;
676 struct net_device *dev = rt->dst.dev;
677
678 if (dev && !netif_carrier_ok(dev) &&
David Ahernd5d32e42016-10-24 12:27:23 -0700679 idev->cnf.ignore_routes_with_linkdown &&
680 !(strict & RT6_LOOKUP_F_IGNORE_LINKSTATE))
Andy Gospodarek35103d12015-08-13 10:39:01 -0400681 goto out;
David S. Millerf11e6652007-03-24 20:36:25 -0700682
683 if (rt6_check_expired(rt))
684 goto out;
685
686 m = rt6_score_route(rt, oif, strict);
Jiri Benc7e980562013-12-11 13:48:20 +0100687 if (m == RT6_NUD_FAIL_DO_RR) {
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200688 match_do_rr = true;
689 m = 0; /* lowest valid score */
Jiri Benc7e980562013-12-11 13:48:20 +0100690 } else if (m == RT6_NUD_FAIL_HARD) {
David S. Millerf11e6652007-03-24 20:36:25 -0700691 goto out;
David S. Millerf11e6652007-03-24 20:36:25 -0700692 }
693
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200694 if (strict & RT6_LOOKUP_F_REACHABLE)
695 rt6_probe(rt);
696
Jiri Benc7e980562013-12-11 13:48:20 +0100697 /* note that m can be RT6_NUD_FAIL_PROBE at this point */
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200698 if (m > *mpri) {
699 *do_rr = match_do_rr;
700 *mpri = m;
701 match = rt;
702 }
David S. Millerf11e6652007-03-24 20:36:25 -0700703out:
704 return match;
705}
706
707static struct rt6_info *find_rr_leaf(struct fib6_node *fn,
708 struct rt6_info *rr_head,
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200709 u32 metric, int oif, int strict,
710 bool *do_rr)
David S. Millerf11e6652007-03-24 20:36:25 -0700711{
Steffen Klassert9fbdcfa2015-04-28 13:03:04 -0700712 struct rt6_info *rt, *match, *cont;
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800713 int mpri = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714
David S. Millerf11e6652007-03-24 20:36:25 -0700715 match = NULL;
Steffen Klassert9fbdcfa2015-04-28 13:03:04 -0700716 cont = NULL;
717 for (rt = rr_head; rt; rt = rt->dst.rt6_next) {
718 if (rt->rt6i_metric != metric) {
719 cont = rt;
720 break;
721 }
722
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200723 match = find_match(rt, oif, strict, &mpri, match, do_rr);
Steffen Klassert9fbdcfa2015-04-28 13:03:04 -0700724 }
725
726 for (rt = fn->leaf; rt && rt != rr_head; rt = rt->dst.rt6_next) {
727 if (rt->rt6i_metric != metric) {
728 cont = rt;
729 break;
730 }
731
732 match = find_match(rt, oif, strict, &mpri, match, do_rr);
733 }
734
735 if (match || !cont)
736 return match;
737
738 for (rt = cont; rt; rt = rt->dst.rt6_next)
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200739 match = find_match(rt, oif, strict, &mpri, match, do_rr);
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800740
David S. Millerf11e6652007-03-24 20:36:25 -0700741 return match;
742}
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800743
David S. Millerf11e6652007-03-24 20:36:25 -0700744static struct rt6_info *rt6_select(struct fib6_node *fn, int oif, int strict)
745{
746 struct rt6_info *match, *rt0;
Daniel Lezcano8ed67782008-03-04 13:48:30 -0800747 struct net *net;
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200748 bool do_rr = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749
David S. Millerf11e6652007-03-24 20:36:25 -0700750 rt0 = fn->rr_ptr;
751 if (!rt0)
752 fn->rr_ptr = rt0 = fn->leaf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200754 match = find_rr_leaf(fn, rt0, rt0->rt6i_metric, oif, strict,
755 &do_rr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200757 if (do_rr) {
Changli Gaod8d1f302010-06-10 23:31:35 -0700758 struct rt6_info *next = rt0->dst.rt6_next;
David S. Millerf11e6652007-03-24 20:36:25 -0700759
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800760 /* no entries matched; do round-robin */
David S. Millerf11e6652007-03-24 20:36:25 -0700761 if (!next || next->rt6i_metric != rt0->rt6i_metric)
762 next = fn->leaf;
763
764 if (next != rt0)
765 fn->rr_ptr = next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 }
767
David S. Millerd1918542011-12-28 20:19:20 -0500768 net = dev_net(rt0->dst.dev);
Eric Dumazeta02cec22010-09-22 20:43:57 +0000769 return match ? match : net->ipv6.ip6_null_entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770}
771
Martin KaFai Lau8b9df262015-05-22 20:55:59 -0700772static bool rt6_is_gw_or_nonexthop(const struct rt6_info *rt)
773{
774 return (rt->rt6i_flags & (RTF_NONEXTHOP | RTF_GATEWAY));
775}
776
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800777#ifdef CONFIG_IPV6_ROUTE_INFO
778int rt6_route_rcv(struct net_device *dev, u8 *opt, int len,
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000779 const struct in6_addr *gwaddr)
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800780{
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900781 struct net *net = dev_net(dev);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800782 struct route_info *rinfo = (struct route_info *) opt;
783 struct in6_addr prefix_buf, *prefix;
784 unsigned int pref;
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +0900785 unsigned long lifetime;
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800786 struct rt6_info *rt;
787
788 if (len < sizeof(struct route_info)) {
789 return -EINVAL;
790 }
791
792 /* Sanity check for prefix_len and length */
793 if (rinfo->length > 3) {
794 return -EINVAL;
795 } else if (rinfo->prefix_len > 128) {
796 return -EINVAL;
797 } else if (rinfo->prefix_len > 64) {
798 if (rinfo->length < 2) {
799 return -EINVAL;
800 }
801 } else if (rinfo->prefix_len > 0) {
802 if (rinfo->length < 1) {
803 return -EINVAL;
804 }
805 }
806
807 pref = rinfo->route_pref;
808 if (pref == ICMPV6_ROUTER_PREF_INVALID)
Jens Rosenboom3933fc92009-09-10 06:25:11 +0000809 return -EINVAL;
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800810
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +0900811 lifetime = addrconf_timeout_fixup(ntohl(rinfo->lifetime), HZ);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800812
813 if (rinfo->length == 3)
814 prefix = (struct in6_addr *)rinfo->prefix;
815 else {
816 /* this function is safe */
817 ipv6_addr_prefix(&prefix_buf,
818 (struct in6_addr *)rinfo->prefix,
819 rinfo->prefix_len);
820 prefix = &prefix_buf;
821 }
822
Duan Jiongf104a562013-11-08 09:56:53 +0800823 if (rinfo->prefix_len == 0)
824 rt = rt6_get_dflt_router(gwaddr, dev);
825 else
826 rt = rt6_get_route_info(net, prefix, rinfo->prefix_len,
David Ahern830218c2016-10-24 10:52:35 -0700827 gwaddr, dev);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800828
829 if (rt && !lifetime) {
Thomas Grafe0a1ad732006-08-22 00:00:21 -0700830 ip6_del_rt(rt);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800831 rt = NULL;
832 }
833
834 if (!rt && lifetime)
David Ahern830218c2016-10-24 10:52:35 -0700835 rt = rt6_add_route_info(net, prefix, rinfo->prefix_len, gwaddr,
836 dev, pref);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800837 else if (rt)
838 rt->rt6i_flags = RTF_ROUTEINFO |
839 (rt->rt6i_flags & ~RTF_PREF_MASK) | RTF_PREF(pref);
840
841 if (rt) {
Gao feng1716a962012-04-06 00:13:10 +0000842 if (!addrconf_finite_timeout(lifetime))
843 rt6_clean_expires(rt);
844 else
845 rt6_set_expires(rt, jiffies + HZ * lifetime);
846
Amerigo Wang94e187c2012-10-29 00:13:19 +0000847 ip6_rt_put(rt);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800848 }
849 return 0;
850}
851#endif
852
Martin KaFai Laua3c00e42014-10-20 13:42:43 -0700853static struct fib6_node* fib6_backtrack(struct fib6_node *fn,
854 struct in6_addr *saddr)
855{
856 struct fib6_node *pn;
857 while (1) {
858 if (fn->fn_flags & RTN_TL_ROOT)
859 return NULL;
860 pn = fn->parent;
861 if (FIB6_SUBTREE(pn) && FIB6_SUBTREE(pn) != fn)
862 fn = fib6_lookup(FIB6_SUBTREE(pn), NULL, saddr);
863 else
864 fn = pn;
865 if (fn->fn_flags & RTN_RTINFO)
866 return fn;
867 }
868}
Thomas Grafc71099a2006-08-04 23:20:06 -0700869
Daniel Lezcano8ed67782008-03-04 13:48:30 -0800870static struct rt6_info *ip6_pol_route_lookup(struct net *net,
871 struct fib6_table *table,
David S. Miller4c9483b2011-03-12 16:22:43 -0500872 struct flowi6 *fl6, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873{
874 struct fib6_node *fn;
875 struct rt6_info *rt;
876
Thomas Grafc71099a2006-08-04 23:20:06 -0700877 read_lock_bh(&table->tb6_lock);
David S. Miller4c9483b2011-03-12 16:22:43 -0500878 fn = fib6_lookup(&table->tb6_root, &fl6->daddr, &fl6->saddr);
Thomas Grafc71099a2006-08-04 23:20:06 -0700879restart:
880 rt = fn->leaf;
David S. Miller4c9483b2011-03-12 16:22:43 -0500881 rt = rt6_device_match(net, rt, &fl6->saddr, fl6->flowi6_oif, flags);
Nicolas Dichtel51ebd3182012-10-22 03:42:09 +0000882 if (rt->rt6i_nsiblings && fl6->flowi6_oif == 0)
Nicolas Dichtel52bd4c02013-06-28 17:35:48 +0200883 rt = rt6_multipath_select(rt, fl6, fl6->flowi6_oif, flags);
Martin KaFai Laua3c00e42014-10-20 13:42:43 -0700884 if (rt == net->ipv6.ip6_null_entry) {
885 fn = fib6_backtrack(fn, &fl6->saddr);
886 if (fn)
887 goto restart;
888 }
Changli Gaod8d1f302010-06-10 23:31:35 -0700889 dst_use(&rt->dst, jiffies);
Thomas Grafc71099a2006-08-04 23:20:06 -0700890 read_unlock_bh(&table->tb6_lock);
David Ahernb8115802015-11-19 12:24:22 -0800891
892 trace_fib6_table_lookup(net, rt, table->tb6_id, fl6);
893
Thomas Grafc71099a2006-08-04 23:20:06 -0700894 return rt;
895
896}
897
Ian Morris67ba4152014-08-24 21:53:10 +0100898struct dst_entry *ip6_route_lookup(struct net *net, struct flowi6 *fl6,
Florian Westphalea6e5742011-09-05 16:05:44 +0200899 int flags)
900{
901 return fib6_rule_lookup(net, fl6, flags, ip6_pol_route_lookup);
902}
903EXPORT_SYMBOL_GPL(ip6_route_lookup);
904
YOSHIFUJI Hideaki9acd9f32008-04-10 15:42:10 +0900905struct rt6_info *rt6_lookup(struct net *net, const struct in6_addr *daddr,
906 const struct in6_addr *saddr, int oif, int strict)
Thomas Grafc71099a2006-08-04 23:20:06 -0700907{
David S. Miller4c9483b2011-03-12 16:22:43 -0500908 struct flowi6 fl6 = {
909 .flowi6_oif = oif,
910 .daddr = *daddr,
Thomas Grafc71099a2006-08-04 23:20:06 -0700911 };
912 struct dst_entry *dst;
YOSHIFUJI Hideaki77d16f42006-08-23 17:25:05 -0700913 int flags = strict ? RT6_LOOKUP_F_IFACE : 0;
Thomas Grafc71099a2006-08-04 23:20:06 -0700914
Thomas Grafadaa70b2006-10-13 15:01:03 -0700915 if (saddr) {
David S. Miller4c9483b2011-03-12 16:22:43 -0500916 memcpy(&fl6.saddr, saddr, sizeof(*saddr));
Thomas Grafadaa70b2006-10-13 15:01:03 -0700917 flags |= RT6_LOOKUP_F_HAS_SADDR;
918 }
919
David S. Miller4c9483b2011-03-12 16:22:43 -0500920 dst = fib6_rule_lookup(net, &fl6, flags, ip6_pol_route_lookup);
Thomas Grafc71099a2006-08-04 23:20:06 -0700921 if (dst->error == 0)
922 return (struct rt6_info *) dst;
923
924 dst_release(dst);
925
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926 return NULL;
927}
YOSHIFUJI Hideaki71590392007-02-22 22:05:40 +0900928EXPORT_SYMBOL(rt6_lookup);
929
Thomas Grafc71099a2006-08-04 23:20:06 -0700930/* ip6_ins_rt is called with FREE table->tb6_lock.
Wei Wang1cfb71e2017-06-17 10:42:33 -0700931 * It takes new route entry, the addition fails by any reason the
932 * route is released.
933 * Caller must hold dst before calling it.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934 */
935
Michal Kubečeke5fd3872014-03-27 13:04:08 +0100936static int __ip6_ins_rt(struct rt6_info *rt, struct nl_info *info,
David Ahern333c4302017-05-21 10:12:04 -0600937 struct mx6_config *mxc,
938 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939{
940 int err;
Thomas Grafc71099a2006-08-04 23:20:06 -0700941 struct fib6_table *table;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942
Thomas Grafc71099a2006-08-04 23:20:06 -0700943 table = rt->rt6i_table;
944 write_lock_bh(&table->tb6_lock);
David Ahern333c4302017-05-21 10:12:04 -0600945 err = fib6_add(&table->tb6_root, rt, info, mxc, extack);
Thomas Grafc71099a2006-08-04 23:20:06 -0700946 write_unlock_bh(&table->tb6_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947
948 return err;
949}
950
Thomas Graf40e22e82006-08-22 00:00:45 -0700951int ip6_ins_rt(struct rt6_info *rt)
952{
Florian Westphale715b6d2015-01-05 23:57:44 +0100953 struct nl_info info = { .nl_net = dev_net(rt->dst.dev), };
954 struct mx6_config mxc = { .mx = NULL, };
955
Wei Wang1cfb71e2017-06-17 10:42:33 -0700956 /* Hold dst to account for the reference from the fib6 tree */
957 dst_hold(&rt->dst);
David Ahern333c4302017-05-21 10:12:04 -0600958 return __ip6_ins_rt(rt, &info, &mxc, NULL);
Thomas Graf40e22e82006-08-22 00:00:45 -0700959}
960
Martin KaFai Lau8b9df262015-05-22 20:55:59 -0700961static struct rt6_info *ip6_rt_cache_alloc(struct rt6_info *ort,
962 const struct in6_addr *daddr,
963 const struct in6_addr *saddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965 struct rt6_info *rt;
966
967 /*
968 * Clone the route.
969 */
970
Martin KaFai Laud52d3992015-05-22 20:56:06 -0700971 if (ort->rt6i_flags & (RTF_CACHE | RTF_PCPU))
Martin KaFai Lau83a09ab2015-05-22 20:56:05 -0700972 ort = (struct rt6_info *)ort->dst.from;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973
Martin KaFai Lauad706862015-08-14 11:05:52 -0700974 rt = __ip6_dst_alloc(dev_net(ort->dst.dev), ort->dst.dev, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975
Martin KaFai Lau83a09ab2015-05-22 20:56:05 -0700976 if (!rt)
977 return NULL;
978
979 ip6_rt_copy_init(rt, ort);
980 rt->rt6i_flags |= RTF_CACHE;
981 rt->rt6i_metric = 0;
982 rt->dst.flags |= DST_HOST;
983 rt->rt6i_dst.addr = *daddr;
984 rt->rt6i_dst.plen = 128;
985
986 if (!rt6_is_gw_or_nonexthop(ort)) {
987 if (ort->rt6i_dst.plen != 128 &&
988 ipv6_addr_equal(&ort->rt6i_dst.addr, daddr))
989 rt->rt6i_flags |= RTF_ANYCAST;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990#ifdef CONFIG_IPV6_SUBTREES
Martin KaFai Lau83a09ab2015-05-22 20:56:05 -0700991 if (rt->rt6i_src.plen && saddr) {
992 rt->rt6i_src.addr = *saddr;
993 rt->rt6i_src.plen = 128;
Martin KaFai Lau8b9df262015-05-22 20:55:59 -0700994 }
Martin KaFai Lau83a09ab2015-05-22 20:56:05 -0700995#endif
YOSHIFUJI Hideaki95a9a5b2006-03-20 16:55:51 -0800996 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997
YOSHIFUJI Hideaki95a9a5b2006-03-20 16:55:51 -0800998 return rt;
999}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001001static struct rt6_info *ip6_rt_pcpu_alloc(struct rt6_info *rt)
1002{
1003 struct rt6_info *pcpu_rt;
1004
1005 pcpu_rt = __ip6_dst_alloc(dev_net(rt->dst.dev),
Martin KaFai Lauad706862015-08-14 11:05:52 -07001006 rt->dst.dev, rt->dst.flags);
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001007
1008 if (!pcpu_rt)
1009 return NULL;
1010 ip6_rt_copy_init(pcpu_rt, rt);
1011 pcpu_rt->rt6i_protocol = rt->rt6i_protocol;
1012 pcpu_rt->rt6i_flags |= RTF_PCPU;
1013 return pcpu_rt;
1014}
1015
1016/* It should be called with read_lock_bh(&tb6_lock) acquired */
1017static struct rt6_info *rt6_get_pcpu_route(struct rt6_info *rt)
1018{
Martin KaFai Laua73e4192015-08-14 11:05:53 -07001019 struct rt6_info *pcpu_rt, **p;
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001020
1021 p = this_cpu_ptr(rt->rt6i_pcpu);
1022 pcpu_rt = *p;
1023
Martin KaFai Laua73e4192015-08-14 11:05:53 -07001024 if (pcpu_rt) {
1025 dst_hold(&pcpu_rt->dst);
1026 rt6_dst_from_metrics_check(pcpu_rt);
1027 }
1028 return pcpu_rt;
1029}
1030
1031static struct rt6_info *rt6_make_pcpu_route(struct rt6_info *rt)
1032{
Martin KaFai Lau9c7370a2015-08-14 11:05:54 -07001033 struct fib6_table *table = rt->rt6i_table;
Martin KaFai Laua73e4192015-08-14 11:05:53 -07001034 struct rt6_info *pcpu_rt, *prev, **p;
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001035
1036 pcpu_rt = ip6_rt_pcpu_alloc(rt);
1037 if (!pcpu_rt) {
1038 struct net *net = dev_net(rt->dst.dev);
1039
Martin KaFai Lau9c7370a2015-08-14 11:05:54 -07001040 dst_hold(&net->ipv6.ip6_null_entry->dst);
1041 return net->ipv6.ip6_null_entry;
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001042 }
1043
Martin KaFai Lau9c7370a2015-08-14 11:05:54 -07001044 read_lock_bh(&table->tb6_lock);
1045 if (rt->rt6i_pcpu) {
1046 p = this_cpu_ptr(rt->rt6i_pcpu);
1047 prev = cmpxchg(p, NULL, pcpu_rt);
1048 if (prev) {
1049 /* If someone did it before us, return prev instead */
Wei Wang587fea72017-06-17 10:42:36 -07001050 dst_release_immediate(&pcpu_rt->dst);
Martin KaFai Lau9c7370a2015-08-14 11:05:54 -07001051 pcpu_rt = prev;
1052 }
1053 } else {
1054 /* rt has been removed from the fib6 tree
1055 * before we have a chance to acquire the read_lock.
1056 * In this case, don't brother to create a pcpu rt
1057 * since rt is going away anyway. The next
1058 * dst_check() will trigger a re-lookup.
1059 */
Wei Wang587fea72017-06-17 10:42:36 -07001060 dst_release_immediate(&pcpu_rt->dst);
Martin KaFai Lau9c7370a2015-08-14 11:05:54 -07001061 pcpu_rt = rt;
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001062 }
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001063 dst_hold(&pcpu_rt->dst);
1064 rt6_dst_from_metrics_check(pcpu_rt);
Martin KaFai Lau9c7370a2015-08-14 11:05:54 -07001065 read_unlock_bh(&table->tb6_lock);
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001066 return pcpu_rt;
1067}
1068
David Ahern9ff74382016-06-13 13:44:19 -07001069struct rt6_info *ip6_pol_route(struct net *net, struct fib6_table *table,
1070 int oif, struct flowi6 *fl6, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071{
Martin KaFai Lau367efcb2014-10-20 13:42:45 -07001072 struct fib6_node *fn, *saved_fn;
Martin KaFai Lau45e4fd22015-05-22 20:56:00 -07001073 struct rt6_info *rt;
Thomas Grafc71099a2006-08-04 23:20:06 -07001074 int strict = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075
YOSHIFUJI Hideaki77d16f42006-08-23 17:25:05 -07001076 strict |= flags & RT6_LOOKUP_F_IFACE;
David Ahernd5d32e42016-10-24 12:27:23 -07001077 strict |= flags & RT6_LOOKUP_F_IGNORE_LINKSTATE;
Martin KaFai Lau367efcb2014-10-20 13:42:45 -07001078 if (net->ipv6.devconf_all->forwarding == 0)
1079 strict |= RT6_LOOKUP_F_REACHABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080
Thomas Grafc71099a2006-08-04 23:20:06 -07001081 read_lock_bh(&table->tb6_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082
David S. Miller4c9483b2011-03-12 16:22:43 -05001083 fn = fib6_lookup(&table->tb6_root, &fl6->daddr, &fl6->saddr);
Martin KaFai Lau367efcb2014-10-20 13:42:45 -07001084 saved_fn = fn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085
David Ahernca254492015-10-12 11:47:10 -07001086 if (fl6->flowi6_flags & FLOWI_FLAG_SKIP_NH_OIF)
1087 oif = 0;
1088
Martin KaFai Laua3c00e42014-10-20 13:42:43 -07001089redo_rt6_select:
Martin KaFai Lau367efcb2014-10-20 13:42:45 -07001090 rt = rt6_select(fn, oif, strict);
Nicolas Dichtel52bd4c02013-06-28 17:35:48 +02001091 if (rt->rt6i_nsiblings)
Martin KaFai Lau367efcb2014-10-20 13:42:45 -07001092 rt = rt6_multipath_select(rt, fl6, oif, strict);
Martin KaFai Laua3c00e42014-10-20 13:42:43 -07001093 if (rt == net->ipv6.ip6_null_entry) {
1094 fn = fib6_backtrack(fn, &fl6->saddr);
1095 if (fn)
1096 goto redo_rt6_select;
Martin KaFai Lau367efcb2014-10-20 13:42:45 -07001097 else if (strict & RT6_LOOKUP_F_REACHABLE) {
1098 /* also consider unreachable route */
1099 strict &= ~RT6_LOOKUP_F_REACHABLE;
1100 fn = saved_fn;
1101 goto redo_rt6_select;
Martin KaFai Lau367efcb2014-10-20 13:42:45 -07001102 }
Martin KaFai Laua3c00e42014-10-20 13:42:43 -07001103 }
1104
YOSHIFUJI Hideakifb9de912006-03-20 16:59:08 -08001105
Martin KaFai Lau3da59bd2015-05-22 20:56:03 -07001106 if (rt == net->ipv6.ip6_null_entry || (rt->rt6i_flags & RTF_CACHE)) {
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001107 dst_use(&rt->dst, jiffies);
1108 read_unlock_bh(&table->tb6_lock);
1109
1110 rt6_dst_from_metrics_check(rt);
David Ahernb8115802015-11-19 12:24:22 -08001111
1112 trace_fib6_table_lookup(net, rt, table->tb6_id, fl6);
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001113 return rt;
Martin KaFai Lau3da59bd2015-05-22 20:56:03 -07001114 } else if (unlikely((fl6->flowi6_flags & FLOWI_FLAG_KNOWN_NH) &&
1115 !(rt->rt6i_flags & RTF_GATEWAY))) {
1116 /* Create a RTF_CACHE clone which will not be
1117 * owned by the fib6 tree. It is for the special case where
1118 * the daddr in the skb during the neighbor look-up is different
1119 * from the fl6->daddr used to look-up route here.
1120 */
Thomas Grafc71099a2006-08-04 23:20:06 -07001121
Martin KaFai Lau3da59bd2015-05-22 20:56:03 -07001122 struct rt6_info *uncached_rt;
1123
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001124 dst_use(&rt->dst, jiffies);
1125 read_unlock_bh(&table->tb6_lock);
1126
Martin KaFai Lau3da59bd2015-05-22 20:56:03 -07001127 uncached_rt = ip6_rt_cache_alloc(rt, &fl6->daddr, NULL);
1128 dst_release(&rt->dst);
1129
Wei Wang1cfb71e2017-06-17 10:42:33 -07001130 if (uncached_rt) {
1131 /* Uncached_rt's refcnt is taken during ip6_rt_cache_alloc()
1132 * No need for another dst_hold()
1133 */
Martin KaFai Lau8d0b94a2015-05-22 20:56:04 -07001134 rt6_uncached_list_add(uncached_rt);
Wei Wang1cfb71e2017-06-17 10:42:33 -07001135 } else {
Martin KaFai Lau3da59bd2015-05-22 20:56:03 -07001136 uncached_rt = net->ipv6.ip6_null_entry;
Wei Wang1cfb71e2017-06-17 10:42:33 -07001137 dst_hold(&uncached_rt->dst);
1138 }
David Ahernb8115802015-11-19 12:24:22 -08001139
1140 trace_fib6_table_lookup(net, uncached_rt, table->tb6_id, fl6);
Martin KaFai Lau3da59bd2015-05-22 20:56:03 -07001141 return uncached_rt;
Martin KaFai Lau3da59bd2015-05-22 20:56:03 -07001142
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001143 } else {
1144 /* Get a percpu copy */
1145
1146 struct rt6_info *pcpu_rt;
1147
1148 rt->dst.lastuse = jiffies;
1149 rt->dst.__use++;
1150 pcpu_rt = rt6_get_pcpu_route(rt);
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001151
Martin KaFai Lau9c7370a2015-08-14 11:05:54 -07001152 if (pcpu_rt) {
1153 read_unlock_bh(&table->tb6_lock);
1154 } else {
1155 /* We have to do the read_unlock first
1156 * because rt6_make_pcpu_route() may trigger
1157 * ip6_dst_gc() which will take the write_lock.
1158 */
1159 dst_hold(&rt->dst);
1160 read_unlock_bh(&table->tb6_lock);
Martin KaFai Laua73e4192015-08-14 11:05:53 -07001161 pcpu_rt = rt6_make_pcpu_route(rt);
Martin KaFai Lau9c7370a2015-08-14 11:05:54 -07001162 dst_release(&rt->dst);
1163 }
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001164
David Ahernb8115802015-11-19 12:24:22 -08001165 trace_fib6_table_lookup(net, pcpu_rt, table->tb6_id, fl6);
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001166 return pcpu_rt;
Martin KaFai Lau9c7370a2015-08-14 11:05:54 -07001167
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001168 }
Thomas Grafc71099a2006-08-04 23:20:06 -07001169}
David Ahern9ff74382016-06-13 13:44:19 -07001170EXPORT_SYMBOL_GPL(ip6_pol_route);
Thomas Grafc71099a2006-08-04 23:20:06 -07001171
Daniel Lezcano8ed67782008-03-04 13:48:30 -08001172static struct rt6_info *ip6_pol_route_input(struct net *net, struct fib6_table *table,
David S. Miller4c9483b2011-03-12 16:22:43 -05001173 struct flowi6 *fl6, int flags)
Pavel Emelyanov4acad722007-10-15 13:02:51 -07001174{
David S. Miller4c9483b2011-03-12 16:22:43 -05001175 return ip6_pol_route(net, table, fl6->flowi6_iif, fl6, flags);
Pavel Emelyanov4acad722007-10-15 13:02:51 -07001176}
1177
Mahesh Bandeward409b842016-09-16 12:59:08 -07001178struct dst_entry *ip6_route_input_lookup(struct net *net,
1179 struct net_device *dev,
1180 struct flowi6 *fl6, int flags)
Shmulik Ladkani72331bc2012-04-01 04:03:45 +00001181{
1182 if (rt6_need_strict(&fl6->daddr) && dev->type != ARPHRD_PIMREG)
1183 flags |= RT6_LOOKUP_F_IFACE;
1184
1185 return fib6_rule_lookup(net, fl6, flags, ip6_pol_route_input);
1186}
Mahesh Bandeward409b842016-09-16 12:59:08 -07001187EXPORT_SYMBOL_GPL(ip6_route_input_lookup);
Shmulik Ladkani72331bc2012-04-01 04:03:45 +00001188
Thomas Grafc71099a2006-08-04 23:20:06 -07001189void ip6_route_input(struct sk_buff *skb)
1190{
Eric Dumazetb71d1d42011-04-22 04:53:02 +00001191 const struct ipv6hdr *iph = ipv6_hdr(skb);
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001192 struct net *net = dev_net(skb->dev);
Thomas Grafadaa70b2006-10-13 15:01:03 -07001193 int flags = RT6_LOOKUP_F_HAS_SADDR;
Jiri Benc904af042015-08-20 13:56:31 +02001194 struct ip_tunnel_info *tun_info;
David S. Miller4c9483b2011-03-12 16:22:43 -05001195 struct flowi6 fl6 = {
David Aherne0d56fd2016-09-10 12:09:57 -07001196 .flowi6_iif = skb->dev->ifindex,
David S. Miller4c9483b2011-03-12 16:22:43 -05001197 .daddr = iph->daddr,
1198 .saddr = iph->saddr,
YOSHIFUJI Hideaki / 吉藤英明6502ca52013-01-13 05:01:51 +00001199 .flowlabel = ip6_flowinfo(iph),
David S. Miller4c9483b2011-03-12 16:22:43 -05001200 .flowi6_mark = skb->mark,
1201 .flowi6_proto = iph->nexthdr,
Thomas Grafc71099a2006-08-04 23:20:06 -07001202 };
Thomas Grafadaa70b2006-10-13 15:01:03 -07001203
Jiri Benc904af042015-08-20 13:56:31 +02001204 tun_info = skb_tunnel_info(skb);
Jiri Benc46fa0622015-08-28 20:48:19 +02001205 if (tun_info && !(tun_info->mode & IP_TUNNEL_INFO_TX))
Jiri Benc904af042015-08-20 13:56:31 +02001206 fl6.flowi6_tun_key.tun_id = tun_info->key.tun_id;
Jiri Benc06e9d042015-08-20 13:56:26 +02001207 skb_dst_drop(skb);
Shmulik Ladkani72331bc2012-04-01 04:03:45 +00001208 skb_dst_set(skb, ip6_route_input_lookup(net, skb->dev, &fl6, flags));
Thomas Grafc71099a2006-08-04 23:20:06 -07001209}
1210
Daniel Lezcano8ed67782008-03-04 13:48:30 -08001211static struct rt6_info *ip6_pol_route_output(struct net *net, struct fib6_table *table,
David S. Miller4c9483b2011-03-12 16:22:43 -05001212 struct flowi6 *fl6, int flags)
Thomas Grafc71099a2006-08-04 23:20:06 -07001213{
David S. Miller4c9483b2011-03-12 16:22:43 -05001214 return ip6_pol_route(net, table, fl6->flowi6_oif, fl6, flags);
Thomas Grafc71099a2006-08-04 23:20:06 -07001215}
1216
Paolo Abeni6f21c962016-01-29 12:30:19 +01001217struct dst_entry *ip6_route_output_flags(struct net *net, const struct sock *sk,
1218 struct flowi6 *fl6, int flags)
Thomas Grafc71099a2006-08-04 23:20:06 -07001219{
David Ahernd46a9d62015-10-21 08:42:22 -07001220 bool any_src;
Thomas Grafc71099a2006-08-04 23:20:06 -07001221
David Ahern4c1feac2016-09-10 12:09:56 -07001222 if (rt6_need_strict(&fl6->daddr)) {
1223 struct dst_entry *dst;
1224
1225 dst = l3mdev_link_scope_lookup(net, fl6);
1226 if (dst)
1227 return dst;
1228 }
David Ahernca254492015-10-12 11:47:10 -07001229
Pavel Emelyanov1fb94892012-08-08 21:53:36 +00001230 fl6->flowi6_iif = LOOPBACK_IFINDEX;
David McCullough4dc27d1c2012-06-25 15:42:26 +00001231
David Ahernd46a9d62015-10-21 08:42:22 -07001232 any_src = ipv6_addr_any(&fl6->saddr);
David Ahern741a11d2015-09-28 10:12:13 -07001233 if ((sk && sk->sk_bound_dev_if) || rt6_need_strict(&fl6->daddr) ||
David Ahernd46a9d62015-10-21 08:42:22 -07001234 (fl6->flowi6_oif && any_src))
YOSHIFUJI Hideaki77d16f42006-08-23 17:25:05 -07001235 flags |= RT6_LOOKUP_F_IFACE;
Thomas Grafc71099a2006-08-04 23:20:06 -07001236
David Ahernd46a9d62015-10-21 08:42:22 -07001237 if (!any_src)
Thomas Grafadaa70b2006-10-13 15:01:03 -07001238 flags |= RT6_LOOKUP_F_HAS_SADDR;
YOSHIFUJI Hideaki / 吉藤英明0c9a2ac2010-03-07 00:14:44 +00001239 else if (sk)
1240 flags |= rt6_srcprefs2flags(inet6_sk(sk)->srcprefs);
Thomas Grafadaa70b2006-10-13 15:01:03 -07001241
David S. Miller4c9483b2011-03-12 16:22:43 -05001242 return fib6_rule_lookup(net, fl6, flags, ip6_pol_route_output);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243}
Paolo Abeni6f21c962016-01-29 12:30:19 +01001244EXPORT_SYMBOL_GPL(ip6_route_output_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245
David S. Miller2774c132011-03-01 14:59:04 -08001246struct dst_entry *ip6_blackhole_route(struct net *net, struct dst_entry *dst_orig)
David S. Miller14e50e52007-05-24 18:17:54 -07001247{
David S. Miller5c1e6aa2011-04-28 14:13:38 -07001248 struct rt6_info *rt, *ort = (struct rt6_info *) dst_orig;
Wei Wang1dbe32522017-06-17 10:42:26 -07001249 struct net_device *loopback_dev = net->loopback_dev;
David S. Miller14e50e52007-05-24 18:17:54 -07001250 struct dst_entry *new = NULL;
1251
Wei Wang1dbe32522017-06-17 10:42:26 -07001252 rt = dst_alloc(&ip6_dst_blackhole_ops, loopback_dev, 1,
Wei Wangb2a9c0e2017-06-17 10:42:41 -07001253 DST_OBSOLETE_NONE, 0);
David S. Miller14e50e52007-05-24 18:17:54 -07001254 if (rt) {
Martin KaFai Lau0a1f5962015-10-15 16:39:58 -07001255 rt6_info_init(rt);
1256
Changli Gaod8d1f302010-06-10 23:31:35 -07001257 new = &rt->dst;
David S. Miller14e50e52007-05-24 18:17:54 -07001258 new->__use = 1;
Herbert Xu352e5122007-11-13 21:34:06 -08001259 new->input = dst_discard;
Eric W. Biedermanede20592015-10-07 16:48:47 -05001260 new->output = dst_discard_out;
David S. Miller14e50e52007-05-24 18:17:54 -07001261
Martin KaFai Lau0a1f5962015-10-15 16:39:58 -07001262 dst_copy_metrics(new, &ort->dst);
David S. Miller14e50e52007-05-24 18:17:54 -07001263
Wei Wang1dbe32522017-06-17 10:42:26 -07001264 rt->rt6i_idev = in6_dev_get(loopback_dev);
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001265 rt->rt6i_gateway = ort->rt6i_gateway;
Martin KaFai Lau0a1f5962015-10-15 16:39:58 -07001266 rt->rt6i_flags = ort->rt6i_flags & ~RTF_PCPU;
David S. Miller14e50e52007-05-24 18:17:54 -07001267 rt->rt6i_metric = 0;
1268
1269 memcpy(&rt->rt6i_dst, &ort->rt6i_dst, sizeof(struct rt6key));
1270#ifdef CONFIG_IPV6_SUBTREES
1271 memcpy(&rt->rt6i_src, &ort->rt6i_src, sizeof(struct rt6key));
1272#endif
David S. Miller14e50e52007-05-24 18:17:54 -07001273 }
1274
David S. Miller69ead7a2011-03-01 14:45:33 -08001275 dst_release(dst_orig);
1276 return new ? new : ERR_PTR(-ENOMEM);
David S. Miller14e50e52007-05-24 18:17:54 -07001277}
David S. Miller14e50e52007-05-24 18:17:54 -07001278
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279/*
1280 * Destination cache support functions
1281 */
1282
Martin KaFai Lau4b32b5a2015-04-28 13:03:06 -07001283static void rt6_dst_from_metrics_check(struct rt6_info *rt)
1284{
1285 if (rt->dst.from &&
1286 dst_metrics_ptr(&rt->dst) != dst_metrics_ptr(rt->dst.from))
1287 dst_init_metrics(&rt->dst, dst_metrics_ptr(rt->dst.from), true);
1288}
1289
Martin KaFai Lau3da59bd2015-05-22 20:56:03 -07001290static struct dst_entry *rt6_check(struct rt6_info *rt, u32 cookie)
1291{
1292 if (!rt->rt6i_node || (rt->rt6i_node->fn_sernum != cookie))
1293 return NULL;
1294
1295 if (rt6_check_expired(rt))
1296 return NULL;
1297
1298 return &rt->dst;
1299}
1300
1301static struct dst_entry *rt6_dst_from_check(struct rt6_info *rt, u32 cookie)
1302{
Martin KaFai Lau5973fb12015-11-11 11:51:07 -08001303 if (!__rt6_check_expired(rt) &&
1304 rt->dst.obsolete == DST_OBSOLETE_FORCE_CHK &&
Martin KaFai Lau3da59bd2015-05-22 20:56:03 -07001305 rt6_check((struct rt6_info *)(rt->dst.from), cookie))
1306 return &rt->dst;
1307 else
1308 return NULL;
1309}
1310
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311static struct dst_entry *ip6_dst_check(struct dst_entry *dst, u32 cookie)
1312{
1313 struct rt6_info *rt;
1314
1315 rt = (struct rt6_info *) dst;
1316
Nicolas Dichtel6f3118b2012-09-10 22:09:46 +00001317 /* All IPV6 dsts are created with ->obsolete set to the value
1318 * DST_OBSOLETE_FORCE_CHK which forces validation calls down
1319 * into this function always.
1320 */
Hannes Frederic Sowae3bc10b2013-10-24 07:48:24 +02001321
Martin KaFai Lau4b32b5a2015-04-28 13:03:06 -07001322 rt6_dst_from_metrics_check(rt);
1323
Martin KaFai Lau02bcf4e2015-11-11 11:51:08 -08001324 if (rt->rt6i_flags & RTF_PCPU ||
Wei Wanga4c2fd72017-06-17 10:42:42 -07001325 (unlikely(!list_empty(&rt->rt6i_uncached)) && rt->dst.from))
Martin KaFai Lau3da59bd2015-05-22 20:56:03 -07001326 return rt6_dst_from_check(rt, cookie);
1327 else
1328 return rt6_check(rt, cookie);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329}
1330
1331static struct dst_entry *ip6_negative_advice(struct dst_entry *dst)
1332{
1333 struct rt6_info *rt = (struct rt6_info *) dst;
1334
1335 if (rt) {
YOSHIFUJI Hideaki / 吉藤英明54c1a852010-03-28 07:15:45 +00001336 if (rt->rt6i_flags & RTF_CACHE) {
1337 if (rt6_check_expired(rt)) {
1338 ip6_del_rt(rt);
1339 dst = NULL;
1340 }
1341 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342 dst_release(dst);
YOSHIFUJI Hideaki / 吉藤英明54c1a852010-03-28 07:15:45 +00001343 dst = NULL;
1344 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345 }
YOSHIFUJI Hideaki / 吉藤英明54c1a852010-03-28 07:15:45 +00001346 return dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347}
1348
1349static void ip6_link_failure(struct sk_buff *skb)
1350{
1351 struct rt6_info *rt;
1352
Alexey Dobriyan3ffe5332010-02-18 08:25:24 +00001353 icmpv6_send(skb, ICMPV6_DEST_UNREACH, ICMPV6_ADDR_UNREACH, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354
Eric Dumazetadf30902009-06-02 05:19:30 +00001355 rt = (struct rt6_info *) skb_dst(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356 if (rt) {
Hannes Frederic Sowa1eb4f752013-07-10 23:00:57 +02001357 if (rt->rt6i_flags & RTF_CACHE) {
Wei Wangad65a2f2017-06-17 10:42:35 -07001358 if (dst_hold_safe(&rt->dst))
1359 ip6_del_rt(rt);
Hannes Frederic Sowa1eb4f752013-07-10 23:00:57 +02001360 } else if (rt->rt6i_node && (rt->rt6i_flags & RTF_DEFAULT)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361 rt->rt6i_node->fn_sernum = -1;
Hannes Frederic Sowa1eb4f752013-07-10 23:00:57 +02001362 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363 }
1364}
1365
Martin KaFai Lau45e4fd22015-05-22 20:56:00 -07001366static void rt6_do_update_pmtu(struct rt6_info *rt, u32 mtu)
1367{
1368 struct net *net = dev_net(rt->dst.dev);
1369
1370 rt->rt6i_flags |= RTF_MODIFIED;
1371 rt->rt6i_pmtu = mtu;
1372 rt6_update_expires(rt, net->ipv6.sysctl.ip6_rt_mtu_expires);
1373}
1374
Martin KaFai Lau0d3f6d22015-11-11 11:51:06 -08001375static bool rt6_cache_allowed_for_pmtu(const struct rt6_info *rt)
1376{
1377 return !(rt->rt6i_flags & RTF_CACHE) &&
1378 (rt->rt6i_flags & RTF_PCPU || rt->rt6i_node);
1379}
1380
Martin KaFai Lau45e4fd22015-05-22 20:56:00 -07001381static void __ip6_rt_update_pmtu(struct dst_entry *dst, const struct sock *sk,
1382 const struct ipv6hdr *iph, u32 mtu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383{
Julian Anastasov0dec8792017-02-06 23:14:16 +02001384 const struct in6_addr *daddr, *saddr;
Ian Morris67ba4152014-08-24 21:53:10 +01001385 struct rt6_info *rt6 = (struct rt6_info *)dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386
Martin KaFai Lau45e4fd22015-05-22 20:56:00 -07001387 if (rt6->rt6i_flags & RTF_LOCAL)
1388 return;
1389
Xin Long19bda362016-10-28 18:18:01 +08001390 if (dst_metric_locked(dst, RTAX_MTU))
1391 return;
1392
Julian Anastasov0dec8792017-02-06 23:14:16 +02001393 if (iph) {
1394 daddr = &iph->daddr;
1395 saddr = &iph->saddr;
1396 } else if (sk) {
1397 daddr = &sk->sk_v6_daddr;
1398 saddr = &inet6_sk(sk)->saddr;
1399 } else {
1400 daddr = NULL;
1401 saddr = NULL;
1402 }
1403 dst_confirm_neigh(dst, daddr);
Martin KaFai Lau45e4fd22015-05-22 20:56:00 -07001404 mtu = max_t(u32, mtu, IPV6_MIN_MTU);
1405 if (mtu >= dst_mtu(dst))
1406 return;
David S. Miller81aded22012-06-15 14:54:11 -07001407
Martin KaFai Lau0d3f6d22015-11-11 11:51:06 -08001408 if (!rt6_cache_allowed_for_pmtu(rt6)) {
Martin KaFai Lau45e4fd22015-05-22 20:56:00 -07001409 rt6_do_update_pmtu(rt6, mtu);
Julian Anastasov0dec8792017-02-06 23:14:16 +02001410 } else if (daddr) {
Martin KaFai Lau45e4fd22015-05-22 20:56:00 -07001411 struct rt6_info *nrt6;
Hagen Paul Pfeifer9d289712015-01-15 22:34:25 +01001412
Martin KaFai Lau45e4fd22015-05-22 20:56:00 -07001413 nrt6 = ip6_rt_cache_alloc(rt6, daddr, saddr);
1414 if (nrt6) {
1415 rt6_do_update_pmtu(nrt6, mtu);
1416
1417 /* ip6_ins_rt(nrt6) will bump the
1418 * rt6->rt6i_node->fn_sernum
1419 * which will fail the next rt6_check() and
1420 * invalidate the sk->sk_dst_cache.
1421 */
1422 ip6_ins_rt(nrt6);
Wei Wang1cfb71e2017-06-17 10:42:33 -07001423 /* Release the reference taken in
1424 * ip6_rt_cache_alloc()
1425 */
1426 dst_release(&nrt6->dst);
Martin KaFai Lau45e4fd22015-05-22 20:56:00 -07001427 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428 }
1429}
1430
Martin KaFai Lau45e4fd22015-05-22 20:56:00 -07001431static void ip6_rt_update_pmtu(struct dst_entry *dst, struct sock *sk,
1432 struct sk_buff *skb, u32 mtu)
1433{
1434 __ip6_rt_update_pmtu(dst, sk, skb ? ipv6_hdr(skb) : NULL, mtu);
1435}
1436
David S. Miller42ae66c2012-06-15 20:01:57 -07001437void ip6_update_pmtu(struct sk_buff *skb, struct net *net, __be32 mtu,
Lorenzo Colittie2d118a2016-11-04 02:23:43 +09001438 int oif, u32 mark, kuid_t uid)
David S. Miller81aded22012-06-15 14:54:11 -07001439{
1440 const struct ipv6hdr *iph = (struct ipv6hdr *) skb->data;
1441 struct dst_entry *dst;
1442 struct flowi6 fl6;
1443
1444 memset(&fl6, 0, sizeof(fl6));
1445 fl6.flowi6_oif = oif;
Lorenzo Colitti1b3c61d2014-05-13 10:17:34 -07001446 fl6.flowi6_mark = mark ? mark : IP6_REPLY_MARK(net, skb->mark);
David S. Miller81aded22012-06-15 14:54:11 -07001447 fl6.daddr = iph->daddr;
1448 fl6.saddr = iph->saddr;
YOSHIFUJI Hideaki / 吉藤英明6502ca52013-01-13 05:01:51 +00001449 fl6.flowlabel = ip6_flowinfo(iph);
Lorenzo Colittie2d118a2016-11-04 02:23:43 +09001450 fl6.flowi6_uid = uid;
David S. Miller81aded22012-06-15 14:54:11 -07001451
1452 dst = ip6_route_output(net, NULL, &fl6);
1453 if (!dst->error)
Martin KaFai Lau45e4fd22015-05-22 20:56:00 -07001454 __ip6_rt_update_pmtu(dst, NULL, iph, ntohl(mtu));
David S. Miller81aded22012-06-15 14:54:11 -07001455 dst_release(dst);
1456}
1457EXPORT_SYMBOL_GPL(ip6_update_pmtu);
1458
1459void ip6_sk_update_pmtu(struct sk_buff *skb, struct sock *sk, __be32 mtu)
1460{
Martin KaFai Lau33c162a2016-04-11 15:29:36 -07001461 struct dst_entry *dst;
1462
David S. Miller81aded22012-06-15 14:54:11 -07001463 ip6_update_pmtu(skb, sock_net(sk), mtu,
Lorenzo Colittie2d118a2016-11-04 02:23:43 +09001464 sk->sk_bound_dev_if, sk->sk_mark, sk->sk_uid);
Martin KaFai Lau33c162a2016-04-11 15:29:36 -07001465
1466 dst = __sk_dst_get(sk);
1467 if (!dst || !dst->obsolete ||
1468 dst->ops->check(dst, inet6_sk(sk)->dst_cookie))
1469 return;
1470
1471 bh_lock_sock(sk);
1472 if (!sock_owned_by_user(sk) && !ipv6_addr_v4mapped(&sk->sk_v6_daddr))
1473 ip6_datagram_dst_update(sk, false);
1474 bh_unlock_sock(sk);
David S. Miller81aded22012-06-15 14:54:11 -07001475}
1476EXPORT_SYMBOL_GPL(ip6_sk_update_pmtu);
1477
Duan Jiongb55b76b2013-09-04 19:44:21 +08001478/* Handle redirects */
1479struct ip6rd_flowi {
1480 struct flowi6 fl6;
1481 struct in6_addr gateway;
1482};
1483
1484static struct rt6_info *__ip6_route_redirect(struct net *net,
1485 struct fib6_table *table,
1486 struct flowi6 *fl6,
1487 int flags)
1488{
1489 struct ip6rd_flowi *rdfl = (struct ip6rd_flowi *)fl6;
1490 struct rt6_info *rt;
1491 struct fib6_node *fn;
1492
1493 /* Get the "current" route for this destination and
Alexander Alemayhu67c408c2017-01-07 23:53:00 +01001494 * check if the redirect has come from appropriate router.
Duan Jiongb55b76b2013-09-04 19:44:21 +08001495 *
1496 * RFC 4861 specifies that redirects should only be
1497 * accepted if they come from the nexthop to the target.
1498 * Due to the way the routes are chosen, this notion
1499 * is a bit fuzzy and one might need to check all possible
1500 * routes.
1501 */
1502
1503 read_lock_bh(&table->tb6_lock);
1504 fn = fib6_lookup(&table->tb6_root, &fl6->daddr, &fl6->saddr);
1505restart:
1506 for (rt = fn->leaf; rt; rt = rt->dst.rt6_next) {
1507 if (rt6_check_expired(rt))
1508 continue;
1509 if (rt->dst.error)
1510 break;
1511 if (!(rt->rt6i_flags & RTF_GATEWAY))
1512 continue;
1513 if (fl6->flowi6_oif != rt->dst.dev->ifindex)
1514 continue;
1515 if (!ipv6_addr_equal(&rdfl->gateway, &rt->rt6i_gateway))
1516 continue;
1517 break;
1518 }
1519
1520 if (!rt)
1521 rt = net->ipv6.ip6_null_entry;
1522 else if (rt->dst.error) {
1523 rt = net->ipv6.ip6_null_entry;
Martin KaFai Laub0a1ba52015-01-20 19:16:02 -08001524 goto out;
1525 }
1526
1527 if (rt == net->ipv6.ip6_null_entry) {
Martin KaFai Laua3c00e42014-10-20 13:42:43 -07001528 fn = fib6_backtrack(fn, &fl6->saddr);
1529 if (fn)
1530 goto restart;
Duan Jiongb55b76b2013-09-04 19:44:21 +08001531 }
Martin KaFai Laua3c00e42014-10-20 13:42:43 -07001532
Martin KaFai Laub0a1ba52015-01-20 19:16:02 -08001533out:
Duan Jiongb55b76b2013-09-04 19:44:21 +08001534 dst_hold(&rt->dst);
1535
1536 read_unlock_bh(&table->tb6_lock);
1537
David Ahernb8115802015-11-19 12:24:22 -08001538 trace_fib6_table_lookup(net, rt, table->tb6_id, fl6);
Duan Jiongb55b76b2013-09-04 19:44:21 +08001539 return rt;
1540};
1541
1542static struct dst_entry *ip6_route_redirect(struct net *net,
1543 const struct flowi6 *fl6,
1544 const struct in6_addr *gateway)
1545{
1546 int flags = RT6_LOOKUP_F_HAS_SADDR;
1547 struct ip6rd_flowi rdfl;
1548
1549 rdfl.fl6 = *fl6;
1550 rdfl.gateway = *gateway;
1551
1552 return fib6_rule_lookup(net, &rdfl.fl6,
1553 flags, __ip6_route_redirect);
1554}
1555
Lorenzo Colittie2d118a2016-11-04 02:23:43 +09001556void ip6_redirect(struct sk_buff *skb, struct net *net, int oif, u32 mark,
1557 kuid_t uid)
David S. Miller3a5ad2e2012-07-12 00:08:07 -07001558{
1559 const struct ipv6hdr *iph = (struct ipv6hdr *) skb->data;
1560 struct dst_entry *dst;
1561 struct flowi6 fl6;
1562
1563 memset(&fl6, 0, sizeof(fl6));
Julian Anastasove374c612014-04-28 10:51:56 +03001564 fl6.flowi6_iif = LOOPBACK_IFINDEX;
David S. Miller3a5ad2e2012-07-12 00:08:07 -07001565 fl6.flowi6_oif = oif;
1566 fl6.flowi6_mark = mark;
David S. Miller3a5ad2e2012-07-12 00:08:07 -07001567 fl6.daddr = iph->daddr;
1568 fl6.saddr = iph->saddr;
YOSHIFUJI Hideaki / 吉藤英明6502ca52013-01-13 05:01:51 +00001569 fl6.flowlabel = ip6_flowinfo(iph);
Lorenzo Colittie2d118a2016-11-04 02:23:43 +09001570 fl6.flowi6_uid = uid;
David S. Miller3a5ad2e2012-07-12 00:08:07 -07001571
Duan Jiongb55b76b2013-09-04 19:44:21 +08001572 dst = ip6_route_redirect(net, &fl6, &ipv6_hdr(skb)->saddr);
1573 rt6_do_redirect(dst, NULL, skb);
David S. Miller3a5ad2e2012-07-12 00:08:07 -07001574 dst_release(dst);
1575}
1576EXPORT_SYMBOL_GPL(ip6_redirect);
1577
Duan Jiongc92a59e2013-08-22 12:07:35 +08001578void ip6_redirect_no_header(struct sk_buff *skb, struct net *net, int oif,
1579 u32 mark)
1580{
1581 const struct ipv6hdr *iph = ipv6_hdr(skb);
1582 const struct rd_msg *msg = (struct rd_msg *)icmp6_hdr(skb);
1583 struct dst_entry *dst;
1584 struct flowi6 fl6;
1585
1586 memset(&fl6, 0, sizeof(fl6));
Julian Anastasove374c612014-04-28 10:51:56 +03001587 fl6.flowi6_iif = LOOPBACK_IFINDEX;
Duan Jiongc92a59e2013-08-22 12:07:35 +08001588 fl6.flowi6_oif = oif;
1589 fl6.flowi6_mark = mark;
Duan Jiongc92a59e2013-08-22 12:07:35 +08001590 fl6.daddr = msg->dest;
1591 fl6.saddr = iph->daddr;
Lorenzo Colittie2d118a2016-11-04 02:23:43 +09001592 fl6.flowi6_uid = sock_net_uid(net, NULL);
Duan Jiongc92a59e2013-08-22 12:07:35 +08001593
Duan Jiongb55b76b2013-09-04 19:44:21 +08001594 dst = ip6_route_redirect(net, &fl6, &iph->saddr);
1595 rt6_do_redirect(dst, NULL, skb);
Duan Jiongc92a59e2013-08-22 12:07:35 +08001596 dst_release(dst);
1597}
1598
David S. Miller3a5ad2e2012-07-12 00:08:07 -07001599void ip6_sk_redirect(struct sk_buff *skb, struct sock *sk)
1600{
Lorenzo Colittie2d118a2016-11-04 02:23:43 +09001601 ip6_redirect(skb, sock_net(sk), sk->sk_bound_dev_if, sk->sk_mark,
1602 sk->sk_uid);
David S. Miller3a5ad2e2012-07-12 00:08:07 -07001603}
1604EXPORT_SYMBOL_GPL(ip6_sk_redirect);
1605
David S. Miller0dbaee32010-12-13 12:52:14 -08001606static unsigned int ip6_default_advmss(const struct dst_entry *dst)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607{
David S. Miller0dbaee32010-12-13 12:52:14 -08001608 struct net_device *dev = dst->dev;
1609 unsigned int mtu = dst_mtu(dst);
1610 struct net *net = dev_net(dev);
1611
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612 mtu -= sizeof(struct ipv6hdr) + sizeof(struct tcphdr);
1613
Daniel Lezcano55786892008-03-04 13:47:47 -08001614 if (mtu < net->ipv6.sysctl.ip6_rt_min_advmss)
1615 mtu = net->ipv6.sysctl.ip6_rt_min_advmss;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616
1617 /*
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001618 * Maximal non-jumbo IPv6 payload is IPV6_MAXPLEN and
1619 * corresponding MSS is IPV6_MAXPLEN - tcp_header_size.
1620 * IPV6_MAXPLEN is also valid and means: "any MSS,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621 * rely only on pmtu discovery"
1622 */
1623 if (mtu > IPV6_MAXPLEN - sizeof(struct tcphdr))
1624 mtu = IPV6_MAXPLEN;
1625 return mtu;
1626}
1627
Steffen Klassertebb762f2011-11-23 02:12:51 +00001628static unsigned int ip6_mtu(const struct dst_entry *dst)
David S. Millerd33e4552010-12-14 13:01:14 -08001629{
Martin KaFai Lau4b32b5a2015-04-28 13:03:06 -07001630 const struct rt6_info *rt = (const struct rt6_info *)dst;
1631 unsigned int mtu = rt->rt6i_pmtu;
David S. Millerd33e4552010-12-14 13:01:14 -08001632 struct inet6_dev *idev;
Steffen Klassert618f9bc2011-11-23 02:13:31 +00001633
1634 if (mtu)
Eric Dumazet30f78d82014-04-10 21:23:36 -07001635 goto out;
Steffen Klassert618f9bc2011-11-23 02:13:31 +00001636
Martin KaFai Lau4b32b5a2015-04-28 13:03:06 -07001637 mtu = dst_metric_raw(dst, RTAX_MTU);
1638 if (mtu)
1639 goto out;
1640
Steffen Klassert618f9bc2011-11-23 02:13:31 +00001641 mtu = IPV6_MIN_MTU;
David S. Millerd33e4552010-12-14 13:01:14 -08001642
1643 rcu_read_lock();
1644 idev = __in6_dev_get(dst->dev);
1645 if (idev)
1646 mtu = idev->cnf.mtu6;
1647 rcu_read_unlock();
1648
Eric Dumazet30f78d82014-04-10 21:23:36 -07001649out:
Roopa Prabhu14972cb2016-08-24 20:10:43 -07001650 mtu = min_t(unsigned int, mtu, IP6_MAX_MTU);
1651
1652 return mtu - lwtunnel_headroom(dst->lwtstate, mtu);
David S. Millerd33e4552010-12-14 13:01:14 -08001653}
1654
YOSHIFUJI Hideaki3b009442007-12-06 16:11:48 -08001655struct dst_entry *icmp6_dst_alloc(struct net_device *dev,
David S. Miller87a11572011-12-06 17:04:13 -05001656 struct flowi6 *fl6)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657{
David S. Miller87a11572011-12-06 17:04:13 -05001658 struct dst_entry *dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659 struct rt6_info *rt;
1660 struct inet6_dev *idev = in6_dev_get(dev);
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001661 struct net *net = dev_net(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662
David S. Miller38308472011-12-03 18:02:47 -05001663 if (unlikely(!idev))
Eric Dumazet122bdf62012-03-14 21:13:11 +00001664 return ERR_PTR(-ENODEV);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665
Martin KaFai Lauad706862015-08-14 11:05:52 -07001666 rt = ip6_dst_alloc(net, dev, 0);
David S. Miller38308472011-12-03 18:02:47 -05001667 if (unlikely(!rt)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668 in6_dev_put(idev);
David S. Miller87a11572011-12-06 17:04:13 -05001669 dst = ERR_PTR(-ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670 goto out;
1671 }
1672
Yan, Zheng8e2ec632011-09-05 21:34:30 +00001673 rt->dst.flags |= DST_HOST;
1674 rt->dst.output = ip6_output;
Julian Anastasov550bab42013-10-20 15:43:04 +03001675 rt->rt6i_gateway = fl6->daddr;
David S. Miller87a11572011-12-06 17:04:13 -05001676 rt->rt6i_dst.addr = fl6->daddr;
Yan, Zheng8e2ec632011-09-05 21:34:30 +00001677 rt->rt6i_dst.plen = 128;
1678 rt->rt6i_idev = idev;
Li RongQing14edd872012-10-24 14:01:18 +08001679 dst_metric_set(&rt->dst, RTAX_HOPLIMIT, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680
Wei Wang587fea72017-06-17 10:42:36 -07001681 /* Add this dst into uncached_list so that rt6_ifdown() can
1682 * do proper release of the net_device
1683 */
1684 rt6_uncached_list_add(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685
David S. Miller87a11572011-12-06 17:04:13 -05001686 dst = xfrm_lookup(net, &rt->dst, flowi6_to_flowi(fl6), NULL, 0);
1687
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688out:
David S. Miller87a11572011-12-06 17:04:13 -05001689 return dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690}
1691
Daniel Lezcano569d3642008-01-18 03:56:57 -08001692static int ip6_dst_gc(struct dst_ops *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693{
Alexey Dobriyan86393e52009-08-29 01:34:49 +00001694 struct net *net = container_of(ops, struct net, ipv6.ip6_dst_ops);
Daniel Lezcano7019b782008-03-04 13:50:14 -08001695 int rt_min_interval = net->ipv6.sysctl.ip6_rt_gc_min_interval;
1696 int rt_max_size = net->ipv6.sysctl.ip6_rt_max_size;
1697 int rt_elasticity = net->ipv6.sysctl.ip6_rt_gc_elasticity;
1698 int rt_gc_timeout = net->ipv6.sysctl.ip6_rt_gc_timeout;
1699 unsigned long rt_last_gc = net->ipv6.ip6_rt_last_gc;
Eric Dumazetfc66f952010-10-08 06:37:34 +00001700 int entries;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701
Eric Dumazetfc66f952010-10-08 06:37:34 +00001702 entries = dst_entries_get_fast(ops);
Michal Kubeček49a18d82013-08-01 10:04:24 +02001703 if (time_after(rt_last_gc + rt_min_interval, jiffies) &&
Eric Dumazetfc66f952010-10-08 06:37:34 +00001704 entries <= rt_max_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705 goto out;
1706
Benjamin Thery6891a342008-03-04 13:49:47 -08001707 net->ipv6.ip6_rt_gc_expire++;
Li RongQing14956642014-05-19 17:30:28 +08001708 fib6_run_gc(net->ipv6.ip6_rt_gc_expire, net, true);
Eric Dumazetfc66f952010-10-08 06:37:34 +00001709 entries = dst_entries_get_slow(ops);
1710 if (entries < ops->gc_thresh)
Daniel Lezcano7019b782008-03-04 13:50:14 -08001711 net->ipv6.ip6_rt_gc_expire = rt_gc_timeout>>1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712out:
Daniel Lezcano7019b782008-03-04 13:50:14 -08001713 net->ipv6.ip6_rt_gc_expire -= net->ipv6.ip6_rt_gc_expire>>rt_elasticity;
Eric Dumazetfc66f952010-10-08 06:37:34 +00001714 return entries > rt_max_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715}
1716
Florian Westphale715b6d2015-01-05 23:57:44 +01001717static int ip6_convert_metrics(struct mx6_config *mxc,
1718 const struct fib6_config *cfg)
1719{
Daniel Borkmannc3a8d942015-08-31 15:58:47 +02001720 bool ecn_ca = false;
Florian Westphale715b6d2015-01-05 23:57:44 +01001721 struct nlattr *nla;
1722 int remaining;
1723 u32 *mp;
1724
Ian Morris63159f22015-03-29 14:00:04 +01001725 if (!cfg->fc_mx)
Florian Westphale715b6d2015-01-05 23:57:44 +01001726 return 0;
1727
1728 mp = kzalloc(sizeof(u32) * RTAX_MAX, GFP_KERNEL);
1729 if (unlikely(!mp))
1730 return -ENOMEM;
1731
1732 nla_for_each_attr(nla, cfg->fc_mx, cfg->fc_mx_len, remaining) {
1733 int type = nla_type(nla);
Daniel Borkmann1bb14802015-08-31 15:58:45 +02001734 u32 val;
Florian Westphale715b6d2015-01-05 23:57:44 +01001735
Daniel Borkmann1bb14802015-08-31 15:58:45 +02001736 if (!type)
1737 continue;
1738 if (unlikely(type > RTAX_MAX))
1739 goto err;
Daniel Borkmannea697632015-01-05 23:57:47 +01001740
Daniel Borkmann1bb14802015-08-31 15:58:45 +02001741 if (type == RTAX_CC_ALGO) {
1742 char tmp[TCP_CA_NAME_MAX];
1743
1744 nla_strlcpy(tmp, nla, sizeof(tmp));
Daniel Borkmannc3a8d942015-08-31 15:58:47 +02001745 val = tcp_ca_get_key_by_name(tmp, &ecn_ca);
Daniel Borkmann1bb14802015-08-31 15:58:45 +02001746 if (val == TCP_CA_UNSPEC)
Florian Westphale715b6d2015-01-05 23:57:44 +01001747 goto err;
Daniel Borkmann1bb14802015-08-31 15:58:45 +02001748 } else {
1749 val = nla_get_u32(nla);
Florian Westphale715b6d2015-01-05 23:57:44 +01001750 }
Paolo Abeni626abd52016-05-13 18:33:41 +02001751 if (type == RTAX_HOPLIMIT && val > 255)
1752 val = 255;
Daniel Borkmannb8d3e412015-08-31 15:58:46 +02001753 if (type == RTAX_FEATURES && (val & ~RTAX_FEATURE_MASK))
1754 goto err;
Daniel Borkmann1bb14802015-08-31 15:58:45 +02001755
1756 mp[type - 1] = val;
1757 __set_bit(type - 1, mxc->mx_valid);
Florian Westphale715b6d2015-01-05 23:57:44 +01001758 }
1759
Daniel Borkmannc3a8d942015-08-31 15:58:47 +02001760 if (ecn_ca) {
1761 __set_bit(RTAX_FEATURES - 1, mxc->mx_valid);
1762 mp[RTAX_FEATURES - 1] |= DST_FEATURE_ECN_CA;
1763 }
Florian Westphale715b6d2015-01-05 23:57:44 +01001764
Daniel Borkmannc3a8d942015-08-31 15:58:47 +02001765 mxc->mx = mp;
Florian Westphale715b6d2015-01-05 23:57:44 +01001766 return 0;
1767 err:
1768 kfree(mp);
1769 return -EINVAL;
1770}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771
David Ahern8c145862016-04-24 21:26:04 -07001772static struct rt6_info *ip6_nh_lookup_table(struct net *net,
1773 struct fib6_config *cfg,
1774 const struct in6_addr *gw_addr)
1775{
1776 struct flowi6 fl6 = {
1777 .flowi6_oif = cfg->fc_ifindex,
1778 .daddr = *gw_addr,
1779 .saddr = cfg->fc_prefsrc,
1780 };
1781 struct fib6_table *table;
1782 struct rt6_info *rt;
David Ahernd5d32e42016-10-24 12:27:23 -07001783 int flags = RT6_LOOKUP_F_IFACE | RT6_LOOKUP_F_IGNORE_LINKSTATE;
David Ahern8c145862016-04-24 21:26:04 -07001784
1785 table = fib6_get_table(net, cfg->fc_table);
1786 if (!table)
1787 return NULL;
1788
1789 if (!ipv6_addr_any(&cfg->fc_prefsrc))
1790 flags |= RT6_LOOKUP_F_HAS_SADDR;
1791
1792 rt = ip6_pol_route(net, table, cfg->fc_ifindex, &fl6, flags);
1793
1794 /* if table lookup failed, fall back to full lookup */
1795 if (rt == net->ipv6.ip6_null_entry) {
1796 ip6_rt_put(rt);
1797 rt = NULL;
1798 }
1799
1800 return rt;
1801}
1802
David Ahern333c4302017-05-21 10:12:04 -06001803static struct rt6_info *ip6_route_info_create(struct fib6_config *cfg,
1804 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805{
Daniel Lezcano55786892008-03-04 13:47:47 -08001806 struct net *net = cfg->fc_nlinfo.nl_net;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807 struct rt6_info *rt = NULL;
1808 struct net_device *dev = NULL;
1809 struct inet6_dev *idev = NULL;
Thomas Grafc71099a2006-08-04 23:20:06 -07001810 struct fib6_table *table;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001811 int addr_type;
Roopa Prabhu8c5b83f2015-10-10 08:26:36 -07001812 int err = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813
David Ahern557c44b2017-04-19 14:19:43 -07001814 /* RTF_PCPU is an internal flag; can not be set by userspace */
David Ahernd5d531c2017-05-21 10:12:05 -06001815 if (cfg->fc_flags & RTF_PCPU) {
1816 NL_SET_ERR_MSG(extack, "Userspace can not set RTF_PCPU");
David Ahern557c44b2017-04-19 14:19:43 -07001817 goto out;
David Ahernd5d531c2017-05-21 10:12:05 -06001818 }
David Ahern557c44b2017-04-19 14:19:43 -07001819
David Ahernd5d531c2017-05-21 10:12:05 -06001820 if (cfg->fc_dst_len > 128) {
1821 NL_SET_ERR_MSG(extack, "Invalid prefix length");
Roopa Prabhu8c5b83f2015-10-10 08:26:36 -07001822 goto out;
David Ahernd5d531c2017-05-21 10:12:05 -06001823 }
1824 if (cfg->fc_src_len > 128) {
1825 NL_SET_ERR_MSG(extack, "Invalid source address length");
1826 goto out;
1827 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828#ifndef CONFIG_IPV6_SUBTREES
David Ahernd5d531c2017-05-21 10:12:05 -06001829 if (cfg->fc_src_len) {
1830 NL_SET_ERR_MSG(extack,
1831 "Specifying source address requires IPV6_SUBTREES to be enabled");
Roopa Prabhu8c5b83f2015-10-10 08:26:36 -07001832 goto out;
David Ahernd5d531c2017-05-21 10:12:05 -06001833 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834#endif
Thomas Graf86872cb2006-08-22 00:01:08 -07001835 if (cfg->fc_ifindex) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836 err = -ENODEV;
Daniel Lezcano55786892008-03-04 13:47:47 -08001837 dev = dev_get_by_index(net, cfg->fc_ifindex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838 if (!dev)
1839 goto out;
1840 idev = in6_dev_get(dev);
1841 if (!idev)
1842 goto out;
1843 }
1844
Thomas Graf86872cb2006-08-22 00:01:08 -07001845 if (cfg->fc_metric == 0)
1846 cfg->fc_metric = IP6_RT_PRIO_USER;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847
Matti Vaittinend71314b2011-11-14 00:14:49 +00001848 err = -ENOBUFS;
David S. Miller38308472011-12-03 18:02:47 -05001849 if (cfg->fc_nlinfo.nlh &&
1850 !(cfg->fc_nlinfo.nlh->nlmsg_flags & NLM_F_CREATE)) {
Matti Vaittinend71314b2011-11-14 00:14:49 +00001851 table = fib6_get_table(net, cfg->fc_table);
David S. Miller38308472011-12-03 18:02:47 -05001852 if (!table) {
Joe Perchesf3213832012-05-15 14:11:53 +00001853 pr_warn("NLM_F_CREATE should be specified when creating new route\n");
Matti Vaittinend71314b2011-11-14 00:14:49 +00001854 table = fib6_new_table(net, cfg->fc_table);
1855 }
1856 } else {
1857 table = fib6_new_table(net, cfg->fc_table);
1858 }
David S. Miller38308472011-12-03 18:02:47 -05001859
1860 if (!table)
Thomas Grafc71099a2006-08-04 23:20:06 -07001861 goto out;
Thomas Grafc71099a2006-08-04 23:20:06 -07001862
Martin KaFai Lauad706862015-08-14 11:05:52 -07001863 rt = ip6_dst_alloc(net, NULL,
1864 (cfg->fc_flags & RTF_ADDRCONF) ? 0 : DST_NOCOUNT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001865
David S. Miller38308472011-12-03 18:02:47 -05001866 if (!rt) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867 err = -ENOMEM;
1868 goto out;
1869 }
1870
Gao feng1716a962012-04-06 00:13:10 +00001871 if (cfg->fc_flags & RTF_EXPIRES)
1872 rt6_set_expires(rt, jiffies +
1873 clock_t_to_jiffies(cfg->fc_expires));
1874 else
1875 rt6_clean_expires(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876
Thomas Graf86872cb2006-08-22 00:01:08 -07001877 if (cfg->fc_protocol == RTPROT_UNSPEC)
1878 cfg->fc_protocol = RTPROT_BOOT;
1879 rt->rt6i_protocol = cfg->fc_protocol;
1880
1881 addr_type = ipv6_addr_type(&cfg->fc_dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882
1883 if (addr_type & IPV6_ADDR_MULTICAST)
Changli Gaod8d1f302010-06-10 23:31:35 -07001884 rt->dst.input = ip6_mc_input;
Maciej Żenczykowskiab79ad12010-09-27 00:07:02 +00001885 else if (cfg->fc_flags & RTF_LOCAL)
1886 rt->dst.input = ip6_input;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887 else
Changli Gaod8d1f302010-06-10 23:31:35 -07001888 rt->dst.input = ip6_forward;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001889
Changli Gaod8d1f302010-06-10 23:31:35 -07001890 rt->dst.output = ip6_output;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001891
Roopa Prabhu19e42e42015-07-21 10:43:48 +02001892 if (cfg->fc_encap) {
1893 struct lwtunnel_state *lwtstate;
1894
David Ahern30357d72017-01-30 12:07:37 -08001895 err = lwtunnel_build_state(cfg->fc_encap_type,
Tom Herbert127eb7c2015-08-24 09:45:41 -07001896 cfg->fc_encap, AF_INET6, cfg,
David Ahern9ae28722017-05-27 16:19:28 -06001897 &lwtstate, extack);
Roopa Prabhu19e42e42015-07-21 10:43:48 +02001898 if (err)
1899 goto out;
Jiri Benc61adedf2015-08-20 13:56:25 +02001900 rt->dst.lwtstate = lwtstate_get(lwtstate);
1901 if (lwtunnel_output_redirect(rt->dst.lwtstate)) {
1902 rt->dst.lwtstate->orig_output = rt->dst.output;
1903 rt->dst.output = lwtunnel_output;
Tom Herbert25368622015-08-17 13:42:24 -07001904 }
Jiri Benc61adedf2015-08-20 13:56:25 +02001905 if (lwtunnel_input_redirect(rt->dst.lwtstate)) {
1906 rt->dst.lwtstate->orig_input = rt->dst.input;
1907 rt->dst.input = lwtunnel_input;
Tom Herbert25368622015-08-17 13:42:24 -07001908 }
Roopa Prabhu19e42e42015-07-21 10:43:48 +02001909 }
1910
Thomas Graf86872cb2006-08-22 00:01:08 -07001911 ipv6_addr_prefix(&rt->rt6i_dst.addr, &cfg->fc_dst, cfg->fc_dst_len);
1912 rt->rt6i_dst.plen = cfg->fc_dst_len;
Martin KaFai Lauafc4eef2015-04-28 13:03:07 -07001913 if (rt->rt6i_dst.plen == 128)
Michal Kubečeke5fd3872014-03-27 13:04:08 +01001914 rt->dst.flags |= DST_HOST;
Michal Kubečeke5fd3872014-03-27 13:04:08 +01001915
Linus Torvalds1da177e2005-04-16 15:20:36 -07001916#ifdef CONFIG_IPV6_SUBTREES
Thomas Graf86872cb2006-08-22 00:01:08 -07001917 ipv6_addr_prefix(&rt->rt6i_src.addr, &cfg->fc_src, cfg->fc_src_len);
1918 rt->rt6i_src.plen = cfg->fc_src_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001919#endif
1920
Thomas Graf86872cb2006-08-22 00:01:08 -07001921 rt->rt6i_metric = cfg->fc_metric;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922
1923 /* We cannot add true routes via loopback here,
1924 they would result in kernel looping; promote them to reject routes
1925 */
Thomas Graf86872cb2006-08-22 00:01:08 -07001926 if ((cfg->fc_flags & RTF_REJECT) ||
David S. Miller38308472011-12-03 18:02:47 -05001927 (dev && (dev->flags & IFF_LOOPBACK) &&
1928 !(addr_type & IPV6_ADDR_LOOPBACK) &&
1929 !(cfg->fc_flags & RTF_LOCAL))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001930 /* hold loopback dev/idev if we haven't done so. */
Daniel Lezcano55786892008-03-04 13:47:47 -08001931 if (dev != net->loopback_dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932 if (dev) {
1933 dev_put(dev);
1934 in6_dev_put(idev);
1935 }
Daniel Lezcano55786892008-03-04 13:47:47 -08001936 dev = net->loopback_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001937 dev_hold(dev);
1938 idev = in6_dev_get(dev);
1939 if (!idev) {
1940 err = -ENODEV;
1941 goto out;
1942 }
1943 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944 rt->rt6i_flags = RTF_REJECT|RTF_NONEXTHOP;
Nicolas Dichtelef2c7d72012-09-05 02:12:42 +00001945 switch (cfg->fc_type) {
1946 case RTN_BLACKHOLE:
1947 rt->dst.error = -EINVAL;
Eric W. Biedermanede20592015-10-07 16:48:47 -05001948 rt->dst.output = dst_discard_out;
Kamala R7150aed2013-12-02 19:55:21 +05301949 rt->dst.input = dst_discard;
Nicolas Dichtelef2c7d72012-09-05 02:12:42 +00001950 break;
1951 case RTN_PROHIBIT:
1952 rt->dst.error = -EACCES;
Kamala R7150aed2013-12-02 19:55:21 +05301953 rt->dst.output = ip6_pkt_prohibit_out;
1954 rt->dst.input = ip6_pkt_prohibit;
Nicolas Dichtelef2c7d72012-09-05 02:12:42 +00001955 break;
Nicolas Dichtelb4949ab2012-09-06 05:53:35 +00001956 case RTN_THROW:
Nikola Forró0315e382015-09-17 16:01:32 +02001957 case RTN_UNREACHABLE:
Nicolas Dichtelef2c7d72012-09-05 02:12:42 +00001958 default:
Kamala R7150aed2013-12-02 19:55:21 +05301959 rt->dst.error = (cfg->fc_type == RTN_THROW) ? -EAGAIN
Nikola Forró0315e382015-09-17 16:01:32 +02001960 : (cfg->fc_type == RTN_UNREACHABLE)
1961 ? -EHOSTUNREACH : -ENETUNREACH;
Kamala R7150aed2013-12-02 19:55:21 +05301962 rt->dst.output = ip6_pkt_discard_out;
1963 rt->dst.input = ip6_pkt_discard;
Nicolas Dichtelef2c7d72012-09-05 02:12:42 +00001964 break;
1965 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966 goto install_route;
1967 }
1968
Thomas Graf86872cb2006-08-22 00:01:08 -07001969 if (cfg->fc_flags & RTF_GATEWAY) {
Eric Dumazetb71d1d42011-04-22 04:53:02 +00001970 const struct in6_addr *gw_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971 int gwa_type;
1972
Thomas Graf86872cb2006-08-22 00:01:08 -07001973 gw_addr = &cfg->fc_gateway;
Florian Westphal330567b2015-08-07 10:54:28 +02001974 gwa_type = ipv6_addr_type(gw_addr);
Florian Westphal48ed7b22015-05-21 00:25:41 +02001975
1976 /* if gw_addr is local we will fail to detect this in case
1977 * address is still TENTATIVE (DAD in progress). rt6_lookup()
1978 * will return already-added prefix route via interface that
1979 * prefix route was assigned to, which might be non-loopback.
1980 */
1981 err = -EINVAL;
Florian Westphal330567b2015-08-07 10:54:28 +02001982 if (ipv6_chk_addr_and_flags(net, gw_addr,
1983 gwa_type & IPV6_ADDR_LINKLOCAL ?
David Ahernd5d531c2017-05-21 10:12:05 -06001984 dev : NULL, 0, 0)) {
1985 NL_SET_ERR_MSG(extack, "Invalid gateway address");
Florian Westphal48ed7b22015-05-21 00:25:41 +02001986 goto out;
David Ahernd5d531c2017-05-21 10:12:05 -06001987 }
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001988 rt->rt6i_gateway = *gw_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001989
1990 if (gwa_type != (IPV6_ADDR_LINKLOCAL|IPV6_ADDR_UNICAST)) {
David Ahern8c145862016-04-24 21:26:04 -07001991 struct rt6_info *grt = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001992
1993 /* IPv6 strictly inhibits using not link-local
1994 addresses as nexthop address.
1995 Otherwise, router will not able to send redirects.
1996 It is very good, but in some (rare!) circumstances
1997 (SIT, PtP, NBMA NOARP links) it is handy to allow
1998 some exceptions. --ANK
Erik Nordmark96d58222016-12-03 20:57:09 -08001999 We allow IPv4-mapped nexthops to support RFC4798-type
2000 addressing
Linus Torvalds1da177e2005-04-16 15:20:36 -07002001 */
Erik Nordmark96d58222016-12-03 20:57:09 -08002002 if (!(gwa_type & (IPV6_ADDR_UNICAST |
David Ahernd5d531c2017-05-21 10:12:05 -06002003 IPV6_ADDR_MAPPED))) {
2004 NL_SET_ERR_MSG(extack,
2005 "Invalid gateway address");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002006 goto out;
David Ahernd5d531c2017-05-21 10:12:05 -06002007 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008
Vincent Bernata435a072016-09-18 17:46:07 +02002009 if (cfg->fc_table) {
David Ahern8c145862016-04-24 21:26:04 -07002010 grt = ip6_nh_lookup_table(net, cfg, gw_addr);
2011
Vincent Bernata435a072016-09-18 17:46:07 +02002012 if (grt) {
2013 if (grt->rt6i_flags & RTF_GATEWAY ||
2014 (dev && dev != grt->dst.dev)) {
2015 ip6_rt_put(grt);
2016 grt = NULL;
2017 }
2018 }
2019 }
2020
David Ahern8c145862016-04-24 21:26:04 -07002021 if (!grt)
2022 grt = rt6_lookup(net, gw_addr, NULL,
2023 cfg->fc_ifindex, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024
2025 err = -EHOSTUNREACH;
David S. Miller38308472011-12-03 18:02:47 -05002026 if (!grt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027 goto out;
2028 if (dev) {
David S. Millerd1918542011-12-28 20:19:20 -05002029 if (dev != grt->dst.dev) {
Amerigo Wang94e187c2012-10-29 00:13:19 +00002030 ip6_rt_put(grt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002031 goto out;
2032 }
2033 } else {
David S. Millerd1918542011-12-28 20:19:20 -05002034 dev = grt->dst.dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002035 idev = grt->rt6i_idev;
2036 dev_hold(dev);
2037 in6_dev_hold(grt->rt6i_idev);
2038 }
David S. Miller38308472011-12-03 18:02:47 -05002039 if (!(grt->rt6i_flags & RTF_GATEWAY))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002040 err = 0;
Amerigo Wang94e187c2012-10-29 00:13:19 +00002041 ip6_rt_put(grt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002042
2043 if (err)
2044 goto out;
2045 }
2046 err = -EINVAL;
David Ahernd5d531c2017-05-21 10:12:05 -06002047 if (!dev) {
2048 NL_SET_ERR_MSG(extack, "Egress device not specified");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002049 goto out;
David Ahernd5d531c2017-05-21 10:12:05 -06002050 } else if (dev->flags & IFF_LOOPBACK) {
2051 NL_SET_ERR_MSG(extack,
2052 "Egress device can not be loopback device for this route");
2053 goto out;
2054 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002055 }
2056
2057 err = -ENODEV;
David S. Miller38308472011-12-03 18:02:47 -05002058 if (!dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059 goto out;
2060
Daniel Walterc3968a82011-04-13 21:10:57 +00002061 if (!ipv6_addr_any(&cfg->fc_prefsrc)) {
2062 if (!ipv6_chk_addr(net, &cfg->fc_prefsrc, dev, 0)) {
David Ahernd5d531c2017-05-21 10:12:05 -06002063 NL_SET_ERR_MSG(extack, "Invalid source address");
Daniel Walterc3968a82011-04-13 21:10:57 +00002064 err = -EINVAL;
2065 goto out;
2066 }
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00002067 rt->rt6i_prefsrc.addr = cfg->fc_prefsrc;
Daniel Walterc3968a82011-04-13 21:10:57 +00002068 rt->rt6i_prefsrc.plen = 128;
2069 } else
2070 rt->rt6i_prefsrc.plen = 0;
2071
Thomas Graf86872cb2006-08-22 00:01:08 -07002072 rt->rt6i_flags = cfg->fc_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073
2074install_route:
Changli Gaod8d1f302010-06-10 23:31:35 -07002075 rt->dst.dev = dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002076 rt->rt6i_idev = idev;
Thomas Grafc71099a2006-08-04 23:20:06 -07002077 rt->rt6i_table = table;
Daniel Lezcano63152fc2008-03-03 23:31:11 -08002078
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09002079 cfg->fc_nlinfo.nl_net = dev_net(dev);
Daniel Lezcano63152fc2008-03-03 23:31:11 -08002080
Roopa Prabhu8c5b83f2015-10-10 08:26:36 -07002081 return rt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082out:
2083 if (dev)
2084 dev_put(dev);
2085 if (idev)
2086 in6_dev_put(idev);
Wei Wang587fea72017-06-17 10:42:36 -07002087 if (rt)
2088 dst_release_immediate(&rt->dst);
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07002089
Roopa Prabhu8c5b83f2015-10-10 08:26:36 -07002090 return ERR_PTR(err);
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07002091}
2092
David Ahern333c4302017-05-21 10:12:04 -06002093int ip6_route_add(struct fib6_config *cfg,
2094 struct netlink_ext_ack *extack)
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07002095{
2096 struct mx6_config mxc = { .mx = NULL, };
Roopa Prabhu8c5b83f2015-10-10 08:26:36 -07002097 struct rt6_info *rt;
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07002098 int err;
2099
David Ahern333c4302017-05-21 10:12:04 -06002100 rt = ip6_route_info_create(cfg, extack);
Roopa Prabhu8c5b83f2015-10-10 08:26:36 -07002101 if (IS_ERR(rt)) {
2102 err = PTR_ERR(rt);
2103 rt = NULL;
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07002104 goto out;
Roopa Prabhu8c5b83f2015-10-10 08:26:36 -07002105 }
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07002106
2107 err = ip6_convert_metrics(&mxc, cfg);
2108 if (err)
2109 goto out;
2110
David Ahern333c4302017-05-21 10:12:04 -06002111 err = __ip6_ins_rt(rt, &cfg->fc_nlinfo, &mxc, extack);
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07002112
2113 kfree(mxc.mx);
2114
2115 return err;
2116out:
Wei Wang587fea72017-06-17 10:42:36 -07002117 if (rt)
2118 dst_release_immediate(&rt->dst);
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07002119
Linus Torvalds1da177e2005-04-16 15:20:36 -07002120 return err;
2121}
2122
Thomas Graf86872cb2006-08-22 00:01:08 -07002123static int __ip6_del_rt(struct rt6_info *rt, struct nl_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002124{
2125 int err;
Thomas Grafc71099a2006-08-04 23:20:06 -07002126 struct fib6_table *table;
David S. Millerd1918542011-12-28 20:19:20 -05002127 struct net *net = dev_net(rt->dst.dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128
Wei Wanga4c2fd72017-06-17 10:42:42 -07002129 if (rt == net->ipv6.ip6_null_entry) {
Gao feng6825a262012-09-19 19:25:34 +00002130 err = -ENOENT;
2131 goto out;
2132 }
Patrick McHardy6c813a72006-08-06 22:22:47 -07002133
Thomas Grafc71099a2006-08-04 23:20:06 -07002134 table = rt->rt6i_table;
2135 write_lock_bh(&table->tb6_lock);
Thomas Graf86872cb2006-08-22 00:01:08 -07002136 err = fib6_del(rt, info);
Thomas Grafc71099a2006-08-04 23:20:06 -07002137 write_unlock_bh(&table->tb6_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002138
Gao feng6825a262012-09-19 19:25:34 +00002139out:
Amerigo Wang94e187c2012-10-29 00:13:19 +00002140 ip6_rt_put(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002141 return err;
2142}
2143
Thomas Grafe0a1ad732006-08-22 00:00:21 -07002144int ip6_del_rt(struct rt6_info *rt)
2145{
Denis V. Lunev4d1169c2008-01-10 03:26:13 -08002146 struct nl_info info = {
David S. Millerd1918542011-12-28 20:19:20 -05002147 .nl_net = dev_net(rt->dst.dev),
Denis V. Lunev4d1169c2008-01-10 03:26:13 -08002148 };
Denis V. Lunev528c4ce2007-12-13 09:45:12 -08002149 return __ip6_del_rt(rt, &info);
Thomas Grafe0a1ad732006-08-22 00:00:21 -07002150}
2151
David Ahern0ae81332017-02-02 12:37:08 -08002152static int __ip6_del_rt_siblings(struct rt6_info *rt, struct fib6_config *cfg)
2153{
2154 struct nl_info *info = &cfg->fc_nlinfo;
WANG Conge3330032017-02-27 16:07:43 -08002155 struct net *net = info->nl_net;
David Ahern16a16cd2017-02-02 12:37:11 -08002156 struct sk_buff *skb = NULL;
David Ahern0ae81332017-02-02 12:37:08 -08002157 struct fib6_table *table;
WANG Conge3330032017-02-27 16:07:43 -08002158 int err = -ENOENT;
David Ahern0ae81332017-02-02 12:37:08 -08002159
WANG Conge3330032017-02-27 16:07:43 -08002160 if (rt == net->ipv6.ip6_null_entry)
2161 goto out_put;
David Ahern0ae81332017-02-02 12:37:08 -08002162 table = rt->rt6i_table;
2163 write_lock_bh(&table->tb6_lock);
2164
2165 if (rt->rt6i_nsiblings && cfg->fc_delete_all_nh) {
2166 struct rt6_info *sibling, *next_sibling;
2167
David Ahern16a16cd2017-02-02 12:37:11 -08002168 /* prefer to send a single notification with all hops */
2169 skb = nlmsg_new(rt6_nlmsg_size(rt), gfp_any());
2170 if (skb) {
2171 u32 seq = info->nlh ? info->nlh->nlmsg_seq : 0;
2172
WANG Conge3330032017-02-27 16:07:43 -08002173 if (rt6_fill_node(net, skb, rt,
David Ahern16a16cd2017-02-02 12:37:11 -08002174 NULL, NULL, 0, RTM_DELROUTE,
2175 info->portid, seq, 0) < 0) {
2176 kfree_skb(skb);
2177 skb = NULL;
2178 } else
2179 info->skip_notify = 1;
2180 }
2181
David Ahern0ae81332017-02-02 12:37:08 -08002182 list_for_each_entry_safe(sibling, next_sibling,
2183 &rt->rt6i_siblings,
2184 rt6i_siblings) {
2185 err = fib6_del(sibling, info);
2186 if (err)
WANG Conge3330032017-02-27 16:07:43 -08002187 goto out_unlock;
David Ahern0ae81332017-02-02 12:37:08 -08002188 }
2189 }
2190
2191 err = fib6_del(rt, info);
WANG Conge3330032017-02-27 16:07:43 -08002192out_unlock:
David Ahern0ae81332017-02-02 12:37:08 -08002193 write_unlock_bh(&table->tb6_lock);
WANG Conge3330032017-02-27 16:07:43 -08002194out_put:
David Ahern0ae81332017-02-02 12:37:08 -08002195 ip6_rt_put(rt);
David Ahern16a16cd2017-02-02 12:37:11 -08002196
2197 if (skb) {
WANG Conge3330032017-02-27 16:07:43 -08002198 rtnl_notify(skb, net, info->portid, RTNLGRP_IPV6_ROUTE,
David Ahern16a16cd2017-02-02 12:37:11 -08002199 info->nlh, gfp_any());
2200 }
David Ahern0ae81332017-02-02 12:37:08 -08002201 return err;
2202}
2203
David Ahern333c4302017-05-21 10:12:04 -06002204static int ip6_route_del(struct fib6_config *cfg,
2205 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002206{
Thomas Grafc71099a2006-08-04 23:20:06 -07002207 struct fib6_table *table;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002208 struct fib6_node *fn;
2209 struct rt6_info *rt;
2210 int err = -ESRCH;
2211
Daniel Lezcano55786892008-03-04 13:47:47 -08002212 table = fib6_get_table(cfg->fc_nlinfo.nl_net, cfg->fc_table);
David Ahernd5d531c2017-05-21 10:12:05 -06002213 if (!table) {
2214 NL_SET_ERR_MSG(extack, "FIB table does not exist");
Thomas Grafc71099a2006-08-04 23:20:06 -07002215 return err;
David Ahernd5d531c2017-05-21 10:12:05 -06002216 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002217
Thomas Grafc71099a2006-08-04 23:20:06 -07002218 read_lock_bh(&table->tb6_lock);
2219
2220 fn = fib6_locate(&table->tb6_root,
Thomas Graf86872cb2006-08-22 00:01:08 -07002221 &cfg->fc_dst, cfg->fc_dst_len,
2222 &cfg->fc_src, cfg->fc_src_len);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002223
Linus Torvalds1da177e2005-04-16 15:20:36 -07002224 if (fn) {
Changli Gaod8d1f302010-06-10 23:31:35 -07002225 for (rt = fn->leaf; rt; rt = rt->dst.rt6_next) {
Martin KaFai Lau1f56a01f2015-04-28 13:03:03 -07002226 if ((rt->rt6i_flags & RTF_CACHE) &&
2227 !(cfg->fc_flags & RTF_CACHE))
2228 continue;
Thomas Graf86872cb2006-08-22 00:01:08 -07002229 if (cfg->fc_ifindex &&
David S. Millerd1918542011-12-28 20:19:20 -05002230 (!rt->dst.dev ||
2231 rt->dst.dev->ifindex != cfg->fc_ifindex))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002232 continue;
Thomas Graf86872cb2006-08-22 00:01:08 -07002233 if (cfg->fc_flags & RTF_GATEWAY &&
2234 !ipv6_addr_equal(&cfg->fc_gateway, &rt->rt6i_gateway))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002235 continue;
Thomas Graf86872cb2006-08-22 00:01:08 -07002236 if (cfg->fc_metric && cfg->fc_metric != rt->rt6i_metric)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002237 continue;
Mantas Mc2ed1882016-12-16 10:30:59 +02002238 if (cfg->fc_protocol && cfg->fc_protocol != rt->rt6i_protocol)
2239 continue;
Changli Gaod8d1f302010-06-10 23:31:35 -07002240 dst_hold(&rt->dst);
Thomas Grafc71099a2006-08-04 23:20:06 -07002241 read_unlock_bh(&table->tb6_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002242
David Ahern0ae81332017-02-02 12:37:08 -08002243 /* if gateway was specified only delete the one hop */
2244 if (cfg->fc_flags & RTF_GATEWAY)
2245 return __ip6_del_rt(rt, &cfg->fc_nlinfo);
2246
2247 return __ip6_del_rt_siblings(rt, cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002248 }
2249 }
Thomas Grafc71099a2006-08-04 23:20:06 -07002250 read_unlock_bh(&table->tb6_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002251
2252 return err;
2253}
2254
David S. Miller6700c272012-07-17 03:29:28 -07002255static void rt6_do_redirect(struct dst_entry *dst, struct sock *sk, struct sk_buff *skb)
YOSHIFUJI Hideakia6279452006-08-23 17:18:26 -07002256{
YOSHIFUJI Hideakia6279452006-08-23 17:18:26 -07002257 struct netevent_redirect netevent;
David S. Millere8599ff2012-07-11 23:43:53 -07002258 struct rt6_info *rt, *nrt = NULL;
David S. Millere8599ff2012-07-11 23:43:53 -07002259 struct ndisc_options ndopts;
2260 struct inet6_dev *in6_dev;
2261 struct neighbour *neigh;
YOSHIFUJI Hideaki / 吉藤英明71bcdba2013-01-05 16:34:51 +00002262 struct rd_msg *msg;
David S. Miller6e157b62012-07-12 00:05:02 -07002263 int optlen, on_link;
2264 u8 *lladdr;
David S. Millere8599ff2012-07-11 23:43:53 -07002265
Simon Horman29a3cad2013-05-28 20:34:26 +00002266 optlen = skb_tail_pointer(skb) - skb_transport_header(skb);
YOSHIFUJI Hideaki / 吉藤英明71bcdba2013-01-05 16:34:51 +00002267 optlen -= sizeof(*msg);
David S. Millere8599ff2012-07-11 23:43:53 -07002268
2269 if (optlen < 0) {
David S. Miller6e157b62012-07-12 00:05:02 -07002270 net_dbg_ratelimited("rt6_do_redirect: packet too short\n");
David S. Millere8599ff2012-07-11 23:43:53 -07002271 return;
2272 }
2273
YOSHIFUJI Hideaki / 吉藤英明71bcdba2013-01-05 16:34:51 +00002274 msg = (struct rd_msg *)icmp6_hdr(skb);
David S. Millere8599ff2012-07-11 23:43:53 -07002275
YOSHIFUJI Hideaki / 吉藤英明71bcdba2013-01-05 16:34:51 +00002276 if (ipv6_addr_is_multicast(&msg->dest)) {
David S. Miller6e157b62012-07-12 00:05:02 -07002277 net_dbg_ratelimited("rt6_do_redirect: destination address is multicast\n");
David S. Millere8599ff2012-07-11 23:43:53 -07002278 return;
2279 }
2280
David S. Miller6e157b62012-07-12 00:05:02 -07002281 on_link = 0;
YOSHIFUJI Hideaki / 吉藤英明71bcdba2013-01-05 16:34:51 +00002282 if (ipv6_addr_equal(&msg->dest, &msg->target)) {
David S. Millere8599ff2012-07-11 23:43:53 -07002283 on_link = 1;
YOSHIFUJI Hideaki / 吉藤英明71bcdba2013-01-05 16:34:51 +00002284 } else if (ipv6_addr_type(&msg->target) !=
David S. Millere8599ff2012-07-11 23:43:53 -07002285 (IPV6_ADDR_UNICAST|IPV6_ADDR_LINKLOCAL)) {
David S. Miller6e157b62012-07-12 00:05:02 -07002286 net_dbg_ratelimited("rt6_do_redirect: target address is not link-local unicast\n");
David S. Millere8599ff2012-07-11 23:43:53 -07002287 return;
2288 }
2289
2290 in6_dev = __in6_dev_get(skb->dev);
2291 if (!in6_dev)
2292 return;
2293 if (in6_dev->cnf.forwarding || !in6_dev->cnf.accept_redirects)
2294 return;
2295
2296 /* RFC2461 8.1:
2297 * The IP source address of the Redirect MUST be the same as the current
2298 * first-hop router for the specified ICMP Destination Address.
2299 */
2300
Alexander Aringf997c552016-06-15 21:20:23 +02002301 if (!ndisc_parse_options(skb->dev, msg->opt, optlen, &ndopts)) {
David S. Millere8599ff2012-07-11 23:43:53 -07002302 net_dbg_ratelimited("rt6_redirect: invalid ND options\n");
2303 return;
2304 }
David S. Miller6e157b62012-07-12 00:05:02 -07002305
2306 lladdr = NULL;
David S. Millere8599ff2012-07-11 23:43:53 -07002307 if (ndopts.nd_opts_tgt_lladdr) {
2308 lladdr = ndisc_opt_addr_data(ndopts.nd_opts_tgt_lladdr,
2309 skb->dev);
2310 if (!lladdr) {
2311 net_dbg_ratelimited("rt6_redirect: invalid link-layer address length\n");
2312 return;
2313 }
2314 }
2315
David S. Miller6e157b62012-07-12 00:05:02 -07002316 rt = (struct rt6_info *) dst;
Matthias Schifferec13ad12015-11-02 01:24:38 +01002317 if (rt->rt6i_flags & RTF_REJECT) {
David S. Miller6e157b62012-07-12 00:05:02 -07002318 net_dbg_ratelimited("rt6_redirect: source isn't a valid nexthop for redirect target\n");
2319 return;
2320 }
2321
2322 /* Redirect received -> path was valid.
2323 * Look, redirects are sent only in response to data packets,
2324 * so that this nexthop apparently is reachable. --ANK
2325 */
Julian Anastasov0dec8792017-02-06 23:14:16 +02002326 dst_confirm_neigh(&rt->dst, &ipv6_hdr(skb)->saddr);
David S. Miller6e157b62012-07-12 00:05:02 -07002327
YOSHIFUJI Hideaki / 吉藤英明71bcdba2013-01-05 16:34:51 +00002328 neigh = __neigh_lookup(&nd_tbl, &msg->target, skb->dev, 1);
David S. Millere8599ff2012-07-11 23:43:53 -07002329 if (!neigh)
2330 return;
2331
Linus Torvalds1da177e2005-04-16 15:20:36 -07002332 /*
2333 * We have finally decided to accept it.
2334 */
2335
Alexander Aringf997c552016-06-15 21:20:23 +02002336 ndisc_update(skb->dev, neigh, lladdr, NUD_STALE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002337 NEIGH_UPDATE_F_WEAK_OVERRIDE|
2338 NEIGH_UPDATE_F_OVERRIDE|
2339 (on_link ? 0 : (NEIGH_UPDATE_F_OVERRIDE_ISROUTER|
Alexander Aringf997c552016-06-15 21:20:23 +02002340 NEIGH_UPDATE_F_ISROUTER)),
2341 NDISC_REDIRECT, &ndopts);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002342
Martin KaFai Lau83a09ab2015-05-22 20:56:05 -07002343 nrt = ip6_rt_cache_alloc(rt, &msg->dest, NULL);
David S. Miller38308472011-12-03 18:02:47 -05002344 if (!nrt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002345 goto out;
2346
2347 nrt->rt6i_flags = RTF_GATEWAY|RTF_UP|RTF_DYNAMIC|RTF_CACHE;
2348 if (on_link)
2349 nrt->rt6i_flags &= ~RTF_GATEWAY;
2350
Xin Longb91d5322017-08-03 14:13:46 +08002351 nrt->rt6i_protocol = RTPROT_REDIRECT;
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00002352 nrt->rt6i_gateway = *(struct in6_addr *)neigh->primary_key;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002353
Thomas Graf40e22e82006-08-22 00:00:45 -07002354 if (ip6_ins_rt(nrt))
Wei Wang1cfb71e2017-06-17 10:42:33 -07002355 goto out_release;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002356
Changli Gaod8d1f302010-06-10 23:31:35 -07002357 netevent.old = &rt->dst;
2358 netevent.new = &nrt->dst;
YOSHIFUJI Hideaki / 吉藤英明71bcdba2013-01-05 16:34:51 +00002359 netevent.daddr = &msg->dest;
YOSHIFUJI Hideaki / 吉藤英明60592832013-01-14 09:28:27 +00002360 netevent.neigh = neigh;
Tom Tucker8d717402006-07-30 20:43:36 -07002361 call_netevent_notifiers(NETEVENT_REDIRECT, &netevent);
2362
David S. Miller38308472011-12-03 18:02:47 -05002363 if (rt->rt6i_flags & RTF_CACHE) {
David S. Miller6e157b62012-07-12 00:05:02 -07002364 rt = (struct rt6_info *) dst_clone(&rt->dst);
Thomas Grafe0a1ad732006-08-22 00:00:21 -07002365 ip6_del_rt(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002366 }
2367
Wei Wang1cfb71e2017-06-17 10:42:33 -07002368out_release:
2369 /* Release the reference taken in
2370 * ip6_rt_cache_alloc()
2371 */
2372 dst_release(&nrt->dst);
2373
Linus Torvalds1da177e2005-04-16 15:20:36 -07002374out:
David S. Millere8599ff2012-07-11 23:43:53 -07002375 neigh_release(neigh);
David S. Miller6e157b62012-07-12 00:05:02 -07002376}
2377
Linus Torvalds1da177e2005-04-16 15:20:36 -07002378/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002379 * Misc support functions
2380 */
2381
Martin KaFai Lau4b32b5a2015-04-28 13:03:06 -07002382static void rt6_set_from(struct rt6_info *rt, struct rt6_info *from)
2383{
2384 BUG_ON(from->dst.from);
2385
2386 rt->rt6i_flags &= ~RTF_EXPIRES;
2387 dst_hold(&from->dst);
2388 rt->dst.from = &from->dst;
2389 dst_init_metrics(&rt->dst, dst_metrics_ptr(&from->dst), true);
2390}
2391
Martin KaFai Lau83a09ab2015-05-22 20:56:05 -07002392static void ip6_rt_copy_init(struct rt6_info *rt, struct rt6_info *ort)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002393{
Martin KaFai Lau83a09ab2015-05-22 20:56:05 -07002394 rt->dst.input = ort->dst.input;
2395 rt->dst.output = ort->dst.output;
2396 rt->rt6i_dst = ort->rt6i_dst;
2397 rt->dst.error = ort->dst.error;
2398 rt->rt6i_idev = ort->rt6i_idev;
2399 if (rt->rt6i_idev)
2400 in6_dev_hold(rt->rt6i_idev);
2401 rt->dst.lastuse = jiffies;
2402 rt->rt6i_gateway = ort->rt6i_gateway;
2403 rt->rt6i_flags = ort->rt6i_flags;
2404 rt6_set_from(rt, ort);
2405 rt->rt6i_metric = ort->rt6i_metric;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002406#ifdef CONFIG_IPV6_SUBTREES
Martin KaFai Lau83a09ab2015-05-22 20:56:05 -07002407 rt->rt6i_src = ort->rt6i_src;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002408#endif
Martin KaFai Lau83a09ab2015-05-22 20:56:05 -07002409 rt->rt6i_prefsrc = ort->rt6i_prefsrc;
2410 rt->rt6i_table = ort->rt6i_table;
Jiri Benc61adedf2015-08-20 13:56:25 +02002411 rt->dst.lwtstate = lwtstate_get(ort->dst.lwtstate);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002412}
2413
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08002414#ifdef CONFIG_IPV6_ROUTE_INFO
Daniel Lezcanoefa2cea2008-03-04 13:46:48 -08002415static struct rt6_info *rt6_get_route_info(struct net *net,
Eric Dumazetb71d1d42011-04-22 04:53:02 +00002416 const struct in6_addr *prefix, int prefixlen,
David Ahern830218c2016-10-24 10:52:35 -07002417 const struct in6_addr *gwaddr,
2418 struct net_device *dev)
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08002419{
David Ahern830218c2016-10-24 10:52:35 -07002420 u32 tb_id = l3mdev_fib_table(dev) ? : RT6_TABLE_INFO;
2421 int ifindex = dev->ifindex;
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08002422 struct fib6_node *fn;
2423 struct rt6_info *rt = NULL;
Thomas Grafc71099a2006-08-04 23:20:06 -07002424 struct fib6_table *table;
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08002425
David Ahern830218c2016-10-24 10:52:35 -07002426 table = fib6_get_table(net, tb_id);
David S. Miller38308472011-12-03 18:02:47 -05002427 if (!table)
Thomas Grafc71099a2006-08-04 23:20:06 -07002428 return NULL;
2429
Li RongQing5744dd92012-09-11 21:59:01 +00002430 read_lock_bh(&table->tb6_lock);
Ian Morris67ba4152014-08-24 21:53:10 +01002431 fn = fib6_locate(&table->tb6_root, prefix, prefixlen, NULL, 0);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08002432 if (!fn)
2433 goto out;
2434
Changli Gaod8d1f302010-06-10 23:31:35 -07002435 for (rt = fn->leaf; rt; rt = rt->dst.rt6_next) {
David S. Millerd1918542011-12-28 20:19:20 -05002436 if (rt->dst.dev->ifindex != ifindex)
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08002437 continue;
2438 if ((rt->rt6i_flags & (RTF_ROUTEINFO|RTF_GATEWAY)) != (RTF_ROUTEINFO|RTF_GATEWAY))
2439 continue;
2440 if (!ipv6_addr_equal(&rt->rt6i_gateway, gwaddr))
2441 continue;
Changli Gaod8d1f302010-06-10 23:31:35 -07002442 dst_hold(&rt->dst);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08002443 break;
2444 }
2445out:
Li RongQing5744dd92012-09-11 21:59:01 +00002446 read_unlock_bh(&table->tb6_lock);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08002447 return rt;
2448}
2449
Daniel Lezcanoefa2cea2008-03-04 13:46:48 -08002450static struct rt6_info *rt6_add_route_info(struct net *net,
Eric Dumazetb71d1d42011-04-22 04:53:02 +00002451 const struct in6_addr *prefix, int prefixlen,
David Ahern830218c2016-10-24 10:52:35 -07002452 const struct in6_addr *gwaddr,
2453 struct net_device *dev,
Eric Dumazet95c96172012-04-15 05:58:06 +00002454 unsigned int pref)
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08002455{
Thomas Graf86872cb2006-08-22 00:01:08 -07002456 struct fib6_config cfg = {
Rami Rosen238fc7e2008-02-09 23:43:11 -08002457 .fc_metric = IP6_RT_PRIO_USER,
David Ahern830218c2016-10-24 10:52:35 -07002458 .fc_ifindex = dev->ifindex,
Thomas Graf86872cb2006-08-22 00:01:08 -07002459 .fc_dst_len = prefixlen,
2460 .fc_flags = RTF_GATEWAY | RTF_ADDRCONF | RTF_ROUTEINFO |
2461 RTF_UP | RTF_PREF(pref),
Xin Longb91d5322017-08-03 14:13:46 +08002462 .fc_protocol = RTPROT_RA,
Eric W. Biederman15e47302012-09-07 20:12:54 +00002463 .fc_nlinfo.portid = 0,
Daniel Lezcanoefa2cea2008-03-04 13:46:48 -08002464 .fc_nlinfo.nlh = NULL,
2465 .fc_nlinfo.nl_net = net,
Thomas Graf86872cb2006-08-22 00:01:08 -07002466 };
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08002467
David Ahern830218c2016-10-24 10:52:35 -07002468 cfg.fc_table = l3mdev_fib_table(dev) ? : RT6_TABLE_INFO,
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00002469 cfg.fc_dst = *prefix;
2470 cfg.fc_gateway = *gwaddr;
Thomas Graf86872cb2006-08-22 00:01:08 -07002471
YOSHIFUJI Hideakie317da92006-03-20 17:06:42 -08002472 /* We should treat it as a default route if prefix length is 0. */
2473 if (!prefixlen)
Thomas Graf86872cb2006-08-22 00:01:08 -07002474 cfg.fc_flags |= RTF_DEFAULT;
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08002475
David Ahern333c4302017-05-21 10:12:04 -06002476 ip6_route_add(&cfg, NULL);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08002477
David Ahern830218c2016-10-24 10:52:35 -07002478 return rt6_get_route_info(net, prefix, prefixlen, gwaddr, dev);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08002479}
2480#endif
2481
Eric Dumazetb71d1d42011-04-22 04:53:02 +00002482struct rt6_info *rt6_get_dflt_router(const struct in6_addr *addr, struct net_device *dev)
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002483{
David Ahern830218c2016-10-24 10:52:35 -07002484 u32 tb_id = l3mdev_fib_table(dev) ? : RT6_TABLE_DFLT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002485 struct rt6_info *rt;
Thomas Grafc71099a2006-08-04 23:20:06 -07002486 struct fib6_table *table;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002487
David Ahern830218c2016-10-24 10:52:35 -07002488 table = fib6_get_table(dev_net(dev), tb_id);
David S. Miller38308472011-12-03 18:02:47 -05002489 if (!table)
Thomas Grafc71099a2006-08-04 23:20:06 -07002490 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002491
Li RongQing5744dd92012-09-11 21:59:01 +00002492 read_lock_bh(&table->tb6_lock);
Ian Morris67ba4152014-08-24 21:53:10 +01002493 for (rt = table->tb6_root.leaf; rt; rt = rt->dst.rt6_next) {
David S. Millerd1918542011-12-28 20:19:20 -05002494 if (dev == rt->dst.dev &&
YOSHIFUJI Hideaki045927f2006-03-20 17:00:48 -08002495 ((rt->rt6i_flags & (RTF_ADDRCONF | RTF_DEFAULT)) == (RTF_ADDRCONF | RTF_DEFAULT)) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07002496 ipv6_addr_equal(&rt->rt6i_gateway, addr))
2497 break;
2498 }
2499 if (rt)
Changli Gaod8d1f302010-06-10 23:31:35 -07002500 dst_hold(&rt->dst);
Li RongQing5744dd92012-09-11 21:59:01 +00002501 read_unlock_bh(&table->tb6_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002502 return rt;
2503}
2504
Eric Dumazetb71d1d42011-04-22 04:53:02 +00002505struct rt6_info *rt6_add_dflt_router(const struct in6_addr *gwaddr,
YOSHIFUJI Hideakiebacaaa2006-03-20 17:04:53 -08002506 struct net_device *dev,
2507 unsigned int pref)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002508{
Thomas Graf86872cb2006-08-22 00:01:08 -07002509 struct fib6_config cfg = {
David Ahernca254492015-10-12 11:47:10 -07002510 .fc_table = l3mdev_fib_table(dev) ? : RT6_TABLE_DFLT,
Rami Rosen238fc7e2008-02-09 23:43:11 -08002511 .fc_metric = IP6_RT_PRIO_USER,
Thomas Graf86872cb2006-08-22 00:01:08 -07002512 .fc_ifindex = dev->ifindex,
2513 .fc_flags = RTF_GATEWAY | RTF_ADDRCONF | RTF_DEFAULT |
2514 RTF_UP | RTF_EXPIRES | RTF_PREF(pref),
Xin Longb91d5322017-08-03 14:13:46 +08002515 .fc_protocol = RTPROT_RA,
Eric W. Biederman15e47302012-09-07 20:12:54 +00002516 .fc_nlinfo.portid = 0,
Daniel Lezcano55786892008-03-04 13:47:47 -08002517 .fc_nlinfo.nlh = NULL,
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09002518 .fc_nlinfo.nl_net = dev_net(dev),
Thomas Graf86872cb2006-08-22 00:01:08 -07002519 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002520
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00002521 cfg.fc_gateway = *gwaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002522
David Ahern333c4302017-05-21 10:12:04 -06002523 if (!ip6_route_add(&cfg, NULL)) {
David Ahern830218c2016-10-24 10:52:35 -07002524 struct fib6_table *table;
2525
2526 table = fib6_get_table(dev_net(dev), cfg.fc_table);
2527 if (table)
2528 table->flags |= RT6_TABLE_HAS_DFLT_ROUTER;
2529 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002530
Linus Torvalds1da177e2005-04-16 15:20:36 -07002531 return rt6_get_dflt_router(gwaddr, dev);
2532}
2533
David Ahern830218c2016-10-24 10:52:35 -07002534static void __rt6_purge_dflt_routers(struct fib6_table *table)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002535{
2536 struct rt6_info *rt;
2537
2538restart:
Thomas Grafc71099a2006-08-04 23:20:06 -07002539 read_lock_bh(&table->tb6_lock);
Changli Gaod8d1f302010-06-10 23:31:35 -07002540 for (rt = table->tb6_root.leaf; rt; rt = rt->dst.rt6_next) {
Lorenzo Colitti3e8b0ac2013-03-03 20:46:46 +00002541 if (rt->rt6i_flags & (RTF_DEFAULT | RTF_ADDRCONF) &&
2542 (!rt->rt6i_idev || rt->rt6i_idev->cnf.accept_ra != 2)) {
Changli Gaod8d1f302010-06-10 23:31:35 -07002543 dst_hold(&rt->dst);
Thomas Grafc71099a2006-08-04 23:20:06 -07002544 read_unlock_bh(&table->tb6_lock);
Thomas Grafe0a1ad732006-08-22 00:00:21 -07002545 ip6_del_rt(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002546 goto restart;
2547 }
2548 }
Thomas Grafc71099a2006-08-04 23:20:06 -07002549 read_unlock_bh(&table->tb6_lock);
David Ahern830218c2016-10-24 10:52:35 -07002550
2551 table->flags &= ~RT6_TABLE_HAS_DFLT_ROUTER;
2552}
2553
2554void rt6_purge_dflt_routers(struct net *net)
2555{
2556 struct fib6_table *table;
2557 struct hlist_head *head;
2558 unsigned int h;
2559
2560 rcu_read_lock();
2561
2562 for (h = 0; h < FIB6_TABLE_HASHSZ; h++) {
2563 head = &net->ipv6.fib_table_hash[h];
2564 hlist_for_each_entry_rcu(table, head, tb6_hlist) {
2565 if (table->flags & RT6_TABLE_HAS_DFLT_ROUTER)
2566 __rt6_purge_dflt_routers(table);
2567 }
2568 }
2569
2570 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002571}
2572
Daniel Lezcano55786892008-03-04 13:47:47 -08002573static void rtmsg_to_fib6_config(struct net *net,
2574 struct in6_rtmsg *rtmsg,
Thomas Graf86872cb2006-08-22 00:01:08 -07002575 struct fib6_config *cfg)
2576{
2577 memset(cfg, 0, sizeof(*cfg));
2578
David Ahernca254492015-10-12 11:47:10 -07002579 cfg->fc_table = l3mdev_fib_table_by_index(net, rtmsg->rtmsg_ifindex) ?
2580 : RT6_TABLE_MAIN;
Thomas Graf86872cb2006-08-22 00:01:08 -07002581 cfg->fc_ifindex = rtmsg->rtmsg_ifindex;
2582 cfg->fc_metric = rtmsg->rtmsg_metric;
2583 cfg->fc_expires = rtmsg->rtmsg_info;
2584 cfg->fc_dst_len = rtmsg->rtmsg_dst_len;
2585 cfg->fc_src_len = rtmsg->rtmsg_src_len;
2586 cfg->fc_flags = rtmsg->rtmsg_flags;
2587
Daniel Lezcano55786892008-03-04 13:47:47 -08002588 cfg->fc_nlinfo.nl_net = net;
Benjamin Theryf1243c22008-02-26 18:10:03 -08002589
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00002590 cfg->fc_dst = rtmsg->rtmsg_dst;
2591 cfg->fc_src = rtmsg->rtmsg_src;
2592 cfg->fc_gateway = rtmsg->rtmsg_gateway;
Thomas Graf86872cb2006-08-22 00:01:08 -07002593}
2594
Daniel Lezcano55786892008-03-04 13:47:47 -08002595int ipv6_route_ioctl(struct net *net, unsigned int cmd, void __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002596{
Thomas Graf86872cb2006-08-22 00:01:08 -07002597 struct fib6_config cfg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002598 struct in6_rtmsg rtmsg;
2599 int err;
2600
Ian Morris67ba4152014-08-24 21:53:10 +01002601 switch (cmd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002602 case SIOCADDRT: /* Add a route */
2603 case SIOCDELRT: /* Delete a route */
Eric W. Biedermanaf31f412012-11-16 03:03:06 +00002604 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002605 return -EPERM;
2606 err = copy_from_user(&rtmsg, arg,
2607 sizeof(struct in6_rtmsg));
2608 if (err)
2609 return -EFAULT;
Thomas Graf86872cb2006-08-22 00:01:08 -07002610
Daniel Lezcano55786892008-03-04 13:47:47 -08002611 rtmsg_to_fib6_config(net, &rtmsg, &cfg);
Thomas Graf86872cb2006-08-22 00:01:08 -07002612
Linus Torvalds1da177e2005-04-16 15:20:36 -07002613 rtnl_lock();
2614 switch (cmd) {
2615 case SIOCADDRT:
David Ahern333c4302017-05-21 10:12:04 -06002616 err = ip6_route_add(&cfg, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002617 break;
2618 case SIOCDELRT:
David Ahern333c4302017-05-21 10:12:04 -06002619 err = ip6_route_del(&cfg, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002620 break;
2621 default:
2622 err = -EINVAL;
2623 }
2624 rtnl_unlock();
2625
2626 return err;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07002627 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002628
2629 return -EINVAL;
2630}
2631
2632/*
2633 * Drop the packet on the floor
2634 */
2635
Brian Haleyd5fdd6b2009-06-23 04:31:07 -07002636static int ip6_pkt_drop(struct sk_buff *skb, u8 code, int ipstats_mib_noroutes)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002637{
YOSHIFUJI Hideaki612f09e2007-04-13 16:18:02 -07002638 int type;
Eric Dumazetadf30902009-06-02 05:19:30 +00002639 struct dst_entry *dst = skb_dst(skb);
YOSHIFUJI Hideaki612f09e2007-04-13 16:18:02 -07002640 switch (ipstats_mib_noroutes) {
2641 case IPSTATS_MIB_INNOROUTES:
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -07002642 type = ipv6_addr_type(&ipv6_hdr(skb)->daddr);
Ulrich Weber45bb0062010-02-25 23:28:58 +00002643 if (type == IPV6_ADDR_ANY) {
Denis V. Lunev3bd653c2008-10-08 10:54:51 -07002644 IP6_INC_STATS(dev_net(dst->dev), ip6_dst_idev(dst),
2645 IPSTATS_MIB_INADDRERRORS);
YOSHIFUJI Hideaki612f09e2007-04-13 16:18:02 -07002646 break;
2647 }
2648 /* FALLTHROUGH */
2649 case IPSTATS_MIB_OUTNOROUTES:
Denis V. Lunev3bd653c2008-10-08 10:54:51 -07002650 IP6_INC_STATS(dev_net(dst->dev), ip6_dst_idev(dst),
2651 ipstats_mib_noroutes);
YOSHIFUJI Hideaki612f09e2007-04-13 16:18:02 -07002652 break;
2653 }
Alexey Dobriyan3ffe5332010-02-18 08:25:24 +00002654 icmpv6_send(skb, ICMPV6_DEST_UNREACH, code, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002655 kfree_skb(skb);
2656 return 0;
2657}
2658
Thomas Graf9ce8ade2006-10-18 20:46:54 -07002659static int ip6_pkt_discard(struct sk_buff *skb)
2660{
YOSHIFUJI Hideaki612f09e2007-04-13 16:18:02 -07002661 return ip6_pkt_drop(skb, ICMPV6_NOROUTE, IPSTATS_MIB_INNOROUTES);
Thomas Graf9ce8ade2006-10-18 20:46:54 -07002662}
2663
Eric W. Biedermanede20592015-10-07 16:48:47 -05002664static int ip6_pkt_discard_out(struct net *net, struct sock *sk, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002665{
Eric Dumazetadf30902009-06-02 05:19:30 +00002666 skb->dev = skb_dst(skb)->dev;
YOSHIFUJI Hideaki612f09e2007-04-13 16:18:02 -07002667 return ip6_pkt_drop(skb, ICMPV6_NOROUTE, IPSTATS_MIB_OUTNOROUTES);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002668}
2669
Thomas Graf9ce8ade2006-10-18 20:46:54 -07002670static int ip6_pkt_prohibit(struct sk_buff *skb)
2671{
YOSHIFUJI Hideaki612f09e2007-04-13 16:18:02 -07002672 return ip6_pkt_drop(skb, ICMPV6_ADM_PROHIBITED, IPSTATS_MIB_INNOROUTES);
Thomas Graf9ce8ade2006-10-18 20:46:54 -07002673}
2674
Eric W. Biedermanede20592015-10-07 16:48:47 -05002675static int ip6_pkt_prohibit_out(struct net *net, struct sock *sk, struct sk_buff *skb)
Thomas Graf9ce8ade2006-10-18 20:46:54 -07002676{
Eric Dumazetadf30902009-06-02 05:19:30 +00002677 skb->dev = skb_dst(skb)->dev;
YOSHIFUJI Hideaki612f09e2007-04-13 16:18:02 -07002678 return ip6_pkt_drop(skb, ICMPV6_ADM_PROHIBITED, IPSTATS_MIB_OUTNOROUTES);
Thomas Graf9ce8ade2006-10-18 20:46:54 -07002679}
2680
Linus Torvalds1da177e2005-04-16 15:20:36 -07002681/*
2682 * Allocate a dst for local (unicast / anycast) address.
2683 */
2684
2685struct rt6_info *addrconf_dst_alloc(struct inet6_dev *idev,
2686 const struct in6_addr *addr,
David S. Miller8f031512011-12-06 16:48:14 -05002687 bool anycast)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002688{
David Ahernca254492015-10-12 11:47:10 -07002689 u32 tb_id;
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09002690 struct net *net = dev_net(idev->dev);
David Ahern5f02ce242016-09-10 12:09:54 -07002691 struct net_device *dev = net->loopback_dev;
2692 struct rt6_info *rt;
2693
2694 /* use L3 Master device as loopback for host routes if device
2695 * is enslaved and address is not link local or multicast
2696 */
2697 if (!rt6_need_strict(addr))
2698 dev = l3mdev_master_dev_rcu(idev->dev) ? : dev;
2699
2700 rt = ip6_dst_alloc(net, dev, DST_NOCOUNT);
Hannes Frederic Sowaa3300ef2013-12-07 03:33:45 +01002701 if (!rt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002702 return ERR_PTR(-ENOMEM);
2703
Linus Torvalds1da177e2005-04-16 15:20:36 -07002704 in6_dev_hold(idev);
2705
David S. Miller11d53b42011-06-24 15:23:34 -07002706 rt->dst.flags |= DST_HOST;
Changli Gaod8d1f302010-06-10 23:31:35 -07002707 rt->dst.input = ip6_input;
2708 rt->dst.output = ip6_output;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002709 rt->rt6i_idev = idev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002710
David Ahern94b5e0f2017-02-02 08:52:21 -08002711 rt->rt6i_protocol = RTPROT_KERNEL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002712 rt->rt6i_flags = RTF_UP | RTF_NONEXTHOP;
YOSHIFUJI Hideaki58c4fb82005-12-21 22:56:42 +09002713 if (anycast)
2714 rt->rt6i_flags |= RTF_ANYCAST;
2715 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002716 rt->rt6i_flags |= RTF_LOCAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002717
Julian Anastasov550bab42013-10-20 15:43:04 +03002718 rt->rt6i_gateway = *addr;
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00002719 rt->rt6i_dst.addr = *addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002720 rt->rt6i_dst.plen = 128;
David Ahernca254492015-10-12 11:47:10 -07002721 tb_id = l3mdev_fib_table(idev->dev) ? : RT6_TABLE_LOCAL;
2722 rt->rt6i_table = fib6_get_table(net, tb_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002723
Linus Torvalds1da177e2005-04-16 15:20:36 -07002724 return rt;
2725}
2726
Daniel Walterc3968a82011-04-13 21:10:57 +00002727/* remove deleted ip from prefsrc entries */
2728struct arg_dev_net_ip {
2729 struct net_device *dev;
2730 struct net *net;
2731 struct in6_addr *addr;
2732};
2733
2734static int fib6_remove_prefsrc(struct rt6_info *rt, void *arg)
2735{
2736 struct net_device *dev = ((struct arg_dev_net_ip *)arg)->dev;
2737 struct net *net = ((struct arg_dev_net_ip *)arg)->net;
2738 struct in6_addr *addr = ((struct arg_dev_net_ip *)arg)->addr;
2739
David S. Millerd1918542011-12-28 20:19:20 -05002740 if (((void *)rt->dst.dev == dev || !dev) &&
Daniel Walterc3968a82011-04-13 21:10:57 +00002741 rt != net->ipv6.ip6_null_entry &&
2742 ipv6_addr_equal(addr, &rt->rt6i_prefsrc.addr)) {
2743 /* remove prefsrc entry */
2744 rt->rt6i_prefsrc.plen = 0;
2745 }
2746 return 0;
2747}
2748
2749void rt6_remove_prefsrc(struct inet6_ifaddr *ifp)
2750{
2751 struct net *net = dev_net(ifp->idev->dev);
2752 struct arg_dev_net_ip adni = {
2753 .dev = ifp->idev->dev,
2754 .net = net,
2755 .addr = &ifp->addr,
2756 };
Li RongQing0c3584d2013-12-27 16:32:38 +08002757 fib6_clean_all(net, fib6_remove_prefsrc, &adni);
Daniel Walterc3968a82011-04-13 21:10:57 +00002758}
2759
Duan Jiongbe7a0102014-05-15 15:56:14 +08002760#define RTF_RA_ROUTER (RTF_ADDRCONF | RTF_DEFAULT | RTF_GATEWAY)
2761#define RTF_CACHE_GATEWAY (RTF_GATEWAY | RTF_CACHE)
2762
2763/* Remove routers and update dst entries when gateway turn into host. */
2764static int fib6_clean_tohost(struct rt6_info *rt, void *arg)
2765{
2766 struct in6_addr *gateway = (struct in6_addr *)arg;
2767
2768 if ((((rt->rt6i_flags & RTF_RA_ROUTER) == RTF_RA_ROUTER) ||
2769 ((rt->rt6i_flags & RTF_CACHE_GATEWAY) == RTF_CACHE_GATEWAY)) &&
2770 ipv6_addr_equal(gateway, &rt->rt6i_gateway)) {
2771 return -1;
2772 }
2773 return 0;
2774}
2775
2776void rt6_clean_tohost(struct net *net, struct in6_addr *gateway)
2777{
2778 fib6_clean_all(net, fib6_clean_tohost, gateway);
2779}
2780
Daniel Lezcano8ed67782008-03-04 13:48:30 -08002781struct arg_dev_net {
2782 struct net_device *dev;
2783 struct net *net;
2784};
2785
David Aherna1a22c12017-01-18 07:40:36 -08002786/* called with write lock held for table with rt */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002787static int fib6_ifdown(struct rt6_info *rt, void *arg)
2788{
stephen hemmingerbc3ef662010-12-16 17:42:40 +00002789 const struct arg_dev_net *adn = arg;
2790 const struct net_device *dev = adn->dev;
Daniel Lezcano8ed67782008-03-04 13:48:30 -08002791
David S. Millerd1918542011-12-28 20:19:20 -05002792 if ((rt->dst.dev == dev || !dev) &&
David Aherna1a22c12017-01-18 07:40:36 -08002793 rt != adn->net->ipv6.ip6_null_entry &&
2794 (rt->rt6i_nsiblings == 0 ||
David Ahern8397ed32017-06-07 12:26:23 -06002795 (dev && netdev_unregistering(dev)) ||
David Aherna1a22c12017-01-18 07:40:36 -08002796 !rt->rt6i_idev->cnf.ignore_routes_with_linkdown))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002797 return -1;
David S. Millerc159d302011-12-26 15:24:36 -05002798
Linus Torvalds1da177e2005-04-16 15:20:36 -07002799 return 0;
2800}
2801
Daniel Lezcanof3db4852008-03-03 23:27:06 -08002802void rt6_ifdown(struct net *net, struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002803{
Daniel Lezcano8ed67782008-03-04 13:48:30 -08002804 struct arg_dev_net adn = {
2805 .dev = dev,
2806 .net = net,
2807 };
2808
Li RongQing0c3584d2013-12-27 16:32:38 +08002809 fib6_clean_all(net, fib6_ifdown, &adn);
Eric W. Biedermane332bc62015-10-12 11:02:08 -05002810 if (dev)
2811 rt6_uncached_list_flush_dev(net, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002812}
2813
Eric Dumazet95c96172012-04-15 05:58:06 +00002814struct rt6_mtu_change_arg {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002815 struct net_device *dev;
Eric Dumazet95c96172012-04-15 05:58:06 +00002816 unsigned int mtu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002817};
2818
2819static int rt6_mtu_change_route(struct rt6_info *rt, void *p_arg)
2820{
2821 struct rt6_mtu_change_arg *arg = (struct rt6_mtu_change_arg *) p_arg;
2822 struct inet6_dev *idev;
2823
2824 /* In IPv6 pmtu discovery is not optional,
2825 so that RTAX_MTU lock cannot disable it.
2826 We still use this lock to block changes
2827 caused by addrconf/ndisc.
2828 */
2829
2830 idev = __in6_dev_get(arg->dev);
David S. Miller38308472011-12-03 18:02:47 -05002831 if (!idev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002832 return 0;
2833
2834 /* For administrative MTU increase, there is no way to discover
2835 IPv6 PMTU increase, so PMTU increase should be updated here.
2836 Since RFC 1981 doesn't include administrative MTU increase
2837 update PMTU increase is a MUST. (i.e. jumbo frame)
2838 */
2839 /*
2840 If new MTU is less than route PMTU, this new MTU will be the
2841 lowest MTU in the path, update the route PMTU to reflect PMTU
2842 decreases; if new MTU is greater than route PMTU, and the
2843 old MTU is the lowest MTU in the path, update the route PMTU
2844 to reflect the increase. In this case if the other nodes' MTU
2845 also have the lowest MTU, TOO BIG MESSAGE will be lead to
Alexander Alemayhu67c408c2017-01-07 23:53:00 +01002846 PMTU discovery.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002847 */
David S. Millerd1918542011-12-28 20:19:20 -05002848 if (rt->dst.dev == arg->dev &&
Maciej Żenczykowskifb56be82016-11-04 14:51:54 -07002849 dst_metric_raw(&rt->dst, RTAX_MTU) &&
Martin KaFai Lau4b32b5a2015-04-28 13:03:06 -07002850 !dst_metric_locked(&rt->dst, RTAX_MTU)) {
2851 if (rt->rt6i_flags & RTF_CACHE) {
2852 /* For RTF_CACHE with rt6i_pmtu == 0
2853 * (i.e. a redirected route),
2854 * the metrics of its rt->dst.from has already
2855 * been updated.
2856 */
2857 if (rt->rt6i_pmtu && rt->rt6i_pmtu > arg->mtu)
2858 rt->rt6i_pmtu = arg->mtu;
2859 } else if (dst_mtu(&rt->dst) >= arg->mtu ||
2860 (dst_mtu(&rt->dst) < arg->mtu &&
2861 dst_mtu(&rt->dst) == idev->cnf.mtu6)) {
2862 dst_metric_set(&rt->dst, RTAX_MTU, arg->mtu);
2863 }
Simon Arlott566cfd82007-07-26 00:09:55 -07002864 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002865 return 0;
2866}
2867
Eric Dumazet95c96172012-04-15 05:58:06 +00002868void rt6_mtu_change(struct net_device *dev, unsigned int mtu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002869{
Thomas Grafc71099a2006-08-04 23:20:06 -07002870 struct rt6_mtu_change_arg arg = {
2871 .dev = dev,
2872 .mtu = mtu,
2873 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002874
Li RongQing0c3584d2013-12-27 16:32:38 +08002875 fib6_clean_all(dev_net(dev), rt6_mtu_change_route, &arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002876}
2877
Patrick McHardyef7c79e2007-06-05 12:38:30 -07002878static const struct nla_policy rtm_ipv6_policy[RTA_MAX+1] = {
Thomas Graf5176f912006-08-26 20:13:18 -07002879 [RTA_GATEWAY] = { .len = sizeof(struct in6_addr) },
Thomas Graf86872cb2006-08-22 00:01:08 -07002880 [RTA_OIF] = { .type = NLA_U32 },
Thomas Grafab364a62006-08-22 00:01:47 -07002881 [RTA_IIF] = { .type = NLA_U32 },
Thomas Graf86872cb2006-08-22 00:01:08 -07002882 [RTA_PRIORITY] = { .type = NLA_U32 },
2883 [RTA_METRICS] = { .type = NLA_NESTED },
Nicolas Dichtel51ebd3182012-10-22 03:42:09 +00002884 [RTA_MULTIPATH] = { .len = sizeof(struct rtnexthop) },
Lubomir Rintelc78ba6d2015-03-11 15:39:21 +01002885 [RTA_PREF] = { .type = NLA_U8 },
Roopa Prabhu19e42e42015-07-21 10:43:48 +02002886 [RTA_ENCAP_TYPE] = { .type = NLA_U16 },
2887 [RTA_ENCAP] = { .type = NLA_NESTED },
Xin Long32bc2012015-12-16 17:50:11 +08002888 [RTA_EXPIRES] = { .type = NLA_U32 },
Lorenzo Colitti622ec2c2016-11-04 02:23:42 +09002889 [RTA_UID] = { .type = NLA_U32 },
Liping Zhang3b45a412017-02-27 20:59:39 +08002890 [RTA_MARK] = { .type = NLA_U32 },
Thomas Graf86872cb2006-08-22 00:01:08 -07002891};
2892
2893static int rtm_to_fib6_config(struct sk_buff *skb, struct nlmsghdr *nlh,
David Ahern333c4302017-05-21 10:12:04 -06002894 struct fib6_config *cfg,
2895 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002896{
Thomas Graf86872cb2006-08-22 00:01:08 -07002897 struct rtmsg *rtm;
2898 struct nlattr *tb[RTA_MAX+1];
Lubomir Rintelc78ba6d2015-03-11 15:39:21 +01002899 unsigned int pref;
Thomas Graf86872cb2006-08-22 00:01:08 -07002900 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002901
Johannes Bergfceb6432017-04-12 14:34:07 +02002902 err = nlmsg_parse(nlh, sizeof(*rtm), tb, RTA_MAX, rtm_ipv6_policy,
2903 NULL);
Thomas Graf86872cb2006-08-22 00:01:08 -07002904 if (err < 0)
2905 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002906
Thomas Graf86872cb2006-08-22 00:01:08 -07002907 err = -EINVAL;
2908 rtm = nlmsg_data(nlh);
2909 memset(cfg, 0, sizeof(*cfg));
2910
2911 cfg->fc_table = rtm->rtm_table;
2912 cfg->fc_dst_len = rtm->rtm_dst_len;
2913 cfg->fc_src_len = rtm->rtm_src_len;
2914 cfg->fc_flags = RTF_UP;
2915 cfg->fc_protocol = rtm->rtm_protocol;
Nicolas Dichtelef2c7d72012-09-05 02:12:42 +00002916 cfg->fc_type = rtm->rtm_type;
Thomas Graf86872cb2006-08-22 00:01:08 -07002917
Nicolas Dichtelef2c7d72012-09-05 02:12:42 +00002918 if (rtm->rtm_type == RTN_UNREACHABLE ||
2919 rtm->rtm_type == RTN_BLACKHOLE ||
Nicolas Dichtelb4949ab2012-09-06 05:53:35 +00002920 rtm->rtm_type == RTN_PROHIBIT ||
2921 rtm->rtm_type == RTN_THROW)
Thomas Graf86872cb2006-08-22 00:01:08 -07002922 cfg->fc_flags |= RTF_REJECT;
2923
Maciej Żenczykowskiab79ad12010-09-27 00:07:02 +00002924 if (rtm->rtm_type == RTN_LOCAL)
2925 cfg->fc_flags |= RTF_LOCAL;
2926
Martin KaFai Lau1f56a01f2015-04-28 13:03:03 -07002927 if (rtm->rtm_flags & RTM_F_CLONED)
2928 cfg->fc_flags |= RTF_CACHE;
2929
Eric W. Biederman15e47302012-09-07 20:12:54 +00002930 cfg->fc_nlinfo.portid = NETLINK_CB(skb).portid;
Thomas Graf86872cb2006-08-22 00:01:08 -07002931 cfg->fc_nlinfo.nlh = nlh;
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09002932 cfg->fc_nlinfo.nl_net = sock_net(skb->sk);
Thomas Graf86872cb2006-08-22 00:01:08 -07002933
2934 if (tb[RTA_GATEWAY]) {
Jiri Benc67b61f62015-03-29 16:59:26 +02002935 cfg->fc_gateway = nla_get_in6_addr(tb[RTA_GATEWAY]);
Thomas Graf86872cb2006-08-22 00:01:08 -07002936 cfg->fc_flags |= RTF_GATEWAY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002937 }
Thomas Graf86872cb2006-08-22 00:01:08 -07002938
2939 if (tb[RTA_DST]) {
2940 int plen = (rtm->rtm_dst_len + 7) >> 3;
2941
2942 if (nla_len(tb[RTA_DST]) < plen)
2943 goto errout;
2944
2945 nla_memcpy(&cfg->fc_dst, tb[RTA_DST], plen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002946 }
Thomas Graf86872cb2006-08-22 00:01:08 -07002947
2948 if (tb[RTA_SRC]) {
2949 int plen = (rtm->rtm_src_len + 7) >> 3;
2950
2951 if (nla_len(tb[RTA_SRC]) < plen)
2952 goto errout;
2953
2954 nla_memcpy(&cfg->fc_src, tb[RTA_SRC], plen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002955 }
Thomas Graf86872cb2006-08-22 00:01:08 -07002956
Daniel Walterc3968a82011-04-13 21:10:57 +00002957 if (tb[RTA_PREFSRC])
Jiri Benc67b61f62015-03-29 16:59:26 +02002958 cfg->fc_prefsrc = nla_get_in6_addr(tb[RTA_PREFSRC]);
Daniel Walterc3968a82011-04-13 21:10:57 +00002959
Thomas Graf86872cb2006-08-22 00:01:08 -07002960 if (tb[RTA_OIF])
2961 cfg->fc_ifindex = nla_get_u32(tb[RTA_OIF]);
2962
2963 if (tb[RTA_PRIORITY])
2964 cfg->fc_metric = nla_get_u32(tb[RTA_PRIORITY]);
2965
2966 if (tb[RTA_METRICS]) {
2967 cfg->fc_mx = nla_data(tb[RTA_METRICS]);
2968 cfg->fc_mx_len = nla_len(tb[RTA_METRICS]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002969 }
Thomas Graf86872cb2006-08-22 00:01:08 -07002970
2971 if (tb[RTA_TABLE])
2972 cfg->fc_table = nla_get_u32(tb[RTA_TABLE]);
2973
Nicolas Dichtel51ebd3182012-10-22 03:42:09 +00002974 if (tb[RTA_MULTIPATH]) {
2975 cfg->fc_mp = nla_data(tb[RTA_MULTIPATH]);
2976 cfg->fc_mp_len = nla_len(tb[RTA_MULTIPATH]);
David Ahern9ed59592017-01-17 14:57:36 -08002977
2978 err = lwtunnel_valid_encap_type_attr(cfg->fc_mp,
David Ahernc255bd62017-05-27 16:19:27 -06002979 cfg->fc_mp_len, extack);
David Ahern9ed59592017-01-17 14:57:36 -08002980 if (err < 0)
2981 goto errout;
Nicolas Dichtel51ebd3182012-10-22 03:42:09 +00002982 }
2983
Lubomir Rintelc78ba6d2015-03-11 15:39:21 +01002984 if (tb[RTA_PREF]) {
2985 pref = nla_get_u8(tb[RTA_PREF]);
2986 if (pref != ICMPV6_ROUTER_PREF_LOW &&
2987 pref != ICMPV6_ROUTER_PREF_HIGH)
2988 pref = ICMPV6_ROUTER_PREF_MEDIUM;
2989 cfg->fc_flags |= RTF_PREF(pref);
2990 }
2991
Roopa Prabhu19e42e42015-07-21 10:43:48 +02002992 if (tb[RTA_ENCAP])
2993 cfg->fc_encap = tb[RTA_ENCAP];
2994
David Ahern9ed59592017-01-17 14:57:36 -08002995 if (tb[RTA_ENCAP_TYPE]) {
Roopa Prabhu19e42e42015-07-21 10:43:48 +02002996 cfg->fc_encap_type = nla_get_u16(tb[RTA_ENCAP_TYPE]);
2997
David Ahernc255bd62017-05-27 16:19:27 -06002998 err = lwtunnel_valid_encap_type(cfg->fc_encap_type, extack);
David Ahern9ed59592017-01-17 14:57:36 -08002999 if (err < 0)
3000 goto errout;
3001 }
3002
Xin Long32bc2012015-12-16 17:50:11 +08003003 if (tb[RTA_EXPIRES]) {
3004 unsigned long timeout = addrconf_timeout_fixup(nla_get_u32(tb[RTA_EXPIRES]), HZ);
3005
3006 if (addrconf_finite_timeout(timeout)) {
3007 cfg->fc_expires = jiffies_to_clock_t(timeout * HZ);
3008 cfg->fc_flags |= RTF_EXPIRES;
3009 }
3010 }
3011
Thomas Graf86872cb2006-08-22 00:01:08 -07003012 err = 0;
3013errout:
3014 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003015}
3016
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003017struct rt6_nh {
3018 struct rt6_info *rt6_info;
3019 struct fib6_config r_cfg;
3020 struct mx6_config mxc;
3021 struct list_head next;
3022};
3023
3024static void ip6_print_replace_route_err(struct list_head *rt6_nh_list)
3025{
3026 struct rt6_nh *nh;
3027
3028 list_for_each_entry(nh, rt6_nh_list, next) {
David Ahern7d4d5062017-02-02 12:37:12 -08003029 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 -07003030 &nh->r_cfg.fc_dst, &nh->r_cfg.fc_gateway,
3031 nh->r_cfg.fc_ifindex);
3032 }
3033}
3034
3035static int ip6_route_info_append(struct list_head *rt6_nh_list,
3036 struct rt6_info *rt, struct fib6_config *r_cfg)
3037{
3038 struct rt6_nh *nh;
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003039 int err = -EEXIST;
3040
3041 list_for_each_entry(nh, rt6_nh_list, next) {
3042 /* check if rt6_info already exists */
David Ahernf06b7542017-07-05 14:41:46 -06003043 if (rt6_duplicate_nexthop(nh->rt6_info, rt))
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003044 return err;
3045 }
3046
3047 nh = kzalloc(sizeof(*nh), GFP_KERNEL);
3048 if (!nh)
3049 return -ENOMEM;
3050 nh->rt6_info = rt;
3051 err = ip6_convert_metrics(&nh->mxc, r_cfg);
3052 if (err) {
3053 kfree(nh);
3054 return err;
3055 }
3056 memcpy(&nh->r_cfg, r_cfg, sizeof(*r_cfg));
3057 list_add_tail(&nh->next, rt6_nh_list);
3058
3059 return 0;
3060}
3061
David Ahern3b1137f2017-02-02 12:37:10 -08003062static void ip6_route_mpath_notify(struct rt6_info *rt,
3063 struct rt6_info *rt_last,
3064 struct nl_info *info,
3065 __u16 nlflags)
3066{
3067 /* if this is an APPEND route, then rt points to the first route
3068 * inserted and rt_last points to last route inserted. Userspace
3069 * wants a consistent dump of the route which starts at the first
3070 * nexthop. Since sibling routes are always added at the end of
3071 * the list, find the first sibling of the last route appended
3072 */
3073 if ((nlflags & NLM_F_APPEND) && rt_last && rt_last->rt6i_nsiblings) {
3074 rt = list_first_entry(&rt_last->rt6i_siblings,
3075 struct rt6_info,
3076 rt6i_siblings);
3077 }
3078
3079 if (rt)
3080 inet6_rt_notify(RTM_NEWROUTE, rt, info, nlflags);
3081}
3082
David Ahern333c4302017-05-21 10:12:04 -06003083static int ip6_route_multipath_add(struct fib6_config *cfg,
3084 struct netlink_ext_ack *extack)
Nicolas Dichtel51ebd3182012-10-22 03:42:09 +00003085{
David Ahern3b1137f2017-02-02 12:37:10 -08003086 struct rt6_info *rt_notif = NULL, *rt_last = NULL;
3087 struct nl_info *info = &cfg->fc_nlinfo;
Nicolas Dichtel51ebd3182012-10-22 03:42:09 +00003088 struct fib6_config r_cfg;
3089 struct rtnexthop *rtnh;
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003090 struct rt6_info *rt;
3091 struct rt6_nh *err_nh;
3092 struct rt6_nh *nh, *nh_safe;
David Ahern3b1137f2017-02-02 12:37:10 -08003093 __u16 nlflags;
Nicolas Dichtel51ebd3182012-10-22 03:42:09 +00003094 int remaining;
3095 int attrlen;
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003096 int err = 1;
3097 int nhn = 0;
3098 int replace = (cfg->fc_nlinfo.nlh &&
3099 (cfg->fc_nlinfo.nlh->nlmsg_flags & NLM_F_REPLACE));
3100 LIST_HEAD(rt6_nh_list);
Nicolas Dichtel51ebd3182012-10-22 03:42:09 +00003101
David Ahern3b1137f2017-02-02 12:37:10 -08003102 nlflags = replace ? NLM_F_REPLACE : NLM_F_CREATE;
3103 if (info->nlh && info->nlh->nlmsg_flags & NLM_F_APPEND)
3104 nlflags |= NLM_F_APPEND;
3105
Michal Kubeček35f1b4e2015-05-18 20:53:55 +02003106 remaining = cfg->fc_mp_len;
Nicolas Dichtel51ebd3182012-10-22 03:42:09 +00003107 rtnh = (struct rtnexthop *)cfg->fc_mp;
Nicolas Dichtel51ebd3182012-10-22 03:42:09 +00003108
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003109 /* Parse a Multipath Entry and build a list (rt6_nh_list) of
3110 * rt6_info structs per nexthop
3111 */
Nicolas Dichtel51ebd3182012-10-22 03:42:09 +00003112 while (rtnh_ok(rtnh, remaining)) {
3113 memcpy(&r_cfg, cfg, sizeof(*cfg));
3114 if (rtnh->rtnh_ifindex)
3115 r_cfg.fc_ifindex = rtnh->rtnh_ifindex;
3116
3117 attrlen = rtnh_attrlen(rtnh);
3118 if (attrlen > 0) {
3119 struct nlattr *nla, *attrs = rtnh_attrs(rtnh);
3120
3121 nla = nla_find(attrs, attrlen, RTA_GATEWAY);
3122 if (nla) {
Jiri Benc67b61f62015-03-29 16:59:26 +02003123 r_cfg.fc_gateway = nla_get_in6_addr(nla);
Nicolas Dichtel51ebd3182012-10-22 03:42:09 +00003124 r_cfg.fc_flags |= RTF_GATEWAY;
3125 }
Roopa Prabhu19e42e42015-07-21 10:43:48 +02003126 r_cfg.fc_encap = nla_find(attrs, attrlen, RTA_ENCAP);
3127 nla = nla_find(attrs, attrlen, RTA_ENCAP_TYPE);
3128 if (nla)
3129 r_cfg.fc_encap_type = nla_get_u16(nla);
Nicolas Dichtel51ebd3182012-10-22 03:42:09 +00003130 }
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003131
David Ahern333c4302017-05-21 10:12:04 -06003132 rt = ip6_route_info_create(&r_cfg, extack);
Roopa Prabhu8c5b83f2015-10-10 08:26:36 -07003133 if (IS_ERR(rt)) {
3134 err = PTR_ERR(rt);
3135 rt = NULL;
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003136 goto cleanup;
Roopa Prabhu8c5b83f2015-10-10 08:26:36 -07003137 }
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003138
3139 err = ip6_route_info_append(&rt6_nh_list, rt, &r_cfg);
Nicolas Dichtel51ebd3182012-10-22 03:42:09 +00003140 if (err) {
Wei Wang587fea72017-06-17 10:42:36 -07003141 dst_release_immediate(&rt->dst);
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003142 goto cleanup;
Nicolas Dichtel51ebd3182012-10-22 03:42:09 +00003143 }
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003144
3145 rtnh = rtnh_next(rtnh, &remaining);
3146 }
3147
David Ahern3b1137f2017-02-02 12:37:10 -08003148 /* for add and replace send one notification with all nexthops.
3149 * Skip the notification in fib6_add_rt2node and send one with
3150 * the full route when done
3151 */
3152 info->skip_notify = 1;
3153
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003154 err_nh = NULL;
3155 list_for_each_entry(nh, &rt6_nh_list, next) {
David Ahern3b1137f2017-02-02 12:37:10 -08003156 rt_last = nh->rt6_info;
David Ahern333c4302017-05-21 10:12:04 -06003157 err = __ip6_ins_rt(nh->rt6_info, info, &nh->mxc, extack);
David Ahern3b1137f2017-02-02 12:37:10 -08003158 /* save reference to first route for notification */
3159 if (!rt_notif && !err)
3160 rt_notif = nh->rt6_info;
3161
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003162 /* nh->rt6_info is used or freed at this point, reset to NULL*/
3163 nh->rt6_info = NULL;
3164 if (err) {
3165 if (replace && nhn)
3166 ip6_print_replace_route_err(&rt6_nh_list);
3167 err_nh = nh;
3168 goto add_errout;
3169 }
3170
Nicolas Dichtel1a724182012-11-01 22:58:22 +00003171 /* Because each route is added like a single route we remove
Michal Kubeček27596472015-05-18 20:54:00 +02003172 * these flags after the first nexthop: if there is a collision,
3173 * we have already failed to add the first nexthop:
3174 * fib6_add_rt2node() has rejected it; when replacing, old
3175 * nexthops have been replaced by first new, the rest should
3176 * be added to it.
Nicolas Dichtel1a724182012-11-01 22:58:22 +00003177 */
Michal Kubeček27596472015-05-18 20:54:00 +02003178 cfg->fc_nlinfo.nlh->nlmsg_flags &= ~(NLM_F_EXCL |
3179 NLM_F_REPLACE);
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003180 nhn++;
3181 }
3182
David Ahern3b1137f2017-02-02 12:37:10 -08003183 /* success ... tell user about new route */
3184 ip6_route_mpath_notify(rt_notif, rt_last, info, nlflags);
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003185 goto cleanup;
3186
3187add_errout:
David Ahern3b1137f2017-02-02 12:37:10 -08003188 /* send notification for routes that were added so that
3189 * the delete notifications sent by ip6_route_del are
3190 * coherent
3191 */
3192 if (rt_notif)
3193 ip6_route_mpath_notify(rt_notif, rt_last, info, nlflags);
3194
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003195 /* Delete routes that were already added */
3196 list_for_each_entry(nh, &rt6_nh_list, next) {
3197 if (err_nh == nh)
3198 break;
David Ahern333c4302017-05-21 10:12:04 -06003199 ip6_route_del(&nh->r_cfg, extack);
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003200 }
3201
3202cleanup:
3203 list_for_each_entry_safe(nh, nh_safe, &rt6_nh_list, next) {
Wei Wang587fea72017-06-17 10:42:36 -07003204 if (nh->rt6_info)
3205 dst_release_immediate(&nh->rt6_info->dst);
Wu Fengguang52fe51f2015-09-10 06:57:12 +08003206 kfree(nh->mxc.mx);
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003207 list_del(&nh->next);
3208 kfree(nh);
3209 }
3210
3211 return err;
3212}
3213
David Ahern333c4302017-05-21 10:12:04 -06003214static int ip6_route_multipath_del(struct fib6_config *cfg,
3215 struct netlink_ext_ack *extack)
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003216{
3217 struct fib6_config r_cfg;
3218 struct rtnexthop *rtnh;
3219 int remaining;
3220 int attrlen;
3221 int err = 1, last_err = 0;
3222
3223 remaining = cfg->fc_mp_len;
3224 rtnh = (struct rtnexthop *)cfg->fc_mp;
3225
3226 /* Parse a Multipath Entry */
3227 while (rtnh_ok(rtnh, remaining)) {
3228 memcpy(&r_cfg, cfg, sizeof(*cfg));
3229 if (rtnh->rtnh_ifindex)
3230 r_cfg.fc_ifindex = rtnh->rtnh_ifindex;
3231
3232 attrlen = rtnh_attrlen(rtnh);
3233 if (attrlen > 0) {
3234 struct nlattr *nla, *attrs = rtnh_attrs(rtnh);
3235
3236 nla = nla_find(attrs, attrlen, RTA_GATEWAY);
3237 if (nla) {
3238 nla_memcpy(&r_cfg.fc_gateway, nla, 16);
3239 r_cfg.fc_flags |= RTF_GATEWAY;
3240 }
3241 }
David Ahern333c4302017-05-21 10:12:04 -06003242 err = ip6_route_del(&r_cfg, extack);
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003243 if (err)
3244 last_err = err;
3245
Nicolas Dichtel51ebd3182012-10-22 03:42:09 +00003246 rtnh = rtnh_next(rtnh, &remaining);
3247 }
3248
3249 return last_err;
3250}
3251
David Ahernc21ef3e2017-04-16 09:48:24 -07003252static int inet6_rtm_delroute(struct sk_buff *skb, struct nlmsghdr *nlh,
3253 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003254{
Thomas Graf86872cb2006-08-22 00:01:08 -07003255 struct fib6_config cfg;
3256 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003257
David Ahern333c4302017-05-21 10:12:04 -06003258 err = rtm_to_fib6_config(skb, nlh, &cfg, extack);
Thomas Graf86872cb2006-08-22 00:01:08 -07003259 if (err < 0)
3260 return err;
3261
Nicolas Dichtel51ebd3182012-10-22 03:42:09 +00003262 if (cfg.fc_mp)
David Ahern333c4302017-05-21 10:12:04 -06003263 return ip6_route_multipath_del(&cfg, extack);
David Ahern0ae81332017-02-02 12:37:08 -08003264 else {
3265 cfg.fc_delete_all_nh = 1;
David Ahern333c4302017-05-21 10:12:04 -06003266 return ip6_route_del(&cfg, extack);
David Ahern0ae81332017-02-02 12:37:08 -08003267 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003268}
3269
David Ahernc21ef3e2017-04-16 09:48:24 -07003270static int inet6_rtm_newroute(struct sk_buff *skb, struct nlmsghdr *nlh,
3271 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003272{
Thomas Graf86872cb2006-08-22 00:01:08 -07003273 struct fib6_config cfg;
3274 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003275
David Ahern333c4302017-05-21 10:12:04 -06003276 err = rtm_to_fib6_config(skb, nlh, &cfg, extack);
Thomas Graf86872cb2006-08-22 00:01:08 -07003277 if (err < 0)
3278 return err;
3279
Nicolas Dichtel51ebd3182012-10-22 03:42:09 +00003280 if (cfg.fc_mp)
David Ahern333c4302017-05-21 10:12:04 -06003281 return ip6_route_multipath_add(&cfg, extack);
Nicolas Dichtel51ebd3182012-10-22 03:42:09 +00003282 else
David Ahern333c4302017-05-21 10:12:04 -06003283 return ip6_route_add(&cfg, extack);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003284}
3285
David Ahernbeb1afac52017-02-02 12:37:09 -08003286static size_t rt6_nlmsg_size(struct rt6_info *rt)
Thomas Graf339bf982006-11-10 14:10:15 -08003287{
David Ahernbeb1afac52017-02-02 12:37:09 -08003288 int nexthop_len = 0;
3289
3290 if (rt->rt6i_nsiblings) {
3291 nexthop_len = nla_total_size(0) /* RTA_MULTIPATH */
3292 + NLA_ALIGN(sizeof(struct rtnexthop))
3293 + nla_total_size(16) /* RTA_GATEWAY */
David Ahernbeb1afac52017-02-02 12:37:09 -08003294 + lwtunnel_get_encap_size(rt->dst.lwtstate);
3295
3296 nexthop_len *= rt->rt6i_nsiblings;
3297 }
3298
Thomas Graf339bf982006-11-10 14:10:15 -08003299 return NLMSG_ALIGN(sizeof(struct rtmsg))
3300 + nla_total_size(16) /* RTA_SRC */
3301 + nla_total_size(16) /* RTA_DST */
3302 + nla_total_size(16) /* RTA_GATEWAY */
3303 + nla_total_size(16) /* RTA_PREFSRC */
3304 + nla_total_size(4) /* RTA_TABLE */
3305 + nla_total_size(4) /* RTA_IIF */
3306 + nla_total_size(4) /* RTA_OIF */
3307 + nla_total_size(4) /* RTA_PRIORITY */
Noriaki TAKAMIYA6a2b9ce2007-01-23 22:09:41 -08003308 + RTAX_MAX * nla_total_size(4) /* RTA_METRICS */
Daniel Borkmannea697632015-01-05 23:57:47 +01003309 + nla_total_size(sizeof(struct rta_cacheinfo))
Lubomir Rintelc78ba6d2015-03-11 15:39:21 +01003310 + nla_total_size(TCP_CA_NAME_MAX) /* RTAX_CC_ALGO */
Roopa Prabhu19e42e42015-07-21 10:43:48 +02003311 + nla_total_size(1) /* RTA_PREF */
David Ahernbeb1afac52017-02-02 12:37:09 -08003312 + lwtunnel_get_encap_size(rt->dst.lwtstate)
3313 + nexthop_len;
3314}
3315
3316static int rt6_nexthop_info(struct sk_buff *skb, struct rt6_info *rt,
David Ahern5be083c2017-03-06 15:57:31 -08003317 unsigned int *flags, bool skip_oif)
David Ahernbeb1afac52017-02-02 12:37:09 -08003318{
3319 if (!netif_running(rt->dst.dev) || !netif_carrier_ok(rt->dst.dev)) {
3320 *flags |= RTNH_F_LINKDOWN;
3321 if (rt->rt6i_idev->cnf.ignore_routes_with_linkdown)
3322 *flags |= RTNH_F_DEAD;
3323 }
3324
3325 if (rt->rt6i_flags & RTF_GATEWAY) {
3326 if (nla_put_in6_addr(skb, RTA_GATEWAY, &rt->rt6i_gateway) < 0)
3327 goto nla_put_failure;
3328 }
3329
David Ahern5be083c2017-03-06 15:57:31 -08003330 /* not needed for multipath encoding b/c it has a rtnexthop struct */
3331 if (!skip_oif && rt->dst.dev &&
David Ahernbeb1afac52017-02-02 12:37:09 -08003332 nla_put_u32(skb, RTA_OIF, rt->dst.dev->ifindex))
3333 goto nla_put_failure;
3334
3335 if (rt->dst.lwtstate &&
3336 lwtunnel_fill_encap(skb, rt->dst.lwtstate) < 0)
3337 goto nla_put_failure;
3338
3339 return 0;
3340
3341nla_put_failure:
3342 return -EMSGSIZE;
3343}
3344
David Ahern5be083c2017-03-06 15:57:31 -08003345/* add multipath next hop */
David Ahernbeb1afac52017-02-02 12:37:09 -08003346static int rt6_add_nexthop(struct sk_buff *skb, struct rt6_info *rt)
3347{
3348 struct rtnexthop *rtnh;
3349 unsigned int flags = 0;
3350
3351 rtnh = nla_reserve_nohdr(skb, sizeof(*rtnh));
3352 if (!rtnh)
3353 goto nla_put_failure;
3354
3355 rtnh->rtnh_hops = 0;
3356 rtnh->rtnh_ifindex = rt->dst.dev ? rt->dst.dev->ifindex : 0;
3357
David Ahern5be083c2017-03-06 15:57:31 -08003358 if (rt6_nexthop_info(skb, rt, &flags, true) < 0)
David Ahernbeb1afac52017-02-02 12:37:09 -08003359 goto nla_put_failure;
3360
3361 rtnh->rtnh_flags = flags;
3362
3363 /* length of rtnetlink header + attributes */
3364 rtnh->rtnh_len = nlmsg_get_pos(skb) - (void *)rtnh;
3365
3366 return 0;
3367
3368nla_put_failure:
3369 return -EMSGSIZE;
Thomas Graf339bf982006-11-10 14:10:15 -08003370}
3371
Brian Haley191cd582008-08-14 15:33:21 -07003372static int rt6_fill_node(struct net *net,
3373 struct sk_buff *skb, struct rt6_info *rt,
Jamal Hadi Salim0d51aa82005-06-21 13:51:04 -07003374 struct in6_addr *dst, struct in6_addr *src,
Eric W. Biederman15e47302012-09-07 20:12:54 +00003375 int iif, int type, u32 portid, u32 seq,
David Ahernf8cfe2c2017-01-17 15:51:08 -08003376 unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003377{
Martin KaFai Lau4b32b5a2015-04-28 13:03:06 -07003378 u32 metrics[RTAX_MAX];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003379 struct rtmsg *rtm;
Thomas Graf2d7202b2006-08-22 00:01:27 -07003380 struct nlmsghdr *nlh;
Thomas Grafe3703b32006-11-27 09:27:07 -08003381 long expires;
Patrick McHardy9e762a42006-08-10 23:09:48 -07003382 u32 table;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003383
Eric W. Biederman15e47302012-09-07 20:12:54 +00003384 nlh = nlmsg_put(skb, portid, seq, type, sizeof(*rtm), flags);
David S. Miller38308472011-12-03 18:02:47 -05003385 if (!nlh)
Patrick McHardy26932562007-01-31 23:16:40 -08003386 return -EMSGSIZE;
Thomas Graf2d7202b2006-08-22 00:01:27 -07003387
3388 rtm = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003389 rtm->rtm_family = AF_INET6;
3390 rtm->rtm_dst_len = rt->rt6i_dst.plen;
3391 rtm->rtm_src_len = rt->rt6i_src.plen;
3392 rtm->rtm_tos = 0;
Thomas Grafc71099a2006-08-04 23:20:06 -07003393 if (rt->rt6i_table)
Patrick McHardy9e762a42006-08-10 23:09:48 -07003394 table = rt->rt6i_table->tb6_id;
Thomas Grafc71099a2006-08-04 23:20:06 -07003395 else
Patrick McHardy9e762a42006-08-10 23:09:48 -07003396 table = RT6_TABLE_UNSPEC;
3397 rtm->rtm_table = table;
David S. Millerc78679e2012-04-01 20:27:33 -04003398 if (nla_put_u32(skb, RTA_TABLE, table))
3399 goto nla_put_failure;
Nicolas Dichtelef2c7d72012-09-05 02:12:42 +00003400 if (rt->rt6i_flags & RTF_REJECT) {
3401 switch (rt->dst.error) {
3402 case -EINVAL:
3403 rtm->rtm_type = RTN_BLACKHOLE;
3404 break;
3405 case -EACCES:
3406 rtm->rtm_type = RTN_PROHIBIT;
3407 break;
Nicolas Dichtelb4949ab2012-09-06 05:53:35 +00003408 case -EAGAIN:
3409 rtm->rtm_type = RTN_THROW;
3410 break;
Nicolas Dichtelef2c7d72012-09-05 02:12:42 +00003411 default:
3412 rtm->rtm_type = RTN_UNREACHABLE;
3413 break;
3414 }
3415 }
David S. Miller38308472011-12-03 18:02:47 -05003416 else if (rt->rt6i_flags & RTF_LOCAL)
Maciej Żenczykowskiab79ad12010-09-27 00:07:02 +00003417 rtm->rtm_type = RTN_LOCAL;
David Ahern4ee39732017-03-15 18:14:33 -07003418 else if (rt->rt6i_flags & RTF_ANYCAST)
3419 rtm->rtm_type = RTN_ANYCAST;
David S. Millerd1918542011-12-28 20:19:20 -05003420 else if (rt->dst.dev && (rt->dst.dev->flags & IFF_LOOPBACK))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003421 rtm->rtm_type = RTN_LOCAL;
3422 else
3423 rtm->rtm_type = RTN_UNICAST;
3424 rtm->rtm_flags = 0;
3425 rtm->rtm_scope = RT_SCOPE_UNIVERSE;
3426 rtm->rtm_protocol = rt->rt6i_protocol;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003427
David S. Miller38308472011-12-03 18:02:47 -05003428 if (rt->rt6i_flags & RTF_CACHE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003429 rtm->rtm_flags |= RTM_F_CLONED;
3430
3431 if (dst) {
Jiri Benc930345e2015-03-29 16:59:25 +02003432 if (nla_put_in6_addr(skb, RTA_DST, dst))
David S. Millerc78679e2012-04-01 20:27:33 -04003433 goto nla_put_failure;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003434 rtm->rtm_dst_len = 128;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003435 } else if (rtm->rtm_dst_len)
Jiri Benc930345e2015-03-29 16:59:25 +02003436 if (nla_put_in6_addr(skb, RTA_DST, &rt->rt6i_dst.addr))
David S. Millerc78679e2012-04-01 20:27:33 -04003437 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003438#ifdef CONFIG_IPV6_SUBTREES
3439 if (src) {
Jiri Benc930345e2015-03-29 16:59:25 +02003440 if (nla_put_in6_addr(skb, RTA_SRC, src))
David S. Millerc78679e2012-04-01 20:27:33 -04003441 goto nla_put_failure;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003442 rtm->rtm_src_len = 128;
David S. Millerc78679e2012-04-01 20:27:33 -04003443 } else if (rtm->rtm_src_len &&
Jiri Benc930345e2015-03-29 16:59:25 +02003444 nla_put_in6_addr(skb, RTA_SRC, &rt->rt6i_src.addr))
David S. Millerc78679e2012-04-01 20:27:33 -04003445 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003446#endif
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09003447 if (iif) {
3448#ifdef CONFIG_IPV6_MROUTE
3449 if (ipv6_addr_is_multicast(&rt->rt6i_dst.addr)) {
David Ahernfd61c6b2017-01-17 15:51:07 -08003450 int err = ip6mr_get_route(net, skb, rtm, portid);
Nikolay Aleksandrov2cf75072016-09-25 23:08:31 +02003451
David Ahernfd61c6b2017-01-17 15:51:07 -08003452 if (err == 0)
3453 return 0;
3454 if (err < 0)
3455 goto nla_put_failure;
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09003456 } else
3457#endif
David S. Millerc78679e2012-04-01 20:27:33 -04003458 if (nla_put_u32(skb, RTA_IIF, iif))
3459 goto nla_put_failure;
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09003460 } else if (dst) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003461 struct in6_addr saddr_buf;
David S. Millerc78679e2012-04-01 20:27:33 -04003462 if (ip6_route_get_saddr(net, rt, dst, 0, &saddr_buf) == 0 &&
Jiri Benc930345e2015-03-29 16:59:25 +02003463 nla_put_in6_addr(skb, RTA_PREFSRC, &saddr_buf))
David S. Millerc78679e2012-04-01 20:27:33 -04003464 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003465 }
Thomas Graf2d7202b2006-08-22 00:01:27 -07003466
Daniel Walterc3968a82011-04-13 21:10:57 +00003467 if (rt->rt6i_prefsrc.plen) {
3468 struct in6_addr saddr_buf;
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00003469 saddr_buf = rt->rt6i_prefsrc.addr;
Jiri Benc930345e2015-03-29 16:59:25 +02003470 if (nla_put_in6_addr(skb, RTA_PREFSRC, &saddr_buf))
David S. Millerc78679e2012-04-01 20:27:33 -04003471 goto nla_put_failure;
Daniel Walterc3968a82011-04-13 21:10:57 +00003472 }
3473
Martin KaFai Lau4b32b5a2015-04-28 13:03:06 -07003474 memcpy(metrics, dst_metrics_ptr(&rt->dst), sizeof(metrics));
3475 if (rt->rt6i_pmtu)
3476 metrics[RTAX_MTU - 1] = rt->rt6i_pmtu;
3477 if (rtnetlink_put_metrics(skb, metrics) < 0)
Thomas Graf2d7202b2006-08-22 00:01:27 -07003478 goto nla_put_failure;
3479
David S. Millerc78679e2012-04-01 20:27:33 -04003480 if (nla_put_u32(skb, RTA_PRIORITY, rt->rt6i_metric))
3481 goto nla_put_failure;
Li Wei82539472012-07-29 16:01:30 +00003482
David Ahernbeb1afac52017-02-02 12:37:09 -08003483 /* For multipath routes, walk the siblings list and add
3484 * each as a nexthop within RTA_MULTIPATH.
3485 */
3486 if (rt->rt6i_nsiblings) {
3487 struct rt6_info *sibling, *next_sibling;
3488 struct nlattr *mp;
3489
3490 mp = nla_nest_start(skb, RTA_MULTIPATH);
3491 if (!mp)
3492 goto nla_put_failure;
3493
3494 if (rt6_add_nexthop(skb, rt) < 0)
3495 goto nla_put_failure;
3496
3497 list_for_each_entry_safe(sibling, next_sibling,
3498 &rt->rt6i_siblings, rt6i_siblings) {
3499 if (rt6_add_nexthop(skb, sibling) < 0)
3500 goto nla_put_failure;
3501 }
3502
3503 nla_nest_end(skb, mp);
3504 } else {
David Ahern5be083c2017-03-06 15:57:31 -08003505 if (rt6_nexthop_info(skb, rt, &rtm->rtm_flags, false) < 0)
David Ahernbeb1afac52017-02-02 12:37:09 -08003506 goto nla_put_failure;
3507 }
3508
Li Wei82539472012-07-29 16:01:30 +00003509 expires = (rt->rt6i_flags & RTF_EXPIRES) ? rt->dst.expires - jiffies : 0;
YOSHIFUJI Hideaki69cdf8f2008-05-19 16:55:13 -07003510
David S. Miller87a50692012-07-10 05:06:14 -07003511 if (rtnl_put_cacheinfo(skb, &rt->dst, 0, expires, rt->dst.error) < 0)
Thomas Grafe3703b32006-11-27 09:27:07 -08003512 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003513
Lubomir Rintelc78ba6d2015-03-11 15:39:21 +01003514 if (nla_put_u8(skb, RTA_PREF, IPV6_EXTRACT_PREF(rt->rt6i_flags)))
3515 goto nla_put_failure;
3516
Roopa Prabhu19e42e42015-07-21 10:43:48 +02003517
Johannes Berg053c0952015-01-16 22:09:00 +01003518 nlmsg_end(skb, nlh);
3519 return 0;
Thomas Graf2d7202b2006-08-22 00:01:27 -07003520
3521nla_put_failure:
Patrick McHardy26932562007-01-31 23:16:40 -08003522 nlmsg_cancel(skb, nlh);
3523 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003524}
3525
Patrick McHardy1b43af52006-08-10 23:11:17 -07003526int rt6_dump_route(struct rt6_info *rt, void *p_arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003527{
3528 struct rt6_rtnl_dump_arg *arg = (struct rt6_rtnl_dump_arg *) p_arg;
David Ahern1f17e2f2017-01-26 13:54:08 -08003529 struct net *net = arg->net;
3530
3531 if (rt == net->ipv6.ip6_null_entry)
3532 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003533
Thomas Graf2d7202b2006-08-22 00:01:27 -07003534 if (nlmsg_len(arg->cb->nlh) >= sizeof(struct rtmsg)) {
3535 struct rtmsg *rtm = nlmsg_data(arg->cb->nlh);
David Ahernf8cfe2c2017-01-17 15:51:08 -08003536
3537 /* user wants prefix routes only */
3538 if (rtm->rtm_flags & RTM_F_PREFIX &&
3539 !(rt->rt6i_flags & RTF_PREFIX_RT)) {
3540 /* success since this is not a prefix route */
3541 return 1;
3542 }
3543 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003544
David Ahern1f17e2f2017-01-26 13:54:08 -08003545 return rt6_fill_node(net,
Brian Haley191cd582008-08-14 15:33:21 -07003546 arg->skb, rt, NULL, NULL, 0, RTM_NEWROUTE,
Eric W. Biederman15e47302012-09-07 20:12:54 +00003547 NETLINK_CB(arg->cb->skb).portid, arg->cb->nlh->nlmsg_seq,
David Ahernf8cfe2c2017-01-17 15:51:08 -08003548 NLM_F_MULTI);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003549}
3550
David Ahernc21ef3e2017-04-16 09:48:24 -07003551static int inet6_rtm_getroute(struct sk_buff *in_skb, struct nlmsghdr *nlh,
3552 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003553{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09003554 struct net *net = sock_net(in_skb->sk);
Thomas Grafab364a62006-08-22 00:01:47 -07003555 struct nlattr *tb[RTA_MAX+1];
Roopa Prabhu18c3a612017-05-25 10:42:40 -07003556 int err, iif = 0, oif = 0;
3557 struct dst_entry *dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003558 struct rt6_info *rt;
Thomas Grafab364a62006-08-22 00:01:47 -07003559 struct sk_buff *skb;
3560 struct rtmsg *rtm;
David S. Miller4c9483b2011-03-12 16:22:43 -05003561 struct flowi6 fl6;
Roopa Prabhu18c3a612017-05-25 10:42:40 -07003562 bool fibmatch;
Thomas Grafab364a62006-08-22 00:01:47 -07003563
Johannes Bergfceb6432017-04-12 14:34:07 +02003564 err = nlmsg_parse(nlh, sizeof(*rtm), tb, RTA_MAX, rtm_ipv6_policy,
David Ahernc21ef3e2017-04-16 09:48:24 -07003565 extack);
Thomas Grafab364a62006-08-22 00:01:47 -07003566 if (err < 0)
3567 goto errout;
3568
3569 err = -EINVAL;
David S. Miller4c9483b2011-03-12 16:22:43 -05003570 memset(&fl6, 0, sizeof(fl6));
Hannes Frederic Sowa38b70972016-06-11 20:08:19 +02003571 rtm = nlmsg_data(nlh);
3572 fl6.flowlabel = ip6_make_flowinfo(rtm->rtm_tos, 0);
Roopa Prabhu18c3a612017-05-25 10:42:40 -07003573 fibmatch = !!(rtm->rtm_flags & RTM_F_FIB_MATCH);
Thomas Grafab364a62006-08-22 00:01:47 -07003574
3575 if (tb[RTA_SRC]) {
3576 if (nla_len(tb[RTA_SRC]) < sizeof(struct in6_addr))
3577 goto errout;
3578
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00003579 fl6.saddr = *(struct in6_addr *)nla_data(tb[RTA_SRC]);
Thomas Grafab364a62006-08-22 00:01:47 -07003580 }
3581
3582 if (tb[RTA_DST]) {
3583 if (nla_len(tb[RTA_DST]) < sizeof(struct in6_addr))
3584 goto errout;
3585
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00003586 fl6.daddr = *(struct in6_addr *)nla_data(tb[RTA_DST]);
Thomas Grafab364a62006-08-22 00:01:47 -07003587 }
3588
3589 if (tb[RTA_IIF])
3590 iif = nla_get_u32(tb[RTA_IIF]);
3591
3592 if (tb[RTA_OIF])
Shmulik Ladkani72331bc2012-04-01 04:03:45 +00003593 oif = nla_get_u32(tb[RTA_OIF]);
Thomas Grafab364a62006-08-22 00:01:47 -07003594
Lorenzo Colitti2e47b292014-05-15 16:38:41 -07003595 if (tb[RTA_MARK])
3596 fl6.flowi6_mark = nla_get_u32(tb[RTA_MARK]);
3597
Lorenzo Colitti622ec2c2016-11-04 02:23:42 +09003598 if (tb[RTA_UID])
3599 fl6.flowi6_uid = make_kuid(current_user_ns(),
3600 nla_get_u32(tb[RTA_UID]));
3601 else
3602 fl6.flowi6_uid = iif ? INVALID_UID : current_uid();
3603
Thomas Grafab364a62006-08-22 00:01:47 -07003604 if (iif) {
3605 struct net_device *dev;
Shmulik Ladkani72331bc2012-04-01 04:03:45 +00003606 int flags = 0;
3607
Daniel Lezcano55786892008-03-04 13:47:47 -08003608 dev = __dev_get_by_index(net, iif);
Thomas Grafab364a62006-08-22 00:01:47 -07003609 if (!dev) {
3610 err = -ENODEV;
3611 goto errout;
3612 }
Shmulik Ladkani72331bc2012-04-01 04:03:45 +00003613
3614 fl6.flowi6_iif = iif;
3615
3616 if (!ipv6_addr_any(&fl6.saddr))
3617 flags |= RT6_LOOKUP_F_HAS_SADDR;
3618
Roopa Prabhu18c3a612017-05-25 10:42:40 -07003619 if (!fibmatch)
3620 dst = ip6_route_input_lookup(net, dev, &fl6, flags);
Shmulik Ladkani72331bc2012-04-01 04:03:45 +00003621 } else {
3622 fl6.flowi6_oif = oif;
3623
Roopa Prabhu18c3a612017-05-25 10:42:40 -07003624 if (!fibmatch)
3625 dst = ip6_route_output(net, NULL, &fl6);
3626 }
3627
3628 if (fibmatch)
3629 dst = ip6_route_lookup(net, &fl6, 0);
3630
3631 rt = container_of(dst, struct rt6_info, dst);
3632 if (rt->dst.error) {
3633 err = rt->dst.error;
3634 ip6_rt_put(rt);
3635 goto errout;
Thomas Grafab364a62006-08-22 00:01:47 -07003636 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003637
WANG Cong9d6acb32017-03-01 20:48:39 -08003638 if (rt == net->ipv6.ip6_null_entry) {
3639 err = rt->dst.error;
3640 ip6_rt_put(rt);
3641 goto errout;
3642 }
3643
Linus Torvalds1da177e2005-04-16 15:20:36 -07003644 skb = alloc_skb(NLMSG_GOODSIZE, GFP_KERNEL);
David S. Miller38308472011-12-03 18:02:47 -05003645 if (!skb) {
Amerigo Wang94e187c2012-10-29 00:13:19 +00003646 ip6_rt_put(rt);
Thomas Grafab364a62006-08-22 00:01:47 -07003647 err = -ENOBUFS;
3648 goto errout;
3649 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003650
Changli Gaod8d1f302010-06-10 23:31:35 -07003651 skb_dst_set(skb, &rt->dst);
Roopa Prabhu18c3a612017-05-25 10:42:40 -07003652 if (fibmatch)
3653 err = rt6_fill_node(net, skb, rt, NULL, NULL, iif,
3654 RTM_NEWROUTE, NETLINK_CB(in_skb).portid,
3655 nlh->nlmsg_seq, 0);
3656 else
3657 err = rt6_fill_node(net, skb, rt, &fl6.daddr, &fl6.saddr, iif,
3658 RTM_NEWROUTE, NETLINK_CB(in_skb).portid,
3659 nlh->nlmsg_seq, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003660 if (err < 0) {
Thomas Grafab364a62006-08-22 00:01:47 -07003661 kfree_skb(skb);
3662 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003663 }
3664
Eric W. Biederman15e47302012-09-07 20:12:54 +00003665 err = rtnl_unicast(skb, net, NETLINK_CB(in_skb).portid);
Thomas Grafab364a62006-08-22 00:01:47 -07003666errout:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003667 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003668}
3669
Roopa Prabhu37a1d362015-09-13 10:18:33 -07003670void inet6_rt_notify(int event, struct rt6_info *rt, struct nl_info *info,
3671 unsigned int nlm_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003672{
3673 struct sk_buff *skb;
Daniel Lezcano55786892008-03-04 13:47:47 -08003674 struct net *net = info->nl_net;
Denis V. Lunev528c4ce2007-12-13 09:45:12 -08003675 u32 seq;
3676 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003677
Denis V. Lunev528c4ce2007-12-13 09:45:12 -08003678 err = -ENOBUFS;
David S. Miller38308472011-12-03 18:02:47 -05003679 seq = info->nlh ? info->nlh->nlmsg_seq : 0;
Thomas Graf86872cb2006-08-22 00:01:08 -07003680
Roopa Prabhu19e42e42015-07-21 10:43:48 +02003681 skb = nlmsg_new(rt6_nlmsg_size(rt), gfp_any());
David S. Miller38308472011-12-03 18:02:47 -05003682 if (!skb)
Thomas Graf21713eb2006-08-15 00:35:24 -07003683 goto errout;
3684
Brian Haley191cd582008-08-14 15:33:21 -07003685 err = rt6_fill_node(net, skb, rt, NULL, NULL, 0,
David Ahernf8cfe2c2017-01-17 15:51:08 -08003686 event, info->portid, seq, nlm_flags);
Patrick McHardy26932562007-01-31 23:16:40 -08003687 if (err < 0) {
3688 /* -EMSGSIZE implies BUG in rt6_nlmsg_size() */
3689 WARN_ON(err == -EMSGSIZE);
3690 kfree_skb(skb);
3691 goto errout;
3692 }
Eric W. Biederman15e47302012-09-07 20:12:54 +00003693 rtnl_notify(skb, net, info->portid, RTNLGRP_IPV6_ROUTE,
Pablo Neira Ayuso1ce85fe2009-02-24 23:18:28 -08003694 info->nlh, gfp_any());
3695 return;
Thomas Graf21713eb2006-08-15 00:35:24 -07003696errout:
3697 if (err < 0)
Daniel Lezcano55786892008-03-04 13:47:47 -08003698 rtnl_set_sk_err(net, RTNLGRP_IPV6_ROUTE, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003699}
3700
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003701static int ip6_route_dev_notify(struct notifier_block *this,
Jiri Pirko351638e2013-05-28 01:30:21 +00003702 unsigned long event, void *ptr)
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003703{
Jiri Pirko351638e2013-05-28 01:30:21 +00003704 struct net_device *dev = netdev_notifier_info_to_dev(ptr);
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09003705 struct net *net = dev_net(dev);
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003706
WANG Cong242d3a42017-05-08 10:12:13 -07003707 if (!(dev->flags & IFF_LOOPBACK))
3708 return NOTIFY_OK;
3709
3710 if (event == NETDEV_REGISTER) {
Changli Gaod8d1f302010-06-10 23:31:35 -07003711 net->ipv6.ip6_null_entry->dst.dev = dev;
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003712 net->ipv6.ip6_null_entry->rt6i_idev = in6_dev_get(dev);
3713#ifdef CONFIG_IPV6_MULTIPLE_TABLES
Changli Gaod8d1f302010-06-10 23:31:35 -07003714 net->ipv6.ip6_prohibit_entry->dst.dev = dev;
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003715 net->ipv6.ip6_prohibit_entry->rt6i_idev = in6_dev_get(dev);
Changli Gaod8d1f302010-06-10 23:31:35 -07003716 net->ipv6.ip6_blk_hole_entry->dst.dev = dev;
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003717 net->ipv6.ip6_blk_hole_entry->rt6i_idev = in6_dev_get(dev);
3718#endif
WANG Cong76da0702017-06-20 11:42:27 -07003719 } else if (event == NETDEV_UNREGISTER &&
3720 dev->reg_state != NETREG_UNREGISTERED) {
3721 /* NETDEV_UNREGISTER could be fired for multiple times by
3722 * netdev_wait_allrefs(). Make sure we only call this once.
3723 */
WANG Cong242d3a42017-05-08 10:12:13 -07003724 in6_dev_put(net->ipv6.ip6_null_entry->rt6i_idev);
3725#ifdef CONFIG_IPV6_MULTIPLE_TABLES
3726 in6_dev_put(net->ipv6.ip6_prohibit_entry->rt6i_idev);
3727 in6_dev_put(net->ipv6.ip6_blk_hole_entry->rt6i_idev);
3728#endif
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003729 }
3730
3731 return NOTIFY_OK;
3732}
3733
Linus Torvalds1da177e2005-04-16 15:20:36 -07003734/*
3735 * /proc
3736 */
3737
3738#ifdef CONFIG_PROC_FS
3739
Alexey Dobriyan33120b32007-11-06 05:27:11 -08003740static const struct file_operations ipv6_route_proc_fops = {
3741 .owner = THIS_MODULE,
3742 .open = ipv6_route_open,
3743 .read = seq_read,
3744 .llseek = seq_lseek,
Hannes Frederic Sowa8d2ca1d2013-09-21 16:55:59 +02003745 .release = seq_release_net,
Alexey Dobriyan33120b32007-11-06 05:27:11 -08003746};
3747
Linus Torvalds1da177e2005-04-16 15:20:36 -07003748static int rt6_stats_seq_show(struct seq_file *seq, void *v)
3749{
Daniel Lezcano69ddb802008-03-04 13:46:23 -08003750 struct net *net = (struct net *)seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003751 seq_printf(seq, "%04x %04x %04x %04x %04x %04x %04x\n",
Daniel Lezcano69ddb802008-03-04 13:46:23 -08003752 net->ipv6.rt6_stats->fib_nodes,
3753 net->ipv6.rt6_stats->fib_route_nodes,
3754 net->ipv6.rt6_stats->fib_rt_alloc,
3755 net->ipv6.rt6_stats->fib_rt_entries,
3756 net->ipv6.rt6_stats->fib_rt_cache,
Eric Dumazetfc66f952010-10-08 06:37:34 +00003757 dst_entries_get_slow(&net->ipv6.ip6_dst_ops),
Daniel Lezcano69ddb802008-03-04 13:46:23 -08003758 net->ipv6.rt6_stats->fib_discarded_routes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003759
3760 return 0;
3761}
3762
3763static int rt6_stats_seq_open(struct inode *inode, struct file *file)
3764{
Pavel Emelyanovde05c552008-07-18 04:07:21 -07003765 return single_open_net(inode, file, rt6_stats_seq_show);
Daniel Lezcano69ddb802008-03-04 13:46:23 -08003766}
3767
Arjan van de Ven9a321442007-02-12 00:55:35 -08003768static const struct file_operations rt6_stats_seq_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003769 .owner = THIS_MODULE,
3770 .open = rt6_stats_seq_open,
3771 .read = seq_read,
3772 .llseek = seq_lseek,
Pavel Emelyanovb6fcbdb2008-07-18 04:07:44 -07003773 .release = single_release_net,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003774};
3775#endif /* CONFIG_PROC_FS */
3776
3777#ifdef CONFIG_SYSCTL
3778
Linus Torvalds1da177e2005-04-16 15:20:36 -07003779static
Joe Perchesfe2c6332013-06-11 23:04:25 -07003780int ipv6_sysctl_rtcache_flush(struct ctl_table *ctl, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003781 void __user *buffer, size_t *lenp, loff_t *ppos)
3782{
Lucian Adrian Grijincuc486da32011-02-24 19:48:03 +00003783 struct net *net;
3784 int delay;
3785 if (!write)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003786 return -EINVAL;
Lucian Adrian Grijincuc486da32011-02-24 19:48:03 +00003787
3788 net = (struct net *)ctl->extra1;
3789 delay = net->ipv6.sysctl.flush_delay;
3790 proc_dointvec(ctl, write, buffer, lenp, ppos);
Michal Kubeček2ac3ac82013-08-01 10:04:14 +02003791 fib6_run_gc(delay <= 0 ? 0 : (unsigned long)delay, net, delay > 0);
Lucian Adrian Grijincuc486da32011-02-24 19:48:03 +00003792 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003793}
3794
Joe Perchesfe2c6332013-06-11 23:04:25 -07003795struct ctl_table ipv6_route_table_template[] = {
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003796 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003797 .procname = "flush",
Daniel Lezcano49905092008-01-10 03:01:01 -08003798 .data = &init_net.ipv6.sysctl.flush_delay,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003799 .maxlen = sizeof(int),
Dave Jones89c8b3a12005-04-28 12:11:49 -07003800 .mode = 0200,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08003801 .proc_handler = ipv6_sysctl_rtcache_flush
Linus Torvalds1da177e2005-04-16 15:20:36 -07003802 },
3803 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003804 .procname = "gc_thresh",
Daniel Lezcano9a7ec3a2008-03-04 13:48:53 -08003805 .data = &ip6_dst_ops_template.gc_thresh,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003806 .maxlen = sizeof(int),
3807 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08003808 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003809 },
3810 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003811 .procname = "max_size",
Daniel Lezcano49905092008-01-10 03:01:01 -08003812 .data = &init_net.ipv6.sysctl.ip6_rt_max_size,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003813 .maxlen = sizeof(int),
3814 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08003815 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003816 },
3817 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003818 .procname = "gc_min_interval",
Daniel Lezcano49905092008-01-10 03:01:01 -08003819 .data = &init_net.ipv6.sysctl.ip6_rt_gc_min_interval,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003820 .maxlen = sizeof(int),
3821 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08003822 .proc_handler = proc_dointvec_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003823 },
3824 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003825 .procname = "gc_timeout",
Daniel Lezcano49905092008-01-10 03:01:01 -08003826 .data = &init_net.ipv6.sysctl.ip6_rt_gc_timeout,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003827 .maxlen = sizeof(int),
3828 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08003829 .proc_handler = proc_dointvec_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003830 },
3831 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003832 .procname = "gc_interval",
Daniel Lezcano49905092008-01-10 03:01:01 -08003833 .data = &init_net.ipv6.sysctl.ip6_rt_gc_interval,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003834 .maxlen = sizeof(int),
3835 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08003836 .proc_handler = proc_dointvec_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003837 },
3838 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003839 .procname = "gc_elasticity",
Daniel Lezcano49905092008-01-10 03:01:01 -08003840 .data = &init_net.ipv6.sysctl.ip6_rt_gc_elasticity,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003841 .maxlen = sizeof(int),
3842 .mode = 0644,
Min Zhangf3d3f612010-08-14 22:42:51 -07003843 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003844 },
3845 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003846 .procname = "mtu_expires",
Daniel Lezcano49905092008-01-10 03:01:01 -08003847 .data = &init_net.ipv6.sysctl.ip6_rt_mtu_expires,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003848 .maxlen = sizeof(int),
3849 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08003850 .proc_handler = proc_dointvec_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003851 },
3852 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003853 .procname = "min_adv_mss",
Daniel Lezcano49905092008-01-10 03:01:01 -08003854 .data = &init_net.ipv6.sysctl.ip6_rt_min_advmss,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003855 .maxlen = sizeof(int),
3856 .mode = 0644,
Min Zhangf3d3f612010-08-14 22:42:51 -07003857 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003858 },
3859 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003860 .procname = "gc_min_interval_ms",
Daniel Lezcano49905092008-01-10 03:01:01 -08003861 .data = &init_net.ipv6.sysctl.ip6_rt_gc_min_interval,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003862 .maxlen = sizeof(int),
3863 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08003864 .proc_handler = proc_dointvec_ms_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003865 },
Eric W. Biedermanf8572d82009-11-05 13:32:03 -08003866 { }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003867};
3868
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00003869struct ctl_table * __net_init ipv6_route_sysctl_init(struct net *net)
Daniel Lezcano760f2d02008-01-10 02:53:43 -08003870{
3871 struct ctl_table *table;
3872
3873 table = kmemdup(ipv6_route_table_template,
3874 sizeof(ipv6_route_table_template),
3875 GFP_KERNEL);
YOSHIFUJI Hideaki5ee09102008-02-28 00:24:28 +09003876
3877 if (table) {
3878 table[0].data = &net->ipv6.sysctl.flush_delay;
Lucian Adrian Grijincuc486da32011-02-24 19:48:03 +00003879 table[0].extra1 = net;
Alexey Dobriyan86393e52009-08-29 01:34:49 +00003880 table[1].data = &net->ipv6.ip6_dst_ops.gc_thresh;
YOSHIFUJI Hideaki5ee09102008-02-28 00:24:28 +09003881 table[2].data = &net->ipv6.sysctl.ip6_rt_max_size;
3882 table[3].data = &net->ipv6.sysctl.ip6_rt_gc_min_interval;
3883 table[4].data = &net->ipv6.sysctl.ip6_rt_gc_timeout;
3884 table[5].data = &net->ipv6.sysctl.ip6_rt_gc_interval;
3885 table[6].data = &net->ipv6.sysctl.ip6_rt_gc_elasticity;
3886 table[7].data = &net->ipv6.sysctl.ip6_rt_mtu_expires;
3887 table[8].data = &net->ipv6.sysctl.ip6_rt_min_advmss;
Alexey Dobriyan9c69fab2009-12-18 20:11:03 -08003888 table[9].data = &net->ipv6.sysctl.ip6_rt_gc_min_interval;
Eric W. Biederman464dc802012-11-16 03:02:59 +00003889
3890 /* Don't export sysctls to unprivileged users */
3891 if (net->user_ns != &init_user_ns)
3892 table[0].procname = NULL;
YOSHIFUJI Hideaki5ee09102008-02-28 00:24:28 +09003893 }
3894
Daniel Lezcano760f2d02008-01-10 02:53:43 -08003895 return table;
3896}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003897#endif
3898
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00003899static int __net_init ip6_route_net_init(struct net *net)
Daniel Lezcanocdb18762008-03-04 13:45:33 -08003900{
Pavel Emelyanov633d424b2008-04-21 14:25:23 -07003901 int ret = -ENOMEM;
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003902
Alexey Dobriyan86393e52009-08-29 01:34:49 +00003903 memcpy(&net->ipv6.ip6_dst_ops, &ip6_dst_ops_template,
3904 sizeof(net->ipv6.ip6_dst_ops));
Benjamin Theryf2fc6a52008-03-04 13:49:23 -08003905
Eric Dumazetfc66f952010-10-08 06:37:34 +00003906 if (dst_entries_init(&net->ipv6.ip6_dst_ops) < 0)
3907 goto out_ip6_dst_ops;
3908
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003909 net->ipv6.ip6_null_entry = kmemdup(&ip6_null_entry_template,
3910 sizeof(*net->ipv6.ip6_null_entry),
3911 GFP_KERNEL);
3912 if (!net->ipv6.ip6_null_entry)
Eric Dumazetfc66f952010-10-08 06:37:34 +00003913 goto out_ip6_dst_entries;
Changli Gaod8d1f302010-06-10 23:31:35 -07003914 net->ipv6.ip6_null_entry->dst.path =
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003915 (struct dst_entry *)net->ipv6.ip6_null_entry;
Changli Gaod8d1f302010-06-10 23:31:35 -07003916 net->ipv6.ip6_null_entry->dst.ops = &net->ipv6.ip6_dst_ops;
David S. Miller62fa8a82011-01-26 20:51:05 -08003917 dst_init_metrics(&net->ipv6.ip6_null_entry->dst,
3918 ip6_template_metrics, true);
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003919
3920#ifdef CONFIG_IPV6_MULTIPLE_TABLES
3921 net->ipv6.ip6_prohibit_entry = kmemdup(&ip6_prohibit_entry_template,
3922 sizeof(*net->ipv6.ip6_prohibit_entry),
3923 GFP_KERNEL);
Peter Zijlstra68fffc62008-10-07 14:12:10 -07003924 if (!net->ipv6.ip6_prohibit_entry)
3925 goto out_ip6_null_entry;
Changli Gaod8d1f302010-06-10 23:31:35 -07003926 net->ipv6.ip6_prohibit_entry->dst.path =
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003927 (struct dst_entry *)net->ipv6.ip6_prohibit_entry;
Changli Gaod8d1f302010-06-10 23:31:35 -07003928 net->ipv6.ip6_prohibit_entry->dst.ops = &net->ipv6.ip6_dst_ops;
David S. Miller62fa8a82011-01-26 20:51:05 -08003929 dst_init_metrics(&net->ipv6.ip6_prohibit_entry->dst,
3930 ip6_template_metrics, true);
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003931
3932 net->ipv6.ip6_blk_hole_entry = kmemdup(&ip6_blk_hole_entry_template,
3933 sizeof(*net->ipv6.ip6_blk_hole_entry),
3934 GFP_KERNEL);
Peter Zijlstra68fffc62008-10-07 14:12:10 -07003935 if (!net->ipv6.ip6_blk_hole_entry)
3936 goto out_ip6_prohibit_entry;
Changli Gaod8d1f302010-06-10 23:31:35 -07003937 net->ipv6.ip6_blk_hole_entry->dst.path =
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003938 (struct dst_entry *)net->ipv6.ip6_blk_hole_entry;
Changli Gaod8d1f302010-06-10 23:31:35 -07003939 net->ipv6.ip6_blk_hole_entry->dst.ops = &net->ipv6.ip6_dst_ops;
David S. Miller62fa8a82011-01-26 20:51:05 -08003940 dst_init_metrics(&net->ipv6.ip6_blk_hole_entry->dst,
3941 ip6_template_metrics, true);
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003942#endif
3943
Peter Zijlstrab339a47c2008-10-07 14:15:00 -07003944 net->ipv6.sysctl.flush_delay = 0;
3945 net->ipv6.sysctl.ip6_rt_max_size = 4096;
3946 net->ipv6.sysctl.ip6_rt_gc_min_interval = HZ / 2;
3947 net->ipv6.sysctl.ip6_rt_gc_timeout = 60*HZ;
3948 net->ipv6.sysctl.ip6_rt_gc_interval = 30*HZ;
3949 net->ipv6.sysctl.ip6_rt_gc_elasticity = 9;
3950 net->ipv6.sysctl.ip6_rt_mtu_expires = 10*60*HZ;
3951 net->ipv6.sysctl.ip6_rt_min_advmss = IPV6_MIN_MTU - 20 - 40;
3952
Benjamin Thery6891a342008-03-04 13:49:47 -08003953 net->ipv6.ip6_rt_gc_expire = 30*HZ;
3954
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003955 ret = 0;
3956out:
3957 return ret;
Benjamin Theryf2fc6a52008-03-04 13:49:23 -08003958
Peter Zijlstra68fffc62008-10-07 14:12:10 -07003959#ifdef CONFIG_IPV6_MULTIPLE_TABLES
3960out_ip6_prohibit_entry:
3961 kfree(net->ipv6.ip6_prohibit_entry);
3962out_ip6_null_entry:
3963 kfree(net->ipv6.ip6_null_entry);
3964#endif
Eric Dumazetfc66f952010-10-08 06:37:34 +00003965out_ip6_dst_entries:
3966 dst_entries_destroy(&net->ipv6.ip6_dst_ops);
Benjamin Theryf2fc6a52008-03-04 13:49:23 -08003967out_ip6_dst_ops:
Benjamin Theryf2fc6a52008-03-04 13:49:23 -08003968 goto out;
Daniel Lezcanocdb18762008-03-04 13:45:33 -08003969}
3970
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00003971static void __net_exit ip6_route_net_exit(struct net *net)
Daniel Lezcanocdb18762008-03-04 13:45:33 -08003972{
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003973 kfree(net->ipv6.ip6_null_entry);
3974#ifdef CONFIG_IPV6_MULTIPLE_TABLES
3975 kfree(net->ipv6.ip6_prohibit_entry);
3976 kfree(net->ipv6.ip6_blk_hole_entry);
3977#endif
Xiaotian Feng41bb78b2010-11-02 16:11:05 +00003978 dst_entries_destroy(&net->ipv6.ip6_dst_ops);
Daniel Lezcanocdb18762008-03-04 13:45:33 -08003979}
3980
Thomas Grafd1896342012-06-18 12:08:33 +00003981static int __net_init ip6_route_net_init_late(struct net *net)
3982{
3983#ifdef CONFIG_PROC_FS
Gao fengd4beaa62013-02-18 01:34:54 +00003984 proc_create("ipv6_route", 0, net->proc_net, &ipv6_route_proc_fops);
3985 proc_create("rt6_stats", S_IRUGO, net->proc_net, &rt6_stats_seq_fops);
Thomas Grafd1896342012-06-18 12:08:33 +00003986#endif
3987 return 0;
3988}
3989
3990static void __net_exit ip6_route_net_exit_late(struct net *net)
3991{
3992#ifdef CONFIG_PROC_FS
Gao fengece31ff2013-02-18 01:34:56 +00003993 remove_proc_entry("ipv6_route", net->proc_net);
3994 remove_proc_entry("rt6_stats", net->proc_net);
Thomas Grafd1896342012-06-18 12:08:33 +00003995#endif
3996}
3997
Daniel Lezcanocdb18762008-03-04 13:45:33 -08003998static struct pernet_operations ip6_route_net_ops = {
3999 .init = ip6_route_net_init,
4000 .exit = ip6_route_net_exit,
4001};
4002
David S. Millerc3426b42012-06-09 16:27:05 -07004003static int __net_init ipv6_inetpeer_init(struct net *net)
4004{
4005 struct inet_peer_base *bp = kmalloc(sizeof(*bp), GFP_KERNEL);
4006
4007 if (!bp)
4008 return -ENOMEM;
4009 inet_peer_base_init(bp);
4010 net->ipv6.peers = bp;
4011 return 0;
4012}
4013
4014static void __net_exit ipv6_inetpeer_exit(struct net *net)
4015{
4016 struct inet_peer_base *bp = net->ipv6.peers;
4017
4018 net->ipv6.peers = NULL;
David S. Miller56a6b242012-06-09 16:32:41 -07004019 inetpeer_invalidate_tree(bp);
David S. Millerc3426b42012-06-09 16:27:05 -07004020 kfree(bp);
4021}
4022
David S. Miller2b823f72012-06-09 19:00:16 -07004023static struct pernet_operations ipv6_inetpeer_ops = {
David S. Millerc3426b42012-06-09 16:27:05 -07004024 .init = ipv6_inetpeer_init,
4025 .exit = ipv6_inetpeer_exit,
4026};
4027
Thomas Grafd1896342012-06-18 12:08:33 +00004028static struct pernet_operations ip6_route_net_late_ops = {
4029 .init = ip6_route_net_init_late,
4030 .exit = ip6_route_net_exit_late,
4031};
4032
Daniel Lezcano8ed67782008-03-04 13:48:30 -08004033static struct notifier_block ip6_route_dev_notifier = {
4034 .notifier_call = ip6_route_dev_notify,
WANG Cong242d3a42017-05-08 10:12:13 -07004035 .priority = ADDRCONF_NOTIFY_PRIORITY - 10,
Daniel Lezcano8ed67782008-03-04 13:48:30 -08004036};
4037
WANG Cong2f460932017-05-03 22:07:31 -07004038void __init ip6_route_init_special_entries(void)
4039{
4040 /* Registering of the loopback is done before this portion of code,
4041 * the loopback reference in rt6_info will not be taken, do it
4042 * manually for init_net */
4043 init_net.ipv6.ip6_null_entry->dst.dev = init_net.loopback_dev;
4044 init_net.ipv6.ip6_null_entry->rt6i_idev = in6_dev_get(init_net.loopback_dev);
4045 #ifdef CONFIG_IPV6_MULTIPLE_TABLES
4046 init_net.ipv6.ip6_prohibit_entry->dst.dev = init_net.loopback_dev;
4047 init_net.ipv6.ip6_prohibit_entry->rt6i_idev = in6_dev_get(init_net.loopback_dev);
4048 init_net.ipv6.ip6_blk_hole_entry->dst.dev = init_net.loopback_dev;
4049 init_net.ipv6.ip6_blk_hole_entry->rt6i_idev = in6_dev_get(init_net.loopback_dev);
4050 #endif
4051}
4052
Daniel Lezcano433d49c2007-12-07 00:43:48 -08004053int __init ip6_route_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004054{
Daniel Lezcano433d49c2007-12-07 00:43:48 -08004055 int ret;
Martin KaFai Lau8d0b94a2015-05-22 20:56:04 -07004056 int cpu;
Daniel Lezcano433d49c2007-12-07 00:43:48 -08004057
Daniel Lezcano9a7ec3a2008-03-04 13:48:53 -08004058 ret = -ENOMEM;
4059 ip6_dst_ops_template.kmem_cachep =
4060 kmem_cache_create("ip6_dst_cache", sizeof(struct rt6_info), 0,
4061 SLAB_HWCACHE_ALIGN, NULL);
4062 if (!ip6_dst_ops_template.kmem_cachep)
Fernando Carrijoc19a28e2009-01-07 18:09:08 -08004063 goto out;
David S. Miller14e50e52007-05-24 18:17:54 -07004064
Eric Dumazetfc66f952010-10-08 06:37:34 +00004065 ret = dst_entries_init(&ip6_dst_blackhole_ops);
Daniel Lezcano8ed67782008-03-04 13:48:30 -08004066 if (ret)
Daniel Lezcanobdb32892008-03-04 13:48:10 -08004067 goto out_kmem_cache;
Daniel Lezcanobdb32892008-03-04 13:48:10 -08004068
David S. Millerc3426b42012-06-09 16:27:05 -07004069 ret = register_pernet_subsys(&ipv6_inetpeer_ops);
4070 if (ret)
David S. Millere8803b62012-06-16 01:12:19 -07004071 goto out_dst_entries;
Thomas Graf2a0c4512012-06-14 23:00:17 +00004072
David S. Miller7e52b332012-06-15 15:51:55 -07004073 ret = register_pernet_subsys(&ip6_route_net_ops);
4074 if (ret)
4075 goto out_register_inetpeer;
David S. Millerc3426b42012-06-09 16:27:05 -07004076
Arnaud Ebalard5dc121e2008-10-01 02:37:56 -07004077 ip6_dst_blackhole_ops.kmem_cachep = ip6_dst_ops_template.kmem_cachep;
4078
David S. Millere8803b62012-06-16 01:12:19 -07004079 ret = fib6_init();
Daniel Lezcano433d49c2007-12-07 00:43:48 -08004080 if (ret)
Daniel Lezcano8ed67782008-03-04 13:48:30 -08004081 goto out_register_subsys;
Daniel Lezcano433d49c2007-12-07 00:43:48 -08004082
Daniel Lezcano433d49c2007-12-07 00:43:48 -08004083 ret = xfrm6_init();
4084 if (ret)
David S. Millere8803b62012-06-16 01:12:19 -07004085 goto out_fib6_init;
Daniel Lezcanoc35b7e72007-12-08 00:14:11 -08004086
Daniel Lezcano433d49c2007-12-07 00:43:48 -08004087 ret = fib6_rules_init();
4088 if (ret)
4089 goto xfrm6_init;
Daniel Lezcano7e5449c2007-12-08 00:14:54 -08004090
Thomas Grafd1896342012-06-18 12:08:33 +00004091 ret = register_pernet_subsys(&ip6_route_net_late_ops);
4092 if (ret)
4093 goto fib6_rules_init;
4094
Daniel Lezcano433d49c2007-12-07 00:43:48 -08004095 ret = -ENOBUFS;
Greg Rosec7ac8672011-06-10 01:27:09 +00004096 if (__rtnl_register(PF_INET6, RTM_NEWROUTE, inet6_rtm_newroute, NULL, NULL) ||
4097 __rtnl_register(PF_INET6, RTM_DELROUTE, inet6_rtm_delroute, NULL, NULL) ||
4098 __rtnl_register(PF_INET6, RTM_GETROUTE, inet6_rtm_getroute, NULL, NULL))
Thomas Grafd1896342012-06-18 12:08:33 +00004099 goto out_register_late_subsys;
Daniel Lezcano433d49c2007-12-07 00:43:48 -08004100
Daniel Lezcano8ed67782008-03-04 13:48:30 -08004101 ret = register_netdevice_notifier(&ip6_route_dev_notifier);
Daniel Lezcanocdb18762008-03-04 13:45:33 -08004102 if (ret)
Thomas Grafd1896342012-06-18 12:08:33 +00004103 goto out_register_late_subsys;
Daniel Lezcano8ed67782008-03-04 13:48:30 -08004104
Martin KaFai Lau8d0b94a2015-05-22 20:56:04 -07004105 for_each_possible_cpu(cpu) {
4106 struct uncached_list *ul = per_cpu_ptr(&rt6_uncached_list, cpu);
4107
4108 INIT_LIST_HEAD(&ul->head);
4109 spin_lock_init(&ul->lock);
4110 }
4111
Daniel Lezcano433d49c2007-12-07 00:43:48 -08004112out:
4113 return ret;
4114
Thomas Grafd1896342012-06-18 12:08:33 +00004115out_register_late_subsys:
4116 unregister_pernet_subsys(&ip6_route_net_late_ops);
Daniel Lezcano433d49c2007-12-07 00:43:48 -08004117fib6_rules_init:
Daniel Lezcano433d49c2007-12-07 00:43:48 -08004118 fib6_rules_cleanup();
4119xfrm6_init:
Daniel Lezcano433d49c2007-12-07 00:43:48 -08004120 xfrm6_fini();
Thomas Graf2a0c4512012-06-14 23:00:17 +00004121out_fib6_init:
4122 fib6_gc_cleanup();
Daniel Lezcano8ed67782008-03-04 13:48:30 -08004123out_register_subsys:
4124 unregister_pernet_subsys(&ip6_route_net_ops);
David S. Miller7e52b332012-06-15 15:51:55 -07004125out_register_inetpeer:
4126 unregister_pernet_subsys(&ipv6_inetpeer_ops);
Eric Dumazetfc66f952010-10-08 06:37:34 +00004127out_dst_entries:
4128 dst_entries_destroy(&ip6_dst_blackhole_ops);
Daniel Lezcano433d49c2007-12-07 00:43:48 -08004129out_kmem_cache:
Benjamin Theryf2fc6a52008-03-04 13:49:23 -08004130 kmem_cache_destroy(ip6_dst_ops_template.kmem_cachep);
Daniel Lezcano433d49c2007-12-07 00:43:48 -08004131 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004132}
4133
4134void ip6_route_cleanup(void)
4135{
Daniel Lezcano8ed67782008-03-04 13:48:30 -08004136 unregister_netdevice_notifier(&ip6_route_dev_notifier);
Thomas Grafd1896342012-06-18 12:08:33 +00004137 unregister_pernet_subsys(&ip6_route_net_late_ops);
Thomas Graf101367c2006-08-04 03:39:02 -07004138 fib6_rules_cleanup();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004139 xfrm6_fini();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004140 fib6_gc_cleanup();
David S. Millerc3426b42012-06-09 16:27:05 -07004141 unregister_pernet_subsys(&ipv6_inetpeer_ops);
Daniel Lezcano8ed67782008-03-04 13:48:30 -08004142 unregister_pernet_subsys(&ip6_route_net_ops);
Xiaotian Feng41bb78b2010-11-02 16:11:05 +00004143 dst_entries_destroy(&ip6_dst_blackhole_ops);
Benjamin Theryf2fc6a52008-03-04 13:49:23 -08004144 kmem_cache_destroy(ip6_dst_ops_template.kmem_cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004145}