blob: afc8386e3d9f4ddfc0cddaf3ebf97f167f04878c [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
Gao feng1716a962012-04-06 00:13:10 +000068static struct rt6_info *ip6_rt_copy(struct rt6_info *ort,
Eric Dumazet21efcfa2011-07-19 20:18:36 +000069 const struct in6_addr *dest);
Linus Torvalds1da177e2005-04-16 15:20:36 -070070static struct dst_entry *ip6_dst_check(struct dst_entry *dst, u32 cookie);
David S. Miller0dbaee32010-12-13 12:52:14 -080071static unsigned int ip6_default_advmss(const struct dst_entry *dst);
Steffen Klassertebb762f2011-11-23 02:12:51 +000072static unsigned int ip6_mtu(const struct dst_entry *dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -070073static struct dst_entry *ip6_negative_advice(struct dst_entry *);
74static void ip6_dst_destroy(struct dst_entry *);
75static void ip6_dst_ifdown(struct dst_entry *,
76 struct net_device *dev, int how);
Daniel Lezcano569d3642008-01-18 03:56:57 -080077static int ip6_dst_gc(struct dst_ops *ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -070078
79static int ip6_pkt_discard(struct sk_buff *skb);
80static int ip6_pkt_discard_out(struct sk_buff *skb);
81static void ip6_link_failure(struct sk_buff *skb);
David S. Miller6700c272012-07-17 03:29:28 -070082static void ip6_rt_update_pmtu(struct dst_entry *dst, struct sock *sk,
83 struct sk_buff *skb, u32 mtu);
84static void rt6_do_redirect(struct dst_entry *dst, struct sock *sk,
85 struct sk_buff *skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -070086
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -080087#ifdef CONFIG_IPV6_ROUTE_INFO
Daniel Lezcanoefa2cea2008-03-04 13:46:48 -080088static struct rt6_info *rt6_add_route_info(struct net *net,
Eric Dumazetb71d1d42011-04-22 04:53:02 +000089 const struct in6_addr *prefix, int prefixlen,
90 const struct in6_addr *gwaddr, int ifindex,
Eric Dumazet95c96172012-04-15 05:58:06 +000091 unsigned int pref);
Daniel Lezcanoefa2cea2008-03-04 13:46:48 -080092static struct rt6_info *rt6_get_route_info(struct net *net,
Eric Dumazetb71d1d42011-04-22 04:53:02 +000093 const struct in6_addr *prefix, int prefixlen,
94 const struct in6_addr *gwaddr, int ifindex);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -080095#endif
96
David S. Miller06582542011-01-27 14:58:42 -080097static u32 *ipv6_cow_metrics(struct dst_entry *dst, unsigned long old)
98{
99 struct rt6_info *rt = (struct rt6_info *) dst;
100 struct inet_peer *peer;
101 u32 *p = NULL;
102
Yan, Zheng8e2ec632011-09-05 21:34:30 +0000103 if (!(rt->dst.flags & DST_HOST))
104 return NULL;
105
David S. Millerfbfe95a2012-06-08 23:24:18 -0700106 peer = rt6_get_peer_create(rt);
David S. Miller06582542011-01-27 14:58:42 -0800107 if (peer) {
108 u32 *old_p = __DST_METRICS_PTR(old);
109 unsigned long prev, new;
110
111 p = peer->metrics;
112 if (inet_metrics_new(peer))
113 memcpy(p, old_p, sizeof(u32) * RTAX_MAX);
114
115 new = (unsigned long) p;
116 prev = cmpxchg(&dst->_metrics, old, new);
117
118 if (prev != old) {
119 p = __DST_METRICS_PTR(prev);
120 if (prev & DST_METRICS_READ_ONLY)
121 p = NULL;
122 }
123 }
124 return p;
125}
126
David S. Millerf894cbf2012-07-02 21:52:24 -0700127static inline const void *choose_neigh_daddr(struct rt6_info *rt,
128 struct sk_buff *skb,
129 const void *daddr)
David S. Miller39232972012-01-26 15:22:32 -0500130{
131 struct in6_addr *p = &rt->rt6i_gateway;
132
David S. Millera7563f32012-01-26 16:29:16 -0500133 if (!ipv6_addr_any(p))
David S. Miller39232972012-01-26 15:22:32 -0500134 return (const void *) p;
David S. Millerf894cbf2012-07-02 21:52:24 -0700135 else if (skb)
136 return &ipv6_hdr(skb)->daddr;
David S. Miller39232972012-01-26 15:22:32 -0500137 return daddr;
138}
139
David S. Millerf894cbf2012-07-02 21:52:24 -0700140static struct neighbour *ip6_neigh_lookup(const struct dst_entry *dst,
141 struct sk_buff *skb,
142 const void *daddr)
David S. Millerd3aaeb32011-07-18 00:40:17 -0700143{
David S. Miller39232972012-01-26 15:22:32 -0500144 struct rt6_info *rt = (struct rt6_info *) dst;
145 struct neighbour *n;
146
David S. Millerf894cbf2012-07-02 21:52:24 -0700147 daddr = choose_neigh_daddr(rt, skb, daddr);
YOSHIFUJI Hideaki / 吉藤英明8e022ee2013-01-17 12:53:09 +0000148 n = __ipv6_neigh_lookup(dst->dev, daddr);
David S. Millerf83c7792011-12-28 15:41:23 -0500149 if (n)
150 return n;
151 return neigh_create(&nd_tbl, daddr, dst->dev);
152}
153
David S. Miller8ade06c2011-12-29 18:51:57 -0500154static int rt6_bind_neighbour(struct rt6_info *rt, struct net_device *dev)
David S. Millerf83c7792011-12-28 15:41:23 -0500155{
YOSHIFUJI Hideaki / 吉藤英明8e022ee2013-01-17 12:53:09 +0000156 struct neighbour *n = __ipv6_neigh_lookup(dev, &rt->rt6i_gateway);
David S. Miller8ade06c2011-12-29 18:51:57 -0500157 if (!n) {
158 n = neigh_create(&nd_tbl, &rt->rt6i_gateway, dev);
159 if (IS_ERR(n))
160 return PTR_ERR(n);
161 }
David S. Miller97cac082012-07-02 22:43:47 -0700162 rt->n = n;
David S. Millerf83c7792011-12-28 15:41:23 -0500163
164 return 0;
David S. Millerd3aaeb32011-07-18 00:40:17 -0700165}
166
Daniel Lezcano9a7ec3a2008-03-04 13:48:53 -0800167static struct dst_ops ip6_dst_ops_template = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 .family = AF_INET6,
Harvey Harrison09640e62009-02-01 00:45:17 -0800169 .protocol = cpu_to_be16(ETH_P_IPV6),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 .gc = ip6_dst_gc,
171 .gc_thresh = 1024,
172 .check = ip6_dst_check,
David S. Miller0dbaee32010-12-13 12:52:14 -0800173 .default_advmss = ip6_default_advmss,
Steffen Klassertebb762f2011-11-23 02:12:51 +0000174 .mtu = ip6_mtu,
David S. Miller06582542011-01-27 14:58:42 -0800175 .cow_metrics = ipv6_cow_metrics,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 .destroy = ip6_dst_destroy,
177 .ifdown = ip6_dst_ifdown,
178 .negative_advice = ip6_negative_advice,
179 .link_failure = ip6_link_failure,
180 .update_pmtu = ip6_rt_update_pmtu,
David S. Miller6e157b62012-07-12 00:05:02 -0700181 .redirect = rt6_do_redirect,
Herbert Xu1ac06e02008-05-20 14:32:14 -0700182 .local_out = __ip6_local_out,
David S. Millerd3aaeb32011-07-18 00:40:17 -0700183 .neigh_lookup = ip6_neigh_lookup,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184};
185
Steffen Klassertebb762f2011-11-23 02:12:51 +0000186static unsigned int ip6_blackhole_mtu(const struct dst_entry *dst)
Roland Dreierec831ea2011-01-31 13:16:00 -0800187{
Steffen Klassert618f9bc2011-11-23 02:13:31 +0000188 unsigned int mtu = dst_metric_raw(dst, RTAX_MTU);
189
190 return mtu ? : dst->dev->mtu;
Roland Dreierec831ea2011-01-31 13:16:00 -0800191}
192
David S. Miller6700c272012-07-17 03:29:28 -0700193static void ip6_rt_blackhole_update_pmtu(struct dst_entry *dst, struct sock *sk,
194 struct sk_buff *skb, u32 mtu)
David S. Miller14e50e52007-05-24 18:17:54 -0700195{
196}
197
David S. Miller6700c272012-07-17 03:29:28 -0700198static void ip6_rt_blackhole_redirect(struct dst_entry *dst, struct sock *sk,
199 struct sk_buff *skb)
David S. Millerb587ee32012-07-12 00:39:24 -0700200{
201}
202
Held Bernhard0972ddb2011-04-24 22:07:32 +0000203static u32 *ip6_rt_blackhole_cow_metrics(struct dst_entry *dst,
204 unsigned long old)
205{
206 return NULL;
207}
208
David S. Miller14e50e52007-05-24 18:17:54 -0700209static struct dst_ops ip6_dst_blackhole_ops = {
210 .family = AF_INET6,
Harvey Harrison09640e62009-02-01 00:45:17 -0800211 .protocol = cpu_to_be16(ETH_P_IPV6),
David S. Miller14e50e52007-05-24 18:17:54 -0700212 .destroy = ip6_dst_destroy,
213 .check = ip6_dst_check,
Steffen Klassertebb762f2011-11-23 02:12:51 +0000214 .mtu = ip6_blackhole_mtu,
Eric Dumazet214f45c2011-02-18 11:39:01 -0800215 .default_advmss = ip6_default_advmss,
David S. Miller14e50e52007-05-24 18:17:54 -0700216 .update_pmtu = ip6_rt_blackhole_update_pmtu,
David S. Millerb587ee32012-07-12 00:39:24 -0700217 .redirect = ip6_rt_blackhole_redirect,
Held Bernhard0972ddb2011-04-24 22:07:32 +0000218 .cow_metrics = ip6_rt_blackhole_cow_metrics,
David S. Millerd3aaeb32011-07-18 00:40:17 -0700219 .neigh_lookup = ip6_neigh_lookup,
David S. Miller14e50e52007-05-24 18:17:54 -0700220};
221
David S. Miller62fa8a82011-01-26 20:51:05 -0800222static const u32 ip6_template_metrics[RTAX_MAX] = {
Li RongQing14edd872012-10-24 14:01:18 +0800223 [RTAX_HOPLIMIT - 1] = 0,
David S. Miller62fa8a82011-01-26 20:51:05 -0800224};
225
Eric Dumazetfb0af4c2012-09-11 21:47:51 +0000226static const struct rt6_info ip6_null_entry_template = {
Changli Gaod8d1f302010-06-10 23:31:35 -0700227 .dst = {
228 .__refcnt = ATOMIC_INIT(1),
229 .__use = 1,
Nicolas Dichtel2c20cbd2012-09-10 22:09:47 +0000230 .obsolete = DST_OBSOLETE_FORCE_CHK,
Changli Gaod8d1f302010-06-10 23:31:35 -0700231 .error = -ENETUNREACH,
Changli Gaod8d1f302010-06-10 23:31:35 -0700232 .input = ip6_pkt_discard,
233 .output = ip6_pkt_discard_out,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 },
235 .rt6i_flags = (RTF_REJECT | RTF_NONEXTHOP),
Jean-Mickael Guerin4f724272009-05-20 17:38:59 -0700236 .rt6i_protocol = RTPROT_KERNEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 .rt6i_metric = ~(u32) 0,
238 .rt6i_ref = ATOMIC_INIT(1),
239};
240
Thomas Graf101367c2006-08-04 03:39:02 -0700241#ifdef CONFIG_IPV6_MULTIPLE_TABLES
242
David S. Miller6723ab52006-10-18 21:20:57 -0700243static int ip6_pkt_prohibit(struct sk_buff *skb);
244static int ip6_pkt_prohibit_out(struct sk_buff *skb);
David S. Miller6723ab52006-10-18 21:20:57 -0700245
Eric Dumazetfb0af4c2012-09-11 21:47:51 +0000246static const struct rt6_info ip6_prohibit_entry_template = {
Changli Gaod8d1f302010-06-10 23:31:35 -0700247 .dst = {
248 .__refcnt = ATOMIC_INIT(1),
249 .__use = 1,
Nicolas Dichtel2c20cbd2012-09-10 22:09:47 +0000250 .obsolete = DST_OBSOLETE_FORCE_CHK,
Changli Gaod8d1f302010-06-10 23:31:35 -0700251 .error = -EACCES,
Changli Gaod8d1f302010-06-10 23:31:35 -0700252 .input = ip6_pkt_prohibit,
253 .output = ip6_pkt_prohibit_out,
Thomas Graf101367c2006-08-04 03:39:02 -0700254 },
255 .rt6i_flags = (RTF_REJECT | RTF_NONEXTHOP),
Jean-Mickael Guerin4f724272009-05-20 17:38:59 -0700256 .rt6i_protocol = RTPROT_KERNEL,
Thomas Graf101367c2006-08-04 03:39:02 -0700257 .rt6i_metric = ~(u32) 0,
258 .rt6i_ref = ATOMIC_INIT(1),
259};
260
Eric Dumazetfb0af4c2012-09-11 21:47:51 +0000261static const struct rt6_info ip6_blk_hole_entry_template = {
Changli Gaod8d1f302010-06-10 23:31:35 -0700262 .dst = {
263 .__refcnt = ATOMIC_INIT(1),
264 .__use = 1,
Nicolas Dichtel2c20cbd2012-09-10 22:09:47 +0000265 .obsolete = DST_OBSOLETE_FORCE_CHK,
Changli Gaod8d1f302010-06-10 23:31:35 -0700266 .error = -EINVAL,
Changli Gaod8d1f302010-06-10 23:31:35 -0700267 .input = dst_discard,
268 .output = dst_discard,
Thomas Graf101367c2006-08-04 03:39:02 -0700269 },
270 .rt6i_flags = (RTF_REJECT | RTF_NONEXTHOP),
Jean-Mickael Guerin4f724272009-05-20 17:38:59 -0700271 .rt6i_protocol = RTPROT_KERNEL,
Thomas Graf101367c2006-08-04 03:39:02 -0700272 .rt6i_metric = ~(u32) 0,
273 .rt6i_ref = ATOMIC_INIT(1),
274};
275
276#endif
277
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278/* allocate dst with ip6_dst_ops */
David S. Miller97bab732012-06-09 22:36:36 -0700279static inline struct rt6_info *ip6_dst_alloc(struct net *net,
David S. Miller957c6652011-06-24 15:25:00 -0700280 struct net_device *dev,
David S. Miller8b96d222012-06-11 02:01:56 -0700281 int flags,
282 struct fib6_table *table)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283{
David S. Miller97bab732012-06-09 22:36:36 -0700284 struct rt6_info *rt = dst_alloc(&net->ipv6.ip6_dst_ops, dev,
Nicolas Dichtel6f3118b2012-09-10 22:09:46 +0000285 0, DST_OBSOLETE_FORCE_CHK, flags);
David S. Millercf911662011-04-28 14:31:47 -0700286
David S. Miller97bab732012-06-09 22:36:36 -0700287 if (rt) {
Steffen Klassert81048912012-07-05 23:37:09 +0000288 struct dst_entry *dst = &rt->dst;
289
290 memset(dst + 1, 0, sizeof(*rt) - sizeof(*dst));
David S. Miller8b96d222012-06-11 02:01:56 -0700291 rt6_init_peer(rt, table ? &table->tb6_peers : net->ipv6.peers);
Nicolas Dichtel6f3118b2012-09-10 22:09:46 +0000292 rt->rt6i_genid = rt_genid(net);
Nicolas Dichtel51ebd312012-10-22 03:42:09 +0000293 INIT_LIST_HEAD(&rt->rt6i_siblings);
294 rt->rt6i_nsiblings = 0;
David S. Miller97bab732012-06-09 22:36:36 -0700295 }
David S. Millercf911662011-04-28 14:31:47 -0700296 return rt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297}
298
299static void ip6_dst_destroy(struct dst_entry *dst)
300{
301 struct rt6_info *rt = (struct rt6_info *)dst;
302 struct inet6_dev *idev = rt->rt6i_idev;
303
David S. Miller97cac082012-07-02 22:43:47 -0700304 if (rt->n)
305 neigh_release(rt->n);
306
Yan, Zheng8e2ec632011-09-05 21:34:30 +0000307 if (!(rt->dst.flags & DST_HOST))
308 dst_destroy_metrics_generic(dst);
309
David S. Miller38308472011-12-03 18:02:47 -0500310 if (idev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 rt->rt6i_idev = NULL;
312 in6_dev_put(idev);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900313 }
Gao feng1716a962012-04-06 00:13:10 +0000314
315 if (!(rt->rt6i_flags & RTF_EXPIRES) && dst->from)
316 dst_release(dst->from);
317
David S. Miller97bab732012-06-09 22:36:36 -0700318 if (rt6_has_peer(rt)) {
319 struct inet_peer *peer = rt6_peer_ptr(rt);
David S. Millerb3419362010-11-30 12:27:11 -0800320 inet_putpeer(peer);
321 }
322}
323
324void rt6_bind_peer(struct rt6_info *rt, int create)
325{
David S. Miller97bab732012-06-09 22:36:36 -0700326 struct inet_peer_base *base;
David S. Millerb3419362010-11-30 12:27:11 -0800327 struct inet_peer *peer;
328
David S. Miller97bab732012-06-09 22:36:36 -0700329 base = inetpeer_base_ptr(rt->_rt6i_peer);
330 if (!base)
331 return;
332
333 peer = inet_getpeer_v6(base, &rt->rt6i_dst.addr, create);
David S. Miller7b34ca22012-06-11 04:13:57 -0700334 if (peer) {
335 if (!rt6_set_peer(rt, peer))
336 inet_putpeer(peer);
David S. Miller7b34ca22012-06-11 04:13:57 -0700337 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338}
339
340static void ip6_dst_ifdown(struct dst_entry *dst, struct net_device *dev,
341 int how)
342{
343 struct rt6_info *rt = (struct rt6_info *)dst;
344 struct inet6_dev *idev = rt->rt6i_idev;
Denis V. Lunev5a3e55d2007-12-07 00:38:10 -0800345 struct net_device *loopback_dev =
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900346 dev_net(dev)->loopback_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347
David S. Miller97cac082012-07-02 22:43:47 -0700348 if (dev != loopback_dev) {
349 if (idev && idev->dev == dev) {
350 struct inet6_dev *loopback_idev =
351 in6_dev_get(loopback_dev);
352 if (loopback_idev) {
353 rt->rt6i_idev = loopback_idev;
354 in6_dev_put(idev);
355 }
356 }
357 if (rt->n && rt->n->dev == dev) {
358 rt->n->dev = loopback_dev;
359 dev_hold(loopback_dev);
360 dev_put(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 }
362 }
363}
364
Eric Dumazeta50feda2012-05-18 18:57:34 +0000365static bool rt6_check_expired(const struct rt6_info *rt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366{
Gao feng1716a962012-04-06 00:13:10 +0000367 if (rt->rt6i_flags & RTF_EXPIRES) {
368 if (time_after(jiffies, rt->dst.expires))
Eric Dumazeta50feda2012-05-18 18:57:34 +0000369 return true;
Gao feng1716a962012-04-06 00:13:10 +0000370 } else if (rt->dst.from) {
Li RongQing3fd91fb2012-09-13 19:54:57 +0000371 return rt6_check_expired((struct rt6_info *) rt->dst.from);
Gao feng1716a962012-04-06 00:13:10 +0000372 }
Eric Dumazeta50feda2012-05-18 18:57:34 +0000373 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374}
375
Eric Dumazeta50feda2012-05-18 18:57:34 +0000376static bool rt6_need_strict(const struct in6_addr *daddr)
Thomas Grafc71099a2006-08-04 23:20:06 -0700377{
Eric Dumazeta02cec22010-09-22 20:43:57 +0000378 return ipv6_addr_type(daddr) &
379 (IPV6_ADDR_MULTICAST | IPV6_ADDR_LINKLOCAL | IPV6_ADDR_LOOPBACK);
Thomas Grafc71099a2006-08-04 23:20:06 -0700380}
381
Nicolas Dichtel51ebd312012-10-22 03:42:09 +0000382/* Multipath route selection:
383 * Hash based function using packet header and flowlabel.
384 * Adapted from fib_info_hashfn()
385 */
386static int rt6_info_hash_nhsfn(unsigned int candidate_count,
387 const struct flowi6 *fl6)
388{
389 unsigned int val = fl6->flowi6_proto;
390
YOSHIFUJI Hideaki / 吉藤英明c08977b2013-01-13 05:02:29 +0000391 val ^= ipv6_addr_hash(&fl6->daddr);
392 val ^= ipv6_addr_hash(&fl6->saddr);
Nicolas Dichtel51ebd312012-10-22 03:42:09 +0000393
394 /* Work only if this not encapsulated */
395 switch (fl6->flowi6_proto) {
396 case IPPROTO_UDP:
397 case IPPROTO_TCP:
398 case IPPROTO_SCTP:
Nicolas Dichtelb3ce5ae2012-10-22 23:35:06 +0000399 val ^= (__force u16)fl6->fl6_sport;
400 val ^= (__force u16)fl6->fl6_dport;
Nicolas Dichtel51ebd312012-10-22 03:42:09 +0000401 break;
402
403 case IPPROTO_ICMPV6:
Nicolas Dichtelb3ce5ae2012-10-22 23:35:06 +0000404 val ^= (__force u16)fl6->fl6_icmp_type;
405 val ^= (__force u16)fl6->fl6_icmp_code;
Nicolas Dichtel51ebd312012-10-22 03:42:09 +0000406 break;
407 }
408 /* RFC6438 recommands to use flowlabel */
Nicolas Dichtelb3ce5ae2012-10-22 23:35:06 +0000409 val ^= (__force u32)fl6->flowlabel;
Nicolas Dichtel51ebd312012-10-22 03:42:09 +0000410
411 /* Perhaps, we need to tune, this function? */
412 val = val ^ (val >> 7) ^ (val >> 12);
413 return val % candidate_count;
414}
415
416static struct rt6_info *rt6_multipath_select(struct rt6_info *match,
417 struct flowi6 *fl6)
418{
419 struct rt6_info *sibling, *next_sibling;
420 int route_choosen;
421
422 route_choosen = rt6_info_hash_nhsfn(match->rt6i_nsiblings + 1, fl6);
423 /* Don't change the route, if route_choosen == 0
424 * (siblings does not include ourself)
425 */
426 if (route_choosen)
427 list_for_each_entry_safe(sibling, next_sibling,
428 &match->rt6i_siblings, rt6i_siblings) {
429 route_choosen--;
430 if (route_choosen == 0) {
431 match = sibling;
432 break;
433 }
434 }
435 return match;
436}
437
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438/*
Thomas Grafc71099a2006-08-04 23:20:06 -0700439 * Route lookup. Any table->tb6_lock is implied.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 */
441
Daniel Lezcano8ed67782008-03-04 13:48:30 -0800442static inline struct rt6_info *rt6_device_match(struct net *net,
443 struct rt6_info *rt,
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000444 const struct in6_addr *saddr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 int oif,
YOSHIFUJI Hideakid4208952008-06-27 20:14:54 -0700446 int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447{
448 struct rt6_info *local = NULL;
449 struct rt6_info *sprt;
450
YOSHIFUJI Hideakidd3abc42008-07-02 18:30:18 +0900451 if (!oif && ipv6_addr_any(saddr))
452 goto out;
453
Changli Gaod8d1f302010-06-10 23:31:35 -0700454 for (sprt = rt; sprt; sprt = sprt->dst.rt6_next) {
David S. Millerd1918542011-12-28 20:19:20 -0500455 struct net_device *dev = sprt->dst.dev;
YOSHIFUJI Hideakidd3abc42008-07-02 18:30:18 +0900456
457 if (oif) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 if (dev->ifindex == oif)
459 return sprt;
460 if (dev->flags & IFF_LOOPBACK) {
David S. Miller38308472011-12-03 18:02:47 -0500461 if (!sprt->rt6i_idev ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 sprt->rt6i_idev->dev->ifindex != oif) {
YOSHIFUJI Hideakid4208952008-06-27 20:14:54 -0700463 if (flags & RT6_LOOKUP_F_IFACE && oif)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 continue;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900465 if (local && (!oif ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 local->rt6i_idev->dev->ifindex == oif))
467 continue;
468 }
469 local = sprt;
470 }
YOSHIFUJI Hideakidd3abc42008-07-02 18:30:18 +0900471 } else {
472 if (ipv6_chk_addr(net, saddr, dev,
473 flags & RT6_LOOKUP_F_IFACE))
474 return sprt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 }
YOSHIFUJI Hideakidd3abc42008-07-02 18:30:18 +0900476 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477
YOSHIFUJI Hideakidd3abc42008-07-02 18:30:18 +0900478 if (oif) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 if (local)
480 return local;
481
YOSHIFUJI Hideakid4208952008-06-27 20:14:54 -0700482 if (flags & RT6_LOOKUP_F_IFACE)
Daniel Lezcano8ed67782008-03-04 13:48:30 -0800483 return net->ipv6.ip6_null_entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 }
YOSHIFUJI Hideakidd3abc42008-07-02 18:30:18 +0900485out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 return rt;
487}
488
YOSHIFUJI Hideaki27097252006-03-20 17:05:13 -0800489#ifdef CONFIG_IPV6_ROUTER_PREF
490static void rt6_probe(struct rt6_info *rt)
491{
Eric Dumazetf2c31e32011-07-29 19:00:53 +0000492 struct neighbour *neigh;
YOSHIFUJI Hideaki27097252006-03-20 17:05:13 -0800493 /*
494 * Okay, this does not seem to be appropriate
495 * for now, however, we need to check if it
496 * is really so; aka Router Reachability Probing.
497 *
498 * Router Reachability Probe MUST be rate-limited
499 * to no more than one per minute.
500 */
YOSHIFUJI Hideaki / 吉藤英明2152cae2013-01-17 12:53:43 +0000501 if (!rt || !(rt->rt6i_flags & RTF_GATEWAY))
Amerigo Wangfdd66812012-09-10 02:48:44 +0000502 return;
YOSHIFUJI Hideaki / 吉藤英明2152cae2013-01-17 12:53:43 +0000503 rcu_read_lock_bh();
504 neigh = __ipv6_neigh_lookup_noref(rt->dst.dev, &rt->rt6i_gateway);
505 if (neigh) {
506 write_lock(&neigh->lock);
507 if (neigh->nud_state & NUD_VALID)
508 goto out;
YOSHIFUJI Hideaki / 吉藤英明7ff74a52013-01-17 12:53:02 +0000509 }
YOSHIFUJI Hideaki / 吉藤英明2152cae2013-01-17 12:53:43 +0000510
511 if (!neigh ||
YOSHIFUJI Hideaki52e16352006-03-20 17:05:47 -0800512 time_after(jiffies, neigh->updated + rt->rt6i_idev->cnf.rtr_probe_interval)) {
YOSHIFUJI Hideaki27097252006-03-20 17:05:13 -0800513 struct in6_addr mcaddr;
514 struct in6_addr *target;
515
516 neigh->updated = jiffies;
YOSHIFUJI Hideaki27097252006-03-20 17:05:13 -0800517
YOSHIFUJI Hideaki / 吉藤英明2152cae2013-01-17 12:53:43 +0000518 if (neigh)
519 write_unlock(&neigh->lock);
520
521 target = (struct in6_addr *)&rt->rt6i_gateway;
YOSHIFUJI Hideaki27097252006-03-20 17:05:13 -0800522 addrconf_addr_solict_mult(target, &mcaddr);
David S. Millerd1918542011-12-28 20:19:20 -0500523 ndisc_send_ns(rt->dst.dev, NULL, target, &mcaddr, NULL);
Eric Dumazetf2c31e32011-07-29 19:00:53 +0000524 } else {
YOSHIFUJI Hideaki / 吉藤英明2152cae2013-01-17 12:53:43 +0000525out:
526 write_unlock(&neigh->lock);
Eric Dumazetf2c31e32011-07-29 19:00:53 +0000527 }
YOSHIFUJI Hideaki / 吉藤英明2152cae2013-01-17 12:53:43 +0000528 rcu_read_unlock_bh();
YOSHIFUJI Hideaki27097252006-03-20 17:05:13 -0800529}
530#else
531static inline void rt6_probe(struct rt6_info *rt)
532{
YOSHIFUJI Hideaki27097252006-03-20 17:05:13 -0800533}
534#endif
535
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536/*
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800537 * Default Router Selection (RFC 2461 6.3.6)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 */
Dave Jonesb6f99a22007-03-22 12:27:49 -0700539static inline int rt6_check_dev(struct rt6_info *rt, int oif)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540{
David S. Millerd1918542011-12-28 20:19:20 -0500541 struct net_device *dev = rt->dst.dev;
David S. Miller161980f2007-04-06 11:42:27 -0700542 if (!oif || dev->ifindex == oif)
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800543 return 2;
David S. Miller161980f2007-04-06 11:42:27 -0700544 if ((dev->flags & IFF_LOOPBACK) &&
545 rt->rt6i_idev && rt->rt6i_idev->dev->ifindex == oif)
546 return 1;
547 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548}
549
Paul Marksa5a81f02012-12-03 10:26:54 +0000550static inline bool rt6_check_neigh(struct rt6_info *rt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551{
Eric Dumazetf2c31e32011-07-29 19:00:53 +0000552 struct neighbour *neigh;
Paul Marksa5a81f02012-12-03 10:26:54 +0000553 bool ret = false;
Eric Dumazetf2c31e32011-07-29 19:00:53 +0000554
YOSHIFUJI Hideaki4d0c5912006-05-26 13:23:41 -0700555 if (rt->rt6i_flags & RTF_NONEXTHOP ||
556 !(rt->rt6i_flags & RTF_GATEWAY))
YOSHIFUJI Hideaki / 吉藤英明145a3622013-01-17 12:53:38 +0000557 return true;
558
559 rcu_read_lock_bh();
560 neigh = __ipv6_neigh_lookup_noref(rt->dst.dev, &rt->rt6i_gateway);
561 if (neigh) {
562 read_lock(&neigh->lock);
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800563 if (neigh->nud_state & NUD_VALID)
Paul Marksa5a81f02012-12-03 10:26:54 +0000564 ret = true;
YOSHIFUJI Hideaki398bcbe2008-01-19 00:35:16 -0800565#ifdef CONFIG_IPV6_ROUTER_PREF
Paul Marksa5a81f02012-12-03 10:26:54 +0000566 else if (!(neigh->nud_state & NUD_FAILED))
567 ret = true;
YOSHIFUJI Hideaki398bcbe2008-01-19 00:35:16 -0800568#endif
YOSHIFUJI Hideaki / 吉藤英明145a3622013-01-17 12:53:38 +0000569 read_unlock(&neigh->lock);
Paul Marksa5a81f02012-12-03 10:26:54 +0000570 }
YOSHIFUJI Hideaki / 吉藤英明145a3622013-01-17 12:53:38 +0000571 rcu_read_unlock_bh();
572
Paul Marksa5a81f02012-12-03 10:26:54 +0000573 return ret;
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800574}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800576static int rt6_score_route(struct rt6_info *rt, int oif,
577 int strict)
578{
Paul Marksa5a81f02012-12-03 10:26:54 +0000579 int m;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900580
YOSHIFUJI Hideaki4d0c5912006-05-26 13:23:41 -0700581 m = rt6_check_dev(rt, oif);
YOSHIFUJI Hideaki77d16f42006-08-23 17:25:05 -0700582 if (!m && (strict & RT6_LOOKUP_F_IFACE))
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800583 return -1;
YOSHIFUJI Hideakiebacaaa2006-03-20 17:04:53 -0800584#ifdef CONFIG_IPV6_ROUTER_PREF
585 m |= IPV6_DECODE_PREF(IPV6_EXTRACT_PREF(rt->rt6i_flags)) << 2;
586#endif
Paul Marksa5a81f02012-12-03 10:26:54 +0000587 if (!rt6_check_neigh(rt) && (strict & RT6_LOOKUP_F_REACHABLE))
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800588 return -1;
589 return m;
590}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591
David S. Millerf11e6652007-03-24 20:36:25 -0700592static struct rt6_info *find_match(struct rt6_info *rt, int oif, int strict,
593 int *mpri, struct rt6_info *match)
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800594{
David S. Millerf11e6652007-03-24 20:36:25 -0700595 int m;
596
597 if (rt6_check_expired(rt))
598 goto out;
599
600 m = rt6_score_route(rt, oif, strict);
601 if (m < 0)
602 goto out;
603
604 if (m > *mpri) {
605 if (strict & RT6_LOOKUP_F_REACHABLE)
606 rt6_probe(match);
607 *mpri = m;
608 match = rt;
609 } else if (strict & RT6_LOOKUP_F_REACHABLE) {
610 rt6_probe(rt);
611 }
612
613out:
614 return match;
615}
616
617static struct rt6_info *find_rr_leaf(struct fib6_node *fn,
618 struct rt6_info *rr_head,
619 u32 metric, int oif, int strict)
620{
621 struct rt6_info *rt, *match;
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800622 int mpri = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623
David S. Millerf11e6652007-03-24 20:36:25 -0700624 match = NULL;
625 for (rt = rr_head; rt && rt->rt6i_metric == metric;
Changli Gaod8d1f302010-06-10 23:31:35 -0700626 rt = rt->dst.rt6_next)
David S. Millerf11e6652007-03-24 20:36:25 -0700627 match = find_match(rt, oif, strict, &mpri, match);
628 for (rt = fn->leaf; rt && rt != rr_head && rt->rt6i_metric == metric;
Changli Gaod8d1f302010-06-10 23:31:35 -0700629 rt = rt->dst.rt6_next)
David S. Millerf11e6652007-03-24 20:36:25 -0700630 match = find_match(rt, oif, strict, &mpri, match);
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800631
David S. Millerf11e6652007-03-24 20:36:25 -0700632 return match;
633}
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800634
David S. Millerf11e6652007-03-24 20:36:25 -0700635static struct rt6_info *rt6_select(struct fib6_node *fn, int oif, int strict)
636{
637 struct rt6_info *match, *rt0;
Daniel Lezcano8ed67782008-03-04 13:48:30 -0800638 struct net *net;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639
David S. Millerf11e6652007-03-24 20:36:25 -0700640 rt0 = fn->rr_ptr;
641 if (!rt0)
642 fn->rr_ptr = rt0 = fn->leaf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643
David S. Millerf11e6652007-03-24 20:36:25 -0700644 match = find_rr_leaf(fn, rt0, rt0->rt6i_metric, oif, strict);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800646 if (!match &&
David S. Millerf11e6652007-03-24 20:36:25 -0700647 (strict & RT6_LOOKUP_F_REACHABLE)) {
Changli Gaod8d1f302010-06-10 23:31:35 -0700648 struct rt6_info *next = rt0->dst.rt6_next;
David S. Millerf11e6652007-03-24 20:36:25 -0700649
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800650 /* no entries matched; do round-robin */
David S. Millerf11e6652007-03-24 20:36:25 -0700651 if (!next || next->rt6i_metric != rt0->rt6i_metric)
652 next = fn->leaf;
653
654 if (next != rt0)
655 fn->rr_ptr = next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 }
657
David S. Millerd1918542011-12-28 20:19:20 -0500658 net = dev_net(rt0->dst.dev);
Eric Dumazeta02cec22010-09-22 20:43:57 +0000659 return match ? match : net->ipv6.ip6_null_entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660}
661
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800662#ifdef CONFIG_IPV6_ROUTE_INFO
663int rt6_route_rcv(struct net_device *dev, u8 *opt, int len,
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000664 const struct in6_addr *gwaddr)
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800665{
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900666 struct net *net = dev_net(dev);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800667 struct route_info *rinfo = (struct route_info *) opt;
668 struct in6_addr prefix_buf, *prefix;
669 unsigned int pref;
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +0900670 unsigned long lifetime;
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800671 struct rt6_info *rt;
672
673 if (len < sizeof(struct route_info)) {
674 return -EINVAL;
675 }
676
677 /* Sanity check for prefix_len and length */
678 if (rinfo->length > 3) {
679 return -EINVAL;
680 } else if (rinfo->prefix_len > 128) {
681 return -EINVAL;
682 } else if (rinfo->prefix_len > 64) {
683 if (rinfo->length < 2) {
684 return -EINVAL;
685 }
686 } else if (rinfo->prefix_len > 0) {
687 if (rinfo->length < 1) {
688 return -EINVAL;
689 }
690 }
691
692 pref = rinfo->route_pref;
693 if (pref == ICMPV6_ROUTER_PREF_INVALID)
Jens Rosenboom3933fc92009-09-10 06:25:11 +0000694 return -EINVAL;
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800695
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +0900696 lifetime = addrconf_timeout_fixup(ntohl(rinfo->lifetime), HZ);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800697
698 if (rinfo->length == 3)
699 prefix = (struct in6_addr *)rinfo->prefix;
700 else {
701 /* this function is safe */
702 ipv6_addr_prefix(&prefix_buf,
703 (struct in6_addr *)rinfo->prefix,
704 rinfo->prefix_len);
705 prefix = &prefix_buf;
706 }
707
Daniel Lezcanoefa2cea2008-03-04 13:46:48 -0800708 rt = rt6_get_route_info(net, prefix, rinfo->prefix_len, gwaddr,
709 dev->ifindex);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800710
711 if (rt && !lifetime) {
Thomas Grafe0a1ad732006-08-22 00:00:21 -0700712 ip6_del_rt(rt);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800713 rt = NULL;
714 }
715
716 if (!rt && lifetime)
Daniel Lezcanoefa2cea2008-03-04 13:46:48 -0800717 rt = rt6_add_route_info(net, prefix, rinfo->prefix_len, gwaddr, dev->ifindex,
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800718 pref);
719 else if (rt)
720 rt->rt6i_flags = RTF_ROUTEINFO |
721 (rt->rt6i_flags & ~RTF_PREF_MASK) | RTF_PREF(pref);
722
723 if (rt) {
Gao feng1716a962012-04-06 00:13:10 +0000724 if (!addrconf_finite_timeout(lifetime))
725 rt6_clean_expires(rt);
726 else
727 rt6_set_expires(rt, jiffies + HZ * lifetime);
728
Amerigo Wang94e187c2012-10-29 00:13:19 +0000729 ip6_rt_put(rt);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800730 }
731 return 0;
732}
733#endif
734
Daniel Lezcano8ed67782008-03-04 13:48:30 -0800735#define BACKTRACK(__net, saddr) \
YOSHIFUJI Hideaki982f56f2006-08-23 17:22:39 -0700736do { \
Daniel Lezcano8ed67782008-03-04 13:48:30 -0800737 if (rt == __net->ipv6.ip6_null_entry) { \
YOSHIFUJI Hideaki982f56f2006-08-23 17:22:39 -0700738 struct fib6_node *pn; \
Ville Nuorvalae0eda7b2006-10-16 22:11:11 -0700739 while (1) { \
YOSHIFUJI Hideaki982f56f2006-08-23 17:22:39 -0700740 if (fn->fn_flags & RTN_TL_ROOT) \
741 goto out; \
742 pn = fn->parent; \
743 if (FIB6_SUBTREE(pn) && FIB6_SUBTREE(pn) != fn) \
Kim Nordlund8bce65b2006-12-13 16:38:29 -0800744 fn = fib6_lookup(FIB6_SUBTREE(pn), NULL, saddr); \
YOSHIFUJI Hideaki982f56f2006-08-23 17:22:39 -0700745 else \
746 fn = pn; \
747 if (fn->fn_flags & RTN_RTINFO) \
748 goto restart; \
Thomas Grafc71099a2006-08-04 23:20:06 -0700749 } \
Thomas Grafc71099a2006-08-04 23:20:06 -0700750 } \
David S. Miller38308472011-12-03 18:02:47 -0500751} while (0)
Thomas Grafc71099a2006-08-04 23:20:06 -0700752
Daniel Lezcano8ed67782008-03-04 13:48:30 -0800753static struct rt6_info *ip6_pol_route_lookup(struct net *net,
754 struct fib6_table *table,
David S. Miller4c9483b2011-03-12 16:22:43 -0500755 struct flowi6 *fl6, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756{
757 struct fib6_node *fn;
758 struct rt6_info *rt;
759
Thomas Grafc71099a2006-08-04 23:20:06 -0700760 read_lock_bh(&table->tb6_lock);
David S. Miller4c9483b2011-03-12 16:22:43 -0500761 fn = fib6_lookup(&table->tb6_root, &fl6->daddr, &fl6->saddr);
Thomas Grafc71099a2006-08-04 23:20:06 -0700762restart:
763 rt = fn->leaf;
David S. Miller4c9483b2011-03-12 16:22:43 -0500764 rt = rt6_device_match(net, rt, &fl6->saddr, fl6->flowi6_oif, flags);
Nicolas Dichtel51ebd312012-10-22 03:42:09 +0000765 if (rt->rt6i_nsiblings && fl6->flowi6_oif == 0)
766 rt = rt6_multipath_select(rt, fl6);
David S. Miller4c9483b2011-03-12 16:22:43 -0500767 BACKTRACK(net, &fl6->saddr);
Thomas Grafc71099a2006-08-04 23:20:06 -0700768out:
Changli Gaod8d1f302010-06-10 23:31:35 -0700769 dst_use(&rt->dst, jiffies);
Thomas Grafc71099a2006-08-04 23:20:06 -0700770 read_unlock_bh(&table->tb6_lock);
Thomas Grafc71099a2006-08-04 23:20:06 -0700771 return rt;
772
773}
774
Florian Westphalea6e5742011-09-05 16:05:44 +0200775struct dst_entry * ip6_route_lookup(struct net *net, struct flowi6 *fl6,
776 int flags)
777{
778 return fib6_rule_lookup(net, fl6, flags, ip6_pol_route_lookup);
779}
780EXPORT_SYMBOL_GPL(ip6_route_lookup);
781
YOSHIFUJI Hideaki9acd9f32008-04-10 15:42:10 +0900782struct rt6_info *rt6_lookup(struct net *net, const struct in6_addr *daddr,
783 const struct in6_addr *saddr, int oif, int strict)
Thomas Grafc71099a2006-08-04 23:20:06 -0700784{
David S. Miller4c9483b2011-03-12 16:22:43 -0500785 struct flowi6 fl6 = {
786 .flowi6_oif = oif,
787 .daddr = *daddr,
Thomas Grafc71099a2006-08-04 23:20:06 -0700788 };
789 struct dst_entry *dst;
YOSHIFUJI Hideaki77d16f42006-08-23 17:25:05 -0700790 int flags = strict ? RT6_LOOKUP_F_IFACE : 0;
Thomas Grafc71099a2006-08-04 23:20:06 -0700791
Thomas Grafadaa70b2006-10-13 15:01:03 -0700792 if (saddr) {
David S. Miller4c9483b2011-03-12 16:22:43 -0500793 memcpy(&fl6.saddr, saddr, sizeof(*saddr));
Thomas Grafadaa70b2006-10-13 15:01:03 -0700794 flags |= RT6_LOOKUP_F_HAS_SADDR;
795 }
796
David S. Miller4c9483b2011-03-12 16:22:43 -0500797 dst = fib6_rule_lookup(net, &fl6, flags, ip6_pol_route_lookup);
Thomas Grafc71099a2006-08-04 23:20:06 -0700798 if (dst->error == 0)
799 return (struct rt6_info *) dst;
800
801 dst_release(dst);
802
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 return NULL;
804}
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
Thomas Graf86872cb2006-08-22 00:01:08 -0700814static int __ip6_ins_rt(struct rt6_info *rt, struct nl_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815{
816 int err;
Thomas Grafc71099a2006-08-04 23:20:06 -0700817 struct fib6_table *table;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818
Thomas Grafc71099a2006-08-04 23:20:06 -0700819 table = rt->rt6i_table;
820 write_lock_bh(&table->tb6_lock);
Thomas Graf86872cb2006-08-22 00:01:08 -0700821 err = fib6_add(&table->tb6_root, rt, info);
Thomas Grafc71099a2006-08-04 23:20:06 -0700822 write_unlock_bh(&table->tb6_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823
824 return err;
825}
826
Thomas Graf40e22e82006-08-22 00:00:45 -0700827int ip6_ins_rt(struct rt6_info *rt)
828{
Denis V. Lunev4d1169c2008-01-10 03:26:13 -0800829 struct nl_info info = {
David S. Millerd1918542011-12-28 20:19:20 -0500830 .nl_net = dev_net(rt->dst.dev),
Denis V. Lunev4d1169c2008-01-10 03:26:13 -0800831 };
Denis V. Lunev528c4ce2007-12-13 09:45:12 -0800832 return __ip6_ins_rt(rt, &info);
Thomas Graf40e22e82006-08-22 00:00:45 -0700833}
834
Gao feng1716a962012-04-06 00:13:10 +0000835static struct rt6_info *rt6_alloc_cow(struct rt6_info *ort,
Eric Dumazet21efcfa2011-07-19 20:18:36 +0000836 const struct in6_addr *daddr,
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000837 const struct in6_addr *saddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 struct rt6_info *rt;
840
841 /*
842 * Clone the route.
843 */
844
Eric Dumazet21efcfa2011-07-19 20:18:36 +0000845 rt = ip6_rt_copy(ort, daddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846
847 if (rt) {
David S. Miller14deae42009-01-04 16:04:39 -0800848 int attempts = !in_softirq();
849
David S. Miller38308472011-12-03 18:02:47 -0500850 if (!(rt->rt6i_flags & RTF_GATEWAY)) {
David S. Millerbb3c3682011-12-13 17:35:06 -0500851 if (ort->rt6i_dst.plen != 128 &&
Eric Dumazet21efcfa2011-07-19 20:18:36 +0000852 ipv6_addr_equal(&ort->rt6i_dst.addr, daddr))
YOSHIFUJI Hideaki58c4fb82005-12-21 22:56:42 +0900853 rt->rt6i_flags |= RTF_ANYCAST;
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000854 rt->rt6i_gateway = *daddr;
YOSHIFUJI Hideaki58c4fb82005-12-21 22:56:42 +0900855 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 rt->rt6i_flags |= RTF_CACHE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858
859#ifdef CONFIG_IPV6_SUBTREES
860 if (rt->rt6i_src.plen && saddr) {
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000861 rt->rt6i_src.addr = *saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 rt->rt6i_src.plen = 128;
863 }
864#endif
865
David S. Miller14deae42009-01-04 16:04:39 -0800866 retry:
David S. Miller8ade06c2011-12-29 18:51:57 -0500867 if (rt6_bind_neighbour(rt, rt->dst.dev)) {
David S. Millerd1918542011-12-28 20:19:20 -0500868 struct net *net = dev_net(rt->dst.dev);
David S. Miller14deae42009-01-04 16:04:39 -0800869 int saved_rt_min_interval =
870 net->ipv6.sysctl.ip6_rt_gc_min_interval;
871 int saved_rt_elasticity =
872 net->ipv6.sysctl.ip6_rt_gc_elasticity;
873
874 if (attempts-- > 0) {
875 net->ipv6.sysctl.ip6_rt_gc_elasticity = 1;
876 net->ipv6.sysctl.ip6_rt_gc_min_interval = 0;
877
Alexey Dobriyan86393e52009-08-29 01:34:49 +0000878 ip6_dst_gc(&net->ipv6.ip6_dst_ops);
David S. Miller14deae42009-01-04 16:04:39 -0800879
880 net->ipv6.sysctl.ip6_rt_gc_elasticity =
881 saved_rt_elasticity;
882 net->ipv6.sysctl.ip6_rt_gc_min_interval =
883 saved_rt_min_interval;
884 goto retry;
885 }
886
Joe Perchesf3213832012-05-15 14:11:53 +0000887 net_warn_ratelimited("Neighbour table overflow\n");
Changli Gaod8d1f302010-06-10 23:31:35 -0700888 dst_free(&rt->dst);
David S. Miller14deae42009-01-04 16:04:39 -0800889 return NULL;
890 }
YOSHIFUJI Hideaki95a9a5b2006-03-20 16:55:51 -0800891 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892
YOSHIFUJI Hideaki95a9a5b2006-03-20 16:55:51 -0800893 return rt;
894}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895
Eric Dumazet21efcfa2011-07-19 20:18:36 +0000896static struct rt6_info *rt6_alloc_clone(struct rt6_info *ort,
897 const struct in6_addr *daddr)
YOSHIFUJI Hideaki299d9932006-03-20 16:58:32 -0800898{
Eric Dumazet21efcfa2011-07-19 20:18:36 +0000899 struct rt6_info *rt = ip6_rt_copy(ort, daddr);
900
YOSHIFUJI Hideaki299d9932006-03-20 16:58:32 -0800901 if (rt) {
YOSHIFUJI Hideaki299d9932006-03-20 16:58:32 -0800902 rt->rt6i_flags |= RTF_CACHE;
David S. Miller97cac082012-07-02 22:43:47 -0700903 rt->n = neigh_clone(ort->n);
YOSHIFUJI Hideaki299d9932006-03-20 16:58:32 -0800904 }
905 return rt;
906}
907
Daniel Lezcano8ed67782008-03-04 13:48:30 -0800908static struct rt6_info *ip6_pol_route(struct net *net, struct fib6_table *table, int oif,
David S. Miller4c9483b2011-03-12 16:22:43 -0500909 struct flowi6 *fl6, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910{
911 struct fib6_node *fn;
YOSHIFUJI Hideaki519fbd82006-03-20 17:00:05 -0800912 struct rt6_info *rt, *nrt;
Thomas Grafc71099a2006-08-04 23:20:06 -0700913 int strict = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914 int attempts = 3;
YOSHIFUJI Hideaki519fbd82006-03-20 17:00:05 -0800915 int err;
YOSHIFUJI Hideaki53b79972008-07-19 22:35:03 -0700916 int reachable = net->ipv6.devconf_all->forwarding ? 0 : RT6_LOOKUP_F_REACHABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917
YOSHIFUJI Hideaki77d16f42006-08-23 17:25:05 -0700918 strict |= flags & RT6_LOOKUP_F_IFACE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919
920relookup:
Thomas Grafc71099a2006-08-04 23:20:06 -0700921 read_lock_bh(&table->tb6_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922
YOSHIFUJI Hideaki8238dd02006-03-20 17:04:35 -0800923restart_2:
David S. Miller4c9483b2011-03-12 16:22:43 -0500924 fn = fib6_lookup(&table->tb6_root, &fl6->daddr, &fl6->saddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925
926restart:
Pavel Emelyanov4acad722007-10-15 13:02:51 -0700927 rt = rt6_select(fn, oif, strict | reachable);
Nicolas Dichtel51ebd312012-10-22 03:42:09 +0000928 if (rt->rt6i_nsiblings && oif == 0)
929 rt = rt6_multipath_select(rt, fl6);
David S. Miller4c9483b2011-03-12 16:22:43 -0500930 BACKTRACK(net, &fl6->saddr);
Daniel Lezcano8ed67782008-03-04 13:48:30 -0800931 if (rt == net->ipv6.ip6_null_entry ||
YOSHIFUJI Hideaki8238dd02006-03-20 17:04:35 -0800932 rt->rt6i_flags & RTF_CACHE)
YOSHIFUJI Hideaki1ddef0442006-03-20 17:01:24 -0800933 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934
Changli Gaod8d1f302010-06-10 23:31:35 -0700935 dst_hold(&rt->dst);
Thomas Grafc71099a2006-08-04 23:20:06 -0700936 read_unlock_bh(&table->tb6_lock);
YOSHIFUJI Hideakifb9de912006-03-20 16:59:08 -0800937
YOSHIFUJI Hideaki / 吉藤英明c440f162013-01-17 12:53:32 +0000938 if (!(rt->rt6i_flags & (RTF_NONEXTHOP | RTF_GATEWAY)))
David S. Miller4c9483b2011-03-12 16:22:43 -0500939 nrt = rt6_alloc_cow(rt, &fl6->daddr, &fl6->saddr);
David S. Miller7343ff32011-03-09 19:55:25 -0800940 else if (!(rt->dst.flags & DST_HOST))
David S. Miller4c9483b2011-03-12 16:22:43 -0500941 nrt = rt6_alloc_clone(rt, &fl6->daddr);
David S. Miller7343ff32011-03-09 19:55:25 -0800942 else
943 goto out2;
YOSHIFUJI Hideakie40cf352006-03-20 16:59:27 -0800944
Amerigo Wang94e187c2012-10-29 00:13:19 +0000945 ip6_rt_put(rt);
Daniel Lezcano8ed67782008-03-04 13:48:30 -0800946 rt = nrt ? : net->ipv6.ip6_null_entry;
YOSHIFUJI Hideaki519fbd82006-03-20 17:00:05 -0800947
Changli Gaod8d1f302010-06-10 23:31:35 -0700948 dst_hold(&rt->dst);
YOSHIFUJI Hideaki519fbd82006-03-20 17:00:05 -0800949 if (nrt) {
Thomas Graf40e22e82006-08-22 00:00:45 -0700950 err = ip6_ins_rt(nrt);
YOSHIFUJI Hideaki519fbd82006-03-20 17:00:05 -0800951 if (!err)
952 goto out2;
953 }
954
955 if (--attempts <= 0)
956 goto out2;
957
958 /*
Thomas Grafc71099a2006-08-04 23:20:06 -0700959 * Race condition! In the gap, when table->tb6_lock was
YOSHIFUJI Hideaki519fbd82006-03-20 17:00:05 -0800960 * released someone could insert this route. Relookup.
961 */
Amerigo Wang94e187c2012-10-29 00:13:19 +0000962 ip6_rt_put(rt);
YOSHIFUJI Hideaki519fbd82006-03-20 17:00:05 -0800963 goto relookup;
964
965out:
YOSHIFUJI Hideaki8238dd02006-03-20 17:04:35 -0800966 if (reachable) {
967 reachable = 0;
968 goto restart_2;
969 }
Changli Gaod8d1f302010-06-10 23:31:35 -0700970 dst_hold(&rt->dst);
Thomas Grafc71099a2006-08-04 23:20:06 -0700971 read_unlock_bh(&table->tb6_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972out2:
Changli Gaod8d1f302010-06-10 23:31:35 -0700973 rt->dst.lastuse = jiffies;
974 rt->dst.__use++;
Thomas Grafc71099a2006-08-04 23:20:06 -0700975
976 return rt;
977}
978
Daniel Lezcano8ed67782008-03-04 13:48:30 -0800979static struct rt6_info *ip6_pol_route_input(struct net *net, struct fib6_table *table,
David S. Miller4c9483b2011-03-12 16:22:43 -0500980 struct flowi6 *fl6, int flags)
Pavel Emelyanov4acad722007-10-15 13:02:51 -0700981{
David S. Miller4c9483b2011-03-12 16:22:43 -0500982 return ip6_pol_route(net, table, fl6->flowi6_iif, fl6, flags);
Pavel Emelyanov4acad722007-10-15 13:02:51 -0700983}
984
Shmulik Ladkani72331bc2012-04-01 04:03:45 +0000985static struct dst_entry *ip6_route_input_lookup(struct net *net,
986 struct net_device *dev,
987 struct flowi6 *fl6, int flags)
988{
989 if (rt6_need_strict(&fl6->daddr) && dev->type != ARPHRD_PIMREG)
990 flags |= RT6_LOOKUP_F_IFACE;
991
992 return fib6_rule_lookup(net, fl6, flags, ip6_pol_route_input);
993}
994
Thomas Grafc71099a2006-08-04 23:20:06 -0700995void ip6_route_input(struct sk_buff *skb)
996{
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000997 const struct ipv6hdr *iph = ipv6_hdr(skb);
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900998 struct net *net = dev_net(skb->dev);
Thomas Grafadaa70b2006-10-13 15:01:03 -0700999 int flags = RT6_LOOKUP_F_HAS_SADDR;
David S. Miller4c9483b2011-03-12 16:22:43 -05001000 struct flowi6 fl6 = {
1001 .flowi6_iif = skb->dev->ifindex,
1002 .daddr = iph->daddr,
1003 .saddr = iph->saddr,
YOSHIFUJI Hideaki / 吉藤英明6502ca52013-01-13 05:01:51 +00001004 .flowlabel = ip6_flowinfo(iph),
David S. Miller4c9483b2011-03-12 16:22:43 -05001005 .flowi6_mark = skb->mark,
1006 .flowi6_proto = iph->nexthdr,
Thomas Grafc71099a2006-08-04 23:20:06 -07001007 };
Thomas Grafadaa70b2006-10-13 15:01:03 -07001008
Shmulik Ladkani72331bc2012-04-01 04:03:45 +00001009 skb_dst_set(skb, ip6_route_input_lookup(net, skb->dev, &fl6, flags));
Thomas Grafc71099a2006-08-04 23:20:06 -07001010}
1011
Daniel Lezcano8ed67782008-03-04 13:48:30 -08001012static struct rt6_info *ip6_pol_route_output(struct net *net, struct fib6_table *table,
David S. Miller4c9483b2011-03-12 16:22:43 -05001013 struct flowi6 *fl6, int flags)
Thomas Grafc71099a2006-08-04 23:20:06 -07001014{
David S. Miller4c9483b2011-03-12 16:22:43 -05001015 return ip6_pol_route(net, table, fl6->flowi6_oif, fl6, flags);
Thomas Grafc71099a2006-08-04 23:20:06 -07001016}
1017
Florian Westphal9c7a4f92011-03-22 19:17:36 -07001018struct dst_entry * ip6_route_output(struct net *net, const struct sock *sk,
David S. Miller4c9483b2011-03-12 16:22:43 -05001019 struct flowi6 *fl6)
Thomas Grafc71099a2006-08-04 23:20:06 -07001020{
1021 int flags = 0;
1022
Pavel Emelyanov1fb94892012-08-08 21:53:36 +00001023 fl6->flowi6_iif = LOOPBACK_IFINDEX;
David McCullough4dc27d1c2012-06-25 15:42:26 +00001024
David S. Miller4c9483b2011-03-12 16:22:43 -05001025 if ((sk && sk->sk_bound_dev_if) || rt6_need_strict(&fl6->daddr))
YOSHIFUJI Hideaki77d16f42006-08-23 17:25:05 -07001026 flags |= RT6_LOOKUP_F_IFACE;
Thomas Grafc71099a2006-08-04 23:20:06 -07001027
David S. Miller4c9483b2011-03-12 16:22:43 -05001028 if (!ipv6_addr_any(&fl6->saddr))
Thomas Grafadaa70b2006-10-13 15:01:03 -07001029 flags |= RT6_LOOKUP_F_HAS_SADDR;
YOSHIFUJI Hideaki / 吉藤英明0c9a2ac2010-03-07 00:14:44 +00001030 else if (sk)
1031 flags |= rt6_srcprefs2flags(inet6_sk(sk)->srcprefs);
Thomas Grafadaa70b2006-10-13 15:01:03 -07001032
David S. Miller4c9483b2011-03-12 16:22:43 -05001033 return fib6_rule_lookup(net, fl6, flags, ip6_pol_route_output);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034}
1035
YOSHIFUJI Hideaki71590392007-02-22 22:05:40 +09001036EXPORT_SYMBOL(ip6_route_output);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037
David S. Miller2774c132011-03-01 14:59:04 -08001038struct dst_entry *ip6_blackhole_route(struct net *net, struct dst_entry *dst_orig)
David S. Miller14e50e52007-05-24 18:17:54 -07001039{
David S. Miller5c1e6aa2011-04-28 14:13:38 -07001040 struct rt6_info *rt, *ort = (struct rt6_info *) dst_orig;
David S. Miller14e50e52007-05-24 18:17:54 -07001041 struct dst_entry *new = NULL;
1042
David S. Millerf5b0a872012-07-19 12:31:33 -07001043 rt = dst_alloc(&ip6_dst_blackhole_ops, ort->dst.dev, 1, DST_OBSOLETE_NONE, 0);
David S. Miller14e50e52007-05-24 18:17:54 -07001044 if (rt) {
Changli Gaod8d1f302010-06-10 23:31:35 -07001045 new = &rt->dst;
David S. Miller14e50e52007-05-24 18:17:54 -07001046
Steffen Klassert81048912012-07-05 23:37:09 +00001047 memset(new + 1, 0, sizeof(*rt) - sizeof(*new));
1048 rt6_init_peer(rt, net->ipv6.peers);
1049
David S. Miller14e50e52007-05-24 18:17:54 -07001050 new->__use = 1;
Herbert Xu352e5122007-11-13 21:34:06 -08001051 new->input = dst_discard;
1052 new->output = dst_discard;
David S. Miller14e50e52007-05-24 18:17:54 -07001053
Eric Dumazet21efcfa2011-07-19 20:18:36 +00001054 if (dst_metrics_read_only(&ort->dst))
1055 new->_metrics = ort->dst._metrics;
1056 else
1057 dst_copy_metrics(new, &ort->dst);
David S. Miller14e50e52007-05-24 18:17:54 -07001058 rt->rt6i_idev = ort->rt6i_idev;
1059 if (rt->rt6i_idev)
1060 in6_dev_hold(rt->rt6i_idev);
David S. Miller14e50e52007-05-24 18:17:54 -07001061
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001062 rt->rt6i_gateway = ort->rt6i_gateway;
Gao feng1716a962012-04-06 00:13:10 +00001063 rt->rt6i_flags = ort->rt6i_flags;
1064 rt6_clean_expires(rt);
David S. Miller14e50e52007-05-24 18:17:54 -07001065 rt->rt6i_metric = 0;
1066
1067 memcpy(&rt->rt6i_dst, &ort->rt6i_dst, sizeof(struct rt6key));
1068#ifdef CONFIG_IPV6_SUBTREES
1069 memcpy(&rt->rt6i_src, &ort->rt6i_src, sizeof(struct rt6key));
1070#endif
1071
1072 dst_free(new);
1073 }
1074
David S. Miller69ead7a2011-03-01 14:45:33 -08001075 dst_release(dst_orig);
1076 return new ? new : ERR_PTR(-ENOMEM);
David S. Miller14e50e52007-05-24 18:17:54 -07001077}
David S. Miller14e50e52007-05-24 18:17:54 -07001078
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079/*
1080 * Destination cache support functions
1081 */
1082
1083static struct dst_entry *ip6_dst_check(struct dst_entry *dst, u32 cookie)
1084{
1085 struct rt6_info *rt;
1086
1087 rt = (struct rt6_info *) dst;
1088
Nicolas Dichtel6f3118b2012-09-10 22:09:46 +00001089 /* All IPV6 dsts are created with ->obsolete set to the value
1090 * DST_OBSOLETE_FORCE_CHK which forces validation calls down
1091 * into this function always.
1092 */
1093 if (rt->rt6i_genid != rt_genid(dev_net(rt->dst.dev)))
1094 return NULL;
1095
Li RongQinga4477c42012-11-07 21:56:33 +00001096 if (rt->rt6i_node && (rt->rt6i_node->fn_sernum == cookie))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097 return dst;
Li RongQinga4477c42012-11-07 21:56:33 +00001098
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099 return NULL;
1100}
1101
1102static struct dst_entry *ip6_negative_advice(struct dst_entry *dst)
1103{
1104 struct rt6_info *rt = (struct rt6_info *) dst;
1105
1106 if (rt) {
YOSHIFUJI Hideaki / 吉藤英明54c1a852010-03-28 07:15:45 +00001107 if (rt->rt6i_flags & RTF_CACHE) {
1108 if (rt6_check_expired(rt)) {
1109 ip6_del_rt(rt);
1110 dst = NULL;
1111 }
1112 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113 dst_release(dst);
YOSHIFUJI Hideaki / 吉藤英明54c1a852010-03-28 07:15:45 +00001114 dst = NULL;
1115 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116 }
YOSHIFUJI Hideaki / 吉藤英明54c1a852010-03-28 07:15:45 +00001117 return dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118}
1119
1120static void ip6_link_failure(struct sk_buff *skb)
1121{
1122 struct rt6_info *rt;
1123
Alexey Dobriyan3ffe5332010-02-18 08:25:24 +00001124 icmpv6_send(skb, ICMPV6_DEST_UNREACH, ICMPV6_ADDR_UNREACH, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125
Eric Dumazetadf30902009-06-02 05:19:30 +00001126 rt = (struct rt6_info *) skb_dst(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127 if (rt) {
Gao feng1716a962012-04-06 00:13:10 +00001128 if (rt->rt6i_flags & RTF_CACHE)
1129 rt6_update_expires(rt, 0);
1130 else if (rt->rt6i_node && (rt->rt6i_flags & RTF_DEFAULT))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131 rt->rt6i_node->fn_sernum = -1;
1132 }
1133}
1134
David S. Miller6700c272012-07-17 03:29:28 -07001135static void ip6_rt_update_pmtu(struct dst_entry *dst, struct sock *sk,
1136 struct sk_buff *skb, u32 mtu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137{
1138 struct rt6_info *rt6 = (struct rt6_info*)dst;
1139
David S. Miller81aded22012-06-15 14:54:11 -07001140 dst_confirm(dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141 if (mtu < dst_mtu(dst) && rt6->rt6i_dst.plen == 128) {
David S. Miller81aded22012-06-15 14:54:11 -07001142 struct net *net = dev_net(dst->dev);
1143
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144 rt6->rt6i_flags |= RTF_MODIFIED;
1145 if (mtu < IPV6_MIN_MTU) {
David S. Millerdefb3512010-12-08 21:16:57 -08001146 u32 features = dst_metric(dst, RTAX_FEATURES);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147 mtu = IPV6_MIN_MTU;
David S. Millerdefb3512010-12-08 21:16:57 -08001148 features |= RTAX_FEATURE_ALLFRAG;
1149 dst_metric_set(dst, RTAX_FEATURES, features);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150 }
David S. Millerdefb3512010-12-08 21:16:57 -08001151 dst_metric_set(dst, RTAX_MTU, mtu);
David S. Miller81aded22012-06-15 14:54:11 -07001152 rt6_update_expires(rt6, net->ipv6.sysctl.ip6_rt_mtu_expires);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153 }
1154}
1155
David S. Miller42ae66c2012-06-15 20:01:57 -07001156void ip6_update_pmtu(struct sk_buff *skb, struct net *net, __be32 mtu,
1157 int oif, u32 mark)
David S. Miller81aded22012-06-15 14:54:11 -07001158{
1159 const struct ipv6hdr *iph = (struct ipv6hdr *) skb->data;
1160 struct dst_entry *dst;
1161 struct flowi6 fl6;
1162
1163 memset(&fl6, 0, sizeof(fl6));
1164 fl6.flowi6_oif = oif;
1165 fl6.flowi6_mark = mark;
David S. Miller3e129392012-07-10 04:01:57 -07001166 fl6.flowi6_flags = 0;
David S. Miller81aded22012-06-15 14:54:11 -07001167 fl6.daddr = iph->daddr;
1168 fl6.saddr = iph->saddr;
YOSHIFUJI Hideaki / 吉藤英明6502ca52013-01-13 05:01:51 +00001169 fl6.flowlabel = ip6_flowinfo(iph);
David S. Miller81aded22012-06-15 14:54:11 -07001170
1171 dst = ip6_route_output(net, NULL, &fl6);
1172 if (!dst->error)
David S. Miller6700c272012-07-17 03:29:28 -07001173 ip6_rt_update_pmtu(dst, NULL, skb, ntohl(mtu));
David S. Miller81aded22012-06-15 14:54:11 -07001174 dst_release(dst);
1175}
1176EXPORT_SYMBOL_GPL(ip6_update_pmtu);
1177
1178void ip6_sk_update_pmtu(struct sk_buff *skb, struct sock *sk, __be32 mtu)
1179{
1180 ip6_update_pmtu(skb, sock_net(sk), mtu,
1181 sk->sk_bound_dev_if, sk->sk_mark);
1182}
1183EXPORT_SYMBOL_GPL(ip6_sk_update_pmtu);
1184
David S. Miller3a5ad2e2012-07-12 00:08:07 -07001185void ip6_redirect(struct sk_buff *skb, struct net *net, int oif, u32 mark)
1186{
1187 const struct ipv6hdr *iph = (struct ipv6hdr *) skb->data;
1188 struct dst_entry *dst;
1189 struct flowi6 fl6;
1190
1191 memset(&fl6, 0, sizeof(fl6));
1192 fl6.flowi6_oif = oif;
1193 fl6.flowi6_mark = mark;
1194 fl6.flowi6_flags = 0;
1195 fl6.daddr = iph->daddr;
1196 fl6.saddr = iph->saddr;
YOSHIFUJI Hideaki / 吉藤英明6502ca52013-01-13 05:01:51 +00001197 fl6.flowlabel = ip6_flowinfo(iph);
David S. Miller3a5ad2e2012-07-12 00:08:07 -07001198
1199 dst = ip6_route_output(net, NULL, &fl6);
1200 if (!dst->error)
David S. Miller6700c272012-07-17 03:29:28 -07001201 rt6_do_redirect(dst, NULL, skb);
David S. Miller3a5ad2e2012-07-12 00:08:07 -07001202 dst_release(dst);
1203}
1204EXPORT_SYMBOL_GPL(ip6_redirect);
1205
1206void ip6_sk_redirect(struct sk_buff *skb, struct sock *sk)
1207{
1208 ip6_redirect(skb, sock_net(sk), sk->sk_bound_dev_if, sk->sk_mark);
1209}
1210EXPORT_SYMBOL_GPL(ip6_sk_redirect);
1211
David S. Miller0dbaee32010-12-13 12:52:14 -08001212static unsigned int ip6_default_advmss(const struct dst_entry *dst)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213{
David S. Miller0dbaee32010-12-13 12:52:14 -08001214 struct net_device *dev = dst->dev;
1215 unsigned int mtu = dst_mtu(dst);
1216 struct net *net = dev_net(dev);
1217
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218 mtu -= sizeof(struct ipv6hdr) + sizeof(struct tcphdr);
1219
Daniel Lezcano55786892008-03-04 13:47:47 -08001220 if (mtu < net->ipv6.sysctl.ip6_rt_min_advmss)
1221 mtu = net->ipv6.sysctl.ip6_rt_min_advmss;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222
1223 /*
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001224 * Maximal non-jumbo IPv6 payload is IPV6_MAXPLEN and
1225 * corresponding MSS is IPV6_MAXPLEN - tcp_header_size.
1226 * IPV6_MAXPLEN is also valid and means: "any MSS,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227 * rely only on pmtu discovery"
1228 */
1229 if (mtu > IPV6_MAXPLEN - sizeof(struct tcphdr))
1230 mtu = IPV6_MAXPLEN;
1231 return mtu;
1232}
1233
Steffen Klassertebb762f2011-11-23 02:12:51 +00001234static unsigned int ip6_mtu(const struct dst_entry *dst)
David S. Millerd33e4552010-12-14 13:01:14 -08001235{
David S. Millerd33e4552010-12-14 13:01:14 -08001236 struct inet6_dev *idev;
Steffen Klassert618f9bc2011-11-23 02:13:31 +00001237 unsigned int mtu = dst_metric_raw(dst, RTAX_MTU);
1238
1239 if (mtu)
1240 return mtu;
1241
1242 mtu = IPV6_MIN_MTU;
David S. Millerd33e4552010-12-14 13:01:14 -08001243
1244 rcu_read_lock();
1245 idev = __in6_dev_get(dst->dev);
1246 if (idev)
1247 mtu = idev->cnf.mtu6;
1248 rcu_read_unlock();
1249
1250 return mtu;
1251}
1252
YOSHIFUJI Hideaki3b009442007-12-06 16:11:48 -08001253static struct dst_entry *icmp6_dst_gc_list;
1254static DEFINE_SPINLOCK(icmp6_dst_lock);
Thomas Graf5d0bbee2006-08-04 03:37:36 -07001255
YOSHIFUJI Hideaki3b009442007-12-06 16:11:48 -08001256struct dst_entry *icmp6_dst_alloc(struct net_device *dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257 struct neighbour *neigh,
David S. Miller87a11572011-12-06 17:04:13 -05001258 struct flowi6 *fl6)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259{
David S. Miller87a11572011-12-06 17:04:13 -05001260 struct dst_entry *dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261 struct rt6_info *rt;
1262 struct inet6_dev *idev = in6_dev_get(dev);
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001263 struct net *net = dev_net(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264
David S. Miller38308472011-12-03 18:02:47 -05001265 if (unlikely(!idev))
Eric Dumazet122bdf62012-03-14 21:13:11 +00001266 return ERR_PTR(-ENODEV);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267
David S. Miller8b96d222012-06-11 02:01:56 -07001268 rt = ip6_dst_alloc(net, dev, 0, NULL);
David S. Miller38308472011-12-03 18:02:47 -05001269 if (unlikely(!rt)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270 in6_dev_put(idev);
David S. Miller87a11572011-12-06 17:04:13 -05001271 dst = ERR_PTR(-ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272 goto out;
1273 }
1274
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275 if (neigh)
1276 neigh_hold(neigh);
David S. Miller14deae42009-01-04 16:04:39 -08001277 else {
David S. Millerf894cbf2012-07-02 21:52:24 -07001278 neigh = ip6_neigh_lookup(&rt->dst, NULL, &fl6->daddr);
David S. Millerb43faac2011-12-13 16:48:21 -05001279 if (IS_ERR(neigh)) {
RongQing.Li252c3d82012-01-12 22:33:46 +00001280 in6_dev_put(idev);
David S. Millerb43faac2011-12-13 16:48:21 -05001281 dst_free(&rt->dst);
1282 return ERR_CAST(neigh);
1283 }
David S. Miller14deae42009-01-04 16:04:39 -08001284 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285
Yan, Zheng8e2ec632011-09-05 21:34:30 +00001286 rt->dst.flags |= DST_HOST;
1287 rt->dst.output = ip6_output;
David S. Miller97cac082012-07-02 22:43:47 -07001288 rt->n = neigh;
Changli Gaod8d1f302010-06-10 23:31:35 -07001289 atomic_set(&rt->dst.__refcnt, 1);
David S. Miller87a11572011-12-06 17:04:13 -05001290 rt->rt6i_dst.addr = fl6->daddr;
Yan, Zheng8e2ec632011-09-05 21:34:30 +00001291 rt->rt6i_dst.plen = 128;
1292 rt->rt6i_idev = idev;
Li RongQing14edd872012-10-24 14:01:18 +08001293 dst_metric_set(&rt->dst, RTAX_HOPLIMIT, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294
YOSHIFUJI Hideaki3b009442007-12-06 16:11:48 -08001295 spin_lock_bh(&icmp6_dst_lock);
Changli Gaod8d1f302010-06-10 23:31:35 -07001296 rt->dst.next = icmp6_dst_gc_list;
1297 icmp6_dst_gc_list = &rt->dst;
YOSHIFUJI Hideaki3b009442007-12-06 16:11:48 -08001298 spin_unlock_bh(&icmp6_dst_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299
Daniel Lezcano55786892008-03-04 13:47:47 -08001300 fib6_force_start_gc(net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301
David S. Miller87a11572011-12-06 17:04:13 -05001302 dst = xfrm_lookup(net, &rt->dst, flowi6_to_flowi(fl6), NULL, 0);
1303
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304out:
David S. Miller87a11572011-12-06 17:04:13 -05001305 return dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306}
1307
Stephen Hemminger3d0f24a2008-07-22 14:35:50 -07001308int icmp6_dst_gc(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309{
Hagen Paul Pfeifere9476e92011-02-25 05:45:19 +00001310 struct dst_entry *dst, **pprev;
Stephen Hemminger3d0f24a2008-07-22 14:35:50 -07001311 int more = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312
YOSHIFUJI Hideaki3b009442007-12-06 16:11:48 -08001313 spin_lock_bh(&icmp6_dst_lock);
1314 pprev = &icmp6_dst_gc_list;
Thomas Graf5d0bbee2006-08-04 03:37:36 -07001315
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316 while ((dst = *pprev) != NULL) {
1317 if (!atomic_read(&dst->__refcnt)) {
1318 *pprev = dst->next;
1319 dst_free(dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320 } else {
1321 pprev = &dst->next;
Stephen Hemminger3d0f24a2008-07-22 14:35:50 -07001322 ++more;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323 }
1324 }
1325
YOSHIFUJI Hideaki3b009442007-12-06 16:11:48 -08001326 spin_unlock_bh(&icmp6_dst_lock);
Thomas Graf5d0bbee2006-08-04 03:37:36 -07001327
Stephen Hemminger3d0f24a2008-07-22 14:35:50 -07001328 return more;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329}
1330
David S. Miller1e493d12008-09-10 17:27:15 -07001331static void icmp6_clean_all(int (*func)(struct rt6_info *rt, void *arg),
1332 void *arg)
1333{
1334 struct dst_entry *dst, **pprev;
1335
1336 spin_lock_bh(&icmp6_dst_lock);
1337 pprev = &icmp6_dst_gc_list;
1338 while ((dst = *pprev) != NULL) {
1339 struct rt6_info *rt = (struct rt6_info *) dst;
1340 if (func(rt, arg)) {
1341 *pprev = dst->next;
1342 dst_free(dst);
1343 } else {
1344 pprev = &dst->next;
1345 }
1346 }
1347 spin_unlock_bh(&icmp6_dst_lock);
1348}
1349
Daniel Lezcano569d3642008-01-18 03:56:57 -08001350static int ip6_dst_gc(struct dst_ops *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352 unsigned long now = jiffies;
Alexey Dobriyan86393e52009-08-29 01:34:49 +00001353 struct net *net = container_of(ops, struct net, ipv6.ip6_dst_ops);
Daniel Lezcano7019b782008-03-04 13:50:14 -08001354 int rt_min_interval = net->ipv6.sysctl.ip6_rt_gc_min_interval;
1355 int rt_max_size = net->ipv6.sysctl.ip6_rt_max_size;
1356 int rt_elasticity = net->ipv6.sysctl.ip6_rt_gc_elasticity;
1357 int rt_gc_timeout = net->ipv6.sysctl.ip6_rt_gc_timeout;
1358 unsigned long rt_last_gc = net->ipv6.ip6_rt_last_gc;
Eric Dumazetfc66f952010-10-08 06:37:34 +00001359 int entries;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360
Eric Dumazetfc66f952010-10-08 06:37:34 +00001361 entries = dst_entries_get_fast(ops);
Daniel Lezcano7019b782008-03-04 13:50:14 -08001362 if (time_after(rt_last_gc + rt_min_interval, now) &&
Eric Dumazetfc66f952010-10-08 06:37:34 +00001363 entries <= rt_max_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364 goto out;
1365
Benjamin Thery6891a342008-03-04 13:49:47 -08001366 net->ipv6.ip6_rt_gc_expire++;
1367 fib6_run_gc(net->ipv6.ip6_rt_gc_expire, net);
1368 net->ipv6.ip6_rt_last_gc = now;
Eric Dumazetfc66f952010-10-08 06:37:34 +00001369 entries = dst_entries_get_slow(ops);
1370 if (entries < ops->gc_thresh)
Daniel Lezcano7019b782008-03-04 13:50:14 -08001371 net->ipv6.ip6_rt_gc_expire = rt_gc_timeout>>1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372out:
Daniel Lezcano7019b782008-03-04 13:50:14 -08001373 net->ipv6.ip6_rt_gc_expire -= net->ipv6.ip6_rt_gc_expire>>rt_elasticity;
Eric Dumazetfc66f952010-10-08 06:37:34 +00001374 return entries > rt_max_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375}
1376
YOSHIFUJI Hideaki6b75d092008-03-10 06:00:30 -04001377int ip6_dst_hoplimit(struct dst_entry *dst)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378{
David S. Miller5170ae82010-12-12 21:35:57 -08001379 int hoplimit = dst_metric_raw(dst, RTAX_HOPLIMIT);
David S. Millera02e4b72010-12-12 21:39:02 -08001380 if (hoplimit == 0) {
YOSHIFUJI Hideaki6b75d092008-03-10 06:00:30 -04001381 struct net_device *dev = dst->dev;
Eric Dumazetc68f24c2010-06-14 04:46:20 +00001382 struct inet6_dev *idev;
1383
1384 rcu_read_lock();
1385 idev = __in6_dev_get(dev);
1386 if (idev)
YOSHIFUJI Hideaki6b75d092008-03-10 06:00:30 -04001387 hoplimit = idev->cnf.hop_limit;
Eric Dumazetc68f24c2010-06-14 04:46:20 +00001388 else
YOSHIFUJI Hideaki53b79972008-07-19 22:35:03 -07001389 hoplimit = dev_net(dev)->ipv6.devconf_all->hop_limit;
Eric Dumazetc68f24c2010-06-14 04:46:20 +00001390 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391 }
1392 return hoplimit;
1393}
David S. Millerabbf46a2010-12-12 21:14:46 -08001394EXPORT_SYMBOL(ip6_dst_hoplimit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395
1396/*
1397 *
1398 */
1399
Thomas Graf86872cb2006-08-22 00:01:08 -07001400int ip6_route_add(struct fib6_config *cfg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401{
1402 int err;
Daniel Lezcano55786892008-03-04 13:47:47 -08001403 struct net *net = cfg->fc_nlinfo.nl_net;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404 struct rt6_info *rt = NULL;
1405 struct net_device *dev = NULL;
1406 struct inet6_dev *idev = NULL;
Thomas Grafc71099a2006-08-04 23:20:06 -07001407 struct fib6_table *table;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408 int addr_type;
1409
Thomas Graf86872cb2006-08-22 00:01:08 -07001410 if (cfg->fc_dst_len > 128 || cfg->fc_src_len > 128)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411 return -EINVAL;
1412#ifndef CONFIG_IPV6_SUBTREES
Thomas Graf86872cb2006-08-22 00:01:08 -07001413 if (cfg->fc_src_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414 return -EINVAL;
1415#endif
Thomas Graf86872cb2006-08-22 00:01:08 -07001416 if (cfg->fc_ifindex) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417 err = -ENODEV;
Daniel Lezcano55786892008-03-04 13:47:47 -08001418 dev = dev_get_by_index(net, cfg->fc_ifindex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419 if (!dev)
1420 goto out;
1421 idev = in6_dev_get(dev);
1422 if (!idev)
1423 goto out;
1424 }
1425
Thomas Graf86872cb2006-08-22 00:01:08 -07001426 if (cfg->fc_metric == 0)
1427 cfg->fc_metric = IP6_RT_PRIO_USER;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428
Matti Vaittinend71314b2011-11-14 00:14:49 +00001429 err = -ENOBUFS;
David S. Miller38308472011-12-03 18:02:47 -05001430 if (cfg->fc_nlinfo.nlh &&
1431 !(cfg->fc_nlinfo.nlh->nlmsg_flags & NLM_F_CREATE)) {
Matti Vaittinend71314b2011-11-14 00:14:49 +00001432 table = fib6_get_table(net, cfg->fc_table);
David S. Miller38308472011-12-03 18:02:47 -05001433 if (!table) {
Joe Perchesf3213832012-05-15 14:11:53 +00001434 pr_warn("NLM_F_CREATE should be specified when creating new route\n");
Matti Vaittinend71314b2011-11-14 00:14:49 +00001435 table = fib6_new_table(net, cfg->fc_table);
1436 }
1437 } else {
1438 table = fib6_new_table(net, cfg->fc_table);
1439 }
David S. Miller38308472011-12-03 18:02:47 -05001440
1441 if (!table)
Thomas Grafc71099a2006-08-04 23:20:06 -07001442 goto out;
Thomas Grafc71099a2006-08-04 23:20:06 -07001443
David S. Miller8b96d222012-06-11 02:01:56 -07001444 rt = ip6_dst_alloc(net, NULL, DST_NOCOUNT, table);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445
David S. Miller38308472011-12-03 18:02:47 -05001446 if (!rt) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447 err = -ENOMEM;
1448 goto out;
1449 }
1450
Gao feng1716a962012-04-06 00:13:10 +00001451 if (cfg->fc_flags & RTF_EXPIRES)
1452 rt6_set_expires(rt, jiffies +
1453 clock_t_to_jiffies(cfg->fc_expires));
1454 else
1455 rt6_clean_expires(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456
Thomas Graf86872cb2006-08-22 00:01:08 -07001457 if (cfg->fc_protocol == RTPROT_UNSPEC)
1458 cfg->fc_protocol = RTPROT_BOOT;
1459 rt->rt6i_protocol = cfg->fc_protocol;
1460
1461 addr_type = ipv6_addr_type(&cfg->fc_dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462
1463 if (addr_type & IPV6_ADDR_MULTICAST)
Changli Gaod8d1f302010-06-10 23:31:35 -07001464 rt->dst.input = ip6_mc_input;
Maciej Żenczykowskiab79ad12010-09-27 00:07:02 +00001465 else if (cfg->fc_flags & RTF_LOCAL)
1466 rt->dst.input = ip6_input;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467 else
Changli Gaod8d1f302010-06-10 23:31:35 -07001468 rt->dst.input = ip6_forward;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469
Changli Gaod8d1f302010-06-10 23:31:35 -07001470 rt->dst.output = ip6_output;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471
Thomas Graf86872cb2006-08-22 00:01:08 -07001472 ipv6_addr_prefix(&rt->rt6i_dst.addr, &cfg->fc_dst, cfg->fc_dst_len);
1473 rt->rt6i_dst.plen = cfg->fc_dst_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474 if (rt->rt6i_dst.plen == 128)
David S. Miller11d53b42011-06-24 15:23:34 -07001475 rt->dst.flags |= DST_HOST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476
Yan, Zheng8e2ec632011-09-05 21:34:30 +00001477 if (!(rt->dst.flags & DST_HOST) && cfg->fc_mx) {
1478 u32 *metrics = kzalloc(sizeof(u32) * RTAX_MAX, GFP_KERNEL);
1479 if (!metrics) {
1480 err = -ENOMEM;
1481 goto out;
1482 }
1483 dst_init_metrics(&rt->dst, metrics, 0);
1484 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485#ifdef CONFIG_IPV6_SUBTREES
Thomas Graf86872cb2006-08-22 00:01:08 -07001486 ipv6_addr_prefix(&rt->rt6i_src.addr, &cfg->fc_src, cfg->fc_src_len);
1487 rt->rt6i_src.plen = cfg->fc_src_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488#endif
1489
Thomas Graf86872cb2006-08-22 00:01:08 -07001490 rt->rt6i_metric = cfg->fc_metric;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491
1492 /* We cannot add true routes via loopback here,
1493 they would result in kernel looping; promote them to reject routes
1494 */
Thomas Graf86872cb2006-08-22 00:01:08 -07001495 if ((cfg->fc_flags & RTF_REJECT) ||
David S. Miller38308472011-12-03 18:02:47 -05001496 (dev && (dev->flags & IFF_LOOPBACK) &&
1497 !(addr_type & IPV6_ADDR_LOOPBACK) &&
1498 !(cfg->fc_flags & RTF_LOCAL))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499 /* hold loopback dev/idev if we haven't done so. */
Daniel Lezcano55786892008-03-04 13:47:47 -08001500 if (dev != net->loopback_dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501 if (dev) {
1502 dev_put(dev);
1503 in6_dev_put(idev);
1504 }
Daniel Lezcano55786892008-03-04 13:47:47 -08001505 dev = net->loopback_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506 dev_hold(dev);
1507 idev = in6_dev_get(dev);
1508 if (!idev) {
1509 err = -ENODEV;
1510 goto out;
1511 }
1512 }
Changli Gaod8d1f302010-06-10 23:31:35 -07001513 rt->dst.output = ip6_pkt_discard_out;
1514 rt->dst.input = ip6_pkt_discard;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515 rt->rt6i_flags = RTF_REJECT|RTF_NONEXTHOP;
Nicolas Dichtelef2c7d72012-09-05 02:12:42 +00001516 switch (cfg->fc_type) {
1517 case RTN_BLACKHOLE:
1518 rt->dst.error = -EINVAL;
1519 break;
1520 case RTN_PROHIBIT:
1521 rt->dst.error = -EACCES;
1522 break;
Nicolas Dichtelb4949ab2012-09-06 05:53:35 +00001523 case RTN_THROW:
1524 rt->dst.error = -EAGAIN;
1525 break;
Nicolas Dichtelef2c7d72012-09-05 02:12:42 +00001526 default:
1527 rt->dst.error = -ENETUNREACH;
1528 break;
1529 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530 goto install_route;
1531 }
1532
Thomas Graf86872cb2006-08-22 00:01:08 -07001533 if (cfg->fc_flags & RTF_GATEWAY) {
Eric Dumazetb71d1d42011-04-22 04:53:02 +00001534 const struct in6_addr *gw_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535 int gwa_type;
1536
Thomas Graf86872cb2006-08-22 00:01:08 -07001537 gw_addr = &cfg->fc_gateway;
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001538 rt->rt6i_gateway = *gw_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539 gwa_type = ipv6_addr_type(gw_addr);
1540
1541 if (gwa_type != (IPV6_ADDR_LINKLOCAL|IPV6_ADDR_UNICAST)) {
1542 struct rt6_info *grt;
1543
1544 /* IPv6 strictly inhibits using not link-local
1545 addresses as nexthop address.
1546 Otherwise, router will not able to send redirects.
1547 It is very good, but in some (rare!) circumstances
1548 (SIT, PtP, NBMA NOARP links) it is handy to allow
1549 some exceptions. --ANK
1550 */
1551 err = -EINVAL;
David S. Miller38308472011-12-03 18:02:47 -05001552 if (!(gwa_type & IPV6_ADDR_UNICAST))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553 goto out;
1554
Daniel Lezcano55786892008-03-04 13:47:47 -08001555 grt = rt6_lookup(net, gw_addr, NULL, cfg->fc_ifindex, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556
1557 err = -EHOSTUNREACH;
David S. Miller38308472011-12-03 18:02:47 -05001558 if (!grt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559 goto out;
1560 if (dev) {
David S. Millerd1918542011-12-28 20:19:20 -05001561 if (dev != grt->dst.dev) {
Amerigo Wang94e187c2012-10-29 00:13:19 +00001562 ip6_rt_put(grt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563 goto out;
1564 }
1565 } else {
David S. Millerd1918542011-12-28 20:19:20 -05001566 dev = grt->dst.dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567 idev = grt->rt6i_idev;
1568 dev_hold(dev);
1569 in6_dev_hold(grt->rt6i_idev);
1570 }
David S. Miller38308472011-12-03 18:02:47 -05001571 if (!(grt->rt6i_flags & RTF_GATEWAY))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572 err = 0;
Amerigo Wang94e187c2012-10-29 00:13:19 +00001573 ip6_rt_put(grt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574
1575 if (err)
1576 goto out;
1577 }
1578 err = -EINVAL;
David S. Miller38308472011-12-03 18:02:47 -05001579 if (!dev || (dev->flags & IFF_LOOPBACK))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580 goto out;
1581 }
1582
1583 err = -ENODEV;
David S. Miller38308472011-12-03 18:02:47 -05001584 if (!dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585 goto out;
1586
Daniel Walterc3968a82011-04-13 21:10:57 +00001587 if (!ipv6_addr_any(&cfg->fc_prefsrc)) {
1588 if (!ipv6_chk_addr(net, &cfg->fc_prefsrc, dev, 0)) {
1589 err = -EINVAL;
1590 goto out;
1591 }
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001592 rt->rt6i_prefsrc.addr = cfg->fc_prefsrc;
Daniel Walterc3968a82011-04-13 21:10:57 +00001593 rt->rt6i_prefsrc.plen = 128;
1594 } else
1595 rt->rt6i_prefsrc.plen = 0;
1596
Thomas Graf86872cb2006-08-22 00:01:08 -07001597 if (cfg->fc_flags & (RTF_GATEWAY | RTF_NONEXTHOP)) {
David S. Miller8ade06c2011-12-29 18:51:57 -05001598 err = rt6_bind_neighbour(rt, dev);
David S. Millerf83c7792011-12-28 15:41:23 -05001599 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601 }
1602
Thomas Graf86872cb2006-08-22 00:01:08 -07001603 rt->rt6i_flags = cfg->fc_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604
1605install_route:
Thomas Graf86872cb2006-08-22 00:01:08 -07001606 if (cfg->fc_mx) {
1607 struct nlattr *nla;
1608 int remaining;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609
Thomas Graf86872cb2006-08-22 00:01:08 -07001610 nla_for_each_attr(nla, cfg->fc_mx, cfg->fc_mx_len, remaining) {
Thomas Graf8f4c1f92007-09-12 14:44:36 +02001611 int type = nla_type(nla);
Thomas Graf86872cb2006-08-22 00:01:08 -07001612
1613 if (type) {
1614 if (type > RTAX_MAX) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615 err = -EINVAL;
1616 goto out;
1617 }
Thomas Graf86872cb2006-08-22 00:01:08 -07001618
David S. Millerdefb3512010-12-08 21:16:57 -08001619 dst_metric_set(&rt->dst, type, nla_get_u32(nla));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621 }
1622 }
1623
Changli Gaod8d1f302010-06-10 23:31:35 -07001624 rt->dst.dev = dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625 rt->rt6i_idev = idev;
Thomas Grafc71099a2006-08-04 23:20:06 -07001626 rt->rt6i_table = table;
Daniel Lezcano63152fc2008-03-03 23:31:11 -08001627
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001628 cfg->fc_nlinfo.nl_net = dev_net(dev);
Daniel Lezcano63152fc2008-03-03 23:31:11 -08001629
Thomas Graf86872cb2006-08-22 00:01:08 -07001630 return __ip6_ins_rt(rt, &cfg->fc_nlinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631
1632out:
1633 if (dev)
1634 dev_put(dev);
1635 if (idev)
1636 in6_dev_put(idev);
1637 if (rt)
Changli Gaod8d1f302010-06-10 23:31:35 -07001638 dst_free(&rt->dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639 return err;
1640}
1641
Thomas Graf86872cb2006-08-22 00:01:08 -07001642static int __ip6_del_rt(struct rt6_info *rt, struct nl_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643{
1644 int err;
Thomas Grafc71099a2006-08-04 23:20:06 -07001645 struct fib6_table *table;
David S. Millerd1918542011-12-28 20:19:20 -05001646 struct net *net = dev_net(rt->dst.dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647
Gao feng6825a262012-09-19 19:25:34 +00001648 if (rt == net->ipv6.ip6_null_entry) {
1649 err = -ENOENT;
1650 goto out;
1651 }
Patrick McHardy6c813a72006-08-06 22:22:47 -07001652
Thomas Grafc71099a2006-08-04 23:20:06 -07001653 table = rt->rt6i_table;
1654 write_lock_bh(&table->tb6_lock);
Thomas Graf86872cb2006-08-22 00:01:08 -07001655 err = fib6_del(rt, info);
Thomas Grafc71099a2006-08-04 23:20:06 -07001656 write_unlock_bh(&table->tb6_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657
Gao feng6825a262012-09-19 19:25:34 +00001658out:
Amerigo Wang94e187c2012-10-29 00:13:19 +00001659 ip6_rt_put(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660 return err;
1661}
1662
Thomas Grafe0a1ad732006-08-22 00:00:21 -07001663int ip6_del_rt(struct rt6_info *rt)
1664{
Denis V. Lunev4d1169c2008-01-10 03:26:13 -08001665 struct nl_info info = {
David S. Millerd1918542011-12-28 20:19:20 -05001666 .nl_net = dev_net(rt->dst.dev),
Denis V. Lunev4d1169c2008-01-10 03:26:13 -08001667 };
Denis V. Lunev528c4ce2007-12-13 09:45:12 -08001668 return __ip6_del_rt(rt, &info);
Thomas Grafe0a1ad732006-08-22 00:00:21 -07001669}
1670
Thomas Graf86872cb2006-08-22 00:01:08 -07001671static int ip6_route_del(struct fib6_config *cfg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672{
Thomas Grafc71099a2006-08-04 23:20:06 -07001673 struct fib6_table *table;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674 struct fib6_node *fn;
1675 struct rt6_info *rt;
1676 int err = -ESRCH;
1677
Daniel Lezcano55786892008-03-04 13:47:47 -08001678 table = fib6_get_table(cfg->fc_nlinfo.nl_net, cfg->fc_table);
David S. Miller38308472011-12-03 18:02:47 -05001679 if (!table)
Thomas Grafc71099a2006-08-04 23:20:06 -07001680 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681
Thomas Grafc71099a2006-08-04 23:20:06 -07001682 read_lock_bh(&table->tb6_lock);
1683
1684 fn = fib6_locate(&table->tb6_root,
Thomas Graf86872cb2006-08-22 00:01:08 -07001685 &cfg->fc_dst, cfg->fc_dst_len,
1686 &cfg->fc_src, cfg->fc_src_len);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001687
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688 if (fn) {
Changli Gaod8d1f302010-06-10 23:31:35 -07001689 for (rt = fn->leaf; rt; rt = rt->dst.rt6_next) {
Thomas Graf86872cb2006-08-22 00:01:08 -07001690 if (cfg->fc_ifindex &&
David S. Millerd1918542011-12-28 20:19:20 -05001691 (!rt->dst.dev ||
1692 rt->dst.dev->ifindex != cfg->fc_ifindex))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693 continue;
Thomas Graf86872cb2006-08-22 00:01:08 -07001694 if (cfg->fc_flags & RTF_GATEWAY &&
1695 !ipv6_addr_equal(&cfg->fc_gateway, &rt->rt6i_gateway))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696 continue;
Thomas Graf86872cb2006-08-22 00:01:08 -07001697 if (cfg->fc_metric && cfg->fc_metric != rt->rt6i_metric)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698 continue;
Changli Gaod8d1f302010-06-10 23:31:35 -07001699 dst_hold(&rt->dst);
Thomas Grafc71099a2006-08-04 23:20:06 -07001700 read_unlock_bh(&table->tb6_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701
Thomas Graf86872cb2006-08-22 00:01:08 -07001702 return __ip6_del_rt(rt, &cfg->fc_nlinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703 }
1704 }
Thomas Grafc71099a2006-08-04 23:20:06 -07001705 read_unlock_bh(&table->tb6_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706
1707 return err;
1708}
1709
David S. Miller6700c272012-07-17 03:29:28 -07001710static void rt6_do_redirect(struct dst_entry *dst, struct sock *sk, struct sk_buff *skb)
YOSHIFUJI Hideakia6279452006-08-23 17:18:26 -07001711{
David S. Millere8599ff2012-07-11 23:43:53 -07001712 struct net *net = dev_net(skb->dev);
YOSHIFUJI Hideakia6279452006-08-23 17:18:26 -07001713 struct netevent_redirect netevent;
David S. Millere8599ff2012-07-11 23:43:53 -07001714 struct rt6_info *rt, *nrt = NULL;
David S. Millere8599ff2012-07-11 23:43:53 -07001715 struct ndisc_options ndopts;
David S. Miller6e157b62012-07-12 00:05:02 -07001716 struct neighbour *old_neigh;
David S. Millere8599ff2012-07-11 23:43:53 -07001717 struct inet6_dev *in6_dev;
1718 struct neighbour *neigh;
YOSHIFUJI Hideaki / 吉藤英明71bcdba2013-01-05 16:34:51 +00001719 struct rd_msg *msg;
David S. Miller6e157b62012-07-12 00:05:02 -07001720 int optlen, on_link;
1721 u8 *lladdr;
David S. Millere8599ff2012-07-11 23:43:53 -07001722
1723 optlen = skb->tail - skb->transport_header;
YOSHIFUJI Hideaki / 吉藤英明71bcdba2013-01-05 16:34:51 +00001724 optlen -= sizeof(*msg);
David S. Millere8599ff2012-07-11 23:43:53 -07001725
1726 if (optlen < 0) {
David S. Miller6e157b62012-07-12 00:05:02 -07001727 net_dbg_ratelimited("rt6_do_redirect: packet too short\n");
David S. Millere8599ff2012-07-11 23:43:53 -07001728 return;
1729 }
1730
YOSHIFUJI Hideaki / 吉藤英明71bcdba2013-01-05 16:34:51 +00001731 msg = (struct rd_msg *)icmp6_hdr(skb);
David S. Millere8599ff2012-07-11 23:43:53 -07001732
YOSHIFUJI Hideaki / 吉藤英明71bcdba2013-01-05 16:34:51 +00001733 if (ipv6_addr_is_multicast(&msg->dest)) {
David S. Miller6e157b62012-07-12 00:05:02 -07001734 net_dbg_ratelimited("rt6_do_redirect: destination address is multicast\n");
David S. Millere8599ff2012-07-11 23:43:53 -07001735 return;
1736 }
1737
David S. Miller6e157b62012-07-12 00:05:02 -07001738 on_link = 0;
YOSHIFUJI Hideaki / 吉藤英明71bcdba2013-01-05 16:34:51 +00001739 if (ipv6_addr_equal(&msg->dest, &msg->target)) {
David S. Millere8599ff2012-07-11 23:43:53 -07001740 on_link = 1;
YOSHIFUJI Hideaki / 吉藤英明71bcdba2013-01-05 16:34:51 +00001741 } else if (ipv6_addr_type(&msg->target) !=
David S. Millere8599ff2012-07-11 23:43:53 -07001742 (IPV6_ADDR_UNICAST|IPV6_ADDR_LINKLOCAL)) {
David S. Miller6e157b62012-07-12 00:05:02 -07001743 net_dbg_ratelimited("rt6_do_redirect: target address is not link-local unicast\n");
David S. Millere8599ff2012-07-11 23:43:53 -07001744 return;
1745 }
1746
1747 in6_dev = __in6_dev_get(skb->dev);
1748 if (!in6_dev)
1749 return;
1750 if (in6_dev->cnf.forwarding || !in6_dev->cnf.accept_redirects)
1751 return;
1752
1753 /* RFC2461 8.1:
1754 * The IP source address of the Redirect MUST be the same as the current
1755 * first-hop router for the specified ICMP Destination Address.
1756 */
1757
YOSHIFUJI Hideaki / 吉藤英明71bcdba2013-01-05 16:34:51 +00001758 if (!ndisc_parse_options(msg->opt, optlen, &ndopts)) {
David S. Millere8599ff2012-07-11 23:43:53 -07001759 net_dbg_ratelimited("rt6_redirect: invalid ND options\n");
1760 return;
1761 }
David S. Miller6e157b62012-07-12 00:05:02 -07001762
1763 lladdr = NULL;
David S. Millere8599ff2012-07-11 23:43:53 -07001764 if (ndopts.nd_opts_tgt_lladdr) {
1765 lladdr = ndisc_opt_addr_data(ndopts.nd_opts_tgt_lladdr,
1766 skb->dev);
1767 if (!lladdr) {
1768 net_dbg_ratelimited("rt6_redirect: invalid link-layer address length\n");
1769 return;
1770 }
1771 }
1772
David S. Miller6e157b62012-07-12 00:05:02 -07001773 rt = (struct rt6_info *) dst;
1774 if (rt == net->ipv6.ip6_null_entry) {
1775 net_dbg_ratelimited("rt6_redirect: source isn't a valid nexthop for redirect target\n");
1776 return;
1777 }
1778
1779 /* Redirect received -> path was valid.
1780 * Look, redirects are sent only in response to data packets,
1781 * so that this nexthop apparently is reachable. --ANK
1782 */
1783 dst_confirm(&rt->dst);
1784
YOSHIFUJI Hideaki / 吉藤英明71bcdba2013-01-05 16:34:51 +00001785 neigh = __neigh_lookup(&nd_tbl, &msg->target, skb->dev, 1);
David S. Millere8599ff2012-07-11 23:43:53 -07001786 if (!neigh)
1787 return;
1788
David S. Miller6e157b62012-07-12 00:05:02 -07001789 /* Duplicate redirect: silently ignore. */
1790 old_neigh = rt->n;
1791 if (neigh == old_neigh)
YOSHIFUJI Hideakia6279452006-08-23 17:18:26 -07001792 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794 /*
1795 * We have finally decided to accept it.
1796 */
1797
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001798 neigh_update(neigh, lladdr, NUD_STALE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799 NEIGH_UPDATE_F_WEAK_OVERRIDE|
1800 NEIGH_UPDATE_F_OVERRIDE|
1801 (on_link ? 0 : (NEIGH_UPDATE_F_OVERRIDE_ISROUTER|
1802 NEIGH_UPDATE_F_ISROUTER))
1803 );
1804
YOSHIFUJI Hideaki / 吉藤英明71bcdba2013-01-05 16:34:51 +00001805 nrt = ip6_rt_copy(rt, &msg->dest);
David S. Miller38308472011-12-03 18:02:47 -05001806 if (!nrt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807 goto out;
1808
1809 nrt->rt6i_flags = RTF_GATEWAY|RTF_UP|RTF_DYNAMIC|RTF_CACHE;
1810 if (on_link)
1811 nrt->rt6i_flags &= ~RTF_GATEWAY;
1812
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001813 nrt->rt6i_gateway = *(struct in6_addr *)neigh->primary_key;
David S. Miller97cac082012-07-02 22:43:47 -07001814 nrt->n = neigh_clone(neigh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815
Thomas Graf40e22e82006-08-22 00:00:45 -07001816 if (ip6_ins_rt(nrt))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817 goto out;
1818
Changli Gaod8d1f302010-06-10 23:31:35 -07001819 netevent.old = &rt->dst;
1820 netevent.new = &nrt->dst;
YOSHIFUJI Hideaki / 吉藤英明71bcdba2013-01-05 16:34:51 +00001821 netevent.daddr = &msg->dest;
YOSHIFUJI Hideaki / 吉藤英明60592832013-01-14 09:28:27 +00001822 netevent.neigh = neigh;
Tom Tucker8d717402006-07-30 20:43:36 -07001823 call_netevent_notifiers(NETEVENT_REDIRECT, &netevent);
1824
David S. Miller38308472011-12-03 18:02:47 -05001825 if (rt->rt6i_flags & RTF_CACHE) {
David S. Miller6e157b62012-07-12 00:05:02 -07001826 rt = (struct rt6_info *) dst_clone(&rt->dst);
Thomas Grafe0a1ad732006-08-22 00:00:21 -07001827 ip6_del_rt(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828 }
1829
1830out:
David S. Millere8599ff2012-07-11 23:43:53 -07001831 neigh_release(neigh);
David S. Miller6e157b62012-07-12 00:05:02 -07001832}
1833
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835 * Misc support functions
1836 */
1837
Gao feng1716a962012-04-06 00:13:10 +00001838static struct rt6_info *ip6_rt_copy(struct rt6_info *ort,
Eric Dumazet21efcfa2011-07-19 20:18:36 +00001839 const struct in6_addr *dest)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001840{
David S. Millerd1918542011-12-28 20:19:20 -05001841 struct net *net = dev_net(ort->dst.dev);
David S. Miller8b96d222012-06-11 02:01:56 -07001842 struct rt6_info *rt = ip6_dst_alloc(net, ort->dst.dev, 0,
1843 ort->rt6i_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844
1845 if (rt) {
Changli Gaod8d1f302010-06-10 23:31:35 -07001846 rt->dst.input = ort->dst.input;
1847 rt->dst.output = ort->dst.output;
Yan, Zheng8e2ec632011-09-05 21:34:30 +00001848 rt->dst.flags |= DST_HOST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001850 rt->rt6i_dst.addr = *dest;
Yan, Zheng8e2ec632011-09-05 21:34:30 +00001851 rt->rt6i_dst.plen = 128;
David S. Millerdefb3512010-12-08 21:16:57 -08001852 dst_copy_metrics(&rt->dst, &ort->dst);
Changli Gaod8d1f302010-06-10 23:31:35 -07001853 rt->dst.error = ort->dst.error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001854 rt->rt6i_idev = ort->rt6i_idev;
1855 if (rt->rt6i_idev)
1856 in6_dev_hold(rt->rt6i_idev);
Changli Gaod8d1f302010-06-10 23:31:35 -07001857 rt->dst.lastuse = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001859 rt->rt6i_gateway = ort->rt6i_gateway;
Gao feng1716a962012-04-06 00:13:10 +00001860 rt->rt6i_flags = ort->rt6i_flags;
1861 if ((ort->rt6i_flags & (RTF_DEFAULT | RTF_ADDRCONF)) ==
1862 (RTF_DEFAULT | RTF_ADDRCONF))
1863 rt6_set_from(rt, ort);
1864 else
1865 rt6_clean_expires(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866 rt->rt6i_metric = 0;
1867
Linus Torvalds1da177e2005-04-16 15:20:36 -07001868#ifdef CONFIG_IPV6_SUBTREES
1869 memcpy(&rt->rt6i_src, &ort->rt6i_src, sizeof(struct rt6key));
1870#endif
Florian Westphal0f6c6392011-05-20 11:27:24 +00001871 memcpy(&rt->rt6i_prefsrc, &ort->rt6i_prefsrc, sizeof(struct rt6key));
Thomas Grafc71099a2006-08-04 23:20:06 -07001872 rt->rt6i_table = ort->rt6i_table;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001873 }
1874 return rt;
1875}
1876
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08001877#ifdef CONFIG_IPV6_ROUTE_INFO
Daniel Lezcanoefa2cea2008-03-04 13:46:48 -08001878static struct rt6_info *rt6_get_route_info(struct net *net,
Eric Dumazetb71d1d42011-04-22 04:53:02 +00001879 const struct in6_addr *prefix, int prefixlen,
1880 const struct in6_addr *gwaddr, int ifindex)
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08001881{
1882 struct fib6_node *fn;
1883 struct rt6_info *rt = NULL;
Thomas Grafc71099a2006-08-04 23:20:06 -07001884 struct fib6_table *table;
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08001885
Daniel Lezcanoefa2cea2008-03-04 13:46:48 -08001886 table = fib6_get_table(net, RT6_TABLE_INFO);
David S. Miller38308472011-12-03 18:02:47 -05001887 if (!table)
Thomas Grafc71099a2006-08-04 23:20:06 -07001888 return NULL;
1889
Li RongQing5744dd92012-09-11 21:59:01 +00001890 read_lock_bh(&table->tb6_lock);
Thomas Grafc71099a2006-08-04 23:20:06 -07001891 fn = fib6_locate(&table->tb6_root, prefix ,prefixlen, NULL, 0);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08001892 if (!fn)
1893 goto out;
1894
Changli Gaod8d1f302010-06-10 23:31:35 -07001895 for (rt = fn->leaf; rt; rt = rt->dst.rt6_next) {
David S. Millerd1918542011-12-28 20:19:20 -05001896 if (rt->dst.dev->ifindex != ifindex)
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08001897 continue;
1898 if ((rt->rt6i_flags & (RTF_ROUTEINFO|RTF_GATEWAY)) != (RTF_ROUTEINFO|RTF_GATEWAY))
1899 continue;
1900 if (!ipv6_addr_equal(&rt->rt6i_gateway, gwaddr))
1901 continue;
Changli Gaod8d1f302010-06-10 23:31:35 -07001902 dst_hold(&rt->dst);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08001903 break;
1904 }
1905out:
Li RongQing5744dd92012-09-11 21:59:01 +00001906 read_unlock_bh(&table->tb6_lock);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08001907 return rt;
1908}
1909
Daniel Lezcanoefa2cea2008-03-04 13:46:48 -08001910static struct rt6_info *rt6_add_route_info(struct net *net,
Eric Dumazetb71d1d42011-04-22 04:53:02 +00001911 const struct in6_addr *prefix, int prefixlen,
1912 const struct in6_addr *gwaddr, int ifindex,
Eric Dumazet95c96172012-04-15 05:58:06 +00001913 unsigned int pref)
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08001914{
Thomas Graf86872cb2006-08-22 00:01:08 -07001915 struct fib6_config cfg = {
1916 .fc_table = RT6_TABLE_INFO,
Rami Rosen238fc7e2008-02-09 23:43:11 -08001917 .fc_metric = IP6_RT_PRIO_USER,
Thomas Graf86872cb2006-08-22 00:01:08 -07001918 .fc_ifindex = ifindex,
1919 .fc_dst_len = prefixlen,
1920 .fc_flags = RTF_GATEWAY | RTF_ADDRCONF | RTF_ROUTEINFO |
1921 RTF_UP | RTF_PREF(pref),
Eric W. Biederman15e47302012-09-07 20:12:54 +00001922 .fc_nlinfo.portid = 0,
Daniel Lezcanoefa2cea2008-03-04 13:46:48 -08001923 .fc_nlinfo.nlh = NULL,
1924 .fc_nlinfo.nl_net = net,
Thomas Graf86872cb2006-08-22 00:01:08 -07001925 };
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08001926
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001927 cfg.fc_dst = *prefix;
1928 cfg.fc_gateway = *gwaddr;
Thomas Graf86872cb2006-08-22 00:01:08 -07001929
YOSHIFUJI Hideakie317da92006-03-20 17:06:42 -08001930 /* We should treat it as a default route if prefix length is 0. */
1931 if (!prefixlen)
Thomas Graf86872cb2006-08-22 00:01:08 -07001932 cfg.fc_flags |= RTF_DEFAULT;
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08001933
Thomas Graf86872cb2006-08-22 00:01:08 -07001934 ip6_route_add(&cfg);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08001935
Daniel Lezcanoefa2cea2008-03-04 13:46:48 -08001936 return rt6_get_route_info(net, prefix, prefixlen, gwaddr, ifindex);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08001937}
1938#endif
1939
Eric Dumazetb71d1d42011-04-22 04:53:02 +00001940struct rt6_info *rt6_get_dflt_router(const struct in6_addr *addr, struct net_device *dev)
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001941{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001942 struct rt6_info *rt;
Thomas Grafc71099a2006-08-04 23:20:06 -07001943 struct fib6_table *table;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001945 table = fib6_get_table(dev_net(dev), RT6_TABLE_DFLT);
David S. Miller38308472011-12-03 18:02:47 -05001946 if (!table)
Thomas Grafc71099a2006-08-04 23:20:06 -07001947 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001948
Li RongQing5744dd92012-09-11 21:59:01 +00001949 read_lock_bh(&table->tb6_lock);
Changli Gaod8d1f302010-06-10 23:31:35 -07001950 for (rt = table->tb6_root.leaf; rt; rt=rt->dst.rt6_next) {
David S. Millerd1918542011-12-28 20:19:20 -05001951 if (dev == rt->dst.dev &&
YOSHIFUJI Hideaki045927f2006-03-20 17:00:48 -08001952 ((rt->rt6i_flags & (RTF_ADDRCONF | RTF_DEFAULT)) == (RTF_ADDRCONF | RTF_DEFAULT)) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953 ipv6_addr_equal(&rt->rt6i_gateway, addr))
1954 break;
1955 }
1956 if (rt)
Changli Gaod8d1f302010-06-10 23:31:35 -07001957 dst_hold(&rt->dst);
Li RongQing5744dd92012-09-11 21:59:01 +00001958 read_unlock_bh(&table->tb6_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001959 return rt;
1960}
1961
Eric Dumazetb71d1d42011-04-22 04:53:02 +00001962struct rt6_info *rt6_add_dflt_router(const struct in6_addr *gwaddr,
YOSHIFUJI Hideakiebacaaa2006-03-20 17:04:53 -08001963 struct net_device *dev,
1964 unsigned int pref)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001965{
Thomas Graf86872cb2006-08-22 00:01:08 -07001966 struct fib6_config cfg = {
1967 .fc_table = RT6_TABLE_DFLT,
Rami Rosen238fc7e2008-02-09 23:43:11 -08001968 .fc_metric = IP6_RT_PRIO_USER,
Thomas Graf86872cb2006-08-22 00:01:08 -07001969 .fc_ifindex = dev->ifindex,
1970 .fc_flags = RTF_GATEWAY | RTF_ADDRCONF | RTF_DEFAULT |
1971 RTF_UP | RTF_EXPIRES | RTF_PREF(pref),
Eric W. Biederman15e47302012-09-07 20:12:54 +00001972 .fc_nlinfo.portid = 0,
Daniel Lezcano55786892008-03-04 13:47:47 -08001973 .fc_nlinfo.nlh = NULL,
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001974 .fc_nlinfo.nl_net = dev_net(dev),
Thomas Graf86872cb2006-08-22 00:01:08 -07001975 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001976
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001977 cfg.fc_gateway = *gwaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978
Thomas Graf86872cb2006-08-22 00:01:08 -07001979 ip6_route_add(&cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001980
Linus Torvalds1da177e2005-04-16 15:20:36 -07001981 return rt6_get_dflt_router(gwaddr, dev);
1982}
1983
Daniel Lezcano7b4da532008-03-04 13:47:14 -08001984void rt6_purge_dflt_routers(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001985{
1986 struct rt6_info *rt;
Thomas Grafc71099a2006-08-04 23:20:06 -07001987 struct fib6_table *table;
1988
1989 /* NOTE: Keep consistent with rt6_get_dflt_router */
Daniel Lezcano7b4da532008-03-04 13:47:14 -08001990 table = fib6_get_table(net, RT6_TABLE_DFLT);
David S. Miller38308472011-12-03 18:02:47 -05001991 if (!table)
Thomas Grafc71099a2006-08-04 23:20:06 -07001992 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001993
1994restart:
Thomas Grafc71099a2006-08-04 23:20:06 -07001995 read_lock_bh(&table->tb6_lock);
Changli Gaod8d1f302010-06-10 23:31:35 -07001996 for (rt = table->tb6_root.leaf; rt; rt = rt->dst.rt6_next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997 if (rt->rt6i_flags & (RTF_DEFAULT | RTF_ADDRCONF)) {
Changli Gaod8d1f302010-06-10 23:31:35 -07001998 dst_hold(&rt->dst);
Thomas Grafc71099a2006-08-04 23:20:06 -07001999 read_unlock_bh(&table->tb6_lock);
Thomas Grafe0a1ad732006-08-22 00:00:21 -07002000 ip6_del_rt(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002001 goto restart;
2002 }
2003 }
Thomas Grafc71099a2006-08-04 23:20:06 -07002004 read_unlock_bh(&table->tb6_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002005}
2006
Daniel Lezcano55786892008-03-04 13:47:47 -08002007static void rtmsg_to_fib6_config(struct net *net,
2008 struct in6_rtmsg *rtmsg,
Thomas Graf86872cb2006-08-22 00:01:08 -07002009 struct fib6_config *cfg)
2010{
2011 memset(cfg, 0, sizeof(*cfg));
2012
2013 cfg->fc_table = RT6_TABLE_MAIN;
2014 cfg->fc_ifindex = rtmsg->rtmsg_ifindex;
2015 cfg->fc_metric = rtmsg->rtmsg_metric;
2016 cfg->fc_expires = rtmsg->rtmsg_info;
2017 cfg->fc_dst_len = rtmsg->rtmsg_dst_len;
2018 cfg->fc_src_len = rtmsg->rtmsg_src_len;
2019 cfg->fc_flags = rtmsg->rtmsg_flags;
2020
Daniel Lezcano55786892008-03-04 13:47:47 -08002021 cfg->fc_nlinfo.nl_net = net;
Benjamin Theryf1243c22008-02-26 18:10:03 -08002022
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00002023 cfg->fc_dst = rtmsg->rtmsg_dst;
2024 cfg->fc_src = rtmsg->rtmsg_src;
2025 cfg->fc_gateway = rtmsg->rtmsg_gateway;
Thomas Graf86872cb2006-08-22 00:01:08 -07002026}
2027
Daniel Lezcano55786892008-03-04 13:47:47 -08002028int ipv6_route_ioctl(struct net *net, unsigned int cmd, void __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002029{
Thomas Graf86872cb2006-08-22 00:01:08 -07002030 struct fib6_config cfg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002031 struct in6_rtmsg rtmsg;
2032 int err;
2033
2034 switch(cmd) {
2035 case SIOCADDRT: /* Add a route */
2036 case SIOCDELRT: /* Delete a route */
Eric W. Biedermanaf31f412012-11-16 03:03:06 +00002037 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002038 return -EPERM;
2039 err = copy_from_user(&rtmsg, arg,
2040 sizeof(struct in6_rtmsg));
2041 if (err)
2042 return -EFAULT;
Thomas Graf86872cb2006-08-22 00:01:08 -07002043
Daniel Lezcano55786892008-03-04 13:47:47 -08002044 rtmsg_to_fib6_config(net, &rtmsg, &cfg);
Thomas Graf86872cb2006-08-22 00:01:08 -07002045
Linus Torvalds1da177e2005-04-16 15:20:36 -07002046 rtnl_lock();
2047 switch (cmd) {
2048 case SIOCADDRT:
Thomas Graf86872cb2006-08-22 00:01:08 -07002049 err = ip6_route_add(&cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050 break;
2051 case SIOCDELRT:
Thomas Graf86872cb2006-08-22 00:01:08 -07002052 err = ip6_route_del(&cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002053 break;
2054 default:
2055 err = -EINVAL;
2056 }
2057 rtnl_unlock();
2058
2059 return err;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07002060 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061
2062 return -EINVAL;
2063}
2064
2065/*
2066 * Drop the packet on the floor
2067 */
2068
Brian Haleyd5fdd6b2009-06-23 04:31:07 -07002069static int ip6_pkt_drop(struct sk_buff *skb, u8 code, int ipstats_mib_noroutes)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002070{
YOSHIFUJI Hideaki612f09e2007-04-13 16:18:02 -07002071 int type;
Eric Dumazetadf30902009-06-02 05:19:30 +00002072 struct dst_entry *dst = skb_dst(skb);
YOSHIFUJI Hideaki612f09e2007-04-13 16:18:02 -07002073 switch (ipstats_mib_noroutes) {
2074 case IPSTATS_MIB_INNOROUTES:
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -07002075 type = ipv6_addr_type(&ipv6_hdr(skb)->daddr);
Ulrich Weber45bb0062010-02-25 23:28:58 +00002076 if (type == IPV6_ADDR_ANY) {
Denis V. Lunev3bd653c2008-10-08 10:54:51 -07002077 IP6_INC_STATS(dev_net(dst->dev), ip6_dst_idev(dst),
2078 IPSTATS_MIB_INADDRERRORS);
YOSHIFUJI Hideaki612f09e2007-04-13 16:18:02 -07002079 break;
2080 }
2081 /* FALLTHROUGH */
2082 case IPSTATS_MIB_OUTNOROUTES:
Denis V. Lunev3bd653c2008-10-08 10:54:51 -07002083 IP6_INC_STATS(dev_net(dst->dev), ip6_dst_idev(dst),
2084 ipstats_mib_noroutes);
YOSHIFUJI Hideaki612f09e2007-04-13 16:18:02 -07002085 break;
2086 }
Alexey Dobriyan3ffe5332010-02-18 08:25:24 +00002087 icmpv6_send(skb, ICMPV6_DEST_UNREACH, code, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002088 kfree_skb(skb);
2089 return 0;
2090}
2091
Thomas Graf9ce8ade2006-10-18 20:46:54 -07002092static int ip6_pkt_discard(struct sk_buff *skb)
2093{
YOSHIFUJI Hideaki612f09e2007-04-13 16:18:02 -07002094 return ip6_pkt_drop(skb, ICMPV6_NOROUTE, IPSTATS_MIB_INNOROUTES);
Thomas Graf9ce8ade2006-10-18 20:46:54 -07002095}
2096
Arnaldo Carvalho de Melo20380732005-08-16 02:18:02 -03002097static int ip6_pkt_discard_out(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002098{
Eric Dumazetadf30902009-06-02 05:19:30 +00002099 skb->dev = skb_dst(skb)->dev;
YOSHIFUJI Hideaki612f09e2007-04-13 16:18:02 -07002100 return ip6_pkt_drop(skb, ICMPV6_NOROUTE, IPSTATS_MIB_OUTNOROUTES);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002101}
2102
David S. Miller6723ab52006-10-18 21:20:57 -07002103#ifdef CONFIG_IPV6_MULTIPLE_TABLES
2104
Thomas Graf9ce8ade2006-10-18 20:46:54 -07002105static int ip6_pkt_prohibit(struct sk_buff *skb)
2106{
YOSHIFUJI Hideaki612f09e2007-04-13 16:18:02 -07002107 return ip6_pkt_drop(skb, ICMPV6_ADM_PROHIBITED, IPSTATS_MIB_INNOROUTES);
Thomas Graf9ce8ade2006-10-18 20:46:54 -07002108}
2109
2110static int ip6_pkt_prohibit_out(struct sk_buff *skb)
2111{
Eric Dumazetadf30902009-06-02 05:19:30 +00002112 skb->dev = skb_dst(skb)->dev;
YOSHIFUJI Hideaki612f09e2007-04-13 16:18:02 -07002113 return ip6_pkt_drop(skb, ICMPV6_ADM_PROHIBITED, IPSTATS_MIB_OUTNOROUTES);
Thomas Graf9ce8ade2006-10-18 20:46:54 -07002114}
2115
David S. Miller6723ab52006-10-18 21:20:57 -07002116#endif
2117
Linus Torvalds1da177e2005-04-16 15:20:36 -07002118/*
2119 * Allocate a dst for local (unicast / anycast) address.
2120 */
2121
2122struct rt6_info *addrconf_dst_alloc(struct inet6_dev *idev,
2123 const struct in6_addr *addr,
David S. Miller8f031512011-12-06 16:48:14 -05002124 bool anycast)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002125{
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09002126 struct net *net = dev_net(idev->dev);
David S. Miller8b96d222012-06-11 02:01:56 -07002127 struct rt6_info *rt = ip6_dst_alloc(net, net->loopback_dev, 0, NULL);
David S. Millerf83c7792011-12-28 15:41:23 -05002128 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002129
David S. Miller38308472011-12-03 18:02:47 -05002130 if (!rt) {
Joe Perchesf3213832012-05-15 14:11:53 +00002131 net_warn_ratelimited("Maximum number of routes reached, consider increasing route/max_size\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132 return ERR_PTR(-ENOMEM);
Ben Greear40385652010-11-08 12:33:48 +00002133 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134
Linus Torvalds1da177e2005-04-16 15:20:36 -07002135 in6_dev_hold(idev);
2136
David S. Miller11d53b42011-06-24 15:23:34 -07002137 rt->dst.flags |= DST_HOST;
Changli Gaod8d1f302010-06-10 23:31:35 -07002138 rt->dst.input = ip6_input;
2139 rt->dst.output = ip6_output;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002140 rt->rt6i_idev = idev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002141
2142 rt->rt6i_flags = RTF_UP | RTF_NONEXTHOP;
YOSHIFUJI Hideaki58c4fb82005-12-21 22:56:42 +09002143 if (anycast)
2144 rt->rt6i_flags |= RTF_ANYCAST;
2145 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002146 rt->rt6i_flags |= RTF_LOCAL;
David S. Miller8ade06c2011-12-29 18:51:57 -05002147 err = rt6_bind_neighbour(rt, rt->dst.dev);
David S. Millerf83c7792011-12-28 15:41:23 -05002148 if (err) {
Changli Gaod8d1f302010-06-10 23:31:35 -07002149 dst_free(&rt->dst);
David S. Millerf83c7792011-12-28 15:41:23 -05002150 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002151 }
2152
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00002153 rt->rt6i_dst.addr = *addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002154 rt->rt6i_dst.plen = 128;
Daniel Lezcano55786892008-03-04 13:47:47 -08002155 rt->rt6i_table = fib6_get_table(net, RT6_TABLE_LOCAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002156
Changli Gaod8d1f302010-06-10 23:31:35 -07002157 atomic_set(&rt->dst.__refcnt, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002158
2159 return rt;
2160}
2161
Daniel Walterc3968a82011-04-13 21:10:57 +00002162int ip6_route_get_saddr(struct net *net,
2163 struct rt6_info *rt,
Eric Dumazetb71d1d42011-04-22 04:53:02 +00002164 const struct in6_addr *daddr,
Daniel Walterc3968a82011-04-13 21:10:57 +00002165 unsigned int prefs,
2166 struct in6_addr *saddr)
2167{
2168 struct inet6_dev *idev = ip6_dst_idev((struct dst_entry*)rt);
2169 int err = 0;
2170 if (rt->rt6i_prefsrc.plen)
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00002171 *saddr = rt->rt6i_prefsrc.addr;
Daniel Walterc3968a82011-04-13 21:10:57 +00002172 else
2173 err = ipv6_dev_get_saddr(net, idev ? idev->dev : NULL,
2174 daddr, prefs, saddr);
2175 return err;
2176}
2177
2178/* remove deleted ip from prefsrc entries */
2179struct arg_dev_net_ip {
2180 struct net_device *dev;
2181 struct net *net;
2182 struct in6_addr *addr;
2183};
2184
2185static int fib6_remove_prefsrc(struct rt6_info *rt, void *arg)
2186{
2187 struct net_device *dev = ((struct arg_dev_net_ip *)arg)->dev;
2188 struct net *net = ((struct arg_dev_net_ip *)arg)->net;
2189 struct in6_addr *addr = ((struct arg_dev_net_ip *)arg)->addr;
2190
David S. Millerd1918542011-12-28 20:19:20 -05002191 if (((void *)rt->dst.dev == dev || !dev) &&
Daniel Walterc3968a82011-04-13 21:10:57 +00002192 rt != net->ipv6.ip6_null_entry &&
2193 ipv6_addr_equal(addr, &rt->rt6i_prefsrc.addr)) {
2194 /* remove prefsrc entry */
2195 rt->rt6i_prefsrc.plen = 0;
2196 }
2197 return 0;
2198}
2199
2200void rt6_remove_prefsrc(struct inet6_ifaddr *ifp)
2201{
2202 struct net *net = dev_net(ifp->idev->dev);
2203 struct arg_dev_net_ip adni = {
2204 .dev = ifp->idev->dev,
2205 .net = net,
2206 .addr = &ifp->addr,
2207 };
2208 fib6_clean_all(net, fib6_remove_prefsrc, 0, &adni);
2209}
2210
Daniel Lezcano8ed67782008-03-04 13:48:30 -08002211struct arg_dev_net {
2212 struct net_device *dev;
2213 struct net *net;
2214};
2215
Linus Torvalds1da177e2005-04-16 15:20:36 -07002216static int fib6_ifdown(struct rt6_info *rt, void *arg)
2217{
stephen hemmingerbc3ef662010-12-16 17:42:40 +00002218 const struct arg_dev_net *adn = arg;
2219 const struct net_device *dev = adn->dev;
Daniel Lezcano8ed67782008-03-04 13:48:30 -08002220
David S. Millerd1918542011-12-28 20:19:20 -05002221 if ((rt->dst.dev == dev || !dev) &&
David S. Millerc159d302011-12-26 15:24:36 -05002222 rt != adn->net->ipv6.ip6_null_entry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002223 return -1;
David S. Millerc159d302011-12-26 15:24:36 -05002224
Linus Torvalds1da177e2005-04-16 15:20:36 -07002225 return 0;
2226}
2227
Daniel Lezcanof3db4852008-03-03 23:27:06 -08002228void rt6_ifdown(struct net *net, struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002229{
Daniel Lezcano8ed67782008-03-04 13:48:30 -08002230 struct arg_dev_net adn = {
2231 .dev = dev,
2232 .net = net,
2233 };
2234
2235 fib6_clean_all(net, fib6_ifdown, 0, &adn);
David S. Miller1e493d12008-09-10 17:27:15 -07002236 icmp6_clean_all(fib6_ifdown, &adn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002237}
2238
Eric Dumazet95c96172012-04-15 05:58:06 +00002239struct rt6_mtu_change_arg {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240 struct net_device *dev;
Eric Dumazet95c96172012-04-15 05:58:06 +00002241 unsigned int mtu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002242};
2243
2244static int rt6_mtu_change_route(struct rt6_info *rt, void *p_arg)
2245{
2246 struct rt6_mtu_change_arg *arg = (struct rt6_mtu_change_arg *) p_arg;
2247 struct inet6_dev *idev;
2248
2249 /* In IPv6 pmtu discovery is not optional,
2250 so that RTAX_MTU lock cannot disable it.
2251 We still use this lock to block changes
2252 caused by addrconf/ndisc.
2253 */
2254
2255 idev = __in6_dev_get(arg->dev);
David S. Miller38308472011-12-03 18:02:47 -05002256 if (!idev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002257 return 0;
2258
2259 /* For administrative MTU increase, there is no way to discover
2260 IPv6 PMTU increase, so PMTU increase should be updated here.
2261 Since RFC 1981 doesn't include administrative MTU increase
2262 update PMTU increase is a MUST. (i.e. jumbo frame)
2263 */
2264 /*
2265 If new MTU is less than route PMTU, this new MTU will be the
2266 lowest MTU in the path, update the route PMTU to reflect PMTU
2267 decreases; if new MTU is greater than route PMTU, and the
2268 old MTU is the lowest MTU in the path, update the route PMTU
2269 to reflect the increase. In this case if the other nodes' MTU
2270 also have the lowest MTU, TOO BIG MESSAGE will be lead to
2271 PMTU discouvery.
2272 */
David S. Millerd1918542011-12-28 20:19:20 -05002273 if (rt->dst.dev == arg->dev &&
Changli Gaod8d1f302010-06-10 23:31:35 -07002274 !dst_metric_locked(&rt->dst, RTAX_MTU) &&
2275 (dst_mtu(&rt->dst) >= arg->mtu ||
2276 (dst_mtu(&rt->dst) < arg->mtu &&
2277 dst_mtu(&rt->dst) == idev->cnf.mtu6))) {
David S. Millerdefb3512010-12-08 21:16:57 -08002278 dst_metric_set(&rt->dst, RTAX_MTU, arg->mtu);
Simon Arlott566cfd82007-07-26 00:09:55 -07002279 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002280 return 0;
2281}
2282
Eric Dumazet95c96172012-04-15 05:58:06 +00002283void rt6_mtu_change(struct net_device *dev, unsigned int mtu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002284{
Thomas Grafc71099a2006-08-04 23:20:06 -07002285 struct rt6_mtu_change_arg arg = {
2286 .dev = dev,
2287 .mtu = mtu,
2288 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002289
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09002290 fib6_clean_all(dev_net(dev), rt6_mtu_change_route, 0, &arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002291}
2292
Patrick McHardyef7c79e2007-06-05 12:38:30 -07002293static const struct nla_policy rtm_ipv6_policy[RTA_MAX+1] = {
Thomas Graf5176f912006-08-26 20:13:18 -07002294 [RTA_GATEWAY] = { .len = sizeof(struct in6_addr) },
Thomas Graf86872cb2006-08-22 00:01:08 -07002295 [RTA_OIF] = { .type = NLA_U32 },
Thomas Grafab364a62006-08-22 00:01:47 -07002296 [RTA_IIF] = { .type = NLA_U32 },
Thomas Graf86872cb2006-08-22 00:01:08 -07002297 [RTA_PRIORITY] = { .type = NLA_U32 },
2298 [RTA_METRICS] = { .type = NLA_NESTED },
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00002299 [RTA_MULTIPATH] = { .len = sizeof(struct rtnexthop) },
Thomas Graf86872cb2006-08-22 00:01:08 -07002300};
2301
2302static int rtm_to_fib6_config(struct sk_buff *skb, struct nlmsghdr *nlh,
2303 struct fib6_config *cfg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002304{
Thomas Graf86872cb2006-08-22 00:01:08 -07002305 struct rtmsg *rtm;
2306 struct nlattr *tb[RTA_MAX+1];
2307 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002308
Thomas Graf86872cb2006-08-22 00:01:08 -07002309 err = nlmsg_parse(nlh, sizeof(*rtm), tb, RTA_MAX, rtm_ipv6_policy);
2310 if (err < 0)
2311 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002312
Thomas Graf86872cb2006-08-22 00:01:08 -07002313 err = -EINVAL;
2314 rtm = nlmsg_data(nlh);
2315 memset(cfg, 0, sizeof(*cfg));
2316
2317 cfg->fc_table = rtm->rtm_table;
2318 cfg->fc_dst_len = rtm->rtm_dst_len;
2319 cfg->fc_src_len = rtm->rtm_src_len;
2320 cfg->fc_flags = RTF_UP;
2321 cfg->fc_protocol = rtm->rtm_protocol;
Nicolas Dichtelef2c7d72012-09-05 02:12:42 +00002322 cfg->fc_type = rtm->rtm_type;
Thomas Graf86872cb2006-08-22 00:01:08 -07002323
Nicolas Dichtelef2c7d72012-09-05 02:12:42 +00002324 if (rtm->rtm_type == RTN_UNREACHABLE ||
2325 rtm->rtm_type == RTN_BLACKHOLE ||
Nicolas Dichtelb4949ab2012-09-06 05:53:35 +00002326 rtm->rtm_type == RTN_PROHIBIT ||
2327 rtm->rtm_type == RTN_THROW)
Thomas Graf86872cb2006-08-22 00:01:08 -07002328 cfg->fc_flags |= RTF_REJECT;
2329
Maciej Żenczykowskiab79ad12010-09-27 00:07:02 +00002330 if (rtm->rtm_type == RTN_LOCAL)
2331 cfg->fc_flags |= RTF_LOCAL;
2332
Eric W. Biederman15e47302012-09-07 20:12:54 +00002333 cfg->fc_nlinfo.portid = NETLINK_CB(skb).portid;
Thomas Graf86872cb2006-08-22 00:01:08 -07002334 cfg->fc_nlinfo.nlh = nlh;
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09002335 cfg->fc_nlinfo.nl_net = sock_net(skb->sk);
Thomas Graf86872cb2006-08-22 00:01:08 -07002336
2337 if (tb[RTA_GATEWAY]) {
2338 nla_memcpy(&cfg->fc_gateway, tb[RTA_GATEWAY], 16);
2339 cfg->fc_flags |= RTF_GATEWAY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002340 }
Thomas Graf86872cb2006-08-22 00:01:08 -07002341
2342 if (tb[RTA_DST]) {
2343 int plen = (rtm->rtm_dst_len + 7) >> 3;
2344
2345 if (nla_len(tb[RTA_DST]) < plen)
2346 goto errout;
2347
2348 nla_memcpy(&cfg->fc_dst, tb[RTA_DST], plen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002349 }
Thomas Graf86872cb2006-08-22 00:01:08 -07002350
2351 if (tb[RTA_SRC]) {
2352 int plen = (rtm->rtm_src_len + 7) >> 3;
2353
2354 if (nla_len(tb[RTA_SRC]) < plen)
2355 goto errout;
2356
2357 nla_memcpy(&cfg->fc_src, tb[RTA_SRC], plen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002358 }
Thomas Graf86872cb2006-08-22 00:01:08 -07002359
Daniel Walterc3968a82011-04-13 21:10:57 +00002360 if (tb[RTA_PREFSRC])
2361 nla_memcpy(&cfg->fc_prefsrc, tb[RTA_PREFSRC], 16);
2362
Thomas Graf86872cb2006-08-22 00:01:08 -07002363 if (tb[RTA_OIF])
2364 cfg->fc_ifindex = nla_get_u32(tb[RTA_OIF]);
2365
2366 if (tb[RTA_PRIORITY])
2367 cfg->fc_metric = nla_get_u32(tb[RTA_PRIORITY]);
2368
2369 if (tb[RTA_METRICS]) {
2370 cfg->fc_mx = nla_data(tb[RTA_METRICS]);
2371 cfg->fc_mx_len = nla_len(tb[RTA_METRICS]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002372 }
Thomas Graf86872cb2006-08-22 00:01:08 -07002373
2374 if (tb[RTA_TABLE])
2375 cfg->fc_table = nla_get_u32(tb[RTA_TABLE]);
2376
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00002377 if (tb[RTA_MULTIPATH]) {
2378 cfg->fc_mp = nla_data(tb[RTA_MULTIPATH]);
2379 cfg->fc_mp_len = nla_len(tb[RTA_MULTIPATH]);
2380 }
2381
Thomas Graf86872cb2006-08-22 00:01:08 -07002382 err = 0;
2383errout:
2384 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002385}
2386
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00002387static int ip6_route_multipath(struct fib6_config *cfg, int add)
2388{
2389 struct fib6_config r_cfg;
2390 struct rtnexthop *rtnh;
2391 int remaining;
2392 int attrlen;
2393 int err = 0, last_err = 0;
2394
2395beginning:
2396 rtnh = (struct rtnexthop *)cfg->fc_mp;
2397 remaining = cfg->fc_mp_len;
2398
2399 /* Parse a Multipath Entry */
2400 while (rtnh_ok(rtnh, remaining)) {
2401 memcpy(&r_cfg, cfg, sizeof(*cfg));
2402 if (rtnh->rtnh_ifindex)
2403 r_cfg.fc_ifindex = rtnh->rtnh_ifindex;
2404
2405 attrlen = rtnh_attrlen(rtnh);
2406 if (attrlen > 0) {
2407 struct nlattr *nla, *attrs = rtnh_attrs(rtnh);
2408
2409 nla = nla_find(attrs, attrlen, RTA_GATEWAY);
2410 if (nla) {
2411 nla_memcpy(&r_cfg.fc_gateway, nla, 16);
2412 r_cfg.fc_flags |= RTF_GATEWAY;
2413 }
2414 }
2415 err = add ? ip6_route_add(&r_cfg) : ip6_route_del(&r_cfg);
2416 if (err) {
2417 last_err = err;
2418 /* If we are trying to remove a route, do not stop the
2419 * loop when ip6_route_del() fails (because next hop is
2420 * already gone), we should try to remove all next hops.
2421 */
2422 if (add) {
2423 /* If add fails, we should try to delete all
2424 * next hops that have been already added.
2425 */
2426 add = 0;
2427 goto beginning;
2428 }
2429 }
Nicolas Dichtel1a724182012-11-01 22:58:22 +00002430 /* Because each route is added like a single route we remove
2431 * this flag after the first nexthop (if there is a collision,
2432 * we have already fail to add the first nexthop:
2433 * fib6_add_rt2node() has reject it).
2434 */
2435 cfg->fc_nlinfo.nlh->nlmsg_flags &= ~NLM_F_EXCL;
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00002436 rtnh = rtnh_next(rtnh, &remaining);
2437 }
2438
2439 return last_err;
2440}
2441
Thomas Grafc127ea22007-03-22 11:58:32 -07002442static int inet6_rtm_delroute(struct sk_buff *skb, struct nlmsghdr* nlh, void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002443{
Thomas Graf86872cb2006-08-22 00:01:08 -07002444 struct fib6_config cfg;
2445 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002446
Thomas Graf86872cb2006-08-22 00:01:08 -07002447 err = rtm_to_fib6_config(skb, nlh, &cfg);
2448 if (err < 0)
2449 return err;
2450
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00002451 if (cfg.fc_mp)
2452 return ip6_route_multipath(&cfg, 0);
2453 else
2454 return ip6_route_del(&cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002455}
2456
Thomas Grafc127ea22007-03-22 11:58:32 -07002457static int inet6_rtm_newroute(struct sk_buff *skb, struct nlmsghdr* nlh, void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002458{
Thomas Graf86872cb2006-08-22 00:01:08 -07002459 struct fib6_config cfg;
2460 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002461
Thomas Graf86872cb2006-08-22 00:01:08 -07002462 err = rtm_to_fib6_config(skb, nlh, &cfg);
2463 if (err < 0)
2464 return err;
2465
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00002466 if (cfg.fc_mp)
2467 return ip6_route_multipath(&cfg, 1);
2468 else
2469 return ip6_route_add(&cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002470}
2471
Thomas Graf339bf982006-11-10 14:10:15 -08002472static inline size_t rt6_nlmsg_size(void)
2473{
2474 return NLMSG_ALIGN(sizeof(struct rtmsg))
2475 + nla_total_size(16) /* RTA_SRC */
2476 + nla_total_size(16) /* RTA_DST */
2477 + nla_total_size(16) /* RTA_GATEWAY */
2478 + nla_total_size(16) /* RTA_PREFSRC */
2479 + nla_total_size(4) /* RTA_TABLE */
2480 + nla_total_size(4) /* RTA_IIF */
2481 + nla_total_size(4) /* RTA_OIF */
2482 + nla_total_size(4) /* RTA_PRIORITY */
Noriaki TAKAMIYA6a2b9ce2007-01-23 22:09:41 -08002483 + RTAX_MAX * nla_total_size(4) /* RTA_METRICS */
Thomas Graf339bf982006-11-10 14:10:15 -08002484 + nla_total_size(sizeof(struct rta_cacheinfo));
2485}
2486
Brian Haley191cd582008-08-14 15:33:21 -07002487static int rt6_fill_node(struct net *net,
2488 struct sk_buff *skb, struct rt6_info *rt,
Jamal Hadi Salim0d51aa82005-06-21 13:51:04 -07002489 struct in6_addr *dst, struct in6_addr *src,
Eric W. Biederman15e47302012-09-07 20:12:54 +00002490 int iif, int type, u32 portid, u32 seq,
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09002491 int prefix, int nowait, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002492{
2493 struct rtmsg *rtm;
Thomas Graf2d7202b2006-08-22 00:01:27 -07002494 struct nlmsghdr *nlh;
Thomas Grafe3703b32006-11-27 09:27:07 -08002495 long expires;
Patrick McHardy9e762a42006-08-10 23:09:48 -07002496 u32 table;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002497
2498 if (prefix) { /* user wants prefix routes only */
2499 if (!(rt->rt6i_flags & RTF_PREFIX_RT)) {
2500 /* success since this is not a prefix route */
2501 return 1;
2502 }
2503 }
2504
Eric W. Biederman15e47302012-09-07 20:12:54 +00002505 nlh = nlmsg_put(skb, portid, seq, type, sizeof(*rtm), flags);
David S. Miller38308472011-12-03 18:02:47 -05002506 if (!nlh)
Patrick McHardy26932562007-01-31 23:16:40 -08002507 return -EMSGSIZE;
Thomas Graf2d7202b2006-08-22 00:01:27 -07002508
2509 rtm = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002510 rtm->rtm_family = AF_INET6;
2511 rtm->rtm_dst_len = rt->rt6i_dst.plen;
2512 rtm->rtm_src_len = rt->rt6i_src.plen;
2513 rtm->rtm_tos = 0;
Thomas Grafc71099a2006-08-04 23:20:06 -07002514 if (rt->rt6i_table)
Patrick McHardy9e762a42006-08-10 23:09:48 -07002515 table = rt->rt6i_table->tb6_id;
Thomas Grafc71099a2006-08-04 23:20:06 -07002516 else
Patrick McHardy9e762a42006-08-10 23:09:48 -07002517 table = RT6_TABLE_UNSPEC;
2518 rtm->rtm_table = table;
David S. Millerc78679e2012-04-01 20:27:33 -04002519 if (nla_put_u32(skb, RTA_TABLE, table))
2520 goto nla_put_failure;
Nicolas Dichtelef2c7d72012-09-05 02:12:42 +00002521 if (rt->rt6i_flags & RTF_REJECT) {
2522 switch (rt->dst.error) {
2523 case -EINVAL:
2524 rtm->rtm_type = RTN_BLACKHOLE;
2525 break;
2526 case -EACCES:
2527 rtm->rtm_type = RTN_PROHIBIT;
2528 break;
Nicolas Dichtelb4949ab2012-09-06 05:53:35 +00002529 case -EAGAIN:
2530 rtm->rtm_type = RTN_THROW;
2531 break;
Nicolas Dichtelef2c7d72012-09-05 02:12:42 +00002532 default:
2533 rtm->rtm_type = RTN_UNREACHABLE;
2534 break;
2535 }
2536 }
David S. Miller38308472011-12-03 18:02:47 -05002537 else if (rt->rt6i_flags & RTF_LOCAL)
Maciej Żenczykowskiab79ad12010-09-27 00:07:02 +00002538 rtm->rtm_type = RTN_LOCAL;
David S. Millerd1918542011-12-28 20:19:20 -05002539 else if (rt->dst.dev && (rt->dst.dev->flags & IFF_LOOPBACK))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002540 rtm->rtm_type = RTN_LOCAL;
2541 else
2542 rtm->rtm_type = RTN_UNICAST;
2543 rtm->rtm_flags = 0;
2544 rtm->rtm_scope = RT_SCOPE_UNIVERSE;
2545 rtm->rtm_protocol = rt->rt6i_protocol;
David S. Miller38308472011-12-03 18:02:47 -05002546 if (rt->rt6i_flags & RTF_DYNAMIC)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002547 rtm->rtm_protocol = RTPROT_REDIRECT;
Denis Ovsienkof0396f602012-07-10 04:45:50 +00002548 else if (rt->rt6i_flags & RTF_ADDRCONF) {
2549 if (rt->rt6i_flags & (RTF_DEFAULT | RTF_ROUTEINFO))
2550 rtm->rtm_protocol = RTPROT_RA;
2551 else
2552 rtm->rtm_protocol = RTPROT_KERNEL;
2553 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002554
David S. Miller38308472011-12-03 18:02:47 -05002555 if (rt->rt6i_flags & RTF_CACHE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002556 rtm->rtm_flags |= RTM_F_CLONED;
2557
2558 if (dst) {
David S. Millerc78679e2012-04-01 20:27:33 -04002559 if (nla_put(skb, RTA_DST, 16, dst))
2560 goto nla_put_failure;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002561 rtm->rtm_dst_len = 128;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002562 } else if (rtm->rtm_dst_len)
David S. Millerc78679e2012-04-01 20:27:33 -04002563 if (nla_put(skb, RTA_DST, 16, &rt->rt6i_dst.addr))
2564 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002565#ifdef CONFIG_IPV6_SUBTREES
2566 if (src) {
David S. Millerc78679e2012-04-01 20:27:33 -04002567 if (nla_put(skb, RTA_SRC, 16, src))
2568 goto nla_put_failure;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002569 rtm->rtm_src_len = 128;
David S. Millerc78679e2012-04-01 20:27:33 -04002570 } else if (rtm->rtm_src_len &&
2571 nla_put(skb, RTA_SRC, 16, &rt->rt6i_src.addr))
2572 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002573#endif
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09002574 if (iif) {
2575#ifdef CONFIG_IPV6_MROUTE
2576 if (ipv6_addr_is_multicast(&rt->rt6i_dst.addr)) {
Benjamin Thery8229efd2008-12-10 16:30:15 -08002577 int err = ip6mr_get_route(net, skb, rtm, nowait);
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09002578 if (err <= 0) {
2579 if (!nowait) {
2580 if (err == 0)
2581 return 0;
2582 goto nla_put_failure;
2583 } else {
2584 if (err == -EMSGSIZE)
2585 goto nla_put_failure;
2586 }
2587 }
2588 } else
2589#endif
David S. Millerc78679e2012-04-01 20:27:33 -04002590 if (nla_put_u32(skb, RTA_IIF, iif))
2591 goto nla_put_failure;
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09002592 } else if (dst) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002593 struct in6_addr saddr_buf;
David S. Millerc78679e2012-04-01 20:27:33 -04002594 if (ip6_route_get_saddr(net, rt, dst, 0, &saddr_buf) == 0 &&
2595 nla_put(skb, RTA_PREFSRC, 16, &saddr_buf))
2596 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002597 }
Thomas Graf2d7202b2006-08-22 00:01:27 -07002598
Daniel Walterc3968a82011-04-13 21:10:57 +00002599 if (rt->rt6i_prefsrc.plen) {
2600 struct in6_addr saddr_buf;
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00002601 saddr_buf = rt->rt6i_prefsrc.addr;
David S. Millerc78679e2012-04-01 20:27:33 -04002602 if (nla_put(skb, RTA_PREFSRC, 16, &saddr_buf))
2603 goto nla_put_failure;
Daniel Walterc3968a82011-04-13 21:10:57 +00002604 }
2605
David S. Millerdefb3512010-12-08 21:16:57 -08002606 if (rtnetlink_put_metrics(skb, dst_metrics_ptr(&rt->dst)) < 0)
Thomas Graf2d7202b2006-08-22 00:01:27 -07002607 goto nla_put_failure;
2608
YOSHIFUJI Hideaki / 吉藤英明dd0cbf22013-01-17 12:53:15 +00002609 if (rt->rt6i_flags & RTF_GATEWAY) {
2610 if (nla_put(skb, RTA_GATEWAY, 16, &rt->rt6i_gateway) < 0)
Eric Dumazet94f826b2012-03-27 09:53:52 +00002611 goto nla_put_failure;
Eric Dumazet94f826b2012-03-27 09:53:52 +00002612 }
Thomas Graf2d7202b2006-08-22 00:01:27 -07002613
David S. Millerc78679e2012-04-01 20:27:33 -04002614 if (rt->dst.dev &&
2615 nla_put_u32(skb, RTA_OIF, rt->dst.dev->ifindex))
2616 goto nla_put_failure;
2617 if (nla_put_u32(skb, RTA_PRIORITY, rt->rt6i_metric))
2618 goto nla_put_failure;
Li Wei82539472012-07-29 16:01:30 +00002619
2620 expires = (rt->rt6i_flags & RTF_EXPIRES) ? rt->dst.expires - jiffies : 0;
YOSHIFUJI Hideaki69cdf8f2008-05-19 16:55:13 -07002621
David S. Miller87a50692012-07-10 05:06:14 -07002622 if (rtnl_put_cacheinfo(skb, &rt->dst, 0, expires, rt->dst.error) < 0)
Thomas Grafe3703b32006-11-27 09:27:07 -08002623 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002624
Thomas Graf2d7202b2006-08-22 00:01:27 -07002625 return nlmsg_end(skb, nlh);
2626
2627nla_put_failure:
Patrick McHardy26932562007-01-31 23:16:40 -08002628 nlmsg_cancel(skb, nlh);
2629 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002630}
2631
Patrick McHardy1b43af52006-08-10 23:11:17 -07002632int rt6_dump_route(struct rt6_info *rt, void *p_arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002633{
2634 struct rt6_rtnl_dump_arg *arg = (struct rt6_rtnl_dump_arg *) p_arg;
2635 int prefix;
2636
Thomas Graf2d7202b2006-08-22 00:01:27 -07002637 if (nlmsg_len(arg->cb->nlh) >= sizeof(struct rtmsg)) {
2638 struct rtmsg *rtm = nlmsg_data(arg->cb->nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002639 prefix = (rtm->rtm_flags & RTM_F_PREFIX) != 0;
2640 } else
2641 prefix = 0;
2642
Brian Haley191cd582008-08-14 15:33:21 -07002643 return rt6_fill_node(arg->net,
2644 arg->skb, rt, NULL, NULL, 0, RTM_NEWROUTE,
Eric W. Biederman15e47302012-09-07 20:12:54 +00002645 NETLINK_CB(arg->cb->skb).portid, arg->cb->nlh->nlmsg_seq,
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09002646 prefix, 0, NLM_F_MULTI);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002647}
2648
Thomas Grafc127ea22007-03-22 11:58:32 -07002649static int inet6_rtm_getroute(struct sk_buff *in_skb, struct nlmsghdr* nlh, void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002650{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09002651 struct net *net = sock_net(in_skb->sk);
Thomas Grafab364a62006-08-22 00:01:47 -07002652 struct nlattr *tb[RTA_MAX+1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002653 struct rt6_info *rt;
Thomas Grafab364a62006-08-22 00:01:47 -07002654 struct sk_buff *skb;
2655 struct rtmsg *rtm;
David S. Miller4c9483b2011-03-12 16:22:43 -05002656 struct flowi6 fl6;
Shmulik Ladkani72331bc2012-04-01 04:03:45 +00002657 int err, iif = 0, oif = 0;
Thomas Grafab364a62006-08-22 00:01:47 -07002658
2659 err = nlmsg_parse(nlh, sizeof(*rtm), tb, RTA_MAX, rtm_ipv6_policy);
2660 if (err < 0)
2661 goto errout;
2662
2663 err = -EINVAL;
David S. Miller4c9483b2011-03-12 16:22:43 -05002664 memset(&fl6, 0, sizeof(fl6));
Thomas Grafab364a62006-08-22 00:01:47 -07002665
2666 if (tb[RTA_SRC]) {
2667 if (nla_len(tb[RTA_SRC]) < sizeof(struct in6_addr))
2668 goto errout;
2669
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00002670 fl6.saddr = *(struct in6_addr *)nla_data(tb[RTA_SRC]);
Thomas Grafab364a62006-08-22 00:01:47 -07002671 }
2672
2673 if (tb[RTA_DST]) {
2674 if (nla_len(tb[RTA_DST]) < sizeof(struct in6_addr))
2675 goto errout;
2676
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00002677 fl6.daddr = *(struct in6_addr *)nla_data(tb[RTA_DST]);
Thomas Grafab364a62006-08-22 00:01:47 -07002678 }
2679
2680 if (tb[RTA_IIF])
2681 iif = nla_get_u32(tb[RTA_IIF]);
2682
2683 if (tb[RTA_OIF])
Shmulik Ladkani72331bc2012-04-01 04:03:45 +00002684 oif = nla_get_u32(tb[RTA_OIF]);
Thomas Grafab364a62006-08-22 00:01:47 -07002685
2686 if (iif) {
2687 struct net_device *dev;
Shmulik Ladkani72331bc2012-04-01 04:03:45 +00002688 int flags = 0;
2689
Daniel Lezcano55786892008-03-04 13:47:47 -08002690 dev = __dev_get_by_index(net, iif);
Thomas Grafab364a62006-08-22 00:01:47 -07002691 if (!dev) {
2692 err = -ENODEV;
2693 goto errout;
2694 }
Shmulik Ladkani72331bc2012-04-01 04:03:45 +00002695
2696 fl6.flowi6_iif = iif;
2697
2698 if (!ipv6_addr_any(&fl6.saddr))
2699 flags |= RT6_LOOKUP_F_HAS_SADDR;
2700
2701 rt = (struct rt6_info *)ip6_route_input_lookup(net, dev, &fl6,
2702 flags);
2703 } else {
2704 fl6.flowi6_oif = oif;
2705
2706 rt = (struct rt6_info *)ip6_route_output(net, NULL, &fl6);
Thomas Grafab364a62006-08-22 00:01:47 -07002707 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002708
2709 skb = alloc_skb(NLMSG_GOODSIZE, GFP_KERNEL);
David S. Miller38308472011-12-03 18:02:47 -05002710 if (!skb) {
Amerigo Wang94e187c2012-10-29 00:13:19 +00002711 ip6_rt_put(rt);
Thomas Grafab364a62006-08-22 00:01:47 -07002712 err = -ENOBUFS;
2713 goto errout;
2714 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002715
2716 /* Reserve room for dummy headers, this skb can pass
2717 through good chunk of routing engine.
2718 */
Arnaldo Carvalho de Melo459a98e2007-03-19 15:30:44 -07002719 skb_reset_mac_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002720 skb_reserve(skb, MAX_HEADER + sizeof(struct ipv6hdr));
2721
Changli Gaod8d1f302010-06-10 23:31:35 -07002722 skb_dst_set(skb, &rt->dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002723
David S. Miller4c9483b2011-03-12 16:22:43 -05002724 err = rt6_fill_node(net, skb, rt, &fl6.daddr, &fl6.saddr, iif,
Eric W. Biederman15e47302012-09-07 20:12:54 +00002725 RTM_NEWROUTE, NETLINK_CB(in_skb).portid,
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09002726 nlh->nlmsg_seq, 0, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002727 if (err < 0) {
Thomas Grafab364a62006-08-22 00:01:47 -07002728 kfree_skb(skb);
2729 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002730 }
2731
Eric W. Biederman15e47302012-09-07 20:12:54 +00002732 err = rtnl_unicast(skb, net, NETLINK_CB(in_skb).portid);
Thomas Grafab364a62006-08-22 00:01:47 -07002733errout:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002734 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002735}
2736
Thomas Graf86872cb2006-08-22 00:01:08 -07002737void inet6_rt_notify(int event, struct rt6_info *rt, struct nl_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002738{
2739 struct sk_buff *skb;
Daniel Lezcano55786892008-03-04 13:47:47 -08002740 struct net *net = info->nl_net;
Denis V. Lunev528c4ce2007-12-13 09:45:12 -08002741 u32 seq;
2742 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002743
Denis V. Lunev528c4ce2007-12-13 09:45:12 -08002744 err = -ENOBUFS;
David S. Miller38308472011-12-03 18:02:47 -05002745 seq = info->nlh ? info->nlh->nlmsg_seq : 0;
Thomas Graf86872cb2006-08-22 00:01:08 -07002746
Thomas Graf339bf982006-11-10 14:10:15 -08002747 skb = nlmsg_new(rt6_nlmsg_size(), gfp_any());
David S. Miller38308472011-12-03 18:02:47 -05002748 if (!skb)
Thomas Graf21713eb2006-08-15 00:35:24 -07002749 goto errout;
2750
Brian Haley191cd582008-08-14 15:33:21 -07002751 err = rt6_fill_node(net, skb, rt, NULL, NULL, 0,
Eric W. Biederman15e47302012-09-07 20:12:54 +00002752 event, info->portid, seq, 0, 0, 0);
Patrick McHardy26932562007-01-31 23:16:40 -08002753 if (err < 0) {
2754 /* -EMSGSIZE implies BUG in rt6_nlmsg_size() */
2755 WARN_ON(err == -EMSGSIZE);
2756 kfree_skb(skb);
2757 goto errout;
2758 }
Eric W. Biederman15e47302012-09-07 20:12:54 +00002759 rtnl_notify(skb, net, info->portid, RTNLGRP_IPV6_ROUTE,
Pablo Neira Ayuso1ce85fe2009-02-24 23:18:28 -08002760 info->nlh, gfp_any());
2761 return;
Thomas Graf21713eb2006-08-15 00:35:24 -07002762errout:
2763 if (err < 0)
Daniel Lezcano55786892008-03-04 13:47:47 -08002764 rtnl_set_sk_err(net, RTNLGRP_IPV6_ROUTE, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002765}
2766
Daniel Lezcano8ed67782008-03-04 13:48:30 -08002767static int ip6_route_dev_notify(struct notifier_block *this,
2768 unsigned long event, void *data)
2769{
2770 struct net_device *dev = (struct net_device *)data;
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09002771 struct net *net = dev_net(dev);
Daniel Lezcano8ed67782008-03-04 13:48:30 -08002772
2773 if (event == NETDEV_REGISTER && (dev->flags & IFF_LOOPBACK)) {
Changli Gaod8d1f302010-06-10 23:31:35 -07002774 net->ipv6.ip6_null_entry->dst.dev = dev;
Daniel Lezcano8ed67782008-03-04 13:48:30 -08002775 net->ipv6.ip6_null_entry->rt6i_idev = in6_dev_get(dev);
2776#ifdef CONFIG_IPV6_MULTIPLE_TABLES
Changli Gaod8d1f302010-06-10 23:31:35 -07002777 net->ipv6.ip6_prohibit_entry->dst.dev = dev;
Daniel Lezcano8ed67782008-03-04 13:48:30 -08002778 net->ipv6.ip6_prohibit_entry->rt6i_idev = in6_dev_get(dev);
Changli Gaod8d1f302010-06-10 23:31:35 -07002779 net->ipv6.ip6_blk_hole_entry->dst.dev = dev;
Daniel Lezcano8ed67782008-03-04 13:48:30 -08002780 net->ipv6.ip6_blk_hole_entry->rt6i_idev = in6_dev_get(dev);
2781#endif
2782 }
2783
2784 return NOTIFY_OK;
2785}
2786
Linus Torvalds1da177e2005-04-16 15:20:36 -07002787/*
2788 * /proc
2789 */
2790
2791#ifdef CONFIG_PROC_FS
2792
Linus Torvalds1da177e2005-04-16 15:20:36 -07002793struct rt6_proc_arg
2794{
2795 char *buffer;
2796 int offset;
2797 int length;
2798 int skip;
2799 int len;
2800};
2801
2802static int rt6_info_route(struct rt6_info *rt, void *p_arg)
2803{
Alexey Dobriyan33120b32007-11-06 05:27:11 -08002804 struct seq_file *m = p_arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002805
Harvey Harrison4b7a4272008-10-29 12:50:24 -07002806 seq_printf(m, "%pi6 %02x ", &rt->rt6i_dst.addr, rt->rt6i_dst.plen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002807
2808#ifdef CONFIG_IPV6_SUBTREES
Harvey Harrison4b7a4272008-10-29 12:50:24 -07002809 seq_printf(m, "%pi6 %02x ", &rt->rt6i_src.addr, rt->rt6i_src.plen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002810#else
Alexey Dobriyan33120b32007-11-06 05:27:11 -08002811 seq_puts(m, "00000000000000000000000000000000 00 ");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002812#endif
YOSHIFUJI Hideaki / 吉藤英明dd0cbf22013-01-17 12:53:15 +00002813 if (rt->rt6i_flags & RTF_GATEWAY) {
2814 seq_printf(m, "%pi6", &rt->rt6i_gateway);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002815 } else {
Alexey Dobriyan33120b32007-11-06 05:27:11 -08002816 seq_puts(m, "00000000000000000000000000000000");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002817 }
Alexey Dobriyan33120b32007-11-06 05:27:11 -08002818 seq_printf(m, " %08x %08x %08x %08x %8s\n",
Changli Gaod8d1f302010-06-10 23:31:35 -07002819 rt->rt6i_metric, atomic_read(&rt->dst.__refcnt),
2820 rt->dst.__use, rt->rt6i_flags,
David S. Millerd1918542011-12-28 20:19:20 -05002821 rt->dst.dev ? rt->dst.dev->name : "");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002822 return 0;
2823}
2824
Alexey Dobriyan33120b32007-11-06 05:27:11 -08002825static int ipv6_route_show(struct seq_file *m, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002826{
Daniel Lezcanof3db4852008-03-03 23:27:06 -08002827 struct net *net = (struct net *)m->private;
Josh Hunt32b293a2011-12-28 13:23:07 +00002828 fib6_clean_all_ro(net, rt6_info_route, 0, m);
Alexey Dobriyan33120b32007-11-06 05:27:11 -08002829 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002830}
2831
Alexey Dobriyan33120b32007-11-06 05:27:11 -08002832static int ipv6_route_open(struct inode *inode, struct file *file)
2833{
Pavel Emelyanovde05c552008-07-18 04:07:21 -07002834 return single_open_net(inode, file, ipv6_route_show);
Daniel Lezcanof3db4852008-03-03 23:27:06 -08002835}
2836
Alexey Dobriyan33120b32007-11-06 05:27:11 -08002837static const struct file_operations ipv6_route_proc_fops = {
2838 .owner = THIS_MODULE,
2839 .open = ipv6_route_open,
2840 .read = seq_read,
2841 .llseek = seq_lseek,
Pavel Emelyanovb6fcbdb2008-07-18 04:07:44 -07002842 .release = single_release_net,
Alexey Dobriyan33120b32007-11-06 05:27:11 -08002843};
2844
Linus Torvalds1da177e2005-04-16 15:20:36 -07002845static int rt6_stats_seq_show(struct seq_file *seq, void *v)
2846{
Daniel Lezcano69ddb802008-03-04 13:46:23 -08002847 struct net *net = (struct net *)seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002848 seq_printf(seq, "%04x %04x %04x %04x %04x %04x %04x\n",
Daniel Lezcano69ddb802008-03-04 13:46:23 -08002849 net->ipv6.rt6_stats->fib_nodes,
2850 net->ipv6.rt6_stats->fib_route_nodes,
2851 net->ipv6.rt6_stats->fib_rt_alloc,
2852 net->ipv6.rt6_stats->fib_rt_entries,
2853 net->ipv6.rt6_stats->fib_rt_cache,
Eric Dumazetfc66f952010-10-08 06:37:34 +00002854 dst_entries_get_slow(&net->ipv6.ip6_dst_ops),
Daniel Lezcano69ddb802008-03-04 13:46:23 -08002855 net->ipv6.rt6_stats->fib_discarded_routes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002856
2857 return 0;
2858}
2859
2860static int rt6_stats_seq_open(struct inode *inode, struct file *file)
2861{
Pavel Emelyanovde05c552008-07-18 04:07:21 -07002862 return single_open_net(inode, file, rt6_stats_seq_show);
Daniel Lezcano69ddb802008-03-04 13:46:23 -08002863}
2864
Arjan van de Ven9a321442007-02-12 00:55:35 -08002865static const struct file_operations rt6_stats_seq_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002866 .owner = THIS_MODULE,
2867 .open = rt6_stats_seq_open,
2868 .read = seq_read,
2869 .llseek = seq_lseek,
Pavel Emelyanovb6fcbdb2008-07-18 04:07:44 -07002870 .release = single_release_net,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002871};
2872#endif /* CONFIG_PROC_FS */
2873
2874#ifdef CONFIG_SYSCTL
2875
Linus Torvalds1da177e2005-04-16 15:20:36 -07002876static
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002877int ipv6_sysctl_rtcache_flush(ctl_table *ctl, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002878 void __user *buffer, size_t *lenp, loff_t *ppos)
2879{
Lucian Adrian Grijincuc486da32011-02-24 19:48:03 +00002880 struct net *net;
2881 int delay;
2882 if (!write)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002883 return -EINVAL;
Lucian Adrian Grijincuc486da32011-02-24 19:48:03 +00002884
2885 net = (struct net *)ctl->extra1;
2886 delay = net->ipv6.sysctl.flush_delay;
2887 proc_dointvec(ctl, write, buffer, lenp, ppos);
2888 fib6_run_gc(delay <= 0 ? ~0UL : (unsigned long)delay, net);
2889 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002890}
2891
Daniel Lezcano760f2d02008-01-10 02:53:43 -08002892ctl_table ipv6_route_table_template[] = {
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002893 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002894 .procname = "flush",
Daniel Lezcano49905092008-01-10 03:01:01 -08002895 .data = &init_net.ipv6.sysctl.flush_delay,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002896 .maxlen = sizeof(int),
Dave Jones89c8b3a12005-04-28 12:11:49 -07002897 .mode = 0200,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08002898 .proc_handler = ipv6_sysctl_rtcache_flush
Linus Torvalds1da177e2005-04-16 15:20:36 -07002899 },
2900 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002901 .procname = "gc_thresh",
Daniel Lezcano9a7ec3a2008-03-04 13:48:53 -08002902 .data = &ip6_dst_ops_template.gc_thresh,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002903 .maxlen = sizeof(int),
2904 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08002905 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002906 },
2907 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002908 .procname = "max_size",
Daniel Lezcano49905092008-01-10 03:01:01 -08002909 .data = &init_net.ipv6.sysctl.ip6_rt_max_size,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002910 .maxlen = sizeof(int),
2911 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08002912 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002913 },
2914 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002915 .procname = "gc_min_interval",
Daniel Lezcano49905092008-01-10 03:01:01 -08002916 .data = &init_net.ipv6.sysctl.ip6_rt_gc_min_interval,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002917 .maxlen = sizeof(int),
2918 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08002919 .proc_handler = proc_dointvec_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002920 },
2921 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002922 .procname = "gc_timeout",
Daniel Lezcano49905092008-01-10 03:01:01 -08002923 .data = &init_net.ipv6.sysctl.ip6_rt_gc_timeout,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002924 .maxlen = sizeof(int),
2925 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08002926 .proc_handler = proc_dointvec_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002927 },
2928 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002929 .procname = "gc_interval",
Daniel Lezcano49905092008-01-10 03:01:01 -08002930 .data = &init_net.ipv6.sysctl.ip6_rt_gc_interval,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002931 .maxlen = sizeof(int),
2932 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08002933 .proc_handler = proc_dointvec_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002934 },
2935 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002936 .procname = "gc_elasticity",
Daniel Lezcano49905092008-01-10 03:01:01 -08002937 .data = &init_net.ipv6.sysctl.ip6_rt_gc_elasticity,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002938 .maxlen = sizeof(int),
2939 .mode = 0644,
Min Zhangf3d3f612010-08-14 22:42:51 -07002940 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002941 },
2942 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002943 .procname = "mtu_expires",
Daniel Lezcano49905092008-01-10 03:01:01 -08002944 .data = &init_net.ipv6.sysctl.ip6_rt_mtu_expires,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002945 .maxlen = sizeof(int),
2946 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08002947 .proc_handler = proc_dointvec_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002948 },
2949 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002950 .procname = "min_adv_mss",
Daniel Lezcano49905092008-01-10 03:01:01 -08002951 .data = &init_net.ipv6.sysctl.ip6_rt_min_advmss,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002952 .maxlen = sizeof(int),
2953 .mode = 0644,
Min Zhangf3d3f612010-08-14 22:42:51 -07002954 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002955 },
2956 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002957 .procname = "gc_min_interval_ms",
Daniel Lezcano49905092008-01-10 03:01:01 -08002958 .data = &init_net.ipv6.sysctl.ip6_rt_gc_min_interval,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002959 .maxlen = sizeof(int),
2960 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08002961 .proc_handler = proc_dointvec_ms_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002962 },
Eric W. Biedermanf8572d82009-11-05 13:32:03 -08002963 { }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002964};
2965
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00002966struct ctl_table * __net_init ipv6_route_sysctl_init(struct net *net)
Daniel Lezcano760f2d02008-01-10 02:53:43 -08002967{
2968 struct ctl_table *table;
2969
2970 table = kmemdup(ipv6_route_table_template,
2971 sizeof(ipv6_route_table_template),
2972 GFP_KERNEL);
YOSHIFUJI Hideaki5ee09102008-02-28 00:24:28 +09002973
2974 if (table) {
2975 table[0].data = &net->ipv6.sysctl.flush_delay;
Lucian Adrian Grijincuc486da32011-02-24 19:48:03 +00002976 table[0].extra1 = net;
Alexey Dobriyan86393e52009-08-29 01:34:49 +00002977 table[1].data = &net->ipv6.ip6_dst_ops.gc_thresh;
YOSHIFUJI Hideaki5ee09102008-02-28 00:24:28 +09002978 table[2].data = &net->ipv6.sysctl.ip6_rt_max_size;
2979 table[3].data = &net->ipv6.sysctl.ip6_rt_gc_min_interval;
2980 table[4].data = &net->ipv6.sysctl.ip6_rt_gc_timeout;
2981 table[5].data = &net->ipv6.sysctl.ip6_rt_gc_interval;
2982 table[6].data = &net->ipv6.sysctl.ip6_rt_gc_elasticity;
2983 table[7].data = &net->ipv6.sysctl.ip6_rt_mtu_expires;
2984 table[8].data = &net->ipv6.sysctl.ip6_rt_min_advmss;
Alexey Dobriyan9c69fab2009-12-18 20:11:03 -08002985 table[9].data = &net->ipv6.sysctl.ip6_rt_gc_min_interval;
Eric W. Biederman464dc802012-11-16 03:02:59 +00002986
2987 /* Don't export sysctls to unprivileged users */
2988 if (net->user_ns != &init_user_ns)
2989 table[0].procname = NULL;
YOSHIFUJI Hideaki5ee09102008-02-28 00:24:28 +09002990 }
2991
Daniel Lezcano760f2d02008-01-10 02:53:43 -08002992 return table;
2993}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002994#endif
2995
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00002996static int __net_init ip6_route_net_init(struct net *net)
Daniel Lezcanocdb18762008-03-04 13:45:33 -08002997{
Pavel Emelyanov633d424b2008-04-21 14:25:23 -07002998 int ret = -ENOMEM;
Daniel Lezcano8ed67782008-03-04 13:48:30 -08002999
Alexey Dobriyan86393e52009-08-29 01:34:49 +00003000 memcpy(&net->ipv6.ip6_dst_ops, &ip6_dst_ops_template,
3001 sizeof(net->ipv6.ip6_dst_ops));
Benjamin Theryf2fc6a52008-03-04 13:49:23 -08003002
Eric Dumazetfc66f952010-10-08 06:37:34 +00003003 if (dst_entries_init(&net->ipv6.ip6_dst_ops) < 0)
3004 goto out_ip6_dst_ops;
3005
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003006 net->ipv6.ip6_null_entry = kmemdup(&ip6_null_entry_template,
3007 sizeof(*net->ipv6.ip6_null_entry),
3008 GFP_KERNEL);
3009 if (!net->ipv6.ip6_null_entry)
Eric Dumazetfc66f952010-10-08 06:37:34 +00003010 goto out_ip6_dst_entries;
Changli Gaod8d1f302010-06-10 23:31:35 -07003011 net->ipv6.ip6_null_entry->dst.path =
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003012 (struct dst_entry *)net->ipv6.ip6_null_entry;
Changli Gaod8d1f302010-06-10 23:31:35 -07003013 net->ipv6.ip6_null_entry->dst.ops = &net->ipv6.ip6_dst_ops;
David S. Miller62fa8a82011-01-26 20:51:05 -08003014 dst_init_metrics(&net->ipv6.ip6_null_entry->dst,
3015 ip6_template_metrics, true);
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003016
3017#ifdef CONFIG_IPV6_MULTIPLE_TABLES
3018 net->ipv6.ip6_prohibit_entry = kmemdup(&ip6_prohibit_entry_template,
3019 sizeof(*net->ipv6.ip6_prohibit_entry),
3020 GFP_KERNEL);
Peter Zijlstra68fffc62008-10-07 14:12:10 -07003021 if (!net->ipv6.ip6_prohibit_entry)
3022 goto out_ip6_null_entry;
Changli Gaod8d1f302010-06-10 23:31:35 -07003023 net->ipv6.ip6_prohibit_entry->dst.path =
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003024 (struct dst_entry *)net->ipv6.ip6_prohibit_entry;
Changli Gaod8d1f302010-06-10 23:31:35 -07003025 net->ipv6.ip6_prohibit_entry->dst.ops = &net->ipv6.ip6_dst_ops;
David S. Miller62fa8a82011-01-26 20:51:05 -08003026 dst_init_metrics(&net->ipv6.ip6_prohibit_entry->dst,
3027 ip6_template_metrics, true);
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003028
3029 net->ipv6.ip6_blk_hole_entry = kmemdup(&ip6_blk_hole_entry_template,
3030 sizeof(*net->ipv6.ip6_blk_hole_entry),
3031 GFP_KERNEL);
Peter Zijlstra68fffc62008-10-07 14:12:10 -07003032 if (!net->ipv6.ip6_blk_hole_entry)
3033 goto out_ip6_prohibit_entry;
Changli Gaod8d1f302010-06-10 23:31:35 -07003034 net->ipv6.ip6_blk_hole_entry->dst.path =
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003035 (struct dst_entry *)net->ipv6.ip6_blk_hole_entry;
Changli Gaod8d1f302010-06-10 23:31:35 -07003036 net->ipv6.ip6_blk_hole_entry->dst.ops = &net->ipv6.ip6_dst_ops;
David S. Miller62fa8a82011-01-26 20:51:05 -08003037 dst_init_metrics(&net->ipv6.ip6_blk_hole_entry->dst,
3038 ip6_template_metrics, true);
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003039#endif
3040
Peter Zijlstrab339a47c2008-10-07 14:15:00 -07003041 net->ipv6.sysctl.flush_delay = 0;
3042 net->ipv6.sysctl.ip6_rt_max_size = 4096;
3043 net->ipv6.sysctl.ip6_rt_gc_min_interval = HZ / 2;
3044 net->ipv6.sysctl.ip6_rt_gc_timeout = 60*HZ;
3045 net->ipv6.sysctl.ip6_rt_gc_interval = 30*HZ;
3046 net->ipv6.sysctl.ip6_rt_gc_elasticity = 9;
3047 net->ipv6.sysctl.ip6_rt_mtu_expires = 10*60*HZ;
3048 net->ipv6.sysctl.ip6_rt_min_advmss = IPV6_MIN_MTU - 20 - 40;
3049
Benjamin Thery6891a342008-03-04 13:49:47 -08003050 net->ipv6.ip6_rt_gc_expire = 30*HZ;
3051
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003052 ret = 0;
3053out:
3054 return ret;
Benjamin Theryf2fc6a52008-03-04 13:49:23 -08003055
Peter Zijlstra68fffc62008-10-07 14:12:10 -07003056#ifdef CONFIG_IPV6_MULTIPLE_TABLES
3057out_ip6_prohibit_entry:
3058 kfree(net->ipv6.ip6_prohibit_entry);
3059out_ip6_null_entry:
3060 kfree(net->ipv6.ip6_null_entry);
3061#endif
Eric Dumazetfc66f952010-10-08 06:37:34 +00003062out_ip6_dst_entries:
3063 dst_entries_destroy(&net->ipv6.ip6_dst_ops);
Benjamin Theryf2fc6a52008-03-04 13:49:23 -08003064out_ip6_dst_ops:
Benjamin Theryf2fc6a52008-03-04 13:49:23 -08003065 goto out;
Daniel Lezcanocdb18762008-03-04 13:45:33 -08003066}
3067
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00003068static void __net_exit ip6_route_net_exit(struct net *net)
Daniel Lezcanocdb18762008-03-04 13:45:33 -08003069{
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003070 kfree(net->ipv6.ip6_null_entry);
3071#ifdef CONFIG_IPV6_MULTIPLE_TABLES
3072 kfree(net->ipv6.ip6_prohibit_entry);
3073 kfree(net->ipv6.ip6_blk_hole_entry);
3074#endif
Xiaotian Feng41bb78b2010-11-02 16:11:05 +00003075 dst_entries_destroy(&net->ipv6.ip6_dst_ops);
Daniel Lezcanocdb18762008-03-04 13:45:33 -08003076}
3077
Thomas Grafd1896342012-06-18 12:08:33 +00003078static int __net_init ip6_route_net_init_late(struct net *net)
3079{
3080#ifdef CONFIG_PROC_FS
3081 proc_net_fops_create(net, "ipv6_route", 0, &ipv6_route_proc_fops);
3082 proc_net_fops_create(net, "rt6_stats", S_IRUGO, &rt6_stats_seq_fops);
3083#endif
3084 return 0;
3085}
3086
3087static void __net_exit ip6_route_net_exit_late(struct net *net)
3088{
3089#ifdef CONFIG_PROC_FS
3090 proc_net_remove(net, "ipv6_route");
3091 proc_net_remove(net, "rt6_stats");
3092#endif
3093}
3094
Daniel Lezcanocdb18762008-03-04 13:45:33 -08003095static struct pernet_operations ip6_route_net_ops = {
3096 .init = ip6_route_net_init,
3097 .exit = ip6_route_net_exit,
3098};
3099
David S. Millerc3426b42012-06-09 16:27:05 -07003100static int __net_init ipv6_inetpeer_init(struct net *net)
3101{
3102 struct inet_peer_base *bp = kmalloc(sizeof(*bp), GFP_KERNEL);
3103
3104 if (!bp)
3105 return -ENOMEM;
3106 inet_peer_base_init(bp);
3107 net->ipv6.peers = bp;
3108 return 0;
3109}
3110
3111static void __net_exit ipv6_inetpeer_exit(struct net *net)
3112{
3113 struct inet_peer_base *bp = net->ipv6.peers;
3114
3115 net->ipv6.peers = NULL;
David S. Miller56a6b242012-06-09 16:32:41 -07003116 inetpeer_invalidate_tree(bp);
David S. Millerc3426b42012-06-09 16:27:05 -07003117 kfree(bp);
3118}
3119
David S. Miller2b823f72012-06-09 19:00:16 -07003120static struct pernet_operations ipv6_inetpeer_ops = {
David S. Millerc3426b42012-06-09 16:27:05 -07003121 .init = ipv6_inetpeer_init,
3122 .exit = ipv6_inetpeer_exit,
3123};
3124
Thomas Grafd1896342012-06-18 12:08:33 +00003125static struct pernet_operations ip6_route_net_late_ops = {
3126 .init = ip6_route_net_init_late,
3127 .exit = ip6_route_net_exit_late,
3128};
3129
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003130static struct notifier_block ip6_route_dev_notifier = {
3131 .notifier_call = ip6_route_dev_notify,
3132 .priority = 0,
3133};
3134
Daniel Lezcano433d49c2007-12-07 00:43:48 -08003135int __init ip6_route_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003136{
Daniel Lezcano433d49c2007-12-07 00:43:48 -08003137 int ret;
3138
Daniel Lezcano9a7ec3a2008-03-04 13:48:53 -08003139 ret = -ENOMEM;
3140 ip6_dst_ops_template.kmem_cachep =
3141 kmem_cache_create("ip6_dst_cache", sizeof(struct rt6_info), 0,
3142 SLAB_HWCACHE_ALIGN, NULL);
3143 if (!ip6_dst_ops_template.kmem_cachep)
Fernando Carrijoc19a28e2009-01-07 18:09:08 -08003144 goto out;
David S. Miller14e50e52007-05-24 18:17:54 -07003145
Eric Dumazetfc66f952010-10-08 06:37:34 +00003146 ret = dst_entries_init(&ip6_dst_blackhole_ops);
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003147 if (ret)
Daniel Lezcanobdb32892008-03-04 13:48:10 -08003148 goto out_kmem_cache;
Daniel Lezcanobdb32892008-03-04 13:48:10 -08003149
David S. Millerc3426b42012-06-09 16:27:05 -07003150 ret = register_pernet_subsys(&ipv6_inetpeer_ops);
3151 if (ret)
David S. Millere8803b62012-06-16 01:12:19 -07003152 goto out_dst_entries;
Thomas Graf2a0c4512012-06-14 23:00:17 +00003153
David S. Miller7e52b332012-06-15 15:51:55 -07003154 ret = register_pernet_subsys(&ip6_route_net_ops);
3155 if (ret)
3156 goto out_register_inetpeer;
David S. Millerc3426b42012-06-09 16:27:05 -07003157
Arnaud Ebalard5dc121e2008-10-01 02:37:56 -07003158 ip6_dst_blackhole_ops.kmem_cachep = ip6_dst_ops_template.kmem_cachep;
3159
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003160 /* Registering of the loopback is done before this portion of code,
3161 * the loopback reference in rt6_info will not be taken, do it
3162 * manually for init_net */
Changli Gaod8d1f302010-06-10 23:31:35 -07003163 init_net.ipv6.ip6_null_entry->dst.dev = init_net.loopback_dev;
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003164 init_net.ipv6.ip6_null_entry->rt6i_idev = in6_dev_get(init_net.loopback_dev);
3165 #ifdef CONFIG_IPV6_MULTIPLE_TABLES
Changli Gaod8d1f302010-06-10 23:31:35 -07003166 init_net.ipv6.ip6_prohibit_entry->dst.dev = init_net.loopback_dev;
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003167 init_net.ipv6.ip6_prohibit_entry->rt6i_idev = in6_dev_get(init_net.loopback_dev);
Changli Gaod8d1f302010-06-10 23:31:35 -07003168 init_net.ipv6.ip6_blk_hole_entry->dst.dev = init_net.loopback_dev;
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003169 init_net.ipv6.ip6_blk_hole_entry->rt6i_idev = in6_dev_get(init_net.loopback_dev);
3170 #endif
David S. Millere8803b62012-06-16 01:12:19 -07003171 ret = fib6_init();
Daniel Lezcano433d49c2007-12-07 00:43:48 -08003172 if (ret)
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003173 goto out_register_subsys;
Daniel Lezcano433d49c2007-12-07 00:43:48 -08003174
Daniel Lezcano433d49c2007-12-07 00:43:48 -08003175 ret = xfrm6_init();
3176 if (ret)
David S. Millere8803b62012-06-16 01:12:19 -07003177 goto out_fib6_init;
Daniel Lezcanoc35b7e72007-12-08 00:14:11 -08003178
Daniel Lezcano433d49c2007-12-07 00:43:48 -08003179 ret = fib6_rules_init();
3180 if (ret)
3181 goto xfrm6_init;
Daniel Lezcano7e5449c2007-12-08 00:14:54 -08003182
Thomas Grafd1896342012-06-18 12:08:33 +00003183 ret = register_pernet_subsys(&ip6_route_net_late_ops);
3184 if (ret)
3185 goto fib6_rules_init;
3186
Daniel Lezcano433d49c2007-12-07 00:43:48 -08003187 ret = -ENOBUFS;
Greg Rosec7ac8672011-06-10 01:27:09 +00003188 if (__rtnl_register(PF_INET6, RTM_NEWROUTE, inet6_rtm_newroute, NULL, NULL) ||
3189 __rtnl_register(PF_INET6, RTM_DELROUTE, inet6_rtm_delroute, NULL, NULL) ||
3190 __rtnl_register(PF_INET6, RTM_GETROUTE, inet6_rtm_getroute, NULL, NULL))
Thomas Grafd1896342012-06-18 12:08:33 +00003191 goto out_register_late_subsys;
Daniel Lezcano433d49c2007-12-07 00:43:48 -08003192
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003193 ret = register_netdevice_notifier(&ip6_route_dev_notifier);
Daniel Lezcanocdb18762008-03-04 13:45:33 -08003194 if (ret)
Thomas Grafd1896342012-06-18 12:08:33 +00003195 goto out_register_late_subsys;
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003196
Daniel Lezcano433d49c2007-12-07 00:43:48 -08003197out:
3198 return ret;
3199
Thomas Grafd1896342012-06-18 12:08:33 +00003200out_register_late_subsys:
3201 unregister_pernet_subsys(&ip6_route_net_late_ops);
Daniel Lezcano433d49c2007-12-07 00:43:48 -08003202fib6_rules_init:
Daniel Lezcano433d49c2007-12-07 00:43:48 -08003203 fib6_rules_cleanup();
3204xfrm6_init:
Daniel Lezcano433d49c2007-12-07 00:43:48 -08003205 xfrm6_fini();
Thomas Graf2a0c4512012-06-14 23:00:17 +00003206out_fib6_init:
3207 fib6_gc_cleanup();
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003208out_register_subsys:
3209 unregister_pernet_subsys(&ip6_route_net_ops);
David S. Miller7e52b332012-06-15 15:51:55 -07003210out_register_inetpeer:
3211 unregister_pernet_subsys(&ipv6_inetpeer_ops);
Eric Dumazetfc66f952010-10-08 06:37:34 +00003212out_dst_entries:
3213 dst_entries_destroy(&ip6_dst_blackhole_ops);
Daniel Lezcano433d49c2007-12-07 00:43:48 -08003214out_kmem_cache:
Benjamin Theryf2fc6a52008-03-04 13:49:23 -08003215 kmem_cache_destroy(ip6_dst_ops_template.kmem_cachep);
Daniel Lezcano433d49c2007-12-07 00:43:48 -08003216 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003217}
3218
3219void ip6_route_cleanup(void)
3220{
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003221 unregister_netdevice_notifier(&ip6_route_dev_notifier);
Thomas Grafd1896342012-06-18 12:08:33 +00003222 unregister_pernet_subsys(&ip6_route_net_late_ops);
Thomas Graf101367c2006-08-04 03:39:02 -07003223 fib6_rules_cleanup();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003224 xfrm6_fini();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003225 fib6_gc_cleanup();
David S. Millerc3426b42012-06-09 16:27:05 -07003226 unregister_pernet_subsys(&ipv6_inetpeer_ops);
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003227 unregister_pernet_subsys(&ip6_route_net_ops);
Xiaotian Feng41bb78b2010-11-02 16:11:05 +00003228 dst_entries_destroy(&ip6_dst_blackhole_ops);
Benjamin Theryf2fc6a52008-03-04 13:49:23 -08003229 kmem_cache_destroy(ip6_dst_ops_template.kmem_cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003230}