]> bbs.cooldavid.org Git - net-next-2.6.git/blame - net/ipv6/route.c
[NETNS][IPV6] route6 - make garbage collection work with multiple network namespaces
[net-next-2.6.git] / net / ipv6 / route.c
CommitLineData
1da177e4
LT
1/*
2 * Linux INET6 implementation
3 * FIB front-end.
4 *
5 * Authors:
1ab1457c 6 * Pedro Roque <roque@di.fc.ul.pt>
1da177e4
LT
7 *
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.
c0bece9f
YH
25 * Ville Nuorvala
26 * Fixed routing subtrees.
1da177e4
LT
27 */
28
4fc268d2 29#include <linux/capability.h>
1da177e4
LT
30#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>
1da177e4 40#include <linux/if_arp.h>
1da177e4
LT
41#include <linux/proc_fs.h>
42#include <linux/seq_file.h>
5b7c931d 43#include <linux/nsproxy.h>
457c4cbc 44#include <net/net_namespace.h>
1da177e4
LT
45#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>
8d71740c 55#include <net/netevent.h>
21713ebc 56#include <net/netlink.h>
1da177e4
LT
57
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
519fbd87 75#define CLONE_OFFLINK_ROUTE 0
1da177e4 76
1da177e4
LT
77static 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);
569d3645 83static int ip6_dst_gc(struct dst_ops *ops);
1da177e4
LT
84
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
70ceb4f5 90#ifdef CONFIG_IPV6_ROUTE_INFO
efa2cea0
DL
91static struct rt6_info *rt6_add_route_info(struct net *net,
92 struct in6_addr *prefix, int prefixlen,
70ceb4f5
YH
93 struct in6_addr *gwaddr, int ifindex,
94 unsigned pref);
efa2cea0
DL
95static struct rt6_info *rt6_get_route_info(struct net *net,
96 struct in6_addr *prefix, int prefixlen,
70ceb4f5
YH
97 struct in6_addr *gwaddr, int ifindex);
98#endif
99
9a7ec3a9 100static struct dst_ops ip6_dst_ops_template = {
1da177e4
LT
101 .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,
862b82c6 111 .local_out = ip6_local_out,
1da177e4 112 .entry_size = sizeof(struct rt6_info),
e2422970 113 .entries = ATOMIC_INIT(0),
1da177e4
LT
114};
115
14e50e57
DM
116static 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),
e2422970 127 .entries = ATOMIC_INIT(0),
14e50e57
DM
128};
129
bdb3289f 130static struct rt6_info ip6_null_entry_template = {
1da177e4
LT
131 .u = {
132 .dst = {
133 .__refcnt = ATOMIC_INIT(1),
134 .__use = 1,
1da177e4
LT
135 .obsolete = -1,
136 .error = -ENETUNREACH,
137 .metrics = { [RTAX_HOPLIMIT - 1] = 255, },
138 .input = ip6_pkt_discard,
139 .output = ip6_pkt_discard_out,
1da177e4
LT
140 }
141 },
142 .rt6i_flags = (RTF_REJECT | RTF_NONEXTHOP),
143 .rt6i_metric = ~(u32) 0,
144 .rt6i_ref = ATOMIC_INIT(1),
145};
146
101367c2
TG
147#ifdef CONFIG_IPV6_MULTIPLE_TABLES
148
6723ab54
DM
149static int ip6_pkt_prohibit(struct sk_buff *skb);
150static int ip6_pkt_prohibit_out(struct sk_buff *skb);
6723ab54 151
bdb3289f 152struct rt6_info ip6_prohibit_entry_template = {
101367c2
TG
153 .u = {
154 .dst = {
155 .__refcnt = ATOMIC_INIT(1),
156 .__use = 1,
101367c2
TG
157 .obsolete = -1,
158 .error = -EACCES,
159 .metrics = { [RTAX_HOPLIMIT - 1] = 255, },
9ce8ade0
TG
160 .input = ip6_pkt_prohibit,
161 .output = ip6_pkt_prohibit_out,
101367c2
TG
162 }
163 },
164 .rt6i_flags = (RTF_REJECT | RTF_NONEXTHOP),
165 .rt6i_metric = ~(u32) 0,
166 .rt6i_ref = ATOMIC_INIT(1),
167};
168
bdb3289f 169static struct rt6_info ip6_blk_hole_entry_template = {
101367c2
TG
170 .u = {
171 .dst = {
172 .__refcnt = ATOMIC_INIT(1),
173 .__use = 1,
101367c2
TG
174 .obsolete = -1,
175 .error = -EINVAL,
176 .metrics = { [RTAX_HOPLIMIT - 1] = 255, },
352e512c
HX
177 .input = dst_discard,
178 .output = dst_discard,
101367c2
TG
179 }
180 },
181 .rt6i_flags = (RTF_REJECT | RTF_NONEXTHOP),
182 .rt6i_metric = ~(u32) 0,
183 .rt6i_ref = ATOMIC_INIT(1),
184};
185
186#endif
187
1da177e4 188/* allocate dst with ip6_dst_ops */
f2fc6a54 189static inline struct rt6_info *ip6_dst_alloc(struct dst_ops *ops)
1da177e4 190{
f2fc6a54 191 return (struct rt6_info *)dst_alloc(ops);
1da177e4
LT
192}
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);
1ab1457c 202 }
1da177e4
LT
203}
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;
5a3e55d6
DL
210 struct net_device *loopback_dev =
211 dev->nd_net->loopback_dev;
1da177e4 212
5a3e55d6
DL
213 if (dev != loopback_dev && idev != NULL && idev->dev == dev) {
214 struct inet6_dev *loopback_idev =
215 in6_dev_get(loopback_dev);
1da177e4
LT
216 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
c71099ac
TG
229static 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
1da177e4 235/*
c71099ac 236 * Route lookup. Any table->tb6_lock is implied.
1da177e4
LT
237 */
238
8ed67789
DL
239static inline struct rt6_info *rt6_device_match(struct net *net,
240 struct rt6_info *rt,
1da177e4
LT
241 int oif,
242 int strict)
243{
244 struct rt6_info *local = NULL;
245 struct rt6_info *sprt;
246
247 if (oif) {
7cc48263 248 for (sprt = rt; sprt; sprt = sprt->u.dst.rt6_next) {
1da177e4
LT
249 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;
1ab1457c 257 if (local && (!oif ||
1da177e4
LT
258 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)
8ed67789 269 return net->ipv6.ip6_null_entry;
1da177e4
LT
270 }
271 return rt;
272}
273
27097255
YH
274#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) &&
52e16356 290 time_after(jiffies, neigh->updated + rt->rt6i_idev->cnf.rtr_probe_interval)) {
27097255
YH
291 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
1da177e4 310/*
554cfb7e 311 * Default Router Selection (RFC 2461 6.3.6)
1da177e4 312 */
b6f99a21 313static inline int rt6_check_dev(struct rt6_info *rt, int oif)
554cfb7e
YH
314{
315 struct net_device *dev = rt->rt6i_dev;
161980f4 316 if (!oif || dev->ifindex == oif)
554cfb7e 317 return 2;
161980f4
DM
318 if ((dev->flags & IFF_LOOPBACK) &&
319 rt->rt6i_idev && rt->rt6i_idev->dev->ifindex == oif)
320 return 1;
321 return 0;
554cfb7e 322}
1da177e4 323
b6f99a21 324static inline int rt6_check_neigh(struct rt6_info *rt)
1da177e4 325{
554cfb7e 326 struct neighbour *neigh = rt->rt6i_nexthop;
398bcbeb 327 int m;
4d0c5911
YH
328 if (rt->rt6i_flags & RTF_NONEXTHOP ||
329 !(rt->rt6i_flags & RTF_GATEWAY))
330 m = 1;
331 else if (neigh) {
554cfb7e
YH
332 read_lock_bh(&neigh->lock);
333 if (neigh->nud_state & NUD_VALID)
4d0c5911 334 m = 2;
398bcbeb
YH
335#ifdef CONFIG_IPV6_ROUTER_PREF
336 else if (neigh->nud_state & NUD_FAILED)
337 m = 0;
338#endif
339 else
ea73ee23 340 m = 1;
554cfb7e 341 read_unlock_bh(&neigh->lock);
398bcbeb
YH
342 } else
343 m = 0;
554cfb7e 344 return m;
1da177e4
LT
345}
346
554cfb7e
YH
347static int rt6_score_route(struct rt6_info *rt, int oif,
348 int strict)
1da177e4 349{
4d0c5911 350 int m, n;
1ab1457c 351
4d0c5911 352 m = rt6_check_dev(rt, oif);
77d16f45 353 if (!m && (strict & RT6_LOOKUP_F_IFACE))
554cfb7e 354 return -1;
ebacaaa0
YH
355#ifdef CONFIG_IPV6_ROUTER_PREF
356 m |= IPV6_DECODE_PREF(IPV6_EXTRACT_PREF(rt->rt6i_flags)) << 2;
357#endif
4d0c5911 358 n = rt6_check_neigh(rt);
557e92ef 359 if (!n && (strict & RT6_LOOKUP_F_REACHABLE))
554cfb7e
YH
360 return -1;
361 return m;
362}
363
f11e6659
DM
364static struct rt6_info *find_match(struct rt6_info *rt, int oif, int strict,
365 int *mpri, struct rt6_info *match)
554cfb7e 366{
f11e6659
DM
367 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;
554cfb7e 394 int mpri = -1;
1da177e4 395
f11e6659
DM
396 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);
1da177e4 403
f11e6659
DM
404 return match;
405}
1da177e4 406
f11e6659
DM
407static struct rt6_info *rt6_select(struct fib6_node *fn, int oif, int strict)
408{
409 struct rt6_info *match, *rt0;
8ed67789 410 struct net *net;
1da177e4 411
f11e6659
DM
412 RT6_TRACE("%s(fn->leaf=%p, oif=%d)\n",
413 __FUNCTION__, fn->leaf, oif);
554cfb7e 414
f11e6659
DM
415 rt0 = fn->rr_ptr;
416 if (!rt0)
417 fn->rr_ptr = rt0 = fn->leaf;
1da177e4 418
f11e6659 419 match = find_rr_leaf(fn, rt0, rt0->rt6i_metric, oif, strict);
1da177e4 420
554cfb7e 421 if (!match &&
f11e6659
DM
422 (strict & RT6_LOOKUP_F_REACHABLE)) {
423 struct rt6_info *next = rt0->u.dst.rt6_next;
424
554cfb7e 425 /* no entries matched; do round-robin */
f11e6659
DM
426 if (!next || next->rt6i_metric != rt0->rt6i_metric)
427 next = fn->leaf;
428
429 if (next != rt0)
430 fn->rr_ptr = next;
1da177e4 431 }
1da177e4 432
f11e6659
DM
433 RT6_TRACE("%s() => %p\n",
434 __FUNCTION__, match);
1da177e4 435
8ed67789
DL
436 net = rt0->rt6i_dev->nd_net;
437 return (match ? match : net->ipv6.ip6_null_entry);
1da177e4
LT
438}
439
70ceb4f5
YH
440#ifdef CONFIG_IPV6_ROUTE_INFO
441int rt6_route_rcv(struct net_device *dev, u8 *opt, int len,
442 struct in6_addr *gwaddr)
443{
efa2cea0 444 struct net *net = dev->nd_net;
70ceb4f5
YH
445 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
e69a4adc 474 lifetime = ntohl(rinfo->lifetime);
70ceb4f5
YH
475 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
efa2cea0
DL
492 rt = rt6_get_route_info(net, prefix, rinfo->prefix_len, gwaddr,
493 dev->ifindex);
70ceb4f5
YH
494
495 if (rt && !lifetime) {
e0a1ad73 496 ip6_del_rt(rt);
70ceb4f5
YH
497 rt = NULL;
498 }
499
500 if (!rt && lifetime)
efa2cea0 501 rt = rt6_add_route_info(net, prefix, rinfo->prefix_len, gwaddr, dev->ifindex,
70ceb4f5
YH
502 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
8ed67789 520#define BACKTRACK(__net, saddr) \
982f56f3 521do { \
8ed67789 522 if (rt == __net->ipv6.ip6_null_entry) { \
982f56f3 523 struct fib6_node *pn; \
e0eda7bb 524 while (1) { \
982f56f3
YH
525 if (fn->fn_flags & RTN_TL_ROOT) \
526 goto out; \
527 pn = fn->parent; \
528 if (FIB6_SUBTREE(pn) && FIB6_SUBTREE(pn) != fn) \
8bce65b9 529 fn = fib6_lookup(FIB6_SUBTREE(pn), NULL, saddr); \
982f56f3
YH
530 else \
531 fn = pn; \
532 if (fn->fn_flags & RTN_RTINFO) \
533 goto restart; \
c71099ac 534 } \
c71099ac 535 } \
982f56f3 536} while(0)
c71099ac 537
8ed67789
DL
538static struct rt6_info *ip6_pol_route_lookup(struct net *net,
539 struct fib6_table *table,
c71099ac 540 struct flowi *fl, int flags)
1da177e4
LT
541{
542 struct fib6_node *fn;
543 struct rt6_info *rt;
544
c71099ac
TG
545 read_lock_bh(&table->tb6_lock);
546 fn = fib6_lookup(&table->tb6_root, &fl->fl6_dst, &fl->fl6_src);
547restart:
548 rt = fn->leaf;
8ed67789
DL
549 rt = rt6_device_match(net, rt, fl->oif, flags);
550 BACKTRACK(net, &fl->fl6_src);
c71099ac 551out:
03f49f34 552 dst_use(&rt->u.dst, jiffies);
c71099ac 553 read_unlock_bh(&table->tb6_lock);
c71099ac
TG
554 return rt;
555
556}
557
606a2b48
DL
558struct rt6_info *rt6_lookup(struct net *net, struct in6_addr *daddr,
559 struct in6_addr *saddr, int oif, int strict)
c71099ac
TG
560{
561 struct flowi fl = {
562 .oif = oif,
563 .nl_u = {
564 .ip6_u = {
565 .daddr = *daddr,
c71099ac
TG
566 },
567 },
568 };
569 struct dst_entry *dst;
77d16f45 570 int flags = strict ? RT6_LOOKUP_F_IFACE : 0;
c71099ac 571
adaa70bb
TG
572 if (saddr) {
573 memcpy(&fl.fl6_src, saddr, sizeof(*saddr));
574 flags |= RT6_LOOKUP_F_HAS_SADDR;
575 }
576
606a2b48 577 dst = fib6_rule_lookup(net, &fl, flags, ip6_pol_route_lookup);
c71099ac
TG
578 if (dst->error == 0)
579 return (struct rt6_info *) dst;
580
581 dst_release(dst);
582
1da177e4
LT
583 return NULL;
584}
585
7159039a
YH
586EXPORT_SYMBOL(rt6_lookup);
587
c71099ac 588/* ip6_ins_rt is called with FREE table->tb6_lock.
1da177e4
LT
589 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
86872cb5 594static int __ip6_ins_rt(struct rt6_info *rt, struct nl_info *info)
1da177e4
LT
595{
596 int err;
c71099ac 597 struct fib6_table *table;
1da177e4 598
c71099ac
TG
599 table = rt->rt6i_table;
600 write_lock_bh(&table->tb6_lock);
86872cb5 601 err = fib6_add(&table->tb6_root, rt, info);
c71099ac 602 write_unlock_bh(&table->tb6_lock);
1da177e4
LT
603
604 return err;
605}
606
40e22e8f
TG
607int ip6_ins_rt(struct rt6_info *rt)
608{
4d1169c1 609 struct nl_info info = {
5578689a 610 .nl_net = rt->rt6i_dev->nd_net,
4d1169c1 611 };
528c4ceb 612 return __ip6_ins_rt(rt, &info);
40e22e8f
TG
613}
614
95a9a5ba
YH
615static struct rt6_info *rt6_alloc_cow(struct rt6_info *ort, struct in6_addr *daddr,
616 struct in6_addr *saddr)
1da177e4 617{
1da177e4
LT
618 struct rt6_info *rt;
619
620 /*
621 * Clone the route.
622 */
623
624 rt = ip6_rt_copy(ort);
625
626 if (rt) {
58c4fb86
YH
627 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;
1da177e4 631 ipv6_addr_copy(&rt->rt6i_gateway, daddr);
58c4fb86 632 }
1da177e4 633
58c4fb86 634 ipv6_addr_copy(&rt->rt6i_dst.addr, daddr);
1da177e4
LT
635 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
95a9a5ba 648 }
1da177e4 649
95a9a5ba
YH
650 return rt;
651}
1da177e4 652
299d9939
YH
653static 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;
299d9939
YH
660 rt->u.dst.flags |= DST_HOST;
661 rt->rt6i_nexthop = neigh_clone(ort->rt6i_nexthop);
662 }
663 return rt;
664}
665
8ed67789
DL
666static struct rt6_info *ip6_pol_route(struct net *net, struct fib6_table *table, int oif,
667 struct flowi *fl, int flags)
1da177e4
LT
668{
669 struct fib6_node *fn;
519fbd87 670 struct rt6_info *rt, *nrt;
c71099ac 671 int strict = 0;
1da177e4 672 int attempts = 3;
519fbd87 673 int err;
ea659e07 674 int reachable = ipv6_devconf.forwarding ? 0 : RT6_LOOKUP_F_REACHABLE;
1da177e4 675
77d16f45 676 strict |= flags & RT6_LOOKUP_F_IFACE;
1da177e4
LT
677
678relookup:
c71099ac 679 read_lock_bh(&table->tb6_lock);
1da177e4 680
8238dd06 681restart_2:
c71099ac 682 fn = fib6_lookup(&table->tb6_root, &fl->fl6_dst, &fl->fl6_src);
1da177e4
LT
683
684restart:
4acad72d 685 rt = rt6_select(fn, oif, strict | reachable);
8ed67789
DL
686
687 BACKTRACK(net, &fl->fl6_src);
688 if (rt == net->ipv6.ip6_null_entry ||
8238dd06 689 rt->rt6i_flags & RTF_CACHE)
1ddef044 690 goto out;
1da177e4 691
fb9de91e 692 dst_hold(&rt->u.dst);
c71099ac 693 read_unlock_bh(&table->tb6_lock);
fb9de91e 694
519fbd87 695 if (!rt->rt6i_nexthop && !(rt->rt6i_flags & RTF_NONEXTHOP))
c71099ac 696 nrt = rt6_alloc_cow(rt, &fl->fl6_dst, &fl->fl6_src);
519fbd87
YH
697 else {
698#if CLONE_OFFLINK_ROUTE
c71099ac 699 nrt = rt6_alloc_clone(rt, &fl->fl6_dst);
519fbd87
YH
700#else
701 goto out2;
702#endif
703 }
e40cf353 704
519fbd87 705 dst_release(&rt->u.dst);
8ed67789 706 rt = nrt ? : net->ipv6.ip6_null_entry;
1da177e4 707
519fbd87
YH
708 dst_hold(&rt->u.dst);
709 if (nrt) {
40e22e8f 710 err = ip6_ins_rt(nrt);
519fbd87 711 if (!err)
1da177e4 712 goto out2;
1da177e4 713 }
1da177e4 714
519fbd87
YH
715 if (--attempts <= 0)
716 goto out2;
717
718 /*
c71099ac 719 * Race condition! In the gap, when table->tb6_lock was
519fbd87
YH
720 * released someone could insert this route. Relookup.
721 */
722 dst_release(&rt->u.dst);
723 goto relookup;
724
725out:
8238dd06
YH
726 if (reachable) {
727 reachable = 0;
728 goto restart_2;
729 }
519fbd87 730 dst_hold(&rt->u.dst);
c71099ac 731 read_unlock_bh(&table->tb6_lock);
1da177e4
LT
732out2:
733 rt->u.dst.lastuse = jiffies;
734 rt->u.dst.__use++;
c71099ac
TG
735
736 return rt;
1da177e4
LT
737}
738
8ed67789 739static struct rt6_info *ip6_pol_route_input(struct net *net, struct fib6_table *table,
4acad72d
PE
740 struct flowi *fl, int flags)
741{
8ed67789 742 return ip6_pol_route(net, table, fl->iif, fl, flags);
4acad72d
PE
743}
744
c71099ac
TG
745void ip6_route_input(struct sk_buff *skb)
746{
0660e03f 747 struct ipv6hdr *iph = ipv6_hdr(skb);
5578689a 748 struct net *net = skb->dev->nd_net;
adaa70bb 749 int flags = RT6_LOOKUP_F_HAS_SADDR;
c71099ac
TG
750 struct flowi fl = {
751 .iif = skb->dev->ifindex,
752 .nl_u = {
753 .ip6_u = {
754 .daddr = iph->daddr,
755 .saddr = iph->saddr,
90bcaf7b 756 .flowlabel = (* (__be32 *) iph)&IPV6_FLOWINFO_MASK,
c71099ac
TG
757 },
758 },
1ab1457c 759 .mark = skb->mark,
c71099ac
TG
760 .proto = iph->nexthdr,
761 };
adaa70bb
TG
762
763 if (rt6_need_strict(&iph->daddr))
764 flags |= RT6_LOOKUP_F_IFACE;
c71099ac 765
5578689a 766 skb->dst = fib6_rule_lookup(net, &fl, flags, ip6_pol_route_input);
c71099ac
TG
767}
768
8ed67789 769static struct rt6_info *ip6_pol_route_output(struct net *net, struct fib6_table *table,
c71099ac 770 struct flowi *fl, int flags)
1da177e4 771{
8ed67789 772 return ip6_pol_route(net, table, fl->oif, fl, flags);
c71099ac
TG
773}
774
775struct dst_entry * ip6_route_output(struct sock *sk, struct flowi *fl)
776{
777 int flags = 0;
778
779 if (rt6_need_strict(&fl->fl6_dst))
77d16f45 780 flags |= RT6_LOOKUP_F_IFACE;
c71099ac 781
adaa70bb
TG
782 if (!ipv6_addr_any(&fl->fl6_src))
783 flags |= RT6_LOOKUP_F_HAS_SADDR;
784
58f09b78 785 return fib6_rule_lookup(&init_net, fl, flags, ip6_pol_route_output);
1da177e4
LT
786}
787
7159039a 788EXPORT_SYMBOL(ip6_route_output);
1da177e4 789
14e50e57
DM
790int ip6_dst_blackhole(struct sock *sk, struct dst_entry **dstp, struct flowi *fl)
791{
792 struct rt6_info *ort = (struct rt6_info *) *dstp;
793 struct rt6_info *rt = (struct rt6_info *)
794 dst_alloc(&ip6_dst_blackhole_ops);
795 struct dst_entry *new = NULL;
796
797 if (rt) {
798 new = &rt->u.dst;
799
800 atomic_set(&new->__refcnt, 1);
801 new->__use = 1;
352e512c
HX
802 new->input = dst_discard;
803 new->output = dst_discard;
14e50e57
DM
804
805 memcpy(new->metrics, ort->u.dst.metrics, RTAX_MAX*sizeof(u32));
806 new->dev = ort->u.dst.dev;
807 if (new->dev)
808 dev_hold(new->dev);
809 rt->rt6i_idev = ort->rt6i_idev;
810 if (rt->rt6i_idev)
811 in6_dev_hold(rt->rt6i_idev);
812 rt->rt6i_expires = 0;
813
814 ipv6_addr_copy(&rt->rt6i_gateway, &ort->rt6i_gateway);
815 rt->rt6i_flags = ort->rt6i_flags & ~RTF_EXPIRES;
816 rt->rt6i_metric = 0;
817
818 memcpy(&rt->rt6i_dst, &ort->rt6i_dst, sizeof(struct rt6key));
819#ifdef CONFIG_IPV6_SUBTREES
820 memcpy(&rt->rt6i_src, &ort->rt6i_src, sizeof(struct rt6key));
821#endif
822
823 dst_free(new);
824 }
825
826 dst_release(*dstp);
827 *dstp = new;
828 return (new ? 0 : -ENOMEM);
829}
830EXPORT_SYMBOL_GPL(ip6_dst_blackhole);
831
1da177e4
LT
832/*
833 * Destination cache support functions
834 */
835
836static struct dst_entry *ip6_dst_check(struct dst_entry *dst, u32 cookie)
837{
838 struct rt6_info *rt;
839
840 rt = (struct rt6_info *) dst;
841
842 if (rt && rt->rt6i_node && (rt->rt6i_node->fn_sernum == cookie))
843 return dst;
844
845 return NULL;
846}
847
848static struct dst_entry *ip6_negative_advice(struct dst_entry *dst)
849{
850 struct rt6_info *rt = (struct rt6_info *) dst;
851
852 if (rt) {
853 if (rt->rt6i_flags & RTF_CACHE)
e0a1ad73 854 ip6_del_rt(rt);
1da177e4
LT
855 else
856 dst_release(dst);
857 }
858 return NULL;
859}
860
861static void ip6_link_failure(struct sk_buff *skb)
862{
863 struct rt6_info *rt;
864
865 icmpv6_send(skb, ICMPV6_DEST_UNREACH, ICMPV6_ADDR_UNREACH, 0, skb->dev);
866
867 rt = (struct rt6_info *) skb->dst;
868 if (rt) {
869 if (rt->rt6i_flags&RTF_CACHE) {
870 dst_set_expires(&rt->u.dst, 0);
871 rt->rt6i_flags |= RTF_EXPIRES;
872 } else if (rt->rt6i_node && (rt->rt6i_flags & RTF_DEFAULT))
873 rt->rt6i_node->fn_sernum = -1;
874 }
875}
876
877static void ip6_rt_update_pmtu(struct dst_entry *dst, u32 mtu)
878{
879 struct rt6_info *rt6 = (struct rt6_info*)dst;
880
881 if (mtu < dst_mtu(dst) && rt6->rt6i_dst.plen == 128) {
882 rt6->rt6i_flags |= RTF_MODIFIED;
883 if (mtu < IPV6_MIN_MTU) {
884 mtu = IPV6_MIN_MTU;
885 dst->metrics[RTAX_FEATURES-1] |= RTAX_FEATURE_ALLFRAG;
886 }
887 dst->metrics[RTAX_MTU-1] = mtu;
8d71740c 888 call_netevent_notifiers(NETEVENT_PMTU_UPDATE, dst);
1da177e4
LT
889 }
890}
891
1da177e4
LT
892static int ipv6_get_mtu(struct net_device *dev);
893
5578689a 894static inline unsigned int ipv6_advmss(struct net *net, unsigned int mtu)
1da177e4
LT
895{
896 mtu -= sizeof(struct ipv6hdr) + sizeof(struct tcphdr);
897
5578689a
DL
898 if (mtu < net->ipv6.sysctl.ip6_rt_min_advmss)
899 mtu = net->ipv6.sysctl.ip6_rt_min_advmss;
1da177e4
LT
900
901 /*
1ab1457c
YH
902 * Maximal non-jumbo IPv6 payload is IPV6_MAXPLEN and
903 * corresponding MSS is IPV6_MAXPLEN - tcp_header_size.
904 * IPV6_MAXPLEN is also valid and means: "any MSS,
1da177e4
LT
905 * rely only on pmtu discovery"
906 */
907 if (mtu > IPV6_MAXPLEN - sizeof(struct tcphdr))
908 mtu = IPV6_MAXPLEN;
909 return mtu;
910}
911
3b00944c
YH
912static struct dst_entry *icmp6_dst_gc_list;
913static DEFINE_SPINLOCK(icmp6_dst_lock);
5d0bbeeb 914
3b00944c 915struct dst_entry *icmp6_dst_alloc(struct net_device *dev,
1da177e4 916 struct neighbour *neigh,
3b00944c 917 struct in6_addr *addr)
1da177e4
LT
918{
919 struct rt6_info *rt;
920 struct inet6_dev *idev = in6_dev_get(dev);
5578689a 921 struct net *net = dev->nd_net;
1da177e4
LT
922
923 if (unlikely(idev == NULL))
924 return NULL;
925
f2fc6a54 926 rt = ip6_dst_alloc(net->ipv6.ip6_dst_ops);
1da177e4
LT
927 if (unlikely(rt == NULL)) {
928 in6_dev_put(idev);
929 goto out;
930 }
931
932 dev_hold(dev);
933 if (neigh)
934 neigh_hold(neigh);
935 else
936 neigh = ndisc_get_neigh(dev, addr);
937
938 rt->rt6i_dev = dev;
939 rt->rt6i_idev = idev;
940 rt->rt6i_nexthop = neigh;
941 atomic_set(&rt->u.dst.__refcnt, 1);
942 rt->u.dst.metrics[RTAX_HOPLIMIT-1] = 255;
943 rt->u.dst.metrics[RTAX_MTU-1] = ipv6_get_mtu(rt->rt6i_dev);
5578689a 944 rt->u.dst.metrics[RTAX_ADVMSS-1] = ipv6_advmss(net, dst_mtu(&rt->u.dst));
3b00944c 945 rt->u.dst.output = ip6_output;
1da177e4
LT
946
947#if 0 /* there's no chance to use these for ndisc */
1ab1457c
YH
948 rt->u.dst.flags = ipv6_addr_type(addr) & IPV6_ADDR_UNICAST
949 ? DST_HOST
1da177e4
LT
950 : 0;
951 ipv6_addr_copy(&rt->rt6i_dst.addr, addr);
952 rt->rt6i_dst.plen = 128;
953#endif
954
3b00944c
YH
955 spin_lock_bh(&icmp6_dst_lock);
956 rt->u.dst.next = icmp6_dst_gc_list;
957 icmp6_dst_gc_list = &rt->u.dst;
958 spin_unlock_bh(&icmp6_dst_lock);
1da177e4 959
5578689a 960 fib6_force_start_gc(net);
1da177e4
LT
961
962out:
40aa7b90 963 return &rt->u.dst;
1da177e4
LT
964}
965
3b00944c 966int icmp6_dst_gc(int *more)
1da177e4
LT
967{
968 struct dst_entry *dst, *next, **pprev;
969 int freed;
970
971 next = NULL;
1ab1457c 972 freed = 0;
5d0bbeeb 973
3b00944c
YH
974 spin_lock_bh(&icmp6_dst_lock);
975 pprev = &icmp6_dst_gc_list;
5d0bbeeb 976
1da177e4
LT
977 while ((dst = *pprev) != NULL) {
978 if (!atomic_read(&dst->__refcnt)) {
979 *pprev = dst->next;
980 dst_free(dst);
981 freed++;
982 } else {
983 pprev = &dst->next;
984 (*more)++;
985 }
986 }
987
3b00944c 988 spin_unlock_bh(&icmp6_dst_lock);
5d0bbeeb 989
1da177e4
LT
990 return freed;
991}
992
569d3645 993static int ip6_dst_gc(struct dst_ops *ops)
1da177e4 994{
6891a346 995 struct net *net = ops->dst_net;
1da177e4
LT
996 unsigned long now = jiffies;
997
6891a346
BT
998 if (time_after(net->ipv6.ip6_rt_last_gc + net->ipv6.sysctl.ip6_rt_gc_min_interval, now) &&
999 atomic_read(&net->ipv6.ip6_dst_ops->entries) <= net->ipv6.sysctl.ip6_rt_max_size)
1da177e4
LT
1000 goto out;
1001
6891a346
BT
1002 net->ipv6.ip6_rt_gc_expire++;
1003 fib6_run_gc(net->ipv6.ip6_rt_gc_expire, net);
1004 net->ipv6.ip6_rt_last_gc = now;
1005 if (atomic_read(&net->ipv6.ip6_dst_ops->entries) < net->ipv6.ip6_dst_ops->gc_thresh)
1006 net->ipv6.ip6_rt_gc_expire = net->ipv6.sysctl.ip6_rt_gc_timeout>>1;
1da177e4
LT
1007
1008out:
6891a346
BT
1009 net->ipv6.ip6_rt_gc_expire -= net->ipv6.ip6_rt_gc_expire>>net->ipv6.sysctl.ip6_rt_gc_elasticity;
1010 return (atomic_read(&net->ipv6.ip6_dst_ops->entries) > net->ipv6.sysctl.ip6_rt_max_size);
1da177e4
LT
1011}
1012
1013/* Clean host part of a prefix. Not necessary in radix tree,
1014 but results in cleaner routing tables.
1015
1016 Remove it only when all the things will work!
1017 */
1018
1019static int ipv6_get_mtu(struct net_device *dev)
1020{
1021 int mtu = IPV6_MIN_MTU;
1022 struct inet6_dev *idev;
1023
1024 idev = in6_dev_get(dev);
1025 if (idev) {
1026 mtu = idev->cnf.mtu6;
1027 in6_dev_put(idev);
1028 }
1029 return mtu;
1030}
1031
1032int ipv6_get_hoplimit(struct net_device *dev)
1033{
1034 int hoplimit = ipv6_devconf.hop_limit;
1035 struct inet6_dev *idev;
1036
1037 idev = in6_dev_get(dev);
1038 if (idev) {
1039 hoplimit = idev->cnf.hop_limit;
1040 in6_dev_put(idev);
1041 }
1042 return hoplimit;
1043}
1044
1045/*
1046 *
1047 */
1048
86872cb5 1049int ip6_route_add(struct fib6_config *cfg)
1da177e4
LT
1050{
1051 int err;
5578689a 1052 struct net *net = cfg->fc_nlinfo.nl_net;
1da177e4
LT
1053 struct rt6_info *rt = NULL;
1054 struct net_device *dev = NULL;
1055 struct inet6_dev *idev = NULL;
c71099ac 1056 struct fib6_table *table;
1da177e4
LT
1057 int addr_type;
1058
86872cb5 1059 if (cfg->fc_dst_len > 128 || cfg->fc_src_len > 128)
1da177e4
LT
1060 return -EINVAL;
1061#ifndef CONFIG_IPV6_SUBTREES
86872cb5 1062 if (cfg->fc_src_len)
1da177e4
LT
1063 return -EINVAL;
1064#endif
86872cb5 1065 if (cfg->fc_ifindex) {
1da177e4 1066 err = -ENODEV;
5578689a 1067 dev = dev_get_by_index(net, cfg->fc_ifindex);
1da177e4
LT
1068 if (!dev)
1069 goto out;
1070 idev = in6_dev_get(dev);
1071 if (!idev)
1072 goto out;
1073 }
1074
86872cb5
TG
1075 if (cfg->fc_metric == 0)
1076 cfg->fc_metric = IP6_RT_PRIO_USER;
1da177e4 1077
5578689a 1078 table = fib6_new_table(net, cfg->fc_table);
c71099ac
TG
1079 if (table == NULL) {
1080 err = -ENOBUFS;
1081 goto out;
1082 }
1083
f2fc6a54 1084 rt = ip6_dst_alloc(net->ipv6.ip6_dst_ops);
1da177e4
LT
1085
1086 if (rt == NULL) {
1087 err = -ENOMEM;
1088 goto out;
1089 }
1090
1091 rt->u.dst.obsolete = -1;
86872cb5 1092 rt->rt6i_expires = jiffies + clock_t_to_jiffies(cfg->fc_expires);
1da177e4 1093
86872cb5
TG
1094 if (cfg->fc_protocol == RTPROT_UNSPEC)
1095 cfg->fc_protocol = RTPROT_BOOT;
1096 rt->rt6i_protocol = cfg->fc_protocol;
1097
1098 addr_type = ipv6_addr_type(&cfg->fc_dst);
1da177e4
LT
1099
1100 if (addr_type & IPV6_ADDR_MULTICAST)
1101 rt->u.dst.input = ip6_mc_input;
1102 else
1103 rt->u.dst.input = ip6_forward;
1104
1105 rt->u.dst.output = ip6_output;
1106
86872cb5
TG
1107 ipv6_addr_prefix(&rt->rt6i_dst.addr, &cfg->fc_dst, cfg->fc_dst_len);
1108 rt->rt6i_dst.plen = cfg->fc_dst_len;
1da177e4
LT
1109 if (rt->rt6i_dst.plen == 128)
1110 rt->u.dst.flags = DST_HOST;
1111
1112#ifdef CONFIG_IPV6_SUBTREES
86872cb5
TG
1113 ipv6_addr_prefix(&rt->rt6i_src.addr, &cfg->fc_src, cfg->fc_src_len);
1114 rt->rt6i_src.plen = cfg->fc_src_len;
1da177e4
LT
1115#endif
1116
86872cb5 1117 rt->rt6i_metric = cfg->fc_metric;
1da177e4
LT
1118
1119 /* We cannot add true routes via loopback here,
1120 they would result in kernel looping; promote them to reject routes
1121 */
86872cb5 1122 if ((cfg->fc_flags & RTF_REJECT) ||
1da177e4
LT
1123 (dev && (dev->flags&IFF_LOOPBACK) && !(addr_type&IPV6_ADDR_LOOPBACK))) {
1124 /* hold loopback dev/idev if we haven't done so. */
5578689a 1125 if (dev != net->loopback_dev) {
1da177e4
LT
1126 if (dev) {
1127 dev_put(dev);
1128 in6_dev_put(idev);
1129 }
5578689a 1130 dev = net->loopback_dev;
1da177e4
LT
1131 dev_hold(dev);
1132 idev = in6_dev_get(dev);
1133 if (!idev) {
1134 err = -ENODEV;
1135 goto out;
1136 }
1137 }
1138 rt->u.dst.output = ip6_pkt_discard_out;
1139 rt->u.dst.input = ip6_pkt_discard;
1140 rt->u.dst.error = -ENETUNREACH;
1141 rt->rt6i_flags = RTF_REJECT|RTF_NONEXTHOP;
1142 goto install_route;
1143 }
1144
86872cb5 1145 if (cfg->fc_flags & RTF_GATEWAY) {
1da177e4
LT
1146 struct in6_addr *gw_addr;
1147 int gwa_type;
1148
86872cb5
TG
1149 gw_addr = &cfg->fc_gateway;
1150 ipv6_addr_copy(&rt->rt6i_gateway, gw_addr);
1da177e4
LT
1151 gwa_type = ipv6_addr_type(gw_addr);
1152
1153 if (gwa_type != (IPV6_ADDR_LINKLOCAL|IPV6_ADDR_UNICAST)) {
1154 struct rt6_info *grt;
1155
1156 /* IPv6 strictly inhibits using not link-local
1157 addresses as nexthop address.
1158 Otherwise, router will not able to send redirects.
1159 It is very good, but in some (rare!) circumstances
1160 (SIT, PtP, NBMA NOARP links) it is handy to allow
1161 some exceptions. --ANK
1162 */
1163 err = -EINVAL;
1164 if (!(gwa_type&IPV6_ADDR_UNICAST))
1165 goto out;
1166
5578689a 1167 grt = rt6_lookup(net, gw_addr, NULL, cfg->fc_ifindex, 1);
1da177e4
LT
1168
1169 err = -EHOSTUNREACH;
1170 if (grt == NULL)
1171 goto out;
1172 if (dev) {
1173 if (dev != grt->rt6i_dev) {
1174 dst_release(&grt->u.dst);
1175 goto out;
1176 }
1177 } else {
1178 dev = grt->rt6i_dev;
1179 idev = grt->rt6i_idev;
1180 dev_hold(dev);
1181 in6_dev_hold(grt->rt6i_idev);
1182 }
1183 if (!(grt->rt6i_flags&RTF_GATEWAY))
1184 err = 0;
1185 dst_release(&grt->u.dst);
1186
1187 if (err)
1188 goto out;
1189 }
1190 err = -EINVAL;
1191 if (dev == NULL || (dev->flags&IFF_LOOPBACK))
1192 goto out;
1193 }
1194
1195 err = -ENODEV;
1196 if (dev == NULL)
1197 goto out;
1198
86872cb5 1199 if (cfg->fc_flags & (RTF_GATEWAY | RTF_NONEXTHOP)) {
1da177e4
LT
1200 rt->rt6i_nexthop = __neigh_lookup_errno(&nd_tbl, &rt->rt6i_gateway, dev);
1201 if (IS_ERR(rt->rt6i_nexthop)) {
1202 err = PTR_ERR(rt->rt6i_nexthop);
1203 rt->rt6i_nexthop = NULL;
1204 goto out;
1205 }
1206 }
1207
86872cb5 1208 rt->rt6i_flags = cfg->fc_flags;
1da177e4
LT
1209
1210install_route:
86872cb5
TG
1211 if (cfg->fc_mx) {
1212 struct nlattr *nla;
1213 int remaining;
1214
1215 nla_for_each_attr(nla, cfg->fc_mx, cfg->fc_mx_len, remaining) {
8f4c1f9b 1216 int type = nla_type(nla);
86872cb5
TG
1217
1218 if (type) {
1219 if (type > RTAX_MAX) {
1da177e4
LT
1220 err = -EINVAL;
1221 goto out;
1222 }
86872cb5
TG
1223
1224 rt->u.dst.metrics[type - 1] = nla_get_u32(nla);
1da177e4 1225 }
1da177e4
LT
1226 }
1227 }
1228
1229 if (rt->u.dst.metrics[RTAX_HOPLIMIT-1] == 0)
1230 rt->u.dst.metrics[RTAX_HOPLIMIT-1] = -1;
1231 if (!rt->u.dst.metrics[RTAX_MTU-1])
1232 rt->u.dst.metrics[RTAX_MTU-1] = ipv6_get_mtu(dev);
1233 if (!rt->u.dst.metrics[RTAX_ADVMSS-1])
5578689a 1234 rt->u.dst.metrics[RTAX_ADVMSS-1] = ipv6_advmss(net, dst_mtu(&rt->u.dst));
1da177e4
LT
1235 rt->u.dst.dev = dev;
1236 rt->rt6i_idev = idev;
c71099ac 1237 rt->rt6i_table = table;
63152fc0
DL
1238
1239 cfg->fc_nlinfo.nl_net = dev->nd_net;
1240
86872cb5 1241 return __ip6_ins_rt(rt, &cfg->fc_nlinfo);
1da177e4
LT
1242
1243out:
1244 if (dev)
1245 dev_put(dev);
1246 if (idev)
1247 in6_dev_put(idev);
1248 if (rt)
40aa7b90 1249 dst_free(&rt->u.dst);
1da177e4
LT
1250 return err;
1251}
1252
86872cb5 1253static int __ip6_del_rt(struct rt6_info *rt, struct nl_info *info)
1da177e4
LT
1254{
1255 int err;
c71099ac 1256 struct fib6_table *table;
8ed67789 1257 struct net *net = rt->rt6i_dev->nd_net;
1da177e4 1258
8ed67789 1259 if (rt == net->ipv6.ip6_null_entry)
6c813a72
PM
1260 return -ENOENT;
1261
c71099ac
TG
1262 table = rt->rt6i_table;
1263 write_lock_bh(&table->tb6_lock);
1da177e4 1264
86872cb5 1265 err = fib6_del(rt, info);
1da177e4
LT
1266 dst_release(&rt->u.dst);
1267
c71099ac 1268 write_unlock_bh(&table->tb6_lock);
1da177e4
LT
1269
1270 return err;
1271}
1272
e0a1ad73
TG
1273int ip6_del_rt(struct rt6_info *rt)
1274{
4d1169c1 1275 struct nl_info info = {
5578689a 1276 .nl_net = rt->rt6i_dev->nd_net,
4d1169c1 1277 };
528c4ceb 1278 return __ip6_del_rt(rt, &info);
e0a1ad73
TG
1279}
1280
86872cb5 1281static int ip6_route_del(struct fib6_config *cfg)
1da177e4 1282{
c71099ac 1283 struct fib6_table *table;
1da177e4
LT
1284 struct fib6_node *fn;
1285 struct rt6_info *rt;
1286 int err = -ESRCH;
1287
5578689a 1288 table = fib6_get_table(cfg->fc_nlinfo.nl_net, cfg->fc_table);
c71099ac
TG
1289 if (table == NULL)
1290 return err;
1291
1292 read_lock_bh(&table->tb6_lock);
1da177e4 1293
c71099ac 1294 fn = fib6_locate(&table->tb6_root,
86872cb5
TG
1295 &cfg->fc_dst, cfg->fc_dst_len,
1296 &cfg->fc_src, cfg->fc_src_len);
1ab1457c 1297
1da177e4 1298 if (fn) {
7cc48263 1299 for (rt = fn->leaf; rt; rt = rt->u.dst.rt6_next) {
86872cb5 1300 if (cfg->fc_ifindex &&
1da177e4 1301 (rt->rt6i_dev == NULL ||
86872cb5 1302 rt->rt6i_dev->ifindex != cfg->fc_ifindex))
1da177e4 1303 continue;
86872cb5
TG
1304 if (cfg->fc_flags & RTF_GATEWAY &&
1305 !ipv6_addr_equal(&cfg->fc_gateway, &rt->rt6i_gateway))
1da177e4 1306 continue;
86872cb5 1307 if (cfg->fc_metric && cfg->fc_metric != rt->rt6i_metric)
1da177e4
LT
1308 continue;
1309 dst_hold(&rt->u.dst);
c71099ac 1310 read_unlock_bh(&table->tb6_lock);
1da177e4 1311
86872cb5 1312 return __ip6_del_rt(rt, &cfg->fc_nlinfo);
1da177e4
LT
1313 }
1314 }
c71099ac 1315 read_unlock_bh(&table->tb6_lock);
1da177e4
LT
1316
1317 return err;
1318}
1319
1320/*
1321 * Handle redirects
1322 */
a6279458
YH
1323struct ip6rd_flowi {
1324 struct flowi fl;
1325 struct in6_addr gateway;
1326};
1327
8ed67789
DL
1328static struct rt6_info *__ip6_route_redirect(struct net *net,
1329 struct fib6_table *table,
a6279458
YH
1330 struct flowi *fl,
1331 int flags)
1da177e4 1332{
a6279458
YH
1333 struct ip6rd_flowi *rdfl = (struct ip6rd_flowi *)fl;
1334 struct rt6_info *rt;
e843b9e1 1335 struct fib6_node *fn;
c71099ac 1336
1da177e4 1337 /*
e843b9e1
YH
1338 * Get the "current" route for this destination and
1339 * check if the redirect has come from approriate router.
1340 *
1341 * RFC 2461 specifies that redirects should only be
1342 * accepted if they come from the nexthop to the target.
1343 * Due to the way the routes are chosen, this notion
1344 * is a bit fuzzy and one might need to check all possible
1345 * routes.
1da177e4 1346 */
1da177e4 1347
c71099ac 1348 read_lock_bh(&table->tb6_lock);
a6279458 1349 fn = fib6_lookup(&table->tb6_root, &fl->fl6_dst, &fl->fl6_src);
e843b9e1 1350restart:
7cc48263 1351 for (rt = fn->leaf; rt; rt = rt->u.dst.rt6_next) {
e843b9e1
YH
1352 /*
1353 * Current route is on-link; redirect is always invalid.
1354 *
1355 * Seems, previous statement is not true. It could
1356 * be node, which looks for us as on-link (f.e. proxy ndisc)
1357 * But then router serving it might decide, that we should
1358 * know truth 8)8) --ANK (980726).
1359 */
1360 if (rt6_check_expired(rt))
1361 continue;
1362 if (!(rt->rt6i_flags & RTF_GATEWAY))
1363 continue;
a6279458 1364 if (fl->oif != rt->rt6i_dev->ifindex)
e843b9e1 1365 continue;
a6279458 1366 if (!ipv6_addr_equal(&rdfl->gateway, &rt->rt6i_gateway))
e843b9e1
YH
1367 continue;
1368 break;
1369 }
a6279458 1370
cb15d9c2 1371 if (!rt)
8ed67789
DL
1372 rt = net->ipv6.ip6_null_entry;
1373 BACKTRACK(net, &fl->fl6_src);
cb15d9c2 1374out:
a6279458
YH
1375 dst_hold(&rt->u.dst);
1376
c71099ac 1377 read_unlock_bh(&table->tb6_lock);
e843b9e1 1378
a6279458
YH
1379 return rt;
1380};
1381
1382static struct rt6_info *ip6_route_redirect(struct in6_addr *dest,
1383 struct in6_addr *src,
1384 struct in6_addr *gateway,
1385 struct net_device *dev)
1386{
adaa70bb 1387 int flags = RT6_LOOKUP_F_HAS_SADDR;
5578689a 1388 struct net *net = dev->nd_net;
a6279458
YH
1389 struct ip6rd_flowi rdfl = {
1390 .fl = {
1391 .oif = dev->ifindex,
1392 .nl_u = {
1393 .ip6_u = {
1394 .daddr = *dest,
1395 .saddr = *src,
1396 },
1397 },
1398 },
1399 .gateway = *gateway,
1400 };
adaa70bb
TG
1401
1402 if (rt6_need_strict(dest))
1403 flags |= RT6_LOOKUP_F_IFACE;
a6279458 1404
5578689a 1405 return (struct rt6_info *)fib6_rule_lookup(net, (struct flowi *)&rdfl,
58f09b78 1406 flags, __ip6_route_redirect);
a6279458
YH
1407}
1408
1409void rt6_redirect(struct in6_addr *dest, struct in6_addr *src,
1410 struct in6_addr *saddr,
1411 struct neighbour *neigh, u8 *lladdr, int on_link)
1412{
1413 struct rt6_info *rt, *nrt = NULL;
1414 struct netevent_redirect netevent;
8ed67789 1415 struct net *net = neigh->dev->nd_net;
a6279458
YH
1416
1417 rt = ip6_route_redirect(dest, src, saddr, neigh->dev);
1418
8ed67789 1419 if (rt == net->ipv6.ip6_null_entry) {
1da177e4
LT
1420 if (net_ratelimit())
1421 printk(KERN_DEBUG "rt6_redirect: source isn't a valid nexthop "
1422 "for redirect target\n");
a6279458 1423 goto out;
1da177e4
LT
1424 }
1425
1da177e4
LT
1426 /*
1427 * We have finally decided to accept it.
1428 */
1429
1ab1457c 1430 neigh_update(neigh, lladdr, NUD_STALE,
1da177e4
LT
1431 NEIGH_UPDATE_F_WEAK_OVERRIDE|
1432 NEIGH_UPDATE_F_OVERRIDE|
1433 (on_link ? 0 : (NEIGH_UPDATE_F_OVERRIDE_ISROUTER|
1434 NEIGH_UPDATE_F_ISROUTER))
1435 );
1436
1437 /*
1438 * Redirect received -> path was valid.
1439 * Look, redirects are sent only in response to data packets,
1440 * so that this nexthop apparently is reachable. --ANK
1441 */
1442 dst_confirm(&rt->u.dst);
1443
1444 /* Duplicate redirect: silently ignore. */
1445 if (neigh == rt->u.dst.neighbour)
1446 goto out;
1447
1448 nrt = ip6_rt_copy(rt);
1449 if (nrt == NULL)
1450 goto out;
1451
1452 nrt->rt6i_flags = RTF_GATEWAY|RTF_UP|RTF_DYNAMIC|RTF_CACHE;
1453 if (on_link)
1454 nrt->rt6i_flags &= ~RTF_GATEWAY;
1455
1456 ipv6_addr_copy(&nrt->rt6i_dst.addr, dest);
1457 nrt->rt6i_dst.plen = 128;
1458 nrt->u.dst.flags |= DST_HOST;
1459
1460 ipv6_addr_copy(&nrt->rt6i_gateway, (struct in6_addr*)neigh->primary_key);
1461 nrt->rt6i_nexthop = neigh_clone(neigh);
1462 /* Reset pmtu, it may be better */
1463 nrt->u.dst.metrics[RTAX_MTU-1] = ipv6_get_mtu(neigh->dev);
5578689a
DL
1464 nrt->u.dst.metrics[RTAX_ADVMSS-1] = ipv6_advmss(neigh->dev->nd_net,
1465 dst_mtu(&nrt->u.dst));
1da177e4 1466
40e22e8f 1467 if (ip6_ins_rt(nrt))
1da177e4
LT
1468 goto out;
1469
8d71740c
TT
1470 netevent.old = &rt->u.dst;
1471 netevent.new = &nrt->u.dst;
1472 call_netevent_notifiers(NETEVENT_REDIRECT, &netevent);
1473
1da177e4 1474 if (rt->rt6i_flags&RTF_CACHE) {
e0a1ad73 1475 ip6_del_rt(rt);
1da177e4
LT
1476 return;
1477 }
1478
1479out:
1ab1457c 1480 dst_release(&rt->u.dst);
1da177e4
LT
1481 return;
1482}
1483
1484/*
1485 * Handle ICMP "packet too big" messages
1486 * i.e. Path MTU discovery
1487 */
1488
1489void rt6_pmtu_discovery(struct in6_addr *daddr, struct in6_addr *saddr,
1490 struct net_device *dev, u32 pmtu)
1491{
1492 struct rt6_info *rt, *nrt;
5578689a 1493 struct net *net = dev->nd_net;
1da177e4
LT
1494 int allfrag = 0;
1495
5578689a 1496 rt = rt6_lookup(net, daddr, saddr, dev->ifindex, 0);
1da177e4
LT
1497 if (rt == NULL)
1498 return;
1499
1500 if (pmtu >= dst_mtu(&rt->u.dst))
1501 goto out;
1502
1503 if (pmtu < IPV6_MIN_MTU) {
1504 /*
1ab1457c 1505 * According to RFC2460, PMTU is set to the IPv6 Minimum Link
1da177e4
LT
1506 * MTU (1280) and a fragment header should always be included
1507 * after a node receiving Too Big message reporting PMTU is
1508 * less than the IPv6 Minimum Link MTU.
1509 */
1510 pmtu = IPV6_MIN_MTU;
1511 allfrag = 1;
1512 }
1513
1514 /* New mtu received -> path was valid.
1515 They are sent only in response to data packets,
1516 so that this nexthop apparently is reachable. --ANK
1517 */
1518 dst_confirm(&rt->u.dst);
1519
1520 /* Host route. If it is static, it would be better
1521 not to override it, but add new one, so that
1522 when cache entry will expire old pmtu
1523 would return automatically.
1524 */
1525 if (rt->rt6i_flags & RTF_CACHE) {
1526 rt->u.dst.metrics[RTAX_MTU-1] = pmtu;
1527 if (allfrag)
1528 rt->u.dst.metrics[RTAX_FEATURES-1] |= RTAX_FEATURE_ALLFRAG;
5578689a 1529 dst_set_expires(&rt->u.dst, net->ipv6.sysctl.ip6_rt_mtu_expires);
1da177e4
LT
1530 rt->rt6i_flags |= RTF_MODIFIED|RTF_EXPIRES;
1531 goto out;
1532 }
1533
1534 /* Network route.
1535 Two cases are possible:
1536 1. It is connected route. Action: COW
1537 2. It is gatewayed route or NONEXTHOP route. Action: clone it.
1538 */
d5315b50 1539 if (!rt->rt6i_nexthop && !(rt->rt6i_flags & RTF_NONEXTHOP))
a1e78363 1540 nrt = rt6_alloc_cow(rt, daddr, saddr);
d5315b50
YH
1541 else
1542 nrt = rt6_alloc_clone(rt, daddr);
a1e78363 1543
d5315b50 1544 if (nrt) {
a1e78363
YH
1545 nrt->u.dst.metrics[RTAX_MTU-1] = pmtu;
1546 if (allfrag)
1547 nrt->u.dst.metrics[RTAX_FEATURES-1] |= RTAX_FEATURE_ALLFRAG;
1548
1549 /* According to RFC 1981, detecting PMTU increase shouldn't be
1550 * happened within 5 mins, the recommended timer is 10 mins.
1551 * Here this route expiration time is set to ip6_rt_mtu_expires
1552 * which is 10 mins. After 10 mins the decreased pmtu is expired
1553 * and detecting PMTU increase will be automatically happened.
1554 */
5578689a 1555 dst_set_expires(&nrt->u.dst, net->ipv6.sysctl.ip6_rt_mtu_expires);
a1e78363
YH
1556 nrt->rt6i_flags |= RTF_DYNAMIC|RTF_EXPIRES;
1557
40e22e8f 1558 ip6_ins_rt(nrt);
1da177e4 1559 }
1da177e4
LT
1560out:
1561 dst_release(&rt->u.dst);
1562}
1563
1564/*
1565 * Misc support functions
1566 */
1567
1568static struct rt6_info * ip6_rt_copy(struct rt6_info *ort)
1569{
f2fc6a54
BT
1570 struct net *net = ort->rt6i_dev->nd_net;
1571 struct rt6_info *rt = ip6_dst_alloc(net->ipv6.ip6_dst_ops);
1da177e4
LT
1572
1573 if (rt) {
1574 rt->u.dst.input = ort->u.dst.input;
1575 rt->u.dst.output = ort->u.dst.output;
1576
1577 memcpy(rt->u.dst.metrics, ort->u.dst.metrics, RTAX_MAX*sizeof(u32));
22e1e4d8 1578 rt->u.dst.error = ort->u.dst.error;
1da177e4
LT
1579 rt->u.dst.dev = ort->u.dst.dev;
1580 if (rt->u.dst.dev)
1581 dev_hold(rt->u.dst.dev);
1582 rt->rt6i_idev = ort->rt6i_idev;
1583 if (rt->rt6i_idev)
1584 in6_dev_hold(rt->rt6i_idev);
1585 rt->u.dst.lastuse = jiffies;
1586 rt->rt6i_expires = 0;
1587
1588 ipv6_addr_copy(&rt->rt6i_gateway, &ort->rt6i_gateway);
1589 rt->rt6i_flags = ort->rt6i_flags & ~RTF_EXPIRES;
1590 rt->rt6i_metric = 0;
1591
1592 memcpy(&rt->rt6i_dst, &ort->rt6i_dst, sizeof(struct rt6key));
1593#ifdef CONFIG_IPV6_SUBTREES
1594 memcpy(&rt->rt6i_src, &ort->rt6i_src, sizeof(struct rt6key));
1595#endif
c71099ac 1596 rt->rt6i_table = ort->rt6i_table;
1da177e4
LT
1597 }
1598 return rt;
1599}
1600
70ceb4f5 1601#ifdef CONFIG_IPV6_ROUTE_INFO
efa2cea0
DL
1602static struct rt6_info *rt6_get_route_info(struct net *net,
1603 struct in6_addr *prefix, int prefixlen,
70ceb4f5
YH
1604 struct in6_addr *gwaddr, int ifindex)
1605{
1606 struct fib6_node *fn;
1607 struct rt6_info *rt = NULL;
c71099ac
TG
1608 struct fib6_table *table;
1609
efa2cea0 1610 table = fib6_get_table(net, RT6_TABLE_INFO);
c71099ac
TG
1611 if (table == NULL)
1612 return NULL;
70ceb4f5 1613
c71099ac
TG
1614 write_lock_bh(&table->tb6_lock);
1615 fn = fib6_locate(&table->tb6_root, prefix ,prefixlen, NULL, 0);
70ceb4f5
YH
1616 if (!fn)
1617 goto out;
1618
7cc48263 1619 for (rt = fn->leaf; rt; rt = rt->u.dst.rt6_next) {
70ceb4f5
YH
1620 if (rt->rt6i_dev->ifindex != ifindex)
1621 continue;
1622 if ((rt->rt6i_flags & (RTF_ROUTEINFO|RTF_GATEWAY)) != (RTF_ROUTEINFO|RTF_GATEWAY))
1623 continue;
1624 if (!ipv6_addr_equal(&rt->rt6i_gateway, gwaddr))
1625 continue;
1626 dst_hold(&rt->u.dst);
1627 break;
1628 }
1629out:
c71099ac 1630 write_unlock_bh(&table->tb6_lock);
70ceb4f5
YH
1631 return rt;
1632}
1633
efa2cea0
DL
1634static struct rt6_info *rt6_add_route_info(struct net *net,
1635 struct in6_addr *prefix, int prefixlen,
70ceb4f5
YH
1636 struct in6_addr *gwaddr, int ifindex,
1637 unsigned pref)
1638{
86872cb5
TG
1639 struct fib6_config cfg = {
1640 .fc_table = RT6_TABLE_INFO,
238fc7ea 1641 .fc_metric = IP6_RT_PRIO_USER,
86872cb5
TG
1642 .fc_ifindex = ifindex,
1643 .fc_dst_len = prefixlen,
1644 .fc_flags = RTF_GATEWAY | RTF_ADDRCONF | RTF_ROUTEINFO |
1645 RTF_UP | RTF_PREF(pref),
efa2cea0
DL
1646 .fc_nlinfo.pid = 0,
1647 .fc_nlinfo.nlh = NULL,
1648 .fc_nlinfo.nl_net = net,
86872cb5
TG
1649 };
1650
1651 ipv6_addr_copy(&cfg.fc_dst, prefix);
1652 ipv6_addr_copy(&cfg.fc_gateway, gwaddr);
70ceb4f5 1653
e317da96
YH
1654 /* We should treat it as a default route if prefix length is 0. */
1655 if (!prefixlen)
86872cb5 1656 cfg.fc_flags |= RTF_DEFAULT;
70ceb4f5 1657
86872cb5 1658 ip6_route_add(&cfg);
70ceb4f5 1659
efa2cea0 1660 return rt6_get_route_info(net, prefix, prefixlen, gwaddr, ifindex);
70ceb4f5
YH
1661}
1662#endif
1663
1da177e4 1664struct rt6_info *rt6_get_dflt_router(struct in6_addr *addr, struct net_device *dev)
1ab1457c 1665{
1da177e4 1666 struct rt6_info *rt;
c71099ac 1667 struct fib6_table *table;
1da177e4 1668
5578689a 1669 table = fib6_get_table(dev->nd_net, RT6_TABLE_DFLT);
c71099ac
TG
1670 if (table == NULL)
1671 return NULL;
1da177e4 1672
c71099ac 1673 write_lock_bh(&table->tb6_lock);
7cc48263 1674 for (rt = table->tb6_root.leaf; rt; rt=rt->u.dst.rt6_next) {
1da177e4 1675 if (dev == rt->rt6i_dev &&
045927ff 1676 ((rt->rt6i_flags & (RTF_ADDRCONF | RTF_DEFAULT)) == (RTF_ADDRCONF | RTF_DEFAULT)) &&
1da177e4
LT
1677 ipv6_addr_equal(&rt->rt6i_gateway, addr))
1678 break;
1679 }
1680 if (rt)
1681 dst_hold(&rt->u.dst);
c71099ac 1682 write_unlock_bh(&table->tb6_lock);
1da177e4
LT
1683 return rt;
1684}
1685
c7dc89c0
FT
1686EXPORT_SYMBOL(rt6_get_dflt_router);
1687
1da177e4 1688struct rt6_info *rt6_add_dflt_router(struct in6_addr *gwaddr,
ebacaaa0
YH
1689 struct net_device *dev,
1690 unsigned int pref)
1da177e4 1691{
86872cb5
TG
1692 struct fib6_config cfg = {
1693 .fc_table = RT6_TABLE_DFLT,
238fc7ea 1694 .fc_metric = IP6_RT_PRIO_USER,
86872cb5
TG
1695 .fc_ifindex = dev->ifindex,
1696 .fc_flags = RTF_GATEWAY | RTF_ADDRCONF | RTF_DEFAULT |
1697 RTF_UP | RTF_EXPIRES | RTF_PREF(pref),
5578689a
DL
1698 .fc_nlinfo.pid = 0,
1699 .fc_nlinfo.nlh = NULL,
1700 .fc_nlinfo.nl_net = dev->nd_net,
86872cb5 1701 };
1da177e4 1702
86872cb5 1703 ipv6_addr_copy(&cfg.fc_gateway, gwaddr);
1da177e4 1704
86872cb5 1705 ip6_route_add(&cfg);
1da177e4 1706
1da177e4
LT
1707 return rt6_get_dflt_router(gwaddr, dev);
1708}
1709
7b4da532 1710void rt6_purge_dflt_routers(struct net *net)
1da177e4
LT
1711{
1712 struct rt6_info *rt;
c71099ac
TG
1713 struct fib6_table *table;
1714
1715 /* NOTE: Keep consistent with rt6_get_dflt_router */
7b4da532 1716 table = fib6_get_table(net, RT6_TABLE_DFLT);
c71099ac
TG
1717 if (table == NULL)
1718 return;
1da177e4
LT
1719
1720restart:
c71099ac 1721 read_lock_bh(&table->tb6_lock);
7cc48263 1722 for (rt = table->tb6_root.leaf; rt; rt = rt->u.dst.rt6_next) {
1da177e4
LT
1723 if (rt->rt6i_flags & (RTF_DEFAULT | RTF_ADDRCONF)) {
1724 dst_hold(&rt->u.dst);
c71099ac 1725 read_unlock_bh(&table->tb6_lock);
e0a1ad73 1726 ip6_del_rt(rt);
1da177e4
LT
1727 goto restart;
1728 }
1729 }
c71099ac 1730 read_unlock_bh(&table->tb6_lock);
1da177e4
LT
1731}
1732
5578689a
DL
1733static void rtmsg_to_fib6_config(struct net *net,
1734 struct in6_rtmsg *rtmsg,
86872cb5
TG
1735 struct fib6_config *cfg)
1736{
1737 memset(cfg, 0, sizeof(*cfg));
1738
1739 cfg->fc_table = RT6_TABLE_MAIN;
1740 cfg->fc_ifindex = rtmsg->rtmsg_ifindex;
1741 cfg->fc_metric = rtmsg->rtmsg_metric;
1742 cfg->fc_expires = rtmsg->rtmsg_info;
1743 cfg->fc_dst_len = rtmsg->rtmsg_dst_len;
1744 cfg->fc_src_len = rtmsg->rtmsg_src_len;
1745 cfg->fc_flags = rtmsg->rtmsg_flags;
1746
5578689a 1747 cfg->fc_nlinfo.nl_net = net;
f1243c2d 1748
86872cb5
TG
1749 ipv6_addr_copy(&cfg->fc_dst, &rtmsg->rtmsg_dst);
1750 ipv6_addr_copy(&cfg->fc_src, &rtmsg->rtmsg_src);
1751 ipv6_addr_copy(&cfg->fc_gateway, &rtmsg->rtmsg_gateway);
1752}
1753
5578689a 1754int ipv6_route_ioctl(struct net *net, unsigned int cmd, void __user *arg)
1da177e4 1755{
86872cb5 1756 struct fib6_config cfg;
1da177e4
LT
1757 struct in6_rtmsg rtmsg;
1758 int err;
1759
1760 switch(cmd) {
1761 case SIOCADDRT: /* Add a route */
1762 case SIOCDELRT: /* Delete a route */
1763 if (!capable(CAP_NET_ADMIN))
1764 return -EPERM;
1765 err = copy_from_user(&rtmsg, arg,
1766 sizeof(struct in6_rtmsg));
1767 if (err)
1768 return -EFAULT;
86872cb5 1769
5578689a 1770 rtmsg_to_fib6_config(net, &rtmsg, &cfg);
86872cb5 1771
1da177e4
LT
1772 rtnl_lock();
1773 switch (cmd) {
1774 case SIOCADDRT:
86872cb5 1775 err = ip6_route_add(&cfg);
1da177e4
LT
1776 break;
1777 case SIOCDELRT:
86872cb5 1778 err = ip6_route_del(&cfg);
1da177e4
LT
1779 break;
1780 default:
1781 err = -EINVAL;
1782 }
1783 rtnl_unlock();
1784
1785 return err;
3ff50b79 1786 }
1da177e4
LT
1787
1788 return -EINVAL;
1789}
1790
1791/*
1792 * Drop the packet on the floor
1793 */
1794
50eb431d 1795static int ip6_pkt_drop(struct sk_buff *skb, int code, int ipstats_mib_noroutes)
1da177e4 1796{
612f09e8
YH
1797 int type;
1798 switch (ipstats_mib_noroutes) {
1799 case IPSTATS_MIB_INNOROUTES:
0660e03f 1800 type = ipv6_addr_type(&ipv6_hdr(skb)->daddr);
612f09e8
YH
1801 if (type == IPV6_ADDR_ANY || type == IPV6_ADDR_RESERVED) {
1802 IP6_INC_STATS(ip6_dst_idev(skb->dst), IPSTATS_MIB_INADDRERRORS);
1803 break;
1804 }
1805 /* FALLTHROUGH */
1806 case IPSTATS_MIB_OUTNOROUTES:
1807 IP6_INC_STATS(ip6_dst_idev(skb->dst), ipstats_mib_noroutes);
1808 break;
1809 }
9ce8ade0 1810 icmpv6_send(skb, ICMPV6_DEST_UNREACH, code, 0, skb->dev);
1da177e4
LT
1811 kfree_skb(skb);
1812 return 0;
1813}
1814
9ce8ade0
TG
1815static int ip6_pkt_discard(struct sk_buff *skb)
1816{
612f09e8 1817 return ip6_pkt_drop(skb, ICMPV6_NOROUTE, IPSTATS_MIB_INNOROUTES);
9ce8ade0
TG
1818}
1819
20380731 1820static int ip6_pkt_discard_out(struct sk_buff *skb)
1da177e4
LT
1821{
1822 skb->dev = skb->dst->dev;
612f09e8 1823 return ip6_pkt_drop(skb, ICMPV6_NOROUTE, IPSTATS_MIB_OUTNOROUTES);
1da177e4
LT
1824}
1825
6723ab54
DM
1826#ifdef CONFIG_IPV6_MULTIPLE_TABLES
1827
9ce8ade0
TG
1828static int ip6_pkt_prohibit(struct sk_buff *skb)
1829{
612f09e8 1830 return ip6_pkt_drop(skb, ICMPV6_ADM_PROHIBITED, IPSTATS_MIB_INNOROUTES);
9ce8ade0
TG
1831}
1832
1833static int ip6_pkt_prohibit_out(struct sk_buff *skb)
1834{
1835 skb->dev = skb->dst->dev;
612f09e8 1836 return ip6_pkt_drop(skb, ICMPV6_ADM_PROHIBITED, IPSTATS_MIB_OUTNOROUTES);
9ce8ade0
TG
1837}
1838
6723ab54
DM
1839#endif
1840
1da177e4
LT
1841/*
1842 * Allocate a dst for local (unicast / anycast) address.
1843 */
1844
1845struct rt6_info *addrconf_dst_alloc(struct inet6_dev *idev,
1846 const struct in6_addr *addr,
1847 int anycast)
1848{
5578689a 1849 struct net *net = idev->dev->nd_net;
f2fc6a54 1850 struct rt6_info *rt = ip6_dst_alloc(net->ipv6.ip6_dst_ops);
1da177e4
LT
1851
1852 if (rt == NULL)
1853 return ERR_PTR(-ENOMEM);
1854
5578689a 1855 dev_hold(net->loopback_dev);
1da177e4
LT
1856 in6_dev_hold(idev);
1857
1858 rt->u.dst.flags = DST_HOST;
1859 rt->u.dst.input = ip6_input;
1860 rt->u.dst.output = ip6_output;
5578689a 1861 rt->rt6i_dev = net->loopback_dev;
1da177e4
LT
1862 rt->rt6i_idev = idev;
1863 rt->u.dst.metrics[RTAX_MTU-1] = ipv6_get_mtu(rt->rt6i_dev);
5578689a 1864 rt->u.dst.metrics[RTAX_ADVMSS-1] = ipv6_advmss(net, dst_mtu(&rt->u.dst));
1da177e4
LT
1865 rt->u.dst.metrics[RTAX_HOPLIMIT-1] = -1;
1866 rt->u.dst.obsolete = -1;
1867
1868 rt->rt6i_flags = RTF_UP | RTF_NONEXTHOP;
58c4fb86
YH
1869 if (anycast)
1870 rt->rt6i_flags |= RTF_ANYCAST;
1871 else
1da177e4
LT
1872 rt->rt6i_flags |= RTF_LOCAL;
1873 rt->rt6i_nexthop = ndisc_get_neigh(rt->rt6i_dev, &rt->rt6i_gateway);
1874 if (rt->rt6i_nexthop == NULL) {
40aa7b90 1875 dst_free(&rt->u.dst);
1da177e4
LT
1876 return ERR_PTR(-ENOMEM);
1877 }
1878
1879 ipv6_addr_copy(&rt->rt6i_dst.addr, addr);
1880 rt->rt6i_dst.plen = 128;
5578689a 1881 rt->rt6i_table = fib6_get_table(net, RT6_TABLE_LOCAL);
1da177e4
LT
1882
1883 atomic_set(&rt->u.dst.__refcnt, 1);
1884
1885 return rt;
1886}
1887
8ed67789
DL
1888struct arg_dev_net {
1889 struct net_device *dev;
1890 struct net *net;
1891};
1892
1da177e4
LT
1893static int fib6_ifdown(struct rt6_info *rt, void *arg)
1894{
8ed67789
DL
1895 struct net_device *dev = ((struct arg_dev_net *)arg)->dev;
1896 struct net *net = ((struct arg_dev_net *)arg)->net;
1897
1898 if (((void *)rt->rt6i_dev == dev || dev == NULL) &&
1899 rt != net->ipv6.ip6_null_entry) {
1da177e4
LT
1900 RT6_TRACE("deleted by ifdown %p\n", rt);
1901 return -1;
1902 }
1903 return 0;
1904}
1905
f3db4851 1906void rt6_ifdown(struct net *net, struct net_device *dev)
1da177e4 1907{
8ed67789
DL
1908 struct arg_dev_net adn = {
1909 .dev = dev,
1910 .net = net,
1911 };
1912
1913 fib6_clean_all(net, fib6_ifdown, 0, &adn);
1da177e4
LT
1914}
1915
1916struct rt6_mtu_change_arg
1917{
1918 struct net_device *dev;
1919 unsigned mtu;
1920};
1921
1922static int rt6_mtu_change_route(struct rt6_info *rt, void *p_arg)
1923{
1924 struct rt6_mtu_change_arg *arg = (struct rt6_mtu_change_arg *) p_arg;
1925 struct inet6_dev *idev;
5578689a 1926 struct net *net = arg->dev->nd_net;
1da177e4
LT
1927
1928 /* In IPv6 pmtu discovery is not optional,
1929 so that RTAX_MTU lock cannot disable it.
1930 We still use this lock to block changes
1931 caused by addrconf/ndisc.
1932 */
1933
1934 idev = __in6_dev_get(arg->dev);
1935 if (idev == NULL)
1936 return 0;
1937
1938 /* For administrative MTU increase, there is no way to discover
1939 IPv6 PMTU increase, so PMTU increase should be updated here.
1940 Since RFC 1981 doesn't include administrative MTU increase
1941 update PMTU increase is a MUST. (i.e. jumbo frame)
1942 */
1943 /*
1944 If new MTU is less than route PMTU, this new MTU will be the
1945 lowest MTU in the path, update the route PMTU to reflect PMTU
1946 decreases; if new MTU is greater than route PMTU, and the
1947 old MTU is the lowest MTU in the path, update the route PMTU
1948 to reflect the increase. In this case if the other nodes' MTU
1949 also have the lowest MTU, TOO BIG MESSAGE will be lead to
1950 PMTU discouvery.
1951 */
1952 if (rt->rt6i_dev == arg->dev &&
1953 !dst_metric_locked(&rt->u.dst, RTAX_MTU) &&
23717795 1954 (dst_mtu(&rt->u.dst) >= arg->mtu ||
1ab1457c 1955 (dst_mtu(&rt->u.dst) < arg->mtu &&
566cfd8f 1956 dst_mtu(&rt->u.dst) == idev->cnf.mtu6))) {
1da177e4 1957 rt->u.dst.metrics[RTAX_MTU-1] = arg->mtu;
5578689a 1958 rt->u.dst.metrics[RTAX_ADVMSS-1] = ipv6_advmss(net, arg->mtu);
566cfd8f 1959 }
1da177e4
LT
1960 return 0;
1961}
1962
1963void rt6_mtu_change(struct net_device *dev, unsigned mtu)
1964{
c71099ac
TG
1965 struct rt6_mtu_change_arg arg = {
1966 .dev = dev,
1967 .mtu = mtu,
1968 };
1da177e4 1969
f3db4851 1970 fib6_clean_all(dev->nd_net, rt6_mtu_change_route, 0, &arg);
1da177e4
LT
1971}
1972
ef7c79ed 1973static const struct nla_policy rtm_ipv6_policy[RTA_MAX+1] = {
5176f91e 1974 [RTA_GATEWAY] = { .len = sizeof(struct in6_addr) },
86872cb5 1975 [RTA_OIF] = { .type = NLA_U32 },
ab364a6f 1976 [RTA_IIF] = { .type = NLA_U32 },
86872cb5
TG
1977 [RTA_PRIORITY] = { .type = NLA_U32 },
1978 [RTA_METRICS] = { .type = NLA_NESTED },
1979};
1980
1981static int rtm_to_fib6_config(struct sk_buff *skb, struct nlmsghdr *nlh,
1982 struct fib6_config *cfg)
1da177e4 1983{
86872cb5
TG
1984 struct rtmsg *rtm;
1985 struct nlattr *tb[RTA_MAX+1];
1986 int err;
1da177e4 1987
86872cb5
TG
1988 err = nlmsg_parse(nlh, sizeof(*rtm), tb, RTA_MAX, rtm_ipv6_policy);
1989 if (err < 0)
1990 goto errout;
1da177e4 1991
86872cb5
TG
1992 err = -EINVAL;
1993 rtm = nlmsg_data(nlh);
1994 memset(cfg, 0, sizeof(*cfg));
1995
1996 cfg->fc_table = rtm->rtm_table;
1997 cfg->fc_dst_len = rtm->rtm_dst_len;
1998 cfg->fc_src_len = rtm->rtm_src_len;
1999 cfg->fc_flags = RTF_UP;
2000 cfg->fc_protocol = rtm->rtm_protocol;
2001
2002 if (rtm->rtm_type == RTN_UNREACHABLE)
2003 cfg->fc_flags |= RTF_REJECT;
2004
2005 cfg->fc_nlinfo.pid = NETLINK_CB(skb).pid;
2006 cfg->fc_nlinfo.nlh = nlh;
2216b483 2007 cfg->fc_nlinfo.nl_net = skb->sk->sk_net;
86872cb5
TG
2008
2009 if (tb[RTA_GATEWAY]) {
2010 nla_memcpy(&cfg->fc_gateway, tb[RTA_GATEWAY], 16);
2011 cfg->fc_flags |= RTF_GATEWAY;
1da177e4 2012 }
86872cb5
TG
2013
2014 if (tb[RTA_DST]) {
2015 int plen = (rtm->rtm_dst_len + 7) >> 3;
2016
2017 if (nla_len(tb[RTA_DST]) < plen)
2018 goto errout;
2019
2020 nla_memcpy(&cfg->fc_dst, tb[RTA_DST], plen);
1da177e4 2021 }
86872cb5
TG
2022
2023 if (tb[RTA_SRC]) {
2024 int plen = (rtm->rtm_src_len + 7) >> 3;
2025
2026 if (nla_len(tb[RTA_SRC]) < plen)
2027 goto errout;
2028
2029 nla_memcpy(&cfg->fc_src, tb[RTA_SRC], plen);
1da177e4 2030 }
86872cb5
TG
2031
2032 if (tb[RTA_OIF])
2033 cfg->fc_ifindex = nla_get_u32(tb[RTA_OIF]);
2034
2035 if (tb[RTA_PRIORITY])
2036 cfg->fc_metric = nla_get_u32(tb[RTA_PRIORITY]);
2037
2038 if (tb[RTA_METRICS]) {
2039 cfg->fc_mx = nla_data(tb[RTA_METRICS]);
2040 cfg->fc_mx_len = nla_len(tb[RTA_METRICS]);
1da177e4 2041 }
86872cb5
TG
2042
2043 if (tb[RTA_TABLE])
2044 cfg->fc_table = nla_get_u32(tb[RTA_TABLE]);
2045
2046 err = 0;
2047errout:
2048 return err;
1da177e4
LT
2049}
2050
c127ea2c 2051static int inet6_rtm_delroute(struct sk_buff *skb, struct nlmsghdr* nlh, void *arg)
1da177e4 2052{
86872cb5
TG
2053 struct fib6_config cfg;
2054 int err;
1da177e4 2055
86872cb5
TG
2056 err = rtm_to_fib6_config(skb, nlh, &cfg);
2057 if (err < 0)
2058 return err;
2059
2060 return ip6_route_del(&cfg);
1da177e4
LT
2061}
2062
c127ea2c 2063static int inet6_rtm_newroute(struct sk_buff *skb, struct nlmsghdr* nlh, void *arg)
1da177e4 2064{
86872cb5
TG
2065 struct fib6_config cfg;
2066 int err;
1da177e4 2067
86872cb5
TG
2068 err = rtm_to_fib6_config(skb, nlh, &cfg);
2069 if (err < 0)
2070 return err;
2071
2072 return ip6_route_add(&cfg);
1da177e4
LT
2073}
2074
339bf98f
TG
2075static inline size_t rt6_nlmsg_size(void)
2076{
2077 return NLMSG_ALIGN(sizeof(struct rtmsg))
2078 + nla_total_size(16) /* RTA_SRC */
2079 + nla_total_size(16) /* RTA_DST */
2080 + nla_total_size(16) /* RTA_GATEWAY */
2081 + nla_total_size(16) /* RTA_PREFSRC */
2082 + nla_total_size(4) /* RTA_TABLE */
2083 + nla_total_size(4) /* RTA_IIF */
2084 + nla_total_size(4) /* RTA_OIF */
2085 + nla_total_size(4) /* RTA_PRIORITY */
6a2b9ce0 2086 + RTAX_MAX * nla_total_size(4) /* RTA_METRICS */
339bf98f
TG
2087 + nla_total_size(sizeof(struct rta_cacheinfo));
2088}
2089
1da177e4 2090static int rt6_fill_node(struct sk_buff *skb, struct rt6_info *rt,
0d51aa80
JHS
2091 struct in6_addr *dst, struct in6_addr *src,
2092 int iif, int type, u32 pid, u32 seq,
2093 int prefix, unsigned int flags)
1da177e4
LT
2094{
2095 struct rtmsg *rtm;
2d7202bf 2096 struct nlmsghdr *nlh;
e3703b3d 2097 long expires;
9e762a4a 2098 u32 table;
1da177e4
LT
2099
2100 if (prefix) { /* user wants prefix routes only */
2101 if (!(rt->rt6i_flags & RTF_PREFIX_RT)) {
2102 /* success since this is not a prefix route */
2103 return 1;
2104 }
2105 }
2106
2d7202bf
TG
2107 nlh = nlmsg_put(skb, pid, seq, type, sizeof(*rtm), flags);
2108 if (nlh == NULL)
26932566 2109 return -EMSGSIZE;
2d7202bf
TG
2110
2111 rtm = nlmsg_data(nlh);
1da177e4
LT
2112 rtm->rtm_family = AF_INET6;
2113 rtm->rtm_dst_len = rt->rt6i_dst.plen;
2114 rtm->rtm_src_len = rt->rt6i_src.plen;
2115 rtm->rtm_tos = 0;
c71099ac 2116 if (rt->rt6i_table)
9e762a4a 2117 table = rt->rt6i_table->tb6_id;
c71099ac 2118 else
9e762a4a
PM
2119 table = RT6_TABLE_UNSPEC;
2120 rtm->rtm_table = table;
2d7202bf 2121 NLA_PUT_U32(skb, RTA_TABLE, table);
1da177e4
LT
2122 if (rt->rt6i_flags&RTF_REJECT)
2123 rtm->rtm_type = RTN_UNREACHABLE;
2124 else if (rt->rt6i_dev && (rt->rt6i_dev->flags&IFF_LOOPBACK))
2125 rtm->rtm_type = RTN_LOCAL;
2126 else
2127 rtm->rtm_type = RTN_UNICAST;
2128 rtm->rtm_flags = 0;
2129 rtm->rtm_scope = RT_SCOPE_UNIVERSE;
2130 rtm->rtm_protocol = rt->rt6i_protocol;
2131 if (rt->rt6i_flags&RTF_DYNAMIC)
2132 rtm->rtm_protocol = RTPROT_REDIRECT;
2133 else if (rt->rt6i_flags & RTF_ADDRCONF)
2134 rtm->rtm_protocol = RTPROT_KERNEL;
2135 else if (rt->rt6i_flags&RTF_DEFAULT)
2136 rtm->rtm_protocol = RTPROT_RA;
2137
2138 if (rt->rt6i_flags&RTF_CACHE)
2139 rtm->rtm_flags |= RTM_F_CLONED;
2140
2141 if (dst) {
2d7202bf 2142 NLA_PUT(skb, RTA_DST, 16, dst);
1ab1457c 2143 rtm->rtm_dst_len = 128;
1da177e4 2144 } else if (rtm->rtm_dst_len)
2d7202bf 2145 NLA_PUT(skb, RTA_DST, 16, &rt->rt6i_dst.addr);
1da177e4
LT
2146#ifdef CONFIG_IPV6_SUBTREES
2147 if (src) {
2d7202bf 2148 NLA_PUT(skb, RTA_SRC, 16, src);
1ab1457c 2149 rtm->rtm_src_len = 128;
1da177e4 2150 } else if (rtm->rtm_src_len)
2d7202bf 2151 NLA_PUT(skb, RTA_SRC, 16, &rt->rt6i_src.addr);
1da177e4
LT
2152#endif
2153 if (iif)
2d7202bf 2154 NLA_PUT_U32(skb, RTA_IIF, iif);
1da177e4
LT
2155 else if (dst) {
2156 struct in6_addr saddr_buf;
5e5f3f0f
YH
2157 if (ipv6_dev_get_saddr(ip6_dst_idev(&rt->u.dst)->dev,
2158 dst, &saddr_buf) == 0)
2d7202bf 2159 NLA_PUT(skb, RTA_PREFSRC, 16, &saddr_buf);
1da177e4 2160 }
2d7202bf 2161
1da177e4 2162 if (rtnetlink_put_metrics(skb, rt->u.dst.metrics) < 0)
2d7202bf
TG
2163 goto nla_put_failure;
2164
1da177e4 2165 if (rt->u.dst.neighbour)
2d7202bf
TG
2166 NLA_PUT(skb, RTA_GATEWAY, 16, &rt->u.dst.neighbour->primary_key);
2167
1da177e4 2168 if (rt->u.dst.dev)
2d7202bf
TG
2169 NLA_PUT_U32(skb, RTA_OIF, rt->rt6i_dev->ifindex);
2170
2171 NLA_PUT_U32(skb, RTA_PRIORITY, rt->rt6i_metric);
e3703b3d
TG
2172
2173 expires = rt->rt6i_expires ? rt->rt6i_expires - jiffies : 0;
2174 if (rtnl_put_cacheinfo(skb, &rt->u.dst, 0, 0, 0,
2175 expires, rt->u.dst.error) < 0)
2176 goto nla_put_failure;
2d7202bf
TG
2177
2178 return nlmsg_end(skb, nlh);
2179
2180nla_put_failure:
26932566
PM
2181 nlmsg_cancel(skb, nlh);
2182 return -EMSGSIZE;
1da177e4
LT
2183}
2184
1b43af54 2185int rt6_dump_route(struct rt6_info *rt, void *p_arg)
1da177e4
LT
2186{
2187 struct rt6_rtnl_dump_arg *arg = (struct rt6_rtnl_dump_arg *) p_arg;
2188 int prefix;
2189
2d7202bf
TG
2190 if (nlmsg_len(arg->cb->nlh) >= sizeof(struct rtmsg)) {
2191 struct rtmsg *rtm = nlmsg_data(arg->cb->nlh);
1da177e4
LT
2192 prefix = (rtm->rtm_flags & RTM_F_PREFIX) != 0;
2193 } else
2194 prefix = 0;
2195
2196 return rt6_fill_node(arg->skb, rt, NULL, NULL, 0, RTM_NEWROUTE,
2197 NETLINK_CB(arg->cb->skb).pid, arg->cb->nlh->nlmsg_seq,
0d51aa80 2198 prefix, NLM_F_MULTI);
1da177e4
LT
2199}
2200
c127ea2c 2201static int inet6_rtm_getroute(struct sk_buff *in_skb, struct nlmsghdr* nlh, void *arg)
1da177e4 2202{
b854272b 2203 struct net *net = in_skb->sk->sk_net;
ab364a6f
TG
2204 struct nlattr *tb[RTA_MAX+1];
2205 struct rt6_info *rt;
1da177e4 2206 struct sk_buff *skb;
ab364a6f 2207 struct rtmsg *rtm;
1da177e4 2208 struct flowi fl;
ab364a6f 2209 int err, iif = 0;
1da177e4 2210
ab364a6f
TG
2211 err = nlmsg_parse(nlh, sizeof(*rtm), tb, RTA_MAX, rtm_ipv6_policy);
2212 if (err < 0)
2213 goto errout;
1da177e4 2214
ab364a6f 2215 err = -EINVAL;
1da177e4 2216 memset(&fl, 0, sizeof(fl));
1da177e4 2217
ab364a6f
TG
2218 if (tb[RTA_SRC]) {
2219 if (nla_len(tb[RTA_SRC]) < sizeof(struct in6_addr))
2220 goto errout;
2221
2222 ipv6_addr_copy(&fl.fl6_src, nla_data(tb[RTA_SRC]));
2223 }
2224
2225 if (tb[RTA_DST]) {
2226 if (nla_len(tb[RTA_DST]) < sizeof(struct in6_addr))
2227 goto errout;
2228
2229 ipv6_addr_copy(&fl.fl6_dst, nla_data(tb[RTA_DST]));
2230 }
2231
2232 if (tb[RTA_IIF])
2233 iif = nla_get_u32(tb[RTA_IIF]);
2234
2235 if (tb[RTA_OIF])
2236 fl.oif = nla_get_u32(tb[RTA_OIF]);
1da177e4
LT
2237
2238 if (iif) {
2239 struct net_device *dev;
5578689a 2240 dev = __dev_get_by_index(net, iif);
1da177e4
LT
2241 if (!dev) {
2242 err = -ENODEV;
ab364a6f 2243 goto errout;
1da177e4
LT
2244 }
2245 }
2246
ab364a6f
TG
2247 skb = alloc_skb(NLMSG_GOODSIZE, GFP_KERNEL);
2248 if (skb == NULL) {
2249 err = -ENOBUFS;
2250 goto errout;
2251 }
1da177e4 2252
ab364a6f
TG
2253 /* Reserve room for dummy headers, this skb can pass
2254 through good chunk of routing engine.
2255 */
459a98ed 2256 skb_reset_mac_header(skb);
ab364a6f 2257 skb_reserve(skb, MAX_HEADER + sizeof(struct ipv6hdr));
1da177e4 2258
ab364a6f 2259 rt = (struct rt6_info*) ip6_route_output(NULL, &fl);
1da177e4
LT
2260 skb->dst = &rt->u.dst;
2261
ab364a6f 2262 err = rt6_fill_node(skb, rt, &fl.fl6_dst, &fl.fl6_src, iif,
1da177e4 2263 RTM_NEWROUTE, NETLINK_CB(in_skb).pid,
0d51aa80 2264 nlh->nlmsg_seq, 0, 0);
1da177e4 2265 if (err < 0) {
ab364a6f
TG
2266 kfree_skb(skb);
2267 goto errout;
1da177e4
LT
2268 }
2269
5578689a 2270 err = rtnl_unicast(skb, net, NETLINK_CB(in_skb).pid);
ab364a6f 2271errout:
1da177e4 2272 return err;
1da177e4
LT
2273}
2274
86872cb5 2275void inet6_rt_notify(int event, struct rt6_info *rt, struct nl_info *info)
1da177e4
LT
2276{
2277 struct sk_buff *skb;
5578689a 2278 struct net *net = info->nl_net;
528c4ceb
DL
2279 u32 seq;
2280 int err;
2281
2282 err = -ENOBUFS;
2283 seq = info->nlh != NULL ? info->nlh->nlmsg_seq : 0;
86872cb5 2284
339bf98f 2285 skb = nlmsg_new(rt6_nlmsg_size(), gfp_any());
21713ebc
TG
2286 if (skb == NULL)
2287 goto errout;
2288
528c4ceb
DL
2289 err = rt6_fill_node(skb, rt, NULL, NULL, 0,
2290 event, info->pid, seq, 0, 0);
26932566
PM
2291 if (err < 0) {
2292 /* -EMSGSIZE implies BUG in rt6_nlmsg_size() */
2293 WARN_ON(err == -EMSGSIZE);
2294 kfree_skb(skb);
2295 goto errout;
2296 }
5578689a
DL
2297 err = rtnl_notify(skb, net, info->pid, RTNLGRP_IPV6_ROUTE,
2298 info->nlh, gfp_any());
21713ebc
TG
2299errout:
2300 if (err < 0)
5578689a 2301 rtnl_set_sk_err(net, RTNLGRP_IPV6_ROUTE, err);
1da177e4
LT
2302}
2303
8ed67789
DL
2304static int ip6_route_dev_notify(struct notifier_block *this,
2305 unsigned long event, void *data)
2306{
2307 struct net_device *dev = (struct net_device *)data;
2308 struct net *net = dev->nd_net;
2309
2310 if (event == NETDEV_REGISTER && (dev->flags & IFF_LOOPBACK)) {
2311 net->ipv6.ip6_null_entry->u.dst.dev = dev;
2312 net->ipv6.ip6_null_entry->rt6i_idev = in6_dev_get(dev);
2313#ifdef CONFIG_IPV6_MULTIPLE_TABLES
2314 net->ipv6.ip6_prohibit_entry->u.dst.dev = dev;
2315 net->ipv6.ip6_prohibit_entry->rt6i_idev = in6_dev_get(dev);
2316 net->ipv6.ip6_blk_hole_entry->u.dst.dev = dev;
2317 net->ipv6.ip6_blk_hole_entry->rt6i_idev = in6_dev_get(dev);
2318#endif
2319 }
2320
2321 return NOTIFY_OK;
2322}
2323
1da177e4
LT
2324/*
2325 * /proc
2326 */
2327
2328#ifdef CONFIG_PROC_FS
2329
2330#define RT6_INFO_LEN (32 + 4 + 32 + 4 + 32 + 40 + 5 + 1)
2331
2332struct rt6_proc_arg
2333{
2334 char *buffer;
2335 int offset;
2336 int length;
2337 int skip;
2338 int len;
2339};
2340
2341static int rt6_info_route(struct rt6_info *rt, void *p_arg)
2342{
33120b30 2343 struct seq_file *m = p_arg;
1da177e4 2344
33120b30
AD
2345 seq_printf(m, NIP6_SEQFMT " %02x ", NIP6(rt->rt6i_dst.addr),
2346 rt->rt6i_dst.plen);
1da177e4
LT
2347
2348#ifdef CONFIG_IPV6_SUBTREES
33120b30
AD
2349 seq_printf(m, NIP6_SEQFMT " %02x ", NIP6(rt->rt6i_src.addr),
2350 rt->rt6i_src.plen);
1da177e4 2351#else
33120b30 2352 seq_puts(m, "00000000000000000000000000000000 00 ");
1da177e4
LT
2353#endif
2354
2355 if (rt->rt6i_nexthop) {
33120b30
AD
2356 seq_printf(m, NIP6_SEQFMT,
2357 NIP6(*((struct in6_addr *)rt->rt6i_nexthop->primary_key)));
1da177e4 2358 } else {
33120b30 2359 seq_puts(m, "00000000000000000000000000000000");
1da177e4 2360 }
33120b30
AD
2361 seq_printf(m, " %08x %08x %08x %08x %8s\n",
2362 rt->rt6i_metric, atomic_read(&rt->u.dst.__refcnt),
2363 rt->u.dst.__use, rt->rt6i_flags,
2364 rt->rt6i_dev ? rt->rt6i_dev->name : "");
1da177e4
LT
2365 return 0;
2366}
2367
33120b30 2368static int ipv6_route_show(struct seq_file *m, void *v)
1da177e4 2369{
f3db4851
DL
2370 struct net *net = (struct net *)m->private;
2371 fib6_clean_all(net, rt6_info_route, 0, m);
33120b30
AD
2372 return 0;
2373}
1da177e4 2374
33120b30
AD
2375static int ipv6_route_open(struct inode *inode, struct file *file)
2376{
f3db4851
DL
2377 struct net *net = get_proc_net(inode);
2378 if (!net)
2379 return -ENXIO;
2380 return single_open(file, ipv6_route_show, net);
2381}
2382
2383static int ipv6_route_release(struct inode *inode, struct file *file)
2384{
2385 struct seq_file *seq = file->private_data;
2386 struct net *net = seq->private;
2387 put_net(net);
2388 return single_release(inode, file);
1da177e4
LT
2389}
2390
33120b30
AD
2391static const struct file_operations ipv6_route_proc_fops = {
2392 .owner = THIS_MODULE,
2393 .open = ipv6_route_open,
2394 .read = seq_read,
2395 .llseek = seq_lseek,
f3db4851 2396 .release = ipv6_route_release,
33120b30
AD
2397};
2398
1da177e4
LT
2399static int rt6_stats_seq_show(struct seq_file *seq, void *v)
2400{
69ddb805 2401 struct net *net = (struct net *)seq->private;
1da177e4 2402 seq_printf(seq, "%04x %04x %04x %04x %04x %04x %04x\n",
69ddb805
DL
2403 net->ipv6.rt6_stats->fib_nodes,
2404 net->ipv6.rt6_stats->fib_route_nodes,
2405 net->ipv6.rt6_stats->fib_rt_alloc,
2406 net->ipv6.rt6_stats->fib_rt_entries,
2407 net->ipv6.rt6_stats->fib_rt_cache,
f2fc6a54 2408 atomic_read(&net->ipv6.ip6_dst_ops->entries),
69ddb805 2409 net->ipv6.rt6_stats->fib_discarded_routes);
1da177e4
LT
2410
2411 return 0;
2412}
2413
2414static int rt6_stats_seq_open(struct inode *inode, struct file *file)
2415{
69ddb805
DL
2416 struct net *net = get_proc_net(inode);
2417 return single_open(file, rt6_stats_seq_show, net);
2418}
2419
2420static int rt6_stats_seq_release(struct inode *inode, struct file *file)
2421{
2422 struct seq_file *seq = file->private_data;
2423 struct net *net = (struct net *)seq->private;
2424 put_net(net);
2425 return single_release(inode, file);
1da177e4
LT
2426}
2427
9a32144e 2428static const struct file_operations rt6_stats_seq_fops = {
1da177e4
LT
2429 .owner = THIS_MODULE,
2430 .open = rt6_stats_seq_open,
2431 .read = seq_read,
2432 .llseek = seq_lseek,
69ddb805 2433 .release = rt6_stats_seq_release,
1da177e4
LT
2434};
2435#endif /* CONFIG_PROC_FS */
2436
2437#ifdef CONFIG_SYSCTL
2438
1da177e4
LT
2439static
2440int ipv6_sysctl_rtcache_flush(ctl_table *ctl, int write, struct file * filp,
2441 void __user *buffer, size_t *lenp, loff_t *ppos)
2442{
5b7c931d
DL
2443 struct net *net = current->nsproxy->net_ns;
2444 int delay = net->ipv6.sysctl.flush_delay;
1da177e4
LT
2445 if (write) {
2446 proc_dointvec(ctl, write, filp, buffer, lenp, ppos);
5b7c931d 2447 fib6_run_gc(delay <= 0 ? ~0UL : (unsigned long)delay, net);
1da177e4
LT
2448 return 0;
2449 } else
2450 return -EINVAL;
2451}
2452
760f2d01 2453ctl_table ipv6_route_table_template[] = {
1ab1457c 2454 {
1da177e4 2455 .procname = "flush",
4990509f 2456 .data = &init_net.ipv6.sysctl.flush_delay,
1da177e4 2457 .maxlen = sizeof(int),
89c8b3a1 2458 .mode = 0200,
1ab1457c 2459 .proc_handler = &ipv6_sysctl_rtcache_flush
1da177e4
LT
2460 },
2461 {
2462 .ctl_name = NET_IPV6_ROUTE_GC_THRESH,
2463 .procname = "gc_thresh",
9a7ec3a9 2464 .data = &ip6_dst_ops_template.gc_thresh,
1da177e4
LT
2465 .maxlen = sizeof(int),
2466 .mode = 0644,
1ab1457c 2467 .proc_handler = &proc_dointvec,
1da177e4
LT
2468 },
2469 {
2470 .ctl_name = NET_IPV6_ROUTE_MAX_SIZE,
2471 .procname = "max_size",
4990509f 2472 .data = &init_net.ipv6.sysctl.ip6_rt_max_size,
1da177e4
LT
2473 .maxlen = sizeof(int),
2474 .mode = 0644,
1ab1457c 2475 .proc_handler = &proc_dointvec,
1da177e4
LT
2476 },
2477 {
2478 .ctl_name = NET_IPV6_ROUTE_GC_MIN_INTERVAL,
2479 .procname = "gc_min_interval",
4990509f 2480 .data = &init_net.ipv6.sysctl.ip6_rt_gc_min_interval,
1da177e4
LT
2481 .maxlen = sizeof(int),
2482 .mode = 0644,
1ab1457c 2483 .proc_handler = &proc_dointvec_jiffies,
1da177e4
LT
2484 .strategy = &sysctl_jiffies,
2485 },
2486 {
2487 .ctl_name = NET_IPV6_ROUTE_GC_TIMEOUT,
2488 .procname = "gc_timeout",
4990509f 2489 .data = &init_net.ipv6.sysctl.ip6_rt_gc_timeout,
1da177e4
LT
2490 .maxlen = sizeof(int),
2491 .mode = 0644,
1ab1457c 2492 .proc_handler = &proc_dointvec_jiffies,
1da177e4
LT
2493 .strategy = &sysctl_jiffies,
2494 },
2495 {
2496 .ctl_name = NET_IPV6_ROUTE_GC_INTERVAL,
2497 .procname = "gc_interval",
4990509f 2498 .data = &init_net.ipv6.sysctl.ip6_rt_gc_interval,
1da177e4
LT
2499 .maxlen = sizeof(int),
2500 .mode = 0644,
1ab1457c 2501 .proc_handler = &proc_dointvec_jiffies,
1da177e4
LT
2502 .strategy = &sysctl_jiffies,
2503 },
2504 {
2505 .ctl_name = NET_IPV6_ROUTE_GC_ELASTICITY,
2506 .procname = "gc_elasticity",
4990509f 2507 .data = &init_net.ipv6.sysctl.ip6_rt_gc_elasticity,
1da177e4
LT
2508 .maxlen = sizeof(int),
2509 .mode = 0644,
1ab1457c 2510 .proc_handler = &proc_dointvec_jiffies,
1da177e4
LT
2511 .strategy = &sysctl_jiffies,
2512 },
2513 {
2514 .ctl_name = NET_IPV6_ROUTE_MTU_EXPIRES,
2515 .procname = "mtu_expires",
4990509f 2516 .data = &init_net.ipv6.sysctl.ip6_rt_mtu_expires,
1da177e4
LT
2517 .maxlen = sizeof(int),
2518 .mode = 0644,
1ab1457c 2519 .proc_handler = &proc_dointvec_jiffies,
1da177e4
LT
2520 .strategy = &sysctl_jiffies,
2521 },
2522 {
2523 .ctl_name = NET_IPV6_ROUTE_MIN_ADVMSS,
2524 .procname = "min_adv_mss",
4990509f 2525 .data = &init_net.ipv6.sysctl.ip6_rt_min_advmss,
1da177e4
LT
2526 .maxlen = sizeof(int),
2527 .mode = 0644,
1ab1457c 2528 .proc_handler = &proc_dointvec_jiffies,
1da177e4
LT
2529 .strategy = &sysctl_jiffies,
2530 },
2531 {
2532 .ctl_name = NET_IPV6_ROUTE_GC_MIN_INTERVAL_MS,
2533 .procname = "gc_min_interval_ms",
4990509f 2534 .data = &init_net.ipv6.sysctl.ip6_rt_gc_min_interval,
1da177e4
LT
2535 .maxlen = sizeof(int),
2536 .mode = 0644,
1ab1457c 2537 .proc_handler = &proc_dointvec_ms_jiffies,
1da177e4
LT
2538 .strategy = &sysctl_ms_jiffies,
2539 },
2540 { .ctl_name = 0 }
2541};
2542
760f2d01
DL
2543struct ctl_table *ipv6_route_sysctl_init(struct net *net)
2544{
2545 struct ctl_table *table;
2546
2547 table = kmemdup(ipv6_route_table_template,
2548 sizeof(ipv6_route_table_template),
2549 GFP_KERNEL);
5ee09105
YH
2550
2551 if (table) {
2552 table[0].data = &net->ipv6.sysctl.flush_delay;
f2fc6a54 2553 table[1].data = &net->ipv6.ip6_dst_ops->gc_thresh;
5ee09105
YH
2554 table[2].data = &net->ipv6.sysctl.ip6_rt_max_size;
2555 table[3].data = &net->ipv6.sysctl.ip6_rt_gc_min_interval;
2556 table[4].data = &net->ipv6.sysctl.ip6_rt_gc_timeout;
2557 table[5].data = &net->ipv6.sysctl.ip6_rt_gc_interval;
2558 table[6].data = &net->ipv6.sysctl.ip6_rt_gc_elasticity;
2559 table[7].data = &net->ipv6.sysctl.ip6_rt_mtu_expires;
2560 table[8].data = &net->ipv6.sysctl.ip6_rt_min_advmss;
2561 }
2562
760f2d01
DL
2563 return table;
2564}
1da177e4
LT
2565#endif
2566
cdb18761
DL
2567static int ip6_route_net_init(struct net *net)
2568{
8ed67789
DL
2569 int ret = 0;
2570
2571 ret = -ENOMEM;
f2fc6a54
BT
2572 net->ipv6.ip6_dst_ops = kmemdup(&ip6_dst_ops_template,
2573 sizeof(*net->ipv6.ip6_dst_ops),
2574 GFP_KERNEL);
2575 if (!net->ipv6.ip6_dst_ops)
2576 goto out;
2577 net->ipv6.ip6_dst_ops->dst_net = net;
2578
8ed67789
DL
2579 net->ipv6.ip6_null_entry = kmemdup(&ip6_null_entry_template,
2580 sizeof(*net->ipv6.ip6_null_entry),
2581 GFP_KERNEL);
2582 if (!net->ipv6.ip6_null_entry)
f2fc6a54 2583 goto out_ip6_dst_ops;
8ed67789
DL
2584 net->ipv6.ip6_null_entry->u.dst.path =
2585 (struct dst_entry *)net->ipv6.ip6_null_entry;
f2fc6a54 2586 net->ipv6.ip6_null_entry->u.dst.ops = net->ipv6.ip6_dst_ops;
8ed67789
DL
2587
2588#ifdef CONFIG_IPV6_MULTIPLE_TABLES
2589 net->ipv6.ip6_prohibit_entry = kmemdup(&ip6_prohibit_entry_template,
2590 sizeof(*net->ipv6.ip6_prohibit_entry),
2591 GFP_KERNEL);
2592 if (!net->ipv6.ip6_prohibit_entry) {
2593 kfree(net->ipv6.ip6_null_entry);
2594 goto out;
2595 }
2596 net->ipv6.ip6_prohibit_entry->u.dst.path =
2597 (struct dst_entry *)net->ipv6.ip6_prohibit_entry;
f2fc6a54 2598 net->ipv6.ip6_prohibit_entry->u.dst.ops = net->ipv6.ip6_dst_ops;
8ed67789
DL
2599
2600 net->ipv6.ip6_blk_hole_entry = kmemdup(&ip6_blk_hole_entry_template,
2601 sizeof(*net->ipv6.ip6_blk_hole_entry),
2602 GFP_KERNEL);
2603 if (!net->ipv6.ip6_blk_hole_entry) {
2604 kfree(net->ipv6.ip6_null_entry);
2605 kfree(net->ipv6.ip6_prohibit_entry);
2606 goto out;
2607 }
2608 net->ipv6.ip6_blk_hole_entry->u.dst.path =
2609 (struct dst_entry *)net->ipv6.ip6_blk_hole_entry;
f2fc6a54 2610 net->ipv6.ip6_blk_hole_entry->u.dst.ops = net->ipv6.ip6_dst_ops;
8ed67789
DL
2611#endif
2612
cdb18761
DL
2613#ifdef CONFIG_PROC_FS
2614 proc_net_fops_create(net, "ipv6_route", 0, &ipv6_route_proc_fops);
2615 proc_net_fops_create(net, "rt6_stats", S_IRUGO, &rt6_stats_seq_fops);
2616#endif
6891a346
BT
2617 net->ipv6.ip6_rt_gc_expire = 30*HZ;
2618
8ed67789
DL
2619 ret = 0;
2620out:
2621 return ret;
f2fc6a54
BT
2622
2623out_ip6_dst_ops:
2624 kfree(net->ipv6.ip6_dst_ops);
2625 goto out;
cdb18761
DL
2626}
2627
2628static void ip6_route_net_exit(struct net *net)
2629{
2630#ifdef CONFIG_PROC_FS
2631 proc_net_remove(net, "ipv6_route");
2632 proc_net_remove(net, "rt6_stats");
2633#endif
8ed67789
DL
2634 kfree(net->ipv6.ip6_null_entry);
2635#ifdef CONFIG_IPV6_MULTIPLE_TABLES
2636 kfree(net->ipv6.ip6_prohibit_entry);
2637 kfree(net->ipv6.ip6_blk_hole_entry);
2638#endif
f2fc6a54 2639 kfree(net->ipv6.ip6_dst_ops);
cdb18761
DL
2640}
2641
2642static struct pernet_operations ip6_route_net_ops = {
2643 .init = ip6_route_net_init,
2644 .exit = ip6_route_net_exit,
2645};
2646
8ed67789
DL
2647static struct notifier_block ip6_route_dev_notifier = {
2648 .notifier_call = ip6_route_dev_notify,
2649 .priority = 0,
2650};
2651
433d49c3 2652int __init ip6_route_init(void)
1da177e4 2653{
433d49c3
DL
2654 int ret;
2655
9a7ec3a9
DL
2656 ret = -ENOMEM;
2657 ip6_dst_ops_template.kmem_cachep =
e5d679f3 2658 kmem_cache_create("ip6_dst_cache", sizeof(struct rt6_info), 0,
f845ab6b 2659 SLAB_HWCACHE_ALIGN, NULL);
9a7ec3a9 2660 if (!ip6_dst_ops_template.kmem_cachep)
f2fc6a54 2661 goto out;;
14e50e57 2662
8ed67789
DL
2663 ret = register_pernet_subsys(&ip6_route_net_ops);
2664 if (ret)
bdb3289f 2665 goto out_kmem_cache;
bdb3289f 2666
8ed67789
DL
2667 /* Registering of the loopback is done before this portion of code,
2668 * the loopback reference in rt6_info will not be taken, do it
2669 * manually for init_net */
2670 init_net.ipv6.ip6_null_entry->u.dst.dev = init_net.loopback_dev;
2671 init_net.ipv6.ip6_null_entry->rt6i_idev = in6_dev_get(init_net.loopback_dev);
2672 #ifdef CONFIG_IPV6_MULTIPLE_TABLES
2673 init_net.ipv6.ip6_prohibit_entry->u.dst.dev = init_net.loopback_dev;
2674 init_net.ipv6.ip6_prohibit_entry->rt6i_idev = in6_dev_get(init_net.loopback_dev);
2675 init_net.ipv6.ip6_blk_hole_entry->u.dst.dev = init_net.loopback_dev;
2676 init_net.ipv6.ip6_blk_hole_entry->rt6i_idev = in6_dev_get(init_net.loopback_dev);
2677 #endif
433d49c3
DL
2678 ret = fib6_init();
2679 if (ret)
8ed67789 2680 goto out_register_subsys;
433d49c3 2681
433d49c3
DL
2682 ret = xfrm6_init();
2683 if (ret)
cdb18761 2684 goto out_fib6_init;
c35b7e72 2685
433d49c3
DL
2686 ret = fib6_rules_init();
2687 if (ret)
2688 goto xfrm6_init;
7e5449c2 2689
433d49c3
DL
2690 ret = -ENOBUFS;
2691 if (__rtnl_register(PF_INET6, RTM_NEWROUTE, inet6_rtm_newroute, NULL) ||
2692 __rtnl_register(PF_INET6, RTM_DELROUTE, inet6_rtm_delroute, NULL) ||
2693 __rtnl_register(PF_INET6, RTM_GETROUTE, inet6_rtm_getroute, NULL))
2694 goto fib6_rules_init;
c127ea2c 2695
8ed67789 2696 ret = register_netdevice_notifier(&ip6_route_dev_notifier);
cdb18761
DL
2697 if (ret)
2698 goto fib6_rules_init;
8ed67789 2699
433d49c3
DL
2700out:
2701 return ret;
2702
2703fib6_rules_init:
433d49c3
DL
2704 fib6_rules_cleanup();
2705xfrm6_init:
433d49c3 2706 xfrm6_fini();
433d49c3 2707out_fib6_init:
433d49c3 2708 fib6_gc_cleanup();
8ed67789
DL
2709out_register_subsys:
2710 unregister_pernet_subsys(&ip6_route_net_ops);
433d49c3 2711out_kmem_cache:
f2fc6a54 2712 kmem_cache_destroy(ip6_dst_ops_template.kmem_cachep);
433d49c3 2713 goto out;
1da177e4
LT
2714}
2715
2716void ip6_route_cleanup(void)
2717{
8ed67789 2718 unregister_netdevice_notifier(&ip6_route_dev_notifier);
101367c2 2719 fib6_rules_cleanup();
1da177e4 2720 xfrm6_fini();
1da177e4 2721 fib6_gc_cleanup();
8ed67789 2722 unregister_pernet_subsys(&ip6_route_net_ops);
f2fc6a54 2723 kmem_cache_destroy(ip6_dst_ops_template.kmem_cachep);
1da177e4 2724}