Merge tag 'tty-4.3-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty
[linux-2.6-block.git] / net / ipv6 / ip6_fib.c
CommitLineData
1da177e4 1/*
1ab1457c 2 * Linux INET6 implementation
1da177e4
LT
3 * Forwarding Information Database
4 *
5 * Authors:
1ab1457c 6 * Pedro Roque <roque@di.fc.ul.pt>
1da177e4 7 *
1da177e4
LT
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License
10 * as published by the Free Software Foundation; either version
11 * 2 of the License, or (at your option) any later version.
8db46f1d
WY
12 *
13 * Changes:
14 * Yuji SEKIYA @USAGI: Support default route on router node;
15 * remove ip6_null_entry from the top of
16 * routing table.
17 * Ville Nuorvala: Fixed routing subtrees.
1da177e4 18 */
f3213831
JP
19
20#define pr_fmt(fmt) "IPv6: " fmt
21
1da177e4
LT
22#include <linux/errno.h>
23#include <linux/types.h>
24#include <linux/net.h>
25#include <linux/route.h>
26#include <linux/netdevice.h>
27#include <linux/in6.h>
28#include <linux/init.h>
c71099ac 29#include <linux/list.h>
5a0e3ad6 30#include <linux/slab.h>
1da177e4 31
1da177e4
LT
32#include <net/ipv6.h>
33#include <net/ndisc.h>
34#include <net/addrconf.h>
19e42e45 35#include <net/lwtunnel.h>
1da177e4
LT
36
37#include <net/ip6_fib.h>
38#include <net/ip6_route.h>
39
40#define RT6_DEBUG 2
41
42#if RT6_DEBUG >= 3
91df42be 43#define RT6_TRACE(x...) pr_debug(x)
1da177e4
LT
44#else
45#define RT6_TRACE(x...) do { ; } while (0)
46#endif
47
437de07c 48static struct kmem_cache *fib6_node_kmem __read_mostly;
1da177e4 49
94b2cfe0
HFS
50struct fib6_cleaner {
51 struct fib6_walker w;
ec7d43c2 52 struct net *net;
1da177e4 53 int (*func)(struct rt6_info *, void *arg);
327571cb 54 int sernum;
1da177e4
LT
55 void *arg;
56};
57
90d41122 58static DEFINE_RWLOCK(fib6_walker_lock);
1da177e4
LT
59
60#ifdef CONFIG_IPV6_SUBTREES
61#define FWS_INIT FWS_S
1da177e4
LT
62#else
63#define FWS_INIT FWS_L
1da177e4
LT
64#endif
65
163cd4e8 66static void fib6_prune_clones(struct net *net, struct fib6_node *fn);
8ed67789
DL
67static struct rt6_info *fib6_find_prefix(struct net *net, struct fib6_node *fn);
68static struct fib6_node *fib6_repair_tree(struct net *net, struct fib6_node *fn);
94b2cfe0
HFS
69static int fib6_walk(struct fib6_walker *w);
70static int fib6_walk_continue(struct fib6_walker *w);
1da177e4
LT
71
72/*
73 * A routing update causes an increase of the serial number on the
74 * affected subtree. This allows for cached routes to be asynchronously
75 * tested when modifications are made to the destination cache as a
76 * result of redirects, path MTU changes, etc.
77 */
78
5b7c931d
DL
79static void fib6_gc_timer_cb(unsigned long arg);
80
bbef49da
AD
81static LIST_HEAD(fib6_walkers);
82#define FOR_WALKERS(w) list_for_each_entry(w, &fib6_walkers, lh)
1da177e4 83
94b2cfe0 84static void fib6_walker_link(struct fib6_walker *w)
90d41122
AB
85{
86 write_lock_bh(&fib6_walker_lock);
bbef49da 87 list_add(&w->lh, &fib6_walkers);
90d41122
AB
88 write_unlock_bh(&fib6_walker_lock);
89}
90
94b2cfe0 91static void fib6_walker_unlink(struct fib6_walker *w)
90d41122
AB
92{
93 write_lock_bh(&fib6_walker_lock);
bbef49da 94 list_del(&w->lh);
90d41122
AB
95 write_unlock_bh(&fib6_walker_lock);
96}
94b2cfe0 97
812918c4 98static int fib6_new_sernum(struct net *net)
1da177e4 99{
42b18706
HFS
100 int new, old;
101
102 do {
812918c4 103 old = atomic_read(&net->ipv6.fib6_sernum);
42b18706 104 new = old < INT_MAX ? old + 1 : 1;
812918c4
HFS
105 } while (atomic_cmpxchg(&net->ipv6.fib6_sernum,
106 old, new) != old);
42b18706 107 return new;
1da177e4
LT
108}
109
327571cb
HFS
110enum {
111 FIB6_NO_SERNUM_CHANGE = 0,
112};
113
1da177e4
LT
114/*
115 * Auxiliary address test functions for the radix tree.
116 *
1ab1457c 117 * These assume a 32bit processor (although it will work on
1da177e4
LT
118 * 64bit processors)
119 */
120
121/*
122 * test bit
123 */
02cdce53
YH
124#if defined(__LITTLE_ENDIAN)
125# define BITOP_BE32_SWIZZLE (0x1F & ~7)
126#else
127# define BITOP_BE32_SWIZZLE 0
128#endif
1da177e4 129
94b2cfe0 130static __be32 addr_bit_set(const void *token, int fn_bit)
1da177e4 131{
b71d1d42 132 const __be32 *addr = token;
02cdce53
YH
133 /*
134 * Here,
8db46f1d 135 * 1 << ((~fn_bit ^ BITOP_BE32_SWIZZLE) & 0x1f)
02cdce53
YH
136 * is optimized version of
137 * htonl(1 << ((~fn_bit)&0x1F))
138 * See include/asm-generic/bitops/le.h.
139 */
0eae88f3
ED
140 return (__force __be32)(1 << ((~fn_bit ^ BITOP_BE32_SWIZZLE) & 0x1f)) &
141 addr[fn_bit >> 5];
1da177e4
LT
142}
143
94b2cfe0 144static struct fib6_node *node_alloc(void)
1da177e4
LT
145{
146 struct fib6_node *fn;
147
c3762229 148 fn = kmem_cache_zalloc(fib6_node_kmem, GFP_ATOMIC);
1da177e4
LT
149
150 return fn;
151}
152
94b2cfe0 153static void node_free(struct fib6_node *fn)
1da177e4
LT
154{
155 kmem_cache_free(fib6_node_kmem, fn);
156}
157
d52d3997
MKL
158static void rt6_free_pcpu(struct rt6_info *non_pcpu_rt)
159{
160 int cpu;
161
162 if (!non_pcpu_rt->rt6i_pcpu)
163 return;
164
165 for_each_possible_cpu(cpu) {
166 struct rt6_info **ppcpu_rt;
167 struct rt6_info *pcpu_rt;
168
169 ppcpu_rt = per_cpu_ptr(non_pcpu_rt->rt6i_pcpu, cpu);
170 pcpu_rt = *ppcpu_rt;
171 if (pcpu_rt) {
172 dst_free(&pcpu_rt->dst);
173 *ppcpu_rt = NULL;
174 }
175 }
9c7370a1
MKL
176
177 non_pcpu_rt->rt6i_pcpu = NULL;
d52d3997
MKL
178}
179
94b2cfe0 180static void rt6_release(struct rt6_info *rt)
1da177e4 181{
d52d3997
MKL
182 if (atomic_dec_and_test(&rt->rt6i_ref)) {
183 rt6_free_pcpu(rt);
d8d1f30b 184 dst_free(&rt->dst);
d52d3997 185 }
1da177e4
LT
186}
187
58f09b78 188static void fib6_link_table(struct net *net, struct fib6_table *tb)
1b43af54
PM
189{
190 unsigned int h;
191
375216ad
TG
192 /*
193 * Initialize table lock at a single place to give lockdep a key,
194 * tables aren't visible prior to being linked to the list.
195 */
196 rwlock_init(&tb->tb6_lock);
197
a33bc5c1 198 h = tb->tb6_id & (FIB6_TABLE_HASHSZ - 1);
1b43af54
PM
199
200 /*
201 * No protection necessary, this is the only list mutatation
202 * operation, tables never disappear once they exist.
203 */
58f09b78 204 hlist_add_head_rcu(&tb->tb6_hlist, &net->ipv6.fib_table_hash[h]);
1b43af54 205}
c71099ac 206
1b43af54 207#ifdef CONFIG_IPV6_MULTIPLE_TABLES
e0b85590 208
8ed67789 209static struct fib6_table *fib6_alloc_table(struct net *net, u32 id)
c71099ac
TG
210{
211 struct fib6_table *table;
212
213 table = kzalloc(sizeof(*table), GFP_ATOMIC);
507c9b1e 214 if (table) {
c71099ac 215 table->tb6_id = id;
8ed67789 216 table->tb6_root.leaf = net->ipv6.ip6_null_entry;
c71099ac 217 table->tb6_root.fn_flags = RTN_ROOT | RTN_TL_ROOT | RTN_RTINFO;
8e773277 218 inet_peer_base_init(&table->tb6_peers);
c71099ac
TG
219 }
220
221 return table;
222}
223
58f09b78 224struct fib6_table *fib6_new_table(struct net *net, u32 id)
c71099ac
TG
225{
226 struct fib6_table *tb;
227
228 if (id == 0)
229 id = RT6_TABLE_MAIN;
58f09b78 230 tb = fib6_get_table(net, id);
c71099ac
TG
231 if (tb)
232 return tb;
233
8ed67789 234 tb = fib6_alloc_table(net, id);
507c9b1e 235 if (tb)
58f09b78 236 fib6_link_table(net, tb);
c71099ac
TG
237
238 return tb;
239}
240
58f09b78 241struct fib6_table *fib6_get_table(struct net *net, u32 id)
c71099ac
TG
242{
243 struct fib6_table *tb;
58f09b78 244 struct hlist_head *head;
c71099ac
TG
245 unsigned int h;
246
247 if (id == 0)
248 id = RT6_TABLE_MAIN;
a33bc5c1 249 h = id & (FIB6_TABLE_HASHSZ - 1);
c71099ac 250 rcu_read_lock();
58f09b78 251 head = &net->ipv6.fib_table_hash[h];
b67bfe0d 252 hlist_for_each_entry_rcu(tb, head, tb6_hlist) {
c71099ac
TG
253 if (tb->tb6_id == id) {
254 rcu_read_unlock();
255 return tb;
256 }
257 }
258 rcu_read_unlock();
259
260 return NULL;
261}
262
2c8c1e72 263static void __net_init fib6_tables_init(struct net *net)
c71099ac 264{
58f09b78
DL
265 fib6_link_table(net, net->ipv6.fib6_main_tbl);
266 fib6_link_table(net, net->ipv6.fib6_local_tbl);
c71099ac 267}
c71099ac
TG
268#else
269
58f09b78 270struct fib6_table *fib6_new_table(struct net *net, u32 id)
c71099ac 271{
58f09b78 272 return fib6_get_table(net, id);
c71099ac
TG
273}
274
58f09b78 275struct fib6_table *fib6_get_table(struct net *net, u32 id)
c71099ac 276{
58f09b78 277 return net->ipv6.fib6_main_tbl;
c71099ac
TG
278}
279
4c9483b2 280struct dst_entry *fib6_rule_lookup(struct net *net, struct flowi6 *fl6,
58f09b78 281 int flags, pol_lookup_t lookup)
c71099ac 282{
4c9483b2 283 return (struct dst_entry *) lookup(net, net->ipv6.fib6_main_tbl, fl6, flags);
c71099ac
TG
284}
285
2c8c1e72 286static void __net_init fib6_tables_init(struct net *net)
c71099ac 287{
58f09b78 288 fib6_link_table(net, net->ipv6.fib6_main_tbl);
c71099ac
TG
289}
290
291#endif
292
94b2cfe0 293static int fib6_dump_node(struct fib6_walker *w)
1b43af54
PM
294{
295 int res;
296 struct rt6_info *rt;
297
d8d1f30b 298 for (rt = w->leaf; rt; rt = rt->dst.rt6_next) {
1b43af54
PM
299 res = rt6_dump_route(rt, w->args);
300 if (res < 0) {
301 /* Frame is full, suspend walking */
302 w->leaf = rt;
303 return 1;
304 }
1b43af54
PM
305 }
306 w->leaf = NULL;
307 return 0;
308}
309
310static void fib6_dump_end(struct netlink_callback *cb)
311{
94b2cfe0 312 struct fib6_walker *w = (void *)cb->args[2];
1b43af54
PM
313
314 if (w) {
7891cc81
HX
315 if (cb->args[4]) {
316 cb->args[4] = 0;
317 fib6_walker_unlink(w);
318 }
1b43af54
PM
319 cb->args[2] = 0;
320 kfree(w);
321 }
437de07c 322 cb->done = (void *)cb->args[3];
1b43af54
PM
323 cb->args[1] = 3;
324}
325
326static int fib6_dump_done(struct netlink_callback *cb)
327{
328 fib6_dump_end(cb);
329 return cb->done ? cb->done(cb) : 0;
330}
331
332static int fib6_dump_table(struct fib6_table *table, struct sk_buff *skb,
333 struct netlink_callback *cb)
334{
94b2cfe0 335 struct fib6_walker *w;
1b43af54
PM
336 int res;
337
338 w = (void *)cb->args[2];
339 w->root = &table->tb6_root;
340
341 if (cb->args[4] == 0) {
2bec5a36
PM
342 w->count = 0;
343 w->skip = 0;
344
1b43af54
PM
345 read_lock_bh(&table->tb6_lock);
346 res = fib6_walk(w);
347 read_unlock_bh(&table->tb6_lock);
2bec5a36 348 if (res > 0) {
1b43af54 349 cb->args[4] = 1;
2bec5a36
PM
350 cb->args[5] = w->root->fn_sernum;
351 }
1b43af54 352 } else {
2bec5a36
PM
353 if (cb->args[5] != w->root->fn_sernum) {
354 /* Begin at the root if the tree changed */
355 cb->args[5] = w->root->fn_sernum;
356 w->state = FWS_INIT;
357 w->node = w->root;
358 w->skip = w->count;
359 } else
360 w->skip = 0;
361
1b43af54
PM
362 read_lock_bh(&table->tb6_lock);
363 res = fib6_walk_continue(w);
364 read_unlock_bh(&table->tb6_lock);
7891cc81
HX
365 if (res <= 0) {
366 fib6_walker_unlink(w);
367 cb->args[4] = 0;
1b43af54 368 }
1b43af54 369 }
7891cc81 370
1b43af54
PM
371 return res;
372}
373
c127ea2c 374static int inet6_dump_fib(struct sk_buff *skb, struct netlink_callback *cb)
1b43af54 375{
3b1e0a65 376 struct net *net = sock_net(skb->sk);
1b43af54
PM
377 unsigned int h, s_h;
378 unsigned int e = 0, s_e;
379 struct rt6_rtnl_dump_arg arg;
94b2cfe0 380 struct fib6_walker *w;
1b43af54 381 struct fib6_table *tb;
58f09b78 382 struct hlist_head *head;
1b43af54
PM
383 int res = 0;
384
385 s_h = cb->args[0];
386 s_e = cb->args[1];
387
388 w = (void *)cb->args[2];
507c9b1e 389 if (!w) {
1b43af54
PM
390 /* New dump:
391 *
392 * 1. hook callback destructor.
393 */
394 cb->args[3] = (long)cb->done;
395 cb->done = fib6_dump_done;
396
397 /*
398 * 2. allocate and initialize walker.
399 */
400 w = kzalloc(sizeof(*w), GFP_ATOMIC);
507c9b1e 401 if (!w)
1b43af54
PM
402 return -ENOMEM;
403 w->func = fib6_dump_node;
404 cb->args[2] = (long)w;
405 }
406
407 arg.skb = skb;
408 arg.cb = cb;
191cd582 409 arg.net = net;
1b43af54
PM
410 w->args = &arg;
411
e67f88dd 412 rcu_read_lock();
a33bc5c1 413 for (h = s_h; h < FIB6_TABLE_HASHSZ; h++, s_e = 0) {
1b43af54 414 e = 0;
58f09b78 415 head = &net->ipv6.fib_table_hash[h];
b67bfe0d 416 hlist_for_each_entry_rcu(tb, head, tb6_hlist) {
1b43af54
PM
417 if (e < s_e)
418 goto next;
419 res = fib6_dump_table(tb, skb, cb);
420 if (res != 0)
421 goto out;
422next:
423 e++;
424 }
425 }
426out:
e67f88dd 427 rcu_read_unlock();
1b43af54
PM
428 cb->args[1] = e;
429 cb->args[0] = h;
430
431 res = res < 0 ? res : skb->len;
432 if (res <= 0)
433 fib6_dump_end(cb);
434 return res;
435}
1da177e4
LT
436
437/*
438 * Routing Table
439 *
440 * return the appropriate node for a routing tree "add" operation
441 * by either creating and inserting or by returning an existing
442 * node.
443 */
444
9225b230 445static struct fib6_node *fib6_add_1(struct fib6_node *root,
446 struct in6_addr *addr, int plen,
4a287eba 447 int offset, int allow_create,
c8c4d42a 448 int replace_required, int sernum)
1da177e4
LT
449{
450 struct fib6_node *fn, *in, *ln;
451 struct fib6_node *pn = NULL;
452 struct rt6key *key;
453 int bit;
1ab1457c 454 __be32 dir = 0;
1da177e4
LT
455
456 RT6_TRACE("fib6_add_1\n");
457
458 /* insert node in tree */
459
460 fn = root;
461
462 do {
463 key = (struct rt6key *)((u8 *)fn->leaf + offset);
464
465 /*
466 * Prefix match
467 */
468 if (plen < fn->fn_bit ||
4a287eba 469 !ipv6_prefix_equal(&key->addr, addr, fn->fn_bit)) {
14df015b
MV
470 if (!allow_create) {
471 if (replace_required) {
f3213831 472 pr_warn("Can't replace route, no match found\n");
14df015b
MV
473 return ERR_PTR(-ENOENT);
474 }
f3213831 475 pr_warn("NLM_F_CREATE should be set when creating new route\n");
14df015b 476 }
1da177e4 477 goto insert_above;
4a287eba 478 }
1ab1457c 479
1da177e4
LT
480 /*
481 * Exact match ?
482 */
1ab1457c 483
1da177e4
LT
484 if (plen == fn->fn_bit) {
485 /* clean up an intermediate node */
507c9b1e 486 if (!(fn->fn_flags & RTN_RTINFO)) {
1da177e4
LT
487 rt6_release(fn->leaf);
488 fn->leaf = NULL;
489 }
1ab1457c 490
1da177e4 491 fn->fn_sernum = sernum;
1ab1457c 492
1da177e4
LT
493 return fn;
494 }
495
496 /*
497 * We have more bits to go
498 */
1ab1457c 499
1da177e4
LT
500 /* Try to walk down on tree. */
501 fn->fn_sernum = sernum;
502 dir = addr_bit_set(addr, fn->fn_bit);
503 pn = fn;
8db46f1d 504 fn = dir ? fn->right : fn->left;
1da177e4
LT
505 } while (fn);
506
14df015b 507 if (!allow_create) {
4a287eba
MV
508 /* We should not create new node because
509 * NLM_F_REPLACE was specified without NLM_F_CREATE
510 * I assume it is safe to require NLM_F_CREATE when
511 * REPLACE flag is used! Later we may want to remove the
512 * check for replace_required, because according
513 * to netlink specification, NLM_F_CREATE
514 * MUST be specified if new route is created.
515 * That would keep IPv6 consistent with IPv4
516 */
14df015b 517 if (replace_required) {
f3213831 518 pr_warn("Can't replace route, no match found\n");
14df015b
MV
519 return ERR_PTR(-ENOENT);
520 }
f3213831 521 pr_warn("NLM_F_CREATE should be set when creating new route\n");
4a287eba 522 }
1da177e4
LT
523 /*
524 * We walked to the bottom of tree.
525 * Create new leaf node without children.
526 */
527
528 ln = node_alloc();
529
507c9b1e 530 if (!ln)
188c517a 531 return ERR_PTR(-ENOMEM);
1da177e4 532 ln->fn_bit = plen;
1ab1457c 533
1da177e4
LT
534 ln->parent = pn;
535 ln->fn_sernum = sernum;
536
537 if (dir)
538 pn->right = ln;
539 else
540 pn->left = ln;
541
542 return ln;
543
544
545insert_above:
546 /*
1ab1457c 547 * split since we don't have a common prefix anymore or
1da177e4
LT
548 * we have a less significant route.
549 * we've to insert an intermediate node on the list
550 * this new node will point to the one we need to create
551 * and the current
552 */
553
554 pn = fn->parent;
555
556 /* find 1st bit in difference between the 2 addrs.
557
971f359d 558 See comment in __ipv6_addr_diff: bit may be an invalid value,
1da177e4
LT
559 but if it is >= plen, the value is ignored in any case.
560 */
1ab1457c 561
9225b230 562 bit = __ipv6_addr_diff(addr, &key->addr, sizeof(*addr));
1da177e4 563
1ab1457c
YH
564 /*
565 * (intermediate)[in]
1da177e4
LT
566 * / \
567 * (new leaf node)[ln] (old node)[fn]
568 */
569 if (plen > bit) {
570 in = node_alloc();
571 ln = node_alloc();
1ab1457c 572
507c9b1e 573 if (!in || !ln) {
1da177e4
LT
574 if (in)
575 node_free(in);
576 if (ln)
577 node_free(ln);
188c517a 578 return ERR_PTR(-ENOMEM);
1da177e4
LT
579 }
580
1ab1457c
YH
581 /*
582 * new intermediate node.
1da177e4
LT
583 * RTN_RTINFO will
584 * be off since that an address that chooses one of
585 * the branches would not match less specific routes
586 * in the other branch
587 */
588
589 in->fn_bit = bit;
590
591 in->parent = pn;
592 in->leaf = fn->leaf;
593 atomic_inc(&in->leaf->rt6i_ref);
594
595 in->fn_sernum = sernum;
596
597 /* update parent pointer */
598 if (dir)
599 pn->right = in;
600 else
601 pn->left = in;
602
603 ln->fn_bit = plen;
604
605 ln->parent = in;
606 fn->parent = in;
607
608 ln->fn_sernum = sernum;
609
610 if (addr_bit_set(addr, bit)) {
611 in->right = ln;
612 in->left = fn;
613 } else {
614 in->left = ln;
615 in->right = fn;
616 }
617 } else { /* plen <= bit */
618
1ab1457c 619 /*
1da177e4
LT
620 * (new leaf node)[ln]
621 * / \
622 * (old node)[fn] NULL
623 */
624
625 ln = node_alloc();
626
507c9b1e 627 if (!ln)
188c517a 628 return ERR_PTR(-ENOMEM);
1da177e4
LT
629
630 ln->fn_bit = plen;
631
632 ln->parent = pn;
633
634 ln->fn_sernum = sernum;
1ab1457c 635
1da177e4
LT
636 if (dir)
637 pn->right = ln;
638 else
639 pn->left = ln;
640
641 if (addr_bit_set(&key->addr, plen))
642 ln->right = fn;
643 else
644 ln->left = fn;
645
646 fn->parent = ln;
647 }
648 return ln;
649}
650
94b2cfe0 651static bool rt6_qualify_for_ecmp(struct rt6_info *rt)
307f2fb9
HFS
652{
653 return (rt->rt6i_flags & (RTF_GATEWAY|RTF_ADDRCONF|RTF_DYNAMIC)) ==
654 RTF_GATEWAY;
655}
656
e715b6d3 657static void fib6_copy_metrics(u32 *mp, const struct mx6_config *mxc)
e5fd387a 658{
e715b6d3
FW
659 int i;
660
661 for (i = 0; i < RTAX_MAX; i++) {
662 if (test_bit(i, mxc->mx_valid))
663 mp[i] = mxc->mx[i];
664 }
665}
666
667static int fib6_commit_metrics(struct dst_entry *dst, struct mx6_config *mxc)
668{
669 if (!mxc->mx)
670 return 0;
671
672 if (dst->flags & DST_HOST) {
673 u32 *mp = dst_metrics_write_ptr(dst);
674
675 if (unlikely(!mp))
676 return -ENOMEM;
677
678 fib6_copy_metrics(mp, mxc);
679 } else {
680 dst_init_metrics(dst, mxc->mx, false);
681
682 /* We've stolen mx now. */
683 mxc->mx = NULL;
e5fd387a 684 }
e715b6d3 685
e5fd387a
MK
686 return 0;
687}
688
6e9e16e6
HFS
689static void fib6_purge_rt(struct rt6_info *rt, struct fib6_node *fn,
690 struct net *net)
691{
692 if (atomic_read(&rt->rt6i_ref) != 1) {
693 /* This route is used as dummy address holder in some split
694 * nodes. It is not leaked, but it still holds other resources,
695 * which must be released in time. So, scan ascendant nodes
696 * and replace dummy references to this route with references
697 * to still alive ones.
698 */
699 while (fn) {
700 if (!(fn->fn_flags & RTN_RTINFO) && fn->leaf == rt) {
701 fn->leaf = fib6_find_prefix(net, fn);
702 atomic_inc(&fn->leaf->rt6i_ref);
703 rt6_release(rt);
704 }
705 fn = fn->parent;
706 }
707 /* No more references are possible at this point. */
708 BUG_ON(atomic_read(&rt->rt6i_ref) != 1);
709 }
710}
711
1da177e4
LT
712/*
713 * Insert routing information in a node.
714 */
715
716static int fib6_add_rt2node(struct fib6_node *fn, struct rt6_info *rt,
e715b6d3 717 struct nl_info *info, struct mx6_config *mxc)
1da177e4
LT
718{
719 struct rt6_info *iter = NULL;
720 struct rt6_info **ins;
27596472 721 struct rt6_info **fallback_ins = NULL;
507c9b1e
DM
722 int replace = (info->nlh &&
723 (info->nlh->nlmsg_flags & NLM_F_REPLACE));
724 int add = (!info->nlh ||
725 (info->nlh->nlmsg_flags & NLM_F_CREATE));
4a287eba 726 int found = 0;
307f2fb9 727 bool rt_can_ecmp = rt6_qualify_for_ecmp(rt);
e5fd387a 728 int err;
1da177e4
LT
729
730 ins = &fn->leaf;
731
507c9b1e 732 for (iter = fn->leaf; iter; iter = iter->dst.rt6_next) {
1da177e4
LT
733 /*
734 * Search for duplicates
735 */
736
737 if (iter->rt6i_metric == rt->rt6i_metric) {
738 /*
739 * Same priority level
740 */
507c9b1e
DM
741 if (info->nlh &&
742 (info->nlh->nlmsg_flags & NLM_F_EXCL))
4a287eba
MV
743 return -EEXIST;
744 if (replace) {
27596472
MK
745 if (rt_can_ecmp == rt6_qualify_for_ecmp(iter)) {
746 found++;
747 break;
748 }
749 if (rt_can_ecmp)
750 fallback_ins = fallback_ins ?: ins;
751 goto next_iter;
4a287eba 752 }
1da177e4 753
d1918542 754 if (iter->dst.dev == rt->dst.dev &&
1da177e4
LT
755 iter->rt6i_idev == rt->rt6i_idev &&
756 ipv6_addr_equal(&iter->rt6i_gateway,
757 &rt->rt6i_gateway)) {
51ebd318
ND
758 if (rt->rt6i_nsiblings)
759 rt->rt6i_nsiblings = 0;
507c9b1e 760 if (!(iter->rt6i_flags & RTF_EXPIRES))
1da177e4 761 return -EEXIST;
1716a961
G
762 if (!(rt->rt6i_flags & RTF_EXPIRES))
763 rt6_clean_expires(iter);
764 else
765 rt6_set_expires(iter, rt->dst.expires);
45e4fd26 766 iter->rt6i_pmtu = rt->rt6i_pmtu;
1da177e4
LT
767 return -EEXIST;
768 }
51ebd318
ND
769 /* If we have the same destination and the same metric,
770 * but not the same gateway, then the route we try to
771 * add is sibling to this route, increment our counter
772 * of siblings, and later we will add our route to the
773 * list.
774 * Only static routes (which don't have flag
775 * RTF_EXPIRES) are used for ECMPv6.
776 *
777 * To avoid long list, we only had siblings if the
778 * route have a gateway.
779 */
307f2fb9
HFS
780 if (rt_can_ecmp &&
781 rt6_qualify_for_ecmp(iter))
51ebd318 782 rt->rt6i_nsiblings++;
1da177e4
LT
783 }
784
785 if (iter->rt6i_metric > rt->rt6i_metric)
786 break;
787
27596472 788next_iter:
d8d1f30b 789 ins = &iter->dst.rt6_next;
1da177e4
LT
790 }
791
27596472
MK
792 if (fallback_ins && !found) {
793 /* No ECMP-able route found, replace first non-ECMP one */
794 ins = fallback_ins;
795 iter = *ins;
796 found++;
797 }
798
f11e6659
DM
799 /* Reset round-robin state, if necessary */
800 if (ins == &fn->leaf)
801 fn->rr_ptr = NULL;
802
51ebd318
ND
803 /* Link this route to others same route. */
804 if (rt->rt6i_nsiblings) {
805 unsigned int rt6i_nsiblings;
806 struct rt6_info *sibling, *temp_sibling;
807
808 /* Find the first route that have the same metric */
809 sibling = fn->leaf;
810 while (sibling) {
307f2fb9
HFS
811 if (sibling->rt6i_metric == rt->rt6i_metric &&
812 rt6_qualify_for_ecmp(sibling)) {
51ebd318
ND
813 list_add_tail(&rt->rt6i_siblings,
814 &sibling->rt6i_siblings);
815 break;
816 }
817 sibling = sibling->dst.rt6_next;
818 }
819 /* For each sibling in the list, increment the counter of
820 * siblings. BUG() if counters does not match, list of siblings
821 * is broken!
822 */
823 rt6i_nsiblings = 0;
824 list_for_each_entry_safe(sibling, temp_sibling,
825 &rt->rt6i_siblings, rt6i_siblings) {
826 sibling->rt6i_nsiblings++;
827 BUG_ON(sibling->rt6i_nsiblings != rt->rt6i_nsiblings);
828 rt6i_nsiblings++;
829 }
830 BUG_ON(rt6i_nsiblings != rt->rt6i_nsiblings);
831 }
832
1da177e4
LT
833 /*
834 * insert node
835 */
4a287eba
MV
836 if (!replace) {
837 if (!add)
f3213831 838 pr_warn("NLM_F_CREATE should be set when creating new route\n");
4a287eba
MV
839
840add:
e715b6d3
FW
841 err = fib6_commit_metrics(&rt->dst, mxc);
842 if (err)
843 return err;
844
4a287eba
MV
845 rt->dst.rt6_next = iter;
846 *ins = rt;
847 rt->rt6i_node = fn;
848 atomic_inc(&rt->rt6i_ref);
849 inet6_rt_notify(RTM_NEWROUTE, rt, info);
850 info->nl_net->ipv6.rt6_stats->fib_rt_entries++;
851
507c9b1e 852 if (!(fn->fn_flags & RTN_RTINFO)) {
4a287eba
MV
853 info->nl_net->ipv6.rt6_stats->fib_route_nodes++;
854 fn->fn_flags |= RTN_RTINFO;
855 }
1da177e4 856
4a287eba 857 } else {
27596472
MK
858 int nsiblings;
859
4a287eba
MV
860 if (!found) {
861 if (add)
862 goto add;
f3213831 863 pr_warn("NLM_F_REPLACE set, but no existing node found!\n");
4a287eba
MV
864 return -ENOENT;
865 }
e715b6d3
FW
866
867 err = fib6_commit_metrics(&rt->dst, mxc);
868 if (err)
869 return err;
870
4a287eba
MV
871 *ins = rt;
872 rt->rt6i_node = fn;
873 rt->dst.rt6_next = iter->dst.rt6_next;
874 atomic_inc(&rt->rt6i_ref);
875 inet6_rt_notify(RTM_NEWROUTE, rt, info);
507c9b1e 876 if (!(fn->fn_flags & RTN_RTINFO)) {
4a287eba
MV
877 info->nl_net->ipv6.rt6_stats->fib_route_nodes++;
878 fn->fn_flags |= RTN_RTINFO;
879 }
27596472 880 nsiblings = iter->rt6i_nsiblings;
6e9e16e6
HFS
881 fib6_purge_rt(iter, fn, info->nl_net);
882 rt6_release(iter);
27596472
MK
883
884 if (nsiblings) {
885 /* Replacing an ECMP route, remove all siblings */
886 ins = &rt->dst.rt6_next;
887 iter = *ins;
888 while (iter) {
889 if (rt6_qualify_for_ecmp(iter)) {
890 *ins = iter->dst.rt6_next;
891 fib6_purge_rt(iter, fn, info->nl_net);
892 rt6_release(iter);
893 nsiblings--;
894 } else {
895 ins = &iter->dst.rt6_next;
896 }
897 iter = *ins;
898 }
899 WARN_ON(nsiblings != 0);
900 }
1da177e4
LT
901 }
902
903 return 0;
904}
905
94b2cfe0 906static void fib6_start_gc(struct net *net, struct rt6_info *rt)
1da177e4 907{
417f28bb 908 if (!timer_pending(&net->ipv6.ip6_fib_timer) &&
507c9b1e 909 (rt->rt6i_flags & (RTF_EXPIRES | RTF_CACHE)))
417f28bb 910 mod_timer(&net->ipv6.ip6_fib_timer,
847499ce 911 jiffies + net->ipv6.sysctl.ip6_rt_gc_interval);
1da177e4
LT
912}
913
63152fc0 914void fib6_force_start_gc(struct net *net)
1da177e4 915{
417f28bb
SH
916 if (!timer_pending(&net->ipv6.ip6_fib_timer))
917 mod_timer(&net->ipv6.ip6_fib_timer,
847499ce 918 jiffies + net->ipv6.sysctl.ip6_rt_gc_interval);
1da177e4
LT
919}
920
921/*
922 * Add routing information to the routing tree.
923 * <destination addr>/<source addr>
924 * with source addr info in sub-trees
925 */
926
e715b6d3
FW
927int fib6_add(struct fib6_node *root, struct rt6_info *rt,
928 struct nl_info *info, struct mx6_config *mxc)
1da177e4 929{
66729e18 930 struct fib6_node *fn, *pn = NULL;
1da177e4 931 int err = -ENOMEM;
4a287eba
MV
932 int allow_create = 1;
933 int replace_required = 0;
812918c4 934 int sernum = fib6_new_sernum(info->nl_net);
507c9b1e
DM
935
936 if (info->nlh) {
937 if (!(info->nlh->nlmsg_flags & NLM_F_CREATE))
4a287eba 938 allow_create = 0;
507c9b1e 939 if (info->nlh->nlmsg_flags & NLM_F_REPLACE)
4a287eba
MV
940 replace_required = 1;
941 }
942 if (!allow_create && !replace_required)
f3213831 943 pr_warn("RTM_NEWROUTE with no NLM_F_CREATE or NLM_F_REPLACE\n");
1da177e4 944
9225b230 945 fn = fib6_add_1(root, &rt->rt6i_dst.addr, rt->rt6i_dst.plen,
946 offsetof(struct rt6_info, rt6i_dst), allow_create,
c8c4d42a 947 replace_required, sernum);
4a287eba
MV
948 if (IS_ERR(fn)) {
949 err = PTR_ERR(fn);
ae7b4e1f 950 fn = NULL;
1da177e4 951 goto out;
188c517a 952 }
1da177e4 953
66729e18
YH
954 pn = fn;
955
1da177e4
LT
956#ifdef CONFIG_IPV6_SUBTREES
957 if (rt->rt6i_src.plen) {
958 struct fib6_node *sn;
959
507c9b1e 960 if (!fn->subtree) {
1da177e4
LT
961 struct fib6_node *sfn;
962
963 /*
964 * Create subtree.
965 *
966 * fn[main tree]
967 * |
968 * sfn[subtree root]
969 * \
970 * sn[new leaf node]
971 */
972
973 /* Create subtree root node */
974 sfn = node_alloc();
507c9b1e 975 if (!sfn)
1da177e4
LT
976 goto st_failure;
977
8ed67789
DL
978 sfn->leaf = info->nl_net->ipv6.ip6_null_entry;
979 atomic_inc(&info->nl_net->ipv6.ip6_null_entry->rt6i_ref);
1da177e4 980 sfn->fn_flags = RTN_ROOT;
c8c4d42a 981 sfn->fn_sernum = sernum;
1da177e4
LT
982
983 /* Now add the first leaf node to new subtree */
984
985 sn = fib6_add_1(sfn, &rt->rt6i_src.addr,
9225b230 986 rt->rt6i_src.plen,
4a287eba 987 offsetof(struct rt6_info, rt6i_src),
c8c4d42a 988 allow_create, replace_required, sernum);
1da177e4 989
f950c0ec 990 if (IS_ERR(sn)) {
1da177e4
LT
991 /* If it is failed, discard just allocated
992 root, and then (in st_failure) stale node
993 in main tree.
994 */
995 node_free(sfn);
188c517a 996 err = PTR_ERR(sn);
1da177e4
LT
997 goto st_failure;
998 }
999
1000 /* Now link new subtree to main tree */
1001 sfn->parent = fn;
1002 fn->subtree = sfn;
1da177e4
LT
1003 } else {
1004 sn = fib6_add_1(fn->subtree, &rt->rt6i_src.addr,
9225b230 1005 rt->rt6i_src.plen,
4a287eba 1006 offsetof(struct rt6_info, rt6i_src),
c8c4d42a 1007 allow_create, replace_required, sernum);
1da177e4 1008
4a287eba
MV
1009 if (IS_ERR(sn)) {
1010 err = PTR_ERR(sn);
1da177e4 1011 goto st_failure;
188c517a 1012 }
1da177e4
LT
1013 }
1014
507c9b1e 1015 if (!fn->leaf) {
66729e18
YH
1016 fn->leaf = rt;
1017 atomic_inc(&rt->rt6i_ref);
1018 }
1da177e4
LT
1019 fn = sn;
1020 }
1021#endif
1022
e715b6d3 1023 err = fib6_add_rt2node(fn, rt, info, mxc);
507c9b1e 1024 if (!err) {
63152fc0 1025 fib6_start_gc(info->nl_net, rt);
507c9b1e 1026 if (!(rt->rt6i_flags & RTF_CACHE))
163cd4e8 1027 fib6_prune_clones(info->nl_net, pn);
1da177e4
LT
1028 }
1029
1030out:
66729e18
YH
1031 if (err) {
1032#ifdef CONFIG_IPV6_SUBTREES
1033 /*
1034 * If fib6_add_1 has cleared the old leaf pointer in the
1035 * super-tree leaf node we have to find a new one for it.
1036 */
3c051235
DM
1037 if (pn != fn && pn->leaf == rt) {
1038 pn->leaf = NULL;
1039 atomic_dec(&rt->rt6i_ref);
1040 }
66729e18 1041 if (pn != fn && !pn->leaf && !(pn->fn_flags & RTN_RTINFO)) {
8ed67789 1042 pn->leaf = fib6_find_prefix(info->nl_net, pn);
66729e18
YH
1043#if RT6_DEBUG >= 2
1044 if (!pn->leaf) {
547b792c 1045 WARN_ON(pn->leaf == NULL);
8ed67789 1046 pn->leaf = info->nl_net->ipv6.ip6_null_entry;
66729e18
YH
1047 }
1048#endif
1049 atomic_inc(&pn->leaf->rt6i_ref);
1050 }
1051#endif
d8d1f30b 1052 dst_free(&rt->dst);
66729e18 1053 }
1da177e4
LT
1054 return err;
1055
1056#ifdef CONFIG_IPV6_SUBTREES
1057 /* Subtree creation failed, probably main tree node
1058 is orphan. If it is, shoot it.
1059 */
1060st_failure:
1061 if (fn && !(fn->fn_flags & (RTN_RTINFO|RTN_ROOT)))
8ed67789 1062 fib6_repair_tree(info->nl_net, fn);
d8d1f30b 1063 dst_free(&rt->dst);
1da177e4
LT
1064 return err;
1065#endif
1066}
1067
1068/*
1069 * Routing tree lookup
1070 *
1071 */
1072
1073struct lookup_args {
507c9b1e 1074 int offset; /* key offset on rt6_info */
b71d1d42 1075 const struct in6_addr *addr; /* search key */
1da177e4
LT
1076};
1077
437de07c
WY
1078static struct fib6_node *fib6_lookup_1(struct fib6_node *root,
1079 struct lookup_args *args)
1da177e4
LT
1080{
1081 struct fib6_node *fn;
e69a4adc 1082 __be32 dir;
1da177e4 1083
825e288e
YH
1084 if (unlikely(args->offset == 0))
1085 return NULL;
1086
1da177e4
LT
1087 /*
1088 * Descend on a tree
1089 */
1090
1091 fn = root;
1092
1093 for (;;) {
1094 struct fib6_node *next;
1095
1096 dir = addr_bit_set(args->addr, fn->fn_bit);
1097
1098 next = dir ? fn->right : fn->left;
1099
1100 if (next) {
1101 fn = next;
1102 continue;
1103 }
1da177e4
LT
1104 break;
1105 }
1106
507c9b1e 1107 while (fn) {
7fc33165 1108 if (FIB6_SUBTREE(fn) || fn->fn_flags & RTN_RTINFO) {
1da177e4
LT
1109 struct rt6key *key;
1110
1111 key = (struct rt6key *) ((u8 *) fn->leaf +
1112 args->offset);
1113
3fc5e044
YH
1114 if (ipv6_prefix_equal(&key->addr, args->addr, key->plen)) {
1115#ifdef CONFIG_IPV6_SUBTREES
3e3be275
HFS
1116 if (fn->subtree) {
1117 struct fib6_node *sfn;
1118 sfn = fib6_lookup_1(fn->subtree,
1119 args + 1);
1120 if (!sfn)
1121 goto backtrack;
1122 fn = sfn;
1123 }
3fc5e044 1124#endif
3e3be275 1125 if (fn->fn_flags & RTN_RTINFO)
3fc5e044
YH
1126 return fn;
1127 }
1da177e4 1128 }
3e3be275
HFS
1129#ifdef CONFIG_IPV6_SUBTREES
1130backtrack:
1131#endif
3fc5e044
YH
1132 if (fn->fn_flags & RTN_ROOT)
1133 break;
1134
1da177e4
LT
1135 fn = fn->parent;
1136 }
1137
1138 return NULL;
1139}
1140
437de07c
WY
1141struct fib6_node *fib6_lookup(struct fib6_node *root, const struct in6_addr *daddr,
1142 const struct in6_addr *saddr)
1da177e4 1143{
1da177e4 1144 struct fib6_node *fn;
825e288e
YH
1145 struct lookup_args args[] = {
1146 {
1147 .offset = offsetof(struct rt6_info, rt6i_dst),
1148 .addr = daddr,
1149 },
1da177e4 1150#ifdef CONFIG_IPV6_SUBTREES
825e288e
YH
1151 {
1152 .offset = offsetof(struct rt6_info, rt6i_src),
1153 .addr = saddr,
1154 },
1da177e4 1155#endif
825e288e
YH
1156 {
1157 .offset = 0, /* sentinel */
1158 }
1159 };
1da177e4 1160
fefc2a6c 1161 fn = fib6_lookup_1(root, daddr ? args : args + 1);
507c9b1e 1162 if (!fn || fn->fn_flags & RTN_TL_ROOT)
1da177e4
LT
1163 fn = root;
1164
1165 return fn;
1166}
1167
1168/*
1169 * Get node with specified destination prefix (and source prefix,
1170 * if subtrees are used)
1171 */
1172
1173
437de07c
WY
1174static struct fib6_node *fib6_locate_1(struct fib6_node *root,
1175 const struct in6_addr *addr,
1176 int plen, int offset)
1da177e4
LT
1177{
1178 struct fib6_node *fn;
1179
1180 for (fn = root; fn ; ) {
1181 struct rt6key *key = (struct rt6key *)((u8 *)fn->leaf + offset);
1182
1183 /*
1184 * Prefix match
1185 */
1186 if (plen < fn->fn_bit ||
1187 !ipv6_prefix_equal(&key->addr, addr, fn->fn_bit))
1188 return NULL;
1189
1190 if (plen == fn->fn_bit)
1191 return fn;
1192
1193 /*
1194 * We have more bits to go
1195 */
1196 if (addr_bit_set(addr, fn->fn_bit))
1197 fn = fn->right;
1198 else
1199 fn = fn->left;
1200 }
1201 return NULL;
1202}
1203
437de07c
WY
1204struct fib6_node *fib6_locate(struct fib6_node *root,
1205 const struct in6_addr *daddr, int dst_len,
1206 const struct in6_addr *saddr, int src_len)
1da177e4
LT
1207{
1208 struct fib6_node *fn;
1209
1210 fn = fib6_locate_1(root, daddr, dst_len,
1211 offsetof(struct rt6_info, rt6i_dst));
1212
1213#ifdef CONFIG_IPV6_SUBTREES
1214 if (src_len) {
547b792c 1215 WARN_ON(saddr == NULL);
3fc5e044
YH
1216 if (fn && fn->subtree)
1217 fn = fib6_locate_1(fn->subtree, saddr, src_len,
1da177e4
LT
1218 offsetof(struct rt6_info, rt6i_src));
1219 }
1220#endif
1221
507c9b1e 1222 if (fn && fn->fn_flags & RTN_RTINFO)
1da177e4
LT
1223 return fn;
1224
1225 return NULL;
1226}
1227
1228
1229/*
1230 * Deletion
1231 *
1232 */
1233
8ed67789 1234static struct rt6_info *fib6_find_prefix(struct net *net, struct fib6_node *fn)
1da177e4 1235{
507c9b1e 1236 if (fn->fn_flags & RTN_ROOT)
8ed67789 1237 return net->ipv6.ip6_null_entry;
1da177e4 1238
507c9b1e
DM
1239 while (fn) {
1240 if (fn->left)
1da177e4 1241 return fn->left->leaf;
507c9b1e 1242 if (fn->right)
1da177e4
LT
1243 return fn->right->leaf;
1244
7fc33165 1245 fn = FIB6_SUBTREE(fn);
1da177e4
LT
1246 }
1247 return NULL;
1248}
1249
1250/*
1251 * Called to trim the tree of intermediate nodes when possible. "fn"
1252 * is the node we want to try and remove.
1253 */
1254
8ed67789
DL
1255static struct fib6_node *fib6_repair_tree(struct net *net,
1256 struct fib6_node *fn)
1da177e4
LT
1257{
1258 int children;
1259 int nstate;
1260 struct fib6_node *child, *pn;
94b2cfe0 1261 struct fib6_walker *w;
1da177e4
LT
1262 int iter = 0;
1263
1264 for (;;) {
1265 RT6_TRACE("fixing tree: plen=%d iter=%d\n", fn->fn_bit, iter);
1266 iter++;
1267
547b792c
IJ
1268 WARN_ON(fn->fn_flags & RTN_RTINFO);
1269 WARN_ON(fn->fn_flags & RTN_TL_ROOT);
53b24b8f 1270 WARN_ON(fn->leaf);
1da177e4
LT
1271
1272 children = 0;
1273 child = NULL;
49e253e3
WY
1274 if (fn->right)
1275 child = fn->right, children |= 1;
1276 if (fn->left)
1277 child = fn->left, children |= 2;
1da177e4 1278
7fc33165 1279 if (children == 3 || FIB6_SUBTREE(fn)
1da177e4
LT
1280#ifdef CONFIG_IPV6_SUBTREES
1281 /* Subtree root (i.e. fn) may have one child */
507c9b1e 1282 || (children && fn->fn_flags & RTN_ROOT)
1da177e4
LT
1283#endif
1284 ) {
8ed67789 1285 fn->leaf = fib6_find_prefix(net, fn);
1da177e4 1286#if RT6_DEBUG >= 2
507c9b1e 1287 if (!fn->leaf) {
547b792c 1288 WARN_ON(!fn->leaf);
8ed67789 1289 fn->leaf = net->ipv6.ip6_null_entry;
1da177e4
LT
1290 }
1291#endif
1292 atomic_inc(&fn->leaf->rt6i_ref);
1293 return fn->parent;
1294 }
1295
1296 pn = fn->parent;
1297#ifdef CONFIG_IPV6_SUBTREES
7fc33165 1298 if (FIB6_SUBTREE(pn) == fn) {
547b792c 1299 WARN_ON(!(fn->fn_flags & RTN_ROOT));
7fc33165 1300 FIB6_SUBTREE(pn) = NULL;
1da177e4
LT
1301 nstate = FWS_L;
1302 } else {
547b792c 1303 WARN_ON(fn->fn_flags & RTN_ROOT);
1da177e4 1304#endif
49e253e3
WY
1305 if (pn->right == fn)
1306 pn->right = child;
1307 else if (pn->left == fn)
1308 pn->left = child;
1da177e4 1309#if RT6_DEBUG >= 2
547b792c
IJ
1310 else
1311 WARN_ON(1);
1da177e4
LT
1312#endif
1313 if (child)
1314 child->parent = pn;
1315 nstate = FWS_R;
1316#ifdef CONFIG_IPV6_SUBTREES
1317 }
1318#endif
1319
1320 read_lock(&fib6_walker_lock);
1321 FOR_WALKERS(w) {
507c9b1e 1322 if (!child) {
1da177e4
LT
1323 if (w->root == fn) {
1324 w->root = w->node = NULL;
1325 RT6_TRACE("W %p adjusted by delroot 1\n", w);
1326 } else if (w->node == fn) {
1327 RT6_TRACE("W %p adjusted by delnode 1, s=%d/%d\n", w, w->state, nstate);
1328 w->node = pn;
1329 w->state = nstate;
1330 }
1331 } else {
1332 if (w->root == fn) {
1333 w->root = child;
1334 RT6_TRACE("W %p adjusted by delroot 2\n", w);
1335 }
1336 if (w->node == fn) {
1337 w->node = child;
1338 if (children&2) {
1339 RT6_TRACE("W %p adjusted by delnode 2, s=%d\n", w, w->state);
8db46f1d 1340 w->state = w->state >= FWS_R ? FWS_U : FWS_INIT;
1da177e4
LT
1341 } else {
1342 RT6_TRACE("W %p adjusted by delnode 2, s=%d\n", w, w->state);
8db46f1d 1343 w->state = w->state >= FWS_C ? FWS_U : FWS_INIT;
1da177e4
LT
1344 }
1345 }
1346 }
1347 }
1348 read_unlock(&fib6_walker_lock);
1349
1350 node_free(fn);
507c9b1e 1351 if (pn->fn_flags & RTN_RTINFO || FIB6_SUBTREE(pn))
1da177e4
LT
1352 return pn;
1353
1354 rt6_release(pn->leaf);
1355 pn->leaf = NULL;
1356 fn = pn;
1357 }
1358}
1359
1360static void fib6_del_route(struct fib6_node *fn, struct rt6_info **rtp,
86872cb5 1361 struct nl_info *info)
1da177e4 1362{
94b2cfe0 1363 struct fib6_walker *w;
1da177e4 1364 struct rt6_info *rt = *rtp;
c572872f 1365 struct net *net = info->nl_net;
1da177e4
LT
1366
1367 RT6_TRACE("fib6_del_route\n");
1368
1369 /* Unlink it */
d8d1f30b 1370 *rtp = rt->dst.rt6_next;
1da177e4 1371 rt->rt6i_node = NULL;
c572872f
BT
1372 net->ipv6.rt6_stats->fib_rt_entries--;
1373 net->ipv6.rt6_stats->fib_discarded_routes++;
1da177e4 1374
f11e6659
DM
1375 /* Reset round-robin state, if necessary */
1376 if (fn->rr_ptr == rt)
1377 fn->rr_ptr = NULL;
1378
51ebd318
ND
1379 /* Remove this entry from other siblings */
1380 if (rt->rt6i_nsiblings) {
1381 struct rt6_info *sibling, *next_sibling;
1382
1383 list_for_each_entry_safe(sibling, next_sibling,
1384 &rt->rt6i_siblings, rt6i_siblings)
1385 sibling->rt6i_nsiblings--;
1386 rt->rt6i_nsiblings = 0;
1387 list_del_init(&rt->rt6i_siblings);
1388 }
1389
1da177e4
LT
1390 /* Adjust walkers */
1391 read_lock(&fib6_walker_lock);
1392 FOR_WALKERS(w) {
1393 if (w->state == FWS_C && w->leaf == rt) {
1394 RT6_TRACE("walker %p adjusted by delroute\n", w);
d8d1f30b 1395 w->leaf = rt->dst.rt6_next;
507c9b1e 1396 if (!w->leaf)
1da177e4
LT
1397 w->state = FWS_U;
1398 }
1399 }
1400 read_unlock(&fib6_walker_lock);
1401
d8d1f30b 1402 rt->dst.rt6_next = NULL;
1da177e4 1403
1da177e4 1404 /* If it was last route, expunge its radix tree node */
507c9b1e 1405 if (!fn->leaf) {
1da177e4 1406 fn->fn_flags &= ~RTN_RTINFO;
c572872f 1407 net->ipv6.rt6_stats->fib_route_nodes--;
8ed67789 1408 fn = fib6_repair_tree(net, fn);
1da177e4
LT
1409 }
1410
6e9e16e6 1411 fib6_purge_rt(rt, fn, net);
1da177e4 1412
86872cb5 1413 inet6_rt_notify(RTM_DELROUTE, rt, info);
1da177e4
LT
1414 rt6_release(rt);
1415}
1416
86872cb5 1417int fib6_del(struct rt6_info *rt, struct nl_info *info)
1da177e4 1418{
8ed67789 1419 struct net *net = info->nl_net;
1da177e4
LT
1420 struct fib6_node *fn = rt->rt6i_node;
1421 struct rt6_info **rtp;
1422
1423#if RT6_DEBUG >= 2
8db46f1d 1424 if (rt->dst.obsolete > 0) {
53b24b8f 1425 WARN_ON(fn);
1da177e4
LT
1426 return -ENOENT;
1427 }
1428#endif
507c9b1e 1429 if (!fn || rt == net->ipv6.ip6_null_entry)
1da177e4
LT
1430 return -ENOENT;
1431
547b792c 1432 WARN_ON(!(fn->fn_flags & RTN_RTINFO));
1da177e4 1433
507c9b1e 1434 if (!(rt->rt6i_flags & RTF_CACHE)) {
150730d5
YH
1435 struct fib6_node *pn = fn;
1436#ifdef CONFIG_IPV6_SUBTREES
1437 /* clones of this route might be in another subtree */
1438 if (rt->rt6i_src.plen) {
507c9b1e 1439 while (!(pn->fn_flags & RTN_ROOT))
150730d5
YH
1440 pn = pn->parent;
1441 pn = pn->parent;
1442 }
1443#endif
163cd4e8 1444 fib6_prune_clones(info->nl_net, pn);
150730d5 1445 }
1da177e4
LT
1446
1447 /*
1448 * Walk the leaf entries looking for ourself
1449 */
1450
d8d1f30b 1451 for (rtp = &fn->leaf; *rtp; rtp = &(*rtp)->dst.rt6_next) {
1da177e4 1452 if (*rtp == rt) {
86872cb5 1453 fib6_del_route(fn, rtp, info);
1da177e4
LT
1454 return 0;
1455 }
1456 }
1457 return -ENOENT;
1458}
1459
1460/*
1461 * Tree traversal function.
1462 *
1463 * Certainly, it is not interrupt safe.
1464 * However, it is internally reenterable wrt itself and fib6_add/fib6_del.
1465 * It means, that we can modify tree during walking
1466 * and use this function for garbage collection, clone pruning,
1ab1457c 1467 * cleaning tree when a device goes down etc. etc.
1da177e4
LT
1468 *
1469 * It guarantees that every node will be traversed,
1470 * and that it will be traversed only once.
1471 *
1472 * Callback function w->func may return:
1473 * 0 -> continue walking.
1474 * positive value -> walking is suspended (used by tree dumps,
1475 * and probably by gc, if it will be split to several slices)
1476 * negative value -> terminate walking.
1477 *
1478 * The function itself returns:
1479 * 0 -> walk is complete.
1480 * >0 -> walk is incomplete (i.e. suspended)
1481 * <0 -> walk is terminated by an error.
1482 */
1483
94b2cfe0 1484static int fib6_walk_continue(struct fib6_walker *w)
1da177e4
LT
1485{
1486 struct fib6_node *fn, *pn;
1487
1488 for (;;) {
1489 fn = w->node;
507c9b1e 1490 if (!fn)
1da177e4
LT
1491 return 0;
1492
1493 if (w->prune && fn != w->root &&
507c9b1e 1494 fn->fn_flags & RTN_RTINFO && w->state < FWS_C) {
1da177e4
LT
1495 w->state = FWS_C;
1496 w->leaf = fn->leaf;
1497 }
1498 switch (w->state) {
1499#ifdef CONFIG_IPV6_SUBTREES
1500 case FWS_S:
7fc33165
YH
1501 if (FIB6_SUBTREE(fn)) {
1502 w->node = FIB6_SUBTREE(fn);
1da177e4
LT
1503 continue;
1504 }
1505 w->state = FWS_L;
1ab1457c 1506#endif
1da177e4
LT
1507 case FWS_L:
1508 if (fn->left) {
1509 w->node = fn->left;
1510 w->state = FWS_INIT;
1511 continue;
1512 }
1513 w->state = FWS_R;
1514 case FWS_R:
1515 if (fn->right) {
1516 w->node = fn->right;
1517 w->state = FWS_INIT;
1518 continue;
1519 }
1520 w->state = FWS_C;
1521 w->leaf = fn->leaf;
1522 case FWS_C:
507c9b1e 1523 if (w->leaf && fn->fn_flags & RTN_RTINFO) {
2bec5a36
PM
1524 int err;
1525
fa809e2f
ED
1526 if (w->skip) {
1527 w->skip--;
1c265854 1528 goto skip;
2bec5a36
PM
1529 }
1530
1531 err = w->func(w);
1da177e4
LT
1532 if (err)
1533 return err;
2bec5a36
PM
1534
1535 w->count++;
1da177e4
LT
1536 continue;
1537 }
1c265854 1538skip:
1da177e4
LT
1539 w->state = FWS_U;
1540 case FWS_U:
1541 if (fn == w->root)
1542 return 0;
1543 pn = fn->parent;
1544 w->node = pn;
1545#ifdef CONFIG_IPV6_SUBTREES
7fc33165 1546 if (FIB6_SUBTREE(pn) == fn) {
547b792c 1547 WARN_ON(!(fn->fn_flags & RTN_ROOT));
1da177e4
LT
1548 w->state = FWS_L;
1549 continue;
1550 }
1551#endif
1552 if (pn->left == fn) {
1553 w->state = FWS_R;
1554 continue;
1555 }
1556 if (pn->right == fn) {
1557 w->state = FWS_C;
1558 w->leaf = w->node->leaf;
1559 continue;
1560 }
1561#if RT6_DEBUG >= 2
547b792c 1562 WARN_ON(1);
1da177e4
LT
1563#endif
1564 }
1565 }
1566}
1567
94b2cfe0 1568static int fib6_walk(struct fib6_walker *w)
1da177e4
LT
1569{
1570 int res;
1571
1572 w->state = FWS_INIT;
1573 w->node = w->root;
1574
1575 fib6_walker_link(w);
1576 res = fib6_walk_continue(w);
1577 if (res <= 0)
1578 fib6_walker_unlink(w);
1579 return res;
1580}
1581
94b2cfe0 1582static int fib6_clean_node(struct fib6_walker *w)
1da177e4
LT
1583{
1584 int res;
1585 struct rt6_info *rt;
94b2cfe0 1586 struct fib6_cleaner *c = container_of(w, struct fib6_cleaner, w);
ec7d43c2
BT
1587 struct nl_info info = {
1588 .nl_net = c->net,
1589 };
1da177e4 1590
327571cb
HFS
1591 if (c->sernum != FIB6_NO_SERNUM_CHANGE &&
1592 w->node->fn_sernum != c->sernum)
1593 w->node->fn_sernum = c->sernum;
1594
1595 if (!c->func) {
1596 WARN_ON_ONCE(c->sernum == FIB6_NO_SERNUM_CHANGE);
1597 w->leaf = NULL;
1598 return 0;
1599 }
1600
d8d1f30b 1601 for (rt = w->leaf; rt; rt = rt->dst.rt6_next) {
1da177e4
LT
1602 res = c->func(rt, c->arg);
1603 if (res < 0) {
1604 w->leaf = rt;
528c4ceb 1605 res = fib6_del(rt, &info);
1da177e4
LT
1606 if (res) {
1607#if RT6_DEBUG >= 2
91df42be
JP
1608 pr_debug("%s: del failed: rt=%p@%p err=%d\n",
1609 __func__, rt, rt->rt6i_node, res);
1da177e4
LT
1610#endif
1611 continue;
1612 }
1613 return 0;
1614 }
547b792c 1615 WARN_ON(res != 0);
1da177e4
LT
1616 }
1617 w->leaf = rt;
1618 return 0;
1619}
1620
1621/*
1622 * Convenient frontend to tree walker.
1ab1457c 1623 *
1da177e4
LT
1624 * func is called on each route.
1625 * It may return -1 -> delete this route.
1626 * 0 -> continue walking
1627 *
1628 * prune==1 -> only immediate children of node (certainly,
1629 * ignoring pure split nodes) will be scanned.
1630 */
1631
ec7d43c2 1632static void fib6_clean_tree(struct net *net, struct fib6_node *root,
8ce11e6a 1633 int (*func)(struct rt6_info *, void *arg),
327571cb 1634 bool prune, int sernum, void *arg)
1da177e4 1635{
94b2cfe0 1636 struct fib6_cleaner c;
1da177e4
LT
1637
1638 c.w.root = root;
1639 c.w.func = fib6_clean_node;
1640 c.w.prune = prune;
2bec5a36
PM
1641 c.w.count = 0;
1642 c.w.skip = 0;
1da177e4 1643 c.func = func;
327571cb 1644 c.sernum = sernum;
1da177e4 1645 c.arg = arg;
ec7d43c2 1646 c.net = net;
1da177e4
LT
1647
1648 fib6_walk(&c.w);
1649}
1650
327571cb
HFS
1651static void __fib6_clean_all(struct net *net,
1652 int (*func)(struct rt6_info *, void *),
1653 int sernum, void *arg)
c71099ac 1654{
c71099ac 1655 struct fib6_table *table;
58f09b78 1656 struct hlist_head *head;
1b43af54 1657 unsigned int h;
c71099ac 1658
1b43af54 1659 rcu_read_lock();
a33bc5c1 1660 for (h = 0; h < FIB6_TABLE_HASHSZ; h++) {
f3db4851 1661 head = &net->ipv6.fib_table_hash[h];
b67bfe0d 1662 hlist_for_each_entry_rcu(table, head, tb6_hlist) {
c71099ac 1663 write_lock_bh(&table->tb6_lock);
ec7d43c2 1664 fib6_clean_tree(net, &table->tb6_root,
327571cb 1665 func, false, sernum, arg);
c71099ac
TG
1666 write_unlock_bh(&table->tb6_lock);
1667 }
1668 }
1b43af54 1669 rcu_read_unlock();
c71099ac
TG
1670}
1671
327571cb
HFS
1672void fib6_clean_all(struct net *net, int (*func)(struct rt6_info *, void *),
1673 void *arg)
1674{
1675 __fib6_clean_all(net, func, FIB6_NO_SERNUM_CHANGE, arg);
1676}
1677
1da177e4
LT
1678static int fib6_prune_clone(struct rt6_info *rt, void *arg)
1679{
1680 if (rt->rt6i_flags & RTF_CACHE) {
1681 RT6_TRACE("pruning clone %p\n", rt);
1682 return -1;
1683 }
1684
1685 return 0;
1686}
1687
163cd4e8 1688static void fib6_prune_clones(struct net *net, struct fib6_node *fn)
1da177e4 1689{
327571cb
HFS
1690 fib6_clean_tree(net, fn, fib6_prune_clone, true,
1691 FIB6_NO_SERNUM_CHANGE, NULL);
705f1c86
HFS
1692}
1693
1694static void fib6_flush_trees(struct net *net)
1695{
812918c4 1696 int new_sernum = fib6_new_sernum(net);
705f1c86 1697
327571cb 1698 __fib6_clean_all(net, NULL, new_sernum, NULL);
705f1c86
HFS
1699}
1700
1da177e4
LT
1701/*
1702 * Garbage collection
1703 */
1704
1705static struct fib6_gc_args
1706{
1707 int timeout;
1708 int more;
1709} gc_args;
1710
1711static int fib6_age(struct rt6_info *rt, void *arg)
1712{
1713 unsigned long now = jiffies;
1714
1715 /*
1716 * check addrconf expiration here.
1717 * Routes are expired even if they are in use.
1718 *
1719 * Also age clones. Note, that clones are aged out
1720 * only if they are not in use now.
1721 */
1722
d1918542
DM
1723 if (rt->rt6i_flags & RTF_EXPIRES && rt->dst.expires) {
1724 if (time_after(now, rt->dst.expires)) {
1da177e4 1725 RT6_TRACE("expiring %p\n", rt);
1da177e4
LT
1726 return -1;
1727 }
1728 gc_args.more++;
1729 } else if (rt->rt6i_flags & RTF_CACHE) {
d8d1f30b
CG
1730 if (atomic_read(&rt->dst.__refcnt) == 0 &&
1731 time_after_eq(now, rt->dst.lastuse + gc_args.timeout)) {
1da177e4
LT
1732 RT6_TRACE("aging clone %p\n", rt);
1733 return -1;
5339ab8b
DM
1734 } else if (rt->rt6i_flags & RTF_GATEWAY) {
1735 struct neighbour *neigh;
1736 __u8 neigh_flags = 0;
1737
1738 neigh = dst_neigh_lookup(&rt->dst, &rt->rt6i_gateway);
1739 if (neigh) {
1740 neigh_flags = neigh->flags;
1741 neigh_release(neigh);
1742 }
8bd74516 1743 if (!(neigh_flags & NTF_ROUTER)) {
5339ab8b
DM
1744 RT6_TRACE("purging route %p via non-router but gateway\n",
1745 rt);
1746 return -1;
1747 }
1da177e4
LT
1748 }
1749 gc_args.more++;
1750 }
1751
1752 return 0;
1753}
1754
1755static DEFINE_SPINLOCK(fib6_gc_lock);
1756
2ac3ac8f 1757void fib6_run_gc(unsigned long expires, struct net *net, bool force)
1da177e4 1758{
49a18d86
MK
1759 unsigned long now;
1760
2ac3ac8f 1761 if (force) {
1da177e4 1762 spin_lock_bh(&fib6_gc_lock);
2ac3ac8f
MK
1763 } else if (!spin_trylock_bh(&fib6_gc_lock)) {
1764 mod_timer(&net->ipv6.ip6_fib_timer, jiffies + HZ);
1765 return;
1da177e4 1766 }
2ac3ac8f
MK
1767 gc_args.timeout = expires ? (int)expires :
1768 net->ipv6.sysctl.ip6_rt_gc_interval;
1da177e4 1769
3d0f24a7 1770 gc_args.more = icmp6_dst_gc();
f3db4851 1771
0c3584d5 1772 fib6_clean_all(net, fib6_age, NULL);
49a18d86
MK
1773 now = jiffies;
1774 net->ipv6.ip6_rt_last_gc = now;
1da177e4
LT
1775
1776 if (gc_args.more)
c8a45222 1777 mod_timer(&net->ipv6.ip6_fib_timer,
49a18d86 1778 round_jiffies(now
c8a45222 1779 + net->ipv6.sysctl.ip6_rt_gc_interval));
417f28bb
SH
1780 else
1781 del_timer(&net->ipv6.ip6_fib_timer);
1da177e4
LT
1782 spin_unlock_bh(&fib6_gc_lock);
1783}
1784
5b7c931d
DL
1785static void fib6_gc_timer_cb(unsigned long arg)
1786{
2ac3ac8f 1787 fib6_run_gc(0, (struct net *)arg, true);
5b7c931d
DL
1788}
1789
2c8c1e72 1790static int __net_init fib6_net_init(struct net *net)
1da177e4 1791{
10da66f7
ED
1792 size_t size = sizeof(struct hlist_head) * FIB6_TABLE_HASHSZ;
1793
417f28bb 1794 setup_timer(&net->ipv6.ip6_fib_timer, fib6_gc_timer_cb, (unsigned long)net);
63152fc0 1795
c572872f
BT
1796 net->ipv6.rt6_stats = kzalloc(sizeof(*net->ipv6.rt6_stats), GFP_KERNEL);
1797 if (!net->ipv6.rt6_stats)
1798 goto out_timer;
1799
10da66f7
ED
1800 /* Avoid false sharing : Use at least a full cache line */
1801 size = max_t(size_t, size, L1_CACHE_BYTES);
1802
1803 net->ipv6.fib_table_hash = kzalloc(size, GFP_KERNEL);
58f09b78 1804 if (!net->ipv6.fib_table_hash)
c572872f 1805 goto out_rt6_stats;
e0b85590 1806
58f09b78
DL
1807 net->ipv6.fib6_main_tbl = kzalloc(sizeof(*net->ipv6.fib6_main_tbl),
1808 GFP_KERNEL);
1809 if (!net->ipv6.fib6_main_tbl)
e0b85590
DL
1810 goto out_fib_table_hash;
1811
58f09b78 1812 net->ipv6.fib6_main_tbl->tb6_id = RT6_TABLE_MAIN;
8ed67789 1813 net->ipv6.fib6_main_tbl->tb6_root.leaf = net->ipv6.ip6_null_entry;
58f09b78
DL
1814 net->ipv6.fib6_main_tbl->tb6_root.fn_flags =
1815 RTN_ROOT | RTN_TL_ROOT | RTN_RTINFO;
8e773277 1816 inet_peer_base_init(&net->ipv6.fib6_main_tbl->tb6_peers);
e0b85590
DL
1817
1818#ifdef CONFIG_IPV6_MULTIPLE_TABLES
58f09b78
DL
1819 net->ipv6.fib6_local_tbl = kzalloc(sizeof(*net->ipv6.fib6_local_tbl),
1820 GFP_KERNEL);
1821 if (!net->ipv6.fib6_local_tbl)
e0b85590 1822 goto out_fib6_main_tbl;
58f09b78 1823 net->ipv6.fib6_local_tbl->tb6_id = RT6_TABLE_LOCAL;
8ed67789 1824 net->ipv6.fib6_local_tbl->tb6_root.leaf = net->ipv6.ip6_null_entry;
58f09b78
DL
1825 net->ipv6.fib6_local_tbl->tb6_root.fn_flags =
1826 RTN_ROOT | RTN_TL_ROOT | RTN_RTINFO;
8e773277 1827 inet_peer_base_init(&net->ipv6.fib6_local_tbl->tb6_peers);
e0b85590 1828#endif
58f09b78 1829 fib6_tables_init(net);
f845ab6b 1830
417f28bb 1831 return 0;
d63bddbe 1832
e0b85590 1833#ifdef CONFIG_IPV6_MULTIPLE_TABLES
e0b85590 1834out_fib6_main_tbl:
58f09b78 1835 kfree(net->ipv6.fib6_main_tbl);
e0b85590 1836#endif
e0b85590 1837out_fib_table_hash:
58f09b78 1838 kfree(net->ipv6.fib_table_hash);
c572872f
BT
1839out_rt6_stats:
1840 kfree(net->ipv6.rt6_stats);
63152fc0 1841out_timer:
417f28bb 1842 return -ENOMEM;
8db46f1d 1843}
58f09b78
DL
1844
1845static void fib6_net_exit(struct net *net)
1846{
8ed67789 1847 rt6_ifdown(net, NULL);
417f28bb
SH
1848 del_timer_sync(&net->ipv6.ip6_fib_timer);
1849
58f09b78 1850#ifdef CONFIG_IPV6_MULTIPLE_TABLES
8e773277 1851 inetpeer_invalidate_tree(&net->ipv6.fib6_local_tbl->tb6_peers);
58f09b78
DL
1852 kfree(net->ipv6.fib6_local_tbl);
1853#endif
8e773277 1854 inetpeer_invalidate_tree(&net->ipv6.fib6_main_tbl->tb6_peers);
58f09b78
DL
1855 kfree(net->ipv6.fib6_main_tbl);
1856 kfree(net->ipv6.fib_table_hash);
c572872f 1857 kfree(net->ipv6.rt6_stats);
58f09b78
DL
1858}
1859
1860static struct pernet_operations fib6_net_ops = {
1861 .init = fib6_net_init,
1862 .exit = fib6_net_exit,
1863};
1864
1865int __init fib6_init(void)
1866{
1867 int ret = -ENOMEM;
63152fc0 1868
58f09b78
DL
1869 fib6_node_kmem = kmem_cache_create("fib6_nodes",
1870 sizeof(struct fib6_node),
1871 0, SLAB_HWCACHE_ALIGN,
1872 NULL);
1873 if (!fib6_node_kmem)
1874 goto out;
1875
1876 ret = register_pernet_subsys(&fib6_net_ops);
1877 if (ret)
c572872f 1878 goto out_kmem_cache_create;
e8803b6c
DM
1879
1880 ret = __rtnl_register(PF_INET6, RTM_GETROUTE, NULL, inet6_dump_fib,
1881 NULL);
1882 if (ret)
1883 goto out_unregister_subsys;
705f1c86
HFS
1884
1885 __fib6_flush_trees = fib6_flush_trees;
58f09b78
DL
1886out:
1887 return ret;
1888
e8803b6c
DM
1889out_unregister_subsys:
1890 unregister_pernet_subsys(&fib6_net_ops);
d63bddbe
DL
1891out_kmem_cache_create:
1892 kmem_cache_destroy(fib6_node_kmem);
1893 goto out;
1da177e4
LT
1894}
1895
1896void fib6_gc_cleanup(void)
1897{
58f09b78 1898 unregister_pernet_subsys(&fib6_net_ops);
1da177e4
LT
1899 kmem_cache_destroy(fib6_node_kmem);
1900}
8d2ca1d7
HFS
1901
1902#ifdef CONFIG_PROC_FS
1903
1904struct ipv6_route_iter {
1905 struct seq_net_private p;
94b2cfe0 1906 struct fib6_walker w;
8d2ca1d7
HFS
1907 loff_t skip;
1908 struct fib6_table *tbl;
42b18706 1909 int sernum;
8d2ca1d7
HFS
1910};
1911
1912static int ipv6_route_seq_show(struct seq_file *seq, void *v)
1913{
1914 struct rt6_info *rt = v;
1915 struct ipv6_route_iter *iter = seq->private;
1916
1917 seq_printf(seq, "%pi6 %02x ", &rt->rt6i_dst.addr, rt->rt6i_dst.plen);
1918
1919#ifdef CONFIG_IPV6_SUBTREES
1920 seq_printf(seq, "%pi6 %02x ", &rt->rt6i_src.addr, rt->rt6i_src.plen);
1921#else
1922 seq_puts(seq, "00000000000000000000000000000000 00 ");
1923#endif
1924 if (rt->rt6i_flags & RTF_GATEWAY)
1925 seq_printf(seq, "%pi6", &rt->rt6i_gateway);
1926 else
1927 seq_puts(seq, "00000000000000000000000000000000");
1928
1929 seq_printf(seq, " %08x %08x %08x %08x %8s\n",
1930 rt->rt6i_metric, atomic_read(&rt->dst.__refcnt),
1931 rt->dst.__use, rt->rt6i_flags,
1932 rt->dst.dev ? rt->dst.dev->name : "");
1933 iter->w.leaf = NULL;
1934 return 0;
1935}
1936
94b2cfe0 1937static int ipv6_route_yield(struct fib6_walker *w)
8d2ca1d7
HFS
1938{
1939 struct ipv6_route_iter *iter = w->args;
1940
1941 if (!iter->skip)
1942 return 1;
1943
1944 do {
1945 iter->w.leaf = iter->w.leaf->dst.rt6_next;
1946 iter->skip--;
1947 if (!iter->skip && iter->w.leaf)
1948 return 1;
1949 } while (iter->w.leaf);
1950
1951 return 0;
1952}
1953
1954static void ipv6_route_seq_setup_walk(struct ipv6_route_iter *iter)
1955{
1956 memset(&iter->w, 0, sizeof(iter->w));
1957 iter->w.func = ipv6_route_yield;
1958 iter->w.root = &iter->tbl->tb6_root;
1959 iter->w.state = FWS_INIT;
1960 iter->w.node = iter->w.root;
1961 iter->w.args = iter;
0a67d3ef 1962 iter->sernum = iter->w.root->fn_sernum;
8d2ca1d7
HFS
1963 INIT_LIST_HEAD(&iter->w.lh);
1964 fib6_walker_link(&iter->w);
1965}
1966
1967static struct fib6_table *ipv6_route_seq_next_table(struct fib6_table *tbl,
1968 struct net *net)
1969{
1970 unsigned int h;
1971 struct hlist_node *node;
1972
1973 if (tbl) {
1974 h = (tbl->tb6_id & (FIB6_TABLE_HASHSZ - 1)) + 1;
1975 node = rcu_dereference_bh(hlist_next_rcu(&tbl->tb6_hlist));
1976 } else {
1977 h = 0;
1978 node = NULL;
1979 }
1980
1981 while (!node && h < FIB6_TABLE_HASHSZ) {
1982 node = rcu_dereference_bh(
1983 hlist_first_rcu(&net->ipv6.fib_table_hash[h++]));
1984 }
1985 return hlist_entry_safe(node, struct fib6_table, tb6_hlist);
1986}
1987
0a67d3ef
HFS
1988static void ipv6_route_check_sernum(struct ipv6_route_iter *iter)
1989{
1990 if (iter->sernum != iter->w.root->fn_sernum) {
1991 iter->sernum = iter->w.root->fn_sernum;
1992 iter->w.state = FWS_INIT;
1993 iter->w.node = iter->w.root;
1994 WARN_ON(iter->w.skip);
1995 iter->w.skip = iter->w.count;
1996 }
1997}
1998
8d2ca1d7
HFS
1999static void *ipv6_route_seq_next(struct seq_file *seq, void *v, loff_t *pos)
2000{
2001 int r;
2002 struct rt6_info *n;
2003 struct net *net = seq_file_net(seq);
2004 struct ipv6_route_iter *iter = seq->private;
2005
2006 if (!v)
2007 goto iter_table;
2008
2009 n = ((struct rt6_info *)v)->dst.rt6_next;
2010 if (n) {
2011 ++*pos;
2012 return n;
2013 }
2014
2015iter_table:
0a67d3ef 2016 ipv6_route_check_sernum(iter);
8d2ca1d7
HFS
2017 read_lock(&iter->tbl->tb6_lock);
2018 r = fib6_walk_continue(&iter->w);
2019 read_unlock(&iter->tbl->tb6_lock);
2020 if (r > 0) {
2021 if (v)
2022 ++*pos;
2023 return iter->w.leaf;
2024 } else if (r < 0) {
2025 fib6_walker_unlink(&iter->w);
2026 return NULL;
2027 }
2028 fib6_walker_unlink(&iter->w);
2029
2030 iter->tbl = ipv6_route_seq_next_table(iter->tbl, net);
2031 if (!iter->tbl)
2032 return NULL;
2033
2034 ipv6_route_seq_setup_walk(iter);
2035 goto iter_table;
2036}
2037
2038static void *ipv6_route_seq_start(struct seq_file *seq, loff_t *pos)
2039 __acquires(RCU_BH)
2040{
2041 struct net *net = seq_file_net(seq);
2042 struct ipv6_route_iter *iter = seq->private;
2043
2044 rcu_read_lock_bh();
2045 iter->tbl = ipv6_route_seq_next_table(NULL, net);
2046 iter->skip = *pos;
2047
2048 if (iter->tbl) {
2049 ipv6_route_seq_setup_walk(iter);
2050 return ipv6_route_seq_next(seq, NULL, pos);
2051 } else {
2052 return NULL;
2053 }
2054}
2055
2056static bool ipv6_route_iter_active(struct ipv6_route_iter *iter)
2057{
94b2cfe0 2058 struct fib6_walker *w = &iter->w;
8d2ca1d7
HFS
2059 return w->node && !(w->state == FWS_U && w->node == w->root);
2060}
2061
2062static void ipv6_route_seq_stop(struct seq_file *seq, void *v)
2063 __releases(RCU_BH)
2064{
2065 struct ipv6_route_iter *iter = seq->private;
2066
2067 if (ipv6_route_iter_active(iter))
2068 fib6_walker_unlink(&iter->w);
2069
2070 rcu_read_unlock_bh();
2071}
2072
2073static const struct seq_operations ipv6_route_seq_ops = {
2074 .start = ipv6_route_seq_start,
2075 .next = ipv6_route_seq_next,
2076 .stop = ipv6_route_seq_stop,
2077 .show = ipv6_route_seq_show
2078};
2079
2080int ipv6_route_open(struct inode *inode, struct file *file)
2081{
2082 return seq_open_net(inode, file, &ipv6_route_seq_ops,
2083 sizeof(struct ipv6_route_iter));
2084}
2085
2086#endif /* CONFIG_PROC_FS */