blob: 98fce6f4a580b91085440405e594104490879759 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Linux INET6 implementation
3 * FIB front-end.
4 *
5 * Authors:
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09006 * Pedro Roque <roque@di.fc.ul.pt>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License
10 * as published by the Free Software Foundation; either version
11 * 2 of the License, or (at your option) any later version.
12 */
13
14/* Changes:
15 *
16 * YOSHIFUJI Hideaki @USAGI
17 * reworked default router selection.
18 * - respect outgoing interface
19 * - select from (probably) reachable routers (i.e.
20 * routers in REACHABLE, STALE, DELAY or PROBE states).
21 * - always select the same router if it is (probably)
22 * reachable. otherwise, round-robin the list.
YOSHIFUJI Hideakic0bece92006-08-23 17:23:25 -070023 * Ville Nuorvala
24 * Fixed routing subtrees.
Linus Torvalds1da177e2005-04-16 15:20:36 -070025 */
26
Joe Perchesf3213832012-05-15 14:11:53 +000027#define pr_fmt(fmt) "IPv6: " fmt
28
Randy Dunlap4fc268d2006-01-11 12:17:47 -080029#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <linux/errno.h>
Paul Gortmakerbc3b2d72011-07-15 11:47:34 -040031#include <linux/export.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include <linux/types.h>
33#include <linux/times.h>
34#include <linux/socket.h>
35#include <linux/sockios.h>
36#include <linux/net.h>
37#include <linux/route.h>
38#include <linux/netdevice.h>
39#include <linux/in6.h>
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +090040#include <linux/mroute6.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#include <linux/init.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070042#include <linux/if_arp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#include <linux/proc_fs.h>
44#include <linux/seq_file.h>
Daniel Lezcano5b7c9312008-03-03 23:28:58 -080045#include <linux/nsproxy.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090046#include <linux/slab.h>
Eric W. Biederman457c4cb2007-09-12 12:01:34 +020047#include <net/net_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070048#include <net/snmp.h>
49#include <net/ipv6.h>
50#include <net/ip6_fib.h>
51#include <net/ip6_route.h>
52#include <net/ndisc.h>
53#include <net/addrconf.h>
54#include <net/tcp.h>
55#include <linux/rtnetlink.h>
56#include <net/dst.h>
57#include <net/xfrm.h>
Tom Tucker8d717402006-07-30 20:43:36 -070058#include <net/netevent.h>
Thomas Graf21713eb2006-08-15 00:35:24 -070059#include <net/netlink.h>
Nicolas Dichtel51ebd312012-10-22 03:42:09 +000060#include <net/nexthop.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
62#include <asm/uaccess.h>
63
64#ifdef CONFIG_SYSCTL
65#include <linux/sysctl.h>
66#endif
67
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +020068enum rt6_nud_state {
Jiri Benc7e980562013-12-11 13:48:20 +010069 RT6_NUD_FAIL_HARD = -3,
70 RT6_NUD_FAIL_PROBE = -2,
71 RT6_NUD_FAIL_DO_RR = -1,
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +020072 RT6_NUD_SUCCEED = 1
73};
74
Gao feng1716a962012-04-06 00:13:10 +000075static struct rt6_info *ip6_rt_copy(struct rt6_info *ort,
Eric Dumazet21efcfa2011-07-19 20:18:36 +000076 const struct in6_addr *dest);
Linus Torvalds1da177e2005-04-16 15:20:36 -070077static struct dst_entry *ip6_dst_check(struct dst_entry *dst, u32 cookie);
David S. Miller0dbaee32010-12-13 12:52:14 -080078static unsigned int ip6_default_advmss(const struct dst_entry *dst);
Steffen Klassertebb762f2011-11-23 02:12:51 +000079static unsigned int ip6_mtu(const struct dst_entry *dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -070080static struct dst_entry *ip6_negative_advice(struct dst_entry *);
81static void ip6_dst_destroy(struct dst_entry *);
82static void ip6_dst_ifdown(struct dst_entry *,
83 struct net_device *dev, int how);
Daniel Lezcano569d3642008-01-18 03:56:57 -080084static int ip6_dst_gc(struct dst_ops *ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -070085
86static int ip6_pkt_discard(struct sk_buff *skb);
Eric Dumazetaad88722014-04-15 13:47:15 -040087static int ip6_pkt_discard_out(struct sock *sk, struct sk_buff *skb);
Kamala R7150aed2013-12-02 19:55:21 +053088static int ip6_pkt_prohibit(struct sk_buff *skb);
Eric Dumazetaad88722014-04-15 13:47:15 -040089static int ip6_pkt_prohibit_out(struct sock *sk, struct sk_buff *skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -070090static void ip6_link_failure(struct sk_buff *skb);
David S. Miller6700c272012-07-17 03:29:28 -070091static void ip6_rt_update_pmtu(struct dst_entry *dst, struct sock *sk,
92 struct sk_buff *skb, u32 mtu);
93static void rt6_do_redirect(struct dst_entry *dst, struct sock *sk,
94 struct sk_buff *skb);
Martin KaFai Lau4b32b5a2015-04-28 13:03:06 -070095static void rt6_dst_from_metrics_check(struct rt6_info *rt);
Nicolas Dichtel52bd4c02013-06-28 17:35:48 +020096static int rt6_score_route(struct rt6_info *rt, int oif, int strict);
Linus Torvalds1da177e2005-04-16 15:20:36 -070097
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -080098#ifdef CONFIG_IPV6_ROUTE_INFO
Daniel Lezcanoefa2cea2008-03-04 13:46:48 -080099static struct rt6_info *rt6_add_route_info(struct net *net,
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000100 const struct in6_addr *prefix, int prefixlen,
101 const struct in6_addr *gwaddr, int ifindex,
Eric Dumazet95c96172012-04-15 05:58:06 +0000102 unsigned int pref);
Daniel Lezcanoefa2cea2008-03-04 13:46:48 -0800103static struct rt6_info *rt6_get_route_info(struct net *net,
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000104 const struct in6_addr *prefix, int prefixlen,
105 const struct in6_addr *gwaddr, int ifindex);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800106#endif
107
David S. Miller06582542011-01-27 14:58:42 -0800108static u32 *ipv6_cow_metrics(struct dst_entry *dst, unsigned long old)
109{
Martin KaFai Lau4b32b5a2015-04-28 13:03:06 -0700110 struct rt6_info *rt = (struct rt6_info *)dst;
David S. Miller06582542011-01-27 14:58:42 -0800111
Martin KaFai Lau4b32b5a2015-04-28 13:03:06 -0700112 if (rt->rt6i_flags & RTF_CACHE)
113 return NULL;
114 else
Martin KaFai Lau3b471172015-02-12 16:14:08 -0800115 return dst_cow_metrics_generic(dst, old);
David S. Miller06582542011-01-27 14:58:42 -0800116}
117
David S. Millerf894cbf2012-07-02 21:52:24 -0700118static inline const void *choose_neigh_daddr(struct rt6_info *rt,
119 struct sk_buff *skb,
120 const void *daddr)
David S. Miller39232972012-01-26 15:22:32 -0500121{
122 struct in6_addr *p = &rt->rt6i_gateway;
123
David S. Millera7563f32012-01-26 16:29:16 -0500124 if (!ipv6_addr_any(p))
David S. Miller39232972012-01-26 15:22:32 -0500125 return (const void *) p;
David S. Millerf894cbf2012-07-02 21:52:24 -0700126 else if (skb)
127 return &ipv6_hdr(skb)->daddr;
David S. Miller39232972012-01-26 15:22:32 -0500128 return daddr;
129}
130
David S. Millerf894cbf2012-07-02 21:52:24 -0700131static struct neighbour *ip6_neigh_lookup(const struct dst_entry *dst,
132 struct sk_buff *skb,
133 const void *daddr)
David S. Millerd3aaeb32011-07-18 00:40:17 -0700134{
David S. Miller39232972012-01-26 15:22:32 -0500135 struct rt6_info *rt = (struct rt6_info *) dst;
136 struct neighbour *n;
137
David S. Millerf894cbf2012-07-02 21:52:24 -0700138 daddr = choose_neigh_daddr(rt, skb, daddr);
YOSHIFUJI Hideaki / 吉藤英明8e022ee2013-01-17 12:53:09 +0000139 n = __ipv6_neigh_lookup(dst->dev, daddr);
David S. Millerf83c7792011-12-28 15:41:23 -0500140 if (n)
141 return n;
142 return neigh_create(&nd_tbl, daddr, dst->dev);
143}
144
Daniel Lezcano9a7ec3a2008-03-04 13:48:53 -0800145static struct dst_ops ip6_dst_ops_template = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 .family = AF_INET6,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 .gc = ip6_dst_gc,
148 .gc_thresh = 1024,
149 .check = ip6_dst_check,
David S. Miller0dbaee32010-12-13 12:52:14 -0800150 .default_advmss = ip6_default_advmss,
Steffen Klassertebb762f2011-11-23 02:12:51 +0000151 .mtu = ip6_mtu,
David S. Miller06582542011-01-27 14:58:42 -0800152 .cow_metrics = ipv6_cow_metrics,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 .destroy = ip6_dst_destroy,
154 .ifdown = ip6_dst_ifdown,
155 .negative_advice = ip6_negative_advice,
156 .link_failure = ip6_link_failure,
157 .update_pmtu = ip6_rt_update_pmtu,
David S. Miller6e157b62012-07-12 00:05:02 -0700158 .redirect = rt6_do_redirect,
Herbert Xu1ac06e02008-05-20 14:32:14 -0700159 .local_out = __ip6_local_out,
David S. Millerd3aaeb32011-07-18 00:40:17 -0700160 .neigh_lookup = ip6_neigh_lookup,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161};
162
Steffen Klassertebb762f2011-11-23 02:12:51 +0000163static unsigned int ip6_blackhole_mtu(const struct dst_entry *dst)
Roland Dreierec831ea2011-01-31 13:16:00 -0800164{
Steffen Klassert618f9bc2011-11-23 02:13:31 +0000165 unsigned int mtu = dst_metric_raw(dst, RTAX_MTU);
166
167 return mtu ? : dst->dev->mtu;
Roland Dreierec831ea2011-01-31 13:16:00 -0800168}
169
David S. Miller6700c272012-07-17 03:29:28 -0700170static void ip6_rt_blackhole_update_pmtu(struct dst_entry *dst, struct sock *sk,
171 struct sk_buff *skb, u32 mtu)
David S. Miller14e50e52007-05-24 18:17:54 -0700172{
173}
174
David S. Miller6700c272012-07-17 03:29:28 -0700175static void ip6_rt_blackhole_redirect(struct dst_entry *dst, struct sock *sk,
176 struct sk_buff *skb)
David S. Millerb587ee32012-07-12 00:39:24 -0700177{
178}
179
Held Bernhard0972ddb2011-04-24 22:07:32 +0000180static u32 *ip6_rt_blackhole_cow_metrics(struct dst_entry *dst,
181 unsigned long old)
182{
183 return NULL;
184}
185
David S. Miller14e50e52007-05-24 18:17:54 -0700186static struct dst_ops ip6_dst_blackhole_ops = {
187 .family = AF_INET6,
David S. Miller14e50e52007-05-24 18:17:54 -0700188 .destroy = ip6_dst_destroy,
189 .check = ip6_dst_check,
Steffen Klassertebb762f2011-11-23 02:12:51 +0000190 .mtu = ip6_blackhole_mtu,
Eric Dumazet214f45c2011-02-18 11:39:01 -0800191 .default_advmss = ip6_default_advmss,
David S. Miller14e50e52007-05-24 18:17:54 -0700192 .update_pmtu = ip6_rt_blackhole_update_pmtu,
David S. Millerb587ee32012-07-12 00:39:24 -0700193 .redirect = ip6_rt_blackhole_redirect,
Held Bernhard0972ddb2011-04-24 22:07:32 +0000194 .cow_metrics = ip6_rt_blackhole_cow_metrics,
David S. Millerd3aaeb32011-07-18 00:40:17 -0700195 .neigh_lookup = ip6_neigh_lookup,
David S. Miller14e50e52007-05-24 18:17:54 -0700196};
197
David S. Miller62fa8a82011-01-26 20:51:05 -0800198static const u32 ip6_template_metrics[RTAX_MAX] = {
Li RongQing14edd872012-10-24 14:01:18 +0800199 [RTAX_HOPLIMIT - 1] = 0,
David S. Miller62fa8a82011-01-26 20:51:05 -0800200};
201
Eric Dumazetfb0af4c2012-09-11 21:47:51 +0000202static const struct rt6_info ip6_null_entry_template = {
Changli Gaod8d1f302010-06-10 23:31:35 -0700203 .dst = {
204 .__refcnt = ATOMIC_INIT(1),
205 .__use = 1,
Nicolas Dichtel2c20cbd2012-09-10 22:09:47 +0000206 .obsolete = DST_OBSOLETE_FORCE_CHK,
Changli Gaod8d1f302010-06-10 23:31:35 -0700207 .error = -ENETUNREACH,
Changli Gaod8d1f302010-06-10 23:31:35 -0700208 .input = ip6_pkt_discard,
209 .output = ip6_pkt_discard_out,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 },
211 .rt6i_flags = (RTF_REJECT | RTF_NONEXTHOP),
Jean-Mickael Guerin4f724272009-05-20 17:38:59 -0700212 .rt6i_protocol = RTPROT_KERNEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 .rt6i_metric = ~(u32) 0,
214 .rt6i_ref = ATOMIC_INIT(1),
215};
216
Thomas Graf101367c2006-08-04 03:39:02 -0700217#ifdef CONFIG_IPV6_MULTIPLE_TABLES
218
Eric Dumazetfb0af4c2012-09-11 21:47:51 +0000219static const struct rt6_info ip6_prohibit_entry_template = {
Changli Gaod8d1f302010-06-10 23:31:35 -0700220 .dst = {
221 .__refcnt = ATOMIC_INIT(1),
222 .__use = 1,
Nicolas Dichtel2c20cbd2012-09-10 22:09:47 +0000223 .obsolete = DST_OBSOLETE_FORCE_CHK,
Changli Gaod8d1f302010-06-10 23:31:35 -0700224 .error = -EACCES,
Changli Gaod8d1f302010-06-10 23:31:35 -0700225 .input = ip6_pkt_prohibit,
226 .output = ip6_pkt_prohibit_out,
Thomas Graf101367c2006-08-04 03:39:02 -0700227 },
228 .rt6i_flags = (RTF_REJECT | RTF_NONEXTHOP),
Jean-Mickael Guerin4f724272009-05-20 17:38:59 -0700229 .rt6i_protocol = RTPROT_KERNEL,
Thomas Graf101367c2006-08-04 03:39:02 -0700230 .rt6i_metric = ~(u32) 0,
231 .rt6i_ref = ATOMIC_INIT(1),
232};
233
Eric Dumazetfb0af4c2012-09-11 21:47:51 +0000234static const struct rt6_info ip6_blk_hole_entry_template = {
Changli Gaod8d1f302010-06-10 23:31:35 -0700235 .dst = {
236 .__refcnt = ATOMIC_INIT(1),
237 .__use = 1,
Nicolas Dichtel2c20cbd2012-09-10 22:09:47 +0000238 .obsolete = DST_OBSOLETE_FORCE_CHK,
Changli Gaod8d1f302010-06-10 23:31:35 -0700239 .error = -EINVAL,
Changli Gaod8d1f302010-06-10 23:31:35 -0700240 .input = dst_discard,
Eric Dumazetaad88722014-04-15 13:47:15 -0400241 .output = dst_discard_sk,
Thomas Graf101367c2006-08-04 03:39:02 -0700242 },
243 .rt6i_flags = (RTF_REJECT | RTF_NONEXTHOP),
Jean-Mickael Guerin4f724272009-05-20 17:38:59 -0700244 .rt6i_protocol = RTPROT_KERNEL,
Thomas Graf101367c2006-08-04 03:39:02 -0700245 .rt6i_metric = ~(u32) 0,
246 .rt6i_ref = ATOMIC_INIT(1),
247};
248
249#endif
250
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251/* allocate dst with ip6_dst_ops */
David S. Miller97bab732012-06-09 22:36:36 -0700252static inline struct rt6_info *ip6_dst_alloc(struct net *net,
David S. Miller957c6652011-06-24 15:25:00 -0700253 struct net_device *dev,
David S. Miller8b96d222012-06-11 02:01:56 -0700254 int flags,
255 struct fib6_table *table)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256{
David S. Miller97bab732012-06-09 22:36:36 -0700257 struct rt6_info *rt = dst_alloc(&net->ipv6.ip6_dst_ops, dev,
Nicolas Dichtel6f3118b2012-09-10 22:09:46 +0000258 0, DST_OBSOLETE_FORCE_CHK, flags);
David S. Millercf911662011-04-28 14:31:47 -0700259
David S. Miller97bab732012-06-09 22:36:36 -0700260 if (rt) {
Steffen Klassert81048912012-07-05 23:37:09 +0000261 struct dst_entry *dst = &rt->dst;
262
263 memset(dst + 1, 0, sizeof(*rt) - sizeof(*dst));
Nicolas Dichtel51ebd312012-10-22 03:42:09 +0000264 INIT_LIST_HEAD(&rt->rt6i_siblings);
David S. Miller97bab732012-06-09 22:36:36 -0700265 }
David S. Millercf911662011-04-28 14:31:47 -0700266 return rt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267}
268
269static void ip6_dst_destroy(struct dst_entry *dst)
270{
271 struct rt6_info *rt = (struct rt6_info *)dst;
272 struct inet6_dev *idev = rt->rt6i_idev;
YOSHIFUJI Hideaki / 吉藤英明ecd98832013-02-20 00:29:08 +0000273 struct dst_entry *from = dst->from;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274
Martin KaFai Lau4b32b5a2015-04-28 13:03:06 -0700275 dst_destroy_metrics_generic(dst);
Yan, Zheng8e2ec632011-09-05 21:34:30 +0000276
David S. Miller38308472011-12-03 18:02:47 -0500277 if (idev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 rt->rt6i_idev = NULL;
279 in6_dev_put(idev);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900280 }
Gao feng1716a962012-04-06 00:13:10 +0000281
YOSHIFUJI Hideaki / 吉藤英明ecd98832013-02-20 00:29:08 +0000282 dst->from = NULL;
283 dst_release(from);
David S. Millerb3419362010-11-30 12:27:11 -0800284}
285
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286static void ip6_dst_ifdown(struct dst_entry *dst, struct net_device *dev,
287 int how)
288{
289 struct rt6_info *rt = (struct rt6_info *)dst;
290 struct inet6_dev *idev = rt->rt6i_idev;
Denis V. Lunev5a3e55d2007-12-07 00:38:10 -0800291 struct net_device *loopback_dev =
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900292 dev_net(dev)->loopback_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293
David S. Miller97cac082012-07-02 22:43:47 -0700294 if (dev != loopback_dev) {
295 if (idev && idev->dev == dev) {
296 struct inet6_dev *loopback_idev =
297 in6_dev_get(loopback_dev);
298 if (loopback_idev) {
299 rt->rt6i_idev = loopback_idev;
300 in6_dev_put(idev);
301 }
302 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 }
304}
305
Eric Dumazeta50feda2012-05-18 18:57:34 +0000306static bool rt6_check_expired(const struct rt6_info *rt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307{
Gao feng1716a962012-04-06 00:13:10 +0000308 if (rt->rt6i_flags & RTF_EXPIRES) {
309 if (time_after(jiffies, rt->dst.expires))
Eric Dumazeta50feda2012-05-18 18:57:34 +0000310 return true;
Gao feng1716a962012-04-06 00:13:10 +0000311 } else if (rt->dst.from) {
Li RongQing3fd91fb2012-09-13 19:54:57 +0000312 return rt6_check_expired((struct rt6_info *) rt->dst.from);
Gao feng1716a962012-04-06 00:13:10 +0000313 }
Eric Dumazeta50feda2012-05-18 18:57:34 +0000314 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315}
316
Nicolas Dichtel51ebd312012-10-22 03:42:09 +0000317/* Multipath route selection:
318 * Hash based function using packet header and flowlabel.
319 * Adapted from fib_info_hashfn()
320 */
321static int rt6_info_hash_nhsfn(unsigned int candidate_count,
322 const struct flowi6 *fl6)
323{
324 unsigned int val = fl6->flowi6_proto;
325
YOSHIFUJI Hideaki / 吉藤英明c08977b2013-01-13 05:02:29 +0000326 val ^= ipv6_addr_hash(&fl6->daddr);
327 val ^= ipv6_addr_hash(&fl6->saddr);
Nicolas Dichtel51ebd312012-10-22 03:42:09 +0000328
329 /* Work only if this not encapsulated */
330 switch (fl6->flowi6_proto) {
331 case IPPROTO_UDP:
332 case IPPROTO_TCP:
333 case IPPROTO_SCTP:
Nicolas Dichtelb3ce5ae2012-10-22 23:35:06 +0000334 val ^= (__force u16)fl6->fl6_sport;
335 val ^= (__force u16)fl6->fl6_dport;
Nicolas Dichtel51ebd312012-10-22 03:42:09 +0000336 break;
337
338 case IPPROTO_ICMPV6:
Nicolas Dichtelb3ce5ae2012-10-22 23:35:06 +0000339 val ^= (__force u16)fl6->fl6_icmp_type;
340 val ^= (__force u16)fl6->fl6_icmp_code;
Nicolas Dichtel51ebd312012-10-22 03:42:09 +0000341 break;
342 }
343 /* RFC6438 recommands to use flowlabel */
Nicolas Dichtelb3ce5ae2012-10-22 23:35:06 +0000344 val ^= (__force u32)fl6->flowlabel;
Nicolas Dichtel51ebd312012-10-22 03:42:09 +0000345
346 /* Perhaps, we need to tune, this function? */
347 val = val ^ (val >> 7) ^ (val >> 12);
348 return val % candidate_count;
349}
350
351static struct rt6_info *rt6_multipath_select(struct rt6_info *match,
Nicolas Dichtel52bd4c02013-06-28 17:35:48 +0200352 struct flowi6 *fl6, int oif,
353 int strict)
Nicolas Dichtel51ebd312012-10-22 03:42:09 +0000354{
355 struct rt6_info *sibling, *next_sibling;
356 int route_choosen;
357
358 route_choosen = rt6_info_hash_nhsfn(match->rt6i_nsiblings + 1, fl6);
359 /* Don't change the route, if route_choosen == 0
360 * (siblings does not include ourself)
361 */
362 if (route_choosen)
363 list_for_each_entry_safe(sibling, next_sibling,
364 &match->rt6i_siblings, rt6i_siblings) {
365 route_choosen--;
366 if (route_choosen == 0) {
Nicolas Dichtel52bd4c02013-06-28 17:35:48 +0200367 if (rt6_score_route(sibling, oif, strict) < 0)
368 break;
Nicolas Dichtel51ebd312012-10-22 03:42:09 +0000369 match = sibling;
370 break;
371 }
372 }
373 return match;
374}
375
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376/*
Thomas Grafc71099a2006-08-04 23:20:06 -0700377 * Route lookup. Any table->tb6_lock is implied.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 */
379
Daniel Lezcano8ed67782008-03-04 13:48:30 -0800380static inline struct rt6_info *rt6_device_match(struct net *net,
381 struct rt6_info *rt,
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000382 const struct in6_addr *saddr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 int oif,
YOSHIFUJI Hideakid4208952008-06-27 20:14:54 -0700384 int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385{
386 struct rt6_info *local = NULL;
387 struct rt6_info *sprt;
388
YOSHIFUJI Hideakidd3abc42008-07-02 18:30:18 +0900389 if (!oif && ipv6_addr_any(saddr))
390 goto out;
391
Changli Gaod8d1f302010-06-10 23:31:35 -0700392 for (sprt = rt; sprt; sprt = sprt->dst.rt6_next) {
David S. Millerd1918542011-12-28 20:19:20 -0500393 struct net_device *dev = sprt->dst.dev;
YOSHIFUJI Hideakidd3abc42008-07-02 18:30:18 +0900394
395 if (oif) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 if (dev->ifindex == oif)
397 return sprt;
398 if (dev->flags & IFF_LOOPBACK) {
David S. Miller38308472011-12-03 18:02:47 -0500399 if (!sprt->rt6i_idev ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 sprt->rt6i_idev->dev->ifindex != oif) {
YOSHIFUJI Hideakid4208952008-06-27 20:14:54 -0700401 if (flags & RT6_LOOKUP_F_IFACE && oif)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 continue;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900403 if (local && (!oif ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 local->rt6i_idev->dev->ifindex == oif))
405 continue;
406 }
407 local = sprt;
408 }
YOSHIFUJI Hideakidd3abc42008-07-02 18:30:18 +0900409 } else {
410 if (ipv6_chk_addr(net, saddr, dev,
411 flags & RT6_LOOKUP_F_IFACE))
412 return sprt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 }
YOSHIFUJI Hideakidd3abc42008-07-02 18:30:18 +0900414 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415
YOSHIFUJI Hideakidd3abc42008-07-02 18:30:18 +0900416 if (oif) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 if (local)
418 return local;
419
YOSHIFUJI Hideakid4208952008-06-27 20:14:54 -0700420 if (flags & RT6_LOOKUP_F_IFACE)
Daniel Lezcano8ed67782008-03-04 13:48:30 -0800421 return net->ipv6.ip6_null_entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 }
YOSHIFUJI Hideakidd3abc42008-07-02 18:30:18 +0900423out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 return rt;
425}
426
YOSHIFUJI Hideaki27097252006-03-20 17:05:13 -0800427#ifdef CONFIG_IPV6_ROUTER_PREF
Hannes Frederic Sowac2f17e82013-10-21 06:17:15 +0200428struct __rt6_probe_work {
429 struct work_struct work;
430 struct in6_addr target;
431 struct net_device *dev;
432};
433
434static void rt6_probe_deferred(struct work_struct *w)
435{
436 struct in6_addr mcaddr;
437 struct __rt6_probe_work *work =
438 container_of(w, struct __rt6_probe_work, work);
439
440 addrconf_addr_solict_mult(&work->target, &mcaddr);
441 ndisc_send_ns(work->dev, NULL, &work->target, &mcaddr, NULL);
442 dev_put(work->dev);
Michael Büsch662f5532015-02-08 10:14:07 +0100443 kfree(work);
Hannes Frederic Sowac2f17e82013-10-21 06:17:15 +0200444}
445
YOSHIFUJI Hideaki27097252006-03-20 17:05:13 -0800446static void rt6_probe(struct rt6_info *rt)
447{
Eric Dumazetf2c31e32011-07-29 19:00:53 +0000448 struct neighbour *neigh;
YOSHIFUJI Hideaki27097252006-03-20 17:05:13 -0800449 /*
450 * Okay, this does not seem to be appropriate
451 * for now, however, we need to check if it
452 * is really so; aka Router Reachability Probing.
453 *
454 * Router Reachability Probe MUST be rate-limited
455 * to no more than one per minute.
456 */
YOSHIFUJI Hideaki / 吉藤英明2152cae2013-01-17 12:53:43 +0000457 if (!rt || !(rt->rt6i_flags & RTF_GATEWAY))
Amerigo Wangfdd66812012-09-10 02:48:44 +0000458 return;
YOSHIFUJI Hideaki / 吉藤英明2152cae2013-01-17 12:53:43 +0000459 rcu_read_lock_bh();
460 neigh = __ipv6_neigh_lookup_noref(rt->dst.dev, &rt->rt6i_gateway);
461 if (neigh) {
462 write_lock(&neigh->lock);
463 if (neigh->nud_state & NUD_VALID)
464 goto out;
YOSHIFUJI Hideaki / 吉藤英明7ff74a52013-01-17 12:53:02 +0000465 }
YOSHIFUJI Hideaki / 吉藤英明2152cae2013-01-17 12:53:43 +0000466
467 if (!neigh ||
YOSHIFUJI Hideaki52e16352006-03-20 17:05:47 -0800468 time_after(jiffies, neigh->updated + rt->rt6i_idev->cnf.rtr_probe_interval)) {
Hannes Frederic Sowac2f17e82013-10-21 06:17:15 +0200469 struct __rt6_probe_work *work;
YOSHIFUJI Hideaki27097252006-03-20 17:05:13 -0800470
Hannes Frederic Sowac2f17e82013-10-21 06:17:15 +0200471 work = kmalloc(sizeof(*work), GFP_ATOMIC);
472
473 if (neigh && work)
Jiri Benc7e980562013-12-11 13:48:20 +0100474 __neigh_set_probe_once(neigh);
YOSHIFUJI Hideaki / 吉藤英明2152cae2013-01-17 12:53:43 +0000475
Hannes Frederic Sowac2f17e82013-10-21 06:17:15 +0200476 if (neigh)
477 write_unlock(&neigh->lock);
478
479 if (work) {
480 INIT_WORK(&work->work, rt6_probe_deferred);
481 work->target = rt->rt6i_gateway;
482 dev_hold(rt->dst.dev);
483 work->dev = rt->dst.dev;
484 schedule_work(&work->work);
485 }
Eric Dumazetf2c31e32011-07-29 19:00:53 +0000486 } else {
YOSHIFUJI Hideaki / 吉藤英明2152cae2013-01-17 12:53:43 +0000487out:
488 write_unlock(&neigh->lock);
Eric Dumazetf2c31e32011-07-29 19:00:53 +0000489 }
YOSHIFUJI Hideaki / 吉藤英明2152cae2013-01-17 12:53:43 +0000490 rcu_read_unlock_bh();
YOSHIFUJI Hideaki27097252006-03-20 17:05:13 -0800491}
492#else
493static inline void rt6_probe(struct rt6_info *rt)
494{
YOSHIFUJI Hideaki27097252006-03-20 17:05:13 -0800495}
496#endif
497
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498/*
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800499 * Default Router Selection (RFC 2461 6.3.6)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 */
Dave Jonesb6f99a22007-03-22 12:27:49 -0700501static inline int rt6_check_dev(struct rt6_info *rt, int oif)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502{
David S. Millerd1918542011-12-28 20:19:20 -0500503 struct net_device *dev = rt->dst.dev;
David S. Miller161980f2007-04-06 11:42:27 -0700504 if (!oif || dev->ifindex == oif)
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800505 return 2;
David S. Miller161980f2007-04-06 11:42:27 -0700506 if ((dev->flags & IFF_LOOPBACK) &&
507 rt->rt6i_idev && rt->rt6i_idev->dev->ifindex == oif)
508 return 1;
509 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510}
511
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200512static inline enum rt6_nud_state rt6_check_neigh(struct rt6_info *rt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513{
Eric Dumazetf2c31e32011-07-29 19:00:53 +0000514 struct neighbour *neigh;
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200515 enum rt6_nud_state ret = RT6_NUD_FAIL_HARD;
Eric Dumazetf2c31e32011-07-29 19:00:53 +0000516
YOSHIFUJI Hideaki4d0c5912006-05-26 13:23:41 -0700517 if (rt->rt6i_flags & RTF_NONEXTHOP ||
518 !(rt->rt6i_flags & RTF_GATEWAY))
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200519 return RT6_NUD_SUCCEED;
YOSHIFUJI Hideaki / 吉藤英明145a3622013-01-17 12:53:38 +0000520
521 rcu_read_lock_bh();
522 neigh = __ipv6_neigh_lookup_noref(rt->dst.dev, &rt->rt6i_gateway);
523 if (neigh) {
524 read_lock(&neigh->lock);
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800525 if (neigh->nud_state & NUD_VALID)
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200526 ret = RT6_NUD_SUCCEED;
YOSHIFUJI Hideaki398bcbe2008-01-19 00:35:16 -0800527#ifdef CONFIG_IPV6_ROUTER_PREF
Paul Marksa5a81f02012-12-03 10:26:54 +0000528 else if (!(neigh->nud_state & NUD_FAILED))
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200529 ret = RT6_NUD_SUCCEED;
Jiri Benc7e980562013-12-11 13:48:20 +0100530 else
531 ret = RT6_NUD_FAIL_PROBE;
YOSHIFUJI Hideaki398bcbe2008-01-19 00:35:16 -0800532#endif
YOSHIFUJI Hideaki / 吉藤英明145a3622013-01-17 12:53:38 +0000533 read_unlock(&neigh->lock);
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200534 } else {
535 ret = IS_ENABLED(CONFIG_IPV6_ROUTER_PREF) ?
Jiri Benc7e980562013-12-11 13:48:20 +0100536 RT6_NUD_SUCCEED : RT6_NUD_FAIL_DO_RR;
Paul Marksa5a81f02012-12-03 10:26:54 +0000537 }
YOSHIFUJI Hideaki / 吉藤英明145a3622013-01-17 12:53:38 +0000538 rcu_read_unlock_bh();
539
Paul Marksa5a81f02012-12-03 10:26:54 +0000540 return ret;
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800541}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800543static int rt6_score_route(struct rt6_info *rt, int oif,
544 int strict)
545{
Paul Marksa5a81f02012-12-03 10:26:54 +0000546 int m;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900547
YOSHIFUJI Hideaki4d0c5912006-05-26 13:23:41 -0700548 m = rt6_check_dev(rt, oif);
YOSHIFUJI Hideaki77d16f42006-08-23 17:25:05 -0700549 if (!m && (strict & RT6_LOOKUP_F_IFACE))
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200550 return RT6_NUD_FAIL_HARD;
YOSHIFUJI Hideakiebacaaa2006-03-20 17:04:53 -0800551#ifdef CONFIG_IPV6_ROUTER_PREF
552 m |= IPV6_DECODE_PREF(IPV6_EXTRACT_PREF(rt->rt6i_flags)) << 2;
553#endif
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200554 if (strict & RT6_LOOKUP_F_REACHABLE) {
555 int n = rt6_check_neigh(rt);
556 if (n < 0)
557 return n;
558 }
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800559 return m;
560}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561
David S. Millerf11e6652007-03-24 20:36:25 -0700562static struct rt6_info *find_match(struct rt6_info *rt, int oif, int strict,
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200563 int *mpri, struct rt6_info *match,
564 bool *do_rr)
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800565{
David S. Millerf11e6652007-03-24 20:36:25 -0700566 int m;
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200567 bool match_do_rr = false;
David S. Millerf11e6652007-03-24 20:36:25 -0700568
569 if (rt6_check_expired(rt))
570 goto out;
571
572 m = rt6_score_route(rt, oif, strict);
Jiri Benc7e980562013-12-11 13:48:20 +0100573 if (m == RT6_NUD_FAIL_DO_RR) {
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200574 match_do_rr = true;
575 m = 0; /* lowest valid score */
Jiri Benc7e980562013-12-11 13:48:20 +0100576 } else if (m == RT6_NUD_FAIL_HARD) {
David S. Millerf11e6652007-03-24 20:36:25 -0700577 goto out;
David S. Millerf11e6652007-03-24 20:36:25 -0700578 }
579
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200580 if (strict & RT6_LOOKUP_F_REACHABLE)
581 rt6_probe(rt);
582
Jiri Benc7e980562013-12-11 13:48:20 +0100583 /* note that m can be RT6_NUD_FAIL_PROBE at this point */
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200584 if (m > *mpri) {
585 *do_rr = match_do_rr;
586 *mpri = m;
587 match = rt;
588 }
David S. Millerf11e6652007-03-24 20:36:25 -0700589out:
590 return match;
591}
592
593static struct rt6_info *find_rr_leaf(struct fib6_node *fn,
594 struct rt6_info *rr_head,
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200595 u32 metric, int oif, int strict,
596 bool *do_rr)
David S. Millerf11e6652007-03-24 20:36:25 -0700597{
Steffen Klassert9fbdcfa2015-04-28 13:03:04 -0700598 struct rt6_info *rt, *match, *cont;
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800599 int mpri = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600
David S. Millerf11e6652007-03-24 20:36:25 -0700601 match = NULL;
Steffen Klassert9fbdcfa2015-04-28 13:03:04 -0700602 cont = NULL;
603 for (rt = rr_head; rt; rt = rt->dst.rt6_next) {
604 if (rt->rt6i_metric != metric) {
605 cont = rt;
606 break;
607 }
608
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200609 match = find_match(rt, oif, strict, &mpri, match, do_rr);
Steffen Klassert9fbdcfa2015-04-28 13:03:04 -0700610 }
611
612 for (rt = fn->leaf; rt && rt != rr_head; rt = rt->dst.rt6_next) {
613 if (rt->rt6i_metric != metric) {
614 cont = rt;
615 break;
616 }
617
618 match = find_match(rt, oif, strict, &mpri, match, do_rr);
619 }
620
621 if (match || !cont)
622 return match;
623
624 for (rt = cont; rt; rt = rt->dst.rt6_next)
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200625 match = find_match(rt, oif, strict, &mpri, match, do_rr);
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800626
David S. Millerf11e6652007-03-24 20:36:25 -0700627 return match;
628}
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800629
David S. Millerf11e6652007-03-24 20:36:25 -0700630static struct rt6_info *rt6_select(struct fib6_node *fn, int oif, int strict)
631{
632 struct rt6_info *match, *rt0;
Daniel Lezcano8ed67782008-03-04 13:48:30 -0800633 struct net *net;
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200634 bool do_rr = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635
David S. Millerf11e6652007-03-24 20:36:25 -0700636 rt0 = fn->rr_ptr;
637 if (!rt0)
638 fn->rr_ptr = rt0 = fn->leaf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200640 match = find_rr_leaf(fn, rt0, rt0->rt6i_metric, oif, strict,
641 &do_rr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642
Hannes Frederic Sowaafc154e2013-07-11 12:43:42 +0200643 if (do_rr) {
Changli Gaod8d1f302010-06-10 23:31:35 -0700644 struct rt6_info *next = rt0->dst.rt6_next;
David S. Millerf11e6652007-03-24 20:36:25 -0700645
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800646 /* no entries matched; do round-robin */
David S. Millerf11e6652007-03-24 20:36:25 -0700647 if (!next || next->rt6i_metric != rt0->rt6i_metric)
648 next = fn->leaf;
649
650 if (next != rt0)
651 fn->rr_ptr = next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 }
653
David S. Millerd1918542011-12-28 20:19:20 -0500654 net = dev_net(rt0->dst.dev);
Eric Dumazeta02cec22010-09-22 20:43:57 +0000655 return match ? match : net->ipv6.ip6_null_entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656}
657
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800658#ifdef CONFIG_IPV6_ROUTE_INFO
659int rt6_route_rcv(struct net_device *dev, u8 *opt, int len,
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000660 const struct in6_addr *gwaddr)
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800661{
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900662 struct net *net = dev_net(dev);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800663 struct route_info *rinfo = (struct route_info *) opt;
664 struct in6_addr prefix_buf, *prefix;
665 unsigned int pref;
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +0900666 unsigned long lifetime;
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800667 struct rt6_info *rt;
668
669 if (len < sizeof(struct route_info)) {
670 return -EINVAL;
671 }
672
673 /* Sanity check for prefix_len and length */
674 if (rinfo->length > 3) {
675 return -EINVAL;
676 } else if (rinfo->prefix_len > 128) {
677 return -EINVAL;
678 } else if (rinfo->prefix_len > 64) {
679 if (rinfo->length < 2) {
680 return -EINVAL;
681 }
682 } else if (rinfo->prefix_len > 0) {
683 if (rinfo->length < 1) {
684 return -EINVAL;
685 }
686 }
687
688 pref = rinfo->route_pref;
689 if (pref == ICMPV6_ROUTER_PREF_INVALID)
Jens Rosenboom3933fc92009-09-10 06:25:11 +0000690 return -EINVAL;
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800691
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +0900692 lifetime = addrconf_timeout_fixup(ntohl(rinfo->lifetime), HZ);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800693
694 if (rinfo->length == 3)
695 prefix = (struct in6_addr *)rinfo->prefix;
696 else {
697 /* this function is safe */
698 ipv6_addr_prefix(&prefix_buf,
699 (struct in6_addr *)rinfo->prefix,
700 rinfo->prefix_len);
701 prefix = &prefix_buf;
702 }
703
Duan Jiongf104a562013-11-08 09:56:53 +0800704 if (rinfo->prefix_len == 0)
705 rt = rt6_get_dflt_router(gwaddr, dev);
706 else
707 rt = rt6_get_route_info(net, prefix, rinfo->prefix_len,
708 gwaddr, dev->ifindex);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800709
710 if (rt && !lifetime) {
Thomas Grafe0a1ad732006-08-22 00:00:21 -0700711 ip6_del_rt(rt);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800712 rt = NULL;
713 }
714
715 if (!rt && lifetime)
Daniel Lezcanoefa2cea2008-03-04 13:46:48 -0800716 rt = rt6_add_route_info(net, prefix, rinfo->prefix_len, gwaddr, dev->ifindex,
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800717 pref);
718 else if (rt)
719 rt->rt6i_flags = RTF_ROUTEINFO |
720 (rt->rt6i_flags & ~RTF_PREF_MASK) | RTF_PREF(pref);
721
722 if (rt) {
Gao feng1716a962012-04-06 00:13:10 +0000723 if (!addrconf_finite_timeout(lifetime))
724 rt6_clean_expires(rt);
725 else
726 rt6_set_expires(rt, jiffies + HZ * lifetime);
727
Amerigo Wang94e187c2012-10-29 00:13:19 +0000728 ip6_rt_put(rt);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800729 }
730 return 0;
731}
732#endif
733
Martin KaFai Laua3c00e42014-10-20 13:42:43 -0700734static struct fib6_node* fib6_backtrack(struct fib6_node *fn,
735 struct in6_addr *saddr)
736{
737 struct fib6_node *pn;
738 while (1) {
739 if (fn->fn_flags & RTN_TL_ROOT)
740 return NULL;
741 pn = fn->parent;
742 if (FIB6_SUBTREE(pn) && FIB6_SUBTREE(pn) != fn)
743 fn = fib6_lookup(FIB6_SUBTREE(pn), NULL, saddr);
744 else
745 fn = pn;
746 if (fn->fn_flags & RTN_RTINFO)
747 return fn;
748 }
749}
Thomas Grafc71099a2006-08-04 23:20:06 -0700750
Daniel Lezcano8ed67782008-03-04 13:48:30 -0800751static struct rt6_info *ip6_pol_route_lookup(struct net *net,
752 struct fib6_table *table,
David S. Miller4c9483b2011-03-12 16:22:43 -0500753 struct flowi6 *fl6, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754{
755 struct fib6_node *fn;
756 struct rt6_info *rt;
757
Thomas Grafc71099a2006-08-04 23:20:06 -0700758 read_lock_bh(&table->tb6_lock);
David S. Miller4c9483b2011-03-12 16:22:43 -0500759 fn = fib6_lookup(&table->tb6_root, &fl6->daddr, &fl6->saddr);
Thomas Grafc71099a2006-08-04 23:20:06 -0700760restart:
761 rt = fn->leaf;
David S. Miller4c9483b2011-03-12 16:22:43 -0500762 rt = rt6_device_match(net, rt, &fl6->saddr, fl6->flowi6_oif, flags);
Nicolas Dichtel51ebd312012-10-22 03:42:09 +0000763 if (rt->rt6i_nsiblings && fl6->flowi6_oif == 0)
Nicolas Dichtel52bd4c02013-06-28 17:35:48 +0200764 rt = rt6_multipath_select(rt, fl6, fl6->flowi6_oif, flags);
Martin KaFai Laua3c00e42014-10-20 13:42:43 -0700765 if (rt == net->ipv6.ip6_null_entry) {
766 fn = fib6_backtrack(fn, &fl6->saddr);
767 if (fn)
768 goto restart;
769 }
Changli Gaod8d1f302010-06-10 23:31:35 -0700770 dst_use(&rt->dst, jiffies);
Thomas Grafc71099a2006-08-04 23:20:06 -0700771 read_unlock_bh(&table->tb6_lock);
Thomas Grafc71099a2006-08-04 23:20:06 -0700772 return rt;
773
774}
775
Ian Morris67ba4152014-08-24 21:53:10 +0100776struct dst_entry *ip6_route_lookup(struct net *net, struct flowi6 *fl6,
Florian Westphalea6e5742011-09-05 16:05:44 +0200777 int flags)
778{
779 return fib6_rule_lookup(net, fl6, flags, ip6_pol_route_lookup);
780}
781EXPORT_SYMBOL_GPL(ip6_route_lookup);
782
YOSHIFUJI Hideaki9acd9f32008-04-10 15:42:10 +0900783struct rt6_info *rt6_lookup(struct net *net, const struct in6_addr *daddr,
784 const struct in6_addr *saddr, int oif, int strict)
Thomas Grafc71099a2006-08-04 23:20:06 -0700785{
David S. Miller4c9483b2011-03-12 16:22:43 -0500786 struct flowi6 fl6 = {
787 .flowi6_oif = oif,
788 .daddr = *daddr,
Thomas Grafc71099a2006-08-04 23:20:06 -0700789 };
790 struct dst_entry *dst;
YOSHIFUJI Hideaki77d16f42006-08-23 17:25:05 -0700791 int flags = strict ? RT6_LOOKUP_F_IFACE : 0;
Thomas Grafc71099a2006-08-04 23:20:06 -0700792
Thomas Grafadaa70b2006-10-13 15:01:03 -0700793 if (saddr) {
David S. Miller4c9483b2011-03-12 16:22:43 -0500794 memcpy(&fl6.saddr, saddr, sizeof(*saddr));
Thomas Grafadaa70b2006-10-13 15:01:03 -0700795 flags |= RT6_LOOKUP_F_HAS_SADDR;
796 }
797
David S. Miller4c9483b2011-03-12 16:22:43 -0500798 dst = fib6_rule_lookup(net, &fl6, flags, ip6_pol_route_lookup);
Thomas Grafc71099a2006-08-04 23:20:06 -0700799 if (dst->error == 0)
800 return (struct rt6_info *) dst;
801
802 dst_release(dst);
803
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 return NULL;
805}
YOSHIFUJI Hideaki71590392007-02-22 22:05:40 +0900806EXPORT_SYMBOL(rt6_lookup);
807
Thomas Grafc71099a2006-08-04 23:20:06 -0700808/* ip6_ins_rt is called with FREE table->tb6_lock.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 It takes new route entry, the addition fails by any reason the
810 route is freed. In any case, if caller does not hold it, it may
811 be destroyed.
812 */
813
Michal Kubečeke5fd3872014-03-27 13:04:08 +0100814static int __ip6_ins_rt(struct rt6_info *rt, struct nl_info *info,
Florian Westphale715b6d2015-01-05 23:57:44 +0100815 struct mx6_config *mxc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816{
817 int err;
Thomas Grafc71099a2006-08-04 23:20:06 -0700818 struct fib6_table *table;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819
Thomas Grafc71099a2006-08-04 23:20:06 -0700820 table = rt->rt6i_table;
821 write_lock_bh(&table->tb6_lock);
Florian Westphale715b6d2015-01-05 23:57:44 +0100822 err = fib6_add(&table->tb6_root, rt, info, mxc);
Thomas Grafc71099a2006-08-04 23:20:06 -0700823 write_unlock_bh(&table->tb6_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824
825 return err;
826}
827
Thomas Graf40e22e82006-08-22 00:00:45 -0700828int ip6_ins_rt(struct rt6_info *rt)
829{
Florian Westphale715b6d2015-01-05 23:57:44 +0100830 struct nl_info info = { .nl_net = dev_net(rt->dst.dev), };
831 struct mx6_config mxc = { .mx = NULL, };
832
833 return __ip6_ins_rt(rt, &info, &mxc);
Thomas Graf40e22e82006-08-22 00:00:45 -0700834}
835
Gao feng1716a962012-04-06 00:13:10 +0000836static struct rt6_info *rt6_alloc_cow(struct rt6_info *ort,
Eric Dumazet21efcfa2011-07-19 20:18:36 +0000837 const struct in6_addr *daddr,
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000838 const struct in6_addr *saddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840 struct rt6_info *rt;
841
842 /*
843 * Clone the route.
844 */
845
Eric Dumazet21efcfa2011-07-19 20:18:36 +0000846 rt = ip6_rt_copy(ort, daddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847
848 if (rt) {
Duan Jiong249a3632013-11-05 13:34:53 +0800849 if (ort->rt6i_dst.plen != 128 &&
850 ipv6_addr_equal(&ort->rt6i_dst.addr, daddr))
851 rt->rt6i_flags |= RTF_ANYCAST;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853 rt->rt6i_flags |= RTF_CACHE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854
855#ifdef CONFIG_IPV6_SUBTREES
856 if (rt->rt6i_src.plen && saddr) {
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000857 rt->rt6i_src.addr = *saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 rt->rt6i_src.plen = 128;
859 }
860#endif
YOSHIFUJI Hideaki95a9a5b2006-03-20 16:55:51 -0800861 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862
YOSHIFUJI Hideaki95a9a5b2006-03-20 16:55:51 -0800863 return rt;
864}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865
Eric Dumazet21efcfa2011-07-19 20:18:36 +0000866static struct rt6_info *rt6_alloc_clone(struct rt6_info *ort,
867 const struct in6_addr *daddr)
YOSHIFUJI Hideaki299d9932006-03-20 16:58:32 -0800868{
Eric Dumazet21efcfa2011-07-19 20:18:36 +0000869 struct rt6_info *rt = ip6_rt_copy(ort, daddr);
870
YOSHIFUJI Hideaki / 吉藤英明887c95c2013-01-17 12:54:05 +0000871 if (rt)
YOSHIFUJI Hideaki299d9932006-03-20 16:58:32 -0800872 rt->rt6i_flags |= RTF_CACHE;
YOSHIFUJI Hideaki299d9932006-03-20 16:58:32 -0800873 return rt;
874}
875
Daniel Lezcano8ed67782008-03-04 13:48:30 -0800876static struct rt6_info *ip6_pol_route(struct net *net, struct fib6_table *table, int oif,
David S. Miller4c9483b2011-03-12 16:22:43 -0500877 struct flowi6 *fl6, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878{
Martin KaFai Lau367efcb2014-10-20 13:42:45 -0700879 struct fib6_node *fn, *saved_fn;
YOSHIFUJI Hideaki519fbd82006-03-20 17:00:05 -0800880 struct rt6_info *rt, *nrt;
Thomas Grafc71099a2006-08-04 23:20:06 -0700881 int strict = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882 int attempts = 3;
YOSHIFUJI Hideaki519fbd82006-03-20 17:00:05 -0800883 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884
YOSHIFUJI Hideaki77d16f42006-08-23 17:25:05 -0700885 strict |= flags & RT6_LOOKUP_F_IFACE;
Martin KaFai Lau367efcb2014-10-20 13:42:45 -0700886 if (net->ipv6.devconf_all->forwarding == 0)
887 strict |= RT6_LOOKUP_F_REACHABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888
Martin KaFai Laua3c00e42014-10-20 13:42:43 -0700889redo_fib6_lookup_lock:
Thomas Grafc71099a2006-08-04 23:20:06 -0700890 read_lock_bh(&table->tb6_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891
David S. Miller4c9483b2011-03-12 16:22:43 -0500892 fn = fib6_lookup(&table->tb6_root, &fl6->daddr, &fl6->saddr);
Martin KaFai Lau367efcb2014-10-20 13:42:45 -0700893 saved_fn = fn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894
Martin KaFai Laua3c00e42014-10-20 13:42:43 -0700895redo_rt6_select:
Martin KaFai Lau367efcb2014-10-20 13:42:45 -0700896 rt = rt6_select(fn, oif, strict);
Nicolas Dichtel52bd4c02013-06-28 17:35:48 +0200897 if (rt->rt6i_nsiblings)
Martin KaFai Lau367efcb2014-10-20 13:42:45 -0700898 rt = rt6_multipath_select(rt, fl6, oif, strict);
Martin KaFai Laua3c00e42014-10-20 13:42:43 -0700899 if (rt == net->ipv6.ip6_null_entry) {
900 fn = fib6_backtrack(fn, &fl6->saddr);
901 if (fn)
902 goto redo_rt6_select;
Martin KaFai Lau367efcb2014-10-20 13:42:45 -0700903 else if (strict & RT6_LOOKUP_F_REACHABLE) {
904 /* also consider unreachable route */
905 strict &= ~RT6_LOOKUP_F_REACHABLE;
906 fn = saved_fn;
907 goto redo_rt6_select;
908 } else {
909 dst_hold(&rt->dst);
910 read_unlock_bh(&table->tb6_lock);
911 goto out2;
912 }
Martin KaFai Laua3c00e42014-10-20 13:42:43 -0700913 }
914
Changli Gaod8d1f302010-06-10 23:31:35 -0700915 dst_hold(&rt->dst);
Thomas Grafc71099a2006-08-04 23:20:06 -0700916 read_unlock_bh(&table->tb6_lock);
YOSHIFUJI Hideakifb9de912006-03-20 16:59:08 -0800917
Martin KaFai Lau94c77bb2014-10-20 13:42:44 -0700918 if (rt->rt6i_flags & RTF_CACHE)
919 goto out2;
920
YOSHIFUJI Hideaki / 吉藤英明c440f162013-01-17 12:53:32 +0000921 if (!(rt->rt6i_flags & (RTF_NONEXTHOP | RTF_GATEWAY)))
David S. Miller4c9483b2011-03-12 16:22:43 -0500922 nrt = rt6_alloc_cow(rt, &fl6->daddr, &fl6->saddr);
Martin KaFai Lau70358702015-05-03 17:05:49 -0700923 else if (!(rt->dst.flags & DST_HOST) || !(rt->rt6i_flags & RTF_LOCAL))
David S. Miller4c9483b2011-03-12 16:22:43 -0500924 nrt = rt6_alloc_clone(rt, &fl6->daddr);
David S. Miller7343ff32011-03-09 19:55:25 -0800925 else
926 goto out2;
YOSHIFUJI Hideakie40cf352006-03-20 16:59:27 -0800927
Amerigo Wang94e187c2012-10-29 00:13:19 +0000928 ip6_rt_put(rt);
Daniel Lezcano8ed67782008-03-04 13:48:30 -0800929 rt = nrt ? : net->ipv6.ip6_null_entry;
YOSHIFUJI Hideaki519fbd82006-03-20 17:00:05 -0800930
Changli Gaod8d1f302010-06-10 23:31:35 -0700931 dst_hold(&rt->dst);
YOSHIFUJI Hideaki519fbd82006-03-20 17:00:05 -0800932 if (nrt) {
Thomas Graf40e22e82006-08-22 00:00:45 -0700933 err = ip6_ins_rt(nrt);
YOSHIFUJI Hideaki519fbd82006-03-20 17:00:05 -0800934 if (!err)
935 goto out2;
936 }
937
938 if (--attempts <= 0)
939 goto out2;
940
941 /*
Thomas Grafc71099a2006-08-04 23:20:06 -0700942 * Race condition! In the gap, when table->tb6_lock was
YOSHIFUJI Hideaki519fbd82006-03-20 17:00:05 -0800943 * released someone could insert this route. Relookup.
944 */
Amerigo Wang94e187c2012-10-29 00:13:19 +0000945 ip6_rt_put(rt);
Martin KaFai Laua3c00e42014-10-20 13:42:43 -0700946 goto redo_fib6_lookup_lock;
YOSHIFUJI Hideaki519fbd82006-03-20 17:00:05 -0800947
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948out2:
Martin KaFai Lau4b32b5a2015-04-28 13:03:06 -0700949 rt6_dst_from_metrics_check(rt);
Changli Gaod8d1f302010-06-10 23:31:35 -0700950 rt->dst.lastuse = jiffies;
951 rt->dst.__use++;
Thomas Grafc71099a2006-08-04 23:20:06 -0700952
953 return rt;
954}
955
Daniel Lezcano8ed67782008-03-04 13:48:30 -0800956static struct rt6_info *ip6_pol_route_input(struct net *net, struct fib6_table *table,
David S. Miller4c9483b2011-03-12 16:22:43 -0500957 struct flowi6 *fl6, int flags)
Pavel Emelyanov4acad722007-10-15 13:02:51 -0700958{
David S. Miller4c9483b2011-03-12 16:22:43 -0500959 return ip6_pol_route(net, table, fl6->flowi6_iif, fl6, flags);
Pavel Emelyanov4acad722007-10-15 13:02:51 -0700960}
961
Shmulik Ladkani72331bc2012-04-01 04:03:45 +0000962static struct dst_entry *ip6_route_input_lookup(struct net *net,
963 struct net_device *dev,
964 struct flowi6 *fl6, int flags)
965{
966 if (rt6_need_strict(&fl6->daddr) && dev->type != ARPHRD_PIMREG)
967 flags |= RT6_LOOKUP_F_IFACE;
968
969 return fib6_rule_lookup(net, fl6, flags, ip6_pol_route_input);
970}
971
Thomas Grafc71099a2006-08-04 23:20:06 -0700972void ip6_route_input(struct sk_buff *skb)
973{
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000974 const struct ipv6hdr *iph = ipv6_hdr(skb);
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900975 struct net *net = dev_net(skb->dev);
Thomas Grafadaa70b2006-10-13 15:01:03 -0700976 int flags = RT6_LOOKUP_F_HAS_SADDR;
David S. Miller4c9483b2011-03-12 16:22:43 -0500977 struct flowi6 fl6 = {
978 .flowi6_iif = skb->dev->ifindex,
979 .daddr = iph->daddr,
980 .saddr = iph->saddr,
YOSHIFUJI Hideaki / 吉藤英明6502ca52013-01-13 05:01:51 +0000981 .flowlabel = ip6_flowinfo(iph),
David S. Miller4c9483b2011-03-12 16:22:43 -0500982 .flowi6_mark = skb->mark,
983 .flowi6_proto = iph->nexthdr,
Thomas Grafc71099a2006-08-04 23:20:06 -0700984 };
Thomas Grafadaa70b2006-10-13 15:01:03 -0700985
Shmulik Ladkani72331bc2012-04-01 04:03:45 +0000986 skb_dst_set(skb, ip6_route_input_lookup(net, skb->dev, &fl6, flags));
Thomas Grafc71099a2006-08-04 23:20:06 -0700987}
988
Daniel Lezcano8ed67782008-03-04 13:48:30 -0800989static struct rt6_info *ip6_pol_route_output(struct net *net, struct fib6_table *table,
David S. Miller4c9483b2011-03-12 16:22:43 -0500990 struct flowi6 *fl6, int flags)
Thomas Grafc71099a2006-08-04 23:20:06 -0700991{
David S. Miller4c9483b2011-03-12 16:22:43 -0500992 return ip6_pol_route(net, table, fl6->flowi6_oif, fl6, flags);
Thomas Grafc71099a2006-08-04 23:20:06 -0700993}
994
Ian Morris67ba4152014-08-24 21:53:10 +0100995struct dst_entry *ip6_route_output(struct net *net, const struct sock *sk,
David S. Miller4c9483b2011-03-12 16:22:43 -0500996 struct flowi6 *fl6)
Thomas Grafc71099a2006-08-04 23:20:06 -0700997{
998 int flags = 0;
999
Pavel Emelyanov1fb94892012-08-08 21:53:36 +00001000 fl6->flowi6_iif = LOOPBACK_IFINDEX;
David McCullough4dc27d1c2012-06-25 15:42:26 +00001001
David S. Miller4c9483b2011-03-12 16:22:43 -05001002 if ((sk && sk->sk_bound_dev_if) || rt6_need_strict(&fl6->daddr))
YOSHIFUJI Hideaki77d16f42006-08-23 17:25:05 -07001003 flags |= RT6_LOOKUP_F_IFACE;
Thomas Grafc71099a2006-08-04 23:20:06 -07001004
David S. Miller4c9483b2011-03-12 16:22:43 -05001005 if (!ipv6_addr_any(&fl6->saddr))
Thomas Grafadaa70b2006-10-13 15:01:03 -07001006 flags |= RT6_LOOKUP_F_HAS_SADDR;
YOSHIFUJI Hideaki / 吉藤英明0c9a2ac2010-03-07 00:14:44 +00001007 else if (sk)
1008 flags |= rt6_srcprefs2flags(inet6_sk(sk)->srcprefs);
Thomas Grafadaa70b2006-10-13 15:01:03 -07001009
David S. Miller4c9483b2011-03-12 16:22:43 -05001010 return fib6_rule_lookup(net, fl6, flags, ip6_pol_route_output);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011}
YOSHIFUJI Hideaki71590392007-02-22 22:05:40 +09001012EXPORT_SYMBOL(ip6_route_output);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013
David S. Miller2774c132011-03-01 14:59:04 -08001014struct dst_entry *ip6_blackhole_route(struct net *net, struct dst_entry *dst_orig)
David S. Miller14e50e52007-05-24 18:17:54 -07001015{
David S. Miller5c1e6aa2011-04-28 14:13:38 -07001016 struct rt6_info *rt, *ort = (struct rt6_info *) dst_orig;
David S. Miller14e50e52007-05-24 18:17:54 -07001017 struct dst_entry *new = NULL;
1018
David S. Millerf5b0a872012-07-19 12:31:33 -07001019 rt = dst_alloc(&ip6_dst_blackhole_ops, ort->dst.dev, 1, DST_OBSOLETE_NONE, 0);
David S. Miller14e50e52007-05-24 18:17:54 -07001020 if (rt) {
Changli Gaod8d1f302010-06-10 23:31:35 -07001021 new = &rt->dst;
David S. Miller14e50e52007-05-24 18:17:54 -07001022
Steffen Klassert81048912012-07-05 23:37:09 +00001023 memset(new + 1, 0, sizeof(*rt) - sizeof(*new));
Steffen Klassert81048912012-07-05 23:37:09 +00001024
David S. Miller14e50e52007-05-24 18:17:54 -07001025 new->__use = 1;
Herbert Xu352e5122007-11-13 21:34:06 -08001026 new->input = dst_discard;
Eric Dumazetaad88722014-04-15 13:47:15 -04001027 new->output = dst_discard_sk;
David S. Miller14e50e52007-05-24 18:17:54 -07001028
Eric Dumazet21efcfa2011-07-19 20:18:36 +00001029 if (dst_metrics_read_only(&ort->dst))
1030 new->_metrics = ort->dst._metrics;
1031 else
1032 dst_copy_metrics(new, &ort->dst);
David S. Miller14e50e52007-05-24 18:17:54 -07001033 rt->rt6i_idev = ort->rt6i_idev;
1034 if (rt->rt6i_idev)
1035 in6_dev_hold(rt->rt6i_idev);
David S. Miller14e50e52007-05-24 18:17:54 -07001036
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001037 rt->rt6i_gateway = ort->rt6i_gateway;
Gao feng1716a962012-04-06 00:13:10 +00001038 rt->rt6i_flags = ort->rt6i_flags;
David S. Miller14e50e52007-05-24 18:17:54 -07001039 rt->rt6i_metric = 0;
1040
1041 memcpy(&rt->rt6i_dst, &ort->rt6i_dst, sizeof(struct rt6key));
1042#ifdef CONFIG_IPV6_SUBTREES
1043 memcpy(&rt->rt6i_src, &ort->rt6i_src, sizeof(struct rt6key));
1044#endif
1045
1046 dst_free(new);
1047 }
1048
David S. Miller69ead7a2011-03-01 14:45:33 -08001049 dst_release(dst_orig);
1050 return new ? new : ERR_PTR(-ENOMEM);
David S. Miller14e50e52007-05-24 18:17:54 -07001051}
David S. Miller14e50e52007-05-24 18:17:54 -07001052
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053/*
1054 * Destination cache support functions
1055 */
1056
Martin KaFai Lau4b32b5a2015-04-28 13:03:06 -07001057static void rt6_dst_from_metrics_check(struct rt6_info *rt)
1058{
1059 if (rt->dst.from &&
1060 dst_metrics_ptr(&rt->dst) != dst_metrics_ptr(rt->dst.from))
1061 dst_init_metrics(&rt->dst, dst_metrics_ptr(rt->dst.from), true);
1062}
1063
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064static struct dst_entry *ip6_dst_check(struct dst_entry *dst, u32 cookie)
1065{
1066 struct rt6_info *rt;
1067
1068 rt = (struct rt6_info *) dst;
1069
Nicolas Dichtel6f3118b2012-09-10 22:09:46 +00001070 /* All IPV6 dsts are created with ->obsolete set to the value
1071 * DST_OBSOLETE_FORCE_CHK which forces validation calls down
1072 * into this function always.
1073 */
Hannes Frederic Sowae3bc10b2013-10-24 07:48:24 +02001074 if (!rt->rt6i_node || (rt->rt6i_node->fn_sernum != cookie))
1075 return NULL;
Li RongQinga4477c42012-11-07 21:56:33 +00001076
Hannes Frederic Sowae3bc10b2013-10-24 07:48:24 +02001077 if (rt6_check_expired(rt))
1078 return NULL;
1079
Martin KaFai Lau4b32b5a2015-04-28 13:03:06 -07001080 rt6_dst_from_metrics_check(rt);
1081
Hannes Frederic Sowae3bc10b2013-10-24 07:48:24 +02001082 return dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083}
1084
1085static struct dst_entry *ip6_negative_advice(struct dst_entry *dst)
1086{
1087 struct rt6_info *rt = (struct rt6_info *) dst;
1088
1089 if (rt) {
YOSHIFUJI Hideaki / 吉藤英明54c1a852010-03-28 07:15:45 +00001090 if (rt->rt6i_flags & RTF_CACHE) {
1091 if (rt6_check_expired(rt)) {
1092 ip6_del_rt(rt);
1093 dst = NULL;
1094 }
1095 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096 dst_release(dst);
YOSHIFUJI Hideaki / 吉藤英明54c1a852010-03-28 07:15:45 +00001097 dst = NULL;
1098 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099 }
YOSHIFUJI Hideaki / 吉藤英明54c1a852010-03-28 07:15:45 +00001100 return dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101}
1102
1103static void ip6_link_failure(struct sk_buff *skb)
1104{
1105 struct rt6_info *rt;
1106
Alexey Dobriyan3ffe5332010-02-18 08:25:24 +00001107 icmpv6_send(skb, ICMPV6_DEST_UNREACH, ICMPV6_ADDR_UNREACH, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108
Eric Dumazetadf30902009-06-02 05:19:30 +00001109 rt = (struct rt6_info *) skb_dst(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110 if (rt) {
Hannes Frederic Sowa1eb4f752013-07-10 23:00:57 +02001111 if (rt->rt6i_flags & RTF_CACHE) {
1112 dst_hold(&rt->dst);
1113 if (ip6_del_rt(rt))
1114 dst_free(&rt->dst);
1115 } else if (rt->rt6i_node && (rt->rt6i_flags & RTF_DEFAULT)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116 rt->rt6i_node->fn_sernum = -1;
Hannes Frederic Sowa1eb4f752013-07-10 23:00:57 +02001117 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118 }
1119}
1120
David S. Miller6700c272012-07-17 03:29:28 -07001121static void ip6_rt_update_pmtu(struct dst_entry *dst, struct sock *sk,
1122 struct sk_buff *skb, u32 mtu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123{
Ian Morris67ba4152014-08-24 21:53:10 +01001124 struct rt6_info *rt6 = (struct rt6_info *)dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125
David S. Miller81aded22012-06-15 14:54:11 -07001126 dst_confirm(dst);
Martin KaFai Lau653437d2015-04-28 13:03:05 -07001127 if (mtu < dst_mtu(dst) && (rt6->rt6i_flags & RTF_CACHE)) {
David S. Miller81aded22012-06-15 14:54:11 -07001128 struct net *net = dev_net(dst->dev);
1129
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130 rt6->rt6i_flags |= RTF_MODIFIED;
Hagen Paul Pfeifer9d289712015-01-15 22:34:25 +01001131 if (mtu < IPV6_MIN_MTU)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132 mtu = IPV6_MIN_MTU;
Hagen Paul Pfeifer9d289712015-01-15 22:34:25 +01001133
Martin KaFai Lau4b32b5a2015-04-28 13:03:06 -07001134 rt6->rt6i_pmtu = mtu;
David S. Miller81aded22012-06-15 14:54:11 -07001135 rt6_update_expires(rt6, net->ipv6.sysctl.ip6_rt_mtu_expires);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136 }
1137}
1138
David S. Miller42ae66c2012-06-15 20:01:57 -07001139void ip6_update_pmtu(struct sk_buff *skb, struct net *net, __be32 mtu,
1140 int oif, u32 mark)
David S. Miller81aded22012-06-15 14:54:11 -07001141{
1142 const struct ipv6hdr *iph = (struct ipv6hdr *) skb->data;
1143 struct dst_entry *dst;
1144 struct flowi6 fl6;
1145
1146 memset(&fl6, 0, sizeof(fl6));
1147 fl6.flowi6_oif = oif;
Lorenzo Colitti1b3c61d2014-05-13 10:17:34 -07001148 fl6.flowi6_mark = mark ? mark : IP6_REPLY_MARK(net, skb->mark);
David S. Miller81aded22012-06-15 14:54:11 -07001149 fl6.daddr = iph->daddr;
1150 fl6.saddr = iph->saddr;
YOSHIFUJI Hideaki / 吉藤英明6502ca52013-01-13 05:01:51 +00001151 fl6.flowlabel = ip6_flowinfo(iph);
David S. Miller81aded22012-06-15 14:54:11 -07001152
1153 dst = ip6_route_output(net, NULL, &fl6);
1154 if (!dst->error)
David S. Miller6700c272012-07-17 03:29:28 -07001155 ip6_rt_update_pmtu(dst, NULL, skb, ntohl(mtu));
David S. Miller81aded22012-06-15 14:54:11 -07001156 dst_release(dst);
1157}
1158EXPORT_SYMBOL_GPL(ip6_update_pmtu);
1159
1160void ip6_sk_update_pmtu(struct sk_buff *skb, struct sock *sk, __be32 mtu)
1161{
1162 ip6_update_pmtu(skb, sock_net(sk), mtu,
1163 sk->sk_bound_dev_if, sk->sk_mark);
1164}
1165EXPORT_SYMBOL_GPL(ip6_sk_update_pmtu);
1166
Duan Jiongb55b76b2013-09-04 19:44:21 +08001167/* Handle redirects */
1168struct ip6rd_flowi {
1169 struct flowi6 fl6;
1170 struct in6_addr gateway;
1171};
1172
1173static struct rt6_info *__ip6_route_redirect(struct net *net,
1174 struct fib6_table *table,
1175 struct flowi6 *fl6,
1176 int flags)
1177{
1178 struct ip6rd_flowi *rdfl = (struct ip6rd_flowi *)fl6;
1179 struct rt6_info *rt;
1180 struct fib6_node *fn;
1181
1182 /* Get the "current" route for this destination and
1183 * check if the redirect has come from approriate router.
1184 *
1185 * RFC 4861 specifies that redirects should only be
1186 * accepted if they come from the nexthop to the target.
1187 * Due to the way the routes are chosen, this notion
1188 * is a bit fuzzy and one might need to check all possible
1189 * routes.
1190 */
1191
1192 read_lock_bh(&table->tb6_lock);
1193 fn = fib6_lookup(&table->tb6_root, &fl6->daddr, &fl6->saddr);
1194restart:
1195 for (rt = fn->leaf; rt; rt = rt->dst.rt6_next) {
1196 if (rt6_check_expired(rt))
1197 continue;
1198 if (rt->dst.error)
1199 break;
1200 if (!(rt->rt6i_flags & RTF_GATEWAY))
1201 continue;
1202 if (fl6->flowi6_oif != rt->dst.dev->ifindex)
1203 continue;
1204 if (!ipv6_addr_equal(&rdfl->gateway, &rt->rt6i_gateway))
1205 continue;
1206 break;
1207 }
1208
1209 if (!rt)
1210 rt = net->ipv6.ip6_null_entry;
1211 else if (rt->dst.error) {
1212 rt = net->ipv6.ip6_null_entry;
Martin KaFai Laub0a1ba52015-01-20 19:16:02 -08001213 goto out;
1214 }
1215
1216 if (rt == net->ipv6.ip6_null_entry) {
Martin KaFai Laua3c00e42014-10-20 13:42:43 -07001217 fn = fib6_backtrack(fn, &fl6->saddr);
1218 if (fn)
1219 goto restart;
Duan Jiongb55b76b2013-09-04 19:44:21 +08001220 }
Martin KaFai Laua3c00e42014-10-20 13:42:43 -07001221
Martin KaFai Laub0a1ba52015-01-20 19:16:02 -08001222out:
Duan Jiongb55b76b2013-09-04 19:44:21 +08001223 dst_hold(&rt->dst);
1224
1225 read_unlock_bh(&table->tb6_lock);
1226
1227 return rt;
1228};
1229
1230static struct dst_entry *ip6_route_redirect(struct net *net,
1231 const struct flowi6 *fl6,
1232 const struct in6_addr *gateway)
1233{
1234 int flags = RT6_LOOKUP_F_HAS_SADDR;
1235 struct ip6rd_flowi rdfl;
1236
1237 rdfl.fl6 = *fl6;
1238 rdfl.gateway = *gateway;
1239
1240 return fib6_rule_lookup(net, &rdfl.fl6,
1241 flags, __ip6_route_redirect);
1242}
1243
David S. Miller3a5ad2e2012-07-12 00:08:07 -07001244void ip6_redirect(struct sk_buff *skb, struct net *net, int oif, u32 mark)
1245{
1246 const struct ipv6hdr *iph = (struct ipv6hdr *) skb->data;
1247 struct dst_entry *dst;
1248 struct flowi6 fl6;
1249
1250 memset(&fl6, 0, sizeof(fl6));
Julian Anastasove374c612014-04-28 10:51:56 +03001251 fl6.flowi6_iif = LOOPBACK_IFINDEX;
David S. Miller3a5ad2e2012-07-12 00:08:07 -07001252 fl6.flowi6_oif = oif;
1253 fl6.flowi6_mark = mark;
David S. Miller3a5ad2e2012-07-12 00:08:07 -07001254 fl6.daddr = iph->daddr;
1255 fl6.saddr = iph->saddr;
YOSHIFUJI Hideaki / 吉藤英明6502ca52013-01-13 05:01:51 +00001256 fl6.flowlabel = ip6_flowinfo(iph);
David S. Miller3a5ad2e2012-07-12 00:08:07 -07001257
Duan Jiongb55b76b2013-09-04 19:44:21 +08001258 dst = ip6_route_redirect(net, &fl6, &ipv6_hdr(skb)->saddr);
1259 rt6_do_redirect(dst, NULL, skb);
David S. Miller3a5ad2e2012-07-12 00:08:07 -07001260 dst_release(dst);
1261}
1262EXPORT_SYMBOL_GPL(ip6_redirect);
1263
Duan Jiongc92a59e2013-08-22 12:07:35 +08001264void ip6_redirect_no_header(struct sk_buff *skb, struct net *net, int oif,
1265 u32 mark)
1266{
1267 const struct ipv6hdr *iph = ipv6_hdr(skb);
1268 const struct rd_msg *msg = (struct rd_msg *)icmp6_hdr(skb);
1269 struct dst_entry *dst;
1270 struct flowi6 fl6;
1271
1272 memset(&fl6, 0, sizeof(fl6));
Julian Anastasove374c612014-04-28 10:51:56 +03001273 fl6.flowi6_iif = LOOPBACK_IFINDEX;
Duan Jiongc92a59e2013-08-22 12:07:35 +08001274 fl6.flowi6_oif = oif;
1275 fl6.flowi6_mark = mark;
Duan Jiongc92a59e2013-08-22 12:07:35 +08001276 fl6.daddr = msg->dest;
1277 fl6.saddr = iph->daddr;
1278
Duan Jiongb55b76b2013-09-04 19:44:21 +08001279 dst = ip6_route_redirect(net, &fl6, &iph->saddr);
1280 rt6_do_redirect(dst, NULL, skb);
Duan Jiongc92a59e2013-08-22 12:07:35 +08001281 dst_release(dst);
1282}
1283
David S. Miller3a5ad2e2012-07-12 00:08:07 -07001284void ip6_sk_redirect(struct sk_buff *skb, struct sock *sk)
1285{
1286 ip6_redirect(skb, sock_net(sk), sk->sk_bound_dev_if, sk->sk_mark);
1287}
1288EXPORT_SYMBOL_GPL(ip6_sk_redirect);
1289
David S. Miller0dbaee32010-12-13 12:52:14 -08001290static unsigned int ip6_default_advmss(const struct dst_entry *dst)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291{
David S. Miller0dbaee32010-12-13 12:52:14 -08001292 struct net_device *dev = dst->dev;
1293 unsigned int mtu = dst_mtu(dst);
1294 struct net *net = dev_net(dev);
1295
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296 mtu -= sizeof(struct ipv6hdr) + sizeof(struct tcphdr);
1297
Daniel Lezcano55786892008-03-04 13:47:47 -08001298 if (mtu < net->ipv6.sysctl.ip6_rt_min_advmss)
1299 mtu = net->ipv6.sysctl.ip6_rt_min_advmss;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300
1301 /*
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001302 * Maximal non-jumbo IPv6 payload is IPV6_MAXPLEN and
1303 * corresponding MSS is IPV6_MAXPLEN - tcp_header_size.
1304 * IPV6_MAXPLEN is also valid and means: "any MSS,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305 * rely only on pmtu discovery"
1306 */
1307 if (mtu > IPV6_MAXPLEN - sizeof(struct tcphdr))
1308 mtu = IPV6_MAXPLEN;
1309 return mtu;
1310}
1311
Steffen Klassertebb762f2011-11-23 02:12:51 +00001312static unsigned int ip6_mtu(const struct dst_entry *dst)
David S. Millerd33e4552010-12-14 13:01:14 -08001313{
Martin KaFai Lau4b32b5a2015-04-28 13:03:06 -07001314 const struct rt6_info *rt = (const struct rt6_info *)dst;
1315 unsigned int mtu = rt->rt6i_pmtu;
David S. Millerd33e4552010-12-14 13:01:14 -08001316 struct inet6_dev *idev;
Steffen Klassert618f9bc2011-11-23 02:13:31 +00001317
1318 if (mtu)
Eric Dumazet30f78d82014-04-10 21:23:36 -07001319 goto out;
Steffen Klassert618f9bc2011-11-23 02:13:31 +00001320
Martin KaFai Lau4b32b5a2015-04-28 13:03:06 -07001321 mtu = dst_metric_raw(dst, RTAX_MTU);
1322 if (mtu)
1323 goto out;
1324
Steffen Klassert618f9bc2011-11-23 02:13:31 +00001325 mtu = IPV6_MIN_MTU;
David S. Millerd33e4552010-12-14 13:01:14 -08001326
1327 rcu_read_lock();
1328 idev = __in6_dev_get(dst->dev);
1329 if (idev)
1330 mtu = idev->cnf.mtu6;
1331 rcu_read_unlock();
1332
Eric Dumazet30f78d82014-04-10 21:23:36 -07001333out:
1334 return min_t(unsigned int, mtu, IP6_MAX_MTU);
David S. Millerd33e4552010-12-14 13:01:14 -08001335}
1336
YOSHIFUJI Hideaki3b009442007-12-06 16:11:48 -08001337static struct dst_entry *icmp6_dst_gc_list;
1338static DEFINE_SPINLOCK(icmp6_dst_lock);
Thomas Graf5d0bbee2006-08-04 03:37:36 -07001339
YOSHIFUJI Hideaki3b009442007-12-06 16:11:48 -08001340struct dst_entry *icmp6_dst_alloc(struct net_device *dev,
David S. Miller87a11572011-12-06 17:04:13 -05001341 struct flowi6 *fl6)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342{
David S. Miller87a11572011-12-06 17:04:13 -05001343 struct dst_entry *dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344 struct rt6_info *rt;
1345 struct inet6_dev *idev = in6_dev_get(dev);
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001346 struct net *net = dev_net(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347
David S. Miller38308472011-12-03 18:02:47 -05001348 if (unlikely(!idev))
Eric Dumazet122bdf62012-03-14 21:13:11 +00001349 return ERR_PTR(-ENODEV);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350
David S. Miller8b96d222012-06-11 02:01:56 -07001351 rt = ip6_dst_alloc(net, dev, 0, NULL);
David S. Miller38308472011-12-03 18:02:47 -05001352 if (unlikely(!rt)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353 in6_dev_put(idev);
David S. Miller87a11572011-12-06 17:04:13 -05001354 dst = ERR_PTR(-ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355 goto out;
1356 }
1357
Yan, Zheng8e2ec632011-09-05 21:34:30 +00001358 rt->dst.flags |= DST_HOST;
1359 rt->dst.output = ip6_output;
Changli Gaod8d1f302010-06-10 23:31:35 -07001360 atomic_set(&rt->dst.__refcnt, 1);
Julian Anastasov550bab42013-10-20 15:43:04 +03001361 rt->rt6i_gateway = fl6->daddr;
David S. Miller87a11572011-12-06 17:04:13 -05001362 rt->rt6i_dst.addr = fl6->daddr;
Yan, Zheng8e2ec632011-09-05 21:34:30 +00001363 rt->rt6i_dst.plen = 128;
1364 rt->rt6i_idev = idev;
Li RongQing14edd872012-10-24 14:01:18 +08001365 dst_metric_set(&rt->dst, RTAX_HOPLIMIT, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366
YOSHIFUJI Hideaki3b009442007-12-06 16:11:48 -08001367 spin_lock_bh(&icmp6_dst_lock);
Changli Gaod8d1f302010-06-10 23:31:35 -07001368 rt->dst.next = icmp6_dst_gc_list;
1369 icmp6_dst_gc_list = &rt->dst;
YOSHIFUJI Hideaki3b009442007-12-06 16:11:48 -08001370 spin_unlock_bh(&icmp6_dst_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371
Daniel Lezcano55786892008-03-04 13:47:47 -08001372 fib6_force_start_gc(net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373
David S. Miller87a11572011-12-06 17:04:13 -05001374 dst = xfrm_lookup(net, &rt->dst, flowi6_to_flowi(fl6), NULL, 0);
1375
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376out:
David S. Miller87a11572011-12-06 17:04:13 -05001377 return dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378}
1379
Stephen Hemminger3d0f24a2008-07-22 14:35:50 -07001380int icmp6_dst_gc(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381{
Hagen Paul Pfeifere9476e92011-02-25 05:45:19 +00001382 struct dst_entry *dst, **pprev;
Stephen Hemminger3d0f24a2008-07-22 14:35:50 -07001383 int more = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384
YOSHIFUJI Hideaki3b009442007-12-06 16:11:48 -08001385 spin_lock_bh(&icmp6_dst_lock);
1386 pprev = &icmp6_dst_gc_list;
Thomas Graf5d0bbee2006-08-04 03:37:36 -07001387
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388 while ((dst = *pprev) != NULL) {
1389 if (!atomic_read(&dst->__refcnt)) {
1390 *pprev = dst->next;
1391 dst_free(dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392 } else {
1393 pprev = &dst->next;
Stephen Hemminger3d0f24a2008-07-22 14:35:50 -07001394 ++more;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395 }
1396 }
1397
YOSHIFUJI Hideaki3b009442007-12-06 16:11:48 -08001398 spin_unlock_bh(&icmp6_dst_lock);
Thomas Graf5d0bbee2006-08-04 03:37:36 -07001399
Stephen Hemminger3d0f24a2008-07-22 14:35:50 -07001400 return more;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401}
1402
David S. Miller1e493d12008-09-10 17:27:15 -07001403static void icmp6_clean_all(int (*func)(struct rt6_info *rt, void *arg),
1404 void *arg)
1405{
1406 struct dst_entry *dst, **pprev;
1407
1408 spin_lock_bh(&icmp6_dst_lock);
1409 pprev = &icmp6_dst_gc_list;
1410 while ((dst = *pprev) != NULL) {
1411 struct rt6_info *rt = (struct rt6_info *) dst;
1412 if (func(rt, arg)) {
1413 *pprev = dst->next;
1414 dst_free(dst);
1415 } else {
1416 pprev = &dst->next;
1417 }
1418 }
1419 spin_unlock_bh(&icmp6_dst_lock);
1420}
1421
Daniel Lezcano569d3642008-01-18 03:56:57 -08001422static int ip6_dst_gc(struct dst_ops *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423{
Alexey Dobriyan86393e52009-08-29 01:34:49 +00001424 struct net *net = container_of(ops, struct net, ipv6.ip6_dst_ops);
Daniel Lezcano7019b782008-03-04 13:50:14 -08001425 int rt_min_interval = net->ipv6.sysctl.ip6_rt_gc_min_interval;
1426 int rt_max_size = net->ipv6.sysctl.ip6_rt_max_size;
1427 int rt_elasticity = net->ipv6.sysctl.ip6_rt_gc_elasticity;
1428 int rt_gc_timeout = net->ipv6.sysctl.ip6_rt_gc_timeout;
1429 unsigned long rt_last_gc = net->ipv6.ip6_rt_last_gc;
Eric Dumazetfc66f952010-10-08 06:37:34 +00001430 int entries;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431
Eric Dumazetfc66f952010-10-08 06:37:34 +00001432 entries = dst_entries_get_fast(ops);
Michal Kubeček49a18d82013-08-01 10:04:24 +02001433 if (time_after(rt_last_gc + rt_min_interval, jiffies) &&
Eric Dumazetfc66f952010-10-08 06:37:34 +00001434 entries <= rt_max_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435 goto out;
1436
Benjamin Thery6891a342008-03-04 13:49:47 -08001437 net->ipv6.ip6_rt_gc_expire++;
Li RongQing14956642014-05-19 17:30:28 +08001438 fib6_run_gc(net->ipv6.ip6_rt_gc_expire, net, true);
Eric Dumazetfc66f952010-10-08 06:37:34 +00001439 entries = dst_entries_get_slow(ops);
1440 if (entries < ops->gc_thresh)
Daniel Lezcano7019b782008-03-04 13:50:14 -08001441 net->ipv6.ip6_rt_gc_expire = rt_gc_timeout>>1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442out:
Daniel Lezcano7019b782008-03-04 13:50:14 -08001443 net->ipv6.ip6_rt_gc_expire -= net->ipv6.ip6_rt_gc_expire>>rt_elasticity;
Eric Dumazetfc66f952010-10-08 06:37:34 +00001444 return entries > rt_max_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445}
1446
Florian Westphale715b6d2015-01-05 23:57:44 +01001447static int ip6_convert_metrics(struct mx6_config *mxc,
1448 const struct fib6_config *cfg)
1449{
1450 struct nlattr *nla;
1451 int remaining;
1452 u32 *mp;
1453
Ian Morris63159f22015-03-29 14:00:04 +01001454 if (!cfg->fc_mx)
Florian Westphale715b6d2015-01-05 23:57:44 +01001455 return 0;
1456
1457 mp = kzalloc(sizeof(u32) * RTAX_MAX, GFP_KERNEL);
1458 if (unlikely(!mp))
1459 return -ENOMEM;
1460
1461 nla_for_each_attr(nla, cfg->fc_mx, cfg->fc_mx_len, remaining) {
1462 int type = nla_type(nla);
1463
1464 if (type) {
Daniel Borkmannea697632015-01-05 23:57:47 +01001465 u32 val;
1466
Florian Westphale715b6d2015-01-05 23:57:44 +01001467 if (unlikely(type > RTAX_MAX))
1468 goto err;
Daniel Borkmannea697632015-01-05 23:57:47 +01001469 if (type == RTAX_CC_ALGO) {
1470 char tmp[TCP_CA_NAME_MAX];
Florian Westphale715b6d2015-01-05 23:57:44 +01001471
Daniel Borkmannea697632015-01-05 23:57:47 +01001472 nla_strlcpy(tmp, nla, sizeof(tmp));
1473 val = tcp_ca_get_key_by_name(tmp);
1474 if (val == TCP_CA_UNSPEC)
1475 goto err;
1476 } else {
1477 val = nla_get_u32(nla);
1478 }
1479
1480 mp[type - 1] = val;
Florian Westphale715b6d2015-01-05 23:57:44 +01001481 __set_bit(type - 1, mxc->mx_valid);
1482 }
1483 }
1484
1485 mxc->mx = mp;
1486
1487 return 0;
1488 err:
1489 kfree(mp);
1490 return -EINVAL;
1491}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492
Thomas Graf86872cb2006-08-22 00:01:08 -07001493int ip6_route_add(struct fib6_config *cfg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494{
1495 int err;
Daniel Lezcano55786892008-03-04 13:47:47 -08001496 struct net *net = cfg->fc_nlinfo.nl_net;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497 struct rt6_info *rt = NULL;
1498 struct net_device *dev = NULL;
1499 struct inet6_dev *idev = NULL;
Thomas Grafc71099a2006-08-04 23:20:06 -07001500 struct fib6_table *table;
Florian Westphale715b6d2015-01-05 23:57:44 +01001501 struct mx6_config mxc = { .mx = NULL, };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502 int addr_type;
1503
Thomas Graf86872cb2006-08-22 00:01:08 -07001504 if (cfg->fc_dst_len > 128 || cfg->fc_src_len > 128)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505 return -EINVAL;
1506#ifndef CONFIG_IPV6_SUBTREES
Thomas Graf86872cb2006-08-22 00:01:08 -07001507 if (cfg->fc_src_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508 return -EINVAL;
1509#endif
Thomas Graf86872cb2006-08-22 00:01:08 -07001510 if (cfg->fc_ifindex) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511 err = -ENODEV;
Daniel Lezcano55786892008-03-04 13:47:47 -08001512 dev = dev_get_by_index(net, cfg->fc_ifindex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513 if (!dev)
1514 goto out;
1515 idev = in6_dev_get(dev);
1516 if (!idev)
1517 goto out;
1518 }
1519
Thomas Graf86872cb2006-08-22 00:01:08 -07001520 if (cfg->fc_metric == 0)
1521 cfg->fc_metric = IP6_RT_PRIO_USER;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522
Matti Vaittinend71314b2011-11-14 00:14:49 +00001523 err = -ENOBUFS;
David S. Miller38308472011-12-03 18:02:47 -05001524 if (cfg->fc_nlinfo.nlh &&
1525 !(cfg->fc_nlinfo.nlh->nlmsg_flags & NLM_F_CREATE)) {
Matti Vaittinend71314b2011-11-14 00:14:49 +00001526 table = fib6_get_table(net, cfg->fc_table);
David S. Miller38308472011-12-03 18:02:47 -05001527 if (!table) {
Joe Perchesf3213832012-05-15 14:11:53 +00001528 pr_warn("NLM_F_CREATE should be specified when creating new route\n");
Matti Vaittinend71314b2011-11-14 00:14:49 +00001529 table = fib6_new_table(net, cfg->fc_table);
1530 }
1531 } else {
1532 table = fib6_new_table(net, cfg->fc_table);
1533 }
David S. Miller38308472011-12-03 18:02:47 -05001534
1535 if (!table)
Thomas Grafc71099a2006-08-04 23:20:06 -07001536 goto out;
Thomas Grafc71099a2006-08-04 23:20:06 -07001537
Sabrina Dubrocac88507f2014-03-06 17:51:57 +01001538 rt = ip6_dst_alloc(net, NULL, (cfg->fc_flags & RTF_ADDRCONF) ? 0 : DST_NOCOUNT, table);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539
David S. Miller38308472011-12-03 18:02:47 -05001540 if (!rt) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541 err = -ENOMEM;
1542 goto out;
1543 }
1544
Gao feng1716a962012-04-06 00:13:10 +00001545 if (cfg->fc_flags & RTF_EXPIRES)
1546 rt6_set_expires(rt, jiffies +
1547 clock_t_to_jiffies(cfg->fc_expires));
1548 else
1549 rt6_clean_expires(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550
Thomas Graf86872cb2006-08-22 00:01:08 -07001551 if (cfg->fc_protocol == RTPROT_UNSPEC)
1552 cfg->fc_protocol = RTPROT_BOOT;
1553 rt->rt6i_protocol = cfg->fc_protocol;
1554
1555 addr_type = ipv6_addr_type(&cfg->fc_dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556
1557 if (addr_type & IPV6_ADDR_MULTICAST)
Changli Gaod8d1f302010-06-10 23:31:35 -07001558 rt->dst.input = ip6_mc_input;
Maciej Żenczykowskiab79ad12010-09-27 00:07:02 +00001559 else if (cfg->fc_flags & RTF_LOCAL)
1560 rt->dst.input = ip6_input;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561 else
Changli Gaod8d1f302010-06-10 23:31:35 -07001562 rt->dst.input = ip6_forward;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563
Changli Gaod8d1f302010-06-10 23:31:35 -07001564 rt->dst.output = ip6_output;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565
Thomas Graf86872cb2006-08-22 00:01:08 -07001566 ipv6_addr_prefix(&rt->rt6i_dst.addr, &cfg->fc_dst, cfg->fc_dst_len);
1567 rt->rt6i_dst.plen = cfg->fc_dst_len;
Martin KaFai Lauafc4eef2015-04-28 13:03:07 -07001568 if (rt->rt6i_dst.plen == 128)
Michal Kubečeke5fd3872014-03-27 13:04:08 +01001569 rt->dst.flags |= DST_HOST;
Michal Kubečeke5fd3872014-03-27 13:04:08 +01001570
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571#ifdef CONFIG_IPV6_SUBTREES
Thomas Graf86872cb2006-08-22 00:01:08 -07001572 ipv6_addr_prefix(&rt->rt6i_src.addr, &cfg->fc_src, cfg->fc_src_len);
1573 rt->rt6i_src.plen = cfg->fc_src_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574#endif
1575
Thomas Graf86872cb2006-08-22 00:01:08 -07001576 rt->rt6i_metric = cfg->fc_metric;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577
1578 /* We cannot add true routes via loopback here,
1579 they would result in kernel looping; promote them to reject routes
1580 */
Thomas Graf86872cb2006-08-22 00:01:08 -07001581 if ((cfg->fc_flags & RTF_REJECT) ||
David S. Miller38308472011-12-03 18:02:47 -05001582 (dev && (dev->flags & IFF_LOOPBACK) &&
1583 !(addr_type & IPV6_ADDR_LOOPBACK) &&
1584 !(cfg->fc_flags & RTF_LOCAL))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585 /* hold loopback dev/idev if we haven't done so. */
Daniel Lezcano55786892008-03-04 13:47:47 -08001586 if (dev != net->loopback_dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587 if (dev) {
1588 dev_put(dev);
1589 in6_dev_put(idev);
1590 }
Daniel Lezcano55786892008-03-04 13:47:47 -08001591 dev = net->loopback_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592 dev_hold(dev);
1593 idev = in6_dev_get(dev);
1594 if (!idev) {
1595 err = -ENODEV;
1596 goto out;
1597 }
1598 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599 rt->rt6i_flags = RTF_REJECT|RTF_NONEXTHOP;
Nicolas Dichtelef2c7d72012-09-05 02:12:42 +00001600 switch (cfg->fc_type) {
1601 case RTN_BLACKHOLE:
1602 rt->dst.error = -EINVAL;
Eric Dumazetaad88722014-04-15 13:47:15 -04001603 rt->dst.output = dst_discard_sk;
Kamala R7150aed2013-12-02 19:55:21 +05301604 rt->dst.input = dst_discard;
Nicolas Dichtelef2c7d72012-09-05 02:12:42 +00001605 break;
1606 case RTN_PROHIBIT:
1607 rt->dst.error = -EACCES;
Kamala R7150aed2013-12-02 19:55:21 +05301608 rt->dst.output = ip6_pkt_prohibit_out;
1609 rt->dst.input = ip6_pkt_prohibit;
Nicolas Dichtelef2c7d72012-09-05 02:12:42 +00001610 break;
Nicolas Dichtelb4949ab2012-09-06 05:53:35 +00001611 case RTN_THROW:
Nicolas Dichtelef2c7d72012-09-05 02:12:42 +00001612 default:
Kamala R7150aed2013-12-02 19:55:21 +05301613 rt->dst.error = (cfg->fc_type == RTN_THROW) ? -EAGAIN
1614 : -ENETUNREACH;
1615 rt->dst.output = ip6_pkt_discard_out;
1616 rt->dst.input = ip6_pkt_discard;
Nicolas Dichtelef2c7d72012-09-05 02:12:42 +00001617 break;
1618 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619 goto install_route;
1620 }
1621
Thomas Graf86872cb2006-08-22 00:01:08 -07001622 if (cfg->fc_flags & RTF_GATEWAY) {
Eric Dumazetb71d1d42011-04-22 04:53:02 +00001623 const struct in6_addr *gw_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624 int gwa_type;
1625
Thomas Graf86872cb2006-08-22 00:01:08 -07001626 gw_addr = &cfg->fc_gateway;
Florian Westphal48ed7b22015-05-21 00:25:41 +02001627
1628 /* if gw_addr is local we will fail to detect this in case
1629 * address is still TENTATIVE (DAD in progress). rt6_lookup()
1630 * will return already-added prefix route via interface that
1631 * prefix route was assigned to, which might be non-loopback.
1632 */
1633 err = -EINVAL;
1634 if (ipv6_chk_addr_and_flags(net, gw_addr, NULL, 0, 0))
1635 goto out;
1636
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001637 rt->rt6i_gateway = *gw_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638 gwa_type = ipv6_addr_type(gw_addr);
1639
1640 if (gwa_type != (IPV6_ADDR_LINKLOCAL|IPV6_ADDR_UNICAST)) {
1641 struct rt6_info *grt;
1642
1643 /* IPv6 strictly inhibits using not link-local
1644 addresses as nexthop address.
1645 Otherwise, router will not able to send redirects.
1646 It is very good, but in some (rare!) circumstances
1647 (SIT, PtP, NBMA NOARP links) it is handy to allow
1648 some exceptions. --ANK
1649 */
David S. Miller38308472011-12-03 18:02:47 -05001650 if (!(gwa_type & IPV6_ADDR_UNICAST))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651 goto out;
1652
Daniel Lezcano55786892008-03-04 13:47:47 -08001653 grt = rt6_lookup(net, gw_addr, NULL, cfg->fc_ifindex, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654
1655 err = -EHOSTUNREACH;
David S. Miller38308472011-12-03 18:02:47 -05001656 if (!grt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657 goto out;
1658 if (dev) {
David S. Millerd1918542011-12-28 20:19:20 -05001659 if (dev != grt->dst.dev) {
Amerigo Wang94e187c2012-10-29 00:13:19 +00001660 ip6_rt_put(grt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661 goto out;
1662 }
1663 } else {
David S. Millerd1918542011-12-28 20:19:20 -05001664 dev = grt->dst.dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665 idev = grt->rt6i_idev;
1666 dev_hold(dev);
1667 in6_dev_hold(grt->rt6i_idev);
1668 }
David S. Miller38308472011-12-03 18:02:47 -05001669 if (!(grt->rt6i_flags & RTF_GATEWAY))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670 err = 0;
Amerigo Wang94e187c2012-10-29 00:13:19 +00001671 ip6_rt_put(grt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672
1673 if (err)
1674 goto out;
1675 }
1676 err = -EINVAL;
David S. Miller38308472011-12-03 18:02:47 -05001677 if (!dev || (dev->flags & IFF_LOOPBACK))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678 goto out;
1679 }
1680
1681 err = -ENODEV;
David S. Miller38308472011-12-03 18:02:47 -05001682 if (!dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683 goto out;
1684
Daniel Walterc3968a82011-04-13 21:10:57 +00001685 if (!ipv6_addr_any(&cfg->fc_prefsrc)) {
1686 if (!ipv6_chk_addr(net, &cfg->fc_prefsrc, dev, 0)) {
1687 err = -EINVAL;
1688 goto out;
1689 }
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001690 rt->rt6i_prefsrc.addr = cfg->fc_prefsrc;
Daniel Walterc3968a82011-04-13 21:10:57 +00001691 rt->rt6i_prefsrc.plen = 128;
1692 } else
1693 rt->rt6i_prefsrc.plen = 0;
1694
Thomas Graf86872cb2006-08-22 00:01:08 -07001695 rt->rt6i_flags = cfg->fc_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696
1697install_route:
Changli Gaod8d1f302010-06-10 23:31:35 -07001698 rt->dst.dev = dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699 rt->rt6i_idev = idev;
Thomas Grafc71099a2006-08-04 23:20:06 -07001700 rt->rt6i_table = table;
Daniel Lezcano63152fc2008-03-03 23:31:11 -08001701
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001702 cfg->fc_nlinfo.nl_net = dev_net(dev);
Daniel Lezcano63152fc2008-03-03 23:31:11 -08001703
Florian Westphale715b6d2015-01-05 23:57:44 +01001704 err = ip6_convert_metrics(&mxc, cfg);
1705 if (err)
1706 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707
Florian Westphale715b6d2015-01-05 23:57:44 +01001708 err = __ip6_ins_rt(rt, &cfg->fc_nlinfo, &mxc);
1709
1710 kfree(mxc.mx);
1711 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712out:
1713 if (dev)
1714 dev_put(dev);
1715 if (idev)
1716 in6_dev_put(idev);
1717 if (rt)
Changli Gaod8d1f302010-06-10 23:31:35 -07001718 dst_free(&rt->dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719 return err;
1720}
1721
Thomas Graf86872cb2006-08-22 00:01:08 -07001722static int __ip6_del_rt(struct rt6_info *rt, struct nl_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723{
1724 int err;
Thomas Grafc71099a2006-08-04 23:20:06 -07001725 struct fib6_table *table;
David S. Millerd1918542011-12-28 20:19:20 -05001726 struct net *net = dev_net(rt->dst.dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727
Gao feng6825a262012-09-19 19:25:34 +00001728 if (rt == net->ipv6.ip6_null_entry) {
1729 err = -ENOENT;
1730 goto out;
1731 }
Patrick McHardy6c813a72006-08-06 22:22:47 -07001732
Thomas Grafc71099a2006-08-04 23:20:06 -07001733 table = rt->rt6i_table;
1734 write_lock_bh(&table->tb6_lock);
Thomas Graf86872cb2006-08-22 00:01:08 -07001735 err = fib6_del(rt, info);
Thomas Grafc71099a2006-08-04 23:20:06 -07001736 write_unlock_bh(&table->tb6_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737
Gao feng6825a262012-09-19 19:25:34 +00001738out:
Amerigo Wang94e187c2012-10-29 00:13:19 +00001739 ip6_rt_put(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740 return err;
1741}
1742
Thomas Grafe0a1ad732006-08-22 00:00:21 -07001743int ip6_del_rt(struct rt6_info *rt)
1744{
Denis V. Lunev4d1169c2008-01-10 03:26:13 -08001745 struct nl_info info = {
David S. Millerd1918542011-12-28 20:19:20 -05001746 .nl_net = dev_net(rt->dst.dev),
Denis V. Lunev4d1169c2008-01-10 03:26:13 -08001747 };
Denis V. Lunev528c4ce2007-12-13 09:45:12 -08001748 return __ip6_del_rt(rt, &info);
Thomas Grafe0a1ad732006-08-22 00:00:21 -07001749}
1750
Thomas Graf86872cb2006-08-22 00:01:08 -07001751static int ip6_route_del(struct fib6_config *cfg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752{
Thomas Grafc71099a2006-08-04 23:20:06 -07001753 struct fib6_table *table;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001754 struct fib6_node *fn;
1755 struct rt6_info *rt;
1756 int err = -ESRCH;
1757
Daniel Lezcano55786892008-03-04 13:47:47 -08001758 table = fib6_get_table(cfg->fc_nlinfo.nl_net, cfg->fc_table);
David S. Miller38308472011-12-03 18:02:47 -05001759 if (!table)
Thomas Grafc71099a2006-08-04 23:20:06 -07001760 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761
Thomas Grafc71099a2006-08-04 23:20:06 -07001762 read_lock_bh(&table->tb6_lock);
1763
1764 fn = fib6_locate(&table->tb6_root,
Thomas Graf86872cb2006-08-22 00:01:08 -07001765 &cfg->fc_dst, cfg->fc_dst_len,
1766 &cfg->fc_src, cfg->fc_src_len);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001767
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768 if (fn) {
Changli Gaod8d1f302010-06-10 23:31:35 -07001769 for (rt = fn->leaf; rt; rt = rt->dst.rt6_next) {
Martin KaFai Lau1f56a012015-04-28 13:03:03 -07001770 if ((rt->rt6i_flags & RTF_CACHE) &&
1771 !(cfg->fc_flags & RTF_CACHE))
1772 continue;
Thomas Graf86872cb2006-08-22 00:01:08 -07001773 if (cfg->fc_ifindex &&
David S. Millerd1918542011-12-28 20:19:20 -05001774 (!rt->dst.dev ||
1775 rt->dst.dev->ifindex != cfg->fc_ifindex))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776 continue;
Thomas Graf86872cb2006-08-22 00:01:08 -07001777 if (cfg->fc_flags & RTF_GATEWAY &&
1778 !ipv6_addr_equal(&cfg->fc_gateway, &rt->rt6i_gateway))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779 continue;
Thomas Graf86872cb2006-08-22 00:01:08 -07001780 if (cfg->fc_metric && cfg->fc_metric != rt->rt6i_metric)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781 continue;
Changli Gaod8d1f302010-06-10 23:31:35 -07001782 dst_hold(&rt->dst);
Thomas Grafc71099a2006-08-04 23:20:06 -07001783 read_unlock_bh(&table->tb6_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784
Thomas Graf86872cb2006-08-22 00:01:08 -07001785 return __ip6_del_rt(rt, &cfg->fc_nlinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001786 }
1787 }
Thomas Grafc71099a2006-08-04 23:20:06 -07001788 read_unlock_bh(&table->tb6_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001789
1790 return err;
1791}
1792
David S. Miller6700c272012-07-17 03:29:28 -07001793static void rt6_do_redirect(struct dst_entry *dst, struct sock *sk, struct sk_buff *skb)
YOSHIFUJI Hideakia6279452006-08-23 17:18:26 -07001794{
David S. Millere8599ff2012-07-11 23:43:53 -07001795 struct net *net = dev_net(skb->dev);
YOSHIFUJI Hideakia6279452006-08-23 17:18:26 -07001796 struct netevent_redirect netevent;
David S. Millere8599ff2012-07-11 23:43:53 -07001797 struct rt6_info *rt, *nrt = NULL;
David S. Millere8599ff2012-07-11 23:43:53 -07001798 struct ndisc_options ndopts;
1799 struct inet6_dev *in6_dev;
1800 struct neighbour *neigh;
YOSHIFUJI Hideaki / 吉藤英明71bcdba2013-01-05 16:34:51 +00001801 struct rd_msg *msg;
David S. Miller6e157b62012-07-12 00:05:02 -07001802 int optlen, on_link;
1803 u8 *lladdr;
David S. Millere8599ff2012-07-11 23:43:53 -07001804
Simon Horman29a3cad2013-05-28 20:34:26 +00001805 optlen = skb_tail_pointer(skb) - skb_transport_header(skb);
YOSHIFUJI Hideaki / 吉藤英明71bcdba2013-01-05 16:34:51 +00001806 optlen -= sizeof(*msg);
David S. Millere8599ff2012-07-11 23:43:53 -07001807
1808 if (optlen < 0) {
David S. Miller6e157b62012-07-12 00:05:02 -07001809 net_dbg_ratelimited("rt6_do_redirect: packet too short\n");
David S. Millere8599ff2012-07-11 23:43:53 -07001810 return;
1811 }
1812
YOSHIFUJI Hideaki / 吉藤英明71bcdba2013-01-05 16:34:51 +00001813 msg = (struct rd_msg *)icmp6_hdr(skb);
David S. Millere8599ff2012-07-11 23:43:53 -07001814
YOSHIFUJI Hideaki / 吉藤英明71bcdba2013-01-05 16:34:51 +00001815 if (ipv6_addr_is_multicast(&msg->dest)) {
David S. Miller6e157b62012-07-12 00:05:02 -07001816 net_dbg_ratelimited("rt6_do_redirect: destination address is multicast\n");
David S. Millere8599ff2012-07-11 23:43:53 -07001817 return;
1818 }
1819
David S. Miller6e157b62012-07-12 00:05:02 -07001820 on_link = 0;
YOSHIFUJI Hideaki / 吉藤英明71bcdba2013-01-05 16:34:51 +00001821 if (ipv6_addr_equal(&msg->dest, &msg->target)) {
David S. Millere8599ff2012-07-11 23:43:53 -07001822 on_link = 1;
YOSHIFUJI Hideaki / 吉藤英明71bcdba2013-01-05 16:34:51 +00001823 } else if (ipv6_addr_type(&msg->target) !=
David S. Millere8599ff2012-07-11 23:43:53 -07001824 (IPV6_ADDR_UNICAST|IPV6_ADDR_LINKLOCAL)) {
David S. Miller6e157b62012-07-12 00:05:02 -07001825 net_dbg_ratelimited("rt6_do_redirect: target address is not link-local unicast\n");
David S. Millere8599ff2012-07-11 23:43:53 -07001826 return;
1827 }
1828
1829 in6_dev = __in6_dev_get(skb->dev);
1830 if (!in6_dev)
1831 return;
1832 if (in6_dev->cnf.forwarding || !in6_dev->cnf.accept_redirects)
1833 return;
1834
1835 /* RFC2461 8.1:
1836 * The IP source address of the Redirect MUST be the same as the current
1837 * first-hop router for the specified ICMP Destination Address.
1838 */
1839
YOSHIFUJI Hideaki / 吉藤英明71bcdba2013-01-05 16:34:51 +00001840 if (!ndisc_parse_options(msg->opt, optlen, &ndopts)) {
David S. Millere8599ff2012-07-11 23:43:53 -07001841 net_dbg_ratelimited("rt6_redirect: invalid ND options\n");
1842 return;
1843 }
David S. Miller6e157b62012-07-12 00:05:02 -07001844
1845 lladdr = NULL;
David S. Millere8599ff2012-07-11 23:43:53 -07001846 if (ndopts.nd_opts_tgt_lladdr) {
1847 lladdr = ndisc_opt_addr_data(ndopts.nd_opts_tgt_lladdr,
1848 skb->dev);
1849 if (!lladdr) {
1850 net_dbg_ratelimited("rt6_redirect: invalid link-layer address length\n");
1851 return;
1852 }
1853 }
1854
David S. Miller6e157b62012-07-12 00:05:02 -07001855 rt = (struct rt6_info *) dst;
1856 if (rt == net->ipv6.ip6_null_entry) {
1857 net_dbg_ratelimited("rt6_redirect: source isn't a valid nexthop for redirect target\n");
1858 return;
1859 }
1860
1861 /* Redirect received -> path was valid.
1862 * Look, redirects are sent only in response to data packets,
1863 * so that this nexthop apparently is reachable. --ANK
1864 */
1865 dst_confirm(&rt->dst);
1866
YOSHIFUJI Hideaki / 吉藤英明71bcdba2013-01-05 16:34:51 +00001867 neigh = __neigh_lookup(&nd_tbl, &msg->target, skb->dev, 1);
David S. Millere8599ff2012-07-11 23:43:53 -07001868 if (!neigh)
1869 return;
1870
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871 /*
1872 * We have finally decided to accept it.
1873 */
1874
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001875 neigh_update(neigh, lladdr, NUD_STALE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876 NEIGH_UPDATE_F_WEAK_OVERRIDE|
1877 NEIGH_UPDATE_F_OVERRIDE|
1878 (on_link ? 0 : (NEIGH_UPDATE_F_OVERRIDE_ISROUTER|
1879 NEIGH_UPDATE_F_ISROUTER))
1880 );
1881
YOSHIFUJI Hideaki / 吉藤英明71bcdba2013-01-05 16:34:51 +00001882 nrt = ip6_rt_copy(rt, &msg->dest);
David S. Miller38308472011-12-03 18:02:47 -05001883 if (!nrt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884 goto out;
1885
1886 nrt->rt6i_flags = RTF_GATEWAY|RTF_UP|RTF_DYNAMIC|RTF_CACHE;
1887 if (on_link)
1888 nrt->rt6i_flags &= ~RTF_GATEWAY;
1889
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001890 nrt->rt6i_gateway = *(struct in6_addr *)neigh->primary_key;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001891
Thomas Graf40e22e82006-08-22 00:00:45 -07001892 if (ip6_ins_rt(nrt))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001893 goto out;
1894
Changli Gaod8d1f302010-06-10 23:31:35 -07001895 netevent.old = &rt->dst;
1896 netevent.new = &nrt->dst;
YOSHIFUJI Hideaki / 吉藤英明71bcdba2013-01-05 16:34:51 +00001897 netevent.daddr = &msg->dest;
YOSHIFUJI Hideaki / 吉藤英明60592832013-01-14 09:28:27 +00001898 netevent.neigh = neigh;
Tom Tucker8d717402006-07-30 20:43:36 -07001899 call_netevent_notifiers(NETEVENT_REDIRECT, &netevent);
1900
David S. Miller38308472011-12-03 18:02:47 -05001901 if (rt->rt6i_flags & RTF_CACHE) {
David S. Miller6e157b62012-07-12 00:05:02 -07001902 rt = (struct rt6_info *) dst_clone(&rt->dst);
Thomas Grafe0a1ad732006-08-22 00:00:21 -07001903 ip6_del_rt(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001904 }
1905
1906out:
David S. Millere8599ff2012-07-11 23:43:53 -07001907 neigh_release(neigh);
David S. Miller6e157b62012-07-12 00:05:02 -07001908}
1909
Linus Torvalds1da177e2005-04-16 15:20:36 -07001910/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911 * Misc support functions
1912 */
1913
Martin KaFai Lau4b32b5a2015-04-28 13:03:06 -07001914static void rt6_set_from(struct rt6_info *rt, struct rt6_info *from)
1915{
1916 BUG_ON(from->dst.from);
1917
1918 rt->rt6i_flags &= ~RTF_EXPIRES;
1919 dst_hold(&from->dst);
1920 rt->dst.from = &from->dst;
1921 dst_init_metrics(&rt->dst, dst_metrics_ptr(&from->dst), true);
1922}
1923
Gao feng1716a962012-04-06 00:13:10 +00001924static struct rt6_info *ip6_rt_copy(struct rt6_info *ort,
Eric Dumazet21efcfa2011-07-19 20:18:36 +00001925 const struct in6_addr *dest)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001926{
David S. Millerd1918542011-12-28 20:19:20 -05001927 struct net *net = dev_net(ort->dst.dev);
Martin KaFai Lau4b32b5a2015-04-28 13:03:06 -07001928 struct rt6_info *rt;
1929
1930 if (ort->rt6i_flags & RTF_CACHE)
1931 ort = (struct rt6_info *)ort->dst.from;
1932
1933 rt = ip6_dst_alloc(net, ort->dst.dev, 0,
1934 ort->rt6i_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001935
1936 if (rt) {
Changli Gaod8d1f302010-06-10 23:31:35 -07001937 rt->dst.input = ort->dst.input;
1938 rt->dst.output = ort->dst.output;
Yan, Zheng8e2ec632011-09-05 21:34:30 +00001939 rt->dst.flags |= DST_HOST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001940
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001941 rt->rt6i_dst.addr = *dest;
Yan, Zheng8e2ec632011-09-05 21:34:30 +00001942 rt->rt6i_dst.plen = 128;
Changli Gaod8d1f302010-06-10 23:31:35 -07001943 rt->dst.error = ort->dst.error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944 rt->rt6i_idev = ort->rt6i_idev;
1945 if (rt->rt6i_idev)
1946 in6_dev_hold(rt->rt6i_idev);
Changli Gaod8d1f302010-06-10 23:31:35 -07001947 rt->dst.lastuse = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001948
Julian Anastasov550bab42013-10-20 15:43:04 +03001949 if (ort->rt6i_flags & RTF_GATEWAY)
1950 rt->rt6i_gateway = ort->rt6i_gateway;
1951 else
1952 rt->rt6i_gateway = *dest;
Gao feng1716a962012-04-06 00:13:10 +00001953 rt->rt6i_flags = ort->rt6i_flags;
Li RongQing24f5b852013-12-19 12:40:26 +08001954 rt6_set_from(rt, ort);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955 rt->rt6i_metric = 0;
1956
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957#ifdef CONFIG_IPV6_SUBTREES
1958 memcpy(&rt->rt6i_src, &ort->rt6i_src, sizeof(struct rt6key));
1959#endif
Florian Westphal0f6c6392011-05-20 11:27:24 +00001960 memcpy(&rt->rt6i_prefsrc, &ort->rt6i_prefsrc, sizeof(struct rt6key));
Thomas Grafc71099a2006-08-04 23:20:06 -07001961 rt->rt6i_table = ort->rt6i_table;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962 }
1963 return rt;
1964}
1965
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08001966#ifdef CONFIG_IPV6_ROUTE_INFO
Daniel Lezcanoefa2cea2008-03-04 13:46:48 -08001967static struct rt6_info *rt6_get_route_info(struct net *net,
Eric Dumazetb71d1d42011-04-22 04:53:02 +00001968 const struct in6_addr *prefix, int prefixlen,
1969 const struct in6_addr *gwaddr, int ifindex)
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08001970{
1971 struct fib6_node *fn;
1972 struct rt6_info *rt = NULL;
Thomas Grafc71099a2006-08-04 23:20:06 -07001973 struct fib6_table *table;
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08001974
Daniel Lezcanoefa2cea2008-03-04 13:46:48 -08001975 table = fib6_get_table(net, RT6_TABLE_INFO);
David S. Miller38308472011-12-03 18:02:47 -05001976 if (!table)
Thomas Grafc71099a2006-08-04 23:20:06 -07001977 return NULL;
1978
Li RongQing5744dd92012-09-11 21:59:01 +00001979 read_lock_bh(&table->tb6_lock);
Ian Morris67ba4152014-08-24 21:53:10 +01001980 fn = fib6_locate(&table->tb6_root, prefix, prefixlen, NULL, 0);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08001981 if (!fn)
1982 goto out;
1983
Changli Gaod8d1f302010-06-10 23:31:35 -07001984 for (rt = fn->leaf; rt; rt = rt->dst.rt6_next) {
David S. Millerd1918542011-12-28 20:19:20 -05001985 if (rt->dst.dev->ifindex != ifindex)
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08001986 continue;
1987 if ((rt->rt6i_flags & (RTF_ROUTEINFO|RTF_GATEWAY)) != (RTF_ROUTEINFO|RTF_GATEWAY))
1988 continue;
1989 if (!ipv6_addr_equal(&rt->rt6i_gateway, gwaddr))
1990 continue;
Changli Gaod8d1f302010-06-10 23:31:35 -07001991 dst_hold(&rt->dst);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08001992 break;
1993 }
1994out:
Li RongQing5744dd92012-09-11 21:59:01 +00001995 read_unlock_bh(&table->tb6_lock);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08001996 return rt;
1997}
1998
Daniel Lezcanoefa2cea2008-03-04 13:46:48 -08001999static struct rt6_info *rt6_add_route_info(struct net *net,
Eric Dumazetb71d1d42011-04-22 04:53:02 +00002000 const struct in6_addr *prefix, int prefixlen,
2001 const struct in6_addr *gwaddr, int ifindex,
Eric Dumazet95c96172012-04-15 05:58:06 +00002002 unsigned int pref)
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08002003{
Thomas Graf86872cb2006-08-22 00:01:08 -07002004 struct fib6_config cfg = {
2005 .fc_table = RT6_TABLE_INFO,
Rami Rosen238fc7e2008-02-09 23:43:11 -08002006 .fc_metric = IP6_RT_PRIO_USER,
Thomas Graf86872cb2006-08-22 00:01:08 -07002007 .fc_ifindex = ifindex,
2008 .fc_dst_len = prefixlen,
2009 .fc_flags = RTF_GATEWAY | RTF_ADDRCONF | RTF_ROUTEINFO |
2010 RTF_UP | RTF_PREF(pref),
Eric W. Biederman15e47302012-09-07 20:12:54 +00002011 .fc_nlinfo.portid = 0,
Daniel Lezcanoefa2cea2008-03-04 13:46:48 -08002012 .fc_nlinfo.nlh = NULL,
2013 .fc_nlinfo.nl_net = net,
Thomas Graf86872cb2006-08-22 00:01:08 -07002014 };
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08002015
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00002016 cfg.fc_dst = *prefix;
2017 cfg.fc_gateway = *gwaddr;
Thomas Graf86872cb2006-08-22 00:01:08 -07002018
YOSHIFUJI Hideakie317da92006-03-20 17:06:42 -08002019 /* We should treat it as a default route if prefix length is 0. */
2020 if (!prefixlen)
Thomas Graf86872cb2006-08-22 00:01:08 -07002021 cfg.fc_flags |= RTF_DEFAULT;
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08002022
Thomas Graf86872cb2006-08-22 00:01:08 -07002023 ip6_route_add(&cfg);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08002024
Daniel Lezcanoefa2cea2008-03-04 13:46:48 -08002025 return rt6_get_route_info(net, prefix, prefixlen, gwaddr, ifindex);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08002026}
2027#endif
2028
Eric Dumazetb71d1d42011-04-22 04:53:02 +00002029struct rt6_info *rt6_get_dflt_router(const struct in6_addr *addr, struct net_device *dev)
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002030{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002031 struct rt6_info *rt;
Thomas Grafc71099a2006-08-04 23:20:06 -07002032 struct fib6_table *table;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002033
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09002034 table = fib6_get_table(dev_net(dev), RT6_TABLE_DFLT);
David S. Miller38308472011-12-03 18:02:47 -05002035 if (!table)
Thomas Grafc71099a2006-08-04 23:20:06 -07002036 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002037
Li RongQing5744dd92012-09-11 21:59:01 +00002038 read_lock_bh(&table->tb6_lock);
Ian Morris67ba4152014-08-24 21:53:10 +01002039 for (rt = table->tb6_root.leaf; rt; rt = rt->dst.rt6_next) {
David S. Millerd1918542011-12-28 20:19:20 -05002040 if (dev == rt->dst.dev &&
YOSHIFUJI Hideaki045927f2006-03-20 17:00:48 -08002041 ((rt->rt6i_flags & (RTF_ADDRCONF | RTF_DEFAULT)) == (RTF_ADDRCONF | RTF_DEFAULT)) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07002042 ipv6_addr_equal(&rt->rt6i_gateway, addr))
2043 break;
2044 }
2045 if (rt)
Changli Gaod8d1f302010-06-10 23:31:35 -07002046 dst_hold(&rt->dst);
Li RongQing5744dd92012-09-11 21:59:01 +00002047 read_unlock_bh(&table->tb6_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002048 return rt;
2049}
2050
Eric Dumazetb71d1d42011-04-22 04:53:02 +00002051struct rt6_info *rt6_add_dflt_router(const struct in6_addr *gwaddr,
YOSHIFUJI Hideakiebacaaa2006-03-20 17:04:53 -08002052 struct net_device *dev,
2053 unsigned int pref)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002054{
Thomas Graf86872cb2006-08-22 00:01:08 -07002055 struct fib6_config cfg = {
2056 .fc_table = RT6_TABLE_DFLT,
Rami Rosen238fc7e2008-02-09 23:43:11 -08002057 .fc_metric = IP6_RT_PRIO_USER,
Thomas Graf86872cb2006-08-22 00:01:08 -07002058 .fc_ifindex = dev->ifindex,
2059 .fc_flags = RTF_GATEWAY | RTF_ADDRCONF | RTF_DEFAULT |
2060 RTF_UP | RTF_EXPIRES | RTF_PREF(pref),
Eric W. Biederman15e47302012-09-07 20:12:54 +00002061 .fc_nlinfo.portid = 0,
Daniel Lezcano55786892008-03-04 13:47:47 -08002062 .fc_nlinfo.nlh = NULL,
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09002063 .fc_nlinfo.nl_net = dev_net(dev),
Thomas Graf86872cb2006-08-22 00:01:08 -07002064 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002065
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00002066 cfg.fc_gateway = *gwaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067
Thomas Graf86872cb2006-08-22 00:01:08 -07002068 ip6_route_add(&cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002069
Linus Torvalds1da177e2005-04-16 15:20:36 -07002070 return rt6_get_dflt_router(gwaddr, dev);
2071}
2072
Daniel Lezcano7b4da532008-03-04 13:47:14 -08002073void rt6_purge_dflt_routers(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002074{
2075 struct rt6_info *rt;
Thomas Grafc71099a2006-08-04 23:20:06 -07002076 struct fib6_table *table;
2077
2078 /* NOTE: Keep consistent with rt6_get_dflt_router */
Daniel Lezcano7b4da532008-03-04 13:47:14 -08002079 table = fib6_get_table(net, RT6_TABLE_DFLT);
David S. Miller38308472011-12-03 18:02:47 -05002080 if (!table)
Thomas Grafc71099a2006-08-04 23:20:06 -07002081 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082
2083restart:
Thomas Grafc71099a2006-08-04 23:20:06 -07002084 read_lock_bh(&table->tb6_lock);
Changli Gaod8d1f302010-06-10 23:31:35 -07002085 for (rt = table->tb6_root.leaf; rt; rt = rt->dst.rt6_next) {
Lorenzo Colitti3e8b0ac2013-03-03 20:46:46 +00002086 if (rt->rt6i_flags & (RTF_DEFAULT | RTF_ADDRCONF) &&
2087 (!rt->rt6i_idev || rt->rt6i_idev->cnf.accept_ra != 2)) {
Changli Gaod8d1f302010-06-10 23:31:35 -07002088 dst_hold(&rt->dst);
Thomas Grafc71099a2006-08-04 23:20:06 -07002089 read_unlock_bh(&table->tb6_lock);
Thomas Grafe0a1ad732006-08-22 00:00:21 -07002090 ip6_del_rt(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002091 goto restart;
2092 }
2093 }
Thomas Grafc71099a2006-08-04 23:20:06 -07002094 read_unlock_bh(&table->tb6_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002095}
2096
Daniel Lezcano55786892008-03-04 13:47:47 -08002097static void rtmsg_to_fib6_config(struct net *net,
2098 struct in6_rtmsg *rtmsg,
Thomas Graf86872cb2006-08-22 00:01:08 -07002099 struct fib6_config *cfg)
2100{
2101 memset(cfg, 0, sizeof(*cfg));
2102
2103 cfg->fc_table = RT6_TABLE_MAIN;
2104 cfg->fc_ifindex = rtmsg->rtmsg_ifindex;
2105 cfg->fc_metric = rtmsg->rtmsg_metric;
2106 cfg->fc_expires = rtmsg->rtmsg_info;
2107 cfg->fc_dst_len = rtmsg->rtmsg_dst_len;
2108 cfg->fc_src_len = rtmsg->rtmsg_src_len;
2109 cfg->fc_flags = rtmsg->rtmsg_flags;
2110
Daniel Lezcano55786892008-03-04 13:47:47 -08002111 cfg->fc_nlinfo.nl_net = net;
Benjamin Theryf1243c22008-02-26 18:10:03 -08002112
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00002113 cfg->fc_dst = rtmsg->rtmsg_dst;
2114 cfg->fc_src = rtmsg->rtmsg_src;
2115 cfg->fc_gateway = rtmsg->rtmsg_gateway;
Thomas Graf86872cb2006-08-22 00:01:08 -07002116}
2117
Daniel Lezcano55786892008-03-04 13:47:47 -08002118int ipv6_route_ioctl(struct net *net, unsigned int cmd, void __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002119{
Thomas Graf86872cb2006-08-22 00:01:08 -07002120 struct fib6_config cfg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002121 struct in6_rtmsg rtmsg;
2122 int err;
2123
Ian Morris67ba4152014-08-24 21:53:10 +01002124 switch (cmd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002125 case SIOCADDRT: /* Add a route */
2126 case SIOCDELRT: /* Delete a route */
Eric W. Biedermanaf31f412012-11-16 03:03:06 +00002127 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128 return -EPERM;
2129 err = copy_from_user(&rtmsg, arg,
2130 sizeof(struct in6_rtmsg));
2131 if (err)
2132 return -EFAULT;
Thomas Graf86872cb2006-08-22 00:01:08 -07002133
Daniel Lezcano55786892008-03-04 13:47:47 -08002134 rtmsg_to_fib6_config(net, &rtmsg, &cfg);
Thomas Graf86872cb2006-08-22 00:01:08 -07002135
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136 rtnl_lock();
2137 switch (cmd) {
2138 case SIOCADDRT:
Thomas Graf86872cb2006-08-22 00:01:08 -07002139 err = ip6_route_add(&cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002140 break;
2141 case SIOCDELRT:
Thomas Graf86872cb2006-08-22 00:01:08 -07002142 err = ip6_route_del(&cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002143 break;
2144 default:
2145 err = -EINVAL;
2146 }
2147 rtnl_unlock();
2148
2149 return err;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07002150 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002151
2152 return -EINVAL;
2153}
2154
2155/*
2156 * Drop the packet on the floor
2157 */
2158
Brian Haleyd5fdd6b2009-06-23 04:31:07 -07002159static int ip6_pkt_drop(struct sk_buff *skb, u8 code, int ipstats_mib_noroutes)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002160{
YOSHIFUJI Hideaki612f09e2007-04-13 16:18:02 -07002161 int type;
Eric Dumazetadf30902009-06-02 05:19:30 +00002162 struct dst_entry *dst = skb_dst(skb);
YOSHIFUJI Hideaki612f09e2007-04-13 16:18:02 -07002163 switch (ipstats_mib_noroutes) {
2164 case IPSTATS_MIB_INNOROUTES:
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -07002165 type = ipv6_addr_type(&ipv6_hdr(skb)->daddr);
Ulrich Weber45bb0062010-02-25 23:28:58 +00002166 if (type == IPV6_ADDR_ANY) {
Denis V. Lunev3bd653c2008-10-08 10:54:51 -07002167 IP6_INC_STATS(dev_net(dst->dev), ip6_dst_idev(dst),
2168 IPSTATS_MIB_INADDRERRORS);
YOSHIFUJI Hideaki612f09e2007-04-13 16:18:02 -07002169 break;
2170 }
2171 /* FALLTHROUGH */
2172 case IPSTATS_MIB_OUTNOROUTES:
Denis V. Lunev3bd653c2008-10-08 10:54:51 -07002173 IP6_INC_STATS(dev_net(dst->dev), ip6_dst_idev(dst),
2174 ipstats_mib_noroutes);
YOSHIFUJI Hideaki612f09e2007-04-13 16:18:02 -07002175 break;
2176 }
Alexey Dobriyan3ffe5332010-02-18 08:25:24 +00002177 icmpv6_send(skb, ICMPV6_DEST_UNREACH, code, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002178 kfree_skb(skb);
2179 return 0;
2180}
2181
Thomas Graf9ce8ade2006-10-18 20:46:54 -07002182static int ip6_pkt_discard(struct sk_buff *skb)
2183{
YOSHIFUJI Hideaki612f09e2007-04-13 16:18:02 -07002184 return ip6_pkt_drop(skb, ICMPV6_NOROUTE, IPSTATS_MIB_INNOROUTES);
Thomas Graf9ce8ade2006-10-18 20:46:54 -07002185}
2186
Eric Dumazetaad88722014-04-15 13:47:15 -04002187static int ip6_pkt_discard_out(struct sock *sk, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002188{
Eric Dumazetadf30902009-06-02 05:19:30 +00002189 skb->dev = skb_dst(skb)->dev;
YOSHIFUJI Hideaki612f09e2007-04-13 16:18:02 -07002190 return ip6_pkt_drop(skb, ICMPV6_NOROUTE, IPSTATS_MIB_OUTNOROUTES);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002191}
2192
Thomas Graf9ce8ade2006-10-18 20:46:54 -07002193static int ip6_pkt_prohibit(struct sk_buff *skb)
2194{
YOSHIFUJI Hideaki612f09e2007-04-13 16:18:02 -07002195 return ip6_pkt_drop(skb, ICMPV6_ADM_PROHIBITED, IPSTATS_MIB_INNOROUTES);
Thomas Graf9ce8ade2006-10-18 20:46:54 -07002196}
2197
Eric Dumazetaad88722014-04-15 13:47:15 -04002198static int ip6_pkt_prohibit_out(struct sock *sk, struct sk_buff *skb)
Thomas Graf9ce8ade2006-10-18 20:46:54 -07002199{
Eric Dumazetadf30902009-06-02 05:19:30 +00002200 skb->dev = skb_dst(skb)->dev;
YOSHIFUJI Hideaki612f09e2007-04-13 16:18:02 -07002201 return ip6_pkt_drop(skb, ICMPV6_ADM_PROHIBITED, IPSTATS_MIB_OUTNOROUTES);
Thomas Graf9ce8ade2006-10-18 20:46:54 -07002202}
2203
Linus Torvalds1da177e2005-04-16 15:20:36 -07002204/*
2205 * Allocate a dst for local (unicast / anycast) address.
2206 */
2207
2208struct rt6_info *addrconf_dst_alloc(struct inet6_dev *idev,
2209 const struct in6_addr *addr,
David S. Miller8f031512011-12-06 16:48:14 -05002210 bool anycast)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002211{
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09002212 struct net *net = dev_net(idev->dev);
Hannes Frederic Sowaa3300ef2013-12-07 03:33:45 +01002213 struct rt6_info *rt = ip6_dst_alloc(net, net->loopback_dev,
2214 DST_NOCOUNT, NULL);
2215 if (!rt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002216 return ERR_PTR(-ENOMEM);
2217
Linus Torvalds1da177e2005-04-16 15:20:36 -07002218 in6_dev_hold(idev);
2219
David S. Miller11d53b42011-06-24 15:23:34 -07002220 rt->dst.flags |= DST_HOST;
Changli Gaod8d1f302010-06-10 23:31:35 -07002221 rt->dst.input = ip6_input;
2222 rt->dst.output = ip6_output;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002223 rt->rt6i_idev = idev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002224
2225 rt->rt6i_flags = RTF_UP | RTF_NONEXTHOP;
YOSHIFUJI Hideaki58c4fb82005-12-21 22:56:42 +09002226 if (anycast)
2227 rt->rt6i_flags |= RTF_ANYCAST;
2228 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002229 rt->rt6i_flags |= RTF_LOCAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002230
Julian Anastasov550bab42013-10-20 15:43:04 +03002231 rt->rt6i_gateway = *addr;
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00002232 rt->rt6i_dst.addr = *addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002233 rt->rt6i_dst.plen = 128;
Daniel Lezcano55786892008-03-04 13:47:47 -08002234 rt->rt6i_table = fib6_get_table(net, RT6_TABLE_LOCAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002235
Changli Gaod8d1f302010-06-10 23:31:35 -07002236 atomic_set(&rt->dst.__refcnt, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002237
2238 return rt;
2239}
2240
Daniel Walterc3968a82011-04-13 21:10:57 +00002241int ip6_route_get_saddr(struct net *net,
2242 struct rt6_info *rt,
Eric Dumazetb71d1d42011-04-22 04:53:02 +00002243 const struct in6_addr *daddr,
Daniel Walterc3968a82011-04-13 21:10:57 +00002244 unsigned int prefs,
2245 struct in6_addr *saddr)
2246{
Markus Stenberge16e8882015-05-05 13:36:59 +03002247 struct inet6_dev *idev =
2248 rt ? ip6_dst_idev((struct dst_entry *)rt) : NULL;
Daniel Walterc3968a82011-04-13 21:10:57 +00002249 int err = 0;
Markus Stenberge16e8882015-05-05 13:36:59 +03002250 if (rt && rt->rt6i_prefsrc.plen)
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00002251 *saddr = rt->rt6i_prefsrc.addr;
Daniel Walterc3968a82011-04-13 21:10:57 +00002252 else
2253 err = ipv6_dev_get_saddr(net, idev ? idev->dev : NULL,
2254 daddr, prefs, saddr);
2255 return err;
2256}
2257
2258/* remove deleted ip from prefsrc entries */
2259struct arg_dev_net_ip {
2260 struct net_device *dev;
2261 struct net *net;
2262 struct in6_addr *addr;
2263};
2264
2265static int fib6_remove_prefsrc(struct rt6_info *rt, void *arg)
2266{
2267 struct net_device *dev = ((struct arg_dev_net_ip *)arg)->dev;
2268 struct net *net = ((struct arg_dev_net_ip *)arg)->net;
2269 struct in6_addr *addr = ((struct arg_dev_net_ip *)arg)->addr;
2270
David S. Millerd1918542011-12-28 20:19:20 -05002271 if (((void *)rt->dst.dev == dev || !dev) &&
Daniel Walterc3968a82011-04-13 21:10:57 +00002272 rt != net->ipv6.ip6_null_entry &&
2273 ipv6_addr_equal(addr, &rt->rt6i_prefsrc.addr)) {
2274 /* remove prefsrc entry */
2275 rt->rt6i_prefsrc.plen = 0;
2276 }
2277 return 0;
2278}
2279
2280void rt6_remove_prefsrc(struct inet6_ifaddr *ifp)
2281{
2282 struct net *net = dev_net(ifp->idev->dev);
2283 struct arg_dev_net_ip adni = {
2284 .dev = ifp->idev->dev,
2285 .net = net,
2286 .addr = &ifp->addr,
2287 };
Li RongQing0c3584d2013-12-27 16:32:38 +08002288 fib6_clean_all(net, fib6_remove_prefsrc, &adni);
Daniel Walterc3968a82011-04-13 21:10:57 +00002289}
2290
Duan Jiongbe7a0102014-05-15 15:56:14 +08002291#define RTF_RA_ROUTER (RTF_ADDRCONF | RTF_DEFAULT | RTF_GATEWAY)
2292#define RTF_CACHE_GATEWAY (RTF_GATEWAY | RTF_CACHE)
2293
2294/* Remove routers and update dst entries when gateway turn into host. */
2295static int fib6_clean_tohost(struct rt6_info *rt, void *arg)
2296{
2297 struct in6_addr *gateway = (struct in6_addr *)arg;
2298
2299 if ((((rt->rt6i_flags & RTF_RA_ROUTER) == RTF_RA_ROUTER) ||
2300 ((rt->rt6i_flags & RTF_CACHE_GATEWAY) == RTF_CACHE_GATEWAY)) &&
2301 ipv6_addr_equal(gateway, &rt->rt6i_gateway)) {
2302 return -1;
2303 }
2304 return 0;
2305}
2306
2307void rt6_clean_tohost(struct net *net, struct in6_addr *gateway)
2308{
2309 fib6_clean_all(net, fib6_clean_tohost, gateway);
2310}
2311
Daniel Lezcano8ed67782008-03-04 13:48:30 -08002312struct arg_dev_net {
2313 struct net_device *dev;
2314 struct net *net;
2315};
2316
Linus Torvalds1da177e2005-04-16 15:20:36 -07002317static int fib6_ifdown(struct rt6_info *rt, void *arg)
2318{
stephen hemmingerbc3ef662010-12-16 17:42:40 +00002319 const struct arg_dev_net *adn = arg;
2320 const struct net_device *dev = adn->dev;
Daniel Lezcano8ed67782008-03-04 13:48:30 -08002321
David S. Millerd1918542011-12-28 20:19:20 -05002322 if ((rt->dst.dev == dev || !dev) &&
David S. Millerc159d302011-12-26 15:24:36 -05002323 rt != adn->net->ipv6.ip6_null_entry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002324 return -1;
David S. Millerc159d302011-12-26 15:24:36 -05002325
Linus Torvalds1da177e2005-04-16 15:20:36 -07002326 return 0;
2327}
2328
Daniel Lezcanof3db4852008-03-03 23:27:06 -08002329void rt6_ifdown(struct net *net, struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002330{
Daniel Lezcano8ed67782008-03-04 13:48:30 -08002331 struct arg_dev_net adn = {
2332 .dev = dev,
2333 .net = net,
2334 };
2335
Li RongQing0c3584d2013-12-27 16:32:38 +08002336 fib6_clean_all(net, fib6_ifdown, &adn);
David S. Miller1e493d12008-09-10 17:27:15 -07002337 icmp6_clean_all(fib6_ifdown, &adn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002338}
2339
Eric Dumazet95c96172012-04-15 05:58:06 +00002340struct rt6_mtu_change_arg {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002341 struct net_device *dev;
Eric Dumazet95c96172012-04-15 05:58:06 +00002342 unsigned int mtu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002343};
2344
2345static int rt6_mtu_change_route(struct rt6_info *rt, void *p_arg)
2346{
2347 struct rt6_mtu_change_arg *arg = (struct rt6_mtu_change_arg *) p_arg;
2348 struct inet6_dev *idev;
2349
2350 /* In IPv6 pmtu discovery is not optional,
2351 so that RTAX_MTU lock cannot disable it.
2352 We still use this lock to block changes
2353 caused by addrconf/ndisc.
2354 */
2355
2356 idev = __in6_dev_get(arg->dev);
David S. Miller38308472011-12-03 18:02:47 -05002357 if (!idev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002358 return 0;
2359
2360 /* For administrative MTU increase, there is no way to discover
2361 IPv6 PMTU increase, so PMTU increase should be updated here.
2362 Since RFC 1981 doesn't include administrative MTU increase
2363 update PMTU increase is a MUST. (i.e. jumbo frame)
2364 */
2365 /*
2366 If new MTU is less than route PMTU, this new MTU will be the
2367 lowest MTU in the path, update the route PMTU to reflect PMTU
2368 decreases; if new MTU is greater than route PMTU, and the
2369 old MTU is the lowest MTU in the path, update the route PMTU
2370 to reflect the increase. In this case if the other nodes' MTU
2371 also have the lowest MTU, TOO BIG MESSAGE will be lead to
2372 PMTU discouvery.
2373 */
David S. Millerd1918542011-12-28 20:19:20 -05002374 if (rt->dst.dev == arg->dev &&
Martin KaFai Lau4b32b5a2015-04-28 13:03:06 -07002375 !dst_metric_locked(&rt->dst, RTAX_MTU)) {
2376 if (rt->rt6i_flags & RTF_CACHE) {
2377 /* For RTF_CACHE with rt6i_pmtu == 0
2378 * (i.e. a redirected route),
2379 * the metrics of its rt->dst.from has already
2380 * been updated.
2381 */
2382 if (rt->rt6i_pmtu && rt->rt6i_pmtu > arg->mtu)
2383 rt->rt6i_pmtu = arg->mtu;
2384 } else if (dst_mtu(&rt->dst) >= arg->mtu ||
2385 (dst_mtu(&rt->dst) < arg->mtu &&
2386 dst_mtu(&rt->dst) == idev->cnf.mtu6)) {
2387 dst_metric_set(&rt->dst, RTAX_MTU, arg->mtu);
2388 }
Simon Arlott566cfd82007-07-26 00:09:55 -07002389 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002390 return 0;
2391}
2392
Eric Dumazet95c96172012-04-15 05:58:06 +00002393void rt6_mtu_change(struct net_device *dev, unsigned int mtu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002394{
Thomas Grafc71099a2006-08-04 23:20:06 -07002395 struct rt6_mtu_change_arg arg = {
2396 .dev = dev,
2397 .mtu = mtu,
2398 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002399
Li RongQing0c3584d2013-12-27 16:32:38 +08002400 fib6_clean_all(dev_net(dev), rt6_mtu_change_route, &arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002401}
2402
Patrick McHardyef7c79e2007-06-05 12:38:30 -07002403static const struct nla_policy rtm_ipv6_policy[RTA_MAX+1] = {
Thomas Graf5176f912006-08-26 20:13:18 -07002404 [RTA_GATEWAY] = { .len = sizeof(struct in6_addr) },
Thomas Graf86872cb2006-08-22 00:01:08 -07002405 [RTA_OIF] = { .type = NLA_U32 },
Thomas Grafab364a62006-08-22 00:01:47 -07002406 [RTA_IIF] = { .type = NLA_U32 },
Thomas Graf86872cb2006-08-22 00:01:08 -07002407 [RTA_PRIORITY] = { .type = NLA_U32 },
2408 [RTA_METRICS] = { .type = NLA_NESTED },
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00002409 [RTA_MULTIPATH] = { .len = sizeof(struct rtnexthop) },
Lubomir Rintelc78ba6d2015-03-11 15:39:21 +01002410 [RTA_PREF] = { .type = NLA_U8 },
Thomas Graf86872cb2006-08-22 00:01:08 -07002411};
2412
2413static int rtm_to_fib6_config(struct sk_buff *skb, struct nlmsghdr *nlh,
2414 struct fib6_config *cfg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002415{
Thomas Graf86872cb2006-08-22 00:01:08 -07002416 struct rtmsg *rtm;
2417 struct nlattr *tb[RTA_MAX+1];
Lubomir Rintelc78ba6d2015-03-11 15:39:21 +01002418 unsigned int pref;
Thomas Graf86872cb2006-08-22 00:01:08 -07002419 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002420
Thomas Graf86872cb2006-08-22 00:01:08 -07002421 err = nlmsg_parse(nlh, sizeof(*rtm), tb, RTA_MAX, rtm_ipv6_policy);
2422 if (err < 0)
2423 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002424
Thomas Graf86872cb2006-08-22 00:01:08 -07002425 err = -EINVAL;
2426 rtm = nlmsg_data(nlh);
2427 memset(cfg, 0, sizeof(*cfg));
2428
2429 cfg->fc_table = rtm->rtm_table;
2430 cfg->fc_dst_len = rtm->rtm_dst_len;
2431 cfg->fc_src_len = rtm->rtm_src_len;
2432 cfg->fc_flags = RTF_UP;
2433 cfg->fc_protocol = rtm->rtm_protocol;
Nicolas Dichtelef2c7d72012-09-05 02:12:42 +00002434 cfg->fc_type = rtm->rtm_type;
Thomas Graf86872cb2006-08-22 00:01:08 -07002435
Nicolas Dichtelef2c7d72012-09-05 02:12:42 +00002436 if (rtm->rtm_type == RTN_UNREACHABLE ||
2437 rtm->rtm_type == RTN_BLACKHOLE ||
Nicolas Dichtelb4949ab2012-09-06 05:53:35 +00002438 rtm->rtm_type == RTN_PROHIBIT ||
2439 rtm->rtm_type == RTN_THROW)
Thomas Graf86872cb2006-08-22 00:01:08 -07002440 cfg->fc_flags |= RTF_REJECT;
2441
Maciej Żenczykowskiab79ad12010-09-27 00:07:02 +00002442 if (rtm->rtm_type == RTN_LOCAL)
2443 cfg->fc_flags |= RTF_LOCAL;
2444
Martin KaFai Lau1f56a012015-04-28 13:03:03 -07002445 if (rtm->rtm_flags & RTM_F_CLONED)
2446 cfg->fc_flags |= RTF_CACHE;
2447
Eric W. Biederman15e47302012-09-07 20:12:54 +00002448 cfg->fc_nlinfo.portid = NETLINK_CB(skb).portid;
Thomas Graf86872cb2006-08-22 00:01:08 -07002449 cfg->fc_nlinfo.nlh = nlh;
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09002450 cfg->fc_nlinfo.nl_net = sock_net(skb->sk);
Thomas Graf86872cb2006-08-22 00:01:08 -07002451
2452 if (tb[RTA_GATEWAY]) {
Jiri Benc67b61f62015-03-29 16:59:26 +02002453 cfg->fc_gateway = nla_get_in6_addr(tb[RTA_GATEWAY]);
Thomas Graf86872cb2006-08-22 00:01:08 -07002454 cfg->fc_flags |= RTF_GATEWAY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002455 }
Thomas Graf86872cb2006-08-22 00:01:08 -07002456
2457 if (tb[RTA_DST]) {
2458 int plen = (rtm->rtm_dst_len + 7) >> 3;
2459
2460 if (nla_len(tb[RTA_DST]) < plen)
2461 goto errout;
2462
2463 nla_memcpy(&cfg->fc_dst, tb[RTA_DST], plen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002464 }
Thomas Graf86872cb2006-08-22 00:01:08 -07002465
2466 if (tb[RTA_SRC]) {
2467 int plen = (rtm->rtm_src_len + 7) >> 3;
2468
2469 if (nla_len(tb[RTA_SRC]) < plen)
2470 goto errout;
2471
2472 nla_memcpy(&cfg->fc_src, tb[RTA_SRC], plen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002473 }
Thomas Graf86872cb2006-08-22 00:01:08 -07002474
Daniel Walterc3968a82011-04-13 21:10:57 +00002475 if (tb[RTA_PREFSRC])
Jiri Benc67b61f62015-03-29 16:59:26 +02002476 cfg->fc_prefsrc = nla_get_in6_addr(tb[RTA_PREFSRC]);
Daniel Walterc3968a82011-04-13 21:10:57 +00002477
Thomas Graf86872cb2006-08-22 00:01:08 -07002478 if (tb[RTA_OIF])
2479 cfg->fc_ifindex = nla_get_u32(tb[RTA_OIF]);
2480
2481 if (tb[RTA_PRIORITY])
2482 cfg->fc_metric = nla_get_u32(tb[RTA_PRIORITY]);
2483
2484 if (tb[RTA_METRICS]) {
2485 cfg->fc_mx = nla_data(tb[RTA_METRICS]);
2486 cfg->fc_mx_len = nla_len(tb[RTA_METRICS]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002487 }
Thomas Graf86872cb2006-08-22 00:01:08 -07002488
2489 if (tb[RTA_TABLE])
2490 cfg->fc_table = nla_get_u32(tb[RTA_TABLE]);
2491
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00002492 if (tb[RTA_MULTIPATH]) {
2493 cfg->fc_mp = nla_data(tb[RTA_MULTIPATH]);
2494 cfg->fc_mp_len = nla_len(tb[RTA_MULTIPATH]);
2495 }
2496
Lubomir Rintelc78ba6d2015-03-11 15:39:21 +01002497 if (tb[RTA_PREF]) {
2498 pref = nla_get_u8(tb[RTA_PREF]);
2499 if (pref != ICMPV6_ROUTER_PREF_LOW &&
2500 pref != ICMPV6_ROUTER_PREF_HIGH)
2501 pref = ICMPV6_ROUTER_PREF_MEDIUM;
2502 cfg->fc_flags |= RTF_PREF(pref);
2503 }
2504
Thomas Graf86872cb2006-08-22 00:01:08 -07002505 err = 0;
2506errout:
2507 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002508}
2509
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00002510static int ip6_route_multipath(struct fib6_config *cfg, int add)
2511{
2512 struct fib6_config r_cfg;
2513 struct rtnexthop *rtnh;
2514 int remaining;
2515 int attrlen;
2516 int err = 0, last_err = 0;
2517
2518beginning:
2519 rtnh = (struct rtnexthop *)cfg->fc_mp;
2520 remaining = cfg->fc_mp_len;
2521
2522 /* Parse a Multipath Entry */
2523 while (rtnh_ok(rtnh, remaining)) {
2524 memcpy(&r_cfg, cfg, sizeof(*cfg));
2525 if (rtnh->rtnh_ifindex)
2526 r_cfg.fc_ifindex = rtnh->rtnh_ifindex;
2527
2528 attrlen = rtnh_attrlen(rtnh);
2529 if (attrlen > 0) {
2530 struct nlattr *nla, *attrs = rtnh_attrs(rtnh);
2531
2532 nla = nla_find(attrs, attrlen, RTA_GATEWAY);
2533 if (nla) {
Jiri Benc67b61f62015-03-29 16:59:26 +02002534 r_cfg.fc_gateway = nla_get_in6_addr(nla);
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00002535 r_cfg.fc_flags |= RTF_GATEWAY;
2536 }
2537 }
2538 err = add ? ip6_route_add(&r_cfg) : ip6_route_del(&r_cfg);
2539 if (err) {
2540 last_err = err;
2541 /* If we are trying to remove a route, do not stop the
2542 * loop when ip6_route_del() fails (because next hop is
2543 * already gone), we should try to remove all next hops.
2544 */
2545 if (add) {
2546 /* If add fails, we should try to delete all
2547 * next hops that have been already added.
2548 */
2549 add = 0;
2550 goto beginning;
2551 }
2552 }
Nicolas Dichtel1a724182012-11-01 22:58:22 +00002553 /* Because each route is added like a single route we remove
2554 * this flag after the first nexthop (if there is a collision,
2555 * we have already fail to add the first nexthop:
2556 * fib6_add_rt2node() has reject it).
2557 */
2558 cfg->fc_nlinfo.nlh->nlmsg_flags &= ~NLM_F_EXCL;
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00002559 rtnh = rtnh_next(rtnh, &remaining);
2560 }
2561
2562 return last_err;
2563}
2564
Ian Morris67ba4152014-08-24 21:53:10 +01002565static int inet6_rtm_delroute(struct sk_buff *skb, struct nlmsghdr *nlh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002566{
Thomas Graf86872cb2006-08-22 00:01:08 -07002567 struct fib6_config cfg;
2568 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002569
Thomas Graf86872cb2006-08-22 00:01:08 -07002570 err = rtm_to_fib6_config(skb, nlh, &cfg);
2571 if (err < 0)
2572 return err;
2573
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00002574 if (cfg.fc_mp)
2575 return ip6_route_multipath(&cfg, 0);
2576 else
2577 return ip6_route_del(&cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002578}
2579
Ian Morris67ba4152014-08-24 21:53:10 +01002580static int inet6_rtm_newroute(struct sk_buff *skb, struct nlmsghdr *nlh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002581{
Thomas Graf86872cb2006-08-22 00:01:08 -07002582 struct fib6_config cfg;
2583 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002584
Thomas Graf86872cb2006-08-22 00:01:08 -07002585 err = rtm_to_fib6_config(skb, nlh, &cfg);
2586 if (err < 0)
2587 return err;
2588
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00002589 if (cfg.fc_mp)
2590 return ip6_route_multipath(&cfg, 1);
2591 else
2592 return ip6_route_add(&cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002593}
2594
Thomas Graf339bf982006-11-10 14:10:15 -08002595static inline size_t rt6_nlmsg_size(void)
2596{
2597 return NLMSG_ALIGN(sizeof(struct rtmsg))
2598 + nla_total_size(16) /* RTA_SRC */
2599 + nla_total_size(16) /* RTA_DST */
2600 + nla_total_size(16) /* RTA_GATEWAY */
2601 + nla_total_size(16) /* RTA_PREFSRC */
2602 + nla_total_size(4) /* RTA_TABLE */
2603 + nla_total_size(4) /* RTA_IIF */
2604 + nla_total_size(4) /* RTA_OIF */
2605 + nla_total_size(4) /* RTA_PRIORITY */
Noriaki TAKAMIYA6a2b9ce2007-01-23 22:09:41 -08002606 + RTAX_MAX * nla_total_size(4) /* RTA_METRICS */
Daniel Borkmannea697632015-01-05 23:57:47 +01002607 + nla_total_size(sizeof(struct rta_cacheinfo))
Lubomir Rintelc78ba6d2015-03-11 15:39:21 +01002608 + nla_total_size(TCP_CA_NAME_MAX) /* RTAX_CC_ALGO */
2609 + nla_total_size(1); /* RTA_PREF */
Thomas Graf339bf982006-11-10 14:10:15 -08002610}
2611
Brian Haley191cd582008-08-14 15:33:21 -07002612static int rt6_fill_node(struct net *net,
2613 struct sk_buff *skb, struct rt6_info *rt,
Jamal Hadi Salim0d51aa82005-06-21 13:51:04 -07002614 struct in6_addr *dst, struct in6_addr *src,
Eric W. Biederman15e47302012-09-07 20:12:54 +00002615 int iif, int type, u32 portid, u32 seq,
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09002616 int prefix, int nowait, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002617{
Martin KaFai Lau4b32b5a2015-04-28 13:03:06 -07002618 u32 metrics[RTAX_MAX];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002619 struct rtmsg *rtm;
Thomas Graf2d7202b2006-08-22 00:01:27 -07002620 struct nlmsghdr *nlh;
Thomas Grafe3703b32006-11-27 09:27:07 -08002621 long expires;
Patrick McHardy9e762a42006-08-10 23:09:48 -07002622 u32 table;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002623
2624 if (prefix) { /* user wants prefix routes only */
2625 if (!(rt->rt6i_flags & RTF_PREFIX_RT)) {
2626 /* success since this is not a prefix route */
2627 return 1;
2628 }
2629 }
2630
Eric W. Biederman15e47302012-09-07 20:12:54 +00002631 nlh = nlmsg_put(skb, portid, seq, type, sizeof(*rtm), flags);
David S. Miller38308472011-12-03 18:02:47 -05002632 if (!nlh)
Patrick McHardy26932562007-01-31 23:16:40 -08002633 return -EMSGSIZE;
Thomas Graf2d7202b2006-08-22 00:01:27 -07002634
2635 rtm = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002636 rtm->rtm_family = AF_INET6;
2637 rtm->rtm_dst_len = rt->rt6i_dst.plen;
2638 rtm->rtm_src_len = rt->rt6i_src.plen;
2639 rtm->rtm_tos = 0;
Thomas Grafc71099a2006-08-04 23:20:06 -07002640 if (rt->rt6i_table)
Patrick McHardy9e762a42006-08-10 23:09:48 -07002641 table = rt->rt6i_table->tb6_id;
Thomas Grafc71099a2006-08-04 23:20:06 -07002642 else
Patrick McHardy9e762a42006-08-10 23:09:48 -07002643 table = RT6_TABLE_UNSPEC;
2644 rtm->rtm_table = table;
David S. Millerc78679e2012-04-01 20:27:33 -04002645 if (nla_put_u32(skb, RTA_TABLE, table))
2646 goto nla_put_failure;
Nicolas Dichtelef2c7d72012-09-05 02:12:42 +00002647 if (rt->rt6i_flags & RTF_REJECT) {
2648 switch (rt->dst.error) {
2649 case -EINVAL:
2650 rtm->rtm_type = RTN_BLACKHOLE;
2651 break;
2652 case -EACCES:
2653 rtm->rtm_type = RTN_PROHIBIT;
2654 break;
Nicolas Dichtelb4949ab2012-09-06 05:53:35 +00002655 case -EAGAIN:
2656 rtm->rtm_type = RTN_THROW;
2657 break;
Nicolas Dichtelef2c7d72012-09-05 02:12:42 +00002658 default:
2659 rtm->rtm_type = RTN_UNREACHABLE;
2660 break;
2661 }
2662 }
David S. Miller38308472011-12-03 18:02:47 -05002663 else if (rt->rt6i_flags & RTF_LOCAL)
Maciej Żenczykowskiab79ad12010-09-27 00:07:02 +00002664 rtm->rtm_type = RTN_LOCAL;
David S. Millerd1918542011-12-28 20:19:20 -05002665 else if (rt->dst.dev && (rt->dst.dev->flags & IFF_LOOPBACK))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002666 rtm->rtm_type = RTN_LOCAL;
2667 else
2668 rtm->rtm_type = RTN_UNICAST;
2669 rtm->rtm_flags = 0;
2670 rtm->rtm_scope = RT_SCOPE_UNIVERSE;
2671 rtm->rtm_protocol = rt->rt6i_protocol;
David S. Miller38308472011-12-03 18:02:47 -05002672 if (rt->rt6i_flags & RTF_DYNAMIC)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002673 rtm->rtm_protocol = RTPROT_REDIRECT;
Denis Ovsienkof0396f602012-07-10 04:45:50 +00002674 else if (rt->rt6i_flags & RTF_ADDRCONF) {
2675 if (rt->rt6i_flags & (RTF_DEFAULT | RTF_ROUTEINFO))
2676 rtm->rtm_protocol = RTPROT_RA;
2677 else
2678 rtm->rtm_protocol = RTPROT_KERNEL;
2679 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002680
David S. Miller38308472011-12-03 18:02:47 -05002681 if (rt->rt6i_flags & RTF_CACHE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002682 rtm->rtm_flags |= RTM_F_CLONED;
2683
2684 if (dst) {
Jiri Benc930345e2015-03-29 16:59:25 +02002685 if (nla_put_in6_addr(skb, RTA_DST, dst))
David S. Millerc78679e2012-04-01 20:27:33 -04002686 goto nla_put_failure;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002687 rtm->rtm_dst_len = 128;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002688 } else if (rtm->rtm_dst_len)
Jiri Benc930345e2015-03-29 16:59:25 +02002689 if (nla_put_in6_addr(skb, RTA_DST, &rt->rt6i_dst.addr))
David S. Millerc78679e2012-04-01 20:27:33 -04002690 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002691#ifdef CONFIG_IPV6_SUBTREES
2692 if (src) {
Jiri Benc930345e2015-03-29 16:59:25 +02002693 if (nla_put_in6_addr(skb, RTA_SRC, src))
David S. Millerc78679e2012-04-01 20:27:33 -04002694 goto nla_put_failure;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002695 rtm->rtm_src_len = 128;
David S. Millerc78679e2012-04-01 20:27:33 -04002696 } else if (rtm->rtm_src_len &&
Jiri Benc930345e2015-03-29 16:59:25 +02002697 nla_put_in6_addr(skb, RTA_SRC, &rt->rt6i_src.addr))
David S. Millerc78679e2012-04-01 20:27:33 -04002698 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002699#endif
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09002700 if (iif) {
2701#ifdef CONFIG_IPV6_MROUTE
2702 if (ipv6_addr_is_multicast(&rt->rt6i_dst.addr)) {
Benjamin Thery8229efd2008-12-10 16:30:15 -08002703 int err = ip6mr_get_route(net, skb, rtm, nowait);
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09002704 if (err <= 0) {
2705 if (!nowait) {
2706 if (err == 0)
2707 return 0;
2708 goto nla_put_failure;
2709 } else {
2710 if (err == -EMSGSIZE)
2711 goto nla_put_failure;
2712 }
2713 }
2714 } else
2715#endif
David S. Millerc78679e2012-04-01 20:27:33 -04002716 if (nla_put_u32(skb, RTA_IIF, iif))
2717 goto nla_put_failure;
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09002718 } else if (dst) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002719 struct in6_addr saddr_buf;
David S. Millerc78679e2012-04-01 20:27:33 -04002720 if (ip6_route_get_saddr(net, rt, dst, 0, &saddr_buf) == 0 &&
Jiri Benc930345e2015-03-29 16:59:25 +02002721 nla_put_in6_addr(skb, RTA_PREFSRC, &saddr_buf))
David S. Millerc78679e2012-04-01 20:27:33 -04002722 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002723 }
Thomas Graf2d7202b2006-08-22 00:01:27 -07002724
Daniel Walterc3968a82011-04-13 21:10:57 +00002725 if (rt->rt6i_prefsrc.plen) {
2726 struct in6_addr saddr_buf;
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00002727 saddr_buf = rt->rt6i_prefsrc.addr;
Jiri Benc930345e2015-03-29 16:59:25 +02002728 if (nla_put_in6_addr(skb, RTA_PREFSRC, &saddr_buf))
David S. Millerc78679e2012-04-01 20:27:33 -04002729 goto nla_put_failure;
Daniel Walterc3968a82011-04-13 21:10:57 +00002730 }
2731
Martin KaFai Lau4b32b5a2015-04-28 13:03:06 -07002732 memcpy(metrics, dst_metrics_ptr(&rt->dst), sizeof(metrics));
2733 if (rt->rt6i_pmtu)
2734 metrics[RTAX_MTU - 1] = rt->rt6i_pmtu;
2735 if (rtnetlink_put_metrics(skb, metrics) < 0)
Thomas Graf2d7202b2006-08-22 00:01:27 -07002736 goto nla_put_failure;
2737
YOSHIFUJI Hideaki / 吉藤英明dd0cbf22013-01-17 12:53:15 +00002738 if (rt->rt6i_flags & RTF_GATEWAY) {
Jiri Benc930345e2015-03-29 16:59:25 +02002739 if (nla_put_in6_addr(skb, RTA_GATEWAY, &rt->rt6i_gateway) < 0)
Eric Dumazet94f826b2012-03-27 09:53:52 +00002740 goto nla_put_failure;
Eric Dumazet94f826b2012-03-27 09:53:52 +00002741 }
Thomas Graf2d7202b2006-08-22 00:01:27 -07002742
David S. Millerc78679e2012-04-01 20:27:33 -04002743 if (rt->dst.dev &&
2744 nla_put_u32(skb, RTA_OIF, rt->dst.dev->ifindex))
2745 goto nla_put_failure;
2746 if (nla_put_u32(skb, RTA_PRIORITY, rt->rt6i_metric))
2747 goto nla_put_failure;
Li Wei82539472012-07-29 16:01:30 +00002748
2749 expires = (rt->rt6i_flags & RTF_EXPIRES) ? rt->dst.expires - jiffies : 0;
YOSHIFUJI Hideaki69cdf8f2008-05-19 16:55:13 -07002750
David S. Miller87a50692012-07-10 05:06:14 -07002751 if (rtnl_put_cacheinfo(skb, &rt->dst, 0, expires, rt->dst.error) < 0)
Thomas Grafe3703b32006-11-27 09:27:07 -08002752 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002753
Lubomir Rintelc78ba6d2015-03-11 15:39:21 +01002754 if (nla_put_u8(skb, RTA_PREF, IPV6_EXTRACT_PREF(rt->rt6i_flags)))
2755 goto nla_put_failure;
2756
Johannes Berg053c0952015-01-16 22:09:00 +01002757 nlmsg_end(skb, nlh);
2758 return 0;
Thomas Graf2d7202b2006-08-22 00:01:27 -07002759
2760nla_put_failure:
Patrick McHardy26932562007-01-31 23:16:40 -08002761 nlmsg_cancel(skb, nlh);
2762 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002763}
2764
Patrick McHardy1b43af52006-08-10 23:11:17 -07002765int rt6_dump_route(struct rt6_info *rt, void *p_arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002766{
2767 struct rt6_rtnl_dump_arg *arg = (struct rt6_rtnl_dump_arg *) p_arg;
2768 int prefix;
2769
Thomas Graf2d7202b2006-08-22 00:01:27 -07002770 if (nlmsg_len(arg->cb->nlh) >= sizeof(struct rtmsg)) {
2771 struct rtmsg *rtm = nlmsg_data(arg->cb->nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002772 prefix = (rtm->rtm_flags & RTM_F_PREFIX) != 0;
2773 } else
2774 prefix = 0;
2775
Brian Haley191cd582008-08-14 15:33:21 -07002776 return rt6_fill_node(arg->net,
2777 arg->skb, rt, NULL, NULL, 0, RTM_NEWROUTE,
Eric W. Biederman15e47302012-09-07 20:12:54 +00002778 NETLINK_CB(arg->cb->skb).portid, arg->cb->nlh->nlmsg_seq,
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09002779 prefix, 0, NLM_F_MULTI);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002780}
2781
Ian Morris67ba4152014-08-24 21:53:10 +01002782static int inet6_rtm_getroute(struct sk_buff *in_skb, struct nlmsghdr *nlh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002783{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09002784 struct net *net = sock_net(in_skb->sk);
Thomas Grafab364a62006-08-22 00:01:47 -07002785 struct nlattr *tb[RTA_MAX+1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002786 struct rt6_info *rt;
Thomas Grafab364a62006-08-22 00:01:47 -07002787 struct sk_buff *skb;
2788 struct rtmsg *rtm;
David S. Miller4c9483b2011-03-12 16:22:43 -05002789 struct flowi6 fl6;
Shmulik Ladkani72331bc2012-04-01 04:03:45 +00002790 int err, iif = 0, oif = 0;
Thomas Grafab364a62006-08-22 00:01:47 -07002791
2792 err = nlmsg_parse(nlh, sizeof(*rtm), tb, RTA_MAX, rtm_ipv6_policy);
2793 if (err < 0)
2794 goto errout;
2795
2796 err = -EINVAL;
David S. Miller4c9483b2011-03-12 16:22:43 -05002797 memset(&fl6, 0, sizeof(fl6));
Thomas Grafab364a62006-08-22 00:01:47 -07002798
2799 if (tb[RTA_SRC]) {
2800 if (nla_len(tb[RTA_SRC]) < sizeof(struct in6_addr))
2801 goto errout;
2802
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00002803 fl6.saddr = *(struct in6_addr *)nla_data(tb[RTA_SRC]);
Thomas Grafab364a62006-08-22 00:01:47 -07002804 }
2805
2806 if (tb[RTA_DST]) {
2807 if (nla_len(tb[RTA_DST]) < sizeof(struct in6_addr))
2808 goto errout;
2809
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00002810 fl6.daddr = *(struct in6_addr *)nla_data(tb[RTA_DST]);
Thomas Grafab364a62006-08-22 00:01:47 -07002811 }
2812
2813 if (tb[RTA_IIF])
2814 iif = nla_get_u32(tb[RTA_IIF]);
2815
2816 if (tb[RTA_OIF])
Shmulik Ladkani72331bc2012-04-01 04:03:45 +00002817 oif = nla_get_u32(tb[RTA_OIF]);
Thomas Grafab364a62006-08-22 00:01:47 -07002818
Lorenzo Colitti2e47b292014-05-15 16:38:41 -07002819 if (tb[RTA_MARK])
2820 fl6.flowi6_mark = nla_get_u32(tb[RTA_MARK]);
2821
Thomas Grafab364a62006-08-22 00:01:47 -07002822 if (iif) {
2823 struct net_device *dev;
Shmulik Ladkani72331bc2012-04-01 04:03:45 +00002824 int flags = 0;
2825
Daniel Lezcano55786892008-03-04 13:47:47 -08002826 dev = __dev_get_by_index(net, iif);
Thomas Grafab364a62006-08-22 00:01:47 -07002827 if (!dev) {
2828 err = -ENODEV;
2829 goto errout;
2830 }
Shmulik Ladkani72331bc2012-04-01 04:03:45 +00002831
2832 fl6.flowi6_iif = iif;
2833
2834 if (!ipv6_addr_any(&fl6.saddr))
2835 flags |= RT6_LOOKUP_F_HAS_SADDR;
2836
2837 rt = (struct rt6_info *)ip6_route_input_lookup(net, dev, &fl6,
2838 flags);
2839 } else {
2840 fl6.flowi6_oif = oif;
2841
2842 rt = (struct rt6_info *)ip6_route_output(net, NULL, &fl6);
Thomas Grafab364a62006-08-22 00:01:47 -07002843 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002844
2845 skb = alloc_skb(NLMSG_GOODSIZE, GFP_KERNEL);
David S. Miller38308472011-12-03 18:02:47 -05002846 if (!skb) {
Amerigo Wang94e187c2012-10-29 00:13:19 +00002847 ip6_rt_put(rt);
Thomas Grafab364a62006-08-22 00:01:47 -07002848 err = -ENOBUFS;
2849 goto errout;
2850 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002851
2852 /* Reserve room for dummy headers, this skb can pass
2853 through good chunk of routing engine.
2854 */
Arnaldo Carvalho de Melo459a98e2007-03-19 15:30:44 -07002855 skb_reset_mac_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002856 skb_reserve(skb, MAX_HEADER + sizeof(struct ipv6hdr));
2857
Changli Gaod8d1f302010-06-10 23:31:35 -07002858 skb_dst_set(skb, &rt->dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002859
David S. Miller4c9483b2011-03-12 16:22:43 -05002860 err = rt6_fill_node(net, skb, rt, &fl6.daddr, &fl6.saddr, iif,
Eric W. Biederman15e47302012-09-07 20:12:54 +00002861 RTM_NEWROUTE, NETLINK_CB(in_skb).portid,
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09002862 nlh->nlmsg_seq, 0, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002863 if (err < 0) {
Thomas Grafab364a62006-08-22 00:01:47 -07002864 kfree_skb(skb);
2865 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002866 }
2867
Eric W. Biederman15e47302012-09-07 20:12:54 +00002868 err = rtnl_unicast(skb, net, NETLINK_CB(in_skb).portid);
Thomas Grafab364a62006-08-22 00:01:47 -07002869errout:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002870 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002871}
2872
Thomas Graf86872cb2006-08-22 00:01:08 -07002873void inet6_rt_notify(int event, struct rt6_info *rt, struct nl_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002874{
2875 struct sk_buff *skb;
Daniel Lezcano55786892008-03-04 13:47:47 -08002876 struct net *net = info->nl_net;
Denis V. Lunev528c4ce2007-12-13 09:45:12 -08002877 u32 seq;
2878 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002879
Denis V. Lunev528c4ce2007-12-13 09:45:12 -08002880 err = -ENOBUFS;
David S. Miller38308472011-12-03 18:02:47 -05002881 seq = info->nlh ? info->nlh->nlmsg_seq : 0;
Thomas Graf86872cb2006-08-22 00:01:08 -07002882
Thomas Graf339bf982006-11-10 14:10:15 -08002883 skb = nlmsg_new(rt6_nlmsg_size(), gfp_any());
David S. Miller38308472011-12-03 18:02:47 -05002884 if (!skb)
Thomas Graf21713eb2006-08-15 00:35:24 -07002885 goto errout;
2886
Brian Haley191cd582008-08-14 15:33:21 -07002887 err = rt6_fill_node(net, skb, rt, NULL, NULL, 0,
Eric W. Biederman15e47302012-09-07 20:12:54 +00002888 event, info->portid, seq, 0, 0, 0);
Patrick McHardy26932562007-01-31 23:16:40 -08002889 if (err < 0) {
2890 /* -EMSGSIZE implies BUG in rt6_nlmsg_size() */
2891 WARN_ON(err == -EMSGSIZE);
2892 kfree_skb(skb);
2893 goto errout;
2894 }
Eric W. Biederman15e47302012-09-07 20:12:54 +00002895 rtnl_notify(skb, net, info->portid, RTNLGRP_IPV6_ROUTE,
Pablo Neira Ayuso1ce85fe2009-02-24 23:18:28 -08002896 info->nlh, gfp_any());
2897 return;
Thomas Graf21713eb2006-08-15 00:35:24 -07002898errout:
2899 if (err < 0)
Daniel Lezcano55786892008-03-04 13:47:47 -08002900 rtnl_set_sk_err(net, RTNLGRP_IPV6_ROUTE, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002901}
2902
Daniel Lezcano8ed67782008-03-04 13:48:30 -08002903static int ip6_route_dev_notify(struct notifier_block *this,
Jiri Pirko351638e2013-05-28 01:30:21 +00002904 unsigned long event, void *ptr)
Daniel Lezcano8ed67782008-03-04 13:48:30 -08002905{
Jiri Pirko351638e2013-05-28 01:30:21 +00002906 struct net_device *dev = netdev_notifier_info_to_dev(ptr);
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09002907 struct net *net = dev_net(dev);
Daniel Lezcano8ed67782008-03-04 13:48:30 -08002908
2909 if (event == NETDEV_REGISTER && (dev->flags & IFF_LOOPBACK)) {
Changli Gaod8d1f302010-06-10 23:31:35 -07002910 net->ipv6.ip6_null_entry->dst.dev = dev;
Daniel Lezcano8ed67782008-03-04 13:48:30 -08002911 net->ipv6.ip6_null_entry->rt6i_idev = in6_dev_get(dev);
2912#ifdef CONFIG_IPV6_MULTIPLE_TABLES
Changli Gaod8d1f302010-06-10 23:31:35 -07002913 net->ipv6.ip6_prohibit_entry->dst.dev = dev;
Daniel Lezcano8ed67782008-03-04 13:48:30 -08002914 net->ipv6.ip6_prohibit_entry->rt6i_idev = in6_dev_get(dev);
Changli Gaod8d1f302010-06-10 23:31:35 -07002915 net->ipv6.ip6_blk_hole_entry->dst.dev = dev;
Daniel Lezcano8ed67782008-03-04 13:48:30 -08002916 net->ipv6.ip6_blk_hole_entry->rt6i_idev = in6_dev_get(dev);
2917#endif
2918 }
2919
2920 return NOTIFY_OK;
2921}
2922
Linus Torvalds1da177e2005-04-16 15:20:36 -07002923/*
2924 * /proc
2925 */
2926
2927#ifdef CONFIG_PROC_FS
2928
Alexey Dobriyan33120b32007-11-06 05:27:11 -08002929static const struct file_operations ipv6_route_proc_fops = {
2930 .owner = THIS_MODULE,
2931 .open = ipv6_route_open,
2932 .read = seq_read,
2933 .llseek = seq_lseek,
Hannes Frederic Sowa8d2ca1d2013-09-21 16:55:59 +02002934 .release = seq_release_net,
Alexey Dobriyan33120b32007-11-06 05:27:11 -08002935};
2936
Linus Torvalds1da177e2005-04-16 15:20:36 -07002937static int rt6_stats_seq_show(struct seq_file *seq, void *v)
2938{
Daniel Lezcano69ddb802008-03-04 13:46:23 -08002939 struct net *net = (struct net *)seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002940 seq_printf(seq, "%04x %04x %04x %04x %04x %04x %04x\n",
Daniel Lezcano69ddb802008-03-04 13:46:23 -08002941 net->ipv6.rt6_stats->fib_nodes,
2942 net->ipv6.rt6_stats->fib_route_nodes,
2943 net->ipv6.rt6_stats->fib_rt_alloc,
2944 net->ipv6.rt6_stats->fib_rt_entries,
2945 net->ipv6.rt6_stats->fib_rt_cache,
Eric Dumazetfc66f952010-10-08 06:37:34 +00002946 dst_entries_get_slow(&net->ipv6.ip6_dst_ops),
Daniel Lezcano69ddb802008-03-04 13:46:23 -08002947 net->ipv6.rt6_stats->fib_discarded_routes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002948
2949 return 0;
2950}
2951
2952static int rt6_stats_seq_open(struct inode *inode, struct file *file)
2953{
Pavel Emelyanovde05c552008-07-18 04:07:21 -07002954 return single_open_net(inode, file, rt6_stats_seq_show);
Daniel Lezcano69ddb802008-03-04 13:46:23 -08002955}
2956
Arjan van de Ven9a321442007-02-12 00:55:35 -08002957static const struct file_operations rt6_stats_seq_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002958 .owner = THIS_MODULE,
2959 .open = rt6_stats_seq_open,
2960 .read = seq_read,
2961 .llseek = seq_lseek,
Pavel Emelyanovb6fcbdb2008-07-18 04:07:44 -07002962 .release = single_release_net,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002963};
2964#endif /* CONFIG_PROC_FS */
2965
2966#ifdef CONFIG_SYSCTL
2967
Linus Torvalds1da177e2005-04-16 15:20:36 -07002968static
Joe Perchesfe2c6332013-06-11 23:04:25 -07002969int ipv6_sysctl_rtcache_flush(struct ctl_table *ctl, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002970 void __user *buffer, size_t *lenp, loff_t *ppos)
2971{
Lucian Adrian Grijincuc486da32011-02-24 19:48:03 +00002972 struct net *net;
2973 int delay;
2974 if (!write)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002975 return -EINVAL;
Lucian Adrian Grijincuc486da32011-02-24 19:48:03 +00002976
2977 net = (struct net *)ctl->extra1;
2978 delay = net->ipv6.sysctl.flush_delay;
2979 proc_dointvec(ctl, write, buffer, lenp, ppos);
Michal Kubeček2ac3ac82013-08-01 10:04:14 +02002980 fib6_run_gc(delay <= 0 ? 0 : (unsigned long)delay, net, delay > 0);
Lucian Adrian Grijincuc486da32011-02-24 19:48:03 +00002981 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002982}
2983
Joe Perchesfe2c6332013-06-11 23:04:25 -07002984struct ctl_table ipv6_route_table_template[] = {
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002985 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002986 .procname = "flush",
Daniel Lezcano49905092008-01-10 03:01:01 -08002987 .data = &init_net.ipv6.sysctl.flush_delay,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002988 .maxlen = sizeof(int),
Dave Jones89c8b3a12005-04-28 12:11:49 -07002989 .mode = 0200,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08002990 .proc_handler = ipv6_sysctl_rtcache_flush
Linus Torvalds1da177e2005-04-16 15:20:36 -07002991 },
2992 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002993 .procname = "gc_thresh",
Daniel Lezcano9a7ec3a2008-03-04 13:48:53 -08002994 .data = &ip6_dst_ops_template.gc_thresh,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002995 .maxlen = sizeof(int),
2996 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08002997 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002998 },
2999 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003000 .procname = "max_size",
Daniel Lezcano49905092008-01-10 03:01:01 -08003001 .data = &init_net.ipv6.sysctl.ip6_rt_max_size,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003002 .maxlen = sizeof(int),
3003 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08003004 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003005 },
3006 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003007 .procname = "gc_min_interval",
Daniel Lezcano49905092008-01-10 03:01:01 -08003008 .data = &init_net.ipv6.sysctl.ip6_rt_gc_min_interval,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003009 .maxlen = sizeof(int),
3010 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08003011 .proc_handler = proc_dointvec_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003012 },
3013 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003014 .procname = "gc_timeout",
Daniel Lezcano49905092008-01-10 03:01:01 -08003015 .data = &init_net.ipv6.sysctl.ip6_rt_gc_timeout,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003016 .maxlen = sizeof(int),
3017 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08003018 .proc_handler = proc_dointvec_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003019 },
3020 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003021 .procname = "gc_interval",
Daniel Lezcano49905092008-01-10 03:01:01 -08003022 .data = &init_net.ipv6.sysctl.ip6_rt_gc_interval,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003023 .maxlen = sizeof(int),
3024 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08003025 .proc_handler = proc_dointvec_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003026 },
3027 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003028 .procname = "gc_elasticity",
Daniel Lezcano49905092008-01-10 03:01:01 -08003029 .data = &init_net.ipv6.sysctl.ip6_rt_gc_elasticity,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003030 .maxlen = sizeof(int),
3031 .mode = 0644,
Min Zhangf3d3f612010-08-14 22:42:51 -07003032 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003033 },
3034 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003035 .procname = "mtu_expires",
Daniel Lezcano49905092008-01-10 03:01:01 -08003036 .data = &init_net.ipv6.sysctl.ip6_rt_mtu_expires,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003037 .maxlen = sizeof(int),
3038 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08003039 .proc_handler = proc_dointvec_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003040 },
3041 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003042 .procname = "min_adv_mss",
Daniel Lezcano49905092008-01-10 03:01:01 -08003043 .data = &init_net.ipv6.sysctl.ip6_rt_min_advmss,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003044 .maxlen = sizeof(int),
3045 .mode = 0644,
Min Zhangf3d3f612010-08-14 22:42:51 -07003046 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003047 },
3048 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003049 .procname = "gc_min_interval_ms",
Daniel Lezcano49905092008-01-10 03:01:01 -08003050 .data = &init_net.ipv6.sysctl.ip6_rt_gc_min_interval,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003051 .maxlen = sizeof(int),
3052 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08003053 .proc_handler = proc_dointvec_ms_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003054 },
Eric W. Biedermanf8572d82009-11-05 13:32:03 -08003055 { }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003056};
3057
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00003058struct ctl_table * __net_init ipv6_route_sysctl_init(struct net *net)
Daniel Lezcano760f2d02008-01-10 02:53:43 -08003059{
3060 struct ctl_table *table;
3061
3062 table = kmemdup(ipv6_route_table_template,
3063 sizeof(ipv6_route_table_template),
3064 GFP_KERNEL);
YOSHIFUJI Hideaki5ee09102008-02-28 00:24:28 +09003065
3066 if (table) {
3067 table[0].data = &net->ipv6.sysctl.flush_delay;
Lucian Adrian Grijincuc486da32011-02-24 19:48:03 +00003068 table[0].extra1 = net;
Alexey Dobriyan86393e52009-08-29 01:34:49 +00003069 table[1].data = &net->ipv6.ip6_dst_ops.gc_thresh;
YOSHIFUJI Hideaki5ee09102008-02-28 00:24:28 +09003070 table[2].data = &net->ipv6.sysctl.ip6_rt_max_size;
3071 table[3].data = &net->ipv6.sysctl.ip6_rt_gc_min_interval;
3072 table[4].data = &net->ipv6.sysctl.ip6_rt_gc_timeout;
3073 table[5].data = &net->ipv6.sysctl.ip6_rt_gc_interval;
3074 table[6].data = &net->ipv6.sysctl.ip6_rt_gc_elasticity;
3075 table[7].data = &net->ipv6.sysctl.ip6_rt_mtu_expires;
3076 table[8].data = &net->ipv6.sysctl.ip6_rt_min_advmss;
Alexey Dobriyan9c69fab2009-12-18 20:11:03 -08003077 table[9].data = &net->ipv6.sysctl.ip6_rt_gc_min_interval;
Eric W. Biederman464dc802012-11-16 03:02:59 +00003078
3079 /* Don't export sysctls to unprivileged users */
3080 if (net->user_ns != &init_user_ns)
3081 table[0].procname = NULL;
YOSHIFUJI Hideaki5ee09102008-02-28 00:24:28 +09003082 }
3083
Daniel Lezcano760f2d02008-01-10 02:53:43 -08003084 return table;
3085}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003086#endif
3087
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00003088static int __net_init ip6_route_net_init(struct net *net)
Daniel Lezcanocdb18762008-03-04 13:45:33 -08003089{
Pavel Emelyanov633d424b2008-04-21 14:25:23 -07003090 int ret = -ENOMEM;
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003091
Alexey Dobriyan86393e52009-08-29 01:34:49 +00003092 memcpy(&net->ipv6.ip6_dst_ops, &ip6_dst_ops_template,
3093 sizeof(net->ipv6.ip6_dst_ops));
Benjamin Theryf2fc6a52008-03-04 13:49:23 -08003094
Eric Dumazetfc66f952010-10-08 06:37:34 +00003095 if (dst_entries_init(&net->ipv6.ip6_dst_ops) < 0)
3096 goto out_ip6_dst_ops;
3097
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003098 net->ipv6.ip6_null_entry = kmemdup(&ip6_null_entry_template,
3099 sizeof(*net->ipv6.ip6_null_entry),
3100 GFP_KERNEL);
3101 if (!net->ipv6.ip6_null_entry)
Eric Dumazetfc66f952010-10-08 06:37:34 +00003102 goto out_ip6_dst_entries;
Changli Gaod8d1f302010-06-10 23:31:35 -07003103 net->ipv6.ip6_null_entry->dst.path =
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003104 (struct dst_entry *)net->ipv6.ip6_null_entry;
Changli Gaod8d1f302010-06-10 23:31:35 -07003105 net->ipv6.ip6_null_entry->dst.ops = &net->ipv6.ip6_dst_ops;
David S. Miller62fa8a82011-01-26 20:51:05 -08003106 dst_init_metrics(&net->ipv6.ip6_null_entry->dst,
3107 ip6_template_metrics, true);
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003108
3109#ifdef CONFIG_IPV6_MULTIPLE_TABLES
3110 net->ipv6.ip6_prohibit_entry = kmemdup(&ip6_prohibit_entry_template,
3111 sizeof(*net->ipv6.ip6_prohibit_entry),
3112 GFP_KERNEL);
Peter Zijlstra68fffc62008-10-07 14:12:10 -07003113 if (!net->ipv6.ip6_prohibit_entry)
3114 goto out_ip6_null_entry;
Changli Gaod8d1f302010-06-10 23:31:35 -07003115 net->ipv6.ip6_prohibit_entry->dst.path =
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003116 (struct dst_entry *)net->ipv6.ip6_prohibit_entry;
Changli Gaod8d1f302010-06-10 23:31:35 -07003117 net->ipv6.ip6_prohibit_entry->dst.ops = &net->ipv6.ip6_dst_ops;
David S. Miller62fa8a82011-01-26 20:51:05 -08003118 dst_init_metrics(&net->ipv6.ip6_prohibit_entry->dst,
3119 ip6_template_metrics, true);
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003120
3121 net->ipv6.ip6_blk_hole_entry = kmemdup(&ip6_blk_hole_entry_template,
3122 sizeof(*net->ipv6.ip6_blk_hole_entry),
3123 GFP_KERNEL);
Peter Zijlstra68fffc62008-10-07 14:12:10 -07003124 if (!net->ipv6.ip6_blk_hole_entry)
3125 goto out_ip6_prohibit_entry;
Changli Gaod8d1f302010-06-10 23:31:35 -07003126 net->ipv6.ip6_blk_hole_entry->dst.path =
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003127 (struct dst_entry *)net->ipv6.ip6_blk_hole_entry;
Changli Gaod8d1f302010-06-10 23:31:35 -07003128 net->ipv6.ip6_blk_hole_entry->dst.ops = &net->ipv6.ip6_dst_ops;
David S. Miller62fa8a82011-01-26 20:51:05 -08003129 dst_init_metrics(&net->ipv6.ip6_blk_hole_entry->dst,
3130 ip6_template_metrics, true);
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003131#endif
3132
Peter Zijlstrab339a47c2008-10-07 14:15:00 -07003133 net->ipv6.sysctl.flush_delay = 0;
3134 net->ipv6.sysctl.ip6_rt_max_size = 4096;
3135 net->ipv6.sysctl.ip6_rt_gc_min_interval = HZ / 2;
3136 net->ipv6.sysctl.ip6_rt_gc_timeout = 60*HZ;
3137 net->ipv6.sysctl.ip6_rt_gc_interval = 30*HZ;
3138 net->ipv6.sysctl.ip6_rt_gc_elasticity = 9;
3139 net->ipv6.sysctl.ip6_rt_mtu_expires = 10*60*HZ;
3140 net->ipv6.sysctl.ip6_rt_min_advmss = IPV6_MIN_MTU - 20 - 40;
3141
Benjamin Thery6891a342008-03-04 13:49:47 -08003142 net->ipv6.ip6_rt_gc_expire = 30*HZ;
3143
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003144 ret = 0;
3145out:
3146 return ret;
Benjamin Theryf2fc6a52008-03-04 13:49:23 -08003147
Peter Zijlstra68fffc62008-10-07 14:12:10 -07003148#ifdef CONFIG_IPV6_MULTIPLE_TABLES
3149out_ip6_prohibit_entry:
3150 kfree(net->ipv6.ip6_prohibit_entry);
3151out_ip6_null_entry:
3152 kfree(net->ipv6.ip6_null_entry);
3153#endif
Eric Dumazetfc66f952010-10-08 06:37:34 +00003154out_ip6_dst_entries:
3155 dst_entries_destroy(&net->ipv6.ip6_dst_ops);
Benjamin Theryf2fc6a52008-03-04 13:49:23 -08003156out_ip6_dst_ops:
Benjamin Theryf2fc6a52008-03-04 13:49:23 -08003157 goto out;
Daniel Lezcanocdb18762008-03-04 13:45:33 -08003158}
3159
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00003160static void __net_exit ip6_route_net_exit(struct net *net)
Daniel Lezcanocdb18762008-03-04 13:45:33 -08003161{
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003162 kfree(net->ipv6.ip6_null_entry);
3163#ifdef CONFIG_IPV6_MULTIPLE_TABLES
3164 kfree(net->ipv6.ip6_prohibit_entry);
3165 kfree(net->ipv6.ip6_blk_hole_entry);
3166#endif
Xiaotian Feng41bb78b2010-11-02 16:11:05 +00003167 dst_entries_destroy(&net->ipv6.ip6_dst_ops);
Daniel Lezcanocdb18762008-03-04 13:45:33 -08003168}
3169
Thomas Grafd1896342012-06-18 12:08:33 +00003170static int __net_init ip6_route_net_init_late(struct net *net)
3171{
3172#ifdef CONFIG_PROC_FS
Gao fengd4beaa62013-02-18 01:34:54 +00003173 proc_create("ipv6_route", 0, net->proc_net, &ipv6_route_proc_fops);
3174 proc_create("rt6_stats", S_IRUGO, net->proc_net, &rt6_stats_seq_fops);
Thomas Grafd1896342012-06-18 12:08:33 +00003175#endif
3176 return 0;
3177}
3178
3179static void __net_exit ip6_route_net_exit_late(struct net *net)
3180{
3181#ifdef CONFIG_PROC_FS
Gao fengece31ff2013-02-18 01:34:56 +00003182 remove_proc_entry("ipv6_route", net->proc_net);
3183 remove_proc_entry("rt6_stats", net->proc_net);
Thomas Grafd1896342012-06-18 12:08:33 +00003184#endif
3185}
3186
Daniel Lezcanocdb18762008-03-04 13:45:33 -08003187static struct pernet_operations ip6_route_net_ops = {
3188 .init = ip6_route_net_init,
3189 .exit = ip6_route_net_exit,
3190};
3191
David S. Millerc3426b42012-06-09 16:27:05 -07003192static int __net_init ipv6_inetpeer_init(struct net *net)
3193{
3194 struct inet_peer_base *bp = kmalloc(sizeof(*bp), GFP_KERNEL);
3195
3196 if (!bp)
3197 return -ENOMEM;
3198 inet_peer_base_init(bp);
3199 net->ipv6.peers = bp;
3200 return 0;
3201}
3202
3203static void __net_exit ipv6_inetpeer_exit(struct net *net)
3204{
3205 struct inet_peer_base *bp = net->ipv6.peers;
3206
3207 net->ipv6.peers = NULL;
David S. Miller56a6b242012-06-09 16:32:41 -07003208 inetpeer_invalidate_tree(bp);
David S. Millerc3426b42012-06-09 16:27:05 -07003209 kfree(bp);
3210}
3211
David S. Miller2b823f72012-06-09 19:00:16 -07003212static struct pernet_operations ipv6_inetpeer_ops = {
David S. Millerc3426b42012-06-09 16:27:05 -07003213 .init = ipv6_inetpeer_init,
3214 .exit = ipv6_inetpeer_exit,
3215};
3216
Thomas Grafd1896342012-06-18 12:08:33 +00003217static struct pernet_operations ip6_route_net_late_ops = {
3218 .init = ip6_route_net_init_late,
3219 .exit = ip6_route_net_exit_late,
3220};
3221
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003222static struct notifier_block ip6_route_dev_notifier = {
3223 .notifier_call = ip6_route_dev_notify,
3224 .priority = 0,
3225};
3226
Daniel Lezcano433d49c2007-12-07 00:43:48 -08003227int __init ip6_route_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003228{
Daniel Lezcano433d49c2007-12-07 00:43:48 -08003229 int ret;
3230
Daniel Lezcano9a7ec3a2008-03-04 13:48:53 -08003231 ret = -ENOMEM;
3232 ip6_dst_ops_template.kmem_cachep =
3233 kmem_cache_create("ip6_dst_cache", sizeof(struct rt6_info), 0,
3234 SLAB_HWCACHE_ALIGN, NULL);
3235 if (!ip6_dst_ops_template.kmem_cachep)
Fernando Carrijoc19a28e2009-01-07 18:09:08 -08003236 goto out;
David S. Miller14e50e52007-05-24 18:17:54 -07003237
Eric Dumazetfc66f952010-10-08 06:37:34 +00003238 ret = dst_entries_init(&ip6_dst_blackhole_ops);
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003239 if (ret)
Daniel Lezcanobdb32892008-03-04 13:48:10 -08003240 goto out_kmem_cache;
Daniel Lezcanobdb32892008-03-04 13:48:10 -08003241
David S. Millerc3426b42012-06-09 16:27:05 -07003242 ret = register_pernet_subsys(&ipv6_inetpeer_ops);
3243 if (ret)
David S. Millere8803b62012-06-16 01:12:19 -07003244 goto out_dst_entries;
Thomas Graf2a0c4512012-06-14 23:00:17 +00003245
David S. Miller7e52b332012-06-15 15:51:55 -07003246 ret = register_pernet_subsys(&ip6_route_net_ops);
3247 if (ret)
3248 goto out_register_inetpeer;
David S. Millerc3426b42012-06-09 16:27:05 -07003249
Arnaud Ebalard5dc121e2008-10-01 02:37:56 -07003250 ip6_dst_blackhole_ops.kmem_cachep = ip6_dst_ops_template.kmem_cachep;
3251
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003252 /* Registering of the loopback is done before this portion of code,
3253 * the loopback reference in rt6_info will not be taken, do it
3254 * manually for init_net */
Changli Gaod8d1f302010-06-10 23:31:35 -07003255 init_net.ipv6.ip6_null_entry->dst.dev = init_net.loopback_dev;
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003256 init_net.ipv6.ip6_null_entry->rt6i_idev = in6_dev_get(init_net.loopback_dev);
3257 #ifdef CONFIG_IPV6_MULTIPLE_TABLES
Changli Gaod8d1f302010-06-10 23:31:35 -07003258 init_net.ipv6.ip6_prohibit_entry->dst.dev = init_net.loopback_dev;
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003259 init_net.ipv6.ip6_prohibit_entry->rt6i_idev = in6_dev_get(init_net.loopback_dev);
Changli Gaod8d1f302010-06-10 23:31:35 -07003260 init_net.ipv6.ip6_blk_hole_entry->dst.dev = init_net.loopback_dev;
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003261 init_net.ipv6.ip6_blk_hole_entry->rt6i_idev = in6_dev_get(init_net.loopback_dev);
3262 #endif
David S. Millere8803b62012-06-16 01:12:19 -07003263 ret = fib6_init();
Daniel Lezcano433d49c2007-12-07 00:43:48 -08003264 if (ret)
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003265 goto out_register_subsys;
Daniel Lezcano433d49c2007-12-07 00:43:48 -08003266
Daniel Lezcano433d49c2007-12-07 00:43:48 -08003267 ret = xfrm6_init();
3268 if (ret)
David S. Millere8803b62012-06-16 01:12:19 -07003269 goto out_fib6_init;
Daniel Lezcanoc35b7e72007-12-08 00:14:11 -08003270
Daniel Lezcano433d49c2007-12-07 00:43:48 -08003271 ret = fib6_rules_init();
3272 if (ret)
3273 goto xfrm6_init;
Daniel Lezcano7e5449c2007-12-08 00:14:54 -08003274
Thomas Grafd1896342012-06-18 12:08:33 +00003275 ret = register_pernet_subsys(&ip6_route_net_late_ops);
3276 if (ret)
3277 goto fib6_rules_init;
3278
Daniel Lezcano433d49c2007-12-07 00:43:48 -08003279 ret = -ENOBUFS;
Greg Rosec7ac8672011-06-10 01:27:09 +00003280 if (__rtnl_register(PF_INET6, RTM_NEWROUTE, inet6_rtm_newroute, NULL, NULL) ||
3281 __rtnl_register(PF_INET6, RTM_DELROUTE, inet6_rtm_delroute, NULL, NULL) ||
3282 __rtnl_register(PF_INET6, RTM_GETROUTE, inet6_rtm_getroute, NULL, NULL))
Thomas Grafd1896342012-06-18 12:08:33 +00003283 goto out_register_late_subsys;
Daniel Lezcano433d49c2007-12-07 00:43:48 -08003284
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003285 ret = register_netdevice_notifier(&ip6_route_dev_notifier);
Daniel Lezcanocdb18762008-03-04 13:45:33 -08003286 if (ret)
Thomas Grafd1896342012-06-18 12:08:33 +00003287 goto out_register_late_subsys;
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003288
Daniel Lezcano433d49c2007-12-07 00:43:48 -08003289out:
3290 return ret;
3291
Thomas Grafd1896342012-06-18 12:08:33 +00003292out_register_late_subsys:
3293 unregister_pernet_subsys(&ip6_route_net_late_ops);
Daniel Lezcano433d49c2007-12-07 00:43:48 -08003294fib6_rules_init:
Daniel Lezcano433d49c2007-12-07 00:43:48 -08003295 fib6_rules_cleanup();
3296xfrm6_init:
Daniel Lezcano433d49c2007-12-07 00:43:48 -08003297 xfrm6_fini();
Thomas Graf2a0c4512012-06-14 23:00:17 +00003298out_fib6_init:
3299 fib6_gc_cleanup();
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003300out_register_subsys:
3301 unregister_pernet_subsys(&ip6_route_net_ops);
David S. Miller7e52b332012-06-15 15:51:55 -07003302out_register_inetpeer:
3303 unregister_pernet_subsys(&ipv6_inetpeer_ops);
Eric Dumazetfc66f952010-10-08 06:37:34 +00003304out_dst_entries:
3305 dst_entries_destroy(&ip6_dst_blackhole_ops);
Daniel Lezcano433d49c2007-12-07 00:43:48 -08003306out_kmem_cache:
Benjamin Theryf2fc6a52008-03-04 13:49:23 -08003307 kmem_cache_destroy(ip6_dst_ops_template.kmem_cachep);
Daniel Lezcano433d49c2007-12-07 00:43:48 -08003308 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003309}
3310
3311void ip6_route_cleanup(void)
3312{
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003313 unregister_netdevice_notifier(&ip6_route_dev_notifier);
Thomas Grafd1896342012-06-18 12:08:33 +00003314 unregister_pernet_subsys(&ip6_route_net_late_ops);
Thomas Graf101367c2006-08-04 03:39:02 -07003315 fib6_rules_cleanup();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003316 xfrm6_fini();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003317 fib6_gc_cleanup();
David S. Millerc3426b42012-06-09 16:27:05 -07003318 unregister_pernet_subsys(&ipv6_inetpeer_ops);
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003319 unregister_pernet_subsys(&ip6_route_net_ops);
Xiaotian Feng41bb78b2010-11-02 16:11:05 +00003320 dst_entries_destroy(&ip6_dst_blackhole_ops);
Benjamin Theryf2fc6a52008-03-04 13:49:23 -08003321 kmem_cache_destroy(ip6_dst_ops_template.kmem_cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003322}