blob: c7bcd777db230e8e46e2804eac1453353f8bd2a3 [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 */
David S. Miller97cac082012-07-02 22:43:47 -0700501 neigh = rt ? rt->n : NULL;
YOSHIFUJI Hideaki / 吉藤英明7ff74a52013-01-17 12:53:02 +0000502 if (!neigh)
Amerigo Wangfdd66812012-09-10 02:48:44 +0000503 return;
YOSHIFUJI Hideaki / 吉藤英明7ff74a52013-01-17 12:53:02 +0000504 write_lock_bh(&neigh->lock);
505 if (neigh->nud_state & NUD_VALID) {
506 write_unlock_bh(&neigh->lock);
507 return;
508 }
YOSHIFUJI Hideaki27097252006-03-20 17:05:13 -0800509 if (!(neigh->nud_state & NUD_VALID) &&
YOSHIFUJI Hideaki52e16352006-03-20 17:05:47 -0800510 time_after(jiffies, neigh->updated + rt->rt6i_idev->cnf.rtr_probe_interval)) {
YOSHIFUJI Hideaki27097252006-03-20 17:05:13 -0800511 struct in6_addr mcaddr;
512 struct in6_addr *target;
513
514 neigh->updated = jiffies;
YOSHIFUJI Hideaki / 吉藤英明7ff74a52013-01-17 12:53:02 +0000515 write_unlock_bh(&neigh->lock);
YOSHIFUJI Hideaki27097252006-03-20 17:05:13 -0800516
517 target = (struct in6_addr *)&neigh->primary_key;
518 addrconf_addr_solict_mult(target, &mcaddr);
David S. Millerd1918542011-12-28 20:19:20 -0500519 ndisc_send_ns(rt->dst.dev, NULL, target, &mcaddr, NULL);
Eric Dumazetf2c31e32011-07-29 19:00:53 +0000520 } else {
YOSHIFUJI Hideaki / 吉藤英明7ff74a52013-01-17 12:53:02 +0000521 write_unlock_bh(&neigh->lock);
Eric Dumazetf2c31e32011-07-29 19:00:53 +0000522 }
YOSHIFUJI Hideaki27097252006-03-20 17:05:13 -0800523}
524#else
525static inline void rt6_probe(struct rt6_info *rt)
526{
YOSHIFUJI Hideaki27097252006-03-20 17:05:13 -0800527}
528#endif
529
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530/*
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800531 * Default Router Selection (RFC 2461 6.3.6)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 */
Dave Jonesb6f99a22007-03-22 12:27:49 -0700533static inline int rt6_check_dev(struct rt6_info *rt, int oif)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534{
David S. Millerd1918542011-12-28 20:19:20 -0500535 struct net_device *dev = rt->dst.dev;
David S. Miller161980f2007-04-06 11:42:27 -0700536 if (!oif || dev->ifindex == oif)
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800537 return 2;
David S. Miller161980f2007-04-06 11:42:27 -0700538 if ((dev->flags & IFF_LOOPBACK) &&
539 rt->rt6i_idev && rt->rt6i_idev->dev->ifindex == oif)
540 return 1;
541 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542}
543
Paul Marksa5a81f02012-12-03 10:26:54 +0000544static inline bool rt6_check_neigh(struct rt6_info *rt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545{
Eric Dumazetf2c31e32011-07-29 19:00:53 +0000546 struct neighbour *neigh;
Paul Marksa5a81f02012-12-03 10:26:54 +0000547 bool ret = false;
Eric Dumazetf2c31e32011-07-29 19:00:53 +0000548
YOSHIFUJI Hideaki4d0c5912006-05-26 13:23:41 -0700549 if (rt->rt6i_flags & RTF_NONEXTHOP ||
550 !(rt->rt6i_flags & RTF_GATEWAY))
YOSHIFUJI Hideaki / 吉藤英明145a3622013-01-17 12:53:38 +0000551 return true;
552
553 rcu_read_lock_bh();
554 neigh = __ipv6_neigh_lookup_noref(rt->dst.dev, &rt->rt6i_gateway);
555 if (neigh) {
556 read_lock(&neigh->lock);
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800557 if (neigh->nud_state & NUD_VALID)
Paul Marksa5a81f02012-12-03 10:26:54 +0000558 ret = true;
YOSHIFUJI Hideaki398bcbe2008-01-19 00:35:16 -0800559#ifdef CONFIG_IPV6_ROUTER_PREF
Paul Marksa5a81f02012-12-03 10:26:54 +0000560 else if (!(neigh->nud_state & NUD_FAILED))
561 ret = true;
YOSHIFUJI Hideaki398bcbe2008-01-19 00:35:16 -0800562#endif
YOSHIFUJI Hideaki / 吉藤英明145a3622013-01-17 12:53:38 +0000563 read_unlock(&neigh->lock);
Paul Marksa5a81f02012-12-03 10:26:54 +0000564 }
YOSHIFUJI Hideaki / 吉藤英明145a3622013-01-17 12:53:38 +0000565 rcu_read_unlock_bh();
566
Paul Marksa5a81f02012-12-03 10:26:54 +0000567 return ret;
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800568}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800570static int rt6_score_route(struct rt6_info *rt, int oif,
571 int strict)
572{
Paul Marksa5a81f02012-12-03 10:26:54 +0000573 int m;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900574
YOSHIFUJI Hideaki4d0c5912006-05-26 13:23:41 -0700575 m = rt6_check_dev(rt, oif);
YOSHIFUJI Hideaki77d16f42006-08-23 17:25:05 -0700576 if (!m && (strict & RT6_LOOKUP_F_IFACE))
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800577 return -1;
YOSHIFUJI Hideakiebacaaa2006-03-20 17:04:53 -0800578#ifdef CONFIG_IPV6_ROUTER_PREF
579 m |= IPV6_DECODE_PREF(IPV6_EXTRACT_PREF(rt->rt6i_flags)) << 2;
580#endif
Paul Marksa5a81f02012-12-03 10:26:54 +0000581 if (!rt6_check_neigh(rt) && (strict & RT6_LOOKUP_F_REACHABLE))
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800582 return -1;
583 return m;
584}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585
David S. Millerf11e6652007-03-24 20:36:25 -0700586static struct rt6_info *find_match(struct rt6_info *rt, int oif, int strict,
587 int *mpri, struct rt6_info *match)
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800588{
David S. Millerf11e6652007-03-24 20:36:25 -0700589 int m;
590
591 if (rt6_check_expired(rt))
592 goto out;
593
594 m = rt6_score_route(rt, oif, strict);
595 if (m < 0)
596 goto out;
597
598 if (m > *mpri) {
599 if (strict & RT6_LOOKUP_F_REACHABLE)
600 rt6_probe(match);
601 *mpri = m;
602 match = rt;
603 } else if (strict & RT6_LOOKUP_F_REACHABLE) {
604 rt6_probe(rt);
605 }
606
607out:
608 return match;
609}
610
611static struct rt6_info *find_rr_leaf(struct fib6_node *fn,
612 struct rt6_info *rr_head,
613 u32 metric, int oif, int strict)
614{
615 struct rt6_info *rt, *match;
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800616 int mpri = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617
David S. Millerf11e6652007-03-24 20:36:25 -0700618 match = NULL;
619 for (rt = rr_head; rt && rt->rt6i_metric == metric;
Changli Gaod8d1f302010-06-10 23:31:35 -0700620 rt = rt->dst.rt6_next)
David S. Millerf11e6652007-03-24 20:36:25 -0700621 match = find_match(rt, oif, strict, &mpri, match);
622 for (rt = fn->leaf; rt && rt != rr_head && rt->rt6i_metric == metric;
Changli Gaod8d1f302010-06-10 23:31:35 -0700623 rt = rt->dst.rt6_next)
David S. Millerf11e6652007-03-24 20:36:25 -0700624 match = find_match(rt, oif, strict, &mpri, match);
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800625
David S. Millerf11e6652007-03-24 20:36:25 -0700626 return match;
627}
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800628
David S. Millerf11e6652007-03-24 20:36:25 -0700629static struct rt6_info *rt6_select(struct fib6_node *fn, int oif, int strict)
630{
631 struct rt6_info *match, *rt0;
Daniel Lezcano8ed67782008-03-04 13:48:30 -0800632 struct net *net;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633
David S. Millerf11e6652007-03-24 20:36:25 -0700634 rt0 = fn->rr_ptr;
635 if (!rt0)
636 fn->rr_ptr = rt0 = fn->leaf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637
David S. Millerf11e6652007-03-24 20:36:25 -0700638 match = find_rr_leaf(fn, rt0, rt0->rt6i_metric, oif, strict);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800640 if (!match &&
David S. Millerf11e6652007-03-24 20:36:25 -0700641 (strict & RT6_LOOKUP_F_REACHABLE)) {
Changli Gaod8d1f302010-06-10 23:31:35 -0700642 struct rt6_info *next = rt0->dst.rt6_next;
David S. Millerf11e6652007-03-24 20:36:25 -0700643
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800644 /* no entries matched; do round-robin */
David S. Millerf11e6652007-03-24 20:36:25 -0700645 if (!next || next->rt6i_metric != rt0->rt6i_metric)
646 next = fn->leaf;
647
648 if (next != rt0)
649 fn->rr_ptr = next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 }
651
David S. Millerd1918542011-12-28 20:19:20 -0500652 net = dev_net(rt0->dst.dev);
Eric Dumazeta02cec22010-09-22 20:43:57 +0000653 return match ? match : net->ipv6.ip6_null_entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654}
655
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800656#ifdef CONFIG_IPV6_ROUTE_INFO
657int rt6_route_rcv(struct net_device *dev, u8 *opt, int len,
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000658 const struct in6_addr *gwaddr)
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800659{
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900660 struct net *net = dev_net(dev);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800661 struct route_info *rinfo = (struct route_info *) opt;
662 struct in6_addr prefix_buf, *prefix;
663 unsigned int pref;
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +0900664 unsigned long lifetime;
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800665 struct rt6_info *rt;
666
667 if (len < sizeof(struct route_info)) {
668 return -EINVAL;
669 }
670
671 /* Sanity check for prefix_len and length */
672 if (rinfo->length > 3) {
673 return -EINVAL;
674 } else if (rinfo->prefix_len > 128) {
675 return -EINVAL;
676 } else if (rinfo->prefix_len > 64) {
677 if (rinfo->length < 2) {
678 return -EINVAL;
679 }
680 } else if (rinfo->prefix_len > 0) {
681 if (rinfo->length < 1) {
682 return -EINVAL;
683 }
684 }
685
686 pref = rinfo->route_pref;
687 if (pref == ICMPV6_ROUTER_PREF_INVALID)
Jens Rosenboom3933fc92009-09-10 06:25:11 +0000688 return -EINVAL;
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800689
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +0900690 lifetime = addrconf_timeout_fixup(ntohl(rinfo->lifetime), HZ);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800691
692 if (rinfo->length == 3)
693 prefix = (struct in6_addr *)rinfo->prefix;
694 else {
695 /* this function is safe */
696 ipv6_addr_prefix(&prefix_buf,
697 (struct in6_addr *)rinfo->prefix,
698 rinfo->prefix_len);
699 prefix = &prefix_buf;
700 }
701
Daniel Lezcanoefa2cea2008-03-04 13:46:48 -0800702 rt = rt6_get_route_info(net, prefix, rinfo->prefix_len, gwaddr,
703 dev->ifindex);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800704
705 if (rt && !lifetime) {
Thomas Grafe0a1ad732006-08-22 00:00:21 -0700706 ip6_del_rt(rt);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800707 rt = NULL;
708 }
709
710 if (!rt && lifetime)
Daniel Lezcanoefa2cea2008-03-04 13:46:48 -0800711 rt = rt6_add_route_info(net, prefix, rinfo->prefix_len, gwaddr, dev->ifindex,
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800712 pref);
713 else if (rt)
714 rt->rt6i_flags = RTF_ROUTEINFO |
715 (rt->rt6i_flags & ~RTF_PREF_MASK) | RTF_PREF(pref);
716
717 if (rt) {
Gao feng1716a962012-04-06 00:13:10 +0000718 if (!addrconf_finite_timeout(lifetime))
719 rt6_clean_expires(rt);
720 else
721 rt6_set_expires(rt, jiffies + HZ * lifetime);
722
Amerigo Wang94e187c2012-10-29 00:13:19 +0000723 ip6_rt_put(rt);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800724 }
725 return 0;
726}
727#endif
728
Daniel Lezcano8ed67782008-03-04 13:48:30 -0800729#define BACKTRACK(__net, saddr) \
YOSHIFUJI Hideaki982f56f2006-08-23 17:22:39 -0700730do { \
Daniel Lezcano8ed67782008-03-04 13:48:30 -0800731 if (rt == __net->ipv6.ip6_null_entry) { \
YOSHIFUJI Hideaki982f56f2006-08-23 17:22:39 -0700732 struct fib6_node *pn; \
Ville Nuorvalae0eda7b2006-10-16 22:11:11 -0700733 while (1) { \
YOSHIFUJI Hideaki982f56f2006-08-23 17:22:39 -0700734 if (fn->fn_flags & RTN_TL_ROOT) \
735 goto out; \
736 pn = fn->parent; \
737 if (FIB6_SUBTREE(pn) && FIB6_SUBTREE(pn) != fn) \
Kim Nordlund8bce65b2006-12-13 16:38:29 -0800738 fn = fib6_lookup(FIB6_SUBTREE(pn), NULL, saddr); \
YOSHIFUJI Hideaki982f56f2006-08-23 17:22:39 -0700739 else \
740 fn = pn; \
741 if (fn->fn_flags & RTN_RTINFO) \
742 goto restart; \
Thomas Grafc71099a2006-08-04 23:20:06 -0700743 } \
Thomas Grafc71099a2006-08-04 23:20:06 -0700744 } \
David S. Miller38308472011-12-03 18:02:47 -0500745} while (0)
Thomas Grafc71099a2006-08-04 23:20:06 -0700746
Daniel Lezcano8ed67782008-03-04 13:48:30 -0800747static struct rt6_info *ip6_pol_route_lookup(struct net *net,
748 struct fib6_table *table,
David S. Miller4c9483b2011-03-12 16:22:43 -0500749 struct flowi6 *fl6, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750{
751 struct fib6_node *fn;
752 struct rt6_info *rt;
753
Thomas Grafc71099a2006-08-04 23:20:06 -0700754 read_lock_bh(&table->tb6_lock);
David S. Miller4c9483b2011-03-12 16:22:43 -0500755 fn = fib6_lookup(&table->tb6_root, &fl6->daddr, &fl6->saddr);
Thomas Grafc71099a2006-08-04 23:20:06 -0700756restart:
757 rt = fn->leaf;
David S. Miller4c9483b2011-03-12 16:22:43 -0500758 rt = rt6_device_match(net, rt, &fl6->saddr, fl6->flowi6_oif, flags);
Nicolas Dichtel51ebd312012-10-22 03:42:09 +0000759 if (rt->rt6i_nsiblings && fl6->flowi6_oif == 0)
760 rt = rt6_multipath_select(rt, fl6);
David S. Miller4c9483b2011-03-12 16:22:43 -0500761 BACKTRACK(net, &fl6->saddr);
Thomas Grafc71099a2006-08-04 23:20:06 -0700762out:
Changli Gaod8d1f302010-06-10 23:31:35 -0700763 dst_use(&rt->dst, jiffies);
Thomas Grafc71099a2006-08-04 23:20:06 -0700764 read_unlock_bh(&table->tb6_lock);
Thomas Grafc71099a2006-08-04 23:20:06 -0700765 return rt;
766
767}
768
Florian Westphalea6e5742011-09-05 16:05:44 +0200769struct dst_entry * ip6_route_lookup(struct net *net, struct flowi6 *fl6,
770 int flags)
771{
772 return fib6_rule_lookup(net, fl6, flags, ip6_pol_route_lookup);
773}
774EXPORT_SYMBOL_GPL(ip6_route_lookup);
775
YOSHIFUJI Hideaki9acd9f32008-04-10 15:42:10 +0900776struct rt6_info *rt6_lookup(struct net *net, const struct in6_addr *daddr,
777 const struct in6_addr *saddr, int oif, int strict)
Thomas Grafc71099a2006-08-04 23:20:06 -0700778{
David S. Miller4c9483b2011-03-12 16:22:43 -0500779 struct flowi6 fl6 = {
780 .flowi6_oif = oif,
781 .daddr = *daddr,
Thomas Grafc71099a2006-08-04 23:20:06 -0700782 };
783 struct dst_entry *dst;
YOSHIFUJI Hideaki77d16f42006-08-23 17:25:05 -0700784 int flags = strict ? RT6_LOOKUP_F_IFACE : 0;
Thomas Grafc71099a2006-08-04 23:20:06 -0700785
Thomas Grafadaa70b2006-10-13 15:01:03 -0700786 if (saddr) {
David S. Miller4c9483b2011-03-12 16:22:43 -0500787 memcpy(&fl6.saddr, saddr, sizeof(*saddr));
Thomas Grafadaa70b2006-10-13 15:01:03 -0700788 flags |= RT6_LOOKUP_F_HAS_SADDR;
789 }
790
David S. Miller4c9483b2011-03-12 16:22:43 -0500791 dst = fib6_rule_lookup(net, &fl6, flags, ip6_pol_route_lookup);
Thomas Grafc71099a2006-08-04 23:20:06 -0700792 if (dst->error == 0)
793 return (struct rt6_info *) dst;
794
795 dst_release(dst);
796
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 return NULL;
798}
799
YOSHIFUJI Hideaki71590392007-02-22 22:05:40 +0900800EXPORT_SYMBOL(rt6_lookup);
801
Thomas Grafc71099a2006-08-04 23:20:06 -0700802/* ip6_ins_rt is called with FREE table->tb6_lock.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 It takes new route entry, the addition fails by any reason the
804 route is freed. In any case, if caller does not hold it, it may
805 be destroyed.
806 */
807
Thomas Graf86872cb2006-08-22 00:01:08 -0700808static int __ip6_ins_rt(struct rt6_info *rt, struct nl_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809{
810 int err;
Thomas Grafc71099a2006-08-04 23:20:06 -0700811 struct fib6_table *table;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812
Thomas Grafc71099a2006-08-04 23:20:06 -0700813 table = rt->rt6i_table;
814 write_lock_bh(&table->tb6_lock);
Thomas Graf86872cb2006-08-22 00:01:08 -0700815 err = fib6_add(&table->tb6_root, rt, info);
Thomas Grafc71099a2006-08-04 23:20:06 -0700816 write_unlock_bh(&table->tb6_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817
818 return err;
819}
820
Thomas Graf40e22e82006-08-22 00:00:45 -0700821int ip6_ins_rt(struct rt6_info *rt)
822{
Denis V. Lunev4d1169c2008-01-10 03:26:13 -0800823 struct nl_info info = {
David S. Millerd1918542011-12-28 20:19:20 -0500824 .nl_net = dev_net(rt->dst.dev),
Denis V. Lunev4d1169c2008-01-10 03:26:13 -0800825 };
Denis V. Lunev528c4ce2007-12-13 09:45:12 -0800826 return __ip6_ins_rt(rt, &info);
Thomas Graf40e22e82006-08-22 00:00:45 -0700827}
828
Gao feng1716a962012-04-06 00:13:10 +0000829static struct rt6_info *rt6_alloc_cow(struct rt6_info *ort,
Eric Dumazet21efcfa2011-07-19 20:18:36 +0000830 const struct in6_addr *daddr,
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000831 const struct in6_addr *saddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833 struct rt6_info *rt;
834
835 /*
836 * Clone the route.
837 */
838
Eric Dumazet21efcfa2011-07-19 20:18:36 +0000839 rt = ip6_rt_copy(ort, daddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840
841 if (rt) {
David S. Miller14deae42009-01-04 16:04:39 -0800842 int attempts = !in_softirq();
843
David S. Miller38308472011-12-03 18:02:47 -0500844 if (!(rt->rt6i_flags & RTF_GATEWAY)) {
David S. Millerbb3c3682011-12-13 17:35:06 -0500845 if (ort->rt6i_dst.plen != 128 &&
Eric Dumazet21efcfa2011-07-19 20:18:36 +0000846 ipv6_addr_equal(&ort->rt6i_dst.addr, daddr))
YOSHIFUJI Hideaki58c4fb82005-12-21 22:56:42 +0900847 rt->rt6i_flags |= RTF_ANYCAST;
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000848 rt->rt6i_gateway = *daddr;
YOSHIFUJI Hideaki58c4fb82005-12-21 22:56:42 +0900849 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851 rt->rt6i_flags |= RTF_CACHE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852
853#ifdef CONFIG_IPV6_SUBTREES
854 if (rt->rt6i_src.plen && saddr) {
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000855 rt->rt6i_src.addr = *saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 rt->rt6i_src.plen = 128;
857 }
858#endif
859
David S. Miller14deae42009-01-04 16:04:39 -0800860 retry:
David S. Miller8ade06c2011-12-29 18:51:57 -0500861 if (rt6_bind_neighbour(rt, rt->dst.dev)) {
David S. Millerd1918542011-12-28 20:19:20 -0500862 struct net *net = dev_net(rt->dst.dev);
David S. Miller14deae42009-01-04 16:04:39 -0800863 int saved_rt_min_interval =
864 net->ipv6.sysctl.ip6_rt_gc_min_interval;
865 int saved_rt_elasticity =
866 net->ipv6.sysctl.ip6_rt_gc_elasticity;
867
868 if (attempts-- > 0) {
869 net->ipv6.sysctl.ip6_rt_gc_elasticity = 1;
870 net->ipv6.sysctl.ip6_rt_gc_min_interval = 0;
871
Alexey Dobriyan86393e52009-08-29 01:34:49 +0000872 ip6_dst_gc(&net->ipv6.ip6_dst_ops);
David S. Miller14deae42009-01-04 16:04:39 -0800873
874 net->ipv6.sysctl.ip6_rt_gc_elasticity =
875 saved_rt_elasticity;
876 net->ipv6.sysctl.ip6_rt_gc_min_interval =
877 saved_rt_min_interval;
878 goto retry;
879 }
880
Joe Perchesf3213832012-05-15 14:11:53 +0000881 net_warn_ratelimited("Neighbour table overflow\n");
Changli Gaod8d1f302010-06-10 23:31:35 -0700882 dst_free(&rt->dst);
David S. Miller14deae42009-01-04 16:04:39 -0800883 return NULL;
884 }
YOSHIFUJI Hideaki95a9a5b2006-03-20 16:55:51 -0800885 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886
YOSHIFUJI Hideaki95a9a5b2006-03-20 16:55:51 -0800887 return rt;
888}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889
Eric Dumazet21efcfa2011-07-19 20:18:36 +0000890static struct rt6_info *rt6_alloc_clone(struct rt6_info *ort,
891 const struct in6_addr *daddr)
YOSHIFUJI Hideaki299d9932006-03-20 16:58:32 -0800892{
Eric Dumazet21efcfa2011-07-19 20:18:36 +0000893 struct rt6_info *rt = ip6_rt_copy(ort, daddr);
894
YOSHIFUJI Hideaki299d9932006-03-20 16:58:32 -0800895 if (rt) {
YOSHIFUJI Hideaki299d9932006-03-20 16:58:32 -0800896 rt->rt6i_flags |= RTF_CACHE;
David S. Miller97cac082012-07-02 22:43:47 -0700897 rt->n = neigh_clone(ort->n);
YOSHIFUJI Hideaki299d9932006-03-20 16:58:32 -0800898 }
899 return rt;
900}
901
Daniel Lezcano8ed67782008-03-04 13:48:30 -0800902static struct rt6_info *ip6_pol_route(struct net *net, struct fib6_table *table, int oif,
David S. Miller4c9483b2011-03-12 16:22:43 -0500903 struct flowi6 *fl6, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904{
905 struct fib6_node *fn;
YOSHIFUJI Hideaki519fbd82006-03-20 17:00:05 -0800906 struct rt6_info *rt, *nrt;
Thomas Grafc71099a2006-08-04 23:20:06 -0700907 int strict = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908 int attempts = 3;
YOSHIFUJI Hideaki519fbd82006-03-20 17:00:05 -0800909 int err;
YOSHIFUJI Hideaki53b79972008-07-19 22:35:03 -0700910 int reachable = net->ipv6.devconf_all->forwarding ? 0 : RT6_LOOKUP_F_REACHABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911
YOSHIFUJI Hideaki77d16f42006-08-23 17:25:05 -0700912 strict |= flags & RT6_LOOKUP_F_IFACE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913
914relookup:
Thomas Grafc71099a2006-08-04 23:20:06 -0700915 read_lock_bh(&table->tb6_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916
YOSHIFUJI Hideaki8238dd02006-03-20 17:04:35 -0800917restart_2:
David S. Miller4c9483b2011-03-12 16:22:43 -0500918 fn = fib6_lookup(&table->tb6_root, &fl6->daddr, &fl6->saddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919
920restart:
Pavel Emelyanov4acad722007-10-15 13:02:51 -0700921 rt = rt6_select(fn, oif, strict | reachable);
Nicolas Dichtel51ebd312012-10-22 03:42:09 +0000922 if (rt->rt6i_nsiblings && oif == 0)
923 rt = rt6_multipath_select(rt, fl6);
David S. Miller4c9483b2011-03-12 16:22:43 -0500924 BACKTRACK(net, &fl6->saddr);
Daniel Lezcano8ed67782008-03-04 13:48:30 -0800925 if (rt == net->ipv6.ip6_null_entry ||
YOSHIFUJI Hideaki8238dd02006-03-20 17:04:35 -0800926 rt->rt6i_flags & RTF_CACHE)
YOSHIFUJI Hideaki1ddef0442006-03-20 17:01:24 -0800927 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928
Changli Gaod8d1f302010-06-10 23:31:35 -0700929 dst_hold(&rt->dst);
Thomas Grafc71099a2006-08-04 23:20:06 -0700930 read_unlock_bh(&table->tb6_lock);
YOSHIFUJI Hideakifb9de912006-03-20 16:59:08 -0800931
YOSHIFUJI Hideaki / 吉藤英明c440f162013-01-17 12:53:32 +0000932 if (!(rt->rt6i_flags & (RTF_NONEXTHOP | RTF_GATEWAY)))
David S. Miller4c9483b2011-03-12 16:22:43 -0500933 nrt = rt6_alloc_cow(rt, &fl6->daddr, &fl6->saddr);
David S. Miller7343ff32011-03-09 19:55:25 -0800934 else if (!(rt->dst.flags & DST_HOST))
David S. Miller4c9483b2011-03-12 16:22:43 -0500935 nrt = rt6_alloc_clone(rt, &fl6->daddr);
David S. Miller7343ff32011-03-09 19:55:25 -0800936 else
937 goto out2;
YOSHIFUJI Hideakie40cf352006-03-20 16:59:27 -0800938
Amerigo Wang94e187c2012-10-29 00:13:19 +0000939 ip6_rt_put(rt);
Daniel Lezcano8ed67782008-03-04 13:48:30 -0800940 rt = nrt ? : net->ipv6.ip6_null_entry;
YOSHIFUJI Hideaki519fbd82006-03-20 17:00:05 -0800941
Changli Gaod8d1f302010-06-10 23:31:35 -0700942 dst_hold(&rt->dst);
YOSHIFUJI Hideaki519fbd82006-03-20 17:00:05 -0800943 if (nrt) {
Thomas Graf40e22e82006-08-22 00:00:45 -0700944 err = ip6_ins_rt(nrt);
YOSHIFUJI Hideaki519fbd82006-03-20 17:00:05 -0800945 if (!err)
946 goto out2;
947 }
948
949 if (--attempts <= 0)
950 goto out2;
951
952 /*
Thomas Grafc71099a2006-08-04 23:20:06 -0700953 * Race condition! In the gap, when table->tb6_lock was
YOSHIFUJI Hideaki519fbd82006-03-20 17:00:05 -0800954 * released someone could insert this route. Relookup.
955 */
Amerigo Wang94e187c2012-10-29 00:13:19 +0000956 ip6_rt_put(rt);
YOSHIFUJI Hideaki519fbd82006-03-20 17:00:05 -0800957 goto relookup;
958
959out:
YOSHIFUJI Hideaki8238dd02006-03-20 17:04:35 -0800960 if (reachable) {
961 reachable = 0;
962 goto restart_2;
963 }
Changli Gaod8d1f302010-06-10 23:31:35 -0700964 dst_hold(&rt->dst);
Thomas Grafc71099a2006-08-04 23:20:06 -0700965 read_unlock_bh(&table->tb6_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966out2:
Changli Gaod8d1f302010-06-10 23:31:35 -0700967 rt->dst.lastuse = jiffies;
968 rt->dst.__use++;
Thomas Grafc71099a2006-08-04 23:20:06 -0700969
970 return rt;
971}
972
Daniel Lezcano8ed67782008-03-04 13:48:30 -0800973static struct rt6_info *ip6_pol_route_input(struct net *net, struct fib6_table *table,
David S. Miller4c9483b2011-03-12 16:22:43 -0500974 struct flowi6 *fl6, int flags)
Pavel Emelyanov4acad722007-10-15 13:02:51 -0700975{
David S. Miller4c9483b2011-03-12 16:22:43 -0500976 return ip6_pol_route(net, table, fl6->flowi6_iif, fl6, flags);
Pavel Emelyanov4acad722007-10-15 13:02:51 -0700977}
978
Shmulik Ladkani72331bc2012-04-01 04:03:45 +0000979static struct dst_entry *ip6_route_input_lookup(struct net *net,
980 struct net_device *dev,
981 struct flowi6 *fl6, int flags)
982{
983 if (rt6_need_strict(&fl6->daddr) && dev->type != ARPHRD_PIMREG)
984 flags |= RT6_LOOKUP_F_IFACE;
985
986 return fib6_rule_lookup(net, fl6, flags, ip6_pol_route_input);
987}
988
Thomas Grafc71099a2006-08-04 23:20:06 -0700989void ip6_route_input(struct sk_buff *skb)
990{
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000991 const struct ipv6hdr *iph = ipv6_hdr(skb);
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900992 struct net *net = dev_net(skb->dev);
Thomas Grafadaa70b2006-10-13 15:01:03 -0700993 int flags = RT6_LOOKUP_F_HAS_SADDR;
David S. Miller4c9483b2011-03-12 16:22:43 -0500994 struct flowi6 fl6 = {
995 .flowi6_iif = skb->dev->ifindex,
996 .daddr = iph->daddr,
997 .saddr = iph->saddr,
YOSHIFUJI Hideaki / 吉藤英明6502ca52013-01-13 05:01:51 +0000998 .flowlabel = ip6_flowinfo(iph),
David S. Miller4c9483b2011-03-12 16:22:43 -0500999 .flowi6_mark = skb->mark,
1000 .flowi6_proto = iph->nexthdr,
Thomas Grafc71099a2006-08-04 23:20:06 -07001001 };
Thomas Grafadaa70b2006-10-13 15:01:03 -07001002
Shmulik Ladkani72331bc2012-04-01 04:03:45 +00001003 skb_dst_set(skb, ip6_route_input_lookup(net, skb->dev, &fl6, flags));
Thomas Grafc71099a2006-08-04 23:20:06 -07001004}
1005
Daniel Lezcano8ed67782008-03-04 13:48:30 -08001006static struct rt6_info *ip6_pol_route_output(struct net *net, struct fib6_table *table,
David S. Miller4c9483b2011-03-12 16:22:43 -05001007 struct flowi6 *fl6, int flags)
Thomas Grafc71099a2006-08-04 23:20:06 -07001008{
David S. Miller4c9483b2011-03-12 16:22:43 -05001009 return ip6_pol_route(net, table, fl6->flowi6_oif, fl6, flags);
Thomas Grafc71099a2006-08-04 23:20:06 -07001010}
1011
Florian Westphal9c7a4f92011-03-22 19:17:36 -07001012struct dst_entry * ip6_route_output(struct net *net, const struct sock *sk,
David S. Miller4c9483b2011-03-12 16:22:43 -05001013 struct flowi6 *fl6)
Thomas Grafc71099a2006-08-04 23:20:06 -07001014{
1015 int flags = 0;
1016
Pavel Emelyanov1fb94892012-08-08 21:53:36 +00001017 fl6->flowi6_iif = LOOPBACK_IFINDEX;
David McCullough4dc27d1c2012-06-25 15:42:26 +00001018
David S. Miller4c9483b2011-03-12 16:22:43 -05001019 if ((sk && sk->sk_bound_dev_if) || rt6_need_strict(&fl6->daddr))
YOSHIFUJI Hideaki77d16f42006-08-23 17:25:05 -07001020 flags |= RT6_LOOKUP_F_IFACE;
Thomas Grafc71099a2006-08-04 23:20:06 -07001021
David S. Miller4c9483b2011-03-12 16:22:43 -05001022 if (!ipv6_addr_any(&fl6->saddr))
Thomas Grafadaa70b2006-10-13 15:01:03 -07001023 flags |= RT6_LOOKUP_F_HAS_SADDR;
YOSHIFUJI Hideaki / 吉藤英明0c9a2ac2010-03-07 00:14:44 +00001024 else if (sk)
1025 flags |= rt6_srcprefs2flags(inet6_sk(sk)->srcprefs);
Thomas Grafadaa70b2006-10-13 15:01:03 -07001026
David S. Miller4c9483b2011-03-12 16:22:43 -05001027 return fib6_rule_lookup(net, fl6, flags, ip6_pol_route_output);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028}
1029
YOSHIFUJI Hideaki71590392007-02-22 22:05:40 +09001030EXPORT_SYMBOL(ip6_route_output);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031
David S. Miller2774c132011-03-01 14:59:04 -08001032struct dst_entry *ip6_blackhole_route(struct net *net, struct dst_entry *dst_orig)
David S. Miller14e50e52007-05-24 18:17:54 -07001033{
David S. Miller5c1e6aa2011-04-28 14:13:38 -07001034 struct rt6_info *rt, *ort = (struct rt6_info *) dst_orig;
David S. Miller14e50e52007-05-24 18:17:54 -07001035 struct dst_entry *new = NULL;
1036
David S. Millerf5b0a872012-07-19 12:31:33 -07001037 rt = dst_alloc(&ip6_dst_blackhole_ops, ort->dst.dev, 1, DST_OBSOLETE_NONE, 0);
David S. Miller14e50e52007-05-24 18:17:54 -07001038 if (rt) {
Changli Gaod8d1f302010-06-10 23:31:35 -07001039 new = &rt->dst;
David S. Miller14e50e52007-05-24 18:17:54 -07001040
Steffen Klassert81048912012-07-05 23:37:09 +00001041 memset(new + 1, 0, sizeof(*rt) - sizeof(*new));
1042 rt6_init_peer(rt, net->ipv6.peers);
1043
David S. Miller14e50e52007-05-24 18:17:54 -07001044 new->__use = 1;
Herbert Xu352e5122007-11-13 21:34:06 -08001045 new->input = dst_discard;
1046 new->output = dst_discard;
David S. Miller14e50e52007-05-24 18:17:54 -07001047
Eric Dumazet21efcfa2011-07-19 20:18:36 +00001048 if (dst_metrics_read_only(&ort->dst))
1049 new->_metrics = ort->dst._metrics;
1050 else
1051 dst_copy_metrics(new, &ort->dst);
David S. Miller14e50e52007-05-24 18:17:54 -07001052 rt->rt6i_idev = ort->rt6i_idev;
1053 if (rt->rt6i_idev)
1054 in6_dev_hold(rt->rt6i_idev);
David S. Miller14e50e52007-05-24 18:17:54 -07001055
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001056 rt->rt6i_gateway = ort->rt6i_gateway;
Gao feng1716a962012-04-06 00:13:10 +00001057 rt->rt6i_flags = ort->rt6i_flags;
1058 rt6_clean_expires(rt);
David S. Miller14e50e52007-05-24 18:17:54 -07001059 rt->rt6i_metric = 0;
1060
1061 memcpy(&rt->rt6i_dst, &ort->rt6i_dst, sizeof(struct rt6key));
1062#ifdef CONFIG_IPV6_SUBTREES
1063 memcpy(&rt->rt6i_src, &ort->rt6i_src, sizeof(struct rt6key));
1064#endif
1065
1066 dst_free(new);
1067 }
1068
David S. Miller69ead7a2011-03-01 14:45:33 -08001069 dst_release(dst_orig);
1070 return new ? new : ERR_PTR(-ENOMEM);
David S. Miller14e50e52007-05-24 18:17:54 -07001071}
David S. Miller14e50e52007-05-24 18:17:54 -07001072
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073/*
1074 * Destination cache support functions
1075 */
1076
1077static struct dst_entry *ip6_dst_check(struct dst_entry *dst, u32 cookie)
1078{
1079 struct rt6_info *rt;
1080
1081 rt = (struct rt6_info *) dst;
1082
Nicolas Dichtel6f3118b2012-09-10 22:09:46 +00001083 /* All IPV6 dsts are created with ->obsolete set to the value
1084 * DST_OBSOLETE_FORCE_CHK which forces validation calls down
1085 * into this function always.
1086 */
1087 if (rt->rt6i_genid != rt_genid(dev_net(rt->dst.dev)))
1088 return NULL;
1089
Li RongQinga4477c42012-11-07 21:56:33 +00001090 if (rt->rt6i_node && (rt->rt6i_node->fn_sernum == cookie))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091 return dst;
Li RongQinga4477c42012-11-07 21:56:33 +00001092
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093 return NULL;
1094}
1095
1096static struct dst_entry *ip6_negative_advice(struct dst_entry *dst)
1097{
1098 struct rt6_info *rt = (struct rt6_info *) dst;
1099
1100 if (rt) {
YOSHIFUJI Hideaki / 吉藤英明54c1a852010-03-28 07:15:45 +00001101 if (rt->rt6i_flags & RTF_CACHE) {
1102 if (rt6_check_expired(rt)) {
1103 ip6_del_rt(rt);
1104 dst = NULL;
1105 }
1106 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107 dst_release(dst);
YOSHIFUJI Hideaki / 吉藤英明54c1a852010-03-28 07:15:45 +00001108 dst = NULL;
1109 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110 }
YOSHIFUJI Hideaki / 吉藤英明54c1a852010-03-28 07:15:45 +00001111 return dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112}
1113
1114static void ip6_link_failure(struct sk_buff *skb)
1115{
1116 struct rt6_info *rt;
1117
Alexey Dobriyan3ffe5332010-02-18 08:25:24 +00001118 icmpv6_send(skb, ICMPV6_DEST_UNREACH, ICMPV6_ADDR_UNREACH, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119
Eric Dumazetadf30902009-06-02 05:19:30 +00001120 rt = (struct rt6_info *) skb_dst(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121 if (rt) {
Gao feng1716a962012-04-06 00:13:10 +00001122 if (rt->rt6i_flags & RTF_CACHE)
1123 rt6_update_expires(rt, 0);
1124 else if (rt->rt6i_node && (rt->rt6i_flags & RTF_DEFAULT))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125 rt->rt6i_node->fn_sernum = -1;
1126 }
1127}
1128
David S. Miller6700c272012-07-17 03:29:28 -07001129static void ip6_rt_update_pmtu(struct dst_entry *dst, struct sock *sk,
1130 struct sk_buff *skb, u32 mtu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131{
1132 struct rt6_info *rt6 = (struct rt6_info*)dst;
1133
David S. Miller81aded22012-06-15 14:54:11 -07001134 dst_confirm(dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135 if (mtu < dst_mtu(dst) && rt6->rt6i_dst.plen == 128) {
David S. Miller81aded22012-06-15 14:54:11 -07001136 struct net *net = dev_net(dst->dev);
1137
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138 rt6->rt6i_flags |= RTF_MODIFIED;
1139 if (mtu < IPV6_MIN_MTU) {
David S. Millerdefb3512010-12-08 21:16:57 -08001140 u32 features = dst_metric(dst, RTAX_FEATURES);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141 mtu = IPV6_MIN_MTU;
David S. Millerdefb3512010-12-08 21:16:57 -08001142 features |= RTAX_FEATURE_ALLFRAG;
1143 dst_metric_set(dst, RTAX_FEATURES, features);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144 }
David S. Millerdefb3512010-12-08 21:16:57 -08001145 dst_metric_set(dst, RTAX_MTU, mtu);
David S. Miller81aded22012-06-15 14:54:11 -07001146 rt6_update_expires(rt6, net->ipv6.sysctl.ip6_rt_mtu_expires);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147 }
1148}
1149
David S. Miller42ae66c2012-06-15 20:01:57 -07001150void ip6_update_pmtu(struct sk_buff *skb, struct net *net, __be32 mtu,
1151 int oif, u32 mark)
David S. Miller81aded22012-06-15 14:54:11 -07001152{
1153 const struct ipv6hdr *iph = (struct ipv6hdr *) skb->data;
1154 struct dst_entry *dst;
1155 struct flowi6 fl6;
1156
1157 memset(&fl6, 0, sizeof(fl6));
1158 fl6.flowi6_oif = oif;
1159 fl6.flowi6_mark = mark;
David S. Miller3e129392012-07-10 04:01:57 -07001160 fl6.flowi6_flags = 0;
David S. Miller81aded22012-06-15 14:54:11 -07001161 fl6.daddr = iph->daddr;
1162 fl6.saddr = iph->saddr;
YOSHIFUJI Hideaki / 吉藤英明6502ca52013-01-13 05:01:51 +00001163 fl6.flowlabel = ip6_flowinfo(iph);
David S. Miller81aded22012-06-15 14:54:11 -07001164
1165 dst = ip6_route_output(net, NULL, &fl6);
1166 if (!dst->error)
David S. Miller6700c272012-07-17 03:29:28 -07001167 ip6_rt_update_pmtu(dst, NULL, skb, ntohl(mtu));
David S. Miller81aded22012-06-15 14:54:11 -07001168 dst_release(dst);
1169}
1170EXPORT_SYMBOL_GPL(ip6_update_pmtu);
1171
1172void ip6_sk_update_pmtu(struct sk_buff *skb, struct sock *sk, __be32 mtu)
1173{
1174 ip6_update_pmtu(skb, sock_net(sk), mtu,
1175 sk->sk_bound_dev_if, sk->sk_mark);
1176}
1177EXPORT_SYMBOL_GPL(ip6_sk_update_pmtu);
1178
David S. Miller3a5ad2e2012-07-12 00:08:07 -07001179void ip6_redirect(struct sk_buff *skb, struct net *net, int oif, u32 mark)
1180{
1181 const struct ipv6hdr *iph = (struct ipv6hdr *) skb->data;
1182 struct dst_entry *dst;
1183 struct flowi6 fl6;
1184
1185 memset(&fl6, 0, sizeof(fl6));
1186 fl6.flowi6_oif = oif;
1187 fl6.flowi6_mark = mark;
1188 fl6.flowi6_flags = 0;
1189 fl6.daddr = iph->daddr;
1190 fl6.saddr = iph->saddr;
YOSHIFUJI Hideaki / 吉藤英明6502ca52013-01-13 05:01:51 +00001191 fl6.flowlabel = ip6_flowinfo(iph);
David S. Miller3a5ad2e2012-07-12 00:08:07 -07001192
1193 dst = ip6_route_output(net, NULL, &fl6);
1194 if (!dst->error)
David S. Miller6700c272012-07-17 03:29:28 -07001195 rt6_do_redirect(dst, NULL, skb);
David S. Miller3a5ad2e2012-07-12 00:08:07 -07001196 dst_release(dst);
1197}
1198EXPORT_SYMBOL_GPL(ip6_redirect);
1199
1200void ip6_sk_redirect(struct sk_buff *skb, struct sock *sk)
1201{
1202 ip6_redirect(skb, sock_net(sk), sk->sk_bound_dev_if, sk->sk_mark);
1203}
1204EXPORT_SYMBOL_GPL(ip6_sk_redirect);
1205
David S. Miller0dbaee32010-12-13 12:52:14 -08001206static unsigned int ip6_default_advmss(const struct dst_entry *dst)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207{
David S. Miller0dbaee32010-12-13 12:52:14 -08001208 struct net_device *dev = dst->dev;
1209 unsigned int mtu = dst_mtu(dst);
1210 struct net *net = dev_net(dev);
1211
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212 mtu -= sizeof(struct ipv6hdr) + sizeof(struct tcphdr);
1213
Daniel Lezcano55786892008-03-04 13:47:47 -08001214 if (mtu < net->ipv6.sysctl.ip6_rt_min_advmss)
1215 mtu = net->ipv6.sysctl.ip6_rt_min_advmss;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216
1217 /*
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001218 * Maximal non-jumbo IPv6 payload is IPV6_MAXPLEN and
1219 * corresponding MSS is IPV6_MAXPLEN - tcp_header_size.
1220 * IPV6_MAXPLEN is also valid and means: "any MSS,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221 * rely only on pmtu discovery"
1222 */
1223 if (mtu > IPV6_MAXPLEN - sizeof(struct tcphdr))
1224 mtu = IPV6_MAXPLEN;
1225 return mtu;
1226}
1227
Steffen Klassertebb762f2011-11-23 02:12:51 +00001228static unsigned int ip6_mtu(const struct dst_entry *dst)
David S. Millerd33e4552010-12-14 13:01:14 -08001229{
David S. Millerd33e4552010-12-14 13:01:14 -08001230 struct inet6_dev *idev;
Steffen Klassert618f9bc2011-11-23 02:13:31 +00001231 unsigned int mtu = dst_metric_raw(dst, RTAX_MTU);
1232
1233 if (mtu)
1234 return mtu;
1235
1236 mtu = IPV6_MIN_MTU;
David S. Millerd33e4552010-12-14 13:01:14 -08001237
1238 rcu_read_lock();
1239 idev = __in6_dev_get(dst->dev);
1240 if (idev)
1241 mtu = idev->cnf.mtu6;
1242 rcu_read_unlock();
1243
1244 return mtu;
1245}
1246
YOSHIFUJI Hideaki3b009442007-12-06 16:11:48 -08001247static struct dst_entry *icmp6_dst_gc_list;
1248static DEFINE_SPINLOCK(icmp6_dst_lock);
Thomas Graf5d0bbee2006-08-04 03:37:36 -07001249
YOSHIFUJI Hideaki3b009442007-12-06 16:11:48 -08001250struct dst_entry *icmp6_dst_alloc(struct net_device *dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251 struct neighbour *neigh,
David S. Miller87a11572011-12-06 17:04:13 -05001252 struct flowi6 *fl6)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253{
David S. Miller87a11572011-12-06 17:04:13 -05001254 struct dst_entry *dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255 struct rt6_info *rt;
1256 struct inet6_dev *idev = in6_dev_get(dev);
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001257 struct net *net = dev_net(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258
David S. Miller38308472011-12-03 18:02:47 -05001259 if (unlikely(!idev))
Eric Dumazet122bdf62012-03-14 21:13:11 +00001260 return ERR_PTR(-ENODEV);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261
David S. Miller8b96d222012-06-11 02:01:56 -07001262 rt = ip6_dst_alloc(net, dev, 0, NULL);
David S. Miller38308472011-12-03 18:02:47 -05001263 if (unlikely(!rt)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264 in6_dev_put(idev);
David S. Miller87a11572011-12-06 17:04:13 -05001265 dst = ERR_PTR(-ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266 goto out;
1267 }
1268
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269 if (neigh)
1270 neigh_hold(neigh);
David S. Miller14deae42009-01-04 16:04:39 -08001271 else {
David S. Millerf894cbf2012-07-02 21:52:24 -07001272 neigh = ip6_neigh_lookup(&rt->dst, NULL, &fl6->daddr);
David S. Millerb43faac2011-12-13 16:48:21 -05001273 if (IS_ERR(neigh)) {
RongQing.Li252c3d82012-01-12 22:33:46 +00001274 in6_dev_put(idev);
David S. Millerb43faac2011-12-13 16:48:21 -05001275 dst_free(&rt->dst);
1276 return ERR_CAST(neigh);
1277 }
David S. Miller14deae42009-01-04 16:04:39 -08001278 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279
Yan, Zheng8e2ec632011-09-05 21:34:30 +00001280 rt->dst.flags |= DST_HOST;
1281 rt->dst.output = ip6_output;
David S. Miller97cac082012-07-02 22:43:47 -07001282 rt->n = neigh;
Changli Gaod8d1f302010-06-10 23:31:35 -07001283 atomic_set(&rt->dst.__refcnt, 1);
David S. Miller87a11572011-12-06 17:04:13 -05001284 rt->rt6i_dst.addr = fl6->daddr;
Yan, Zheng8e2ec632011-09-05 21:34:30 +00001285 rt->rt6i_dst.plen = 128;
1286 rt->rt6i_idev = idev;
Li RongQing14edd872012-10-24 14:01:18 +08001287 dst_metric_set(&rt->dst, RTAX_HOPLIMIT, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288
YOSHIFUJI Hideaki3b009442007-12-06 16:11:48 -08001289 spin_lock_bh(&icmp6_dst_lock);
Changli Gaod8d1f302010-06-10 23:31:35 -07001290 rt->dst.next = icmp6_dst_gc_list;
1291 icmp6_dst_gc_list = &rt->dst;
YOSHIFUJI Hideaki3b009442007-12-06 16:11:48 -08001292 spin_unlock_bh(&icmp6_dst_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293
Daniel Lezcano55786892008-03-04 13:47:47 -08001294 fib6_force_start_gc(net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295
David S. Miller87a11572011-12-06 17:04:13 -05001296 dst = xfrm_lookup(net, &rt->dst, flowi6_to_flowi(fl6), NULL, 0);
1297
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298out:
David S. Miller87a11572011-12-06 17:04:13 -05001299 return dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300}
1301
Stephen Hemminger3d0f24a2008-07-22 14:35:50 -07001302int icmp6_dst_gc(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303{
Hagen Paul Pfeifere9476e92011-02-25 05:45:19 +00001304 struct dst_entry *dst, **pprev;
Stephen Hemminger3d0f24a2008-07-22 14:35:50 -07001305 int more = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306
YOSHIFUJI Hideaki3b009442007-12-06 16:11:48 -08001307 spin_lock_bh(&icmp6_dst_lock);
1308 pprev = &icmp6_dst_gc_list;
Thomas Graf5d0bbee2006-08-04 03:37:36 -07001309
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310 while ((dst = *pprev) != NULL) {
1311 if (!atomic_read(&dst->__refcnt)) {
1312 *pprev = dst->next;
1313 dst_free(dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314 } else {
1315 pprev = &dst->next;
Stephen Hemminger3d0f24a2008-07-22 14:35:50 -07001316 ++more;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317 }
1318 }
1319
YOSHIFUJI Hideaki3b009442007-12-06 16:11:48 -08001320 spin_unlock_bh(&icmp6_dst_lock);
Thomas Graf5d0bbee2006-08-04 03:37:36 -07001321
Stephen Hemminger3d0f24a2008-07-22 14:35:50 -07001322 return more;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323}
1324
David S. Miller1e493d12008-09-10 17:27:15 -07001325static void icmp6_clean_all(int (*func)(struct rt6_info *rt, void *arg),
1326 void *arg)
1327{
1328 struct dst_entry *dst, **pprev;
1329
1330 spin_lock_bh(&icmp6_dst_lock);
1331 pprev = &icmp6_dst_gc_list;
1332 while ((dst = *pprev) != NULL) {
1333 struct rt6_info *rt = (struct rt6_info *) dst;
1334 if (func(rt, arg)) {
1335 *pprev = dst->next;
1336 dst_free(dst);
1337 } else {
1338 pprev = &dst->next;
1339 }
1340 }
1341 spin_unlock_bh(&icmp6_dst_lock);
1342}
1343
Daniel Lezcano569d3642008-01-18 03:56:57 -08001344static int ip6_dst_gc(struct dst_ops *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346 unsigned long now = jiffies;
Alexey Dobriyan86393e52009-08-29 01:34:49 +00001347 struct net *net = container_of(ops, struct net, ipv6.ip6_dst_ops);
Daniel Lezcano7019b782008-03-04 13:50:14 -08001348 int rt_min_interval = net->ipv6.sysctl.ip6_rt_gc_min_interval;
1349 int rt_max_size = net->ipv6.sysctl.ip6_rt_max_size;
1350 int rt_elasticity = net->ipv6.sysctl.ip6_rt_gc_elasticity;
1351 int rt_gc_timeout = net->ipv6.sysctl.ip6_rt_gc_timeout;
1352 unsigned long rt_last_gc = net->ipv6.ip6_rt_last_gc;
Eric Dumazetfc66f952010-10-08 06:37:34 +00001353 int entries;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354
Eric Dumazetfc66f952010-10-08 06:37:34 +00001355 entries = dst_entries_get_fast(ops);
Daniel Lezcano7019b782008-03-04 13:50:14 -08001356 if (time_after(rt_last_gc + rt_min_interval, now) &&
Eric Dumazetfc66f952010-10-08 06:37:34 +00001357 entries <= rt_max_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358 goto out;
1359
Benjamin Thery6891a342008-03-04 13:49:47 -08001360 net->ipv6.ip6_rt_gc_expire++;
1361 fib6_run_gc(net->ipv6.ip6_rt_gc_expire, net);
1362 net->ipv6.ip6_rt_last_gc = now;
Eric Dumazetfc66f952010-10-08 06:37:34 +00001363 entries = dst_entries_get_slow(ops);
1364 if (entries < ops->gc_thresh)
Daniel Lezcano7019b782008-03-04 13:50:14 -08001365 net->ipv6.ip6_rt_gc_expire = rt_gc_timeout>>1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366out:
Daniel Lezcano7019b782008-03-04 13:50:14 -08001367 net->ipv6.ip6_rt_gc_expire -= net->ipv6.ip6_rt_gc_expire>>rt_elasticity;
Eric Dumazetfc66f952010-10-08 06:37:34 +00001368 return entries > rt_max_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369}
1370
YOSHIFUJI Hideaki6b75d092008-03-10 06:00:30 -04001371int ip6_dst_hoplimit(struct dst_entry *dst)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372{
David S. Miller5170ae82010-12-12 21:35:57 -08001373 int hoplimit = dst_metric_raw(dst, RTAX_HOPLIMIT);
David S. Millera02e4b72010-12-12 21:39:02 -08001374 if (hoplimit == 0) {
YOSHIFUJI Hideaki6b75d092008-03-10 06:00:30 -04001375 struct net_device *dev = dst->dev;
Eric Dumazetc68f24c2010-06-14 04:46:20 +00001376 struct inet6_dev *idev;
1377
1378 rcu_read_lock();
1379 idev = __in6_dev_get(dev);
1380 if (idev)
YOSHIFUJI Hideaki6b75d092008-03-10 06:00:30 -04001381 hoplimit = idev->cnf.hop_limit;
Eric Dumazetc68f24c2010-06-14 04:46:20 +00001382 else
YOSHIFUJI Hideaki53b79972008-07-19 22:35:03 -07001383 hoplimit = dev_net(dev)->ipv6.devconf_all->hop_limit;
Eric Dumazetc68f24c2010-06-14 04:46:20 +00001384 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385 }
1386 return hoplimit;
1387}
David S. Millerabbf46a2010-12-12 21:14:46 -08001388EXPORT_SYMBOL(ip6_dst_hoplimit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389
1390/*
1391 *
1392 */
1393
Thomas Graf86872cb2006-08-22 00:01:08 -07001394int ip6_route_add(struct fib6_config *cfg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395{
1396 int err;
Daniel Lezcano55786892008-03-04 13:47:47 -08001397 struct net *net = cfg->fc_nlinfo.nl_net;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398 struct rt6_info *rt = NULL;
1399 struct net_device *dev = NULL;
1400 struct inet6_dev *idev = NULL;
Thomas Grafc71099a2006-08-04 23:20:06 -07001401 struct fib6_table *table;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402 int addr_type;
1403
Thomas Graf86872cb2006-08-22 00:01:08 -07001404 if (cfg->fc_dst_len > 128 || cfg->fc_src_len > 128)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405 return -EINVAL;
1406#ifndef CONFIG_IPV6_SUBTREES
Thomas Graf86872cb2006-08-22 00:01:08 -07001407 if (cfg->fc_src_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408 return -EINVAL;
1409#endif
Thomas Graf86872cb2006-08-22 00:01:08 -07001410 if (cfg->fc_ifindex) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411 err = -ENODEV;
Daniel Lezcano55786892008-03-04 13:47:47 -08001412 dev = dev_get_by_index(net, cfg->fc_ifindex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413 if (!dev)
1414 goto out;
1415 idev = in6_dev_get(dev);
1416 if (!idev)
1417 goto out;
1418 }
1419
Thomas Graf86872cb2006-08-22 00:01:08 -07001420 if (cfg->fc_metric == 0)
1421 cfg->fc_metric = IP6_RT_PRIO_USER;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422
Matti Vaittinend71314b2011-11-14 00:14:49 +00001423 err = -ENOBUFS;
David S. Miller38308472011-12-03 18:02:47 -05001424 if (cfg->fc_nlinfo.nlh &&
1425 !(cfg->fc_nlinfo.nlh->nlmsg_flags & NLM_F_CREATE)) {
Matti Vaittinend71314b2011-11-14 00:14:49 +00001426 table = fib6_get_table(net, cfg->fc_table);
David S. Miller38308472011-12-03 18:02:47 -05001427 if (!table) {
Joe Perchesf3213832012-05-15 14:11:53 +00001428 pr_warn("NLM_F_CREATE should be specified when creating new route\n");
Matti Vaittinend71314b2011-11-14 00:14:49 +00001429 table = fib6_new_table(net, cfg->fc_table);
1430 }
1431 } else {
1432 table = fib6_new_table(net, cfg->fc_table);
1433 }
David S. Miller38308472011-12-03 18:02:47 -05001434
1435 if (!table)
Thomas Grafc71099a2006-08-04 23:20:06 -07001436 goto out;
Thomas Grafc71099a2006-08-04 23:20:06 -07001437
David S. Miller8b96d222012-06-11 02:01:56 -07001438 rt = ip6_dst_alloc(net, NULL, DST_NOCOUNT, table);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439
David S. Miller38308472011-12-03 18:02:47 -05001440 if (!rt) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441 err = -ENOMEM;
1442 goto out;
1443 }
1444
Gao feng1716a962012-04-06 00:13:10 +00001445 if (cfg->fc_flags & RTF_EXPIRES)
1446 rt6_set_expires(rt, jiffies +
1447 clock_t_to_jiffies(cfg->fc_expires));
1448 else
1449 rt6_clean_expires(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450
Thomas Graf86872cb2006-08-22 00:01:08 -07001451 if (cfg->fc_protocol == RTPROT_UNSPEC)
1452 cfg->fc_protocol = RTPROT_BOOT;
1453 rt->rt6i_protocol = cfg->fc_protocol;
1454
1455 addr_type = ipv6_addr_type(&cfg->fc_dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456
1457 if (addr_type & IPV6_ADDR_MULTICAST)
Changli Gaod8d1f302010-06-10 23:31:35 -07001458 rt->dst.input = ip6_mc_input;
Maciej Żenczykowskiab79ad12010-09-27 00:07:02 +00001459 else if (cfg->fc_flags & RTF_LOCAL)
1460 rt->dst.input = ip6_input;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461 else
Changli Gaod8d1f302010-06-10 23:31:35 -07001462 rt->dst.input = ip6_forward;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463
Changli Gaod8d1f302010-06-10 23:31:35 -07001464 rt->dst.output = ip6_output;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465
Thomas Graf86872cb2006-08-22 00:01:08 -07001466 ipv6_addr_prefix(&rt->rt6i_dst.addr, &cfg->fc_dst, cfg->fc_dst_len);
1467 rt->rt6i_dst.plen = cfg->fc_dst_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468 if (rt->rt6i_dst.plen == 128)
David S. Miller11d53b42011-06-24 15:23:34 -07001469 rt->dst.flags |= DST_HOST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470
Yan, Zheng8e2ec632011-09-05 21:34:30 +00001471 if (!(rt->dst.flags & DST_HOST) && cfg->fc_mx) {
1472 u32 *metrics = kzalloc(sizeof(u32) * RTAX_MAX, GFP_KERNEL);
1473 if (!metrics) {
1474 err = -ENOMEM;
1475 goto out;
1476 }
1477 dst_init_metrics(&rt->dst, metrics, 0);
1478 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479#ifdef CONFIG_IPV6_SUBTREES
Thomas Graf86872cb2006-08-22 00:01:08 -07001480 ipv6_addr_prefix(&rt->rt6i_src.addr, &cfg->fc_src, cfg->fc_src_len);
1481 rt->rt6i_src.plen = cfg->fc_src_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482#endif
1483
Thomas Graf86872cb2006-08-22 00:01:08 -07001484 rt->rt6i_metric = cfg->fc_metric;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485
1486 /* We cannot add true routes via loopback here,
1487 they would result in kernel looping; promote them to reject routes
1488 */
Thomas Graf86872cb2006-08-22 00:01:08 -07001489 if ((cfg->fc_flags & RTF_REJECT) ||
David S. Miller38308472011-12-03 18:02:47 -05001490 (dev && (dev->flags & IFF_LOOPBACK) &&
1491 !(addr_type & IPV6_ADDR_LOOPBACK) &&
1492 !(cfg->fc_flags & RTF_LOCAL))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493 /* hold loopback dev/idev if we haven't done so. */
Daniel Lezcano55786892008-03-04 13:47:47 -08001494 if (dev != net->loopback_dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495 if (dev) {
1496 dev_put(dev);
1497 in6_dev_put(idev);
1498 }
Daniel Lezcano55786892008-03-04 13:47:47 -08001499 dev = net->loopback_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500 dev_hold(dev);
1501 idev = in6_dev_get(dev);
1502 if (!idev) {
1503 err = -ENODEV;
1504 goto out;
1505 }
1506 }
Changli Gaod8d1f302010-06-10 23:31:35 -07001507 rt->dst.output = ip6_pkt_discard_out;
1508 rt->dst.input = ip6_pkt_discard;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509 rt->rt6i_flags = RTF_REJECT|RTF_NONEXTHOP;
Nicolas Dichtelef2c7d72012-09-05 02:12:42 +00001510 switch (cfg->fc_type) {
1511 case RTN_BLACKHOLE:
1512 rt->dst.error = -EINVAL;
1513 break;
1514 case RTN_PROHIBIT:
1515 rt->dst.error = -EACCES;
1516 break;
Nicolas Dichtelb4949ab2012-09-06 05:53:35 +00001517 case RTN_THROW:
1518 rt->dst.error = -EAGAIN;
1519 break;
Nicolas Dichtelef2c7d72012-09-05 02:12:42 +00001520 default:
1521 rt->dst.error = -ENETUNREACH;
1522 break;
1523 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524 goto install_route;
1525 }
1526
Thomas Graf86872cb2006-08-22 00:01:08 -07001527 if (cfg->fc_flags & RTF_GATEWAY) {
Eric Dumazetb71d1d42011-04-22 04:53:02 +00001528 const struct in6_addr *gw_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529 int gwa_type;
1530
Thomas Graf86872cb2006-08-22 00:01:08 -07001531 gw_addr = &cfg->fc_gateway;
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001532 rt->rt6i_gateway = *gw_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533 gwa_type = ipv6_addr_type(gw_addr);
1534
1535 if (gwa_type != (IPV6_ADDR_LINKLOCAL|IPV6_ADDR_UNICAST)) {
1536 struct rt6_info *grt;
1537
1538 /* IPv6 strictly inhibits using not link-local
1539 addresses as nexthop address.
1540 Otherwise, router will not able to send redirects.
1541 It is very good, but in some (rare!) circumstances
1542 (SIT, PtP, NBMA NOARP links) it is handy to allow
1543 some exceptions. --ANK
1544 */
1545 err = -EINVAL;
David S. Miller38308472011-12-03 18:02:47 -05001546 if (!(gwa_type & IPV6_ADDR_UNICAST))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547 goto out;
1548
Daniel Lezcano55786892008-03-04 13:47:47 -08001549 grt = rt6_lookup(net, gw_addr, NULL, cfg->fc_ifindex, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550
1551 err = -EHOSTUNREACH;
David S. Miller38308472011-12-03 18:02:47 -05001552 if (!grt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553 goto out;
1554 if (dev) {
David S. Millerd1918542011-12-28 20:19:20 -05001555 if (dev != grt->dst.dev) {
Amerigo Wang94e187c2012-10-29 00:13:19 +00001556 ip6_rt_put(grt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557 goto out;
1558 }
1559 } else {
David S. Millerd1918542011-12-28 20:19:20 -05001560 dev = grt->dst.dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561 idev = grt->rt6i_idev;
1562 dev_hold(dev);
1563 in6_dev_hold(grt->rt6i_idev);
1564 }
David S. Miller38308472011-12-03 18:02:47 -05001565 if (!(grt->rt6i_flags & RTF_GATEWAY))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566 err = 0;
Amerigo Wang94e187c2012-10-29 00:13:19 +00001567 ip6_rt_put(grt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568
1569 if (err)
1570 goto out;
1571 }
1572 err = -EINVAL;
David S. Miller38308472011-12-03 18:02:47 -05001573 if (!dev || (dev->flags & IFF_LOOPBACK))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574 goto out;
1575 }
1576
1577 err = -ENODEV;
David S. Miller38308472011-12-03 18:02:47 -05001578 if (!dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579 goto out;
1580
Daniel Walterc3968a82011-04-13 21:10:57 +00001581 if (!ipv6_addr_any(&cfg->fc_prefsrc)) {
1582 if (!ipv6_chk_addr(net, &cfg->fc_prefsrc, dev, 0)) {
1583 err = -EINVAL;
1584 goto out;
1585 }
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001586 rt->rt6i_prefsrc.addr = cfg->fc_prefsrc;
Daniel Walterc3968a82011-04-13 21:10:57 +00001587 rt->rt6i_prefsrc.plen = 128;
1588 } else
1589 rt->rt6i_prefsrc.plen = 0;
1590
Thomas Graf86872cb2006-08-22 00:01:08 -07001591 if (cfg->fc_flags & (RTF_GATEWAY | RTF_NONEXTHOP)) {
David S. Miller8ade06c2011-12-29 18:51:57 -05001592 err = rt6_bind_neighbour(rt, dev);
David S. Millerf83c7792011-12-28 15:41:23 -05001593 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595 }
1596
Thomas Graf86872cb2006-08-22 00:01:08 -07001597 rt->rt6i_flags = cfg->fc_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598
1599install_route:
Thomas Graf86872cb2006-08-22 00:01:08 -07001600 if (cfg->fc_mx) {
1601 struct nlattr *nla;
1602 int remaining;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603
Thomas Graf86872cb2006-08-22 00:01:08 -07001604 nla_for_each_attr(nla, cfg->fc_mx, cfg->fc_mx_len, remaining) {
Thomas Graf8f4c1f92007-09-12 14:44:36 +02001605 int type = nla_type(nla);
Thomas Graf86872cb2006-08-22 00:01:08 -07001606
1607 if (type) {
1608 if (type > RTAX_MAX) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609 err = -EINVAL;
1610 goto out;
1611 }
Thomas Graf86872cb2006-08-22 00:01:08 -07001612
David S. Millerdefb3512010-12-08 21:16:57 -08001613 dst_metric_set(&rt->dst, type, nla_get_u32(nla));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615 }
1616 }
1617
Changli Gaod8d1f302010-06-10 23:31:35 -07001618 rt->dst.dev = dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619 rt->rt6i_idev = idev;
Thomas Grafc71099a2006-08-04 23:20:06 -07001620 rt->rt6i_table = table;
Daniel Lezcano63152fc2008-03-03 23:31:11 -08001621
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001622 cfg->fc_nlinfo.nl_net = dev_net(dev);
Daniel Lezcano63152fc2008-03-03 23:31:11 -08001623
Thomas Graf86872cb2006-08-22 00:01:08 -07001624 return __ip6_ins_rt(rt, &cfg->fc_nlinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625
1626out:
1627 if (dev)
1628 dev_put(dev);
1629 if (idev)
1630 in6_dev_put(idev);
1631 if (rt)
Changli Gaod8d1f302010-06-10 23:31:35 -07001632 dst_free(&rt->dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633 return err;
1634}
1635
Thomas Graf86872cb2006-08-22 00:01:08 -07001636static int __ip6_del_rt(struct rt6_info *rt, struct nl_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637{
1638 int err;
Thomas Grafc71099a2006-08-04 23:20:06 -07001639 struct fib6_table *table;
David S. Millerd1918542011-12-28 20:19:20 -05001640 struct net *net = dev_net(rt->dst.dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641
Gao feng6825a262012-09-19 19:25:34 +00001642 if (rt == net->ipv6.ip6_null_entry) {
1643 err = -ENOENT;
1644 goto out;
1645 }
Patrick McHardy6c813a72006-08-06 22:22:47 -07001646
Thomas Grafc71099a2006-08-04 23:20:06 -07001647 table = rt->rt6i_table;
1648 write_lock_bh(&table->tb6_lock);
Thomas Graf86872cb2006-08-22 00:01:08 -07001649 err = fib6_del(rt, info);
Thomas Grafc71099a2006-08-04 23:20:06 -07001650 write_unlock_bh(&table->tb6_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651
Gao feng6825a262012-09-19 19:25:34 +00001652out:
Amerigo Wang94e187c2012-10-29 00:13:19 +00001653 ip6_rt_put(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654 return err;
1655}
1656
Thomas Grafe0a1ad732006-08-22 00:00:21 -07001657int ip6_del_rt(struct rt6_info *rt)
1658{
Denis V. Lunev4d1169c2008-01-10 03:26:13 -08001659 struct nl_info info = {
David S. Millerd1918542011-12-28 20:19:20 -05001660 .nl_net = dev_net(rt->dst.dev),
Denis V. Lunev4d1169c2008-01-10 03:26:13 -08001661 };
Denis V. Lunev528c4ce2007-12-13 09:45:12 -08001662 return __ip6_del_rt(rt, &info);
Thomas Grafe0a1ad732006-08-22 00:00:21 -07001663}
1664
Thomas Graf86872cb2006-08-22 00:01:08 -07001665static int ip6_route_del(struct fib6_config *cfg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666{
Thomas Grafc71099a2006-08-04 23:20:06 -07001667 struct fib6_table *table;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668 struct fib6_node *fn;
1669 struct rt6_info *rt;
1670 int err = -ESRCH;
1671
Daniel Lezcano55786892008-03-04 13:47:47 -08001672 table = fib6_get_table(cfg->fc_nlinfo.nl_net, cfg->fc_table);
David S. Miller38308472011-12-03 18:02:47 -05001673 if (!table)
Thomas Grafc71099a2006-08-04 23:20:06 -07001674 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675
Thomas Grafc71099a2006-08-04 23:20:06 -07001676 read_lock_bh(&table->tb6_lock);
1677
1678 fn = fib6_locate(&table->tb6_root,
Thomas Graf86872cb2006-08-22 00:01:08 -07001679 &cfg->fc_dst, cfg->fc_dst_len,
1680 &cfg->fc_src, cfg->fc_src_len);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001681
Linus Torvalds1da177e2005-04-16 15:20:36 -07001682 if (fn) {
Changli Gaod8d1f302010-06-10 23:31:35 -07001683 for (rt = fn->leaf; rt; rt = rt->dst.rt6_next) {
Thomas Graf86872cb2006-08-22 00:01:08 -07001684 if (cfg->fc_ifindex &&
David S. Millerd1918542011-12-28 20:19:20 -05001685 (!rt->dst.dev ||
1686 rt->dst.dev->ifindex != cfg->fc_ifindex))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687 continue;
Thomas Graf86872cb2006-08-22 00:01:08 -07001688 if (cfg->fc_flags & RTF_GATEWAY &&
1689 !ipv6_addr_equal(&cfg->fc_gateway, &rt->rt6i_gateway))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690 continue;
Thomas Graf86872cb2006-08-22 00:01:08 -07001691 if (cfg->fc_metric && cfg->fc_metric != rt->rt6i_metric)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692 continue;
Changli Gaod8d1f302010-06-10 23:31:35 -07001693 dst_hold(&rt->dst);
Thomas Grafc71099a2006-08-04 23:20:06 -07001694 read_unlock_bh(&table->tb6_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695
Thomas Graf86872cb2006-08-22 00:01:08 -07001696 return __ip6_del_rt(rt, &cfg->fc_nlinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697 }
1698 }
Thomas Grafc71099a2006-08-04 23:20:06 -07001699 read_unlock_bh(&table->tb6_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700
1701 return err;
1702}
1703
David S. Miller6700c272012-07-17 03:29:28 -07001704static void rt6_do_redirect(struct dst_entry *dst, struct sock *sk, struct sk_buff *skb)
YOSHIFUJI Hideakia6279452006-08-23 17:18:26 -07001705{
David S. Millere8599ff2012-07-11 23:43:53 -07001706 struct net *net = dev_net(skb->dev);
YOSHIFUJI Hideakia6279452006-08-23 17:18:26 -07001707 struct netevent_redirect netevent;
David S. Millere8599ff2012-07-11 23:43:53 -07001708 struct rt6_info *rt, *nrt = NULL;
David S. Millere8599ff2012-07-11 23:43:53 -07001709 struct ndisc_options ndopts;
David S. Miller6e157b62012-07-12 00:05:02 -07001710 struct neighbour *old_neigh;
David S. Millere8599ff2012-07-11 23:43:53 -07001711 struct inet6_dev *in6_dev;
1712 struct neighbour *neigh;
YOSHIFUJI Hideaki / 吉藤英明71bcdba2013-01-05 16:34:51 +00001713 struct rd_msg *msg;
David S. Miller6e157b62012-07-12 00:05:02 -07001714 int optlen, on_link;
1715 u8 *lladdr;
David S. Millere8599ff2012-07-11 23:43:53 -07001716
1717 optlen = skb->tail - skb->transport_header;
YOSHIFUJI Hideaki / 吉藤英明71bcdba2013-01-05 16:34:51 +00001718 optlen -= sizeof(*msg);
David S. Millere8599ff2012-07-11 23:43:53 -07001719
1720 if (optlen < 0) {
David S. Miller6e157b62012-07-12 00:05:02 -07001721 net_dbg_ratelimited("rt6_do_redirect: packet too short\n");
David S. Millere8599ff2012-07-11 23:43:53 -07001722 return;
1723 }
1724
YOSHIFUJI Hideaki / 吉藤英明71bcdba2013-01-05 16:34:51 +00001725 msg = (struct rd_msg *)icmp6_hdr(skb);
David S. Millere8599ff2012-07-11 23:43:53 -07001726
YOSHIFUJI Hideaki / 吉藤英明71bcdba2013-01-05 16:34:51 +00001727 if (ipv6_addr_is_multicast(&msg->dest)) {
David S. Miller6e157b62012-07-12 00:05:02 -07001728 net_dbg_ratelimited("rt6_do_redirect: destination address is multicast\n");
David S. Millere8599ff2012-07-11 23:43:53 -07001729 return;
1730 }
1731
David S. Miller6e157b62012-07-12 00:05:02 -07001732 on_link = 0;
YOSHIFUJI Hideaki / 吉藤英明71bcdba2013-01-05 16:34:51 +00001733 if (ipv6_addr_equal(&msg->dest, &msg->target)) {
David S. Millere8599ff2012-07-11 23:43:53 -07001734 on_link = 1;
YOSHIFUJI Hideaki / 吉藤英明71bcdba2013-01-05 16:34:51 +00001735 } else if (ipv6_addr_type(&msg->target) !=
David S. Millere8599ff2012-07-11 23:43:53 -07001736 (IPV6_ADDR_UNICAST|IPV6_ADDR_LINKLOCAL)) {
David S. Miller6e157b62012-07-12 00:05:02 -07001737 net_dbg_ratelimited("rt6_do_redirect: target address is not link-local unicast\n");
David S. Millere8599ff2012-07-11 23:43:53 -07001738 return;
1739 }
1740
1741 in6_dev = __in6_dev_get(skb->dev);
1742 if (!in6_dev)
1743 return;
1744 if (in6_dev->cnf.forwarding || !in6_dev->cnf.accept_redirects)
1745 return;
1746
1747 /* RFC2461 8.1:
1748 * The IP source address of the Redirect MUST be the same as the current
1749 * first-hop router for the specified ICMP Destination Address.
1750 */
1751
YOSHIFUJI Hideaki / 吉藤英明71bcdba2013-01-05 16:34:51 +00001752 if (!ndisc_parse_options(msg->opt, optlen, &ndopts)) {
David S. Millere8599ff2012-07-11 23:43:53 -07001753 net_dbg_ratelimited("rt6_redirect: invalid ND options\n");
1754 return;
1755 }
David S. Miller6e157b62012-07-12 00:05:02 -07001756
1757 lladdr = NULL;
David S. Millere8599ff2012-07-11 23:43:53 -07001758 if (ndopts.nd_opts_tgt_lladdr) {
1759 lladdr = ndisc_opt_addr_data(ndopts.nd_opts_tgt_lladdr,
1760 skb->dev);
1761 if (!lladdr) {
1762 net_dbg_ratelimited("rt6_redirect: invalid link-layer address length\n");
1763 return;
1764 }
1765 }
1766
David S. Miller6e157b62012-07-12 00:05:02 -07001767 rt = (struct rt6_info *) dst;
1768 if (rt == net->ipv6.ip6_null_entry) {
1769 net_dbg_ratelimited("rt6_redirect: source isn't a valid nexthop for redirect target\n");
1770 return;
1771 }
1772
1773 /* Redirect received -> path was valid.
1774 * Look, redirects are sent only in response to data packets,
1775 * so that this nexthop apparently is reachable. --ANK
1776 */
1777 dst_confirm(&rt->dst);
1778
YOSHIFUJI Hideaki / 吉藤英明71bcdba2013-01-05 16:34:51 +00001779 neigh = __neigh_lookup(&nd_tbl, &msg->target, skb->dev, 1);
David S. Millere8599ff2012-07-11 23:43:53 -07001780 if (!neigh)
1781 return;
1782
David S. Miller6e157b62012-07-12 00:05:02 -07001783 /* Duplicate redirect: silently ignore. */
1784 old_neigh = rt->n;
1785 if (neigh == old_neigh)
YOSHIFUJI Hideakia6279452006-08-23 17:18:26 -07001786 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788 /*
1789 * We have finally decided to accept it.
1790 */
1791
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001792 neigh_update(neigh, lladdr, NUD_STALE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793 NEIGH_UPDATE_F_WEAK_OVERRIDE|
1794 NEIGH_UPDATE_F_OVERRIDE|
1795 (on_link ? 0 : (NEIGH_UPDATE_F_OVERRIDE_ISROUTER|
1796 NEIGH_UPDATE_F_ISROUTER))
1797 );
1798
YOSHIFUJI Hideaki / 吉藤英明71bcdba2013-01-05 16:34:51 +00001799 nrt = ip6_rt_copy(rt, &msg->dest);
David S. Miller38308472011-12-03 18:02:47 -05001800 if (!nrt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801 goto out;
1802
1803 nrt->rt6i_flags = RTF_GATEWAY|RTF_UP|RTF_DYNAMIC|RTF_CACHE;
1804 if (on_link)
1805 nrt->rt6i_flags &= ~RTF_GATEWAY;
1806
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001807 nrt->rt6i_gateway = *(struct in6_addr *)neigh->primary_key;
David S. Miller97cac082012-07-02 22:43:47 -07001808 nrt->n = neigh_clone(neigh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001809
Thomas Graf40e22e82006-08-22 00:00:45 -07001810 if (ip6_ins_rt(nrt))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001811 goto out;
1812
Changli Gaod8d1f302010-06-10 23:31:35 -07001813 netevent.old = &rt->dst;
1814 netevent.new = &nrt->dst;
YOSHIFUJI Hideaki / 吉藤英明71bcdba2013-01-05 16:34:51 +00001815 netevent.daddr = &msg->dest;
YOSHIFUJI Hideaki / 吉藤英明60592832013-01-14 09:28:27 +00001816 netevent.neigh = neigh;
Tom Tucker8d717402006-07-30 20:43:36 -07001817 call_netevent_notifiers(NETEVENT_REDIRECT, &netevent);
1818
David S. Miller38308472011-12-03 18:02:47 -05001819 if (rt->rt6i_flags & RTF_CACHE) {
David S. Miller6e157b62012-07-12 00:05:02 -07001820 rt = (struct rt6_info *) dst_clone(&rt->dst);
Thomas Grafe0a1ad732006-08-22 00:00:21 -07001821 ip6_del_rt(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822 }
1823
1824out:
David S. Millere8599ff2012-07-11 23:43:53 -07001825 neigh_release(neigh);
David S. Miller6e157b62012-07-12 00:05:02 -07001826}
1827
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829 * Misc support functions
1830 */
1831
Gao feng1716a962012-04-06 00:13:10 +00001832static struct rt6_info *ip6_rt_copy(struct rt6_info *ort,
Eric Dumazet21efcfa2011-07-19 20:18:36 +00001833 const struct in6_addr *dest)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834{
David S. Millerd1918542011-12-28 20:19:20 -05001835 struct net *net = dev_net(ort->dst.dev);
David S. Miller8b96d222012-06-11 02:01:56 -07001836 struct rt6_info *rt = ip6_dst_alloc(net, ort->dst.dev, 0,
1837 ort->rt6i_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838
1839 if (rt) {
Changli Gaod8d1f302010-06-10 23:31:35 -07001840 rt->dst.input = ort->dst.input;
1841 rt->dst.output = ort->dst.output;
Yan, Zheng8e2ec632011-09-05 21:34:30 +00001842 rt->dst.flags |= DST_HOST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001844 rt->rt6i_dst.addr = *dest;
Yan, Zheng8e2ec632011-09-05 21:34:30 +00001845 rt->rt6i_dst.plen = 128;
David S. Millerdefb3512010-12-08 21:16:57 -08001846 dst_copy_metrics(&rt->dst, &ort->dst);
Changli Gaod8d1f302010-06-10 23:31:35 -07001847 rt->dst.error = ort->dst.error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848 rt->rt6i_idev = ort->rt6i_idev;
1849 if (rt->rt6i_idev)
1850 in6_dev_hold(rt->rt6i_idev);
Changli Gaod8d1f302010-06-10 23:31:35 -07001851 rt->dst.lastuse = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001852
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001853 rt->rt6i_gateway = ort->rt6i_gateway;
Gao feng1716a962012-04-06 00:13:10 +00001854 rt->rt6i_flags = ort->rt6i_flags;
1855 if ((ort->rt6i_flags & (RTF_DEFAULT | RTF_ADDRCONF)) ==
1856 (RTF_DEFAULT | RTF_ADDRCONF))
1857 rt6_set_from(rt, ort);
1858 else
1859 rt6_clean_expires(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860 rt->rt6i_metric = 0;
1861
Linus Torvalds1da177e2005-04-16 15:20:36 -07001862#ifdef CONFIG_IPV6_SUBTREES
1863 memcpy(&rt->rt6i_src, &ort->rt6i_src, sizeof(struct rt6key));
1864#endif
Florian Westphal0f6c6392011-05-20 11:27:24 +00001865 memcpy(&rt->rt6i_prefsrc, &ort->rt6i_prefsrc, sizeof(struct rt6key));
Thomas Grafc71099a2006-08-04 23:20:06 -07001866 rt->rt6i_table = ort->rt6i_table;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867 }
1868 return rt;
1869}
1870
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08001871#ifdef CONFIG_IPV6_ROUTE_INFO
Daniel Lezcanoefa2cea2008-03-04 13:46:48 -08001872static struct rt6_info *rt6_get_route_info(struct net *net,
Eric Dumazetb71d1d42011-04-22 04:53:02 +00001873 const struct in6_addr *prefix, int prefixlen,
1874 const struct in6_addr *gwaddr, int ifindex)
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08001875{
1876 struct fib6_node *fn;
1877 struct rt6_info *rt = NULL;
Thomas Grafc71099a2006-08-04 23:20:06 -07001878 struct fib6_table *table;
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08001879
Daniel Lezcanoefa2cea2008-03-04 13:46:48 -08001880 table = fib6_get_table(net, RT6_TABLE_INFO);
David S. Miller38308472011-12-03 18:02:47 -05001881 if (!table)
Thomas Grafc71099a2006-08-04 23:20:06 -07001882 return NULL;
1883
Li RongQing5744dd92012-09-11 21:59:01 +00001884 read_lock_bh(&table->tb6_lock);
Thomas Grafc71099a2006-08-04 23:20:06 -07001885 fn = fib6_locate(&table->tb6_root, prefix ,prefixlen, NULL, 0);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08001886 if (!fn)
1887 goto out;
1888
Changli Gaod8d1f302010-06-10 23:31:35 -07001889 for (rt = fn->leaf; rt; rt = rt->dst.rt6_next) {
David S. Millerd1918542011-12-28 20:19:20 -05001890 if (rt->dst.dev->ifindex != ifindex)
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08001891 continue;
1892 if ((rt->rt6i_flags & (RTF_ROUTEINFO|RTF_GATEWAY)) != (RTF_ROUTEINFO|RTF_GATEWAY))
1893 continue;
1894 if (!ipv6_addr_equal(&rt->rt6i_gateway, gwaddr))
1895 continue;
Changli Gaod8d1f302010-06-10 23:31:35 -07001896 dst_hold(&rt->dst);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08001897 break;
1898 }
1899out:
Li RongQing5744dd92012-09-11 21:59:01 +00001900 read_unlock_bh(&table->tb6_lock);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08001901 return rt;
1902}
1903
Daniel Lezcanoefa2cea2008-03-04 13:46:48 -08001904static struct rt6_info *rt6_add_route_info(struct net *net,
Eric Dumazetb71d1d42011-04-22 04:53:02 +00001905 const struct in6_addr *prefix, int prefixlen,
1906 const struct in6_addr *gwaddr, int ifindex,
Eric Dumazet95c96172012-04-15 05:58:06 +00001907 unsigned int pref)
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08001908{
Thomas Graf86872cb2006-08-22 00:01:08 -07001909 struct fib6_config cfg = {
1910 .fc_table = RT6_TABLE_INFO,
Rami Rosen238fc7e2008-02-09 23:43:11 -08001911 .fc_metric = IP6_RT_PRIO_USER,
Thomas Graf86872cb2006-08-22 00:01:08 -07001912 .fc_ifindex = ifindex,
1913 .fc_dst_len = prefixlen,
1914 .fc_flags = RTF_GATEWAY | RTF_ADDRCONF | RTF_ROUTEINFO |
1915 RTF_UP | RTF_PREF(pref),
Eric W. Biederman15e47302012-09-07 20:12:54 +00001916 .fc_nlinfo.portid = 0,
Daniel Lezcanoefa2cea2008-03-04 13:46:48 -08001917 .fc_nlinfo.nlh = NULL,
1918 .fc_nlinfo.nl_net = net,
Thomas Graf86872cb2006-08-22 00:01:08 -07001919 };
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08001920
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001921 cfg.fc_dst = *prefix;
1922 cfg.fc_gateway = *gwaddr;
Thomas Graf86872cb2006-08-22 00:01:08 -07001923
YOSHIFUJI Hideakie317da92006-03-20 17:06:42 -08001924 /* We should treat it as a default route if prefix length is 0. */
1925 if (!prefixlen)
Thomas Graf86872cb2006-08-22 00:01:08 -07001926 cfg.fc_flags |= RTF_DEFAULT;
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08001927
Thomas Graf86872cb2006-08-22 00:01:08 -07001928 ip6_route_add(&cfg);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08001929
Daniel Lezcanoefa2cea2008-03-04 13:46:48 -08001930 return rt6_get_route_info(net, prefix, prefixlen, gwaddr, ifindex);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08001931}
1932#endif
1933
Eric Dumazetb71d1d42011-04-22 04:53:02 +00001934struct rt6_info *rt6_get_dflt_router(const struct in6_addr *addr, struct net_device *dev)
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001935{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001936 struct rt6_info *rt;
Thomas Grafc71099a2006-08-04 23:20:06 -07001937 struct fib6_table *table;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001939 table = fib6_get_table(dev_net(dev), RT6_TABLE_DFLT);
David S. Miller38308472011-12-03 18:02:47 -05001940 if (!table)
Thomas Grafc71099a2006-08-04 23:20:06 -07001941 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001942
Li RongQing5744dd92012-09-11 21:59:01 +00001943 read_lock_bh(&table->tb6_lock);
Changli Gaod8d1f302010-06-10 23:31:35 -07001944 for (rt = table->tb6_root.leaf; rt; rt=rt->dst.rt6_next) {
David S. Millerd1918542011-12-28 20:19:20 -05001945 if (dev == rt->dst.dev &&
YOSHIFUJI Hideaki045927f2006-03-20 17:00:48 -08001946 ((rt->rt6i_flags & (RTF_ADDRCONF | RTF_DEFAULT)) == (RTF_ADDRCONF | RTF_DEFAULT)) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001947 ipv6_addr_equal(&rt->rt6i_gateway, addr))
1948 break;
1949 }
1950 if (rt)
Changli Gaod8d1f302010-06-10 23:31:35 -07001951 dst_hold(&rt->dst);
Li RongQing5744dd92012-09-11 21:59:01 +00001952 read_unlock_bh(&table->tb6_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953 return rt;
1954}
1955
Eric Dumazetb71d1d42011-04-22 04:53:02 +00001956struct rt6_info *rt6_add_dflt_router(const struct in6_addr *gwaddr,
YOSHIFUJI Hideakiebacaaa2006-03-20 17:04:53 -08001957 struct net_device *dev,
1958 unsigned int pref)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001959{
Thomas Graf86872cb2006-08-22 00:01:08 -07001960 struct fib6_config cfg = {
1961 .fc_table = RT6_TABLE_DFLT,
Rami Rosen238fc7e2008-02-09 23:43:11 -08001962 .fc_metric = IP6_RT_PRIO_USER,
Thomas Graf86872cb2006-08-22 00:01:08 -07001963 .fc_ifindex = dev->ifindex,
1964 .fc_flags = RTF_GATEWAY | RTF_ADDRCONF | RTF_DEFAULT |
1965 RTF_UP | RTF_EXPIRES | RTF_PREF(pref),
Eric W. Biederman15e47302012-09-07 20:12:54 +00001966 .fc_nlinfo.portid = 0,
Daniel Lezcano55786892008-03-04 13:47:47 -08001967 .fc_nlinfo.nlh = NULL,
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001968 .fc_nlinfo.nl_net = dev_net(dev),
Thomas Graf86872cb2006-08-22 00:01:08 -07001969 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001971 cfg.fc_gateway = *gwaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972
Thomas Graf86872cb2006-08-22 00:01:08 -07001973 ip6_route_add(&cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001974
Linus Torvalds1da177e2005-04-16 15:20:36 -07001975 return rt6_get_dflt_router(gwaddr, dev);
1976}
1977
Daniel Lezcano7b4da532008-03-04 13:47:14 -08001978void rt6_purge_dflt_routers(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001979{
1980 struct rt6_info *rt;
Thomas Grafc71099a2006-08-04 23:20:06 -07001981 struct fib6_table *table;
1982
1983 /* NOTE: Keep consistent with rt6_get_dflt_router */
Daniel Lezcano7b4da532008-03-04 13:47:14 -08001984 table = fib6_get_table(net, RT6_TABLE_DFLT);
David S. Miller38308472011-12-03 18:02:47 -05001985 if (!table)
Thomas Grafc71099a2006-08-04 23:20:06 -07001986 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001987
1988restart:
Thomas Grafc71099a2006-08-04 23:20:06 -07001989 read_lock_bh(&table->tb6_lock);
Changli Gaod8d1f302010-06-10 23:31:35 -07001990 for (rt = table->tb6_root.leaf; rt; rt = rt->dst.rt6_next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001991 if (rt->rt6i_flags & (RTF_DEFAULT | RTF_ADDRCONF)) {
Changli Gaod8d1f302010-06-10 23:31:35 -07001992 dst_hold(&rt->dst);
Thomas Grafc71099a2006-08-04 23:20:06 -07001993 read_unlock_bh(&table->tb6_lock);
Thomas Grafe0a1ad732006-08-22 00:00:21 -07001994 ip6_del_rt(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001995 goto restart;
1996 }
1997 }
Thomas Grafc71099a2006-08-04 23:20:06 -07001998 read_unlock_bh(&table->tb6_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001999}
2000
Daniel Lezcano55786892008-03-04 13:47:47 -08002001static void rtmsg_to_fib6_config(struct net *net,
2002 struct in6_rtmsg *rtmsg,
Thomas Graf86872cb2006-08-22 00:01:08 -07002003 struct fib6_config *cfg)
2004{
2005 memset(cfg, 0, sizeof(*cfg));
2006
2007 cfg->fc_table = RT6_TABLE_MAIN;
2008 cfg->fc_ifindex = rtmsg->rtmsg_ifindex;
2009 cfg->fc_metric = rtmsg->rtmsg_metric;
2010 cfg->fc_expires = rtmsg->rtmsg_info;
2011 cfg->fc_dst_len = rtmsg->rtmsg_dst_len;
2012 cfg->fc_src_len = rtmsg->rtmsg_src_len;
2013 cfg->fc_flags = rtmsg->rtmsg_flags;
2014
Daniel Lezcano55786892008-03-04 13:47:47 -08002015 cfg->fc_nlinfo.nl_net = net;
Benjamin Theryf1243c22008-02-26 18:10:03 -08002016
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00002017 cfg->fc_dst = rtmsg->rtmsg_dst;
2018 cfg->fc_src = rtmsg->rtmsg_src;
2019 cfg->fc_gateway = rtmsg->rtmsg_gateway;
Thomas Graf86872cb2006-08-22 00:01:08 -07002020}
2021
Daniel Lezcano55786892008-03-04 13:47:47 -08002022int ipv6_route_ioctl(struct net *net, unsigned int cmd, void __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002023{
Thomas Graf86872cb2006-08-22 00:01:08 -07002024 struct fib6_config cfg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002025 struct in6_rtmsg rtmsg;
2026 int err;
2027
2028 switch(cmd) {
2029 case SIOCADDRT: /* Add a route */
2030 case SIOCDELRT: /* Delete a route */
Eric W. Biedermanaf31f412012-11-16 03:03:06 +00002031 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002032 return -EPERM;
2033 err = copy_from_user(&rtmsg, arg,
2034 sizeof(struct in6_rtmsg));
2035 if (err)
2036 return -EFAULT;
Thomas Graf86872cb2006-08-22 00:01:08 -07002037
Daniel Lezcano55786892008-03-04 13:47:47 -08002038 rtmsg_to_fib6_config(net, &rtmsg, &cfg);
Thomas Graf86872cb2006-08-22 00:01:08 -07002039
Linus Torvalds1da177e2005-04-16 15:20:36 -07002040 rtnl_lock();
2041 switch (cmd) {
2042 case SIOCADDRT:
Thomas Graf86872cb2006-08-22 00:01:08 -07002043 err = ip6_route_add(&cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044 break;
2045 case SIOCDELRT:
Thomas Graf86872cb2006-08-22 00:01:08 -07002046 err = ip6_route_del(&cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002047 break;
2048 default:
2049 err = -EINVAL;
2050 }
2051 rtnl_unlock();
2052
2053 return err;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07002054 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002055
2056 return -EINVAL;
2057}
2058
2059/*
2060 * Drop the packet on the floor
2061 */
2062
Brian Haleyd5fdd6b2009-06-23 04:31:07 -07002063static int ip6_pkt_drop(struct sk_buff *skb, u8 code, int ipstats_mib_noroutes)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064{
YOSHIFUJI Hideaki612f09e2007-04-13 16:18:02 -07002065 int type;
Eric Dumazetadf30902009-06-02 05:19:30 +00002066 struct dst_entry *dst = skb_dst(skb);
YOSHIFUJI Hideaki612f09e2007-04-13 16:18:02 -07002067 switch (ipstats_mib_noroutes) {
2068 case IPSTATS_MIB_INNOROUTES:
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -07002069 type = ipv6_addr_type(&ipv6_hdr(skb)->daddr);
Ulrich Weber45bb0062010-02-25 23:28:58 +00002070 if (type == IPV6_ADDR_ANY) {
Denis V. Lunev3bd653c2008-10-08 10:54:51 -07002071 IP6_INC_STATS(dev_net(dst->dev), ip6_dst_idev(dst),
2072 IPSTATS_MIB_INADDRERRORS);
YOSHIFUJI Hideaki612f09e2007-04-13 16:18:02 -07002073 break;
2074 }
2075 /* FALLTHROUGH */
2076 case IPSTATS_MIB_OUTNOROUTES:
Denis V. Lunev3bd653c2008-10-08 10:54:51 -07002077 IP6_INC_STATS(dev_net(dst->dev), ip6_dst_idev(dst),
2078 ipstats_mib_noroutes);
YOSHIFUJI Hideaki612f09e2007-04-13 16:18:02 -07002079 break;
2080 }
Alexey Dobriyan3ffe5332010-02-18 08:25:24 +00002081 icmpv6_send(skb, ICMPV6_DEST_UNREACH, code, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082 kfree_skb(skb);
2083 return 0;
2084}
2085
Thomas Graf9ce8ade2006-10-18 20:46:54 -07002086static int ip6_pkt_discard(struct sk_buff *skb)
2087{
YOSHIFUJI Hideaki612f09e2007-04-13 16:18:02 -07002088 return ip6_pkt_drop(skb, ICMPV6_NOROUTE, IPSTATS_MIB_INNOROUTES);
Thomas Graf9ce8ade2006-10-18 20:46:54 -07002089}
2090
Arnaldo Carvalho de Melo20380732005-08-16 02:18:02 -03002091static int ip6_pkt_discard_out(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002092{
Eric Dumazetadf30902009-06-02 05:19:30 +00002093 skb->dev = skb_dst(skb)->dev;
YOSHIFUJI Hideaki612f09e2007-04-13 16:18:02 -07002094 return ip6_pkt_drop(skb, ICMPV6_NOROUTE, IPSTATS_MIB_OUTNOROUTES);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002095}
2096
David S. Miller6723ab52006-10-18 21:20:57 -07002097#ifdef CONFIG_IPV6_MULTIPLE_TABLES
2098
Thomas Graf9ce8ade2006-10-18 20:46:54 -07002099static int ip6_pkt_prohibit(struct sk_buff *skb)
2100{
YOSHIFUJI Hideaki612f09e2007-04-13 16:18:02 -07002101 return ip6_pkt_drop(skb, ICMPV6_ADM_PROHIBITED, IPSTATS_MIB_INNOROUTES);
Thomas Graf9ce8ade2006-10-18 20:46:54 -07002102}
2103
2104static int ip6_pkt_prohibit_out(struct sk_buff *skb)
2105{
Eric Dumazetadf30902009-06-02 05:19:30 +00002106 skb->dev = skb_dst(skb)->dev;
YOSHIFUJI Hideaki612f09e2007-04-13 16:18:02 -07002107 return ip6_pkt_drop(skb, ICMPV6_ADM_PROHIBITED, IPSTATS_MIB_OUTNOROUTES);
Thomas Graf9ce8ade2006-10-18 20:46:54 -07002108}
2109
David S. Miller6723ab52006-10-18 21:20:57 -07002110#endif
2111
Linus Torvalds1da177e2005-04-16 15:20:36 -07002112/*
2113 * Allocate a dst for local (unicast / anycast) address.
2114 */
2115
2116struct rt6_info *addrconf_dst_alloc(struct inet6_dev *idev,
2117 const struct in6_addr *addr,
David S. Miller8f031512011-12-06 16:48:14 -05002118 bool anycast)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002119{
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09002120 struct net *net = dev_net(idev->dev);
David S. Miller8b96d222012-06-11 02:01:56 -07002121 struct rt6_info *rt = ip6_dst_alloc(net, net->loopback_dev, 0, NULL);
David S. Millerf83c7792011-12-28 15:41:23 -05002122 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123
David S. Miller38308472011-12-03 18:02:47 -05002124 if (!rt) {
Joe Perchesf3213832012-05-15 14:11:53 +00002125 net_warn_ratelimited("Maximum number of routes reached, consider increasing route/max_size\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126 return ERR_PTR(-ENOMEM);
Ben Greear40385652010-11-08 12:33:48 +00002127 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128
Linus Torvalds1da177e2005-04-16 15:20:36 -07002129 in6_dev_hold(idev);
2130
David S. Miller11d53b42011-06-24 15:23:34 -07002131 rt->dst.flags |= DST_HOST;
Changli Gaod8d1f302010-06-10 23:31:35 -07002132 rt->dst.input = ip6_input;
2133 rt->dst.output = ip6_output;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134 rt->rt6i_idev = idev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002135
2136 rt->rt6i_flags = RTF_UP | RTF_NONEXTHOP;
YOSHIFUJI Hideaki58c4fb82005-12-21 22:56:42 +09002137 if (anycast)
2138 rt->rt6i_flags |= RTF_ANYCAST;
2139 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002140 rt->rt6i_flags |= RTF_LOCAL;
David S. Miller8ade06c2011-12-29 18:51:57 -05002141 err = rt6_bind_neighbour(rt, rt->dst.dev);
David S. Millerf83c7792011-12-28 15:41:23 -05002142 if (err) {
Changli Gaod8d1f302010-06-10 23:31:35 -07002143 dst_free(&rt->dst);
David S. Millerf83c7792011-12-28 15:41:23 -05002144 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002145 }
2146
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00002147 rt->rt6i_dst.addr = *addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002148 rt->rt6i_dst.plen = 128;
Daniel Lezcano55786892008-03-04 13:47:47 -08002149 rt->rt6i_table = fib6_get_table(net, RT6_TABLE_LOCAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002150
Changli Gaod8d1f302010-06-10 23:31:35 -07002151 atomic_set(&rt->dst.__refcnt, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002152
2153 return rt;
2154}
2155
Daniel Walterc3968a82011-04-13 21:10:57 +00002156int ip6_route_get_saddr(struct net *net,
2157 struct rt6_info *rt,
Eric Dumazetb71d1d42011-04-22 04:53:02 +00002158 const struct in6_addr *daddr,
Daniel Walterc3968a82011-04-13 21:10:57 +00002159 unsigned int prefs,
2160 struct in6_addr *saddr)
2161{
2162 struct inet6_dev *idev = ip6_dst_idev((struct dst_entry*)rt);
2163 int err = 0;
2164 if (rt->rt6i_prefsrc.plen)
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00002165 *saddr = rt->rt6i_prefsrc.addr;
Daniel Walterc3968a82011-04-13 21:10:57 +00002166 else
2167 err = ipv6_dev_get_saddr(net, idev ? idev->dev : NULL,
2168 daddr, prefs, saddr);
2169 return err;
2170}
2171
2172/* remove deleted ip from prefsrc entries */
2173struct arg_dev_net_ip {
2174 struct net_device *dev;
2175 struct net *net;
2176 struct in6_addr *addr;
2177};
2178
2179static int fib6_remove_prefsrc(struct rt6_info *rt, void *arg)
2180{
2181 struct net_device *dev = ((struct arg_dev_net_ip *)arg)->dev;
2182 struct net *net = ((struct arg_dev_net_ip *)arg)->net;
2183 struct in6_addr *addr = ((struct arg_dev_net_ip *)arg)->addr;
2184
David S. Millerd1918542011-12-28 20:19:20 -05002185 if (((void *)rt->dst.dev == dev || !dev) &&
Daniel Walterc3968a82011-04-13 21:10:57 +00002186 rt != net->ipv6.ip6_null_entry &&
2187 ipv6_addr_equal(addr, &rt->rt6i_prefsrc.addr)) {
2188 /* remove prefsrc entry */
2189 rt->rt6i_prefsrc.plen = 0;
2190 }
2191 return 0;
2192}
2193
2194void rt6_remove_prefsrc(struct inet6_ifaddr *ifp)
2195{
2196 struct net *net = dev_net(ifp->idev->dev);
2197 struct arg_dev_net_ip adni = {
2198 .dev = ifp->idev->dev,
2199 .net = net,
2200 .addr = &ifp->addr,
2201 };
2202 fib6_clean_all(net, fib6_remove_prefsrc, 0, &adni);
2203}
2204
Daniel Lezcano8ed67782008-03-04 13:48:30 -08002205struct arg_dev_net {
2206 struct net_device *dev;
2207 struct net *net;
2208};
2209
Linus Torvalds1da177e2005-04-16 15:20:36 -07002210static int fib6_ifdown(struct rt6_info *rt, void *arg)
2211{
stephen hemmingerbc3ef662010-12-16 17:42:40 +00002212 const struct arg_dev_net *adn = arg;
2213 const struct net_device *dev = adn->dev;
Daniel Lezcano8ed67782008-03-04 13:48:30 -08002214
David S. Millerd1918542011-12-28 20:19:20 -05002215 if ((rt->dst.dev == dev || !dev) &&
David S. Millerc159d302011-12-26 15:24:36 -05002216 rt != adn->net->ipv6.ip6_null_entry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002217 return -1;
David S. Millerc159d302011-12-26 15:24:36 -05002218
Linus Torvalds1da177e2005-04-16 15:20:36 -07002219 return 0;
2220}
2221
Daniel Lezcanof3db4852008-03-03 23:27:06 -08002222void rt6_ifdown(struct net *net, struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002223{
Daniel Lezcano8ed67782008-03-04 13:48:30 -08002224 struct arg_dev_net adn = {
2225 .dev = dev,
2226 .net = net,
2227 };
2228
2229 fib6_clean_all(net, fib6_ifdown, 0, &adn);
David S. Miller1e493d12008-09-10 17:27:15 -07002230 icmp6_clean_all(fib6_ifdown, &adn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002231}
2232
Eric Dumazet95c96172012-04-15 05:58:06 +00002233struct rt6_mtu_change_arg {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002234 struct net_device *dev;
Eric Dumazet95c96172012-04-15 05:58:06 +00002235 unsigned int mtu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002236};
2237
2238static int rt6_mtu_change_route(struct rt6_info *rt, void *p_arg)
2239{
2240 struct rt6_mtu_change_arg *arg = (struct rt6_mtu_change_arg *) p_arg;
2241 struct inet6_dev *idev;
2242
2243 /* In IPv6 pmtu discovery is not optional,
2244 so that RTAX_MTU lock cannot disable it.
2245 We still use this lock to block changes
2246 caused by addrconf/ndisc.
2247 */
2248
2249 idev = __in6_dev_get(arg->dev);
David S. Miller38308472011-12-03 18:02:47 -05002250 if (!idev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002251 return 0;
2252
2253 /* For administrative MTU increase, there is no way to discover
2254 IPv6 PMTU increase, so PMTU increase should be updated here.
2255 Since RFC 1981 doesn't include administrative MTU increase
2256 update PMTU increase is a MUST. (i.e. jumbo frame)
2257 */
2258 /*
2259 If new MTU is less than route PMTU, this new MTU will be the
2260 lowest MTU in the path, update the route PMTU to reflect PMTU
2261 decreases; if new MTU is greater than route PMTU, and the
2262 old MTU is the lowest MTU in the path, update the route PMTU
2263 to reflect the increase. In this case if the other nodes' MTU
2264 also have the lowest MTU, TOO BIG MESSAGE will be lead to
2265 PMTU discouvery.
2266 */
David S. Millerd1918542011-12-28 20:19:20 -05002267 if (rt->dst.dev == arg->dev &&
Changli Gaod8d1f302010-06-10 23:31:35 -07002268 !dst_metric_locked(&rt->dst, RTAX_MTU) &&
2269 (dst_mtu(&rt->dst) >= arg->mtu ||
2270 (dst_mtu(&rt->dst) < arg->mtu &&
2271 dst_mtu(&rt->dst) == idev->cnf.mtu6))) {
David S. Millerdefb3512010-12-08 21:16:57 -08002272 dst_metric_set(&rt->dst, RTAX_MTU, arg->mtu);
Simon Arlott566cfd82007-07-26 00:09:55 -07002273 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002274 return 0;
2275}
2276
Eric Dumazet95c96172012-04-15 05:58:06 +00002277void rt6_mtu_change(struct net_device *dev, unsigned int mtu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002278{
Thomas Grafc71099a2006-08-04 23:20:06 -07002279 struct rt6_mtu_change_arg arg = {
2280 .dev = dev,
2281 .mtu = mtu,
2282 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002283
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09002284 fib6_clean_all(dev_net(dev), rt6_mtu_change_route, 0, &arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002285}
2286
Patrick McHardyef7c79e2007-06-05 12:38:30 -07002287static const struct nla_policy rtm_ipv6_policy[RTA_MAX+1] = {
Thomas Graf5176f912006-08-26 20:13:18 -07002288 [RTA_GATEWAY] = { .len = sizeof(struct in6_addr) },
Thomas Graf86872cb2006-08-22 00:01:08 -07002289 [RTA_OIF] = { .type = NLA_U32 },
Thomas Grafab364a62006-08-22 00:01:47 -07002290 [RTA_IIF] = { .type = NLA_U32 },
Thomas Graf86872cb2006-08-22 00:01:08 -07002291 [RTA_PRIORITY] = { .type = NLA_U32 },
2292 [RTA_METRICS] = { .type = NLA_NESTED },
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00002293 [RTA_MULTIPATH] = { .len = sizeof(struct rtnexthop) },
Thomas Graf86872cb2006-08-22 00:01:08 -07002294};
2295
2296static int rtm_to_fib6_config(struct sk_buff *skb, struct nlmsghdr *nlh,
2297 struct fib6_config *cfg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002298{
Thomas Graf86872cb2006-08-22 00:01:08 -07002299 struct rtmsg *rtm;
2300 struct nlattr *tb[RTA_MAX+1];
2301 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002302
Thomas Graf86872cb2006-08-22 00:01:08 -07002303 err = nlmsg_parse(nlh, sizeof(*rtm), tb, RTA_MAX, rtm_ipv6_policy);
2304 if (err < 0)
2305 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002306
Thomas Graf86872cb2006-08-22 00:01:08 -07002307 err = -EINVAL;
2308 rtm = nlmsg_data(nlh);
2309 memset(cfg, 0, sizeof(*cfg));
2310
2311 cfg->fc_table = rtm->rtm_table;
2312 cfg->fc_dst_len = rtm->rtm_dst_len;
2313 cfg->fc_src_len = rtm->rtm_src_len;
2314 cfg->fc_flags = RTF_UP;
2315 cfg->fc_protocol = rtm->rtm_protocol;
Nicolas Dichtelef2c7d72012-09-05 02:12:42 +00002316 cfg->fc_type = rtm->rtm_type;
Thomas Graf86872cb2006-08-22 00:01:08 -07002317
Nicolas Dichtelef2c7d72012-09-05 02:12:42 +00002318 if (rtm->rtm_type == RTN_UNREACHABLE ||
2319 rtm->rtm_type == RTN_BLACKHOLE ||
Nicolas Dichtelb4949ab2012-09-06 05:53:35 +00002320 rtm->rtm_type == RTN_PROHIBIT ||
2321 rtm->rtm_type == RTN_THROW)
Thomas Graf86872cb2006-08-22 00:01:08 -07002322 cfg->fc_flags |= RTF_REJECT;
2323
Maciej Żenczykowskiab79ad12010-09-27 00:07:02 +00002324 if (rtm->rtm_type == RTN_LOCAL)
2325 cfg->fc_flags |= RTF_LOCAL;
2326
Eric W. Biederman15e47302012-09-07 20:12:54 +00002327 cfg->fc_nlinfo.portid = NETLINK_CB(skb).portid;
Thomas Graf86872cb2006-08-22 00:01:08 -07002328 cfg->fc_nlinfo.nlh = nlh;
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09002329 cfg->fc_nlinfo.nl_net = sock_net(skb->sk);
Thomas Graf86872cb2006-08-22 00:01:08 -07002330
2331 if (tb[RTA_GATEWAY]) {
2332 nla_memcpy(&cfg->fc_gateway, tb[RTA_GATEWAY], 16);
2333 cfg->fc_flags |= RTF_GATEWAY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002334 }
Thomas Graf86872cb2006-08-22 00:01:08 -07002335
2336 if (tb[RTA_DST]) {
2337 int plen = (rtm->rtm_dst_len + 7) >> 3;
2338
2339 if (nla_len(tb[RTA_DST]) < plen)
2340 goto errout;
2341
2342 nla_memcpy(&cfg->fc_dst, tb[RTA_DST], plen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002343 }
Thomas Graf86872cb2006-08-22 00:01:08 -07002344
2345 if (tb[RTA_SRC]) {
2346 int plen = (rtm->rtm_src_len + 7) >> 3;
2347
2348 if (nla_len(tb[RTA_SRC]) < plen)
2349 goto errout;
2350
2351 nla_memcpy(&cfg->fc_src, tb[RTA_SRC], plen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002352 }
Thomas Graf86872cb2006-08-22 00:01:08 -07002353
Daniel Walterc3968a82011-04-13 21:10:57 +00002354 if (tb[RTA_PREFSRC])
2355 nla_memcpy(&cfg->fc_prefsrc, tb[RTA_PREFSRC], 16);
2356
Thomas Graf86872cb2006-08-22 00:01:08 -07002357 if (tb[RTA_OIF])
2358 cfg->fc_ifindex = nla_get_u32(tb[RTA_OIF]);
2359
2360 if (tb[RTA_PRIORITY])
2361 cfg->fc_metric = nla_get_u32(tb[RTA_PRIORITY]);
2362
2363 if (tb[RTA_METRICS]) {
2364 cfg->fc_mx = nla_data(tb[RTA_METRICS]);
2365 cfg->fc_mx_len = nla_len(tb[RTA_METRICS]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002366 }
Thomas Graf86872cb2006-08-22 00:01:08 -07002367
2368 if (tb[RTA_TABLE])
2369 cfg->fc_table = nla_get_u32(tb[RTA_TABLE]);
2370
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00002371 if (tb[RTA_MULTIPATH]) {
2372 cfg->fc_mp = nla_data(tb[RTA_MULTIPATH]);
2373 cfg->fc_mp_len = nla_len(tb[RTA_MULTIPATH]);
2374 }
2375
Thomas Graf86872cb2006-08-22 00:01:08 -07002376 err = 0;
2377errout:
2378 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002379}
2380
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00002381static int ip6_route_multipath(struct fib6_config *cfg, int add)
2382{
2383 struct fib6_config r_cfg;
2384 struct rtnexthop *rtnh;
2385 int remaining;
2386 int attrlen;
2387 int err = 0, last_err = 0;
2388
2389beginning:
2390 rtnh = (struct rtnexthop *)cfg->fc_mp;
2391 remaining = cfg->fc_mp_len;
2392
2393 /* Parse a Multipath Entry */
2394 while (rtnh_ok(rtnh, remaining)) {
2395 memcpy(&r_cfg, cfg, sizeof(*cfg));
2396 if (rtnh->rtnh_ifindex)
2397 r_cfg.fc_ifindex = rtnh->rtnh_ifindex;
2398
2399 attrlen = rtnh_attrlen(rtnh);
2400 if (attrlen > 0) {
2401 struct nlattr *nla, *attrs = rtnh_attrs(rtnh);
2402
2403 nla = nla_find(attrs, attrlen, RTA_GATEWAY);
2404 if (nla) {
2405 nla_memcpy(&r_cfg.fc_gateway, nla, 16);
2406 r_cfg.fc_flags |= RTF_GATEWAY;
2407 }
2408 }
2409 err = add ? ip6_route_add(&r_cfg) : ip6_route_del(&r_cfg);
2410 if (err) {
2411 last_err = err;
2412 /* If we are trying to remove a route, do not stop the
2413 * loop when ip6_route_del() fails (because next hop is
2414 * already gone), we should try to remove all next hops.
2415 */
2416 if (add) {
2417 /* If add fails, we should try to delete all
2418 * next hops that have been already added.
2419 */
2420 add = 0;
2421 goto beginning;
2422 }
2423 }
Nicolas Dichtel1a724182012-11-01 22:58:22 +00002424 /* Because each route is added like a single route we remove
2425 * this flag after the first nexthop (if there is a collision,
2426 * we have already fail to add the first nexthop:
2427 * fib6_add_rt2node() has reject it).
2428 */
2429 cfg->fc_nlinfo.nlh->nlmsg_flags &= ~NLM_F_EXCL;
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00002430 rtnh = rtnh_next(rtnh, &remaining);
2431 }
2432
2433 return last_err;
2434}
2435
Thomas Grafc127ea22007-03-22 11:58:32 -07002436static int inet6_rtm_delroute(struct sk_buff *skb, struct nlmsghdr* nlh, void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002437{
Thomas Graf86872cb2006-08-22 00:01:08 -07002438 struct fib6_config cfg;
2439 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002440
Thomas Graf86872cb2006-08-22 00:01:08 -07002441 err = rtm_to_fib6_config(skb, nlh, &cfg);
2442 if (err < 0)
2443 return err;
2444
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00002445 if (cfg.fc_mp)
2446 return ip6_route_multipath(&cfg, 0);
2447 else
2448 return ip6_route_del(&cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002449}
2450
Thomas Grafc127ea22007-03-22 11:58:32 -07002451static int inet6_rtm_newroute(struct sk_buff *skb, struct nlmsghdr* nlh, void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002452{
Thomas Graf86872cb2006-08-22 00:01:08 -07002453 struct fib6_config cfg;
2454 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002455
Thomas Graf86872cb2006-08-22 00:01:08 -07002456 err = rtm_to_fib6_config(skb, nlh, &cfg);
2457 if (err < 0)
2458 return err;
2459
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00002460 if (cfg.fc_mp)
2461 return ip6_route_multipath(&cfg, 1);
2462 else
2463 return ip6_route_add(&cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002464}
2465
Thomas Graf339bf982006-11-10 14:10:15 -08002466static inline size_t rt6_nlmsg_size(void)
2467{
2468 return NLMSG_ALIGN(sizeof(struct rtmsg))
2469 + nla_total_size(16) /* RTA_SRC */
2470 + nla_total_size(16) /* RTA_DST */
2471 + nla_total_size(16) /* RTA_GATEWAY */
2472 + nla_total_size(16) /* RTA_PREFSRC */
2473 + nla_total_size(4) /* RTA_TABLE */
2474 + nla_total_size(4) /* RTA_IIF */
2475 + nla_total_size(4) /* RTA_OIF */
2476 + nla_total_size(4) /* RTA_PRIORITY */
Noriaki TAKAMIYA6a2b9ce2007-01-23 22:09:41 -08002477 + RTAX_MAX * nla_total_size(4) /* RTA_METRICS */
Thomas Graf339bf982006-11-10 14:10:15 -08002478 + nla_total_size(sizeof(struct rta_cacheinfo));
2479}
2480
Brian Haley191cd582008-08-14 15:33:21 -07002481static int rt6_fill_node(struct net *net,
2482 struct sk_buff *skb, struct rt6_info *rt,
Jamal Hadi Salim0d51aa82005-06-21 13:51:04 -07002483 struct in6_addr *dst, struct in6_addr *src,
Eric W. Biederman15e47302012-09-07 20:12:54 +00002484 int iif, int type, u32 portid, u32 seq,
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09002485 int prefix, int nowait, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002486{
2487 struct rtmsg *rtm;
Thomas Graf2d7202b2006-08-22 00:01:27 -07002488 struct nlmsghdr *nlh;
Thomas Grafe3703b32006-11-27 09:27:07 -08002489 long expires;
Patrick McHardy9e762a42006-08-10 23:09:48 -07002490 u32 table;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002491
2492 if (prefix) { /* user wants prefix routes only */
2493 if (!(rt->rt6i_flags & RTF_PREFIX_RT)) {
2494 /* success since this is not a prefix route */
2495 return 1;
2496 }
2497 }
2498
Eric W. Biederman15e47302012-09-07 20:12:54 +00002499 nlh = nlmsg_put(skb, portid, seq, type, sizeof(*rtm), flags);
David S. Miller38308472011-12-03 18:02:47 -05002500 if (!nlh)
Patrick McHardy26932562007-01-31 23:16:40 -08002501 return -EMSGSIZE;
Thomas Graf2d7202b2006-08-22 00:01:27 -07002502
2503 rtm = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002504 rtm->rtm_family = AF_INET6;
2505 rtm->rtm_dst_len = rt->rt6i_dst.plen;
2506 rtm->rtm_src_len = rt->rt6i_src.plen;
2507 rtm->rtm_tos = 0;
Thomas Grafc71099a2006-08-04 23:20:06 -07002508 if (rt->rt6i_table)
Patrick McHardy9e762a42006-08-10 23:09:48 -07002509 table = rt->rt6i_table->tb6_id;
Thomas Grafc71099a2006-08-04 23:20:06 -07002510 else
Patrick McHardy9e762a42006-08-10 23:09:48 -07002511 table = RT6_TABLE_UNSPEC;
2512 rtm->rtm_table = table;
David S. Millerc78679e2012-04-01 20:27:33 -04002513 if (nla_put_u32(skb, RTA_TABLE, table))
2514 goto nla_put_failure;
Nicolas Dichtelef2c7d72012-09-05 02:12:42 +00002515 if (rt->rt6i_flags & RTF_REJECT) {
2516 switch (rt->dst.error) {
2517 case -EINVAL:
2518 rtm->rtm_type = RTN_BLACKHOLE;
2519 break;
2520 case -EACCES:
2521 rtm->rtm_type = RTN_PROHIBIT;
2522 break;
Nicolas Dichtelb4949ab2012-09-06 05:53:35 +00002523 case -EAGAIN:
2524 rtm->rtm_type = RTN_THROW;
2525 break;
Nicolas Dichtelef2c7d72012-09-05 02:12:42 +00002526 default:
2527 rtm->rtm_type = RTN_UNREACHABLE;
2528 break;
2529 }
2530 }
David S. Miller38308472011-12-03 18:02:47 -05002531 else if (rt->rt6i_flags & RTF_LOCAL)
Maciej Żenczykowskiab79ad12010-09-27 00:07:02 +00002532 rtm->rtm_type = RTN_LOCAL;
David S. Millerd1918542011-12-28 20:19:20 -05002533 else if (rt->dst.dev && (rt->dst.dev->flags & IFF_LOOPBACK))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002534 rtm->rtm_type = RTN_LOCAL;
2535 else
2536 rtm->rtm_type = RTN_UNICAST;
2537 rtm->rtm_flags = 0;
2538 rtm->rtm_scope = RT_SCOPE_UNIVERSE;
2539 rtm->rtm_protocol = rt->rt6i_protocol;
David S. Miller38308472011-12-03 18:02:47 -05002540 if (rt->rt6i_flags & RTF_DYNAMIC)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002541 rtm->rtm_protocol = RTPROT_REDIRECT;
Denis Ovsienkof0396f602012-07-10 04:45:50 +00002542 else if (rt->rt6i_flags & RTF_ADDRCONF) {
2543 if (rt->rt6i_flags & (RTF_DEFAULT | RTF_ROUTEINFO))
2544 rtm->rtm_protocol = RTPROT_RA;
2545 else
2546 rtm->rtm_protocol = RTPROT_KERNEL;
2547 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002548
David S. Miller38308472011-12-03 18:02:47 -05002549 if (rt->rt6i_flags & RTF_CACHE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002550 rtm->rtm_flags |= RTM_F_CLONED;
2551
2552 if (dst) {
David S. Millerc78679e2012-04-01 20:27:33 -04002553 if (nla_put(skb, RTA_DST, 16, dst))
2554 goto nla_put_failure;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002555 rtm->rtm_dst_len = 128;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002556 } else if (rtm->rtm_dst_len)
David S. Millerc78679e2012-04-01 20:27:33 -04002557 if (nla_put(skb, RTA_DST, 16, &rt->rt6i_dst.addr))
2558 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002559#ifdef CONFIG_IPV6_SUBTREES
2560 if (src) {
David S. Millerc78679e2012-04-01 20:27:33 -04002561 if (nla_put(skb, RTA_SRC, 16, src))
2562 goto nla_put_failure;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002563 rtm->rtm_src_len = 128;
David S. Millerc78679e2012-04-01 20:27:33 -04002564 } else if (rtm->rtm_src_len &&
2565 nla_put(skb, RTA_SRC, 16, &rt->rt6i_src.addr))
2566 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002567#endif
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09002568 if (iif) {
2569#ifdef CONFIG_IPV6_MROUTE
2570 if (ipv6_addr_is_multicast(&rt->rt6i_dst.addr)) {
Benjamin Thery8229efd2008-12-10 16:30:15 -08002571 int err = ip6mr_get_route(net, skb, rtm, nowait);
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09002572 if (err <= 0) {
2573 if (!nowait) {
2574 if (err == 0)
2575 return 0;
2576 goto nla_put_failure;
2577 } else {
2578 if (err == -EMSGSIZE)
2579 goto nla_put_failure;
2580 }
2581 }
2582 } else
2583#endif
David S. Millerc78679e2012-04-01 20:27:33 -04002584 if (nla_put_u32(skb, RTA_IIF, iif))
2585 goto nla_put_failure;
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09002586 } else if (dst) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002587 struct in6_addr saddr_buf;
David S. Millerc78679e2012-04-01 20:27:33 -04002588 if (ip6_route_get_saddr(net, rt, dst, 0, &saddr_buf) == 0 &&
2589 nla_put(skb, RTA_PREFSRC, 16, &saddr_buf))
2590 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002591 }
Thomas Graf2d7202b2006-08-22 00:01:27 -07002592
Daniel Walterc3968a82011-04-13 21:10:57 +00002593 if (rt->rt6i_prefsrc.plen) {
2594 struct in6_addr saddr_buf;
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00002595 saddr_buf = rt->rt6i_prefsrc.addr;
David S. Millerc78679e2012-04-01 20:27:33 -04002596 if (nla_put(skb, RTA_PREFSRC, 16, &saddr_buf))
2597 goto nla_put_failure;
Daniel Walterc3968a82011-04-13 21:10:57 +00002598 }
2599
David S. Millerdefb3512010-12-08 21:16:57 -08002600 if (rtnetlink_put_metrics(skb, dst_metrics_ptr(&rt->dst)) < 0)
Thomas Graf2d7202b2006-08-22 00:01:27 -07002601 goto nla_put_failure;
2602
YOSHIFUJI Hideaki / 吉藤英明dd0cbf22013-01-17 12:53:15 +00002603 if (rt->rt6i_flags & RTF_GATEWAY) {
2604 if (nla_put(skb, RTA_GATEWAY, 16, &rt->rt6i_gateway) < 0)
Eric Dumazet94f826b2012-03-27 09:53:52 +00002605 goto nla_put_failure;
Eric Dumazet94f826b2012-03-27 09:53:52 +00002606 }
Thomas Graf2d7202b2006-08-22 00:01:27 -07002607
David S. Millerc78679e2012-04-01 20:27:33 -04002608 if (rt->dst.dev &&
2609 nla_put_u32(skb, RTA_OIF, rt->dst.dev->ifindex))
2610 goto nla_put_failure;
2611 if (nla_put_u32(skb, RTA_PRIORITY, rt->rt6i_metric))
2612 goto nla_put_failure;
Li Wei82539472012-07-29 16:01:30 +00002613
2614 expires = (rt->rt6i_flags & RTF_EXPIRES) ? rt->dst.expires - jiffies : 0;
YOSHIFUJI Hideaki69cdf8f2008-05-19 16:55:13 -07002615
David S. Miller87a50692012-07-10 05:06:14 -07002616 if (rtnl_put_cacheinfo(skb, &rt->dst, 0, expires, rt->dst.error) < 0)
Thomas Grafe3703b32006-11-27 09:27:07 -08002617 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002618
Thomas Graf2d7202b2006-08-22 00:01:27 -07002619 return nlmsg_end(skb, nlh);
2620
2621nla_put_failure:
Patrick McHardy26932562007-01-31 23:16:40 -08002622 nlmsg_cancel(skb, nlh);
2623 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002624}
2625
Patrick McHardy1b43af52006-08-10 23:11:17 -07002626int rt6_dump_route(struct rt6_info *rt, void *p_arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002627{
2628 struct rt6_rtnl_dump_arg *arg = (struct rt6_rtnl_dump_arg *) p_arg;
2629 int prefix;
2630
Thomas Graf2d7202b2006-08-22 00:01:27 -07002631 if (nlmsg_len(arg->cb->nlh) >= sizeof(struct rtmsg)) {
2632 struct rtmsg *rtm = nlmsg_data(arg->cb->nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002633 prefix = (rtm->rtm_flags & RTM_F_PREFIX) != 0;
2634 } else
2635 prefix = 0;
2636
Brian Haley191cd582008-08-14 15:33:21 -07002637 return rt6_fill_node(arg->net,
2638 arg->skb, rt, NULL, NULL, 0, RTM_NEWROUTE,
Eric W. Biederman15e47302012-09-07 20:12:54 +00002639 NETLINK_CB(arg->cb->skb).portid, arg->cb->nlh->nlmsg_seq,
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09002640 prefix, 0, NLM_F_MULTI);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002641}
2642
Thomas Grafc127ea22007-03-22 11:58:32 -07002643static int inet6_rtm_getroute(struct sk_buff *in_skb, struct nlmsghdr* nlh, void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002644{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09002645 struct net *net = sock_net(in_skb->sk);
Thomas Grafab364a62006-08-22 00:01:47 -07002646 struct nlattr *tb[RTA_MAX+1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002647 struct rt6_info *rt;
Thomas Grafab364a62006-08-22 00:01:47 -07002648 struct sk_buff *skb;
2649 struct rtmsg *rtm;
David S. Miller4c9483b2011-03-12 16:22:43 -05002650 struct flowi6 fl6;
Shmulik Ladkani72331bc2012-04-01 04:03:45 +00002651 int err, iif = 0, oif = 0;
Thomas Grafab364a62006-08-22 00:01:47 -07002652
2653 err = nlmsg_parse(nlh, sizeof(*rtm), tb, RTA_MAX, rtm_ipv6_policy);
2654 if (err < 0)
2655 goto errout;
2656
2657 err = -EINVAL;
David S. Miller4c9483b2011-03-12 16:22:43 -05002658 memset(&fl6, 0, sizeof(fl6));
Thomas Grafab364a62006-08-22 00:01:47 -07002659
2660 if (tb[RTA_SRC]) {
2661 if (nla_len(tb[RTA_SRC]) < sizeof(struct in6_addr))
2662 goto errout;
2663
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00002664 fl6.saddr = *(struct in6_addr *)nla_data(tb[RTA_SRC]);
Thomas Grafab364a62006-08-22 00:01:47 -07002665 }
2666
2667 if (tb[RTA_DST]) {
2668 if (nla_len(tb[RTA_DST]) < sizeof(struct in6_addr))
2669 goto errout;
2670
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00002671 fl6.daddr = *(struct in6_addr *)nla_data(tb[RTA_DST]);
Thomas Grafab364a62006-08-22 00:01:47 -07002672 }
2673
2674 if (tb[RTA_IIF])
2675 iif = nla_get_u32(tb[RTA_IIF]);
2676
2677 if (tb[RTA_OIF])
Shmulik Ladkani72331bc2012-04-01 04:03:45 +00002678 oif = nla_get_u32(tb[RTA_OIF]);
Thomas Grafab364a62006-08-22 00:01:47 -07002679
2680 if (iif) {
2681 struct net_device *dev;
Shmulik Ladkani72331bc2012-04-01 04:03:45 +00002682 int flags = 0;
2683
Daniel Lezcano55786892008-03-04 13:47:47 -08002684 dev = __dev_get_by_index(net, iif);
Thomas Grafab364a62006-08-22 00:01:47 -07002685 if (!dev) {
2686 err = -ENODEV;
2687 goto errout;
2688 }
Shmulik Ladkani72331bc2012-04-01 04:03:45 +00002689
2690 fl6.flowi6_iif = iif;
2691
2692 if (!ipv6_addr_any(&fl6.saddr))
2693 flags |= RT6_LOOKUP_F_HAS_SADDR;
2694
2695 rt = (struct rt6_info *)ip6_route_input_lookup(net, dev, &fl6,
2696 flags);
2697 } else {
2698 fl6.flowi6_oif = oif;
2699
2700 rt = (struct rt6_info *)ip6_route_output(net, NULL, &fl6);
Thomas Grafab364a62006-08-22 00:01:47 -07002701 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002702
2703 skb = alloc_skb(NLMSG_GOODSIZE, GFP_KERNEL);
David S. Miller38308472011-12-03 18:02:47 -05002704 if (!skb) {
Amerigo Wang94e187c2012-10-29 00:13:19 +00002705 ip6_rt_put(rt);
Thomas Grafab364a62006-08-22 00:01:47 -07002706 err = -ENOBUFS;
2707 goto errout;
2708 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002709
2710 /* Reserve room for dummy headers, this skb can pass
2711 through good chunk of routing engine.
2712 */
Arnaldo Carvalho de Melo459a98e2007-03-19 15:30:44 -07002713 skb_reset_mac_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002714 skb_reserve(skb, MAX_HEADER + sizeof(struct ipv6hdr));
2715
Changli Gaod8d1f302010-06-10 23:31:35 -07002716 skb_dst_set(skb, &rt->dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002717
David S. Miller4c9483b2011-03-12 16:22:43 -05002718 err = rt6_fill_node(net, skb, rt, &fl6.daddr, &fl6.saddr, iif,
Eric W. Biederman15e47302012-09-07 20:12:54 +00002719 RTM_NEWROUTE, NETLINK_CB(in_skb).portid,
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09002720 nlh->nlmsg_seq, 0, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002721 if (err < 0) {
Thomas Grafab364a62006-08-22 00:01:47 -07002722 kfree_skb(skb);
2723 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002724 }
2725
Eric W. Biederman15e47302012-09-07 20:12:54 +00002726 err = rtnl_unicast(skb, net, NETLINK_CB(in_skb).portid);
Thomas Grafab364a62006-08-22 00:01:47 -07002727errout:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002728 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002729}
2730
Thomas Graf86872cb2006-08-22 00:01:08 -07002731void inet6_rt_notify(int event, struct rt6_info *rt, struct nl_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002732{
2733 struct sk_buff *skb;
Daniel Lezcano55786892008-03-04 13:47:47 -08002734 struct net *net = info->nl_net;
Denis V. Lunev528c4ce2007-12-13 09:45:12 -08002735 u32 seq;
2736 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002737
Denis V. Lunev528c4ce2007-12-13 09:45:12 -08002738 err = -ENOBUFS;
David S. Miller38308472011-12-03 18:02:47 -05002739 seq = info->nlh ? info->nlh->nlmsg_seq : 0;
Thomas Graf86872cb2006-08-22 00:01:08 -07002740
Thomas Graf339bf982006-11-10 14:10:15 -08002741 skb = nlmsg_new(rt6_nlmsg_size(), gfp_any());
David S. Miller38308472011-12-03 18:02:47 -05002742 if (!skb)
Thomas Graf21713eb2006-08-15 00:35:24 -07002743 goto errout;
2744
Brian Haley191cd582008-08-14 15:33:21 -07002745 err = rt6_fill_node(net, skb, rt, NULL, NULL, 0,
Eric W. Biederman15e47302012-09-07 20:12:54 +00002746 event, info->portid, seq, 0, 0, 0);
Patrick McHardy26932562007-01-31 23:16:40 -08002747 if (err < 0) {
2748 /* -EMSGSIZE implies BUG in rt6_nlmsg_size() */
2749 WARN_ON(err == -EMSGSIZE);
2750 kfree_skb(skb);
2751 goto errout;
2752 }
Eric W. Biederman15e47302012-09-07 20:12:54 +00002753 rtnl_notify(skb, net, info->portid, RTNLGRP_IPV6_ROUTE,
Pablo Neira Ayuso1ce85fe2009-02-24 23:18:28 -08002754 info->nlh, gfp_any());
2755 return;
Thomas Graf21713eb2006-08-15 00:35:24 -07002756errout:
2757 if (err < 0)
Daniel Lezcano55786892008-03-04 13:47:47 -08002758 rtnl_set_sk_err(net, RTNLGRP_IPV6_ROUTE, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002759}
2760
Daniel Lezcano8ed67782008-03-04 13:48:30 -08002761static int ip6_route_dev_notify(struct notifier_block *this,
2762 unsigned long event, void *data)
2763{
2764 struct net_device *dev = (struct net_device *)data;
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09002765 struct net *net = dev_net(dev);
Daniel Lezcano8ed67782008-03-04 13:48:30 -08002766
2767 if (event == NETDEV_REGISTER && (dev->flags & IFF_LOOPBACK)) {
Changli Gaod8d1f302010-06-10 23:31:35 -07002768 net->ipv6.ip6_null_entry->dst.dev = dev;
Daniel Lezcano8ed67782008-03-04 13:48:30 -08002769 net->ipv6.ip6_null_entry->rt6i_idev = in6_dev_get(dev);
2770#ifdef CONFIG_IPV6_MULTIPLE_TABLES
Changli Gaod8d1f302010-06-10 23:31:35 -07002771 net->ipv6.ip6_prohibit_entry->dst.dev = dev;
Daniel Lezcano8ed67782008-03-04 13:48:30 -08002772 net->ipv6.ip6_prohibit_entry->rt6i_idev = in6_dev_get(dev);
Changli Gaod8d1f302010-06-10 23:31:35 -07002773 net->ipv6.ip6_blk_hole_entry->dst.dev = dev;
Daniel Lezcano8ed67782008-03-04 13:48:30 -08002774 net->ipv6.ip6_blk_hole_entry->rt6i_idev = in6_dev_get(dev);
2775#endif
2776 }
2777
2778 return NOTIFY_OK;
2779}
2780
Linus Torvalds1da177e2005-04-16 15:20:36 -07002781/*
2782 * /proc
2783 */
2784
2785#ifdef CONFIG_PROC_FS
2786
Linus Torvalds1da177e2005-04-16 15:20:36 -07002787struct rt6_proc_arg
2788{
2789 char *buffer;
2790 int offset;
2791 int length;
2792 int skip;
2793 int len;
2794};
2795
2796static int rt6_info_route(struct rt6_info *rt, void *p_arg)
2797{
Alexey Dobriyan33120b32007-11-06 05:27:11 -08002798 struct seq_file *m = p_arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002799
Harvey Harrison4b7a4272008-10-29 12:50:24 -07002800 seq_printf(m, "%pi6 %02x ", &rt->rt6i_dst.addr, rt->rt6i_dst.plen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002801
2802#ifdef CONFIG_IPV6_SUBTREES
Harvey Harrison4b7a4272008-10-29 12:50:24 -07002803 seq_printf(m, "%pi6 %02x ", &rt->rt6i_src.addr, rt->rt6i_src.plen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002804#else
Alexey Dobriyan33120b32007-11-06 05:27:11 -08002805 seq_puts(m, "00000000000000000000000000000000 00 ");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002806#endif
YOSHIFUJI Hideaki / 吉藤英明dd0cbf22013-01-17 12:53:15 +00002807 if (rt->rt6i_flags & RTF_GATEWAY) {
2808 seq_printf(m, "%pi6", &rt->rt6i_gateway);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002809 } else {
Alexey Dobriyan33120b32007-11-06 05:27:11 -08002810 seq_puts(m, "00000000000000000000000000000000");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002811 }
Alexey Dobriyan33120b32007-11-06 05:27:11 -08002812 seq_printf(m, " %08x %08x %08x %08x %8s\n",
Changli Gaod8d1f302010-06-10 23:31:35 -07002813 rt->rt6i_metric, atomic_read(&rt->dst.__refcnt),
2814 rt->dst.__use, rt->rt6i_flags,
David S. Millerd1918542011-12-28 20:19:20 -05002815 rt->dst.dev ? rt->dst.dev->name : "");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002816 return 0;
2817}
2818
Alexey Dobriyan33120b32007-11-06 05:27:11 -08002819static int ipv6_route_show(struct seq_file *m, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002820{
Daniel Lezcanof3db4852008-03-03 23:27:06 -08002821 struct net *net = (struct net *)m->private;
Josh Hunt32b293a2011-12-28 13:23:07 +00002822 fib6_clean_all_ro(net, rt6_info_route, 0, m);
Alexey Dobriyan33120b32007-11-06 05:27:11 -08002823 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002824}
2825
Alexey Dobriyan33120b32007-11-06 05:27:11 -08002826static int ipv6_route_open(struct inode *inode, struct file *file)
2827{
Pavel Emelyanovde05c552008-07-18 04:07:21 -07002828 return single_open_net(inode, file, ipv6_route_show);
Daniel Lezcanof3db4852008-03-03 23:27:06 -08002829}
2830
Alexey Dobriyan33120b32007-11-06 05:27:11 -08002831static const struct file_operations ipv6_route_proc_fops = {
2832 .owner = THIS_MODULE,
2833 .open = ipv6_route_open,
2834 .read = seq_read,
2835 .llseek = seq_lseek,
Pavel Emelyanovb6fcbdb2008-07-18 04:07:44 -07002836 .release = single_release_net,
Alexey Dobriyan33120b32007-11-06 05:27:11 -08002837};
2838
Linus Torvalds1da177e2005-04-16 15:20:36 -07002839static int rt6_stats_seq_show(struct seq_file *seq, void *v)
2840{
Daniel Lezcano69ddb802008-03-04 13:46:23 -08002841 struct net *net = (struct net *)seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002842 seq_printf(seq, "%04x %04x %04x %04x %04x %04x %04x\n",
Daniel Lezcano69ddb802008-03-04 13:46:23 -08002843 net->ipv6.rt6_stats->fib_nodes,
2844 net->ipv6.rt6_stats->fib_route_nodes,
2845 net->ipv6.rt6_stats->fib_rt_alloc,
2846 net->ipv6.rt6_stats->fib_rt_entries,
2847 net->ipv6.rt6_stats->fib_rt_cache,
Eric Dumazetfc66f952010-10-08 06:37:34 +00002848 dst_entries_get_slow(&net->ipv6.ip6_dst_ops),
Daniel Lezcano69ddb802008-03-04 13:46:23 -08002849 net->ipv6.rt6_stats->fib_discarded_routes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002850
2851 return 0;
2852}
2853
2854static int rt6_stats_seq_open(struct inode *inode, struct file *file)
2855{
Pavel Emelyanovde05c552008-07-18 04:07:21 -07002856 return single_open_net(inode, file, rt6_stats_seq_show);
Daniel Lezcano69ddb802008-03-04 13:46:23 -08002857}
2858
Arjan van de Ven9a321442007-02-12 00:55:35 -08002859static const struct file_operations rt6_stats_seq_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002860 .owner = THIS_MODULE,
2861 .open = rt6_stats_seq_open,
2862 .read = seq_read,
2863 .llseek = seq_lseek,
Pavel Emelyanovb6fcbdb2008-07-18 04:07:44 -07002864 .release = single_release_net,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002865};
2866#endif /* CONFIG_PROC_FS */
2867
2868#ifdef CONFIG_SYSCTL
2869
Linus Torvalds1da177e2005-04-16 15:20:36 -07002870static
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002871int ipv6_sysctl_rtcache_flush(ctl_table *ctl, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002872 void __user *buffer, size_t *lenp, loff_t *ppos)
2873{
Lucian Adrian Grijincuc486da32011-02-24 19:48:03 +00002874 struct net *net;
2875 int delay;
2876 if (!write)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002877 return -EINVAL;
Lucian Adrian Grijincuc486da32011-02-24 19:48:03 +00002878
2879 net = (struct net *)ctl->extra1;
2880 delay = net->ipv6.sysctl.flush_delay;
2881 proc_dointvec(ctl, write, buffer, lenp, ppos);
2882 fib6_run_gc(delay <= 0 ? ~0UL : (unsigned long)delay, net);
2883 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002884}
2885
Daniel Lezcano760f2d02008-01-10 02:53:43 -08002886ctl_table ipv6_route_table_template[] = {
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002887 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002888 .procname = "flush",
Daniel Lezcano49905092008-01-10 03:01:01 -08002889 .data = &init_net.ipv6.sysctl.flush_delay,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002890 .maxlen = sizeof(int),
Dave Jones89c8b3a12005-04-28 12:11:49 -07002891 .mode = 0200,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08002892 .proc_handler = ipv6_sysctl_rtcache_flush
Linus Torvalds1da177e2005-04-16 15:20:36 -07002893 },
2894 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002895 .procname = "gc_thresh",
Daniel Lezcano9a7ec3a2008-03-04 13:48:53 -08002896 .data = &ip6_dst_ops_template.gc_thresh,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002897 .maxlen = sizeof(int),
2898 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08002899 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002900 },
2901 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002902 .procname = "max_size",
Daniel Lezcano49905092008-01-10 03:01:01 -08002903 .data = &init_net.ipv6.sysctl.ip6_rt_max_size,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002904 .maxlen = sizeof(int),
2905 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08002906 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002907 },
2908 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002909 .procname = "gc_min_interval",
Daniel Lezcano49905092008-01-10 03:01:01 -08002910 .data = &init_net.ipv6.sysctl.ip6_rt_gc_min_interval,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002911 .maxlen = sizeof(int),
2912 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08002913 .proc_handler = proc_dointvec_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002914 },
2915 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002916 .procname = "gc_timeout",
Daniel Lezcano49905092008-01-10 03:01:01 -08002917 .data = &init_net.ipv6.sysctl.ip6_rt_gc_timeout,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002918 .maxlen = sizeof(int),
2919 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08002920 .proc_handler = proc_dointvec_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002921 },
2922 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002923 .procname = "gc_interval",
Daniel Lezcano49905092008-01-10 03:01:01 -08002924 .data = &init_net.ipv6.sysctl.ip6_rt_gc_interval,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002925 .maxlen = sizeof(int),
2926 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08002927 .proc_handler = proc_dointvec_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002928 },
2929 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002930 .procname = "gc_elasticity",
Daniel Lezcano49905092008-01-10 03:01:01 -08002931 .data = &init_net.ipv6.sysctl.ip6_rt_gc_elasticity,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002932 .maxlen = sizeof(int),
2933 .mode = 0644,
Min Zhangf3d3f612010-08-14 22:42:51 -07002934 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002935 },
2936 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002937 .procname = "mtu_expires",
Daniel Lezcano49905092008-01-10 03:01:01 -08002938 .data = &init_net.ipv6.sysctl.ip6_rt_mtu_expires,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002939 .maxlen = sizeof(int),
2940 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08002941 .proc_handler = proc_dointvec_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002942 },
2943 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002944 .procname = "min_adv_mss",
Daniel Lezcano49905092008-01-10 03:01:01 -08002945 .data = &init_net.ipv6.sysctl.ip6_rt_min_advmss,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002946 .maxlen = sizeof(int),
2947 .mode = 0644,
Min Zhangf3d3f612010-08-14 22:42:51 -07002948 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002949 },
2950 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002951 .procname = "gc_min_interval_ms",
Daniel Lezcano49905092008-01-10 03:01:01 -08002952 .data = &init_net.ipv6.sysctl.ip6_rt_gc_min_interval,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002953 .maxlen = sizeof(int),
2954 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08002955 .proc_handler = proc_dointvec_ms_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002956 },
Eric W. Biedermanf8572d82009-11-05 13:32:03 -08002957 { }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002958};
2959
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00002960struct ctl_table * __net_init ipv6_route_sysctl_init(struct net *net)
Daniel Lezcano760f2d02008-01-10 02:53:43 -08002961{
2962 struct ctl_table *table;
2963
2964 table = kmemdup(ipv6_route_table_template,
2965 sizeof(ipv6_route_table_template),
2966 GFP_KERNEL);
YOSHIFUJI Hideaki5ee09102008-02-28 00:24:28 +09002967
2968 if (table) {
2969 table[0].data = &net->ipv6.sysctl.flush_delay;
Lucian Adrian Grijincuc486da32011-02-24 19:48:03 +00002970 table[0].extra1 = net;
Alexey Dobriyan86393e52009-08-29 01:34:49 +00002971 table[1].data = &net->ipv6.ip6_dst_ops.gc_thresh;
YOSHIFUJI Hideaki5ee09102008-02-28 00:24:28 +09002972 table[2].data = &net->ipv6.sysctl.ip6_rt_max_size;
2973 table[3].data = &net->ipv6.sysctl.ip6_rt_gc_min_interval;
2974 table[4].data = &net->ipv6.sysctl.ip6_rt_gc_timeout;
2975 table[5].data = &net->ipv6.sysctl.ip6_rt_gc_interval;
2976 table[6].data = &net->ipv6.sysctl.ip6_rt_gc_elasticity;
2977 table[7].data = &net->ipv6.sysctl.ip6_rt_mtu_expires;
2978 table[8].data = &net->ipv6.sysctl.ip6_rt_min_advmss;
Alexey Dobriyan9c69fab2009-12-18 20:11:03 -08002979 table[9].data = &net->ipv6.sysctl.ip6_rt_gc_min_interval;
Eric W. Biederman464dc802012-11-16 03:02:59 +00002980
2981 /* Don't export sysctls to unprivileged users */
2982 if (net->user_ns != &init_user_ns)
2983 table[0].procname = NULL;
YOSHIFUJI Hideaki5ee09102008-02-28 00:24:28 +09002984 }
2985
Daniel Lezcano760f2d02008-01-10 02:53:43 -08002986 return table;
2987}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002988#endif
2989
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00002990static int __net_init ip6_route_net_init(struct net *net)
Daniel Lezcanocdb18762008-03-04 13:45:33 -08002991{
Pavel Emelyanov633d424b2008-04-21 14:25:23 -07002992 int ret = -ENOMEM;
Daniel Lezcano8ed67782008-03-04 13:48:30 -08002993
Alexey Dobriyan86393e52009-08-29 01:34:49 +00002994 memcpy(&net->ipv6.ip6_dst_ops, &ip6_dst_ops_template,
2995 sizeof(net->ipv6.ip6_dst_ops));
Benjamin Theryf2fc6a52008-03-04 13:49:23 -08002996
Eric Dumazetfc66f952010-10-08 06:37:34 +00002997 if (dst_entries_init(&net->ipv6.ip6_dst_ops) < 0)
2998 goto out_ip6_dst_ops;
2999
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003000 net->ipv6.ip6_null_entry = kmemdup(&ip6_null_entry_template,
3001 sizeof(*net->ipv6.ip6_null_entry),
3002 GFP_KERNEL);
3003 if (!net->ipv6.ip6_null_entry)
Eric Dumazetfc66f952010-10-08 06:37:34 +00003004 goto out_ip6_dst_entries;
Changli Gaod8d1f302010-06-10 23:31:35 -07003005 net->ipv6.ip6_null_entry->dst.path =
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003006 (struct dst_entry *)net->ipv6.ip6_null_entry;
Changli Gaod8d1f302010-06-10 23:31:35 -07003007 net->ipv6.ip6_null_entry->dst.ops = &net->ipv6.ip6_dst_ops;
David S. Miller62fa8a82011-01-26 20:51:05 -08003008 dst_init_metrics(&net->ipv6.ip6_null_entry->dst,
3009 ip6_template_metrics, true);
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003010
3011#ifdef CONFIG_IPV6_MULTIPLE_TABLES
3012 net->ipv6.ip6_prohibit_entry = kmemdup(&ip6_prohibit_entry_template,
3013 sizeof(*net->ipv6.ip6_prohibit_entry),
3014 GFP_KERNEL);
Peter Zijlstra68fffc62008-10-07 14:12:10 -07003015 if (!net->ipv6.ip6_prohibit_entry)
3016 goto out_ip6_null_entry;
Changli Gaod8d1f302010-06-10 23:31:35 -07003017 net->ipv6.ip6_prohibit_entry->dst.path =
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003018 (struct dst_entry *)net->ipv6.ip6_prohibit_entry;
Changli Gaod8d1f302010-06-10 23:31:35 -07003019 net->ipv6.ip6_prohibit_entry->dst.ops = &net->ipv6.ip6_dst_ops;
David S. Miller62fa8a82011-01-26 20:51:05 -08003020 dst_init_metrics(&net->ipv6.ip6_prohibit_entry->dst,
3021 ip6_template_metrics, true);
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003022
3023 net->ipv6.ip6_blk_hole_entry = kmemdup(&ip6_blk_hole_entry_template,
3024 sizeof(*net->ipv6.ip6_blk_hole_entry),
3025 GFP_KERNEL);
Peter Zijlstra68fffc62008-10-07 14:12:10 -07003026 if (!net->ipv6.ip6_blk_hole_entry)
3027 goto out_ip6_prohibit_entry;
Changli Gaod8d1f302010-06-10 23:31:35 -07003028 net->ipv6.ip6_blk_hole_entry->dst.path =
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003029 (struct dst_entry *)net->ipv6.ip6_blk_hole_entry;
Changli Gaod8d1f302010-06-10 23:31:35 -07003030 net->ipv6.ip6_blk_hole_entry->dst.ops = &net->ipv6.ip6_dst_ops;
David S. Miller62fa8a82011-01-26 20:51:05 -08003031 dst_init_metrics(&net->ipv6.ip6_blk_hole_entry->dst,
3032 ip6_template_metrics, true);
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003033#endif
3034
Peter Zijlstrab339a47c2008-10-07 14:15:00 -07003035 net->ipv6.sysctl.flush_delay = 0;
3036 net->ipv6.sysctl.ip6_rt_max_size = 4096;
3037 net->ipv6.sysctl.ip6_rt_gc_min_interval = HZ / 2;
3038 net->ipv6.sysctl.ip6_rt_gc_timeout = 60*HZ;
3039 net->ipv6.sysctl.ip6_rt_gc_interval = 30*HZ;
3040 net->ipv6.sysctl.ip6_rt_gc_elasticity = 9;
3041 net->ipv6.sysctl.ip6_rt_mtu_expires = 10*60*HZ;
3042 net->ipv6.sysctl.ip6_rt_min_advmss = IPV6_MIN_MTU - 20 - 40;
3043
Benjamin Thery6891a342008-03-04 13:49:47 -08003044 net->ipv6.ip6_rt_gc_expire = 30*HZ;
3045
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003046 ret = 0;
3047out:
3048 return ret;
Benjamin Theryf2fc6a52008-03-04 13:49:23 -08003049
Peter Zijlstra68fffc62008-10-07 14:12:10 -07003050#ifdef CONFIG_IPV6_MULTIPLE_TABLES
3051out_ip6_prohibit_entry:
3052 kfree(net->ipv6.ip6_prohibit_entry);
3053out_ip6_null_entry:
3054 kfree(net->ipv6.ip6_null_entry);
3055#endif
Eric Dumazetfc66f952010-10-08 06:37:34 +00003056out_ip6_dst_entries:
3057 dst_entries_destroy(&net->ipv6.ip6_dst_ops);
Benjamin Theryf2fc6a52008-03-04 13:49:23 -08003058out_ip6_dst_ops:
Benjamin Theryf2fc6a52008-03-04 13:49:23 -08003059 goto out;
Daniel Lezcanocdb18762008-03-04 13:45:33 -08003060}
3061
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00003062static void __net_exit ip6_route_net_exit(struct net *net)
Daniel Lezcanocdb18762008-03-04 13:45:33 -08003063{
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003064 kfree(net->ipv6.ip6_null_entry);
3065#ifdef CONFIG_IPV6_MULTIPLE_TABLES
3066 kfree(net->ipv6.ip6_prohibit_entry);
3067 kfree(net->ipv6.ip6_blk_hole_entry);
3068#endif
Xiaotian Feng41bb78b2010-11-02 16:11:05 +00003069 dst_entries_destroy(&net->ipv6.ip6_dst_ops);
Daniel Lezcanocdb18762008-03-04 13:45:33 -08003070}
3071
Thomas Grafd1896342012-06-18 12:08:33 +00003072static int __net_init ip6_route_net_init_late(struct net *net)
3073{
3074#ifdef CONFIG_PROC_FS
3075 proc_net_fops_create(net, "ipv6_route", 0, &ipv6_route_proc_fops);
3076 proc_net_fops_create(net, "rt6_stats", S_IRUGO, &rt6_stats_seq_fops);
3077#endif
3078 return 0;
3079}
3080
3081static void __net_exit ip6_route_net_exit_late(struct net *net)
3082{
3083#ifdef CONFIG_PROC_FS
3084 proc_net_remove(net, "ipv6_route");
3085 proc_net_remove(net, "rt6_stats");
3086#endif
3087}
3088
Daniel Lezcanocdb18762008-03-04 13:45:33 -08003089static struct pernet_operations ip6_route_net_ops = {
3090 .init = ip6_route_net_init,
3091 .exit = ip6_route_net_exit,
3092};
3093
David S. Millerc3426b42012-06-09 16:27:05 -07003094static int __net_init ipv6_inetpeer_init(struct net *net)
3095{
3096 struct inet_peer_base *bp = kmalloc(sizeof(*bp), GFP_KERNEL);
3097
3098 if (!bp)
3099 return -ENOMEM;
3100 inet_peer_base_init(bp);
3101 net->ipv6.peers = bp;
3102 return 0;
3103}
3104
3105static void __net_exit ipv6_inetpeer_exit(struct net *net)
3106{
3107 struct inet_peer_base *bp = net->ipv6.peers;
3108
3109 net->ipv6.peers = NULL;
David S. Miller56a6b242012-06-09 16:32:41 -07003110 inetpeer_invalidate_tree(bp);
David S. Millerc3426b42012-06-09 16:27:05 -07003111 kfree(bp);
3112}
3113
David S. Miller2b823f72012-06-09 19:00:16 -07003114static struct pernet_operations ipv6_inetpeer_ops = {
David S. Millerc3426b42012-06-09 16:27:05 -07003115 .init = ipv6_inetpeer_init,
3116 .exit = ipv6_inetpeer_exit,
3117};
3118
Thomas Grafd1896342012-06-18 12:08:33 +00003119static struct pernet_operations ip6_route_net_late_ops = {
3120 .init = ip6_route_net_init_late,
3121 .exit = ip6_route_net_exit_late,
3122};
3123
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003124static struct notifier_block ip6_route_dev_notifier = {
3125 .notifier_call = ip6_route_dev_notify,
3126 .priority = 0,
3127};
3128
Daniel Lezcano433d49c2007-12-07 00:43:48 -08003129int __init ip6_route_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003130{
Daniel Lezcano433d49c2007-12-07 00:43:48 -08003131 int ret;
3132
Daniel Lezcano9a7ec3a2008-03-04 13:48:53 -08003133 ret = -ENOMEM;
3134 ip6_dst_ops_template.kmem_cachep =
3135 kmem_cache_create("ip6_dst_cache", sizeof(struct rt6_info), 0,
3136 SLAB_HWCACHE_ALIGN, NULL);
3137 if (!ip6_dst_ops_template.kmem_cachep)
Fernando Carrijoc19a28e2009-01-07 18:09:08 -08003138 goto out;
David S. Miller14e50e52007-05-24 18:17:54 -07003139
Eric Dumazetfc66f952010-10-08 06:37:34 +00003140 ret = dst_entries_init(&ip6_dst_blackhole_ops);
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003141 if (ret)
Daniel Lezcanobdb32892008-03-04 13:48:10 -08003142 goto out_kmem_cache;
Daniel Lezcanobdb32892008-03-04 13:48:10 -08003143
David S. Millerc3426b42012-06-09 16:27:05 -07003144 ret = register_pernet_subsys(&ipv6_inetpeer_ops);
3145 if (ret)
David S. Millere8803b62012-06-16 01:12:19 -07003146 goto out_dst_entries;
Thomas Graf2a0c4512012-06-14 23:00:17 +00003147
David S. Miller7e52b332012-06-15 15:51:55 -07003148 ret = register_pernet_subsys(&ip6_route_net_ops);
3149 if (ret)
3150 goto out_register_inetpeer;
David S. Millerc3426b42012-06-09 16:27:05 -07003151
Arnaud Ebalard5dc121e2008-10-01 02:37:56 -07003152 ip6_dst_blackhole_ops.kmem_cachep = ip6_dst_ops_template.kmem_cachep;
3153
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003154 /* Registering of the loopback is done before this portion of code,
3155 * the loopback reference in rt6_info will not be taken, do it
3156 * manually for init_net */
Changli Gaod8d1f302010-06-10 23:31:35 -07003157 init_net.ipv6.ip6_null_entry->dst.dev = init_net.loopback_dev;
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003158 init_net.ipv6.ip6_null_entry->rt6i_idev = in6_dev_get(init_net.loopback_dev);
3159 #ifdef CONFIG_IPV6_MULTIPLE_TABLES
Changli Gaod8d1f302010-06-10 23:31:35 -07003160 init_net.ipv6.ip6_prohibit_entry->dst.dev = init_net.loopback_dev;
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003161 init_net.ipv6.ip6_prohibit_entry->rt6i_idev = in6_dev_get(init_net.loopback_dev);
Changli Gaod8d1f302010-06-10 23:31:35 -07003162 init_net.ipv6.ip6_blk_hole_entry->dst.dev = init_net.loopback_dev;
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003163 init_net.ipv6.ip6_blk_hole_entry->rt6i_idev = in6_dev_get(init_net.loopback_dev);
3164 #endif
David S. Millere8803b62012-06-16 01:12:19 -07003165 ret = fib6_init();
Daniel Lezcano433d49c2007-12-07 00:43:48 -08003166 if (ret)
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003167 goto out_register_subsys;
Daniel Lezcano433d49c2007-12-07 00:43:48 -08003168
Daniel Lezcano433d49c2007-12-07 00:43:48 -08003169 ret = xfrm6_init();
3170 if (ret)
David S. Millere8803b62012-06-16 01:12:19 -07003171 goto out_fib6_init;
Daniel Lezcanoc35b7e72007-12-08 00:14:11 -08003172
Daniel Lezcano433d49c2007-12-07 00:43:48 -08003173 ret = fib6_rules_init();
3174 if (ret)
3175 goto xfrm6_init;
Daniel Lezcano7e5449c2007-12-08 00:14:54 -08003176
Thomas Grafd1896342012-06-18 12:08:33 +00003177 ret = register_pernet_subsys(&ip6_route_net_late_ops);
3178 if (ret)
3179 goto fib6_rules_init;
3180
Daniel Lezcano433d49c2007-12-07 00:43:48 -08003181 ret = -ENOBUFS;
Greg Rosec7ac8672011-06-10 01:27:09 +00003182 if (__rtnl_register(PF_INET6, RTM_NEWROUTE, inet6_rtm_newroute, NULL, NULL) ||
3183 __rtnl_register(PF_INET6, RTM_DELROUTE, inet6_rtm_delroute, NULL, NULL) ||
3184 __rtnl_register(PF_INET6, RTM_GETROUTE, inet6_rtm_getroute, NULL, NULL))
Thomas Grafd1896342012-06-18 12:08:33 +00003185 goto out_register_late_subsys;
Daniel Lezcano433d49c2007-12-07 00:43:48 -08003186
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003187 ret = register_netdevice_notifier(&ip6_route_dev_notifier);
Daniel Lezcanocdb18762008-03-04 13:45:33 -08003188 if (ret)
Thomas Grafd1896342012-06-18 12:08:33 +00003189 goto out_register_late_subsys;
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003190
Daniel Lezcano433d49c2007-12-07 00:43:48 -08003191out:
3192 return ret;
3193
Thomas Grafd1896342012-06-18 12:08:33 +00003194out_register_late_subsys:
3195 unregister_pernet_subsys(&ip6_route_net_late_ops);
Daniel Lezcano433d49c2007-12-07 00:43:48 -08003196fib6_rules_init:
Daniel Lezcano433d49c2007-12-07 00:43:48 -08003197 fib6_rules_cleanup();
3198xfrm6_init:
Daniel Lezcano433d49c2007-12-07 00:43:48 -08003199 xfrm6_fini();
Thomas Graf2a0c4512012-06-14 23:00:17 +00003200out_fib6_init:
3201 fib6_gc_cleanup();
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003202out_register_subsys:
3203 unregister_pernet_subsys(&ip6_route_net_ops);
David S. Miller7e52b332012-06-15 15:51:55 -07003204out_register_inetpeer:
3205 unregister_pernet_subsys(&ipv6_inetpeer_ops);
Eric Dumazetfc66f952010-10-08 06:37:34 +00003206out_dst_entries:
3207 dst_entries_destroy(&ip6_dst_blackhole_ops);
Daniel Lezcano433d49c2007-12-07 00:43:48 -08003208out_kmem_cache:
Benjamin Theryf2fc6a52008-03-04 13:49:23 -08003209 kmem_cache_destroy(ip6_dst_ops_template.kmem_cachep);
Daniel Lezcano433d49c2007-12-07 00:43:48 -08003210 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003211}
3212
3213void ip6_route_cleanup(void)
3214{
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003215 unregister_netdevice_notifier(&ip6_route_dev_notifier);
Thomas Grafd1896342012-06-18 12:08:33 +00003216 unregister_pernet_subsys(&ip6_route_net_late_ops);
Thomas Graf101367c2006-08-04 03:39:02 -07003217 fib6_rules_cleanup();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003218 xfrm6_fini();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003219 fib6_gc_cleanup();
David S. Millerc3426b42012-06-09 16:27:05 -07003220 unregister_pernet_subsys(&ipv6_inetpeer_ops);
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003221 unregister_pernet_subsys(&ip6_route_net_ops);
Xiaotian Feng41bb78b2010-11-02 16:11:05 +00003222 dst_entries_destroy(&ip6_dst_blackhole_ops);
Benjamin Theryf2fc6a52008-03-04 13:49:23 -08003223 kmem_cache_destroy(ip6_dst_ops_template.kmem_cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003224}