blob: 6863f8b43bbd2c7708e534d64b39dc86b9d03662 [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);
David S. Miller39232972012-01-26 15:22:32 -0500148 n = __ipv6_neigh_lookup(&nd_tbl, 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{
David S. Miller8ade06c2011-12-29 18:51:57 -0500156 struct neighbour *n = __ipv6_neigh_lookup(&nd_tbl, dev, &rt->rt6i_gateway);
157 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] = {
223 [RTAX_HOPLIMIT - 1] = 255,
224};
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
Nicolas Dichtelb3ce5ae2012-10-22 23:35:06 +0000391 val ^= (__force u32)fl6->daddr.s6_addr32[0];
392 val ^= (__force u32)fl6->daddr.s6_addr32[1];
393 val ^= (__force u32)fl6->daddr.s6_addr32[2];
394 val ^= (__force u32)fl6->daddr.s6_addr32[3];
Nicolas Dichtel51ebd312012-10-22 03:42:09 +0000395
Nicolas Dichtelb3ce5ae2012-10-22 23:35:06 +0000396 val ^= (__force u32)fl6->saddr.s6_addr32[0];
397 val ^= (__force u32)fl6->saddr.s6_addr32[1];
398 val ^= (__force u32)fl6->saddr.s6_addr32[2];
399 val ^= (__force u32)fl6->saddr.s6_addr32[3];
Nicolas Dichtel51ebd312012-10-22 03:42:09 +0000400
401 /* Work only if this not encapsulated */
402 switch (fl6->flowi6_proto) {
403 case IPPROTO_UDP:
404 case IPPROTO_TCP:
405 case IPPROTO_SCTP:
Nicolas Dichtelb3ce5ae2012-10-22 23:35:06 +0000406 val ^= (__force u16)fl6->fl6_sport;
407 val ^= (__force u16)fl6->fl6_dport;
Nicolas Dichtel51ebd312012-10-22 03:42:09 +0000408 break;
409
410 case IPPROTO_ICMPV6:
Nicolas Dichtelb3ce5ae2012-10-22 23:35:06 +0000411 val ^= (__force u16)fl6->fl6_icmp_type;
412 val ^= (__force u16)fl6->fl6_icmp_code;
Nicolas Dichtel51ebd312012-10-22 03:42:09 +0000413 break;
414 }
415 /* RFC6438 recommands to use flowlabel */
Nicolas Dichtelb3ce5ae2012-10-22 23:35:06 +0000416 val ^= (__force u32)fl6->flowlabel;
Nicolas Dichtel51ebd312012-10-22 03:42:09 +0000417
418 /* Perhaps, we need to tune, this function? */
419 val = val ^ (val >> 7) ^ (val >> 12);
420 return val % candidate_count;
421}
422
423static struct rt6_info *rt6_multipath_select(struct rt6_info *match,
424 struct flowi6 *fl6)
425{
426 struct rt6_info *sibling, *next_sibling;
427 int route_choosen;
428
429 route_choosen = rt6_info_hash_nhsfn(match->rt6i_nsiblings + 1, fl6);
430 /* Don't change the route, if route_choosen == 0
431 * (siblings does not include ourself)
432 */
433 if (route_choosen)
434 list_for_each_entry_safe(sibling, next_sibling,
435 &match->rt6i_siblings, rt6i_siblings) {
436 route_choosen--;
437 if (route_choosen == 0) {
438 match = sibling;
439 break;
440 }
441 }
442 return match;
443}
444
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445/*
Thomas Grafc71099a2006-08-04 23:20:06 -0700446 * Route lookup. Any table->tb6_lock is implied.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 */
448
Daniel Lezcano8ed67782008-03-04 13:48:30 -0800449static inline struct rt6_info *rt6_device_match(struct net *net,
450 struct rt6_info *rt,
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000451 const struct in6_addr *saddr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 int oif,
YOSHIFUJI Hideakid4208952008-06-27 20:14:54 -0700453 int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454{
455 struct rt6_info *local = NULL;
456 struct rt6_info *sprt;
457
YOSHIFUJI Hideakidd3abc42008-07-02 18:30:18 +0900458 if (!oif && ipv6_addr_any(saddr))
459 goto out;
460
Changli Gaod8d1f302010-06-10 23:31:35 -0700461 for (sprt = rt; sprt; sprt = sprt->dst.rt6_next) {
David S. Millerd1918542011-12-28 20:19:20 -0500462 struct net_device *dev = sprt->dst.dev;
YOSHIFUJI Hideakidd3abc42008-07-02 18:30:18 +0900463
464 if (oif) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 if (dev->ifindex == oif)
466 return sprt;
467 if (dev->flags & IFF_LOOPBACK) {
David S. Miller38308472011-12-03 18:02:47 -0500468 if (!sprt->rt6i_idev ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 sprt->rt6i_idev->dev->ifindex != oif) {
YOSHIFUJI Hideakid4208952008-06-27 20:14:54 -0700470 if (flags & RT6_LOOKUP_F_IFACE && oif)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 continue;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900472 if (local && (!oif ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 local->rt6i_idev->dev->ifindex == oif))
474 continue;
475 }
476 local = sprt;
477 }
YOSHIFUJI Hideakidd3abc42008-07-02 18:30:18 +0900478 } else {
479 if (ipv6_chk_addr(net, saddr, dev,
480 flags & RT6_LOOKUP_F_IFACE))
481 return sprt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 }
YOSHIFUJI Hideakidd3abc42008-07-02 18:30:18 +0900483 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484
YOSHIFUJI Hideakidd3abc42008-07-02 18:30:18 +0900485 if (oif) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 if (local)
487 return local;
488
YOSHIFUJI Hideakid4208952008-06-27 20:14:54 -0700489 if (flags & RT6_LOOKUP_F_IFACE)
Daniel Lezcano8ed67782008-03-04 13:48:30 -0800490 return net->ipv6.ip6_null_entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 }
YOSHIFUJI Hideakidd3abc42008-07-02 18:30:18 +0900492out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 return rt;
494}
495
YOSHIFUJI Hideaki27097252006-03-20 17:05:13 -0800496#ifdef CONFIG_IPV6_ROUTER_PREF
497static void rt6_probe(struct rt6_info *rt)
498{
Eric Dumazetf2c31e32011-07-29 19:00:53 +0000499 struct neighbour *neigh;
YOSHIFUJI Hideaki27097252006-03-20 17:05:13 -0800500 /*
501 * Okay, this does not seem to be appropriate
502 * for now, however, we need to check if it
503 * is really so; aka Router Reachability Probing.
504 *
505 * Router Reachability Probe MUST be rate-limited
506 * to no more than one per minute.
507 */
David S. Miller97cac082012-07-02 22:43:47 -0700508 neigh = rt ? rt->n : NULL;
YOSHIFUJI Hideaki27097252006-03-20 17:05:13 -0800509 if (!neigh || (neigh->nud_state & NUD_VALID))
Amerigo Wangfdd66812012-09-10 02:48:44 +0000510 return;
YOSHIFUJI Hideaki27097252006-03-20 17:05:13 -0800511 read_lock_bh(&neigh->lock);
512 if (!(neigh->nud_state & NUD_VALID) &&
YOSHIFUJI Hideaki52e16352006-03-20 17:05:47 -0800513 time_after(jiffies, neigh->updated + rt->rt6i_idev->cnf.rtr_probe_interval)) {
YOSHIFUJI Hideaki27097252006-03-20 17:05:13 -0800514 struct in6_addr mcaddr;
515 struct in6_addr *target;
516
517 neigh->updated = jiffies;
518 read_unlock_bh(&neigh->lock);
519
520 target = (struct in6_addr *)&neigh->primary_key;
521 addrconf_addr_solict_mult(target, &mcaddr);
David S. Millerd1918542011-12-28 20:19:20 -0500522 ndisc_send_ns(rt->dst.dev, NULL, target, &mcaddr, NULL);
Eric Dumazetf2c31e32011-07-29 19:00:53 +0000523 } else {
YOSHIFUJI Hideaki27097252006-03-20 17:05:13 -0800524 read_unlock_bh(&neigh->lock);
Eric Dumazetf2c31e32011-07-29 19:00:53 +0000525 }
YOSHIFUJI Hideaki27097252006-03-20 17:05:13 -0800526}
527#else
528static inline void rt6_probe(struct rt6_info *rt)
529{
YOSHIFUJI Hideaki27097252006-03-20 17:05:13 -0800530}
531#endif
532
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533/*
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800534 * Default Router Selection (RFC 2461 6.3.6)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 */
Dave Jonesb6f99a22007-03-22 12:27:49 -0700536static inline int rt6_check_dev(struct rt6_info *rt, int oif)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537{
David S. Millerd1918542011-12-28 20:19:20 -0500538 struct net_device *dev = rt->dst.dev;
David S. Miller161980f2007-04-06 11:42:27 -0700539 if (!oif || dev->ifindex == oif)
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800540 return 2;
David S. Miller161980f2007-04-06 11:42:27 -0700541 if ((dev->flags & IFF_LOOPBACK) &&
542 rt->rt6i_idev && rt->rt6i_idev->dev->ifindex == oif)
543 return 1;
544 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545}
546
Dave Jonesb6f99a22007-03-22 12:27:49 -0700547static inline int rt6_check_neigh(struct rt6_info *rt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548{
Eric Dumazetf2c31e32011-07-29 19:00:53 +0000549 struct neighbour *neigh;
YOSHIFUJI Hideaki398bcbe2008-01-19 00:35:16 -0800550 int m;
Eric Dumazetf2c31e32011-07-29 19:00:53 +0000551
David S. Miller97cac082012-07-02 22:43:47 -0700552 neigh = rt->n;
YOSHIFUJI Hideaki4d0c5912006-05-26 13:23:41 -0700553 if (rt->rt6i_flags & RTF_NONEXTHOP ||
554 !(rt->rt6i_flags & RTF_GATEWAY))
555 m = 1;
556 else if (neigh) {
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800557 read_lock_bh(&neigh->lock);
558 if (neigh->nud_state & NUD_VALID)
YOSHIFUJI Hideaki4d0c5912006-05-26 13:23:41 -0700559 m = 2;
YOSHIFUJI Hideaki398bcbe2008-01-19 00:35:16 -0800560#ifdef CONFIG_IPV6_ROUTER_PREF
561 else if (neigh->nud_state & NUD_FAILED)
562 m = 0;
563#endif
564 else
YOSHIFUJI Hideakiea73ee22006-11-06 09:45:44 -0800565 m = 1;
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800566 read_unlock_bh(&neigh->lock);
YOSHIFUJI Hideaki398bcbe2008-01-19 00:35:16 -0800567 } else
568 m = 0;
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800569 return m;
570}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800572static int rt6_score_route(struct rt6_info *rt, int oif,
573 int strict)
574{
YOSHIFUJI Hideaki4d0c5912006-05-26 13:23:41 -0700575 int m, n;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900576
YOSHIFUJI Hideaki4d0c5912006-05-26 13:23:41 -0700577 m = rt6_check_dev(rt, oif);
YOSHIFUJI Hideaki77d16f42006-08-23 17:25:05 -0700578 if (!m && (strict & RT6_LOOKUP_F_IFACE))
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800579 return -1;
YOSHIFUJI Hideakiebacaaa2006-03-20 17:04:53 -0800580#ifdef CONFIG_IPV6_ROUTER_PREF
581 m |= IPV6_DECODE_PREF(IPV6_EXTRACT_PREF(rt->rt6i_flags)) << 2;
582#endif
YOSHIFUJI Hideaki4d0c5912006-05-26 13:23:41 -0700583 n = rt6_check_neigh(rt);
YOSHIFUJI Hideaki557e92e2006-11-06 09:45:45 -0800584 if (!n && (strict & RT6_LOOKUP_F_REACHABLE))
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800585 return -1;
586 return m;
587}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588
David S. Millerf11e6652007-03-24 20:36:25 -0700589static struct rt6_info *find_match(struct rt6_info *rt, int oif, int strict,
590 int *mpri, struct rt6_info *match)
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800591{
David S. Millerf11e6652007-03-24 20:36:25 -0700592 int m;
593
594 if (rt6_check_expired(rt))
595 goto out;
596
597 m = rt6_score_route(rt, oif, strict);
598 if (m < 0)
599 goto out;
600
601 if (m > *mpri) {
602 if (strict & RT6_LOOKUP_F_REACHABLE)
603 rt6_probe(match);
604 *mpri = m;
605 match = rt;
606 } else if (strict & RT6_LOOKUP_F_REACHABLE) {
607 rt6_probe(rt);
608 }
609
610out:
611 return match;
612}
613
614static struct rt6_info *find_rr_leaf(struct fib6_node *fn,
615 struct rt6_info *rr_head,
616 u32 metric, int oif, int strict)
617{
618 struct rt6_info *rt, *match;
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800619 int mpri = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620
David S. Millerf11e6652007-03-24 20:36:25 -0700621 match = NULL;
622 for (rt = rr_head; rt && 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);
625 for (rt = fn->leaf; rt && rt != rr_head && rt->rt6i_metric == metric;
Changli Gaod8d1f302010-06-10 23:31:35 -0700626 rt = rt->dst.rt6_next)
David S. Millerf11e6652007-03-24 20:36:25 -0700627 match = find_match(rt, oif, strict, &mpri, match);
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800628
David S. Millerf11e6652007-03-24 20:36:25 -0700629 return match;
630}
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800631
David S. Millerf11e6652007-03-24 20:36:25 -0700632static struct rt6_info *rt6_select(struct fib6_node *fn, int oif, int strict)
633{
634 struct rt6_info *match, *rt0;
Daniel Lezcano8ed67782008-03-04 13:48:30 -0800635 struct net *net;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636
David S. Millerf11e6652007-03-24 20:36:25 -0700637 rt0 = fn->rr_ptr;
638 if (!rt0)
639 fn->rr_ptr = rt0 = fn->leaf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640
David S. Millerf11e6652007-03-24 20:36:25 -0700641 match = find_rr_leaf(fn, rt0, rt0->rt6i_metric, oif, strict);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800643 if (!match &&
David S. Millerf11e6652007-03-24 20:36:25 -0700644 (strict & RT6_LOOKUP_F_REACHABLE)) {
Changli Gaod8d1f302010-06-10 23:31:35 -0700645 struct rt6_info *next = rt0->dst.rt6_next;
David S. Millerf11e6652007-03-24 20:36:25 -0700646
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800647 /* no entries matched; do round-robin */
David S. Millerf11e6652007-03-24 20:36:25 -0700648 if (!next || next->rt6i_metric != rt0->rt6i_metric)
649 next = fn->leaf;
650
651 if (next != rt0)
652 fn->rr_ptr = next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 }
654
David S. Millerd1918542011-12-28 20:19:20 -0500655 net = dev_net(rt0->dst.dev);
Eric Dumazeta02cec22010-09-22 20:43:57 +0000656 return match ? match : net->ipv6.ip6_null_entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657}
658
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800659#ifdef CONFIG_IPV6_ROUTE_INFO
660int rt6_route_rcv(struct net_device *dev, u8 *opt, int len,
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000661 const struct in6_addr *gwaddr)
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800662{
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900663 struct net *net = dev_net(dev);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800664 struct route_info *rinfo = (struct route_info *) opt;
665 struct in6_addr prefix_buf, *prefix;
666 unsigned int pref;
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +0900667 unsigned long lifetime;
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800668 struct rt6_info *rt;
669
670 if (len < sizeof(struct route_info)) {
671 return -EINVAL;
672 }
673
674 /* Sanity check for prefix_len and length */
675 if (rinfo->length > 3) {
676 return -EINVAL;
677 } else if (rinfo->prefix_len > 128) {
678 return -EINVAL;
679 } else if (rinfo->prefix_len > 64) {
680 if (rinfo->length < 2) {
681 return -EINVAL;
682 }
683 } else if (rinfo->prefix_len > 0) {
684 if (rinfo->length < 1) {
685 return -EINVAL;
686 }
687 }
688
689 pref = rinfo->route_pref;
690 if (pref == ICMPV6_ROUTER_PREF_INVALID)
Jens Rosenboom3933fc92009-09-10 06:25:11 +0000691 return -EINVAL;
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800692
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +0900693 lifetime = addrconf_timeout_fixup(ntohl(rinfo->lifetime), HZ);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800694
695 if (rinfo->length == 3)
696 prefix = (struct in6_addr *)rinfo->prefix;
697 else {
698 /* this function is safe */
699 ipv6_addr_prefix(&prefix_buf,
700 (struct in6_addr *)rinfo->prefix,
701 rinfo->prefix_len);
702 prefix = &prefix_buf;
703 }
704
Daniel Lezcanoefa2cea2008-03-04 13:46:48 -0800705 rt = rt6_get_route_info(net, prefix, rinfo->prefix_len, gwaddr,
706 dev->ifindex);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800707
708 if (rt && !lifetime) {
Thomas Grafe0a1ad732006-08-22 00:00:21 -0700709 ip6_del_rt(rt);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800710 rt = NULL;
711 }
712
713 if (!rt && lifetime)
Daniel Lezcanoefa2cea2008-03-04 13:46:48 -0800714 rt = rt6_add_route_info(net, prefix, rinfo->prefix_len, gwaddr, dev->ifindex,
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800715 pref);
716 else if (rt)
717 rt->rt6i_flags = RTF_ROUTEINFO |
718 (rt->rt6i_flags & ~RTF_PREF_MASK) | RTF_PREF(pref);
719
720 if (rt) {
Gao feng1716a962012-04-06 00:13:10 +0000721 if (!addrconf_finite_timeout(lifetime))
722 rt6_clean_expires(rt);
723 else
724 rt6_set_expires(rt, jiffies + HZ * lifetime);
725
Amerigo Wang94e187c2012-10-29 00:13:19 +0000726 ip6_rt_put(rt);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800727 }
728 return 0;
729}
730#endif
731
Daniel Lezcano8ed67782008-03-04 13:48:30 -0800732#define BACKTRACK(__net, saddr) \
YOSHIFUJI Hideaki982f56f2006-08-23 17:22:39 -0700733do { \
Daniel Lezcano8ed67782008-03-04 13:48:30 -0800734 if (rt == __net->ipv6.ip6_null_entry) { \
YOSHIFUJI Hideaki982f56f2006-08-23 17:22:39 -0700735 struct fib6_node *pn; \
Ville Nuorvalae0eda7b2006-10-16 22:11:11 -0700736 while (1) { \
YOSHIFUJI Hideaki982f56f2006-08-23 17:22:39 -0700737 if (fn->fn_flags & RTN_TL_ROOT) \
738 goto out; \
739 pn = fn->parent; \
740 if (FIB6_SUBTREE(pn) && FIB6_SUBTREE(pn) != fn) \
Kim Nordlund8bce65b2006-12-13 16:38:29 -0800741 fn = fib6_lookup(FIB6_SUBTREE(pn), NULL, saddr); \
YOSHIFUJI Hideaki982f56f2006-08-23 17:22:39 -0700742 else \
743 fn = pn; \
744 if (fn->fn_flags & RTN_RTINFO) \
745 goto restart; \
Thomas Grafc71099a2006-08-04 23:20:06 -0700746 } \
Thomas Grafc71099a2006-08-04 23:20:06 -0700747 } \
David S. Miller38308472011-12-03 18:02:47 -0500748} while (0)
Thomas Grafc71099a2006-08-04 23:20:06 -0700749
Daniel Lezcano8ed67782008-03-04 13:48:30 -0800750static struct rt6_info *ip6_pol_route_lookup(struct net *net,
751 struct fib6_table *table,
David S. Miller4c9483b2011-03-12 16:22:43 -0500752 struct flowi6 *fl6, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753{
754 struct fib6_node *fn;
755 struct rt6_info *rt;
756
Thomas Grafc71099a2006-08-04 23:20:06 -0700757 read_lock_bh(&table->tb6_lock);
David S. Miller4c9483b2011-03-12 16:22:43 -0500758 fn = fib6_lookup(&table->tb6_root, &fl6->daddr, &fl6->saddr);
Thomas Grafc71099a2006-08-04 23:20:06 -0700759restart:
760 rt = fn->leaf;
David S. Miller4c9483b2011-03-12 16:22:43 -0500761 rt = rt6_device_match(net, rt, &fl6->saddr, fl6->flowi6_oif, flags);
Nicolas Dichtel51ebd312012-10-22 03:42:09 +0000762 if (rt->rt6i_nsiblings && fl6->flowi6_oif == 0)
763 rt = rt6_multipath_select(rt, fl6);
David S. Miller4c9483b2011-03-12 16:22:43 -0500764 BACKTRACK(net, &fl6->saddr);
Thomas Grafc71099a2006-08-04 23:20:06 -0700765out:
Changli Gaod8d1f302010-06-10 23:31:35 -0700766 dst_use(&rt->dst, jiffies);
Thomas Grafc71099a2006-08-04 23:20:06 -0700767 read_unlock_bh(&table->tb6_lock);
Thomas Grafc71099a2006-08-04 23:20:06 -0700768 return rt;
769
770}
771
Florian Westphalea6e5742011-09-05 16:05:44 +0200772struct dst_entry * ip6_route_lookup(struct net *net, struct flowi6 *fl6,
773 int flags)
774{
775 return fib6_rule_lookup(net, fl6, flags, ip6_pol_route_lookup);
776}
777EXPORT_SYMBOL_GPL(ip6_route_lookup);
778
YOSHIFUJI Hideaki9acd9f32008-04-10 15:42:10 +0900779struct rt6_info *rt6_lookup(struct net *net, const struct in6_addr *daddr,
780 const struct in6_addr *saddr, int oif, int strict)
Thomas Grafc71099a2006-08-04 23:20:06 -0700781{
David S. Miller4c9483b2011-03-12 16:22:43 -0500782 struct flowi6 fl6 = {
783 .flowi6_oif = oif,
784 .daddr = *daddr,
Thomas Grafc71099a2006-08-04 23:20:06 -0700785 };
786 struct dst_entry *dst;
YOSHIFUJI Hideaki77d16f42006-08-23 17:25:05 -0700787 int flags = strict ? RT6_LOOKUP_F_IFACE : 0;
Thomas Grafc71099a2006-08-04 23:20:06 -0700788
Thomas Grafadaa70b2006-10-13 15:01:03 -0700789 if (saddr) {
David S. Miller4c9483b2011-03-12 16:22:43 -0500790 memcpy(&fl6.saddr, saddr, sizeof(*saddr));
Thomas Grafadaa70b2006-10-13 15:01:03 -0700791 flags |= RT6_LOOKUP_F_HAS_SADDR;
792 }
793
David S. Miller4c9483b2011-03-12 16:22:43 -0500794 dst = fib6_rule_lookup(net, &fl6, flags, ip6_pol_route_lookup);
Thomas Grafc71099a2006-08-04 23:20:06 -0700795 if (dst->error == 0)
796 return (struct rt6_info *) dst;
797
798 dst_release(dst);
799
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 return NULL;
801}
802
YOSHIFUJI Hideaki71590392007-02-22 22:05:40 +0900803EXPORT_SYMBOL(rt6_lookup);
804
Thomas Grafc71099a2006-08-04 23:20:06 -0700805/* ip6_ins_rt is called with FREE table->tb6_lock.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 It takes new route entry, the addition fails by any reason the
807 route is freed. In any case, if caller does not hold it, it may
808 be destroyed.
809 */
810
Thomas Graf86872cb2006-08-22 00:01:08 -0700811static int __ip6_ins_rt(struct rt6_info *rt, struct nl_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812{
813 int err;
Thomas Grafc71099a2006-08-04 23:20:06 -0700814 struct fib6_table *table;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815
Thomas Grafc71099a2006-08-04 23:20:06 -0700816 table = rt->rt6i_table;
817 write_lock_bh(&table->tb6_lock);
Thomas Graf86872cb2006-08-22 00:01:08 -0700818 err = fib6_add(&table->tb6_root, rt, info);
Thomas Grafc71099a2006-08-04 23:20:06 -0700819 write_unlock_bh(&table->tb6_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820
821 return err;
822}
823
Thomas Graf40e22e82006-08-22 00:00:45 -0700824int ip6_ins_rt(struct rt6_info *rt)
825{
Denis V. Lunev4d1169c2008-01-10 03:26:13 -0800826 struct nl_info info = {
David S. Millerd1918542011-12-28 20:19:20 -0500827 .nl_net = dev_net(rt->dst.dev),
Denis V. Lunev4d1169c2008-01-10 03:26:13 -0800828 };
Denis V. Lunev528c4ce2007-12-13 09:45:12 -0800829 return __ip6_ins_rt(rt, &info);
Thomas Graf40e22e82006-08-22 00:00:45 -0700830}
831
Gao feng1716a962012-04-06 00:13:10 +0000832static struct rt6_info *rt6_alloc_cow(struct rt6_info *ort,
Eric Dumazet21efcfa2011-07-19 20:18:36 +0000833 const struct in6_addr *daddr,
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000834 const struct in6_addr *saddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 struct rt6_info *rt;
837
838 /*
839 * Clone the route.
840 */
841
Eric Dumazet21efcfa2011-07-19 20:18:36 +0000842 rt = ip6_rt_copy(ort, daddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843
844 if (rt) {
David S. Miller14deae42009-01-04 16:04:39 -0800845 int attempts = !in_softirq();
846
David S. Miller38308472011-12-03 18:02:47 -0500847 if (!(rt->rt6i_flags & RTF_GATEWAY)) {
David S. Millerbb3c3682011-12-13 17:35:06 -0500848 if (ort->rt6i_dst.plen != 128 &&
Eric Dumazet21efcfa2011-07-19 20:18:36 +0000849 ipv6_addr_equal(&ort->rt6i_dst.addr, daddr))
YOSHIFUJI Hideaki58c4fb82005-12-21 22:56:42 +0900850 rt->rt6i_flags |= RTF_ANYCAST;
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000851 rt->rt6i_gateway = *daddr;
YOSHIFUJI Hideaki58c4fb82005-12-21 22:56:42 +0900852 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 rt->rt6i_flags |= RTF_CACHE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855
856#ifdef CONFIG_IPV6_SUBTREES
857 if (rt->rt6i_src.plen && saddr) {
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000858 rt->rt6i_src.addr = *saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 rt->rt6i_src.plen = 128;
860 }
861#endif
862
David S. Miller14deae42009-01-04 16:04:39 -0800863 retry:
David S. Miller8ade06c2011-12-29 18:51:57 -0500864 if (rt6_bind_neighbour(rt, rt->dst.dev)) {
David S. Millerd1918542011-12-28 20:19:20 -0500865 struct net *net = dev_net(rt->dst.dev);
David S. Miller14deae42009-01-04 16:04:39 -0800866 int saved_rt_min_interval =
867 net->ipv6.sysctl.ip6_rt_gc_min_interval;
868 int saved_rt_elasticity =
869 net->ipv6.sysctl.ip6_rt_gc_elasticity;
870
871 if (attempts-- > 0) {
872 net->ipv6.sysctl.ip6_rt_gc_elasticity = 1;
873 net->ipv6.sysctl.ip6_rt_gc_min_interval = 0;
874
Alexey Dobriyan86393e52009-08-29 01:34:49 +0000875 ip6_dst_gc(&net->ipv6.ip6_dst_ops);
David S. Miller14deae42009-01-04 16:04:39 -0800876
877 net->ipv6.sysctl.ip6_rt_gc_elasticity =
878 saved_rt_elasticity;
879 net->ipv6.sysctl.ip6_rt_gc_min_interval =
880 saved_rt_min_interval;
881 goto retry;
882 }
883
Joe Perchesf3213832012-05-15 14:11:53 +0000884 net_warn_ratelimited("Neighbour table overflow\n");
Changli Gaod8d1f302010-06-10 23:31:35 -0700885 dst_free(&rt->dst);
David S. Miller14deae42009-01-04 16:04:39 -0800886 return NULL;
887 }
YOSHIFUJI Hideaki95a9a5b2006-03-20 16:55:51 -0800888 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889
YOSHIFUJI Hideaki95a9a5b2006-03-20 16:55:51 -0800890 return rt;
891}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892
Eric Dumazet21efcfa2011-07-19 20:18:36 +0000893static struct rt6_info *rt6_alloc_clone(struct rt6_info *ort,
894 const struct in6_addr *daddr)
YOSHIFUJI Hideaki299d9932006-03-20 16:58:32 -0800895{
Eric Dumazet21efcfa2011-07-19 20:18:36 +0000896 struct rt6_info *rt = ip6_rt_copy(ort, daddr);
897
YOSHIFUJI Hideaki299d9932006-03-20 16:58:32 -0800898 if (rt) {
YOSHIFUJI Hideaki299d9932006-03-20 16:58:32 -0800899 rt->rt6i_flags |= RTF_CACHE;
David S. Miller97cac082012-07-02 22:43:47 -0700900 rt->n = neigh_clone(ort->n);
YOSHIFUJI Hideaki299d9932006-03-20 16:58:32 -0800901 }
902 return rt;
903}
904
Daniel Lezcano8ed67782008-03-04 13:48:30 -0800905static struct rt6_info *ip6_pol_route(struct net *net, struct fib6_table *table, int oif,
David S. Miller4c9483b2011-03-12 16:22:43 -0500906 struct flowi6 *fl6, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907{
908 struct fib6_node *fn;
YOSHIFUJI Hideaki519fbd82006-03-20 17:00:05 -0800909 struct rt6_info *rt, *nrt;
Thomas Grafc71099a2006-08-04 23:20:06 -0700910 int strict = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911 int attempts = 3;
YOSHIFUJI Hideaki519fbd82006-03-20 17:00:05 -0800912 int err;
YOSHIFUJI Hideaki53b79972008-07-19 22:35:03 -0700913 int reachable = net->ipv6.devconf_all->forwarding ? 0 : RT6_LOOKUP_F_REACHABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914
YOSHIFUJI Hideaki77d16f42006-08-23 17:25:05 -0700915 strict |= flags & RT6_LOOKUP_F_IFACE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916
917relookup:
Thomas Grafc71099a2006-08-04 23:20:06 -0700918 read_lock_bh(&table->tb6_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919
YOSHIFUJI Hideaki8238dd02006-03-20 17:04:35 -0800920restart_2:
David S. Miller4c9483b2011-03-12 16:22:43 -0500921 fn = fib6_lookup(&table->tb6_root, &fl6->daddr, &fl6->saddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922
923restart:
Pavel Emelyanov4acad722007-10-15 13:02:51 -0700924 rt = rt6_select(fn, oif, strict | reachable);
Nicolas Dichtel51ebd312012-10-22 03:42:09 +0000925 if (rt->rt6i_nsiblings && oif == 0)
926 rt = rt6_multipath_select(rt, fl6);
David S. Miller4c9483b2011-03-12 16:22:43 -0500927 BACKTRACK(net, &fl6->saddr);
Daniel Lezcano8ed67782008-03-04 13:48:30 -0800928 if (rt == net->ipv6.ip6_null_entry ||
YOSHIFUJI Hideaki8238dd02006-03-20 17:04:35 -0800929 rt->rt6i_flags & RTF_CACHE)
YOSHIFUJI Hideaki1ddef0442006-03-20 17:01:24 -0800930 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931
Changli Gaod8d1f302010-06-10 23:31:35 -0700932 dst_hold(&rt->dst);
Thomas Grafc71099a2006-08-04 23:20:06 -0700933 read_unlock_bh(&table->tb6_lock);
YOSHIFUJI Hideakifb9de912006-03-20 16:59:08 -0800934
David S. Miller97cac082012-07-02 22:43:47 -0700935 if (!rt->n && !(rt->rt6i_flags & RTF_NONEXTHOP))
David S. Miller4c9483b2011-03-12 16:22:43 -0500936 nrt = rt6_alloc_cow(rt, &fl6->daddr, &fl6->saddr);
David S. Miller7343ff32011-03-09 19:55:25 -0800937 else if (!(rt->dst.flags & DST_HOST))
David S. Miller4c9483b2011-03-12 16:22:43 -0500938 nrt = rt6_alloc_clone(rt, &fl6->daddr);
David S. Miller7343ff32011-03-09 19:55:25 -0800939 else
940 goto out2;
YOSHIFUJI Hideakie40cf352006-03-20 16:59:27 -0800941
Amerigo Wang94e187c2012-10-29 00:13:19 +0000942 ip6_rt_put(rt);
Daniel Lezcano8ed67782008-03-04 13:48:30 -0800943 rt = nrt ? : net->ipv6.ip6_null_entry;
YOSHIFUJI Hideaki519fbd82006-03-20 17:00:05 -0800944
Changli Gaod8d1f302010-06-10 23:31:35 -0700945 dst_hold(&rt->dst);
YOSHIFUJI Hideaki519fbd82006-03-20 17:00:05 -0800946 if (nrt) {
Thomas Graf40e22e82006-08-22 00:00:45 -0700947 err = ip6_ins_rt(nrt);
YOSHIFUJI Hideaki519fbd82006-03-20 17:00:05 -0800948 if (!err)
949 goto out2;
950 }
951
952 if (--attempts <= 0)
953 goto out2;
954
955 /*
Thomas Grafc71099a2006-08-04 23:20:06 -0700956 * Race condition! In the gap, when table->tb6_lock was
YOSHIFUJI Hideaki519fbd82006-03-20 17:00:05 -0800957 * released someone could insert this route. Relookup.
958 */
Amerigo Wang94e187c2012-10-29 00:13:19 +0000959 ip6_rt_put(rt);
YOSHIFUJI Hideaki519fbd82006-03-20 17:00:05 -0800960 goto relookup;
961
962out:
YOSHIFUJI Hideaki8238dd02006-03-20 17:04:35 -0800963 if (reachable) {
964 reachable = 0;
965 goto restart_2;
966 }
Changli Gaod8d1f302010-06-10 23:31:35 -0700967 dst_hold(&rt->dst);
Thomas Grafc71099a2006-08-04 23:20:06 -0700968 read_unlock_bh(&table->tb6_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969out2:
Changli Gaod8d1f302010-06-10 23:31:35 -0700970 rt->dst.lastuse = jiffies;
971 rt->dst.__use++;
Thomas Grafc71099a2006-08-04 23:20:06 -0700972
973 return rt;
974}
975
Daniel Lezcano8ed67782008-03-04 13:48:30 -0800976static struct rt6_info *ip6_pol_route_input(struct net *net, struct fib6_table *table,
David S. Miller4c9483b2011-03-12 16:22:43 -0500977 struct flowi6 *fl6, int flags)
Pavel Emelyanov4acad722007-10-15 13:02:51 -0700978{
David S. Miller4c9483b2011-03-12 16:22:43 -0500979 return ip6_pol_route(net, table, fl6->flowi6_iif, fl6, flags);
Pavel Emelyanov4acad722007-10-15 13:02:51 -0700980}
981
Shmulik Ladkani72331bc2012-04-01 04:03:45 +0000982static struct dst_entry *ip6_route_input_lookup(struct net *net,
983 struct net_device *dev,
984 struct flowi6 *fl6, int flags)
985{
986 if (rt6_need_strict(&fl6->daddr) && dev->type != ARPHRD_PIMREG)
987 flags |= RT6_LOOKUP_F_IFACE;
988
989 return fib6_rule_lookup(net, fl6, flags, ip6_pol_route_input);
990}
991
Thomas Grafc71099a2006-08-04 23:20:06 -0700992void ip6_route_input(struct sk_buff *skb)
993{
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000994 const struct ipv6hdr *iph = ipv6_hdr(skb);
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900995 struct net *net = dev_net(skb->dev);
Thomas Grafadaa70b2006-10-13 15:01:03 -0700996 int flags = RT6_LOOKUP_F_HAS_SADDR;
David S. Miller4c9483b2011-03-12 16:22:43 -0500997 struct flowi6 fl6 = {
998 .flowi6_iif = skb->dev->ifindex,
999 .daddr = iph->daddr,
1000 .saddr = iph->saddr,
David S. Miller38308472011-12-03 18:02:47 -05001001 .flowlabel = (* (__be32 *) iph) & IPV6_FLOWINFO_MASK,
David S. Miller4c9483b2011-03-12 16:22:43 -05001002 .flowi6_mark = skb->mark,
1003 .flowi6_proto = iph->nexthdr,
Thomas Grafc71099a2006-08-04 23:20:06 -07001004 };
Thomas Grafadaa70b2006-10-13 15:01:03 -07001005
Shmulik Ladkani72331bc2012-04-01 04:03:45 +00001006 skb_dst_set(skb, ip6_route_input_lookup(net, skb->dev, &fl6, flags));
Thomas Grafc71099a2006-08-04 23:20:06 -07001007}
1008
Daniel Lezcano8ed67782008-03-04 13:48:30 -08001009static struct rt6_info *ip6_pol_route_output(struct net *net, struct fib6_table *table,
David S. Miller4c9483b2011-03-12 16:22:43 -05001010 struct flowi6 *fl6, int flags)
Thomas Grafc71099a2006-08-04 23:20:06 -07001011{
David S. Miller4c9483b2011-03-12 16:22:43 -05001012 return ip6_pol_route(net, table, fl6->flowi6_oif, fl6, flags);
Thomas Grafc71099a2006-08-04 23:20:06 -07001013}
1014
Florian Westphal9c7a4f92011-03-22 19:17:36 -07001015struct dst_entry * ip6_route_output(struct net *net, const struct sock *sk,
David S. Miller4c9483b2011-03-12 16:22:43 -05001016 struct flowi6 *fl6)
Thomas Grafc71099a2006-08-04 23:20:06 -07001017{
1018 int flags = 0;
1019
Pavel Emelyanov1fb94892012-08-08 21:53:36 +00001020 fl6->flowi6_iif = LOOPBACK_IFINDEX;
David McCullough4dc27d1c2012-06-25 15:42:26 +00001021
David S. Miller4c9483b2011-03-12 16:22:43 -05001022 if ((sk && sk->sk_bound_dev_if) || rt6_need_strict(&fl6->daddr))
YOSHIFUJI Hideaki77d16f42006-08-23 17:25:05 -07001023 flags |= RT6_LOOKUP_F_IFACE;
Thomas Grafc71099a2006-08-04 23:20:06 -07001024
David S. Miller4c9483b2011-03-12 16:22:43 -05001025 if (!ipv6_addr_any(&fl6->saddr))
Thomas Grafadaa70b2006-10-13 15:01:03 -07001026 flags |= RT6_LOOKUP_F_HAS_SADDR;
YOSHIFUJI Hideaki / 吉藤英明0c9a2ac2010-03-07 00:14:44 +00001027 else if (sk)
1028 flags |= rt6_srcprefs2flags(inet6_sk(sk)->srcprefs);
Thomas Grafadaa70b2006-10-13 15:01:03 -07001029
David S. Miller4c9483b2011-03-12 16:22:43 -05001030 return fib6_rule_lookup(net, fl6, flags, ip6_pol_route_output);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031}
1032
YOSHIFUJI Hideaki71590392007-02-22 22:05:40 +09001033EXPORT_SYMBOL(ip6_route_output);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034
David S. Miller2774c132011-03-01 14:59:04 -08001035struct dst_entry *ip6_blackhole_route(struct net *net, struct dst_entry *dst_orig)
David S. Miller14e50e52007-05-24 18:17:54 -07001036{
David S. Miller5c1e6aa2011-04-28 14:13:38 -07001037 struct rt6_info *rt, *ort = (struct rt6_info *) dst_orig;
David S. Miller14e50e52007-05-24 18:17:54 -07001038 struct dst_entry *new = NULL;
1039
David S. Millerf5b0a872012-07-19 12:31:33 -07001040 rt = dst_alloc(&ip6_dst_blackhole_ops, ort->dst.dev, 1, DST_OBSOLETE_NONE, 0);
David S. Miller14e50e52007-05-24 18:17:54 -07001041 if (rt) {
Changli Gaod8d1f302010-06-10 23:31:35 -07001042 new = &rt->dst;
David S. Miller14e50e52007-05-24 18:17:54 -07001043
Steffen Klassert81048912012-07-05 23:37:09 +00001044 memset(new + 1, 0, sizeof(*rt) - sizeof(*new));
1045 rt6_init_peer(rt, net->ipv6.peers);
1046
David S. Miller14e50e52007-05-24 18:17:54 -07001047 new->__use = 1;
Herbert Xu352e5122007-11-13 21:34:06 -08001048 new->input = dst_discard;
1049 new->output = dst_discard;
David S. Miller14e50e52007-05-24 18:17:54 -07001050
Eric Dumazet21efcfa2011-07-19 20:18:36 +00001051 if (dst_metrics_read_only(&ort->dst))
1052 new->_metrics = ort->dst._metrics;
1053 else
1054 dst_copy_metrics(new, &ort->dst);
David S. Miller14e50e52007-05-24 18:17:54 -07001055 rt->rt6i_idev = ort->rt6i_idev;
1056 if (rt->rt6i_idev)
1057 in6_dev_hold(rt->rt6i_idev);
David S. Miller14e50e52007-05-24 18:17:54 -07001058
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001059 rt->rt6i_gateway = ort->rt6i_gateway;
Gao feng1716a962012-04-06 00:13:10 +00001060 rt->rt6i_flags = ort->rt6i_flags;
1061 rt6_clean_expires(rt);
David S. Miller14e50e52007-05-24 18:17:54 -07001062 rt->rt6i_metric = 0;
1063
1064 memcpy(&rt->rt6i_dst, &ort->rt6i_dst, sizeof(struct rt6key));
1065#ifdef CONFIG_IPV6_SUBTREES
1066 memcpy(&rt->rt6i_src, &ort->rt6i_src, sizeof(struct rt6key));
1067#endif
1068
1069 dst_free(new);
1070 }
1071
David S. Miller69ead7a2011-03-01 14:45:33 -08001072 dst_release(dst_orig);
1073 return new ? new : ERR_PTR(-ENOMEM);
David S. Miller14e50e52007-05-24 18:17:54 -07001074}
David S. Miller14e50e52007-05-24 18:17:54 -07001075
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076/*
1077 * Destination cache support functions
1078 */
1079
1080static struct dst_entry *ip6_dst_check(struct dst_entry *dst, u32 cookie)
1081{
1082 struct rt6_info *rt;
1083
1084 rt = (struct rt6_info *) dst;
1085
Nicolas Dichtel6f3118b2012-09-10 22:09:46 +00001086 /* All IPV6 dsts are created with ->obsolete set to the value
1087 * DST_OBSOLETE_FORCE_CHK which forces validation calls down
1088 * into this function always.
1089 */
1090 if (rt->rt6i_genid != rt_genid(dev_net(rt->dst.dev)))
1091 return NULL;
1092
Li RongQinga4477c42012-11-07 21:56:33 +00001093 if (rt->rt6i_node && (rt->rt6i_node->fn_sernum == cookie))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094 return dst;
Li RongQinga4477c42012-11-07 21:56:33 +00001095
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096 return NULL;
1097}
1098
1099static struct dst_entry *ip6_negative_advice(struct dst_entry *dst)
1100{
1101 struct rt6_info *rt = (struct rt6_info *) dst;
1102
1103 if (rt) {
YOSHIFUJI Hideaki / 吉藤英明54c1a852010-03-28 07:15:45 +00001104 if (rt->rt6i_flags & RTF_CACHE) {
1105 if (rt6_check_expired(rt)) {
1106 ip6_del_rt(rt);
1107 dst = NULL;
1108 }
1109 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110 dst_release(dst);
YOSHIFUJI Hideaki / 吉藤英明54c1a852010-03-28 07:15:45 +00001111 dst = NULL;
1112 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113 }
YOSHIFUJI Hideaki / 吉藤英明54c1a852010-03-28 07:15:45 +00001114 return dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115}
1116
1117static void ip6_link_failure(struct sk_buff *skb)
1118{
1119 struct rt6_info *rt;
1120
Alexey Dobriyan3ffe5332010-02-18 08:25:24 +00001121 icmpv6_send(skb, ICMPV6_DEST_UNREACH, ICMPV6_ADDR_UNREACH, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122
Eric Dumazetadf30902009-06-02 05:19:30 +00001123 rt = (struct rt6_info *) skb_dst(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124 if (rt) {
Gao feng1716a962012-04-06 00:13:10 +00001125 if (rt->rt6i_flags & RTF_CACHE)
1126 rt6_update_expires(rt, 0);
1127 else if (rt->rt6i_node && (rt->rt6i_flags & RTF_DEFAULT))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128 rt->rt6i_node->fn_sernum = -1;
1129 }
1130}
1131
David S. Miller6700c272012-07-17 03:29:28 -07001132static void ip6_rt_update_pmtu(struct dst_entry *dst, struct sock *sk,
1133 struct sk_buff *skb, u32 mtu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134{
1135 struct rt6_info *rt6 = (struct rt6_info*)dst;
1136
David S. Miller81aded22012-06-15 14:54:11 -07001137 dst_confirm(dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138 if (mtu < dst_mtu(dst) && rt6->rt6i_dst.plen == 128) {
David S. Miller81aded22012-06-15 14:54:11 -07001139 struct net *net = dev_net(dst->dev);
1140
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141 rt6->rt6i_flags |= RTF_MODIFIED;
1142 if (mtu < IPV6_MIN_MTU) {
David S. Millerdefb3512010-12-08 21:16:57 -08001143 u32 features = dst_metric(dst, RTAX_FEATURES);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144 mtu = IPV6_MIN_MTU;
David S. Millerdefb3512010-12-08 21:16:57 -08001145 features |= RTAX_FEATURE_ALLFRAG;
1146 dst_metric_set(dst, RTAX_FEATURES, features);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147 }
David S. Millerdefb3512010-12-08 21:16:57 -08001148 dst_metric_set(dst, RTAX_MTU, mtu);
David S. Miller81aded22012-06-15 14:54:11 -07001149 rt6_update_expires(rt6, net->ipv6.sysctl.ip6_rt_mtu_expires);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150 }
1151}
1152
David S. Miller42ae66c2012-06-15 20:01:57 -07001153void ip6_update_pmtu(struct sk_buff *skb, struct net *net, __be32 mtu,
1154 int oif, u32 mark)
David S. Miller81aded22012-06-15 14:54:11 -07001155{
1156 const struct ipv6hdr *iph = (struct ipv6hdr *) skb->data;
1157 struct dst_entry *dst;
1158 struct flowi6 fl6;
1159
1160 memset(&fl6, 0, sizeof(fl6));
1161 fl6.flowi6_oif = oif;
1162 fl6.flowi6_mark = mark;
David S. Miller3e129392012-07-10 04:01:57 -07001163 fl6.flowi6_flags = 0;
David S. Miller81aded22012-06-15 14:54:11 -07001164 fl6.daddr = iph->daddr;
1165 fl6.saddr = iph->saddr;
1166 fl6.flowlabel = (*(__be32 *) iph) & IPV6_FLOWINFO_MASK;
1167
1168 dst = ip6_route_output(net, NULL, &fl6);
1169 if (!dst->error)
David S. Miller6700c272012-07-17 03:29:28 -07001170 ip6_rt_update_pmtu(dst, NULL, skb, ntohl(mtu));
David S. Miller81aded22012-06-15 14:54:11 -07001171 dst_release(dst);
1172}
1173EXPORT_SYMBOL_GPL(ip6_update_pmtu);
1174
1175void ip6_sk_update_pmtu(struct sk_buff *skb, struct sock *sk, __be32 mtu)
1176{
1177 ip6_update_pmtu(skb, sock_net(sk), mtu,
1178 sk->sk_bound_dev_if, sk->sk_mark);
1179}
1180EXPORT_SYMBOL_GPL(ip6_sk_update_pmtu);
1181
David S. Miller3a5ad2e2012-07-12 00:08:07 -07001182void ip6_redirect(struct sk_buff *skb, struct net *net, int oif, u32 mark)
1183{
1184 const struct ipv6hdr *iph = (struct ipv6hdr *) skb->data;
1185 struct dst_entry *dst;
1186 struct flowi6 fl6;
1187
1188 memset(&fl6, 0, sizeof(fl6));
1189 fl6.flowi6_oif = oif;
1190 fl6.flowi6_mark = mark;
1191 fl6.flowi6_flags = 0;
1192 fl6.daddr = iph->daddr;
1193 fl6.saddr = iph->saddr;
1194 fl6.flowlabel = (*(__be32 *) iph) & IPV6_FLOWINFO_MASK;
1195
1196 dst = ip6_route_output(net, NULL, &fl6);
1197 if (!dst->error)
David S. Miller6700c272012-07-17 03:29:28 -07001198 rt6_do_redirect(dst, NULL, skb);
David S. Miller3a5ad2e2012-07-12 00:08:07 -07001199 dst_release(dst);
1200}
1201EXPORT_SYMBOL_GPL(ip6_redirect);
1202
1203void ip6_sk_redirect(struct sk_buff *skb, struct sock *sk)
1204{
1205 ip6_redirect(skb, sock_net(sk), sk->sk_bound_dev_if, sk->sk_mark);
1206}
1207EXPORT_SYMBOL_GPL(ip6_sk_redirect);
1208
David S. Miller0dbaee32010-12-13 12:52:14 -08001209static unsigned int ip6_default_advmss(const struct dst_entry *dst)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210{
David S. Miller0dbaee32010-12-13 12:52:14 -08001211 struct net_device *dev = dst->dev;
1212 unsigned int mtu = dst_mtu(dst);
1213 struct net *net = dev_net(dev);
1214
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215 mtu -= sizeof(struct ipv6hdr) + sizeof(struct tcphdr);
1216
Daniel Lezcano55786892008-03-04 13:47:47 -08001217 if (mtu < net->ipv6.sysctl.ip6_rt_min_advmss)
1218 mtu = net->ipv6.sysctl.ip6_rt_min_advmss;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219
1220 /*
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001221 * Maximal non-jumbo IPv6 payload is IPV6_MAXPLEN and
1222 * corresponding MSS is IPV6_MAXPLEN - tcp_header_size.
1223 * IPV6_MAXPLEN is also valid and means: "any MSS,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224 * rely only on pmtu discovery"
1225 */
1226 if (mtu > IPV6_MAXPLEN - sizeof(struct tcphdr))
1227 mtu = IPV6_MAXPLEN;
1228 return mtu;
1229}
1230
Steffen Klassertebb762f2011-11-23 02:12:51 +00001231static unsigned int ip6_mtu(const struct dst_entry *dst)
David S. Millerd33e4552010-12-14 13:01:14 -08001232{
David S. Millerd33e4552010-12-14 13:01:14 -08001233 struct inet6_dev *idev;
Steffen Klassert618f9bc2011-11-23 02:13:31 +00001234 unsigned int mtu = dst_metric_raw(dst, RTAX_MTU);
1235
1236 if (mtu)
1237 return mtu;
1238
1239 mtu = IPV6_MIN_MTU;
David S. Millerd33e4552010-12-14 13:01:14 -08001240
1241 rcu_read_lock();
1242 idev = __in6_dev_get(dst->dev);
1243 if (idev)
1244 mtu = idev->cnf.mtu6;
1245 rcu_read_unlock();
1246
1247 return mtu;
1248}
1249
YOSHIFUJI Hideaki3b009442007-12-06 16:11:48 -08001250static struct dst_entry *icmp6_dst_gc_list;
1251static DEFINE_SPINLOCK(icmp6_dst_lock);
Thomas Graf5d0bbee2006-08-04 03:37:36 -07001252
YOSHIFUJI Hideaki3b009442007-12-06 16:11:48 -08001253struct dst_entry *icmp6_dst_alloc(struct net_device *dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254 struct neighbour *neigh,
David S. Miller87a11572011-12-06 17:04:13 -05001255 struct flowi6 *fl6)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256{
David S. Miller87a11572011-12-06 17:04:13 -05001257 struct dst_entry *dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258 struct rt6_info *rt;
1259 struct inet6_dev *idev = in6_dev_get(dev);
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001260 struct net *net = dev_net(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261
David S. Miller38308472011-12-03 18:02:47 -05001262 if (unlikely(!idev))
Eric Dumazet122bdf62012-03-14 21:13:11 +00001263 return ERR_PTR(-ENODEV);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264
David S. Miller8b96d222012-06-11 02:01:56 -07001265 rt = ip6_dst_alloc(net, dev, 0, NULL);
David S. Miller38308472011-12-03 18:02:47 -05001266 if (unlikely(!rt)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267 in6_dev_put(idev);
David S. Miller87a11572011-12-06 17:04:13 -05001268 dst = ERR_PTR(-ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269 goto out;
1270 }
1271
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272 if (neigh)
1273 neigh_hold(neigh);
David S. Miller14deae42009-01-04 16:04:39 -08001274 else {
David S. Millerf894cbf2012-07-02 21:52:24 -07001275 neigh = ip6_neigh_lookup(&rt->dst, NULL, &fl6->daddr);
David S. Millerb43faac2011-12-13 16:48:21 -05001276 if (IS_ERR(neigh)) {
RongQing.Li252c3d82012-01-12 22:33:46 +00001277 in6_dev_put(idev);
David S. Millerb43faac2011-12-13 16:48:21 -05001278 dst_free(&rt->dst);
1279 return ERR_CAST(neigh);
1280 }
David S. Miller14deae42009-01-04 16:04:39 -08001281 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282
Yan, Zheng8e2ec632011-09-05 21:34:30 +00001283 rt->dst.flags |= DST_HOST;
1284 rt->dst.output = ip6_output;
David S. Miller97cac082012-07-02 22:43:47 -07001285 rt->n = neigh;
Changli Gaod8d1f302010-06-10 23:31:35 -07001286 atomic_set(&rt->dst.__refcnt, 1);
David S. Miller87a11572011-12-06 17:04:13 -05001287 rt->rt6i_dst.addr = fl6->daddr;
Yan, Zheng8e2ec632011-09-05 21:34:30 +00001288 rt->rt6i_dst.plen = 128;
1289 rt->rt6i_idev = idev;
Gao feng70116872011-10-28 02:46:57 +00001290 dst_metric_set(&rt->dst, RTAX_HOPLIMIT, 255);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291
YOSHIFUJI Hideaki3b009442007-12-06 16:11:48 -08001292 spin_lock_bh(&icmp6_dst_lock);
Changli Gaod8d1f302010-06-10 23:31:35 -07001293 rt->dst.next = icmp6_dst_gc_list;
1294 icmp6_dst_gc_list = &rt->dst;
YOSHIFUJI Hideaki3b009442007-12-06 16:11:48 -08001295 spin_unlock_bh(&icmp6_dst_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296
Daniel Lezcano55786892008-03-04 13:47:47 -08001297 fib6_force_start_gc(net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298
David S. Miller87a11572011-12-06 17:04:13 -05001299 dst = xfrm_lookup(net, &rt->dst, flowi6_to_flowi(fl6), NULL, 0);
1300
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301out:
David S. Miller87a11572011-12-06 17:04:13 -05001302 return dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303}
1304
Stephen Hemminger3d0f24a2008-07-22 14:35:50 -07001305int icmp6_dst_gc(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306{
Hagen Paul Pfeifere9476e92011-02-25 05:45:19 +00001307 struct dst_entry *dst, **pprev;
Stephen Hemminger3d0f24a2008-07-22 14:35:50 -07001308 int more = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309
YOSHIFUJI Hideaki3b009442007-12-06 16:11:48 -08001310 spin_lock_bh(&icmp6_dst_lock);
1311 pprev = &icmp6_dst_gc_list;
Thomas Graf5d0bbee2006-08-04 03:37:36 -07001312
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313 while ((dst = *pprev) != NULL) {
1314 if (!atomic_read(&dst->__refcnt)) {
1315 *pprev = dst->next;
1316 dst_free(dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317 } else {
1318 pprev = &dst->next;
Stephen Hemminger3d0f24a2008-07-22 14:35:50 -07001319 ++more;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320 }
1321 }
1322
YOSHIFUJI Hideaki3b009442007-12-06 16:11:48 -08001323 spin_unlock_bh(&icmp6_dst_lock);
Thomas Graf5d0bbee2006-08-04 03:37:36 -07001324
Stephen Hemminger3d0f24a2008-07-22 14:35:50 -07001325 return more;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326}
1327
David S. Miller1e493d12008-09-10 17:27:15 -07001328static void icmp6_clean_all(int (*func)(struct rt6_info *rt, void *arg),
1329 void *arg)
1330{
1331 struct dst_entry *dst, **pprev;
1332
1333 spin_lock_bh(&icmp6_dst_lock);
1334 pprev = &icmp6_dst_gc_list;
1335 while ((dst = *pprev) != NULL) {
1336 struct rt6_info *rt = (struct rt6_info *) dst;
1337 if (func(rt, arg)) {
1338 *pprev = dst->next;
1339 dst_free(dst);
1340 } else {
1341 pprev = &dst->next;
1342 }
1343 }
1344 spin_unlock_bh(&icmp6_dst_lock);
1345}
1346
Daniel Lezcano569d3642008-01-18 03:56:57 -08001347static int ip6_dst_gc(struct dst_ops *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349 unsigned long now = jiffies;
Alexey Dobriyan86393e52009-08-29 01:34:49 +00001350 struct net *net = container_of(ops, struct net, ipv6.ip6_dst_ops);
Daniel Lezcano7019b782008-03-04 13:50:14 -08001351 int rt_min_interval = net->ipv6.sysctl.ip6_rt_gc_min_interval;
1352 int rt_max_size = net->ipv6.sysctl.ip6_rt_max_size;
1353 int rt_elasticity = net->ipv6.sysctl.ip6_rt_gc_elasticity;
1354 int rt_gc_timeout = net->ipv6.sysctl.ip6_rt_gc_timeout;
1355 unsigned long rt_last_gc = net->ipv6.ip6_rt_last_gc;
Eric Dumazetfc66f952010-10-08 06:37:34 +00001356 int entries;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357
Eric Dumazetfc66f952010-10-08 06:37:34 +00001358 entries = dst_entries_get_fast(ops);
Daniel Lezcano7019b782008-03-04 13:50:14 -08001359 if (time_after(rt_last_gc + rt_min_interval, now) &&
Eric Dumazetfc66f952010-10-08 06:37:34 +00001360 entries <= rt_max_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361 goto out;
1362
Benjamin Thery6891a342008-03-04 13:49:47 -08001363 net->ipv6.ip6_rt_gc_expire++;
1364 fib6_run_gc(net->ipv6.ip6_rt_gc_expire, net);
1365 net->ipv6.ip6_rt_last_gc = now;
Eric Dumazetfc66f952010-10-08 06:37:34 +00001366 entries = dst_entries_get_slow(ops);
1367 if (entries < ops->gc_thresh)
Daniel Lezcano7019b782008-03-04 13:50:14 -08001368 net->ipv6.ip6_rt_gc_expire = rt_gc_timeout>>1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369out:
Daniel Lezcano7019b782008-03-04 13:50:14 -08001370 net->ipv6.ip6_rt_gc_expire -= net->ipv6.ip6_rt_gc_expire>>rt_elasticity;
Eric Dumazetfc66f952010-10-08 06:37:34 +00001371 return entries > rt_max_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372}
1373
1374/* Clean host part of a prefix. Not necessary in radix tree,
1375 but results in cleaner routing tables.
1376
1377 Remove it only when all the things will work!
1378 */
1379
YOSHIFUJI Hideaki6b75d092008-03-10 06:00:30 -04001380int ip6_dst_hoplimit(struct dst_entry *dst)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381{
David S. Miller5170ae82010-12-12 21:35:57 -08001382 int hoplimit = dst_metric_raw(dst, RTAX_HOPLIMIT);
David S. Millera02e4b72010-12-12 21:39:02 -08001383 if (hoplimit == 0) {
YOSHIFUJI Hideaki6b75d092008-03-10 06:00:30 -04001384 struct net_device *dev = dst->dev;
Eric Dumazetc68f24c2010-06-14 04:46:20 +00001385 struct inet6_dev *idev;
1386
1387 rcu_read_lock();
1388 idev = __in6_dev_get(dev);
1389 if (idev)
YOSHIFUJI Hideaki6b75d092008-03-10 06:00:30 -04001390 hoplimit = idev->cnf.hop_limit;
Eric Dumazetc68f24c2010-06-14 04:46:20 +00001391 else
YOSHIFUJI Hideaki53b79972008-07-19 22:35:03 -07001392 hoplimit = dev_net(dev)->ipv6.devconf_all->hop_limit;
Eric Dumazetc68f24c2010-06-14 04:46:20 +00001393 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394 }
1395 return hoplimit;
1396}
David S. Millerabbf46a2010-12-12 21:14:46 -08001397EXPORT_SYMBOL(ip6_dst_hoplimit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398
1399/*
1400 *
1401 */
1402
Thomas Graf86872cb2006-08-22 00:01:08 -07001403int ip6_route_add(struct fib6_config *cfg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404{
1405 int err;
Daniel Lezcano55786892008-03-04 13:47:47 -08001406 struct net *net = cfg->fc_nlinfo.nl_net;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407 struct rt6_info *rt = NULL;
1408 struct net_device *dev = NULL;
1409 struct inet6_dev *idev = NULL;
Thomas Grafc71099a2006-08-04 23:20:06 -07001410 struct fib6_table *table;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411 int addr_type;
1412
Thomas Graf86872cb2006-08-22 00:01:08 -07001413 if (cfg->fc_dst_len > 128 || cfg->fc_src_len > 128)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414 return -EINVAL;
1415#ifndef CONFIG_IPV6_SUBTREES
Thomas Graf86872cb2006-08-22 00:01:08 -07001416 if (cfg->fc_src_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417 return -EINVAL;
1418#endif
Thomas Graf86872cb2006-08-22 00:01:08 -07001419 if (cfg->fc_ifindex) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420 err = -ENODEV;
Daniel Lezcano55786892008-03-04 13:47:47 -08001421 dev = dev_get_by_index(net, cfg->fc_ifindex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422 if (!dev)
1423 goto out;
1424 idev = in6_dev_get(dev);
1425 if (!idev)
1426 goto out;
1427 }
1428
Thomas Graf86872cb2006-08-22 00:01:08 -07001429 if (cfg->fc_metric == 0)
1430 cfg->fc_metric = IP6_RT_PRIO_USER;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431
Matti Vaittinend71314b2011-11-14 00:14:49 +00001432 err = -ENOBUFS;
David S. Miller38308472011-12-03 18:02:47 -05001433 if (cfg->fc_nlinfo.nlh &&
1434 !(cfg->fc_nlinfo.nlh->nlmsg_flags & NLM_F_CREATE)) {
Matti Vaittinend71314b2011-11-14 00:14:49 +00001435 table = fib6_get_table(net, cfg->fc_table);
David S. Miller38308472011-12-03 18:02:47 -05001436 if (!table) {
Joe Perchesf3213832012-05-15 14:11:53 +00001437 pr_warn("NLM_F_CREATE should be specified when creating new route\n");
Matti Vaittinend71314b2011-11-14 00:14:49 +00001438 table = fib6_new_table(net, cfg->fc_table);
1439 }
1440 } else {
1441 table = fib6_new_table(net, cfg->fc_table);
1442 }
David S. Miller38308472011-12-03 18:02:47 -05001443
1444 if (!table)
Thomas Grafc71099a2006-08-04 23:20:06 -07001445 goto out;
Thomas Grafc71099a2006-08-04 23:20:06 -07001446
David S. Miller8b96d222012-06-11 02:01:56 -07001447 rt = ip6_dst_alloc(net, NULL, DST_NOCOUNT, table);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448
David S. Miller38308472011-12-03 18:02:47 -05001449 if (!rt) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450 err = -ENOMEM;
1451 goto out;
1452 }
1453
Gao feng1716a962012-04-06 00:13:10 +00001454 if (cfg->fc_flags & RTF_EXPIRES)
1455 rt6_set_expires(rt, jiffies +
1456 clock_t_to_jiffies(cfg->fc_expires));
1457 else
1458 rt6_clean_expires(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459
Thomas Graf86872cb2006-08-22 00:01:08 -07001460 if (cfg->fc_protocol == RTPROT_UNSPEC)
1461 cfg->fc_protocol = RTPROT_BOOT;
1462 rt->rt6i_protocol = cfg->fc_protocol;
1463
1464 addr_type = ipv6_addr_type(&cfg->fc_dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465
1466 if (addr_type & IPV6_ADDR_MULTICAST)
Changli Gaod8d1f302010-06-10 23:31:35 -07001467 rt->dst.input = ip6_mc_input;
Maciej Żenczykowskiab79ad12010-09-27 00:07:02 +00001468 else if (cfg->fc_flags & RTF_LOCAL)
1469 rt->dst.input = ip6_input;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470 else
Changli Gaod8d1f302010-06-10 23:31:35 -07001471 rt->dst.input = ip6_forward;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472
Changli Gaod8d1f302010-06-10 23:31:35 -07001473 rt->dst.output = ip6_output;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474
Thomas Graf86872cb2006-08-22 00:01:08 -07001475 ipv6_addr_prefix(&rt->rt6i_dst.addr, &cfg->fc_dst, cfg->fc_dst_len);
1476 rt->rt6i_dst.plen = cfg->fc_dst_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477 if (rt->rt6i_dst.plen == 128)
David S. Miller11d53b42011-06-24 15:23:34 -07001478 rt->dst.flags |= DST_HOST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479
Yan, Zheng8e2ec632011-09-05 21:34:30 +00001480 if (!(rt->dst.flags & DST_HOST) && cfg->fc_mx) {
1481 u32 *metrics = kzalloc(sizeof(u32) * RTAX_MAX, GFP_KERNEL);
1482 if (!metrics) {
1483 err = -ENOMEM;
1484 goto out;
1485 }
1486 dst_init_metrics(&rt->dst, metrics, 0);
1487 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488#ifdef CONFIG_IPV6_SUBTREES
Thomas Graf86872cb2006-08-22 00:01:08 -07001489 ipv6_addr_prefix(&rt->rt6i_src.addr, &cfg->fc_src, cfg->fc_src_len);
1490 rt->rt6i_src.plen = cfg->fc_src_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491#endif
1492
Thomas Graf86872cb2006-08-22 00:01:08 -07001493 rt->rt6i_metric = cfg->fc_metric;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494
1495 /* We cannot add true routes via loopback here,
1496 they would result in kernel looping; promote them to reject routes
1497 */
Thomas Graf86872cb2006-08-22 00:01:08 -07001498 if ((cfg->fc_flags & RTF_REJECT) ||
David S. Miller38308472011-12-03 18:02:47 -05001499 (dev && (dev->flags & IFF_LOOPBACK) &&
1500 !(addr_type & IPV6_ADDR_LOOPBACK) &&
1501 !(cfg->fc_flags & RTF_LOCAL))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502 /* hold loopback dev/idev if we haven't done so. */
Daniel Lezcano55786892008-03-04 13:47:47 -08001503 if (dev != net->loopback_dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504 if (dev) {
1505 dev_put(dev);
1506 in6_dev_put(idev);
1507 }
Daniel Lezcano55786892008-03-04 13:47:47 -08001508 dev = net->loopback_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509 dev_hold(dev);
1510 idev = in6_dev_get(dev);
1511 if (!idev) {
1512 err = -ENODEV;
1513 goto out;
1514 }
1515 }
Changli Gaod8d1f302010-06-10 23:31:35 -07001516 rt->dst.output = ip6_pkt_discard_out;
1517 rt->dst.input = ip6_pkt_discard;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518 rt->rt6i_flags = RTF_REJECT|RTF_NONEXTHOP;
Nicolas Dichtelef2c7d72012-09-05 02:12:42 +00001519 switch (cfg->fc_type) {
1520 case RTN_BLACKHOLE:
1521 rt->dst.error = -EINVAL;
1522 break;
1523 case RTN_PROHIBIT:
1524 rt->dst.error = -EACCES;
1525 break;
Nicolas Dichtelb4949ab2012-09-06 05:53:35 +00001526 case RTN_THROW:
1527 rt->dst.error = -EAGAIN;
1528 break;
Nicolas Dichtelef2c7d72012-09-05 02:12:42 +00001529 default:
1530 rt->dst.error = -ENETUNREACH;
1531 break;
1532 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533 goto install_route;
1534 }
1535
Thomas Graf86872cb2006-08-22 00:01:08 -07001536 if (cfg->fc_flags & RTF_GATEWAY) {
Eric Dumazetb71d1d42011-04-22 04:53:02 +00001537 const struct in6_addr *gw_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538 int gwa_type;
1539
Thomas Graf86872cb2006-08-22 00:01:08 -07001540 gw_addr = &cfg->fc_gateway;
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001541 rt->rt6i_gateway = *gw_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542 gwa_type = ipv6_addr_type(gw_addr);
1543
1544 if (gwa_type != (IPV6_ADDR_LINKLOCAL|IPV6_ADDR_UNICAST)) {
1545 struct rt6_info *grt;
1546
1547 /* IPv6 strictly inhibits using not link-local
1548 addresses as nexthop address.
1549 Otherwise, router will not able to send redirects.
1550 It is very good, but in some (rare!) circumstances
1551 (SIT, PtP, NBMA NOARP links) it is handy to allow
1552 some exceptions. --ANK
1553 */
1554 err = -EINVAL;
David S. Miller38308472011-12-03 18:02:47 -05001555 if (!(gwa_type & IPV6_ADDR_UNICAST))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556 goto out;
1557
Daniel Lezcano55786892008-03-04 13:47:47 -08001558 grt = rt6_lookup(net, gw_addr, NULL, cfg->fc_ifindex, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559
1560 err = -EHOSTUNREACH;
David S. Miller38308472011-12-03 18:02:47 -05001561 if (!grt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562 goto out;
1563 if (dev) {
David S. Millerd1918542011-12-28 20:19:20 -05001564 if (dev != grt->dst.dev) {
Amerigo Wang94e187c2012-10-29 00:13:19 +00001565 ip6_rt_put(grt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566 goto out;
1567 }
1568 } else {
David S. Millerd1918542011-12-28 20:19:20 -05001569 dev = grt->dst.dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570 idev = grt->rt6i_idev;
1571 dev_hold(dev);
1572 in6_dev_hold(grt->rt6i_idev);
1573 }
David S. Miller38308472011-12-03 18:02:47 -05001574 if (!(grt->rt6i_flags & RTF_GATEWAY))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575 err = 0;
Amerigo Wang94e187c2012-10-29 00:13:19 +00001576 ip6_rt_put(grt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577
1578 if (err)
1579 goto out;
1580 }
1581 err = -EINVAL;
David S. Miller38308472011-12-03 18:02:47 -05001582 if (!dev || (dev->flags & IFF_LOOPBACK))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583 goto out;
1584 }
1585
1586 err = -ENODEV;
David S. Miller38308472011-12-03 18:02:47 -05001587 if (!dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588 goto out;
1589
Daniel Walterc3968a82011-04-13 21:10:57 +00001590 if (!ipv6_addr_any(&cfg->fc_prefsrc)) {
1591 if (!ipv6_chk_addr(net, &cfg->fc_prefsrc, dev, 0)) {
1592 err = -EINVAL;
1593 goto out;
1594 }
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001595 rt->rt6i_prefsrc.addr = cfg->fc_prefsrc;
Daniel Walterc3968a82011-04-13 21:10:57 +00001596 rt->rt6i_prefsrc.plen = 128;
1597 } else
1598 rt->rt6i_prefsrc.plen = 0;
1599
Thomas Graf86872cb2006-08-22 00:01:08 -07001600 if (cfg->fc_flags & (RTF_GATEWAY | RTF_NONEXTHOP)) {
David S. Miller8ade06c2011-12-29 18:51:57 -05001601 err = rt6_bind_neighbour(rt, dev);
David S. Millerf83c7792011-12-28 15:41:23 -05001602 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604 }
1605
Thomas Graf86872cb2006-08-22 00:01:08 -07001606 rt->rt6i_flags = cfg->fc_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607
1608install_route:
Thomas Graf86872cb2006-08-22 00:01:08 -07001609 if (cfg->fc_mx) {
1610 struct nlattr *nla;
1611 int remaining;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612
Thomas Graf86872cb2006-08-22 00:01:08 -07001613 nla_for_each_attr(nla, cfg->fc_mx, cfg->fc_mx_len, remaining) {
Thomas Graf8f4c1f92007-09-12 14:44:36 +02001614 int type = nla_type(nla);
Thomas Graf86872cb2006-08-22 00:01:08 -07001615
1616 if (type) {
1617 if (type > RTAX_MAX) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618 err = -EINVAL;
1619 goto out;
1620 }
Thomas Graf86872cb2006-08-22 00:01:08 -07001621
David S. Millerdefb3512010-12-08 21:16:57 -08001622 dst_metric_set(&rt->dst, type, nla_get_u32(nla));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624 }
1625 }
1626
Changli Gaod8d1f302010-06-10 23:31:35 -07001627 rt->dst.dev = dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628 rt->rt6i_idev = idev;
Thomas Grafc71099a2006-08-04 23:20:06 -07001629 rt->rt6i_table = table;
Daniel Lezcano63152fc2008-03-03 23:31:11 -08001630
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001631 cfg->fc_nlinfo.nl_net = dev_net(dev);
Daniel Lezcano63152fc2008-03-03 23:31:11 -08001632
Thomas Graf86872cb2006-08-22 00:01:08 -07001633 return __ip6_ins_rt(rt, &cfg->fc_nlinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634
1635out:
1636 if (dev)
1637 dev_put(dev);
1638 if (idev)
1639 in6_dev_put(idev);
1640 if (rt)
Changli Gaod8d1f302010-06-10 23:31:35 -07001641 dst_free(&rt->dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642 return err;
1643}
1644
Thomas Graf86872cb2006-08-22 00:01:08 -07001645static int __ip6_del_rt(struct rt6_info *rt, struct nl_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646{
1647 int err;
Thomas Grafc71099a2006-08-04 23:20:06 -07001648 struct fib6_table *table;
David S. Millerd1918542011-12-28 20:19:20 -05001649 struct net *net = dev_net(rt->dst.dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650
Gao feng6825a262012-09-19 19:25:34 +00001651 if (rt == net->ipv6.ip6_null_entry) {
1652 err = -ENOENT;
1653 goto out;
1654 }
Patrick McHardy6c813a72006-08-06 22:22:47 -07001655
Thomas Grafc71099a2006-08-04 23:20:06 -07001656 table = rt->rt6i_table;
1657 write_lock_bh(&table->tb6_lock);
Thomas Graf86872cb2006-08-22 00:01:08 -07001658 err = fib6_del(rt, info);
Thomas Grafc71099a2006-08-04 23:20:06 -07001659 write_unlock_bh(&table->tb6_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660
Gao feng6825a262012-09-19 19:25:34 +00001661out:
Amerigo Wang94e187c2012-10-29 00:13:19 +00001662 ip6_rt_put(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663 return err;
1664}
1665
Thomas Grafe0a1ad732006-08-22 00:00:21 -07001666int ip6_del_rt(struct rt6_info *rt)
1667{
Denis V. Lunev4d1169c2008-01-10 03:26:13 -08001668 struct nl_info info = {
David S. Millerd1918542011-12-28 20:19:20 -05001669 .nl_net = dev_net(rt->dst.dev),
Denis V. Lunev4d1169c2008-01-10 03:26:13 -08001670 };
Denis V. Lunev528c4ce2007-12-13 09:45:12 -08001671 return __ip6_del_rt(rt, &info);
Thomas Grafe0a1ad732006-08-22 00:00:21 -07001672}
1673
Thomas Graf86872cb2006-08-22 00:01:08 -07001674static int ip6_route_del(struct fib6_config *cfg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675{
Thomas Grafc71099a2006-08-04 23:20:06 -07001676 struct fib6_table *table;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677 struct fib6_node *fn;
1678 struct rt6_info *rt;
1679 int err = -ESRCH;
1680
Daniel Lezcano55786892008-03-04 13:47:47 -08001681 table = fib6_get_table(cfg->fc_nlinfo.nl_net, cfg->fc_table);
David S. Miller38308472011-12-03 18:02:47 -05001682 if (!table)
Thomas Grafc71099a2006-08-04 23:20:06 -07001683 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684
Thomas Grafc71099a2006-08-04 23:20:06 -07001685 read_lock_bh(&table->tb6_lock);
1686
1687 fn = fib6_locate(&table->tb6_root,
Thomas Graf86872cb2006-08-22 00:01:08 -07001688 &cfg->fc_dst, cfg->fc_dst_len,
1689 &cfg->fc_src, cfg->fc_src_len);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001690
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691 if (fn) {
Changli Gaod8d1f302010-06-10 23:31:35 -07001692 for (rt = fn->leaf; rt; rt = rt->dst.rt6_next) {
Thomas Graf86872cb2006-08-22 00:01:08 -07001693 if (cfg->fc_ifindex &&
David S. Millerd1918542011-12-28 20:19:20 -05001694 (!rt->dst.dev ||
1695 rt->dst.dev->ifindex != cfg->fc_ifindex))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696 continue;
Thomas Graf86872cb2006-08-22 00:01:08 -07001697 if (cfg->fc_flags & RTF_GATEWAY &&
1698 !ipv6_addr_equal(&cfg->fc_gateway, &rt->rt6i_gateway))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699 continue;
Thomas Graf86872cb2006-08-22 00:01:08 -07001700 if (cfg->fc_metric && cfg->fc_metric != rt->rt6i_metric)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701 continue;
Changli Gaod8d1f302010-06-10 23:31:35 -07001702 dst_hold(&rt->dst);
Thomas Grafc71099a2006-08-04 23:20:06 -07001703 read_unlock_bh(&table->tb6_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704
Thomas Graf86872cb2006-08-22 00:01:08 -07001705 return __ip6_del_rt(rt, &cfg->fc_nlinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706 }
1707 }
Thomas Grafc71099a2006-08-04 23:20:06 -07001708 read_unlock_bh(&table->tb6_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709
1710 return err;
1711}
1712
David S. Miller6700c272012-07-17 03:29:28 -07001713static void rt6_do_redirect(struct dst_entry *dst, struct sock *sk, struct sk_buff *skb)
YOSHIFUJI Hideakia6279452006-08-23 17:18:26 -07001714{
David S. Millere8599ff2012-07-11 23:43:53 -07001715 struct net *net = dev_net(skb->dev);
YOSHIFUJI Hideakia6279452006-08-23 17:18:26 -07001716 struct netevent_redirect netevent;
David S. Millere8599ff2012-07-11 23:43:53 -07001717 struct rt6_info *rt, *nrt = NULL;
1718 const struct in6_addr *target;
David S. Millere8599ff2012-07-11 23:43:53 -07001719 struct ndisc_options ndopts;
David S. Miller6e157b62012-07-12 00:05:02 -07001720 const struct in6_addr *dest;
1721 struct neighbour *old_neigh;
David S. Millere8599ff2012-07-11 23:43:53 -07001722 struct inet6_dev *in6_dev;
1723 struct neighbour *neigh;
1724 struct icmp6hdr *icmph;
David S. Miller6e157b62012-07-12 00:05:02 -07001725 int optlen, on_link;
1726 u8 *lladdr;
David S. Millere8599ff2012-07-11 23:43:53 -07001727
1728 optlen = skb->tail - skb->transport_header;
1729 optlen -= sizeof(struct icmp6hdr) + 2 * sizeof(struct in6_addr);
1730
1731 if (optlen < 0) {
David S. Miller6e157b62012-07-12 00:05:02 -07001732 net_dbg_ratelimited("rt6_do_redirect: packet too short\n");
David S. Millere8599ff2012-07-11 23:43:53 -07001733 return;
1734 }
1735
1736 icmph = icmp6_hdr(skb);
1737 target = (const struct in6_addr *) (icmph + 1);
1738 dest = target + 1;
1739
1740 if (ipv6_addr_is_multicast(dest)) {
David S. Miller6e157b62012-07-12 00:05:02 -07001741 net_dbg_ratelimited("rt6_do_redirect: destination address is multicast\n");
David S. Millere8599ff2012-07-11 23:43:53 -07001742 return;
1743 }
1744
David S. Miller6e157b62012-07-12 00:05:02 -07001745 on_link = 0;
David S. Millere8599ff2012-07-11 23:43:53 -07001746 if (ipv6_addr_equal(dest, target)) {
1747 on_link = 1;
1748 } else if (ipv6_addr_type(target) !=
1749 (IPV6_ADDR_UNICAST|IPV6_ADDR_LINKLOCAL)) {
David S. Miller6e157b62012-07-12 00:05:02 -07001750 net_dbg_ratelimited("rt6_do_redirect: target address is not link-local unicast\n");
David S. Millere8599ff2012-07-11 23:43:53 -07001751 return;
1752 }
1753
1754 in6_dev = __in6_dev_get(skb->dev);
1755 if (!in6_dev)
1756 return;
1757 if (in6_dev->cnf.forwarding || !in6_dev->cnf.accept_redirects)
1758 return;
1759
1760 /* RFC2461 8.1:
1761 * The IP source address of the Redirect MUST be the same as the current
1762 * first-hop router for the specified ICMP Destination Address.
1763 */
1764
1765 if (!ndisc_parse_options((u8*)(dest + 1), optlen, &ndopts)) {
1766 net_dbg_ratelimited("rt6_redirect: invalid ND options\n");
1767 return;
1768 }
David S. Miller6e157b62012-07-12 00:05:02 -07001769
1770 lladdr = NULL;
David S. Millere8599ff2012-07-11 23:43:53 -07001771 if (ndopts.nd_opts_tgt_lladdr) {
1772 lladdr = ndisc_opt_addr_data(ndopts.nd_opts_tgt_lladdr,
1773 skb->dev);
1774 if (!lladdr) {
1775 net_dbg_ratelimited("rt6_redirect: invalid link-layer address length\n");
1776 return;
1777 }
1778 }
1779
David S. Miller6e157b62012-07-12 00:05:02 -07001780 rt = (struct rt6_info *) dst;
1781 if (rt == net->ipv6.ip6_null_entry) {
1782 net_dbg_ratelimited("rt6_redirect: source isn't a valid nexthop for redirect target\n");
1783 return;
1784 }
1785
1786 /* Redirect received -> path was valid.
1787 * Look, redirects are sent only in response to data packets,
1788 * so that this nexthop apparently is reachable. --ANK
1789 */
1790 dst_confirm(&rt->dst);
1791
David S. Millere8599ff2012-07-11 23:43:53 -07001792 neigh = __neigh_lookup(&nd_tbl, target, skb->dev, 1);
1793 if (!neigh)
1794 return;
1795
David S. Miller6e157b62012-07-12 00:05:02 -07001796 /* Duplicate redirect: silently ignore. */
1797 old_neigh = rt->n;
1798 if (neigh == old_neigh)
YOSHIFUJI Hideakia6279452006-08-23 17:18:26 -07001799 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001800
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801 /*
1802 * We have finally decided to accept it.
1803 */
1804
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001805 neigh_update(neigh, lladdr, NUD_STALE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806 NEIGH_UPDATE_F_WEAK_OVERRIDE|
1807 NEIGH_UPDATE_F_OVERRIDE|
1808 (on_link ? 0 : (NEIGH_UPDATE_F_OVERRIDE_ISROUTER|
1809 NEIGH_UPDATE_F_ISROUTER))
1810 );
1811
Eric Dumazet21efcfa2011-07-19 20:18:36 +00001812 nrt = ip6_rt_copy(rt, dest);
David S. Miller38308472011-12-03 18:02:47 -05001813 if (!nrt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814 goto out;
1815
1816 nrt->rt6i_flags = RTF_GATEWAY|RTF_UP|RTF_DYNAMIC|RTF_CACHE;
1817 if (on_link)
1818 nrt->rt6i_flags &= ~RTF_GATEWAY;
1819
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001820 nrt->rt6i_gateway = *(struct in6_addr *)neigh->primary_key;
David S. Miller97cac082012-07-02 22:43:47 -07001821 nrt->n = neigh_clone(neigh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822
Thomas Graf40e22e82006-08-22 00:00:45 -07001823 if (ip6_ins_rt(nrt))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824 goto out;
1825
Changli Gaod8d1f302010-06-10 23:31:35 -07001826 netevent.old = &rt->dst;
David S. Miller1d248b12012-07-03 01:01:51 -07001827 netevent.old_neigh = old_neigh;
Changli Gaod8d1f302010-06-10 23:31:35 -07001828 netevent.new = &nrt->dst;
David S. Miller1d248b12012-07-03 01:01:51 -07001829 netevent.new_neigh = neigh;
1830 netevent.daddr = dest;
Tom Tucker8d717402006-07-30 20:43:36 -07001831 call_netevent_notifiers(NETEVENT_REDIRECT, &netevent);
1832
David S. Miller38308472011-12-03 18:02:47 -05001833 if (rt->rt6i_flags & RTF_CACHE) {
David S. Miller6e157b62012-07-12 00:05:02 -07001834 rt = (struct rt6_info *) dst_clone(&rt->dst);
Thomas Grafe0a1ad732006-08-22 00:00:21 -07001835 ip6_del_rt(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836 }
1837
1838out:
David S. Millere8599ff2012-07-11 23:43:53 -07001839 neigh_release(neigh);
David S. Miller6e157b62012-07-12 00:05:02 -07001840}
1841
Linus Torvalds1da177e2005-04-16 15:20:36 -07001842/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843 * Misc support functions
1844 */
1845
Gao feng1716a962012-04-06 00:13:10 +00001846static struct rt6_info *ip6_rt_copy(struct rt6_info *ort,
Eric Dumazet21efcfa2011-07-19 20:18:36 +00001847 const struct in6_addr *dest)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848{
David S. Millerd1918542011-12-28 20:19:20 -05001849 struct net *net = dev_net(ort->dst.dev);
David S. Miller8b96d222012-06-11 02:01:56 -07001850 struct rt6_info *rt = ip6_dst_alloc(net, ort->dst.dev, 0,
1851 ort->rt6i_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001852
1853 if (rt) {
Changli Gaod8d1f302010-06-10 23:31:35 -07001854 rt->dst.input = ort->dst.input;
1855 rt->dst.output = ort->dst.output;
Yan, Zheng8e2ec632011-09-05 21:34:30 +00001856 rt->dst.flags |= DST_HOST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001858 rt->rt6i_dst.addr = *dest;
Yan, Zheng8e2ec632011-09-05 21:34:30 +00001859 rt->rt6i_dst.plen = 128;
David S. Millerdefb3512010-12-08 21:16:57 -08001860 dst_copy_metrics(&rt->dst, &ort->dst);
Changli Gaod8d1f302010-06-10 23:31:35 -07001861 rt->dst.error = ort->dst.error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001862 rt->rt6i_idev = ort->rt6i_idev;
1863 if (rt->rt6i_idev)
1864 in6_dev_hold(rt->rt6i_idev);
Changli Gaod8d1f302010-06-10 23:31:35 -07001865 rt->dst.lastuse = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001867 rt->rt6i_gateway = ort->rt6i_gateway;
Gao feng1716a962012-04-06 00:13:10 +00001868 rt->rt6i_flags = ort->rt6i_flags;
1869 if ((ort->rt6i_flags & (RTF_DEFAULT | RTF_ADDRCONF)) ==
1870 (RTF_DEFAULT | RTF_ADDRCONF))
1871 rt6_set_from(rt, ort);
1872 else
1873 rt6_clean_expires(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874 rt->rt6i_metric = 0;
1875
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876#ifdef CONFIG_IPV6_SUBTREES
1877 memcpy(&rt->rt6i_src, &ort->rt6i_src, sizeof(struct rt6key));
1878#endif
Florian Westphal0f6c6392011-05-20 11:27:24 +00001879 memcpy(&rt->rt6i_prefsrc, &ort->rt6i_prefsrc, sizeof(struct rt6key));
Thomas Grafc71099a2006-08-04 23:20:06 -07001880 rt->rt6i_table = ort->rt6i_table;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881 }
1882 return rt;
1883}
1884
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08001885#ifdef CONFIG_IPV6_ROUTE_INFO
Daniel Lezcanoefa2cea2008-03-04 13:46:48 -08001886static struct rt6_info *rt6_get_route_info(struct net *net,
Eric Dumazetb71d1d42011-04-22 04:53:02 +00001887 const struct in6_addr *prefix, int prefixlen,
1888 const struct in6_addr *gwaddr, int ifindex)
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08001889{
1890 struct fib6_node *fn;
1891 struct rt6_info *rt = NULL;
Thomas Grafc71099a2006-08-04 23:20:06 -07001892 struct fib6_table *table;
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08001893
Daniel Lezcanoefa2cea2008-03-04 13:46:48 -08001894 table = fib6_get_table(net, RT6_TABLE_INFO);
David S. Miller38308472011-12-03 18:02:47 -05001895 if (!table)
Thomas Grafc71099a2006-08-04 23:20:06 -07001896 return NULL;
1897
Li RongQing5744dd92012-09-11 21:59:01 +00001898 read_lock_bh(&table->tb6_lock);
Thomas Grafc71099a2006-08-04 23:20:06 -07001899 fn = fib6_locate(&table->tb6_root, prefix ,prefixlen, NULL, 0);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08001900 if (!fn)
1901 goto out;
1902
Changli Gaod8d1f302010-06-10 23:31:35 -07001903 for (rt = fn->leaf; rt; rt = rt->dst.rt6_next) {
David S. Millerd1918542011-12-28 20:19:20 -05001904 if (rt->dst.dev->ifindex != ifindex)
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08001905 continue;
1906 if ((rt->rt6i_flags & (RTF_ROUTEINFO|RTF_GATEWAY)) != (RTF_ROUTEINFO|RTF_GATEWAY))
1907 continue;
1908 if (!ipv6_addr_equal(&rt->rt6i_gateway, gwaddr))
1909 continue;
Changli Gaod8d1f302010-06-10 23:31:35 -07001910 dst_hold(&rt->dst);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08001911 break;
1912 }
1913out:
Li RongQing5744dd92012-09-11 21:59:01 +00001914 read_unlock_bh(&table->tb6_lock);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08001915 return rt;
1916}
1917
Daniel Lezcanoefa2cea2008-03-04 13:46:48 -08001918static struct rt6_info *rt6_add_route_info(struct net *net,
Eric Dumazetb71d1d42011-04-22 04:53:02 +00001919 const struct in6_addr *prefix, int prefixlen,
1920 const struct in6_addr *gwaddr, int ifindex,
Eric Dumazet95c96172012-04-15 05:58:06 +00001921 unsigned int pref)
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08001922{
Thomas Graf86872cb2006-08-22 00:01:08 -07001923 struct fib6_config cfg = {
1924 .fc_table = RT6_TABLE_INFO,
Rami Rosen238fc7e2008-02-09 23:43:11 -08001925 .fc_metric = IP6_RT_PRIO_USER,
Thomas Graf86872cb2006-08-22 00:01:08 -07001926 .fc_ifindex = ifindex,
1927 .fc_dst_len = prefixlen,
1928 .fc_flags = RTF_GATEWAY | RTF_ADDRCONF | RTF_ROUTEINFO |
1929 RTF_UP | RTF_PREF(pref),
Eric W. Biederman15e47302012-09-07 20:12:54 +00001930 .fc_nlinfo.portid = 0,
Daniel Lezcanoefa2cea2008-03-04 13:46:48 -08001931 .fc_nlinfo.nlh = NULL,
1932 .fc_nlinfo.nl_net = net,
Thomas Graf86872cb2006-08-22 00:01:08 -07001933 };
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08001934
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001935 cfg.fc_dst = *prefix;
1936 cfg.fc_gateway = *gwaddr;
Thomas Graf86872cb2006-08-22 00:01:08 -07001937
YOSHIFUJI Hideakie317da92006-03-20 17:06:42 -08001938 /* We should treat it as a default route if prefix length is 0. */
1939 if (!prefixlen)
Thomas Graf86872cb2006-08-22 00:01:08 -07001940 cfg.fc_flags |= RTF_DEFAULT;
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08001941
Thomas Graf86872cb2006-08-22 00:01:08 -07001942 ip6_route_add(&cfg);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08001943
Daniel Lezcanoefa2cea2008-03-04 13:46:48 -08001944 return rt6_get_route_info(net, prefix, prefixlen, gwaddr, ifindex);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08001945}
1946#endif
1947
Eric Dumazetb71d1d42011-04-22 04:53:02 +00001948struct rt6_info *rt6_get_dflt_router(const struct in6_addr *addr, struct net_device *dev)
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001949{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950 struct rt6_info *rt;
Thomas Grafc71099a2006-08-04 23:20:06 -07001951 struct fib6_table *table;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001952
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001953 table = fib6_get_table(dev_net(dev), RT6_TABLE_DFLT);
David S. Miller38308472011-12-03 18:02:47 -05001954 if (!table)
Thomas Grafc71099a2006-08-04 23:20:06 -07001955 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956
Li RongQing5744dd92012-09-11 21:59:01 +00001957 read_lock_bh(&table->tb6_lock);
Changli Gaod8d1f302010-06-10 23:31:35 -07001958 for (rt = table->tb6_root.leaf; rt; rt=rt->dst.rt6_next) {
David S. Millerd1918542011-12-28 20:19:20 -05001959 if (dev == rt->dst.dev &&
YOSHIFUJI Hideaki045927f2006-03-20 17:00:48 -08001960 ((rt->rt6i_flags & (RTF_ADDRCONF | RTF_DEFAULT)) == (RTF_ADDRCONF | RTF_DEFAULT)) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001961 ipv6_addr_equal(&rt->rt6i_gateway, addr))
1962 break;
1963 }
1964 if (rt)
Changli Gaod8d1f302010-06-10 23:31:35 -07001965 dst_hold(&rt->dst);
Li RongQing5744dd92012-09-11 21:59:01 +00001966 read_unlock_bh(&table->tb6_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001967 return rt;
1968}
1969
Eric Dumazetb71d1d42011-04-22 04:53:02 +00001970struct rt6_info *rt6_add_dflt_router(const struct in6_addr *gwaddr,
YOSHIFUJI Hideakiebacaaa2006-03-20 17:04:53 -08001971 struct net_device *dev,
1972 unsigned int pref)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001973{
Thomas Graf86872cb2006-08-22 00:01:08 -07001974 struct fib6_config cfg = {
1975 .fc_table = RT6_TABLE_DFLT,
Rami Rosen238fc7e2008-02-09 23:43:11 -08001976 .fc_metric = IP6_RT_PRIO_USER,
Thomas Graf86872cb2006-08-22 00:01:08 -07001977 .fc_ifindex = dev->ifindex,
1978 .fc_flags = RTF_GATEWAY | RTF_ADDRCONF | RTF_DEFAULT |
1979 RTF_UP | RTF_EXPIRES | RTF_PREF(pref),
Eric W. Biederman15e47302012-09-07 20:12:54 +00001980 .fc_nlinfo.portid = 0,
Daniel Lezcano55786892008-03-04 13:47:47 -08001981 .fc_nlinfo.nlh = NULL,
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001982 .fc_nlinfo.nl_net = dev_net(dev),
Thomas Graf86872cb2006-08-22 00:01:08 -07001983 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001984
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001985 cfg.fc_gateway = *gwaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986
Thomas Graf86872cb2006-08-22 00:01:08 -07001987 ip6_route_add(&cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001988
Linus Torvalds1da177e2005-04-16 15:20:36 -07001989 return rt6_get_dflt_router(gwaddr, dev);
1990}
1991
Daniel Lezcano7b4da532008-03-04 13:47:14 -08001992void rt6_purge_dflt_routers(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001993{
1994 struct rt6_info *rt;
Thomas Grafc71099a2006-08-04 23:20:06 -07001995 struct fib6_table *table;
1996
1997 /* NOTE: Keep consistent with rt6_get_dflt_router */
Daniel Lezcano7b4da532008-03-04 13:47:14 -08001998 table = fib6_get_table(net, RT6_TABLE_DFLT);
David S. Miller38308472011-12-03 18:02:47 -05001999 if (!table)
Thomas Grafc71099a2006-08-04 23:20:06 -07002000 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002001
2002restart:
Thomas Grafc71099a2006-08-04 23:20:06 -07002003 read_lock_bh(&table->tb6_lock);
Changli Gaod8d1f302010-06-10 23:31:35 -07002004 for (rt = table->tb6_root.leaf; rt; rt = rt->dst.rt6_next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002005 if (rt->rt6i_flags & (RTF_DEFAULT | RTF_ADDRCONF)) {
Changli Gaod8d1f302010-06-10 23:31:35 -07002006 dst_hold(&rt->dst);
Thomas Grafc71099a2006-08-04 23:20:06 -07002007 read_unlock_bh(&table->tb6_lock);
Thomas Grafe0a1ad732006-08-22 00:00:21 -07002008 ip6_del_rt(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002009 goto restart;
2010 }
2011 }
Thomas Grafc71099a2006-08-04 23:20:06 -07002012 read_unlock_bh(&table->tb6_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002013}
2014
Daniel Lezcano55786892008-03-04 13:47:47 -08002015static void rtmsg_to_fib6_config(struct net *net,
2016 struct in6_rtmsg *rtmsg,
Thomas Graf86872cb2006-08-22 00:01:08 -07002017 struct fib6_config *cfg)
2018{
2019 memset(cfg, 0, sizeof(*cfg));
2020
2021 cfg->fc_table = RT6_TABLE_MAIN;
2022 cfg->fc_ifindex = rtmsg->rtmsg_ifindex;
2023 cfg->fc_metric = rtmsg->rtmsg_metric;
2024 cfg->fc_expires = rtmsg->rtmsg_info;
2025 cfg->fc_dst_len = rtmsg->rtmsg_dst_len;
2026 cfg->fc_src_len = rtmsg->rtmsg_src_len;
2027 cfg->fc_flags = rtmsg->rtmsg_flags;
2028
Daniel Lezcano55786892008-03-04 13:47:47 -08002029 cfg->fc_nlinfo.nl_net = net;
Benjamin Theryf1243c22008-02-26 18:10:03 -08002030
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00002031 cfg->fc_dst = rtmsg->rtmsg_dst;
2032 cfg->fc_src = rtmsg->rtmsg_src;
2033 cfg->fc_gateway = rtmsg->rtmsg_gateway;
Thomas Graf86872cb2006-08-22 00:01:08 -07002034}
2035
Daniel Lezcano55786892008-03-04 13:47:47 -08002036int ipv6_route_ioctl(struct net *net, unsigned int cmd, void __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002037{
Thomas Graf86872cb2006-08-22 00:01:08 -07002038 struct fib6_config cfg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002039 struct in6_rtmsg rtmsg;
2040 int err;
2041
2042 switch(cmd) {
2043 case SIOCADDRT: /* Add a route */
2044 case SIOCDELRT: /* Delete a route */
2045 if (!capable(CAP_NET_ADMIN))
2046 return -EPERM;
2047 err = copy_from_user(&rtmsg, arg,
2048 sizeof(struct in6_rtmsg));
2049 if (err)
2050 return -EFAULT;
Thomas Graf86872cb2006-08-22 00:01:08 -07002051
Daniel Lezcano55786892008-03-04 13:47:47 -08002052 rtmsg_to_fib6_config(net, &rtmsg, &cfg);
Thomas Graf86872cb2006-08-22 00:01:08 -07002053
Linus Torvalds1da177e2005-04-16 15:20:36 -07002054 rtnl_lock();
2055 switch (cmd) {
2056 case SIOCADDRT:
Thomas Graf86872cb2006-08-22 00:01:08 -07002057 err = ip6_route_add(&cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058 break;
2059 case SIOCDELRT:
Thomas Graf86872cb2006-08-22 00:01:08 -07002060 err = ip6_route_del(&cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061 break;
2062 default:
2063 err = -EINVAL;
2064 }
2065 rtnl_unlock();
2066
2067 return err;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07002068 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002069
2070 return -EINVAL;
2071}
2072
2073/*
2074 * Drop the packet on the floor
2075 */
2076
Brian Haleyd5fdd6b2009-06-23 04:31:07 -07002077static int ip6_pkt_drop(struct sk_buff *skb, u8 code, int ipstats_mib_noroutes)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002078{
YOSHIFUJI Hideaki612f09e2007-04-13 16:18:02 -07002079 int type;
Eric Dumazetadf30902009-06-02 05:19:30 +00002080 struct dst_entry *dst = skb_dst(skb);
YOSHIFUJI Hideaki612f09e2007-04-13 16:18:02 -07002081 switch (ipstats_mib_noroutes) {
2082 case IPSTATS_MIB_INNOROUTES:
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -07002083 type = ipv6_addr_type(&ipv6_hdr(skb)->daddr);
Ulrich Weber45bb0062010-02-25 23:28:58 +00002084 if (type == IPV6_ADDR_ANY) {
Denis V. Lunev3bd653c2008-10-08 10:54:51 -07002085 IP6_INC_STATS(dev_net(dst->dev), ip6_dst_idev(dst),
2086 IPSTATS_MIB_INADDRERRORS);
YOSHIFUJI Hideaki612f09e2007-04-13 16:18:02 -07002087 break;
2088 }
2089 /* FALLTHROUGH */
2090 case IPSTATS_MIB_OUTNOROUTES:
Denis V. Lunev3bd653c2008-10-08 10:54:51 -07002091 IP6_INC_STATS(dev_net(dst->dev), ip6_dst_idev(dst),
2092 ipstats_mib_noroutes);
YOSHIFUJI Hideaki612f09e2007-04-13 16:18:02 -07002093 break;
2094 }
Alexey Dobriyan3ffe5332010-02-18 08:25:24 +00002095 icmpv6_send(skb, ICMPV6_DEST_UNREACH, code, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096 kfree_skb(skb);
2097 return 0;
2098}
2099
Thomas Graf9ce8ade2006-10-18 20:46:54 -07002100static int ip6_pkt_discard(struct sk_buff *skb)
2101{
YOSHIFUJI Hideaki612f09e2007-04-13 16:18:02 -07002102 return ip6_pkt_drop(skb, ICMPV6_NOROUTE, IPSTATS_MIB_INNOROUTES);
Thomas Graf9ce8ade2006-10-18 20:46:54 -07002103}
2104
Arnaldo Carvalho de Melo20380732005-08-16 02:18:02 -03002105static int ip6_pkt_discard_out(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106{
Eric Dumazetadf30902009-06-02 05:19:30 +00002107 skb->dev = skb_dst(skb)->dev;
YOSHIFUJI Hideaki612f09e2007-04-13 16:18:02 -07002108 return ip6_pkt_drop(skb, ICMPV6_NOROUTE, IPSTATS_MIB_OUTNOROUTES);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002109}
2110
David S. Miller6723ab52006-10-18 21:20:57 -07002111#ifdef CONFIG_IPV6_MULTIPLE_TABLES
2112
Thomas Graf9ce8ade2006-10-18 20:46:54 -07002113static int ip6_pkt_prohibit(struct sk_buff *skb)
2114{
YOSHIFUJI Hideaki612f09e2007-04-13 16:18:02 -07002115 return ip6_pkt_drop(skb, ICMPV6_ADM_PROHIBITED, IPSTATS_MIB_INNOROUTES);
Thomas Graf9ce8ade2006-10-18 20:46:54 -07002116}
2117
2118static int ip6_pkt_prohibit_out(struct sk_buff *skb)
2119{
Eric Dumazetadf30902009-06-02 05:19:30 +00002120 skb->dev = skb_dst(skb)->dev;
YOSHIFUJI Hideaki612f09e2007-04-13 16:18:02 -07002121 return ip6_pkt_drop(skb, ICMPV6_ADM_PROHIBITED, IPSTATS_MIB_OUTNOROUTES);
Thomas Graf9ce8ade2006-10-18 20:46:54 -07002122}
2123
David S. Miller6723ab52006-10-18 21:20:57 -07002124#endif
2125
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126/*
2127 * Allocate a dst for local (unicast / anycast) address.
2128 */
2129
2130struct rt6_info *addrconf_dst_alloc(struct inet6_dev *idev,
2131 const struct in6_addr *addr,
David S. Miller8f031512011-12-06 16:48:14 -05002132 bool anycast)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002133{
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09002134 struct net *net = dev_net(idev->dev);
David S. Miller8b96d222012-06-11 02:01:56 -07002135 struct rt6_info *rt = ip6_dst_alloc(net, net->loopback_dev, 0, NULL);
David S. Millerf83c7792011-12-28 15:41:23 -05002136 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002137
David S. Miller38308472011-12-03 18:02:47 -05002138 if (!rt) {
Joe Perchesf3213832012-05-15 14:11:53 +00002139 net_warn_ratelimited("Maximum number of routes reached, consider increasing route/max_size\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002140 return ERR_PTR(-ENOMEM);
Ben Greear40385652010-11-08 12:33:48 +00002141 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142
Linus Torvalds1da177e2005-04-16 15:20:36 -07002143 in6_dev_hold(idev);
2144
David S. Miller11d53b42011-06-24 15:23:34 -07002145 rt->dst.flags |= DST_HOST;
Changli Gaod8d1f302010-06-10 23:31:35 -07002146 rt->dst.input = ip6_input;
2147 rt->dst.output = ip6_output;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002148 rt->rt6i_idev = idev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002149
2150 rt->rt6i_flags = RTF_UP | RTF_NONEXTHOP;
YOSHIFUJI Hideaki58c4fb82005-12-21 22:56:42 +09002151 if (anycast)
2152 rt->rt6i_flags |= RTF_ANYCAST;
2153 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002154 rt->rt6i_flags |= RTF_LOCAL;
David S. Miller8ade06c2011-12-29 18:51:57 -05002155 err = rt6_bind_neighbour(rt, rt->dst.dev);
David S. Millerf83c7792011-12-28 15:41:23 -05002156 if (err) {
Changli Gaod8d1f302010-06-10 23:31:35 -07002157 dst_free(&rt->dst);
David S. Millerf83c7792011-12-28 15:41:23 -05002158 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002159 }
2160
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00002161 rt->rt6i_dst.addr = *addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002162 rt->rt6i_dst.plen = 128;
Daniel Lezcano55786892008-03-04 13:47:47 -08002163 rt->rt6i_table = fib6_get_table(net, RT6_TABLE_LOCAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002164
Changli Gaod8d1f302010-06-10 23:31:35 -07002165 atomic_set(&rt->dst.__refcnt, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002166
2167 return rt;
2168}
2169
Daniel Walterc3968a82011-04-13 21:10:57 +00002170int ip6_route_get_saddr(struct net *net,
2171 struct rt6_info *rt,
Eric Dumazetb71d1d42011-04-22 04:53:02 +00002172 const struct in6_addr *daddr,
Daniel Walterc3968a82011-04-13 21:10:57 +00002173 unsigned int prefs,
2174 struct in6_addr *saddr)
2175{
2176 struct inet6_dev *idev = ip6_dst_idev((struct dst_entry*)rt);
2177 int err = 0;
2178 if (rt->rt6i_prefsrc.plen)
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00002179 *saddr = rt->rt6i_prefsrc.addr;
Daniel Walterc3968a82011-04-13 21:10:57 +00002180 else
2181 err = ipv6_dev_get_saddr(net, idev ? idev->dev : NULL,
2182 daddr, prefs, saddr);
2183 return err;
2184}
2185
2186/* remove deleted ip from prefsrc entries */
2187struct arg_dev_net_ip {
2188 struct net_device *dev;
2189 struct net *net;
2190 struct in6_addr *addr;
2191};
2192
2193static int fib6_remove_prefsrc(struct rt6_info *rt, void *arg)
2194{
2195 struct net_device *dev = ((struct arg_dev_net_ip *)arg)->dev;
2196 struct net *net = ((struct arg_dev_net_ip *)arg)->net;
2197 struct in6_addr *addr = ((struct arg_dev_net_ip *)arg)->addr;
2198
David S. Millerd1918542011-12-28 20:19:20 -05002199 if (((void *)rt->dst.dev == dev || !dev) &&
Daniel Walterc3968a82011-04-13 21:10:57 +00002200 rt != net->ipv6.ip6_null_entry &&
2201 ipv6_addr_equal(addr, &rt->rt6i_prefsrc.addr)) {
2202 /* remove prefsrc entry */
2203 rt->rt6i_prefsrc.plen = 0;
2204 }
2205 return 0;
2206}
2207
2208void rt6_remove_prefsrc(struct inet6_ifaddr *ifp)
2209{
2210 struct net *net = dev_net(ifp->idev->dev);
2211 struct arg_dev_net_ip adni = {
2212 .dev = ifp->idev->dev,
2213 .net = net,
2214 .addr = &ifp->addr,
2215 };
2216 fib6_clean_all(net, fib6_remove_prefsrc, 0, &adni);
2217}
2218
Daniel Lezcano8ed67782008-03-04 13:48:30 -08002219struct arg_dev_net {
2220 struct net_device *dev;
2221 struct net *net;
2222};
2223
Linus Torvalds1da177e2005-04-16 15:20:36 -07002224static int fib6_ifdown(struct rt6_info *rt, void *arg)
2225{
stephen hemmingerbc3ef662010-12-16 17:42:40 +00002226 const struct arg_dev_net *adn = arg;
2227 const struct net_device *dev = adn->dev;
Daniel Lezcano8ed67782008-03-04 13:48:30 -08002228
David S. Millerd1918542011-12-28 20:19:20 -05002229 if ((rt->dst.dev == dev || !dev) &&
David S. Millerc159d302011-12-26 15:24:36 -05002230 rt != adn->net->ipv6.ip6_null_entry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002231 return -1;
David S. Millerc159d302011-12-26 15:24:36 -05002232
Linus Torvalds1da177e2005-04-16 15:20:36 -07002233 return 0;
2234}
2235
Daniel Lezcanof3db4852008-03-03 23:27:06 -08002236void rt6_ifdown(struct net *net, struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002237{
Daniel Lezcano8ed67782008-03-04 13:48:30 -08002238 struct arg_dev_net adn = {
2239 .dev = dev,
2240 .net = net,
2241 };
2242
2243 fib6_clean_all(net, fib6_ifdown, 0, &adn);
David S. Miller1e493d12008-09-10 17:27:15 -07002244 icmp6_clean_all(fib6_ifdown, &adn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002245}
2246
Eric Dumazet95c96172012-04-15 05:58:06 +00002247struct rt6_mtu_change_arg {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002248 struct net_device *dev;
Eric Dumazet95c96172012-04-15 05:58:06 +00002249 unsigned int mtu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002250};
2251
2252static int rt6_mtu_change_route(struct rt6_info *rt, void *p_arg)
2253{
2254 struct rt6_mtu_change_arg *arg = (struct rt6_mtu_change_arg *) p_arg;
2255 struct inet6_dev *idev;
2256
2257 /* In IPv6 pmtu discovery is not optional,
2258 so that RTAX_MTU lock cannot disable it.
2259 We still use this lock to block changes
2260 caused by addrconf/ndisc.
2261 */
2262
2263 idev = __in6_dev_get(arg->dev);
David S. Miller38308472011-12-03 18:02:47 -05002264 if (!idev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002265 return 0;
2266
2267 /* For administrative MTU increase, there is no way to discover
2268 IPv6 PMTU increase, so PMTU increase should be updated here.
2269 Since RFC 1981 doesn't include administrative MTU increase
2270 update PMTU increase is a MUST. (i.e. jumbo frame)
2271 */
2272 /*
2273 If new MTU is less than route PMTU, this new MTU will be the
2274 lowest MTU in the path, update the route PMTU to reflect PMTU
2275 decreases; if new MTU is greater than route PMTU, and the
2276 old MTU is the lowest MTU in the path, update the route PMTU
2277 to reflect the increase. In this case if the other nodes' MTU
2278 also have the lowest MTU, TOO BIG MESSAGE will be lead to
2279 PMTU discouvery.
2280 */
David S. Millerd1918542011-12-28 20:19:20 -05002281 if (rt->dst.dev == arg->dev &&
Changli Gaod8d1f302010-06-10 23:31:35 -07002282 !dst_metric_locked(&rt->dst, RTAX_MTU) &&
2283 (dst_mtu(&rt->dst) >= arg->mtu ||
2284 (dst_mtu(&rt->dst) < arg->mtu &&
2285 dst_mtu(&rt->dst) == idev->cnf.mtu6))) {
David S. Millerdefb3512010-12-08 21:16:57 -08002286 dst_metric_set(&rt->dst, RTAX_MTU, arg->mtu);
Simon Arlott566cfd82007-07-26 00:09:55 -07002287 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002288 return 0;
2289}
2290
Eric Dumazet95c96172012-04-15 05:58:06 +00002291void rt6_mtu_change(struct net_device *dev, unsigned int mtu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002292{
Thomas Grafc71099a2006-08-04 23:20:06 -07002293 struct rt6_mtu_change_arg arg = {
2294 .dev = dev,
2295 .mtu = mtu,
2296 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002297
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09002298 fib6_clean_all(dev_net(dev), rt6_mtu_change_route, 0, &arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002299}
2300
Patrick McHardyef7c79e2007-06-05 12:38:30 -07002301static const struct nla_policy rtm_ipv6_policy[RTA_MAX+1] = {
Thomas Graf5176f912006-08-26 20:13:18 -07002302 [RTA_GATEWAY] = { .len = sizeof(struct in6_addr) },
Thomas Graf86872cb2006-08-22 00:01:08 -07002303 [RTA_OIF] = { .type = NLA_U32 },
Thomas Grafab364a62006-08-22 00:01:47 -07002304 [RTA_IIF] = { .type = NLA_U32 },
Thomas Graf86872cb2006-08-22 00:01:08 -07002305 [RTA_PRIORITY] = { .type = NLA_U32 },
2306 [RTA_METRICS] = { .type = NLA_NESTED },
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00002307 [RTA_MULTIPATH] = { .len = sizeof(struct rtnexthop) },
Thomas Graf86872cb2006-08-22 00:01:08 -07002308};
2309
2310static int rtm_to_fib6_config(struct sk_buff *skb, struct nlmsghdr *nlh,
2311 struct fib6_config *cfg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002312{
Thomas Graf86872cb2006-08-22 00:01:08 -07002313 struct rtmsg *rtm;
2314 struct nlattr *tb[RTA_MAX+1];
2315 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002316
Thomas Graf86872cb2006-08-22 00:01:08 -07002317 err = nlmsg_parse(nlh, sizeof(*rtm), tb, RTA_MAX, rtm_ipv6_policy);
2318 if (err < 0)
2319 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002320
Thomas Graf86872cb2006-08-22 00:01:08 -07002321 err = -EINVAL;
2322 rtm = nlmsg_data(nlh);
2323 memset(cfg, 0, sizeof(*cfg));
2324
2325 cfg->fc_table = rtm->rtm_table;
2326 cfg->fc_dst_len = rtm->rtm_dst_len;
2327 cfg->fc_src_len = rtm->rtm_src_len;
2328 cfg->fc_flags = RTF_UP;
2329 cfg->fc_protocol = rtm->rtm_protocol;
Nicolas Dichtelef2c7d72012-09-05 02:12:42 +00002330 cfg->fc_type = rtm->rtm_type;
Thomas Graf86872cb2006-08-22 00:01:08 -07002331
Nicolas Dichtelef2c7d72012-09-05 02:12:42 +00002332 if (rtm->rtm_type == RTN_UNREACHABLE ||
2333 rtm->rtm_type == RTN_BLACKHOLE ||
Nicolas Dichtelb4949ab2012-09-06 05:53:35 +00002334 rtm->rtm_type == RTN_PROHIBIT ||
2335 rtm->rtm_type == RTN_THROW)
Thomas Graf86872cb2006-08-22 00:01:08 -07002336 cfg->fc_flags |= RTF_REJECT;
2337
Maciej Żenczykowskiab79ad12010-09-27 00:07:02 +00002338 if (rtm->rtm_type == RTN_LOCAL)
2339 cfg->fc_flags |= RTF_LOCAL;
2340
Eric W. Biederman15e47302012-09-07 20:12:54 +00002341 cfg->fc_nlinfo.portid = NETLINK_CB(skb).portid;
Thomas Graf86872cb2006-08-22 00:01:08 -07002342 cfg->fc_nlinfo.nlh = nlh;
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09002343 cfg->fc_nlinfo.nl_net = sock_net(skb->sk);
Thomas Graf86872cb2006-08-22 00:01:08 -07002344
2345 if (tb[RTA_GATEWAY]) {
2346 nla_memcpy(&cfg->fc_gateway, tb[RTA_GATEWAY], 16);
2347 cfg->fc_flags |= RTF_GATEWAY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002348 }
Thomas Graf86872cb2006-08-22 00:01:08 -07002349
2350 if (tb[RTA_DST]) {
2351 int plen = (rtm->rtm_dst_len + 7) >> 3;
2352
2353 if (nla_len(tb[RTA_DST]) < plen)
2354 goto errout;
2355
2356 nla_memcpy(&cfg->fc_dst, tb[RTA_DST], plen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002357 }
Thomas Graf86872cb2006-08-22 00:01:08 -07002358
2359 if (tb[RTA_SRC]) {
2360 int plen = (rtm->rtm_src_len + 7) >> 3;
2361
2362 if (nla_len(tb[RTA_SRC]) < plen)
2363 goto errout;
2364
2365 nla_memcpy(&cfg->fc_src, tb[RTA_SRC], plen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002366 }
Thomas Graf86872cb2006-08-22 00:01:08 -07002367
Daniel Walterc3968a82011-04-13 21:10:57 +00002368 if (tb[RTA_PREFSRC])
2369 nla_memcpy(&cfg->fc_prefsrc, tb[RTA_PREFSRC], 16);
2370
Thomas Graf86872cb2006-08-22 00:01:08 -07002371 if (tb[RTA_OIF])
2372 cfg->fc_ifindex = nla_get_u32(tb[RTA_OIF]);
2373
2374 if (tb[RTA_PRIORITY])
2375 cfg->fc_metric = nla_get_u32(tb[RTA_PRIORITY]);
2376
2377 if (tb[RTA_METRICS]) {
2378 cfg->fc_mx = nla_data(tb[RTA_METRICS]);
2379 cfg->fc_mx_len = nla_len(tb[RTA_METRICS]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002380 }
Thomas Graf86872cb2006-08-22 00:01:08 -07002381
2382 if (tb[RTA_TABLE])
2383 cfg->fc_table = nla_get_u32(tb[RTA_TABLE]);
2384
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00002385 if (tb[RTA_MULTIPATH]) {
2386 cfg->fc_mp = nla_data(tb[RTA_MULTIPATH]);
2387 cfg->fc_mp_len = nla_len(tb[RTA_MULTIPATH]);
2388 }
2389
Thomas Graf86872cb2006-08-22 00:01:08 -07002390 err = 0;
2391errout:
2392 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002393}
2394
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00002395static int ip6_route_multipath(struct fib6_config *cfg, int add)
2396{
2397 struct fib6_config r_cfg;
2398 struct rtnexthop *rtnh;
2399 int remaining;
2400 int attrlen;
2401 int err = 0, last_err = 0;
2402
2403beginning:
2404 rtnh = (struct rtnexthop *)cfg->fc_mp;
2405 remaining = cfg->fc_mp_len;
2406
2407 /* Parse a Multipath Entry */
2408 while (rtnh_ok(rtnh, remaining)) {
2409 memcpy(&r_cfg, cfg, sizeof(*cfg));
2410 if (rtnh->rtnh_ifindex)
2411 r_cfg.fc_ifindex = rtnh->rtnh_ifindex;
2412
2413 attrlen = rtnh_attrlen(rtnh);
2414 if (attrlen > 0) {
2415 struct nlattr *nla, *attrs = rtnh_attrs(rtnh);
2416
2417 nla = nla_find(attrs, attrlen, RTA_GATEWAY);
2418 if (nla) {
2419 nla_memcpy(&r_cfg.fc_gateway, nla, 16);
2420 r_cfg.fc_flags |= RTF_GATEWAY;
2421 }
2422 }
2423 err = add ? ip6_route_add(&r_cfg) : ip6_route_del(&r_cfg);
2424 if (err) {
2425 last_err = err;
2426 /* If we are trying to remove a route, do not stop the
2427 * loop when ip6_route_del() fails (because next hop is
2428 * already gone), we should try to remove all next hops.
2429 */
2430 if (add) {
2431 /* If add fails, we should try to delete all
2432 * next hops that have been already added.
2433 */
2434 add = 0;
2435 goto beginning;
2436 }
2437 }
Nicolas Dichtel1a724182012-11-01 22:58:22 +00002438 /* Because each route is added like a single route we remove
2439 * this flag after the first nexthop (if there is a collision,
2440 * we have already fail to add the first nexthop:
2441 * fib6_add_rt2node() has reject it).
2442 */
2443 cfg->fc_nlinfo.nlh->nlmsg_flags &= ~NLM_F_EXCL;
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00002444 rtnh = rtnh_next(rtnh, &remaining);
2445 }
2446
2447 return last_err;
2448}
2449
Thomas Grafc127ea22007-03-22 11:58:32 -07002450static int inet6_rtm_delroute(struct sk_buff *skb, struct nlmsghdr* nlh, void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002451{
Thomas Graf86872cb2006-08-22 00:01:08 -07002452 struct fib6_config cfg;
2453 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002454
Thomas Graf86872cb2006-08-22 00:01:08 -07002455 err = rtm_to_fib6_config(skb, nlh, &cfg);
2456 if (err < 0)
2457 return err;
2458
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00002459 if (cfg.fc_mp)
2460 return ip6_route_multipath(&cfg, 0);
2461 else
2462 return ip6_route_del(&cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002463}
2464
Thomas Grafc127ea22007-03-22 11:58:32 -07002465static int inet6_rtm_newroute(struct sk_buff *skb, struct nlmsghdr* nlh, void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002466{
Thomas Graf86872cb2006-08-22 00:01:08 -07002467 struct fib6_config cfg;
2468 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002469
Thomas Graf86872cb2006-08-22 00:01:08 -07002470 err = rtm_to_fib6_config(skb, nlh, &cfg);
2471 if (err < 0)
2472 return err;
2473
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00002474 if (cfg.fc_mp)
2475 return ip6_route_multipath(&cfg, 1);
2476 else
2477 return ip6_route_add(&cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002478}
2479
Thomas Graf339bf982006-11-10 14:10:15 -08002480static inline size_t rt6_nlmsg_size(void)
2481{
2482 return NLMSG_ALIGN(sizeof(struct rtmsg))
2483 + nla_total_size(16) /* RTA_SRC */
2484 + nla_total_size(16) /* RTA_DST */
2485 + nla_total_size(16) /* RTA_GATEWAY */
2486 + nla_total_size(16) /* RTA_PREFSRC */
2487 + nla_total_size(4) /* RTA_TABLE */
2488 + nla_total_size(4) /* RTA_IIF */
2489 + nla_total_size(4) /* RTA_OIF */
2490 + nla_total_size(4) /* RTA_PRIORITY */
Noriaki TAKAMIYA6a2b9ce2007-01-23 22:09:41 -08002491 + RTAX_MAX * nla_total_size(4) /* RTA_METRICS */
Thomas Graf339bf982006-11-10 14:10:15 -08002492 + nla_total_size(sizeof(struct rta_cacheinfo));
2493}
2494
Brian Haley191cd582008-08-14 15:33:21 -07002495static int rt6_fill_node(struct net *net,
2496 struct sk_buff *skb, struct rt6_info *rt,
Jamal Hadi Salim0d51aa82005-06-21 13:51:04 -07002497 struct in6_addr *dst, struct in6_addr *src,
Eric W. Biederman15e47302012-09-07 20:12:54 +00002498 int iif, int type, u32 portid, u32 seq,
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09002499 int prefix, int nowait, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002500{
2501 struct rtmsg *rtm;
Thomas Graf2d7202b2006-08-22 00:01:27 -07002502 struct nlmsghdr *nlh;
Thomas Grafe3703b32006-11-27 09:27:07 -08002503 long expires;
Patrick McHardy9e762a42006-08-10 23:09:48 -07002504 u32 table;
Eric Dumazetf2c31e32011-07-29 19:00:53 +00002505 struct neighbour *n;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002506
2507 if (prefix) { /* user wants prefix routes only */
2508 if (!(rt->rt6i_flags & RTF_PREFIX_RT)) {
2509 /* success since this is not a prefix route */
2510 return 1;
2511 }
2512 }
2513
Eric W. Biederman15e47302012-09-07 20:12:54 +00002514 nlh = nlmsg_put(skb, portid, seq, type, sizeof(*rtm), flags);
David S. Miller38308472011-12-03 18:02:47 -05002515 if (!nlh)
Patrick McHardy26932562007-01-31 23:16:40 -08002516 return -EMSGSIZE;
Thomas Graf2d7202b2006-08-22 00:01:27 -07002517
2518 rtm = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002519 rtm->rtm_family = AF_INET6;
2520 rtm->rtm_dst_len = rt->rt6i_dst.plen;
2521 rtm->rtm_src_len = rt->rt6i_src.plen;
2522 rtm->rtm_tos = 0;
Thomas Grafc71099a2006-08-04 23:20:06 -07002523 if (rt->rt6i_table)
Patrick McHardy9e762a42006-08-10 23:09:48 -07002524 table = rt->rt6i_table->tb6_id;
Thomas Grafc71099a2006-08-04 23:20:06 -07002525 else
Patrick McHardy9e762a42006-08-10 23:09:48 -07002526 table = RT6_TABLE_UNSPEC;
2527 rtm->rtm_table = table;
David S. Millerc78679e2012-04-01 20:27:33 -04002528 if (nla_put_u32(skb, RTA_TABLE, table))
2529 goto nla_put_failure;
Nicolas Dichtelef2c7d72012-09-05 02:12:42 +00002530 if (rt->rt6i_flags & RTF_REJECT) {
2531 switch (rt->dst.error) {
2532 case -EINVAL:
2533 rtm->rtm_type = RTN_BLACKHOLE;
2534 break;
2535 case -EACCES:
2536 rtm->rtm_type = RTN_PROHIBIT;
2537 break;
Nicolas Dichtelb4949ab2012-09-06 05:53:35 +00002538 case -EAGAIN:
2539 rtm->rtm_type = RTN_THROW;
2540 break;
Nicolas Dichtelef2c7d72012-09-05 02:12:42 +00002541 default:
2542 rtm->rtm_type = RTN_UNREACHABLE;
2543 break;
2544 }
2545 }
David S. Miller38308472011-12-03 18:02:47 -05002546 else if (rt->rt6i_flags & RTF_LOCAL)
Maciej Żenczykowskiab79ad12010-09-27 00:07:02 +00002547 rtm->rtm_type = RTN_LOCAL;
David S. Millerd1918542011-12-28 20:19:20 -05002548 else if (rt->dst.dev && (rt->dst.dev->flags & IFF_LOOPBACK))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002549 rtm->rtm_type = RTN_LOCAL;
2550 else
2551 rtm->rtm_type = RTN_UNICAST;
2552 rtm->rtm_flags = 0;
2553 rtm->rtm_scope = RT_SCOPE_UNIVERSE;
2554 rtm->rtm_protocol = rt->rt6i_protocol;
David S. Miller38308472011-12-03 18:02:47 -05002555 if (rt->rt6i_flags & RTF_DYNAMIC)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002556 rtm->rtm_protocol = RTPROT_REDIRECT;
Denis Ovsienkof0396f602012-07-10 04:45:50 +00002557 else if (rt->rt6i_flags & RTF_ADDRCONF) {
2558 if (rt->rt6i_flags & (RTF_DEFAULT | RTF_ROUTEINFO))
2559 rtm->rtm_protocol = RTPROT_RA;
2560 else
2561 rtm->rtm_protocol = RTPROT_KERNEL;
2562 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002563
David S. Miller38308472011-12-03 18:02:47 -05002564 if (rt->rt6i_flags & RTF_CACHE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002565 rtm->rtm_flags |= RTM_F_CLONED;
2566
2567 if (dst) {
David S. Millerc78679e2012-04-01 20:27:33 -04002568 if (nla_put(skb, RTA_DST, 16, dst))
2569 goto nla_put_failure;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002570 rtm->rtm_dst_len = 128;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002571 } else if (rtm->rtm_dst_len)
David S. Millerc78679e2012-04-01 20:27:33 -04002572 if (nla_put(skb, RTA_DST, 16, &rt->rt6i_dst.addr))
2573 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002574#ifdef CONFIG_IPV6_SUBTREES
2575 if (src) {
David S. Millerc78679e2012-04-01 20:27:33 -04002576 if (nla_put(skb, RTA_SRC, 16, src))
2577 goto nla_put_failure;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002578 rtm->rtm_src_len = 128;
David S. Millerc78679e2012-04-01 20:27:33 -04002579 } else if (rtm->rtm_src_len &&
2580 nla_put(skb, RTA_SRC, 16, &rt->rt6i_src.addr))
2581 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002582#endif
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09002583 if (iif) {
2584#ifdef CONFIG_IPV6_MROUTE
2585 if (ipv6_addr_is_multicast(&rt->rt6i_dst.addr)) {
Benjamin Thery8229efd2008-12-10 16:30:15 -08002586 int err = ip6mr_get_route(net, skb, rtm, nowait);
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09002587 if (err <= 0) {
2588 if (!nowait) {
2589 if (err == 0)
2590 return 0;
2591 goto nla_put_failure;
2592 } else {
2593 if (err == -EMSGSIZE)
2594 goto nla_put_failure;
2595 }
2596 }
2597 } else
2598#endif
David S. Millerc78679e2012-04-01 20:27:33 -04002599 if (nla_put_u32(skb, RTA_IIF, iif))
2600 goto nla_put_failure;
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09002601 } else if (dst) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002602 struct in6_addr saddr_buf;
David S. Millerc78679e2012-04-01 20:27:33 -04002603 if (ip6_route_get_saddr(net, rt, dst, 0, &saddr_buf) == 0 &&
2604 nla_put(skb, RTA_PREFSRC, 16, &saddr_buf))
2605 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002606 }
Thomas Graf2d7202b2006-08-22 00:01:27 -07002607
Daniel Walterc3968a82011-04-13 21:10:57 +00002608 if (rt->rt6i_prefsrc.plen) {
2609 struct in6_addr saddr_buf;
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00002610 saddr_buf = rt->rt6i_prefsrc.addr;
David S. Millerc78679e2012-04-01 20:27:33 -04002611 if (nla_put(skb, RTA_PREFSRC, 16, &saddr_buf))
2612 goto nla_put_failure;
Daniel Walterc3968a82011-04-13 21:10:57 +00002613 }
2614
David S. Millerdefb3512010-12-08 21:16:57 -08002615 if (rtnetlink_put_metrics(skb, dst_metrics_ptr(&rt->dst)) < 0)
Thomas Graf2d7202b2006-08-22 00:01:27 -07002616 goto nla_put_failure;
2617
David S. Miller97cac082012-07-02 22:43:47 -07002618 n = rt->n;
Eric Dumazet94f826b2012-03-27 09:53:52 +00002619 if (n) {
Amerigo Wangfdd66812012-09-10 02:48:44 +00002620 if (nla_put(skb, RTA_GATEWAY, 16, &n->primary_key) < 0)
Eric Dumazet94f826b2012-03-27 09:53:52 +00002621 goto nla_put_failure;
Eric Dumazet94f826b2012-03-27 09:53:52 +00002622 }
Thomas Graf2d7202b2006-08-22 00:01:27 -07002623
David S. Millerc78679e2012-04-01 20:27:33 -04002624 if (rt->dst.dev &&
2625 nla_put_u32(skb, RTA_OIF, rt->dst.dev->ifindex))
2626 goto nla_put_failure;
2627 if (nla_put_u32(skb, RTA_PRIORITY, rt->rt6i_metric))
2628 goto nla_put_failure;
Li Wei82539472012-07-29 16:01:30 +00002629
2630 expires = (rt->rt6i_flags & RTF_EXPIRES) ? rt->dst.expires - jiffies : 0;
YOSHIFUJI Hideaki69cdf8f2008-05-19 16:55:13 -07002631
David S. Miller87a50692012-07-10 05:06:14 -07002632 if (rtnl_put_cacheinfo(skb, &rt->dst, 0, expires, rt->dst.error) < 0)
Thomas Grafe3703b32006-11-27 09:27:07 -08002633 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002634
Thomas Graf2d7202b2006-08-22 00:01:27 -07002635 return nlmsg_end(skb, nlh);
2636
2637nla_put_failure:
Patrick McHardy26932562007-01-31 23:16:40 -08002638 nlmsg_cancel(skb, nlh);
2639 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002640}
2641
Patrick McHardy1b43af52006-08-10 23:11:17 -07002642int rt6_dump_route(struct rt6_info *rt, void *p_arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002643{
2644 struct rt6_rtnl_dump_arg *arg = (struct rt6_rtnl_dump_arg *) p_arg;
2645 int prefix;
2646
Thomas Graf2d7202b2006-08-22 00:01:27 -07002647 if (nlmsg_len(arg->cb->nlh) >= sizeof(struct rtmsg)) {
2648 struct rtmsg *rtm = nlmsg_data(arg->cb->nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002649 prefix = (rtm->rtm_flags & RTM_F_PREFIX) != 0;
2650 } else
2651 prefix = 0;
2652
Brian Haley191cd582008-08-14 15:33:21 -07002653 return rt6_fill_node(arg->net,
2654 arg->skb, rt, NULL, NULL, 0, RTM_NEWROUTE,
Eric W. Biederman15e47302012-09-07 20:12:54 +00002655 NETLINK_CB(arg->cb->skb).portid, arg->cb->nlh->nlmsg_seq,
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09002656 prefix, 0, NLM_F_MULTI);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002657}
2658
Thomas Grafc127ea22007-03-22 11:58:32 -07002659static int inet6_rtm_getroute(struct sk_buff *in_skb, struct nlmsghdr* nlh, void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002660{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09002661 struct net *net = sock_net(in_skb->sk);
Thomas Grafab364a62006-08-22 00:01:47 -07002662 struct nlattr *tb[RTA_MAX+1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002663 struct rt6_info *rt;
Thomas Grafab364a62006-08-22 00:01:47 -07002664 struct sk_buff *skb;
2665 struct rtmsg *rtm;
David S. Miller4c9483b2011-03-12 16:22:43 -05002666 struct flowi6 fl6;
Shmulik Ladkani72331bc2012-04-01 04:03:45 +00002667 int err, iif = 0, oif = 0;
Thomas Grafab364a62006-08-22 00:01:47 -07002668
2669 err = nlmsg_parse(nlh, sizeof(*rtm), tb, RTA_MAX, rtm_ipv6_policy);
2670 if (err < 0)
2671 goto errout;
2672
2673 err = -EINVAL;
David S. Miller4c9483b2011-03-12 16:22:43 -05002674 memset(&fl6, 0, sizeof(fl6));
Thomas Grafab364a62006-08-22 00:01:47 -07002675
2676 if (tb[RTA_SRC]) {
2677 if (nla_len(tb[RTA_SRC]) < sizeof(struct in6_addr))
2678 goto errout;
2679
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00002680 fl6.saddr = *(struct in6_addr *)nla_data(tb[RTA_SRC]);
Thomas Grafab364a62006-08-22 00:01:47 -07002681 }
2682
2683 if (tb[RTA_DST]) {
2684 if (nla_len(tb[RTA_DST]) < sizeof(struct in6_addr))
2685 goto errout;
2686
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00002687 fl6.daddr = *(struct in6_addr *)nla_data(tb[RTA_DST]);
Thomas Grafab364a62006-08-22 00:01:47 -07002688 }
2689
2690 if (tb[RTA_IIF])
2691 iif = nla_get_u32(tb[RTA_IIF]);
2692
2693 if (tb[RTA_OIF])
Shmulik Ladkani72331bc2012-04-01 04:03:45 +00002694 oif = nla_get_u32(tb[RTA_OIF]);
Thomas Grafab364a62006-08-22 00:01:47 -07002695
2696 if (iif) {
2697 struct net_device *dev;
Shmulik Ladkani72331bc2012-04-01 04:03:45 +00002698 int flags = 0;
2699
Daniel Lezcano55786892008-03-04 13:47:47 -08002700 dev = __dev_get_by_index(net, iif);
Thomas Grafab364a62006-08-22 00:01:47 -07002701 if (!dev) {
2702 err = -ENODEV;
2703 goto errout;
2704 }
Shmulik Ladkani72331bc2012-04-01 04:03:45 +00002705
2706 fl6.flowi6_iif = iif;
2707
2708 if (!ipv6_addr_any(&fl6.saddr))
2709 flags |= RT6_LOOKUP_F_HAS_SADDR;
2710
2711 rt = (struct rt6_info *)ip6_route_input_lookup(net, dev, &fl6,
2712 flags);
2713 } else {
2714 fl6.flowi6_oif = oif;
2715
2716 rt = (struct rt6_info *)ip6_route_output(net, NULL, &fl6);
Thomas Grafab364a62006-08-22 00:01:47 -07002717 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002718
2719 skb = alloc_skb(NLMSG_GOODSIZE, GFP_KERNEL);
David S. Miller38308472011-12-03 18:02:47 -05002720 if (!skb) {
Amerigo Wang94e187c2012-10-29 00:13:19 +00002721 ip6_rt_put(rt);
Thomas Grafab364a62006-08-22 00:01:47 -07002722 err = -ENOBUFS;
2723 goto errout;
2724 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002725
2726 /* Reserve room for dummy headers, this skb can pass
2727 through good chunk of routing engine.
2728 */
Arnaldo Carvalho de Melo459a98e2007-03-19 15:30:44 -07002729 skb_reset_mac_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002730 skb_reserve(skb, MAX_HEADER + sizeof(struct ipv6hdr));
2731
Changli Gaod8d1f302010-06-10 23:31:35 -07002732 skb_dst_set(skb, &rt->dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002733
David S. Miller4c9483b2011-03-12 16:22:43 -05002734 err = rt6_fill_node(net, skb, rt, &fl6.daddr, &fl6.saddr, iif,
Eric W. Biederman15e47302012-09-07 20:12:54 +00002735 RTM_NEWROUTE, NETLINK_CB(in_skb).portid,
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09002736 nlh->nlmsg_seq, 0, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002737 if (err < 0) {
Thomas Grafab364a62006-08-22 00:01:47 -07002738 kfree_skb(skb);
2739 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002740 }
2741
Eric W. Biederman15e47302012-09-07 20:12:54 +00002742 err = rtnl_unicast(skb, net, NETLINK_CB(in_skb).portid);
Thomas Grafab364a62006-08-22 00:01:47 -07002743errout:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002744 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002745}
2746
Thomas Graf86872cb2006-08-22 00:01:08 -07002747void inet6_rt_notify(int event, struct rt6_info *rt, struct nl_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002748{
2749 struct sk_buff *skb;
Daniel Lezcano55786892008-03-04 13:47:47 -08002750 struct net *net = info->nl_net;
Denis V. Lunev528c4ce2007-12-13 09:45:12 -08002751 u32 seq;
2752 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002753
Denis V. Lunev528c4ce2007-12-13 09:45:12 -08002754 err = -ENOBUFS;
David S. Miller38308472011-12-03 18:02:47 -05002755 seq = info->nlh ? info->nlh->nlmsg_seq : 0;
Thomas Graf86872cb2006-08-22 00:01:08 -07002756
Thomas Graf339bf982006-11-10 14:10:15 -08002757 skb = nlmsg_new(rt6_nlmsg_size(), gfp_any());
David S. Miller38308472011-12-03 18:02:47 -05002758 if (!skb)
Thomas Graf21713eb2006-08-15 00:35:24 -07002759 goto errout;
2760
Brian Haley191cd582008-08-14 15:33:21 -07002761 err = rt6_fill_node(net, skb, rt, NULL, NULL, 0,
Eric W. Biederman15e47302012-09-07 20:12:54 +00002762 event, info->portid, seq, 0, 0, 0);
Patrick McHardy26932562007-01-31 23:16:40 -08002763 if (err < 0) {
2764 /* -EMSGSIZE implies BUG in rt6_nlmsg_size() */
2765 WARN_ON(err == -EMSGSIZE);
2766 kfree_skb(skb);
2767 goto errout;
2768 }
Eric W. Biederman15e47302012-09-07 20:12:54 +00002769 rtnl_notify(skb, net, info->portid, RTNLGRP_IPV6_ROUTE,
Pablo Neira Ayuso1ce85fe2009-02-24 23:18:28 -08002770 info->nlh, gfp_any());
2771 return;
Thomas Graf21713eb2006-08-15 00:35:24 -07002772errout:
2773 if (err < 0)
Daniel Lezcano55786892008-03-04 13:47:47 -08002774 rtnl_set_sk_err(net, RTNLGRP_IPV6_ROUTE, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002775}
2776
Daniel Lezcano8ed67782008-03-04 13:48:30 -08002777static int ip6_route_dev_notify(struct notifier_block *this,
2778 unsigned long event, void *data)
2779{
2780 struct net_device *dev = (struct net_device *)data;
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09002781 struct net *net = dev_net(dev);
Daniel Lezcano8ed67782008-03-04 13:48:30 -08002782
2783 if (event == NETDEV_REGISTER && (dev->flags & IFF_LOOPBACK)) {
Changli Gaod8d1f302010-06-10 23:31:35 -07002784 net->ipv6.ip6_null_entry->dst.dev = dev;
Daniel Lezcano8ed67782008-03-04 13:48:30 -08002785 net->ipv6.ip6_null_entry->rt6i_idev = in6_dev_get(dev);
2786#ifdef CONFIG_IPV6_MULTIPLE_TABLES
Changli Gaod8d1f302010-06-10 23:31:35 -07002787 net->ipv6.ip6_prohibit_entry->dst.dev = dev;
Daniel Lezcano8ed67782008-03-04 13:48:30 -08002788 net->ipv6.ip6_prohibit_entry->rt6i_idev = in6_dev_get(dev);
Changli Gaod8d1f302010-06-10 23:31:35 -07002789 net->ipv6.ip6_blk_hole_entry->dst.dev = dev;
Daniel Lezcano8ed67782008-03-04 13:48:30 -08002790 net->ipv6.ip6_blk_hole_entry->rt6i_idev = in6_dev_get(dev);
2791#endif
2792 }
2793
2794 return NOTIFY_OK;
2795}
2796
Linus Torvalds1da177e2005-04-16 15:20:36 -07002797/*
2798 * /proc
2799 */
2800
2801#ifdef CONFIG_PROC_FS
2802
Linus Torvalds1da177e2005-04-16 15:20:36 -07002803struct rt6_proc_arg
2804{
2805 char *buffer;
2806 int offset;
2807 int length;
2808 int skip;
2809 int len;
2810};
2811
2812static int rt6_info_route(struct rt6_info *rt, void *p_arg)
2813{
Alexey Dobriyan33120b32007-11-06 05:27:11 -08002814 struct seq_file *m = p_arg;
David S. Miller69cce1d2011-07-17 23:09:49 -07002815 struct neighbour *n;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002816
Harvey Harrison4b7a4272008-10-29 12:50:24 -07002817 seq_printf(m, "%pi6 %02x ", &rt->rt6i_dst.addr, rt->rt6i_dst.plen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002818
2819#ifdef CONFIG_IPV6_SUBTREES
Harvey Harrison4b7a4272008-10-29 12:50:24 -07002820 seq_printf(m, "%pi6 %02x ", &rt->rt6i_src.addr, rt->rt6i_src.plen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002821#else
Alexey Dobriyan33120b32007-11-06 05:27:11 -08002822 seq_puts(m, "00000000000000000000000000000000 00 ");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002823#endif
David S. Miller97cac082012-07-02 22:43:47 -07002824 n = rt->n;
David S. Miller69cce1d2011-07-17 23:09:49 -07002825 if (n) {
2826 seq_printf(m, "%pi6", n->primary_key);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002827 } else {
Alexey Dobriyan33120b32007-11-06 05:27:11 -08002828 seq_puts(m, "00000000000000000000000000000000");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002829 }
Alexey Dobriyan33120b32007-11-06 05:27:11 -08002830 seq_printf(m, " %08x %08x %08x %08x %8s\n",
Changli Gaod8d1f302010-06-10 23:31:35 -07002831 rt->rt6i_metric, atomic_read(&rt->dst.__refcnt),
2832 rt->dst.__use, rt->rt6i_flags,
David S. Millerd1918542011-12-28 20:19:20 -05002833 rt->dst.dev ? rt->dst.dev->name : "");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002834 return 0;
2835}
2836
Alexey Dobriyan33120b32007-11-06 05:27:11 -08002837static int ipv6_route_show(struct seq_file *m, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002838{
Daniel Lezcanof3db4852008-03-03 23:27:06 -08002839 struct net *net = (struct net *)m->private;
Josh Hunt32b293a2011-12-28 13:23:07 +00002840 fib6_clean_all_ro(net, rt6_info_route, 0, m);
Alexey Dobriyan33120b32007-11-06 05:27:11 -08002841 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002842}
2843
Alexey Dobriyan33120b32007-11-06 05:27:11 -08002844static int ipv6_route_open(struct inode *inode, struct file *file)
2845{
Pavel Emelyanovde05c552008-07-18 04:07:21 -07002846 return single_open_net(inode, file, ipv6_route_show);
Daniel Lezcanof3db4852008-03-03 23:27:06 -08002847}
2848
Alexey Dobriyan33120b32007-11-06 05:27:11 -08002849static const struct file_operations ipv6_route_proc_fops = {
2850 .owner = THIS_MODULE,
2851 .open = ipv6_route_open,
2852 .read = seq_read,
2853 .llseek = seq_lseek,
Pavel Emelyanovb6fcbdb2008-07-18 04:07:44 -07002854 .release = single_release_net,
Alexey Dobriyan33120b32007-11-06 05:27:11 -08002855};
2856
Linus Torvalds1da177e2005-04-16 15:20:36 -07002857static int rt6_stats_seq_show(struct seq_file *seq, void *v)
2858{
Daniel Lezcano69ddb802008-03-04 13:46:23 -08002859 struct net *net = (struct net *)seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002860 seq_printf(seq, "%04x %04x %04x %04x %04x %04x %04x\n",
Daniel Lezcano69ddb802008-03-04 13:46:23 -08002861 net->ipv6.rt6_stats->fib_nodes,
2862 net->ipv6.rt6_stats->fib_route_nodes,
2863 net->ipv6.rt6_stats->fib_rt_alloc,
2864 net->ipv6.rt6_stats->fib_rt_entries,
2865 net->ipv6.rt6_stats->fib_rt_cache,
Eric Dumazetfc66f952010-10-08 06:37:34 +00002866 dst_entries_get_slow(&net->ipv6.ip6_dst_ops),
Daniel Lezcano69ddb802008-03-04 13:46:23 -08002867 net->ipv6.rt6_stats->fib_discarded_routes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002868
2869 return 0;
2870}
2871
2872static int rt6_stats_seq_open(struct inode *inode, struct file *file)
2873{
Pavel Emelyanovde05c552008-07-18 04:07:21 -07002874 return single_open_net(inode, file, rt6_stats_seq_show);
Daniel Lezcano69ddb802008-03-04 13:46:23 -08002875}
2876
Arjan van de Ven9a321442007-02-12 00:55:35 -08002877static const struct file_operations rt6_stats_seq_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002878 .owner = THIS_MODULE,
2879 .open = rt6_stats_seq_open,
2880 .read = seq_read,
2881 .llseek = seq_lseek,
Pavel Emelyanovb6fcbdb2008-07-18 04:07:44 -07002882 .release = single_release_net,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002883};
2884#endif /* CONFIG_PROC_FS */
2885
2886#ifdef CONFIG_SYSCTL
2887
Linus Torvalds1da177e2005-04-16 15:20:36 -07002888static
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002889int ipv6_sysctl_rtcache_flush(ctl_table *ctl, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002890 void __user *buffer, size_t *lenp, loff_t *ppos)
2891{
Lucian Adrian Grijincuc486da32011-02-24 19:48:03 +00002892 struct net *net;
2893 int delay;
2894 if (!write)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002895 return -EINVAL;
Lucian Adrian Grijincuc486da32011-02-24 19:48:03 +00002896
2897 net = (struct net *)ctl->extra1;
2898 delay = net->ipv6.sysctl.flush_delay;
2899 proc_dointvec(ctl, write, buffer, lenp, ppos);
2900 fib6_run_gc(delay <= 0 ? ~0UL : (unsigned long)delay, net);
2901 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002902}
2903
Daniel Lezcano760f2d02008-01-10 02:53:43 -08002904ctl_table ipv6_route_table_template[] = {
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002905 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002906 .procname = "flush",
Daniel Lezcano49905092008-01-10 03:01:01 -08002907 .data = &init_net.ipv6.sysctl.flush_delay,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002908 .maxlen = sizeof(int),
Dave Jones89c8b3a12005-04-28 12:11:49 -07002909 .mode = 0200,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08002910 .proc_handler = ipv6_sysctl_rtcache_flush
Linus Torvalds1da177e2005-04-16 15:20:36 -07002911 },
2912 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002913 .procname = "gc_thresh",
Daniel Lezcano9a7ec3a2008-03-04 13:48:53 -08002914 .data = &ip6_dst_ops_template.gc_thresh,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002915 .maxlen = sizeof(int),
2916 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08002917 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002918 },
2919 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002920 .procname = "max_size",
Daniel Lezcano49905092008-01-10 03:01:01 -08002921 .data = &init_net.ipv6.sysctl.ip6_rt_max_size,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002922 .maxlen = sizeof(int),
2923 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08002924 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002925 },
2926 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002927 .procname = "gc_min_interval",
Daniel Lezcano49905092008-01-10 03:01:01 -08002928 .data = &init_net.ipv6.sysctl.ip6_rt_gc_min_interval,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002929 .maxlen = sizeof(int),
2930 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08002931 .proc_handler = proc_dointvec_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002932 },
2933 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002934 .procname = "gc_timeout",
Daniel Lezcano49905092008-01-10 03:01:01 -08002935 .data = &init_net.ipv6.sysctl.ip6_rt_gc_timeout,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002936 .maxlen = sizeof(int),
2937 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08002938 .proc_handler = proc_dointvec_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002939 },
2940 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002941 .procname = "gc_interval",
Daniel Lezcano49905092008-01-10 03:01:01 -08002942 .data = &init_net.ipv6.sysctl.ip6_rt_gc_interval,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002943 .maxlen = sizeof(int),
2944 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08002945 .proc_handler = proc_dointvec_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002946 },
2947 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002948 .procname = "gc_elasticity",
Daniel Lezcano49905092008-01-10 03:01:01 -08002949 .data = &init_net.ipv6.sysctl.ip6_rt_gc_elasticity,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002950 .maxlen = sizeof(int),
2951 .mode = 0644,
Min Zhangf3d3f612010-08-14 22:42:51 -07002952 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002953 },
2954 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002955 .procname = "mtu_expires",
Daniel Lezcano49905092008-01-10 03:01:01 -08002956 .data = &init_net.ipv6.sysctl.ip6_rt_mtu_expires,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002957 .maxlen = sizeof(int),
2958 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08002959 .proc_handler = proc_dointvec_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002960 },
2961 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002962 .procname = "min_adv_mss",
Daniel Lezcano49905092008-01-10 03:01:01 -08002963 .data = &init_net.ipv6.sysctl.ip6_rt_min_advmss,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002964 .maxlen = sizeof(int),
2965 .mode = 0644,
Min Zhangf3d3f612010-08-14 22:42:51 -07002966 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002967 },
2968 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002969 .procname = "gc_min_interval_ms",
Daniel Lezcano49905092008-01-10 03:01:01 -08002970 .data = &init_net.ipv6.sysctl.ip6_rt_gc_min_interval,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002971 .maxlen = sizeof(int),
2972 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08002973 .proc_handler = proc_dointvec_ms_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002974 },
Eric W. Biedermanf8572d82009-11-05 13:32:03 -08002975 { }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002976};
2977
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00002978struct ctl_table * __net_init ipv6_route_sysctl_init(struct net *net)
Daniel Lezcano760f2d02008-01-10 02:53:43 -08002979{
2980 struct ctl_table *table;
2981
2982 table = kmemdup(ipv6_route_table_template,
2983 sizeof(ipv6_route_table_template),
2984 GFP_KERNEL);
YOSHIFUJI Hideaki5ee09102008-02-28 00:24:28 +09002985
2986 if (table) {
2987 table[0].data = &net->ipv6.sysctl.flush_delay;
Lucian Adrian Grijincuc486da32011-02-24 19:48:03 +00002988 table[0].extra1 = net;
Alexey Dobriyan86393e52009-08-29 01:34:49 +00002989 table[1].data = &net->ipv6.ip6_dst_ops.gc_thresh;
YOSHIFUJI Hideaki5ee09102008-02-28 00:24:28 +09002990 table[2].data = &net->ipv6.sysctl.ip6_rt_max_size;
2991 table[3].data = &net->ipv6.sysctl.ip6_rt_gc_min_interval;
2992 table[4].data = &net->ipv6.sysctl.ip6_rt_gc_timeout;
2993 table[5].data = &net->ipv6.sysctl.ip6_rt_gc_interval;
2994 table[6].data = &net->ipv6.sysctl.ip6_rt_gc_elasticity;
2995 table[7].data = &net->ipv6.sysctl.ip6_rt_mtu_expires;
2996 table[8].data = &net->ipv6.sysctl.ip6_rt_min_advmss;
Alexey Dobriyan9c69fab2009-12-18 20:11:03 -08002997 table[9].data = &net->ipv6.sysctl.ip6_rt_gc_min_interval;
YOSHIFUJI Hideaki5ee09102008-02-28 00:24:28 +09002998 }
2999
Daniel Lezcano760f2d02008-01-10 02:53:43 -08003000 return table;
3001}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003002#endif
3003
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00003004static int __net_init ip6_route_net_init(struct net *net)
Daniel Lezcanocdb18762008-03-04 13:45:33 -08003005{
Pavel Emelyanov633d4242008-04-21 14:25:23 -07003006 int ret = -ENOMEM;
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003007
Alexey Dobriyan86393e52009-08-29 01:34:49 +00003008 memcpy(&net->ipv6.ip6_dst_ops, &ip6_dst_ops_template,
3009 sizeof(net->ipv6.ip6_dst_ops));
Benjamin Theryf2fc6a52008-03-04 13:49:23 -08003010
Eric Dumazetfc66f952010-10-08 06:37:34 +00003011 if (dst_entries_init(&net->ipv6.ip6_dst_ops) < 0)
3012 goto out_ip6_dst_ops;
3013
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003014 net->ipv6.ip6_null_entry = kmemdup(&ip6_null_entry_template,
3015 sizeof(*net->ipv6.ip6_null_entry),
3016 GFP_KERNEL);
3017 if (!net->ipv6.ip6_null_entry)
Eric Dumazetfc66f952010-10-08 06:37:34 +00003018 goto out_ip6_dst_entries;
Changli Gaod8d1f302010-06-10 23:31:35 -07003019 net->ipv6.ip6_null_entry->dst.path =
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003020 (struct dst_entry *)net->ipv6.ip6_null_entry;
Changli Gaod8d1f302010-06-10 23:31:35 -07003021 net->ipv6.ip6_null_entry->dst.ops = &net->ipv6.ip6_dst_ops;
David S. Miller62fa8a82011-01-26 20:51:05 -08003022 dst_init_metrics(&net->ipv6.ip6_null_entry->dst,
3023 ip6_template_metrics, true);
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003024
3025#ifdef CONFIG_IPV6_MULTIPLE_TABLES
3026 net->ipv6.ip6_prohibit_entry = kmemdup(&ip6_prohibit_entry_template,
3027 sizeof(*net->ipv6.ip6_prohibit_entry),
3028 GFP_KERNEL);
Peter Zijlstra68fffc62008-10-07 14:12:10 -07003029 if (!net->ipv6.ip6_prohibit_entry)
3030 goto out_ip6_null_entry;
Changli Gaod8d1f302010-06-10 23:31:35 -07003031 net->ipv6.ip6_prohibit_entry->dst.path =
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003032 (struct dst_entry *)net->ipv6.ip6_prohibit_entry;
Changli Gaod8d1f302010-06-10 23:31:35 -07003033 net->ipv6.ip6_prohibit_entry->dst.ops = &net->ipv6.ip6_dst_ops;
David S. Miller62fa8a82011-01-26 20:51:05 -08003034 dst_init_metrics(&net->ipv6.ip6_prohibit_entry->dst,
3035 ip6_template_metrics, true);
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003036
3037 net->ipv6.ip6_blk_hole_entry = kmemdup(&ip6_blk_hole_entry_template,
3038 sizeof(*net->ipv6.ip6_blk_hole_entry),
3039 GFP_KERNEL);
Peter Zijlstra68fffc62008-10-07 14:12:10 -07003040 if (!net->ipv6.ip6_blk_hole_entry)
3041 goto out_ip6_prohibit_entry;
Changli Gaod8d1f302010-06-10 23:31:35 -07003042 net->ipv6.ip6_blk_hole_entry->dst.path =
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003043 (struct dst_entry *)net->ipv6.ip6_blk_hole_entry;
Changli Gaod8d1f302010-06-10 23:31:35 -07003044 net->ipv6.ip6_blk_hole_entry->dst.ops = &net->ipv6.ip6_dst_ops;
David S. Miller62fa8a82011-01-26 20:51:05 -08003045 dst_init_metrics(&net->ipv6.ip6_blk_hole_entry->dst,
3046 ip6_template_metrics, true);
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003047#endif
3048
Peter Zijlstrab339a47c2008-10-07 14:15:00 -07003049 net->ipv6.sysctl.flush_delay = 0;
3050 net->ipv6.sysctl.ip6_rt_max_size = 4096;
3051 net->ipv6.sysctl.ip6_rt_gc_min_interval = HZ / 2;
3052 net->ipv6.sysctl.ip6_rt_gc_timeout = 60*HZ;
3053 net->ipv6.sysctl.ip6_rt_gc_interval = 30*HZ;
3054 net->ipv6.sysctl.ip6_rt_gc_elasticity = 9;
3055 net->ipv6.sysctl.ip6_rt_mtu_expires = 10*60*HZ;
3056 net->ipv6.sysctl.ip6_rt_min_advmss = IPV6_MIN_MTU - 20 - 40;
3057
Benjamin Thery6891a342008-03-04 13:49:47 -08003058 net->ipv6.ip6_rt_gc_expire = 30*HZ;
3059
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003060 ret = 0;
3061out:
3062 return ret;
Benjamin Theryf2fc6a52008-03-04 13:49:23 -08003063
Peter Zijlstra68fffc62008-10-07 14:12:10 -07003064#ifdef CONFIG_IPV6_MULTIPLE_TABLES
3065out_ip6_prohibit_entry:
3066 kfree(net->ipv6.ip6_prohibit_entry);
3067out_ip6_null_entry:
3068 kfree(net->ipv6.ip6_null_entry);
3069#endif
Eric Dumazetfc66f952010-10-08 06:37:34 +00003070out_ip6_dst_entries:
3071 dst_entries_destroy(&net->ipv6.ip6_dst_ops);
Benjamin Theryf2fc6a52008-03-04 13:49:23 -08003072out_ip6_dst_ops:
Benjamin Theryf2fc6a52008-03-04 13:49:23 -08003073 goto out;
Daniel Lezcanocdb18762008-03-04 13:45:33 -08003074}
3075
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00003076static void __net_exit ip6_route_net_exit(struct net *net)
Daniel Lezcanocdb18762008-03-04 13:45:33 -08003077{
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003078 kfree(net->ipv6.ip6_null_entry);
3079#ifdef CONFIG_IPV6_MULTIPLE_TABLES
3080 kfree(net->ipv6.ip6_prohibit_entry);
3081 kfree(net->ipv6.ip6_blk_hole_entry);
3082#endif
Xiaotian Feng41bb78b2010-11-02 16:11:05 +00003083 dst_entries_destroy(&net->ipv6.ip6_dst_ops);
Daniel Lezcanocdb18762008-03-04 13:45:33 -08003084}
3085
Thomas Grafd1896342012-06-18 12:08:33 +00003086static int __net_init ip6_route_net_init_late(struct net *net)
3087{
3088#ifdef CONFIG_PROC_FS
3089 proc_net_fops_create(net, "ipv6_route", 0, &ipv6_route_proc_fops);
3090 proc_net_fops_create(net, "rt6_stats", S_IRUGO, &rt6_stats_seq_fops);
3091#endif
3092 return 0;
3093}
3094
3095static void __net_exit ip6_route_net_exit_late(struct net *net)
3096{
3097#ifdef CONFIG_PROC_FS
3098 proc_net_remove(net, "ipv6_route");
3099 proc_net_remove(net, "rt6_stats");
3100#endif
3101}
3102
Daniel Lezcanocdb18762008-03-04 13:45:33 -08003103static struct pernet_operations ip6_route_net_ops = {
3104 .init = ip6_route_net_init,
3105 .exit = ip6_route_net_exit,
3106};
3107
David S. Millerc3426b42012-06-09 16:27:05 -07003108static int __net_init ipv6_inetpeer_init(struct net *net)
3109{
3110 struct inet_peer_base *bp = kmalloc(sizeof(*bp), GFP_KERNEL);
3111
3112 if (!bp)
3113 return -ENOMEM;
3114 inet_peer_base_init(bp);
3115 net->ipv6.peers = bp;
3116 return 0;
3117}
3118
3119static void __net_exit ipv6_inetpeer_exit(struct net *net)
3120{
3121 struct inet_peer_base *bp = net->ipv6.peers;
3122
3123 net->ipv6.peers = NULL;
David S. Miller56a6b242012-06-09 16:32:41 -07003124 inetpeer_invalidate_tree(bp);
David S. Millerc3426b42012-06-09 16:27:05 -07003125 kfree(bp);
3126}
3127
David S. Miller2b823f72012-06-09 19:00:16 -07003128static struct pernet_operations ipv6_inetpeer_ops = {
David S. Millerc3426b42012-06-09 16:27:05 -07003129 .init = ipv6_inetpeer_init,
3130 .exit = ipv6_inetpeer_exit,
3131};
3132
Thomas Grafd1896342012-06-18 12:08:33 +00003133static struct pernet_operations ip6_route_net_late_ops = {
3134 .init = ip6_route_net_init_late,
3135 .exit = ip6_route_net_exit_late,
3136};
3137
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003138static struct notifier_block ip6_route_dev_notifier = {
3139 .notifier_call = ip6_route_dev_notify,
3140 .priority = 0,
3141};
3142
Daniel Lezcano433d49c2007-12-07 00:43:48 -08003143int __init ip6_route_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003144{
Daniel Lezcano433d49c2007-12-07 00:43:48 -08003145 int ret;
3146
Daniel Lezcano9a7ec3a2008-03-04 13:48:53 -08003147 ret = -ENOMEM;
3148 ip6_dst_ops_template.kmem_cachep =
3149 kmem_cache_create("ip6_dst_cache", sizeof(struct rt6_info), 0,
3150 SLAB_HWCACHE_ALIGN, NULL);
3151 if (!ip6_dst_ops_template.kmem_cachep)
Fernando Carrijoc19a28e2009-01-07 18:09:08 -08003152 goto out;
David S. Miller14e50e52007-05-24 18:17:54 -07003153
Eric Dumazetfc66f952010-10-08 06:37:34 +00003154 ret = dst_entries_init(&ip6_dst_blackhole_ops);
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003155 if (ret)
Daniel Lezcanobdb32892008-03-04 13:48:10 -08003156 goto out_kmem_cache;
Daniel Lezcanobdb32892008-03-04 13:48:10 -08003157
David S. Millerc3426b42012-06-09 16:27:05 -07003158 ret = register_pernet_subsys(&ipv6_inetpeer_ops);
3159 if (ret)
David S. Millere8803b62012-06-16 01:12:19 -07003160 goto out_dst_entries;
Thomas Graf2a0c4512012-06-14 23:00:17 +00003161
David S. Miller7e52b332012-06-15 15:51:55 -07003162 ret = register_pernet_subsys(&ip6_route_net_ops);
3163 if (ret)
3164 goto out_register_inetpeer;
David S. Millerc3426b42012-06-09 16:27:05 -07003165
Arnaud Ebalard5dc121e2008-10-01 02:37:56 -07003166 ip6_dst_blackhole_ops.kmem_cachep = ip6_dst_ops_template.kmem_cachep;
3167
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003168 /* Registering of the loopback is done before this portion of code,
3169 * the loopback reference in rt6_info will not be taken, do it
3170 * manually for init_net */
Changli Gaod8d1f302010-06-10 23:31:35 -07003171 init_net.ipv6.ip6_null_entry->dst.dev = init_net.loopback_dev;
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003172 init_net.ipv6.ip6_null_entry->rt6i_idev = in6_dev_get(init_net.loopback_dev);
3173 #ifdef CONFIG_IPV6_MULTIPLE_TABLES
Changli Gaod8d1f302010-06-10 23:31:35 -07003174 init_net.ipv6.ip6_prohibit_entry->dst.dev = init_net.loopback_dev;
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003175 init_net.ipv6.ip6_prohibit_entry->rt6i_idev = in6_dev_get(init_net.loopback_dev);
Changli Gaod8d1f302010-06-10 23:31:35 -07003176 init_net.ipv6.ip6_blk_hole_entry->dst.dev = init_net.loopback_dev;
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003177 init_net.ipv6.ip6_blk_hole_entry->rt6i_idev = in6_dev_get(init_net.loopback_dev);
3178 #endif
David S. Millere8803b62012-06-16 01:12:19 -07003179 ret = fib6_init();
Daniel Lezcano433d49c2007-12-07 00:43:48 -08003180 if (ret)
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003181 goto out_register_subsys;
Daniel Lezcano433d49c2007-12-07 00:43:48 -08003182
Daniel Lezcano433d49c2007-12-07 00:43:48 -08003183 ret = xfrm6_init();
3184 if (ret)
David S. Millere8803b62012-06-16 01:12:19 -07003185 goto out_fib6_init;
Daniel Lezcanoc35b7e72007-12-08 00:14:11 -08003186
Daniel Lezcano433d49c2007-12-07 00:43:48 -08003187 ret = fib6_rules_init();
3188 if (ret)
3189 goto xfrm6_init;
Daniel Lezcano7e5449c2007-12-08 00:14:54 -08003190
Thomas Grafd1896342012-06-18 12:08:33 +00003191 ret = register_pernet_subsys(&ip6_route_net_late_ops);
3192 if (ret)
3193 goto fib6_rules_init;
3194
Daniel Lezcano433d49c2007-12-07 00:43:48 -08003195 ret = -ENOBUFS;
Greg Rosec7ac8672011-06-10 01:27:09 +00003196 if (__rtnl_register(PF_INET6, RTM_NEWROUTE, inet6_rtm_newroute, NULL, NULL) ||
3197 __rtnl_register(PF_INET6, RTM_DELROUTE, inet6_rtm_delroute, NULL, NULL) ||
3198 __rtnl_register(PF_INET6, RTM_GETROUTE, inet6_rtm_getroute, NULL, NULL))
Thomas Grafd1896342012-06-18 12:08:33 +00003199 goto out_register_late_subsys;
Daniel Lezcano433d49c2007-12-07 00:43:48 -08003200
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003201 ret = register_netdevice_notifier(&ip6_route_dev_notifier);
Daniel Lezcanocdb18762008-03-04 13:45:33 -08003202 if (ret)
Thomas Grafd1896342012-06-18 12:08:33 +00003203 goto out_register_late_subsys;
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003204
Daniel Lezcano433d49c2007-12-07 00:43:48 -08003205out:
3206 return ret;
3207
Thomas Grafd1896342012-06-18 12:08:33 +00003208out_register_late_subsys:
3209 unregister_pernet_subsys(&ip6_route_net_late_ops);
Daniel Lezcano433d49c2007-12-07 00:43:48 -08003210fib6_rules_init:
Daniel Lezcano433d49c2007-12-07 00:43:48 -08003211 fib6_rules_cleanup();
3212xfrm6_init:
Daniel Lezcano433d49c2007-12-07 00:43:48 -08003213 xfrm6_fini();
Thomas Graf2a0c4512012-06-14 23:00:17 +00003214out_fib6_init:
3215 fib6_gc_cleanup();
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003216out_register_subsys:
3217 unregister_pernet_subsys(&ip6_route_net_ops);
David S. Miller7e52b332012-06-15 15:51:55 -07003218out_register_inetpeer:
3219 unregister_pernet_subsys(&ipv6_inetpeer_ops);
Eric Dumazetfc66f952010-10-08 06:37:34 +00003220out_dst_entries:
3221 dst_entries_destroy(&ip6_dst_blackhole_ops);
Daniel Lezcano433d49c2007-12-07 00:43:48 -08003222out_kmem_cache:
Benjamin Theryf2fc6a52008-03-04 13:49:23 -08003223 kmem_cache_destroy(ip6_dst_ops_template.kmem_cachep);
Daniel Lezcano433d49c2007-12-07 00:43:48 -08003224 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003225}
3226
3227void ip6_route_cleanup(void)
3228{
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003229 unregister_netdevice_notifier(&ip6_route_dev_notifier);
Thomas Grafd1896342012-06-18 12:08:33 +00003230 unregister_pernet_subsys(&ip6_route_net_late_ops);
Thomas Graf101367c2006-08-04 03:39:02 -07003231 fib6_rules_cleanup();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003232 xfrm6_fini();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003233 fib6_gc_cleanup();
David S. Millerc3426b42012-06-09 16:27:05 -07003234 unregister_pernet_subsys(&ipv6_inetpeer_ops);
Daniel Lezcano8ed67782008-03-04 13:48:30 -08003235 unregister_pernet_subsys(&ip6_route_net_ops);
Xiaotian Feng41bb78b2010-11-02 16:11:05 +00003236 dst_entries_destroy(&ip6_dst_blackhole_ops);
Benjamin Theryf2fc6a52008-03-04 13:49:23 -08003237 kmem_cache_destroy(ip6_dst_ops_template.kmem_cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003238}