blob: 9239d559b41b12bc33a20d476d6306879bc5f6f3 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002 * Linux INET6 implementation
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 * Forwarding Information Database
4 *
5 * Authors:
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09006 * Pedro Roque <roque@di.fc.ul.pt>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License
10 * as published by the Free Software Foundation; either version
11 * 2 of the License, or (at your option) any later version.
12 */
13
14/*
15 * Changes:
16 * Yuji SEKIYA @USAGI: Support default route on router node;
17 * remove ip6_null_entry from the top of
18 * routing table.
YOSHIFUJI Hideakic0bece92006-08-23 17:23:25 -070019 * Ville Nuorvala: Fixed routing subtrees.
Linus Torvalds1da177e2005-04-16 15:20:36 -070020 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <linux/errno.h>
22#include <linux/types.h>
23#include <linux/net.h>
24#include <linux/route.h>
25#include <linux/netdevice.h>
26#include <linux/in6.h>
27#include <linux/init.h>
Thomas Grafc71099a2006-08-04 23:20:06 -070028#include <linux/list.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090029#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <net/ipv6.h>
32#include <net/ndisc.h>
33#include <net/addrconf.h>
34
35#include <net/ip6_fib.h>
36#include <net/ip6_route.h>
37
38#define RT6_DEBUG 2
39
40#if RT6_DEBUG >= 3
41#define RT6_TRACE(x...) printk(KERN_DEBUG x)
42#else
43#define RT6_TRACE(x...) do { ; } while (0)
44#endif
45
Christoph Lametere18b8902006-12-06 20:33:20 -080046static struct kmem_cache * fib6_node_kmem __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -070047
48enum fib_walk_state_t
49{
50#ifdef CONFIG_IPV6_SUBTREES
51 FWS_S,
52#endif
53 FWS_L,
54 FWS_R,
55 FWS_C,
56 FWS_U
57};
58
59struct fib6_cleaner_t
60{
61 struct fib6_walker_t w;
Benjamin Theryec7d43c2008-03-03 23:31:57 -080062 struct net *net;
Linus Torvalds1da177e2005-04-16 15:20:36 -070063 int (*func)(struct rt6_info *, void *arg);
64 void *arg;
65};
66
Adrian Bunk90d41122006-08-14 23:49:16 -070067static DEFINE_RWLOCK(fib6_walker_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
69#ifdef CONFIG_IPV6_SUBTREES
70#define FWS_INIT FWS_S
Linus Torvalds1da177e2005-04-16 15:20:36 -070071#else
72#define FWS_INIT FWS_L
Linus Torvalds1da177e2005-04-16 15:20:36 -070073#endif
74
Benjamin Theryec7d43c2008-03-03 23:31:57 -080075static void fib6_prune_clones(struct net *net, struct fib6_node *fn,
76 struct rt6_info *rt);
Daniel Lezcano8ed67782008-03-04 13:48:30 -080077static struct rt6_info *fib6_find_prefix(struct net *net, struct fib6_node *fn);
78static struct fib6_node *fib6_repair_tree(struct net *net, struct fib6_node *fn);
Adrian Bunk90d41122006-08-14 23:49:16 -070079static int fib6_walk(struct fib6_walker_t *w);
80static int fib6_walk_continue(struct fib6_walker_t *w);
Linus Torvalds1da177e2005-04-16 15:20:36 -070081
82/*
83 * A routing update causes an increase of the serial number on the
84 * affected subtree. This allows for cached routes to be asynchronously
85 * tested when modifications are made to the destination cache as a
86 * result of redirects, path MTU changes, etc.
87 */
88
89static __u32 rt_sernum;
90
Daniel Lezcano5b7c9312008-03-03 23:28:58 -080091static void fib6_gc_timer_cb(unsigned long arg);
92
Alexey Dobriyanbbef49d2010-02-18 08:13:30 +000093static LIST_HEAD(fib6_walkers);
94#define FOR_WALKERS(w) list_for_each_entry(w, &fib6_walkers, lh)
Linus Torvalds1da177e2005-04-16 15:20:36 -070095
Adrian Bunk90d41122006-08-14 23:49:16 -070096static inline void fib6_walker_link(struct fib6_walker_t *w)
97{
98 write_lock_bh(&fib6_walker_lock);
Alexey Dobriyanbbef49d2010-02-18 08:13:30 +000099 list_add(&w->lh, &fib6_walkers);
Adrian Bunk90d41122006-08-14 23:49:16 -0700100 write_unlock_bh(&fib6_walker_lock);
101}
102
103static inline void fib6_walker_unlink(struct fib6_walker_t *w)
104{
105 write_lock_bh(&fib6_walker_lock);
Alexey Dobriyanbbef49d2010-02-18 08:13:30 +0000106 list_del(&w->lh);
Adrian Bunk90d41122006-08-14 23:49:16 -0700107 write_unlock_bh(&fib6_walker_lock);
108}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109static __inline__ u32 fib6_new_sernum(void)
110{
111 u32 n = ++rt_sernum;
112 if ((__s32)n <= 0)
113 rt_sernum = n = 1;
114 return n;
115}
116
117/*
118 * Auxiliary address test functions for the radix tree.
119 *
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900120 * These assume a 32bit processor (although it will work on
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 * 64bit processors)
122 */
123
124/*
125 * test bit
126 */
YOSHIFUJI Hideaki / 吉藤英明02cdce52010-03-27 01:24:16 +0000127#if defined(__LITTLE_ENDIAN)
128# define BITOP_BE32_SWIZZLE (0x1F & ~7)
129#else
130# define BITOP_BE32_SWIZZLE 0
131#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000133static __inline__ __be32 addr_bit_set(const void *token, int fn_bit)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134{
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000135 const __be32 *addr = token;
YOSHIFUJI Hideaki / 吉藤英明02cdce52010-03-27 01:24:16 +0000136 /*
137 * Here,
138 * 1 << ((~fn_bit ^ BITOP_BE32_SWIZZLE) & 0x1f)
139 * is optimized version of
140 * htonl(1 << ((~fn_bit)&0x1F))
141 * See include/asm-generic/bitops/le.h.
142 */
Eric Dumazet0eae88f2010-04-20 19:06:52 -0700143 return (__force __be32)(1 << ((~fn_bit ^ BITOP_BE32_SWIZZLE) & 0x1f)) &
144 addr[fn_bit >> 5];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145}
146
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147static __inline__ struct fib6_node * node_alloc(void)
148{
149 struct fib6_node *fn;
150
Robert P. J. Dayc3762222007-02-10 01:45:03 -0800151 fn = kmem_cache_zalloc(fib6_node_kmem, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152
153 return fn;
154}
155
156static __inline__ void node_free(struct fib6_node * fn)
157{
158 kmem_cache_free(fib6_node_kmem, fn);
159}
160
161static __inline__ void rt6_release(struct rt6_info *rt)
162{
163 if (atomic_dec_and_test(&rt->rt6i_ref))
Changli Gaod8d1f302010-06-10 23:31:35 -0700164 dst_free(&rt->dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165}
166
Daniel Lezcano58f09b72008-03-03 23:25:27 -0800167static void fib6_link_table(struct net *net, struct fib6_table *tb)
Patrick McHardy1b43af52006-08-10 23:11:17 -0700168{
169 unsigned int h;
170
Thomas Graf375216a2006-10-21 20:20:54 -0700171 /*
172 * Initialize table lock at a single place to give lockdep a key,
173 * tables aren't visible prior to being linked to the list.
174 */
175 rwlock_init(&tb->tb6_lock);
176
Neil Hormana33bc5c2009-07-30 18:52:15 -0700177 h = tb->tb6_id & (FIB6_TABLE_HASHSZ - 1);
Patrick McHardy1b43af52006-08-10 23:11:17 -0700178
179 /*
180 * No protection necessary, this is the only list mutatation
181 * operation, tables never disappear once they exist.
182 */
Daniel Lezcano58f09b72008-03-03 23:25:27 -0800183 hlist_add_head_rcu(&tb->tb6_hlist, &net->ipv6.fib_table_hash[h]);
Patrick McHardy1b43af52006-08-10 23:11:17 -0700184}
185
186#ifdef CONFIG_IPV6_MULTIPLE_TABLES
Daniel Lezcanoe0b855902008-03-03 23:24:31 -0800187
Daniel Lezcano8ed67782008-03-04 13:48:30 -0800188static struct fib6_table *fib6_alloc_table(struct net *net, u32 id)
Thomas Grafc71099a2006-08-04 23:20:06 -0700189{
190 struct fib6_table *table;
191
192 table = kzalloc(sizeof(*table), GFP_ATOMIC);
193 if (table != NULL) {
194 table->tb6_id = id;
Daniel Lezcano8ed67782008-03-04 13:48:30 -0800195 table->tb6_root.leaf = net->ipv6.ip6_null_entry;
Thomas Grafc71099a2006-08-04 23:20:06 -0700196 table->tb6_root.fn_flags = RTN_ROOT | RTN_TL_ROOT | RTN_RTINFO;
197 }
198
199 return table;
200}
201
Daniel Lezcano58f09b72008-03-03 23:25:27 -0800202struct fib6_table *fib6_new_table(struct net *net, u32 id)
Thomas Grafc71099a2006-08-04 23:20:06 -0700203{
204 struct fib6_table *tb;
205
206 if (id == 0)
207 id = RT6_TABLE_MAIN;
Daniel Lezcano58f09b72008-03-03 23:25:27 -0800208 tb = fib6_get_table(net, id);
Thomas Grafc71099a2006-08-04 23:20:06 -0700209 if (tb)
210 return tb;
211
Daniel Lezcano8ed67782008-03-04 13:48:30 -0800212 tb = fib6_alloc_table(net, id);
Thomas Grafc71099a2006-08-04 23:20:06 -0700213 if (tb != NULL)
Daniel Lezcano58f09b72008-03-03 23:25:27 -0800214 fib6_link_table(net, tb);
Thomas Grafc71099a2006-08-04 23:20:06 -0700215
216 return tb;
217}
218
Daniel Lezcano58f09b72008-03-03 23:25:27 -0800219struct fib6_table *fib6_get_table(struct net *net, u32 id)
Thomas Grafc71099a2006-08-04 23:20:06 -0700220{
221 struct fib6_table *tb;
Daniel Lezcano58f09b72008-03-03 23:25:27 -0800222 struct hlist_head *head;
Thomas Grafc71099a2006-08-04 23:20:06 -0700223 struct hlist_node *node;
224 unsigned int h;
225
226 if (id == 0)
227 id = RT6_TABLE_MAIN;
Neil Hormana33bc5c2009-07-30 18:52:15 -0700228 h = id & (FIB6_TABLE_HASHSZ - 1);
Thomas Grafc71099a2006-08-04 23:20:06 -0700229 rcu_read_lock();
Daniel Lezcano58f09b72008-03-03 23:25:27 -0800230 head = &net->ipv6.fib_table_hash[h];
231 hlist_for_each_entry_rcu(tb, node, head, tb6_hlist) {
Thomas Grafc71099a2006-08-04 23:20:06 -0700232 if (tb->tb6_id == id) {
233 rcu_read_unlock();
234 return tb;
235 }
236 }
237 rcu_read_unlock();
238
239 return NULL;
240}
241
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +0000242static void __net_init fib6_tables_init(struct net *net)
Thomas Grafc71099a2006-08-04 23:20:06 -0700243{
Daniel Lezcano58f09b72008-03-03 23:25:27 -0800244 fib6_link_table(net, net->ipv6.fib6_main_tbl);
245 fib6_link_table(net, net->ipv6.fib6_local_tbl);
Thomas Grafc71099a2006-08-04 23:20:06 -0700246}
Thomas Grafc71099a2006-08-04 23:20:06 -0700247#else
248
Daniel Lezcano58f09b72008-03-03 23:25:27 -0800249struct fib6_table *fib6_new_table(struct net *net, u32 id)
Thomas Grafc71099a2006-08-04 23:20:06 -0700250{
Daniel Lezcano58f09b72008-03-03 23:25:27 -0800251 return fib6_get_table(net, id);
Thomas Grafc71099a2006-08-04 23:20:06 -0700252}
253
Daniel Lezcano58f09b72008-03-03 23:25:27 -0800254struct fib6_table *fib6_get_table(struct net *net, u32 id)
Thomas Grafc71099a2006-08-04 23:20:06 -0700255{
Daniel Lezcano58f09b72008-03-03 23:25:27 -0800256 return net->ipv6.fib6_main_tbl;
Thomas Grafc71099a2006-08-04 23:20:06 -0700257}
258
David S. Miller4c9483b2011-03-12 16:22:43 -0500259struct dst_entry *fib6_rule_lookup(struct net *net, struct flowi6 *fl6,
Daniel Lezcano58f09b72008-03-03 23:25:27 -0800260 int flags, pol_lookup_t lookup)
Thomas Grafc71099a2006-08-04 23:20:06 -0700261{
David S. Miller4c9483b2011-03-12 16:22:43 -0500262 return (struct dst_entry *) lookup(net, net->ipv6.fib6_main_tbl, fl6, flags);
Thomas Grafc71099a2006-08-04 23:20:06 -0700263}
264
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +0000265static void __net_init fib6_tables_init(struct net *net)
Thomas Grafc71099a2006-08-04 23:20:06 -0700266{
Daniel Lezcano58f09b72008-03-03 23:25:27 -0800267 fib6_link_table(net, net->ipv6.fib6_main_tbl);
Thomas Grafc71099a2006-08-04 23:20:06 -0700268}
269
270#endif
271
Patrick McHardy1b43af52006-08-10 23:11:17 -0700272static int fib6_dump_node(struct fib6_walker_t *w)
273{
274 int res;
275 struct rt6_info *rt;
276
Changli Gaod8d1f302010-06-10 23:31:35 -0700277 for (rt = w->leaf; rt; rt = rt->dst.rt6_next) {
Patrick McHardy1b43af52006-08-10 23:11:17 -0700278 res = rt6_dump_route(rt, w->args);
279 if (res < 0) {
280 /* Frame is full, suspend walking */
281 w->leaf = rt;
282 return 1;
283 }
Ilpo Järvinen547b7922008-07-25 21:43:18 -0700284 WARN_ON(res == 0);
Patrick McHardy1b43af52006-08-10 23:11:17 -0700285 }
286 w->leaf = NULL;
287 return 0;
288}
289
290static void fib6_dump_end(struct netlink_callback *cb)
291{
292 struct fib6_walker_t *w = (void*)cb->args[2];
293
294 if (w) {
Herbert Xu7891cc82009-01-13 22:17:51 -0800295 if (cb->args[4]) {
296 cb->args[4] = 0;
297 fib6_walker_unlink(w);
298 }
Patrick McHardy1b43af52006-08-10 23:11:17 -0700299 cb->args[2] = 0;
300 kfree(w);
301 }
302 cb->done = (void*)cb->args[3];
303 cb->args[1] = 3;
304}
305
306static int fib6_dump_done(struct netlink_callback *cb)
307{
308 fib6_dump_end(cb);
309 return cb->done ? cb->done(cb) : 0;
310}
311
312static int fib6_dump_table(struct fib6_table *table, struct sk_buff *skb,
313 struct netlink_callback *cb)
314{
315 struct fib6_walker_t *w;
316 int res;
317
318 w = (void *)cb->args[2];
319 w->root = &table->tb6_root;
320
321 if (cb->args[4] == 0) {
Patrick McHardy2bec5a32010-02-08 05:19:03 +0000322 w->count = 0;
323 w->skip = 0;
324
Patrick McHardy1b43af52006-08-10 23:11:17 -0700325 read_lock_bh(&table->tb6_lock);
326 res = fib6_walk(w);
327 read_unlock_bh(&table->tb6_lock);
Patrick McHardy2bec5a32010-02-08 05:19:03 +0000328 if (res > 0) {
Patrick McHardy1b43af52006-08-10 23:11:17 -0700329 cb->args[4] = 1;
Patrick McHardy2bec5a32010-02-08 05:19:03 +0000330 cb->args[5] = w->root->fn_sernum;
331 }
Patrick McHardy1b43af52006-08-10 23:11:17 -0700332 } else {
Patrick McHardy2bec5a32010-02-08 05:19:03 +0000333 if (cb->args[5] != w->root->fn_sernum) {
334 /* Begin at the root if the tree changed */
335 cb->args[5] = w->root->fn_sernum;
336 w->state = FWS_INIT;
337 w->node = w->root;
338 w->skip = w->count;
339 } else
340 w->skip = 0;
341
Patrick McHardy1b43af52006-08-10 23:11:17 -0700342 read_lock_bh(&table->tb6_lock);
343 res = fib6_walk_continue(w);
344 read_unlock_bh(&table->tb6_lock);
Herbert Xu7891cc82009-01-13 22:17:51 -0800345 if (res <= 0) {
346 fib6_walker_unlink(w);
347 cb->args[4] = 0;
Patrick McHardy1b43af52006-08-10 23:11:17 -0700348 }
Patrick McHardy1b43af52006-08-10 23:11:17 -0700349 }
Herbert Xu7891cc82009-01-13 22:17:51 -0800350
Patrick McHardy1b43af52006-08-10 23:11:17 -0700351 return res;
352}
353
Thomas Grafc127ea22007-03-22 11:58:32 -0700354static int inet6_dump_fib(struct sk_buff *skb, struct netlink_callback *cb)
Patrick McHardy1b43af52006-08-10 23:11:17 -0700355{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900356 struct net *net = sock_net(skb->sk);
Patrick McHardy1b43af52006-08-10 23:11:17 -0700357 unsigned int h, s_h;
358 unsigned int e = 0, s_e;
359 struct rt6_rtnl_dump_arg arg;
360 struct fib6_walker_t *w;
361 struct fib6_table *tb;
362 struct hlist_node *node;
Daniel Lezcano58f09b72008-03-03 23:25:27 -0800363 struct hlist_head *head;
Patrick McHardy1b43af52006-08-10 23:11:17 -0700364 int res = 0;
365
366 s_h = cb->args[0];
367 s_e = cb->args[1];
368
369 w = (void *)cb->args[2];
370 if (w == NULL) {
371 /* New dump:
372 *
373 * 1. hook callback destructor.
374 */
375 cb->args[3] = (long)cb->done;
376 cb->done = fib6_dump_done;
377
378 /*
379 * 2. allocate and initialize walker.
380 */
381 w = kzalloc(sizeof(*w), GFP_ATOMIC);
382 if (w == NULL)
383 return -ENOMEM;
384 w->func = fib6_dump_node;
385 cb->args[2] = (long)w;
386 }
387
388 arg.skb = skb;
389 arg.cb = cb;
Brian Haley191cd582008-08-14 15:33:21 -0700390 arg.net = net;
Patrick McHardy1b43af52006-08-10 23:11:17 -0700391 w->args = &arg;
392
Eric Dumazete67f88d2011-04-27 22:56:07 +0000393 rcu_read_lock();
Neil Hormana33bc5c2009-07-30 18:52:15 -0700394 for (h = s_h; h < FIB6_TABLE_HASHSZ; h++, s_e = 0) {
Patrick McHardy1b43af52006-08-10 23:11:17 -0700395 e = 0;
Daniel Lezcano58f09b72008-03-03 23:25:27 -0800396 head = &net->ipv6.fib_table_hash[h];
Eric Dumazete67f88d2011-04-27 22:56:07 +0000397 hlist_for_each_entry_rcu(tb, node, head, tb6_hlist) {
Patrick McHardy1b43af52006-08-10 23:11:17 -0700398 if (e < s_e)
399 goto next;
400 res = fib6_dump_table(tb, skb, cb);
401 if (res != 0)
402 goto out;
403next:
404 e++;
405 }
406 }
407out:
Eric Dumazete67f88d2011-04-27 22:56:07 +0000408 rcu_read_unlock();
Patrick McHardy1b43af52006-08-10 23:11:17 -0700409 cb->args[1] = e;
410 cb->args[0] = h;
411
412 res = res < 0 ? res : skb->len;
413 if (res <= 0)
414 fib6_dump_end(cb);
415 return res;
416}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417
418/*
419 * Routing Table
420 *
421 * return the appropriate node for a routing tree "add" operation
422 * by either creating and inserting or by returning an existing
423 * node.
424 */
425
426static struct fib6_node * fib6_add_1(struct fib6_node *root, void *addr,
427 int addrlen, int plen,
Matti Vaittinen4a287eb2011-11-14 00:15:14 +0000428 int offset, int allow_create,
429 int replace_required)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430{
431 struct fib6_node *fn, *in, *ln;
432 struct fib6_node *pn = NULL;
433 struct rt6key *key;
434 int bit;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900435 __be32 dir = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 __u32 sernum = fib6_new_sernum();
437
438 RT6_TRACE("fib6_add_1\n");
439
440 /* insert node in tree */
441
442 fn = root;
443
444 do {
445 key = (struct rt6key *)((u8 *)fn->leaf + offset);
446
447 /*
448 * Prefix match
449 */
450 if (plen < fn->fn_bit ||
Matti Vaittinen4a287eb2011-11-14 00:15:14 +0000451 !ipv6_prefix_equal(&key->addr, addr, fn->fn_bit)) {
452 if (!allow_create)
453 printk(KERN_WARNING
454 "IPv6: NLM_F_CREATE should be set when creating new route\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 goto insert_above;
Matti Vaittinen4a287eb2011-11-14 00:15:14 +0000456 }
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900457
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 /*
459 * Exact match ?
460 */
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900461
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 if (plen == fn->fn_bit) {
463 /* clean up an intermediate node */
464 if ((fn->fn_flags & RTN_RTINFO) == 0) {
465 rt6_release(fn->leaf);
466 fn->leaf = NULL;
467 }
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900468
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 fn->fn_sernum = sernum;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900470
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 return fn;
472 }
473
474 /*
475 * We have more bits to go
476 */
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900477
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 /* Try to walk down on tree. */
479 fn->fn_sernum = sernum;
480 dir = addr_bit_set(addr, fn->fn_bit);
481 pn = fn;
482 fn = dir ? fn->right: fn->left;
483 } while (fn);
484
Matti Vaittinen4a287eb2011-11-14 00:15:14 +0000485 if (replace_required && !allow_create) {
486 /* We should not create new node because
487 * NLM_F_REPLACE was specified without NLM_F_CREATE
488 * I assume it is safe to require NLM_F_CREATE when
489 * REPLACE flag is used! Later we may want to remove the
490 * check for replace_required, because according
491 * to netlink specification, NLM_F_CREATE
492 * MUST be specified if new route is created.
493 * That would keep IPv6 consistent with IPv4
494 */
495 printk(KERN_WARNING
496 "IPv6: NLM_F_CREATE should be set when creating new route - ignoring request\n");
497 return ERR_PTR(-ENOENT);
498 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 /*
500 * We walked to the bottom of tree.
501 * Create new leaf node without children.
502 */
Matti Vaittinen4a287eb2011-11-14 00:15:14 +0000503 if (!allow_create)
504 printk(KERN_WARNING "IPv6: NLM_F_CREATE should be set when creating new route\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505
506 ln = node_alloc();
507
508 if (ln == NULL)
509 return NULL;
510 ln->fn_bit = plen;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900511
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 ln->parent = pn;
513 ln->fn_sernum = sernum;
514
515 if (dir)
516 pn->right = ln;
517 else
518 pn->left = ln;
519
520 return ln;
521
522
523insert_above:
524 /*
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900525 * split since we don't have a common prefix anymore or
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 * we have a less significant route.
527 * we've to insert an intermediate node on the list
528 * this new node will point to the one we need to create
529 * and the current
530 */
531
532 pn = fn->parent;
533
534 /* find 1st bit in difference between the 2 addrs.
535
YOSHIFUJI Hideaki971f3592005-11-08 09:37:56 -0800536 See comment in __ipv6_addr_diff: bit may be an invalid value,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 but if it is >= plen, the value is ignored in any case.
538 */
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900539
YOSHIFUJI Hideaki971f3592005-11-08 09:37:56 -0800540 bit = __ipv6_addr_diff(addr, &key->addr, addrlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900542 /*
543 * (intermediate)[in]
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 * / \
545 * (new leaf node)[ln] (old node)[fn]
546 */
547 if (plen > bit) {
548 in = node_alloc();
549 ln = node_alloc();
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900550
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 if (in == NULL || ln == NULL) {
552 if (in)
553 node_free(in);
554 if (ln)
555 node_free(ln);
556 return NULL;
557 }
558
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900559 /*
560 * new intermediate node.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 * RTN_RTINFO will
562 * be off since that an address that chooses one of
563 * the branches would not match less specific routes
564 * in the other branch
565 */
566
567 in->fn_bit = bit;
568
569 in->parent = pn;
570 in->leaf = fn->leaf;
571 atomic_inc(&in->leaf->rt6i_ref);
572
573 in->fn_sernum = sernum;
574
575 /* update parent pointer */
576 if (dir)
577 pn->right = in;
578 else
579 pn->left = in;
580
581 ln->fn_bit = plen;
582
583 ln->parent = in;
584 fn->parent = in;
585
586 ln->fn_sernum = sernum;
587
588 if (addr_bit_set(addr, bit)) {
589 in->right = ln;
590 in->left = fn;
591 } else {
592 in->left = ln;
593 in->right = fn;
594 }
595 } else { /* plen <= bit */
596
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900597 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 * (new leaf node)[ln]
599 * / \
600 * (old node)[fn] NULL
601 */
602
603 ln = node_alloc();
604
605 if (ln == NULL)
606 return NULL;
607
608 ln->fn_bit = plen;
609
610 ln->parent = pn;
611
612 ln->fn_sernum = sernum;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900613
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 if (dir)
615 pn->right = ln;
616 else
617 pn->left = ln;
618
619 if (addr_bit_set(&key->addr, plen))
620 ln->right = fn;
621 else
622 ln->left = fn;
623
624 fn->parent = ln;
625 }
626 return ln;
627}
628
629/*
630 * Insert routing information in a node.
631 */
632
633static int fib6_add_rt2node(struct fib6_node *fn, struct rt6_info *rt,
Thomas Graf86872cb2006-08-22 00:01:08 -0700634 struct nl_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635{
636 struct rt6_info *iter = NULL;
637 struct rt6_info **ins;
Matti Vaittinen4a287eb2011-11-14 00:15:14 +0000638 int replace = (NULL != info &&
639 NULL != info->nlh &&
640 (info->nlh->nlmsg_flags&NLM_F_REPLACE));
641 int add = ((NULL == info || NULL == info->nlh) ||
642 (info->nlh->nlmsg_flags&NLM_F_CREATE));
643 int found = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644
645 ins = &fn->leaf;
646
Changli Gaod8d1f302010-06-10 23:31:35 -0700647 for (iter = fn->leaf; iter; iter=iter->dst.rt6_next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 /*
649 * Search for duplicates
650 */
651
652 if (iter->rt6i_metric == rt->rt6i_metric) {
653 /*
654 * Same priority level
655 */
Matti Vaittinen4a287eb2011-11-14 00:15:14 +0000656 if (NULL != info->nlh &&
657 (info->nlh->nlmsg_flags&NLM_F_EXCL))
658 return -EEXIST;
659 if (replace) {
660 found++;
661 break;
662 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663
664 if (iter->rt6i_dev == rt->rt6i_dev &&
665 iter->rt6i_idev == rt->rt6i_idev &&
666 ipv6_addr_equal(&iter->rt6i_gateway,
667 &rt->rt6i_gateway)) {
668 if (!(iter->rt6i_flags&RTF_EXPIRES))
669 return -EEXIST;
670 iter->rt6i_expires = rt->rt6i_expires;
671 if (!(rt->rt6i_flags&RTF_EXPIRES)) {
672 iter->rt6i_flags &= ~RTF_EXPIRES;
673 iter->rt6i_expires = 0;
674 }
675 return -EEXIST;
676 }
677 }
678
679 if (iter->rt6i_metric > rt->rt6i_metric)
680 break;
681
Changli Gaod8d1f302010-06-10 23:31:35 -0700682 ins = &iter->dst.rt6_next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 }
684
David S. Millerf11e6652007-03-24 20:36:25 -0700685 /* Reset round-robin state, if necessary */
686 if (ins == &fn->leaf)
687 fn->rr_ptr = NULL;
688
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 /*
690 * insert node
691 */
Matti Vaittinen4a287eb2011-11-14 00:15:14 +0000692 if (!replace) {
693 if (!add)
694 printk(KERN_WARNING "IPv6: NLM_F_CREATE should be set when creating new route\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695
Matti Vaittinen4a287eb2011-11-14 00:15:14 +0000696add:
697 rt->dst.rt6_next = iter;
698 *ins = rt;
699 rt->rt6i_node = fn;
700 atomic_inc(&rt->rt6i_ref);
701 inet6_rt_notify(RTM_NEWROUTE, rt, info);
702 info->nl_net->ipv6.rt6_stats->fib_rt_entries++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703
Matti Vaittinen4a287eb2011-11-14 00:15:14 +0000704 if ((fn->fn_flags & RTN_RTINFO) == 0) {
705 info->nl_net->ipv6.rt6_stats->fib_route_nodes++;
706 fn->fn_flags |= RTN_RTINFO;
707 }
708
709 } else {
710 if (!found) {
711 if (add)
712 goto add;
713 printk(KERN_WARNING "IPv6: NLM_F_REPLACE set, but no existing node found!\n");
714 return -ENOENT;
715 }
716 *ins = rt;
717 rt->rt6i_node = fn;
718 rt->dst.rt6_next = iter->dst.rt6_next;
719 atomic_inc(&rt->rt6i_ref);
720 inet6_rt_notify(RTM_NEWROUTE, rt, info);
721 rt6_release(iter);
722 if ((fn->fn_flags & RTN_RTINFO) == 0) {
723 info->nl_net->ipv6.rt6_stats->fib_route_nodes++;
724 fn->fn_flags |= RTN_RTINFO;
725 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 }
727
728 return 0;
729}
730
Daniel Lezcano63152fc2008-03-03 23:31:11 -0800731static __inline__ void fib6_start_gc(struct net *net, struct rt6_info *rt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732{
Stephen Hemminger417f28b2008-07-22 14:33:45 -0700733 if (!timer_pending(&net->ipv6.ip6_fib_timer) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 (rt->rt6i_flags & (RTF_EXPIRES|RTF_CACHE)))
Stephen Hemminger417f28b2008-07-22 14:33:45 -0700735 mod_timer(&net->ipv6.ip6_fib_timer,
Stephen Hemminger847499c2008-07-21 13:21:35 -0700736 jiffies + net->ipv6.sysctl.ip6_rt_gc_interval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737}
738
Daniel Lezcano63152fc2008-03-03 23:31:11 -0800739void fib6_force_start_gc(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740{
Stephen Hemminger417f28b2008-07-22 14:33:45 -0700741 if (!timer_pending(&net->ipv6.ip6_fib_timer))
742 mod_timer(&net->ipv6.ip6_fib_timer,
Stephen Hemminger847499c2008-07-21 13:21:35 -0700743 jiffies + net->ipv6.sysctl.ip6_rt_gc_interval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744}
745
746/*
747 * Add routing information to the routing tree.
748 * <destination addr>/<source addr>
749 * with source addr info in sub-trees
750 */
751
Thomas Graf86872cb2006-08-22 00:01:08 -0700752int fib6_add(struct fib6_node *root, struct rt6_info *rt, struct nl_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753{
YOSHIFUJI Hideaki66729e12006-08-23 17:20:34 -0700754 struct fib6_node *fn, *pn = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 int err = -ENOMEM;
Matti Vaittinen4a287eb2011-11-14 00:15:14 +0000756 int allow_create = 1;
757 int replace_required = 0;
758 if (NULL != info && NULL != info->nlh) {
759 if (!(info->nlh->nlmsg_flags&NLM_F_CREATE))
760 allow_create = 0;
761 if ((info->nlh->nlmsg_flags&NLM_F_REPLACE))
762 replace_required = 1;
763 }
764 if (!allow_create && !replace_required)
765 printk(KERN_WARNING "IPv6: RTM_NEWROUTE with no NLM_F_CREATE or NLM_F_REPLACE\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766
767 fn = fib6_add_1(root, &rt->rt6i_dst.addr, sizeof(struct in6_addr),
Matti Vaittinen4a287eb2011-11-14 00:15:14 +0000768 rt->rt6i_dst.plen, offsetof(struct rt6_info, rt6i_dst),
769 allow_create, replace_required);
770
771 if (IS_ERR(fn)) {
772 err = PTR_ERR(fn);
773 fn = NULL;
774 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775
776 if (fn == NULL)
777 goto out;
778
YOSHIFUJI Hideaki66729e12006-08-23 17:20:34 -0700779 pn = fn;
780
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781#ifdef CONFIG_IPV6_SUBTREES
782 if (rt->rt6i_src.plen) {
783 struct fib6_node *sn;
784
785 if (fn->subtree == NULL) {
786 struct fib6_node *sfn;
787
788 /*
789 * Create subtree.
790 *
791 * fn[main tree]
792 * |
793 * sfn[subtree root]
794 * \
795 * sn[new leaf node]
796 */
797
798 /* Create subtree root node */
799 sfn = node_alloc();
800 if (sfn == NULL)
801 goto st_failure;
802
Daniel Lezcano8ed67782008-03-04 13:48:30 -0800803 sfn->leaf = info->nl_net->ipv6.ip6_null_entry;
804 atomic_inc(&info->nl_net->ipv6.ip6_null_entry->rt6i_ref);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 sfn->fn_flags = RTN_ROOT;
806 sfn->fn_sernum = fib6_new_sernum();
807
808 /* Now add the first leaf node to new subtree */
809
810 sn = fib6_add_1(sfn, &rt->rt6i_src.addr,
811 sizeof(struct in6_addr), rt->rt6i_src.plen,
Matti Vaittinen4a287eb2011-11-14 00:15:14 +0000812 offsetof(struct rt6_info, rt6i_src),
813 allow_create, replace_required);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814
815 if (sn == NULL) {
816 /* If it is failed, discard just allocated
817 root, and then (in st_failure) stale node
818 in main tree.
819 */
820 node_free(sfn);
821 goto st_failure;
822 }
823
824 /* Now link new subtree to main tree */
825 sfn->parent = fn;
826 fn->subtree = sfn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827 } else {
828 sn = fib6_add_1(fn->subtree, &rt->rt6i_src.addr,
829 sizeof(struct in6_addr), rt->rt6i_src.plen,
Matti Vaittinen4a287eb2011-11-14 00:15:14 +0000830 offsetof(struct rt6_info, rt6i_src),
831 allow_create, replace_required);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832
Matti Vaittinen4a287eb2011-11-14 00:15:14 +0000833 if (IS_ERR(sn)) {
834 err = PTR_ERR(sn);
835 sn = NULL;
836 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 if (sn == NULL)
838 goto st_failure;
839 }
840
YOSHIFUJI Hideaki66729e12006-08-23 17:20:34 -0700841 if (fn->leaf == NULL) {
842 fn->leaf = rt;
843 atomic_inc(&rt->rt6i_ref);
844 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 fn = sn;
846 }
847#endif
848
Thomas Graf86872cb2006-08-22 00:01:08 -0700849 err = fib6_add_rt2node(fn, rt, info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850
851 if (err == 0) {
Daniel Lezcano63152fc2008-03-03 23:31:11 -0800852 fib6_start_gc(info->nl_net, rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853 if (!(rt->rt6i_flags&RTF_CACHE))
Benjamin Theryec7d43c2008-03-03 23:31:57 -0800854 fib6_prune_clones(info->nl_net, pn, rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 }
856
857out:
YOSHIFUJI Hideaki66729e12006-08-23 17:20:34 -0700858 if (err) {
859#ifdef CONFIG_IPV6_SUBTREES
860 /*
861 * If fib6_add_1 has cleared the old leaf pointer in the
862 * super-tree leaf node we have to find a new one for it.
863 */
David S. Miller3c051232008-04-18 01:46:19 -0700864 if (pn != fn && pn->leaf == rt) {
865 pn->leaf = NULL;
866 atomic_dec(&rt->rt6i_ref);
867 }
YOSHIFUJI Hideaki66729e12006-08-23 17:20:34 -0700868 if (pn != fn && !pn->leaf && !(pn->fn_flags & RTN_RTINFO)) {
Daniel Lezcano8ed67782008-03-04 13:48:30 -0800869 pn->leaf = fib6_find_prefix(info->nl_net, pn);
YOSHIFUJI Hideaki66729e12006-08-23 17:20:34 -0700870#if RT6_DEBUG >= 2
871 if (!pn->leaf) {
Ilpo Järvinen547b7922008-07-25 21:43:18 -0700872 WARN_ON(pn->leaf == NULL);
Daniel Lezcano8ed67782008-03-04 13:48:30 -0800873 pn->leaf = info->nl_net->ipv6.ip6_null_entry;
YOSHIFUJI Hideaki66729e12006-08-23 17:20:34 -0700874 }
875#endif
876 atomic_inc(&pn->leaf->rt6i_ref);
877 }
878#endif
Changli Gaod8d1f302010-06-10 23:31:35 -0700879 dst_free(&rt->dst);
YOSHIFUJI Hideaki66729e12006-08-23 17:20:34 -0700880 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 return err;
882
883#ifdef CONFIG_IPV6_SUBTREES
884 /* Subtree creation failed, probably main tree node
885 is orphan. If it is, shoot it.
886 */
887st_failure:
888 if (fn && !(fn->fn_flags & (RTN_RTINFO|RTN_ROOT)))
Daniel Lezcano8ed67782008-03-04 13:48:30 -0800889 fib6_repair_tree(info->nl_net, fn);
Changli Gaod8d1f302010-06-10 23:31:35 -0700890 dst_free(&rt->dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 return err;
892#endif
893}
894
895/*
896 * Routing tree lookup
897 *
898 */
899
900struct lookup_args {
901 int offset; /* key offset on rt6_info */
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000902 const struct in6_addr *addr; /* search key */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903};
904
905static struct fib6_node * fib6_lookup_1(struct fib6_node *root,
906 struct lookup_args *args)
907{
908 struct fib6_node *fn;
Al Viroe69a4ad2006-11-14 20:56:00 -0800909 __be32 dir;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910
YOSHIFUJI Hideaki825e2882006-08-23 17:21:29 -0700911 if (unlikely(args->offset == 0))
912 return NULL;
913
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914 /*
915 * Descend on a tree
916 */
917
918 fn = root;
919
920 for (;;) {
921 struct fib6_node *next;
922
923 dir = addr_bit_set(args->addr, fn->fn_bit);
924
925 next = dir ? fn->right : fn->left;
926
927 if (next) {
928 fn = next;
929 continue;
930 }
931
932 break;
933 }
934
YOSHIFUJI Hideaki3fc5e042006-08-23 17:21:12 -0700935 while(fn) {
YOSHIFUJI Hideaki7fc33162006-08-23 17:22:24 -0700936 if (FIB6_SUBTREE(fn) || fn->fn_flags & RTN_RTINFO) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937 struct rt6key *key;
938
939 key = (struct rt6key *) ((u8 *) fn->leaf +
940 args->offset);
941
YOSHIFUJI Hideaki3fc5e042006-08-23 17:21:12 -0700942 if (ipv6_prefix_equal(&key->addr, args->addr, key->plen)) {
943#ifdef CONFIG_IPV6_SUBTREES
944 if (fn->subtree)
945 fn = fib6_lookup_1(fn->subtree, args + 1);
946#endif
947 if (!fn || fn->fn_flags & RTN_RTINFO)
948 return fn;
949 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950 }
951
YOSHIFUJI Hideaki3fc5e042006-08-23 17:21:12 -0700952 if (fn->fn_flags & RTN_ROOT)
953 break;
954
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955 fn = fn->parent;
956 }
957
958 return NULL;
959}
960
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000961struct fib6_node * fib6_lookup(struct fib6_node *root, const struct in6_addr *daddr,
962 const struct in6_addr *saddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964 struct fib6_node *fn;
YOSHIFUJI Hideaki825e2882006-08-23 17:21:29 -0700965 struct lookup_args args[] = {
966 {
967 .offset = offsetof(struct rt6_info, rt6i_dst),
968 .addr = daddr,
969 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970#ifdef CONFIG_IPV6_SUBTREES
YOSHIFUJI Hideaki825e2882006-08-23 17:21:29 -0700971 {
972 .offset = offsetof(struct rt6_info, rt6i_src),
973 .addr = saddr,
974 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975#endif
YOSHIFUJI Hideaki825e2882006-08-23 17:21:29 -0700976 {
977 .offset = 0, /* sentinel */
978 }
979 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980
YOSHIFUJI Hideakifefc2a62006-08-23 17:21:50 -0700981 fn = fib6_lookup_1(root, daddr ? args : args + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982
983 if (fn == NULL || fn->fn_flags & RTN_TL_ROOT)
984 fn = root;
985
986 return fn;
987}
988
989/*
990 * Get node with specified destination prefix (and source prefix,
991 * if subtrees are used)
992 */
993
994
995static struct fib6_node * fib6_locate_1(struct fib6_node *root,
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000996 const struct in6_addr *addr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997 int plen, int offset)
998{
999 struct fib6_node *fn;
1000
1001 for (fn = root; fn ; ) {
1002 struct rt6key *key = (struct rt6key *)((u8 *)fn->leaf + offset);
1003
1004 /*
1005 * Prefix match
1006 */
1007 if (plen < fn->fn_bit ||
1008 !ipv6_prefix_equal(&key->addr, addr, fn->fn_bit))
1009 return NULL;
1010
1011 if (plen == fn->fn_bit)
1012 return fn;
1013
1014 /*
1015 * We have more bits to go
1016 */
1017 if (addr_bit_set(addr, fn->fn_bit))
1018 fn = fn->right;
1019 else
1020 fn = fn->left;
1021 }
1022 return NULL;
1023}
1024
1025struct fib6_node * fib6_locate(struct fib6_node *root,
Eric Dumazetb71d1d42011-04-22 04:53:02 +00001026 const struct in6_addr *daddr, int dst_len,
1027 const struct in6_addr *saddr, int src_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028{
1029 struct fib6_node *fn;
1030
1031 fn = fib6_locate_1(root, daddr, dst_len,
1032 offsetof(struct rt6_info, rt6i_dst));
1033
1034#ifdef CONFIG_IPV6_SUBTREES
1035 if (src_len) {
Ilpo Järvinen547b7922008-07-25 21:43:18 -07001036 WARN_ON(saddr == NULL);
YOSHIFUJI Hideaki3fc5e042006-08-23 17:21:12 -07001037 if (fn && fn->subtree)
1038 fn = fib6_locate_1(fn->subtree, saddr, src_len,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039 offsetof(struct rt6_info, rt6i_src));
1040 }
1041#endif
1042
1043 if (fn && fn->fn_flags&RTN_RTINFO)
1044 return fn;
1045
1046 return NULL;
1047}
1048
1049
1050/*
1051 * Deletion
1052 *
1053 */
1054
Daniel Lezcano8ed67782008-03-04 13:48:30 -08001055static struct rt6_info *fib6_find_prefix(struct net *net, struct fib6_node *fn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056{
1057 if (fn->fn_flags&RTN_ROOT)
Daniel Lezcano8ed67782008-03-04 13:48:30 -08001058 return net->ipv6.ip6_null_entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059
1060 while(fn) {
1061 if(fn->left)
1062 return fn->left->leaf;
1063
1064 if(fn->right)
1065 return fn->right->leaf;
1066
YOSHIFUJI Hideaki7fc33162006-08-23 17:22:24 -07001067 fn = FIB6_SUBTREE(fn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068 }
1069 return NULL;
1070}
1071
1072/*
1073 * Called to trim the tree of intermediate nodes when possible. "fn"
1074 * is the node we want to try and remove.
1075 */
1076
Daniel Lezcano8ed67782008-03-04 13:48:30 -08001077static struct fib6_node *fib6_repair_tree(struct net *net,
1078 struct fib6_node *fn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079{
1080 int children;
1081 int nstate;
1082 struct fib6_node *child, *pn;
1083 struct fib6_walker_t *w;
1084 int iter = 0;
1085
1086 for (;;) {
1087 RT6_TRACE("fixing tree: plen=%d iter=%d\n", fn->fn_bit, iter);
1088 iter++;
1089
Ilpo Järvinen547b7922008-07-25 21:43:18 -07001090 WARN_ON(fn->fn_flags & RTN_RTINFO);
1091 WARN_ON(fn->fn_flags & RTN_TL_ROOT);
1092 WARN_ON(fn->leaf != NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093
1094 children = 0;
1095 child = NULL;
1096 if (fn->right) child = fn->right, children |= 1;
1097 if (fn->left) child = fn->left, children |= 2;
1098
YOSHIFUJI Hideaki7fc33162006-08-23 17:22:24 -07001099 if (children == 3 || FIB6_SUBTREE(fn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100#ifdef CONFIG_IPV6_SUBTREES
1101 /* Subtree root (i.e. fn) may have one child */
1102 || (children && fn->fn_flags&RTN_ROOT)
1103#endif
1104 ) {
Daniel Lezcano8ed67782008-03-04 13:48:30 -08001105 fn->leaf = fib6_find_prefix(net, fn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106#if RT6_DEBUG >= 2
1107 if (fn->leaf==NULL) {
Ilpo Järvinen547b7922008-07-25 21:43:18 -07001108 WARN_ON(!fn->leaf);
Daniel Lezcano8ed67782008-03-04 13:48:30 -08001109 fn->leaf = net->ipv6.ip6_null_entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110 }
1111#endif
1112 atomic_inc(&fn->leaf->rt6i_ref);
1113 return fn->parent;
1114 }
1115
1116 pn = fn->parent;
1117#ifdef CONFIG_IPV6_SUBTREES
YOSHIFUJI Hideaki7fc33162006-08-23 17:22:24 -07001118 if (FIB6_SUBTREE(pn) == fn) {
Ilpo Järvinen547b7922008-07-25 21:43:18 -07001119 WARN_ON(!(fn->fn_flags & RTN_ROOT));
YOSHIFUJI Hideaki7fc33162006-08-23 17:22:24 -07001120 FIB6_SUBTREE(pn) = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121 nstate = FWS_L;
1122 } else {
Ilpo Järvinen547b7922008-07-25 21:43:18 -07001123 WARN_ON(fn->fn_flags & RTN_ROOT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124#endif
1125 if (pn->right == fn) pn->right = child;
1126 else if (pn->left == fn) pn->left = child;
1127#if RT6_DEBUG >= 2
Ilpo Järvinen547b7922008-07-25 21:43:18 -07001128 else
1129 WARN_ON(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130#endif
1131 if (child)
1132 child->parent = pn;
1133 nstate = FWS_R;
1134#ifdef CONFIG_IPV6_SUBTREES
1135 }
1136#endif
1137
1138 read_lock(&fib6_walker_lock);
1139 FOR_WALKERS(w) {
1140 if (child == NULL) {
1141 if (w->root == fn) {
1142 w->root = w->node = NULL;
1143 RT6_TRACE("W %p adjusted by delroot 1\n", w);
1144 } else if (w->node == fn) {
1145 RT6_TRACE("W %p adjusted by delnode 1, s=%d/%d\n", w, w->state, nstate);
1146 w->node = pn;
1147 w->state = nstate;
1148 }
1149 } else {
1150 if (w->root == fn) {
1151 w->root = child;
1152 RT6_TRACE("W %p adjusted by delroot 2\n", w);
1153 }
1154 if (w->node == fn) {
1155 w->node = child;
1156 if (children&2) {
1157 RT6_TRACE("W %p adjusted by delnode 2, s=%d\n", w, w->state);
1158 w->state = w->state>=FWS_R ? FWS_U : FWS_INIT;
1159 } else {
1160 RT6_TRACE("W %p adjusted by delnode 2, s=%d\n", w, w->state);
1161 w->state = w->state>=FWS_C ? FWS_U : FWS_INIT;
1162 }
1163 }
1164 }
1165 }
1166 read_unlock(&fib6_walker_lock);
1167
1168 node_free(fn);
YOSHIFUJI Hideaki7fc33162006-08-23 17:22:24 -07001169 if (pn->fn_flags&RTN_RTINFO || FIB6_SUBTREE(pn))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170 return pn;
1171
1172 rt6_release(pn->leaf);
1173 pn->leaf = NULL;
1174 fn = pn;
1175 }
1176}
1177
1178static void fib6_del_route(struct fib6_node *fn, struct rt6_info **rtp,
Thomas Graf86872cb2006-08-22 00:01:08 -07001179 struct nl_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180{
1181 struct fib6_walker_t *w;
1182 struct rt6_info *rt = *rtp;
Benjamin Theryc5728722008-03-03 23:34:17 -08001183 struct net *net = info->nl_net;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184
1185 RT6_TRACE("fib6_del_route\n");
1186
1187 /* Unlink it */
Changli Gaod8d1f302010-06-10 23:31:35 -07001188 *rtp = rt->dst.rt6_next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189 rt->rt6i_node = NULL;
Benjamin Theryc5728722008-03-03 23:34:17 -08001190 net->ipv6.rt6_stats->fib_rt_entries--;
1191 net->ipv6.rt6_stats->fib_discarded_routes++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192
David S. Millerf11e6652007-03-24 20:36:25 -07001193 /* Reset round-robin state, if necessary */
1194 if (fn->rr_ptr == rt)
1195 fn->rr_ptr = NULL;
1196
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197 /* Adjust walkers */
1198 read_lock(&fib6_walker_lock);
1199 FOR_WALKERS(w) {
1200 if (w->state == FWS_C && w->leaf == rt) {
1201 RT6_TRACE("walker %p adjusted by delroute\n", w);
Changli Gaod8d1f302010-06-10 23:31:35 -07001202 w->leaf = rt->dst.rt6_next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203 if (w->leaf == NULL)
1204 w->state = FWS_U;
1205 }
1206 }
1207 read_unlock(&fib6_walker_lock);
1208
Changli Gaod8d1f302010-06-10 23:31:35 -07001209 rt->dst.rt6_next = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211 /* If it was last route, expunge its radix tree node */
1212 if (fn->leaf == NULL) {
1213 fn->fn_flags &= ~RTN_RTINFO;
Benjamin Theryc5728722008-03-03 23:34:17 -08001214 net->ipv6.rt6_stats->fib_route_nodes--;
Daniel Lezcano8ed67782008-03-04 13:48:30 -08001215 fn = fib6_repair_tree(net, fn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216 }
1217
1218 if (atomic_read(&rt->rt6i_ref) != 1) {
1219 /* This route is used as dummy address holder in some split
1220 * nodes. It is not leaked, but it still holds other resources,
1221 * which must be released in time. So, scan ascendant nodes
1222 * and replace dummy references to this route with references
1223 * to still alive ones.
1224 */
1225 while (fn) {
1226 if (!(fn->fn_flags&RTN_RTINFO) && fn->leaf == rt) {
Daniel Lezcano8ed67782008-03-04 13:48:30 -08001227 fn->leaf = fib6_find_prefix(net, fn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228 atomic_inc(&fn->leaf->rt6i_ref);
1229 rt6_release(rt);
1230 }
1231 fn = fn->parent;
1232 }
1233 /* No more references are possible at this point. */
Pavel Emelyanov2df96af2008-02-18 20:50:42 -08001234 BUG_ON(atomic_read(&rt->rt6i_ref) != 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235 }
1236
Thomas Graf86872cb2006-08-22 00:01:08 -07001237 inet6_rt_notify(RTM_DELROUTE, rt, info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238 rt6_release(rt);
1239}
1240
Thomas Graf86872cb2006-08-22 00:01:08 -07001241int fib6_del(struct rt6_info *rt, struct nl_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242{
Daniel Lezcano8ed67782008-03-04 13:48:30 -08001243 struct net *net = info->nl_net;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244 struct fib6_node *fn = rt->rt6i_node;
1245 struct rt6_info **rtp;
1246
1247#if RT6_DEBUG >= 2
Changli Gaod8d1f302010-06-10 23:31:35 -07001248 if (rt->dst.obsolete>0) {
Ilpo Järvinen547b7922008-07-25 21:43:18 -07001249 WARN_ON(fn != NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250 return -ENOENT;
1251 }
1252#endif
Daniel Lezcano8ed67782008-03-04 13:48:30 -08001253 if (fn == NULL || rt == net->ipv6.ip6_null_entry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254 return -ENOENT;
1255
Ilpo Järvinen547b7922008-07-25 21:43:18 -07001256 WARN_ON(!(fn->fn_flags & RTN_RTINFO));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257
YOSHIFUJI Hideaki150730d2006-08-23 17:22:55 -07001258 if (!(rt->rt6i_flags&RTF_CACHE)) {
1259 struct fib6_node *pn = fn;
1260#ifdef CONFIG_IPV6_SUBTREES
1261 /* clones of this route might be in another subtree */
1262 if (rt->rt6i_src.plen) {
1263 while (!(pn->fn_flags&RTN_ROOT))
1264 pn = pn->parent;
1265 pn = pn->parent;
1266 }
1267#endif
Benjamin Theryec7d43c2008-03-03 23:31:57 -08001268 fib6_prune_clones(info->nl_net, pn, rt);
YOSHIFUJI Hideaki150730d2006-08-23 17:22:55 -07001269 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270
1271 /*
1272 * Walk the leaf entries looking for ourself
1273 */
1274
Changli Gaod8d1f302010-06-10 23:31:35 -07001275 for (rtp = &fn->leaf; *rtp; rtp = &(*rtp)->dst.rt6_next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276 if (*rtp == rt) {
Thomas Graf86872cb2006-08-22 00:01:08 -07001277 fib6_del_route(fn, rtp, info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278 return 0;
1279 }
1280 }
1281 return -ENOENT;
1282}
1283
1284/*
1285 * Tree traversal function.
1286 *
1287 * Certainly, it is not interrupt safe.
1288 * However, it is internally reenterable wrt itself and fib6_add/fib6_del.
1289 * It means, that we can modify tree during walking
1290 * and use this function for garbage collection, clone pruning,
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001291 * cleaning tree when a device goes down etc. etc.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292 *
1293 * It guarantees that every node will be traversed,
1294 * and that it will be traversed only once.
1295 *
1296 * Callback function w->func may return:
1297 * 0 -> continue walking.
1298 * positive value -> walking is suspended (used by tree dumps,
1299 * and probably by gc, if it will be split to several slices)
1300 * negative value -> terminate walking.
1301 *
1302 * The function itself returns:
1303 * 0 -> walk is complete.
1304 * >0 -> walk is incomplete (i.e. suspended)
1305 * <0 -> walk is terminated by an error.
1306 */
1307
Adrian Bunk90d41122006-08-14 23:49:16 -07001308static int fib6_walk_continue(struct fib6_walker_t *w)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309{
1310 struct fib6_node *fn, *pn;
1311
1312 for (;;) {
1313 fn = w->node;
1314 if (fn == NULL)
1315 return 0;
1316
1317 if (w->prune && fn != w->root &&
1318 fn->fn_flags&RTN_RTINFO && w->state < FWS_C) {
1319 w->state = FWS_C;
1320 w->leaf = fn->leaf;
1321 }
1322 switch (w->state) {
1323#ifdef CONFIG_IPV6_SUBTREES
1324 case FWS_S:
YOSHIFUJI Hideaki7fc33162006-08-23 17:22:24 -07001325 if (FIB6_SUBTREE(fn)) {
1326 w->node = FIB6_SUBTREE(fn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327 continue;
1328 }
1329 w->state = FWS_L;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001330#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331 case FWS_L:
1332 if (fn->left) {
1333 w->node = fn->left;
1334 w->state = FWS_INIT;
1335 continue;
1336 }
1337 w->state = FWS_R;
1338 case FWS_R:
1339 if (fn->right) {
1340 w->node = fn->right;
1341 w->state = FWS_INIT;
1342 continue;
1343 }
1344 w->state = FWS_C;
1345 w->leaf = fn->leaf;
1346 case FWS_C:
1347 if (w->leaf && fn->fn_flags&RTN_RTINFO) {
Patrick McHardy2bec5a32010-02-08 05:19:03 +00001348 int err;
1349
1350 if (w->count < w->skip) {
1351 w->count++;
1352 continue;
1353 }
1354
1355 err = w->func(w);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356 if (err)
1357 return err;
Patrick McHardy2bec5a32010-02-08 05:19:03 +00001358
1359 w->count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360 continue;
1361 }
1362 w->state = FWS_U;
1363 case FWS_U:
1364 if (fn == w->root)
1365 return 0;
1366 pn = fn->parent;
1367 w->node = pn;
1368#ifdef CONFIG_IPV6_SUBTREES
YOSHIFUJI Hideaki7fc33162006-08-23 17:22:24 -07001369 if (FIB6_SUBTREE(pn) == fn) {
Ilpo Järvinen547b7922008-07-25 21:43:18 -07001370 WARN_ON(!(fn->fn_flags & RTN_ROOT));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371 w->state = FWS_L;
1372 continue;
1373 }
1374#endif
1375 if (pn->left == fn) {
1376 w->state = FWS_R;
1377 continue;
1378 }
1379 if (pn->right == fn) {
1380 w->state = FWS_C;
1381 w->leaf = w->node->leaf;
1382 continue;
1383 }
1384#if RT6_DEBUG >= 2
Ilpo Järvinen547b7922008-07-25 21:43:18 -07001385 WARN_ON(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386#endif
1387 }
1388 }
1389}
1390
Adrian Bunk90d41122006-08-14 23:49:16 -07001391static int fib6_walk(struct fib6_walker_t *w)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392{
1393 int res;
1394
1395 w->state = FWS_INIT;
1396 w->node = w->root;
1397
1398 fib6_walker_link(w);
1399 res = fib6_walk_continue(w);
1400 if (res <= 0)
1401 fib6_walker_unlink(w);
1402 return res;
1403}
1404
1405static int fib6_clean_node(struct fib6_walker_t *w)
1406{
1407 int res;
1408 struct rt6_info *rt;
Benjamin Thery0a8891a2007-10-08 20:39:36 -07001409 struct fib6_cleaner_t *c = container_of(w, struct fib6_cleaner_t, w);
Benjamin Theryec7d43c2008-03-03 23:31:57 -08001410 struct nl_info info = {
1411 .nl_net = c->net,
1412 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413
Changli Gaod8d1f302010-06-10 23:31:35 -07001414 for (rt = w->leaf; rt; rt = rt->dst.rt6_next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415 res = c->func(rt, c->arg);
1416 if (res < 0) {
1417 w->leaf = rt;
Denis V. Lunev528c4ce2007-12-13 09:45:12 -08001418 res = fib6_del(rt, &info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419 if (res) {
1420#if RT6_DEBUG >= 2
1421 printk(KERN_DEBUG "fib6_clean_node: del failed: rt=%p@%p err=%d\n", rt, rt->rt6i_node, res);
1422#endif
1423 continue;
1424 }
1425 return 0;
1426 }
Ilpo Järvinen547b7922008-07-25 21:43:18 -07001427 WARN_ON(res != 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428 }
1429 w->leaf = rt;
1430 return 0;
1431}
1432
1433/*
1434 * Convenient frontend to tree walker.
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001435 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436 * func is called on each route.
1437 * It may return -1 -> delete this route.
1438 * 0 -> continue walking
1439 *
1440 * prune==1 -> only immediate children of node (certainly,
1441 * ignoring pure split nodes) will be scanned.
1442 */
1443
Benjamin Theryec7d43c2008-03-03 23:31:57 -08001444static void fib6_clean_tree(struct net *net, struct fib6_node *root,
Adrian Bunk8ce11e62006-08-07 21:50:48 -07001445 int (*func)(struct rt6_info *, void *arg),
1446 int prune, void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447{
1448 struct fib6_cleaner_t c;
1449
1450 c.w.root = root;
1451 c.w.func = fib6_clean_node;
1452 c.w.prune = prune;
Patrick McHardy2bec5a32010-02-08 05:19:03 +00001453 c.w.count = 0;
1454 c.w.skip = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455 c.func = func;
1456 c.arg = arg;
Benjamin Theryec7d43c2008-03-03 23:31:57 -08001457 c.net = net;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458
1459 fib6_walk(&c.w);
1460}
1461
Daniel Lezcanof3db4852008-03-03 23:27:06 -08001462void fib6_clean_all(struct net *net, int (*func)(struct rt6_info *, void *arg),
Thomas Grafc71099a2006-08-04 23:20:06 -07001463 int prune, void *arg)
1464{
Thomas Grafc71099a2006-08-04 23:20:06 -07001465 struct fib6_table *table;
Patrick McHardy1b43af52006-08-10 23:11:17 -07001466 struct hlist_node *node;
Daniel Lezcano58f09b72008-03-03 23:25:27 -08001467 struct hlist_head *head;
Patrick McHardy1b43af52006-08-10 23:11:17 -07001468 unsigned int h;
Thomas Grafc71099a2006-08-04 23:20:06 -07001469
Patrick McHardy1b43af52006-08-10 23:11:17 -07001470 rcu_read_lock();
Neil Hormana33bc5c2009-07-30 18:52:15 -07001471 for (h = 0; h < FIB6_TABLE_HASHSZ; h++) {
Daniel Lezcanof3db4852008-03-03 23:27:06 -08001472 head = &net->ipv6.fib_table_hash[h];
Daniel Lezcano58f09b72008-03-03 23:25:27 -08001473 hlist_for_each_entry_rcu(table, node, head, tb6_hlist) {
Thomas Grafc71099a2006-08-04 23:20:06 -07001474 write_lock_bh(&table->tb6_lock);
Benjamin Theryec7d43c2008-03-03 23:31:57 -08001475 fib6_clean_tree(net, &table->tb6_root,
1476 func, prune, arg);
Thomas Grafc71099a2006-08-04 23:20:06 -07001477 write_unlock_bh(&table->tb6_lock);
1478 }
1479 }
Patrick McHardy1b43af52006-08-10 23:11:17 -07001480 rcu_read_unlock();
Thomas Grafc71099a2006-08-04 23:20:06 -07001481}
1482
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483static int fib6_prune_clone(struct rt6_info *rt, void *arg)
1484{
1485 if (rt->rt6i_flags & RTF_CACHE) {
1486 RT6_TRACE("pruning clone %p\n", rt);
1487 return -1;
1488 }
1489
1490 return 0;
1491}
1492
Benjamin Theryec7d43c2008-03-03 23:31:57 -08001493static void fib6_prune_clones(struct net *net, struct fib6_node *fn,
1494 struct rt6_info *rt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495{
Benjamin Theryec7d43c2008-03-03 23:31:57 -08001496 fib6_clean_tree(net, fn, fib6_prune_clone, 1, rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497}
1498
1499/*
1500 * Garbage collection
1501 */
1502
1503static struct fib6_gc_args
1504{
1505 int timeout;
1506 int more;
1507} gc_args;
1508
1509static int fib6_age(struct rt6_info *rt, void *arg)
1510{
1511 unsigned long now = jiffies;
1512
1513 /*
1514 * check addrconf expiration here.
1515 * Routes are expired even if they are in use.
1516 *
1517 * Also age clones. Note, that clones are aged out
1518 * only if they are not in use now.
1519 */
1520
1521 if (rt->rt6i_flags&RTF_EXPIRES && rt->rt6i_expires) {
1522 if (time_after(now, rt->rt6i_expires)) {
1523 RT6_TRACE("expiring %p\n", rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524 return -1;
1525 }
1526 gc_args.more++;
1527 } else if (rt->rt6i_flags & RTF_CACHE) {
Changli Gaod8d1f302010-06-10 23:31:35 -07001528 if (atomic_read(&rt->dst.__refcnt) == 0 &&
1529 time_after_eq(now, rt->dst.lastuse + gc_args.timeout)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530 RT6_TRACE("aging clone %p\n", rt);
1531 return -1;
1532 } else if ((rt->rt6i_flags & RTF_GATEWAY) &&
Eric Dumazetf2c31e32011-07-29 19:00:53 +00001533 (!(dst_get_neighbour_raw(&rt->dst)->flags & NTF_ROUTER))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534 RT6_TRACE("purging route %p via non-router but gateway\n",
1535 rt);
1536 return -1;
1537 }
1538 gc_args.more++;
1539 }
1540
1541 return 0;
1542}
1543
1544static DEFINE_SPINLOCK(fib6_gc_lock);
1545
Daniel Lezcano5b7c9312008-03-03 23:28:58 -08001546void fib6_run_gc(unsigned long expires, struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547{
Daniel Lezcano5b7c9312008-03-03 23:28:58 -08001548 if (expires != ~0UL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549 spin_lock_bh(&fib6_gc_lock);
Daniel Lezcano5b7c9312008-03-03 23:28:58 -08001550 gc_args.timeout = expires ? (int)expires :
1551 net->ipv6.sysctl.ip6_rt_gc_interval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552 } else {
Stephen Hemmingera76d7342008-07-22 14:34:35 -07001553 if (!spin_trylock_bh(&fib6_gc_lock)) {
Stephen Hemminger417f28b2008-07-22 14:33:45 -07001554 mod_timer(&net->ipv6.ip6_fib_timer, jiffies + HZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555 return;
1556 }
Daniel Lezcano5b7c9312008-03-03 23:28:58 -08001557 gc_args.timeout = net->ipv6.sysctl.ip6_rt_gc_interval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559
Stephen Hemminger3d0f24a2008-07-22 14:35:50 -07001560 gc_args.more = icmp6_dst_gc();
Daniel Lezcanof3db4852008-03-03 23:27:06 -08001561
Daniel Lezcano5b7c9312008-03-03 23:28:58 -08001562 fib6_clean_all(net, fib6_age, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563
1564 if (gc_args.more)
Stephen Hemmingerc8a45222008-07-22 14:34:09 -07001565 mod_timer(&net->ipv6.ip6_fib_timer,
1566 round_jiffies(jiffies
1567 + net->ipv6.sysctl.ip6_rt_gc_interval));
Stephen Hemminger417f28b2008-07-22 14:33:45 -07001568 else
1569 del_timer(&net->ipv6.ip6_fib_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570 spin_unlock_bh(&fib6_gc_lock);
1571}
1572
Daniel Lezcano5b7c9312008-03-03 23:28:58 -08001573static void fib6_gc_timer_cb(unsigned long arg)
1574{
1575 fib6_run_gc(0, (struct net *)arg);
1576}
1577
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00001578static int __net_init fib6_net_init(struct net *net)
Daniel Lezcano58f09b72008-03-03 23:25:27 -08001579{
Eric Dumazet10da66f2010-10-13 08:22:03 +00001580 size_t size = sizeof(struct hlist_head) * FIB6_TABLE_HASHSZ;
1581
Stephen Hemminger417f28b2008-07-22 14:33:45 -07001582 setup_timer(&net->ipv6.ip6_fib_timer, fib6_gc_timer_cb, (unsigned long)net);
Daniel Lezcano63152fc2008-03-03 23:31:11 -08001583
Benjamin Theryc5728722008-03-03 23:34:17 -08001584 net->ipv6.rt6_stats = kzalloc(sizeof(*net->ipv6.rt6_stats), GFP_KERNEL);
1585 if (!net->ipv6.rt6_stats)
1586 goto out_timer;
1587
Eric Dumazet10da66f2010-10-13 08:22:03 +00001588 /* Avoid false sharing : Use at least a full cache line */
1589 size = max_t(size_t, size, L1_CACHE_BYTES);
1590
1591 net->ipv6.fib_table_hash = kzalloc(size, GFP_KERNEL);
Daniel Lezcano58f09b72008-03-03 23:25:27 -08001592 if (!net->ipv6.fib_table_hash)
Benjamin Theryc5728722008-03-03 23:34:17 -08001593 goto out_rt6_stats;
Daniel Lezcano58f09b72008-03-03 23:25:27 -08001594
1595 net->ipv6.fib6_main_tbl = kzalloc(sizeof(*net->ipv6.fib6_main_tbl),
1596 GFP_KERNEL);
1597 if (!net->ipv6.fib6_main_tbl)
1598 goto out_fib_table_hash;
1599
1600 net->ipv6.fib6_main_tbl->tb6_id = RT6_TABLE_MAIN;
Daniel Lezcano8ed67782008-03-04 13:48:30 -08001601 net->ipv6.fib6_main_tbl->tb6_root.leaf = net->ipv6.ip6_null_entry;
Daniel Lezcano58f09b72008-03-03 23:25:27 -08001602 net->ipv6.fib6_main_tbl->tb6_root.fn_flags =
1603 RTN_ROOT | RTN_TL_ROOT | RTN_RTINFO;
1604
1605#ifdef CONFIG_IPV6_MULTIPLE_TABLES
1606 net->ipv6.fib6_local_tbl = kzalloc(sizeof(*net->ipv6.fib6_local_tbl),
1607 GFP_KERNEL);
1608 if (!net->ipv6.fib6_local_tbl)
1609 goto out_fib6_main_tbl;
1610 net->ipv6.fib6_local_tbl->tb6_id = RT6_TABLE_LOCAL;
Daniel Lezcano8ed67782008-03-04 13:48:30 -08001611 net->ipv6.fib6_local_tbl->tb6_root.leaf = net->ipv6.ip6_null_entry;
Daniel Lezcano58f09b72008-03-03 23:25:27 -08001612 net->ipv6.fib6_local_tbl->tb6_root.fn_flags =
1613 RTN_ROOT | RTN_TL_ROOT | RTN_RTINFO;
1614#endif
1615 fib6_tables_init(net);
1616
Stephen Hemminger417f28b2008-07-22 14:33:45 -07001617 return 0;
Daniel Lezcano58f09b72008-03-03 23:25:27 -08001618
1619#ifdef CONFIG_IPV6_MULTIPLE_TABLES
1620out_fib6_main_tbl:
1621 kfree(net->ipv6.fib6_main_tbl);
1622#endif
1623out_fib_table_hash:
1624 kfree(net->ipv6.fib_table_hash);
Benjamin Theryc5728722008-03-03 23:34:17 -08001625out_rt6_stats:
1626 kfree(net->ipv6.rt6_stats);
Daniel Lezcano63152fc2008-03-03 23:31:11 -08001627out_timer:
Stephen Hemminger417f28b2008-07-22 14:33:45 -07001628 return -ENOMEM;
Daniel Lezcano58f09b72008-03-03 23:25:27 -08001629 }
1630
1631static void fib6_net_exit(struct net *net)
1632{
Daniel Lezcano8ed67782008-03-04 13:48:30 -08001633 rt6_ifdown(net, NULL);
Stephen Hemminger417f28b2008-07-22 14:33:45 -07001634 del_timer_sync(&net->ipv6.ip6_fib_timer);
1635
Daniel Lezcano58f09b72008-03-03 23:25:27 -08001636#ifdef CONFIG_IPV6_MULTIPLE_TABLES
1637 kfree(net->ipv6.fib6_local_tbl);
1638#endif
1639 kfree(net->ipv6.fib6_main_tbl);
1640 kfree(net->ipv6.fib_table_hash);
Benjamin Theryc5728722008-03-03 23:34:17 -08001641 kfree(net->ipv6.rt6_stats);
Daniel Lezcano58f09b72008-03-03 23:25:27 -08001642}
1643
1644static struct pernet_operations fib6_net_ops = {
1645 .init = fib6_net_init,
1646 .exit = fib6_net_exit,
1647};
1648
Daniel Lezcanod63bddb2007-12-07 00:40:34 -08001649int __init fib6_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650{
Daniel Lezcanoe0b855902008-03-03 23:24:31 -08001651 int ret = -ENOMEM;
Daniel Lezcano63152fc2008-03-03 23:31:11 -08001652
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653 fib6_node_kmem = kmem_cache_create("fib6_nodes",
1654 sizeof(struct fib6_node),
Daniel Lezcanof845ab62007-12-07 00:45:16 -08001655 0, SLAB_HWCACHE_ALIGN,
Paul Mundt20c2df82007-07-20 10:11:58 +09001656 NULL);
Daniel Lezcanof845ab62007-12-07 00:45:16 -08001657 if (!fib6_node_kmem)
Daniel Lezcanoe0b855902008-03-03 23:24:31 -08001658 goto out;
1659
Daniel Lezcano58f09b72008-03-03 23:25:27 -08001660 ret = register_pernet_subsys(&fib6_net_ops);
1661 if (ret)
Benjamin Theryc5728722008-03-03 23:34:17 -08001662 goto out_kmem_cache_create;
Daniel Lezcanoe0b855902008-03-03 23:24:31 -08001663
Greg Rosec7ac8672011-06-10 01:27:09 +00001664 ret = __rtnl_register(PF_INET6, RTM_GETROUTE, NULL, inet6_dump_fib,
1665 NULL);
Daniel Lezcanod63bddb2007-12-07 00:40:34 -08001666 if (ret)
Daniel Lezcano58f09b72008-03-03 23:25:27 -08001667 goto out_unregister_subsys;
Daniel Lezcanod63bddb2007-12-07 00:40:34 -08001668out:
1669 return ret;
1670
Daniel Lezcano58f09b72008-03-03 23:25:27 -08001671out_unregister_subsys:
1672 unregister_pernet_subsys(&fib6_net_ops);
Daniel Lezcanod63bddb2007-12-07 00:40:34 -08001673out_kmem_cache_create:
1674 kmem_cache_destroy(fib6_node_kmem);
1675 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676}
1677
1678void fib6_gc_cleanup(void)
1679{
Daniel Lezcano58f09b72008-03-03 23:25:27 -08001680 unregister_pernet_subsys(&fib6_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681 kmem_cache_destroy(fib6_node_kmem);
1682}