blob: 3754cf9287a05a9a66497459a899f76185d4283b [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Linux INET6 implementation
3 * FIB front-end.
4 *
5 * Authors:
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09006 * Pedro Roque <roque@di.fc.ul.pt>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License
10 * as published by the Free Software Foundation; either version
11 * 2 of the License, or (at your option) any later version.
12 */
13
14/* Changes:
15 *
16 * YOSHIFUJI Hideaki @USAGI
17 * reworked default router selection.
18 * - respect outgoing interface
19 * - select from (probably) reachable routers (i.e.
20 * routers in REACHABLE, STALE, DELAY or PROBE states).
21 * - always select the same router if it is (probably)
22 * reachable. otherwise, round-robin the list.
YOSHIFUJI Hideakic0bece92006-08-23 17:23:25 -070023 * Ville Nuorvala
24 * Fixed routing subtrees.
Linus Torvalds1da177e2005-04-16 15:20:36 -070025 */
26
Joe Perchesf3213832012-05-15 14:11:53 +000027#define pr_fmt(fmt) "IPv6: " fmt
28
Randy Dunlap4fc268d2006-01-11 12:17:47 -080029#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <linux/errno.h>
Paul Gortmakerbc3b2d72011-07-15 11:47:34 -040031#include <linux/export.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include <linux/types.h>
33#include <linux/times.h>
34#include <linux/socket.h>
35#include <linux/sockios.h>
36#include <linux/net.h>
37#include <linux/route.h>
38#include <linux/netdevice.h>
39#include <linux/in6.h>
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +090040#include <linux/mroute6.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#include <linux/init.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070042#include <linux/if_arp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#include <linux/proc_fs.h>
44#include <linux/seq_file.h>
Daniel Lezcano5b7c9312008-03-03 23:28:58 -080045#include <linux/nsproxy.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090046#include <linux/slab.h>
Eric W. Biederman457c4cb2007-09-12 12:01:34 +020047#include <net/net_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070048#include <net/snmp.h>
49#include <net/ipv6.h>
50#include <net/ip6_fib.h>
51#include <net/ip6_route.h>
52#include <net/ndisc.h>
53#include <net/addrconf.h>
54#include <net/tcp.h>
55#include <linux/rtnetlink.h>
56#include <net/dst.h>
Jiri Benc904af042015-08-20 13:56:31 +020057#include <net/dst_metadata.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070058#include <net/xfrm.h>
Tom Tucker8d717402006-07-30 20:43:36 -070059#include <net/netevent.h>
Thomas Graf21713eb2006-08-15 00:35:24 -070060#include <net/netlink.h>
Nicolas Dichtel51ebd312012-10-22 03:42:09 +000061#include <net/nexthop.h>
Roopa Prabhu19e42e42015-07-21 10:43:48 +020062#include <net/lwtunnel.h>
Jiri Benc904af042015-08-20 13:56:31 +020063#include <net/ip_tunnels.h>
David Ahernca254492015-10-12 11:47:10 -070064#include <net/l3mdev.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070065
66#include <asm/uaccess.h>
67
68#ifdef CONFIG_SYSCTL
69#include <linux/sysctl.h>
70#endif
71
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +020072enum rt6_nud_state {
Jiri Benc7e980562013-12-11 13:48:20 +010073 RT6_NUD_FAIL_HARD = -3,
74 RT6_NUD_FAIL_PROBE = -2,
75 RT6_NUD_FAIL_DO_RR = -1,
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +020076 RT6_NUD_SUCCEED = 1
77};
78
Martin KaFai Lau83a09ab2015-05-22 20:56:05 -070079static void ip6_rt_copy_init(struct rt6_info *rt, struct rt6_info *ort);
Linus Torvalds1da177e2005-04-16 15:20:36 -070080static struct dst_entry *ip6_dst_check(struct dst_entry *dst, u32 cookie);
David S. Miller0dbaee32010-12-13 12:52:14 -080081static unsigned int ip6_default_advmss(const struct dst_entry *dst);
Steffen Klassertebb762f2011-11-23 02:12:51 +000082static unsigned int ip6_mtu(const struct dst_entry *dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -070083static struct dst_entry *ip6_negative_advice(struct dst_entry *);
84static void ip6_dst_destroy(struct dst_entry *);
85static void ip6_dst_ifdown(struct dst_entry *,
86 struct net_device *dev, int how);
Daniel Lezcano569d3642008-01-18 03:56:57 -080087static int ip6_dst_gc(struct dst_ops *ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -070088
89static int ip6_pkt_discard(struct sk_buff *skb);
Eric W. Biedermanede20592015-10-07 16:48:47 -050090static int ip6_pkt_discard_out(struct net *net, struct sock *sk, struct sk_buff *skb);
Kamala R7150aed2013-12-02 19:55:21 +053091static int ip6_pkt_prohibit(struct sk_buff *skb);
Eric W. Biedermanede20592015-10-07 16:48:47 -050092static int ip6_pkt_prohibit_out(struct net *net, struct sock *sk, struct sk_buff *skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -070093static void ip6_link_failure(struct sk_buff *skb);
David S. Miller6700c272012-07-17 03:29:28 -070094static void ip6_rt_update_pmtu(struct dst_entry *dst, struct sock *sk,
95 struct sk_buff *skb, u32 mtu);
96static void rt6_do_redirect(struct dst_entry *dst, struct sock *sk,
97 struct sk_buff *skb);
Martin KaFai Lau4b32b5a2015-04-28 13:03:06 -070098static void rt6_dst_from_metrics_check(struct rt6_info *rt);
Nicolas Dichtel52bd4c02013-06-28 17:35:48 +020099static int rt6_score_route(struct rt6_info *rt, int oif, int strict);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800101#ifdef CONFIG_IPV6_ROUTE_INFO
Daniel Lezcanoefa2cea2008-03-04 13:46:48 -0800102static struct rt6_info *rt6_add_route_info(struct net *net,
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000103 const struct in6_addr *prefix, int prefixlen,
104 const struct in6_addr *gwaddr, int ifindex,
Eric Dumazet95c96172012-04-15 05:58:06 +0000105 unsigned int pref);
Daniel Lezcanoefa2cea2008-03-04 13:46:48 -0800106static struct rt6_info *rt6_get_route_info(struct net *net,
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000107 const struct in6_addr *prefix, int prefixlen,
108 const struct in6_addr *gwaddr, int ifindex);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800109#endif
110
Martin KaFai Lau8d0b94a2015-05-22 20:56:04 -0700111struct uncached_list {
112 spinlock_t lock;
113 struct list_head head;
114};
115
116static DEFINE_PER_CPU_ALIGNED(struct uncached_list, rt6_uncached_list);
117
118static void rt6_uncached_list_add(struct rt6_info *rt)
119{
120 struct uncached_list *ul = raw_cpu_ptr(&rt6_uncached_list);
121
122 rt->dst.flags |= DST_NOCACHE;
123 rt->rt6i_uncached_list = ul;
124
125 spin_lock_bh(&ul->lock);
126 list_add_tail(&rt->rt6i_uncached, &ul->head);
127 spin_unlock_bh(&ul->lock);
128}
129
130static void rt6_uncached_list_del(struct rt6_info *rt)
131{
132 if (!list_empty(&rt->rt6i_uncached)) {
133 struct uncached_list *ul = rt->rt6i_uncached_list;
134
135 spin_lock_bh(&ul->lock);
136 list_del(&rt->rt6i_uncached);
137 spin_unlock_bh(&ul->lock);
138 }
139}
140
141static void rt6_uncached_list_flush_dev(struct net *net, struct net_device *dev)
142{
143 struct net_device *loopback_dev = net->loopback_dev;
144 int cpu;
145
Eric W. Biedermane332bc62015-10-12 11:02:08 -0500146 if (dev == loopback_dev)
147 return;
148
Martin KaFai Lau8d0b94a2015-05-22 20:56:04 -0700149 for_each_possible_cpu(cpu) {
150 struct uncached_list *ul = per_cpu_ptr(&rt6_uncached_list, cpu);
151 struct rt6_info *rt;
152
153 spin_lock_bh(&ul->lock);
154 list_for_each_entry(rt, &ul->head, rt6i_uncached) {
155 struct inet6_dev *rt_idev = rt->rt6i_idev;
156 struct net_device *rt_dev = rt->dst.dev;
157
Eric W. Biedermane332bc62015-10-12 11:02:08 -0500158 if (rt_idev->dev == dev) {
Martin KaFai Lau8d0b94a2015-05-22 20:56:04 -0700159 rt->rt6i_idev = in6_dev_get(loopback_dev);
160 in6_dev_put(rt_idev);
161 }
162
Eric W. Biedermane332bc62015-10-12 11:02:08 -0500163 if (rt_dev == dev) {
Martin KaFai Lau8d0b94a2015-05-22 20:56:04 -0700164 rt->dst.dev = loopback_dev;
165 dev_hold(rt->dst.dev);
166 dev_put(rt_dev);
167 }
168 }
169 spin_unlock_bh(&ul->lock);
170 }
171}
172
Martin KaFai Laud52d3992015-05-22 20:56:06 -0700173static u32 *rt6_pcpu_cow_metrics(struct rt6_info *rt)
174{
175 return dst_metrics_write_ptr(rt->dst.from);
176}
177
David S. Miller06582542011-01-27 14:58:42 -0800178static u32 *ipv6_cow_metrics(struct dst_entry *dst, unsigned long old)
179{
Martin KaFai Lau4b32b5a2015-04-28 13:03:06 -0700180 struct rt6_info *rt = (struct rt6_info *)dst;
David S. Miller06582542011-01-27 14:58:42 -0800181
Martin KaFai Laud52d3992015-05-22 20:56:06 -0700182 if (rt->rt6i_flags & RTF_PCPU)
183 return rt6_pcpu_cow_metrics(rt);
184 else if (rt->rt6i_flags & RTF_CACHE)
Martin KaFai Lau4b32b5a2015-04-28 13:03:06 -0700185 return NULL;
186 else
Martin KaFai Lau3b471172015-02-12 16:14:08 -0800187 return dst_cow_metrics_generic(dst, old);
David S. Miller06582542011-01-27 14:58:42 -0800188}
189
David S. Millerf894cbf2012-07-02 21:52:24 -0700190static inline const void *choose_neigh_daddr(struct rt6_info *rt,
191 struct sk_buff *skb,
192 const void *daddr)
David S. Miller39232972012-01-26 15:22:32 -0500193{
194 struct in6_addr *p = &rt->rt6i_gateway;
195
David S. Millera7563f32012-01-26 16:29:16 -0500196 if (!ipv6_addr_any(p))
David S. Miller39232972012-01-26 15:22:32 -0500197 return (const void *) p;
David S. Millerf894cbf2012-07-02 21:52:24 -0700198 else if (skb)
199 return &ipv6_hdr(skb)->daddr;
David S. Miller39232972012-01-26 15:22:32 -0500200 return daddr;
201}
202
David S. Millerf894cbf2012-07-02 21:52:24 -0700203static struct neighbour *ip6_neigh_lookup(const struct dst_entry *dst,
204 struct sk_buff *skb,
205 const void *daddr)
David S. Millerd3aaeb32011-07-18 00:40:17 -0700206{
David S. Miller39232972012-01-26 15:22:32 -0500207 struct rt6_info *rt = (struct rt6_info *) dst;
208 struct neighbour *n;
209
David S. Millerf894cbf2012-07-02 21:52:24 -0700210 daddr = choose_neigh_daddr(rt, skb, daddr);
YOSHIFUJI Hideaki / 吉藤英明8e022ee2013-01-17 12:53:09 +0000211 n = __ipv6_neigh_lookup(dst->dev, daddr);
David S. Millerf83c7792011-12-28 15:41:23 -0500212 if (n)
213 return n;
214 return neigh_create(&nd_tbl, daddr, dst->dev);
215}
216
Daniel Lezcano9a7ec3a2008-03-04 13:48:53 -0800217static struct dst_ops ip6_dst_ops_template = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 .family = AF_INET6,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 .gc = ip6_dst_gc,
220 .gc_thresh = 1024,
221 .check = ip6_dst_check,
David S. Miller0dbaee32010-12-13 12:52:14 -0800222 .default_advmss = ip6_default_advmss,
Steffen Klassertebb762f2011-11-23 02:12:51 +0000223 .mtu = ip6_mtu,
David S. Miller06582542011-01-27 14:58:42 -0800224 .cow_metrics = ipv6_cow_metrics,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 .destroy = ip6_dst_destroy,
226 .ifdown = ip6_dst_ifdown,
227 .negative_advice = ip6_negative_advice,
228 .link_failure = ip6_link_failure,
229 .update_pmtu = ip6_rt_update_pmtu,
David S. Miller6e157b62012-07-12 00:05:02 -0700230 .redirect = rt6_do_redirect,
Eric W. Biederman9f8955c2015-10-07 16:48:39 -0500231 .local_out = __ip6_local_out,
David S. Millerd3aaeb32011-07-18 00:40:17 -0700232 .neigh_lookup = ip6_neigh_lookup,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233};
234
Steffen Klassertebb762f2011-11-23 02:12:51 +0000235static unsigned int ip6_blackhole_mtu(const struct dst_entry *dst)
Roland Dreierec831ea2011-01-31 13:16:00 -0800236{
Steffen Klassert618f9bc2011-11-23 02:13:31 +0000237 unsigned int mtu = dst_metric_raw(dst, RTAX_MTU);
238
239 return mtu ? : dst->dev->mtu;
Roland Dreierec831ea2011-01-31 13:16:00 -0800240}
241
David S. Miller6700c272012-07-17 03:29:28 -0700242static void ip6_rt_blackhole_update_pmtu(struct dst_entry *dst, struct sock *sk,
243 struct sk_buff *skb, u32 mtu)
David S. Miller14e50e52007-05-24 18:17:54 -0700244{
245}
246
David S. Miller6700c272012-07-17 03:29:28 -0700247static void ip6_rt_blackhole_redirect(struct dst_entry *dst, struct sock *sk,
248 struct sk_buff *skb)
David S. Millerb587ee32012-07-12 00:39:24 -0700249{
250}
251
David S. Miller14e50e52007-05-24 18:17:54 -0700252static struct dst_ops ip6_dst_blackhole_ops = {
253 .family = AF_INET6,
David S. Miller14e50e52007-05-24 18:17:54 -0700254 .destroy = ip6_dst_destroy,
255 .check = ip6_dst_check,
Steffen Klassertebb762f2011-11-23 02:12:51 +0000256 .mtu = ip6_blackhole_mtu,
Eric Dumazet214f45c2011-02-18 11:39:01 -0800257 .default_advmss = ip6_default_advmss,
David S. Miller14e50e52007-05-24 18:17:54 -0700258 .update_pmtu = ip6_rt_blackhole_update_pmtu,
David S. Millerb587ee32012-07-12 00:39:24 -0700259 .redirect = ip6_rt_blackhole_redirect,
Martin KaFai Lau0a1f5962015-10-15 16:39:58 -0700260 .cow_metrics = dst_cow_metrics_generic,
David S. Millerd3aaeb32011-07-18 00:40:17 -0700261 .neigh_lookup = ip6_neigh_lookup,
David S. Miller14e50e52007-05-24 18:17:54 -0700262};
263
David S. Miller62fa8a82011-01-26 20:51:05 -0800264static const u32 ip6_template_metrics[RTAX_MAX] = {
Li RongQing14edd872012-10-24 14:01:18 +0800265 [RTAX_HOPLIMIT - 1] = 0,
David S. Miller62fa8a82011-01-26 20:51:05 -0800266};
267
Eric Dumazetfb0af4c2012-09-11 21:47:51 +0000268static const struct rt6_info ip6_null_entry_template = {
Changli Gaod8d1f302010-06-10 23:31:35 -0700269 .dst = {
270 .__refcnt = ATOMIC_INIT(1),
271 .__use = 1,
Nicolas Dichtel2c20cbd2012-09-10 22:09:47 +0000272 .obsolete = DST_OBSOLETE_FORCE_CHK,
Changli Gaod8d1f302010-06-10 23:31:35 -0700273 .error = -ENETUNREACH,
Changli Gaod8d1f302010-06-10 23:31:35 -0700274 .input = ip6_pkt_discard,
275 .output = ip6_pkt_discard_out,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 },
277 .rt6i_flags = (RTF_REJECT | RTF_NONEXTHOP),
Jean-Mickael Guerin4f724272009-05-20 17:38:59 -0700278 .rt6i_protocol = RTPROT_KERNEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 .rt6i_metric = ~(u32) 0,
280 .rt6i_ref = ATOMIC_INIT(1),
281};
282
Thomas Graf101367c2006-08-04 03:39:02 -0700283#ifdef CONFIG_IPV6_MULTIPLE_TABLES
284
Eric Dumazetfb0af4c2012-09-11 21:47:51 +0000285static const struct rt6_info ip6_prohibit_entry_template = {
Changli Gaod8d1f302010-06-10 23:31:35 -0700286 .dst = {
287 .__refcnt = ATOMIC_INIT(1),
288 .__use = 1,
Nicolas Dichtel2c20cbd2012-09-10 22:09:47 +0000289 .obsolete = DST_OBSOLETE_FORCE_CHK,
Changli Gaod8d1f302010-06-10 23:31:35 -0700290 .error = -EACCES,
Changli Gaod8d1f302010-06-10 23:31:35 -0700291 .input = ip6_pkt_prohibit,
292 .output = ip6_pkt_prohibit_out,
Thomas Graf101367c2006-08-04 03:39:02 -0700293 },
294 .rt6i_flags = (RTF_REJECT | RTF_NONEXTHOP),
Jean-Mickael Guerin4f724272009-05-20 17:38:59 -0700295 .rt6i_protocol = RTPROT_KERNEL,
Thomas Graf101367c2006-08-04 03:39:02 -0700296 .rt6i_metric = ~(u32) 0,
297 .rt6i_ref = ATOMIC_INIT(1),
298};
299
Eric Dumazetfb0af4c2012-09-11 21:47:51 +0000300static const struct rt6_info ip6_blk_hole_entry_template = {
Changli Gaod8d1f302010-06-10 23:31:35 -0700301 .dst = {
302 .__refcnt = ATOMIC_INIT(1),
303 .__use = 1,
Nicolas Dichtel2c20cbd2012-09-10 22:09:47 +0000304 .obsolete = DST_OBSOLETE_FORCE_CHK,
Changli Gaod8d1f302010-06-10 23:31:35 -0700305 .error = -EINVAL,
Changli Gaod8d1f302010-06-10 23:31:35 -0700306 .input = dst_discard,
Eric W. Biedermanede20592015-10-07 16:48:47 -0500307 .output = dst_discard_out,
Thomas Graf101367c2006-08-04 03:39:02 -0700308 },
309 .rt6i_flags = (RTF_REJECT | RTF_NONEXTHOP),
Jean-Mickael Guerin4f724272009-05-20 17:38:59 -0700310 .rt6i_protocol = RTPROT_KERNEL,
Thomas Graf101367c2006-08-04 03:39:02 -0700311 .rt6i_metric = ~(u32) 0,
312 .rt6i_ref = ATOMIC_INIT(1),
313};
314
315#endif
316
Martin KaFai Lauebfa45f2015-10-15 16:39:57 -0700317static void rt6_info_init(struct rt6_info *rt)
318{
319 struct dst_entry *dst = &rt->dst;
320
321 memset(dst + 1, 0, sizeof(*rt) - sizeof(*dst));
322 INIT_LIST_HEAD(&rt->rt6i_siblings);
323 INIT_LIST_HEAD(&rt->rt6i_uncached);
324}
325
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326/* allocate dst with ip6_dst_ops */
Martin KaFai Laud52d3992015-05-22 20:56:06 -0700327static struct rt6_info *__ip6_dst_alloc(struct net *net,
328 struct net_device *dev,
Martin KaFai Lauad706862015-08-14 11:05:52 -0700329 int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330{
David S. Miller97bab732012-06-09 22:36:36 -0700331 struct rt6_info *rt = dst_alloc(&net->ipv6.ip6_dst_ops, dev,
Nicolas Dichtel6f3118b2012-09-10 22:09:46 +0000332 0, DST_OBSOLETE_FORCE_CHK, flags);
David S. Millercf911662011-04-28 14:31:47 -0700333
Martin KaFai Lauebfa45f2015-10-15 16:39:57 -0700334 if (rt)
335 rt6_info_init(rt);
Steffen Klassert81048912012-07-05 23:37:09 +0000336
David S. Millercf911662011-04-28 14:31:47 -0700337 return rt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338}
339
Martin KaFai Laud52d3992015-05-22 20:56:06 -0700340static struct rt6_info *ip6_dst_alloc(struct net *net,
341 struct net_device *dev,
Martin KaFai Lauad706862015-08-14 11:05:52 -0700342 int flags)
Martin KaFai Laud52d3992015-05-22 20:56:06 -0700343{
Martin KaFai Lauad706862015-08-14 11:05:52 -0700344 struct rt6_info *rt = __ip6_dst_alloc(net, dev, flags);
Martin KaFai Laud52d3992015-05-22 20:56:06 -0700345
346 if (rt) {
347 rt->rt6i_pcpu = alloc_percpu_gfp(struct rt6_info *, GFP_ATOMIC);
348 if (rt->rt6i_pcpu) {
349 int cpu;
350
351 for_each_possible_cpu(cpu) {
352 struct rt6_info **p;
353
354 p = per_cpu_ptr(rt->rt6i_pcpu, cpu);
355 /* no one shares rt */
356 *p = NULL;
357 }
358 } else {
359 dst_destroy((struct dst_entry *)rt);
360 return NULL;
361 }
362 }
363
364 return rt;
365}
366
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367static void ip6_dst_destroy(struct dst_entry *dst)
368{
369 struct rt6_info *rt = (struct rt6_info *)dst;
YOSHIFUJI Hideaki / 吉藤英明ecd98832013-02-20 00:29:08 +0000370 struct dst_entry *from = dst->from;
Martin KaFai Lau8d0b94a2015-05-22 20:56:04 -0700371 struct inet6_dev *idev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372
Martin KaFai Lau4b32b5a2015-04-28 13:03:06 -0700373 dst_destroy_metrics_generic(dst);
Markus Elfring87775312015-07-02 16:30:24 +0200374 free_percpu(rt->rt6i_pcpu);
Martin KaFai Lau8d0b94a2015-05-22 20:56:04 -0700375 rt6_uncached_list_del(rt);
376
377 idev = rt->rt6i_idev;
David S. Miller38308472011-12-03 18:02:47 -0500378 if (idev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 rt->rt6i_idev = NULL;
380 in6_dev_put(idev);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900381 }
Gao feng1716a962012-04-06 00:13:10 +0000382
YOSHIFUJI Hideaki / 吉藤英明ecd98832013-02-20 00:29:08 +0000383 dst->from = NULL;
384 dst_release(from);
David S. Millerb3419362010-11-30 12:27:11 -0800385}
386
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387static void ip6_dst_ifdown(struct dst_entry *dst, struct net_device *dev,
388 int how)
389{
390 struct rt6_info *rt = (struct rt6_info *)dst;
391 struct inet6_dev *idev = rt->rt6i_idev;
Denis V. Lunev5a3e55d2007-12-07 00:38:10 -0800392 struct net_device *loopback_dev =
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900393 dev_net(dev)->loopback_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394
David S. Miller97cac082012-07-02 22:43:47 -0700395 if (dev != loopback_dev) {
396 if (idev && idev->dev == dev) {
397 struct inet6_dev *loopback_idev =
398 in6_dev_get(loopback_dev);
399 if (loopback_idev) {
400 rt->rt6i_idev = loopback_idev;
401 in6_dev_put(idev);
402 }
403 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 }
405}
406
Martin KaFai Lau5973fb12015-11-11 11:51:07 -0800407static bool __rt6_check_expired(const struct rt6_info *rt)
408{
409 if (rt->rt6i_flags & RTF_EXPIRES)
410 return time_after(jiffies, rt->dst.expires);
411 else
412 return false;
413}
414
Eric Dumazeta50feda2012-05-18 18:57:34 +0000415static bool rt6_check_expired(const struct rt6_info *rt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416{
Gao feng1716a962012-04-06 00:13:10 +0000417 if (rt->rt6i_flags & RTF_EXPIRES) {
418 if (time_after(jiffies, rt->dst.expires))
Eric Dumazeta50feda2012-05-18 18:57:34 +0000419 return true;
Gao feng1716a962012-04-06 00:13:10 +0000420 } else if (rt->dst.from) {
Li RongQing3fd91fb2012-09-13 19:54:57 +0000421 return rt6_check_expired((struct rt6_info *) rt->dst.from);
Gao feng1716a962012-04-06 00:13:10 +0000422 }
Eric Dumazeta50feda2012-05-18 18:57:34 +0000423 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424}
425
Nicolas Dichtel51ebd312012-10-22 03:42:09 +0000426/* Multipath route selection:
427 * Hash based function using packet header and flowlabel.
428 * Adapted from fib_info_hashfn()
429 */
430static int rt6_info_hash_nhsfn(unsigned int candidate_count,
431 const struct flowi6 *fl6)
432{
Tom Herbert644d0e62015-09-23 14:13:35 -0700433 return get_hash_from_flowi6(fl6) % candidate_count;
Nicolas Dichtel51ebd312012-10-22 03:42:09 +0000434}
435
436static struct rt6_info *rt6_multipath_select(struct rt6_info *match,
Nicolas Dichtel52bd4c02013-06-28 17:35:48 +0200437 struct flowi6 *fl6, int oif,
438 int strict)
Nicolas Dichtel51ebd312012-10-22 03:42:09 +0000439{
440 struct rt6_info *sibling, *next_sibling;
441 int route_choosen;
442
443 route_choosen = rt6_info_hash_nhsfn(match->rt6i_nsiblings + 1, fl6);
444 /* Don't change the route, if route_choosen == 0
445 * (siblings does not include ourself)
446 */
447 if (route_choosen)
448 list_for_each_entry_safe(sibling, next_sibling,
449 &match->rt6i_siblings, rt6i_siblings) {
450 route_choosen--;
451 if (route_choosen == 0) {
Nicolas Dichtel52bd4c02013-06-28 17:35:48 +0200452 if (rt6_score_route(sibling, oif, strict) < 0)
453 break;
Nicolas Dichtel51ebd312012-10-22 03:42:09 +0000454 match = sibling;
455 break;
456 }
457 }
458 return match;
459}
460
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461/*
Thomas Grafc71099a2006-08-04 23:20:06 -0700462 * Route lookup. Any table->tb6_lock is implied.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 */
464
Daniel Lezcano8ed67782008-03-04 13:48:30 -0800465static inline struct rt6_info *rt6_device_match(struct net *net,
466 struct rt6_info *rt,
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000467 const struct in6_addr *saddr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 int oif,
YOSHIFUJI Hideakid4208952008-06-27 20:14:54 -0700469 int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470{
471 struct rt6_info *local = NULL;
472 struct rt6_info *sprt;
473
YOSHIFUJI Hideakidd3abc42008-07-02 18:30:18 +0900474 if (!oif && ipv6_addr_any(saddr))
475 goto out;
476
Changli Gaod8d1f302010-06-10 23:31:35 -0700477 for (sprt = rt; sprt; sprt = sprt->dst.rt6_next) {
David S. Millerd1918542011-12-28 20:19:20 -0500478 struct net_device *dev = sprt->dst.dev;
YOSHIFUJI Hideakidd3abc42008-07-02 18:30:18 +0900479
480 if (oif) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 if (dev->ifindex == oif)
482 return sprt;
483 if (dev->flags & IFF_LOOPBACK) {
David S. Miller38308472011-12-03 18:02:47 -0500484 if (!sprt->rt6i_idev ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 sprt->rt6i_idev->dev->ifindex != oif) {
David Ahern17fb0b22015-09-25 15:22:54 -0600486 if (flags & RT6_LOOKUP_F_IFACE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 continue;
David Ahern17fb0b22015-09-25 15:22:54 -0600488 if (local &&
489 local->rt6i_idev->dev->ifindex == oif)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 continue;
491 }
492 local = sprt;
493 }
YOSHIFUJI Hideakidd3abc42008-07-02 18:30:18 +0900494 } else {
495 if (ipv6_chk_addr(net, saddr, dev,
496 flags & RT6_LOOKUP_F_IFACE))
497 return sprt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 }
YOSHIFUJI Hideakidd3abc42008-07-02 18:30:18 +0900499 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500
YOSHIFUJI Hideakidd3abc42008-07-02 18:30:18 +0900501 if (oif) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 if (local)
503 return local;
504
YOSHIFUJI Hideakid4208952008-06-27 20:14:54 -0700505 if (flags & RT6_LOOKUP_F_IFACE)
Daniel Lezcano8ed67782008-03-04 13:48:30 -0800506 return net->ipv6.ip6_null_entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 }
YOSHIFUJI Hideakidd3abc42008-07-02 18:30:18 +0900508out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 return rt;
510}
511
YOSHIFUJI Hideaki27097252006-03-20 17:05:13 -0800512#ifdef CONFIG_IPV6_ROUTER_PREF
Hannes Frederic Sowac2f17e82013-10-21 06:17:15 +0200513struct __rt6_probe_work {
514 struct work_struct work;
515 struct in6_addr target;
516 struct net_device *dev;
517};
518
519static void rt6_probe_deferred(struct work_struct *w)
520{
521 struct in6_addr mcaddr;
522 struct __rt6_probe_work *work =
523 container_of(w, struct __rt6_probe_work, work);
524
525 addrconf_addr_solict_mult(&work->target, &mcaddr);
Jiri Benc38cf5952015-09-22 18:57:13 +0200526 ndisc_send_ns(work->dev, &work->target, &mcaddr, NULL, NULL);
Hannes Frederic Sowac2f17e82013-10-21 06:17:15 +0200527 dev_put(work->dev);
Michael Büsch662f5532015-02-08 10:14:07 +0100528 kfree(work);
Hannes Frederic Sowac2f17e82013-10-21 06:17:15 +0200529}
530
YOSHIFUJI Hideaki27097252006-03-20 17:05:13 -0800531static void rt6_probe(struct rt6_info *rt)
532{
Martin KaFai Lau990edb42015-07-24 09:57:42 -0700533 struct __rt6_probe_work *work;
Eric Dumazetf2c31e32011-07-29 19:00:53 +0000534 struct neighbour *neigh;
YOSHIFUJI Hideaki27097252006-03-20 17:05:13 -0800535 /*
536 * Okay, this does not seem to be appropriate
537 * for now, however, we need to check if it
538 * is really so; aka Router Reachability Probing.
539 *
540 * Router Reachability Probe MUST be rate-limited
541 * to no more than one per minute.
542 */
YOSHIFUJI Hideaki / 吉藤英明2152cae2013-01-17 12:53:43 +0000543 if (!rt || !(rt->rt6i_flags & RTF_GATEWAY))
Amerigo Wangfdd66812012-09-10 02:48:44 +0000544 return;
YOSHIFUJI Hideaki / 吉藤英明2152cae2013-01-17 12:53:43 +0000545 rcu_read_lock_bh();
546 neigh = __ipv6_neigh_lookup_noref(rt->dst.dev, &rt->rt6i_gateway);
547 if (neigh) {
Martin KaFai Lau8d6c31b2015-07-24 09:57:43 -0700548 if (neigh->nud_state & NUD_VALID)
549 goto out;
550
Martin KaFai Lau990edb42015-07-24 09:57:42 -0700551 work = NULL;
YOSHIFUJI Hideaki / 吉藤英明2152cae2013-01-17 12:53:43 +0000552 write_lock(&neigh->lock);
Martin KaFai Lau990edb42015-07-24 09:57:42 -0700553 if (!(neigh->nud_state & NUD_VALID) &&
554 time_after(jiffies,
555 neigh->updated +
556 rt->rt6i_idev->cnf.rtr_probe_interval)) {
557 work = kmalloc(sizeof(*work), GFP_ATOMIC);
558 if (work)
559 __neigh_set_probe_once(neigh);
Hannes Frederic Sowac2f17e82013-10-21 06:17:15 +0200560 }
YOSHIFUJI Hideaki / 吉藤英明2152cae2013-01-17 12:53:43 +0000561 write_unlock(&neigh->lock);
Martin KaFai Lau990edb42015-07-24 09:57:42 -0700562 } else {
563 work = kmalloc(sizeof(*work), GFP_ATOMIC);
Eric Dumazetf2c31e32011-07-29 19:00:53 +0000564 }
Martin KaFai Lau990edb42015-07-24 09:57:42 -0700565
566 if (work) {
567 INIT_WORK(&work->work, rt6_probe_deferred);
568 work->target = rt->rt6i_gateway;
569 dev_hold(rt->dst.dev);
570 work->dev = rt->dst.dev;
571 schedule_work(&work->work);
572 }
573
Martin KaFai Lau8d6c31b2015-07-24 09:57:43 -0700574out:
YOSHIFUJI Hideaki / 吉藤英明2152cae2013-01-17 12:53:43 +0000575 rcu_read_unlock_bh();
YOSHIFUJI Hideaki27097252006-03-20 17:05:13 -0800576}
577#else
578static inline void rt6_probe(struct rt6_info *rt)
579{
YOSHIFUJI Hideaki27097252006-03-20 17:05:13 -0800580}
581#endif
582
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583/*
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800584 * Default Router Selection (RFC 2461 6.3.6)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 */
Dave Jonesb6f99a22007-03-22 12:27:49 -0700586static inline int rt6_check_dev(struct rt6_info *rt, int oif)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587{
David S. Millerd1918542011-12-28 20:19:20 -0500588 struct net_device *dev = rt->dst.dev;
David S. Miller161980f2007-04-06 11:42:27 -0700589 if (!oif || dev->ifindex == oif)
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800590 return 2;
David S. Miller161980f2007-04-06 11:42:27 -0700591 if ((dev->flags & IFF_LOOPBACK) &&
592 rt->rt6i_idev && rt->rt6i_idev->dev->ifindex == oif)
593 return 1;
594 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595}
596
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200597static inline enum rt6_nud_state rt6_check_neigh(struct rt6_info *rt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598{
Eric Dumazetf2c31e32011-07-29 19:00:53 +0000599 struct neighbour *neigh;
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200600 enum rt6_nud_state ret = RT6_NUD_FAIL_HARD;
Eric Dumazetf2c31e32011-07-29 19:00:53 +0000601
YOSHIFUJI Hideaki4d0c5912006-05-26 13:23:41 -0700602 if (rt->rt6i_flags & RTF_NONEXTHOP ||
603 !(rt->rt6i_flags & RTF_GATEWAY))
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200604 return RT6_NUD_SUCCEED;
YOSHIFUJI Hideaki / 吉藤英明145a3622013-01-17 12:53:38 +0000605
606 rcu_read_lock_bh();
607 neigh = __ipv6_neigh_lookup_noref(rt->dst.dev, &rt->rt6i_gateway);
608 if (neigh) {
609 read_lock(&neigh->lock);
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800610 if (neigh->nud_state & NUD_VALID)
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200611 ret = RT6_NUD_SUCCEED;
YOSHIFUJI Hideaki398bcbe2008-01-19 00:35:16 -0800612#ifdef CONFIG_IPV6_ROUTER_PREF
Paul Marksa5a81f02012-12-03 10:26:54 +0000613 else if (!(neigh->nud_state & NUD_FAILED))
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200614 ret = RT6_NUD_SUCCEED;
Jiri Benc7e980562013-12-11 13:48:20 +0100615 else
616 ret = RT6_NUD_FAIL_PROBE;
YOSHIFUJI Hideaki398bcbe2008-01-19 00:35:16 -0800617#endif
YOSHIFUJI Hideaki / 吉藤英明145a3622013-01-17 12:53:38 +0000618 read_unlock(&neigh->lock);
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200619 } else {
620 ret = IS_ENABLED(CONFIG_IPV6_ROUTER_PREF) ?
Jiri Benc7e980562013-12-11 13:48:20 +0100621 RT6_NUD_SUCCEED : RT6_NUD_FAIL_DO_RR;
Paul Marksa5a81f02012-12-03 10:26:54 +0000622 }
YOSHIFUJI Hideaki / 吉藤英明145a3622013-01-17 12:53:38 +0000623 rcu_read_unlock_bh();
624
Paul Marksa5a81f02012-12-03 10:26:54 +0000625 return ret;
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800626}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800628static int rt6_score_route(struct rt6_info *rt, int oif,
629 int strict)
630{
Paul Marksa5a81f02012-12-03 10:26:54 +0000631 int m;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900632
YOSHIFUJI Hideaki4d0c5912006-05-26 13:23:41 -0700633 m = rt6_check_dev(rt, oif);
YOSHIFUJI Hideaki77d16f42006-08-23 17:25:05 -0700634 if (!m && (strict & RT6_LOOKUP_F_IFACE))
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200635 return RT6_NUD_FAIL_HARD;
YOSHIFUJI Hideakiebacaaa2006-03-20 17:04:53 -0800636#ifdef CONFIG_IPV6_ROUTER_PREF
637 m |= IPV6_DECODE_PREF(IPV6_EXTRACT_PREF(rt->rt6i_flags)) << 2;
638#endif
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200639 if (strict & RT6_LOOKUP_F_REACHABLE) {
640 int n = rt6_check_neigh(rt);
641 if (n < 0)
642 return n;
643 }
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800644 return m;
645}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646
David S. Millerf11e6652007-03-24 20:36:25 -0700647static struct rt6_info *find_match(struct rt6_info *rt, int oif, int strict,
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200648 int *mpri, struct rt6_info *match,
649 bool *do_rr)
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800650{
David S. Millerf11e6652007-03-24 20:36:25 -0700651 int m;
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200652 bool match_do_rr = false;
Andy Gospodarek35103d12015-08-13 10:39:01 -0400653 struct inet6_dev *idev = rt->rt6i_idev;
654 struct net_device *dev = rt->dst.dev;
655
656 if (dev && !netif_carrier_ok(dev) &&
657 idev->cnf.ignore_routes_with_linkdown)
658 goto out;
David S. Millerf11e6652007-03-24 20:36:25 -0700659
660 if (rt6_check_expired(rt))
661 goto out;
662
663 m = rt6_score_route(rt, oif, strict);
Jiri Benc7e980562013-12-11 13:48:20 +0100664 if (m == RT6_NUD_FAIL_DO_RR) {
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200665 match_do_rr = true;
666 m = 0; /* lowest valid score */
Jiri Benc7e980562013-12-11 13:48:20 +0100667 } else if (m == RT6_NUD_FAIL_HARD) {
David S. Millerf11e6652007-03-24 20:36:25 -0700668 goto out;
David S. Millerf11e6652007-03-24 20:36:25 -0700669 }
670
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200671 if (strict & RT6_LOOKUP_F_REACHABLE)
672 rt6_probe(rt);
673
Jiri Benc7e980562013-12-11 13:48:20 +0100674 /* note that m can be RT6_NUD_FAIL_PROBE at this point */
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200675 if (m > *mpri) {
676 *do_rr = match_do_rr;
677 *mpri = m;
678 match = rt;
679 }
David S. Millerf11e6652007-03-24 20:36:25 -0700680out:
681 return match;
682}
683
684static struct rt6_info *find_rr_leaf(struct fib6_node *fn,
685 struct rt6_info *rr_head,
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200686 u32 metric, int oif, int strict,
687 bool *do_rr)
David S. Millerf11e6652007-03-24 20:36:25 -0700688{
Steffen Klassert9fbdcfa2015-04-28 13:03:04 -0700689 struct rt6_info *rt, *match, *cont;
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800690 int mpri = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691
David S. Millerf11e6652007-03-24 20:36:25 -0700692 match = NULL;
Steffen Klassert9fbdcfa2015-04-28 13:03:04 -0700693 cont = NULL;
694 for (rt = rr_head; rt; rt = rt->dst.rt6_next) {
695 if (rt->rt6i_metric != metric) {
696 cont = rt;
697 break;
698 }
699
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200700 match = find_match(rt, oif, strict, &mpri, match, do_rr);
Steffen Klassert9fbdcfa2015-04-28 13:03:04 -0700701 }
702
703 for (rt = fn->leaf; rt && rt != rr_head; rt = rt->dst.rt6_next) {
704 if (rt->rt6i_metric != metric) {
705 cont = rt;
706 break;
707 }
708
709 match = find_match(rt, oif, strict, &mpri, match, do_rr);
710 }
711
712 if (match || !cont)
713 return match;
714
715 for (rt = cont; rt; rt = rt->dst.rt6_next)
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200716 match = find_match(rt, oif, strict, &mpri, match, do_rr);
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800717
David S. Millerf11e6652007-03-24 20:36:25 -0700718 return match;
719}
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800720
David S. Millerf11e6652007-03-24 20:36:25 -0700721static struct rt6_info *rt6_select(struct fib6_node *fn, int oif, int strict)
722{
723 struct rt6_info *match, *rt0;
Daniel Lezcano8ed67782008-03-04 13:48:30 -0800724 struct net *net;
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200725 bool do_rr = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726
David S. Millerf11e6652007-03-24 20:36:25 -0700727 rt0 = fn->rr_ptr;
728 if (!rt0)
729 fn->rr_ptr = rt0 = fn->leaf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200731 match = find_rr_leaf(fn, rt0, rt0->rt6i_metric, oif, strict,
732 &do_rr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200734 if (do_rr) {
Changli Gaod8d1f302010-06-10 23:31:35 -0700735 struct rt6_info *next = rt0->dst.rt6_next;
David S. Millerf11e6652007-03-24 20:36:25 -0700736
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800737 /* no entries matched; do round-robin */
David S. Millerf11e6652007-03-24 20:36:25 -0700738 if (!next || next->rt6i_metric != rt0->rt6i_metric)
739 next = fn->leaf;
740
741 if (next != rt0)
742 fn->rr_ptr = next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 }
744
David S. Millerd1918542011-12-28 20:19:20 -0500745 net = dev_net(rt0->dst.dev);
Eric Dumazeta02cec22010-09-22 20:43:57 +0000746 return match ? match : net->ipv6.ip6_null_entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747}
748
Martin KaFai Lau8b9df262015-05-22 20:55:59 -0700749static bool rt6_is_gw_or_nonexthop(const struct rt6_info *rt)
750{
751 return (rt->rt6i_flags & (RTF_NONEXTHOP | RTF_GATEWAY));
752}
753
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800754#ifdef CONFIG_IPV6_ROUTE_INFO
755int rt6_route_rcv(struct net_device *dev, u8 *opt, int len,
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000756 const struct in6_addr *gwaddr)
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800757{
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900758 struct net *net = dev_net(dev);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800759 struct route_info *rinfo = (struct route_info *) opt;
760 struct in6_addr prefix_buf, *prefix;
761 unsigned int pref;
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +0900762 unsigned long lifetime;
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800763 struct rt6_info *rt;
764
765 if (len < sizeof(struct route_info)) {
766 return -EINVAL;
767 }
768
769 /* Sanity check for prefix_len and length */
770 if (rinfo->length > 3) {
771 return -EINVAL;
772 } else if (rinfo->prefix_len > 128) {
773 return -EINVAL;
774 } else if (rinfo->prefix_len > 64) {
775 if (rinfo->length < 2) {
776 return -EINVAL;
777 }
778 } else if (rinfo->prefix_len > 0) {
779 if (rinfo->length < 1) {
780 return -EINVAL;
781 }
782 }
783
784 pref = rinfo->route_pref;
785 if (pref == ICMPV6_ROUTER_PREF_INVALID)
Jens Rosenboom3933fc92009-09-10 06:25:11 +0000786 return -EINVAL;
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800787
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +0900788 lifetime = addrconf_timeout_fixup(ntohl(rinfo->lifetime), HZ);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800789
790 if (rinfo->length == 3)
791 prefix = (struct in6_addr *)rinfo->prefix;
792 else {
793 /* this function is safe */
794 ipv6_addr_prefix(&prefix_buf,
795 (struct in6_addr *)rinfo->prefix,
796 rinfo->prefix_len);
797 prefix = &prefix_buf;
798 }
799
Duan Jiongf104a562013-11-08 09:56:53 +0800800 if (rinfo->prefix_len == 0)
801 rt = rt6_get_dflt_router(gwaddr, dev);
802 else
803 rt = rt6_get_route_info(net, prefix, rinfo->prefix_len,
804 gwaddr, dev->ifindex);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800805
806 if (rt && !lifetime) {
Thomas Grafe0a1ad732006-08-22 00:00:21 -0700807 ip6_del_rt(rt);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800808 rt = NULL;
809 }
810
811 if (!rt && lifetime)
Daniel Lezcanoefa2cea2008-03-04 13:46:48 -0800812 rt = rt6_add_route_info(net, prefix, rinfo->prefix_len, gwaddr, dev->ifindex,
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800813 pref);
814 else if (rt)
815 rt->rt6i_flags = RTF_ROUTEINFO |
816 (rt->rt6i_flags & ~RTF_PREF_MASK) | RTF_PREF(pref);
817
818 if (rt) {
Gao feng1716a962012-04-06 00:13:10 +0000819 if (!addrconf_finite_timeout(lifetime))
820 rt6_clean_expires(rt);
821 else
822 rt6_set_expires(rt, jiffies + HZ * lifetime);
823
Amerigo Wang94e187c2012-10-29 00:13:19 +0000824 ip6_rt_put(rt);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800825 }
826 return 0;
827}
828#endif
829
Martin KaFai Laua3c00e42014-10-20 13:42:43 -0700830static struct fib6_node* fib6_backtrack(struct fib6_node *fn,
831 struct in6_addr *saddr)
832{
833 struct fib6_node *pn;
834 while (1) {
835 if (fn->fn_flags & RTN_TL_ROOT)
836 return NULL;
837 pn = fn->parent;
838 if (FIB6_SUBTREE(pn) && FIB6_SUBTREE(pn) != fn)
839 fn = fib6_lookup(FIB6_SUBTREE(pn), NULL, saddr);
840 else
841 fn = pn;
842 if (fn->fn_flags & RTN_RTINFO)
843 return fn;
844 }
845}
Thomas Grafc71099a2006-08-04 23:20:06 -0700846
Daniel Lezcano8ed67782008-03-04 13:48:30 -0800847static struct rt6_info *ip6_pol_route_lookup(struct net *net,
848 struct fib6_table *table,
David S. Miller4c9483b2011-03-12 16:22:43 -0500849 struct flowi6 *fl6, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850{
851 struct fib6_node *fn;
852 struct rt6_info *rt;
853
Thomas Grafc71099a2006-08-04 23:20:06 -0700854 read_lock_bh(&table->tb6_lock);
David S. Miller4c9483b2011-03-12 16:22:43 -0500855 fn = fib6_lookup(&table->tb6_root, &fl6->daddr, &fl6->saddr);
Thomas Grafc71099a2006-08-04 23:20:06 -0700856restart:
857 rt = fn->leaf;
David S. Miller4c9483b2011-03-12 16:22:43 -0500858 rt = rt6_device_match(net, rt, &fl6->saddr, fl6->flowi6_oif, flags);
Nicolas Dichtel51ebd312012-10-22 03:42:09 +0000859 if (rt->rt6i_nsiblings && fl6->flowi6_oif == 0)
Nicolas Dichtel52bd4c02013-06-28 17:35:48 +0200860 rt = rt6_multipath_select(rt, fl6, fl6->flowi6_oif, flags);
Martin KaFai Laua3c00e42014-10-20 13:42:43 -0700861 if (rt == net->ipv6.ip6_null_entry) {
862 fn = fib6_backtrack(fn, &fl6->saddr);
863 if (fn)
864 goto restart;
865 }
Changli Gaod8d1f302010-06-10 23:31:35 -0700866 dst_use(&rt->dst, jiffies);
Thomas Grafc71099a2006-08-04 23:20:06 -0700867 read_unlock_bh(&table->tb6_lock);
Thomas Grafc71099a2006-08-04 23:20:06 -0700868 return rt;
869
870}
871
Ian Morris67ba4152014-08-24 21:53:10 +0100872struct dst_entry *ip6_route_lookup(struct net *net, struct flowi6 *fl6,
Florian Westphalea6e5742011-09-05 16:05:44 +0200873 int flags)
874{
875 return fib6_rule_lookup(net, fl6, flags, ip6_pol_route_lookup);
876}
877EXPORT_SYMBOL_GPL(ip6_route_lookup);
878
YOSHIFUJI Hideaki9acd9f32008-04-10 15:42:10 +0900879struct rt6_info *rt6_lookup(struct net *net, const struct in6_addr *daddr,
880 const struct in6_addr *saddr, int oif, int strict)
Thomas Grafc71099a2006-08-04 23:20:06 -0700881{
David S. Miller4c9483b2011-03-12 16:22:43 -0500882 struct flowi6 fl6 = {
883 .flowi6_oif = oif,
884 .daddr = *daddr,
Thomas Grafc71099a2006-08-04 23:20:06 -0700885 };
886 struct dst_entry *dst;
YOSHIFUJI Hideaki77d16f42006-08-23 17:25:05 -0700887 int flags = strict ? RT6_LOOKUP_F_IFACE : 0;
Thomas Grafc71099a2006-08-04 23:20:06 -0700888
Thomas Grafadaa70b2006-10-13 15:01:03 -0700889 if (saddr) {
David S. Miller4c9483b2011-03-12 16:22:43 -0500890 memcpy(&fl6.saddr, saddr, sizeof(*saddr));
Thomas Grafadaa70b2006-10-13 15:01:03 -0700891 flags |= RT6_LOOKUP_F_HAS_SADDR;
892 }
893
David S. Miller4c9483b2011-03-12 16:22:43 -0500894 dst = fib6_rule_lookup(net, &fl6, flags, ip6_pol_route_lookup);
Thomas Grafc71099a2006-08-04 23:20:06 -0700895 if (dst->error == 0)
896 return (struct rt6_info *) dst;
897
898 dst_release(dst);
899
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 return NULL;
901}
YOSHIFUJI Hideaki71590392007-02-22 22:05:40 +0900902EXPORT_SYMBOL(rt6_lookup);
903
Thomas Grafc71099a2006-08-04 23:20:06 -0700904/* ip6_ins_rt is called with FREE table->tb6_lock.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905 It takes new route entry, the addition fails by any reason the
906 route is freed. In any case, if caller does not hold it, it may
907 be destroyed.
908 */
909
Michal Kubečeke5fd3872014-03-27 13:04:08 +0100910static int __ip6_ins_rt(struct rt6_info *rt, struct nl_info *info,
Florian Westphale715b6d2015-01-05 23:57:44 +0100911 struct mx6_config *mxc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912{
913 int err;
Thomas Grafc71099a2006-08-04 23:20:06 -0700914 struct fib6_table *table;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915
Thomas Grafc71099a2006-08-04 23:20:06 -0700916 table = rt->rt6i_table;
917 write_lock_bh(&table->tb6_lock);
Florian Westphale715b6d2015-01-05 23:57:44 +0100918 err = fib6_add(&table->tb6_root, rt, info, mxc);
Thomas Grafc71099a2006-08-04 23:20:06 -0700919 write_unlock_bh(&table->tb6_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920
921 return err;
922}
923
Thomas Graf40e22e82006-08-22 00:00:45 -0700924int ip6_ins_rt(struct rt6_info *rt)
925{
Florian Westphale715b6d2015-01-05 23:57:44 +0100926 struct nl_info info = { .nl_net = dev_net(rt->dst.dev), };
927 struct mx6_config mxc = { .mx = NULL, };
928
929 return __ip6_ins_rt(rt, &info, &mxc);
Thomas Graf40e22e82006-08-22 00:00:45 -0700930}
931
Martin KaFai Lau8b9df262015-05-22 20:55:59 -0700932static struct rt6_info *ip6_rt_cache_alloc(struct rt6_info *ort,
933 const struct in6_addr *daddr,
934 const struct in6_addr *saddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 struct rt6_info *rt;
937
938 /*
939 * Clone the route.
940 */
941
Martin KaFai Laud52d3992015-05-22 20:56:06 -0700942 if (ort->rt6i_flags & (RTF_CACHE | RTF_PCPU))
Martin KaFai Lau83a09ab2015-05-22 20:56:05 -0700943 ort = (struct rt6_info *)ort->dst.from;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944
Martin KaFai Lauad706862015-08-14 11:05:52 -0700945 rt = __ip6_dst_alloc(dev_net(ort->dst.dev), ort->dst.dev, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946
Martin KaFai Lau83a09ab2015-05-22 20:56:05 -0700947 if (!rt)
948 return NULL;
949
950 ip6_rt_copy_init(rt, ort);
951 rt->rt6i_flags |= RTF_CACHE;
952 rt->rt6i_metric = 0;
953 rt->dst.flags |= DST_HOST;
954 rt->rt6i_dst.addr = *daddr;
955 rt->rt6i_dst.plen = 128;
956
957 if (!rt6_is_gw_or_nonexthop(ort)) {
958 if (ort->rt6i_dst.plen != 128 &&
959 ipv6_addr_equal(&ort->rt6i_dst.addr, daddr))
960 rt->rt6i_flags |= RTF_ANYCAST;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961#ifdef CONFIG_IPV6_SUBTREES
Martin KaFai Lau83a09ab2015-05-22 20:56:05 -0700962 if (rt->rt6i_src.plen && saddr) {
963 rt->rt6i_src.addr = *saddr;
964 rt->rt6i_src.plen = 128;
Martin KaFai Lau8b9df262015-05-22 20:55:59 -0700965 }
Martin KaFai Lau83a09ab2015-05-22 20:56:05 -0700966#endif
YOSHIFUJI Hideaki95a9a5b2006-03-20 16:55:51 -0800967 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968
YOSHIFUJI Hideaki95a9a5b2006-03-20 16:55:51 -0800969 return rt;
970}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971
Martin KaFai Laud52d3992015-05-22 20:56:06 -0700972static struct rt6_info *ip6_rt_pcpu_alloc(struct rt6_info *rt)
973{
974 struct rt6_info *pcpu_rt;
975
976 pcpu_rt = __ip6_dst_alloc(dev_net(rt->dst.dev),
Martin KaFai Lauad706862015-08-14 11:05:52 -0700977 rt->dst.dev, rt->dst.flags);
Martin KaFai Laud52d3992015-05-22 20:56:06 -0700978
979 if (!pcpu_rt)
980 return NULL;
981 ip6_rt_copy_init(pcpu_rt, rt);
982 pcpu_rt->rt6i_protocol = rt->rt6i_protocol;
983 pcpu_rt->rt6i_flags |= RTF_PCPU;
984 return pcpu_rt;
985}
986
987/* It should be called with read_lock_bh(&tb6_lock) acquired */
988static struct rt6_info *rt6_get_pcpu_route(struct rt6_info *rt)
989{
Martin KaFai Laua73e4192015-08-14 11:05:53 -0700990 struct rt6_info *pcpu_rt, **p;
Martin KaFai Laud52d3992015-05-22 20:56:06 -0700991
992 p = this_cpu_ptr(rt->rt6i_pcpu);
993 pcpu_rt = *p;
994
Martin KaFai Laua73e4192015-08-14 11:05:53 -0700995 if (pcpu_rt) {
996 dst_hold(&pcpu_rt->dst);
997 rt6_dst_from_metrics_check(pcpu_rt);
998 }
999 return pcpu_rt;
1000}
1001
1002static struct rt6_info *rt6_make_pcpu_route(struct rt6_info *rt)
1003{
Martin KaFai Lau9c7370a2015-08-14 11:05:54 -07001004 struct fib6_table *table = rt->rt6i_table;
Martin KaFai Laua73e4192015-08-14 11:05:53 -07001005 struct rt6_info *pcpu_rt, *prev, **p;
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001006
1007 pcpu_rt = ip6_rt_pcpu_alloc(rt);
1008 if (!pcpu_rt) {
1009 struct net *net = dev_net(rt->dst.dev);
1010
Martin KaFai Lau9c7370a2015-08-14 11:05:54 -07001011 dst_hold(&net->ipv6.ip6_null_entry->dst);
1012 return net->ipv6.ip6_null_entry;
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001013 }
1014
Martin KaFai Lau9c7370a2015-08-14 11:05:54 -07001015 read_lock_bh(&table->tb6_lock);
1016 if (rt->rt6i_pcpu) {
1017 p = this_cpu_ptr(rt->rt6i_pcpu);
1018 prev = cmpxchg(p, NULL, pcpu_rt);
1019 if (prev) {
1020 /* If someone did it before us, return prev instead */
1021 dst_destroy(&pcpu_rt->dst);
1022 pcpu_rt = prev;
1023 }
1024 } else {
1025 /* rt has been removed from the fib6 tree
1026 * before we have a chance to acquire the read_lock.
1027 * In this case, don't brother to create a pcpu rt
1028 * since rt is going away anyway. The next
1029 * dst_check() will trigger a re-lookup.
1030 */
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001031 dst_destroy(&pcpu_rt->dst);
Martin KaFai Lau9c7370a2015-08-14 11:05:54 -07001032 pcpu_rt = rt;
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001033 }
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001034 dst_hold(&pcpu_rt->dst);
1035 rt6_dst_from_metrics_check(pcpu_rt);
Martin KaFai Lau9c7370a2015-08-14 11:05:54 -07001036 read_unlock_bh(&table->tb6_lock);
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001037 return pcpu_rt;
1038}
1039
Daniel Lezcano8ed67782008-03-04 13:48:30 -08001040static struct rt6_info *ip6_pol_route(struct net *net, struct fib6_table *table, int oif,
David S. Miller4c9483b2011-03-12 16:22:43 -05001041 struct flowi6 *fl6, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042{
Martin KaFai Lau367efcb2014-10-20 13:42:45 -07001043 struct fib6_node *fn, *saved_fn;
Martin KaFai Lau45e4fd22015-05-22 20:56:00 -07001044 struct rt6_info *rt;
Thomas Grafc71099a2006-08-04 23:20:06 -07001045 int strict = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046
YOSHIFUJI Hideaki77d16f42006-08-23 17:25:05 -07001047 strict |= flags & RT6_LOOKUP_F_IFACE;
Martin KaFai Lau367efcb2014-10-20 13:42:45 -07001048 if (net->ipv6.devconf_all->forwarding == 0)
1049 strict |= RT6_LOOKUP_F_REACHABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050
Thomas Grafc71099a2006-08-04 23:20:06 -07001051 read_lock_bh(&table->tb6_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052
David S. Miller4c9483b2011-03-12 16:22:43 -05001053 fn = fib6_lookup(&table->tb6_root, &fl6->daddr, &fl6->saddr);
Martin KaFai Lau367efcb2014-10-20 13:42:45 -07001054 saved_fn = fn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055
David Ahernca254492015-10-12 11:47:10 -07001056 if (fl6->flowi6_flags & FLOWI_FLAG_SKIP_NH_OIF)
1057 oif = 0;
1058
Martin KaFai Laua3c00e42014-10-20 13:42:43 -07001059redo_rt6_select:
Martin KaFai Lau367efcb2014-10-20 13:42:45 -07001060 rt = rt6_select(fn, oif, strict);
Nicolas Dichtel52bd4c02013-06-28 17:35:48 +02001061 if (rt->rt6i_nsiblings)
Martin KaFai Lau367efcb2014-10-20 13:42:45 -07001062 rt = rt6_multipath_select(rt, fl6, oif, strict);
Martin KaFai Laua3c00e42014-10-20 13:42:43 -07001063 if (rt == net->ipv6.ip6_null_entry) {
1064 fn = fib6_backtrack(fn, &fl6->saddr);
1065 if (fn)
1066 goto redo_rt6_select;
Martin KaFai Lau367efcb2014-10-20 13:42:45 -07001067 else if (strict & RT6_LOOKUP_F_REACHABLE) {
1068 /* also consider unreachable route */
1069 strict &= ~RT6_LOOKUP_F_REACHABLE;
1070 fn = saved_fn;
1071 goto redo_rt6_select;
Martin KaFai Lau367efcb2014-10-20 13:42:45 -07001072 }
Martin KaFai Laua3c00e42014-10-20 13:42:43 -07001073 }
1074
YOSHIFUJI Hideakifb9de912006-03-20 16:59:08 -08001075
Martin KaFai Lau3da59bd2015-05-22 20:56:03 -07001076 if (rt == net->ipv6.ip6_null_entry || (rt->rt6i_flags & RTF_CACHE)) {
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001077 dst_use(&rt->dst, jiffies);
1078 read_unlock_bh(&table->tb6_lock);
1079
1080 rt6_dst_from_metrics_check(rt);
1081 return rt;
Martin KaFai Lau3da59bd2015-05-22 20:56:03 -07001082 } else if (unlikely((fl6->flowi6_flags & FLOWI_FLAG_KNOWN_NH) &&
1083 !(rt->rt6i_flags & RTF_GATEWAY))) {
1084 /* Create a RTF_CACHE clone which will not be
1085 * owned by the fib6 tree. It is for the special case where
1086 * the daddr in the skb during the neighbor look-up is different
1087 * from the fl6->daddr used to look-up route here.
1088 */
Thomas Grafc71099a2006-08-04 23:20:06 -07001089
Martin KaFai Lau3da59bd2015-05-22 20:56:03 -07001090 struct rt6_info *uncached_rt;
1091
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001092 dst_use(&rt->dst, jiffies);
1093 read_unlock_bh(&table->tb6_lock);
1094
Martin KaFai Lau3da59bd2015-05-22 20:56:03 -07001095 uncached_rt = ip6_rt_cache_alloc(rt, &fl6->daddr, NULL);
1096 dst_release(&rt->dst);
1097
1098 if (uncached_rt)
Martin KaFai Lau8d0b94a2015-05-22 20:56:04 -07001099 rt6_uncached_list_add(uncached_rt);
Martin KaFai Lau3da59bd2015-05-22 20:56:03 -07001100 else
1101 uncached_rt = net->ipv6.ip6_null_entry;
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001102
Martin KaFai Lau3da59bd2015-05-22 20:56:03 -07001103 dst_hold(&uncached_rt->dst);
1104 return uncached_rt;
Martin KaFai Lau3da59bd2015-05-22 20:56:03 -07001105
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001106 } else {
1107 /* Get a percpu copy */
1108
1109 struct rt6_info *pcpu_rt;
1110
1111 rt->dst.lastuse = jiffies;
1112 rt->dst.__use++;
1113 pcpu_rt = rt6_get_pcpu_route(rt);
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001114
Martin KaFai Lau9c7370a2015-08-14 11:05:54 -07001115 if (pcpu_rt) {
1116 read_unlock_bh(&table->tb6_lock);
1117 } else {
1118 /* We have to do the read_unlock first
1119 * because rt6_make_pcpu_route() may trigger
1120 * ip6_dst_gc() which will take the write_lock.
1121 */
1122 dst_hold(&rt->dst);
1123 read_unlock_bh(&table->tb6_lock);
Martin KaFai Laua73e4192015-08-14 11:05:53 -07001124 pcpu_rt = rt6_make_pcpu_route(rt);
Martin KaFai Lau9c7370a2015-08-14 11:05:54 -07001125 dst_release(&rt->dst);
1126 }
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001127
1128 return pcpu_rt;
Martin KaFai Lau9c7370a2015-08-14 11:05:54 -07001129
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001130 }
Thomas Grafc71099a2006-08-04 23:20:06 -07001131}
1132
Daniel Lezcano8ed67782008-03-04 13:48:30 -08001133static struct rt6_info *ip6_pol_route_input(struct net *net, struct fib6_table *table,
David S. Miller4c9483b2011-03-12 16:22:43 -05001134 struct flowi6 *fl6, int flags)
Pavel Emelyanov4acad722007-10-15 13:02:51 -07001135{
David S. Miller4c9483b2011-03-12 16:22:43 -05001136 return ip6_pol_route(net, table, fl6->flowi6_iif, fl6, flags);
Pavel Emelyanov4acad722007-10-15 13:02:51 -07001137}
1138
Shmulik Ladkani72331bc2012-04-01 04:03:45 +00001139static struct dst_entry *ip6_route_input_lookup(struct net *net,
1140 struct net_device *dev,
1141 struct flowi6 *fl6, int flags)
1142{
1143 if (rt6_need_strict(&fl6->daddr) && dev->type != ARPHRD_PIMREG)
1144 flags |= RT6_LOOKUP_F_IFACE;
1145
1146 return fib6_rule_lookup(net, fl6, flags, ip6_pol_route_input);
1147}
1148
Thomas Grafc71099a2006-08-04 23:20:06 -07001149void ip6_route_input(struct sk_buff *skb)
1150{
Eric Dumazetb71d1d42011-04-22 04:53:02 +00001151 const struct ipv6hdr *iph = ipv6_hdr(skb);
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001152 struct net *net = dev_net(skb->dev);
Thomas Grafadaa70b2006-10-13 15:01:03 -07001153 int flags = RT6_LOOKUP_F_HAS_SADDR;
Jiri Benc904af042015-08-20 13:56:31 +02001154 struct ip_tunnel_info *tun_info;
David S. Miller4c9483b2011-03-12 16:22:43 -05001155 struct flowi6 fl6 = {
David Ahernca254492015-10-12 11:47:10 -07001156 .flowi6_iif = l3mdev_fib_oif(skb->dev),
David S. Miller4c9483b2011-03-12 16:22:43 -05001157 .daddr = iph->daddr,
1158 .saddr = iph->saddr,
YOSHIFUJI Hideaki / 吉藤英明6502ca52013-01-13 05:01:51 +00001159 .flowlabel = ip6_flowinfo(iph),
David S. Miller4c9483b2011-03-12 16:22:43 -05001160 .flowi6_mark = skb->mark,
1161 .flowi6_proto = iph->nexthdr,
Thomas Grafc71099a2006-08-04 23:20:06 -07001162 };
Thomas Grafadaa70b2006-10-13 15:01:03 -07001163
Jiri Benc904af042015-08-20 13:56:31 +02001164 tun_info = skb_tunnel_info(skb);
Jiri Benc46fa0622015-08-28 20:48:19 +02001165 if (tun_info && !(tun_info->mode & IP_TUNNEL_INFO_TX))
Jiri Benc904af042015-08-20 13:56:31 +02001166 fl6.flowi6_tun_key.tun_id = tun_info->key.tun_id;
Jiri Benc06e9d042015-08-20 13:56:26 +02001167 skb_dst_drop(skb);
Shmulik Ladkani72331bc2012-04-01 04:03:45 +00001168 skb_dst_set(skb, ip6_route_input_lookup(net, skb->dev, &fl6, flags));
Thomas Grafc71099a2006-08-04 23:20:06 -07001169}
1170
Daniel Lezcano8ed67782008-03-04 13:48:30 -08001171static struct rt6_info *ip6_pol_route_output(struct net *net, struct fib6_table *table,
David S. Miller4c9483b2011-03-12 16:22:43 -05001172 struct flowi6 *fl6, int flags)
Thomas Grafc71099a2006-08-04 23:20:06 -07001173{
David S. Miller4c9483b2011-03-12 16:22:43 -05001174 return ip6_pol_route(net, table, fl6->flowi6_oif, fl6, flags);
Thomas Grafc71099a2006-08-04 23:20:06 -07001175}
1176
Ian Morris67ba4152014-08-24 21:53:10 +01001177struct dst_entry *ip6_route_output(struct net *net, const struct sock *sk,
David S. Miller4c9483b2011-03-12 16:22:43 -05001178 struct flowi6 *fl6)
Thomas Grafc71099a2006-08-04 23:20:06 -07001179{
David Ahernca254492015-10-12 11:47:10 -07001180 struct dst_entry *dst;
Thomas Grafc71099a2006-08-04 23:20:06 -07001181 int flags = 0;
David Ahernd46a9d62015-10-21 08:42:22 -07001182 bool any_src;
Thomas Grafc71099a2006-08-04 23:20:06 -07001183
David Ahernca254492015-10-12 11:47:10 -07001184 dst = l3mdev_rt6_dst_by_oif(net, fl6);
1185 if (dst)
1186 return dst;
1187
Pavel Emelyanov1fb94892012-08-08 21:53:36 +00001188 fl6->flowi6_iif = LOOPBACK_IFINDEX;
David McCullough4dc27d1c2012-06-25 15:42:26 +00001189
David Ahernd46a9d62015-10-21 08:42:22 -07001190 any_src = ipv6_addr_any(&fl6->saddr);
David Ahern741a11d2015-09-28 10:12:13 -07001191 if ((sk && sk->sk_bound_dev_if) || rt6_need_strict(&fl6->daddr) ||
David Ahernd46a9d62015-10-21 08:42:22 -07001192 (fl6->flowi6_oif && any_src))
YOSHIFUJI Hideaki77d16f42006-08-23 17:25:05 -07001193 flags |= RT6_LOOKUP_F_IFACE;
Thomas Grafc71099a2006-08-04 23:20:06 -07001194
David Ahernd46a9d62015-10-21 08:42:22 -07001195 if (!any_src)
Thomas Grafadaa70b2006-10-13 15:01:03 -07001196 flags |= RT6_LOOKUP_F_HAS_SADDR;
YOSHIFUJI Hideaki / 吉藤英明0c9a2ac2010-03-07 00:14:44 +00001197 else if (sk)
1198 flags |= rt6_srcprefs2flags(inet6_sk(sk)->srcprefs);
Thomas Grafadaa70b2006-10-13 15:01:03 -07001199
David S. Miller4c9483b2011-03-12 16:22:43 -05001200 return fib6_rule_lookup(net, fl6, flags, ip6_pol_route_output);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201}
YOSHIFUJI Hideaki71590392007-02-22 22:05:40 +09001202EXPORT_SYMBOL(ip6_route_output);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203
David S. Miller2774c132011-03-01 14:59:04 -08001204struct dst_entry *ip6_blackhole_route(struct net *net, struct dst_entry *dst_orig)
David S. Miller14e50e52007-05-24 18:17:54 -07001205{
David S. Miller5c1e6aa2011-04-28 14:13:38 -07001206 struct rt6_info *rt, *ort = (struct rt6_info *) dst_orig;
David S. Miller14e50e52007-05-24 18:17:54 -07001207 struct dst_entry *new = NULL;
1208
David S. Millerf5b0a872012-07-19 12:31:33 -07001209 rt = dst_alloc(&ip6_dst_blackhole_ops, ort->dst.dev, 1, DST_OBSOLETE_NONE, 0);
David S. Miller14e50e52007-05-24 18:17:54 -07001210 if (rt) {
Martin KaFai Lau0a1f5962015-10-15 16:39:58 -07001211 rt6_info_init(rt);
1212
Changli Gaod8d1f302010-06-10 23:31:35 -07001213 new = &rt->dst;
David S. Miller14e50e52007-05-24 18:17:54 -07001214 new->__use = 1;
Herbert Xu352e5122007-11-13 21:34:06 -08001215 new->input = dst_discard;
Eric W. Biedermanede20592015-10-07 16:48:47 -05001216 new->output = dst_discard_out;
David S. Miller14e50e52007-05-24 18:17:54 -07001217
Martin KaFai Lau0a1f5962015-10-15 16:39:58 -07001218 dst_copy_metrics(new, &ort->dst);
David S. Miller14e50e52007-05-24 18:17:54 -07001219 rt->rt6i_idev = ort->rt6i_idev;
1220 if (rt->rt6i_idev)
1221 in6_dev_hold(rt->rt6i_idev);
David S. Miller14e50e52007-05-24 18:17:54 -07001222
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001223 rt->rt6i_gateway = ort->rt6i_gateway;
Martin KaFai Lau0a1f5962015-10-15 16:39:58 -07001224 rt->rt6i_flags = ort->rt6i_flags & ~RTF_PCPU;
David S. Miller14e50e52007-05-24 18:17:54 -07001225 rt->rt6i_metric = 0;
1226
1227 memcpy(&rt->rt6i_dst, &ort->rt6i_dst, sizeof(struct rt6key));
1228#ifdef CONFIG_IPV6_SUBTREES
1229 memcpy(&rt->rt6i_src, &ort->rt6i_src, sizeof(struct rt6key));
1230#endif
1231
1232 dst_free(new);
1233 }
1234
David S. Miller69ead7a2011-03-01 14:45:33 -08001235 dst_release(dst_orig);
1236 return new ? new : ERR_PTR(-ENOMEM);
David S. Miller14e50e52007-05-24 18:17:54 -07001237}
David S. Miller14e50e52007-05-24 18:17:54 -07001238
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239/*
1240 * Destination cache support functions
1241 */
1242
Martin KaFai Lau4b32b5a2015-04-28 13:03:06 -07001243static void rt6_dst_from_metrics_check(struct rt6_info *rt)
1244{
1245 if (rt->dst.from &&
1246 dst_metrics_ptr(&rt->dst) != dst_metrics_ptr(rt->dst.from))
1247 dst_init_metrics(&rt->dst, dst_metrics_ptr(rt->dst.from), true);
1248}
1249
Martin KaFai Lau3da59bd2015-05-22 20:56:03 -07001250static struct dst_entry *rt6_check(struct rt6_info *rt, u32 cookie)
1251{
1252 if (!rt->rt6i_node || (rt->rt6i_node->fn_sernum != cookie))
1253 return NULL;
1254
1255 if (rt6_check_expired(rt))
1256 return NULL;
1257
1258 return &rt->dst;
1259}
1260
1261static struct dst_entry *rt6_dst_from_check(struct rt6_info *rt, u32 cookie)
1262{
Martin KaFai Lau5973fb12015-11-11 11:51:07 -08001263 if (!__rt6_check_expired(rt) &&
1264 rt->dst.obsolete == DST_OBSOLETE_FORCE_CHK &&
Martin KaFai Lau3da59bd2015-05-22 20:56:03 -07001265 rt6_check((struct rt6_info *)(rt->dst.from), cookie))
1266 return &rt->dst;
1267 else
1268 return NULL;
1269}
1270
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271static struct dst_entry *ip6_dst_check(struct dst_entry *dst, u32 cookie)
1272{
1273 struct rt6_info *rt;
1274
1275 rt = (struct rt6_info *) dst;
1276
Nicolas Dichtel6f3118b2012-09-10 22:09:46 +00001277 /* All IPV6 dsts are created with ->obsolete set to the value
1278 * DST_OBSOLETE_FORCE_CHK which forces validation calls down
1279 * into this function always.
1280 */
Hannes Frederic Sowae3bc10b2013-10-24 07:48:24 +02001281
Martin KaFai Lau4b32b5a2015-04-28 13:03:06 -07001282 rt6_dst_from_metrics_check(rt);
1283
Martin KaFai Laud52d3992015-05-22 20:56:06 -07001284 if ((rt->rt6i_flags & RTF_PCPU) || unlikely(dst->flags & DST_NOCACHE))
Martin KaFai Lau3da59bd2015-05-22 20:56:03 -07001285 return rt6_dst_from_check(rt, cookie);
1286 else
1287 return rt6_check(rt, cookie);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288}
1289
1290static struct dst_entry *ip6_negative_advice(struct dst_entry *dst)
1291{
1292 struct rt6_info *rt = (struct rt6_info *) dst;
1293
1294 if (rt) {
YOSHIFUJI Hideaki / 吉藤英明54c1a852010-03-28 07:15:45 +00001295 if (rt->rt6i_flags & RTF_CACHE) {
1296 if (rt6_check_expired(rt)) {
1297 ip6_del_rt(rt);
1298 dst = NULL;
1299 }
1300 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301 dst_release(dst);
YOSHIFUJI Hideaki / 吉藤英明54c1a852010-03-28 07:15:45 +00001302 dst = NULL;
1303 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304 }
YOSHIFUJI Hideaki / 吉藤英明54c1a852010-03-28 07:15:45 +00001305 return dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306}
1307
1308static void ip6_link_failure(struct sk_buff *skb)
1309{
1310 struct rt6_info *rt;
1311
Alexey Dobriyan3ffe5332010-02-18 08:25:24 +00001312 icmpv6_send(skb, ICMPV6_DEST_UNREACH, ICMPV6_ADDR_UNREACH, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313
Eric Dumazetadf30902009-06-02 05:19:30 +00001314 rt = (struct rt6_info *) skb_dst(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315 if (rt) {
Hannes Frederic Sowa1eb4f752013-07-10 23:00:57 +02001316 if (rt->rt6i_flags & RTF_CACHE) {
1317 dst_hold(&rt->dst);
Martin KaFai Lau8e3d5be2015-09-15 14:30:08 -07001318 ip6_del_rt(rt);
Hannes Frederic Sowa1eb4f752013-07-10 23:00:57 +02001319 } else if (rt->rt6i_node && (rt->rt6i_flags & RTF_DEFAULT)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320 rt->rt6i_node->fn_sernum = -1;
Hannes Frederic Sowa1eb4f752013-07-10 23:00:57 +02001321 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322 }
1323}
1324
Martin KaFai Lau45e4fd22015-05-22 20:56:00 -07001325static void rt6_do_update_pmtu(struct rt6_info *rt, u32 mtu)
1326{
1327 struct net *net = dev_net(rt->dst.dev);
1328
1329 rt->rt6i_flags |= RTF_MODIFIED;
1330 rt->rt6i_pmtu = mtu;
1331 rt6_update_expires(rt, net->ipv6.sysctl.ip6_rt_mtu_expires);
1332}
1333
Martin KaFai Lau0d3f6d22015-11-11 11:51:06 -08001334static bool rt6_cache_allowed_for_pmtu(const struct rt6_info *rt)
1335{
1336 return !(rt->rt6i_flags & RTF_CACHE) &&
1337 (rt->rt6i_flags & RTF_PCPU || rt->rt6i_node);
1338}
1339
Martin KaFai Lau45e4fd22015-05-22 20:56:00 -07001340static void __ip6_rt_update_pmtu(struct dst_entry *dst, const struct sock *sk,
1341 const struct ipv6hdr *iph, u32 mtu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342{
Ian Morris67ba4152014-08-24 21:53:10 +01001343 struct rt6_info *rt6 = (struct rt6_info *)dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344
Martin KaFai Lau45e4fd22015-05-22 20:56:00 -07001345 if (rt6->rt6i_flags & RTF_LOCAL)
1346 return;
1347
David S. Miller81aded22012-06-15 14:54:11 -07001348 dst_confirm(dst);
Martin KaFai Lau45e4fd22015-05-22 20:56:00 -07001349 mtu = max_t(u32, mtu, IPV6_MIN_MTU);
1350 if (mtu >= dst_mtu(dst))
1351 return;
David S. Miller81aded22012-06-15 14:54:11 -07001352
Martin KaFai Lau0d3f6d22015-11-11 11:51:06 -08001353 if (!rt6_cache_allowed_for_pmtu(rt6)) {
Martin KaFai Lau45e4fd22015-05-22 20:56:00 -07001354 rt6_do_update_pmtu(rt6, mtu);
1355 } else {
1356 const struct in6_addr *daddr, *saddr;
1357 struct rt6_info *nrt6;
Hagen Paul Pfeifer9d289712015-01-15 22:34:25 +01001358
Martin KaFai Lau45e4fd22015-05-22 20:56:00 -07001359 if (iph) {
1360 daddr = &iph->daddr;
1361 saddr = &iph->saddr;
1362 } else if (sk) {
1363 daddr = &sk->sk_v6_daddr;
1364 saddr = &inet6_sk(sk)->saddr;
1365 } else {
1366 return;
1367 }
1368 nrt6 = ip6_rt_cache_alloc(rt6, daddr, saddr);
1369 if (nrt6) {
1370 rt6_do_update_pmtu(nrt6, mtu);
1371
1372 /* ip6_ins_rt(nrt6) will bump the
1373 * rt6->rt6i_node->fn_sernum
1374 * which will fail the next rt6_check() and
1375 * invalidate the sk->sk_dst_cache.
1376 */
1377 ip6_ins_rt(nrt6);
1378 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379 }
1380}
1381
Martin KaFai Lau45e4fd22015-05-22 20:56:00 -07001382static void ip6_rt_update_pmtu(struct dst_entry *dst, struct sock *sk,
1383 struct sk_buff *skb, u32 mtu)
1384{
1385 __ip6_rt_update_pmtu(dst, sk, skb ? ipv6_hdr(skb) : NULL, mtu);
1386}
1387
David S. Miller42ae66c2012-06-15 20:01:57 -07001388void ip6_update_pmtu(struct sk_buff *skb, struct net *net, __be32 mtu,
1389 int oif, u32 mark)
David S. Miller81aded22012-06-15 14:54:11 -07001390{
1391 const struct ipv6hdr *iph = (struct ipv6hdr *) skb->data;
1392 struct dst_entry *dst;
1393 struct flowi6 fl6;
1394
1395 memset(&fl6, 0, sizeof(fl6));
1396 fl6.flowi6_oif = oif;
Lorenzo Colitti1b3c61d2014-05-13 10:17:34 -07001397 fl6.flowi6_mark = mark ? mark : IP6_REPLY_MARK(net, skb->mark);
David S. Miller81aded22012-06-15 14:54:11 -07001398 fl6.daddr = iph->daddr;
1399 fl6.saddr = iph->saddr;
YOSHIFUJI Hideaki / 吉藤英明6502ca52013-01-13 05:01:51 +00001400 fl6.flowlabel = ip6_flowinfo(iph);
David S. Miller81aded22012-06-15 14:54:11 -07001401
1402 dst = ip6_route_output(net, NULL, &fl6);
1403 if (!dst->error)
Martin KaFai Lau45e4fd22015-05-22 20:56:00 -07001404 __ip6_rt_update_pmtu(dst, NULL, iph, ntohl(mtu));
David S. Miller81aded22012-06-15 14:54:11 -07001405 dst_release(dst);
1406}
1407EXPORT_SYMBOL_GPL(ip6_update_pmtu);
1408
1409void ip6_sk_update_pmtu(struct sk_buff *skb, struct sock *sk, __be32 mtu)
1410{
1411 ip6_update_pmtu(skb, sock_net(sk), mtu,
1412 sk->sk_bound_dev_if, sk->sk_mark);
1413}
1414EXPORT_SYMBOL_GPL(ip6_sk_update_pmtu);
1415
Duan Jiongb55b76b2013-09-04 19:44:21 +08001416/* Handle redirects */
1417struct ip6rd_flowi {
1418 struct flowi6 fl6;
1419 struct in6_addr gateway;
1420};
1421
1422static struct rt6_info *__ip6_route_redirect(struct net *net,
1423 struct fib6_table *table,
1424 struct flowi6 *fl6,
1425 int flags)
1426{
1427 struct ip6rd_flowi *rdfl = (struct ip6rd_flowi *)fl6;
1428 struct rt6_info *rt;
1429 struct fib6_node *fn;
1430
1431 /* Get the "current" route for this destination and
1432 * check if the redirect has come from approriate router.
1433 *
1434 * RFC 4861 specifies that redirects should only be
1435 * accepted if they come from the nexthop to the target.
1436 * Due to the way the routes are chosen, this notion
1437 * is a bit fuzzy and one might need to check all possible
1438 * routes.
1439 */
1440
1441 read_lock_bh(&table->tb6_lock);
1442 fn = fib6_lookup(&table->tb6_root, &fl6->daddr, &fl6->saddr);
1443restart:
1444 for (rt = fn->leaf; rt; rt = rt->dst.rt6_next) {
1445 if (rt6_check_expired(rt))
1446 continue;
1447 if (rt->dst.error)
1448 break;
1449 if (!(rt->rt6i_flags & RTF_GATEWAY))
1450 continue;
1451 if (fl6->flowi6_oif != rt->dst.dev->ifindex)
1452 continue;
1453 if (!ipv6_addr_equal(&rdfl->gateway, &rt->rt6i_gateway))
1454 continue;
1455 break;
1456 }
1457
1458 if (!rt)
1459 rt = net->ipv6.ip6_null_entry;
1460 else if (rt->dst.error) {
1461 rt = net->ipv6.ip6_null_entry;
Martin KaFai Laub0a1ba52015-01-20 19:16:02 -08001462 goto out;
1463 }
1464
1465 if (rt == net->ipv6.ip6_null_entry) {
Martin KaFai Laua3c00e42014-10-20 13:42:43 -07001466 fn = fib6_backtrack(fn, &fl6->saddr);
1467 if (fn)
1468 goto restart;
Duan Jiongb55b76b2013-09-04 19:44:21 +08001469 }
Martin KaFai Laua3c00e42014-10-20 13:42:43 -07001470
Martin KaFai Laub0a1ba52015-01-20 19:16:02 -08001471out:
Duan Jiongb55b76b2013-09-04 19:44:21 +08001472 dst_hold(&rt->dst);
1473
1474 read_unlock_bh(&table->tb6_lock);
1475
1476 return rt;
1477};
1478
1479static struct dst_entry *ip6_route_redirect(struct net *net,
1480 const struct flowi6 *fl6,
1481 const struct in6_addr *gateway)
1482{
1483 int flags = RT6_LOOKUP_F_HAS_SADDR;
1484 struct ip6rd_flowi rdfl;
1485
1486 rdfl.fl6 = *fl6;
1487 rdfl.gateway = *gateway;
1488
1489 return fib6_rule_lookup(net, &rdfl.fl6,
1490 flags, __ip6_route_redirect);
1491}
1492
David S. Miller3a5ad2e2012-07-12 00:08:07 -07001493void ip6_redirect(struct sk_buff *skb, struct net *net, int oif, u32 mark)
1494{
1495 const struct ipv6hdr *iph = (struct ipv6hdr *) skb->data;
1496 struct dst_entry *dst;
1497 struct flowi6 fl6;
1498
1499 memset(&fl6, 0, sizeof(fl6));
Julian Anastasove374c612014-04-28 10:51:56 +03001500 fl6.flowi6_iif = LOOPBACK_IFINDEX;
David S. Miller3a5ad2e2012-07-12 00:08:07 -07001501 fl6.flowi6_oif = oif;
1502 fl6.flowi6_mark = mark;
David S. Miller3a5ad2e2012-07-12 00:08:07 -07001503 fl6.daddr = iph->daddr;
1504 fl6.saddr = iph->saddr;
YOSHIFUJI Hideaki / 吉藤英明6502ca52013-01-13 05:01:51 +00001505 fl6.flowlabel = ip6_flowinfo(iph);
David S. Miller3a5ad2e2012-07-12 00:08:07 -07001506
Duan Jiongb55b76b2013-09-04 19:44:21 +08001507 dst = ip6_route_redirect(net, &fl6, &ipv6_hdr(skb)->saddr);
1508 rt6_do_redirect(dst, NULL, skb);
David S. Miller3a5ad2e2012-07-12 00:08:07 -07001509 dst_release(dst);
1510}
1511EXPORT_SYMBOL_GPL(ip6_redirect);
1512
Duan Jiongc92a59e2013-08-22 12:07:35 +08001513void ip6_redirect_no_header(struct sk_buff *skb, struct net *net, int oif,
1514 u32 mark)
1515{
1516 const struct ipv6hdr *iph = ipv6_hdr(skb);
1517 const struct rd_msg *msg = (struct rd_msg *)icmp6_hdr(skb);
1518 struct dst_entry *dst;
1519 struct flowi6 fl6;
1520
1521 memset(&fl6, 0, sizeof(fl6));
Julian Anastasove374c612014-04-28 10:51:56 +03001522 fl6.flowi6_iif = LOOPBACK_IFINDEX;
Duan Jiongc92a59e2013-08-22 12:07:35 +08001523 fl6.flowi6_oif = oif;
1524 fl6.flowi6_mark = mark;
Duan Jiongc92a59e2013-08-22 12:07:35 +08001525 fl6.daddr = msg->dest;
1526 fl6.saddr = iph->daddr;
1527
Duan Jiongb55b76b2013-09-04 19:44:21 +08001528 dst = ip6_route_redirect(net, &fl6, &iph->saddr);
1529 rt6_do_redirect(dst, NULL, skb);
Duan Jiongc92a59e2013-08-22 12:07:35 +08001530 dst_release(dst);
1531}
1532
David S. Miller3a5ad2e2012-07-12 00:08:07 -07001533void ip6_sk_redirect(struct sk_buff *skb, struct sock *sk)
1534{
1535 ip6_redirect(skb, sock_net(sk), sk->sk_bound_dev_if, sk->sk_mark);
1536}
1537EXPORT_SYMBOL_GPL(ip6_sk_redirect);
1538
David S. Miller0dbaee32010-12-13 12:52:14 -08001539static unsigned int ip6_default_advmss(const struct dst_entry *dst)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540{
David S. Miller0dbaee32010-12-13 12:52:14 -08001541 struct net_device *dev = dst->dev;
1542 unsigned int mtu = dst_mtu(dst);
1543 struct net *net = dev_net(dev);
1544
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545 mtu -= sizeof(struct ipv6hdr) + sizeof(struct tcphdr);
1546
Daniel Lezcano55786892008-03-04 13:47:47 -08001547 if (mtu < net->ipv6.sysctl.ip6_rt_min_advmss)
1548 mtu = net->ipv6.sysctl.ip6_rt_min_advmss;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549
1550 /*
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001551 * Maximal non-jumbo IPv6 payload is IPV6_MAXPLEN and
1552 * corresponding MSS is IPV6_MAXPLEN - tcp_header_size.
1553 * IPV6_MAXPLEN is also valid and means: "any MSS,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001554 * rely only on pmtu discovery"
1555 */
1556 if (mtu > IPV6_MAXPLEN - sizeof(struct tcphdr))
1557 mtu = IPV6_MAXPLEN;
1558 return mtu;
1559}
1560
Steffen Klassertebb762f2011-11-23 02:12:51 +00001561static unsigned int ip6_mtu(const struct dst_entry *dst)
David S. Millerd33e4552010-12-14 13:01:14 -08001562{
Martin KaFai Lau4b32b5a2015-04-28 13:03:06 -07001563 const struct rt6_info *rt = (const struct rt6_info *)dst;
1564 unsigned int mtu = rt->rt6i_pmtu;
David S. Millerd33e4552010-12-14 13:01:14 -08001565 struct inet6_dev *idev;
Steffen Klassert618f9bc2011-11-23 02:13:31 +00001566
1567 if (mtu)
Eric Dumazet30f78d82014-04-10 21:23:36 -07001568 goto out;
Steffen Klassert618f9bc2011-11-23 02:13:31 +00001569
Martin KaFai Lau4b32b5a2015-04-28 13:03:06 -07001570 mtu = dst_metric_raw(dst, RTAX_MTU);
1571 if (mtu)
1572 goto out;
1573
Steffen Klassert618f9bc2011-11-23 02:13:31 +00001574 mtu = IPV6_MIN_MTU;
David S. Millerd33e4552010-12-14 13:01:14 -08001575
1576 rcu_read_lock();
1577 idev = __in6_dev_get(dst->dev);
1578 if (idev)
1579 mtu = idev->cnf.mtu6;
1580 rcu_read_unlock();
1581
Eric Dumazet30f78d82014-04-10 21:23:36 -07001582out:
1583 return min_t(unsigned int, mtu, IP6_MAX_MTU);
David S. Millerd33e4552010-12-14 13:01:14 -08001584}
1585
YOSHIFUJI Hideaki3b009442007-12-06 16:11:48 -08001586static struct dst_entry *icmp6_dst_gc_list;
1587static DEFINE_SPINLOCK(icmp6_dst_lock);
Thomas Graf5d0bbee2006-08-04 03:37:36 -07001588
YOSHIFUJI Hideaki3b009442007-12-06 16:11:48 -08001589struct dst_entry *icmp6_dst_alloc(struct net_device *dev,
David S. Miller87a11572011-12-06 17:04:13 -05001590 struct flowi6 *fl6)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591{
David S. Miller87a11572011-12-06 17:04:13 -05001592 struct dst_entry *dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593 struct rt6_info *rt;
1594 struct inet6_dev *idev = in6_dev_get(dev);
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001595 struct net *net = dev_net(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596
David S. Miller38308472011-12-03 18:02:47 -05001597 if (unlikely(!idev))
Eric Dumazet122bdf62012-03-14 21:13:11 +00001598 return ERR_PTR(-ENODEV);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599
Martin KaFai Lauad706862015-08-14 11:05:52 -07001600 rt = ip6_dst_alloc(net, dev, 0);
David S. Miller38308472011-12-03 18:02:47 -05001601 if (unlikely(!rt)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602 in6_dev_put(idev);
David S. Miller87a11572011-12-06 17:04:13 -05001603 dst = ERR_PTR(-ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604 goto out;
1605 }
1606
Yan, Zheng8e2ec632011-09-05 21:34:30 +00001607 rt->dst.flags |= DST_HOST;
1608 rt->dst.output = ip6_output;
Changli Gaod8d1f302010-06-10 23:31:35 -07001609 atomic_set(&rt->dst.__refcnt, 1);
Julian Anastasov550bab42013-10-20 15:43:04 +03001610 rt->rt6i_gateway = fl6->daddr;
David S. Miller87a11572011-12-06 17:04:13 -05001611 rt->rt6i_dst.addr = fl6->daddr;
Yan, Zheng8e2ec632011-09-05 21:34:30 +00001612 rt->rt6i_dst.plen = 128;
1613 rt->rt6i_idev = idev;
Li RongQing14edd872012-10-24 14:01:18 +08001614 dst_metric_set(&rt->dst, RTAX_HOPLIMIT, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615
YOSHIFUJI Hideaki3b009442007-12-06 16:11:48 -08001616 spin_lock_bh(&icmp6_dst_lock);
Changli Gaod8d1f302010-06-10 23:31:35 -07001617 rt->dst.next = icmp6_dst_gc_list;
1618 icmp6_dst_gc_list = &rt->dst;
YOSHIFUJI Hideaki3b009442007-12-06 16:11:48 -08001619 spin_unlock_bh(&icmp6_dst_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620
Daniel Lezcano55786892008-03-04 13:47:47 -08001621 fib6_force_start_gc(net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622
David S. Miller87a11572011-12-06 17:04:13 -05001623 dst = xfrm_lookup(net, &rt->dst, flowi6_to_flowi(fl6), NULL, 0);
1624
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625out:
David S. Miller87a11572011-12-06 17:04:13 -05001626 return dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627}
1628
Stephen Hemminger3d0f24a2008-07-22 14:35:50 -07001629int icmp6_dst_gc(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630{
Hagen Paul Pfeifere9476e952011-02-25 05:45:19 +00001631 struct dst_entry *dst, **pprev;
Stephen Hemminger3d0f24a2008-07-22 14:35:50 -07001632 int more = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633
YOSHIFUJI Hideaki3b009442007-12-06 16:11:48 -08001634 spin_lock_bh(&icmp6_dst_lock);
1635 pprev = &icmp6_dst_gc_list;
Thomas Graf5d0bbee2006-08-04 03:37:36 -07001636
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637 while ((dst = *pprev) != NULL) {
1638 if (!atomic_read(&dst->__refcnt)) {
1639 *pprev = dst->next;
1640 dst_free(dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641 } else {
1642 pprev = &dst->next;
Stephen Hemminger3d0f24a2008-07-22 14:35:50 -07001643 ++more;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644 }
1645 }
1646
YOSHIFUJI Hideaki3b009442007-12-06 16:11:48 -08001647 spin_unlock_bh(&icmp6_dst_lock);
Thomas Graf5d0bbee2006-08-04 03:37:36 -07001648
Stephen Hemminger3d0f24a2008-07-22 14:35:50 -07001649 return more;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650}
1651
David S. Miller1e493d12008-09-10 17:27:15 -07001652static void icmp6_clean_all(int (*func)(struct rt6_info *rt, void *arg),
1653 void *arg)
1654{
1655 struct dst_entry *dst, **pprev;
1656
1657 spin_lock_bh(&icmp6_dst_lock);
1658 pprev = &icmp6_dst_gc_list;
1659 while ((dst = *pprev) != NULL) {
1660 struct rt6_info *rt = (struct rt6_info *) dst;
1661 if (func(rt, arg)) {
1662 *pprev = dst->next;
1663 dst_free(dst);
1664 } else {
1665 pprev = &dst->next;
1666 }
1667 }
1668 spin_unlock_bh(&icmp6_dst_lock);
1669}
1670
Daniel Lezcano569d3642008-01-18 03:56:57 -08001671static int ip6_dst_gc(struct dst_ops *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672{
Alexey Dobriyan86393e52009-08-29 01:34:49 +00001673 struct net *net = container_of(ops, struct net, ipv6.ip6_dst_ops);
Daniel Lezcano7019b782008-03-04 13:50:14 -08001674 int rt_min_interval = net->ipv6.sysctl.ip6_rt_gc_min_interval;
1675 int rt_max_size = net->ipv6.sysctl.ip6_rt_max_size;
1676 int rt_elasticity = net->ipv6.sysctl.ip6_rt_gc_elasticity;
1677 int rt_gc_timeout = net->ipv6.sysctl.ip6_rt_gc_timeout;
1678 unsigned long rt_last_gc = net->ipv6.ip6_rt_last_gc;
Eric Dumazetfc66f952010-10-08 06:37:34 +00001679 int entries;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680
Eric Dumazetfc66f952010-10-08 06:37:34 +00001681 entries = dst_entries_get_fast(ops);
Michal Kubeček49a18d82013-08-01 10:04:24 +02001682 if (time_after(rt_last_gc + rt_min_interval, jiffies) &&
Eric Dumazetfc66f952010-10-08 06:37:34 +00001683 entries <= rt_max_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684 goto out;
1685
Benjamin Thery6891a342008-03-04 13:49:47 -08001686 net->ipv6.ip6_rt_gc_expire++;
Li RongQing14956642014-05-19 17:30:28 +08001687 fib6_run_gc(net->ipv6.ip6_rt_gc_expire, net, true);
Eric Dumazetfc66f952010-10-08 06:37:34 +00001688 entries = dst_entries_get_slow(ops);
1689 if (entries < ops->gc_thresh)
Daniel Lezcano7019b782008-03-04 13:50:14 -08001690 net->ipv6.ip6_rt_gc_expire = rt_gc_timeout>>1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691out:
Daniel Lezcano7019b782008-03-04 13:50:14 -08001692 net->ipv6.ip6_rt_gc_expire -= net->ipv6.ip6_rt_gc_expire>>rt_elasticity;
Eric Dumazetfc66f952010-10-08 06:37:34 +00001693 return entries > rt_max_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694}
1695
Florian Westphale715b6d2015-01-05 23:57:44 +01001696static int ip6_convert_metrics(struct mx6_config *mxc,
1697 const struct fib6_config *cfg)
1698{
Daniel Borkmannc3a8d942015-08-31 15:58:47 +02001699 bool ecn_ca = false;
Florian Westphale715b6d2015-01-05 23:57:44 +01001700 struct nlattr *nla;
1701 int remaining;
1702 u32 *mp;
1703
Ian Morris63159f22015-03-29 14:00:04 +01001704 if (!cfg->fc_mx)
Florian Westphale715b6d2015-01-05 23:57:44 +01001705 return 0;
1706
1707 mp = kzalloc(sizeof(u32) * RTAX_MAX, GFP_KERNEL);
1708 if (unlikely(!mp))
1709 return -ENOMEM;
1710
1711 nla_for_each_attr(nla, cfg->fc_mx, cfg->fc_mx_len, remaining) {
1712 int type = nla_type(nla);
Daniel Borkmann1bb14802015-08-31 15:58:45 +02001713 u32 val;
Florian Westphale715b6d2015-01-05 23:57:44 +01001714
Daniel Borkmann1bb14802015-08-31 15:58:45 +02001715 if (!type)
1716 continue;
1717 if (unlikely(type > RTAX_MAX))
1718 goto err;
Daniel Borkmannea697632015-01-05 23:57:47 +01001719
Daniel Borkmann1bb14802015-08-31 15:58:45 +02001720 if (type == RTAX_CC_ALGO) {
1721 char tmp[TCP_CA_NAME_MAX];
1722
1723 nla_strlcpy(tmp, nla, sizeof(tmp));
Daniel Borkmannc3a8d942015-08-31 15:58:47 +02001724 val = tcp_ca_get_key_by_name(tmp, &ecn_ca);
Daniel Borkmann1bb14802015-08-31 15:58:45 +02001725 if (val == TCP_CA_UNSPEC)
Florian Westphale715b6d2015-01-05 23:57:44 +01001726 goto err;
Daniel Borkmann1bb14802015-08-31 15:58:45 +02001727 } else {
1728 val = nla_get_u32(nla);
Florian Westphale715b6d2015-01-05 23:57:44 +01001729 }
Daniel Borkmannb8d3e412015-08-31 15:58:46 +02001730 if (type == RTAX_FEATURES && (val & ~RTAX_FEATURE_MASK))
1731 goto err;
Daniel Borkmann1bb14802015-08-31 15:58:45 +02001732
1733 mp[type - 1] = val;
1734 __set_bit(type - 1, mxc->mx_valid);
Florian Westphale715b6d2015-01-05 23:57:44 +01001735 }
1736
Daniel Borkmannc3a8d942015-08-31 15:58:47 +02001737 if (ecn_ca) {
1738 __set_bit(RTAX_FEATURES - 1, mxc->mx_valid);
1739 mp[RTAX_FEATURES - 1] |= DST_FEATURE_ECN_CA;
1740 }
Florian Westphale715b6d2015-01-05 23:57:44 +01001741
Daniel Borkmannc3a8d942015-08-31 15:58:47 +02001742 mxc->mx = mp;
Florian Westphale715b6d2015-01-05 23:57:44 +01001743 return 0;
1744 err:
1745 kfree(mp);
1746 return -EINVAL;
1747}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001748
Roopa Prabhu8c5b83f2015-10-10 08:26:36 -07001749static struct rt6_info *ip6_route_info_create(struct fib6_config *cfg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750{
Daniel Lezcano55786892008-03-04 13:47:47 -08001751 struct net *net = cfg->fc_nlinfo.nl_net;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752 struct rt6_info *rt = NULL;
1753 struct net_device *dev = NULL;
1754 struct inet6_dev *idev = NULL;
Thomas Grafc71099a2006-08-04 23:20:06 -07001755 struct fib6_table *table;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756 int addr_type;
Roopa Prabhu8c5b83f2015-10-10 08:26:36 -07001757 int err = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758
Thomas Graf86872cb2006-08-22 00:01:08 -07001759 if (cfg->fc_dst_len > 128 || cfg->fc_src_len > 128)
Roopa Prabhu8c5b83f2015-10-10 08:26:36 -07001760 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761#ifndef CONFIG_IPV6_SUBTREES
Thomas Graf86872cb2006-08-22 00:01:08 -07001762 if (cfg->fc_src_len)
Roopa Prabhu8c5b83f2015-10-10 08:26:36 -07001763 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764#endif
Thomas Graf86872cb2006-08-22 00:01:08 -07001765 if (cfg->fc_ifindex) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766 err = -ENODEV;
Daniel Lezcano55786892008-03-04 13:47:47 -08001767 dev = dev_get_by_index(net, cfg->fc_ifindex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768 if (!dev)
1769 goto out;
1770 idev = in6_dev_get(dev);
1771 if (!idev)
1772 goto out;
1773 }
1774
Thomas Graf86872cb2006-08-22 00:01:08 -07001775 if (cfg->fc_metric == 0)
1776 cfg->fc_metric = IP6_RT_PRIO_USER;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001777
Matti Vaittinend71314b2011-11-14 00:14:49 +00001778 err = -ENOBUFS;
David S. Miller38308472011-12-03 18:02:47 -05001779 if (cfg->fc_nlinfo.nlh &&
1780 !(cfg->fc_nlinfo.nlh->nlmsg_flags & NLM_F_CREATE)) {
Matti Vaittinend71314b2011-11-14 00:14:49 +00001781 table = fib6_get_table(net, cfg->fc_table);
David S. Miller38308472011-12-03 18:02:47 -05001782 if (!table) {
Joe Perchesf3213832012-05-15 14:11:53 +00001783 pr_warn("NLM_F_CREATE should be specified when creating new route\n");
Matti Vaittinend71314b2011-11-14 00:14:49 +00001784 table = fib6_new_table(net, cfg->fc_table);
1785 }
1786 } else {
1787 table = fib6_new_table(net, cfg->fc_table);
1788 }
David S. Miller38308472011-12-03 18:02:47 -05001789
1790 if (!table)
Thomas Grafc71099a2006-08-04 23:20:06 -07001791 goto out;
Thomas Grafc71099a2006-08-04 23:20:06 -07001792
Martin KaFai Lauad706862015-08-14 11:05:52 -07001793 rt = ip6_dst_alloc(net, NULL,
1794 (cfg->fc_flags & RTF_ADDRCONF) ? 0 : DST_NOCOUNT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795
David S. Miller38308472011-12-03 18:02:47 -05001796 if (!rt) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797 err = -ENOMEM;
1798 goto out;
1799 }
1800
Gao feng1716a962012-04-06 00:13:10 +00001801 if (cfg->fc_flags & RTF_EXPIRES)
1802 rt6_set_expires(rt, jiffies +
1803 clock_t_to_jiffies(cfg->fc_expires));
1804 else
1805 rt6_clean_expires(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806
Thomas Graf86872cb2006-08-22 00:01:08 -07001807 if (cfg->fc_protocol == RTPROT_UNSPEC)
1808 cfg->fc_protocol = RTPROT_BOOT;
1809 rt->rt6i_protocol = cfg->fc_protocol;
1810
1811 addr_type = ipv6_addr_type(&cfg->fc_dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812
1813 if (addr_type & IPV6_ADDR_MULTICAST)
Changli Gaod8d1f302010-06-10 23:31:35 -07001814 rt->dst.input = ip6_mc_input;
Maciej Żenczykowskiab79ad12010-09-27 00:07:02 +00001815 else if (cfg->fc_flags & RTF_LOCAL)
1816 rt->dst.input = ip6_input;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817 else
Changli Gaod8d1f302010-06-10 23:31:35 -07001818 rt->dst.input = ip6_forward;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819
Changli Gaod8d1f302010-06-10 23:31:35 -07001820 rt->dst.output = ip6_output;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821
Roopa Prabhu19e42e42015-07-21 10:43:48 +02001822 if (cfg->fc_encap) {
1823 struct lwtunnel_state *lwtstate;
1824
1825 err = lwtunnel_build_state(dev, cfg->fc_encap_type,
Tom Herbert127eb7c2015-08-24 09:45:41 -07001826 cfg->fc_encap, AF_INET6, cfg,
1827 &lwtstate);
Roopa Prabhu19e42e42015-07-21 10:43:48 +02001828 if (err)
1829 goto out;
Jiri Benc61adedf2015-08-20 13:56:25 +02001830 rt->dst.lwtstate = lwtstate_get(lwtstate);
1831 if (lwtunnel_output_redirect(rt->dst.lwtstate)) {
1832 rt->dst.lwtstate->orig_output = rt->dst.output;
1833 rt->dst.output = lwtunnel_output;
Tom Herbert25368622015-08-17 13:42:24 -07001834 }
Jiri Benc61adedf2015-08-20 13:56:25 +02001835 if (lwtunnel_input_redirect(rt->dst.lwtstate)) {
1836 rt->dst.lwtstate->orig_input = rt->dst.input;
1837 rt->dst.input = lwtunnel_input;
Tom Herbert25368622015-08-17 13:42:24 -07001838 }
Roopa Prabhu19e42e42015-07-21 10:43:48 +02001839 }
1840
Thomas Graf86872cb2006-08-22 00:01:08 -07001841 ipv6_addr_prefix(&rt->rt6i_dst.addr, &cfg->fc_dst, cfg->fc_dst_len);
1842 rt->rt6i_dst.plen = cfg->fc_dst_len;
Martin KaFai Lauafc4eef2015-04-28 13:03:07 -07001843 if (rt->rt6i_dst.plen == 128)
Michal Kubečeke5fd3872014-03-27 13:04:08 +01001844 rt->dst.flags |= DST_HOST;
Michal Kubečeke5fd3872014-03-27 13:04:08 +01001845
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846#ifdef CONFIG_IPV6_SUBTREES
Thomas Graf86872cb2006-08-22 00:01:08 -07001847 ipv6_addr_prefix(&rt->rt6i_src.addr, &cfg->fc_src, cfg->fc_src_len);
1848 rt->rt6i_src.plen = cfg->fc_src_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849#endif
1850
Thomas Graf86872cb2006-08-22 00:01:08 -07001851 rt->rt6i_metric = cfg->fc_metric;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001852
1853 /* We cannot add true routes via loopback here,
1854 they would result in kernel looping; promote them to reject routes
1855 */
Thomas Graf86872cb2006-08-22 00:01:08 -07001856 if ((cfg->fc_flags & RTF_REJECT) ||
David S. Miller38308472011-12-03 18:02:47 -05001857 (dev && (dev->flags & IFF_LOOPBACK) &&
1858 !(addr_type & IPV6_ADDR_LOOPBACK) &&
1859 !(cfg->fc_flags & RTF_LOCAL))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860 /* hold loopback dev/idev if we haven't done so. */
Daniel Lezcano55786892008-03-04 13:47:47 -08001861 if (dev != net->loopback_dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001862 if (dev) {
1863 dev_put(dev);
1864 in6_dev_put(idev);
1865 }
Daniel Lezcano55786892008-03-04 13:47:47 -08001866 dev = net->loopback_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867 dev_hold(dev);
1868 idev = in6_dev_get(dev);
1869 if (!idev) {
1870 err = -ENODEV;
1871 goto out;
1872 }
1873 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874 rt->rt6i_flags = RTF_REJECT|RTF_NONEXTHOP;
Nicolas Dichtelef2c7d72012-09-05 02:12:42 +00001875 switch (cfg->fc_type) {
1876 case RTN_BLACKHOLE:
1877 rt->dst.error = -EINVAL;
Eric W. Biedermanede20592015-10-07 16:48:47 -05001878 rt->dst.output = dst_discard_out;
Kamala R7150aed2013-12-02 19:55:21 +05301879 rt->dst.input = dst_discard;
Nicolas Dichtelef2c7d72012-09-05 02:12:42 +00001880 break;
1881 case RTN_PROHIBIT:
1882 rt->dst.error = -EACCES;
Kamala R7150aed2013-12-02 19:55:21 +05301883 rt->dst.output = ip6_pkt_prohibit_out;
1884 rt->dst.input = ip6_pkt_prohibit;
Nicolas Dichtelef2c7d72012-09-05 02:12:42 +00001885 break;
Nicolas Dichtelb4949ab2012-09-06 05:53:35 +00001886 case RTN_THROW:
Nikola Forró0315e382015-09-17 16:01:32 +02001887 case RTN_UNREACHABLE:
Nicolas Dichtelef2c7d72012-09-05 02:12:42 +00001888 default:
Kamala R7150aed2013-12-02 19:55:21 +05301889 rt->dst.error = (cfg->fc_type == RTN_THROW) ? -EAGAIN
Nikola Forró0315e382015-09-17 16:01:32 +02001890 : (cfg->fc_type == RTN_UNREACHABLE)
1891 ? -EHOSTUNREACH : -ENETUNREACH;
Kamala R7150aed2013-12-02 19:55:21 +05301892 rt->dst.output = ip6_pkt_discard_out;
1893 rt->dst.input = ip6_pkt_discard;
Nicolas Dichtelef2c7d72012-09-05 02:12:42 +00001894 break;
1895 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001896 goto install_route;
1897 }
1898
Thomas Graf86872cb2006-08-22 00:01:08 -07001899 if (cfg->fc_flags & RTF_GATEWAY) {
Eric Dumazetb71d1d42011-04-22 04:53:02 +00001900 const struct in6_addr *gw_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001901 int gwa_type;
1902
Thomas Graf86872cb2006-08-22 00:01:08 -07001903 gw_addr = &cfg->fc_gateway;
Florian Westphal330567b2015-08-07 10:54:28 +02001904 gwa_type = ipv6_addr_type(gw_addr);
Florian Westphal48ed7b22015-05-21 00:25:41 +02001905
1906 /* if gw_addr is local we will fail to detect this in case
1907 * address is still TENTATIVE (DAD in progress). rt6_lookup()
1908 * will return already-added prefix route via interface that
1909 * prefix route was assigned to, which might be non-loopback.
1910 */
1911 err = -EINVAL;
Florian Westphal330567b2015-08-07 10:54:28 +02001912 if (ipv6_chk_addr_and_flags(net, gw_addr,
1913 gwa_type & IPV6_ADDR_LINKLOCAL ?
1914 dev : NULL, 0, 0))
Florian Westphal48ed7b22015-05-21 00:25:41 +02001915 goto out;
1916
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001917 rt->rt6i_gateway = *gw_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001918
1919 if (gwa_type != (IPV6_ADDR_LINKLOCAL|IPV6_ADDR_UNICAST)) {
1920 struct rt6_info *grt;
1921
1922 /* IPv6 strictly inhibits using not link-local
1923 addresses as nexthop address.
1924 Otherwise, router will not able to send redirects.
1925 It is very good, but in some (rare!) circumstances
1926 (SIT, PtP, NBMA NOARP links) it is handy to allow
1927 some exceptions. --ANK
1928 */
David S. Miller38308472011-12-03 18:02:47 -05001929 if (!(gwa_type & IPV6_ADDR_UNICAST))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001930 goto out;
1931
Daniel Lezcano55786892008-03-04 13:47:47 -08001932 grt = rt6_lookup(net, gw_addr, NULL, cfg->fc_ifindex, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933
1934 err = -EHOSTUNREACH;
David S. Miller38308472011-12-03 18:02:47 -05001935 if (!grt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001936 goto out;
1937 if (dev) {
David S. Millerd1918542011-12-28 20:19:20 -05001938 if (dev != grt->dst.dev) {
Amerigo Wang94e187c2012-10-29 00:13:19 +00001939 ip6_rt_put(grt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001940 goto out;
1941 }
1942 } else {
David S. Millerd1918542011-12-28 20:19:20 -05001943 dev = grt->dst.dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944 idev = grt->rt6i_idev;
1945 dev_hold(dev);
1946 in6_dev_hold(grt->rt6i_idev);
1947 }
David S. Miller38308472011-12-03 18:02:47 -05001948 if (!(grt->rt6i_flags & RTF_GATEWAY))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949 err = 0;
Amerigo Wang94e187c2012-10-29 00:13:19 +00001950 ip6_rt_put(grt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951
1952 if (err)
1953 goto out;
1954 }
1955 err = -EINVAL;
David S. Miller38308472011-12-03 18:02:47 -05001956 if (!dev || (dev->flags & IFF_LOOPBACK))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957 goto out;
1958 }
1959
1960 err = -ENODEV;
David S. Miller38308472011-12-03 18:02:47 -05001961 if (!dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962 goto out;
1963
Daniel Walterc3968a82011-04-13 21:10:57 +00001964 if (!ipv6_addr_any(&cfg->fc_prefsrc)) {
1965 if (!ipv6_chk_addr(net, &cfg->fc_prefsrc, dev, 0)) {
1966 err = -EINVAL;
1967 goto out;
1968 }
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001969 rt->rt6i_prefsrc.addr = cfg->fc_prefsrc;
Daniel Walterc3968a82011-04-13 21:10:57 +00001970 rt->rt6i_prefsrc.plen = 128;
1971 } else
1972 rt->rt6i_prefsrc.plen = 0;
1973
Thomas Graf86872cb2006-08-22 00:01:08 -07001974 rt->rt6i_flags = cfg->fc_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001975
1976install_route:
Changli Gaod8d1f302010-06-10 23:31:35 -07001977 rt->dst.dev = dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978 rt->rt6i_idev = idev;
Thomas Grafc71099a2006-08-04 23:20:06 -07001979 rt->rt6i_table = table;
Daniel Lezcano63152fc2008-03-03 23:31:11 -08001980
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001981 cfg->fc_nlinfo.nl_net = dev_net(dev);
Daniel Lezcano63152fc2008-03-03 23:31:11 -08001982
Roopa Prabhu8c5b83f2015-10-10 08:26:36 -07001983 return rt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001984out:
1985 if (dev)
1986 dev_put(dev);
1987 if (idev)
1988 in6_dev_put(idev);
1989 if (rt)
Changli Gaod8d1f302010-06-10 23:31:35 -07001990 dst_free(&rt->dst);
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07001991
Roopa Prabhu8c5b83f2015-10-10 08:26:36 -07001992 return ERR_PTR(err);
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07001993}
1994
1995int ip6_route_add(struct fib6_config *cfg)
1996{
1997 struct mx6_config mxc = { .mx = NULL, };
Roopa Prabhu8c5b83f2015-10-10 08:26:36 -07001998 struct rt6_info *rt;
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07001999 int err;
2000
Roopa Prabhu8c5b83f2015-10-10 08:26:36 -07002001 rt = ip6_route_info_create(cfg);
2002 if (IS_ERR(rt)) {
2003 err = PTR_ERR(rt);
2004 rt = NULL;
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07002005 goto out;
Roopa Prabhu8c5b83f2015-10-10 08:26:36 -07002006 }
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07002007
2008 err = ip6_convert_metrics(&mxc, cfg);
2009 if (err)
2010 goto out;
2011
2012 err = __ip6_ins_rt(rt, &cfg->fc_nlinfo, &mxc);
2013
2014 kfree(mxc.mx);
2015
2016 return err;
2017out:
2018 if (rt)
2019 dst_free(&rt->dst);
2020
Linus Torvalds1da177e2005-04-16 15:20:36 -07002021 return err;
2022}
2023
Thomas Graf86872cb2006-08-22 00:01:08 -07002024static int __ip6_del_rt(struct rt6_info *rt, struct nl_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002025{
2026 int err;
Thomas Grafc71099a2006-08-04 23:20:06 -07002027 struct fib6_table *table;
David S. Millerd1918542011-12-28 20:19:20 -05002028 struct net *net = dev_net(rt->dst.dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002029
Martin KaFai Lau8e3d5be2015-09-15 14:30:08 -07002030 if (rt == net->ipv6.ip6_null_entry ||
2031 rt->dst.flags & DST_NOCACHE) {
Gao feng6825a262012-09-19 19:25:34 +00002032 err = -ENOENT;
2033 goto out;
2034 }
Patrick McHardy6c813a72006-08-06 22:22:47 -07002035
Thomas Grafc71099a2006-08-04 23:20:06 -07002036 table = rt->rt6i_table;
2037 write_lock_bh(&table->tb6_lock);
Thomas Graf86872cb2006-08-22 00:01:08 -07002038 err = fib6_del(rt, info);
Thomas Grafc71099a2006-08-04 23:20:06 -07002039 write_unlock_bh(&table->tb6_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002040
Gao feng6825a262012-09-19 19:25:34 +00002041out:
Amerigo Wang94e187c2012-10-29 00:13:19 +00002042 ip6_rt_put(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002043 return err;
2044}
2045
Thomas Grafe0a1ad732006-08-22 00:00:21 -07002046int ip6_del_rt(struct rt6_info *rt)
2047{
Denis V. Lunev4d1169c2008-01-10 03:26:13 -08002048 struct nl_info info = {
David S. Millerd1918542011-12-28 20:19:20 -05002049 .nl_net = dev_net(rt->dst.dev),
Denis V. Lunev4d1169c2008-01-10 03:26:13 -08002050 };
Denis V. Lunev528c4ce2007-12-13 09:45:12 -08002051 return __ip6_del_rt(rt, &info);
Thomas Grafe0a1ad732006-08-22 00:00:21 -07002052}
2053
Thomas Graf86872cb2006-08-22 00:01:08 -07002054static int ip6_route_del(struct fib6_config *cfg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002055{
Thomas Grafc71099a2006-08-04 23:20:06 -07002056 struct fib6_table *table;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002057 struct fib6_node *fn;
2058 struct rt6_info *rt;
2059 int err = -ESRCH;
2060
Daniel Lezcano55786892008-03-04 13:47:47 -08002061 table = fib6_get_table(cfg->fc_nlinfo.nl_net, cfg->fc_table);
David S. Miller38308472011-12-03 18:02:47 -05002062 if (!table)
Thomas Grafc71099a2006-08-04 23:20:06 -07002063 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064
Thomas Grafc71099a2006-08-04 23:20:06 -07002065 read_lock_bh(&table->tb6_lock);
2066
2067 fn = fib6_locate(&table->tb6_root,
Thomas Graf86872cb2006-08-22 00:01:08 -07002068 &cfg->fc_dst, cfg->fc_dst_len,
2069 &cfg->fc_src, cfg->fc_src_len);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002070
Linus Torvalds1da177e2005-04-16 15:20:36 -07002071 if (fn) {
Changli Gaod8d1f302010-06-10 23:31:35 -07002072 for (rt = fn->leaf; rt; rt = rt->dst.rt6_next) {
Martin KaFai Lau1f56a012015-04-28 13:03:03 -07002073 if ((rt->rt6i_flags & RTF_CACHE) &&
2074 !(cfg->fc_flags & RTF_CACHE))
2075 continue;
Thomas Graf86872cb2006-08-22 00:01:08 -07002076 if (cfg->fc_ifindex &&
David S. Millerd1918542011-12-28 20:19:20 -05002077 (!rt->dst.dev ||
2078 rt->dst.dev->ifindex != cfg->fc_ifindex))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002079 continue;
Thomas Graf86872cb2006-08-22 00:01:08 -07002080 if (cfg->fc_flags & RTF_GATEWAY &&
2081 !ipv6_addr_equal(&cfg->fc_gateway, &rt->rt6i_gateway))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082 continue;
Thomas Graf86872cb2006-08-22 00:01:08 -07002083 if (cfg->fc_metric && cfg->fc_metric != rt->rt6i_metric)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084 continue;
Changli Gaod8d1f302010-06-10 23:31:35 -07002085 dst_hold(&rt->dst);
Thomas Grafc71099a2006-08-04 23:20:06 -07002086 read_unlock_bh(&table->tb6_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087
Thomas Graf86872cb2006-08-22 00:01:08 -07002088 return __ip6_del_rt(rt, &cfg->fc_nlinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002089 }
2090 }
Thomas Grafc71099a2006-08-04 23:20:06 -07002091 read_unlock_bh(&table->tb6_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002092
2093 return err;
2094}
2095
David S. Miller6700c272012-07-17 03:29:28 -07002096static void rt6_do_redirect(struct dst_entry *dst, struct sock *sk, struct sk_buff *skb)
YOSHIFUJI Hideakia6279452006-08-23 17:18:26 -07002097{
YOSHIFUJI Hideakia6279452006-08-23 17:18:26 -07002098 struct netevent_redirect netevent;
David S. Millere8599ff2012-07-11 23:43:53 -07002099 struct rt6_info *rt, *nrt = NULL;
David S. Millere8599ff2012-07-11 23:43:53 -07002100 struct ndisc_options ndopts;
2101 struct inet6_dev *in6_dev;
2102 struct neighbour *neigh;
YOSHIFUJI Hideaki / 吉藤英明71bcdba2013-01-05 16:34:51 +00002103 struct rd_msg *msg;
David S. Miller6e157b62012-07-12 00:05:02 -07002104 int optlen, on_link;
2105 u8 *lladdr;
David S. Millere8599ff2012-07-11 23:43:53 -07002106
Simon Horman29a3cad2013-05-28 20:34:26 +00002107 optlen = skb_tail_pointer(skb) - skb_transport_header(skb);
YOSHIFUJI Hideaki / 吉藤英明71bcdba2013-01-05 16:34:51 +00002108 optlen -= sizeof(*msg);
David S. Millere8599ff2012-07-11 23:43:53 -07002109
2110 if (optlen < 0) {
David S. Miller6e157b62012-07-12 00:05:02 -07002111 net_dbg_ratelimited("rt6_do_redirect: packet too short\n");
David S. Millere8599ff2012-07-11 23:43:53 -07002112 return;
2113 }
2114
YOSHIFUJI Hideaki / 吉藤英明71bcdba2013-01-05 16:34:51 +00002115 msg = (struct rd_msg *)icmp6_hdr(skb);
David S. Millere8599ff2012-07-11 23:43:53 -07002116
YOSHIFUJI Hideaki / 吉藤英明71bcdba2013-01-05 16:34:51 +00002117 if (ipv6_addr_is_multicast(&msg->dest)) {
David S. Miller6e157b62012-07-12 00:05:02 -07002118 net_dbg_ratelimited("rt6_do_redirect: destination address is multicast\n");
David S. Millere8599ff2012-07-11 23:43:53 -07002119 return;
2120 }
2121
David S. Miller6e157b62012-07-12 00:05:02 -07002122 on_link = 0;
YOSHIFUJI Hideaki / 吉藤英明71bcdba2013-01-05 16:34:51 +00002123 if (ipv6_addr_equal(&msg->dest, &msg->target)) {
David S. Millere8599ff2012-07-11 23:43:53 -07002124 on_link = 1;
YOSHIFUJI Hideaki / 吉藤英明71bcdba2013-01-05 16:34:51 +00002125 } else if (ipv6_addr_type(&msg->target) !=
David S. Millere8599ff2012-07-11 23:43:53 -07002126 (IPV6_ADDR_UNICAST|IPV6_ADDR_LINKLOCAL)) {
David S. Miller6e157b62012-07-12 00:05:02 -07002127 net_dbg_ratelimited("rt6_do_redirect: target address is not link-local unicast\n");
David S. Millere8599ff2012-07-11 23:43:53 -07002128 return;
2129 }
2130
2131 in6_dev = __in6_dev_get(skb->dev);
2132 if (!in6_dev)
2133 return;
2134 if (in6_dev->cnf.forwarding || !in6_dev->cnf.accept_redirects)
2135 return;
2136
2137 /* RFC2461 8.1:
2138 * The IP source address of the Redirect MUST be the same as the current
2139 * first-hop router for the specified ICMP Destination Address.
2140 */
2141
YOSHIFUJI Hideaki / 吉藤英明71bcdba2013-01-05 16:34:51 +00002142 if (!ndisc_parse_options(msg->opt, optlen, &ndopts)) {
David S. Millere8599ff2012-07-11 23:43:53 -07002143 net_dbg_ratelimited("rt6_redirect: invalid ND options\n");
2144 return;
2145 }
David S. Miller6e157b62012-07-12 00:05:02 -07002146
2147 lladdr = NULL;
David S. Millere8599ff2012-07-11 23:43:53 -07002148 if (ndopts.nd_opts_tgt_lladdr) {
2149 lladdr = ndisc_opt_addr_data(ndopts.nd_opts_tgt_lladdr,
2150 skb->dev);
2151 if (!lladdr) {
2152 net_dbg_ratelimited("rt6_redirect: invalid link-layer address length\n");
2153 return;
2154 }
2155 }
2156
David S. Miller6e157b62012-07-12 00:05:02 -07002157 rt = (struct rt6_info *) dst;
Matthias Schifferec13ad12015-11-02 01:24:38 +01002158 if (rt->rt6i_flags & RTF_REJECT) {
David S. Miller6e157b62012-07-12 00:05:02 -07002159 net_dbg_ratelimited("rt6_redirect: source isn't a valid nexthop for redirect target\n");
2160 return;
2161 }
2162
2163 /* Redirect received -> path was valid.
2164 * Look, redirects are sent only in response to data packets,
2165 * so that this nexthop apparently is reachable. --ANK
2166 */
2167 dst_confirm(&rt->dst);
2168
YOSHIFUJI Hideaki / 吉藤英明71bcdba2013-01-05 16:34:51 +00002169 neigh = __neigh_lookup(&nd_tbl, &msg->target, skb->dev, 1);
David S. Millere8599ff2012-07-11 23:43:53 -07002170 if (!neigh)
2171 return;
2172
Linus Torvalds1da177e2005-04-16 15:20:36 -07002173 /*
2174 * We have finally decided to accept it.
2175 */
2176
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002177 neigh_update(neigh, lladdr, NUD_STALE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002178 NEIGH_UPDATE_F_WEAK_OVERRIDE|
2179 NEIGH_UPDATE_F_OVERRIDE|
2180 (on_link ? 0 : (NEIGH_UPDATE_F_OVERRIDE_ISROUTER|
2181 NEIGH_UPDATE_F_ISROUTER))
2182 );
2183
Martin KaFai Lau83a09ab2015-05-22 20:56:05 -07002184 nrt = ip6_rt_cache_alloc(rt, &msg->dest, NULL);
David S. Miller38308472011-12-03 18:02:47 -05002185 if (!nrt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002186 goto out;
2187
2188 nrt->rt6i_flags = RTF_GATEWAY|RTF_UP|RTF_DYNAMIC|RTF_CACHE;
2189 if (on_link)
2190 nrt->rt6i_flags &= ~RTF_GATEWAY;
2191
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00002192 nrt->rt6i_gateway = *(struct in6_addr *)neigh->primary_key;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002193
Thomas Graf40e22e82006-08-22 00:00:45 -07002194 if (ip6_ins_rt(nrt))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002195 goto out;
2196
Changli Gaod8d1f302010-06-10 23:31:35 -07002197 netevent.old = &rt->dst;
2198 netevent.new = &nrt->dst;
YOSHIFUJI Hideaki / 吉藤英明71bcdba2013-01-05 16:34:51 +00002199 netevent.daddr = &msg->dest;
YOSHIFUJI Hideaki / 吉藤英明60592832013-01-14 09:28:27 +00002200 netevent.neigh = neigh;
Tom Tucker8d717402006-07-30 20:43:36 -07002201 call_netevent_notifiers(NETEVENT_REDIRECT, &netevent);
2202
David S. Miller38308472011-12-03 18:02:47 -05002203 if (rt->rt6i_flags & RTF_CACHE) {
David S. Miller6e157b62012-07-12 00:05:02 -07002204 rt = (struct rt6_info *) dst_clone(&rt->dst);
Thomas Grafe0a1ad732006-08-22 00:00:21 -07002205 ip6_del_rt(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002206 }
2207
2208out:
David S. Millere8599ff2012-07-11 23:43:53 -07002209 neigh_release(neigh);
David S. Miller6e157b62012-07-12 00:05:02 -07002210}
2211
Linus Torvalds1da177e2005-04-16 15:20:36 -07002212/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002213 * Misc support functions
2214 */
2215
Martin KaFai Lau4b32b5a2015-04-28 13:03:06 -07002216static void rt6_set_from(struct rt6_info *rt, struct rt6_info *from)
2217{
2218 BUG_ON(from->dst.from);
2219
2220 rt->rt6i_flags &= ~RTF_EXPIRES;
2221 dst_hold(&from->dst);
2222 rt->dst.from = &from->dst;
2223 dst_init_metrics(&rt->dst, dst_metrics_ptr(&from->dst), true);
2224}
2225
Martin KaFai Lau83a09ab2015-05-22 20:56:05 -07002226static void ip6_rt_copy_init(struct rt6_info *rt, struct rt6_info *ort)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002227{
Martin KaFai Lau83a09ab2015-05-22 20:56:05 -07002228 rt->dst.input = ort->dst.input;
2229 rt->dst.output = ort->dst.output;
2230 rt->rt6i_dst = ort->rt6i_dst;
2231 rt->dst.error = ort->dst.error;
2232 rt->rt6i_idev = ort->rt6i_idev;
2233 if (rt->rt6i_idev)
2234 in6_dev_hold(rt->rt6i_idev);
2235 rt->dst.lastuse = jiffies;
2236 rt->rt6i_gateway = ort->rt6i_gateway;
2237 rt->rt6i_flags = ort->rt6i_flags;
2238 rt6_set_from(rt, ort);
2239 rt->rt6i_metric = ort->rt6i_metric;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240#ifdef CONFIG_IPV6_SUBTREES
Martin KaFai Lau83a09ab2015-05-22 20:56:05 -07002241 rt->rt6i_src = ort->rt6i_src;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002242#endif
Martin KaFai Lau83a09ab2015-05-22 20:56:05 -07002243 rt->rt6i_prefsrc = ort->rt6i_prefsrc;
2244 rt->rt6i_table = ort->rt6i_table;
Jiri Benc61adedf2015-08-20 13:56:25 +02002245 rt->dst.lwtstate = lwtstate_get(ort->dst.lwtstate);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002246}
2247
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08002248#ifdef CONFIG_IPV6_ROUTE_INFO
Daniel Lezcanoefa2cea2008-03-04 13:46:48 -08002249static struct rt6_info *rt6_get_route_info(struct net *net,
Eric Dumazetb71d1d42011-04-22 04:53:02 +00002250 const struct in6_addr *prefix, int prefixlen,
2251 const struct in6_addr *gwaddr, int ifindex)
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08002252{
2253 struct fib6_node *fn;
2254 struct rt6_info *rt = NULL;
Thomas Grafc71099a2006-08-04 23:20:06 -07002255 struct fib6_table *table;
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08002256
Daniel Lezcanoefa2cea2008-03-04 13:46:48 -08002257 table = fib6_get_table(net, RT6_TABLE_INFO);
David S. Miller38308472011-12-03 18:02:47 -05002258 if (!table)
Thomas Grafc71099a2006-08-04 23:20:06 -07002259 return NULL;
2260
Li RongQing5744dd92012-09-11 21:59:01 +00002261 read_lock_bh(&table->tb6_lock);
Ian Morris67ba4152014-08-24 21:53:10 +01002262 fn = fib6_locate(&table->tb6_root, prefix, prefixlen, NULL, 0);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08002263 if (!fn)
2264 goto out;
2265
Changli Gaod8d1f302010-06-10 23:31:35 -07002266 for (rt = fn->leaf; rt; rt = rt->dst.rt6_next) {
David S. Millerd1918542011-12-28 20:19:20 -05002267 if (rt->dst.dev->ifindex != ifindex)
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08002268 continue;
2269 if ((rt->rt6i_flags & (RTF_ROUTEINFO|RTF_GATEWAY)) != (RTF_ROUTEINFO|RTF_GATEWAY))
2270 continue;
2271 if (!ipv6_addr_equal(&rt->rt6i_gateway, gwaddr))
2272 continue;
Changli Gaod8d1f302010-06-10 23:31:35 -07002273 dst_hold(&rt->dst);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08002274 break;
2275 }
2276out:
Li RongQing5744dd92012-09-11 21:59:01 +00002277 read_unlock_bh(&table->tb6_lock);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08002278 return rt;
2279}
2280
Daniel Lezcanoefa2cea2008-03-04 13:46:48 -08002281static struct rt6_info *rt6_add_route_info(struct net *net,
Eric Dumazetb71d1d42011-04-22 04:53:02 +00002282 const struct in6_addr *prefix, int prefixlen,
2283 const struct in6_addr *gwaddr, int ifindex,
Eric Dumazet95c96172012-04-15 05:58:06 +00002284 unsigned int pref)
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08002285{
Thomas Graf86872cb2006-08-22 00:01:08 -07002286 struct fib6_config cfg = {
Rami Rosen238fc7e2008-02-09 23:43:11 -08002287 .fc_metric = IP6_RT_PRIO_USER,
Thomas Graf86872cb2006-08-22 00:01:08 -07002288 .fc_ifindex = ifindex,
2289 .fc_dst_len = prefixlen,
2290 .fc_flags = RTF_GATEWAY | RTF_ADDRCONF | RTF_ROUTEINFO |
2291 RTF_UP | RTF_PREF(pref),
Eric W. Biederman15e47302012-09-07 20:12:54 +00002292 .fc_nlinfo.portid = 0,
Daniel Lezcanoefa2cea2008-03-04 13:46:48 -08002293 .fc_nlinfo.nlh = NULL,
2294 .fc_nlinfo.nl_net = net,
Thomas Graf86872cb2006-08-22 00:01:08 -07002295 };
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08002296
David Ahernca254492015-10-12 11:47:10 -07002297 cfg.fc_table = l3mdev_fib_table_by_index(net, ifindex) ? : RT6_TABLE_INFO;
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00002298 cfg.fc_dst = *prefix;
2299 cfg.fc_gateway = *gwaddr;
Thomas Graf86872cb2006-08-22 00:01:08 -07002300
YOSHIFUJI Hideakie317da92006-03-20 17:06:42 -08002301 /* We should treat it as a default route if prefix length is 0. */
2302 if (!prefixlen)
Thomas Graf86872cb2006-08-22 00:01:08 -07002303 cfg.fc_flags |= RTF_DEFAULT;
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08002304
Thomas Graf86872cb2006-08-22 00:01:08 -07002305 ip6_route_add(&cfg);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08002306
Daniel Lezcanoefa2cea2008-03-04 13:46:48 -08002307 return rt6_get_route_info(net, prefix, prefixlen, gwaddr, ifindex);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08002308}
2309#endif
2310
Eric Dumazetb71d1d42011-04-22 04:53:02 +00002311struct rt6_info *rt6_get_dflt_router(const struct in6_addr *addr, struct net_device *dev)
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002312{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002313 struct rt6_info *rt;
Thomas Grafc71099a2006-08-04 23:20:06 -07002314 struct fib6_table *table;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002315
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09002316 table = fib6_get_table(dev_net(dev), RT6_TABLE_DFLT);
David S. Miller38308472011-12-03 18:02:47 -05002317 if (!table)
Thomas Grafc71099a2006-08-04 23:20:06 -07002318 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002319
Li RongQing5744dd92012-09-11 21:59:01 +00002320 read_lock_bh(&table->tb6_lock);
Ian Morris67ba4152014-08-24 21:53:10 +01002321 for (rt = table->tb6_root.leaf; rt; rt = rt->dst.rt6_next) {
David S. Millerd1918542011-12-28 20:19:20 -05002322 if (dev == rt->dst.dev &&
YOSHIFUJI Hideaki045927f2006-03-20 17:00:48 -08002323 ((rt->rt6i_flags & (RTF_ADDRCONF | RTF_DEFAULT)) == (RTF_ADDRCONF | RTF_DEFAULT)) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07002324 ipv6_addr_equal(&rt->rt6i_gateway, addr))
2325 break;
2326 }
2327 if (rt)
Changli Gaod8d1f302010-06-10 23:31:35 -07002328 dst_hold(&rt->dst);
Li RongQing5744dd92012-09-11 21:59:01 +00002329 read_unlock_bh(&table->tb6_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002330 return rt;
2331}
2332
Eric Dumazetb71d1d42011-04-22 04:53:02 +00002333struct rt6_info *rt6_add_dflt_router(const struct in6_addr *gwaddr,
YOSHIFUJI Hideakiebacaaa2006-03-20 17:04:53 -08002334 struct net_device *dev,
2335 unsigned int pref)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002336{
Thomas Graf86872cb2006-08-22 00:01:08 -07002337 struct fib6_config cfg = {
David Ahernca254492015-10-12 11:47:10 -07002338 .fc_table = l3mdev_fib_table(dev) ? : RT6_TABLE_DFLT,
Rami Rosen238fc7e2008-02-09 23:43:11 -08002339 .fc_metric = IP6_RT_PRIO_USER,
Thomas Graf86872cb2006-08-22 00:01:08 -07002340 .fc_ifindex = dev->ifindex,
2341 .fc_flags = RTF_GATEWAY | RTF_ADDRCONF | RTF_DEFAULT |
2342 RTF_UP | RTF_EXPIRES | RTF_PREF(pref),
Eric W. Biederman15e47302012-09-07 20:12:54 +00002343 .fc_nlinfo.portid = 0,
Daniel Lezcano55786892008-03-04 13:47:47 -08002344 .fc_nlinfo.nlh = NULL,
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09002345 .fc_nlinfo.nl_net = dev_net(dev),
Thomas Graf86872cb2006-08-22 00:01:08 -07002346 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002347
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00002348 cfg.fc_gateway = *gwaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002349
Thomas Graf86872cb2006-08-22 00:01:08 -07002350 ip6_route_add(&cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002351
Linus Torvalds1da177e2005-04-16 15:20:36 -07002352 return rt6_get_dflt_router(gwaddr, dev);
2353}
2354
Daniel Lezcano7b4da532008-03-04 13:47:14 -08002355void rt6_purge_dflt_routers(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002356{
2357 struct rt6_info *rt;
Thomas Grafc71099a2006-08-04 23:20:06 -07002358 struct fib6_table *table;
2359
2360 /* NOTE: Keep consistent with rt6_get_dflt_router */
Daniel Lezcano7b4da532008-03-04 13:47:14 -08002361 table = fib6_get_table(net, RT6_TABLE_DFLT);
David S. Miller38308472011-12-03 18:02:47 -05002362 if (!table)
Thomas Grafc71099a2006-08-04 23:20:06 -07002363 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002364
2365restart:
Thomas Grafc71099a2006-08-04 23:20:06 -07002366 read_lock_bh(&table->tb6_lock);
Changli Gaod8d1f302010-06-10 23:31:35 -07002367 for (rt = table->tb6_root.leaf; rt; rt = rt->dst.rt6_next) {
Lorenzo Colitti3e8b0ac2013-03-03 20:46:46 +00002368 if (rt->rt6i_flags & (RTF_DEFAULT | RTF_ADDRCONF) &&
2369 (!rt->rt6i_idev || rt->rt6i_idev->cnf.accept_ra != 2)) {
Changli Gaod8d1f302010-06-10 23:31:35 -07002370 dst_hold(&rt->dst);
Thomas Grafc71099a2006-08-04 23:20:06 -07002371 read_unlock_bh(&table->tb6_lock);
Thomas Grafe0a1ad732006-08-22 00:00:21 -07002372 ip6_del_rt(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002373 goto restart;
2374 }
2375 }
Thomas Grafc71099a2006-08-04 23:20:06 -07002376 read_unlock_bh(&table->tb6_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002377}
2378
Daniel Lezcano55786892008-03-04 13:47:47 -08002379static void rtmsg_to_fib6_config(struct net *net,
2380 struct in6_rtmsg *rtmsg,
Thomas Graf86872cb2006-08-22 00:01:08 -07002381 struct fib6_config *cfg)
2382{
2383 memset(cfg, 0, sizeof(*cfg));
2384
David Ahernca254492015-10-12 11:47:10 -07002385 cfg->fc_table = l3mdev_fib_table_by_index(net, rtmsg->rtmsg_ifindex) ?
2386 : RT6_TABLE_MAIN;
Thomas Graf86872cb2006-08-22 00:01:08 -07002387 cfg->fc_ifindex = rtmsg->rtmsg_ifindex;
2388 cfg->fc_metric = rtmsg->rtmsg_metric;
2389 cfg->fc_expires = rtmsg->rtmsg_info;
2390 cfg->fc_dst_len = rtmsg->rtmsg_dst_len;
2391 cfg->fc_src_len = rtmsg->rtmsg_src_len;
2392 cfg->fc_flags = rtmsg->rtmsg_flags;
2393
Daniel Lezcano55786892008-03-04 13:47:47 -08002394 cfg->fc_nlinfo.nl_net = net;
Benjamin Theryf1243c22008-02-26 18:10:03 -08002395
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00002396 cfg->fc_dst = rtmsg->rtmsg_dst;
2397 cfg->fc_src = rtmsg->rtmsg_src;
2398 cfg->fc_gateway = rtmsg->rtmsg_gateway;
Thomas Graf86872cb2006-08-22 00:01:08 -07002399}
2400
Daniel Lezcano55786892008-03-04 13:47:47 -08002401int ipv6_route_ioctl(struct net *net, unsigned int cmd, void __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002402{
Thomas Graf86872cb2006-08-22 00:01:08 -07002403 struct fib6_config cfg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002404 struct in6_rtmsg rtmsg;
2405 int err;
2406
Ian Morris67ba4152014-08-24 21:53:10 +01002407 switch (cmd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002408 case SIOCADDRT: /* Add a route */
2409 case SIOCDELRT: /* Delete a route */
Eric W. Biedermanaf31f412012-11-16 03:03:06 +00002410 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002411 return -EPERM;
2412 err = copy_from_user(&rtmsg, arg,
2413 sizeof(struct in6_rtmsg));
2414 if (err)
2415 return -EFAULT;
Thomas Graf86872cb2006-08-22 00:01:08 -07002416
Daniel Lezcano55786892008-03-04 13:47:47 -08002417 rtmsg_to_fib6_config(net, &rtmsg, &cfg);
Thomas Graf86872cb2006-08-22 00:01:08 -07002418
Linus Torvalds1da177e2005-04-16 15:20:36 -07002419 rtnl_lock();
2420 switch (cmd) {
2421 case SIOCADDRT:
Thomas Graf86872cb2006-08-22 00:01:08 -07002422 err = ip6_route_add(&cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002423 break;
2424 case SIOCDELRT:
Thomas Graf86872cb2006-08-22 00:01:08 -07002425 err = ip6_route_del(&cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002426 break;
2427 default:
2428 err = -EINVAL;
2429 }
2430 rtnl_unlock();
2431
2432 return err;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07002433 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002434
2435 return -EINVAL;
2436}
2437
2438/*
2439 * Drop the packet on the floor
2440 */
2441
Brian Haleyd5fdd6b2009-06-23 04:31:07 -07002442static int ip6_pkt_drop(struct sk_buff *skb, u8 code, int ipstats_mib_noroutes)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002443{
YOSHIFUJI Hideaki612f09e2007-04-13 16:18:02 -07002444 int type;
Eric Dumazetadf30902009-06-02 05:19:30 +00002445 struct dst_entry *dst = skb_dst(skb);
YOSHIFUJI Hideaki612f09e2007-04-13 16:18:02 -07002446 switch (ipstats_mib_noroutes) {
2447 case IPSTATS_MIB_INNOROUTES:
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -07002448 type = ipv6_addr_type(&ipv6_hdr(skb)->daddr);
Ulrich Weber45bb0062010-02-25 23:28:58 +00002449 if (type == IPV6_ADDR_ANY) {
Denis V. Lunev3bd653c2008-10-08 10:54:51 -07002450 IP6_INC_STATS(dev_net(dst->dev), ip6_dst_idev(dst),
2451 IPSTATS_MIB_INADDRERRORS);
YOSHIFUJI Hideaki612f09e2007-04-13 16:18:02 -07002452 break;
2453 }
2454 /* FALLTHROUGH */
2455 case IPSTATS_MIB_OUTNOROUTES:
Denis V. Lunev3bd653c2008-10-08 10:54:51 -07002456 IP6_INC_STATS(dev_net(dst->dev), ip6_dst_idev(dst),
2457 ipstats_mib_noroutes);
YOSHIFUJI Hideaki612f09e2007-04-13 16:18:02 -07002458 break;
2459 }
Alexey Dobriyan3ffe5332010-02-18 08:25:24 +00002460 icmpv6_send(skb, ICMPV6_DEST_UNREACH, code, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002461 kfree_skb(skb);
2462 return 0;
2463}
2464
Thomas Graf9ce8ade2006-10-18 20:46:54 -07002465static int ip6_pkt_discard(struct sk_buff *skb)
2466{
YOSHIFUJI Hideaki612f09e2007-04-13 16:18:02 -07002467 return ip6_pkt_drop(skb, ICMPV6_NOROUTE, IPSTATS_MIB_INNOROUTES);
Thomas Graf9ce8ade2006-10-18 20:46:54 -07002468}
2469
Eric W. Biedermanede20592015-10-07 16:48:47 -05002470static int ip6_pkt_discard_out(struct net *net, struct sock *sk, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002471{
Eric Dumazetadf30902009-06-02 05:19:30 +00002472 skb->dev = skb_dst(skb)->dev;
YOSHIFUJI Hideaki612f09e2007-04-13 16:18:02 -07002473 return ip6_pkt_drop(skb, ICMPV6_NOROUTE, IPSTATS_MIB_OUTNOROUTES);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002474}
2475
Thomas Graf9ce8ade2006-10-18 20:46:54 -07002476static int ip6_pkt_prohibit(struct sk_buff *skb)
2477{
YOSHIFUJI Hideaki612f09e2007-04-13 16:18:02 -07002478 return ip6_pkt_drop(skb, ICMPV6_ADM_PROHIBITED, IPSTATS_MIB_INNOROUTES);
Thomas Graf9ce8ade2006-10-18 20:46:54 -07002479}
2480
Eric W. Biedermanede20592015-10-07 16:48:47 -05002481static int ip6_pkt_prohibit_out(struct net *net, struct sock *sk, struct sk_buff *skb)
Thomas Graf9ce8ade2006-10-18 20:46:54 -07002482{
Eric Dumazetadf30902009-06-02 05:19:30 +00002483 skb->dev = skb_dst(skb)->dev;
YOSHIFUJI Hideaki612f09e2007-04-13 16:18:02 -07002484 return ip6_pkt_drop(skb, ICMPV6_ADM_PROHIBITED, IPSTATS_MIB_OUTNOROUTES);
Thomas Graf9ce8ade2006-10-18 20:46:54 -07002485}
2486
Linus Torvalds1da177e2005-04-16 15:20:36 -07002487/*
2488 * Allocate a dst for local (unicast / anycast) address.
2489 */
2490
2491struct rt6_info *addrconf_dst_alloc(struct inet6_dev *idev,
2492 const struct in6_addr *addr,
David S. Miller8f031512011-12-06 16:48:14 -05002493 bool anycast)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002494{
David Ahernca254492015-10-12 11:47:10 -07002495 u32 tb_id;
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09002496 struct net *net = dev_net(idev->dev);
Hannes Frederic Sowaa3300ef2013-12-07 03:33:45 +01002497 struct rt6_info *rt = ip6_dst_alloc(net, net->loopback_dev,
Martin KaFai Lauad706862015-08-14 11:05:52 -07002498 DST_NOCOUNT);
Hannes Frederic Sowaa3300ef2013-12-07 03:33:45 +01002499 if (!rt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002500 return ERR_PTR(-ENOMEM);
2501
Linus Torvalds1da177e2005-04-16 15:20:36 -07002502 in6_dev_hold(idev);
2503
David S. Miller11d53b42011-06-24 15:23:34 -07002504 rt->dst.flags |= DST_HOST;
Changli Gaod8d1f302010-06-10 23:31:35 -07002505 rt->dst.input = ip6_input;
2506 rt->dst.output = ip6_output;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002507 rt->rt6i_idev = idev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002508
2509 rt->rt6i_flags = RTF_UP | RTF_NONEXTHOP;
YOSHIFUJI Hideaki58c4fb82005-12-21 22:56:42 +09002510 if (anycast)
2511 rt->rt6i_flags |= RTF_ANYCAST;
2512 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002513 rt->rt6i_flags |= RTF_LOCAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002514
Julian Anastasov550bab42013-10-20 15:43:04 +03002515 rt->rt6i_gateway = *addr;
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00002516 rt->rt6i_dst.addr = *addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002517 rt->rt6i_dst.plen = 128;
David Ahernca254492015-10-12 11:47:10 -07002518 tb_id = l3mdev_fib_table(idev->dev) ? : RT6_TABLE_LOCAL;
2519 rt->rt6i_table = fib6_get_table(net, tb_id);
Martin KaFai Lau8e3d5be2015-09-15 14:30:08 -07002520 rt->dst.flags |= DST_NOCACHE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002521
Changli Gaod8d1f302010-06-10 23:31:35 -07002522 atomic_set(&rt->dst.__refcnt, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002523
2524 return rt;
2525}
2526
Daniel Walterc3968a82011-04-13 21:10:57 +00002527int ip6_route_get_saddr(struct net *net,
2528 struct rt6_info *rt,
Eric Dumazetb71d1d42011-04-22 04:53:02 +00002529 const struct in6_addr *daddr,
Daniel Walterc3968a82011-04-13 21:10:57 +00002530 unsigned int prefs,
2531 struct in6_addr *saddr)
2532{
Markus Stenberge16e8882015-05-05 13:36:59 +03002533 struct inet6_dev *idev =
2534 rt ? ip6_dst_idev((struct dst_entry *)rt) : NULL;
Daniel Walterc3968a82011-04-13 21:10:57 +00002535 int err = 0;
Markus Stenberge16e8882015-05-05 13:36:59 +03002536 if (rt && rt->rt6i_prefsrc.plen)
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00002537 *saddr = rt->rt6i_prefsrc.addr;
Daniel Walterc3968a82011-04-13 21:10:57 +00002538 else
2539 err = ipv6_dev_get_saddr(net, idev ? idev->dev : NULL,
2540 daddr, prefs, saddr);
2541 return err;
2542}
2543
2544/* remove deleted ip from prefsrc entries */
2545struct arg_dev_net_ip {
2546 struct net_device *dev;
2547 struct net *net;
2548 struct in6_addr *addr;
2549};
2550
2551static int fib6_remove_prefsrc(struct rt6_info *rt, void *arg)
2552{
2553 struct net_device *dev = ((struct arg_dev_net_ip *)arg)->dev;
2554 struct net *net = ((struct arg_dev_net_ip *)arg)->net;
2555 struct in6_addr *addr = ((struct arg_dev_net_ip *)arg)->addr;
2556
David S. Millerd1918542011-12-28 20:19:20 -05002557 if (((void *)rt->dst.dev == dev || !dev) &&
Daniel Walterc3968a82011-04-13 21:10:57 +00002558 rt != net->ipv6.ip6_null_entry &&
2559 ipv6_addr_equal(addr, &rt->rt6i_prefsrc.addr)) {
2560 /* remove prefsrc entry */
2561 rt->rt6i_prefsrc.plen = 0;
2562 }
2563 return 0;
2564}
2565
2566void rt6_remove_prefsrc(struct inet6_ifaddr *ifp)
2567{
2568 struct net *net = dev_net(ifp->idev->dev);
2569 struct arg_dev_net_ip adni = {
2570 .dev = ifp->idev->dev,
2571 .net = net,
2572 .addr = &ifp->addr,
2573 };
Li RongQing0c3584d2013-12-27 16:32:38 +08002574 fib6_clean_all(net, fib6_remove_prefsrc, &adni);
Daniel Walterc3968a82011-04-13 21:10:57 +00002575}
2576
Duan Jiongbe7a0102014-05-15 15:56:14 +08002577#define RTF_RA_ROUTER (RTF_ADDRCONF | RTF_DEFAULT | RTF_GATEWAY)
2578#define RTF_CACHE_GATEWAY (RTF_GATEWAY | RTF_CACHE)
2579
2580/* Remove routers and update dst entries when gateway turn into host. */
2581static int fib6_clean_tohost(struct rt6_info *rt, void *arg)
2582{
2583 struct in6_addr *gateway = (struct in6_addr *)arg;
2584
2585 if ((((rt->rt6i_flags & RTF_RA_ROUTER) == RTF_RA_ROUTER) ||
2586 ((rt->rt6i_flags & RTF_CACHE_GATEWAY) == RTF_CACHE_GATEWAY)) &&
2587 ipv6_addr_equal(gateway, &rt->rt6i_gateway)) {
2588 return -1;
2589 }
2590 return 0;
2591}
2592
2593void rt6_clean_tohost(struct net *net, struct in6_addr *gateway)
2594{
2595 fib6_clean_all(net, fib6_clean_tohost, gateway);
2596}
2597
Daniel Lezcano8ed67782008-03-04 13:48:30 -08002598struct arg_dev_net {
2599 struct net_device *dev;
2600 struct net *net;
2601};
2602
Linus Torvalds1da177e2005-04-16 15:20:36 -07002603static int fib6_ifdown(struct rt6_info *rt, void *arg)
2604{
stephen hemmingerbc3ef662010-12-16 17:42:40 +00002605 const struct arg_dev_net *adn = arg;
2606 const struct net_device *dev = adn->dev;
Daniel Lezcano8ed67782008-03-04 13:48:30 -08002607
David S. Millerd1918542011-12-28 20:19:20 -05002608 if ((rt->dst.dev == dev || !dev) &&
David S. Millerc159d302011-12-26 15:24:36 -05002609 rt != adn->net->ipv6.ip6_null_entry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002610 return -1;
David S. Millerc159d302011-12-26 15:24:36 -05002611
Linus Torvalds1da177e2005-04-16 15:20:36 -07002612 return 0;
2613}
2614
Daniel Lezcanof3db4852008-03-03 23:27:06 -08002615void rt6_ifdown(struct net *net, struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002616{
Daniel Lezcano8ed67782008-03-04 13:48:30 -08002617 struct arg_dev_net adn = {
2618 .dev = dev,
2619 .net = net,
2620 };
2621
Li RongQing0c3584d2013-12-27 16:32:38 +08002622 fib6_clean_all(net, fib6_ifdown, &adn);
David S. Miller1e493d12008-09-10 17:27:15 -07002623 icmp6_clean_all(fib6_ifdown, &adn);
Eric W. Biedermane332bc62015-10-12 11:02:08 -05002624 if (dev)
2625 rt6_uncached_list_flush_dev(net, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002626}
2627
Eric Dumazet95c96172012-04-15 05:58:06 +00002628struct rt6_mtu_change_arg {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002629 struct net_device *dev;
Eric Dumazet95c96172012-04-15 05:58:06 +00002630 unsigned int mtu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002631};
2632
2633static int rt6_mtu_change_route(struct rt6_info *rt, void *p_arg)
2634{
2635 struct rt6_mtu_change_arg *arg = (struct rt6_mtu_change_arg *) p_arg;
2636 struct inet6_dev *idev;
2637
2638 /* In IPv6 pmtu discovery is not optional,
2639 so that RTAX_MTU lock cannot disable it.
2640 We still use this lock to block changes
2641 caused by addrconf/ndisc.
2642 */
2643
2644 idev = __in6_dev_get(arg->dev);
David S. Miller38308472011-12-03 18:02:47 -05002645 if (!idev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002646 return 0;
2647
2648 /* For administrative MTU increase, there is no way to discover
2649 IPv6 PMTU increase, so PMTU increase should be updated here.
2650 Since RFC 1981 doesn't include administrative MTU increase
2651 update PMTU increase is a MUST. (i.e. jumbo frame)
2652 */
2653 /*
2654 If new MTU is less than route PMTU, this new MTU will be the
2655 lowest MTU in the path, update the route PMTU to reflect PMTU
2656 decreases; if new MTU is greater than route PMTU, and the
2657 old MTU is the lowest MTU in the path, update the route PMTU
2658 to reflect the increase. In this case if the other nodes' MTU
2659 also have the lowest MTU, TOO BIG MESSAGE will be lead to
2660 PMTU discouvery.
2661 */
David S. Millerd1918542011-12-28 20:19:20 -05002662 if (rt->dst.dev == arg->dev &&
Martin KaFai Lau4b32b5a2015-04-28 13:03:06 -07002663 !dst_metric_locked(&rt->dst, RTAX_MTU)) {
2664 if (rt->rt6i_flags & RTF_CACHE) {
2665 /* For RTF_CACHE with rt6i_pmtu == 0
2666 * (i.e. a redirected route),
2667 * the metrics of its rt->dst.from has already
2668 * been updated.
2669 */
2670 if (rt->rt6i_pmtu && rt->rt6i_pmtu > arg->mtu)
2671 rt->rt6i_pmtu = arg->mtu;
2672 } else if (dst_mtu(&rt->dst) >= arg->mtu ||
2673 (dst_mtu(&rt->dst) < arg->mtu &&
2674 dst_mtu(&rt->dst) == idev->cnf.mtu6)) {
2675 dst_metric_set(&rt->dst, RTAX_MTU, arg->mtu);
2676 }
Simon Arlott566cfd82007-07-26 00:09:55 -07002677 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002678 return 0;
2679}
2680
Eric Dumazet95c96172012-04-15 05:58:06 +00002681void rt6_mtu_change(struct net_device *dev, unsigned int mtu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002682{
Thomas Grafc71099a2006-08-04 23:20:06 -07002683 struct rt6_mtu_change_arg arg = {
2684 .dev = dev,
2685 .mtu = mtu,
2686 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002687
Li RongQing0c3584d2013-12-27 16:32:38 +08002688 fib6_clean_all(dev_net(dev), rt6_mtu_change_route, &arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002689}
2690
Patrick McHardyef7c79e2007-06-05 12:38:30 -07002691static const struct nla_policy rtm_ipv6_policy[RTA_MAX+1] = {
Thomas Graf5176f912006-08-26 20:13:18 -07002692 [RTA_GATEWAY] = { .len = sizeof(struct in6_addr) },
Thomas Graf86872cb2006-08-22 00:01:08 -07002693 [RTA_OIF] = { .type = NLA_U32 },
Thomas Grafab364a62006-08-22 00:01:47 -07002694 [RTA_IIF] = { .type = NLA_U32 },
Thomas Graf86872cb2006-08-22 00:01:08 -07002695 [RTA_PRIORITY] = { .type = NLA_U32 },
2696 [RTA_METRICS] = { .type = NLA_NESTED },
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00002697 [RTA_MULTIPATH] = { .len = sizeof(struct rtnexthop) },
Lubomir Rintelc78ba6d2015-03-11 15:39:21 +01002698 [RTA_PREF] = { .type = NLA_U8 },
Roopa Prabhu19e42e42015-07-21 10:43:48 +02002699 [RTA_ENCAP_TYPE] = { .type = NLA_U16 },
2700 [RTA_ENCAP] = { .type = NLA_NESTED },
Thomas Graf86872cb2006-08-22 00:01:08 -07002701};
2702
2703static int rtm_to_fib6_config(struct sk_buff *skb, struct nlmsghdr *nlh,
2704 struct fib6_config *cfg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002705{
Thomas Graf86872cb2006-08-22 00:01:08 -07002706 struct rtmsg *rtm;
2707 struct nlattr *tb[RTA_MAX+1];
Lubomir Rintelc78ba6d2015-03-11 15:39:21 +01002708 unsigned int pref;
Thomas Graf86872cb2006-08-22 00:01:08 -07002709 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002710
Thomas Graf86872cb2006-08-22 00:01:08 -07002711 err = nlmsg_parse(nlh, sizeof(*rtm), tb, RTA_MAX, rtm_ipv6_policy);
2712 if (err < 0)
2713 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002714
Thomas Graf86872cb2006-08-22 00:01:08 -07002715 err = -EINVAL;
2716 rtm = nlmsg_data(nlh);
2717 memset(cfg, 0, sizeof(*cfg));
2718
2719 cfg->fc_table = rtm->rtm_table;
2720 cfg->fc_dst_len = rtm->rtm_dst_len;
2721 cfg->fc_src_len = rtm->rtm_src_len;
2722 cfg->fc_flags = RTF_UP;
2723 cfg->fc_protocol = rtm->rtm_protocol;
Nicolas Dichtelef2c7d72012-09-05 02:12:42 +00002724 cfg->fc_type = rtm->rtm_type;
Thomas Graf86872cb2006-08-22 00:01:08 -07002725
Nicolas Dichtelef2c7d72012-09-05 02:12:42 +00002726 if (rtm->rtm_type == RTN_UNREACHABLE ||
2727 rtm->rtm_type == RTN_BLACKHOLE ||
Nicolas Dichtelb4949ab2012-09-06 05:53:35 +00002728 rtm->rtm_type == RTN_PROHIBIT ||
2729 rtm->rtm_type == RTN_THROW)
Thomas Graf86872cb2006-08-22 00:01:08 -07002730 cfg->fc_flags |= RTF_REJECT;
2731
Maciej Żenczykowskiab79ad12010-09-27 00:07:02 +00002732 if (rtm->rtm_type == RTN_LOCAL)
2733 cfg->fc_flags |= RTF_LOCAL;
2734
Martin KaFai Lau1f56a012015-04-28 13:03:03 -07002735 if (rtm->rtm_flags & RTM_F_CLONED)
2736 cfg->fc_flags |= RTF_CACHE;
2737
Eric W. Biederman15e47302012-09-07 20:12:54 +00002738 cfg->fc_nlinfo.portid = NETLINK_CB(skb).portid;
Thomas Graf86872cb2006-08-22 00:01:08 -07002739 cfg->fc_nlinfo.nlh = nlh;
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09002740 cfg->fc_nlinfo.nl_net = sock_net(skb->sk);
Thomas Graf86872cb2006-08-22 00:01:08 -07002741
2742 if (tb[RTA_GATEWAY]) {
Jiri Benc67b61f62015-03-29 16:59:26 +02002743 cfg->fc_gateway = nla_get_in6_addr(tb[RTA_GATEWAY]);
Thomas Graf86872cb2006-08-22 00:01:08 -07002744 cfg->fc_flags |= RTF_GATEWAY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002745 }
Thomas Graf86872cb2006-08-22 00:01:08 -07002746
2747 if (tb[RTA_DST]) {
2748 int plen = (rtm->rtm_dst_len + 7) >> 3;
2749
2750 if (nla_len(tb[RTA_DST]) < plen)
2751 goto errout;
2752
2753 nla_memcpy(&cfg->fc_dst, tb[RTA_DST], plen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002754 }
Thomas Graf86872cb2006-08-22 00:01:08 -07002755
2756 if (tb[RTA_SRC]) {
2757 int plen = (rtm->rtm_src_len + 7) >> 3;
2758
2759 if (nla_len(tb[RTA_SRC]) < plen)
2760 goto errout;
2761
2762 nla_memcpy(&cfg->fc_src, tb[RTA_SRC], plen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002763 }
Thomas Graf86872cb2006-08-22 00:01:08 -07002764
Daniel Walterc3968a82011-04-13 21:10:57 +00002765 if (tb[RTA_PREFSRC])
Jiri Benc67b61f62015-03-29 16:59:26 +02002766 cfg->fc_prefsrc = nla_get_in6_addr(tb[RTA_PREFSRC]);
Daniel Walterc3968a82011-04-13 21:10:57 +00002767
Thomas Graf86872cb2006-08-22 00:01:08 -07002768 if (tb[RTA_OIF])
2769 cfg->fc_ifindex = nla_get_u32(tb[RTA_OIF]);
2770
2771 if (tb[RTA_PRIORITY])
2772 cfg->fc_metric = nla_get_u32(tb[RTA_PRIORITY]);
2773
2774 if (tb[RTA_METRICS]) {
2775 cfg->fc_mx = nla_data(tb[RTA_METRICS]);
2776 cfg->fc_mx_len = nla_len(tb[RTA_METRICS]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002777 }
Thomas Graf86872cb2006-08-22 00:01:08 -07002778
2779 if (tb[RTA_TABLE])
2780 cfg->fc_table = nla_get_u32(tb[RTA_TABLE]);
2781
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00002782 if (tb[RTA_MULTIPATH]) {
2783 cfg->fc_mp = nla_data(tb[RTA_MULTIPATH]);
2784 cfg->fc_mp_len = nla_len(tb[RTA_MULTIPATH]);
2785 }
2786
Lubomir Rintelc78ba6d2015-03-11 15:39:21 +01002787 if (tb[RTA_PREF]) {
2788 pref = nla_get_u8(tb[RTA_PREF]);
2789 if (pref != ICMPV6_ROUTER_PREF_LOW &&
2790 pref != ICMPV6_ROUTER_PREF_HIGH)
2791 pref = ICMPV6_ROUTER_PREF_MEDIUM;
2792 cfg->fc_flags |= RTF_PREF(pref);
2793 }
2794
Roopa Prabhu19e42e42015-07-21 10:43:48 +02002795 if (tb[RTA_ENCAP])
2796 cfg->fc_encap = tb[RTA_ENCAP];
2797
2798 if (tb[RTA_ENCAP_TYPE])
2799 cfg->fc_encap_type = nla_get_u16(tb[RTA_ENCAP_TYPE]);
2800
Thomas Graf86872cb2006-08-22 00:01:08 -07002801 err = 0;
2802errout:
2803 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002804}
2805
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07002806struct rt6_nh {
2807 struct rt6_info *rt6_info;
2808 struct fib6_config r_cfg;
2809 struct mx6_config mxc;
2810 struct list_head next;
2811};
2812
2813static void ip6_print_replace_route_err(struct list_head *rt6_nh_list)
2814{
2815 struct rt6_nh *nh;
2816
2817 list_for_each_entry(nh, rt6_nh_list, next) {
2818 pr_warn("IPV6: multipath route replace failed (check consistency of installed routes): %pI6 nexthop %pI6 ifi %d\n",
2819 &nh->r_cfg.fc_dst, &nh->r_cfg.fc_gateway,
2820 nh->r_cfg.fc_ifindex);
2821 }
2822}
2823
2824static int ip6_route_info_append(struct list_head *rt6_nh_list,
2825 struct rt6_info *rt, struct fib6_config *r_cfg)
2826{
2827 struct rt6_nh *nh;
2828 struct rt6_info *rtnh;
2829 int err = -EEXIST;
2830
2831 list_for_each_entry(nh, rt6_nh_list, next) {
2832 /* check if rt6_info already exists */
2833 rtnh = nh->rt6_info;
2834
2835 if (rtnh->dst.dev == rt->dst.dev &&
2836 rtnh->rt6i_idev == rt->rt6i_idev &&
2837 ipv6_addr_equal(&rtnh->rt6i_gateway,
2838 &rt->rt6i_gateway))
2839 return err;
2840 }
2841
2842 nh = kzalloc(sizeof(*nh), GFP_KERNEL);
2843 if (!nh)
2844 return -ENOMEM;
2845 nh->rt6_info = rt;
2846 err = ip6_convert_metrics(&nh->mxc, r_cfg);
2847 if (err) {
2848 kfree(nh);
2849 return err;
2850 }
2851 memcpy(&nh->r_cfg, r_cfg, sizeof(*r_cfg));
2852 list_add_tail(&nh->next, rt6_nh_list);
2853
2854 return 0;
2855}
2856
2857static int ip6_route_multipath_add(struct fib6_config *cfg)
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00002858{
2859 struct fib6_config r_cfg;
2860 struct rtnexthop *rtnh;
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07002861 struct rt6_info *rt;
2862 struct rt6_nh *err_nh;
2863 struct rt6_nh *nh, *nh_safe;
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00002864 int remaining;
2865 int attrlen;
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07002866 int err = 1;
2867 int nhn = 0;
2868 int replace = (cfg->fc_nlinfo.nlh &&
2869 (cfg->fc_nlinfo.nlh->nlmsg_flags & NLM_F_REPLACE));
2870 LIST_HEAD(rt6_nh_list);
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00002871
Michal Kubeček35f1b4e2015-05-18 20:53:55 +02002872 remaining = cfg->fc_mp_len;
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00002873 rtnh = (struct rtnexthop *)cfg->fc_mp;
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00002874
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07002875 /* Parse a Multipath Entry and build a list (rt6_nh_list) of
2876 * rt6_info structs per nexthop
2877 */
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00002878 while (rtnh_ok(rtnh, remaining)) {
2879 memcpy(&r_cfg, cfg, sizeof(*cfg));
2880 if (rtnh->rtnh_ifindex)
2881 r_cfg.fc_ifindex = rtnh->rtnh_ifindex;
2882
2883 attrlen = rtnh_attrlen(rtnh);
2884 if (attrlen > 0) {
2885 struct nlattr *nla, *attrs = rtnh_attrs(rtnh);
2886
2887 nla = nla_find(attrs, attrlen, RTA_GATEWAY);
2888 if (nla) {
Jiri Benc67b61f62015-03-29 16:59:26 +02002889 r_cfg.fc_gateway = nla_get_in6_addr(nla);
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00002890 r_cfg.fc_flags |= RTF_GATEWAY;
2891 }
Roopa Prabhu19e42e42015-07-21 10:43:48 +02002892 r_cfg.fc_encap = nla_find(attrs, attrlen, RTA_ENCAP);
2893 nla = nla_find(attrs, attrlen, RTA_ENCAP_TYPE);
2894 if (nla)
2895 r_cfg.fc_encap_type = nla_get_u16(nla);
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00002896 }
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07002897
Roopa Prabhu8c5b83f2015-10-10 08:26:36 -07002898 rt = ip6_route_info_create(&r_cfg);
2899 if (IS_ERR(rt)) {
2900 err = PTR_ERR(rt);
2901 rt = NULL;
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07002902 goto cleanup;
Roopa Prabhu8c5b83f2015-10-10 08:26:36 -07002903 }
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07002904
2905 err = ip6_route_info_append(&rt6_nh_list, rt, &r_cfg);
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00002906 if (err) {
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07002907 dst_free(&rt->dst);
2908 goto cleanup;
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00002909 }
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07002910
2911 rtnh = rtnh_next(rtnh, &remaining);
2912 }
2913
2914 err_nh = NULL;
2915 list_for_each_entry(nh, &rt6_nh_list, next) {
2916 err = __ip6_ins_rt(nh->rt6_info, &cfg->fc_nlinfo, &nh->mxc);
2917 /* nh->rt6_info is used or freed at this point, reset to NULL*/
2918 nh->rt6_info = NULL;
2919 if (err) {
2920 if (replace && nhn)
2921 ip6_print_replace_route_err(&rt6_nh_list);
2922 err_nh = nh;
2923 goto add_errout;
2924 }
2925
Nicolas Dichtel1a724182012-11-01 22:58:22 +00002926 /* Because each route is added like a single route we remove
Michal Kubeček27596472015-05-18 20:54:00 +02002927 * these flags after the first nexthop: if there is a collision,
2928 * we have already failed to add the first nexthop:
2929 * fib6_add_rt2node() has rejected it; when replacing, old
2930 * nexthops have been replaced by first new, the rest should
2931 * be added to it.
Nicolas Dichtel1a724182012-11-01 22:58:22 +00002932 */
Michal Kubeček27596472015-05-18 20:54:00 +02002933 cfg->fc_nlinfo.nlh->nlmsg_flags &= ~(NLM_F_EXCL |
2934 NLM_F_REPLACE);
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07002935 nhn++;
2936 }
2937
2938 goto cleanup;
2939
2940add_errout:
2941 /* Delete routes that were already added */
2942 list_for_each_entry(nh, &rt6_nh_list, next) {
2943 if (err_nh == nh)
2944 break;
2945 ip6_route_del(&nh->r_cfg);
2946 }
2947
2948cleanup:
2949 list_for_each_entry_safe(nh, nh_safe, &rt6_nh_list, next) {
2950 if (nh->rt6_info)
2951 dst_free(&nh->rt6_info->dst);
Wu Fengguang52fe51f2015-09-10 06:57:12 +08002952 kfree(nh->mxc.mx);
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07002953 list_del(&nh->next);
2954 kfree(nh);
2955 }
2956
2957 return err;
2958}
2959
2960static int ip6_route_multipath_del(struct fib6_config *cfg)
2961{
2962 struct fib6_config r_cfg;
2963 struct rtnexthop *rtnh;
2964 int remaining;
2965 int attrlen;
2966 int err = 1, last_err = 0;
2967
2968 remaining = cfg->fc_mp_len;
2969 rtnh = (struct rtnexthop *)cfg->fc_mp;
2970
2971 /* Parse a Multipath Entry */
2972 while (rtnh_ok(rtnh, remaining)) {
2973 memcpy(&r_cfg, cfg, sizeof(*cfg));
2974 if (rtnh->rtnh_ifindex)
2975 r_cfg.fc_ifindex = rtnh->rtnh_ifindex;
2976
2977 attrlen = rtnh_attrlen(rtnh);
2978 if (attrlen > 0) {
2979 struct nlattr *nla, *attrs = rtnh_attrs(rtnh);
2980
2981 nla = nla_find(attrs, attrlen, RTA_GATEWAY);
2982 if (nla) {
2983 nla_memcpy(&r_cfg.fc_gateway, nla, 16);
2984 r_cfg.fc_flags |= RTF_GATEWAY;
2985 }
2986 }
2987 err = ip6_route_del(&r_cfg);
2988 if (err)
2989 last_err = err;
2990
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00002991 rtnh = rtnh_next(rtnh, &remaining);
2992 }
2993
2994 return last_err;
2995}
2996
Ian Morris67ba4152014-08-24 21:53:10 +01002997static int inet6_rtm_delroute(struct sk_buff *skb, struct nlmsghdr *nlh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002998{
Thomas Graf86872cb2006-08-22 00:01:08 -07002999 struct fib6_config cfg;
3000 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003001
Thomas Graf86872cb2006-08-22 00:01:08 -07003002 err = rtm_to_fib6_config(skb, nlh, &cfg);
3003 if (err < 0)
3004 return err;
3005
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00003006 if (cfg.fc_mp)
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003007 return ip6_route_multipath_del(&cfg);
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00003008 else
3009 return ip6_route_del(&cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003010}
3011
Ian Morris67ba4152014-08-24 21:53:10 +01003012static int inet6_rtm_newroute(struct sk_buff *skb, struct nlmsghdr *nlh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003013{
Thomas Graf86872cb2006-08-22 00:01:08 -07003014 struct fib6_config cfg;
3015 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003016
Thomas Graf86872cb2006-08-22 00:01:08 -07003017 err = rtm_to_fib6_config(skb, nlh, &cfg);
3018 if (err < 0)
3019 return err;
3020
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00003021 if (cfg.fc_mp)
Roopa Prabhu6b9ea5a2015-09-08 10:53:04 -07003022 return ip6_route_multipath_add(&cfg);
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00003023 else
3024 return ip6_route_add(&cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003025}
3026
Roopa Prabhu19e42e42015-07-21 10:43:48 +02003027static inline size_t rt6_nlmsg_size(struct rt6_info *rt)
Thomas Graf339bf982006-11-10 14:10:15 -08003028{
3029 return NLMSG_ALIGN(sizeof(struct rtmsg))
3030 + nla_total_size(16) /* RTA_SRC */
3031 + nla_total_size(16) /* RTA_DST */
3032 + nla_total_size(16) /* RTA_GATEWAY */
3033 + nla_total_size(16) /* RTA_PREFSRC */
3034 + nla_total_size(4) /* RTA_TABLE */
3035 + nla_total_size(4) /* RTA_IIF */
3036 + nla_total_size(4) /* RTA_OIF */
3037 + nla_total_size(4) /* RTA_PRIORITY */
Noriaki TAKAMIYA6a2b9ce2007-01-23 22:09:41 -08003038 + RTAX_MAX * nla_total_size(4) /* RTA_METRICS */
Daniel Borkmannea697632015-01-05 23:57:47 +01003039 + nla_total_size(sizeof(struct rta_cacheinfo))
Lubomir Rintelc78ba6d2015-03-11 15:39:21 +01003040 + nla_total_size(TCP_CA_NAME_MAX) /* RTAX_CC_ALGO */
Roopa Prabhu19e42e42015-07-21 10:43:48 +02003041 + nla_total_size(1) /* RTA_PREF */
Jiri Benc61adedf2015-08-20 13:56:25 +02003042 + lwtunnel_get_encap_size(rt->dst.lwtstate);
Thomas Graf339bf982006-11-10 14:10:15 -08003043}
3044
Brian Haley191cd582008-08-14 15:33:21 -07003045static int rt6_fill_node(struct net *net,
3046 struct sk_buff *skb, struct rt6_info *rt,
Jamal Hadi Salim0d51aa82005-06-21 13:51:04 -07003047 struct in6_addr *dst, struct in6_addr *src,
Eric W. Biederman15e47302012-09-07 20:12:54 +00003048 int iif, int type, u32 portid, u32 seq,
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09003049 int prefix, int nowait, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003050{
Martin KaFai Lau4b32b5a2015-04-28 13:03:06 -07003051 u32 metrics[RTAX_MAX];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003052 struct rtmsg *rtm;
Thomas Graf2d7202b2006-08-22 00:01:27 -07003053 struct nlmsghdr *nlh;
Thomas Grafe3703b32006-11-27 09:27:07 -08003054 long expires;
Patrick McHardy9e762a42006-08-10 23:09:48 -07003055 u32 table;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003056
3057 if (prefix) { /* user wants prefix routes only */
3058 if (!(rt->rt6i_flags & RTF_PREFIX_RT)) {
3059 /* success since this is not a prefix route */
3060 return 1;
3061 }
3062 }
3063
Eric W. Biederman15e47302012-09-07 20:12:54 +00003064 nlh = nlmsg_put(skb, portid, seq, type, sizeof(*rtm), flags);
David S. Miller38308472011-12-03 18:02:47 -05003065 if (!nlh)
Patrick McHardy26932562007-01-31 23:16:40 -08003066 return -EMSGSIZE;
Thomas Graf2d7202b2006-08-22 00:01:27 -07003067
3068 rtm = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003069 rtm->rtm_family = AF_INET6;
3070 rtm->rtm_dst_len = rt->rt6i_dst.plen;
3071 rtm->rtm_src_len = rt->rt6i_src.plen;
3072 rtm->rtm_tos = 0;
Thomas Grafc71099a2006-08-04 23:20:06 -07003073 if (rt->rt6i_table)
Patrick McHardy9e762a42006-08-10 23:09:48 -07003074 table = rt->rt6i_table->tb6_id;
Thomas Grafc71099a2006-08-04 23:20:06 -07003075 else
Patrick McHardy9e762a42006-08-10 23:09:48 -07003076 table = RT6_TABLE_UNSPEC;
3077 rtm->rtm_table = table;
David S. Millerc78679e2012-04-01 20:27:33 -04003078 if (nla_put_u32(skb, RTA_TABLE, table))
3079 goto nla_put_failure;
Nicolas Dichtelef2c7d72012-09-05 02:12:42 +00003080 if (rt->rt6i_flags & RTF_REJECT) {
3081 switch (rt->dst.error) {
3082 case -EINVAL:
3083 rtm->rtm_type = RTN_BLACKHOLE;
3084 break;
3085 case -EACCES:
3086 rtm->rtm_type = RTN_PROHIBIT;
3087 break;
Nicolas Dichtelb4949ab2012-09-06 05:53:35 +00003088 case -EAGAIN:
3089 rtm->rtm_type = RTN_THROW;
3090 break;
Nicolas Dichtelef2c7d72012-09-05 02:12:42 +00003091 default:
3092 rtm->rtm_type = RTN_UNREACHABLE;
3093 break;
3094 }
3095 }
David S. Miller38308472011-12-03 18:02:47 -05003096 else if (rt->rt6i_flags & RTF_LOCAL)
Maciej Żenczykowskiab79ad12010-09-27 00:07:02 +00003097 rtm->rtm_type = RTN_LOCAL;
David S. Millerd1918542011-12-28 20:19:20 -05003098 else if (rt->dst.dev && (rt->dst.dev->flags & IFF_LOOPBACK))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003099 rtm->rtm_type = RTN_LOCAL;
3100 else
3101 rtm->rtm_type = RTN_UNICAST;
3102 rtm->rtm_flags = 0;
Andy Gospodarek35103d12015-08-13 10:39:01 -04003103 if (!netif_carrier_ok(rt->dst.dev)) {
Andy Gospodarekcea45e22015-08-13 10:39:00 -04003104 rtm->rtm_flags |= RTNH_F_LINKDOWN;
Andy Gospodarek35103d12015-08-13 10:39:01 -04003105 if (rt->rt6i_idev->cnf.ignore_routes_with_linkdown)
3106 rtm->rtm_flags |= RTNH_F_DEAD;
3107 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003108 rtm->rtm_scope = RT_SCOPE_UNIVERSE;
3109 rtm->rtm_protocol = rt->rt6i_protocol;
David S. Miller38308472011-12-03 18:02:47 -05003110 if (rt->rt6i_flags & RTF_DYNAMIC)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003111 rtm->rtm_protocol = RTPROT_REDIRECT;
Denis Ovsienkof0396f602012-07-10 04:45:50 +00003112 else if (rt->rt6i_flags & RTF_ADDRCONF) {
3113 if (rt->rt6i_flags & (RTF_DEFAULT | RTF_ROUTEINFO))
3114 rtm->rtm_protocol = RTPROT_RA;
3115 else
3116 rtm->rtm_protocol = RTPROT_KERNEL;
3117 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003118
David S. Miller38308472011-12-03 18:02:47 -05003119 if (rt->rt6i_flags & RTF_CACHE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003120 rtm->rtm_flags |= RTM_F_CLONED;
3121
3122 if (dst) {
Jiri Benc930345e2015-03-29 16:59:25 +02003123 if (nla_put_in6_addr(skb, RTA_DST, dst))
David S. Millerc78679e2012-04-01 20:27:33 -04003124 goto nla_put_failure;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003125 rtm->rtm_dst_len = 128;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003126 } else if (rtm->rtm_dst_len)
Jiri Benc930345e2015-03-29 16:59:25 +02003127 if (nla_put_in6_addr(skb, RTA_DST, &rt->rt6i_dst.addr))
David S. Millerc78679e2012-04-01 20:27:33 -04003128 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003129#ifdef CONFIG_IPV6_SUBTREES
3130 if (src) {
Jiri Benc930345e2015-03-29 16:59:25 +02003131 if (nla_put_in6_addr(skb, RTA_SRC, src))
David S. Millerc78679e2012-04-01 20:27:33 -04003132 goto nla_put_failure;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003133 rtm->rtm_src_len = 128;
David S. Millerc78679e2012-04-01 20:27:33 -04003134 } else if (rtm->rtm_src_len &&
Jiri Benc930345e2015-03-29 16:59:25 +02003135 nla_put_in6_addr(skb, RTA_SRC, &rt->rt6i_src.addr))
David S. Millerc78679e2012-04-01 20:27:33 -04003136 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003137#endif
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09003138 if (iif) {
3139#ifdef CONFIG_IPV6_MROUTE
3140 if (ipv6_addr_is_multicast(&rt->rt6i_dst.addr)) {
Benjamin Thery8229efd2008-12-10 16:30:15 -08003141 int err = ip6mr_get_route(net, skb, rtm, nowait);
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09003142 if (err <= 0) {
3143 if (!nowait) {
3144 if (err == 0)
3145 return 0;
3146 goto nla_put_failure;
3147 } else {
3148 if (err == -EMSGSIZE)
3149 goto nla_put_failure;
3150 }
3151 }
3152 } else
3153#endif
David S. Millerc78679e2012-04-01 20:27:33 -04003154 if (nla_put_u32(skb, RTA_IIF, iif))
3155 goto nla_put_failure;
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09003156 } else if (dst) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003157 struct in6_addr saddr_buf;
David S. Millerc78679e2012-04-01 20:27:33 -04003158 if (ip6_route_get_saddr(net, rt, dst, 0, &saddr_buf) == 0 &&
Jiri Benc930345e2015-03-29 16:59:25 +02003159 nla_put_in6_addr(skb, RTA_PREFSRC, &saddr_buf))
David S. Millerc78679e2012-04-01 20:27:33 -04003160 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003161 }
Thomas Graf2d7202b2006-08-22 00:01:27 -07003162
Daniel Walterc3968a82011-04-13 21:10:57 +00003163 if (rt->rt6i_prefsrc.plen) {
3164 struct in6_addr saddr_buf;
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00003165 saddr_buf = rt->rt6i_prefsrc.addr;
Jiri Benc930345e2015-03-29 16:59:25 +02003166 if (nla_put_in6_addr(skb, RTA_PREFSRC, &saddr_buf))
David S. Millerc78679e2012-04-01 20:27:33 -04003167 goto nla_put_failure;
Daniel Walterc3968a82011-04-13 21:10:57 +00003168 }
3169
Martin KaFai Lau4b32b5a2015-04-28 13:03:06 -07003170 memcpy(metrics, dst_metrics_ptr(&rt->dst), sizeof(metrics));
3171 if (rt->rt6i_pmtu)
3172 metrics[RTAX_MTU - 1] = rt->rt6i_pmtu;
3173 if (rtnetlink_put_metrics(skb, metrics) < 0)
Thomas Graf2d7202b2006-08-22 00:01:27 -07003174 goto nla_put_failure;
3175
YOSHIFUJI Hideaki / 吉藤英明dd0cbf22013-01-17 12:53:15 +00003176 if (rt->rt6i_flags & RTF_GATEWAY) {
Jiri Benc930345e2015-03-29 16:59:25 +02003177 if (nla_put_in6_addr(skb, RTA_GATEWAY, &rt->rt6i_gateway) < 0)
Eric Dumazet94f826b2012-03-27 09:53:52 +00003178 goto nla_put_failure;
Eric Dumazet94f826b2012-03-27 09:53:52 +00003179 }
Thomas Graf2d7202b2006-08-22 00:01:27 -07003180
David S. Millerc78679e2012-04-01 20:27:33 -04003181 if (rt->dst.dev &&
3182 nla_put_u32(skb, RTA_OIF, rt->dst.dev->ifindex))
3183 goto nla_put_failure;
3184 if (nla_put_u32(skb, RTA_PRIORITY, rt->rt6i_metric))
3185 goto nla_put_failure;
Li Wei82539472012-07-29 16:01:30 +00003186
3187 expires = (rt->rt6i_flags & RTF_EXPIRES) ? rt->dst.expires - jiffies : 0;
YOSHIFUJI Hideaki69cdf8f2008-05-19 16:55:13 -07003188
David S. Miller87a50692012-07-10 05:06:14 -07003189 if (rtnl_put_cacheinfo(skb, &rt->dst, 0, expires, rt->dst.error) < 0)
Thomas Grafe3703b32006-11-27 09:27:07 -08003190 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003191
Lubomir Rintelc78ba6d2015-03-11 15:39:21 +01003192 if (nla_put_u8(skb, RTA_PREF, IPV6_EXTRACT_PREF(rt->rt6i_flags)))
3193 goto nla_put_failure;
3194
Jiri Benc61adedf2015-08-20 13:56:25 +02003195 lwtunnel_fill_encap(skb, rt->dst.lwtstate);
Roopa Prabhu19e42e42015-07-21 10:43:48 +02003196
Johannes Berg053c0952015-01-16 22:09:00 +01003197 nlmsg_end(skb, nlh);
3198 return 0;
Thomas Graf2d7202b2006-08-22 00:01:27 -07003199
3200nla_put_failure:
Patrick McHardy26932562007-01-31 23:16:40 -08003201 nlmsg_cancel(skb, nlh);
3202 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003203}
3204
Patrick McHardy1b43af52006-08-10 23:11:17 -07003205int rt6_dump_route(struct rt6_info *rt, void *p_arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003206{
3207 struct rt6_rtnl_dump_arg *arg = (struct rt6_rtnl_dump_arg *) p_arg;
3208 int prefix;
3209
Thomas Graf2d7202b2006-08-22 00:01:27 -07003210 if (nlmsg_len(arg->cb->nlh) >= sizeof(struct rtmsg)) {
3211 struct rtmsg *rtm = nlmsg_data(arg->cb->nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003212 prefix = (rtm->rtm_flags & RTM_F_PREFIX) != 0;
3213 } else
3214 prefix = 0;
3215
Brian Haley191cd582008-08-14 15:33:21 -07003216 return rt6_fill_node(arg->net,
3217 arg->skb, rt, NULL, NULL, 0, RTM_NEWROUTE,
Eric W. Biederman15e47302012-09-07 20:12:54 +00003218 NETLINK_CB(arg->cb->skb).portid, arg->cb->nlh->nlmsg_seq,
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09003219 prefix, 0, NLM_F_MULTI);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003220}
3221
Ian Morris67ba4152014-08-24 21:53:10 +01003222static int inet6_rtm_getroute(struct sk_buff *in_skb, struct nlmsghdr *nlh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003223{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09003224 struct net *net = sock_net(in_skb->sk);
Thomas Grafab364a62006-08-22 00:01:47 -07003225 struct nlattr *tb[RTA_MAX+1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003226 struct rt6_info *rt;
Thomas Grafab364a62006-08-22 00:01:47 -07003227 struct sk_buff *skb;
3228 struct rtmsg *rtm;
David S. Miller4c9483b2011-03-12 16:22:43 -05003229 struct flowi6 fl6;
Shmulik Ladkani72331bc2012-04-01 04:03:45 +00003230 int err, iif = 0, oif = 0;
Thomas Grafab364a62006-08-22 00:01:47 -07003231
3232 err = nlmsg_parse(nlh, sizeof(*rtm), tb, RTA_MAX, rtm_ipv6_policy);
3233 if (err < 0)
3234 goto errout;
3235
3236 err = -EINVAL;
David S. Miller4c9483b2011-03-12 16:22:43 -05003237 memset(&fl6, 0, sizeof(fl6));
Thomas Grafab364a62006-08-22 00:01:47 -07003238
3239 if (tb[RTA_SRC]) {
3240 if (nla_len(tb[RTA_SRC]) < sizeof(struct in6_addr))
3241 goto errout;
3242
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00003243 fl6.saddr = *(struct in6_addr *)nla_data(tb[RTA_SRC]);
Thomas Grafab364a62006-08-22 00:01:47 -07003244 }
3245
3246 if (tb[RTA_DST]) {
3247 if (nla_len(tb[RTA_DST]) < sizeof(struct in6_addr))
3248 goto errout;
3249
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00003250 fl6.daddr = *(struct in6_addr *)nla_data(tb[RTA_DST]);
Thomas Grafab364a62006-08-22 00:01:47 -07003251 }
3252
3253 if (tb[RTA_IIF])
3254 iif = nla_get_u32(tb[RTA_IIF]);
3255
3256 if (tb[RTA_OIF])
Shmulik Ladkani72331bc2012-04-01 04:03:45 +00003257 oif = nla_get_u32(tb[RTA_OIF]);
Thomas Grafab364a62006-08-22 00:01:47 -07003258
Lorenzo Colitti2e47b292014-05-15 16:38:41 -07003259 if (tb[RTA_MARK])
3260 fl6.flowi6_mark = nla_get_u32(tb[RTA_MARK]);
3261
Thomas Grafab364a62006-08-22 00:01:47 -07003262 if (iif) {
3263 struct net_device *dev;
Shmulik Ladkani72331bc2012-04-01 04:03:45 +00003264 int flags = 0;
3265
Daniel Lezcano55786892008-03-04 13:47:47 -08003266 dev = __dev_get_by_index(net, iif);
Thomas Grafab364a62006-08-22 00:01:47 -07003267 if (!dev) {
3268 err = -ENODEV;
3269 goto errout;
3270 }
Shmulik Ladkani72331bc2012-04-01 04:03:45 +00003271
3272 fl6.flowi6_iif = iif;
3273
3274 if (!ipv6_addr_any(&fl6.saddr))
3275 flags |= RT6_LOOKUP_F_HAS_SADDR;
3276
3277 rt = (struct rt6_info *)ip6_route_input_lookup(net, dev, &fl6,
3278 flags);
3279 } else {
3280 fl6.flowi6_oif = oif;
3281
David Ahernca254492015-10-12 11:47:10 -07003282 if (netif_index_is_l3_master(net, oif)) {
3283 fl6.flowi6_flags = FLOWI_FLAG_L3MDEV_SRC |
3284 FLOWI_FLAG_SKIP_NH_OIF;
3285 }
3286
Shmulik Ladkani72331bc2012-04-01 04:03:45 +00003287 rt = (struct rt6_info *)ip6_route_output(net, NULL, &fl6);
Thomas Grafab364a62006-08-22 00:01:47 -07003288 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003289
3290 skb = alloc_skb(NLMSG_GOODSIZE, GFP_KERNEL);
David S. Miller38308472011-12-03 18:02:47 -05003291 if (!skb) {
Amerigo Wang94e187c2012-10-29 00:13:19 +00003292 ip6_rt_put(rt);
Thomas Grafab364a62006-08-22 00:01:47 -07003293 err = -ENOBUFS;
3294 goto errout;
3295 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003296
3297 /* Reserve room for dummy headers, this skb can pass
3298 through good chunk of routing engine.
3299 */
Arnaldo Carvalho de Melo459a98e2007-03-19 15:30:44 -07003300 skb_reset_mac_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003301 skb_reserve(skb, MAX_HEADER + sizeof(struct ipv6hdr));
3302
Changli Gaod8d1f302010-06-10 23:31:35 -07003303 skb_dst_set(skb, &rt->dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003304
David S. Miller4c9483b2011-03-12 16:22:43 -05003305 err = rt6_fill_node(net, skb, rt, &fl6.daddr, &fl6.saddr, iif,
Eric W. Biederman15e47302012-09-07 20:12:54 +00003306 RTM_NEWROUTE, NETLINK_CB(in_skb).portid,
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09003307 nlh->nlmsg_seq, 0, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003308 if (err < 0) {
Thomas Grafab364a62006-08-22 00:01:47 -07003309 kfree_skb(skb);
3310 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003311 }
3312
Eric W. Biederman15e47302012-09-07 20:12:54 +00003313 err = rtnl_unicast(skb, net, NETLINK_CB(in_skb).portid);
Thomas Grafab364a62006-08-22 00:01:47 -07003314errout:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003315 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003316}
3317
Roopa Prabhu37a1d362015-09-13 10:18:33 -07003318void inet6_rt_notify(int event, struct rt6_info *rt, struct nl_info *info,
3319 unsigned int nlm_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003320{
3321 struct sk_buff *skb;
Daniel Lezcano55786892008-03-04 13:47:47 -08003322 struct net *net = info->nl_net;
Denis V. Lunev528c4ce2007-12-13 09:45:12 -08003323 u32 seq;
3324 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003325
Denis V. Lunev528c4ce2007-12-13 09:45:12 -08003326 err = -ENOBUFS;
David S. Miller38308472011-12-03 18:02:47 -05003327 seq = info->nlh ? info->nlh->nlmsg_seq : 0;
Thomas Graf86872cb2006-08-22 00:01:08 -07003328
Roopa Prabhu19e42e42015-07-21 10:43:48 +02003329 skb = nlmsg_new(rt6_nlmsg_size(rt), gfp_any());
David S. Miller38308472011-12-03 18:02:47 -05003330 if (!skb)
Thomas Graf21713eb2006-08-15 00:35:24 -07003331 goto errout;
3332
Brian Haley191cd582008-08-14 15:33:21 -07003333 err = rt6_fill_node(net, skb, rt, NULL, NULL, 0,
Roopa Prabhu37a1d362015-09-13 10:18:33 -07003334 event, info->portid, seq, 0, 0, nlm_flags);
Patrick McHardy26932562007-01-31 23:16:40 -08003335 if (err < 0) {
3336 /* -EMSGSIZE implies BUG in rt6_nlmsg_size() */
3337 WARN_ON(err == -EMSGSIZE);
3338 kfree_skb(skb);
3339 goto errout;
3340 }
Eric W. Biederman15e47302012-09-07 20:12:54 +00003341 rtnl_notify(skb, net, info->portid, RTNLGRP_IPV6_ROUTE,
Pablo Neira Ayuso1ce85fe2009-02-24 23:18:28 -08003342 info->nlh, gfp_any());
3343 return;
Thomas Graf21713eb2006-08-15 00:35:24 -07003344errout:
3345 if (err < 0)
Daniel Lezcano55786892008-03-04 13:47:47 -08003346 rtnl_set_sk_err(net, RTNLGRP_IPV6_ROUTE, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003347}
3348
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003349static int ip6_route_dev_notify(struct notifier_block *this,
Jiri Pirko351638e2013-05-28 01:30:21 +00003350 unsigned long event, void *ptr)
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003351{
Jiri Pirko351638e2013-05-28 01:30:21 +00003352 struct net_device *dev = netdev_notifier_info_to_dev(ptr);
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09003353 struct net *net = dev_net(dev);
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003354
3355 if (event == NETDEV_REGISTER && (dev->flags & IFF_LOOPBACK)) {
Changli Gaod8d1f302010-06-10 23:31:35 -07003356 net->ipv6.ip6_null_entry->dst.dev = dev;
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003357 net->ipv6.ip6_null_entry->rt6i_idev = in6_dev_get(dev);
3358#ifdef CONFIG_IPV6_MULTIPLE_TABLES
Changli Gaod8d1f302010-06-10 23:31:35 -07003359 net->ipv6.ip6_prohibit_entry->dst.dev = dev;
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003360 net->ipv6.ip6_prohibit_entry->rt6i_idev = in6_dev_get(dev);
Changli Gaod8d1f302010-06-10 23:31:35 -07003361 net->ipv6.ip6_blk_hole_entry->dst.dev = dev;
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003362 net->ipv6.ip6_blk_hole_entry->rt6i_idev = in6_dev_get(dev);
3363#endif
3364 }
3365
3366 return NOTIFY_OK;
3367}
3368
Linus Torvalds1da177e2005-04-16 15:20:36 -07003369/*
3370 * /proc
3371 */
3372
3373#ifdef CONFIG_PROC_FS
3374
Alexey Dobriyan33120b32007-11-06 05:27:11 -08003375static const struct file_operations ipv6_route_proc_fops = {
3376 .owner = THIS_MODULE,
3377 .open = ipv6_route_open,
3378 .read = seq_read,
3379 .llseek = seq_lseek,
Hannes Frederic Sowa8d2ca1d2013-09-21 16:55:59 +02003380 .release = seq_release_net,
Alexey Dobriyan33120b32007-11-06 05:27:11 -08003381};
3382
Linus Torvalds1da177e2005-04-16 15:20:36 -07003383static int rt6_stats_seq_show(struct seq_file *seq, void *v)
3384{
Daniel Lezcano69ddb802008-03-04 13:46:23 -08003385 struct net *net = (struct net *)seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003386 seq_printf(seq, "%04x %04x %04x %04x %04x %04x %04x\n",
Daniel Lezcano69ddb802008-03-04 13:46:23 -08003387 net->ipv6.rt6_stats->fib_nodes,
3388 net->ipv6.rt6_stats->fib_route_nodes,
3389 net->ipv6.rt6_stats->fib_rt_alloc,
3390 net->ipv6.rt6_stats->fib_rt_entries,
3391 net->ipv6.rt6_stats->fib_rt_cache,
Eric Dumazetfc66f952010-10-08 06:37:34 +00003392 dst_entries_get_slow(&net->ipv6.ip6_dst_ops),
Daniel Lezcano69ddb802008-03-04 13:46:23 -08003393 net->ipv6.rt6_stats->fib_discarded_routes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003394
3395 return 0;
3396}
3397
3398static int rt6_stats_seq_open(struct inode *inode, struct file *file)
3399{
Pavel Emelyanovde05c552008-07-18 04:07:21 -07003400 return single_open_net(inode, file, rt6_stats_seq_show);
Daniel Lezcano69ddb802008-03-04 13:46:23 -08003401}
3402
Arjan van de Ven9a321442007-02-12 00:55:35 -08003403static const struct file_operations rt6_stats_seq_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003404 .owner = THIS_MODULE,
3405 .open = rt6_stats_seq_open,
3406 .read = seq_read,
3407 .llseek = seq_lseek,
Pavel Emelyanovb6fcbdb2008-07-18 04:07:44 -07003408 .release = single_release_net,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003409};
3410#endif /* CONFIG_PROC_FS */
3411
3412#ifdef CONFIG_SYSCTL
3413
Linus Torvalds1da177e2005-04-16 15:20:36 -07003414static
Joe Perchesfe2c6332013-06-11 23:04:25 -07003415int ipv6_sysctl_rtcache_flush(struct ctl_table *ctl, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003416 void __user *buffer, size_t *lenp, loff_t *ppos)
3417{
Lucian Adrian Grijincuc486da32011-02-24 19:48:03 +00003418 struct net *net;
3419 int delay;
3420 if (!write)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003421 return -EINVAL;
Lucian Adrian Grijincuc486da32011-02-24 19:48:03 +00003422
3423 net = (struct net *)ctl->extra1;
3424 delay = net->ipv6.sysctl.flush_delay;
3425 proc_dointvec(ctl, write, buffer, lenp, ppos);
Michal Kubeček2ac3ac82013-08-01 10:04:14 +02003426 fib6_run_gc(delay <= 0 ? 0 : (unsigned long)delay, net, delay > 0);
Lucian Adrian Grijincuc486da32011-02-24 19:48:03 +00003427 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003428}
3429
Joe Perchesfe2c6332013-06-11 23:04:25 -07003430struct ctl_table ipv6_route_table_template[] = {
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003431 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003432 .procname = "flush",
Daniel Lezcano49905092008-01-10 03:01:01 -08003433 .data = &init_net.ipv6.sysctl.flush_delay,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003434 .maxlen = sizeof(int),
Dave Jones89c8b3a12005-04-28 12:11:49 -07003435 .mode = 0200,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08003436 .proc_handler = ipv6_sysctl_rtcache_flush
Linus Torvalds1da177e2005-04-16 15:20:36 -07003437 },
3438 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003439 .procname = "gc_thresh",
Daniel Lezcano9a7ec3a2008-03-04 13:48:53 -08003440 .data = &ip6_dst_ops_template.gc_thresh,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003441 .maxlen = sizeof(int),
3442 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08003443 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003444 },
3445 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003446 .procname = "max_size",
Daniel Lezcano49905092008-01-10 03:01:01 -08003447 .data = &init_net.ipv6.sysctl.ip6_rt_max_size,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003448 .maxlen = sizeof(int),
3449 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08003450 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003451 },
3452 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003453 .procname = "gc_min_interval",
Daniel Lezcano49905092008-01-10 03:01:01 -08003454 .data = &init_net.ipv6.sysctl.ip6_rt_gc_min_interval,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003455 .maxlen = sizeof(int),
3456 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08003457 .proc_handler = proc_dointvec_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003458 },
3459 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003460 .procname = "gc_timeout",
Daniel Lezcano49905092008-01-10 03:01:01 -08003461 .data = &init_net.ipv6.sysctl.ip6_rt_gc_timeout,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003462 .maxlen = sizeof(int),
3463 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08003464 .proc_handler = proc_dointvec_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003465 },
3466 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003467 .procname = "gc_interval",
Daniel Lezcano49905092008-01-10 03:01:01 -08003468 .data = &init_net.ipv6.sysctl.ip6_rt_gc_interval,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003469 .maxlen = sizeof(int),
3470 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08003471 .proc_handler = proc_dointvec_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003472 },
3473 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003474 .procname = "gc_elasticity",
Daniel Lezcano49905092008-01-10 03:01:01 -08003475 .data = &init_net.ipv6.sysctl.ip6_rt_gc_elasticity,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003476 .maxlen = sizeof(int),
3477 .mode = 0644,
Min Zhangf3d3f612010-08-14 22:42:51 -07003478 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003479 },
3480 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003481 .procname = "mtu_expires",
Daniel Lezcano49905092008-01-10 03:01:01 -08003482 .data = &init_net.ipv6.sysctl.ip6_rt_mtu_expires,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003483 .maxlen = sizeof(int),
3484 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08003485 .proc_handler = proc_dointvec_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003486 },
3487 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003488 .procname = "min_adv_mss",
Daniel Lezcano49905092008-01-10 03:01:01 -08003489 .data = &init_net.ipv6.sysctl.ip6_rt_min_advmss,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003490 .maxlen = sizeof(int),
3491 .mode = 0644,
Min Zhangf3d3f612010-08-14 22:42:51 -07003492 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003493 },
3494 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003495 .procname = "gc_min_interval_ms",
Daniel Lezcano49905092008-01-10 03:01:01 -08003496 .data = &init_net.ipv6.sysctl.ip6_rt_gc_min_interval,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003497 .maxlen = sizeof(int),
3498 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08003499 .proc_handler = proc_dointvec_ms_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003500 },
Eric W. Biedermanf8572d82009-11-05 13:32:03 -08003501 { }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003502};
3503
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00003504struct ctl_table * __net_init ipv6_route_sysctl_init(struct net *net)
Daniel Lezcano760f2d02008-01-10 02:53:43 -08003505{
3506 struct ctl_table *table;
3507
3508 table = kmemdup(ipv6_route_table_template,
3509 sizeof(ipv6_route_table_template),
3510 GFP_KERNEL);
YOSHIFUJI Hideaki5ee09102008-02-28 00:24:28 +09003511
3512 if (table) {
3513 table[0].data = &net->ipv6.sysctl.flush_delay;
Lucian Adrian Grijincuc486da32011-02-24 19:48:03 +00003514 table[0].extra1 = net;
Alexey Dobriyan86393e52009-08-29 01:34:49 +00003515 table[1].data = &net->ipv6.ip6_dst_ops.gc_thresh;
YOSHIFUJI Hideaki5ee09102008-02-28 00:24:28 +09003516 table[2].data = &net->ipv6.sysctl.ip6_rt_max_size;
3517 table[3].data = &net->ipv6.sysctl.ip6_rt_gc_min_interval;
3518 table[4].data = &net->ipv6.sysctl.ip6_rt_gc_timeout;
3519 table[5].data = &net->ipv6.sysctl.ip6_rt_gc_interval;
3520 table[6].data = &net->ipv6.sysctl.ip6_rt_gc_elasticity;
3521 table[7].data = &net->ipv6.sysctl.ip6_rt_mtu_expires;
3522 table[8].data = &net->ipv6.sysctl.ip6_rt_min_advmss;
Alexey Dobriyan9c69fab2009-12-18 20:11:03 -08003523 table[9].data = &net->ipv6.sysctl.ip6_rt_gc_min_interval;
Eric W. Biederman464dc802012-11-16 03:02:59 +00003524
3525 /* Don't export sysctls to unprivileged users */
3526 if (net->user_ns != &init_user_ns)
3527 table[0].procname = NULL;
YOSHIFUJI Hideaki5ee09102008-02-28 00:24:28 +09003528 }
3529
Daniel Lezcano760f2d02008-01-10 02:53:43 -08003530 return table;
3531}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003532#endif
3533
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00003534static int __net_init ip6_route_net_init(struct net *net)
Daniel Lezcanocdb18762008-03-04 13:45:33 -08003535{
Pavel Emelyanov633d424b2008-04-21 14:25:23 -07003536 int ret = -ENOMEM;
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003537
Alexey Dobriyan86393e52009-08-29 01:34:49 +00003538 memcpy(&net->ipv6.ip6_dst_ops, &ip6_dst_ops_template,
3539 sizeof(net->ipv6.ip6_dst_ops));
Benjamin Theryf2fc6a52008-03-04 13:49:23 -08003540
Eric Dumazetfc66f952010-10-08 06:37:34 +00003541 if (dst_entries_init(&net->ipv6.ip6_dst_ops) < 0)
3542 goto out_ip6_dst_ops;
3543
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003544 net->ipv6.ip6_null_entry = kmemdup(&ip6_null_entry_template,
3545 sizeof(*net->ipv6.ip6_null_entry),
3546 GFP_KERNEL);
3547 if (!net->ipv6.ip6_null_entry)
Eric Dumazetfc66f952010-10-08 06:37:34 +00003548 goto out_ip6_dst_entries;
Changli Gaod8d1f302010-06-10 23:31:35 -07003549 net->ipv6.ip6_null_entry->dst.path =
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003550 (struct dst_entry *)net->ipv6.ip6_null_entry;
Changli Gaod8d1f302010-06-10 23:31:35 -07003551 net->ipv6.ip6_null_entry->dst.ops = &net->ipv6.ip6_dst_ops;
David S. Miller62fa8a82011-01-26 20:51:05 -08003552 dst_init_metrics(&net->ipv6.ip6_null_entry->dst,
3553 ip6_template_metrics, true);
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003554
3555#ifdef CONFIG_IPV6_MULTIPLE_TABLES
3556 net->ipv6.ip6_prohibit_entry = kmemdup(&ip6_prohibit_entry_template,
3557 sizeof(*net->ipv6.ip6_prohibit_entry),
3558 GFP_KERNEL);
Peter Zijlstra68fffc62008-10-07 14:12:10 -07003559 if (!net->ipv6.ip6_prohibit_entry)
3560 goto out_ip6_null_entry;
Changli Gaod8d1f302010-06-10 23:31:35 -07003561 net->ipv6.ip6_prohibit_entry->dst.path =
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003562 (struct dst_entry *)net->ipv6.ip6_prohibit_entry;
Changli Gaod8d1f302010-06-10 23:31:35 -07003563 net->ipv6.ip6_prohibit_entry->dst.ops = &net->ipv6.ip6_dst_ops;
David S. Miller62fa8a82011-01-26 20:51:05 -08003564 dst_init_metrics(&net->ipv6.ip6_prohibit_entry->dst,
3565 ip6_template_metrics, true);
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003566
3567 net->ipv6.ip6_blk_hole_entry = kmemdup(&ip6_blk_hole_entry_template,
3568 sizeof(*net->ipv6.ip6_blk_hole_entry),
3569 GFP_KERNEL);
Peter Zijlstra68fffc62008-10-07 14:12:10 -07003570 if (!net->ipv6.ip6_blk_hole_entry)
3571 goto out_ip6_prohibit_entry;
Changli Gaod8d1f302010-06-10 23:31:35 -07003572 net->ipv6.ip6_blk_hole_entry->dst.path =
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003573 (struct dst_entry *)net->ipv6.ip6_blk_hole_entry;
Changli Gaod8d1f302010-06-10 23:31:35 -07003574 net->ipv6.ip6_blk_hole_entry->dst.ops = &net->ipv6.ip6_dst_ops;
David S. Miller62fa8a82011-01-26 20:51:05 -08003575 dst_init_metrics(&net->ipv6.ip6_blk_hole_entry->dst,
3576 ip6_template_metrics, true);
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003577#endif
3578
Peter Zijlstrab339a47c2008-10-07 14:15:00 -07003579 net->ipv6.sysctl.flush_delay = 0;
3580 net->ipv6.sysctl.ip6_rt_max_size = 4096;
3581 net->ipv6.sysctl.ip6_rt_gc_min_interval = HZ / 2;
3582 net->ipv6.sysctl.ip6_rt_gc_timeout = 60*HZ;
3583 net->ipv6.sysctl.ip6_rt_gc_interval = 30*HZ;
3584 net->ipv6.sysctl.ip6_rt_gc_elasticity = 9;
3585 net->ipv6.sysctl.ip6_rt_mtu_expires = 10*60*HZ;
3586 net->ipv6.sysctl.ip6_rt_min_advmss = IPV6_MIN_MTU - 20 - 40;
3587
Benjamin Thery6891a342008-03-04 13:49:47 -08003588 net->ipv6.ip6_rt_gc_expire = 30*HZ;
3589
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003590 ret = 0;
3591out:
3592 return ret;
Benjamin Theryf2fc6a52008-03-04 13:49:23 -08003593
Peter Zijlstra68fffc62008-10-07 14:12:10 -07003594#ifdef CONFIG_IPV6_MULTIPLE_TABLES
3595out_ip6_prohibit_entry:
3596 kfree(net->ipv6.ip6_prohibit_entry);
3597out_ip6_null_entry:
3598 kfree(net->ipv6.ip6_null_entry);
3599#endif
Eric Dumazetfc66f952010-10-08 06:37:34 +00003600out_ip6_dst_entries:
3601 dst_entries_destroy(&net->ipv6.ip6_dst_ops);
Benjamin Theryf2fc6a52008-03-04 13:49:23 -08003602out_ip6_dst_ops:
Benjamin Theryf2fc6a52008-03-04 13:49:23 -08003603 goto out;
Daniel Lezcanocdb18762008-03-04 13:45:33 -08003604}
3605
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00003606static void __net_exit ip6_route_net_exit(struct net *net)
Daniel Lezcanocdb18762008-03-04 13:45:33 -08003607{
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003608 kfree(net->ipv6.ip6_null_entry);
3609#ifdef CONFIG_IPV6_MULTIPLE_TABLES
3610 kfree(net->ipv6.ip6_prohibit_entry);
3611 kfree(net->ipv6.ip6_blk_hole_entry);
3612#endif
Xiaotian Feng41bb78b2010-11-02 16:11:05 +00003613 dst_entries_destroy(&net->ipv6.ip6_dst_ops);
Daniel Lezcanocdb18762008-03-04 13:45:33 -08003614}
3615
Thomas Grafd1896342012-06-18 12:08:33 +00003616static int __net_init ip6_route_net_init_late(struct net *net)
3617{
3618#ifdef CONFIG_PROC_FS
Gao fengd4beaa62013-02-18 01:34:54 +00003619 proc_create("ipv6_route", 0, net->proc_net, &ipv6_route_proc_fops);
3620 proc_create("rt6_stats", S_IRUGO, net->proc_net, &rt6_stats_seq_fops);
Thomas Grafd1896342012-06-18 12:08:33 +00003621#endif
3622 return 0;
3623}
3624
3625static void __net_exit ip6_route_net_exit_late(struct net *net)
3626{
3627#ifdef CONFIG_PROC_FS
Gao fengece31ff2013-02-18 01:34:56 +00003628 remove_proc_entry("ipv6_route", net->proc_net);
3629 remove_proc_entry("rt6_stats", net->proc_net);
Thomas Grafd1896342012-06-18 12:08:33 +00003630#endif
3631}
3632
Daniel Lezcanocdb18762008-03-04 13:45:33 -08003633static struct pernet_operations ip6_route_net_ops = {
3634 .init = ip6_route_net_init,
3635 .exit = ip6_route_net_exit,
3636};
3637
David S. Millerc3426b42012-06-09 16:27:05 -07003638static int __net_init ipv6_inetpeer_init(struct net *net)
3639{
3640 struct inet_peer_base *bp = kmalloc(sizeof(*bp), GFP_KERNEL);
3641
3642 if (!bp)
3643 return -ENOMEM;
3644 inet_peer_base_init(bp);
3645 net->ipv6.peers = bp;
3646 return 0;
3647}
3648
3649static void __net_exit ipv6_inetpeer_exit(struct net *net)
3650{
3651 struct inet_peer_base *bp = net->ipv6.peers;
3652
3653 net->ipv6.peers = NULL;
David S. Miller56a6b242012-06-09 16:32:41 -07003654 inetpeer_invalidate_tree(bp);
David S. Millerc3426b42012-06-09 16:27:05 -07003655 kfree(bp);
3656}
3657
David S. Miller2b823f72012-06-09 19:00:16 -07003658static struct pernet_operations ipv6_inetpeer_ops = {
David S. Millerc3426b42012-06-09 16:27:05 -07003659 .init = ipv6_inetpeer_init,
3660 .exit = ipv6_inetpeer_exit,
3661};
3662
Thomas Grafd1896342012-06-18 12:08:33 +00003663static struct pernet_operations ip6_route_net_late_ops = {
3664 .init = ip6_route_net_init_late,
3665 .exit = ip6_route_net_exit_late,
3666};
3667
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003668static struct notifier_block ip6_route_dev_notifier = {
3669 .notifier_call = ip6_route_dev_notify,
3670 .priority = 0,
3671};
3672
Daniel Lezcano433d49c2007-12-07 00:43:48 -08003673int __init ip6_route_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003674{
Daniel Lezcano433d49c2007-12-07 00:43:48 -08003675 int ret;
Martin KaFai Lau8d0b94a2015-05-22 20:56:04 -07003676 int cpu;
Daniel Lezcano433d49c2007-12-07 00:43:48 -08003677
Daniel Lezcano9a7ec3a2008-03-04 13:48:53 -08003678 ret = -ENOMEM;
3679 ip6_dst_ops_template.kmem_cachep =
3680 kmem_cache_create("ip6_dst_cache", sizeof(struct rt6_info), 0,
3681 SLAB_HWCACHE_ALIGN, NULL);
3682 if (!ip6_dst_ops_template.kmem_cachep)
Fernando Carrijoc19a28e2009-01-07 18:09:08 -08003683 goto out;
David S. Miller14e50e52007-05-24 18:17:54 -07003684
Eric Dumazetfc66f952010-10-08 06:37:34 +00003685 ret = dst_entries_init(&ip6_dst_blackhole_ops);
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003686 if (ret)
Daniel Lezcanobdb32892008-03-04 13:48:10 -08003687 goto out_kmem_cache;
Daniel Lezcanobdb32892008-03-04 13:48:10 -08003688
David S. Millerc3426b42012-06-09 16:27:05 -07003689 ret = register_pernet_subsys(&ipv6_inetpeer_ops);
3690 if (ret)
David S. Millere8803b62012-06-16 01:12:19 -07003691 goto out_dst_entries;
Thomas Graf2a0c4512012-06-14 23:00:17 +00003692
David S. Miller7e52b332012-06-15 15:51:55 -07003693 ret = register_pernet_subsys(&ip6_route_net_ops);
3694 if (ret)
3695 goto out_register_inetpeer;
David S. Millerc3426b42012-06-09 16:27:05 -07003696
Arnaud Ebalard5dc121e2008-10-01 02:37:56 -07003697 ip6_dst_blackhole_ops.kmem_cachep = ip6_dst_ops_template.kmem_cachep;
3698
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003699 /* Registering of the loopback is done before this portion of code,
3700 * the loopback reference in rt6_info will not be taken, do it
3701 * manually for init_net */
Changli Gaod8d1f302010-06-10 23:31:35 -07003702 init_net.ipv6.ip6_null_entry->dst.dev = init_net.loopback_dev;
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003703 init_net.ipv6.ip6_null_entry->rt6i_idev = in6_dev_get(init_net.loopback_dev);
3704 #ifdef CONFIG_IPV6_MULTIPLE_TABLES
Changli Gaod8d1f302010-06-10 23:31:35 -07003705 init_net.ipv6.ip6_prohibit_entry->dst.dev = init_net.loopback_dev;
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003706 init_net.ipv6.ip6_prohibit_entry->rt6i_idev = in6_dev_get(init_net.loopback_dev);
Changli Gaod8d1f302010-06-10 23:31:35 -07003707 init_net.ipv6.ip6_blk_hole_entry->dst.dev = init_net.loopback_dev;
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003708 init_net.ipv6.ip6_blk_hole_entry->rt6i_idev = in6_dev_get(init_net.loopback_dev);
3709 #endif
David S. Millere8803b62012-06-16 01:12:19 -07003710 ret = fib6_init();
Daniel Lezcano433d49c2007-12-07 00:43:48 -08003711 if (ret)
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003712 goto out_register_subsys;
Daniel Lezcano433d49c2007-12-07 00:43:48 -08003713
Daniel Lezcano433d49c2007-12-07 00:43:48 -08003714 ret = xfrm6_init();
3715 if (ret)
David S. Millere8803b62012-06-16 01:12:19 -07003716 goto out_fib6_init;
Daniel Lezcanoc35b7e72007-12-08 00:14:11 -08003717
Daniel Lezcano433d49c2007-12-07 00:43:48 -08003718 ret = fib6_rules_init();
3719 if (ret)
3720 goto xfrm6_init;
Daniel Lezcano7e5449c2007-12-08 00:14:54 -08003721
Thomas Grafd1896342012-06-18 12:08:33 +00003722 ret = register_pernet_subsys(&ip6_route_net_late_ops);
3723 if (ret)
3724 goto fib6_rules_init;
3725
Daniel Lezcano433d49c2007-12-07 00:43:48 -08003726 ret = -ENOBUFS;
Greg Rosec7ac8672011-06-10 01:27:09 +00003727 if (__rtnl_register(PF_INET6, RTM_NEWROUTE, inet6_rtm_newroute, NULL, NULL) ||
3728 __rtnl_register(PF_INET6, RTM_DELROUTE, inet6_rtm_delroute, NULL, NULL) ||
3729 __rtnl_register(PF_INET6, RTM_GETROUTE, inet6_rtm_getroute, NULL, NULL))
Thomas Grafd1896342012-06-18 12:08:33 +00003730 goto out_register_late_subsys;
Daniel Lezcano433d49c2007-12-07 00:43:48 -08003731
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003732 ret = register_netdevice_notifier(&ip6_route_dev_notifier);
Daniel Lezcanocdb18762008-03-04 13:45:33 -08003733 if (ret)
Thomas Grafd1896342012-06-18 12:08:33 +00003734 goto out_register_late_subsys;
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003735
Martin KaFai Lau8d0b94a2015-05-22 20:56:04 -07003736 for_each_possible_cpu(cpu) {
3737 struct uncached_list *ul = per_cpu_ptr(&rt6_uncached_list, cpu);
3738
3739 INIT_LIST_HEAD(&ul->head);
3740 spin_lock_init(&ul->lock);
3741 }
3742
Daniel Lezcano433d49c2007-12-07 00:43:48 -08003743out:
3744 return ret;
3745
Thomas Grafd1896342012-06-18 12:08:33 +00003746out_register_late_subsys:
3747 unregister_pernet_subsys(&ip6_route_net_late_ops);
Daniel Lezcano433d49c2007-12-07 00:43:48 -08003748fib6_rules_init:
Daniel Lezcano433d49c2007-12-07 00:43:48 -08003749 fib6_rules_cleanup();
3750xfrm6_init:
Daniel Lezcano433d49c2007-12-07 00:43:48 -08003751 xfrm6_fini();
Thomas Graf2a0c4512012-06-14 23:00:17 +00003752out_fib6_init:
3753 fib6_gc_cleanup();
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003754out_register_subsys:
3755 unregister_pernet_subsys(&ip6_route_net_ops);
David S. Miller7e52b332012-06-15 15:51:55 -07003756out_register_inetpeer:
3757 unregister_pernet_subsys(&ipv6_inetpeer_ops);
Eric Dumazetfc66f952010-10-08 06:37:34 +00003758out_dst_entries:
3759 dst_entries_destroy(&ip6_dst_blackhole_ops);
Daniel Lezcano433d49c2007-12-07 00:43:48 -08003760out_kmem_cache:
Benjamin Theryf2fc6a52008-03-04 13:49:23 -08003761 kmem_cache_destroy(ip6_dst_ops_template.kmem_cachep);
Daniel Lezcano433d49c2007-12-07 00:43:48 -08003762 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003763}
3764
3765void ip6_route_cleanup(void)
3766{
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003767 unregister_netdevice_notifier(&ip6_route_dev_notifier);
Thomas Grafd1896342012-06-18 12:08:33 +00003768 unregister_pernet_subsys(&ip6_route_net_late_ops);
Thomas Graf101367c2006-08-04 03:39:02 -07003769 fib6_rules_cleanup();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003770 xfrm6_fini();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003771 fib6_gc_cleanup();
David S. Millerc3426b42012-06-09 16:27:05 -07003772 unregister_pernet_subsys(&ipv6_inetpeer_ops);
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003773 unregister_pernet_subsys(&ip6_route_net_ops);
Xiaotian Feng41bb78b2010-11-02 16:11:05 +00003774 dst_entries_destroy(&ip6_dst_blackhole_ops);
Benjamin Theryf2fc6a52008-03-04 13:49:23 -08003775 kmem_cache_destroy(ip6_dst_ops_template.kmem_cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003776}