blob: 65053fba8c1a1efeec1a449b1ae6c17d95a0f506 [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 *
8 * $Id: route.c,v 1.56 2001/10/31 21:55:55 davem Exp $
9 *
10 * This program is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU General Public License
12 * as published by the Free Software Foundation; either version
13 * 2 of the License, or (at your option) any later version.
14 */
15
16/* Changes:
17 *
18 * YOSHIFUJI Hideaki @USAGI
19 * reworked default router selection.
20 * - respect outgoing interface
21 * - select from (probably) reachable routers (i.e.
22 * routers in REACHABLE, STALE, DELAY or PROBE states).
23 * - always select the same router if it is (probably)
24 * reachable. otherwise, round-robin the list.
YOSHIFUJI Hideakic0bece92006-08-23 17:23:25 -070025 * Ville Nuorvala
26 * Fixed routing subtrees.
Linus Torvalds1da177e2005-04-16 15:20:36 -070027 */
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>
31#include <linux/types.h>
32#include <linux/times.h>
33#include <linux/socket.h>
34#include <linux/sockios.h>
35#include <linux/net.h>
36#include <linux/route.h>
37#include <linux/netdevice.h>
38#include <linux/in6.h>
39#include <linux/init.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070040#include <linux/if_arp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#include <linux/proc_fs.h>
42#include <linux/seq_file.h>
Daniel Lezcano5b7c9312008-03-03 23:28:58 -080043#include <linux/nsproxy.h>
Eric W. Biederman457c4cb2007-09-12 12:01:34 +020044#include <net/net_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#include <net/snmp.h>
46#include <net/ipv6.h>
47#include <net/ip6_fib.h>
48#include <net/ip6_route.h>
49#include <net/ndisc.h>
50#include <net/addrconf.h>
51#include <net/tcp.h>
52#include <linux/rtnetlink.h>
53#include <net/dst.h>
54#include <net/xfrm.h>
Tom Tucker8d717402006-07-30 20:43:36 -070055#include <net/netevent.h>
Thomas Graf21713eb2006-08-15 00:35:24 -070056#include <net/netlink.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
58#include <asm/uaccess.h>
59
60#ifdef CONFIG_SYSCTL
61#include <linux/sysctl.h>
62#endif
63
64/* Set to 3 to get tracing. */
65#define RT6_DEBUG 2
66
67#if RT6_DEBUG >= 3
68#define RDBG(x) printk x
69#define RT6_TRACE(x...) printk(KERN_DEBUG x)
70#else
71#define RDBG(x)
72#define RT6_TRACE(x...) do { ; } while (0)
73#endif
74
YOSHIFUJI Hideaki519fbd82006-03-20 17:00:05 -080075#define CLONE_OFFLINK_ROUTE 0
Linus Torvalds1da177e2005-04-16 15:20:36 -070076
Linus Torvalds1da177e2005-04-16 15:20:36 -070077static struct rt6_info * ip6_rt_copy(struct rt6_info *ort);
78static struct dst_entry *ip6_dst_check(struct dst_entry *dst, u32 cookie);
79static struct dst_entry *ip6_negative_advice(struct dst_entry *);
80static void ip6_dst_destroy(struct dst_entry *);
81static void ip6_dst_ifdown(struct dst_entry *,
82 struct net_device *dev, int how);
Daniel Lezcano569d3642008-01-18 03:56:57 -080083static int ip6_dst_gc(struct dst_ops *ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -070084
85static int ip6_pkt_discard(struct sk_buff *skb);
86static int ip6_pkt_discard_out(struct sk_buff *skb);
87static void ip6_link_failure(struct sk_buff *skb);
88static void ip6_rt_update_pmtu(struct dst_entry *dst, u32 mtu);
89
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -080090#ifdef CONFIG_IPV6_ROUTE_INFO
Daniel Lezcanoefa2cea2008-03-04 13:46:48 -080091static struct rt6_info *rt6_add_route_info(struct net *net,
92 struct in6_addr *prefix, int prefixlen,
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -080093 struct in6_addr *gwaddr, int ifindex,
94 unsigned pref);
Daniel Lezcanoefa2cea2008-03-04 13:46:48 -080095static struct rt6_info *rt6_get_route_info(struct net *net,
96 struct in6_addr *prefix, int prefixlen,
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -080097 struct in6_addr *gwaddr, int ifindex);
98#endif
99
Daniel Lezcano9a7ec3a2008-03-04 13:48:53 -0800100static struct dst_ops ip6_dst_ops_template = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 .family = AF_INET6,
102 .protocol = __constant_htons(ETH_P_IPV6),
103 .gc = ip6_dst_gc,
104 .gc_thresh = 1024,
105 .check = ip6_dst_check,
106 .destroy = ip6_dst_destroy,
107 .ifdown = ip6_dst_ifdown,
108 .negative_advice = ip6_negative_advice,
109 .link_failure = ip6_link_failure,
110 .update_pmtu = ip6_rt_update_pmtu,
Herbert Xu862b82c2007-11-13 21:43:11 -0800111 .local_out = ip6_local_out,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 .entry_size = sizeof(struct rt6_info),
Eric Dumazete2422972008-01-30 20:07:45 -0800113 .entries = ATOMIC_INIT(0),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114};
115
David S. Miller14e50e52007-05-24 18:17:54 -0700116static void ip6_rt_blackhole_update_pmtu(struct dst_entry *dst, u32 mtu)
117{
118}
119
120static struct dst_ops ip6_dst_blackhole_ops = {
121 .family = AF_INET6,
122 .protocol = __constant_htons(ETH_P_IPV6),
123 .destroy = ip6_dst_destroy,
124 .check = ip6_dst_check,
125 .update_pmtu = ip6_rt_blackhole_update_pmtu,
126 .entry_size = sizeof(struct rt6_info),
Eric Dumazete2422972008-01-30 20:07:45 -0800127 .entries = ATOMIC_INIT(0),
David S. Miller14e50e52007-05-24 18:17:54 -0700128};
129
Daniel Lezcanobdb32892008-03-04 13:48:10 -0800130static struct rt6_info ip6_null_entry_template = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 .u = {
132 .dst = {
133 .__refcnt = ATOMIC_INIT(1),
134 .__use = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 .obsolete = -1,
136 .error = -ENETUNREACH,
137 .metrics = { [RTAX_HOPLIMIT - 1] = 255, },
138 .input = ip6_pkt_discard,
139 .output = ip6_pkt_discard_out,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 }
141 },
142 .rt6i_flags = (RTF_REJECT | RTF_NONEXTHOP),
143 .rt6i_metric = ~(u32) 0,
144 .rt6i_ref = ATOMIC_INIT(1),
145};
146
Thomas Graf101367c2006-08-04 03:39:02 -0700147#ifdef CONFIG_IPV6_MULTIPLE_TABLES
148
David S. Miller6723ab52006-10-18 21:20:57 -0700149static int ip6_pkt_prohibit(struct sk_buff *skb);
150static int ip6_pkt_prohibit_out(struct sk_buff *skb);
David S. Miller6723ab52006-10-18 21:20:57 -0700151
Daniel Lezcanobdb32892008-03-04 13:48:10 -0800152struct rt6_info ip6_prohibit_entry_template = {
Thomas Graf101367c2006-08-04 03:39:02 -0700153 .u = {
154 .dst = {
155 .__refcnt = ATOMIC_INIT(1),
156 .__use = 1,
Thomas Graf101367c2006-08-04 03:39:02 -0700157 .obsolete = -1,
158 .error = -EACCES,
159 .metrics = { [RTAX_HOPLIMIT - 1] = 255, },
Thomas Graf9ce8ade2006-10-18 20:46:54 -0700160 .input = ip6_pkt_prohibit,
161 .output = ip6_pkt_prohibit_out,
Thomas Graf101367c2006-08-04 03:39:02 -0700162 }
163 },
164 .rt6i_flags = (RTF_REJECT | RTF_NONEXTHOP),
165 .rt6i_metric = ~(u32) 0,
166 .rt6i_ref = ATOMIC_INIT(1),
167};
168
Daniel Lezcanobdb32892008-03-04 13:48:10 -0800169static struct rt6_info ip6_blk_hole_entry_template = {
Thomas Graf101367c2006-08-04 03:39:02 -0700170 .u = {
171 .dst = {
172 .__refcnt = ATOMIC_INIT(1),
173 .__use = 1,
Thomas Graf101367c2006-08-04 03:39:02 -0700174 .obsolete = -1,
175 .error = -EINVAL,
176 .metrics = { [RTAX_HOPLIMIT - 1] = 255, },
Herbert Xu352e5122007-11-13 21:34:06 -0800177 .input = dst_discard,
178 .output = dst_discard,
Thomas Graf101367c2006-08-04 03:39:02 -0700179 }
180 },
181 .rt6i_flags = (RTF_REJECT | RTF_NONEXTHOP),
182 .rt6i_metric = ~(u32) 0,
183 .rt6i_ref = ATOMIC_INIT(1),
184};
185
186#endif
187
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188/* allocate dst with ip6_dst_ops */
Benjamin Theryf2fc6a52008-03-04 13:49:23 -0800189static inline struct rt6_info *ip6_dst_alloc(struct dst_ops *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190{
Benjamin Theryf2fc6a52008-03-04 13:49:23 -0800191 return (struct rt6_info *)dst_alloc(ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192}
193
194static void ip6_dst_destroy(struct dst_entry *dst)
195{
196 struct rt6_info *rt = (struct rt6_info *)dst;
197 struct inet6_dev *idev = rt->rt6i_idev;
198
199 if (idev != NULL) {
200 rt->rt6i_idev = NULL;
201 in6_dev_put(idev);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900202 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203}
204
205static void ip6_dst_ifdown(struct dst_entry *dst, struct net_device *dev,
206 int how)
207{
208 struct rt6_info *rt = (struct rt6_info *)dst;
209 struct inet6_dev *idev = rt->rt6i_idev;
Denis V. Lunev5a3e55d2007-12-07 00:38:10 -0800210 struct net_device *loopback_dev =
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900211 dev_net(dev)->loopback_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212
Denis V. Lunev5a3e55d2007-12-07 00:38:10 -0800213 if (dev != loopback_dev && idev != NULL && idev->dev == dev) {
214 struct inet6_dev *loopback_idev =
215 in6_dev_get(loopback_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 if (loopback_idev != NULL) {
217 rt->rt6i_idev = loopback_idev;
218 in6_dev_put(idev);
219 }
220 }
221}
222
223static __inline__ int rt6_check_expired(const struct rt6_info *rt)
224{
225 return (rt->rt6i_flags & RTF_EXPIRES &&
226 time_after(jiffies, rt->rt6i_expires));
227}
228
Thomas Grafc71099a2006-08-04 23:20:06 -0700229static inline int rt6_need_strict(struct in6_addr *daddr)
230{
231 return (ipv6_addr_type(daddr) &
232 (IPV6_ADDR_MULTICAST | IPV6_ADDR_LINKLOCAL));
233}
234
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235/*
Thomas Grafc71099a2006-08-04 23:20:06 -0700236 * Route lookup. Any table->tb6_lock is implied.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 */
238
Daniel Lezcano8ed67782008-03-04 13:48:30 -0800239static inline struct rt6_info *rt6_device_match(struct net *net,
240 struct rt6_info *rt,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 int oif,
242 int strict)
243{
244 struct rt6_info *local = NULL;
245 struct rt6_info *sprt;
246
247 if (oif) {
Eric Dumazet7cc48262007-02-09 16:22:57 -0800248 for (sprt = rt; sprt; sprt = sprt->u.dst.rt6_next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 struct net_device *dev = sprt->rt6i_dev;
250 if (dev->ifindex == oif)
251 return sprt;
252 if (dev->flags & IFF_LOOPBACK) {
253 if (sprt->rt6i_idev == NULL ||
254 sprt->rt6i_idev->dev->ifindex != oif) {
255 if (strict && oif)
256 continue;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900257 if (local && (!oif ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 local->rt6i_idev->dev->ifindex == oif))
259 continue;
260 }
261 local = sprt;
262 }
263 }
264
265 if (local)
266 return local;
267
268 if (strict)
Daniel Lezcano8ed67782008-03-04 13:48:30 -0800269 return net->ipv6.ip6_null_entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 }
271 return rt;
272}
273
YOSHIFUJI Hideaki27097252006-03-20 17:05:13 -0800274#ifdef CONFIG_IPV6_ROUTER_PREF
275static void rt6_probe(struct rt6_info *rt)
276{
277 struct neighbour *neigh = rt ? rt->rt6i_nexthop : NULL;
278 /*
279 * Okay, this does not seem to be appropriate
280 * for now, however, we need to check if it
281 * is really so; aka Router Reachability Probing.
282 *
283 * Router Reachability Probe MUST be rate-limited
284 * to no more than one per minute.
285 */
286 if (!neigh || (neigh->nud_state & NUD_VALID))
287 return;
288 read_lock_bh(&neigh->lock);
289 if (!(neigh->nud_state & NUD_VALID) &&
YOSHIFUJI Hideaki52e16352006-03-20 17:05:47 -0800290 time_after(jiffies, neigh->updated + rt->rt6i_idev->cnf.rtr_probe_interval)) {
YOSHIFUJI Hideaki27097252006-03-20 17:05:13 -0800291 struct in6_addr mcaddr;
292 struct in6_addr *target;
293
294 neigh->updated = jiffies;
295 read_unlock_bh(&neigh->lock);
296
297 target = (struct in6_addr *)&neigh->primary_key;
298 addrconf_addr_solict_mult(target, &mcaddr);
299 ndisc_send_ns(rt->rt6i_dev, NULL, target, &mcaddr, NULL);
300 } else
301 read_unlock_bh(&neigh->lock);
302}
303#else
304static inline void rt6_probe(struct rt6_info *rt)
305{
306 return;
307}
308#endif
309
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310/*
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800311 * Default Router Selection (RFC 2461 6.3.6)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 */
Dave Jonesb6f99a22007-03-22 12:27:49 -0700313static inline int rt6_check_dev(struct rt6_info *rt, int oif)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314{
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800315 struct net_device *dev = rt->rt6i_dev;
David S. Miller161980f2007-04-06 11:42:27 -0700316 if (!oif || dev->ifindex == oif)
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800317 return 2;
David S. Miller161980f2007-04-06 11:42:27 -0700318 if ((dev->flags & IFF_LOOPBACK) &&
319 rt->rt6i_idev && rt->rt6i_idev->dev->ifindex == oif)
320 return 1;
321 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322}
323
Dave Jonesb6f99a22007-03-22 12:27:49 -0700324static inline int rt6_check_neigh(struct rt6_info *rt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325{
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800326 struct neighbour *neigh = rt->rt6i_nexthop;
YOSHIFUJI Hideaki398bcbe2008-01-19 00:35:16 -0800327 int m;
YOSHIFUJI Hideaki4d0c5912006-05-26 13:23:41 -0700328 if (rt->rt6i_flags & RTF_NONEXTHOP ||
329 !(rt->rt6i_flags & RTF_GATEWAY))
330 m = 1;
331 else if (neigh) {
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800332 read_lock_bh(&neigh->lock);
333 if (neigh->nud_state & NUD_VALID)
YOSHIFUJI Hideaki4d0c5912006-05-26 13:23:41 -0700334 m = 2;
YOSHIFUJI Hideaki398bcbe2008-01-19 00:35:16 -0800335#ifdef CONFIG_IPV6_ROUTER_PREF
336 else if (neigh->nud_state & NUD_FAILED)
337 m = 0;
338#endif
339 else
YOSHIFUJI Hideakiea73ee22006-11-06 09:45:44 -0800340 m = 1;
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800341 read_unlock_bh(&neigh->lock);
YOSHIFUJI Hideaki398bcbe2008-01-19 00:35:16 -0800342 } else
343 m = 0;
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800344 return m;
345}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800347static int rt6_score_route(struct rt6_info *rt, int oif,
348 int strict)
349{
YOSHIFUJI Hideaki4d0c5912006-05-26 13:23:41 -0700350 int m, n;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900351
YOSHIFUJI Hideaki4d0c5912006-05-26 13:23:41 -0700352 m = rt6_check_dev(rt, oif);
YOSHIFUJI Hideaki77d16f42006-08-23 17:25:05 -0700353 if (!m && (strict & RT6_LOOKUP_F_IFACE))
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800354 return -1;
YOSHIFUJI Hideakiebacaaa2006-03-20 17:04:53 -0800355#ifdef CONFIG_IPV6_ROUTER_PREF
356 m |= IPV6_DECODE_PREF(IPV6_EXTRACT_PREF(rt->rt6i_flags)) << 2;
357#endif
YOSHIFUJI Hideaki4d0c5912006-05-26 13:23:41 -0700358 n = rt6_check_neigh(rt);
YOSHIFUJI Hideaki557e92e2006-11-06 09:45:45 -0800359 if (!n && (strict & RT6_LOOKUP_F_REACHABLE))
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800360 return -1;
361 return m;
362}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363
David S. Millerf11e6652007-03-24 20:36:25 -0700364static struct rt6_info *find_match(struct rt6_info *rt, int oif, int strict,
365 int *mpri, struct rt6_info *match)
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800366{
David S. Millerf11e6652007-03-24 20:36:25 -0700367 int m;
368
369 if (rt6_check_expired(rt))
370 goto out;
371
372 m = rt6_score_route(rt, oif, strict);
373 if (m < 0)
374 goto out;
375
376 if (m > *mpri) {
377 if (strict & RT6_LOOKUP_F_REACHABLE)
378 rt6_probe(match);
379 *mpri = m;
380 match = rt;
381 } else if (strict & RT6_LOOKUP_F_REACHABLE) {
382 rt6_probe(rt);
383 }
384
385out:
386 return match;
387}
388
389static struct rt6_info *find_rr_leaf(struct fib6_node *fn,
390 struct rt6_info *rr_head,
391 u32 metric, int oif, int strict)
392{
393 struct rt6_info *rt, *match;
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800394 int mpri = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395
David S. Millerf11e6652007-03-24 20:36:25 -0700396 match = NULL;
397 for (rt = rr_head; rt && rt->rt6i_metric == metric;
398 rt = rt->u.dst.rt6_next)
399 match = find_match(rt, oif, strict, &mpri, match);
400 for (rt = fn->leaf; rt && rt != rr_head && rt->rt6i_metric == metric;
401 rt = rt->u.dst.rt6_next)
402 match = find_match(rt, oif, strict, &mpri, match);
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800403
David S. Millerf11e6652007-03-24 20:36:25 -0700404 return match;
405}
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800406
David S. Millerf11e6652007-03-24 20:36:25 -0700407static struct rt6_info *rt6_select(struct fib6_node *fn, int oif, int strict)
408{
409 struct rt6_info *match, *rt0;
Daniel Lezcano8ed67782008-03-04 13:48:30 -0800410 struct net *net;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411
David S. Millerf11e6652007-03-24 20:36:25 -0700412 RT6_TRACE("%s(fn->leaf=%p, oif=%d)\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -0800413 __func__, fn->leaf, oif);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414
David S. Millerf11e6652007-03-24 20:36:25 -0700415 rt0 = fn->rr_ptr;
416 if (!rt0)
417 fn->rr_ptr = rt0 = fn->leaf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418
David S. Millerf11e6652007-03-24 20:36:25 -0700419 match = find_rr_leaf(fn, rt0, rt0->rt6i_metric, oif, strict);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800421 if (!match &&
David S. Millerf11e6652007-03-24 20:36:25 -0700422 (strict & RT6_LOOKUP_F_REACHABLE)) {
423 struct rt6_info *next = rt0->u.dst.rt6_next;
424
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800425 /* no entries matched; do round-robin */
David S. Millerf11e6652007-03-24 20:36:25 -0700426 if (!next || next->rt6i_metric != rt0->rt6i_metric)
427 next = fn->leaf;
428
429 if (next != rt0)
430 fn->rr_ptr = next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 }
432
David S. Millerf11e6652007-03-24 20:36:25 -0700433 RT6_TRACE("%s() => %p\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -0800434 __func__, match);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900436 net = dev_net(rt0->rt6i_dev);
Daniel Lezcano8ed67782008-03-04 13:48:30 -0800437 return (match ? match : net->ipv6.ip6_null_entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438}
439
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800440#ifdef CONFIG_IPV6_ROUTE_INFO
441int rt6_route_rcv(struct net_device *dev, u8 *opt, int len,
442 struct in6_addr *gwaddr)
443{
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900444 struct net *net = dev_net(dev);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800445 struct route_info *rinfo = (struct route_info *) opt;
446 struct in6_addr prefix_buf, *prefix;
447 unsigned int pref;
448 u32 lifetime;
449 struct rt6_info *rt;
450
451 if (len < sizeof(struct route_info)) {
452 return -EINVAL;
453 }
454
455 /* Sanity check for prefix_len and length */
456 if (rinfo->length > 3) {
457 return -EINVAL;
458 } else if (rinfo->prefix_len > 128) {
459 return -EINVAL;
460 } else if (rinfo->prefix_len > 64) {
461 if (rinfo->length < 2) {
462 return -EINVAL;
463 }
464 } else if (rinfo->prefix_len > 0) {
465 if (rinfo->length < 1) {
466 return -EINVAL;
467 }
468 }
469
470 pref = rinfo->route_pref;
471 if (pref == ICMPV6_ROUTER_PREF_INVALID)
472 pref = ICMPV6_ROUTER_PREF_MEDIUM;
473
Al Viroe69a4adc2006-11-14 20:56:00 -0800474 lifetime = ntohl(rinfo->lifetime);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800475 if (lifetime == 0xffffffff) {
476 /* infinity */
477 } else if (lifetime > 0x7fffffff/HZ) {
478 /* Avoid arithmetic overflow */
479 lifetime = 0x7fffffff/HZ - 1;
480 }
481
482 if (rinfo->length == 3)
483 prefix = (struct in6_addr *)rinfo->prefix;
484 else {
485 /* this function is safe */
486 ipv6_addr_prefix(&prefix_buf,
487 (struct in6_addr *)rinfo->prefix,
488 rinfo->prefix_len);
489 prefix = &prefix_buf;
490 }
491
Daniel Lezcanoefa2cea2008-03-04 13:46:48 -0800492 rt = rt6_get_route_info(net, prefix, rinfo->prefix_len, gwaddr,
493 dev->ifindex);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800494
495 if (rt && !lifetime) {
Thomas Grafe0a1ad732006-08-22 00:00:21 -0700496 ip6_del_rt(rt);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800497 rt = NULL;
498 }
499
500 if (!rt && lifetime)
Daniel Lezcanoefa2cea2008-03-04 13:46:48 -0800501 rt = rt6_add_route_info(net, prefix, rinfo->prefix_len, gwaddr, dev->ifindex,
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800502 pref);
503 else if (rt)
504 rt->rt6i_flags = RTF_ROUTEINFO |
505 (rt->rt6i_flags & ~RTF_PREF_MASK) | RTF_PREF(pref);
506
507 if (rt) {
508 if (lifetime == 0xffffffff) {
509 rt->rt6i_flags &= ~RTF_EXPIRES;
510 } else {
511 rt->rt6i_expires = jiffies + HZ * lifetime;
512 rt->rt6i_flags |= RTF_EXPIRES;
513 }
514 dst_release(&rt->u.dst);
515 }
516 return 0;
517}
518#endif
519
Daniel Lezcano8ed67782008-03-04 13:48:30 -0800520#define BACKTRACK(__net, saddr) \
YOSHIFUJI Hideaki982f56f2006-08-23 17:22:39 -0700521do { \
Daniel Lezcano8ed67782008-03-04 13:48:30 -0800522 if (rt == __net->ipv6.ip6_null_entry) { \
YOSHIFUJI Hideaki982f56f2006-08-23 17:22:39 -0700523 struct fib6_node *pn; \
Ville Nuorvalae0eda7b2006-10-16 22:11:11 -0700524 while (1) { \
YOSHIFUJI Hideaki982f56f2006-08-23 17:22:39 -0700525 if (fn->fn_flags & RTN_TL_ROOT) \
526 goto out; \
527 pn = fn->parent; \
528 if (FIB6_SUBTREE(pn) && FIB6_SUBTREE(pn) != fn) \
Kim Nordlund8bce65b2006-12-13 16:38:29 -0800529 fn = fib6_lookup(FIB6_SUBTREE(pn), NULL, saddr); \
YOSHIFUJI Hideaki982f56f2006-08-23 17:22:39 -0700530 else \
531 fn = pn; \
532 if (fn->fn_flags & RTN_RTINFO) \
533 goto restart; \
Thomas Grafc71099a2006-08-04 23:20:06 -0700534 } \
Thomas Grafc71099a2006-08-04 23:20:06 -0700535 } \
YOSHIFUJI Hideaki982f56f2006-08-23 17:22:39 -0700536} while(0)
Thomas Grafc71099a2006-08-04 23:20:06 -0700537
Daniel Lezcano8ed67782008-03-04 13:48:30 -0800538static struct rt6_info *ip6_pol_route_lookup(struct net *net,
539 struct fib6_table *table,
Thomas Grafc71099a2006-08-04 23:20:06 -0700540 struct flowi *fl, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541{
542 struct fib6_node *fn;
543 struct rt6_info *rt;
544
Thomas Grafc71099a2006-08-04 23:20:06 -0700545 read_lock_bh(&table->tb6_lock);
546 fn = fib6_lookup(&table->tb6_root, &fl->fl6_dst, &fl->fl6_src);
547restart:
548 rt = fn->leaf;
Daniel Lezcano8ed67782008-03-04 13:48:30 -0800549 rt = rt6_device_match(net, rt, fl->oif, flags);
550 BACKTRACK(net, &fl->fl6_src);
Thomas Grafc71099a2006-08-04 23:20:06 -0700551out:
Pavel Emelyanov03f49f32007-11-10 21:28:34 -0800552 dst_use(&rt->u.dst, jiffies);
Thomas Grafc71099a2006-08-04 23:20:06 -0700553 read_unlock_bh(&table->tb6_lock);
Thomas Grafc71099a2006-08-04 23:20:06 -0700554 return rt;
555
556}
557
Daniel Lezcano606a2b42008-03-04 13:45:59 -0800558struct rt6_info *rt6_lookup(struct net *net, struct in6_addr *daddr,
559 struct in6_addr *saddr, int oif, int strict)
Thomas Grafc71099a2006-08-04 23:20:06 -0700560{
561 struct flowi fl = {
562 .oif = oif,
563 .nl_u = {
564 .ip6_u = {
565 .daddr = *daddr,
Thomas Grafc71099a2006-08-04 23:20:06 -0700566 },
567 },
568 };
569 struct dst_entry *dst;
YOSHIFUJI Hideaki77d16f42006-08-23 17:25:05 -0700570 int flags = strict ? RT6_LOOKUP_F_IFACE : 0;
Thomas Grafc71099a2006-08-04 23:20:06 -0700571
Thomas Grafadaa70b2006-10-13 15:01:03 -0700572 if (saddr) {
573 memcpy(&fl.fl6_src, saddr, sizeof(*saddr));
574 flags |= RT6_LOOKUP_F_HAS_SADDR;
575 }
576
Daniel Lezcano606a2b42008-03-04 13:45:59 -0800577 dst = fib6_rule_lookup(net, &fl, flags, ip6_pol_route_lookup);
Thomas Grafc71099a2006-08-04 23:20:06 -0700578 if (dst->error == 0)
579 return (struct rt6_info *) dst;
580
581 dst_release(dst);
582
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 return NULL;
584}
585
YOSHIFUJI Hideaki71590392007-02-22 22:05:40 +0900586EXPORT_SYMBOL(rt6_lookup);
587
Thomas Grafc71099a2006-08-04 23:20:06 -0700588/* ip6_ins_rt is called with FREE table->tb6_lock.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 It takes new route entry, the addition fails by any reason the
590 route is freed. In any case, if caller does not hold it, it may
591 be destroyed.
592 */
593
Thomas Graf86872cb2006-08-22 00:01:08 -0700594static int __ip6_ins_rt(struct rt6_info *rt, struct nl_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595{
596 int err;
Thomas Grafc71099a2006-08-04 23:20:06 -0700597 struct fib6_table *table;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598
Thomas Grafc71099a2006-08-04 23:20:06 -0700599 table = rt->rt6i_table;
600 write_lock_bh(&table->tb6_lock);
Thomas Graf86872cb2006-08-22 00:01:08 -0700601 err = fib6_add(&table->tb6_root, rt, info);
Thomas Grafc71099a2006-08-04 23:20:06 -0700602 write_unlock_bh(&table->tb6_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603
604 return err;
605}
606
Thomas Graf40e22e82006-08-22 00:00:45 -0700607int ip6_ins_rt(struct rt6_info *rt)
608{
Denis V. Lunev4d1169c2008-01-10 03:26:13 -0800609 struct nl_info info = {
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900610 .nl_net = dev_net(rt->rt6i_dev),
Denis V. Lunev4d1169c2008-01-10 03:26:13 -0800611 };
Denis V. Lunev528c4ce2007-12-13 09:45:12 -0800612 return __ip6_ins_rt(rt, &info);
Thomas Graf40e22e82006-08-22 00:00:45 -0700613}
614
YOSHIFUJI Hideaki95a9a5b2006-03-20 16:55:51 -0800615static struct rt6_info *rt6_alloc_cow(struct rt6_info *ort, struct in6_addr *daddr,
616 struct in6_addr *saddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 struct rt6_info *rt;
619
620 /*
621 * Clone the route.
622 */
623
624 rt = ip6_rt_copy(ort);
625
626 if (rt) {
YOSHIFUJI Hideaki58c4fb82005-12-21 22:56:42 +0900627 if (!(rt->rt6i_flags&RTF_GATEWAY)) {
628 if (rt->rt6i_dst.plen != 128 &&
629 ipv6_addr_equal(&rt->rt6i_dst.addr, daddr))
630 rt->rt6i_flags |= RTF_ANYCAST;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 ipv6_addr_copy(&rt->rt6i_gateway, daddr);
YOSHIFUJI Hideaki58c4fb82005-12-21 22:56:42 +0900632 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633
YOSHIFUJI Hideaki58c4fb82005-12-21 22:56:42 +0900634 ipv6_addr_copy(&rt->rt6i_dst.addr, daddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 rt->rt6i_dst.plen = 128;
636 rt->rt6i_flags |= RTF_CACHE;
637 rt->u.dst.flags |= DST_HOST;
638
639#ifdef CONFIG_IPV6_SUBTREES
640 if (rt->rt6i_src.plen && saddr) {
641 ipv6_addr_copy(&rt->rt6i_src.addr, saddr);
642 rt->rt6i_src.plen = 128;
643 }
644#endif
645
646 rt->rt6i_nexthop = ndisc_get_neigh(rt->rt6i_dev, &rt->rt6i_gateway);
647
YOSHIFUJI Hideaki95a9a5b2006-03-20 16:55:51 -0800648 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649
YOSHIFUJI Hideaki95a9a5b2006-03-20 16:55:51 -0800650 return rt;
651}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652
YOSHIFUJI Hideaki299d9932006-03-20 16:58:32 -0800653static struct rt6_info *rt6_alloc_clone(struct rt6_info *ort, struct in6_addr *daddr)
654{
655 struct rt6_info *rt = ip6_rt_copy(ort);
656 if (rt) {
657 ipv6_addr_copy(&rt->rt6i_dst.addr, daddr);
658 rt->rt6i_dst.plen = 128;
659 rt->rt6i_flags |= RTF_CACHE;
YOSHIFUJI Hideaki299d9932006-03-20 16:58:32 -0800660 rt->u.dst.flags |= DST_HOST;
661 rt->rt6i_nexthop = neigh_clone(ort->rt6i_nexthop);
662 }
663 return rt;
664}
665
Daniel Lezcano8ed67782008-03-04 13:48:30 -0800666static struct rt6_info *ip6_pol_route(struct net *net, struct fib6_table *table, int oif,
667 struct flowi *fl, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668{
669 struct fib6_node *fn;
YOSHIFUJI Hideaki519fbd82006-03-20 17:00:05 -0800670 struct rt6_info *rt, *nrt;
Thomas Grafc71099a2006-08-04 23:20:06 -0700671 int strict = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 int attempts = 3;
YOSHIFUJI Hideaki519fbd82006-03-20 17:00:05 -0800673 int err;
YOSHIFUJI Hideakiea659e02006-11-06 09:45:45 -0800674 int reachable = ipv6_devconf.forwarding ? 0 : RT6_LOOKUP_F_REACHABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675
YOSHIFUJI Hideaki77d16f42006-08-23 17:25:05 -0700676 strict |= flags & RT6_LOOKUP_F_IFACE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677
678relookup:
Thomas Grafc71099a2006-08-04 23:20:06 -0700679 read_lock_bh(&table->tb6_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680
YOSHIFUJI Hideaki8238dd02006-03-20 17:04:35 -0800681restart_2:
Thomas Grafc71099a2006-08-04 23:20:06 -0700682 fn = fib6_lookup(&table->tb6_root, &fl->fl6_dst, &fl->fl6_src);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683
684restart:
Pavel Emelyanov4acad722007-10-15 13:02:51 -0700685 rt = rt6_select(fn, oif, strict | reachable);
Daniel Lezcano8ed67782008-03-04 13:48:30 -0800686
687 BACKTRACK(net, &fl->fl6_src);
688 if (rt == net->ipv6.ip6_null_entry ||
YOSHIFUJI Hideaki8238dd02006-03-20 17:04:35 -0800689 rt->rt6i_flags & RTF_CACHE)
YOSHIFUJI Hideaki1ddef0442006-03-20 17:01:24 -0800690 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691
YOSHIFUJI Hideakifb9de912006-03-20 16:59:08 -0800692 dst_hold(&rt->u.dst);
Thomas Grafc71099a2006-08-04 23:20:06 -0700693 read_unlock_bh(&table->tb6_lock);
YOSHIFUJI Hideakifb9de912006-03-20 16:59:08 -0800694
YOSHIFUJI Hideaki519fbd82006-03-20 17:00:05 -0800695 if (!rt->rt6i_nexthop && !(rt->rt6i_flags & RTF_NONEXTHOP))
YOSHIFUJI Hideakie40cf352006-03-20 16:59:27 -0800696 nrt = rt6_alloc_cow(rt, &fl->fl6_dst, &fl->fl6_src);
YOSHIFUJI Hideaki519fbd82006-03-20 17:00:05 -0800697 else {
698#if CLONE_OFFLINK_ROUTE
699 nrt = rt6_alloc_clone(rt, &fl->fl6_dst);
700#else
701 goto out2;
702#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 }
YOSHIFUJI Hideakie40cf352006-03-20 16:59:27 -0800704
YOSHIFUJI Hideaki519fbd82006-03-20 17:00:05 -0800705 dst_release(&rt->u.dst);
Daniel Lezcano8ed67782008-03-04 13:48:30 -0800706 rt = nrt ? : net->ipv6.ip6_null_entry;
YOSHIFUJI Hideaki519fbd82006-03-20 17:00:05 -0800707
708 dst_hold(&rt->u.dst);
709 if (nrt) {
Thomas Graf40e22e82006-08-22 00:00:45 -0700710 err = ip6_ins_rt(nrt);
YOSHIFUJI Hideaki519fbd82006-03-20 17:00:05 -0800711 if (!err)
712 goto out2;
713 }
714
715 if (--attempts <= 0)
716 goto out2;
717
718 /*
Thomas Grafc71099a2006-08-04 23:20:06 -0700719 * Race condition! In the gap, when table->tb6_lock was
YOSHIFUJI Hideaki519fbd82006-03-20 17:00:05 -0800720 * released someone could insert this route. Relookup.
721 */
722 dst_release(&rt->u.dst);
723 goto relookup;
724
725out:
YOSHIFUJI Hideaki8238dd02006-03-20 17:04:35 -0800726 if (reachable) {
727 reachable = 0;
728 goto restart_2;
729 }
YOSHIFUJI Hideaki519fbd82006-03-20 17:00:05 -0800730 dst_hold(&rt->u.dst);
Thomas Grafc71099a2006-08-04 23:20:06 -0700731 read_unlock_bh(&table->tb6_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732out2:
733 rt->u.dst.lastuse = jiffies;
734 rt->u.dst.__use++;
Thomas Grafc71099a2006-08-04 23:20:06 -0700735
736 return rt;
737}
738
Daniel Lezcano8ed67782008-03-04 13:48:30 -0800739static struct rt6_info *ip6_pol_route_input(struct net *net, struct fib6_table *table,
Pavel Emelyanov4acad722007-10-15 13:02:51 -0700740 struct flowi *fl, int flags)
741{
Daniel Lezcano8ed67782008-03-04 13:48:30 -0800742 return ip6_pol_route(net, table, fl->iif, fl, flags);
Pavel Emelyanov4acad722007-10-15 13:02:51 -0700743}
744
Thomas Grafc71099a2006-08-04 23:20:06 -0700745void ip6_route_input(struct sk_buff *skb)
746{
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700747 struct ipv6hdr *iph = ipv6_hdr(skb);
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900748 struct net *net = dev_net(skb->dev);
Thomas Grafadaa70b2006-10-13 15:01:03 -0700749 int flags = RT6_LOOKUP_F_HAS_SADDR;
Thomas Grafc71099a2006-08-04 23:20:06 -0700750 struct flowi fl = {
751 .iif = skb->dev->ifindex,
752 .nl_u = {
753 .ip6_u = {
754 .daddr = iph->daddr,
755 .saddr = iph->saddr,
Al Viro90bcaf72006-11-08 00:25:17 -0800756 .flowlabel = (* (__be32 *) iph)&IPV6_FLOWINFO_MASK,
Thomas Grafc71099a2006-08-04 23:20:06 -0700757 },
758 },
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900759 .mark = skb->mark,
Thomas Grafc71099a2006-08-04 23:20:06 -0700760 .proto = iph->nexthdr,
761 };
Thomas Grafadaa70b2006-10-13 15:01:03 -0700762
763 if (rt6_need_strict(&iph->daddr))
764 flags |= RT6_LOOKUP_F_IFACE;
Thomas Grafc71099a2006-08-04 23:20:06 -0700765
Daniel Lezcano55786892008-03-04 13:47:47 -0800766 skb->dst = fib6_rule_lookup(net, &fl, flags, ip6_pol_route_input);
Thomas Grafc71099a2006-08-04 23:20:06 -0700767}
768
Daniel Lezcano8ed67782008-03-04 13:48:30 -0800769static struct rt6_info *ip6_pol_route_output(struct net *net, struct fib6_table *table,
Thomas Grafc71099a2006-08-04 23:20:06 -0700770 struct flowi *fl, int flags)
771{
Daniel Lezcano8ed67782008-03-04 13:48:30 -0800772 return ip6_pol_route(net, table, fl->oif, fl, flags);
Thomas Grafc71099a2006-08-04 23:20:06 -0700773}
774
Daniel Lezcano4591db42008-03-05 10:48:10 -0800775struct dst_entry * ip6_route_output(struct net *net, struct sock *sk,
776 struct flowi *fl)
Thomas Grafc71099a2006-08-04 23:20:06 -0700777{
778 int flags = 0;
779
780 if (rt6_need_strict(&fl->fl6_dst))
YOSHIFUJI Hideaki77d16f42006-08-23 17:25:05 -0700781 flags |= RT6_LOOKUP_F_IFACE;
Thomas Grafc71099a2006-08-04 23:20:06 -0700782
Thomas Grafadaa70b2006-10-13 15:01:03 -0700783 if (!ipv6_addr_any(&fl->fl6_src))
784 flags |= RT6_LOOKUP_F_HAS_SADDR;
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +0900785 else if (sk) {
786 unsigned int prefs = inet6_sk(sk)->srcprefs;
787 if (prefs & IPV6_PREFER_SRC_TMP)
788 flags |= RT6_LOOKUP_F_SRCPREF_TMP;
789 if (prefs & IPV6_PREFER_SRC_PUBLIC)
790 flags |= RT6_LOOKUP_F_SRCPREF_PUBLIC;
791 if (prefs & IPV6_PREFER_SRC_COA)
792 flags |= RT6_LOOKUP_F_SRCPREF_COA;
793 }
Thomas Grafadaa70b2006-10-13 15:01:03 -0700794
Daniel Lezcano4591db42008-03-05 10:48:10 -0800795 return fib6_rule_lookup(net, fl, flags, ip6_pol_route_output);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796}
797
YOSHIFUJI Hideaki71590392007-02-22 22:05:40 +0900798EXPORT_SYMBOL(ip6_route_output);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799
David S. Miller14e50e52007-05-24 18:17:54 -0700800int ip6_dst_blackhole(struct sock *sk, struct dst_entry **dstp, struct flowi *fl)
801{
802 struct rt6_info *ort = (struct rt6_info *) *dstp;
803 struct rt6_info *rt = (struct rt6_info *)
804 dst_alloc(&ip6_dst_blackhole_ops);
805 struct dst_entry *new = NULL;
806
807 if (rt) {
808 new = &rt->u.dst;
809
810 atomic_set(&new->__refcnt, 1);
811 new->__use = 1;
Herbert Xu352e5122007-11-13 21:34:06 -0800812 new->input = dst_discard;
813 new->output = dst_discard;
David S. Miller14e50e52007-05-24 18:17:54 -0700814
815 memcpy(new->metrics, ort->u.dst.metrics, RTAX_MAX*sizeof(u32));
816 new->dev = ort->u.dst.dev;
817 if (new->dev)
818 dev_hold(new->dev);
819 rt->rt6i_idev = ort->rt6i_idev;
820 if (rt->rt6i_idev)
821 in6_dev_hold(rt->rt6i_idev);
822 rt->rt6i_expires = 0;
823
824 ipv6_addr_copy(&rt->rt6i_gateway, &ort->rt6i_gateway);
825 rt->rt6i_flags = ort->rt6i_flags & ~RTF_EXPIRES;
826 rt->rt6i_metric = 0;
827
828 memcpy(&rt->rt6i_dst, &ort->rt6i_dst, sizeof(struct rt6key));
829#ifdef CONFIG_IPV6_SUBTREES
830 memcpy(&rt->rt6i_src, &ort->rt6i_src, sizeof(struct rt6key));
831#endif
832
833 dst_free(new);
834 }
835
836 dst_release(*dstp);
837 *dstp = new;
838 return (new ? 0 : -ENOMEM);
839}
840EXPORT_SYMBOL_GPL(ip6_dst_blackhole);
841
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842/*
843 * Destination cache support functions
844 */
845
846static struct dst_entry *ip6_dst_check(struct dst_entry *dst, u32 cookie)
847{
848 struct rt6_info *rt;
849
850 rt = (struct rt6_info *) dst;
851
852 if (rt && rt->rt6i_node && (rt->rt6i_node->fn_sernum == cookie))
853 return dst;
854
855 return NULL;
856}
857
858static struct dst_entry *ip6_negative_advice(struct dst_entry *dst)
859{
860 struct rt6_info *rt = (struct rt6_info *) dst;
861
862 if (rt) {
863 if (rt->rt6i_flags & RTF_CACHE)
Thomas Grafe0a1ad732006-08-22 00:00:21 -0700864 ip6_del_rt(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865 else
866 dst_release(dst);
867 }
868 return NULL;
869}
870
871static void ip6_link_failure(struct sk_buff *skb)
872{
873 struct rt6_info *rt;
874
875 icmpv6_send(skb, ICMPV6_DEST_UNREACH, ICMPV6_ADDR_UNREACH, 0, skb->dev);
876
877 rt = (struct rt6_info *) skb->dst;
878 if (rt) {
879 if (rt->rt6i_flags&RTF_CACHE) {
880 dst_set_expires(&rt->u.dst, 0);
881 rt->rt6i_flags |= RTF_EXPIRES;
882 } else if (rt->rt6i_node && (rt->rt6i_flags & RTF_DEFAULT))
883 rt->rt6i_node->fn_sernum = -1;
884 }
885}
886
887static void ip6_rt_update_pmtu(struct dst_entry *dst, u32 mtu)
888{
889 struct rt6_info *rt6 = (struct rt6_info*)dst;
890
891 if (mtu < dst_mtu(dst) && rt6->rt6i_dst.plen == 128) {
892 rt6->rt6i_flags |= RTF_MODIFIED;
893 if (mtu < IPV6_MIN_MTU) {
894 mtu = IPV6_MIN_MTU;
895 dst->metrics[RTAX_FEATURES-1] |= RTAX_FEATURE_ALLFRAG;
896 }
897 dst->metrics[RTAX_MTU-1] = mtu;
Tom Tucker8d717402006-07-30 20:43:36 -0700898 call_netevent_notifiers(NETEVENT_PMTU_UPDATE, dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899 }
900}
901
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902static int ipv6_get_mtu(struct net_device *dev);
903
Daniel Lezcano55786892008-03-04 13:47:47 -0800904static inline unsigned int ipv6_advmss(struct net *net, unsigned int mtu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905{
906 mtu -= sizeof(struct ipv6hdr) + sizeof(struct tcphdr);
907
Daniel Lezcano55786892008-03-04 13:47:47 -0800908 if (mtu < net->ipv6.sysctl.ip6_rt_min_advmss)
909 mtu = net->ipv6.sysctl.ip6_rt_min_advmss;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910
911 /*
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900912 * Maximal non-jumbo IPv6 payload is IPV6_MAXPLEN and
913 * corresponding MSS is IPV6_MAXPLEN - tcp_header_size.
914 * IPV6_MAXPLEN is also valid and means: "any MSS,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915 * rely only on pmtu discovery"
916 */
917 if (mtu > IPV6_MAXPLEN - sizeof(struct tcphdr))
918 mtu = IPV6_MAXPLEN;
919 return mtu;
920}
921
YOSHIFUJI Hideaki3b009442007-12-06 16:11:48 -0800922static struct dst_entry *icmp6_dst_gc_list;
923static DEFINE_SPINLOCK(icmp6_dst_lock);
Thomas Graf5d0bbee2006-08-04 03:37:36 -0700924
YOSHIFUJI Hideaki3b009442007-12-06 16:11:48 -0800925struct dst_entry *icmp6_dst_alloc(struct net_device *dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926 struct neighbour *neigh,
YOSHIFUJI Hideaki3b009442007-12-06 16:11:48 -0800927 struct in6_addr *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928{
929 struct rt6_info *rt;
930 struct inet6_dev *idev = in6_dev_get(dev);
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900931 struct net *net = dev_net(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932
933 if (unlikely(idev == NULL))
934 return NULL;
935
Benjamin Theryf2fc6a52008-03-04 13:49:23 -0800936 rt = ip6_dst_alloc(net->ipv6.ip6_dst_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937 if (unlikely(rt == NULL)) {
938 in6_dev_put(idev);
939 goto out;
940 }
941
942 dev_hold(dev);
943 if (neigh)
944 neigh_hold(neigh);
945 else
946 neigh = ndisc_get_neigh(dev, addr);
947
948 rt->rt6i_dev = dev;
949 rt->rt6i_idev = idev;
950 rt->rt6i_nexthop = neigh;
951 atomic_set(&rt->u.dst.__refcnt, 1);
952 rt->u.dst.metrics[RTAX_HOPLIMIT-1] = 255;
953 rt->u.dst.metrics[RTAX_MTU-1] = ipv6_get_mtu(rt->rt6i_dev);
Daniel Lezcano55786892008-03-04 13:47:47 -0800954 rt->u.dst.metrics[RTAX_ADVMSS-1] = ipv6_advmss(net, dst_mtu(&rt->u.dst));
YOSHIFUJI Hideaki3b009442007-12-06 16:11:48 -0800955 rt->u.dst.output = ip6_output;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956
957#if 0 /* there's no chance to use these for ndisc */
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900958 rt->u.dst.flags = ipv6_addr_type(addr) & IPV6_ADDR_UNICAST
959 ? DST_HOST
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960 : 0;
961 ipv6_addr_copy(&rt->rt6i_dst.addr, addr);
962 rt->rt6i_dst.plen = 128;
963#endif
964
YOSHIFUJI Hideaki3b009442007-12-06 16:11:48 -0800965 spin_lock_bh(&icmp6_dst_lock);
966 rt->u.dst.next = icmp6_dst_gc_list;
967 icmp6_dst_gc_list = &rt->u.dst;
968 spin_unlock_bh(&icmp6_dst_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969
Daniel Lezcano55786892008-03-04 13:47:47 -0800970 fib6_force_start_gc(net);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971
972out:
YOSHIFUJI Hideaki40aa7b92006-10-19 13:50:09 +0900973 return &rt->u.dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974}
975
YOSHIFUJI Hideaki3b009442007-12-06 16:11:48 -0800976int icmp6_dst_gc(int *more)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977{
978 struct dst_entry *dst, *next, **pprev;
979 int freed;
980
981 next = NULL;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900982 freed = 0;
Thomas Graf5d0bbee2006-08-04 03:37:36 -0700983
YOSHIFUJI Hideaki3b009442007-12-06 16:11:48 -0800984 spin_lock_bh(&icmp6_dst_lock);
985 pprev = &icmp6_dst_gc_list;
Thomas Graf5d0bbee2006-08-04 03:37:36 -0700986
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 while ((dst = *pprev) != NULL) {
988 if (!atomic_read(&dst->__refcnt)) {
989 *pprev = dst->next;
990 dst_free(dst);
991 freed++;
992 } else {
993 pprev = &dst->next;
994 (*more)++;
995 }
996 }
997
YOSHIFUJI Hideaki3b009442007-12-06 16:11:48 -0800998 spin_unlock_bh(&icmp6_dst_lock);
Thomas Graf5d0bbee2006-08-04 03:37:36 -0700999
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000 return freed;
1001}
1002
Daniel Lezcano569d3642008-01-18 03:56:57 -08001003static int ip6_dst_gc(struct dst_ops *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005 unsigned long now = jiffies;
Daniel Lezcano7019b782008-03-04 13:50:14 -08001006 struct net *net = ops->dst_net;
1007 int rt_min_interval = net->ipv6.sysctl.ip6_rt_gc_min_interval;
1008 int rt_max_size = net->ipv6.sysctl.ip6_rt_max_size;
1009 int rt_elasticity = net->ipv6.sysctl.ip6_rt_gc_elasticity;
1010 int rt_gc_timeout = net->ipv6.sysctl.ip6_rt_gc_timeout;
1011 unsigned long rt_last_gc = net->ipv6.ip6_rt_last_gc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012
Daniel Lezcano7019b782008-03-04 13:50:14 -08001013 if (time_after(rt_last_gc + rt_min_interval, now) &&
1014 atomic_read(&ops->entries) <= rt_max_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 goto out;
1016
Benjamin Thery6891a342008-03-04 13:49:47 -08001017 net->ipv6.ip6_rt_gc_expire++;
1018 fib6_run_gc(net->ipv6.ip6_rt_gc_expire, net);
1019 net->ipv6.ip6_rt_last_gc = now;
Daniel Lezcano7019b782008-03-04 13:50:14 -08001020 if (atomic_read(&ops->entries) < ops->gc_thresh)
1021 net->ipv6.ip6_rt_gc_expire = rt_gc_timeout>>1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022out:
Daniel Lezcano7019b782008-03-04 13:50:14 -08001023 net->ipv6.ip6_rt_gc_expire -= net->ipv6.ip6_rt_gc_expire>>rt_elasticity;
1024 return (atomic_read(&ops->entries) > rt_max_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025}
1026
1027/* Clean host part of a prefix. Not necessary in radix tree,
1028 but results in cleaner routing tables.
1029
1030 Remove it only when all the things will work!
1031 */
1032
1033static int ipv6_get_mtu(struct net_device *dev)
1034{
1035 int mtu = IPV6_MIN_MTU;
1036 struct inet6_dev *idev;
1037
1038 idev = in6_dev_get(dev);
1039 if (idev) {
1040 mtu = idev->cnf.mtu6;
1041 in6_dev_put(idev);
1042 }
1043 return mtu;
1044}
1045
YOSHIFUJI Hideaki6b75d092008-03-10 06:00:30 -04001046int ip6_dst_hoplimit(struct dst_entry *dst)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047{
YOSHIFUJI Hideaki6b75d092008-03-10 06:00:30 -04001048 int hoplimit = dst_metric(dst, RTAX_HOPLIMIT);
1049 if (hoplimit < 0) {
1050 struct net_device *dev = dst->dev;
1051 struct inet6_dev *idev = in6_dev_get(dev);
1052 if (idev) {
1053 hoplimit = idev->cnf.hop_limit;
1054 in6_dev_put(idev);
1055 } else
1056 hoplimit = ipv6_devconf.hop_limit;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 }
1058 return hoplimit;
1059}
1060
1061/*
1062 *
1063 */
1064
Thomas Graf86872cb2006-08-22 00:01:08 -07001065int ip6_route_add(struct fib6_config *cfg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066{
1067 int err;
Daniel Lezcano55786892008-03-04 13:47:47 -08001068 struct net *net = cfg->fc_nlinfo.nl_net;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069 struct rt6_info *rt = NULL;
1070 struct net_device *dev = NULL;
1071 struct inet6_dev *idev = NULL;
Thomas Grafc71099a2006-08-04 23:20:06 -07001072 struct fib6_table *table;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073 int addr_type;
1074
Thomas Graf86872cb2006-08-22 00:01:08 -07001075 if (cfg->fc_dst_len > 128 || cfg->fc_src_len > 128)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 return -EINVAL;
1077#ifndef CONFIG_IPV6_SUBTREES
Thomas Graf86872cb2006-08-22 00:01:08 -07001078 if (cfg->fc_src_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079 return -EINVAL;
1080#endif
Thomas Graf86872cb2006-08-22 00:01:08 -07001081 if (cfg->fc_ifindex) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082 err = -ENODEV;
Daniel Lezcano55786892008-03-04 13:47:47 -08001083 dev = dev_get_by_index(net, cfg->fc_ifindex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084 if (!dev)
1085 goto out;
1086 idev = in6_dev_get(dev);
1087 if (!idev)
1088 goto out;
1089 }
1090
Thomas Graf86872cb2006-08-22 00:01:08 -07001091 if (cfg->fc_metric == 0)
1092 cfg->fc_metric = IP6_RT_PRIO_USER;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093
Daniel Lezcano55786892008-03-04 13:47:47 -08001094 table = fib6_new_table(net, cfg->fc_table);
Thomas Grafc71099a2006-08-04 23:20:06 -07001095 if (table == NULL) {
1096 err = -ENOBUFS;
1097 goto out;
1098 }
1099
Benjamin Theryf2fc6a52008-03-04 13:49:23 -08001100 rt = ip6_dst_alloc(net->ipv6.ip6_dst_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101
1102 if (rt == NULL) {
1103 err = -ENOMEM;
1104 goto out;
1105 }
1106
1107 rt->u.dst.obsolete = -1;
Thomas Graf86872cb2006-08-22 00:01:08 -07001108 rt->rt6i_expires = jiffies + clock_t_to_jiffies(cfg->fc_expires);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109
Thomas Graf86872cb2006-08-22 00:01:08 -07001110 if (cfg->fc_protocol == RTPROT_UNSPEC)
1111 cfg->fc_protocol = RTPROT_BOOT;
1112 rt->rt6i_protocol = cfg->fc_protocol;
1113
1114 addr_type = ipv6_addr_type(&cfg->fc_dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115
1116 if (addr_type & IPV6_ADDR_MULTICAST)
1117 rt->u.dst.input = ip6_mc_input;
1118 else
1119 rt->u.dst.input = ip6_forward;
1120
1121 rt->u.dst.output = ip6_output;
1122
Thomas Graf86872cb2006-08-22 00:01:08 -07001123 ipv6_addr_prefix(&rt->rt6i_dst.addr, &cfg->fc_dst, cfg->fc_dst_len);
1124 rt->rt6i_dst.plen = cfg->fc_dst_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125 if (rt->rt6i_dst.plen == 128)
1126 rt->u.dst.flags = DST_HOST;
1127
1128#ifdef CONFIG_IPV6_SUBTREES
Thomas Graf86872cb2006-08-22 00:01:08 -07001129 ipv6_addr_prefix(&rt->rt6i_src.addr, &cfg->fc_src, cfg->fc_src_len);
1130 rt->rt6i_src.plen = cfg->fc_src_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131#endif
1132
Thomas Graf86872cb2006-08-22 00:01:08 -07001133 rt->rt6i_metric = cfg->fc_metric;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134
1135 /* We cannot add true routes via loopback here,
1136 they would result in kernel looping; promote them to reject routes
1137 */
Thomas Graf86872cb2006-08-22 00:01:08 -07001138 if ((cfg->fc_flags & RTF_REJECT) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139 (dev && (dev->flags&IFF_LOOPBACK) && !(addr_type&IPV6_ADDR_LOOPBACK))) {
1140 /* hold loopback dev/idev if we haven't done so. */
Daniel Lezcano55786892008-03-04 13:47:47 -08001141 if (dev != net->loopback_dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142 if (dev) {
1143 dev_put(dev);
1144 in6_dev_put(idev);
1145 }
Daniel Lezcano55786892008-03-04 13:47:47 -08001146 dev = net->loopback_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147 dev_hold(dev);
1148 idev = in6_dev_get(dev);
1149 if (!idev) {
1150 err = -ENODEV;
1151 goto out;
1152 }
1153 }
1154 rt->u.dst.output = ip6_pkt_discard_out;
1155 rt->u.dst.input = ip6_pkt_discard;
1156 rt->u.dst.error = -ENETUNREACH;
1157 rt->rt6i_flags = RTF_REJECT|RTF_NONEXTHOP;
1158 goto install_route;
1159 }
1160
Thomas Graf86872cb2006-08-22 00:01:08 -07001161 if (cfg->fc_flags & RTF_GATEWAY) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162 struct in6_addr *gw_addr;
1163 int gwa_type;
1164
Thomas Graf86872cb2006-08-22 00:01:08 -07001165 gw_addr = &cfg->fc_gateway;
1166 ipv6_addr_copy(&rt->rt6i_gateway, gw_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167 gwa_type = ipv6_addr_type(gw_addr);
1168
1169 if (gwa_type != (IPV6_ADDR_LINKLOCAL|IPV6_ADDR_UNICAST)) {
1170 struct rt6_info *grt;
1171
1172 /* IPv6 strictly inhibits using not link-local
1173 addresses as nexthop address.
1174 Otherwise, router will not able to send redirects.
1175 It is very good, but in some (rare!) circumstances
1176 (SIT, PtP, NBMA NOARP links) it is handy to allow
1177 some exceptions. --ANK
1178 */
1179 err = -EINVAL;
1180 if (!(gwa_type&IPV6_ADDR_UNICAST))
1181 goto out;
1182
Daniel Lezcano55786892008-03-04 13:47:47 -08001183 grt = rt6_lookup(net, gw_addr, NULL, cfg->fc_ifindex, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184
1185 err = -EHOSTUNREACH;
1186 if (grt == NULL)
1187 goto out;
1188 if (dev) {
1189 if (dev != grt->rt6i_dev) {
1190 dst_release(&grt->u.dst);
1191 goto out;
1192 }
1193 } else {
1194 dev = grt->rt6i_dev;
1195 idev = grt->rt6i_idev;
1196 dev_hold(dev);
1197 in6_dev_hold(grt->rt6i_idev);
1198 }
1199 if (!(grt->rt6i_flags&RTF_GATEWAY))
1200 err = 0;
1201 dst_release(&grt->u.dst);
1202
1203 if (err)
1204 goto out;
1205 }
1206 err = -EINVAL;
1207 if (dev == NULL || (dev->flags&IFF_LOOPBACK))
1208 goto out;
1209 }
1210
1211 err = -ENODEV;
1212 if (dev == NULL)
1213 goto out;
1214
Thomas Graf86872cb2006-08-22 00:01:08 -07001215 if (cfg->fc_flags & (RTF_GATEWAY | RTF_NONEXTHOP)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216 rt->rt6i_nexthop = __neigh_lookup_errno(&nd_tbl, &rt->rt6i_gateway, dev);
1217 if (IS_ERR(rt->rt6i_nexthop)) {
1218 err = PTR_ERR(rt->rt6i_nexthop);
1219 rt->rt6i_nexthop = NULL;
1220 goto out;
1221 }
1222 }
1223
Thomas Graf86872cb2006-08-22 00:01:08 -07001224 rt->rt6i_flags = cfg->fc_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225
1226install_route:
Thomas Graf86872cb2006-08-22 00:01:08 -07001227 if (cfg->fc_mx) {
1228 struct nlattr *nla;
1229 int remaining;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230
Thomas Graf86872cb2006-08-22 00:01:08 -07001231 nla_for_each_attr(nla, cfg->fc_mx, cfg->fc_mx_len, remaining) {
Thomas Graf8f4c1f92007-09-12 14:44:36 +02001232 int type = nla_type(nla);
Thomas Graf86872cb2006-08-22 00:01:08 -07001233
1234 if (type) {
1235 if (type > RTAX_MAX) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236 err = -EINVAL;
1237 goto out;
1238 }
Thomas Graf86872cb2006-08-22 00:01:08 -07001239
1240 rt->u.dst.metrics[type - 1] = nla_get_u32(nla);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242 }
1243 }
1244
1245 if (rt->u.dst.metrics[RTAX_HOPLIMIT-1] == 0)
1246 rt->u.dst.metrics[RTAX_HOPLIMIT-1] = -1;
1247 if (!rt->u.dst.metrics[RTAX_MTU-1])
1248 rt->u.dst.metrics[RTAX_MTU-1] = ipv6_get_mtu(dev);
1249 if (!rt->u.dst.metrics[RTAX_ADVMSS-1])
Daniel Lezcano55786892008-03-04 13:47:47 -08001250 rt->u.dst.metrics[RTAX_ADVMSS-1] = ipv6_advmss(net, dst_mtu(&rt->u.dst));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251 rt->u.dst.dev = dev;
1252 rt->rt6i_idev = idev;
Thomas Grafc71099a2006-08-04 23:20:06 -07001253 rt->rt6i_table = table;
Daniel Lezcano63152fc2008-03-03 23:31:11 -08001254
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001255 cfg->fc_nlinfo.nl_net = dev_net(dev);
Daniel Lezcano63152fc2008-03-03 23:31:11 -08001256
Thomas Graf86872cb2006-08-22 00:01:08 -07001257 return __ip6_ins_rt(rt, &cfg->fc_nlinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258
1259out:
1260 if (dev)
1261 dev_put(dev);
1262 if (idev)
1263 in6_dev_put(idev);
1264 if (rt)
YOSHIFUJI Hideaki40aa7b92006-10-19 13:50:09 +09001265 dst_free(&rt->u.dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266 return err;
1267}
1268
Thomas Graf86872cb2006-08-22 00:01:08 -07001269static int __ip6_del_rt(struct rt6_info *rt, struct nl_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270{
1271 int err;
Thomas Grafc71099a2006-08-04 23:20:06 -07001272 struct fib6_table *table;
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001273 struct net *net = dev_net(rt->rt6i_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274
Daniel Lezcano8ed67782008-03-04 13:48:30 -08001275 if (rt == net->ipv6.ip6_null_entry)
Patrick McHardy6c813a72006-08-06 22:22:47 -07001276 return -ENOENT;
1277
Thomas Grafc71099a2006-08-04 23:20:06 -07001278 table = rt->rt6i_table;
1279 write_lock_bh(&table->tb6_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280
Thomas Graf86872cb2006-08-22 00:01:08 -07001281 err = fib6_del(rt, info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282 dst_release(&rt->u.dst);
1283
Thomas Grafc71099a2006-08-04 23:20:06 -07001284 write_unlock_bh(&table->tb6_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285
1286 return err;
1287}
1288
Thomas Grafe0a1ad732006-08-22 00:00:21 -07001289int ip6_del_rt(struct rt6_info *rt)
1290{
Denis V. Lunev4d1169c2008-01-10 03:26:13 -08001291 struct nl_info info = {
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001292 .nl_net = dev_net(rt->rt6i_dev),
Denis V. Lunev4d1169c2008-01-10 03:26:13 -08001293 };
Denis V. Lunev528c4ce2007-12-13 09:45:12 -08001294 return __ip6_del_rt(rt, &info);
Thomas Grafe0a1ad732006-08-22 00:00:21 -07001295}
1296
Thomas Graf86872cb2006-08-22 00:01:08 -07001297static int ip6_route_del(struct fib6_config *cfg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298{
Thomas Grafc71099a2006-08-04 23:20:06 -07001299 struct fib6_table *table;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300 struct fib6_node *fn;
1301 struct rt6_info *rt;
1302 int err = -ESRCH;
1303
Daniel Lezcano55786892008-03-04 13:47:47 -08001304 table = fib6_get_table(cfg->fc_nlinfo.nl_net, cfg->fc_table);
Thomas Grafc71099a2006-08-04 23:20:06 -07001305 if (table == NULL)
1306 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307
Thomas Grafc71099a2006-08-04 23:20:06 -07001308 read_lock_bh(&table->tb6_lock);
1309
1310 fn = fib6_locate(&table->tb6_root,
Thomas Graf86872cb2006-08-22 00:01:08 -07001311 &cfg->fc_dst, cfg->fc_dst_len,
1312 &cfg->fc_src, cfg->fc_src_len);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001313
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314 if (fn) {
Eric Dumazet7cc48262007-02-09 16:22:57 -08001315 for (rt = fn->leaf; rt; rt = rt->u.dst.rt6_next) {
Thomas Graf86872cb2006-08-22 00:01:08 -07001316 if (cfg->fc_ifindex &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317 (rt->rt6i_dev == NULL ||
Thomas Graf86872cb2006-08-22 00:01:08 -07001318 rt->rt6i_dev->ifindex != cfg->fc_ifindex))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319 continue;
Thomas Graf86872cb2006-08-22 00:01:08 -07001320 if (cfg->fc_flags & RTF_GATEWAY &&
1321 !ipv6_addr_equal(&cfg->fc_gateway, &rt->rt6i_gateway))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322 continue;
Thomas Graf86872cb2006-08-22 00:01:08 -07001323 if (cfg->fc_metric && cfg->fc_metric != rt->rt6i_metric)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324 continue;
1325 dst_hold(&rt->u.dst);
Thomas Grafc71099a2006-08-04 23:20:06 -07001326 read_unlock_bh(&table->tb6_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327
Thomas Graf86872cb2006-08-22 00:01:08 -07001328 return __ip6_del_rt(rt, &cfg->fc_nlinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329 }
1330 }
Thomas Grafc71099a2006-08-04 23:20:06 -07001331 read_unlock_bh(&table->tb6_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332
1333 return err;
1334}
1335
1336/*
1337 * Handle redirects
1338 */
YOSHIFUJI Hideakia6279452006-08-23 17:18:26 -07001339struct ip6rd_flowi {
1340 struct flowi fl;
1341 struct in6_addr gateway;
1342};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343
Daniel Lezcano8ed67782008-03-04 13:48:30 -08001344static struct rt6_info *__ip6_route_redirect(struct net *net,
1345 struct fib6_table *table,
YOSHIFUJI Hideakia6279452006-08-23 17:18:26 -07001346 struct flowi *fl,
1347 int flags)
1348{
1349 struct ip6rd_flowi *rdfl = (struct ip6rd_flowi *)fl;
1350 struct rt6_info *rt;
1351 struct fib6_node *fn;
Thomas Grafc71099a2006-08-04 23:20:06 -07001352
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353 /*
YOSHIFUJI Hideakie843b9e2006-03-20 17:07:49 -08001354 * Get the "current" route for this destination and
1355 * check if the redirect has come from approriate router.
1356 *
1357 * RFC 2461 specifies that redirects should only be
1358 * accepted if they come from the nexthop to the target.
1359 * Due to the way the routes are chosen, this notion
1360 * is a bit fuzzy and one might need to check all possible
1361 * routes.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363
Thomas Grafc71099a2006-08-04 23:20:06 -07001364 read_lock_bh(&table->tb6_lock);
YOSHIFUJI Hideakia6279452006-08-23 17:18:26 -07001365 fn = fib6_lookup(&table->tb6_root, &fl->fl6_dst, &fl->fl6_src);
YOSHIFUJI Hideakie843b9e2006-03-20 17:07:49 -08001366restart:
Eric Dumazet7cc48262007-02-09 16:22:57 -08001367 for (rt = fn->leaf; rt; rt = rt->u.dst.rt6_next) {
YOSHIFUJI Hideakie843b9e2006-03-20 17:07:49 -08001368 /*
1369 * Current route is on-link; redirect is always invalid.
1370 *
1371 * Seems, previous statement is not true. It could
1372 * be node, which looks for us as on-link (f.e. proxy ndisc)
1373 * But then router serving it might decide, that we should
1374 * know truth 8)8) --ANK (980726).
1375 */
1376 if (rt6_check_expired(rt))
1377 continue;
1378 if (!(rt->rt6i_flags & RTF_GATEWAY))
1379 continue;
YOSHIFUJI Hideakia6279452006-08-23 17:18:26 -07001380 if (fl->oif != rt->rt6i_dev->ifindex)
YOSHIFUJI Hideakie843b9e2006-03-20 17:07:49 -08001381 continue;
YOSHIFUJI Hideakia6279452006-08-23 17:18:26 -07001382 if (!ipv6_addr_equal(&rdfl->gateway, &rt->rt6i_gateway))
YOSHIFUJI Hideakie843b9e2006-03-20 17:07:49 -08001383 continue;
1384 break;
1385 }
YOSHIFUJI Hideakie843b9e2006-03-20 17:07:49 -08001386
YOSHIFUJI Hideakicb15d9c2006-08-23 17:23:11 -07001387 if (!rt)
Daniel Lezcano8ed67782008-03-04 13:48:30 -08001388 rt = net->ipv6.ip6_null_entry;
1389 BACKTRACK(net, &fl->fl6_src);
YOSHIFUJI Hideakicb15d9c2006-08-23 17:23:11 -07001390out:
YOSHIFUJI Hideakia6279452006-08-23 17:18:26 -07001391 dst_hold(&rt->u.dst);
1392
1393 read_unlock_bh(&table->tb6_lock);
1394
1395 return rt;
1396};
1397
1398static struct rt6_info *ip6_route_redirect(struct in6_addr *dest,
1399 struct in6_addr *src,
1400 struct in6_addr *gateway,
1401 struct net_device *dev)
1402{
Thomas Grafadaa70b2006-10-13 15:01:03 -07001403 int flags = RT6_LOOKUP_F_HAS_SADDR;
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001404 struct net *net = dev_net(dev);
YOSHIFUJI Hideakia6279452006-08-23 17:18:26 -07001405 struct ip6rd_flowi rdfl = {
1406 .fl = {
1407 .oif = dev->ifindex,
1408 .nl_u = {
1409 .ip6_u = {
1410 .daddr = *dest,
1411 .saddr = *src,
1412 },
1413 },
1414 },
1415 .gateway = *gateway,
1416 };
Thomas Grafadaa70b2006-10-13 15:01:03 -07001417
1418 if (rt6_need_strict(dest))
1419 flags |= RT6_LOOKUP_F_IFACE;
YOSHIFUJI Hideakia6279452006-08-23 17:18:26 -07001420
Daniel Lezcano55786892008-03-04 13:47:47 -08001421 return (struct rt6_info *)fib6_rule_lookup(net, (struct flowi *)&rdfl,
Daniel Lezcano58f09b72008-03-03 23:25:27 -08001422 flags, __ip6_route_redirect);
YOSHIFUJI Hideakia6279452006-08-23 17:18:26 -07001423}
1424
1425void rt6_redirect(struct in6_addr *dest, struct in6_addr *src,
1426 struct in6_addr *saddr,
1427 struct neighbour *neigh, u8 *lladdr, int on_link)
1428{
1429 struct rt6_info *rt, *nrt = NULL;
1430 struct netevent_redirect netevent;
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001431 struct net *net = dev_net(neigh->dev);
YOSHIFUJI Hideakia6279452006-08-23 17:18:26 -07001432
1433 rt = ip6_route_redirect(dest, src, saddr, neigh->dev);
1434
Daniel Lezcano8ed67782008-03-04 13:48:30 -08001435 if (rt == net->ipv6.ip6_null_entry) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436 if (net_ratelimit())
1437 printk(KERN_DEBUG "rt6_redirect: source isn't a valid nexthop "
1438 "for redirect target\n");
YOSHIFUJI Hideakia6279452006-08-23 17:18:26 -07001439 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440 }
1441
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442 /*
1443 * We have finally decided to accept it.
1444 */
1445
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001446 neigh_update(neigh, lladdr, NUD_STALE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447 NEIGH_UPDATE_F_WEAK_OVERRIDE|
1448 NEIGH_UPDATE_F_OVERRIDE|
1449 (on_link ? 0 : (NEIGH_UPDATE_F_OVERRIDE_ISROUTER|
1450 NEIGH_UPDATE_F_ISROUTER))
1451 );
1452
1453 /*
1454 * Redirect received -> path was valid.
1455 * Look, redirects are sent only in response to data packets,
1456 * so that this nexthop apparently is reachable. --ANK
1457 */
1458 dst_confirm(&rt->u.dst);
1459
1460 /* Duplicate redirect: silently ignore. */
1461 if (neigh == rt->u.dst.neighbour)
1462 goto out;
1463
1464 nrt = ip6_rt_copy(rt);
1465 if (nrt == NULL)
1466 goto out;
1467
1468 nrt->rt6i_flags = RTF_GATEWAY|RTF_UP|RTF_DYNAMIC|RTF_CACHE;
1469 if (on_link)
1470 nrt->rt6i_flags &= ~RTF_GATEWAY;
1471
1472 ipv6_addr_copy(&nrt->rt6i_dst.addr, dest);
1473 nrt->rt6i_dst.plen = 128;
1474 nrt->u.dst.flags |= DST_HOST;
1475
1476 ipv6_addr_copy(&nrt->rt6i_gateway, (struct in6_addr*)neigh->primary_key);
1477 nrt->rt6i_nexthop = neigh_clone(neigh);
1478 /* Reset pmtu, it may be better */
1479 nrt->u.dst.metrics[RTAX_MTU-1] = ipv6_get_mtu(neigh->dev);
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001480 nrt->u.dst.metrics[RTAX_ADVMSS-1] = ipv6_advmss(dev_net(neigh->dev),
Daniel Lezcano55786892008-03-04 13:47:47 -08001481 dst_mtu(&nrt->u.dst));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482
Thomas Graf40e22e82006-08-22 00:00:45 -07001483 if (ip6_ins_rt(nrt))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484 goto out;
1485
Tom Tucker8d717402006-07-30 20:43:36 -07001486 netevent.old = &rt->u.dst;
1487 netevent.new = &nrt->u.dst;
1488 call_netevent_notifiers(NETEVENT_REDIRECT, &netevent);
1489
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490 if (rt->rt6i_flags&RTF_CACHE) {
Thomas Grafe0a1ad732006-08-22 00:00:21 -07001491 ip6_del_rt(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492 return;
1493 }
1494
1495out:
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001496 dst_release(&rt->u.dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497 return;
1498}
1499
1500/*
1501 * Handle ICMP "packet too big" messages
1502 * i.e. Path MTU discovery
1503 */
1504
1505void rt6_pmtu_discovery(struct in6_addr *daddr, struct in6_addr *saddr,
1506 struct net_device *dev, u32 pmtu)
1507{
1508 struct rt6_info *rt, *nrt;
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001509 struct net *net = dev_net(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510 int allfrag = 0;
1511
Daniel Lezcano55786892008-03-04 13:47:47 -08001512 rt = rt6_lookup(net, daddr, saddr, dev->ifindex, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513 if (rt == NULL)
1514 return;
1515
1516 if (pmtu >= dst_mtu(&rt->u.dst))
1517 goto out;
1518
1519 if (pmtu < IPV6_MIN_MTU) {
1520 /*
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001521 * According to RFC2460, PMTU is set to the IPv6 Minimum Link
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522 * MTU (1280) and a fragment header should always be included
1523 * after a node receiving Too Big message reporting PMTU is
1524 * less than the IPv6 Minimum Link MTU.
1525 */
1526 pmtu = IPV6_MIN_MTU;
1527 allfrag = 1;
1528 }
1529
1530 /* New mtu received -> path was valid.
1531 They are sent only in response to data packets,
1532 so that this nexthop apparently is reachable. --ANK
1533 */
1534 dst_confirm(&rt->u.dst);
1535
1536 /* Host route. If it is static, it would be better
1537 not to override it, but add new one, so that
1538 when cache entry will expire old pmtu
1539 would return automatically.
1540 */
1541 if (rt->rt6i_flags & RTF_CACHE) {
1542 rt->u.dst.metrics[RTAX_MTU-1] = pmtu;
1543 if (allfrag)
1544 rt->u.dst.metrics[RTAX_FEATURES-1] |= RTAX_FEATURE_ALLFRAG;
Daniel Lezcano55786892008-03-04 13:47:47 -08001545 dst_set_expires(&rt->u.dst, net->ipv6.sysctl.ip6_rt_mtu_expires);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546 rt->rt6i_flags |= RTF_MODIFIED|RTF_EXPIRES;
1547 goto out;
1548 }
1549
1550 /* Network route.
1551 Two cases are possible:
1552 1. It is connected route. Action: COW
1553 2. It is gatewayed route or NONEXTHOP route. Action: clone it.
1554 */
YOSHIFUJI Hideakid5315b52006-03-20 16:58:48 -08001555 if (!rt->rt6i_nexthop && !(rt->rt6i_flags & RTF_NONEXTHOP))
YOSHIFUJI Hideakia1e78362006-03-20 16:56:32 -08001556 nrt = rt6_alloc_cow(rt, daddr, saddr);
YOSHIFUJI Hideakid5315b52006-03-20 16:58:48 -08001557 else
1558 nrt = rt6_alloc_clone(rt, daddr);
YOSHIFUJI Hideakia1e78362006-03-20 16:56:32 -08001559
YOSHIFUJI Hideakid5315b52006-03-20 16:58:48 -08001560 if (nrt) {
YOSHIFUJI Hideakia1e78362006-03-20 16:56:32 -08001561 nrt->u.dst.metrics[RTAX_MTU-1] = pmtu;
1562 if (allfrag)
1563 nrt->u.dst.metrics[RTAX_FEATURES-1] |= RTAX_FEATURE_ALLFRAG;
1564
1565 /* According to RFC 1981, detecting PMTU increase shouldn't be
1566 * happened within 5 mins, the recommended timer is 10 mins.
1567 * Here this route expiration time is set to ip6_rt_mtu_expires
1568 * which is 10 mins. After 10 mins the decreased pmtu is expired
1569 * and detecting PMTU increase will be automatically happened.
1570 */
Daniel Lezcano55786892008-03-04 13:47:47 -08001571 dst_set_expires(&nrt->u.dst, net->ipv6.sysctl.ip6_rt_mtu_expires);
YOSHIFUJI Hideakia1e78362006-03-20 16:56:32 -08001572 nrt->rt6i_flags |= RTF_DYNAMIC|RTF_EXPIRES;
1573
Thomas Graf40e22e82006-08-22 00:00:45 -07001574 ip6_ins_rt(nrt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576out:
1577 dst_release(&rt->u.dst);
1578}
1579
1580/*
1581 * Misc support functions
1582 */
1583
1584static struct rt6_info * ip6_rt_copy(struct rt6_info *ort)
1585{
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001586 struct net *net = dev_net(ort->rt6i_dev);
Benjamin Theryf2fc6a52008-03-04 13:49:23 -08001587 struct rt6_info *rt = ip6_dst_alloc(net->ipv6.ip6_dst_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588
1589 if (rt) {
1590 rt->u.dst.input = ort->u.dst.input;
1591 rt->u.dst.output = ort->u.dst.output;
1592
1593 memcpy(rt->u.dst.metrics, ort->u.dst.metrics, RTAX_MAX*sizeof(u32));
Ville Nuorvala22e1e4d2006-10-16 22:14:26 -07001594 rt->u.dst.error = ort->u.dst.error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595 rt->u.dst.dev = ort->u.dst.dev;
1596 if (rt->u.dst.dev)
1597 dev_hold(rt->u.dst.dev);
1598 rt->rt6i_idev = ort->rt6i_idev;
1599 if (rt->rt6i_idev)
1600 in6_dev_hold(rt->rt6i_idev);
1601 rt->u.dst.lastuse = jiffies;
1602 rt->rt6i_expires = 0;
1603
1604 ipv6_addr_copy(&rt->rt6i_gateway, &ort->rt6i_gateway);
1605 rt->rt6i_flags = ort->rt6i_flags & ~RTF_EXPIRES;
1606 rt->rt6i_metric = 0;
1607
1608 memcpy(&rt->rt6i_dst, &ort->rt6i_dst, sizeof(struct rt6key));
1609#ifdef CONFIG_IPV6_SUBTREES
1610 memcpy(&rt->rt6i_src, &ort->rt6i_src, sizeof(struct rt6key));
1611#endif
Thomas Grafc71099a2006-08-04 23:20:06 -07001612 rt->rt6i_table = ort->rt6i_table;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613 }
1614 return rt;
1615}
1616
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08001617#ifdef CONFIG_IPV6_ROUTE_INFO
Daniel Lezcanoefa2cea2008-03-04 13:46:48 -08001618static struct rt6_info *rt6_get_route_info(struct net *net,
1619 struct in6_addr *prefix, int prefixlen,
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08001620 struct in6_addr *gwaddr, int ifindex)
1621{
1622 struct fib6_node *fn;
1623 struct rt6_info *rt = NULL;
Thomas Grafc71099a2006-08-04 23:20:06 -07001624 struct fib6_table *table;
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08001625
Daniel Lezcanoefa2cea2008-03-04 13:46:48 -08001626 table = fib6_get_table(net, RT6_TABLE_INFO);
Thomas Grafc71099a2006-08-04 23:20:06 -07001627 if (table == NULL)
1628 return NULL;
1629
1630 write_lock_bh(&table->tb6_lock);
1631 fn = fib6_locate(&table->tb6_root, prefix ,prefixlen, NULL, 0);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08001632 if (!fn)
1633 goto out;
1634
Eric Dumazet7cc48262007-02-09 16:22:57 -08001635 for (rt = fn->leaf; rt; rt = rt->u.dst.rt6_next) {
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08001636 if (rt->rt6i_dev->ifindex != ifindex)
1637 continue;
1638 if ((rt->rt6i_flags & (RTF_ROUTEINFO|RTF_GATEWAY)) != (RTF_ROUTEINFO|RTF_GATEWAY))
1639 continue;
1640 if (!ipv6_addr_equal(&rt->rt6i_gateway, gwaddr))
1641 continue;
1642 dst_hold(&rt->u.dst);
1643 break;
1644 }
1645out:
Thomas Grafc71099a2006-08-04 23:20:06 -07001646 write_unlock_bh(&table->tb6_lock);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08001647 return rt;
1648}
1649
Daniel Lezcanoefa2cea2008-03-04 13:46:48 -08001650static struct rt6_info *rt6_add_route_info(struct net *net,
1651 struct in6_addr *prefix, int prefixlen,
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08001652 struct in6_addr *gwaddr, int ifindex,
1653 unsigned pref)
1654{
Thomas Graf86872cb2006-08-22 00:01:08 -07001655 struct fib6_config cfg = {
1656 .fc_table = RT6_TABLE_INFO,
Rami Rosen238fc7e2008-02-09 23:43:11 -08001657 .fc_metric = IP6_RT_PRIO_USER,
Thomas Graf86872cb2006-08-22 00:01:08 -07001658 .fc_ifindex = ifindex,
1659 .fc_dst_len = prefixlen,
1660 .fc_flags = RTF_GATEWAY | RTF_ADDRCONF | RTF_ROUTEINFO |
1661 RTF_UP | RTF_PREF(pref),
Daniel Lezcanoefa2cea2008-03-04 13:46:48 -08001662 .fc_nlinfo.pid = 0,
1663 .fc_nlinfo.nlh = NULL,
1664 .fc_nlinfo.nl_net = net,
Thomas Graf86872cb2006-08-22 00:01:08 -07001665 };
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08001666
Thomas Graf86872cb2006-08-22 00:01:08 -07001667 ipv6_addr_copy(&cfg.fc_dst, prefix);
1668 ipv6_addr_copy(&cfg.fc_gateway, gwaddr);
1669
YOSHIFUJI Hideakie317da92006-03-20 17:06:42 -08001670 /* We should treat it as a default route if prefix length is 0. */
1671 if (!prefixlen)
Thomas Graf86872cb2006-08-22 00:01:08 -07001672 cfg.fc_flags |= RTF_DEFAULT;
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08001673
Thomas Graf86872cb2006-08-22 00:01:08 -07001674 ip6_route_add(&cfg);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08001675
Daniel Lezcanoefa2cea2008-03-04 13:46:48 -08001676 return rt6_get_route_info(net, prefix, prefixlen, gwaddr, ifindex);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08001677}
1678#endif
1679
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680struct rt6_info *rt6_get_dflt_router(struct in6_addr *addr, struct net_device *dev)
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001681{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001682 struct rt6_info *rt;
Thomas Grafc71099a2006-08-04 23:20:06 -07001683 struct fib6_table *table;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001685 table = fib6_get_table(dev_net(dev), RT6_TABLE_DFLT);
Thomas Grafc71099a2006-08-04 23:20:06 -07001686 if (table == NULL)
1687 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688
Thomas Grafc71099a2006-08-04 23:20:06 -07001689 write_lock_bh(&table->tb6_lock);
Eric Dumazet7cc48262007-02-09 16:22:57 -08001690 for (rt = table->tb6_root.leaf; rt; rt=rt->u.dst.rt6_next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691 if (dev == rt->rt6i_dev &&
YOSHIFUJI Hideaki045927f2006-03-20 17:00:48 -08001692 ((rt->rt6i_flags & (RTF_ADDRCONF | RTF_DEFAULT)) == (RTF_ADDRCONF | RTF_DEFAULT)) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693 ipv6_addr_equal(&rt->rt6i_gateway, addr))
1694 break;
1695 }
1696 if (rt)
1697 dst_hold(&rt->u.dst);
Thomas Grafc71099a2006-08-04 23:20:06 -07001698 write_unlock_bh(&table->tb6_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699 return rt;
1700}
1701
Fred L. Templinc7dc89c2007-11-29 22:11:40 +11001702EXPORT_SYMBOL(rt6_get_dflt_router);
1703
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704struct rt6_info *rt6_add_dflt_router(struct in6_addr *gwaddr,
YOSHIFUJI Hideakiebacaaa2006-03-20 17:04:53 -08001705 struct net_device *dev,
1706 unsigned int pref)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707{
Thomas Graf86872cb2006-08-22 00:01:08 -07001708 struct fib6_config cfg = {
1709 .fc_table = RT6_TABLE_DFLT,
Rami Rosen238fc7e2008-02-09 23:43:11 -08001710 .fc_metric = IP6_RT_PRIO_USER,
Thomas Graf86872cb2006-08-22 00:01:08 -07001711 .fc_ifindex = dev->ifindex,
1712 .fc_flags = RTF_GATEWAY | RTF_ADDRCONF | RTF_DEFAULT |
1713 RTF_UP | RTF_EXPIRES | RTF_PREF(pref),
Daniel Lezcano55786892008-03-04 13:47:47 -08001714 .fc_nlinfo.pid = 0,
1715 .fc_nlinfo.nlh = NULL,
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001716 .fc_nlinfo.nl_net = dev_net(dev),
Thomas Graf86872cb2006-08-22 00:01:08 -07001717 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718
Thomas Graf86872cb2006-08-22 00:01:08 -07001719 ipv6_addr_copy(&cfg.fc_gateway, gwaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720
Thomas Graf86872cb2006-08-22 00:01:08 -07001721 ip6_route_add(&cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723 return rt6_get_dflt_router(gwaddr, dev);
1724}
1725
Daniel Lezcano7b4da532008-03-04 13:47:14 -08001726void rt6_purge_dflt_routers(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727{
1728 struct rt6_info *rt;
Thomas Grafc71099a2006-08-04 23:20:06 -07001729 struct fib6_table *table;
1730
1731 /* NOTE: Keep consistent with rt6_get_dflt_router */
Daniel Lezcano7b4da532008-03-04 13:47:14 -08001732 table = fib6_get_table(net, RT6_TABLE_DFLT);
Thomas Grafc71099a2006-08-04 23:20:06 -07001733 if (table == NULL)
1734 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735
1736restart:
Thomas Grafc71099a2006-08-04 23:20:06 -07001737 read_lock_bh(&table->tb6_lock);
Eric Dumazet7cc48262007-02-09 16:22:57 -08001738 for (rt = table->tb6_root.leaf; rt; rt = rt->u.dst.rt6_next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739 if (rt->rt6i_flags & (RTF_DEFAULT | RTF_ADDRCONF)) {
1740 dst_hold(&rt->u.dst);
Thomas Grafc71099a2006-08-04 23:20:06 -07001741 read_unlock_bh(&table->tb6_lock);
Thomas Grafe0a1ad732006-08-22 00:00:21 -07001742 ip6_del_rt(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743 goto restart;
1744 }
1745 }
Thomas Grafc71099a2006-08-04 23:20:06 -07001746 read_unlock_bh(&table->tb6_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747}
1748
Daniel Lezcano55786892008-03-04 13:47:47 -08001749static void rtmsg_to_fib6_config(struct net *net,
1750 struct in6_rtmsg *rtmsg,
Thomas Graf86872cb2006-08-22 00:01:08 -07001751 struct fib6_config *cfg)
1752{
1753 memset(cfg, 0, sizeof(*cfg));
1754
1755 cfg->fc_table = RT6_TABLE_MAIN;
1756 cfg->fc_ifindex = rtmsg->rtmsg_ifindex;
1757 cfg->fc_metric = rtmsg->rtmsg_metric;
1758 cfg->fc_expires = rtmsg->rtmsg_info;
1759 cfg->fc_dst_len = rtmsg->rtmsg_dst_len;
1760 cfg->fc_src_len = rtmsg->rtmsg_src_len;
1761 cfg->fc_flags = rtmsg->rtmsg_flags;
1762
Daniel Lezcano55786892008-03-04 13:47:47 -08001763 cfg->fc_nlinfo.nl_net = net;
Benjamin Theryf1243c22008-02-26 18:10:03 -08001764
Thomas Graf86872cb2006-08-22 00:01:08 -07001765 ipv6_addr_copy(&cfg->fc_dst, &rtmsg->rtmsg_dst);
1766 ipv6_addr_copy(&cfg->fc_src, &rtmsg->rtmsg_src);
1767 ipv6_addr_copy(&cfg->fc_gateway, &rtmsg->rtmsg_gateway);
1768}
1769
Daniel Lezcano55786892008-03-04 13:47:47 -08001770int ipv6_route_ioctl(struct net *net, unsigned int cmd, void __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771{
Thomas Graf86872cb2006-08-22 00:01:08 -07001772 struct fib6_config cfg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001773 struct in6_rtmsg rtmsg;
1774 int err;
1775
1776 switch(cmd) {
1777 case SIOCADDRT: /* Add a route */
1778 case SIOCDELRT: /* Delete a route */
1779 if (!capable(CAP_NET_ADMIN))
1780 return -EPERM;
1781 err = copy_from_user(&rtmsg, arg,
1782 sizeof(struct in6_rtmsg));
1783 if (err)
1784 return -EFAULT;
Thomas Graf86872cb2006-08-22 00:01:08 -07001785
Daniel Lezcano55786892008-03-04 13:47:47 -08001786 rtmsg_to_fib6_config(net, &rtmsg, &cfg);
Thomas Graf86872cb2006-08-22 00:01:08 -07001787
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788 rtnl_lock();
1789 switch (cmd) {
1790 case SIOCADDRT:
Thomas Graf86872cb2006-08-22 00:01:08 -07001791 err = ip6_route_add(&cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001792 break;
1793 case SIOCDELRT:
Thomas Graf86872cb2006-08-22 00:01:08 -07001794 err = ip6_route_del(&cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795 break;
1796 default:
1797 err = -EINVAL;
1798 }
1799 rtnl_unlock();
1800
1801 return err;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001802 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001803
1804 return -EINVAL;
1805}
1806
1807/*
1808 * Drop the packet on the floor
1809 */
1810
Ilpo Järvinen50eb4312008-01-12 03:21:00 -08001811static int ip6_pkt_drop(struct sk_buff *skb, int code, int ipstats_mib_noroutes)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812{
YOSHIFUJI Hideaki612f09e2007-04-13 16:18:02 -07001813 int type;
1814 switch (ipstats_mib_noroutes) {
1815 case IPSTATS_MIB_INNOROUTES:
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -07001816 type = ipv6_addr_type(&ipv6_hdr(skb)->daddr);
YOSHIFUJI Hideaki612f09e2007-04-13 16:18:02 -07001817 if (type == IPV6_ADDR_ANY || type == IPV6_ADDR_RESERVED) {
1818 IP6_INC_STATS(ip6_dst_idev(skb->dst), IPSTATS_MIB_INADDRERRORS);
1819 break;
1820 }
1821 /* FALLTHROUGH */
1822 case IPSTATS_MIB_OUTNOROUTES:
1823 IP6_INC_STATS(ip6_dst_idev(skb->dst), ipstats_mib_noroutes);
1824 break;
1825 }
Thomas Graf9ce8ade2006-10-18 20:46:54 -07001826 icmpv6_send(skb, ICMPV6_DEST_UNREACH, code, 0, skb->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827 kfree_skb(skb);
1828 return 0;
1829}
1830
Thomas Graf9ce8ade2006-10-18 20:46:54 -07001831static int ip6_pkt_discard(struct sk_buff *skb)
1832{
YOSHIFUJI Hideaki612f09e2007-04-13 16:18:02 -07001833 return ip6_pkt_drop(skb, ICMPV6_NOROUTE, IPSTATS_MIB_INNOROUTES);
Thomas Graf9ce8ade2006-10-18 20:46:54 -07001834}
1835
Arnaldo Carvalho de Melo20380732005-08-16 02:18:02 -03001836static int ip6_pkt_discard_out(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837{
1838 skb->dev = skb->dst->dev;
YOSHIFUJI Hideaki612f09e2007-04-13 16:18:02 -07001839 return ip6_pkt_drop(skb, ICMPV6_NOROUTE, IPSTATS_MIB_OUTNOROUTES);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001840}
1841
David S. Miller6723ab52006-10-18 21:20:57 -07001842#ifdef CONFIG_IPV6_MULTIPLE_TABLES
1843
Thomas Graf9ce8ade2006-10-18 20:46:54 -07001844static int ip6_pkt_prohibit(struct sk_buff *skb)
1845{
YOSHIFUJI Hideaki612f09e2007-04-13 16:18:02 -07001846 return ip6_pkt_drop(skb, ICMPV6_ADM_PROHIBITED, IPSTATS_MIB_INNOROUTES);
Thomas Graf9ce8ade2006-10-18 20:46:54 -07001847}
1848
1849static int ip6_pkt_prohibit_out(struct sk_buff *skb)
1850{
1851 skb->dev = skb->dst->dev;
YOSHIFUJI Hideaki612f09e2007-04-13 16:18:02 -07001852 return ip6_pkt_drop(skb, ICMPV6_ADM_PROHIBITED, IPSTATS_MIB_OUTNOROUTES);
Thomas Graf9ce8ade2006-10-18 20:46:54 -07001853}
1854
David S. Miller6723ab52006-10-18 21:20:57 -07001855#endif
1856
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857/*
1858 * Allocate a dst for local (unicast / anycast) address.
1859 */
1860
1861struct rt6_info *addrconf_dst_alloc(struct inet6_dev *idev,
1862 const struct in6_addr *addr,
1863 int anycast)
1864{
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001865 struct net *net = dev_net(idev->dev);
Benjamin Theryf2fc6a52008-03-04 13:49:23 -08001866 struct rt6_info *rt = ip6_dst_alloc(net->ipv6.ip6_dst_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867
1868 if (rt == NULL)
1869 return ERR_PTR(-ENOMEM);
1870
Daniel Lezcano55786892008-03-04 13:47:47 -08001871 dev_hold(net->loopback_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872 in6_dev_hold(idev);
1873
1874 rt->u.dst.flags = DST_HOST;
1875 rt->u.dst.input = ip6_input;
1876 rt->u.dst.output = ip6_output;
Daniel Lezcano55786892008-03-04 13:47:47 -08001877 rt->rt6i_dev = net->loopback_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001878 rt->rt6i_idev = idev;
1879 rt->u.dst.metrics[RTAX_MTU-1] = ipv6_get_mtu(rt->rt6i_dev);
Daniel Lezcano55786892008-03-04 13:47:47 -08001880 rt->u.dst.metrics[RTAX_ADVMSS-1] = ipv6_advmss(net, dst_mtu(&rt->u.dst));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881 rt->u.dst.metrics[RTAX_HOPLIMIT-1] = -1;
1882 rt->u.dst.obsolete = -1;
1883
1884 rt->rt6i_flags = RTF_UP | RTF_NONEXTHOP;
YOSHIFUJI Hideaki58c4fb82005-12-21 22:56:42 +09001885 if (anycast)
1886 rt->rt6i_flags |= RTF_ANYCAST;
1887 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888 rt->rt6i_flags |= RTF_LOCAL;
1889 rt->rt6i_nexthop = ndisc_get_neigh(rt->rt6i_dev, &rt->rt6i_gateway);
1890 if (rt->rt6i_nexthop == NULL) {
YOSHIFUJI Hideaki40aa7b92006-10-19 13:50:09 +09001891 dst_free(&rt->u.dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892 return ERR_PTR(-ENOMEM);
1893 }
1894
1895 ipv6_addr_copy(&rt->rt6i_dst.addr, addr);
1896 rt->rt6i_dst.plen = 128;
Daniel Lezcano55786892008-03-04 13:47:47 -08001897 rt->rt6i_table = fib6_get_table(net, RT6_TABLE_LOCAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001898
1899 atomic_set(&rt->u.dst.__refcnt, 1);
1900
1901 return rt;
1902}
1903
Daniel Lezcano8ed67782008-03-04 13:48:30 -08001904struct arg_dev_net {
1905 struct net_device *dev;
1906 struct net *net;
1907};
1908
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909static int fib6_ifdown(struct rt6_info *rt, void *arg)
1910{
Daniel Lezcano8ed67782008-03-04 13:48:30 -08001911 struct net_device *dev = ((struct arg_dev_net *)arg)->dev;
1912 struct net *net = ((struct arg_dev_net *)arg)->net;
1913
1914 if (((void *)rt->rt6i_dev == dev || dev == NULL) &&
1915 rt != net->ipv6.ip6_null_entry) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001916 RT6_TRACE("deleted by ifdown %p\n", rt);
1917 return -1;
1918 }
1919 return 0;
1920}
1921
Daniel Lezcanof3db4852008-03-03 23:27:06 -08001922void rt6_ifdown(struct net *net, struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923{
Daniel Lezcano8ed67782008-03-04 13:48:30 -08001924 struct arg_dev_net adn = {
1925 .dev = dev,
1926 .net = net,
1927 };
1928
1929 fib6_clean_all(net, fib6_ifdown, 0, &adn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001930}
1931
1932struct rt6_mtu_change_arg
1933{
1934 struct net_device *dev;
1935 unsigned mtu;
1936};
1937
1938static int rt6_mtu_change_route(struct rt6_info *rt, void *p_arg)
1939{
1940 struct rt6_mtu_change_arg *arg = (struct rt6_mtu_change_arg *) p_arg;
1941 struct inet6_dev *idev;
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001942 struct net *net = dev_net(arg->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943
1944 /* In IPv6 pmtu discovery is not optional,
1945 so that RTAX_MTU lock cannot disable it.
1946 We still use this lock to block changes
1947 caused by addrconf/ndisc.
1948 */
1949
1950 idev = __in6_dev_get(arg->dev);
1951 if (idev == NULL)
1952 return 0;
1953
1954 /* For administrative MTU increase, there is no way to discover
1955 IPv6 PMTU increase, so PMTU increase should be updated here.
1956 Since RFC 1981 doesn't include administrative MTU increase
1957 update PMTU increase is a MUST. (i.e. jumbo frame)
1958 */
1959 /*
1960 If new MTU is less than route PMTU, this new MTU will be the
1961 lowest MTU in the path, update the route PMTU to reflect PMTU
1962 decreases; if new MTU is greater than route PMTU, and the
1963 old MTU is the lowest MTU in the path, update the route PMTU
1964 to reflect the increase. In this case if the other nodes' MTU
1965 also have the lowest MTU, TOO BIG MESSAGE will be lead to
1966 PMTU discouvery.
1967 */
1968 if (rt->rt6i_dev == arg->dev &&
1969 !dst_metric_locked(&rt->u.dst, RTAX_MTU) &&
Jim Paris23717792008-01-31 16:36:25 -08001970 (dst_mtu(&rt->u.dst) >= arg->mtu ||
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001971 (dst_mtu(&rt->u.dst) < arg->mtu &&
Simon Arlott566cfd82007-07-26 00:09:55 -07001972 dst_mtu(&rt->u.dst) == idev->cnf.mtu6))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001973 rt->u.dst.metrics[RTAX_MTU-1] = arg->mtu;
Daniel Lezcano55786892008-03-04 13:47:47 -08001974 rt->u.dst.metrics[RTAX_ADVMSS-1] = ipv6_advmss(net, arg->mtu);
Simon Arlott566cfd82007-07-26 00:09:55 -07001975 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001976 return 0;
1977}
1978
1979void rt6_mtu_change(struct net_device *dev, unsigned mtu)
1980{
Thomas Grafc71099a2006-08-04 23:20:06 -07001981 struct rt6_mtu_change_arg arg = {
1982 .dev = dev,
1983 .mtu = mtu,
1984 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001985
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001986 fib6_clean_all(dev_net(dev), rt6_mtu_change_route, 0, &arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001987}
1988
Patrick McHardyef7c79e2007-06-05 12:38:30 -07001989static const struct nla_policy rtm_ipv6_policy[RTA_MAX+1] = {
Thomas Graf5176f912006-08-26 20:13:18 -07001990 [RTA_GATEWAY] = { .len = sizeof(struct in6_addr) },
Thomas Graf86872cb2006-08-22 00:01:08 -07001991 [RTA_OIF] = { .type = NLA_U32 },
Thomas Grafab364a62006-08-22 00:01:47 -07001992 [RTA_IIF] = { .type = NLA_U32 },
Thomas Graf86872cb2006-08-22 00:01:08 -07001993 [RTA_PRIORITY] = { .type = NLA_U32 },
1994 [RTA_METRICS] = { .type = NLA_NESTED },
1995};
1996
1997static int rtm_to_fib6_config(struct sk_buff *skb, struct nlmsghdr *nlh,
1998 struct fib6_config *cfg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001999{
Thomas Graf86872cb2006-08-22 00:01:08 -07002000 struct rtmsg *rtm;
2001 struct nlattr *tb[RTA_MAX+1];
2002 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003
Thomas Graf86872cb2006-08-22 00:01:08 -07002004 err = nlmsg_parse(nlh, sizeof(*rtm), tb, RTA_MAX, rtm_ipv6_policy);
2005 if (err < 0)
2006 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002007
Thomas Graf86872cb2006-08-22 00:01:08 -07002008 err = -EINVAL;
2009 rtm = nlmsg_data(nlh);
2010 memset(cfg, 0, sizeof(*cfg));
2011
2012 cfg->fc_table = rtm->rtm_table;
2013 cfg->fc_dst_len = rtm->rtm_dst_len;
2014 cfg->fc_src_len = rtm->rtm_src_len;
2015 cfg->fc_flags = RTF_UP;
2016 cfg->fc_protocol = rtm->rtm_protocol;
2017
2018 if (rtm->rtm_type == RTN_UNREACHABLE)
2019 cfg->fc_flags |= RTF_REJECT;
2020
2021 cfg->fc_nlinfo.pid = NETLINK_CB(skb).pid;
2022 cfg->fc_nlinfo.nlh = nlh;
Benjamin Thery2216b482008-01-30 19:09:35 -08002023 cfg->fc_nlinfo.nl_net = skb->sk->sk_net;
Thomas Graf86872cb2006-08-22 00:01:08 -07002024
2025 if (tb[RTA_GATEWAY]) {
2026 nla_memcpy(&cfg->fc_gateway, tb[RTA_GATEWAY], 16);
2027 cfg->fc_flags |= RTF_GATEWAY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028 }
Thomas Graf86872cb2006-08-22 00:01:08 -07002029
2030 if (tb[RTA_DST]) {
2031 int plen = (rtm->rtm_dst_len + 7) >> 3;
2032
2033 if (nla_len(tb[RTA_DST]) < plen)
2034 goto errout;
2035
2036 nla_memcpy(&cfg->fc_dst, tb[RTA_DST], plen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002037 }
Thomas Graf86872cb2006-08-22 00:01:08 -07002038
2039 if (tb[RTA_SRC]) {
2040 int plen = (rtm->rtm_src_len + 7) >> 3;
2041
2042 if (nla_len(tb[RTA_SRC]) < plen)
2043 goto errout;
2044
2045 nla_memcpy(&cfg->fc_src, tb[RTA_SRC], plen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002046 }
Thomas Graf86872cb2006-08-22 00:01:08 -07002047
2048 if (tb[RTA_OIF])
2049 cfg->fc_ifindex = nla_get_u32(tb[RTA_OIF]);
2050
2051 if (tb[RTA_PRIORITY])
2052 cfg->fc_metric = nla_get_u32(tb[RTA_PRIORITY]);
2053
2054 if (tb[RTA_METRICS]) {
2055 cfg->fc_mx = nla_data(tb[RTA_METRICS]);
2056 cfg->fc_mx_len = nla_len(tb[RTA_METRICS]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002057 }
Thomas Graf86872cb2006-08-22 00:01:08 -07002058
2059 if (tb[RTA_TABLE])
2060 cfg->fc_table = nla_get_u32(tb[RTA_TABLE]);
2061
2062 err = 0;
2063errout:
2064 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002065}
2066
Thomas Grafc127ea22007-03-22 11:58:32 -07002067static int inet6_rtm_delroute(struct sk_buff *skb, struct nlmsghdr* nlh, void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068{
Thomas Graf86872cb2006-08-22 00:01:08 -07002069 struct fib6_config cfg;
2070 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002071
Thomas Graf86872cb2006-08-22 00:01:08 -07002072 err = rtm_to_fib6_config(skb, nlh, &cfg);
2073 if (err < 0)
2074 return err;
2075
2076 return ip6_route_del(&cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002077}
2078
Thomas Grafc127ea22007-03-22 11:58:32 -07002079static int inet6_rtm_newroute(struct sk_buff *skb, struct nlmsghdr* nlh, void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002080{
Thomas Graf86872cb2006-08-22 00:01:08 -07002081 struct fib6_config cfg;
2082 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002083
Thomas Graf86872cb2006-08-22 00:01:08 -07002084 err = rtm_to_fib6_config(skb, nlh, &cfg);
2085 if (err < 0)
2086 return err;
2087
2088 return ip6_route_add(&cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002089}
2090
Thomas Graf339bf982006-11-10 14:10:15 -08002091static inline size_t rt6_nlmsg_size(void)
2092{
2093 return NLMSG_ALIGN(sizeof(struct rtmsg))
2094 + nla_total_size(16) /* RTA_SRC */
2095 + nla_total_size(16) /* RTA_DST */
2096 + nla_total_size(16) /* RTA_GATEWAY */
2097 + nla_total_size(16) /* RTA_PREFSRC */
2098 + nla_total_size(4) /* RTA_TABLE */
2099 + nla_total_size(4) /* RTA_IIF */
2100 + nla_total_size(4) /* RTA_OIF */
2101 + nla_total_size(4) /* RTA_PRIORITY */
Noriaki TAKAMIYA6a2b9ce2007-01-23 22:09:41 -08002102 + RTAX_MAX * nla_total_size(4) /* RTA_METRICS */
Thomas Graf339bf982006-11-10 14:10:15 -08002103 + nla_total_size(sizeof(struct rta_cacheinfo));
2104}
2105
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106static int rt6_fill_node(struct sk_buff *skb, struct rt6_info *rt,
Jamal Hadi Salim0d51aa82005-06-21 13:51:04 -07002107 struct in6_addr *dst, struct in6_addr *src,
2108 int iif, int type, u32 pid, u32 seq,
2109 int prefix, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002110{
2111 struct rtmsg *rtm;
Thomas Graf2d7202b2006-08-22 00:01:27 -07002112 struct nlmsghdr *nlh;
Thomas Grafe3703b32006-11-27 09:27:07 -08002113 long expires;
Patrick McHardy9e762a42006-08-10 23:09:48 -07002114 u32 table;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002115
2116 if (prefix) { /* user wants prefix routes only */
2117 if (!(rt->rt6i_flags & RTF_PREFIX_RT)) {
2118 /* success since this is not a prefix route */
2119 return 1;
2120 }
2121 }
2122
Thomas Graf2d7202b2006-08-22 00:01:27 -07002123 nlh = nlmsg_put(skb, pid, seq, type, sizeof(*rtm), flags);
2124 if (nlh == NULL)
Patrick McHardy26932562007-01-31 23:16:40 -08002125 return -EMSGSIZE;
Thomas Graf2d7202b2006-08-22 00:01:27 -07002126
2127 rtm = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128 rtm->rtm_family = AF_INET6;
2129 rtm->rtm_dst_len = rt->rt6i_dst.plen;
2130 rtm->rtm_src_len = rt->rt6i_src.plen;
2131 rtm->rtm_tos = 0;
Thomas Grafc71099a2006-08-04 23:20:06 -07002132 if (rt->rt6i_table)
Patrick McHardy9e762a42006-08-10 23:09:48 -07002133 table = rt->rt6i_table->tb6_id;
Thomas Grafc71099a2006-08-04 23:20:06 -07002134 else
Patrick McHardy9e762a42006-08-10 23:09:48 -07002135 table = RT6_TABLE_UNSPEC;
2136 rtm->rtm_table = table;
Thomas Graf2d7202b2006-08-22 00:01:27 -07002137 NLA_PUT_U32(skb, RTA_TABLE, table);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002138 if (rt->rt6i_flags&RTF_REJECT)
2139 rtm->rtm_type = RTN_UNREACHABLE;
2140 else if (rt->rt6i_dev && (rt->rt6i_dev->flags&IFF_LOOPBACK))
2141 rtm->rtm_type = RTN_LOCAL;
2142 else
2143 rtm->rtm_type = RTN_UNICAST;
2144 rtm->rtm_flags = 0;
2145 rtm->rtm_scope = RT_SCOPE_UNIVERSE;
2146 rtm->rtm_protocol = rt->rt6i_protocol;
2147 if (rt->rt6i_flags&RTF_DYNAMIC)
2148 rtm->rtm_protocol = RTPROT_REDIRECT;
2149 else if (rt->rt6i_flags & RTF_ADDRCONF)
2150 rtm->rtm_protocol = RTPROT_KERNEL;
2151 else if (rt->rt6i_flags&RTF_DEFAULT)
2152 rtm->rtm_protocol = RTPROT_RA;
2153
2154 if (rt->rt6i_flags&RTF_CACHE)
2155 rtm->rtm_flags |= RTM_F_CLONED;
2156
2157 if (dst) {
Thomas Graf2d7202b2006-08-22 00:01:27 -07002158 NLA_PUT(skb, RTA_DST, 16, dst);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002159 rtm->rtm_dst_len = 128;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002160 } else if (rtm->rtm_dst_len)
Thomas Graf2d7202b2006-08-22 00:01:27 -07002161 NLA_PUT(skb, RTA_DST, 16, &rt->rt6i_dst.addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002162#ifdef CONFIG_IPV6_SUBTREES
2163 if (src) {
Thomas Graf2d7202b2006-08-22 00:01:27 -07002164 NLA_PUT(skb, RTA_SRC, 16, src);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002165 rtm->rtm_src_len = 128;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002166 } else if (rtm->rtm_src_len)
Thomas Graf2d7202b2006-08-22 00:01:27 -07002167 NLA_PUT(skb, RTA_SRC, 16, &rt->rt6i_src.addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002168#endif
2169 if (iif)
Thomas Graf2d7202b2006-08-22 00:01:27 -07002170 NLA_PUT_U32(skb, RTA_IIF, iif);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002171 else if (dst) {
2172 struct in6_addr saddr_buf;
YOSHIFUJI Hideaki5e5f3f02008-03-03 21:44:34 +09002173 if (ipv6_dev_get_saddr(ip6_dst_idev(&rt->u.dst)->dev,
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +09002174 dst, 0, &saddr_buf) == 0)
Thomas Graf2d7202b2006-08-22 00:01:27 -07002175 NLA_PUT(skb, RTA_PREFSRC, 16, &saddr_buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002176 }
Thomas Graf2d7202b2006-08-22 00:01:27 -07002177
Linus Torvalds1da177e2005-04-16 15:20:36 -07002178 if (rtnetlink_put_metrics(skb, rt->u.dst.metrics) < 0)
Thomas Graf2d7202b2006-08-22 00:01:27 -07002179 goto nla_put_failure;
2180
Linus Torvalds1da177e2005-04-16 15:20:36 -07002181 if (rt->u.dst.neighbour)
Thomas Graf2d7202b2006-08-22 00:01:27 -07002182 NLA_PUT(skb, RTA_GATEWAY, 16, &rt->u.dst.neighbour->primary_key);
2183
Linus Torvalds1da177e2005-04-16 15:20:36 -07002184 if (rt->u.dst.dev)
Thomas Graf2d7202b2006-08-22 00:01:27 -07002185 NLA_PUT_U32(skb, RTA_OIF, rt->rt6i_dev->ifindex);
2186
2187 NLA_PUT_U32(skb, RTA_PRIORITY, rt->rt6i_metric);
Thomas Grafe3703b32006-11-27 09:27:07 -08002188
2189 expires = rt->rt6i_expires ? rt->rt6i_expires - jiffies : 0;
2190 if (rtnl_put_cacheinfo(skb, &rt->u.dst, 0, 0, 0,
2191 expires, rt->u.dst.error) < 0)
2192 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002193
Thomas Graf2d7202b2006-08-22 00:01:27 -07002194 return nlmsg_end(skb, nlh);
2195
2196nla_put_failure:
Patrick McHardy26932562007-01-31 23:16:40 -08002197 nlmsg_cancel(skb, nlh);
2198 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002199}
2200
Patrick McHardy1b43af52006-08-10 23:11:17 -07002201int rt6_dump_route(struct rt6_info *rt, void *p_arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002202{
2203 struct rt6_rtnl_dump_arg *arg = (struct rt6_rtnl_dump_arg *) p_arg;
2204 int prefix;
2205
Thomas Graf2d7202b2006-08-22 00:01:27 -07002206 if (nlmsg_len(arg->cb->nlh) >= sizeof(struct rtmsg)) {
2207 struct rtmsg *rtm = nlmsg_data(arg->cb->nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002208 prefix = (rtm->rtm_flags & RTM_F_PREFIX) != 0;
2209 } else
2210 prefix = 0;
2211
2212 return rt6_fill_node(arg->skb, rt, NULL, NULL, 0, RTM_NEWROUTE,
2213 NETLINK_CB(arg->cb->skb).pid, arg->cb->nlh->nlmsg_seq,
Jamal Hadi Salim0d51aa82005-06-21 13:51:04 -07002214 prefix, NLM_F_MULTI);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002215}
2216
Thomas Grafc127ea22007-03-22 11:58:32 -07002217static int inet6_rtm_getroute(struct sk_buff *in_skb, struct nlmsghdr* nlh, void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002218{
Denis V. Lunevb8542722007-12-01 00:21:31 +11002219 struct net *net = in_skb->sk->sk_net;
Thomas Grafab364a62006-08-22 00:01:47 -07002220 struct nlattr *tb[RTA_MAX+1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002221 struct rt6_info *rt;
Thomas Grafab364a62006-08-22 00:01:47 -07002222 struct sk_buff *skb;
2223 struct rtmsg *rtm;
2224 struct flowi fl;
2225 int err, iif = 0;
2226
2227 err = nlmsg_parse(nlh, sizeof(*rtm), tb, RTA_MAX, rtm_ipv6_policy);
2228 if (err < 0)
2229 goto errout;
2230
2231 err = -EINVAL;
2232 memset(&fl, 0, sizeof(fl));
2233
2234 if (tb[RTA_SRC]) {
2235 if (nla_len(tb[RTA_SRC]) < sizeof(struct in6_addr))
2236 goto errout;
2237
2238 ipv6_addr_copy(&fl.fl6_src, nla_data(tb[RTA_SRC]));
2239 }
2240
2241 if (tb[RTA_DST]) {
2242 if (nla_len(tb[RTA_DST]) < sizeof(struct in6_addr))
2243 goto errout;
2244
2245 ipv6_addr_copy(&fl.fl6_dst, nla_data(tb[RTA_DST]));
2246 }
2247
2248 if (tb[RTA_IIF])
2249 iif = nla_get_u32(tb[RTA_IIF]);
2250
2251 if (tb[RTA_OIF])
2252 fl.oif = nla_get_u32(tb[RTA_OIF]);
2253
2254 if (iif) {
2255 struct net_device *dev;
Daniel Lezcano55786892008-03-04 13:47:47 -08002256 dev = __dev_get_by_index(net, iif);
Thomas Grafab364a62006-08-22 00:01:47 -07002257 if (!dev) {
2258 err = -ENODEV;
2259 goto errout;
2260 }
2261 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002262
2263 skb = alloc_skb(NLMSG_GOODSIZE, GFP_KERNEL);
Thomas Grafab364a62006-08-22 00:01:47 -07002264 if (skb == NULL) {
2265 err = -ENOBUFS;
2266 goto errout;
2267 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002268
2269 /* Reserve room for dummy headers, this skb can pass
2270 through good chunk of routing engine.
2271 */
Arnaldo Carvalho de Melo459a98e2007-03-19 15:30:44 -07002272 skb_reset_mac_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002273 skb_reserve(skb, MAX_HEADER + sizeof(struct ipv6hdr));
2274
Daniel Lezcano8a3edd82008-03-07 11:14:16 -08002275 rt = (struct rt6_info*) ip6_route_output(net, NULL, &fl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002276 skb->dst = &rt->u.dst;
2277
Thomas Grafab364a62006-08-22 00:01:47 -07002278 err = rt6_fill_node(skb, rt, &fl.fl6_dst, &fl.fl6_src, iif,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002279 RTM_NEWROUTE, NETLINK_CB(in_skb).pid,
Jamal Hadi Salim0d51aa82005-06-21 13:51:04 -07002280 nlh->nlmsg_seq, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002281 if (err < 0) {
Thomas Grafab364a62006-08-22 00:01:47 -07002282 kfree_skb(skb);
2283 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002284 }
2285
Daniel Lezcano55786892008-03-04 13:47:47 -08002286 err = rtnl_unicast(skb, net, NETLINK_CB(in_skb).pid);
Thomas Grafab364a62006-08-22 00:01:47 -07002287errout:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002288 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002289}
2290
Thomas Graf86872cb2006-08-22 00:01:08 -07002291void inet6_rt_notify(int event, struct rt6_info *rt, struct nl_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002292{
2293 struct sk_buff *skb;
Daniel Lezcano55786892008-03-04 13:47:47 -08002294 struct net *net = info->nl_net;
Denis V. Lunev528c4ce2007-12-13 09:45:12 -08002295 u32 seq;
2296 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002297
Denis V. Lunev528c4ce2007-12-13 09:45:12 -08002298 err = -ENOBUFS;
2299 seq = info->nlh != NULL ? info->nlh->nlmsg_seq : 0;
Thomas Graf86872cb2006-08-22 00:01:08 -07002300
Thomas Graf339bf982006-11-10 14:10:15 -08002301 skb = nlmsg_new(rt6_nlmsg_size(), gfp_any());
Thomas Graf21713eb2006-08-15 00:35:24 -07002302 if (skb == NULL)
2303 goto errout;
2304
Denis V. Lunev528c4ce2007-12-13 09:45:12 -08002305 err = rt6_fill_node(skb, rt, NULL, NULL, 0,
2306 event, info->pid, seq, 0, 0);
Patrick McHardy26932562007-01-31 23:16:40 -08002307 if (err < 0) {
2308 /* -EMSGSIZE implies BUG in rt6_nlmsg_size() */
2309 WARN_ON(err == -EMSGSIZE);
2310 kfree_skb(skb);
2311 goto errout;
2312 }
Daniel Lezcano55786892008-03-04 13:47:47 -08002313 err = rtnl_notify(skb, net, info->pid, RTNLGRP_IPV6_ROUTE,
2314 info->nlh, gfp_any());
Thomas Graf21713eb2006-08-15 00:35:24 -07002315errout:
2316 if (err < 0)
Daniel Lezcano55786892008-03-04 13:47:47 -08002317 rtnl_set_sk_err(net, RTNLGRP_IPV6_ROUTE, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002318}
2319
Daniel Lezcano8ed67782008-03-04 13:48:30 -08002320static int ip6_route_dev_notify(struct notifier_block *this,
2321 unsigned long event, void *data)
2322{
2323 struct net_device *dev = (struct net_device *)data;
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09002324 struct net *net = dev_net(dev);
Daniel Lezcano8ed67782008-03-04 13:48:30 -08002325
2326 if (event == NETDEV_REGISTER && (dev->flags & IFF_LOOPBACK)) {
2327 net->ipv6.ip6_null_entry->u.dst.dev = dev;
2328 net->ipv6.ip6_null_entry->rt6i_idev = in6_dev_get(dev);
2329#ifdef CONFIG_IPV6_MULTIPLE_TABLES
2330 net->ipv6.ip6_prohibit_entry->u.dst.dev = dev;
2331 net->ipv6.ip6_prohibit_entry->rt6i_idev = in6_dev_get(dev);
2332 net->ipv6.ip6_blk_hole_entry->u.dst.dev = dev;
2333 net->ipv6.ip6_blk_hole_entry->rt6i_idev = in6_dev_get(dev);
2334#endif
2335 }
2336
2337 return NOTIFY_OK;
2338}
2339
Linus Torvalds1da177e2005-04-16 15:20:36 -07002340/*
2341 * /proc
2342 */
2343
2344#ifdef CONFIG_PROC_FS
2345
2346#define RT6_INFO_LEN (32 + 4 + 32 + 4 + 32 + 40 + 5 + 1)
2347
2348struct rt6_proc_arg
2349{
2350 char *buffer;
2351 int offset;
2352 int length;
2353 int skip;
2354 int len;
2355};
2356
2357static int rt6_info_route(struct rt6_info *rt, void *p_arg)
2358{
Alexey Dobriyan33120b32007-11-06 05:27:11 -08002359 struct seq_file *m = p_arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002360
Alexey Dobriyan33120b32007-11-06 05:27:11 -08002361 seq_printf(m, NIP6_SEQFMT " %02x ", NIP6(rt->rt6i_dst.addr),
2362 rt->rt6i_dst.plen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002363
2364#ifdef CONFIG_IPV6_SUBTREES
Alexey Dobriyan33120b32007-11-06 05:27:11 -08002365 seq_printf(m, NIP6_SEQFMT " %02x ", NIP6(rt->rt6i_src.addr),
2366 rt->rt6i_src.plen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002367#else
Alexey Dobriyan33120b32007-11-06 05:27:11 -08002368 seq_puts(m, "00000000000000000000000000000000 00 ");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002369#endif
2370
2371 if (rt->rt6i_nexthop) {
Alexey Dobriyan33120b32007-11-06 05:27:11 -08002372 seq_printf(m, NIP6_SEQFMT,
2373 NIP6(*((struct in6_addr *)rt->rt6i_nexthop->primary_key)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002374 } else {
Alexey Dobriyan33120b32007-11-06 05:27:11 -08002375 seq_puts(m, "00000000000000000000000000000000");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002376 }
Alexey Dobriyan33120b32007-11-06 05:27:11 -08002377 seq_printf(m, " %08x %08x %08x %08x %8s\n",
2378 rt->rt6i_metric, atomic_read(&rt->u.dst.__refcnt),
2379 rt->u.dst.__use, rt->rt6i_flags,
2380 rt->rt6i_dev ? rt->rt6i_dev->name : "");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002381 return 0;
2382}
2383
Alexey Dobriyan33120b32007-11-06 05:27:11 -08002384static int ipv6_route_show(struct seq_file *m, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002385{
Daniel Lezcanof3db4852008-03-03 23:27:06 -08002386 struct net *net = (struct net *)m->private;
2387 fib6_clean_all(net, rt6_info_route, 0, m);
Alexey Dobriyan33120b32007-11-06 05:27:11 -08002388 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002389}
2390
Alexey Dobriyan33120b32007-11-06 05:27:11 -08002391static int ipv6_route_open(struct inode *inode, struct file *file)
2392{
Daniel Lezcanof3db4852008-03-03 23:27:06 -08002393 struct net *net = get_proc_net(inode);
2394 if (!net)
2395 return -ENXIO;
2396 return single_open(file, ipv6_route_show, net);
2397}
2398
2399static int ipv6_route_release(struct inode *inode, struct file *file)
2400{
2401 struct seq_file *seq = file->private_data;
2402 struct net *net = seq->private;
2403 put_net(net);
2404 return single_release(inode, file);
Alexey Dobriyan33120b32007-11-06 05:27:11 -08002405}
2406
2407static const struct file_operations ipv6_route_proc_fops = {
2408 .owner = THIS_MODULE,
2409 .open = ipv6_route_open,
2410 .read = seq_read,
2411 .llseek = seq_lseek,
Daniel Lezcanof3db4852008-03-03 23:27:06 -08002412 .release = ipv6_route_release,
Alexey Dobriyan33120b32007-11-06 05:27:11 -08002413};
2414
Linus Torvalds1da177e2005-04-16 15:20:36 -07002415static int rt6_stats_seq_show(struct seq_file *seq, void *v)
2416{
Daniel Lezcano69ddb802008-03-04 13:46:23 -08002417 struct net *net = (struct net *)seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002418 seq_printf(seq, "%04x %04x %04x %04x %04x %04x %04x\n",
Daniel Lezcano69ddb802008-03-04 13:46:23 -08002419 net->ipv6.rt6_stats->fib_nodes,
2420 net->ipv6.rt6_stats->fib_route_nodes,
2421 net->ipv6.rt6_stats->fib_rt_alloc,
2422 net->ipv6.rt6_stats->fib_rt_entries,
2423 net->ipv6.rt6_stats->fib_rt_cache,
Benjamin Theryf2fc6a52008-03-04 13:49:23 -08002424 atomic_read(&net->ipv6.ip6_dst_ops->entries),
Daniel Lezcano69ddb802008-03-04 13:46:23 -08002425 net->ipv6.rt6_stats->fib_discarded_routes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002426
2427 return 0;
2428}
2429
2430static int rt6_stats_seq_open(struct inode *inode, struct file *file)
2431{
Daniel Lezcano69ddb802008-03-04 13:46:23 -08002432 struct net *net = get_proc_net(inode);
2433 return single_open(file, rt6_stats_seq_show, net);
2434}
2435
2436static int rt6_stats_seq_release(struct inode *inode, struct file *file)
2437{
2438 struct seq_file *seq = file->private_data;
2439 struct net *net = (struct net *)seq->private;
2440 put_net(net);
2441 return single_release(inode, file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002442}
2443
Arjan van de Ven9a321442007-02-12 00:55:35 -08002444static const struct file_operations rt6_stats_seq_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002445 .owner = THIS_MODULE,
2446 .open = rt6_stats_seq_open,
2447 .read = seq_read,
2448 .llseek = seq_lseek,
Daniel Lezcano69ddb802008-03-04 13:46:23 -08002449 .release = rt6_stats_seq_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002450};
2451#endif /* CONFIG_PROC_FS */
2452
2453#ifdef CONFIG_SYSCTL
2454
Linus Torvalds1da177e2005-04-16 15:20:36 -07002455static
2456int ipv6_sysctl_rtcache_flush(ctl_table *ctl, int write, struct file * filp,
2457 void __user *buffer, size_t *lenp, loff_t *ppos)
2458{
Daniel Lezcano5b7c9312008-03-03 23:28:58 -08002459 struct net *net = current->nsproxy->net_ns;
2460 int delay = net->ipv6.sysctl.flush_delay;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002461 if (write) {
2462 proc_dointvec(ctl, write, filp, buffer, lenp, ppos);
Daniel Lezcano5b7c9312008-03-03 23:28:58 -08002463 fib6_run_gc(delay <= 0 ? ~0UL : (unsigned long)delay, net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002464 return 0;
2465 } else
2466 return -EINVAL;
2467}
2468
Daniel Lezcano760f2d02008-01-10 02:53:43 -08002469ctl_table ipv6_route_table_template[] = {
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002470 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002471 .procname = "flush",
Daniel Lezcano49905092008-01-10 03:01:01 -08002472 .data = &init_net.ipv6.sysctl.flush_delay,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002473 .maxlen = sizeof(int),
Dave Jones89c8b3a12005-04-28 12:11:49 -07002474 .mode = 0200,
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002475 .proc_handler = &ipv6_sysctl_rtcache_flush
Linus Torvalds1da177e2005-04-16 15:20:36 -07002476 },
2477 {
2478 .ctl_name = NET_IPV6_ROUTE_GC_THRESH,
2479 .procname = "gc_thresh",
Daniel Lezcano9a7ec3a2008-03-04 13:48:53 -08002480 .data = &ip6_dst_ops_template.gc_thresh,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002481 .maxlen = sizeof(int),
2482 .mode = 0644,
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002483 .proc_handler = &proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002484 },
2485 {
2486 .ctl_name = NET_IPV6_ROUTE_MAX_SIZE,
2487 .procname = "max_size",
Daniel Lezcano49905092008-01-10 03:01:01 -08002488 .data = &init_net.ipv6.sysctl.ip6_rt_max_size,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002489 .maxlen = sizeof(int),
2490 .mode = 0644,
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002491 .proc_handler = &proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002492 },
2493 {
2494 .ctl_name = NET_IPV6_ROUTE_GC_MIN_INTERVAL,
2495 .procname = "gc_min_interval",
Daniel Lezcano49905092008-01-10 03:01:01 -08002496 .data = &init_net.ipv6.sysctl.ip6_rt_gc_min_interval,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002497 .maxlen = sizeof(int),
2498 .mode = 0644,
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002499 .proc_handler = &proc_dointvec_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002500 .strategy = &sysctl_jiffies,
2501 },
2502 {
2503 .ctl_name = NET_IPV6_ROUTE_GC_TIMEOUT,
2504 .procname = "gc_timeout",
Daniel Lezcano49905092008-01-10 03:01:01 -08002505 .data = &init_net.ipv6.sysctl.ip6_rt_gc_timeout,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002506 .maxlen = sizeof(int),
2507 .mode = 0644,
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002508 .proc_handler = &proc_dointvec_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002509 .strategy = &sysctl_jiffies,
2510 },
2511 {
2512 .ctl_name = NET_IPV6_ROUTE_GC_INTERVAL,
2513 .procname = "gc_interval",
Daniel Lezcano49905092008-01-10 03:01:01 -08002514 .data = &init_net.ipv6.sysctl.ip6_rt_gc_interval,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002515 .maxlen = sizeof(int),
2516 .mode = 0644,
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002517 .proc_handler = &proc_dointvec_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002518 .strategy = &sysctl_jiffies,
2519 },
2520 {
2521 .ctl_name = NET_IPV6_ROUTE_GC_ELASTICITY,
2522 .procname = "gc_elasticity",
Daniel Lezcano49905092008-01-10 03:01:01 -08002523 .data = &init_net.ipv6.sysctl.ip6_rt_gc_elasticity,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002524 .maxlen = sizeof(int),
2525 .mode = 0644,
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002526 .proc_handler = &proc_dointvec_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002527 .strategy = &sysctl_jiffies,
2528 },
2529 {
2530 .ctl_name = NET_IPV6_ROUTE_MTU_EXPIRES,
2531 .procname = "mtu_expires",
Daniel Lezcano49905092008-01-10 03:01:01 -08002532 .data = &init_net.ipv6.sysctl.ip6_rt_mtu_expires,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002533 .maxlen = sizeof(int),
2534 .mode = 0644,
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002535 .proc_handler = &proc_dointvec_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002536 .strategy = &sysctl_jiffies,
2537 },
2538 {
2539 .ctl_name = NET_IPV6_ROUTE_MIN_ADVMSS,
2540 .procname = "min_adv_mss",
Daniel Lezcano49905092008-01-10 03:01:01 -08002541 .data = &init_net.ipv6.sysctl.ip6_rt_min_advmss,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002542 .maxlen = sizeof(int),
2543 .mode = 0644,
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002544 .proc_handler = &proc_dointvec_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002545 .strategy = &sysctl_jiffies,
2546 },
2547 {
2548 .ctl_name = NET_IPV6_ROUTE_GC_MIN_INTERVAL_MS,
2549 .procname = "gc_min_interval_ms",
Daniel Lezcano49905092008-01-10 03:01:01 -08002550 .data = &init_net.ipv6.sysctl.ip6_rt_gc_min_interval,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002551 .maxlen = sizeof(int),
2552 .mode = 0644,
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002553 .proc_handler = &proc_dointvec_ms_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002554 .strategy = &sysctl_ms_jiffies,
2555 },
2556 { .ctl_name = 0 }
2557};
2558
Daniel Lezcano760f2d02008-01-10 02:53:43 -08002559struct ctl_table *ipv6_route_sysctl_init(struct net *net)
2560{
2561 struct ctl_table *table;
2562
2563 table = kmemdup(ipv6_route_table_template,
2564 sizeof(ipv6_route_table_template),
2565 GFP_KERNEL);
YOSHIFUJI Hideaki5ee09102008-02-28 00:24:28 +09002566
2567 if (table) {
2568 table[0].data = &net->ipv6.sysctl.flush_delay;
Benjamin Theryf2fc6a52008-03-04 13:49:23 -08002569 table[1].data = &net->ipv6.ip6_dst_ops->gc_thresh;
YOSHIFUJI Hideaki5ee09102008-02-28 00:24:28 +09002570 table[2].data = &net->ipv6.sysctl.ip6_rt_max_size;
2571 table[3].data = &net->ipv6.sysctl.ip6_rt_gc_min_interval;
2572 table[4].data = &net->ipv6.sysctl.ip6_rt_gc_timeout;
2573 table[5].data = &net->ipv6.sysctl.ip6_rt_gc_interval;
2574 table[6].data = &net->ipv6.sysctl.ip6_rt_gc_elasticity;
2575 table[7].data = &net->ipv6.sysctl.ip6_rt_mtu_expires;
2576 table[8].data = &net->ipv6.sysctl.ip6_rt_min_advmss;
2577 }
2578
Daniel Lezcano760f2d02008-01-10 02:53:43 -08002579 return table;
2580}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002581#endif
2582
Daniel Lezcanocdb18762008-03-04 13:45:33 -08002583static int ip6_route_net_init(struct net *net)
2584{
Daniel Lezcano8ed67782008-03-04 13:48:30 -08002585 int ret = 0;
2586
2587 ret = -ENOMEM;
Benjamin Theryf2fc6a52008-03-04 13:49:23 -08002588 net->ipv6.ip6_dst_ops = kmemdup(&ip6_dst_ops_template,
2589 sizeof(*net->ipv6.ip6_dst_ops),
2590 GFP_KERNEL);
2591 if (!net->ipv6.ip6_dst_ops)
2592 goto out;
2593 net->ipv6.ip6_dst_ops->dst_net = net;
2594
Daniel Lezcano8ed67782008-03-04 13:48:30 -08002595 net->ipv6.ip6_null_entry = kmemdup(&ip6_null_entry_template,
2596 sizeof(*net->ipv6.ip6_null_entry),
2597 GFP_KERNEL);
2598 if (!net->ipv6.ip6_null_entry)
Benjamin Theryf2fc6a52008-03-04 13:49:23 -08002599 goto out_ip6_dst_ops;
Daniel Lezcano8ed67782008-03-04 13:48:30 -08002600 net->ipv6.ip6_null_entry->u.dst.path =
2601 (struct dst_entry *)net->ipv6.ip6_null_entry;
Benjamin Theryf2fc6a52008-03-04 13:49:23 -08002602 net->ipv6.ip6_null_entry->u.dst.ops = net->ipv6.ip6_dst_ops;
Daniel Lezcano8ed67782008-03-04 13:48:30 -08002603
2604#ifdef CONFIG_IPV6_MULTIPLE_TABLES
2605 net->ipv6.ip6_prohibit_entry = kmemdup(&ip6_prohibit_entry_template,
2606 sizeof(*net->ipv6.ip6_prohibit_entry),
2607 GFP_KERNEL);
2608 if (!net->ipv6.ip6_prohibit_entry) {
2609 kfree(net->ipv6.ip6_null_entry);
2610 goto out;
2611 }
2612 net->ipv6.ip6_prohibit_entry->u.dst.path =
2613 (struct dst_entry *)net->ipv6.ip6_prohibit_entry;
Benjamin Theryf2fc6a52008-03-04 13:49:23 -08002614 net->ipv6.ip6_prohibit_entry->u.dst.ops = net->ipv6.ip6_dst_ops;
Daniel Lezcano8ed67782008-03-04 13:48:30 -08002615
2616 net->ipv6.ip6_blk_hole_entry = kmemdup(&ip6_blk_hole_entry_template,
2617 sizeof(*net->ipv6.ip6_blk_hole_entry),
2618 GFP_KERNEL);
2619 if (!net->ipv6.ip6_blk_hole_entry) {
2620 kfree(net->ipv6.ip6_null_entry);
2621 kfree(net->ipv6.ip6_prohibit_entry);
2622 goto out;
2623 }
2624 net->ipv6.ip6_blk_hole_entry->u.dst.path =
2625 (struct dst_entry *)net->ipv6.ip6_blk_hole_entry;
Benjamin Theryf2fc6a52008-03-04 13:49:23 -08002626 net->ipv6.ip6_blk_hole_entry->u.dst.ops = net->ipv6.ip6_dst_ops;
Daniel Lezcano8ed67782008-03-04 13:48:30 -08002627#endif
2628
Daniel Lezcanocdb18762008-03-04 13:45:33 -08002629#ifdef CONFIG_PROC_FS
2630 proc_net_fops_create(net, "ipv6_route", 0, &ipv6_route_proc_fops);
2631 proc_net_fops_create(net, "rt6_stats", S_IRUGO, &rt6_stats_seq_fops);
2632#endif
Benjamin Thery6891a342008-03-04 13:49:47 -08002633 net->ipv6.ip6_rt_gc_expire = 30*HZ;
2634
Daniel Lezcano8ed67782008-03-04 13:48:30 -08002635 ret = 0;
2636out:
2637 return ret;
Benjamin Theryf2fc6a52008-03-04 13:49:23 -08002638
2639out_ip6_dst_ops:
2640 kfree(net->ipv6.ip6_dst_ops);
2641 goto out;
Daniel Lezcanocdb18762008-03-04 13:45:33 -08002642}
2643
2644static void ip6_route_net_exit(struct net *net)
2645{
2646#ifdef CONFIG_PROC_FS
2647 proc_net_remove(net, "ipv6_route");
2648 proc_net_remove(net, "rt6_stats");
2649#endif
Daniel Lezcano8ed67782008-03-04 13:48:30 -08002650 kfree(net->ipv6.ip6_null_entry);
2651#ifdef CONFIG_IPV6_MULTIPLE_TABLES
2652 kfree(net->ipv6.ip6_prohibit_entry);
2653 kfree(net->ipv6.ip6_blk_hole_entry);
2654#endif
Benjamin Theryf2fc6a52008-03-04 13:49:23 -08002655 kfree(net->ipv6.ip6_dst_ops);
Daniel Lezcanocdb18762008-03-04 13:45:33 -08002656}
2657
2658static struct pernet_operations ip6_route_net_ops = {
2659 .init = ip6_route_net_init,
2660 .exit = ip6_route_net_exit,
2661};
2662
Daniel Lezcano8ed67782008-03-04 13:48:30 -08002663static struct notifier_block ip6_route_dev_notifier = {
2664 .notifier_call = ip6_route_dev_notify,
2665 .priority = 0,
2666};
2667
Daniel Lezcano433d49c2007-12-07 00:43:48 -08002668int __init ip6_route_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002669{
Daniel Lezcano433d49c2007-12-07 00:43:48 -08002670 int ret;
2671
Daniel Lezcano9a7ec3a2008-03-04 13:48:53 -08002672 ret = -ENOMEM;
2673 ip6_dst_ops_template.kmem_cachep =
2674 kmem_cache_create("ip6_dst_cache", sizeof(struct rt6_info), 0,
2675 SLAB_HWCACHE_ALIGN, NULL);
2676 if (!ip6_dst_ops_template.kmem_cachep)
Benjamin Theryf2fc6a52008-03-04 13:49:23 -08002677 goto out;;
David S. Miller14e50e52007-05-24 18:17:54 -07002678
Daniel Lezcano8ed67782008-03-04 13:48:30 -08002679 ret = register_pernet_subsys(&ip6_route_net_ops);
2680 if (ret)
Daniel Lezcanobdb32892008-03-04 13:48:10 -08002681 goto out_kmem_cache;
Daniel Lezcanobdb32892008-03-04 13:48:10 -08002682
Daniel Lezcano8ed67782008-03-04 13:48:30 -08002683 /* Registering of the loopback is done before this portion of code,
2684 * the loopback reference in rt6_info will not be taken, do it
2685 * manually for init_net */
2686 init_net.ipv6.ip6_null_entry->u.dst.dev = init_net.loopback_dev;
2687 init_net.ipv6.ip6_null_entry->rt6i_idev = in6_dev_get(init_net.loopback_dev);
2688 #ifdef CONFIG_IPV6_MULTIPLE_TABLES
2689 init_net.ipv6.ip6_prohibit_entry->u.dst.dev = init_net.loopback_dev;
2690 init_net.ipv6.ip6_prohibit_entry->rt6i_idev = in6_dev_get(init_net.loopback_dev);
2691 init_net.ipv6.ip6_blk_hole_entry->u.dst.dev = init_net.loopback_dev;
2692 init_net.ipv6.ip6_blk_hole_entry->rt6i_idev = in6_dev_get(init_net.loopback_dev);
2693 #endif
Daniel Lezcano433d49c2007-12-07 00:43:48 -08002694 ret = fib6_init();
2695 if (ret)
Daniel Lezcano8ed67782008-03-04 13:48:30 -08002696 goto out_register_subsys;
Daniel Lezcano433d49c2007-12-07 00:43:48 -08002697
Daniel Lezcano433d49c2007-12-07 00:43:48 -08002698 ret = xfrm6_init();
2699 if (ret)
Daniel Lezcanocdb18762008-03-04 13:45:33 -08002700 goto out_fib6_init;
Daniel Lezcanoc35b7e72007-12-08 00:14:11 -08002701
Daniel Lezcano433d49c2007-12-07 00:43:48 -08002702 ret = fib6_rules_init();
2703 if (ret)
2704 goto xfrm6_init;
Daniel Lezcano7e5449c2007-12-08 00:14:54 -08002705
Daniel Lezcano433d49c2007-12-07 00:43:48 -08002706 ret = -ENOBUFS;
2707 if (__rtnl_register(PF_INET6, RTM_NEWROUTE, inet6_rtm_newroute, NULL) ||
2708 __rtnl_register(PF_INET6, RTM_DELROUTE, inet6_rtm_delroute, NULL) ||
2709 __rtnl_register(PF_INET6, RTM_GETROUTE, inet6_rtm_getroute, NULL))
2710 goto fib6_rules_init;
2711
Daniel Lezcano8ed67782008-03-04 13:48:30 -08002712 ret = register_netdevice_notifier(&ip6_route_dev_notifier);
Daniel Lezcanocdb18762008-03-04 13:45:33 -08002713 if (ret)
2714 goto fib6_rules_init;
Daniel Lezcano8ed67782008-03-04 13:48:30 -08002715
Daniel Lezcano433d49c2007-12-07 00:43:48 -08002716out:
2717 return ret;
2718
2719fib6_rules_init:
Daniel Lezcano433d49c2007-12-07 00:43:48 -08002720 fib6_rules_cleanup();
2721xfrm6_init:
Daniel Lezcano433d49c2007-12-07 00:43:48 -08002722 xfrm6_fini();
Daniel Lezcano433d49c2007-12-07 00:43:48 -08002723out_fib6_init:
Daniel Lezcano433d49c2007-12-07 00:43:48 -08002724 fib6_gc_cleanup();
Daniel Lezcano8ed67782008-03-04 13:48:30 -08002725out_register_subsys:
2726 unregister_pernet_subsys(&ip6_route_net_ops);
Daniel Lezcano433d49c2007-12-07 00:43:48 -08002727out_kmem_cache:
Benjamin Theryf2fc6a52008-03-04 13:49:23 -08002728 kmem_cache_destroy(ip6_dst_ops_template.kmem_cachep);
Daniel Lezcano433d49c2007-12-07 00:43:48 -08002729 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002730}
2731
2732void ip6_route_cleanup(void)
2733{
Daniel Lezcano8ed67782008-03-04 13:48:30 -08002734 unregister_netdevice_notifier(&ip6_route_dev_notifier);
Thomas Graf101367c2006-08-04 03:39:02 -07002735 fib6_rules_cleanup();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002736 xfrm6_fini();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002737 fib6_gc_cleanup();
Daniel Lezcano8ed67782008-03-04 13:48:30 -08002738 unregister_pernet_subsys(&ip6_route_net_ops);
Benjamin Theryf2fc6a52008-03-04 13:49:23 -08002739 kmem_cache_destroy(ip6_dst_ops_template.kmem_cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002740}