blob: b3431b79dfb1a182628894943f650edfecdf31e0 [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>
57#include <net/xfrm.h>
Tom Tucker8d717402006-07-30 20:43:36 -070058#include <net/netevent.h>
Thomas Graf21713eb2006-08-15 00:35:24 -070059#include <net/netlink.h>
Nicolas Dichtel51ebd312012-10-22 03:42:09 +000060#include <net/nexthop.h>
Roopa Prabhu19e42e42015-07-21 10:43:48 +020061#include <net/lwtunnel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070062
63#include <asm/uaccess.h>
64
65#ifdef CONFIG_SYSCTL
66#include <linux/sysctl.h>
67#endif
68
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +020069enum rt6_nud_state {
Jiri Benc7e980562013-12-11 13:48:20 +010070 RT6_NUD_FAIL_HARD = -3,
71 RT6_NUD_FAIL_PROBE = -2,
72 RT6_NUD_FAIL_DO_RR = -1,
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +020073 RT6_NUD_SUCCEED = 1
74};
75
Martin KaFai Lau83a09ab2015-05-22 20:56:05 -070076static void ip6_rt_copy_init(struct rt6_info *rt, struct rt6_info *ort);
Linus Torvalds1da177e2005-04-16 15:20:36 -070077static struct dst_entry *ip6_dst_check(struct dst_entry *dst, u32 cookie);
David S. Miller0dbaee32010-12-13 12:52:14 -080078static unsigned int ip6_default_advmss(const struct dst_entry *dst);
Steffen Klassertebb762f2011-11-23 02:12:51 +000079static unsigned int ip6_mtu(const struct dst_entry *dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -070080static struct dst_entry *ip6_negative_advice(struct dst_entry *);
81static void ip6_dst_destroy(struct dst_entry *);
82static void ip6_dst_ifdown(struct dst_entry *,
83 struct net_device *dev, int how);
Daniel Lezcano569d3642008-01-18 03:56:57 -080084static int ip6_dst_gc(struct dst_ops *ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -070085
86static int ip6_pkt_discard(struct sk_buff *skb);
Eric Dumazetaad88722014-04-15 13:47:15 -040087static int ip6_pkt_discard_out(struct sock *sk, struct sk_buff *skb);
Kamala R7150aed2013-12-02 19:55:21 +053088static int ip6_pkt_prohibit(struct sk_buff *skb);
Eric Dumazetaad88722014-04-15 13:47:15 -040089static int ip6_pkt_prohibit_out(struct sock *sk, struct sk_buff *skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -070090static void ip6_link_failure(struct sk_buff *skb);
David S. Miller6700c272012-07-17 03:29:28 -070091static void ip6_rt_update_pmtu(struct dst_entry *dst, struct sock *sk,
92 struct sk_buff *skb, u32 mtu);
93static void rt6_do_redirect(struct dst_entry *dst, struct sock *sk,
94 struct sk_buff *skb);
Martin KaFai Lau4b32b5a2015-04-28 13:03:06 -070095static void rt6_dst_from_metrics_check(struct rt6_info *rt);
Nicolas Dichtel52bd4c02013-06-28 17:35:48 +020096static int rt6_score_route(struct rt6_info *rt, int oif, int strict);
Linus Torvalds1da177e2005-04-16 15:20:36 -070097
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -080098#ifdef CONFIG_IPV6_ROUTE_INFO
Daniel Lezcanoefa2cea2008-03-04 13:46:48 -080099static struct rt6_info *rt6_add_route_info(struct net *net,
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000100 const struct in6_addr *prefix, int prefixlen,
101 const struct in6_addr *gwaddr, int ifindex,
Eric Dumazet95c96172012-04-15 05:58:06 +0000102 unsigned int pref);
Daniel Lezcanoefa2cea2008-03-04 13:46:48 -0800103static struct rt6_info *rt6_get_route_info(struct net *net,
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000104 const struct in6_addr *prefix, int prefixlen,
105 const struct in6_addr *gwaddr, int ifindex);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800106#endif
107
Martin KaFai Lau8d0b94a2015-05-22 20:56:04 -0700108struct uncached_list {
109 spinlock_t lock;
110 struct list_head head;
111};
112
113static DEFINE_PER_CPU_ALIGNED(struct uncached_list, rt6_uncached_list);
114
115static void rt6_uncached_list_add(struct rt6_info *rt)
116{
117 struct uncached_list *ul = raw_cpu_ptr(&rt6_uncached_list);
118
119 rt->dst.flags |= DST_NOCACHE;
120 rt->rt6i_uncached_list = ul;
121
122 spin_lock_bh(&ul->lock);
123 list_add_tail(&rt->rt6i_uncached, &ul->head);
124 spin_unlock_bh(&ul->lock);
125}
126
127static void rt6_uncached_list_del(struct rt6_info *rt)
128{
129 if (!list_empty(&rt->rt6i_uncached)) {
130 struct uncached_list *ul = rt->rt6i_uncached_list;
131
132 spin_lock_bh(&ul->lock);
133 list_del(&rt->rt6i_uncached);
134 spin_unlock_bh(&ul->lock);
135 }
136}
137
138static void rt6_uncached_list_flush_dev(struct net *net, struct net_device *dev)
139{
140 struct net_device *loopback_dev = net->loopback_dev;
141 int cpu;
142
143 for_each_possible_cpu(cpu) {
144 struct uncached_list *ul = per_cpu_ptr(&rt6_uncached_list, cpu);
145 struct rt6_info *rt;
146
147 spin_lock_bh(&ul->lock);
148 list_for_each_entry(rt, &ul->head, rt6i_uncached) {
149 struct inet6_dev *rt_idev = rt->rt6i_idev;
150 struct net_device *rt_dev = rt->dst.dev;
151
152 if (rt_idev && (rt_idev->dev == dev || !dev) &&
153 rt_idev->dev != loopback_dev) {
154 rt->rt6i_idev = in6_dev_get(loopback_dev);
155 in6_dev_put(rt_idev);
156 }
157
158 if (rt_dev && (rt_dev == dev || !dev) &&
159 rt_dev != loopback_dev) {
160 rt->dst.dev = loopback_dev;
161 dev_hold(rt->dst.dev);
162 dev_put(rt_dev);
163 }
164 }
165 spin_unlock_bh(&ul->lock);
166 }
167}
168
Martin KaFai Laud52d3992015-05-22 20:56:06 -0700169static u32 *rt6_pcpu_cow_metrics(struct rt6_info *rt)
170{
171 return dst_metrics_write_ptr(rt->dst.from);
172}
173
David S. Miller06582542011-01-27 14:58:42 -0800174static u32 *ipv6_cow_metrics(struct dst_entry *dst, unsigned long old)
175{
Martin KaFai Lau4b32b5a2015-04-28 13:03:06 -0700176 struct rt6_info *rt = (struct rt6_info *)dst;
David S. Miller06582542011-01-27 14:58:42 -0800177
Martin KaFai Laud52d3992015-05-22 20:56:06 -0700178 if (rt->rt6i_flags & RTF_PCPU)
179 return rt6_pcpu_cow_metrics(rt);
180 else if (rt->rt6i_flags & RTF_CACHE)
Martin KaFai Lau4b32b5a2015-04-28 13:03:06 -0700181 return NULL;
182 else
Martin KaFai Lau3b471172015-02-12 16:14:08 -0800183 return dst_cow_metrics_generic(dst, old);
David S. Miller06582542011-01-27 14:58:42 -0800184}
185
David S. Millerf894cbf2012-07-02 21:52:24 -0700186static inline const void *choose_neigh_daddr(struct rt6_info *rt,
187 struct sk_buff *skb,
188 const void *daddr)
David S. Miller39232972012-01-26 15:22:32 -0500189{
190 struct in6_addr *p = &rt->rt6i_gateway;
191
David S. Millera7563f32012-01-26 16:29:16 -0500192 if (!ipv6_addr_any(p))
David S. Miller39232972012-01-26 15:22:32 -0500193 return (const void *) p;
David S. Millerf894cbf2012-07-02 21:52:24 -0700194 else if (skb)
195 return &ipv6_hdr(skb)->daddr;
David S. Miller39232972012-01-26 15:22:32 -0500196 return daddr;
197}
198
David S. Millerf894cbf2012-07-02 21:52:24 -0700199static struct neighbour *ip6_neigh_lookup(const struct dst_entry *dst,
200 struct sk_buff *skb,
201 const void *daddr)
David S. Millerd3aaeb32011-07-18 00:40:17 -0700202{
David S. Miller39232972012-01-26 15:22:32 -0500203 struct rt6_info *rt = (struct rt6_info *) dst;
204 struct neighbour *n;
205
David S. Millerf894cbf2012-07-02 21:52:24 -0700206 daddr = choose_neigh_daddr(rt, skb, daddr);
YOSHIFUJI Hideaki / 吉藤英明8e022ee2013-01-17 12:53:09 +0000207 n = __ipv6_neigh_lookup(dst->dev, daddr);
David S. Millerf83c7792011-12-28 15:41:23 -0500208 if (n)
209 return n;
210 return neigh_create(&nd_tbl, daddr, dst->dev);
211}
212
Daniel Lezcano9a7ec3a2008-03-04 13:48:53 -0800213static struct dst_ops ip6_dst_ops_template = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 .family = AF_INET6,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 .gc = ip6_dst_gc,
216 .gc_thresh = 1024,
217 .check = ip6_dst_check,
David S. Miller0dbaee32010-12-13 12:52:14 -0800218 .default_advmss = ip6_default_advmss,
Steffen Klassertebb762f2011-11-23 02:12:51 +0000219 .mtu = ip6_mtu,
David S. Miller06582542011-01-27 14:58:42 -0800220 .cow_metrics = ipv6_cow_metrics,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 .destroy = ip6_dst_destroy,
222 .ifdown = ip6_dst_ifdown,
223 .negative_advice = ip6_negative_advice,
224 .link_failure = ip6_link_failure,
225 .update_pmtu = ip6_rt_update_pmtu,
David S. Miller6e157b62012-07-12 00:05:02 -0700226 .redirect = rt6_do_redirect,
Herbert Xu1ac06e02008-05-20 14:32:14 -0700227 .local_out = __ip6_local_out,
David S. Millerd3aaeb32011-07-18 00:40:17 -0700228 .neigh_lookup = ip6_neigh_lookup,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229};
230
Steffen Klassertebb762f2011-11-23 02:12:51 +0000231static unsigned int ip6_blackhole_mtu(const struct dst_entry *dst)
Roland Dreierec831ea2011-01-31 13:16:00 -0800232{
Steffen Klassert618f9bc2011-11-23 02:13:31 +0000233 unsigned int mtu = dst_metric_raw(dst, RTAX_MTU);
234
235 return mtu ? : dst->dev->mtu;
Roland Dreierec831ea2011-01-31 13:16:00 -0800236}
237
David S. Miller6700c272012-07-17 03:29:28 -0700238static void ip6_rt_blackhole_update_pmtu(struct dst_entry *dst, struct sock *sk,
239 struct sk_buff *skb, u32 mtu)
David S. Miller14e50e52007-05-24 18:17:54 -0700240{
241}
242
David S. Miller6700c272012-07-17 03:29:28 -0700243static void ip6_rt_blackhole_redirect(struct dst_entry *dst, struct sock *sk,
244 struct sk_buff *skb)
David S. Millerb587ee32012-07-12 00:39:24 -0700245{
246}
247
Held Bernhard0972ddb2011-04-24 22:07:32 +0000248static u32 *ip6_rt_blackhole_cow_metrics(struct dst_entry *dst,
249 unsigned long old)
250{
251 return NULL;
252}
253
David S. Miller14e50e52007-05-24 18:17:54 -0700254static struct dst_ops ip6_dst_blackhole_ops = {
255 .family = AF_INET6,
David S. Miller14e50e52007-05-24 18:17:54 -0700256 .destroy = ip6_dst_destroy,
257 .check = ip6_dst_check,
Steffen Klassertebb762f2011-11-23 02:12:51 +0000258 .mtu = ip6_blackhole_mtu,
Eric Dumazet214f45c2011-02-18 11:39:01 -0800259 .default_advmss = ip6_default_advmss,
David S. Miller14e50e52007-05-24 18:17:54 -0700260 .update_pmtu = ip6_rt_blackhole_update_pmtu,
David S. Millerb587ee32012-07-12 00:39:24 -0700261 .redirect = ip6_rt_blackhole_redirect,
Held Bernhard0972ddb2011-04-24 22:07:32 +0000262 .cow_metrics = ip6_rt_blackhole_cow_metrics,
David S. Millerd3aaeb32011-07-18 00:40:17 -0700263 .neigh_lookup = ip6_neigh_lookup,
David S. Miller14e50e52007-05-24 18:17:54 -0700264};
265
David S. Miller62fa8a82011-01-26 20:51:05 -0800266static const u32 ip6_template_metrics[RTAX_MAX] = {
Li RongQing14edd872012-10-24 14:01:18 +0800267 [RTAX_HOPLIMIT - 1] = 0,
David S. Miller62fa8a82011-01-26 20:51:05 -0800268};
269
Eric Dumazetfb0af4c2012-09-11 21:47:51 +0000270static const struct rt6_info ip6_null_entry_template = {
Changli Gaod8d1f302010-06-10 23:31:35 -0700271 .dst = {
272 .__refcnt = ATOMIC_INIT(1),
273 .__use = 1,
Nicolas Dichtel2c20cbd2012-09-10 22:09:47 +0000274 .obsolete = DST_OBSOLETE_FORCE_CHK,
Changli Gaod8d1f302010-06-10 23:31:35 -0700275 .error = -ENETUNREACH,
Changli Gaod8d1f302010-06-10 23:31:35 -0700276 .input = ip6_pkt_discard,
277 .output = ip6_pkt_discard_out,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 },
279 .rt6i_flags = (RTF_REJECT | RTF_NONEXTHOP),
Jean-Mickael Guerin4f724272009-05-20 17:38:59 -0700280 .rt6i_protocol = RTPROT_KERNEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 .rt6i_metric = ~(u32) 0,
282 .rt6i_ref = ATOMIC_INIT(1),
283};
284
Thomas Graf101367c2006-08-04 03:39:02 -0700285#ifdef CONFIG_IPV6_MULTIPLE_TABLES
286
Eric Dumazetfb0af4c2012-09-11 21:47:51 +0000287static const struct rt6_info ip6_prohibit_entry_template = {
Changli Gaod8d1f302010-06-10 23:31:35 -0700288 .dst = {
289 .__refcnt = ATOMIC_INIT(1),
290 .__use = 1,
Nicolas Dichtel2c20cbd2012-09-10 22:09:47 +0000291 .obsolete = DST_OBSOLETE_FORCE_CHK,
Changli Gaod8d1f302010-06-10 23:31:35 -0700292 .error = -EACCES,
Changli Gaod8d1f302010-06-10 23:31:35 -0700293 .input = ip6_pkt_prohibit,
294 .output = ip6_pkt_prohibit_out,
Thomas Graf101367c2006-08-04 03:39:02 -0700295 },
296 .rt6i_flags = (RTF_REJECT | RTF_NONEXTHOP),
Jean-Mickael Guerin4f724272009-05-20 17:38:59 -0700297 .rt6i_protocol = RTPROT_KERNEL,
Thomas Graf101367c2006-08-04 03:39:02 -0700298 .rt6i_metric = ~(u32) 0,
299 .rt6i_ref = ATOMIC_INIT(1),
300};
301
Eric Dumazetfb0af4c2012-09-11 21:47:51 +0000302static const struct rt6_info ip6_blk_hole_entry_template = {
Changli Gaod8d1f302010-06-10 23:31:35 -0700303 .dst = {
304 .__refcnt = ATOMIC_INIT(1),
305 .__use = 1,
Nicolas Dichtel2c20cbd2012-09-10 22:09:47 +0000306 .obsolete = DST_OBSOLETE_FORCE_CHK,
Changli Gaod8d1f302010-06-10 23:31:35 -0700307 .error = -EINVAL,
Changli Gaod8d1f302010-06-10 23:31:35 -0700308 .input = dst_discard,
Eric Dumazetaad88722014-04-15 13:47:15 -0400309 .output = dst_discard_sk,
Thomas Graf101367c2006-08-04 03:39:02 -0700310 },
311 .rt6i_flags = (RTF_REJECT | RTF_NONEXTHOP),
Jean-Mickael Guerin4f724272009-05-20 17:38:59 -0700312 .rt6i_protocol = RTPROT_KERNEL,
Thomas Graf101367c2006-08-04 03:39:02 -0700313 .rt6i_metric = ~(u32) 0,
314 .rt6i_ref = ATOMIC_INIT(1),
315};
316
317#endif
318
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319/* allocate dst with ip6_dst_ops */
Martin KaFai Laud52d3992015-05-22 20:56:06 -0700320static struct rt6_info *__ip6_dst_alloc(struct net *net,
321 struct net_device *dev,
322 int flags,
323 struct fib6_table *table)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324{
David S. Miller97bab732012-06-09 22:36:36 -0700325 struct rt6_info *rt = dst_alloc(&net->ipv6.ip6_dst_ops, dev,
Nicolas Dichtel6f3118b2012-09-10 22:09:46 +0000326 0, DST_OBSOLETE_FORCE_CHK, flags);
David S. Millercf911662011-04-28 14:31:47 -0700327
David S. Miller97bab732012-06-09 22:36:36 -0700328 if (rt) {
Steffen Klassert81048912012-07-05 23:37:09 +0000329 struct dst_entry *dst = &rt->dst;
330
331 memset(dst + 1, 0, sizeof(*rt) - sizeof(*dst));
Nicolas Dichtel51ebd312012-10-22 03:42:09 +0000332 INIT_LIST_HEAD(&rt->rt6i_siblings);
Martin KaFai Lau8d0b94a2015-05-22 20:56:04 -0700333 INIT_LIST_HEAD(&rt->rt6i_uncached);
David S. Miller97bab732012-06-09 22:36:36 -0700334 }
David S. Millercf911662011-04-28 14:31:47 -0700335 return rt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336}
337
Martin KaFai Laud52d3992015-05-22 20:56:06 -0700338static struct rt6_info *ip6_dst_alloc(struct net *net,
339 struct net_device *dev,
340 int flags,
341 struct fib6_table *table)
342{
343 struct rt6_info *rt = __ip6_dst_alloc(net, dev, flags, table);
344
345 if (rt) {
346 rt->rt6i_pcpu = alloc_percpu_gfp(struct rt6_info *, GFP_ATOMIC);
347 if (rt->rt6i_pcpu) {
348 int cpu;
349
350 for_each_possible_cpu(cpu) {
351 struct rt6_info **p;
352
353 p = per_cpu_ptr(rt->rt6i_pcpu, cpu);
354 /* no one shares rt */
355 *p = NULL;
356 }
357 } else {
358 dst_destroy((struct dst_entry *)rt);
359 return NULL;
360 }
361 }
362
363 return rt;
364}
365
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366static void ip6_dst_destroy(struct dst_entry *dst)
367{
368 struct rt6_info *rt = (struct rt6_info *)dst;
YOSHIFUJI Hideaki / 吉藤英明ecd98832013-02-20 00:29:08 +0000369 struct dst_entry *from = dst->from;
Martin KaFai Lau8d0b94a2015-05-22 20:56:04 -0700370 struct inet6_dev *idev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371
Martin KaFai Lau4b32b5a2015-04-28 13:03:06 -0700372 dst_destroy_metrics_generic(dst);
Markus Elfring87775312015-07-02 16:30:24 +0200373 free_percpu(rt->rt6i_pcpu);
Martin KaFai Lau8d0b94a2015-05-22 20:56:04 -0700374 rt6_uncached_list_del(rt);
375
376 idev = rt->rt6i_idev;
David S. Miller38308472011-12-03 18:02:47 -0500377 if (idev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 rt->rt6i_idev = NULL;
379 in6_dev_put(idev);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900380 }
Gao feng1716a962012-04-06 00:13:10 +0000381
YOSHIFUJI Hideaki / 吉藤英明ecd98832013-02-20 00:29:08 +0000382 dst->from = NULL;
383 dst_release(from);
David S. Millerb3419362010-11-30 12:27:11 -0800384}
385
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386static void ip6_dst_ifdown(struct dst_entry *dst, struct net_device *dev,
387 int how)
388{
389 struct rt6_info *rt = (struct rt6_info *)dst;
390 struct inet6_dev *idev = rt->rt6i_idev;
Denis V. Lunev5a3e55d2007-12-07 00:38:10 -0800391 struct net_device *loopback_dev =
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900392 dev_net(dev)->loopback_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393
David S. Miller97cac082012-07-02 22:43:47 -0700394 if (dev != loopback_dev) {
395 if (idev && idev->dev == dev) {
396 struct inet6_dev *loopback_idev =
397 in6_dev_get(loopback_dev);
398 if (loopback_idev) {
399 rt->rt6i_idev = loopback_idev;
400 in6_dev_put(idev);
401 }
402 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 }
404}
405
Eric Dumazeta50feda2012-05-18 18:57:34 +0000406static bool rt6_check_expired(const struct rt6_info *rt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407{
Gao feng1716a962012-04-06 00:13:10 +0000408 if (rt->rt6i_flags & RTF_EXPIRES) {
409 if (time_after(jiffies, rt->dst.expires))
Eric Dumazeta50feda2012-05-18 18:57:34 +0000410 return true;
Gao feng1716a962012-04-06 00:13:10 +0000411 } else if (rt->dst.from) {
Li RongQing3fd91fb2012-09-13 19:54:57 +0000412 return rt6_check_expired((struct rt6_info *) rt->dst.from);
Gao feng1716a962012-04-06 00:13:10 +0000413 }
Eric Dumazeta50feda2012-05-18 18:57:34 +0000414 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415}
416
Nicolas Dichtel51ebd312012-10-22 03:42:09 +0000417/* Multipath route selection:
418 * Hash based function using packet header and flowlabel.
419 * Adapted from fib_info_hashfn()
420 */
421static int rt6_info_hash_nhsfn(unsigned int candidate_count,
422 const struct flowi6 *fl6)
423{
424 unsigned int val = fl6->flowi6_proto;
425
YOSHIFUJI Hideaki / 吉藤英明c08977b2013-01-13 05:02:29 +0000426 val ^= ipv6_addr_hash(&fl6->daddr);
427 val ^= ipv6_addr_hash(&fl6->saddr);
Nicolas Dichtel51ebd312012-10-22 03:42:09 +0000428
429 /* Work only if this not encapsulated */
430 switch (fl6->flowi6_proto) {
431 case IPPROTO_UDP:
432 case IPPROTO_TCP:
433 case IPPROTO_SCTP:
Nicolas Dichtelb3ce5ae2012-10-22 23:35:06 +0000434 val ^= (__force u16)fl6->fl6_sport;
435 val ^= (__force u16)fl6->fl6_dport;
Nicolas Dichtel51ebd312012-10-22 03:42:09 +0000436 break;
437
438 case IPPROTO_ICMPV6:
Nicolas Dichtelb3ce5ae2012-10-22 23:35:06 +0000439 val ^= (__force u16)fl6->fl6_icmp_type;
440 val ^= (__force u16)fl6->fl6_icmp_code;
Nicolas Dichtel51ebd312012-10-22 03:42:09 +0000441 break;
442 }
443 /* RFC6438 recommands to use flowlabel */
Nicolas Dichtelb3ce5ae2012-10-22 23:35:06 +0000444 val ^= (__force u32)fl6->flowlabel;
Nicolas Dichtel51ebd312012-10-22 03:42:09 +0000445
446 /* Perhaps, we need to tune, this function? */
447 val = val ^ (val >> 7) ^ (val >> 12);
448 return val % candidate_count;
449}
450
451static struct rt6_info *rt6_multipath_select(struct rt6_info *match,
Nicolas Dichtel52bd4c02013-06-28 17:35:48 +0200452 struct flowi6 *fl6, int oif,
453 int strict)
Nicolas Dichtel51ebd312012-10-22 03:42:09 +0000454{
455 struct rt6_info *sibling, *next_sibling;
456 int route_choosen;
457
458 route_choosen = rt6_info_hash_nhsfn(match->rt6i_nsiblings + 1, fl6);
459 /* Don't change the route, if route_choosen == 0
460 * (siblings does not include ourself)
461 */
462 if (route_choosen)
463 list_for_each_entry_safe(sibling, next_sibling,
464 &match->rt6i_siblings, rt6i_siblings) {
465 route_choosen--;
466 if (route_choosen == 0) {
Nicolas Dichtel52bd4c02013-06-28 17:35:48 +0200467 if (rt6_score_route(sibling, oif, strict) < 0)
468 break;
Nicolas Dichtel51ebd312012-10-22 03:42:09 +0000469 match = sibling;
470 break;
471 }
472 }
473 return match;
474}
475
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476/*
Thomas Grafc71099a2006-08-04 23:20:06 -0700477 * Route lookup. Any table->tb6_lock is implied.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 */
479
Daniel Lezcano8ed67782008-03-04 13:48:30 -0800480static inline struct rt6_info *rt6_device_match(struct net *net,
481 struct rt6_info *rt,
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000482 const struct in6_addr *saddr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 int oif,
YOSHIFUJI Hideakid4208952008-06-27 20:14:54 -0700484 int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485{
486 struct rt6_info *local = NULL;
487 struct rt6_info *sprt;
488
YOSHIFUJI Hideakidd3abc42008-07-02 18:30:18 +0900489 if (!oif && ipv6_addr_any(saddr))
490 goto out;
491
Changli Gaod8d1f302010-06-10 23:31:35 -0700492 for (sprt = rt; sprt; sprt = sprt->dst.rt6_next) {
David S. Millerd1918542011-12-28 20:19:20 -0500493 struct net_device *dev = sprt->dst.dev;
YOSHIFUJI Hideakidd3abc42008-07-02 18:30:18 +0900494
495 if (oif) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 if (dev->ifindex == oif)
497 return sprt;
498 if (dev->flags & IFF_LOOPBACK) {
David S. Miller38308472011-12-03 18:02:47 -0500499 if (!sprt->rt6i_idev ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 sprt->rt6i_idev->dev->ifindex != oif) {
YOSHIFUJI Hideakid4208952008-06-27 20:14:54 -0700501 if (flags & RT6_LOOKUP_F_IFACE && oif)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 continue;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900503 if (local && (!oif ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 local->rt6i_idev->dev->ifindex == oif))
505 continue;
506 }
507 local = sprt;
508 }
YOSHIFUJI Hideakidd3abc42008-07-02 18:30:18 +0900509 } else {
510 if (ipv6_chk_addr(net, saddr, dev,
511 flags & RT6_LOOKUP_F_IFACE))
512 return sprt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 }
YOSHIFUJI Hideakidd3abc42008-07-02 18:30:18 +0900514 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515
YOSHIFUJI Hideakidd3abc42008-07-02 18:30:18 +0900516 if (oif) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 if (local)
518 return local;
519
YOSHIFUJI Hideakid4208952008-06-27 20:14:54 -0700520 if (flags & RT6_LOOKUP_F_IFACE)
Daniel Lezcano8ed67782008-03-04 13:48:30 -0800521 return net->ipv6.ip6_null_entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 }
YOSHIFUJI Hideakidd3abc42008-07-02 18:30:18 +0900523out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 return rt;
525}
526
YOSHIFUJI Hideaki27097252006-03-20 17:05:13 -0800527#ifdef CONFIG_IPV6_ROUTER_PREF
Hannes Frederic Sowac2f17e82013-10-21 06:17:15 +0200528struct __rt6_probe_work {
529 struct work_struct work;
530 struct in6_addr target;
531 struct net_device *dev;
532};
533
534static void rt6_probe_deferred(struct work_struct *w)
535{
536 struct in6_addr mcaddr;
537 struct __rt6_probe_work *work =
538 container_of(w, struct __rt6_probe_work, work);
539
540 addrconf_addr_solict_mult(&work->target, &mcaddr);
541 ndisc_send_ns(work->dev, NULL, &work->target, &mcaddr, NULL);
542 dev_put(work->dev);
Michael Büsch662f5532015-02-08 10:14:07 +0100543 kfree(work);
Hannes Frederic Sowac2f17e82013-10-21 06:17:15 +0200544}
545
YOSHIFUJI Hideaki27097252006-03-20 17:05:13 -0800546static void rt6_probe(struct rt6_info *rt)
547{
Eric Dumazetf2c31e32011-07-29 19:00:53 +0000548 struct neighbour *neigh;
YOSHIFUJI Hideaki27097252006-03-20 17:05:13 -0800549 /*
550 * Okay, this does not seem to be appropriate
551 * for now, however, we need to check if it
552 * is really so; aka Router Reachability Probing.
553 *
554 * Router Reachability Probe MUST be rate-limited
555 * to no more than one per minute.
556 */
YOSHIFUJI Hideaki / 吉藤英明2152cae2013-01-17 12:53:43 +0000557 if (!rt || !(rt->rt6i_flags & RTF_GATEWAY))
Amerigo Wangfdd66812012-09-10 02:48:44 +0000558 return;
YOSHIFUJI Hideaki / 吉藤英明2152cae2013-01-17 12:53:43 +0000559 rcu_read_lock_bh();
560 neigh = __ipv6_neigh_lookup_noref(rt->dst.dev, &rt->rt6i_gateway);
561 if (neigh) {
562 write_lock(&neigh->lock);
563 if (neigh->nud_state & NUD_VALID)
564 goto out;
YOSHIFUJI Hideaki / 吉藤英明7ff74a52013-01-17 12:53:02 +0000565 }
YOSHIFUJI Hideaki / 吉藤英明2152cae2013-01-17 12:53:43 +0000566
567 if (!neigh ||
YOSHIFUJI Hideaki52e16352006-03-20 17:05:47 -0800568 time_after(jiffies, neigh->updated + rt->rt6i_idev->cnf.rtr_probe_interval)) {
Hannes Frederic Sowac2f17e82013-10-21 06:17:15 +0200569 struct __rt6_probe_work *work;
YOSHIFUJI Hideaki27097252006-03-20 17:05:13 -0800570
Hannes Frederic Sowac2f17e82013-10-21 06:17:15 +0200571 work = kmalloc(sizeof(*work), GFP_ATOMIC);
572
573 if (neigh && work)
Jiri Benc7e980562013-12-11 13:48:20 +0100574 __neigh_set_probe_once(neigh);
YOSHIFUJI Hideaki / 吉藤英明2152cae2013-01-17 12:53:43 +0000575
Hannes Frederic Sowac2f17e82013-10-21 06:17:15 +0200576 if (neigh)
577 write_unlock(&neigh->lock);
578
579 if (work) {
580 INIT_WORK(&work->work, rt6_probe_deferred);
581 work->target = rt->rt6i_gateway;
582 dev_hold(rt->dst.dev);
583 work->dev = rt->dst.dev;
584 schedule_work(&work->work);
585 }
Eric Dumazetf2c31e32011-07-29 19:00:53 +0000586 } else {
YOSHIFUJI Hideaki / 吉藤英明2152cae2013-01-17 12:53:43 +0000587out:
588 write_unlock(&neigh->lock);
Eric Dumazetf2c31e32011-07-29 19:00:53 +0000589 }
YOSHIFUJI Hideaki / 吉藤英明2152cae2013-01-17 12:53:43 +0000590 rcu_read_unlock_bh();
YOSHIFUJI Hideaki27097252006-03-20 17:05:13 -0800591}
592#else
593static inline void rt6_probe(struct rt6_info *rt)
594{
YOSHIFUJI Hideaki27097252006-03-20 17:05:13 -0800595}
596#endif
597
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598/*
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800599 * Default Router Selection (RFC 2461 6.3.6)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 */
Dave Jonesb6f99a22007-03-22 12:27:49 -0700601static inline int rt6_check_dev(struct rt6_info *rt, int oif)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602{
David S. Millerd1918542011-12-28 20:19:20 -0500603 struct net_device *dev = rt->dst.dev;
David S. Miller161980f2007-04-06 11:42:27 -0700604 if (!oif || dev->ifindex == oif)
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800605 return 2;
David S. Miller161980f2007-04-06 11:42:27 -0700606 if ((dev->flags & IFF_LOOPBACK) &&
607 rt->rt6i_idev && rt->rt6i_idev->dev->ifindex == oif)
608 return 1;
609 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610}
611
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200612static inline enum rt6_nud_state rt6_check_neigh(struct rt6_info *rt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613{
Eric Dumazetf2c31e32011-07-29 19:00:53 +0000614 struct neighbour *neigh;
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200615 enum rt6_nud_state ret = RT6_NUD_FAIL_HARD;
Eric Dumazetf2c31e32011-07-29 19:00:53 +0000616
YOSHIFUJI Hideaki4d0c5912006-05-26 13:23:41 -0700617 if (rt->rt6i_flags & RTF_NONEXTHOP ||
618 !(rt->rt6i_flags & RTF_GATEWAY))
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200619 return RT6_NUD_SUCCEED;
YOSHIFUJI Hideaki / 吉藤英明145a3622013-01-17 12:53:38 +0000620
621 rcu_read_lock_bh();
622 neigh = __ipv6_neigh_lookup_noref(rt->dst.dev, &rt->rt6i_gateway);
623 if (neigh) {
624 read_lock(&neigh->lock);
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800625 if (neigh->nud_state & NUD_VALID)
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200626 ret = RT6_NUD_SUCCEED;
YOSHIFUJI Hideaki398bcbe2008-01-19 00:35:16 -0800627#ifdef CONFIG_IPV6_ROUTER_PREF
Paul Marksa5a81f02012-12-03 10:26:54 +0000628 else if (!(neigh->nud_state & NUD_FAILED))
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200629 ret = RT6_NUD_SUCCEED;
Jiri Benc7e980562013-12-11 13:48:20 +0100630 else
631 ret = RT6_NUD_FAIL_PROBE;
YOSHIFUJI Hideaki398bcbe2008-01-19 00:35:16 -0800632#endif
YOSHIFUJI Hideaki / 吉藤英明145a3622013-01-17 12:53:38 +0000633 read_unlock(&neigh->lock);
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200634 } else {
635 ret = IS_ENABLED(CONFIG_IPV6_ROUTER_PREF) ?
Jiri Benc7e980562013-12-11 13:48:20 +0100636 RT6_NUD_SUCCEED : RT6_NUD_FAIL_DO_RR;
Paul Marksa5a81f02012-12-03 10:26:54 +0000637 }
YOSHIFUJI Hideaki / 吉藤英明145a3622013-01-17 12:53:38 +0000638 rcu_read_unlock_bh();
639
Paul Marksa5a81f02012-12-03 10:26:54 +0000640 return ret;
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800641}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800643static int rt6_score_route(struct rt6_info *rt, int oif,
644 int strict)
645{
Paul Marksa5a81f02012-12-03 10:26:54 +0000646 int m;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900647
YOSHIFUJI Hideaki4d0c5912006-05-26 13:23:41 -0700648 m = rt6_check_dev(rt, oif);
YOSHIFUJI Hideaki77d16f42006-08-23 17:25:05 -0700649 if (!m && (strict & RT6_LOOKUP_F_IFACE))
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200650 return RT6_NUD_FAIL_HARD;
YOSHIFUJI Hideakiebacaaa2006-03-20 17:04:53 -0800651#ifdef CONFIG_IPV6_ROUTER_PREF
652 m |= IPV6_DECODE_PREF(IPV6_EXTRACT_PREF(rt->rt6i_flags)) << 2;
653#endif
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200654 if (strict & RT6_LOOKUP_F_REACHABLE) {
655 int n = rt6_check_neigh(rt);
656 if (n < 0)
657 return n;
658 }
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800659 return m;
660}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661
David S. Millerf11e6652007-03-24 20:36:25 -0700662static struct rt6_info *find_match(struct rt6_info *rt, int oif, int strict,
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200663 int *mpri, struct rt6_info *match,
664 bool *do_rr)
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800665{
David S. Millerf11e6652007-03-24 20:36:25 -0700666 int m;
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200667 bool match_do_rr = false;
David S. Millerf11e6652007-03-24 20:36:25 -0700668
669 if (rt6_check_expired(rt))
670 goto out;
671
672 m = rt6_score_route(rt, oif, strict);
Jiri Benc7e980562013-12-11 13:48:20 +0100673 if (m == RT6_NUD_FAIL_DO_RR) {
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200674 match_do_rr = true;
675 m = 0; /* lowest valid score */
Jiri Benc7e980562013-12-11 13:48:20 +0100676 } else if (m == RT6_NUD_FAIL_HARD) {
David S. Millerf11e6652007-03-24 20:36:25 -0700677 goto out;
David S. Millerf11e6652007-03-24 20:36:25 -0700678 }
679
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200680 if (strict & RT6_LOOKUP_F_REACHABLE)
681 rt6_probe(rt);
682
Jiri Benc7e980562013-12-11 13:48:20 +0100683 /* note that m can be RT6_NUD_FAIL_PROBE at this point */
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200684 if (m > *mpri) {
685 *do_rr = match_do_rr;
686 *mpri = m;
687 match = rt;
688 }
David S. Millerf11e6652007-03-24 20:36:25 -0700689out:
690 return match;
691}
692
693static struct rt6_info *find_rr_leaf(struct fib6_node *fn,
694 struct rt6_info *rr_head,
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200695 u32 metric, int oif, int strict,
696 bool *do_rr)
David S. Millerf11e6652007-03-24 20:36:25 -0700697{
Steffen Klassert9fbdcfa2015-04-28 13:03:04 -0700698 struct rt6_info *rt, *match, *cont;
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800699 int mpri = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700
David S. Millerf11e6652007-03-24 20:36:25 -0700701 match = NULL;
Steffen Klassert9fbdcfa2015-04-28 13:03:04 -0700702 cont = NULL;
703 for (rt = rr_head; rt; rt = rt->dst.rt6_next) {
704 if (rt->rt6i_metric != metric) {
705 cont = rt;
706 break;
707 }
708
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200709 match = find_match(rt, oif, strict, &mpri, match, do_rr);
Steffen Klassert9fbdcfa2015-04-28 13:03:04 -0700710 }
711
712 for (rt = fn->leaf; rt && rt != rr_head; rt = rt->dst.rt6_next) {
713 if (rt->rt6i_metric != metric) {
714 cont = rt;
715 break;
716 }
717
718 match = find_match(rt, oif, strict, &mpri, match, do_rr);
719 }
720
721 if (match || !cont)
722 return match;
723
724 for (rt = cont; rt; rt = rt->dst.rt6_next)
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200725 match = find_match(rt, oif, strict, &mpri, match, do_rr);
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800726
David S. Millerf11e6652007-03-24 20:36:25 -0700727 return match;
728}
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800729
David S. Millerf11e6652007-03-24 20:36:25 -0700730static struct rt6_info *rt6_select(struct fib6_node *fn, int oif, int strict)
731{
732 struct rt6_info *match, *rt0;
Daniel Lezcano8ed67782008-03-04 13:48:30 -0800733 struct net *net;
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200734 bool do_rr = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735
David S. Millerf11e6652007-03-24 20:36:25 -0700736 rt0 = fn->rr_ptr;
737 if (!rt0)
738 fn->rr_ptr = rt0 = fn->leaf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200740 match = find_rr_leaf(fn, rt0, rt0->rt6i_metric, oif, strict,
741 &do_rr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200743 if (do_rr) {
Changli Gaod8d1f302010-06-10 23:31:35 -0700744 struct rt6_info *next = rt0->dst.rt6_next;
David S. Millerf11e6652007-03-24 20:36:25 -0700745
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800746 /* no entries matched; do round-robin */
David S. Millerf11e6652007-03-24 20:36:25 -0700747 if (!next || next->rt6i_metric != rt0->rt6i_metric)
748 next = fn->leaf;
749
750 if (next != rt0)
751 fn->rr_ptr = next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 }
753
David S. Millerd1918542011-12-28 20:19:20 -0500754 net = dev_net(rt0->dst.dev);
Eric Dumazeta02cec22010-09-22 20:43:57 +0000755 return match ? match : net->ipv6.ip6_null_entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756}
757
Martin KaFai Lau8b9df262015-05-22 20:55:59 -0700758static bool rt6_is_gw_or_nonexthop(const struct rt6_info *rt)
759{
760 return (rt->rt6i_flags & (RTF_NONEXTHOP | RTF_GATEWAY));
761}
762
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800763#ifdef CONFIG_IPV6_ROUTE_INFO
764int rt6_route_rcv(struct net_device *dev, u8 *opt, int len,
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000765 const struct in6_addr *gwaddr)
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800766{
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900767 struct net *net = dev_net(dev);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800768 struct route_info *rinfo = (struct route_info *) opt;
769 struct in6_addr prefix_buf, *prefix;
770 unsigned int pref;
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +0900771 unsigned long lifetime;
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800772 struct rt6_info *rt;
773
774 if (len < sizeof(struct route_info)) {
775 return -EINVAL;
776 }
777
778 /* Sanity check for prefix_len and length */
779 if (rinfo->length > 3) {
780 return -EINVAL;
781 } else if (rinfo->prefix_len > 128) {
782 return -EINVAL;
783 } else if (rinfo->prefix_len > 64) {
784 if (rinfo->length < 2) {
785 return -EINVAL;
786 }
787 } else if (rinfo->prefix_len > 0) {
788 if (rinfo->length < 1) {
789 return -EINVAL;
790 }
791 }
792
793 pref = rinfo->route_pref;
794 if (pref == ICMPV6_ROUTER_PREF_INVALID)
Jens Rosenboom3933fc92009-09-10 06:25:11 +0000795 return -EINVAL;
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800796
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +0900797 lifetime = addrconf_timeout_fixup(ntohl(rinfo->lifetime), HZ);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800798
799 if (rinfo->length == 3)
800 prefix = (struct in6_addr *)rinfo->prefix;
801 else {
802 /* this function is safe */
803 ipv6_addr_prefix(&prefix_buf,
804 (struct in6_addr *)rinfo->prefix,
805 rinfo->prefix_len);
806 prefix = &prefix_buf;
807 }
808
Duan Jiongf104a562013-11-08 09:56:53 +0800809 if (rinfo->prefix_len == 0)
810 rt = rt6_get_dflt_router(gwaddr, dev);
811 else
812 rt = rt6_get_route_info(net, prefix, rinfo->prefix_len,
813 gwaddr, dev->ifindex);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800814
815 if (rt && !lifetime) {
Thomas Grafe0a1ad732006-08-22 00:00:21 -0700816 ip6_del_rt(rt);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800817 rt = NULL;
818 }
819
820 if (!rt && lifetime)
Daniel Lezcanoefa2cea2008-03-04 13:46:48 -0800821 rt = rt6_add_route_info(net, prefix, rinfo->prefix_len, gwaddr, dev->ifindex,
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800822 pref);
823 else if (rt)
824 rt->rt6i_flags = RTF_ROUTEINFO |
825 (rt->rt6i_flags & ~RTF_PREF_MASK) | RTF_PREF(pref);
826
827 if (rt) {
Gao feng1716a962012-04-06 00:13:10 +0000828 if (!addrconf_finite_timeout(lifetime))
829 rt6_clean_expires(rt);
830 else
831 rt6_set_expires(rt, jiffies + HZ * lifetime);
832
Amerigo Wang94e187c2012-10-29 00:13:19 +0000833 ip6_rt_put(rt);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800834 }
835 return 0;
836}
837#endif
838
Martin KaFai Laua3c00e42014-10-20 13:42:43 -0700839static struct fib6_node* fib6_backtrack(struct fib6_node *fn,
840 struct in6_addr *saddr)
841{
842 struct fib6_node *pn;
843 while (1) {
844 if (fn->fn_flags & RTN_TL_ROOT)
845 return NULL;
846 pn = fn->parent;
847 if (FIB6_SUBTREE(pn) && FIB6_SUBTREE(pn) != fn)
848 fn = fib6_lookup(FIB6_SUBTREE(pn), NULL, saddr);
849 else
850 fn = pn;
851 if (fn->fn_flags & RTN_RTINFO)
852 return fn;
853 }
854}
Thomas Grafc71099a2006-08-04 23:20:06 -0700855
Daniel Lezcano8ed67782008-03-04 13:48:30 -0800856static struct rt6_info *ip6_pol_route_lookup(struct net *net,
857 struct fib6_table *table,
David S. Miller4c9483b2011-03-12 16:22:43 -0500858 struct flowi6 *fl6, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859{
860 struct fib6_node *fn;
861 struct rt6_info *rt;
862
Thomas Grafc71099a2006-08-04 23:20:06 -0700863 read_lock_bh(&table->tb6_lock);
David S. Miller4c9483b2011-03-12 16:22:43 -0500864 fn = fib6_lookup(&table->tb6_root, &fl6->daddr, &fl6->saddr);
Thomas Grafc71099a2006-08-04 23:20:06 -0700865restart:
866 rt = fn->leaf;
David S. Miller4c9483b2011-03-12 16:22:43 -0500867 rt = rt6_device_match(net, rt, &fl6->saddr, fl6->flowi6_oif, flags);
Nicolas Dichtel51ebd312012-10-22 03:42:09 +0000868 if (rt->rt6i_nsiblings && fl6->flowi6_oif == 0)
Nicolas Dichtel52bd4c02013-06-28 17:35:48 +0200869 rt = rt6_multipath_select(rt, fl6, fl6->flowi6_oif, flags);
Martin KaFai Laua3c00e42014-10-20 13:42:43 -0700870 if (rt == net->ipv6.ip6_null_entry) {
871 fn = fib6_backtrack(fn, &fl6->saddr);
872 if (fn)
873 goto restart;
874 }
Changli Gaod8d1f302010-06-10 23:31:35 -0700875 dst_use(&rt->dst, jiffies);
Thomas Grafc71099a2006-08-04 23:20:06 -0700876 read_unlock_bh(&table->tb6_lock);
Thomas Grafc71099a2006-08-04 23:20:06 -0700877 return rt;
878
879}
880
Ian Morris67ba4152014-08-24 21:53:10 +0100881struct dst_entry *ip6_route_lookup(struct net *net, struct flowi6 *fl6,
Florian Westphalea6e5742011-09-05 16:05:44 +0200882 int flags)
883{
884 return fib6_rule_lookup(net, fl6, flags, ip6_pol_route_lookup);
885}
886EXPORT_SYMBOL_GPL(ip6_route_lookup);
887
YOSHIFUJI Hideaki9acd9f32008-04-10 15:42:10 +0900888struct rt6_info *rt6_lookup(struct net *net, const struct in6_addr *daddr,
889 const struct in6_addr *saddr, int oif, int strict)
Thomas Grafc71099a2006-08-04 23:20:06 -0700890{
David S. Miller4c9483b2011-03-12 16:22:43 -0500891 struct flowi6 fl6 = {
892 .flowi6_oif = oif,
893 .daddr = *daddr,
Thomas Grafc71099a2006-08-04 23:20:06 -0700894 };
895 struct dst_entry *dst;
YOSHIFUJI Hideaki77d16f42006-08-23 17:25:05 -0700896 int flags = strict ? RT6_LOOKUP_F_IFACE : 0;
Thomas Grafc71099a2006-08-04 23:20:06 -0700897
Thomas Grafadaa70b2006-10-13 15:01:03 -0700898 if (saddr) {
David S. Miller4c9483b2011-03-12 16:22:43 -0500899 memcpy(&fl6.saddr, saddr, sizeof(*saddr));
Thomas Grafadaa70b2006-10-13 15:01:03 -0700900 flags |= RT6_LOOKUP_F_HAS_SADDR;
901 }
902
David S. Miller4c9483b2011-03-12 16:22:43 -0500903 dst = fib6_rule_lookup(net, &fl6, flags, ip6_pol_route_lookup);
Thomas Grafc71099a2006-08-04 23:20:06 -0700904 if (dst->error == 0)
905 return (struct rt6_info *) dst;
906
907 dst_release(dst);
908
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 return NULL;
910}
YOSHIFUJI Hideaki71590392007-02-22 22:05:40 +0900911EXPORT_SYMBOL(rt6_lookup);
912
Thomas Grafc71099a2006-08-04 23:20:06 -0700913/* ip6_ins_rt is called with FREE table->tb6_lock.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914 It takes new route entry, the addition fails by any reason the
915 route is freed. In any case, if caller does not hold it, it may
916 be destroyed.
917 */
918
Michal Kubečeke5fd3872014-03-27 13:04:08 +0100919static int __ip6_ins_rt(struct rt6_info *rt, struct nl_info *info,
Florian Westphale715b6d2015-01-05 23:57:44 +0100920 struct mx6_config *mxc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921{
922 int err;
Thomas Grafc71099a2006-08-04 23:20:06 -0700923 struct fib6_table *table;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924
Thomas Grafc71099a2006-08-04 23:20:06 -0700925 table = rt->rt6i_table;
926 write_lock_bh(&table->tb6_lock);
Florian Westphale715b6d2015-01-05 23:57:44 +0100927 err = fib6_add(&table->tb6_root, rt, info, mxc);
Thomas Grafc71099a2006-08-04 23:20:06 -0700928 write_unlock_bh(&table->tb6_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929
930 return err;
931}
932
Thomas Graf40e22e82006-08-22 00:00:45 -0700933int ip6_ins_rt(struct rt6_info *rt)
934{
Florian Westphale715b6d2015-01-05 23:57:44 +0100935 struct nl_info info = { .nl_net = dev_net(rt->dst.dev), };
936 struct mx6_config mxc = { .mx = NULL, };
937
938 return __ip6_ins_rt(rt, &info, &mxc);
Thomas Graf40e22e82006-08-22 00:00:45 -0700939}
940
Martin KaFai Lau8b9df262015-05-22 20:55:59 -0700941static struct rt6_info *ip6_rt_cache_alloc(struct rt6_info *ort,
942 const struct in6_addr *daddr,
943 const struct in6_addr *saddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945 struct rt6_info *rt;
946
947 /*
948 * Clone the route.
949 */
950
Martin KaFai Laud52d3992015-05-22 20:56:06 -0700951 if (ort->rt6i_flags & (RTF_CACHE | RTF_PCPU))
Martin KaFai Lau83a09ab2015-05-22 20:56:05 -0700952 ort = (struct rt6_info *)ort->dst.from;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953
Martin KaFai Laud52d3992015-05-22 20:56:06 -0700954 rt = __ip6_dst_alloc(dev_net(ort->dst.dev), ort->dst.dev,
955 0, ort->rt6i_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956
Martin KaFai Lau83a09ab2015-05-22 20:56:05 -0700957 if (!rt)
958 return NULL;
959
960 ip6_rt_copy_init(rt, ort);
961 rt->rt6i_flags |= RTF_CACHE;
962 rt->rt6i_metric = 0;
963 rt->dst.flags |= DST_HOST;
964 rt->rt6i_dst.addr = *daddr;
965 rt->rt6i_dst.plen = 128;
966
967 if (!rt6_is_gw_or_nonexthop(ort)) {
968 if (ort->rt6i_dst.plen != 128 &&
969 ipv6_addr_equal(&ort->rt6i_dst.addr, daddr))
970 rt->rt6i_flags |= RTF_ANYCAST;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971#ifdef CONFIG_IPV6_SUBTREES
Martin KaFai Lau83a09ab2015-05-22 20:56:05 -0700972 if (rt->rt6i_src.plen && saddr) {
973 rt->rt6i_src.addr = *saddr;
974 rt->rt6i_src.plen = 128;
Martin KaFai Lau8b9df262015-05-22 20:55:59 -0700975 }
Martin KaFai Lau83a09ab2015-05-22 20:56:05 -0700976#endif
YOSHIFUJI Hideaki95a9a5b2006-03-20 16:55:51 -0800977 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978
YOSHIFUJI Hideaki95a9a5b2006-03-20 16:55:51 -0800979 return rt;
980}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981
Martin KaFai Laud52d3992015-05-22 20:56:06 -0700982static struct rt6_info *ip6_rt_pcpu_alloc(struct rt6_info *rt)
983{
984 struct rt6_info *pcpu_rt;
985
986 pcpu_rt = __ip6_dst_alloc(dev_net(rt->dst.dev),
987 rt->dst.dev, rt->dst.flags,
988 rt->rt6i_table);
989
990 if (!pcpu_rt)
991 return NULL;
992 ip6_rt_copy_init(pcpu_rt, rt);
993 pcpu_rt->rt6i_protocol = rt->rt6i_protocol;
994 pcpu_rt->rt6i_flags |= RTF_PCPU;
995 return pcpu_rt;
996}
997
998/* It should be called with read_lock_bh(&tb6_lock) acquired */
999static struct rt6_info *rt6_get_pcpu_route(struct rt6_info *rt)
1000{
1001 struct rt6_info *pcpu_rt, *prev, **p;
1002
1003 p = this_cpu_ptr(rt->rt6i_pcpu);
1004 pcpu_rt = *p;
1005
1006 if (pcpu_rt)
1007 goto done;
1008
1009 pcpu_rt = ip6_rt_pcpu_alloc(rt);
1010 if (!pcpu_rt) {
1011 struct net *net = dev_net(rt->dst.dev);
1012
1013 pcpu_rt = net->ipv6.ip6_null_entry;
1014 goto done;
1015 }
1016
1017 prev = cmpxchg(p, NULL, pcpu_rt);
1018 if (prev) {
1019 /* If someone did it before us, return prev instead */
1020 dst_destroy(&pcpu_rt->dst);
1021 pcpu_rt = prev;
1022 }
1023
1024done:
1025 dst_hold(&pcpu_rt->dst);
1026 rt6_dst_from_metrics_check(pcpu_rt);
1027 return pcpu_rt;
1028}
1029
Daniel Lezcano8ed67782008-03-04 13:48:30 -08001030static struct rt6_info *ip6_pol_route(struct net *net, struct fib6_table *table, int oif,
David S. Miller4c9483b2011-03-12 16:22:43 -05001031 struct flowi6 *fl6, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032{
Martin KaFai Lau367efcb2014-10-20 13:42:45 -07001033 struct fib6_node *fn, *saved_fn;
Martin KaFai Lau45e4fd22015-05-22 20:56:00 -07001034 struct rt6_info *rt;
Thomas Grafc71099a2006-08-04 23:20:06 -07001035 int strict = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036
YOSHIFUJI Hideaki77d16f42006-08-23 17:25:05 -07001037 strict |= flags & RT6_LOOKUP_F_IFACE;
Martin KaFai Lau367efcb2014-10-20 13:42:45 -07001038 if (net->ipv6.devconf_all->forwarding == 0)
1039 strict |= RT6_LOOKUP_F_REACHABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040
Thomas Grafc71099a2006-08-04 23:20:06 -07001041 read_lock_bh(&table->tb6_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042
David S. Miller4c9483b2011-03-12 16:22:43 -05001043 fn = fib6_lookup(&table->tb6_root, &fl6->daddr, &fl6->saddr);
Martin KaFai Lau367efcb2014-10-20 13:42:45 -07001044 saved_fn = fn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045
Martin KaFai Laua3c00e42014-10-20 13:42:43 -07001046redo_rt6_select:
Martin KaFai Lau367efcb2014-10-20 13:42:45 -07001047 rt = rt6_select(fn, oif, strict);
Nicolas Dichtel52bd4c02013-06-28 17:35:48 +02001048 if (rt->rt6i_nsiblings)
Martin KaFai Lau367efcb2014-10-20 13:42:45 -07001049 rt = rt6_multipath_select(rt, fl6, oif, strict);
Martin KaFai Laua3c00e42014-10-20 13:42:43 -07001050 if (rt == net->ipv6.ip6_null_entry) {
1051 fn = fib6_backtrack(fn, &fl6->saddr);
1052 if (fn)
1053 goto redo_rt6_select;
Martin KaFai Lau367efcb2014-10-20 13:42:45 -07001054 else if (strict & RT6_LOOKUP_F_REACHABLE) {
1055 /* also consider unreachable route */
1056 strict &= ~RT6_LOOKUP_F_REACHABLE;
1057 fn = saved_fn;
1058 goto redo_rt6_select;
Martin KaFai Lau367efcb2014-10-20 13:42:45 -07001059 }
Martin KaFai Laua3c00e42014-10-20 13:42:43 -07001060 }
1061
YOSHIFUJI Hideakifb9de912006-03-20 16:59:08 -08001062
Martin KaFai Lau3da59bd2015-05-22 20:56:03 -07001063 if (rt == net->ipv6.ip6_null_entry || (rt->rt6i_flags & RTF_CACHE)) {
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001064 dst_use(&rt->dst, jiffies);
1065 read_unlock_bh(&table->tb6_lock);
1066
1067 rt6_dst_from_metrics_check(rt);
1068 return rt;
Martin KaFai Lau3da59bd2015-05-22 20:56:03 -07001069 } else if (unlikely((fl6->flowi6_flags & FLOWI_FLAG_KNOWN_NH) &&
1070 !(rt->rt6i_flags & RTF_GATEWAY))) {
1071 /* Create a RTF_CACHE clone which will not be
1072 * owned by the fib6 tree. It is for the special case where
1073 * the daddr in the skb during the neighbor look-up is different
1074 * from the fl6->daddr used to look-up route here.
1075 */
Thomas Grafc71099a2006-08-04 23:20:06 -07001076
Martin KaFai Lau3da59bd2015-05-22 20:56:03 -07001077 struct rt6_info *uncached_rt;
1078
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001079 dst_use(&rt->dst, jiffies);
1080 read_unlock_bh(&table->tb6_lock);
1081
Martin KaFai Lau3da59bd2015-05-22 20:56:03 -07001082 uncached_rt = ip6_rt_cache_alloc(rt, &fl6->daddr, NULL);
1083 dst_release(&rt->dst);
1084
1085 if (uncached_rt)
Martin KaFai Lau8d0b94a2015-05-22 20:56:04 -07001086 rt6_uncached_list_add(uncached_rt);
Martin KaFai Lau3da59bd2015-05-22 20:56:03 -07001087 else
1088 uncached_rt = net->ipv6.ip6_null_entry;
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001089
Martin KaFai Lau3da59bd2015-05-22 20:56:03 -07001090 dst_hold(&uncached_rt->dst);
1091 return uncached_rt;
Martin KaFai Lau3da59bd2015-05-22 20:56:03 -07001092
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001093 } else {
1094 /* Get a percpu copy */
1095
1096 struct rt6_info *pcpu_rt;
1097
1098 rt->dst.lastuse = jiffies;
1099 rt->dst.__use++;
1100 pcpu_rt = rt6_get_pcpu_route(rt);
1101 read_unlock_bh(&table->tb6_lock);
1102
1103 return pcpu_rt;
1104 }
Thomas Grafc71099a2006-08-04 23:20:06 -07001105}
1106
Daniel Lezcano8ed67782008-03-04 13:48:30 -08001107static struct rt6_info *ip6_pol_route_input(struct net *net, struct fib6_table *table,
David S. Miller4c9483b2011-03-12 16:22:43 -05001108 struct flowi6 *fl6, int flags)
Pavel Emelyanov4acad722007-10-15 13:02:51 -07001109{
David S. Miller4c9483b2011-03-12 16:22:43 -05001110 return ip6_pol_route(net, table, fl6->flowi6_iif, fl6, flags);
Pavel Emelyanov4acad722007-10-15 13:02:51 -07001111}
1112
Shmulik Ladkani72331bc2012-04-01 04:03:45 +00001113static struct dst_entry *ip6_route_input_lookup(struct net *net,
1114 struct net_device *dev,
1115 struct flowi6 *fl6, int flags)
1116{
1117 if (rt6_need_strict(&fl6->daddr) && dev->type != ARPHRD_PIMREG)
1118 flags |= RT6_LOOKUP_F_IFACE;
1119
1120 return fib6_rule_lookup(net, fl6, flags, ip6_pol_route_input);
1121}
1122
Thomas Grafc71099a2006-08-04 23:20:06 -07001123void ip6_route_input(struct sk_buff *skb)
1124{
Eric Dumazetb71d1d42011-04-22 04:53:02 +00001125 const struct ipv6hdr *iph = ipv6_hdr(skb);
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001126 struct net *net = dev_net(skb->dev);
Thomas Grafadaa70b2006-10-13 15:01:03 -07001127 int flags = RT6_LOOKUP_F_HAS_SADDR;
David S. Miller4c9483b2011-03-12 16:22:43 -05001128 struct flowi6 fl6 = {
1129 .flowi6_iif = skb->dev->ifindex,
1130 .daddr = iph->daddr,
1131 .saddr = iph->saddr,
YOSHIFUJI Hideaki / 吉藤英明6502ca52013-01-13 05:01:51 +00001132 .flowlabel = ip6_flowinfo(iph),
David S. Miller4c9483b2011-03-12 16:22:43 -05001133 .flowi6_mark = skb->mark,
1134 .flowi6_proto = iph->nexthdr,
Thomas Grafc71099a2006-08-04 23:20:06 -07001135 };
Thomas Grafadaa70b2006-10-13 15:01:03 -07001136
Shmulik Ladkani72331bc2012-04-01 04:03:45 +00001137 skb_dst_set(skb, ip6_route_input_lookup(net, skb->dev, &fl6, flags));
Thomas Grafc71099a2006-08-04 23:20:06 -07001138}
1139
Daniel Lezcano8ed67782008-03-04 13:48:30 -08001140static struct rt6_info *ip6_pol_route_output(struct net *net, struct fib6_table *table,
David S. Miller4c9483b2011-03-12 16:22:43 -05001141 struct flowi6 *fl6, int flags)
Thomas Grafc71099a2006-08-04 23:20:06 -07001142{
David S. Miller4c9483b2011-03-12 16:22:43 -05001143 return ip6_pol_route(net, table, fl6->flowi6_oif, fl6, flags);
Thomas Grafc71099a2006-08-04 23:20:06 -07001144}
1145
Ian Morris67ba4152014-08-24 21:53:10 +01001146struct dst_entry *ip6_route_output(struct net *net, const struct sock *sk,
David S. Miller4c9483b2011-03-12 16:22:43 -05001147 struct flowi6 *fl6)
Thomas Grafc71099a2006-08-04 23:20:06 -07001148{
1149 int flags = 0;
1150
Pavel Emelyanov1fb94892012-08-08 21:53:36 +00001151 fl6->flowi6_iif = LOOPBACK_IFINDEX;
David McCullough4dc27d1c2012-06-25 15:42:26 +00001152
David S. Miller4c9483b2011-03-12 16:22:43 -05001153 if ((sk && sk->sk_bound_dev_if) || rt6_need_strict(&fl6->daddr))
YOSHIFUJI Hideaki77d16f42006-08-23 17:25:05 -07001154 flags |= RT6_LOOKUP_F_IFACE;
Thomas Grafc71099a2006-08-04 23:20:06 -07001155
David S. Miller4c9483b2011-03-12 16:22:43 -05001156 if (!ipv6_addr_any(&fl6->saddr))
Thomas Grafadaa70b2006-10-13 15:01:03 -07001157 flags |= RT6_LOOKUP_F_HAS_SADDR;
YOSHIFUJI Hideaki / 吉藤英明0c9a2ac2010-03-07 00:14:44 +00001158 else if (sk)
1159 flags |= rt6_srcprefs2flags(inet6_sk(sk)->srcprefs);
Thomas Grafadaa70b2006-10-13 15:01:03 -07001160
David S. Miller4c9483b2011-03-12 16:22:43 -05001161 return fib6_rule_lookup(net, fl6, flags, ip6_pol_route_output);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162}
YOSHIFUJI Hideaki71590392007-02-22 22:05:40 +09001163EXPORT_SYMBOL(ip6_route_output);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164
David S. Miller2774c132011-03-01 14:59:04 -08001165struct dst_entry *ip6_blackhole_route(struct net *net, struct dst_entry *dst_orig)
David S. Miller14e50e52007-05-24 18:17:54 -07001166{
David S. Miller5c1e6aa2011-04-28 14:13:38 -07001167 struct rt6_info *rt, *ort = (struct rt6_info *) dst_orig;
David S. Miller14e50e52007-05-24 18:17:54 -07001168 struct dst_entry *new = NULL;
1169
David S. Millerf5b0a872012-07-19 12:31:33 -07001170 rt = dst_alloc(&ip6_dst_blackhole_ops, ort->dst.dev, 1, DST_OBSOLETE_NONE, 0);
David S. Miller14e50e52007-05-24 18:17:54 -07001171 if (rt) {
Changli Gaod8d1f302010-06-10 23:31:35 -07001172 new = &rt->dst;
David S. Miller14e50e52007-05-24 18:17:54 -07001173
Steffen Klassert81048912012-07-05 23:37:09 +00001174 memset(new + 1, 0, sizeof(*rt) - sizeof(*new));
Steffen Klassert81048912012-07-05 23:37:09 +00001175
David S. Miller14e50e52007-05-24 18:17:54 -07001176 new->__use = 1;
Herbert Xu352e5122007-11-13 21:34:06 -08001177 new->input = dst_discard;
Eric Dumazetaad88722014-04-15 13:47:15 -04001178 new->output = dst_discard_sk;
David S. Miller14e50e52007-05-24 18:17:54 -07001179
Eric Dumazet21efcfa2011-07-19 20:18:36 +00001180 if (dst_metrics_read_only(&ort->dst))
1181 new->_metrics = ort->dst._metrics;
1182 else
1183 dst_copy_metrics(new, &ort->dst);
David S. Miller14e50e52007-05-24 18:17:54 -07001184 rt->rt6i_idev = ort->rt6i_idev;
1185 if (rt->rt6i_idev)
1186 in6_dev_hold(rt->rt6i_idev);
David S. Miller14e50e52007-05-24 18:17:54 -07001187
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001188 rt->rt6i_gateway = ort->rt6i_gateway;
Gao feng1716a962012-04-06 00:13:10 +00001189 rt->rt6i_flags = ort->rt6i_flags;
David S. Miller14e50e52007-05-24 18:17:54 -07001190 rt->rt6i_metric = 0;
1191
1192 memcpy(&rt->rt6i_dst, &ort->rt6i_dst, sizeof(struct rt6key));
1193#ifdef CONFIG_IPV6_SUBTREES
1194 memcpy(&rt->rt6i_src, &ort->rt6i_src, sizeof(struct rt6key));
1195#endif
1196
1197 dst_free(new);
1198 }
1199
David S. Miller69ead7a2011-03-01 14:45:33 -08001200 dst_release(dst_orig);
1201 return new ? new : ERR_PTR(-ENOMEM);
David S. Miller14e50e52007-05-24 18:17:54 -07001202}
David S. Miller14e50e52007-05-24 18:17:54 -07001203
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204/*
1205 * Destination cache support functions
1206 */
1207
Martin KaFai Lau4b32b5a2015-04-28 13:03:06 -07001208static void rt6_dst_from_metrics_check(struct rt6_info *rt)
1209{
1210 if (rt->dst.from &&
1211 dst_metrics_ptr(&rt->dst) != dst_metrics_ptr(rt->dst.from))
1212 dst_init_metrics(&rt->dst, dst_metrics_ptr(rt->dst.from), true);
1213}
1214
Martin KaFai Lau3da59bd2015-05-22 20:56:03 -07001215static struct dst_entry *rt6_check(struct rt6_info *rt, u32 cookie)
1216{
1217 if (!rt->rt6i_node || (rt->rt6i_node->fn_sernum != cookie))
1218 return NULL;
1219
1220 if (rt6_check_expired(rt))
1221 return NULL;
1222
1223 return &rt->dst;
1224}
1225
1226static struct dst_entry *rt6_dst_from_check(struct rt6_info *rt, u32 cookie)
1227{
1228 if (rt->dst.obsolete == DST_OBSOLETE_FORCE_CHK &&
1229 rt6_check((struct rt6_info *)(rt->dst.from), cookie))
1230 return &rt->dst;
1231 else
1232 return NULL;
1233}
1234
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235static struct dst_entry *ip6_dst_check(struct dst_entry *dst, u32 cookie)
1236{
1237 struct rt6_info *rt;
1238
1239 rt = (struct rt6_info *) dst;
1240
Nicolas Dichtel6f3118b2012-09-10 22:09:46 +00001241 /* All IPV6 dsts are created with ->obsolete set to the value
1242 * DST_OBSOLETE_FORCE_CHK which forces validation calls down
1243 * into this function always.
1244 */
Hannes Frederic Sowae3bc10b2013-10-24 07:48:24 +02001245
Martin KaFai Lau4b32b5a2015-04-28 13:03:06 -07001246 rt6_dst_from_metrics_check(rt);
1247
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001248 if ((rt->rt6i_flags & RTF_PCPU) || unlikely(dst->flags & DST_NOCACHE))
Martin KaFai Lau3da59bd2015-05-22 20:56:03 -07001249 return rt6_dst_from_check(rt, cookie);
1250 else
1251 return rt6_check(rt, cookie);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252}
1253
1254static struct dst_entry *ip6_negative_advice(struct dst_entry *dst)
1255{
1256 struct rt6_info *rt = (struct rt6_info *) dst;
1257
1258 if (rt) {
YOSHIFUJI Hideaki / 吉藤英明54c1a852010-03-28 07:15:45 +00001259 if (rt->rt6i_flags & RTF_CACHE) {
1260 if (rt6_check_expired(rt)) {
1261 ip6_del_rt(rt);
1262 dst = NULL;
1263 }
1264 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265 dst_release(dst);
YOSHIFUJI Hideaki / 吉藤英明54c1a852010-03-28 07:15:45 +00001266 dst = NULL;
1267 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268 }
YOSHIFUJI Hideaki / 吉藤英明54c1a852010-03-28 07:15:45 +00001269 return dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270}
1271
1272static void ip6_link_failure(struct sk_buff *skb)
1273{
1274 struct rt6_info *rt;
1275
Alexey Dobriyan3ffe5332010-02-18 08:25:24 +00001276 icmpv6_send(skb, ICMPV6_DEST_UNREACH, ICMPV6_ADDR_UNREACH, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277
Eric Dumazetadf30902009-06-02 05:19:30 +00001278 rt = (struct rt6_info *) skb_dst(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279 if (rt) {
Hannes Frederic Sowa1eb4f752013-07-10 23:00:57 +02001280 if (rt->rt6i_flags & RTF_CACHE) {
1281 dst_hold(&rt->dst);
1282 if (ip6_del_rt(rt))
1283 dst_free(&rt->dst);
1284 } else if (rt->rt6i_node && (rt->rt6i_flags & RTF_DEFAULT)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285 rt->rt6i_node->fn_sernum = -1;
Hannes Frederic Sowa1eb4f752013-07-10 23:00:57 +02001286 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287 }
1288}
1289
Martin KaFai Lau45e4fd22015-05-22 20:56:00 -07001290static void rt6_do_update_pmtu(struct rt6_info *rt, u32 mtu)
1291{
1292 struct net *net = dev_net(rt->dst.dev);
1293
1294 rt->rt6i_flags |= RTF_MODIFIED;
1295 rt->rt6i_pmtu = mtu;
1296 rt6_update_expires(rt, net->ipv6.sysctl.ip6_rt_mtu_expires);
1297}
1298
1299static void __ip6_rt_update_pmtu(struct dst_entry *dst, const struct sock *sk,
1300 const struct ipv6hdr *iph, u32 mtu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301{
Ian Morris67ba4152014-08-24 21:53:10 +01001302 struct rt6_info *rt6 = (struct rt6_info *)dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303
Martin KaFai Lau45e4fd22015-05-22 20:56:00 -07001304 if (rt6->rt6i_flags & RTF_LOCAL)
1305 return;
1306
David S. Miller81aded22012-06-15 14:54:11 -07001307 dst_confirm(dst);
Martin KaFai Lau45e4fd22015-05-22 20:56:00 -07001308 mtu = max_t(u32, mtu, IPV6_MIN_MTU);
1309 if (mtu >= dst_mtu(dst))
1310 return;
David S. Miller81aded22012-06-15 14:54:11 -07001311
Martin KaFai Lau45e4fd22015-05-22 20:56:00 -07001312 if (rt6->rt6i_flags & RTF_CACHE) {
1313 rt6_do_update_pmtu(rt6, mtu);
1314 } else {
1315 const struct in6_addr *daddr, *saddr;
1316 struct rt6_info *nrt6;
Hagen Paul Pfeifer9d289712015-01-15 22:34:25 +01001317
Martin KaFai Lau45e4fd22015-05-22 20:56:00 -07001318 if (iph) {
1319 daddr = &iph->daddr;
1320 saddr = &iph->saddr;
1321 } else if (sk) {
1322 daddr = &sk->sk_v6_daddr;
1323 saddr = &inet6_sk(sk)->saddr;
1324 } else {
1325 return;
1326 }
1327 nrt6 = ip6_rt_cache_alloc(rt6, daddr, saddr);
1328 if (nrt6) {
1329 rt6_do_update_pmtu(nrt6, mtu);
1330
1331 /* ip6_ins_rt(nrt6) will bump the
1332 * rt6->rt6i_node->fn_sernum
1333 * which will fail the next rt6_check() and
1334 * invalidate the sk->sk_dst_cache.
1335 */
1336 ip6_ins_rt(nrt6);
1337 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338 }
1339}
1340
Martin KaFai Lau45e4fd22015-05-22 20:56:00 -07001341static void ip6_rt_update_pmtu(struct dst_entry *dst, struct sock *sk,
1342 struct sk_buff *skb, u32 mtu)
1343{
1344 __ip6_rt_update_pmtu(dst, sk, skb ? ipv6_hdr(skb) : NULL, mtu);
1345}
1346
David S. Miller42ae66c2012-06-15 20:01:57 -07001347void ip6_update_pmtu(struct sk_buff *skb, struct net *net, __be32 mtu,
1348 int oif, u32 mark)
David S. Miller81aded22012-06-15 14:54:11 -07001349{
1350 const struct ipv6hdr *iph = (struct ipv6hdr *) skb->data;
1351 struct dst_entry *dst;
1352 struct flowi6 fl6;
1353
1354 memset(&fl6, 0, sizeof(fl6));
1355 fl6.flowi6_oif = oif;
Lorenzo Colitti1b3c61d2014-05-13 10:17:34 -07001356 fl6.flowi6_mark = mark ? mark : IP6_REPLY_MARK(net, skb->mark);
David S. Miller81aded22012-06-15 14:54:11 -07001357 fl6.daddr = iph->daddr;
1358 fl6.saddr = iph->saddr;
YOSHIFUJI Hideaki / 吉藤英明6502ca52013-01-13 05:01:51 +00001359 fl6.flowlabel = ip6_flowinfo(iph);
David S. Miller81aded22012-06-15 14:54:11 -07001360
1361 dst = ip6_route_output(net, NULL, &fl6);
1362 if (!dst->error)
Martin KaFai Lau45e4fd22015-05-22 20:56:00 -07001363 __ip6_rt_update_pmtu(dst, NULL, iph, ntohl(mtu));
David S. Miller81aded22012-06-15 14:54:11 -07001364 dst_release(dst);
1365}
1366EXPORT_SYMBOL_GPL(ip6_update_pmtu);
1367
1368void ip6_sk_update_pmtu(struct sk_buff *skb, struct sock *sk, __be32 mtu)
1369{
1370 ip6_update_pmtu(skb, sock_net(sk), mtu,
1371 sk->sk_bound_dev_if, sk->sk_mark);
1372}
1373EXPORT_SYMBOL_GPL(ip6_sk_update_pmtu);
1374
Duan Jiongb55b76b2013-09-04 19:44:21 +08001375/* Handle redirects */
1376struct ip6rd_flowi {
1377 struct flowi6 fl6;
1378 struct in6_addr gateway;
1379};
1380
1381static struct rt6_info *__ip6_route_redirect(struct net *net,
1382 struct fib6_table *table,
1383 struct flowi6 *fl6,
1384 int flags)
1385{
1386 struct ip6rd_flowi *rdfl = (struct ip6rd_flowi *)fl6;
1387 struct rt6_info *rt;
1388 struct fib6_node *fn;
1389
1390 /* Get the "current" route for this destination and
1391 * check if the redirect has come from approriate router.
1392 *
1393 * RFC 4861 specifies that redirects should only be
1394 * accepted if they come from the nexthop to the target.
1395 * Due to the way the routes are chosen, this notion
1396 * is a bit fuzzy and one might need to check all possible
1397 * routes.
1398 */
1399
1400 read_lock_bh(&table->tb6_lock);
1401 fn = fib6_lookup(&table->tb6_root, &fl6->daddr, &fl6->saddr);
1402restart:
1403 for (rt = fn->leaf; rt; rt = rt->dst.rt6_next) {
1404 if (rt6_check_expired(rt))
1405 continue;
1406 if (rt->dst.error)
1407 break;
1408 if (!(rt->rt6i_flags & RTF_GATEWAY))
1409 continue;
1410 if (fl6->flowi6_oif != rt->dst.dev->ifindex)
1411 continue;
1412 if (!ipv6_addr_equal(&rdfl->gateway, &rt->rt6i_gateway))
1413 continue;
1414 break;
1415 }
1416
1417 if (!rt)
1418 rt = net->ipv6.ip6_null_entry;
1419 else if (rt->dst.error) {
1420 rt = net->ipv6.ip6_null_entry;
Martin KaFai Laub0a1ba52015-01-20 19:16:02 -08001421 goto out;
1422 }
1423
1424 if (rt == net->ipv6.ip6_null_entry) {
Martin KaFai Laua3c00e42014-10-20 13:42:43 -07001425 fn = fib6_backtrack(fn, &fl6->saddr);
1426 if (fn)
1427 goto restart;
Duan Jiongb55b76b2013-09-04 19:44:21 +08001428 }
Martin KaFai Laua3c00e42014-10-20 13:42:43 -07001429
Martin KaFai Laub0a1ba52015-01-20 19:16:02 -08001430out:
Duan Jiongb55b76b2013-09-04 19:44:21 +08001431 dst_hold(&rt->dst);
1432
1433 read_unlock_bh(&table->tb6_lock);
1434
1435 return rt;
1436};
1437
1438static struct dst_entry *ip6_route_redirect(struct net *net,
1439 const struct flowi6 *fl6,
1440 const struct in6_addr *gateway)
1441{
1442 int flags = RT6_LOOKUP_F_HAS_SADDR;
1443 struct ip6rd_flowi rdfl;
1444
1445 rdfl.fl6 = *fl6;
1446 rdfl.gateway = *gateway;
1447
1448 return fib6_rule_lookup(net, &rdfl.fl6,
1449 flags, __ip6_route_redirect);
1450}
1451
David S. Miller3a5ad2e2012-07-12 00:08:07 -07001452void ip6_redirect(struct sk_buff *skb, struct net *net, int oif, u32 mark)
1453{
1454 const struct ipv6hdr *iph = (struct ipv6hdr *) skb->data;
1455 struct dst_entry *dst;
1456 struct flowi6 fl6;
1457
1458 memset(&fl6, 0, sizeof(fl6));
Julian Anastasove374c612014-04-28 10:51:56 +03001459 fl6.flowi6_iif = LOOPBACK_IFINDEX;
David S. Miller3a5ad2e2012-07-12 00:08:07 -07001460 fl6.flowi6_oif = oif;
1461 fl6.flowi6_mark = mark;
David S. Miller3a5ad2e2012-07-12 00:08:07 -07001462 fl6.daddr = iph->daddr;
1463 fl6.saddr = iph->saddr;
YOSHIFUJI Hideaki / 吉藤英明6502ca52013-01-13 05:01:51 +00001464 fl6.flowlabel = ip6_flowinfo(iph);
David S. Miller3a5ad2e2012-07-12 00:08:07 -07001465
Duan Jiongb55b76b2013-09-04 19:44:21 +08001466 dst = ip6_route_redirect(net, &fl6, &ipv6_hdr(skb)->saddr);
1467 rt6_do_redirect(dst, NULL, skb);
David S. Miller3a5ad2e2012-07-12 00:08:07 -07001468 dst_release(dst);
1469}
1470EXPORT_SYMBOL_GPL(ip6_redirect);
1471
Duan Jiongc92a59e2013-08-22 12:07:35 +08001472void ip6_redirect_no_header(struct sk_buff *skb, struct net *net, int oif,
1473 u32 mark)
1474{
1475 const struct ipv6hdr *iph = ipv6_hdr(skb);
1476 const struct rd_msg *msg = (struct rd_msg *)icmp6_hdr(skb);
1477 struct dst_entry *dst;
1478 struct flowi6 fl6;
1479
1480 memset(&fl6, 0, sizeof(fl6));
Julian Anastasove374c612014-04-28 10:51:56 +03001481 fl6.flowi6_iif = LOOPBACK_IFINDEX;
Duan Jiongc92a59e2013-08-22 12:07:35 +08001482 fl6.flowi6_oif = oif;
1483 fl6.flowi6_mark = mark;
Duan Jiongc92a59e2013-08-22 12:07:35 +08001484 fl6.daddr = msg->dest;
1485 fl6.saddr = iph->daddr;
1486
Duan Jiongb55b76b2013-09-04 19:44:21 +08001487 dst = ip6_route_redirect(net, &fl6, &iph->saddr);
1488 rt6_do_redirect(dst, NULL, skb);
Duan Jiongc92a59e2013-08-22 12:07:35 +08001489 dst_release(dst);
1490}
1491
David S. Miller3a5ad2e2012-07-12 00:08:07 -07001492void ip6_sk_redirect(struct sk_buff *skb, struct sock *sk)
1493{
1494 ip6_redirect(skb, sock_net(sk), sk->sk_bound_dev_if, sk->sk_mark);
1495}
1496EXPORT_SYMBOL_GPL(ip6_sk_redirect);
1497
David S. Miller0dbaee32010-12-13 12:52:14 -08001498static unsigned int ip6_default_advmss(const struct dst_entry *dst)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499{
David S. Miller0dbaee32010-12-13 12:52:14 -08001500 struct net_device *dev = dst->dev;
1501 unsigned int mtu = dst_mtu(dst);
1502 struct net *net = dev_net(dev);
1503
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504 mtu -= sizeof(struct ipv6hdr) + sizeof(struct tcphdr);
1505
Daniel Lezcano55786892008-03-04 13:47:47 -08001506 if (mtu < net->ipv6.sysctl.ip6_rt_min_advmss)
1507 mtu = net->ipv6.sysctl.ip6_rt_min_advmss;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508
1509 /*
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001510 * Maximal non-jumbo IPv6 payload is IPV6_MAXPLEN and
1511 * corresponding MSS is IPV6_MAXPLEN - tcp_header_size.
1512 * IPV6_MAXPLEN is also valid and means: "any MSS,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513 * rely only on pmtu discovery"
1514 */
1515 if (mtu > IPV6_MAXPLEN - sizeof(struct tcphdr))
1516 mtu = IPV6_MAXPLEN;
1517 return mtu;
1518}
1519
Steffen Klassertebb762f2011-11-23 02:12:51 +00001520static unsigned int ip6_mtu(const struct dst_entry *dst)
David S. Millerd33e4552010-12-14 13:01:14 -08001521{
Martin KaFai Lau4b32b5a2015-04-28 13:03:06 -07001522 const struct rt6_info *rt = (const struct rt6_info *)dst;
1523 unsigned int mtu = rt->rt6i_pmtu;
David S. Millerd33e4552010-12-14 13:01:14 -08001524 struct inet6_dev *idev;
Steffen Klassert618f9bc2011-11-23 02:13:31 +00001525
1526 if (mtu)
Eric Dumazet30f78d82014-04-10 21:23:36 -07001527 goto out;
Steffen Klassert618f9bc2011-11-23 02:13:31 +00001528
Martin KaFai Lau4b32b5a2015-04-28 13:03:06 -07001529 mtu = dst_metric_raw(dst, RTAX_MTU);
1530 if (mtu)
1531 goto out;
1532
Steffen Klassert618f9bc2011-11-23 02:13:31 +00001533 mtu = IPV6_MIN_MTU;
David S. Millerd33e4552010-12-14 13:01:14 -08001534
1535 rcu_read_lock();
1536 idev = __in6_dev_get(dst->dev);
1537 if (idev)
1538 mtu = idev->cnf.mtu6;
1539 rcu_read_unlock();
1540
Eric Dumazet30f78d82014-04-10 21:23:36 -07001541out:
1542 return min_t(unsigned int, mtu, IP6_MAX_MTU);
David S. Millerd33e4552010-12-14 13:01:14 -08001543}
1544
YOSHIFUJI Hideaki3b009442007-12-06 16:11:48 -08001545static struct dst_entry *icmp6_dst_gc_list;
1546static DEFINE_SPINLOCK(icmp6_dst_lock);
Thomas Graf5d0bbee2006-08-04 03:37:36 -07001547
YOSHIFUJI Hideaki3b009442007-12-06 16:11:48 -08001548struct dst_entry *icmp6_dst_alloc(struct net_device *dev,
David S. Miller87a11572011-12-06 17:04:13 -05001549 struct flowi6 *fl6)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550{
David S. Miller87a11572011-12-06 17:04:13 -05001551 struct dst_entry *dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552 struct rt6_info *rt;
1553 struct inet6_dev *idev = in6_dev_get(dev);
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001554 struct net *net = dev_net(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555
David S. Miller38308472011-12-03 18:02:47 -05001556 if (unlikely(!idev))
Eric Dumazet122bdf62012-03-14 21:13:11 +00001557 return ERR_PTR(-ENODEV);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558
David S. Miller8b96d222012-06-11 02:01:56 -07001559 rt = ip6_dst_alloc(net, dev, 0, NULL);
David S. Miller38308472011-12-03 18:02:47 -05001560 if (unlikely(!rt)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561 in6_dev_put(idev);
David S. Miller87a11572011-12-06 17:04:13 -05001562 dst = ERR_PTR(-ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563 goto out;
1564 }
1565
Yan, Zheng8e2ec632011-09-05 21:34:30 +00001566 rt->dst.flags |= DST_HOST;
1567 rt->dst.output = ip6_output;
Changli Gaod8d1f302010-06-10 23:31:35 -07001568 atomic_set(&rt->dst.__refcnt, 1);
Julian Anastasov550bab42013-10-20 15:43:04 +03001569 rt->rt6i_gateway = fl6->daddr;
David S. Miller87a11572011-12-06 17:04:13 -05001570 rt->rt6i_dst.addr = fl6->daddr;
Yan, Zheng8e2ec632011-09-05 21:34:30 +00001571 rt->rt6i_dst.plen = 128;
1572 rt->rt6i_idev = idev;
Li RongQing14edd872012-10-24 14:01:18 +08001573 dst_metric_set(&rt->dst, RTAX_HOPLIMIT, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574
YOSHIFUJI Hideaki3b009442007-12-06 16:11:48 -08001575 spin_lock_bh(&icmp6_dst_lock);
Changli Gaod8d1f302010-06-10 23:31:35 -07001576 rt->dst.next = icmp6_dst_gc_list;
1577 icmp6_dst_gc_list = &rt->dst;
YOSHIFUJI Hideaki3b009442007-12-06 16:11:48 -08001578 spin_unlock_bh(&icmp6_dst_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579
Daniel Lezcano55786892008-03-04 13:47:47 -08001580 fib6_force_start_gc(net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581
David S. Miller87a11572011-12-06 17:04:13 -05001582 dst = xfrm_lookup(net, &rt->dst, flowi6_to_flowi(fl6), NULL, 0);
1583
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584out:
David S. Miller87a11572011-12-06 17:04:13 -05001585 return dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586}
1587
Stephen Hemminger3d0f24a2008-07-22 14:35:50 -07001588int icmp6_dst_gc(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589{
Hagen Paul Pfeifere9476e92011-02-25 05:45:19 +00001590 struct dst_entry *dst, **pprev;
Stephen Hemminger3d0f24a2008-07-22 14:35:50 -07001591 int more = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592
YOSHIFUJI Hideaki3b009442007-12-06 16:11:48 -08001593 spin_lock_bh(&icmp6_dst_lock);
1594 pprev = &icmp6_dst_gc_list;
Thomas Graf5d0bbee2006-08-04 03:37:36 -07001595
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596 while ((dst = *pprev) != NULL) {
1597 if (!atomic_read(&dst->__refcnt)) {
1598 *pprev = dst->next;
1599 dst_free(dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600 } else {
1601 pprev = &dst->next;
Stephen Hemminger3d0f24a2008-07-22 14:35:50 -07001602 ++more;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603 }
1604 }
1605
YOSHIFUJI Hideaki3b009442007-12-06 16:11:48 -08001606 spin_unlock_bh(&icmp6_dst_lock);
Thomas Graf5d0bbee2006-08-04 03:37:36 -07001607
Stephen Hemminger3d0f24a2008-07-22 14:35:50 -07001608 return more;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609}
1610
David S. Miller1e493d12008-09-10 17:27:15 -07001611static void icmp6_clean_all(int (*func)(struct rt6_info *rt, void *arg),
1612 void *arg)
1613{
1614 struct dst_entry *dst, **pprev;
1615
1616 spin_lock_bh(&icmp6_dst_lock);
1617 pprev = &icmp6_dst_gc_list;
1618 while ((dst = *pprev) != NULL) {
1619 struct rt6_info *rt = (struct rt6_info *) dst;
1620 if (func(rt, arg)) {
1621 *pprev = dst->next;
1622 dst_free(dst);
1623 } else {
1624 pprev = &dst->next;
1625 }
1626 }
1627 spin_unlock_bh(&icmp6_dst_lock);
1628}
1629
Daniel Lezcano569d3642008-01-18 03:56:57 -08001630static int ip6_dst_gc(struct dst_ops *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631{
Alexey Dobriyan86393e52009-08-29 01:34:49 +00001632 struct net *net = container_of(ops, struct net, ipv6.ip6_dst_ops);
Daniel Lezcano7019b782008-03-04 13:50:14 -08001633 int rt_min_interval = net->ipv6.sysctl.ip6_rt_gc_min_interval;
1634 int rt_max_size = net->ipv6.sysctl.ip6_rt_max_size;
1635 int rt_elasticity = net->ipv6.sysctl.ip6_rt_gc_elasticity;
1636 int rt_gc_timeout = net->ipv6.sysctl.ip6_rt_gc_timeout;
1637 unsigned long rt_last_gc = net->ipv6.ip6_rt_last_gc;
Eric Dumazetfc66f952010-10-08 06:37:34 +00001638 int entries;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639
Eric Dumazetfc66f952010-10-08 06:37:34 +00001640 entries = dst_entries_get_fast(ops);
Michal Kubeček49a18d82013-08-01 10:04:24 +02001641 if (time_after(rt_last_gc + rt_min_interval, jiffies) &&
Eric Dumazetfc66f952010-10-08 06:37:34 +00001642 entries <= rt_max_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643 goto out;
1644
Benjamin Thery6891a342008-03-04 13:49:47 -08001645 net->ipv6.ip6_rt_gc_expire++;
Li RongQing14956642014-05-19 17:30:28 +08001646 fib6_run_gc(net->ipv6.ip6_rt_gc_expire, net, true);
Eric Dumazetfc66f952010-10-08 06:37:34 +00001647 entries = dst_entries_get_slow(ops);
1648 if (entries < ops->gc_thresh)
Daniel Lezcano7019b782008-03-04 13:50:14 -08001649 net->ipv6.ip6_rt_gc_expire = rt_gc_timeout>>1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650out:
Daniel Lezcano7019b782008-03-04 13:50:14 -08001651 net->ipv6.ip6_rt_gc_expire -= net->ipv6.ip6_rt_gc_expire>>rt_elasticity;
Eric Dumazetfc66f952010-10-08 06:37:34 +00001652 return entries > rt_max_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653}
1654
Florian Westphale715b6d2015-01-05 23:57:44 +01001655static int ip6_convert_metrics(struct mx6_config *mxc,
1656 const struct fib6_config *cfg)
1657{
1658 struct nlattr *nla;
1659 int remaining;
1660 u32 *mp;
1661
Ian Morris63159f22015-03-29 14:00:04 +01001662 if (!cfg->fc_mx)
Florian Westphale715b6d2015-01-05 23:57:44 +01001663 return 0;
1664
1665 mp = kzalloc(sizeof(u32) * RTAX_MAX, GFP_KERNEL);
1666 if (unlikely(!mp))
1667 return -ENOMEM;
1668
1669 nla_for_each_attr(nla, cfg->fc_mx, cfg->fc_mx_len, remaining) {
1670 int type = nla_type(nla);
1671
1672 if (type) {
Daniel Borkmannea697632015-01-05 23:57:47 +01001673 u32 val;
1674
Florian Westphale715b6d2015-01-05 23:57:44 +01001675 if (unlikely(type > RTAX_MAX))
1676 goto err;
Daniel Borkmannea697632015-01-05 23:57:47 +01001677 if (type == RTAX_CC_ALGO) {
1678 char tmp[TCP_CA_NAME_MAX];
Florian Westphale715b6d2015-01-05 23:57:44 +01001679
Daniel Borkmannea697632015-01-05 23:57:47 +01001680 nla_strlcpy(tmp, nla, sizeof(tmp));
1681 val = tcp_ca_get_key_by_name(tmp);
1682 if (val == TCP_CA_UNSPEC)
1683 goto err;
1684 } else {
1685 val = nla_get_u32(nla);
1686 }
1687
1688 mp[type - 1] = val;
Florian Westphale715b6d2015-01-05 23:57:44 +01001689 __set_bit(type - 1, mxc->mx_valid);
1690 }
1691 }
1692
1693 mxc->mx = mp;
1694
1695 return 0;
1696 err:
1697 kfree(mp);
1698 return -EINVAL;
1699}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700
Thomas Graf86872cb2006-08-22 00:01:08 -07001701int ip6_route_add(struct fib6_config *cfg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702{
1703 int err;
Daniel Lezcano55786892008-03-04 13:47:47 -08001704 struct net *net = cfg->fc_nlinfo.nl_net;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705 struct rt6_info *rt = NULL;
1706 struct net_device *dev = NULL;
1707 struct inet6_dev *idev = NULL;
Thomas Grafc71099a2006-08-04 23:20:06 -07001708 struct fib6_table *table;
Florian Westphale715b6d2015-01-05 23:57:44 +01001709 struct mx6_config mxc = { .mx = NULL, };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001710 int addr_type;
1711
Thomas Graf86872cb2006-08-22 00:01:08 -07001712 if (cfg->fc_dst_len > 128 || cfg->fc_src_len > 128)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713 return -EINVAL;
1714#ifndef CONFIG_IPV6_SUBTREES
Thomas Graf86872cb2006-08-22 00:01:08 -07001715 if (cfg->fc_src_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716 return -EINVAL;
1717#endif
Thomas Graf86872cb2006-08-22 00:01:08 -07001718 if (cfg->fc_ifindex) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719 err = -ENODEV;
Daniel Lezcano55786892008-03-04 13:47:47 -08001720 dev = dev_get_by_index(net, cfg->fc_ifindex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721 if (!dev)
1722 goto out;
1723 idev = in6_dev_get(dev);
1724 if (!idev)
1725 goto out;
1726 }
1727
Thomas Graf86872cb2006-08-22 00:01:08 -07001728 if (cfg->fc_metric == 0)
1729 cfg->fc_metric = IP6_RT_PRIO_USER;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001730
Matti Vaittinend71314b2011-11-14 00:14:49 +00001731 err = -ENOBUFS;
David S. Miller38308472011-12-03 18:02:47 -05001732 if (cfg->fc_nlinfo.nlh &&
1733 !(cfg->fc_nlinfo.nlh->nlmsg_flags & NLM_F_CREATE)) {
Matti Vaittinend71314b2011-11-14 00:14:49 +00001734 table = fib6_get_table(net, cfg->fc_table);
David S. Miller38308472011-12-03 18:02:47 -05001735 if (!table) {
Joe Perchesf3213832012-05-15 14:11:53 +00001736 pr_warn("NLM_F_CREATE should be specified when creating new route\n");
Matti Vaittinend71314b2011-11-14 00:14:49 +00001737 table = fib6_new_table(net, cfg->fc_table);
1738 }
1739 } else {
1740 table = fib6_new_table(net, cfg->fc_table);
1741 }
David S. Miller38308472011-12-03 18:02:47 -05001742
1743 if (!table)
Thomas Grafc71099a2006-08-04 23:20:06 -07001744 goto out;
Thomas Grafc71099a2006-08-04 23:20:06 -07001745
Sabrina Dubrocac88507f2014-03-06 17:51:57 +01001746 rt = ip6_dst_alloc(net, NULL, (cfg->fc_flags & RTF_ADDRCONF) ? 0 : DST_NOCOUNT, table);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747
David S. Miller38308472011-12-03 18:02:47 -05001748 if (!rt) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749 err = -ENOMEM;
1750 goto out;
1751 }
1752
Gao feng1716a962012-04-06 00:13:10 +00001753 if (cfg->fc_flags & RTF_EXPIRES)
1754 rt6_set_expires(rt, jiffies +
1755 clock_t_to_jiffies(cfg->fc_expires));
1756 else
1757 rt6_clean_expires(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758
Thomas Graf86872cb2006-08-22 00:01:08 -07001759 if (cfg->fc_protocol == RTPROT_UNSPEC)
1760 cfg->fc_protocol = RTPROT_BOOT;
1761 rt->rt6i_protocol = cfg->fc_protocol;
1762
1763 addr_type = ipv6_addr_type(&cfg->fc_dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764
1765 if (addr_type & IPV6_ADDR_MULTICAST)
Changli Gaod8d1f302010-06-10 23:31:35 -07001766 rt->dst.input = ip6_mc_input;
Maciej Żenczykowskiab79ad12010-09-27 00:07:02 +00001767 else if (cfg->fc_flags & RTF_LOCAL)
1768 rt->dst.input = ip6_input;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001769 else
Changli Gaod8d1f302010-06-10 23:31:35 -07001770 rt->dst.input = ip6_forward;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771
Changli Gaod8d1f302010-06-10 23:31:35 -07001772 rt->dst.output = ip6_output;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001773
Roopa Prabhu19e42e42015-07-21 10:43:48 +02001774 if (cfg->fc_encap) {
1775 struct lwtunnel_state *lwtstate;
1776
1777 err = lwtunnel_build_state(dev, cfg->fc_encap_type,
1778 cfg->fc_encap, &lwtstate);
1779 if (err)
1780 goto out;
1781 lwtunnel_state_get(lwtstate);
1782 rt->rt6i_lwtstate = lwtstate;
1783 }
1784
Thomas Graf86872cb2006-08-22 00:01:08 -07001785 ipv6_addr_prefix(&rt->rt6i_dst.addr, &cfg->fc_dst, cfg->fc_dst_len);
1786 rt->rt6i_dst.plen = cfg->fc_dst_len;
Martin KaFai Lauafc4eef2015-04-28 13:03:07 -07001787 if (rt->rt6i_dst.plen == 128)
Michal Kubečeke5fd3872014-03-27 13:04:08 +01001788 rt->dst.flags |= DST_HOST;
Michal Kubečeke5fd3872014-03-27 13:04:08 +01001789
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790#ifdef CONFIG_IPV6_SUBTREES
Thomas Graf86872cb2006-08-22 00:01:08 -07001791 ipv6_addr_prefix(&rt->rt6i_src.addr, &cfg->fc_src, cfg->fc_src_len);
1792 rt->rt6i_src.plen = cfg->fc_src_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793#endif
1794
Thomas Graf86872cb2006-08-22 00:01:08 -07001795 rt->rt6i_metric = cfg->fc_metric;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001796
1797 /* We cannot add true routes via loopback here,
1798 they would result in kernel looping; promote them to reject routes
1799 */
Thomas Graf86872cb2006-08-22 00:01:08 -07001800 if ((cfg->fc_flags & RTF_REJECT) ||
David S. Miller38308472011-12-03 18:02:47 -05001801 (dev && (dev->flags & IFF_LOOPBACK) &&
1802 !(addr_type & IPV6_ADDR_LOOPBACK) &&
1803 !(cfg->fc_flags & RTF_LOCAL))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804 /* hold loopback dev/idev if we haven't done so. */
Daniel Lezcano55786892008-03-04 13:47:47 -08001805 if (dev != net->loopback_dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806 if (dev) {
1807 dev_put(dev);
1808 in6_dev_put(idev);
1809 }
Daniel Lezcano55786892008-03-04 13:47:47 -08001810 dev = net->loopback_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001811 dev_hold(dev);
1812 idev = in6_dev_get(dev);
1813 if (!idev) {
1814 err = -ENODEV;
1815 goto out;
1816 }
1817 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001818 rt->rt6i_flags = RTF_REJECT|RTF_NONEXTHOP;
Nicolas Dichtelef2c7d72012-09-05 02:12:42 +00001819 switch (cfg->fc_type) {
1820 case RTN_BLACKHOLE:
1821 rt->dst.error = -EINVAL;
Eric Dumazetaad88722014-04-15 13:47:15 -04001822 rt->dst.output = dst_discard_sk;
Kamala R7150aed2013-12-02 19:55:21 +05301823 rt->dst.input = dst_discard;
Nicolas Dichtelef2c7d72012-09-05 02:12:42 +00001824 break;
1825 case RTN_PROHIBIT:
1826 rt->dst.error = -EACCES;
Kamala R7150aed2013-12-02 19:55:21 +05301827 rt->dst.output = ip6_pkt_prohibit_out;
1828 rt->dst.input = ip6_pkt_prohibit;
Nicolas Dichtelef2c7d72012-09-05 02:12:42 +00001829 break;
Nicolas Dichtelb4949ab2012-09-06 05:53:35 +00001830 case RTN_THROW:
Nicolas Dichtelef2c7d72012-09-05 02:12:42 +00001831 default:
Kamala R7150aed2013-12-02 19:55:21 +05301832 rt->dst.error = (cfg->fc_type == RTN_THROW) ? -EAGAIN
1833 : -ENETUNREACH;
1834 rt->dst.output = ip6_pkt_discard_out;
1835 rt->dst.input = ip6_pkt_discard;
Nicolas Dichtelef2c7d72012-09-05 02:12:42 +00001836 break;
1837 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838 goto install_route;
1839 }
1840
Thomas Graf86872cb2006-08-22 00:01:08 -07001841 if (cfg->fc_flags & RTF_GATEWAY) {
Eric Dumazetb71d1d42011-04-22 04:53:02 +00001842 const struct in6_addr *gw_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843 int gwa_type;
1844
Thomas Graf86872cb2006-08-22 00:01:08 -07001845 gw_addr = &cfg->fc_gateway;
Florian Westphal48ed7b22015-05-21 00:25:41 +02001846
1847 /* if gw_addr is local we will fail to detect this in case
1848 * address is still TENTATIVE (DAD in progress). rt6_lookup()
1849 * will return already-added prefix route via interface that
1850 * prefix route was assigned to, which might be non-loopback.
1851 */
1852 err = -EINVAL;
1853 if (ipv6_chk_addr_and_flags(net, gw_addr, NULL, 0, 0))
1854 goto out;
1855
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001856 rt->rt6i_gateway = *gw_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857 gwa_type = ipv6_addr_type(gw_addr);
1858
1859 if (gwa_type != (IPV6_ADDR_LINKLOCAL|IPV6_ADDR_UNICAST)) {
1860 struct rt6_info *grt;
1861
1862 /* IPv6 strictly inhibits using not link-local
1863 addresses as nexthop address.
1864 Otherwise, router will not able to send redirects.
1865 It is very good, but in some (rare!) circumstances
1866 (SIT, PtP, NBMA NOARP links) it is handy to allow
1867 some exceptions. --ANK
1868 */
David S. Miller38308472011-12-03 18:02:47 -05001869 if (!(gwa_type & IPV6_ADDR_UNICAST))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001870 goto out;
1871
Daniel Lezcano55786892008-03-04 13:47:47 -08001872 grt = rt6_lookup(net, gw_addr, NULL, cfg->fc_ifindex, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001873
1874 err = -EHOSTUNREACH;
David S. Miller38308472011-12-03 18:02:47 -05001875 if (!grt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876 goto out;
1877 if (dev) {
David S. Millerd1918542011-12-28 20:19:20 -05001878 if (dev != grt->dst.dev) {
Amerigo Wang94e187c2012-10-29 00:13:19 +00001879 ip6_rt_put(grt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001880 goto out;
1881 }
1882 } else {
David S. Millerd1918542011-12-28 20:19:20 -05001883 dev = grt->dst.dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884 idev = grt->rt6i_idev;
1885 dev_hold(dev);
1886 in6_dev_hold(grt->rt6i_idev);
1887 }
David S. Miller38308472011-12-03 18:02:47 -05001888 if (!(grt->rt6i_flags & RTF_GATEWAY))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001889 err = 0;
Amerigo Wang94e187c2012-10-29 00:13:19 +00001890 ip6_rt_put(grt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001891
1892 if (err)
1893 goto out;
1894 }
1895 err = -EINVAL;
David S. Miller38308472011-12-03 18:02:47 -05001896 if (!dev || (dev->flags & IFF_LOOPBACK))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897 goto out;
1898 }
1899
1900 err = -ENODEV;
David S. Miller38308472011-12-03 18:02:47 -05001901 if (!dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001902 goto out;
1903
Daniel Walterc3968a82011-04-13 21:10:57 +00001904 if (!ipv6_addr_any(&cfg->fc_prefsrc)) {
1905 if (!ipv6_chk_addr(net, &cfg->fc_prefsrc, dev, 0)) {
1906 err = -EINVAL;
1907 goto out;
1908 }
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001909 rt->rt6i_prefsrc.addr = cfg->fc_prefsrc;
Daniel Walterc3968a82011-04-13 21:10:57 +00001910 rt->rt6i_prefsrc.plen = 128;
1911 } else
1912 rt->rt6i_prefsrc.plen = 0;
1913
Thomas Graf86872cb2006-08-22 00:01:08 -07001914 rt->rt6i_flags = cfg->fc_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915
1916install_route:
Changli Gaod8d1f302010-06-10 23:31:35 -07001917 rt->dst.dev = dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001918 rt->rt6i_idev = idev;
Thomas Grafc71099a2006-08-04 23:20:06 -07001919 rt->rt6i_table = table;
Daniel Lezcano63152fc2008-03-03 23:31:11 -08001920
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001921 cfg->fc_nlinfo.nl_net = dev_net(dev);
Daniel Lezcano63152fc2008-03-03 23:31:11 -08001922
Florian Westphale715b6d2015-01-05 23:57:44 +01001923 err = ip6_convert_metrics(&mxc, cfg);
1924 if (err)
1925 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001926
Florian Westphale715b6d2015-01-05 23:57:44 +01001927 err = __ip6_ins_rt(rt, &cfg->fc_nlinfo, &mxc);
1928
1929 kfree(mxc.mx);
1930 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931out:
1932 if (dev)
1933 dev_put(dev);
1934 if (idev)
1935 in6_dev_put(idev);
1936 if (rt)
Changli Gaod8d1f302010-06-10 23:31:35 -07001937 dst_free(&rt->dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938 return err;
1939}
1940
Thomas Graf86872cb2006-08-22 00:01:08 -07001941static int __ip6_del_rt(struct rt6_info *rt, struct nl_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001942{
1943 int err;
Thomas Grafc71099a2006-08-04 23:20:06 -07001944 struct fib6_table *table;
David S. Millerd1918542011-12-28 20:19:20 -05001945 struct net *net = dev_net(rt->dst.dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946
Gao feng6825a262012-09-19 19:25:34 +00001947 if (rt == net->ipv6.ip6_null_entry) {
1948 err = -ENOENT;
1949 goto out;
1950 }
Patrick McHardy6c813a72006-08-06 22:22:47 -07001951
Thomas Grafc71099a2006-08-04 23:20:06 -07001952 table = rt->rt6i_table;
1953 write_lock_bh(&table->tb6_lock);
Thomas Graf86872cb2006-08-22 00:01:08 -07001954 err = fib6_del(rt, info);
Thomas Grafc71099a2006-08-04 23:20:06 -07001955 write_unlock_bh(&table->tb6_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956
Gao feng6825a262012-09-19 19:25:34 +00001957out:
Amerigo Wang94e187c2012-10-29 00:13:19 +00001958 ip6_rt_put(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001959 return err;
1960}
1961
Thomas Grafe0a1ad732006-08-22 00:00:21 -07001962int ip6_del_rt(struct rt6_info *rt)
1963{
Denis V. Lunev4d1169c2008-01-10 03:26:13 -08001964 struct nl_info info = {
David S. Millerd1918542011-12-28 20:19:20 -05001965 .nl_net = dev_net(rt->dst.dev),
Denis V. Lunev4d1169c2008-01-10 03:26:13 -08001966 };
Denis V. Lunev528c4ce2007-12-13 09:45:12 -08001967 return __ip6_del_rt(rt, &info);
Thomas Grafe0a1ad732006-08-22 00:00:21 -07001968}
1969
Thomas Graf86872cb2006-08-22 00:01:08 -07001970static int ip6_route_del(struct fib6_config *cfg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971{
Thomas Grafc71099a2006-08-04 23:20:06 -07001972 struct fib6_table *table;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001973 struct fib6_node *fn;
1974 struct rt6_info *rt;
1975 int err = -ESRCH;
1976
Daniel Lezcano55786892008-03-04 13:47:47 -08001977 table = fib6_get_table(cfg->fc_nlinfo.nl_net, cfg->fc_table);
David S. Miller38308472011-12-03 18:02:47 -05001978 if (!table)
Thomas Grafc71099a2006-08-04 23:20:06 -07001979 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001980
Thomas Grafc71099a2006-08-04 23:20:06 -07001981 read_lock_bh(&table->tb6_lock);
1982
1983 fn = fib6_locate(&table->tb6_root,
Thomas Graf86872cb2006-08-22 00:01:08 -07001984 &cfg->fc_dst, cfg->fc_dst_len,
1985 &cfg->fc_src, cfg->fc_src_len);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001986
Linus Torvalds1da177e2005-04-16 15:20:36 -07001987 if (fn) {
Changli Gaod8d1f302010-06-10 23:31:35 -07001988 for (rt = fn->leaf; rt; rt = rt->dst.rt6_next) {
Martin KaFai Lau1f56a012015-04-28 13:03:03 -07001989 if ((rt->rt6i_flags & RTF_CACHE) &&
1990 !(cfg->fc_flags & RTF_CACHE))
1991 continue;
Thomas Graf86872cb2006-08-22 00:01:08 -07001992 if (cfg->fc_ifindex &&
David S. Millerd1918542011-12-28 20:19:20 -05001993 (!rt->dst.dev ||
1994 rt->dst.dev->ifindex != cfg->fc_ifindex))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001995 continue;
Thomas Graf86872cb2006-08-22 00:01:08 -07001996 if (cfg->fc_flags & RTF_GATEWAY &&
1997 !ipv6_addr_equal(&cfg->fc_gateway, &rt->rt6i_gateway))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001998 continue;
Thomas Graf86872cb2006-08-22 00:01:08 -07001999 if (cfg->fc_metric && cfg->fc_metric != rt->rt6i_metric)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000 continue;
Changli Gaod8d1f302010-06-10 23:31:35 -07002001 dst_hold(&rt->dst);
Thomas Grafc71099a2006-08-04 23:20:06 -07002002 read_unlock_bh(&table->tb6_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003
Thomas Graf86872cb2006-08-22 00:01:08 -07002004 return __ip6_del_rt(rt, &cfg->fc_nlinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002005 }
2006 }
Thomas Grafc71099a2006-08-04 23:20:06 -07002007 read_unlock_bh(&table->tb6_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008
2009 return err;
2010}
2011
David S. Miller6700c272012-07-17 03:29:28 -07002012static void rt6_do_redirect(struct dst_entry *dst, struct sock *sk, struct sk_buff *skb)
YOSHIFUJI Hideakia6279452006-08-23 17:18:26 -07002013{
David S. Millere8599ff2012-07-11 23:43:53 -07002014 struct net *net = dev_net(skb->dev);
YOSHIFUJI Hideakia6279452006-08-23 17:18:26 -07002015 struct netevent_redirect netevent;
David S. Millere8599ff2012-07-11 23:43:53 -07002016 struct rt6_info *rt, *nrt = NULL;
David S. Millere8599ff2012-07-11 23:43:53 -07002017 struct ndisc_options ndopts;
2018 struct inet6_dev *in6_dev;
2019 struct neighbour *neigh;
YOSHIFUJI Hideaki / 吉藤英明71bcdba2013-01-05 16:34:51 +00002020 struct rd_msg *msg;
David S. Miller6e157b62012-07-12 00:05:02 -07002021 int optlen, on_link;
2022 u8 *lladdr;
David S. Millere8599ff2012-07-11 23:43:53 -07002023
Simon Horman29a3cad2013-05-28 20:34:26 +00002024 optlen = skb_tail_pointer(skb) - skb_transport_header(skb);
YOSHIFUJI Hideaki / 吉藤英明71bcdba2013-01-05 16:34:51 +00002025 optlen -= sizeof(*msg);
David S. Millere8599ff2012-07-11 23:43:53 -07002026
2027 if (optlen < 0) {
David S. Miller6e157b62012-07-12 00:05:02 -07002028 net_dbg_ratelimited("rt6_do_redirect: packet too short\n");
David S. Millere8599ff2012-07-11 23:43:53 -07002029 return;
2030 }
2031
YOSHIFUJI Hideaki / 吉藤英明71bcdba2013-01-05 16:34:51 +00002032 msg = (struct rd_msg *)icmp6_hdr(skb);
David S. Millere8599ff2012-07-11 23:43:53 -07002033
YOSHIFUJI Hideaki / 吉藤英明71bcdba2013-01-05 16:34:51 +00002034 if (ipv6_addr_is_multicast(&msg->dest)) {
David S. Miller6e157b62012-07-12 00:05:02 -07002035 net_dbg_ratelimited("rt6_do_redirect: destination address is multicast\n");
David S. Millere8599ff2012-07-11 23:43:53 -07002036 return;
2037 }
2038
David S. Miller6e157b62012-07-12 00:05:02 -07002039 on_link = 0;
YOSHIFUJI Hideaki / 吉藤英明71bcdba2013-01-05 16:34:51 +00002040 if (ipv6_addr_equal(&msg->dest, &msg->target)) {
David S. Millere8599ff2012-07-11 23:43:53 -07002041 on_link = 1;
YOSHIFUJI Hideaki / 吉藤英明71bcdba2013-01-05 16:34:51 +00002042 } else if (ipv6_addr_type(&msg->target) !=
David S. Millere8599ff2012-07-11 23:43:53 -07002043 (IPV6_ADDR_UNICAST|IPV6_ADDR_LINKLOCAL)) {
David S. Miller6e157b62012-07-12 00:05:02 -07002044 net_dbg_ratelimited("rt6_do_redirect: target address is not link-local unicast\n");
David S. Millere8599ff2012-07-11 23:43:53 -07002045 return;
2046 }
2047
2048 in6_dev = __in6_dev_get(skb->dev);
2049 if (!in6_dev)
2050 return;
2051 if (in6_dev->cnf.forwarding || !in6_dev->cnf.accept_redirects)
2052 return;
2053
2054 /* RFC2461 8.1:
2055 * The IP source address of the Redirect MUST be the same as the current
2056 * first-hop router for the specified ICMP Destination Address.
2057 */
2058
YOSHIFUJI Hideaki / 吉藤英明71bcdba2013-01-05 16:34:51 +00002059 if (!ndisc_parse_options(msg->opt, optlen, &ndopts)) {
David S. Millere8599ff2012-07-11 23:43:53 -07002060 net_dbg_ratelimited("rt6_redirect: invalid ND options\n");
2061 return;
2062 }
David S. Miller6e157b62012-07-12 00:05:02 -07002063
2064 lladdr = NULL;
David S. Millere8599ff2012-07-11 23:43:53 -07002065 if (ndopts.nd_opts_tgt_lladdr) {
2066 lladdr = ndisc_opt_addr_data(ndopts.nd_opts_tgt_lladdr,
2067 skb->dev);
2068 if (!lladdr) {
2069 net_dbg_ratelimited("rt6_redirect: invalid link-layer address length\n");
2070 return;
2071 }
2072 }
2073
David S. Miller6e157b62012-07-12 00:05:02 -07002074 rt = (struct rt6_info *) dst;
2075 if (rt == net->ipv6.ip6_null_entry) {
2076 net_dbg_ratelimited("rt6_redirect: source isn't a valid nexthop for redirect target\n");
2077 return;
2078 }
2079
2080 /* Redirect received -> path was valid.
2081 * Look, redirects are sent only in response to data packets,
2082 * so that this nexthop apparently is reachable. --ANK
2083 */
2084 dst_confirm(&rt->dst);
2085
YOSHIFUJI Hideaki / 吉藤英明71bcdba2013-01-05 16:34:51 +00002086 neigh = __neigh_lookup(&nd_tbl, &msg->target, skb->dev, 1);
David S. Millere8599ff2012-07-11 23:43:53 -07002087 if (!neigh)
2088 return;
2089
Linus Torvalds1da177e2005-04-16 15:20:36 -07002090 /*
2091 * We have finally decided to accept it.
2092 */
2093
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002094 neigh_update(neigh, lladdr, NUD_STALE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002095 NEIGH_UPDATE_F_WEAK_OVERRIDE|
2096 NEIGH_UPDATE_F_OVERRIDE|
2097 (on_link ? 0 : (NEIGH_UPDATE_F_OVERRIDE_ISROUTER|
2098 NEIGH_UPDATE_F_ISROUTER))
2099 );
2100
Martin KaFai Lau83a09ab2015-05-22 20:56:05 -07002101 nrt = ip6_rt_cache_alloc(rt, &msg->dest, NULL);
David S. Miller38308472011-12-03 18:02:47 -05002102 if (!nrt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002103 goto out;
2104
2105 nrt->rt6i_flags = RTF_GATEWAY|RTF_UP|RTF_DYNAMIC|RTF_CACHE;
2106 if (on_link)
2107 nrt->rt6i_flags &= ~RTF_GATEWAY;
2108
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00002109 nrt->rt6i_gateway = *(struct in6_addr *)neigh->primary_key;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002110
Thomas Graf40e22e82006-08-22 00:00:45 -07002111 if (ip6_ins_rt(nrt))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002112 goto out;
2113
Changli Gaod8d1f302010-06-10 23:31:35 -07002114 netevent.old = &rt->dst;
2115 netevent.new = &nrt->dst;
YOSHIFUJI Hideaki / 吉藤英明71bcdba2013-01-05 16:34:51 +00002116 netevent.daddr = &msg->dest;
YOSHIFUJI Hideaki / 吉藤英明60592832013-01-14 09:28:27 +00002117 netevent.neigh = neigh;
Tom Tucker8d717402006-07-30 20:43:36 -07002118 call_netevent_notifiers(NETEVENT_REDIRECT, &netevent);
2119
David S. Miller38308472011-12-03 18:02:47 -05002120 if (rt->rt6i_flags & RTF_CACHE) {
David S. Miller6e157b62012-07-12 00:05:02 -07002121 rt = (struct rt6_info *) dst_clone(&rt->dst);
Thomas Grafe0a1ad732006-08-22 00:00:21 -07002122 ip6_del_rt(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123 }
2124
2125out:
David S. Millere8599ff2012-07-11 23:43:53 -07002126 neigh_release(neigh);
David S. Miller6e157b62012-07-12 00:05:02 -07002127}
2128
Linus Torvalds1da177e2005-04-16 15:20:36 -07002129/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130 * Misc support functions
2131 */
2132
Martin KaFai Lau4b32b5a2015-04-28 13:03:06 -07002133static void rt6_set_from(struct rt6_info *rt, struct rt6_info *from)
2134{
2135 BUG_ON(from->dst.from);
2136
2137 rt->rt6i_flags &= ~RTF_EXPIRES;
2138 dst_hold(&from->dst);
2139 rt->dst.from = &from->dst;
2140 dst_init_metrics(&rt->dst, dst_metrics_ptr(&from->dst), true);
2141}
2142
Martin KaFai Lau83a09ab2015-05-22 20:56:05 -07002143static void ip6_rt_copy_init(struct rt6_info *rt, struct rt6_info *ort)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002144{
Martin KaFai Lau83a09ab2015-05-22 20:56:05 -07002145 rt->dst.input = ort->dst.input;
2146 rt->dst.output = ort->dst.output;
2147 rt->rt6i_dst = ort->rt6i_dst;
2148 rt->dst.error = ort->dst.error;
2149 rt->rt6i_idev = ort->rt6i_idev;
2150 if (rt->rt6i_idev)
2151 in6_dev_hold(rt->rt6i_idev);
2152 rt->dst.lastuse = jiffies;
2153 rt->rt6i_gateway = ort->rt6i_gateway;
2154 rt->rt6i_flags = ort->rt6i_flags;
2155 rt6_set_from(rt, ort);
2156 rt->rt6i_metric = ort->rt6i_metric;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002157#ifdef CONFIG_IPV6_SUBTREES
Martin KaFai Lau83a09ab2015-05-22 20:56:05 -07002158 rt->rt6i_src = ort->rt6i_src;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002159#endif
Martin KaFai Lau83a09ab2015-05-22 20:56:05 -07002160 rt->rt6i_prefsrc = ort->rt6i_prefsrc;
2161 rt->rt6i_table = ort->rt6i_table;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002162}
2163
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08002164#ifdef CONFIG_IPV6_ROUTE_INFO
Daniel Lezcanoefa2cea2008-03-04 13:46:48 -08002165static struct rt6_info *rt6_get_route_info(struct net *net,
Eric Dumazetb71d1d42011-04-22 04:53:02 +00002166 const struct in6_addr *prefix, int prefixlen,
2167 const struct in6_addr *gwaddr, int ifindex)
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08002168{
2169 struct fib6_node *fn;
2170 struct rt6_info *rt = NULL;
Thomas Grafc71099a2006-08-04 23:20:06 -07002171 struct fib6_table *table;
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08002172
Daniel Lezcanoefa2cea2008-03-04 13:46:48 -08002173 table = fib6_get_table(net, RT6_TABLE_INFO);
David S. Miller38308472011-12-03 18:02:47 -05002174 if (!table)
Thomas Grafc71099a2006-08-04 23:20:06 -07002175 return NULL;
2176
Li RongQing5744dd92012-09-11 21:59:01 +00002177 read_lock_bh(&table->tb6_lock);
Ian Morris67ba4152014-08-24 21:53:10 +01002178 fn = fib6_locate(&table->tb6_root, prefix, prefixlen, NULL, 0);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08002179 if (!fn)
2180 goto out;
2181
Changli Gaod8d1f302010-06-10 23:31:35 -07002182 for (rt = fn->leaf; rt; rt = rt->dst.rt6_next) {
David S. Millerd1918542011-12-28 20:19:20 -05002183 if (rt->dst.dev->ifindex != ifindex)
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08002184 continue;
2185 if ((rt->rt6i_flags & (RTF_ROUTEINFO|RTF_GATEWAY)) != (RTF_ROUTEINFO|RTF_GATEWAY))
2186 continue;
2187 if (!ipv6_addr_equal(&rt->rt6i_gateway, gwaddr))
2188 continue;
Changli Gaod8d1f302010-06-10 23:31:35 -07002189 dst_hold(&rt->dst);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08002190 break;
2191 }
2192out:
Li RongQing5744dd92012-09-11 21:59:01 +00002193 read_unlock_bh(&table->tb6_lock);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08002194 return rt;
2195}
2196
Daniel Lezcanoefa2cea2008-03-04 13:46:48 -08002197static struct rt6_info *rt6_add_route_info(struct net *net,
Eric Dumazetb71d1d42011-04-22 04:53:02 +00002198 const struct in6_addr *prefix, int prefixlen,
2199 const struct in6_addr *gwaddr, int ifindex,
Eric Dumazet95c96172012-04-15 05:58:06 +00002200 unsigned int pref)
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08002201{
Thomas Graf86872cb2006-08-22 00:01:08 -07002202 struct fib6_config cfg = {
2203 .fc_table = RT6_TABLE_INFO,
Rami Rosen238fc7e2008-02-09 23:43:11 -08002204 .fc_metric = IP6_RT_PRIO_USER,
Thomas Graf86872cb2006-08-22 00:01:08 -07002205 .fc_ifindex = ifindex,
2206 .fc_dst_len = prefixlen,
2207 .fc_flags = RTF_GATEWAY | RTF_ADDRCONF | RTF_ROUTEINFO |
2208 RTF_UP | RTF_PREF(pref),
Eric W. Biederman15e47302012-09-07 20:12:54 +00002209 .fc_nlinfo.portid = 0,
Daniel Lezcanoefa2cea2008-03-04 13:46:48 -08002210 .fc_nlinfo.nlh = NULL,
2211 .fc_nlinfo.nl_net = net,
Thomas Graf86872cb2006-08-22 00:01:08 -07002212 };
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08002213
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00002214 cfg.fc_dst = *prefix;
2215 cfg.fc_gateway = *gwaddr;
Thomas Graf86872cb2006-08-22 00:01:08 -07002216
YOSHIFUJI Hideakie317da92006-03-20 17:06:42 -08002217 /* We should treat it as a default route if prefix length is 0. */
2218 if (!prefixlen)
Thomas Graf86872cb2006-08-22 00:01:08 -07002219 cfg.fc_flags |= RTF_DEFAULT;
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08002220
Thomas Graf86872cb2006-08-22 00:01:08 -07002221 ip6_route_add(&cfg);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08002222
Daniel Lezcanoefa2cea2008-03-04 13:46:48 -08002223 return rt6_get_route_info(net, prefix, prefixlen, gwaddr, ifindex);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08002224}
2225#endif
2226
Eric Dumazetb71d1d42011-04-22 04:53:02 +00002227struct rt6_info *rt6_get_dflt_router(const struct in6_addr *addr, struct net_device *dev)
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002228{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002229 struct rt6_info *rt;
Thomas Grafc71099a2006-08-04 23:20:06 -07002230 struct fib6_table *table;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002231
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09002232 table = fib6_get_table(dev_net(dev), RT6_TABLE_DFLT);
David S. Miller38308472011-12-03 18:02:47 -05002233 if (!table)
Thomas Grafc71099a2006-08-04 23:20:06 -07002234 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002235
Li RongQing5744dd92012-09-11 21:59:01 +00002236 read_lock_bh(&table->tb6_lock);
Ian Morris67ba4152014-08-24 21:53:10 +01002237 for (rt = table->tb6_root.leaf; rt; rt = rt->dst.rt6_next) {
David S. Millerd1918542011-12-28 20:19:20 -05002238 if (dev == rt->dst.dev &&
YOSHIFUJI Hideaki045927f2006-03-20 17:00:48 -08002239 ((rt->rt6i_flags & (RTF_ADDRCONF | RTF_DEFAULT)) == (RTF_ADDRCONF | RTF_DEFAULT)) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240 ipv6_addr_equal(&rt->rt6i_gateway, addr))
2241 break;
2242 }
2243 if (rt)
Changli Gaod8d1f302010-06-10 23:31:35 -07002244 dst_hold(&rt->dst);
Li RongQing5744dd92012-09-11 21:59:01 +00002245 read_unlock_bh(&table->tb6_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002246 return rt;
2247}
2248
Eric Dumazetb71d1d42011-04-22 04:53:02 +00002249struct rt6_info *rt6_add_dflt_router(const struct in6_addr *gwaddr,
YOSHIFUJI Hideakiebacaaa2006-03-20 17:04:53 -08002250 struct net_device *dev,
2251 unsigned int pref)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002252{
Thomas Graf86872cb2006-08-22 00:01:08 -07002253 struct fib6_config cfg = {
2254 .fc_table = RT6_TABLE_DFLT,
Rami Rosen238fc7e2008-02-09 23:43:11 -08002255 .fc_metric = IP6_RT_PRIO_USER,
Thomas Graf86872cb2006-08-22 00:01:08 -07002256 .fc_ifindex = dev->ifindex,
2257 .fc_flags = RTF_GATEWAY | RTF_ADDRCONF | RTF_DEFAULT |
2258 RTF_UP | RTF_EXPIRES | RTF_PREF(pref),
Eric W. Biederman15e47302012-09-07 20:12:54 +00002259 .fc_nlinfo.portid = 0,
Daniel Lezcano55786892008-03-04 13:47:47 -08002260 .fc_nlinfo.nlh = NULL,
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09002261 .fc_nlinfo.nl_net = dev_net(dev),
Thomas Graf86872cb2006-08-22 00:01:08 -07002262 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002263
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00002264 cfg.fc_gateway = *gwaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002265
Thomas Graf86872cb2006-08-22 00:01:08 -07002266 ip6_route_add(&cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002267
Linus Torvalds1da177e2005-04-16 15:20:36 -07002268 return rt6_get_dflt_router(gwaddr, dev);
2269}
2270
Daniel Lezcano7b4da532008-03-04 13:47:14 -08002271void rt6_purge_dflt_routers(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002272{
2273 struct rt6_info *rt;
Thomas Grafc71099a2006-08-04 23:20:06 -07002274 struct fib6_table *table;
2275
2276 /* NOTE: Keep consistent with rt6_get_dflt_router */
Daniel Lezcano7b4da532008-03-04 13:47:14 -08002277 table = fib6_get_table(net, RT6_TABLE_DFLT);
David S. Miller38308472011-12-03 18:02:47 -05002278 if (!table)
Thomas Grafc71099a2006-08-04 23:20:06 -07002279 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002280
2281restart:
Thomas Grafc71099a2006-08-04 23:20:06 -07002282 read_lock_bh(&table->tb6_lock);
Changli Gaod8d1f302010-06-10 23:31:35 -07002283 for (rt = table->tb6_root.leaf; rt; rt = rt->dst.rt6_next) {
Lorenzo Colitti3e8b0ac2013-03-03 20:46:46 +00002284 if (rt->rt6i_flags & (RTF_DEFAULT | RTF_ADDRCONF) &&
2285 (!rt->rt6i_idev || rt->rt6i_idev->cnf.accept_ra != 2)) {
Changli Gaod8d1f302010-06-10 23:31:35 -07002286 dst_hold(&rt->dst);
Thomas Grafc71099a2006-08-04 23:20:06 -07002287 read_unlock_bh(&table->tb6_lock);
Thomas Grafe0a1ad732006-08-22 00:00:21 -07002288 ip6_del_rt(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002289 goto restart;
2290 }
2291 }
Thomas Grafc71099a2006-08-04 23:20:06 -07002292 read_unlock_bh(&table->tb6_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002293}
2294
Daniel Lezcano55786892008-03-04 13:47:47 -08002295static void rtmsg_to_fib6_config(struct net *net,
2296 struct in6_rtmsg *rtmsg,
Thomas Graf86872cb2006-08-22 00:01:08 -07002297 struct fib6_config *cfg)
2298{
2299 memset(cfg, 0, sizeof(*cfg));
2300
2301 cfg->fc_table = RT6_TABLE_MAIN;
2302 cfg->fc_ifindex = rtmsg->rtmsg_ifindex;
2303 cfg->fc_metric = rtmsg->rtmsg_metric;
2304 cfg->fc_expires = rtmsg->rtmsg_info;
2305 cfg->fc_dst_len = rtmsg->rtmsg_dst_len;
2306 cfg->fc_src_len = rtmsg->rtmsg_src_len;
2307 cfg->fc_flags = rtmsg->rtmsg_flags;
2308
Daniel Lezcano55786892008-03-04 13:47:47 -08002309 cfg->fc_nlinfo.nl_net = net;
Benjamin Theryf1243c22008-02-26 18:10:03 -08002310
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00002311 cfg->fc_dst = rtmsg->rtmsg_dst;
2312 cfg->fc_src = rtmsg->rtmsg_src;
2313 cfg->fc_gateway = rtmsg->rtmsg_gateway;
Thomas Graf86872cb2006-08-22 00:01:08 -07002314}
2315
Daniel Lezcano55786892008-03-04 13:47:47 -08002316int ipv6_route_ioctl(struct net *net, unsigned int cmd, void __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002317{
Thomas Graf86872cb2006-08-22 00:01:08 -07002318 struct fib6_config cfg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002319 struct in6_rtmsg rtmsg;
2320 int err;
2321
Ian Morris67ba4152014-08-24 21:53:10 +01002322 switch (cmd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002323 case SIOCADDRT: /* Add a route */
2324 case SIOCDELRT: /* Delete a route */
Eric W. Biedermanaf31f412012-11-16 03:03:06 +00002325 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002326 return -EPERM;
2327 err = copy_from_user(&rtmsg, arg,
2328 sizeof(struct in6_rtmsg));
2329 if (err)
2330 return -EFAULT;
Thomas Graf86872cb2006-08-22 00:01:08 -07002331
Daniel Lezcano55786892008-03-04 13:47:47 -08002332 rtmsg_to_fib6_config(net, &rtmsg, &cfg);
Thomas Graf86872cb2006-08-22 00:01:08 -07002333
Linus Torvalds1da177e2005-04-16 15:20:36 -07002334 rtnl_lock();
2335 switch (cmd) {
2336 case SIOCADDRT:
Thomas Graf86872cb2006-08-22 00:01:08 -07002337 err = ip6_route_add(&cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002338 break;
2339 case SIOCDELRT:
Thomas Graf86872cb2006-08-22 00:01:08 -07002340 err = ip6_route_del(&cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002341 break;
2342 default:
2343 err = -EINVAL;
2344 }
2345 rtnl_unlock();
2346
2347 return err;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07002348 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002349
2350 return -EINVAL;
2351}
2352
2353/*
2354 * Drop the packet on the floor
2355 */
2356
Brian Haleyd5fdd6b2009-06-23 04:31:07 -07002357static int ip6_pkt_drop(struct sk_buff *skb, u8 code, int ipstats_mib_noroutes)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002358{
YOSHIFUJI Hideaki612f09e2007-04-13 16:18:02 -07002359 int type;
Eric Dumazetadf30902009-06-02 05:19:30 +00002360 struct dst_entry *dst = skb_dst(skb);
YOSHIFUJI Hideaki612f09e2007-04-13 16:18:02 -07002361 switch (ipstats_mib_noroutes) {
2362 case IPSTATS_MIB_INNOROUTES:
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -07002363 type = ipv6_addr_type(&ipv6_hdr(skb)->daddr);
Ulrich Weber45bb0062010-02-25 23:28:58 +00002364 if (type == IPV6_ADDR_ANY) {
Denis V. Lunev3bd653c2008-10-08 10:54:51 -07002365 IP6_INC_STATS(dev_net(dst->dev), ip6_dst_idev(dst),
2366 IPSTATS_MIB_INADDRERRORS);
YOSHIFUJI Hideaki612f09e2007-04-13 16:18:02 -07002367 break;
2368 }
2369 /* FALLTHROUGH */
2370 case IPSTATS_MIB_OUTNOROUTES:
Denis V. Lunev3bd653c2008-10-08 10:54:51 -07002371 IP6_INC_STATS(dev_net(dst->dev), ip6_dst_idev(dst),
2372 ipstats_mib_noroutes);
YOSHIFUJI Hideaki612f09e2007-04-13 16:18:02 -07002373 break;
2374 }
Alexey Dobriyan3ffe5332010-02-18 08:25:24 +00002375 icmpv6_send(skb, ICMPV6_DEST_UNREACH, code, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002376 kfree_skb(skb);
2377 return 0;
2378}
2379
Thomas Graf9ce8ade2006-10-18 20:46:54 -07002380static int ip6_pkt_discard(struct sk_buff *skb)
2381{
YOSHIFUJI Hideaki612f09e2007-04-13 16:18:02 -07002382 return ip6_pkt_drop(skb, ICMPV6_NOROUTE, IPSTATS_MIB_INNOROUTES);
Thomas Graf9ce8ade2006-10-18 20:46:54 -07002383}
2384
Eric Dumazetaad88722014-04-15 13:47:15 -04002385static int ip6_pkt_discard_out(struct sock *sk, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002386{
Eric Dumazetadf30902009-06-02 05:19:30 +00002387 skb->dev = skb_dst(skb)->dev;
YOSHIFUJI Hideaki612f09e2007-04-13 16:18:02 -07002388 return ip6_pkt_drop(skb, ICMPV6_NOROUTE, IPSTATS_MIB_OUTNOROUTES);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002389}
2390
Thomas Graf9ce8ade2006-10-18 20:46:54 -07002391static int ip6_pkt_prohibit(struct sk_buff *skb)
2392{
YOSHIFUJI Hideaki612f09e2007-04-13 16:18:02 -07002393 return ip6_pkt_drop(skb, ICMPV6_ADM_PROHIBITED, IPSTATS_MIB_INNOROUTES);
Thomas Graf9ce8ade2006-10-18 20:46:54 -07002394}
2395
Eric Dumazetaad88722014-04-15 13:47:15 -04002396static int ip6_pkt_prohibit_out(struct sock *sk, struct sk_buff *skb)
Thomas Graf9ce8ade2006-10-18 20:46:54 -07002397{
Eric Dumazetadf30902009-06-02 05:19:30 +00002398 skb->dev = skb_dst(skb)->dev;
YOSHIFUJI Hideaki612f09e2007-04-13 16:18:02 -07002399 return ip6_pkt_drop(skb, ICMPV6_ADM_PROHIBITED, IPSTATS_MIB_OUTNOROUTES);
Thomas Graf9ce8ade2006-10-18 20:46:54 -07002400}
2401
Linus Torvalds1da177e2005-04-16 15:20:36 -07002402/*
2403 * Allocate a dst for local (unicast / anycast) address.
2404 */
2405
2406struct rt6_info *addrconf_dst_alloc(struct inet6_dev *idev,
2407 const struct in6_addr *addr,
David S. Miller8f031512011-12-06 16:48:14 -05002408 bool anycast)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002409{
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09002410 struct net *net = dev_net(idev->dev);
Hannes Frederic Sowaa3300ef2013-12-07 03:33:45 +01002411 struct rt6_info *rt = ip6_dst_alloc(net, net->loopback_dev,
2412 DST_NOCOUNT, NULL);
2413 if (!rt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002414 return ERR_PTR(-ENOMEM);
2415
Linus Torvalds1da177e2005-04-16 15:20:36 -07002416 in6_dev_hold(idev);
2417
David S. Miller11d53b42011-06-24 15:23:34 -07002418 rt->dst.flags |= DST_HOST;
Changli Gaod8d1f302010-06-10 23:31:35 -07002419 rt->dst.input = ip6_input;
2420 rt->dst.output = ip6_output;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002421 rt->rt6i_idev = idev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002422
2423 rt->rt6i_flags = RTF_UP | RTF_NONEXTHOP;
YOSHIFUJI Hideaki58c4fb82005-12-21 22:56:42 +09002424 if (anycast)
2425 rt->rt6i_flags |= RTF_ANYCAST;
2426 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002427 rt->rt6i_flags |= RTF_LOCAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002428
Julian Anastasov550bab42013-10-20 15:43:04 +03002429 rt->rt6i_gateway = *addr;
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00002430 rt->rt6i_dst.addr = *addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002431 rt->rt6i_dst.plen = 128;
Daniel Lezcano55786892008-03-04 13:47:47 -08002432 rt->rt6i_table = fib6_get_table(net, RT6_TABLE_LOCAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002433
Changli Gaod8d1f302010-06-10 23:31:35 -07002434 atomic_set(&rt->dst.__refcnt, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002435
2436 return rt;
2437}
2438
Daniel Walterc3968a82011-04-13 21:10:57 +00002439int ip6_route_get_saddr(struct net *net,
2440 struct rt6_info *rt,
Eric Dumazetb71d1d42011-04-22 04:53:02 +00002441 const struct in6_addr *daddr,
Daniel Walterc3968a82011-04-13 21:10:57 +00002442 unsigned int prefs,
2443 struct in6_addr *saddr)
2444{
Markus Stenberge16e8882015-05-05 13:36:59 +03002445 struct inet6_dev *idev =
2446 rt ? ip6_dst_idev((struct dst_entry *)rt) : NULL;
Daniel Walterc3968a82011-04-13 21:10:57 +00002447 int err = 0;
Markus Stenberge16e8882015-05-05 13:36:59 +03002448 if (rt && rt->rt6i_prefsrc.plen)
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00002449 *saddr = rt->rt6i_prefsrc.addr;
Daniel Walterc3968a82011-04-13 21:10:57 +00002450 else
2451 err = ipv6_dev_get_saddr(net, idev ? idev->dev : NULL,
2452 daddr, prefs, saddr);
2453 return err;
2454}
2455
2456/* remove deleted ip from prefsrc entries */
2457struct arg_dev_net_ip {
2458 struct net_device *dev;
2459 struct net *net;
2460 struct in6_addr *addr;
2461};
2462
2463static int fib6_remove_prefsrc(struct rt6_info *rt, void *arg)
2464{
2465 struct net_device *dev = ((struct arg_dev_net_ip *)arg)->dev;
2466 struct net *net = ((struct arg_dev_net_ip *)arg)->net;
2467 struct in6_addr *addr = ((struct arg_dev_net_ip *)arg)->addr;
2468
David S. Millerd1918542011-12-28 20:19:20 -05002469 if (((void *)rt->dst.dev == dev || !dev) &&
Daniel Walterc3968a82011-04-13 21:10:57 +00002470 rt != net->ipv6.ip6_null_entry &&
2471 ipv6_addr_equal(addr, &rt->rt6i_prefsrc.addr)) {
2472 /* remove prefsrc entry */
2473 rt->rt6i_prefsrc.plen = 0;
2474 }
2475 return 0;
2476}
2477
2478void rt6_remove_prefsrc(struct inet6_ifaddr *ifp)
2479{
2480 struct net *net = dev_net(ifp->idev->dev);
2481 struct arg_dev_net_ip adni = {
2482 .dev = ifp->idev->dev,
2483 .net = net,
2484 .addr = &ifp->addr,
2485 };
Li RongQing0c3584d2013-12-27 16:32:38 +08002486 fib6_clean_all(net, fib6_remove_prefsrc, &adni);
Daniel Walterc3968a82011-04-13 21:10:57 +00002487}
2488
Duan Jiongbe7a0102014-05-15 15:56:14 +08002489#define RTF_RA_ROUTER (RTF_ADDRCONF | RTF_DEFAULT | RTF_GATEWAY)
2490#define RTF_CACHE_GATEWAY (RTF_GATEWAY | RTF_CACHE)
2491
2492/* Remove routers and update dst entries when gateway turn into host. */
2493static int fib6_clean_tohost(struct rt6_info *rt, void *arg)
2494{
2495 struct in6_addr *gateway = (struct in6_addr *)arg;
2496
2497 if ((((rt->rt6i_flags & RTF_RA_ROUTER) == RTF_RA_ROUTER) ||
2498 ((rt->rt6i_flags & RTF_CACHE_GATEWAY) == RTF_CACHE_GATEWAY)) &&
2499 ipv6_addr_equal(gateway, &rt->rt6i_gateway)) {
2500 return -1;
2501 }
2502 return 0;
2503}
2504
2505void rt6_clean_tohost(struct net *net, struct in6_addr *gateway)
2506{
2507 fib6_clean_all(net, fib6_clean_tohost, gateway);
2508}
2509
Daniel Lezcano8ed67782008-03-04 13:48:30 -08002510struct arg_dev_net {
2511 struct net_device *dev;
2512 struct net *net;
2513};
2514
Linus Torvalds1da177e2005-04-16 15:20:36 -07002515static int fib6_ifdown(struct rt6_info *rt, void *arg)
2516{
stephen hemmingerbc3ef662010-12-16 17:42:40 +00002517 const struct arg_dev_net *adn = arg;
2518 const struct net_device *dev = adn->dev;
Daniel Lezcano8ed67782008-03-04 13:48:30 -08002519
David S. Millerd1918542011-12-28 20:19:20 -05002520 if ((rt->dst.dev == dev || !dev) &&
David S. Millerc159d302011-12-26 15:24:36 -05002521 rt != adn->net->ipv6.ip6_null_entry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002522 return -1;
David S. Millerc159d302011-12-26 15:24:36 -05002523
Linus Torvalds1da177e2005-04-16 15:20:36 -07002524 return 0;
2525}
2526
Daniel Lezcanof3db4852008-03-03 23:27:06 -08002527void rt6_ifdown(struct net *net, struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002528{
Daniel Lezcano8ed67782008-03-04 13:48:30 -08002529 struct arg_dev_net adn = {
2530 .dev = dev,
2531 .net = net,
2532 };
2533
Li RongQing0c3584d2013-12-27 16:32:38 +08002534 fib6_clean_all(net, fib6_ifdown, &adn);
David S. Miller1e493d12008-09-10 17:27:15 -07002535 icmp6_clean_all(fib6_ifdown, &adn);
Martin KaFai Lau8d0b94a2015-05-22 20:56:04 -07002536 rt6_uncached_list_flush_dev(net, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002537}
2538
Eric Dumazet95c96172012-04-15 05:58:06 +00002539struct rt6_mtu_change_arg {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002540 struct net_device *dev;
Eric Dumazet95c96172012-04-15 05:58:06 +00002541 unsigned int mtu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002542};
2543
2544static int rt6_mtu_change_route(struct rt6_info *rt, void *p_arg)
2545{
2546 struct rt6_mtu_change_arg *arg = (struct rt6_mtu_change_arg *) p_arg;
2547 struct inet6_dev *idev;
2548
2549 /* In IPv6 pmtu discovery is not optional,
2550 so that RTAX_MTU lock cannot disable it.
2551 We still use this lock to block changes
2552 caused by addrconf/ndisc.
2553 */
2554
2555 idev = __in6_dev_get(arg->dev);
David S. Miller38308472011-12-03 18:02:47 -05002556 if (!idev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002557 return 0;
2558
2559 /* For administrative MTU increase, there is no way to discover
2560 IPv6 PMTU increase, so PMTU increase should be updated here.
2561 Since RFC 1981 doesn't include administrative MTU increase
2562 update PMTU increase is a MUST. (i.e. jumbo frame)
2563 */
2564 /*
2565 If new MTU is less than route PMTU, this new MTU will be the
2566 lowest MTU in the path, update the route PMTU to reflect PMTU
2567 decreases; if new MTU is greater than route PMTU, and the
2568 old MTU is the lowest MTU in the path, update the route PMTU
2569 to reflect the increase. In this case if the other nodes' MTU
2570 also have the lowest MTU, TOO BIG MESSAGE will be lead to
2571 PMTU discouvery.
2572 */
David S. Millerd1918542011-12-28 20:19:20 -05002573 if (rt->dst.dev == arg->dev &&
Martin KaFai Lau4b32b5a2015-04-28 13:03:06 -07002574 !dst_metric_locked(&rt->dst, RTAX_MTU)) {
2575 if (rt->rt6i_flags & RTF_CACHE) {
2576 /* For RTF_CACHE with rt6i_pmtu == 0
2577 * (i.e. a redirected route),
2578 * the metrics of its rt->dst.from has already
2579 * been updated.
2580 */
2581 if (rt->rt6i_pmtu && rt->rt6i_pmtu > arg->mtu)
2582 rt->rt6i_pmtu = arg->mtu;
2583 } else if (dst_mtu(&rt->dst) >= arg->mtu ||
2584 (dst_mtu(&rt->dst) < arg->mtu &&
2585 dst_mtu(&rt->dst) == idev->cnf.mtu6)) {
2586 dst_metric_set(&rt->dst, RTAX_MTU, arg->mtu);
2587 }
Simon Arlott566cfd82007-07-26 00:09:55 -07002588 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002589 return 0;
2590}
2591
Eric Dumazet95c96172012-04-15 05:58:06 +00002592void rt6_mtu_change(struct net_device *dev, unsigned int mtu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002593{
Thomas Grafc71099a2006-08-04 23:20:06 -07002594 struct rt6_mtu_change_arg arg = {
2595 .dev = dev,
2596 .mtu = mtu,
2597 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002598
Li RongQing0c3584d2013-12-27 16:32:38 +08002599 fib6_clean_all(dev_net(dev), rt6_mtu_change_route, &arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002600}
2601
Patrick McHardyef7c79e2007-06-05 12:38:30 -07002602static const struct nla_policy rtm_ipv6_policy[RTA_MAX+1] = {
Thomas Graf5176f912006-08-26 20:13:18 -07002603 [RTA_GATEWAY] = { .len = sizeof(struct in6_addr) },
Thomas Graf86872cb2006-08-22 00:01:08 -07002604 [RTA_OIF] = { .type = NLA_U32 },
Thomas Grafab364a62006-08-22 00:01:47 -07002605 [RTA_IIF] = { .type = NLA_U32 },
Thomas Graf86872cb2006-08-22 00:01:08 -07002606 [RTA_PRIORITY] = { .type = NLA_U32 },
2607 [RTA_METRICS] = { .type = NLA_NESTED },
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00002608 [RTA_MULTIPATH] = { .len = sizeof(struct rtnexthop) },
Lubomir Rintelc78ba6d2015-03-11 15:39:21 +01002609 [RTA_PREF] = { .type = NLA_U8 },
Roopa Prabhu19e42e42015-07-21 10:43:48 +02002610 [RTA_ENCAP_TYPE] = { .type = NLA_U16 },
2611 [RTA_ENCAP] = { .type = NLA_NESTED },
Thomas Graf86872cb2006-08-22 00:01:08 -07002612};
2613
2614static int rtm_to_fib6_config(struct sk_buff *skb, struct nlmsghdr *nlh,
2615 struct fib6_config *cfg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002616{
Thomas Graf86872cb2006-08-22 00:01:08 -07002617 struct rtmsg *rtm;
2618 struct nlattr *tb[RTA_MAX+1];
Lubomir Rintelc78ba6d2015-03-11 15:39:21 +01002619 unsigned int pref;
Thomas Graf86872cb2006-08-22 00:01:08 -07002620 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002621
Thomas Graf86872cb2006-08-22 00:01:08 -07002622 err = nlmsg_parse(nlh, sizeof(*rtm), tb, RTA_MAX, rtm_ipv6_policy);
2623 if (err < 0)
2624 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002625
Thomas Graf86872cb2006-08-22 00:01:08 -07002626 err = -EINVAL;
2627 rtm = nlmsg_data(nlh);
2628 memset(cfg, 0, sizeof(*cfg));
2629
2630 cfg->fc_table = rtm->rtm_table;
2631 cfg->fc_dst_len = rtm->rtm_dst_len;
2632 cfg->fc_src_len = rtm->rtm_src_len;
2633 cfg->fc_flags = RTF_UP;
2634 cfg->fc_protocol = rtm->rtm_protocol;
Nicolas Dichtelef2c7d72012-09-05 02:12:42 +00002635 cfg->fc_type = rtm->rtm_type;
Thomas Graf86872cb2006-08-22 00:01:08 -07002636
Nicolas Dichtelef2c7d72012-09-05 02:12:42 +00002637 if (rtm->rtm_type == RTN_UNREACHABLE ||
2638 rtm->rtm_type == RTN_BLACKHOLE ||
Nicolas Dichtelb4949ab2012-09-06 05:53:35 +00002639 rtm->rtm_type == RTN_PROHIBIT ||
2640 rtm->rtm_type == RTN_THROW)
Thomas Graf86872cb2006-08-22 00:01:08 -07002641 cfg->fc_flags |= RTF_REJECT;
2642
Maciej Żenczykowskiab79ad12010-09-27 00:07:02 +00002643 if (rtm->rtm_type == RTN_LOCAL)
2644 cfg->fc_flags |= RTF_LOCAL;
2645
Martin KaFai Lau1f56a012015-04-28 13:03:03 -07002646 if (rtm->rtm_flags & RTM_F_CLONED)
2647 cfg->fc_flags |= RTF_CACHE;
2648
Eric W. Biederman15e47302012-09-07 20:12:54 +00002649 cfg->fc_nlinfo.portid = NETLINK_CB(skb).portid;
Thomas Graf86872cb2006-08-22 00:01:08 -07002650 cfg->fc_nlinfo.nlh = nlh;
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09002651 cfg->fc_nlinfo.nl_net = sock_net(skb->sk);
Thomas Graf86872cb2006-08-22 00:01:08 -07002652
2653 if (tb[RTA_GATEWAY]) {
Jiri Benc67b61f62015-03-29 16:59:26 +02002654 cfg->fc_gateway = nla_get_in6_addr(tb[RTA_GATEWAY]);
Thomas Graf86872cb2006-08-22 00:01:08 -07002655 cfg->fc_flags |= RTF_GATEWAY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002656 }
Thomas Graf86872cb2006-08-22 00:01:08 -07002657
2658 if (tb[RTA_DST]) {
2659 int plen = (rtm->rtm_dst_len + 7) >> 3;
2660
2661 if (nla_len(tb[RTA_DST]) < plen)
2662 goto errout;
2663
2664 nla_memcpy(&cfg->fc_dst, tb[RTA_DST], plen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002665 }
Thomas Graf86872cb2006-08-22 00:01:08 -07002666
2667 if (tb[RTA_SRC]) {
2668 int plen = (rtm->rtm_src_len + 7) >> 3;
2669
2670 if (nla_len(tb[RTA_SRC]) < plen)
2671 goto errout;
2672
2673 nla_memcpy(&cfg->fc_src, tb[RTA_SRC], plen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002674 }
Thomas Graf86872cb2006-08-22 00:01:08 -07002675
Daniel Walterc3968a82011-04-13 21:10:57 +00002676 if (tb[RTA_PREFSRC])
Jiri Benc67b61f62015-03-29 16:59:26 +02002677 cfg->fc_prefsrc = nla_get_in6_addr(tb[RTA_PREFSRC]);
Daniel Walterc3968a82011-04-13 21:10:57 +00002678
Thomas Graf86872cb2006-08-22 00:01:08 -07002679 if (tb[RTA_OIF])
2680 cfg->fc_ifindex = nla_get_u32(tb[RTA_OIF]);
2681
2682 if (tb[RTA_PRIORITY])
2683 cfg->fc_metric = nla_get_u32(tb[RTA_PRIORITY]);
2684
2685 if (tb[RTA_METRICS]) {
2686 cfg->fc_mx = nla_data(tb[RTA_METRICS]);
2687 cfg->fc_mx_len = nla_len(tb[RTA_METRICS]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002688 }
Thomas Graf86872cb2006-08-22 00:01:08 -07002689
2690 if (tb[RTA_TABLE])
2691 cfg->fc_table = nla_get_u32(tb[RTA_TABLE]);
2692
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00002693 if (tb[RTA_MULTIPATH]) {
2694 cfg->fc_mp = nla_data(tb[RTA_MULTIPATH]);
2695 cfg->fc_mp_len = nla_len(tb[RTA_MULTIPATH]);
2696 }
2697
Lubomir Rintelc78ba6d2015-03-11 15:39:21 +01002698 if (tb[RTA_PREF]) {
2699 pref = nla_get_u8(tb[RTA_PREF]);
2700 if (pref != ICMPV6_ROUTER_PREF_LOW &&
2701 pref != ICMPV6_ROUTER_PREF_HIGH)
2702 pref = ICMPV6_ROUTER_PREF_MEDIUM;
2703 cfg->fc_flags |= RTF_PREF(pref);
2704 }
2705
Roopa Prabhu19e42e42015-07-21 10:43:48 +02002706 if (tb[RTA_ENCAP])
2707 cfg->fc_encap = tb[RTA_ENCAP];
2708
2709 if (tb[RTA_ENCAP_TYPE])
2710 cfg->fc_encap_type = nla_get_u16(tb[RTA_ENCAP_TYPE]);
2711
Thomas Graf86872cb2006-08-22 00:01:08 -07002712 err = 0;
2713errout:
2714 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002715}
2716
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00002717static int ip6_route_multipath(struct fib6_config *cfg, int add)
2718{
2719 struct fib6_config r_cfg;
2720 struct rtnexthop *rtnh;
2721 int remaining;
2722 int attrlen;
2723 int err = 0, last_err = 0;
2724
Michal Kubeček35f1b4e2015-05-18 20:53:55 +02002725 remaining = cfg->fc_mp_len;
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00002726beginning:
2727 rtnh = (struct rtnexthop *)cfg->fc_mp;
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00002728
2729 /* Parse a Multipath Entry */
2730 while (rtnh_ok(rtnh, remaining)) {
2731 memcpy(&r_cfg, cfg, sizeof(*cfg));
2732 if (rtnh->rtnh_ifindex)
2733 r_cfg.fc_ifindex = rtnh->rtnh_ifindex;
2734
2735 attrlen = rtnh_attrlen(rtnh);
2736 if (attrlen > 0) {
2737 struct nlattr *nla, *attrs = rtnh_attrs(rtnh);
2738
2739 nla = nla_find(attrs, attrlen, RTA_GATEWAY);
2740 if (nla) {
Jiri Benc67b61f62015-03-29 16:59:26 +02002741 r_cfg.fc_gateway = nla_get_in6_addr(nla);
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00002742 r_cfg.fc_flags |= RTF_GATEWAY;
2743 }
Roopa Prabhu19e42e42015-07-21 10:43:48 +02002744 r_cfg.fc_encap = nla_find(attrs, attrlen, RTA_ENCAP);
2745 nla = nla_find(attrs, attrlen, RTA_ENCAP_TYPE);
2746 if (nla)
2747 r_cfg.fc_encap_type = nla_get_u16(nla);
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00002748 }
2749 err = add ? ip6_route_add(&r_cfg) : ip6_route_del(&r_cfg);
2750 if (err) {
2751 last_err = err;
2752 /* If we are trying to remove a route, do not stop the
2753 * loop when ip6_route_del() fails (because next hop is
2754 * already gone), we should try to remove all next hops.
2755 */
2756 if (add) {
2757 /* If add fails, we should try to delete all
2758 * next hops that have been already added.
2759 */
2760 add = 0;
Michal Kubeček35f1b4e2015-05-18 20:53:55 +02002761 remaining = cfg->fc_mp_len - remaining;
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00002762 goto beginning;
2763 }
2764 }
Nicolas Dichtel1a724182012-11-01 22:58:22 +00002765 /* Because each route is added like a single route we remove
Michal Kubeček27596472015-05-18 20:54:00 +02002766 * these flags after the first nexthop: if there is a collision,
2767 * we have already failed to add the first nexthop:
2768 * fib6_add_rt2node() has rejected it; when replacing, old
2769 * nexthops have been replaced by first new, the rest should
2770 * be added to it.
Nicolas Dichtel1a724182012-11-01 22:58:22 +00002771 */
Michal Kubeček27596472015-05-18 20:54:00 +02002772 cfg->fc_nlinfo.nlh->nlmsg_flags &= ~(NLM_F_EXCL |
2773 NLM_F_REPLACE);
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00002774 rtnh = rtnh_next(rtnh, &remaining);
2775 }
2776
2777 return last_err;
2778}
2779
Ian Morris67ba4152014-08-24 21:53:10 +01002780static int inet6_rtm_delroute(struct sk_buff *skb, struct nlmsghdr *nlh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002781{
Thomas Graf86872cb2006-08-22 00:01:08 -07002782 struct fib6_config cfg;
2783 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002784
Thomas Graf86872cb2006-08-22 00:01:08 -07002785 err = rtm_to_fib6_config(skb, nlh, &cfg);
2786 if (err < 0)
2787 return err;
2788
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00002789 if (cfg.fc_mp)
2790 return ip6_route_multipath(&cfg, 0);
2791 else
2792 return ip6_route_del(&cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002793}
2794
Ian Morris67ba4152014-08-24 21:53:10 +01002795static int inet6_rtm_newroute(struct sk_buff *skb, struct nlmsghdr *nlh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002796{
Thomas Graf86872cb2006-08-22 00:01:08 -07002797 struct fib6_config cfg;
2798 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002799
Thomas Graf86872cb2006-08-22 00:01:08 -07002800 err = rtm_to_fib6_config(skb, nlh, &cfg);
2801 if (err < 0)
2802 return err;
2803
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00002804 if (cfg.fc_mp)
2805 return ip6_route_multipath(&cfg, 1);
2806 else
2807 return ip6_route_add(&cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002808}
2809
Roopa Prabhu19e42e42015-07-21 10:43:48 +02002810static inline size_t rt6_nlmsg_size(struct rt6_info *rt)
Thomas Graf339bf982006-11-10 14:10:15 -08002811{
2812 return NLMSG_ALIGN(sizeof(struct rtmsg))
2813 + nla_total_size(16) /* RTA_SRC */
2814 + nla_total_size(16) /* RTA_DST */
2815 + nla_total_size(16) /* RTA_GATEWAY */
2816 + nla_total_size(16) /* RTA_PREFSRC */
2817 + nla_total_size(4) /* RTA_TABLE */
2818 + nla_total_size(4) /* RTA_IIF */
2819 + nla_total_size(4) /* RTA_OIF */
2820 + nla_total_size(4) /* RTA_PRIORITY */
Noriaki TAKAMIYA6a2b9ce2007-01-23 22:09:41 -08002821 + RTAX_MAX * nla_total_size(4) /* RTA_METRICS */
Daniel Borkmannea697632015-01-05 23:57:47 +01002822 + nla_total_size(sizeof(struct rta_cacheinfo))
Lubomir Rintelc78ba6d2015-03-11 15:39:21 +01002823 + nla_total_size(TCP_CA_NAME_MAX) /* RTAX_CC_ALGO */
Roopa Prabhu19e42e42015-07-21 10:43:48 +02002824 + nla_total_size(1) /* RTA_PREF */
2825 + lwtunnel_get_encap_size(rt->rt6i_lwtstate);
Thomas Graf339bf982006-11-10 14:10:15 -08002826}
2827
Brian Haley191cd582008-08-14 15:33:21 -07002828static int rt6_fill_node(struct net *net,
2829 struct sk_buff *skb, struct rt6_info *rt,
Jamal Hadi Salim0d51aa82005-06-21 13:51:04 -07002830 struct in6_addr *dst, struct in6_addr *src,
Eric W. Biederman15e47302012-09-07 20:12:54 +00002831 int iif, int type, u32 portid, u32 seq,
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09002832 int prefix, int nowait, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002833{
Martin KaFai Lau4b32b5a2015-04-28 13:03:06 -07002834 u32 metrics[RTAX_MAX];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002835 struct rtmsg *rtm;
Thomas Graf2d7202b2006-08-22 00:01:27 -07002836 struct nlmsghdr *nlh;
Thomas Grafe3703b32006-11-27 09:27:07 -08002837 long expires;
Patrick McHardy9e762a42006-08-10 23:09:48 -07002838 u32 table;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002839
2840 if (prefix) { /* user wants prefix routes only */
2841 if (!(rt->rt6i_flags & RTF_PREFIX_RT)) {
2842 /* success since this is not a prefix route */
2843 return 1;
2844 }
2845 }
2846
Eric W. Biederman15e47302012-09-07 20:12:54 +00002847 nlh = nlmsg_put(skb, portid, seq, type, sizeof(*rtm), flags);
David S. Miller38308472011-12-03 18:02:47 -05002848 if (!nlh)
Patrick McHardy26932562007-01-31 23:16:40 -08002849 return -EMSGSIZE;
Thomas Graf2d7202b2006-08-22 00:01:27 -07002850
2851 rtm = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002852 rtm->rtm_family = AF_INET6;
2853 rtm->rtm_dst_len = rt->rt6i_dst.plen;
2854 rtm->rtm_src_len = rt->rt6i_src.plen;
2855 rtm->rtm_tos = 0;
Thomas Grafc71099a2006-08-04 23:20:06 -07002856 if (rt->rt6i_table)
Patrick McHardy9e762a42006-08-10 23:09:48 -07002857 table = rt->rt6i_table->tb6_id;
Thomas Grafc71099a2006-08-04 23:20:06 -07002858 else
Patrick McHardy9e762a42006-08-10 23:09:48 -07002859 table = RT6_TABLE_UNSPEC;
2860 rtm->rtm_table = table;
David S. Millerc78679e2012-04-01 20:27:33 -04002861 if (nla_put_u32(skb, RTA_TABLE, table))
2862 goto nla_put_failure;
Nicolas Dichtelef2c7d72012-09-05 02:12:42 +00002863 if (rt->rt6i_flags & RTF_REJECT) {
2864 switch (rt->dst.error) {
2865 case -EINVAL:
2866 rtm->rtm_type = RTN_BLACKHOLE;
2867 break;
2868 case -EACCES:
2869 rtm->rtm_type = RTN_PROHIBIT;
2870 break;
Nicolas Dichtelb4949ab2012-09-06 05:53:35 +00002871 case -EAGAIN:
2872 rtm->rtm_type = RTN_THROW;
2873 break;
Nicolas Dichtelef2c7d72012-09-05 02:12:42 +00002874 default:
2875 rtm->rtm_type = RTN_UNREACHABLE;
2876 break;
2877 }
2878 }
David S. Miller38308472011-12-03 18:02:47 -05002879 else if (rt->rt6i_flags & RTF_LOCAL)
Maciej Żenczykowskiab79ad12010-09-27 00:07:02 +00002880 rtm->rtm_type = RTN_LOCAL;
David S. Millerd1918542011-12-28 20:19:20 -05002881 else if (rt->dst.dev && (rt->dst.dev->flags & IFF_LOOPBACK))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002882 rtm->rtm_type = RTN_LOCAL;
2883 else
2884 rtm->rtm_type = RTN_UNICAST;
2885 rtm->rtm_flags = 0;
2886 rtm->rtm_scope = RT_SCOPE_UNIVERSE;
2887 rtm->rtm_protocol = rt->rt6i_protocol;
David S. Miller38308472011-12-03 18:02:47 -05002888 if (rt->rt6i_flags & RTF_DYNAMIC)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002889 rtm->rtm_protocol = RTPROT_REDIRECT;
Denis Ovsienkof0396f602012-07-10 04:45:50 +00002890 else if (rt->rt6i_flags & RTF_ADDRCONF) {
2891 if (rt->rt6i_flags & (RTF_DEFAULT | RTF_ROUTEINFO))
2892 rtm->rtm_protocol = RTPROT_RA;
2893 else
2894 rtm->rtm_protocol = RTPROT_KERNEL;
2895 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002896
David S. Miller38308472011-12-03 18:02:47 -05002897 if (rt->rt6i_flags & RTF_CACHE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002898 rtm->rtm_flags |= RTM_F_CLONED;
2899
2900 if (dst) {
Jiri Benc930345e2015-03-29 16:59:25 +02002901 if (nla_put_in6_addr(skb, RTA_DST, dst))
David S. Millerc78679e2012-04-01 20:27:33 -04002902 goto nla_put_failure;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002903 rtm->rtm_dst_len = 128;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002904 } else if (rtm->rtm_dst_len)
Jiri Benc930345e2015-03-29 16:59:25 +02002905 if (nla_put_in6_addr(skb, RTA_DST, &rt->rt6i_dst.addr))
David S. Millerc78679e2012-04-01 20:27:33 -04002906 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002907#ifdef CONFIG_IPV6_SUBTREES
2908 if (src) {
Jiri Benc930345e2015-03-29 16:59:25 +02002909 if (nla_put_in6_addr(skb, RTA_SRC, src))
David S. Millerc78679e2012-04-01 20:27:33 -04002910 goto nla_put_failure;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002911 rtm->rtm_src_len = 128;
David S. Millerc78679e2012-04-01 20:27:33 -04002912 } else if (rtm->rtm_src_len &&
Jiri Benc930345e2015-03-29 16:59:25 +02002913 nla_put_in6_addr(skb, RTA_SRC, &rt->rt6i_src.addr))
David S. Millerc78679e2012-04-01 20:27:33 -04002914 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002915#endif
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09002916 if (iif) {
2917#ifdef CONFIG_IPV6_MROUTE
2918 if (ipv6_addr_is_multicast(&rt->rt6i_dst.addr)) {
Benjamin Thery8229efd2008-12-10 16:30:15 -08002919 int err = ip6mr_get_route(net, skb, rtm, nowait);
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09002920 if (err <= 0) {
2921 if (!nowait) {
2922 if (err == 0)
2923 return 0;
2924 goto nla_put_failure;
2925 } else {
2926 if (err == -EMSGSIZE)
2927 goto nla_put_failure;
2928 }
2929 }
2930 } else
2931#endif
David S. Millerc78679e2012-04-01 20:27:33 -04002932 if (nla_put_u32(skb, RTA_IIF, iif))
2933 goto nla_put_failure;
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09002934 } else if (dst) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002935 struct in6_addr saddr_buf;
David S. Millerc78679e2012-04-01 20:27:33 -04002936 if (ip6_route_get_saddr(net, rt, dst, 0, &saddr_buf) == 0 &&
Jiri Benc930345e2015-03-29 16:59:25 +02002937 nla_put_in6_addr(skb, RTA_PREFSRC, &saddr_buf))
David S. Millerc78679e2012-04-01 20:27:33 -04002938 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002939 }
Thomas Graf2d7202b2006-08-22 00:01:27 -07002940
Daniel Walterc3968a82011-04-13 21:10:57 +00002941 if (rt->rt6i_prefsrc.plen) {
2942 struct in6_addr saddr_buf;
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00002943 saddr_buf = rt->rt6i_prefsrc.addr;
Jiri Benc930345e2015-03-29 16:59:25 +02002944 if (nla_put_in6_addr(skb, RTA_PREFSRC, &saddr_buf))
David S. Millerc78679e2012-04-01 20:27:33 -04002945 goto nla_put_failure;
Daniel Walterc3968a82011-04-13 21:10:57 +00002946 }
2947
Martin KaFai Lau4b32b5a2015-04-28 13:03:06 -07002948 memcpy(metrics, dst_metrics_ptr(&rt->dst), sizeof(metrics));
2949 if (rt->rt6i_pmtu)
2950 metrics[RTAX_MTU - 1] = rt->rt6i_pmtu;
2951 if (rtnetlink_put_metrics(skb, metrics) < 0)
Thomas Graf2d7202b2006-08-22 00:01:27 -07002952 goto nla_put_failure;
2953
YOSHIFUJI Hideaki / 吉藤英明dd0cbf22013-01-17 12:53:15 +00002954 if (rt->rt6i_flags & RTF_GATEWAY) {
Jiri Benc930345e2015-03-29 16:59:25 +02002955 if (nla_put_in6_addr(skb, RTA_GATEWAY, &rt->rt6i_gateway) < 0)
Eric Dumazet94f826b2012-03-27 09:53:52 +00002956 goto nla_put_failure;
Eric Dumazet94f826b2012-03-27 09:53:52 +00002957 }
Thomas Graf2d7202b2006-08-22 00:01:27 -07002958
David S. Millerc78679e2012-04-01 20:27:33 -04002959 if (rt->dst.dev &&
2960 nla_put_u32(skb, RTA_OIF, rt->dst.dev->ifindex))
2961 goto nla_put_failure;
2962 if (nla_put_u32(skb, RTA_PRIORITY, rt->rt6i_metric))
2963 goto nla_put_failure;
Li Wei82539472012-07-29 16:01:30 +00002964
2965 expires = (rt->rt6i_flags & RTF_EXPIRES) ? rt->dst.expires - jiffies : 0;
YOSHIFUJI Hideaki69cdf8f2008-05-19 16:55:13 -07002966
David S. Miller87a50692012-07-10 05:06:14 -07002967 if (rtnl_put_cacheinfo(skb, &rt->dst, 0, expires, rt->dst.error) < 0)
Thomas Grafe3703b32006-11-27 09:27:07 -08002968 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002969
Lubomir Rintelc78ba6d2015-03-11 15:39:21 +01002970 if (nla_put_u8(skb, RTA_PREF, IPV6_EXTRACT_PREF(rt->rt6i_flags)))
2971 goto nla_put_failure;
2972
Roopa Prabhu19e42e42015-07-21 10:43:48 +02002973 lwtunnel_fill_encap(skb, rt->rt6i_lwtstate);
2974
Johannes Berg053c0952015-01-16 22:09:00 +01002975 nlmsg_end(skb, nlh);
2976 return 0;
Thomas Graf2d7202b2006-08-22 00:01:27 -07002977
2978nla_put_failure:
Patrick McHardy26932562007-01-31 23:16:40 -08002979 nlmsg_cancel(skb, nlh);
2980 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002981}
2982
Patrick McHardy1b43af52006-08-10 23:11:17 -07002983int rt6_dump_route(struct rt6_info *rt, void *p_arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002984{
2985 struct rt6_rtnl_dump_arg *arg = (struct rt6_rtnl_dump_arg *) p_arg;
2986 int prefix;
2987
Thomas Graf2d7202b2006-08-22 00:01:27 -07002988 if (nlmsg_len(arg->cb->nlh) >= sizeof(struct rtmsg)) {
2989 struct rtmsg *rtm = nlmsg_data(arg->cb->nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002990 prefix = (rtm->rtm_flags & RTM_F_PREFIX) != 0;
2991 } else
2992 prefix = 0;
2993
Brian Haley191cd582008-08-14 15:33:21 -07002994 return rt6_fill_node(arg->net,
2995 arg->skb, rt, NULL, NULL, 0, RTM_NEWROUTE,
Eric W. Biederman15e47302012-09-07 20:12:54 +00002996 NETLINK_CB(arg->cb->skb).portid, arg->cb->nlh->nlmsg_seq,
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09002997 prefix, 0, NLM_F_MULTI);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002998}
2999
Ian Morris67ba4152014-08-24 21:53:10 +01003000static int inet6_rtm_getroute(struct sk_buff *in_skb, struct nlmsghdr *nlh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003001{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09003002 struct net *net = sock_net(in_skb->sk);
Thomas Grafab364a62006-08-22 00:01:47 -07003003 struct nlattr *tb[RTA_MAX+1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003004 struct rt6_info *rt;
Thomas Grafab364a62006-08-22 00:01:47 -07003005 struct sk_buff *skb;
3006 struct rtmsg *rtm;
David S. Miller4c9483b2011-03-12 16:22:43 -05003007 struct flowi6 fl6;
Shmulik Ladkani72331bc2012-04-01 04:03:45 +00003008 int err, iif = 0, oif = 0;
Thomas Grafab364a62006-08-22 00:01:47 -07003009
3010 err = nlmsg_parse(nlh, sizeof(*rtm), tb, RTA_MAX, rtm_ipv6_policy);
3011 if (err < 0)
3012 goto errout;
3013
3014 err = -EINVAL;
David S. Miller4c9483b2011-03-12 16:22:43 -05003015 memset(&fl6, 0, sizeof(fl6));
Thomas Grafab364a62006-08-22 00:01:47 -07003016
3017 if (tb[RTA_SRC]) {
3018 if (nla_len(tb[RTA_SRC]) < sizeof(struct in6_addr))
3019 goto errout;
3020
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00003021 fl6.saddr = *(struct in6_addr *)nla_data(tb[RTA_SRC]);
Thomas Grafab364a62006-08-22 00:01:47 -07003022 }
3023
3024 if (tb[RTA_DST]) {
3025 if (nla_len(tb[RTA_DST]) < sizeof(struct in6_addr))
3026 goto errout;
3027
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00003028 fl6.daddr = *(struct in6_addr *)nla_data(tb[RTA_DST]);
Thomas Grafab364a62006-08-22 00:01:47 -07003029 }
3030
3031 if (tb[RTA_IIF])
3032 iif = nla_get_u32(tb[RTA_IIF]);
3033
3034 if (tb[RTA_OIF])
Shmulik Ladkani72331bc2012-04-01 04:03:45 +00003035 oif = nla_get_u32(tb[RTA_OIF]);
Thomas Grafab364a62006-08-22 00:01:47 -07003036
Lorenzo Colitti2e47b292014-05-15 16:38:41 -07003037 if (tb[RTA_MARK])
3038 fl6.flowi6_mark = nla_get_u32(tb[RTA_MARK]);
3039
Thomas Grafab364a62006-08-22 00:01:47 -07003040 if (iif) {
3041 struct net_device *dev;
Shmulik Ladkani72331bc2012-04-01 04:03:45 +00003042 int flags = 0;
3043
Daniel Lezcano55786892008-03-04 13:47:47 -08003044 dev = __dev_get_by_index(net, iif);
Thomas Grafab364a62006-08-22 00:01:47 -07003045 if (!dev) {
3046 err = -ENODEV;
3047 goto errout;
3048 }
Shmulik Ladkani72331bc2012-04-01 04:03:45 +00003049
3050 fl6.flowi6_iif = iif;
3051
3052 if (!ipv6_addr_any(&fl6.saddr))
3053 flags |= RT6_LOOKUP_F_HAS_SADDR;
3054
3055 rt = (struct rt6_info *)ip6_route_input_lookup(net, dev, &fl6,
3056 flags);
3057 } else {
3058 fl6.flowi6_oif = oif;
3059
3060 rt = (struct rt6_info *)ip6_route_output(net, NULL, &fl6);
Thomas Grafab364a62006-08-22 00:01:47 -07003061 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003062
3063 skb = alloc_skb(NLMSG_GOODSIZE, GFP_KERNEL);
David S. Miller38308472011-12-03 18:02:47 -05003064 if (!skb) {
Amerigo Wang94e187c2012-10-29 00:13:19 +00003065 ip6_rt_put(rt);
Thomas Grafab364a62006-08-22 00:01:47 -07003066 err = -ENOBUFS;
3067 goto errout;
3068 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003069
3070 /* Reserve room for dummy headers, this skb can pass
3071 through good chunk of routing engine.
3072 */
Arnaldo Carvalho de Melo459a98e2007-03-19 15:30:44 -07003073 skb_reset_mac_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003074 skb_reserve(skb, MAX_HEADER + sizeof(struct ipv6hdr));
3075
Changli Gaod8d1f302010-06-10 23:31:35 -07003076 skb_dst_set(skb, &rt->dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003077
David S. Miller4c9483b2011-03-12 16:22:43 -05003078 err = rt6_fill_node(net, skb, rt, &fl6.daddr, &fl6.saddr, iif,
Eric W. Biederman15e47302012-09-07 20:12:54 +00003079 RTM_NEWROUTE, NETLINK_CB(in_skb).portid,
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09003080 nlh->nlmsg_seq, 0, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003081 if (err < 0) {
Thomas Grafab364a62006-08-22 00:01:47 -07003082 kfree_skb(skb);
3083 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003084 }
3085
Eric W. Biederman15e47302012-09-07 20:12:54 +00003086 err = rtnl_unicast(skb, net, NETLINK_CB(in_skb).portid);
Thomas Grafab364a62006-08-22 00:01:47 -07003087errout:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003088 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003089}
3090
Thomas Graf86872cb2006-08-22 00:01:08 -07003091void inet6_rt_notify(int event, struct rt6_info *rt, struct nl_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003092{
3093 struct sk_buff *skb;
Daniel Lezcano55786892008-03-04 13:47:47 -08003094 struct net *net = info->nl_net;
Denis V. Lunev528c4ce2007-12-13 09:45:12 -08003095 u32 seq;
3096 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003097
Denis V. Lunev528c4ce2007-12-13 09:45:12 -08003098 err = -ENOBUFS;
David S. Miller38308472011-12-03 18:02:47 -05003099 seq = info->nlh ? info->nlh->nlmsg_seq : 0;
Thomas Graf86872cb2006-08-22 00:01:08 -07003100
Roopa Prabhu19e42e42015-07-21 10:43:48 +02003101 skb = nlmsg_new(rt6_nlmsg_size(rt), gfp_any());
David S. Miller38308472011-12-03 18:02:47 -05003102 if (!skb)
Thomas Graf21713eb2006-08-15 00:35:24 -07003103 goto errout;
3104
Brian Haley191cd582008-08-14 15:33:21 -07003105 err = rt6_fill_node(net, skb, rt, NULL, NULL, 0,
Eric W. Biederman15e47302012-09-07 20:12:54 +00003106 event, info->portid, seq, 0, 0, 0);
Patrick McHardy26932562007-01-31 23:16:40 -08003107 if (err < 0) {
3108 /* -EMSGSIZE implies BUG in rt6_nlmsg_size() */
3109 WARN_ON(err == -EMSGSIZE);
3110 kfree_skb(skb);
3111 goto errout;
3112 }
Eric W. Biederman15e47302012-09-07 20:12:54 +00003113 rtnl_notify(skb, net, info->portid, RTNLGRP_IPV6_ROUTE,
Pablo Neira Ayuso1ce85fe2009-02-24 23:18:28 -08003114 info->nlh, gfp_any());
3115 return;
Thomas Graf21713eb2006-08-15 00:35:24 -07003116errout:
3117 if (err < 0)
Daniel Lezcano55786892008-03-04 13:47:47 -08003118 rtnl_set_sk_err(net, RTNLGRP_IPV6_ROUTE, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003119}
3120
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003121static int ip6_route_dev_notify(struct notifier_block *this,
Jiri Pirko351638e2013-05-28 01:30:21 +00003122 unsigned long event, void *ptr)
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003123{
Jiri Pirko351638e2013-05-28 01:30:21 +00003124 struct net_device *dev = netdev_notifier_info_to_dev(ptr);
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09003125 struct net *net = dev_net(dev);
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003126
3127 if (event == NETDEV_REGISTER && (dev->flags & IFF_LOOPBACK)) {
Changli Gaod8d1f302010-06-10 23:31:35 -07003128 net->ipv6.ip6_null_entry->dst.dev = dev;
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003129 net->ipv6.ip6_null_entry->rt6i_idev = in6_dev_get(dev);
3130#ifdef CONFIG_IPV6_MULTIPLE_TABLES
Changli Gaod8d1f302010-06-10 23:31:35 -07003131 net->ipv6.ip6_prohibit_entry->dst.dev = dev;
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003132 net->ipv6.ip6_prohibit_entry->rt6i_idev = in6_dev_get(dev);
Changli Gaod8d1f302010-06-10 23:31:35 -07003133 net->ipv6.ip6_blk_hole_entry->dst.dev = dev;
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003134 net->ipv6.ip6_blk_hole_entry->rt6i_idev = in6_dev_get(dev);
3135#endif
3136 }
3137
3138 return NOTIFY_OK;
3139}
3140
Linus Torvalds1da177e2005-04-16 15:20:36 -07003141/*
3142 * /proc
3143 */
3144
3145#ifdef CONFIG_PROC_FS
3146
Alexey Dobriyan33120b32007-11-06 05:27:11 -08003147static const struct file_operations ipv6_route_proc_fops = {
3148 .owner = THIS_MODULE,
3149 .open = ipv6_route_open,
3150 .read = seq_read,
3151 .llseek = seq_lseek,
Hannes Frederic Sowa8d2ca1d2013-09-21 16:55:59 +02003152 .release = seq_release_net,
Alexey Dobriyan33120b32007-11-06 05:27:11 -08003153};
3154
Linus Torvalds1da177e2005-04-16 15:20:36 -07003155static int rt6_stats_seq_show(struct seq_file *seq, void *v)
3156{
Daniel Lezcano69ddb802008-03-04 13:46:23 -08003157 struct net *net = (struct net *)seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003158 seq_printf(seq, "%04x %04x %04x %04x %04x %04x %04x\n",
Daniel Lezcano69ddb802008-03-04 13:46:23 -08003159 net->ipv6.rt6_stats->fib_nodes,
3160 net->ipv6.rt6_stats->fib_route_nodes,
3161 net->ipv6.rt6_stats->fib_rt_alloc,
3162 net->ipv6.rt6_stats->fib_rt_entries,
3163 net->ipv6.rt6_stats->fib_rt_cache,
Eric Dumazetfc66f952010-10-08 06:37:34 +00003164 dst_entries_get_slow(&net->ipv6.ip6_dst_ops),
Daniel Lezcano69ddb802008-03-04 13:46:23 -08003165 net->ipv6.rt6_stats->fib_discarded_routes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003166
3167 return 0;
3168}
3169
3170static int rt6_stats_seq_open(struct inode *inode, struct file *file)
3171{
Pavel Emelyanovde05c552008-07-18 04:07:21 -07003172 return single_open_net(inode, file, rt6_stats_seq_show);
Daniel Lezcano69ddb802008-03-04 13:46:23 -08003173}
3174
Arjan van de Ven9a321442007-02-12 00:55:35 -08003175static const struct file_operations rt6_stats_seq_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003176 .owner = THIS_MODULE,
3177 .open = rt6_stats_seq_open,
3178 .read = seq_read,
3179 .llseek = seq_lseek,
Pavel Emelyanovb6fcbdb2008-07-18 04:07:44 -07003180 .release = single_release_net,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003181};
3182#endif /* CONFIG_PROC_FS */
3183
3184#ifdef CONFIG_SYSCTL
3185
Linus Torvalds1da177e2005-04-16 15:20:36 -07003186static
Joe Perchesfe2c6332013-06-11 23:04:25 -07003187int ipv6_sysctl_rtcache_flush(struct ctl_table *ctl, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003188 void __user *buffer, size_t *lenp, loff_t *ppos)
3189{
Lucian Adrian Grijincuc486da32011-02-24 19:48:03 +00003190 struct net *net;
3191 int delay;
3192 if (!write)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003193 return -EINVAL;
Lucian Adrian Grijincuc486da32011-02-24 19:48:03 +00003194
3195 net = (struct net *)ctl->extra1;
3196 delay = net->ipv6.sysctl.flush_delay;
3197 proc_dointvec(ctl, write, buffer, lenp, ppos);
Michal Kubeček2ac3ac82013-08-01 10:04:14 +02003198 fib6_run_gc(delay <= 0 ? 0 : (unsigned long)delay, net, delay > 0);
Lucian Adrian Grijincuc486da32011-02-24 19:48:03 +00003199 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003200}
3201
Joe Perchesfe2c6332013-06-11 23:04:25 -07003202struct ctl_table ipv6_route_table_template[] = {
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003203 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003204 .procname = "flush",
Daniel Lezcano49905092008-01-10 03:01:01 -08003205 .data = &init_net.ipv6.sysctl.flush_delay,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003206 .maxlen = sizeof(int),
Dave Jones89c8b3a12005-04-28 12:11:49 -07003207 .mode = 0200,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08003208 .proc_handler = ipv6_sysctl_rtcache_flush
Linus Torvalds1da177e2005-04-16 15:20:36 -07003209 },
3210 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003211 .procname = "gc_thresh",
Daniel Lezcano9a7ec3a2008-03-04 13:48:53 -08003212 .data = &ip6_dst_ops_template.gc_thresh,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003213 .maxlen = sizeof(int),
3214 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08003215 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003216 },
3217 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003218 .procname = "max_size",
Daniel Lezcano49905092008-01-10 03:01:01 -08003219 .data = &init_net.ipv6.sysctl.ip6_rt_max_size,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003220 .maxlen = sizeof(int),
3221 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08003222 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003223 },
3224 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003225 .procname = "gc_min_interval",
Daniel Lezcano49905092008-01-10 03:01:01 -08003226 .data = &init_net.ipv6.sysctl.ip6_rt_gc_min_interval,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003227 .maxlen = sizeof(int),
3228 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08003229 .proc_handler = proc_dointvec_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003230 },
3231 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003232 .procname = "gc_timeout",
Daniel Lezcano49905092008-01-10 03:01:01 -08003233 .data = &init_net.ipv6.sysctl.ip6_rt_gc_timeout,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003234 .maxlen = sizeof(int),
3235 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08003236 .proc_handler = proc_dointvec_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003237 },
3238 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003239 .procname = "gc_interval",
Daniel Lezcano49905092008-01-10 03:01:01 -08003240 .data = &init_net.ipv6.sysctl.ip6_rt_gc_interval,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003241 .maxlen = sizeof(int),
3242 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08003243 .proc_handler = proc_dointvec_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003244 },
3245 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003246 .procname = "gc_elasticity",
Daniel Lezcano49905092008-01-10 03:01:01 -08003247 .data = &init_net.ipv6.sysctl.ip6_rt_gc_elasticity,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003248 .maxlen = sizeof(int),
3249 .mode = 0644,
Min Zhangf3d3f612010-08-14 22:42:51 -07003250 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003251 },
3252 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003253 .procname = "mtu_expires",
Daniel Lezcano49905092008-01-10 03:01:01 -08003254 .data = &init_net.ipv6.sysctl.ip6_rt_mtu_expires,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003255 .maxlen = sizeof(int),
3256 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08003257 .proc_handler = proc_dointvec_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003258 },
3259 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003260 .procname = "min_adv_mss",
Daniel Lezcano49905092008-01-10 03:01:01 -08003261 .data = &init_net.ipv6.sysctl.ip6_rt_min_advmss,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003262 .maxlen = sizeof(int),
3263 .mode = 0644,
Min Zhangf3d3f612010-08-14 22:42:51 -07003264 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003265 },
3266 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003267 .procname = "gc_min_interval_ms",
Daniel Lezcano49905092008-01-10 03:01:01 -08003268 .data = &init_net.ipv6.sysctl.ip6_rt_gc_min_interval,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003269 .maxlen = sizeof(int),
3270 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08003271 .proc_handler = proc_dointvec_ms_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003272 },
Eric W. Biedermanf8572d82009-11-05 13:32:03 -08003273 { }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003274};
3275
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00003276struct ctl_table * __net_init ipv6_route_sysctl_init(struct net *net)
Daniel Lezcano760f2d02008-01-10 02:53:43 -08003277{
3278 struct ctl_table *table;
3279
3280 table = kmemdup(ipv6_route_table_template,
3281 sizeof(ipv6_route_table_template),
3282 GFP_KERNEL);
YOSHIFUJI Hideaki5ee09102008-02-28 00:24:28 +09003283
3284 if (table) {
3285 table[0].data = &net->ipv6.sysctl.flush_delay;
Lucian Adrian Grijincuc486da32011-02-24 19:48:03 +00003286 table[0].extra1 = net;
Alexey Dobriyan86393e52009-08-29 01:34:49 +00003287 table[1].data = &net->ipv6.ip6_dst_ops.gc_thresh;
YOSHIFUJI Hideaki5ee09102008-02-28 00:24:28 +09003288 table[2].data = &net->ipv6.sysctl.ip6_rt_max_size;
3289 table[3].data = &net->ipv6.sysctl.ip6_rt_gc_min_interval;
3290 table[4].data = &net->ipv6.sysctl.ip6_rt_gc_timeout;
3291 table[5].data = &net->ipv6.sysctl.ip6_rt_gc_interval;
3292 table[6].data = &net->ipv6.sysctl.ip6_rt_gc_elasticity;
3293 table[7].data = &net->ipv6.sysctl.ip6_rt_mtu_expires;
3294 table[8].data = &net->ipv6.sysctl.ip6_rt_min_advmss;
Alexey Dobriyan9c69fab2009-12-18 20:11:03 -08003295 table[9].data = &net->ipv6.sysctl.ip6_rt_gc_min_interval;
Eric W. Biederman464dc802012-11-16 03:02:59 +00003296
3297 /* Don't export sysctls to unprivileged users */
3298 if (net->user_ns != &init_user_ns)
3299 table[0].procname = NULL;
YOSHIFUJI Hideaki5ee09102008-02-28 00:24:28 +09003300 }
3301
Daniel Lezcano760f2d02008-01-10 02:53:43 -08003302 return table;
3303}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003304#endif
3305
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00003306static int __net_init ip6_route_net_init(struct net *net)
Daniel Lezcanocdb18762008-03-04 13:45:33 -08003307{
Pavel Emelyanov633d424b2008-04-21 14:25:23 -07003308 int ret = -ENOMEM;
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003309
Alexey Dobriyan86393e52009-08-29 01:34:49 +00003310 memcpy(&net->ipv6.ip6_dst_ops, &ip6_dst_ops_template,
3311 sizeof(net->ipv6.ip6_dst_ops));
Benjamin Theryf2fc6a52008-03-04 13:49:23 -08003312
Eric Dumazetfc66f952010-10-08 06:37:34 +00003313 if (dst_entries_init(&net->ipv6.ip6_dst_ops) < 0)
3314 goto out_ip6_dst_ops;
3315
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003316 net->ipv6.ip6_null_entry = kmemdup(&ip6_null_entry_template,
3317 sizeof(*net->ipv6.ip6_null_entry),
3318 GFP_KERNEL);
3319 if (!net->ipv6.ip6_null_entry)
Eric Dumazetfc66f952010-10-08 06:37:34 +00003320 goto out_ip6_dst_entries;
Changli Gaod8d1f302010-06-10 23:31:35 -07003321 net->ipv6.ip6_null_entry->dst.path =
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003322 (struct dst_entry *)net->ipv6.ip6_null_entry;
Changli Gaod8d1f302010-06-10 23:31:35 -07003323 net->ipv6.ip6_null_entry->dst.ops = &net->ipv6.ip6_dst_ops;
David S. Miller62fa8a82011-01-26 20:51:05 -08003324 dst_init_metrics(&net->ipv6.ip6_null_entry->dst,
3325 ip6_template_metrics, true);
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003326
3327#ifdef CONFIG_IPV6_MULTIPLE_TABLES
3328 net->ipv6.ip6_prohibit_entry = kmemdup(&ip6_prohibit_entry_template,
3329 sizeof(*net->ipv6.ip6_prohibit_entry),
3330 GFP_KERNEL);
Peter Zijlstra68fffc62008-10-07 14:12:10 -07003331 if (!net->ipv6.ip6_prohibit_entry)
3332 goto out_ip6_null_entry;
Changli Gaod8d1f302010-06-10 23:31:35 -07003333 net->ipv6.ip6_prohibit_entry->dst.path =
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003334 (struct dst_entry *)net->ipv6.ip6_prohibit_entry;
Changli Gaod8d1f302010-06-10 23:31:35 -07003335 net->ipv6.ip6_prohibit_entry->dst.ops = &net->ipv6.ip6_dst_ops;
David S. Miller62fa8a82011-01-26 20:51:05 -08003336 dst_init_metrics(&net->ipv6.ip6_prohibit_entry->dst,
3337 ip6_template_metrics, true);
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003338
3339 net->ipv6.ip6_blk_hole_entry = kmemdup(&ip6_blk_hole_entry_template,
3340 sizeof(*net->ipv6.ip6_blk_hole_entry),
3341 GFP_KERNEL);
Peter Zijlstra68fffc62008-10-07 14:12:10 -07003342 if (!net->ipv6.ip6_blk_hole_entry)
3343 goto out_ip6_prohibit_entry;
Changli Gaod8d1f302010-06-10 23:31:35 -07003344 net->ipv6.ip6_blk_hole_entry->dst.path =
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003345 (struct dst_entry *)net->ipv6.ip6_blk_hole_entry;
Changli Gaod8d1f302010-06-10 23:31:35 -07003346 net->ipv6.ip6_blk_hole_entry->dst.ops = &net->ipv6.ip6_dst_ops;
David S. Miller62fa8a82011-01-26 20:51:05 -08003347 dst_init_metrics(&net->ipv6.ip6_blk_hole_entry->dst,
3348 ip6_template_metrics, true);
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003349#endif
3350
Peter Zijlstrab339a47c2008-10-07 14:15:00 -07003351 net->ipv6.sysctl.flush_delay = 0;
3352 net->ipv6.sysctl.ip6_rt_max_size = 4096;
3353 net->ipv6.sysctl.ip6_rt_gc_min_interval = HZ / 2;
3354 net->ipv6.sysctl.ip6_rt_gc_timeout = 60*HZ;
3355 net->ipv6.sysctl.ip6_rt_gc_interval = 30*HZ;
3356 net->ipv6.sysctl.ip6_rt_gc_elasticity = 9;
3357 net->ipv6.sysctl.ip6_rt_mtu_expires = 10*60*HZ;
3358 net->ipv6.sysctl.ip6_rt_min_advmss = IPV6_MIN_MTU - 20 - 40;
3359
Benjamin Thery6891a342008-03-04 13:49:47 -08003360 net->ipv6.ip6_rt_gc_expire = 30*HZ;
3361
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003362 ret = 0;
3363out:
3364 return ret;
Benjamin Theryf2fc6a52008-03-04 13:49:23 -08003365
Peter Zijlstra68fffc62008-10-07 14:12:10 -07003366#ifdef CONFIG_IPV6_MULTIPLE_TABLES
3367out_ip6_prohibit_entry:
3368 kfree(net->ipv6.ip6_prohibit_entry);
3369out_ip6_null_entry:
3370 kfree(net->ipv6.ip6_null_entry);
3371#endif
Eric Dumazetfc66f952010-10-08 06:37:34 +00003372out_ip6_dst_entries:
3373 dst_entries_destroy(&net->ipv6.ip6_dst_ops);
Benjamin Theryf2fc6a52008-03-04 13:49:23 -08003374out_ip6_dst_ops:
Benjamin Theryf2fc6a52008-03-04 13:49:23 -08003375 goto out;
Daniel Lezcanocdb18762008-03-04 13:45:33 -08003376}
3377
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00003378static void __net_exit ip6_route_net_exit(struct net *net)
Daniel Lezcanocdb18762008-03-04 13:45:33 -08003379{
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003380 kfree(net->ipv6.ip6_null_entry);
3381#ifdef CONFIG_IPV6_MULTIPLE_TABLES
3382 kfree(net->ipv6.ip6_prohibit_entry);
3383 kfree(net->ipv6.ip6_blk_hole_entry);
3384#endif
Xiaotian Feng41bb78b2010-11-02 16:11:05 +00003385 dst_entries_destroy(&net->ipv6.ip6_dst_ops);
Daniel Lezcanocdb18762008-03-04 13:45:33 -08003386}
3387
Thomas Grafd1896342012-06-18 12:08:33 +00003388static int __net_init ip6_route_net_init_late(struct net *net)
3389{
3390#ifdef CONFIG_PROC_FS
Gao fengd4beaa62013-02-18 01:34:54 +00003391 proc_create("ipv6_route", 0, net->proc_net, &ipv6_route_proc_fops);
3392 proc_create("rt6_stats", S_IRUGO, net->proc_net, &rt6_stats_seq_fops);
Thomas Grafd1896342012-06-18 12:08:33 +00003393#endif
3394 return 0;
3395}
3396
3397static void __net_exit ip6_route_net_exit_late(struct net *net)
3398{
3399#ifdef CONFIG_PROC_FS
Gao fengece31ff2013-02-18 01:34:56 +00003400 remove_proc_entry("ipv6_route", net->proc_net);
3401 remove_proc_entry("rt6_stats", net->proc_net);
Thomas Grafd1896342012-06-18 12:08:33 +00003402#endif
3403}
3404
Daniel Lezcanocdb18762008-03-04 13:45:33 -08003405static struct pernet_operations ip6_route_net_ops = {
3406 .init = ip6_route_net_init,
3407 .exit = ip6_route_net_exit,
3408};
3409
David S. Millerc3426b42012-06-09 16:27:05 -07003410static int __net_init ipv6_inetpeer_init(struct net *net)
3411{
3412 struct inet_peer_base *bp = kmalloc(sizeof(*bp), GFP_KERNEL);
3413
3414 if (!bp)
3415 return -ENOMEM;
3416 inet_peer_base_init(bp);
3417 net->ipv6.peers = bp;
3418 return 0;
3419}
3420
3421static void __net_exit ipv6_inetpeer_exit(struct net *net)
3422{
3423 struct inet_peer_base *bp = net->ipv6.peers;
3424
3425 net->ipv6.peers = NULL;
David S. Miller56a6b242012-06-09 16:32:41 -07003426 inetpeer_invalidate_tree(bp);
David S. Millerc3426b42012-06-09 16:27:05 -07003427 kfree(bp);
3428}
3429
David S. Miller2b823f72012-06-09 19:00:16 -07003430static struct pernet_operations ipv6_inetpeer_ops = {
David S. Millerc3426b42012-06-09 16:27:05 -07003431 .init = ipv6_inetpeer_init,
3432 .exit = ipv6_inetpeer_exit,
3433};
3434
Thomas Grafd1896342012-06-18 12:08:33 +00003435static struct pernet_operations ip6_route_net_late_ops = {
3436 .init = ip6_route_net_init_late,
3437 .exit = ip6_route_net_exit_late,
3438};
3439
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003440static struct notifier_block ip6_route_dev_notifier = {
3441 .notifier_call = ip6_route_dev_notify,
3442 .priority = 0,
3443};
3444
Daniel Lezcano433d49c2007-12-07 00:43:48 -08003445int __init ip6_route_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003446{
Daniel Lezcano433d49c2007-12-07 00:43:48 -08003447 int ret;
Martin KaFai Lau8d0b94a2015-05-22 20:56:04 -07003448 int cpu;
Daniel Lezcano433d49c2007-12-07 00:43:48 -08003449
Daniel Lezcano9a7ec3a2008-03-04 13:48:53 -08003450 ret = -ENOMEM;
3451 ip6_dst_ops_template.kmem_cachep =
3452 kmem_cache_create("ip6_dst_cache", sizeof(struct rt6_info), 0,
3453 SLAB_HWCACHE_ALIGN, NULL);
3454 if (!ip6_dst_ops_template.kmem_cachep)
Fernando Carrijoc19a28e2009-01-07 18:09:08 -08003455 goto out;
David S. Miller14e50e52007-05-24 18:17:54 -07003456
Eric Dumazetfc66f952010-10-08 06:37:34 +00003457 ret = dst_entries_init(&ip6_dst_blackhole_ops);
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003458 if (ret)
Daniel Lezcanobdb32892008-03-04 13:48:10 -08003459 goto out_kmem_cache;
Daniel Lezcanobdb32892008-03-04 13:48:10 -08003460
David S. Millerc3426b42012-06-09 16:27:05 -07003461 ret = register_pernet_subsys(&ipv6_inetpeer_ops);
3462 if (ret)
David S. Millere8803b62012-06-16 01:12:19 -07003463 goto out_dst_entries;
Thomas Graf2a0c4512012-06-14 23:00:17 +00003464
David S. Miller7e52b332012-06-15 15:51:55 -07003465 ret = register_pernet_subsys(&ip6_route_net_ops);
3466 if (ret)
3467 goto out_register_inetpeer;
David S. Millerc3426b42012-06-09 16:27:05 -07003468
Arnaud Ebalard5dc121e2008-10-01 02:37:56 -07003469 ip6_dst_blackhole_ops.kmem_cachep = ip6_dst_ops_template.kmem_cachep;
3470
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003471 /* Registering of the loopback is done before this portion of code,
3472 * the loopback reference in rt6_info will not be taken, do it
3473 * manually for init_net */
Changli Gaod8d1f302010-06-10 23:31:35 -07003474 init_net.ipv6.ip6_null_entry->dst.dev = init_net.loopback_dev;
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003475 init_net.ipv6.ip6_null_entry->rt6i_idev = in6_dev_get(init_net.loopback_dev);
3476 #ifdef CONFIG_IPV6_MULTIPLE_TABLES
Changli Gaod8d1f302010-06-10 23:31:35 -07003477 init_net.ipv6.ip6_prohibit_entry->dst.dev = init_net.loopback_dev;
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003478 init_net.ipv6.ip6_prohibit_entry->rt6i_idev = in6_dev_get(init_net.loopback_dev);
Changli Gaod8d1f302010-06-10 23:31:35 -07003479 init_net.ipv6.ip6_blk_hole_entry->dst.dev = init_net.loopback_dev;
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003480 init_net.ipv6.ip6_blk_hole_entry->rt6i_idev = in6_dev_get(init_net.loopback_dev);
3481 #endif
David S. Millere8803b62012-06-16 01:12:19 -07003482 ret = fib6_init();
Daniel Lezcano433d49c2007-12-07 00:43:48 -08003483 if (ret)
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003484 goto out_register_subsys;
Daniel Lezcano433d49c2007-12-07 00:43:48 -08003485
Daniel Lezcano433d49c2007-12-07 00:43:48 -08003486 ret = xfrm6_init();
3487 if (ret)
David S. Millere8803b62012-06-16 01:12:19 -07003488 goto out_fib6_init;
Daniel Lezcanoc35b7e72007-12-08 00:14:11 -08003489
Daniel Lezcano433d49c2007-12-07 00:43:48 -08003490 ret = fib6_rules_init();
3491 if (ret)
3492 goto xfrm6_init;
Daniel Lezcano7e5449c2007-12-08 00:14:54 -08003493
Thomas Grafd1896342012-06-18 12:08:33 +00003494 ret = register_pernet_subsys(&ip6_route_net_late_ops);
3495 if (ret)
3496 goto fib6_rules_init;
3497
Daniel Lezcano433d49c2007-12-07 00:43:48 -08003498 ret = -ENOBUFS;
Greg Rosec7ac8672011-06-10 01:27:09 +00003499 if (__rtnl_register(PF_INET6, RTM_NEWROUTE, inet6_rtm_newroute, NULL, NULL) ||
3500 __rtnl_register(PF_INET6, RTM_DELROUTE, inet6_rtm_delroute, NULL, NULL) ||
3501 __rtnl_register(PF_INET6, RTM_GETROUTE, inet6_rtm_getroute, NULL, NULL))
Thomas Grafd1896342012-06-18 12:08:33 +00003502 goto out_register_late_subsys;
Daniel Lezcano433d49c2007-12-07 00:43:48 -08003503
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003504 ret = register_netdevice_notifier(&ip6_route_dev_notifier);
Daniel Lezcanocdb18762008-03-04 13:45:33 -08003505 if (ret)
Thomas Grafd1896342012-06-18 12:08:33 +00003506 goto out_register_late_subsys;
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003507
Martin KaFai Lau8d0b94a2015-05-22 20:56:04 -07003508 for_each_possible_cpu(cpu) {
3509 struct uncached_list *ul = per_cpu_ptr(&rt6_uncached_list, cpu);
3510
3511 INIT_LIST_HEAD(&ul->head);
3512 spin_lock_init(&ul->lock);
3513 }
3514
Daniel Lezcano433d49c2007-12-07 00:43:48 -08003515out:
3516 return ret;
3517
Thomas Grafd1896342012-06-18 12:08:33 +00003518out_register_late_subsys:
3519 unregister_pernet_subsys(&ip6_route_net_late_ops);
Daniel Lezcano433d49c2007-12-07 00:43:48 -08003520fib6_rules_init:
Daniel Lezcano433d49c2007-12-07 00:43:48 -08003521 fib6_rules_cleanup();
3522xfrm6_init:
Daniel Lezcano433d49c2007-12-07 00:43:48 -08003523 xfrm6_fini();
Thomas Graf2a0c4512012-06-14 23:00:17 +00003524out_fib6_init:
3525 fib6_gc_cleanup();
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003526out_register_subsys:
3527 unregister_pernet_subsys(&ip6_route_net_ops);
David S. Miller7e52b332012-06-15 15:51:55 -07003528out_register_inetpeer:
3529 unregister_pernet_subsys(&ipv6_inetpeer_ops);
Eric Dumazetfc66f952010-10-08 06:37:34 +00003530out_dst_entries:
3531 dst_entries_destroy(&ip6_dst_blackhole_ops);
Daniel Lezcano433d49c2007-12-07 00:43:48 -08003532out_kmem_cache:
Benjamin Theryf2fc6a52008-03-04 13:49:23 -08003533 kmem_cache_destroy(ip6_dst_ops_template.kmem_cachep);
Daniel Lezcano433d49c2007-12-07 00:43:48 -08003534 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003535}
3536
3537void ip6_route_cleanup(void)
3538{
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003539 unregister_netdevice_notifier(&ip6_route_dev_notifier);
Thomas Grafd1896342012-06-18 12:08:33 +00003540 unregister_pernet_subsys(&ip6_route_net_late_ops);
Thomas Graf101367c2006-08-04 03:39:02 -07003541 fib6_rules_cleanup();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003542 xfrm6_fini();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003543 fib6_gc_cleanup();
David S. Millerc3426b42012-06-09 16:27:05 -07003544 unregister_pernet_subsys(&ipv6_inetpeer_ops);
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003545 unregister_pernet_subsys(&ip6_route_net_ops);
Xiaotian Feng41bb78b2010-11-02 16:11:05 +00003546 dst_entries_destroy(&ip6_dst_blackhole_ops);
Benjamin Theryf2fc6a52008-03-04 13:49:23 -08003547 kmem_cache_destroy(ip6_dst_ops_template.kmem_cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003548}