blob: 7d2e0023c72dbe2e466b35ffb1c6f0c0446af6da [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.
Wang Yufen8db46f12014-03-28 12:07:02 +080012 *
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.
Linus Torvalds1da177e2005-04-16 15:20:36 -070018 */
Joe Perchesf3213832012-05-15 14:11:53 +000019
20#define pr_fmt(fmt) "IPv6: " fmt
21
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#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>
Thomas Grafc71099a2006-08-04 23:20:06 -070029#include <linux/list.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090030#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include <net/ipv6.h>
33#include <net/ndisc.h>
34#include <net/addrconf.h>
Roopa Prabhu19e42e42015-07-21 10:43:48 +020035#include <net/lwtunnel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036
37#include <net/ip6_fib.h>
38#include <net/ip6_route.h>
39
40#define RT6_DEBUG 2
41
42#if RT6_DEBUG >= 3
Joe Perches91df42b2012-05-15 14:11:54 +000043#define RT6_TRACE(x...) pr_debug(x)
Linus Torvalds1da177e2005-04-16 15:20:36 -070044#else
45#define RT6_TRACE(x...) do { ; } while (0)
46#endif
47
Wang Yufen437de072014-03-28 12:07:04 +080048static struct kmem_cache *fib6_node_kmem __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
Hannes Frederic Sowa94b2cfe2014-10-06 19:58:34 +020050struct fib6_cleaner {
51 struct fib6_walker w;
Benjamin Theryec7d43c2008-03-03 23:31:57 -080052 struct net *net;
Linus Torvalds1da177e2005-04-16 15:20:36 -070053 int (*func)(struct rt6_info *, void *arg);
Hannes Frederic Sowa327571c2014-10-06 19:58:38 +020054 int sernum;
Linus Torvalds1da177e2005-04-16 15:20:36 -070055 void *arg;
56};
57
Adrian Bunk90d41122006-08-14 23:49:16 -070058static DEFINE_RWLOCK(fib6_walker_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
60#ifdef CONFIG_IPV6_SUBTREES
61#define FWS_INIT FWS_S
Linus Torvalds1da177e2005-04-16 15:20:36 -070062#else
63#define FWS_INIT FWS_L
Linus Torvalds1da177e2005-04-16 15:20:36 -070064#endif
65
Duan Jiong163cd4e2014-05-09 13:31:43 +080066static void fib6_prune_clones(struct net *net, struct fib6_node *fn);
Daniel Lezcano8ed67782008-03-04 13:48:30 -080067static 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);
Hannes Frederic Sowa94b2cfe2014-10-06 19:58:34 +020069static int fib6_walk(struct fib6_walker *w);
70static int fib6_walk_continue(struct fib6_walker *w);
Linus Torvalds1da177e2005-04-16 15:20:36 -070071
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
Daniel Lezcano5b7c9312008-03-03 23:28:58 -080079static void fib6_gc_timer_cb(unsigned long arg);
80
Alexey Dobriyanbbef49d2010-02-18 08:13:30 +000081static LIST_HEAD(fib6_walkers);
82#define FOR_WALKERS(w) list_for_each_entry(w, &fib6_walkers, lh)
Linus Torvalds1da177e2005-04-16 15:20:36 -070083
Hannes Frederic Sowa94b2cfe2014-10-06 19:58:34 +020084static void fib6_walker_link(struct fib6_walker *w)
Adrian Bunk90d41122006-08-14 23:49:16 -070085{
86 write_lock_bh(&fib6_walker_lock);
Alexey Dobriyanbbef49d2010-02-18 08:13:30 +000087 list_add(&w->lh, &fib6_walkers);
Adrian Bunk90d41122006-08-14 23:49:16 -070088 write_unlock_bh(&fib6_walker_lock);
89}
90
Hannes Frederic Sowa94b2cfe2014-10-06 19:58:34 +020091static void fib6_walker_unlink(struct fib6_walker *w)
Adrian Bunk90d41122006-08-14 23:49:16 -070092{
93 write_lock_bh(&fib6_walker_lock);
Alexey Dobriyanbbef49d2010-02-18 08:13:30 +000094 list_del(&w->lh);
Adrian Bunk90d41122006-08-14 23:49:16 -070095 write_unlock_bh(&fib6_walker_lock);
96}
Hannes Frederic Sowa94b2cfe2014-10-06 19:58:34 +020097
Hannes Frederic Sowa812918c2014-10-06 19:58:37 +020098static int fib6_new_sernum(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -070099{
Hannes Frederic Sowa42b18702014-10-06 19:58:35 +0200100 int new, old;
101
102 do {
Hannes Frederic Sowa812918c2014-10-06 19:58:37 +0200103 old = atomic_read(&net->ipv6.fib6_sernum);
Hannes Frederic Sowa42b18702014-10-06 19:58:35 +0200104 new = old < INT_MAX ? old + 1 : 1;
Hannes Frederic Sowa812918c2014-10-06 19:58:37 +0200105 } while (atomic_cmpxchg(&net->ipv6.fib6_sernum,
106 old, new) != old);
Hannes Frederic Sowa42b18702014-10-06 19:58:35 +0200107 return new;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108}
109
Hannes Frederic Sowa327571c2014-10-06 19:58:38 +0200110enum {
111 FIB6_NO_SERNUM_CHANGE = 0,
112};
113
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114/*
115 * Auxiliary address test functions for the radix tree.
116 *
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900117 * These assume a 32bit processor (although it will work on
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 * 64bit processors)
119 */
120
121/*
122 * test bit
123 */
YOSHIFUJI Hideaki / 吉藤英明02cdce52010-03-27 01:24:16 +0000124#if defined(__LITTLE_ENDIAN)
125# define BITOP_BE32_SWIZZLE (0x1F & ~7)
126#else
127# define BITOP_BE32_SWIZZLE 0
128#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129
Hannes Frederic Sowa94b2cfe2014-10-06 19:58:34 +0200130static __be32 addr_bit_set(const void *token, int fn_bit)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131{
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000132 const __be32 *addr = token;
YOSHIFUJI Hideaki / 吉藤英明02cdce52010-03-27 01:24:16 +0000133 /*
134 * Here,
Wang Yufen8db46f12014-03-28 12:07:02 +0800135 * 1 << ((~fn_bit ^ BITOP_BE32_SWIZZLE) & 0x1f)
YOSHIFUJI Hideaki / 吉藤英明02cdce52010-03-27 01:24:16 +0000136 * is optimized version of
137 * htonl(1 << ((~fn_bit)&0x1F))
138 * See include/asm-generic/bitops/le.h.
139 */
Eric Dumazet0eae88f2010-04-20 19:06:52 -0700140 return (__force __be32)(1 << ((~fn_bit ^ BITOP_BE32_SWIZZLE) & 0x1f)) &
141 addr[fn_bit >> 5];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142}
143
Hannes Frederic Sowa94b2cfe2014-10-06 19:58:34 +0200144static struct fib6_node *node_alloc(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145{
146 struct fib6_node *fn;
147
Robert P. J. Dayc3762222007-02-10 01:45:03 -0800148 fn = kmem_cache_zalloc(fib6_node_kmem, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149
150 return fn;
151}
152
Hannes Frederic Sowa94b2cfe2014-10-06 19:58:34 +0200153static void node_free(struct fib6_node *fn)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154{
155 kmem_cache_free(fib6_node_kmem, fn);
156}
157
Martin KaFai Lau70da5b52015-09-15 14:30:09 -0700158static void rt6_rcu_free(struct rt6_info *rt)
159{
160 call_rcu(&rt->dst.rcu_head, dst_rcu_free);
161}
162
Martin KaFai Laud52d3992015-05-22 20:56:06 -0700163static void rt6_free_pcpu(struct rt6_info *non_pcpu_rt)
164{
165 int cpu;
166
167 if (!non_pcpu_rt->rt6i_pcpu)
168 return;
169
170 for_each_possible_cpu(cpu) {
171 struct rt6_info **ppcpu_rt;
172 struct rt6_info *pcpu_rt;
173
174 ppcpu_rt = per_cpu_ptr(non_pcpu_rt->rt6i_pcpu, cpu);
175 pcpu_rt = *ppcpu_rt;
176 if (pcpu_rt) {
Martin KaFai Lau70da5b52015-09-15 14:30:09 -0700177 rt6_rcu_free(pcpu_rt);
Martin KaFai Laud52d3992015-05-22 20:56:06 -0700178 *ppcpu_rt = NULL;
179 }
180 }
Martin KaFai Lau9c7370a2015-08-14 11:05:54 -0700181
182 non_pcpu_rt->rt6i_pcpu = NULL;
Martin KaFai Laud52d3992015-05-22 20:56:06 -0700183}
184
Hannes Frederic Sowa94b2cfe2014-10-06 19:58:34 +0200185static void rt6_release(struct rt6_info *rt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186{
Martin KaFai Laud52d3992015-05-22 20:56:06 -0700187 if (atomic_dec_and_test(&rt->rt6i_ref)) {
188 rt6_free_pcpu(rt);
Martin KaFai Lau70da5b52015-09-15 14:30:09 -0700189 rt6_rcu_free(rt);
Martin KaFai Laud52d3992015-05-22 20:56:06 -0700190 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191}
192
Daniel Lezcano58f09b72008-03-03 23:25:27 -0800193static void fib6_link_table(struct net *net, struct fib6_table *tb)
Patrick McHardy1b43af52006-08-10 23:11:17 -0700194{
195 unsigned int h;
196
Thomas Graf375216a2006-10-21 20:20:54 -0700197 /*
198 * Initialize table lock at a single place to give lockdep a key,
199 * tables aren't visible prior to being linked to the list.
200 */
201 rwlock_init(&tb->tb6_lock);
202
Neil Hormana33bc5c2009-07-30 18:52:15 -0700203 h = tb->tb6_id & (FIB6_TABLE_HASHSZ - 1);
Patrick McHardy1b43af52006-08-10 23:11:17 -0700204
205 /*
206 * No protection necessary, this is the only list mutatation
207 * operation, tables never disappear once they exist.
208 */
Daniel Lezcano58f09b72008-03-03 23:25:27 -0800209 hlist_add_head_rcu(&tb->tb6_hlist, &net->ipv6.fib_table_hash[h]);
Patrick McHardy1b43af52006-08-10 23:11:17 -0700210}
211
212#ifdef CONFIG_IPV6_MULTIPLE_TABLES
Daniel Lezcanoe0b855902008-03-03 23:24:31 -0800213
Daniel Lezcano8ed67782008-03-04 13:48:30 -0800214static struct fib6_table *fib6_alloc_table(struct net *net, u32 id)
Thomas Grafc71099a2006-08-04 23:20:06 -0700215{
216 struct fib6_table *table;
217
218 table = kzalloc(sizeof(*table), GFP_ATOMIC);
David S. Miller507c9b12011-12-03 17:50:45 -0500219 if (table) {
Thomas Grafc71099a2006-08-04 23:20:06 -0700220 table->tb6_id = id;
Daniel Lezcano8ed67782008-03-04 13:48:30 -0800221 table->tb6_root.leaf = net->ipv6.ip6_null_entry;
Thomas Grafc71099a2006-08-04 23:20:06 -0700222 table->tb6_root.fn_flags = RTN_ROOT | RTN_TL_ROOT | RTN_RTINFO;
David S. Miller8e773272012-06-11 00:01:52 -0700223 inet_peer_base_init(&table->tb6_peers);
Thomas Grafc71099a2006-08-04 23:20:06 -0700224 }
225
226 return table;
227}
228
Daniel Lezcano58f09b72008-03-03 23:25:27 -0800229struct fib6_table *fib6_new_table(struct net *net, u32 id)
Thomas Grafc71099a2006-08-04 23:20:06 -0700230{
231 struct fib6_table *tb;
232
233 if (id == 0)
234 id = RT6_TABLE_MAIN;
Daniel Lezcano58f09b72008-03-03 23:25:27 -0800235 tb = fib6_get_table(net, id);
Thomas Grafc71099a2006-08-04 23:20:06 -0700236 if (tb)
237 return tb;
238
Daniel Lezcano8ed67782008-03-04 13:48:30 -0800239 tb = fib6_alloc_table(net, id);
David S. Miller507c9b12011-12-03 17:50:45 -0500240 if (tb)
Daniel Lezcano58f09b72008-03-03 23:25:27 -0800241 fib6_link_table(net, tb);
Thomas Grafc71099a2006-08-04 23:20:06 -0700242
243 return tb;
244}
245
Daniel Lezcano58f09b72008-03-03 23:25:27 -0800246struct fib6_table *fib6_get_table(struct net *net, u32 id)
Thomas Grafc71099a2006-08-04 23:20:06 -0700247{
248 struct fib6_table *tb;
Daniel Lezcano58f09b72008-03-03 23:25:27 -0800249 struct hlist_head *head;
Thomas Grafc71099a2006-08-04 23:20:06 -0700250 unsigned int h;
251
252 if (id == 0)
253 id = RT6_TABLE_MAIN;
Neil Hormana33bc5c2009-07-30 18:52:15 -0700254 h = id & (FIB6_TABLE_HASHSZ - 1);
Thomas Grafc71099a2006-08-04 23:20:06 -0700255 rcu_read_lock();
Daniel Lezcano58f09b72008-03-03 23:25:27 -0800256 head = &net->ipv6.fib_table_hash[h];
Sasha Levinb67bfe02013-02-27 17:06:00 -0800257 hlist_for_each_entry_rcu(tb, head, tb6_hlist) {
Thomas Grafc71099a2006-08-04 23:20:06 -0700258 if (tb->tb6_id == id) {
259 rcu_read_unlock();
260 return tb;
261 }
262 }
263 rcu_read_unlock();
264
265 return NULL;
266}
267
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +0000268static void __net_init fib6_tables_init(struct net *net)
Thomas Grafc71099a2006-08-04 23:20:06 -0700269{
Daniel Lezcano58f09b72008-03-03 23:25:27 -0800270 fib6_link_table(net, net->ipv6.fib6_main_tbl);
271 fib6_link_table(net, net->ipv6.fib6_local_tbl);
Thomas Grafc71099a2006-08-04 23:20:06 -0700272}
Thomas Grafc71099a2006-08-04 23:20:06 -0700273#else
274
Daniel Lezcano58f09b72008-03-03 23:25:27 -0800275struct fib6_table *fib6_new_table(struct net *net, u32 id)
Thomas Grafc71099a2006-08-04 23:20:06 -0700276{
Daniel Lezcano58f09b72008-03-03 23:25:27 -0800277 return fib6_get_table(net, id);
Thomas Grafc71099a2006-08-04 23:20:06 -0700278}
279
Daniel Lezcano58f09b72008-03-03 23:25:27 -0800280struct fib6_table *fib6_get_table(struct net *net, u32 id)
Thomas Grafc71099a2006-08-04 23:20:06 -0700281{
Daniel Lezcano58f09b72008-03-03 23:25:27 -0800282 return net->ipv6.fib6_main_tbl;
Thomas Grafc71099a2006-08-04 23:20:06 -0700283}
284
David S. Miller4c9483b2011-03-12 16:22:43 -0500285struct dst_entry *fib6_rule_lookup(struct net *net, struct flowi6 *fl6,
Daniel Lezcano58f09b72008-03-03 23:25:27 -0800286 int flags, pol_lookup_t lookup)
Thomas Grafc71099a2006-08-04 23:20:06 -0700287{
David S. Miller4c9483b2011-03-12 16:22:43 -0500288 return (struct dst_entry *) lookup(net, net->ipv6.fib6_main_tbl, fl6, flags);
Thomas Grafc71099a2006-08-04 23:20:06 -0700289}
290
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +0000291static void __net_init fib6_tables_init(struct net *net)
Thomas Grafc71099a2006-08-04 23:20:06 -0700292{
Daniel Lezcano58f09b72008-03-03 23:25:27 -0800293 fib6_link_table(net, net->ipv6.fib6_main_tbl);
Thomas Grafc71099a2006-08-04 23:20:06 -0700294}
295
296#endif
297
Hannes Frederic Sowa94b2cfe2014-10-06 19:58:34 +0200298static int fib6_dump_node(struct fib6_walker *w)
Patrick McHardy1b43af52006-08-10 23:11:17 -0700299{
300 int res;
301 struct rt6_info *rt;
302
Changli Gaod8d1f302010-06-10 23:31:35 -0700303 for (rt = w->leaf; rt; rt = rt->dst.rt6_next) {
Patrick McHardy1b43af52006-08-10 23:11:17 -0700304 res = rt6_dump_route(rt, w->args);
305 if (res < 0) {
306 /* Frame is full, suspend walking */
307 w->leaf = rt;
308 return 1;
309 }
Patrick McHardy1b43af52006-08-10 23:11:17 -0700310 }
311 w->leaf = NULL;
312 return 0;
313}
314
315static void fib6_dump_end(struct netlink_callback *cb)
316{
Hannes Frederic Sowa94b2cfe2014-10-06 19:58:34 +0200317 struct fib6_walker *w = (void *)cb->args[2];
Patrick McHardy1b43af52006-08-10 23:11:17 -0700318
319 if (w) {
Herbert Xu7891cc82009-01-13 22:17:51 -0800320 if (cb->args[4]) {
321 cb->args[4] = 0;
322 fib6_walker_unlink(w);
323 }
Patrick McHardy1b43af52006-08-10 23:11:17 -0700324 cb->args[2] = 0;
325 kfree(w);
326 }
Wang Yufen437de072014-03-28 12:07:04 +0800327 cb->done = (void *)cb->args[3];
Patrick McHardy1b43af52006-08-10 23:11:17 -0700328 cb->args[1] = 3;
329}
330
331static int fib6_dump_done(struct netlink_callback *cb)
332{
333 fib6_dump_end(cb);
334 return cb->done ? cb->done(cb) : 0;
335}
336
337static int fib6_dump_table(struct fib6_table *table, struct sk_buff *skb,
338 struct netlink_callback *cb)
339{
Hannes Frederic Sowa94b2cfe2014-10-06 19:58:34 +0200340 struct fib6_walker *w;
Patrick McHardy1b43af52006-08-10 23:11:17 -0700341 int res;
342
343 w = (void *)cb->args[2];
344 w->root = &table->tb6_root;
345
346 if (cb->args[4] == 0) {
Patrick McHardy2bec5a32010-02-08 05:19:03 +0000347 w->count = 0;
348 w->skip = 0;
349
Patrick McHardy1b43af52006-08-10 23:11:17 -0700350 read_lock_bh(&table->tb6_lock);
351 res = fib6_walk(w);
352 read_unlock_bh(&table->tb6_lock);
Patrick McHardy2bec5a32010-02-08 05:19:03 +0000353 if (res > 0) {
Patrick McHardy1b43af52006-08-10 23:11:17 -0700354 cb->args[4] = 1;
Patrick McHardy2bec5a32010-02-08 05:19:03 +0000355 cb->args[5] = w->root->fn_sernum;
356 }
Patrick McHardy1b43af52006-08-10 23:11:17 -0700357 } else {
Patrick McHardy2bec5a32010-02-08 05:19:03 +0000358 if (cb->args[5] != w->root->fn_sernum) {
359 /* Begin at the root if the tree changed */
360 cb->args[5] = w->root->fn_sernum;
361 w->state = FWS_INIT;
362 w->node = w->root;
363 w->skip = w->count;
364 } else
365 w->skip = 0;
366
Patrick McHardy1b43af52006-08-10 23:11:17 -0700367 read_lock_bh(&table->tb6_lock);
368 res = fib6_walk_continue(w);
369 read_unlock_bh(&table->tb6_lock);
Herbert Xu7891cc82009-01-13 22:17:51 -0800370 if (res <= 0) {
371 fib6_walker_unlink(w);
372 cb->args[4] = 0;
Patrick McHardy1b43af52006-08-10 23:11:17 -0700373 }
Patrick McHardy1b43af52006-08-10 23:11:17 -0700374 }
Herbert Xu7891cc82009-01-13 22:17:51 -0800375
Patrick McHardy1b43af52006-08-10 23:11:17 -0700376 return res;
377}
378
Thomas Grafc127ea22007-03-22 11:58:32 -0700379static int inet6_dump_fib(struct sk_buff *skb, struct netlink_callback *cb)
Patrick McHardy1b43af52006-08-10 23:11:17 -0700380{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900381 struct net *net = sock_net(skb->sk);
Patrick McHardy1b43af52006-08-10 23:11:17 -0700382 unsigned int h, s_h;
383 unsigned int e = 0, s_e;
384 struct rt6_rtnl_dump_arg arg;
Hannes Frederic Sowa94b2cfe2014-10-06 19:58:34 +0200385 struct fib6_walker *w;
Patrick McHardy1b43af52006-08-10 23:11:17 -0700386 struct fib6_table *tb;
Daniel Lezcano58f09b72008-03-03 23:25:27 -0800387 struct hlist_head *head;
Patrick McHardy1b43af52006-08-10 23:11:17 -0700388 int res = 0;
389
390 s_h = cb->args[0];
391 s_e = cb->args[1];
392
393 w = (void *)cb->args[2];
David S. Miller507c9b12011-12-03 17:50:45 -0500394 if (!w) {
Patrick McHardy1b43af52006-08-10 23:11:17 -0700395 /* New dump:
396 *
397 * 1. hook callback destructor.
398 */
399 cb->args[3] = (long)cb->done;
400 cb->done = fib6_dump_done;
401
402 /*
403 * 2. allocate and initialize walker.
404 */
405 w = kzalloc(sizeof(*w), GFP_ATOMIC);
David S. Miller507c9b12011-12-03 17:50:45 -0500406 if (!w)
Patrick McHardy1b43af52006-08-10 23:11:17 -0700407 return -ENOMEM;
408 w->func = fib6_dump_node;
409 cb->args[2] = (long)w;
410 }
411
412 arg.skb = skb;
413 arg.cb = cb;
Brian Haley191cd582008-08-14 15:33:21 -0700414 arg.net = net;
Patrick McHardy1b43af52006-08-10 23:11:17 -0700415 w->args = &arg;
416
Eric Dumazete67f88d2011-04-27 22:56:07 +0000417 rcu_read_lock();
Neil Hormana33bc5c2009-07-30 18:52:15 -0700418 for (h = s_h; h < FIB6_TABLE_HASHSZ; h++, s_e = 0) {
Patrick McHardy1b43af52006-08-10 23:11:17 -0700419 e = 0;
Daniel Lezcano58f09b72008-03-03 23:25:27 -0800420 head = &net->ipv6.fib_table_hash[h];
Sasha Levinb67bfe02013-02-27 17:06:00 -0800421 hlist_for_each_entry_rcu(tb, head, tb6_hlist) {
Patrick McHardy1b43af52006-08-10 23:11:17 -0700422 if (e < s_e)
423 goto next;
424 res = fib6_dump_table(tb, skb, cb);
425 if (res != 0)
426 goto out;
427next:
428 e++;
429 }
430 }
431out:
Eric Dumazete67f88d2011-04-27 22:56:07 +0000432 rcu_read_unlock();
Patrick McHardy1b43af52006-08-10 23:11:17 -0700433 cb->args[1] = e;
434 cb->args[0] = h;
435
436 res = res < 0 ? res : skb->len;
437 if (res <= 0)
438 fib6_dump_end(cb);
439 return res;
440}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441
442/*
443 * Routing Table
444 *
445 * return the appropriate node for a routing tree "add" operation
446 * by either creating and inserting or by returning an existing
447 * node.
448 */
449
fan.du9225b232013-07-22 14:21:09 +0800450static struct fib6_node *fib6_add_1(struct fib6_node *root,
451 struct in6_addr *addr, int plen,
Matti Vaittinen4a287eb2011-11-14 00:15:14 +0000452 int offset, int allow_create,
Hannes Frederic Sowac8c4d422014-10-06 19:58:36 +0200453 int replace_required, int sernum)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454{
455 struct fib6_node *fn, *in, *ln;
456 struct fib6_node *pn = NULL;
457 struct rt6key *key;
458 int bit;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900459 __be32 dir = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460
461 RT6_TRACE("fib6_add_1\n");
462
463 /* insert node in tree */
464
465 fn = root;
466
467 do {
468 key = (struct rt6key *)((u8 *)fn->leaf + offset);
469
470 /*
471 * Prefix match
472 */
473 if (plen < fn->fn_bit ||
Matti Vaittinen4a287eb2011-11-14 00:15:14 +0000474 !ipv6_prefix_equal(&key->addr, addr, fn->fn_bit)) {
Matti Vaittinen14df0152011-11-16 21:18:02 +0000475 if (!allow_create) {
476 if (replace_required) {
Joe Perchesf3213832012-05-15 14:11:53 +0000477 pr_warn("Can't replace route, no match found\n");
Matti Vaittinen14df0152011-11-16 21:18:02 +0000478 return ERR_PTR(-ENOENT);
479 }
Joe Perchesf3213832012-05-15 14:11:53 +0000480 pr_warn("NLM_F_CREATE should be set when creating new route\n");
Matti Vaittinen14df0152011-11-16 21:18:02 +0000481 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 goto insert_above;
Matti Vaittinen4a287eb2011-11-14 00:15:14 +0000483 }
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900484
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 /*
486 * Exact match ?
487 */
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900488
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 if (plen == fn->fn_bit) {
490 /* clean up an intermediate node */
David S. Miller507c9b12011-12-03 17:50:45 -0500491 if (!(fn->fn_flags & RTN_RTINFO)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 rt6_release(fn->leaf);
493 fn->leaf = NULL;
494 }
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900495
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 fn->fn_sernum = sernum;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900497
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 return fn;
499 }
500
501 /*
502 * We have more bits to go
503 */
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900504
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 /* Try to walk down on tree. */
506 fn->fn_sernum = sernum;
507 dir = addr_bit_set(addr, fn->fn_bit);
508 pn = fn;
Wang Yufen8db46f12014-03-28 12:07:02 +0800509 fn = dir ? fn->right : fn->left;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 } while (fn);
511
Matti Vaittinen14df0152011-11-16 21:18:02 +0000512 if (!allow_create) {
Matti Vaittinen4a287eb2011-11-14 00:15:14 +0000513 /* We should not create new node because
514 * NLM_F_REPLACE was specified without NLM_F_CREATE
515 * I assume it is safe to require NLM_F_CREATE when
516 * REPLACE flag is used! Later we may want to remove the
517 * check for replace_required, because according
518 * to netlink specification, NLM_F_CREATE
519 * MUST be specified if new route is created.
520 * That would keep IPv6 consistent with IPv4
521 */
Matti Vaittinen14df0152011-11-16 21:18:02 +0000522 if (replace_required) {
Joe Perchesf3213832012-05-15 14:11:53 +0000523 pr_warn("Can't replace route, no match found\n");
Matti Vaittinen14df0152011-11-16 21:18:02 +0000524 return ERR_PTR(-ENOENT);
525 }
Joe Perchesf3213832012-05-15 14:11:53 +0000526 pr_warn("NLM_F_CREATE should be set when creating new route\n");
Matti Vaittinen4a287eb2011-11-14 00:15:14 +0000527 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 /*
529 * We walked to the bottom of tree.
530 * Create new leaf node without children.
531 */
532
533 ln = node_alloc();
534
David S. Miller507c9b12011-12-03 17:50:45 -0500535 if (!ln)
Lin Ming188c5172012-09-25 15:17:07 +0000536 return ERR_PTR(-ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 ln->fn_bit = plen;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900538
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 ln->parent = pn;
540 ln->fn_sernum = sernum;
541
542 if (dir)
543 pn->right = ln;
544 else
545 pn->left = ln;
546
547 return ln;
548
549
550insert_above:
551 /*
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900552 * split since we don't have a common prefix anymore or
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 * we have a less significant route.
554 * we've to insert an intermediate node on the list
555 * this new node will point to the one we need to create
556 * and the current
557 */
558
559 pn = fn->parent;
560
561 /* find 1st bit in difference between the 2 addrs.
562
YOSHIFUJI Hideaki971f3592005-11-08 09:37:56 -0800563 See comment in __ipv6_addr_diff: bit may be an invalid value,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 but if it is >= plen, the value is ignored in any case.
565 */
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900566
fan.du9225b232013-07-22 14:21:09 +0800567 bit = __ipv6_addr_diff(addr, &key->addr, sizeof(*addr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900569 /*
570 * (intermediate)[in]
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 * / \
572 * (new leaf node)[ln] (old node)[fn]
573 */
574 if (plen > bit) {
575 in = node_alloc();
576 ln = node_alloc();
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900577
David S. Miller507c9b12011-12-03 17:50:45 -0500578 if (!in || !ln) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 if (in)
580 node_free(in);
581 if (ln)
582 node_free(ln);
Lin Ming188c5172012-09-25 15:17:07 +0000583 return ERR_PTR(-ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 }
585
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900586 /*
587 * new intermediate node.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 * RTN_RTINFO will
589 * be off since that an address that chooses one of
590 * the branches would not match less specific routes
591 * in the other branch
592 */
593
594 in->fn_bit = bit;
595
596 in->parent = pn;
597 in->leaf = fn->leaf;
598 atomic_inc(&in->leaf->rt6i_ref);
599
600 in->fn_sernum = sernum;
601
602 /* update parent pointer */
603 if (dir)
604 pn->right = in;
605 else
606 pn->left = in;
607
608 ln->fn_bit = plen;
609
610 ln->parent = in;
611 fn->parent = in;
612
613 ln->fn_sernum = sernum;
614
615 if (addr_bit_set(addr, bit)) {
616 in->right = ln;
617 in->left = fn;
618 } else {
619 in->left = ln;
620 in->right = fn;
621 }
622 } else { /* plen <= bit */
623
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900624 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 * (new leaf node)[ln]
626 * / \
627 * (old node)[fn] NULL
628 */
629
630 ln = node_alloc();
631
David S. Miller507c9b12011-12-03 17:50:45 -0500632 if (!ln)
Lin Ming188c5172012-09-25 15:17:07 +0000633 return ERR_PTR(-ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634
635 ln->fn_bit = plen;
636
637 ln->parent = pn;
638
639 ln->fn_sernum = sernum;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900640
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 if (dir)
642 pn->right = ln;
643 else
644 pn->left = ln;
645
646 if (addr_bit_set(&key->addr, plen))
647 ln->right = fn;
648 else
649 ln->left = fn;
650
651 fn->parent = ln;
652 }
653 return ln;
654}
655
Hannes Frederic Sowa94b2cfe2014-10-06 19:58:34 +0200656static bool rt6_qualify_for_ecmp(struct rt6_info *rt)
Hannes Frederic Sowa307f2fb2013-07-12 23:46:33 +0200657{
658 return (rt->rt6i_flags & (RTF_GATEWAY|RTF_ADDRCONF|RTF_DYNAMIC)) ==
659 RTF_GATEWAY;
660}
661
Florian Westphale715b6d2015-01-05 23:57:44 +0100662static void fib6_copy_metrics(u32 *mp, const struct mx6_config *mxc)
Michal Kubečeke5fd3872014-03-27 13:04:08 +0100663{
Florian Westphale715b6d2015-01-05 23:57:44 +0100664 int i;
Michal Kubečeke5fd3872014-03-27 13:04:08 +0100665
Florian Westphale715b6d2015-01-05 23:57:44 +0100666 for (i = 0; i < RTAX_MAX; i++) {
667 if (test_bit(i, mxc->mx_valid))
668 mp[i] = mxc->mx[i];
Michal Kubečeke5fd3872014-03-27 13:04:08 +0100669 }
Florian Westphale715b6d2015-01-05 23:57:44 +0100670}
671
672static int fib6_commit_metrics(struct dst_entry *dst, struct mx6_config *mxc)
673{
674 if (!mxc->mx)
675 return 0;
676
677 if (dst->flags & DST_HOST) {
678 u32 *mp = dst_metrics_write_ptr(dst);
679
680 if (unlikely(!mp))
681 return -ENOMEM;
682
683 fib6_copy_metrics(mp, mxc);
684 } else {
685 dst_init_metrics(dst, mxc->mx, false);
686
687 /* We've stolen mx now. */
688 mxc->mx = NULL;
689 }
690
Michal Kubečeke5fd3872014-03-27 13:04:08 +0100691 return 0;
692}
693
Hannes Frederic Sowa6e9e16e62015-01-26 15:11:17 +0100694static void fib6_purge_rt(struct rt6_info *rt, struct fib6_node *fn,
695 struct net *net)
696{
697 if (atomic_read(&rt->rt6i_ref) != 1) {
698 /* This route is used as dummy address holder in some split
699 * nodes. It is not leaked, but it still holds other resources,
700 * which must be released in time. So, scan ascendant nodes
701 * and replace dummy references to this route with references
702 * to still alive ones.
703 */
704 while (fn) {
705 if (!(fn->fn_flags & RTN_RTINFO) && fn->leaf == rt) {
706 fn->leaf = fib6_find_prefix(net, fn);
707 atomic_inc(&fn->leaf->rt6i_ref);
708 rt6_release(rt);
709 }
710 fn = fn->parent;
711 }
712 /* No more references are possible at this point. */
713 BUG_ON(atomic_read(&rt->rt6i_ref) != 1);
714 }
715}
716
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717/*
718 * Insert routing information in a node.
719 */
720
721static int fib6_add_rt2node(struct fib6_node *fn, struct rt6_info *rt,
Florian Westphale715b6d2015-01-05 23:57:44 +0100722 struct nl_info *info, struct mx6_config *mxc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723{
724 struct rt6_info *iter = NULL;
725 struct rt6_info **ins;
Michal Kubeček27596472015-05-18 20:54:00 +0200726 struct rt6_info **fallback_ins = NULL;
David S. Miller507c9b12011-12-03 17:50:45 -0500727 int replace = (info->nlh &&
728 (info->nlh->nlmsg_flags & NLM_F_REPLACE));
729 int add = (!info->nlh ||
730 (info->nlh->nlmsg_flags & NLM_F_CREATE));
Matti Vaittinen4a287eb2011-11-14 00:15:14 +0000731 int found = 0;
Hannes Frederic Sowa307f2fb2013-07-12 23:46:33 +0200732 bool rt_can_ecmp = rt6_qualify_for_ecmp(rt);
Michal Kubečeke5fd3872014-03-27 13:04:08 +0100733 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734
735 ins = &fn->leaf;
736
David S. Miller507c9b12011-12-03 17:50:45 -0500737 for (iter = fn->leaf; iter; iter = iter->dst.rt6_next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 /*
739 * Search for duplicates
740 */
741
742 if (iter->rt6i_metric == rt->rt6i_metric) {
743 /*
744 * Same priority level
745 */
David S. Miller507c9b12011-12-03 17:50:45 -0500746 if (info->nlh &&
747 (info->nlh->nlmsg_flags & NLM_F_EXCL))
Matti Vaittinen4a287eb2011-11-14 00:15:14 +0000748 return -EEXIST;
749 if (replace) {
Michal Kubeček27596472015-05-18 20:54:00 +0200750 if (rt_can_ecmp == rt6_qualify_for_ecmp(iter)) {
751 found++;
752 break;
753 }
754 if (rt_can_ecmp)
755 fallback_ins = fallback_ins ?: ins;
756 goto next_iter;
Matti Vaittinen4a287eb2011-11-14 00:15:14 +0000757 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758
David S. Millerd1918542011-12-28 20:19:20 -0500759 if (iter->dst.dev == rt->dst.dev &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 iter->rt6i_idev == rt->rt6i_idev &&
761 ipv6_addr_equal(&iter->rt6i_gateway,
762 &rt->rt6i_gateway)) {
Nicolas Dichtel51ebd312012-10-22 03:42:09 +0000763 if (rt->rt6i_nsiblings)
764 rt->rt6i_nsiblings = 0;
David S. Miller507c9b12011-12-03 17:50:45 -0500765 if (!(iter->rt6i_flags & RTF_EXPIRES))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 return -EEXIST;
Gao feng1716a962012-04-06 00:13:10 +0000767 if (!(rt->rt6i_flags & RTF_EXPIRES))
768 rt6_clean_expires(iter);
769 else
770 rt6_set_expires(iter, rt->dst.expires);
Martin KaFai Lau45e4fd22015-05-22 20:56:00 -0700771 iter->rt6i_pmtu = rt->rt6i_pmtu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 return -EEXIST;
773 }
Nicolas Dichtel51ebd312012-10-22 03:42:09 +0000774 /* If we have the same destination and the same metric,
775 * but not the same gateway, then the route we try to
776 * add is sibling to this route, increment our counter
777 * of siblings, and later we will add our route to the
778 * list.
779 * Only static routes (which don't have flag
780 * RTF_EXPIRES) are used for ECMPv6.
781 *
782 * To avoid long list, we only had siblings if the
783 * route have a gateway.
784 */
Hannes Frederic Sowa307f2fb2013-07-12 23:46:33 +0200785 if (rt_can_ecmp &&
786 rt6_qualify_for_ecmp(iter))
Nicolas Dichtel51ebd312012-10-22 03:42:09 +0000787 rt->rt6i_nsiblings++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 }
789
790 if (iter->rt6i_metric > rt->rt6i_metric)
791 break;
792
Michal Kubeček27596472015-05-18 20:54:00 +0200793next_iter:
Changli Gaod8d1f302010-06-10 23:31:35 -0700794 ins = &iter->dst.rt6_next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 }
796
Michal Kubeček27596472015-05-18 20:54:00 +0200797 if (fallback_ins && !found) {
798 /* No ECMP-able route found, replace first non-ECMP one */
799 ins = fallback_ins;
800 iter = *ins;
801 found++;
802 }
803
David S. Millerf11e6652007-03-24 20:36:25 -0700804 /* Reset round-robin state, if necessary */
805 if (ins == &fn->leaf)
806 fn->rr_ptr = NULL;
807
Nicolas Dichtel51ebd312012-10-22 03:42:09 +0000808 /* Link this route to others same route. */
809 if (rt->rt6i_nsiblings) {
810 unsigned int rt6i_nsiblings;
811 struct rt6_info *sibling, *temp_sibling;
812
813 /* Find the first route that have the same metric */
814 sibling = fn->leaf;
815 while (sibling) {
Hannes Frederic Sowa307f2fb2013-07-12 23:46:33 +0200816 if (sibling->rt6i_metric == rt->rt6i_metric &&
817 rt6_qualify_for_ecmp(sibling)) {
Nicolas Dichtel51ebd312012-10-22 03:42:09 +0000818 list_add_tail(&rt->rt6i_siblings,
819 &sibling->rt6i_siblings);
820 break;
821 }
822 sibling = sibling->dst.rt6_next;
823 }
824 /* For each sibling in the list, increment the counter of
825 * siblings. BUG() if counters does not match, list of siblings
826 * is broken!
827 */
828 rt6i_nsiblings = 0;
829 list_for_each_entry_safe(sibling, temp_sibling,
830 &rt->rt6i_siblings, rt6i_siblings) {
831 sibling->rt6i_nsiblings++;
832 BUG_ON(sibling->rt6i_nsiblings != rt->rt6i_nsiblings);
833 rt6i_nsiblings++;
834 }
835 BUG_ON(rt6i_nsiblings != rt->rt6i_nsiblings);
836 }
837
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838 /*
839 * insert node
840 */
Matti Vaittinen4a287eb2011-11-14 00:15:14 +0000841 if (!replace) {
842 if (!add)
Joe Perchesf3213832012-05-15 14:11:53 +0000843 pr_warn("NLM_F_CREATE should be set when creating new route\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844
Matti Vaittinen4a287eb2011-11-14 00:15:14 +0000845add:
Florian Westphale715b6d2015-01-05 23:57:44 +0100846 err = fib6_commit_metrics(&rt->dst, mxc);
847 if (err)
848 return err;
849
Matti Vaittinen4a287eb2011-11-14 00:15:14 +0000850 rt->dst.rt6_next = iter;
851 *ins = rt;
852 rt->rt6i_node = fn;
853 atomic_inc(&rt->rt6i_ref);
Roopa Prabhu37a1d362015-09-13 10:18:33 -0700854 inet6_rt_notify(RTM_NEWROUTE, rt, info, 0);
Matti Vaittinen4a287eb2011-11-14 00:15:14 +0000855 info->nl_net->ipv6.rt6_stats->fib_rt_entries++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856
David S. Miller507c9b12011-12-03 17:50:45 -0500857 if (!(fn->fn_flags & RTN_RTINFO)) {
Matti Vaittinen4a287eb2011-11-14 00:15:14 +0000858 info->nl_net->ipv6.rt6_stats->fib_route_nodes++;
859 fn->fn_flags |= RTN_RTINFO;
860 }
861
862 } else {
Michal Kubeček27596472015-05-18 20:54:00 +0200863 int nsiblings;
864
Matti Vaittinen4a287eb2011-11-14 00:15:14 +0000865 if (!found) {
866 if (add)
867 goto add;
Joe Perchesf3213832012-05-15 14:11:53 +0000868 pr_warn("NLM_F_REPLACE set, but no existing node found!\n");
Matti Vaittinen4a287eb2011-11-14 00:15:14 +0000869 return -ENOENT;
870 }
Florian Westphale715b6d2015-01-05 23:57:44 +0100871
872 err = fib6_commit_metrics(&rt->dst, mxc);
873 if (err)
874 return err;
875
Matti Vaittinen4a287eb2011-11-14 00:15:14 +0000876 *ins = rt;
877 rt->rt6i_node = fn;
878 rt->dst.rt6_next = iter->dst.rt6_next;
879 atomic_inc(&rt->rt6i_ref);
Roopa Prabhu37a1d362015-09-13 10:18:33 -0700880 inet6_rt_notify(RTM_NEWROUTE, rt, info, NLM_F_REPLACE);
David S. Miller507c9b12011-12-03 17:50:45 -0500881 if (!(fn->fn_flags & RTN_RTINFO)) {
Matti Vaittinen4a287eb2011-11-14 00:15:14 +0000882 info->nl_net->ipv6.rt6_stats->fib_route_nodes++;
883 fn->fn_flags |= RTN_RTINFO;
884 }
Michal Kubeček27596472015-05-18 20:54:00 +0200885 nsiblings = iter->rt6i_nsiblings;
Hannes Frederic Sowa6e9e16e62015-01-26 15:11:17 +0100886 fib6_purge_rt(iter, fn, info->nl_net);
887 rt6_release(iter);
Michal Kubeček27596472015-05-18 20:54:00 +0200888
889 if (nsiblings) {
890 /* Replacing an ECMP route, remove all siblings */
891 ins = &rt->dst.rt6_next;
892 iter = *ins;
893 while (iter) {
894 if (rt6_qualify_for_ecmp(iter)) {
895 *ins = iter->dst.rt6_next;
896 fib6_purge_rt(iter, fn, info->nl_net);
897 rt6_release(iter);
898 nsiblings--;
899 } else {
900 ins = &iter->dst.rt6_next;
901 }
902 iter = *ins;
903 }
904 WARN_ON(nsiblings != 0);
905 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906 }
907
908 return 0;
909}
910
Hannes Frederic Sowa94b2cfe2014-10-06 19:58:34 +0200911static void fib6_start_gc(struct net *net, struct rt6_info *rt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912{
Stephen Hemminger417f28b2008-07-22 14:33:45 -0700913 if (!timer_pending(&net->ipv6.ip6_fib_timer) &&
David S. Miller507c9b12011-12-03 17:50:45 -0500914 (rt->rt6i_flags & (RTF_EXPIRES | RTF_CACHE)))
Stephen Hemminger417f28b2008-07-22 14:33:45 -0700915 mod_timer(&net->ipv6.ip6_fib_timer,
Stephen Hemminger847499c2008-07-21 13:21:35 -0700916 jiffies + net->ipv6.sysctl.ip6_rt_gc_interval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917}
918
Daniel Lezcano63152fc2008-03-03 23:31:11 -0800919void fib6_force_start_gc(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920{
Stephen Hemminger417f28b2008-07-22 14:33:45 -0700921 if (!timer_pending(&net->ipv6.ip6_fib_timer))
922 mod_timer(&net->ipv6.ip6_fib_timer,
Stephen Hemminger847499c2008-07-21 13:21:35 -0700923 jiffies + net->ipv6.sysctl.ip6_rt_gc_interval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924}
925
926/*
927 * Add routing information to the routing tree.
928 * <destination addr>/<source addr>
929 * with source addr info in sub-trees
930 */
931
Florian Westphale715b6d2015-01-05 23:57:44 +0100932int fib6_add(struct fib6_node *root, struct rt6_info *rt,
933 struct nl_info *info, struct mx6_config *mxc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934{
YOSHIFUJI Hideaki66729e12006-08-23 17:20:34 -0700935 struct fib6_node *fn, *pn = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 int err = -ENOMEM;
Matti Vaittinen4a287eb2011-11-14 00:15:14 +0000937 int allow_create = 1;
938 int replace_required = 0;
Hannes Frederic Sowa812918c2014-10-06 19:58:37 +0200939 int sernum = fib6_new_sernum(info->nl_net);
David S. Miller507c9b12011-12-03 17:50:45 -0500940
Martin KaFai Lau8e3d5be2015-09-15 14:30:08 -0700941 if (WARN_ON_ONCE((rt->dst.flags & DST_NOCACHE) &&
942 !atomic_read(&rt->dst.__refcnt)))
943 return -EINVAL;
944
David S. Miller507c9b12011-12-03 17:50:45 -0500945 if (info->nlh) {
946 if (!(info->nlh->nlmsg_flags & NLM_F_CREATE))
Matti Vaittinen4a287eb2011-11-14 00:15:14 +0000947 allow_create = 0;
David S. Miller507c9b12011-12-03 17:50:45 -0500948 if (info->nlh->nlmsg_flags & NLM_F_REPLACE)
Matti Vaittinen4a287eb2011-11-14 00:15:14 +0000949 replace_required = 1;
950 }
951 if (!allow_create && !replace_required)
Joe Perchesf3213832012-05-15 14:11:53 +0000952 pr_warn("RTM_NEWROUTE with no NLM_F_CREATE or NLM_F_REPLACE\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953
fan.du9225b232013-07-22 14:21:09 +0800954 fn = fib6_add_1(root, &rt->rt6i_dst.addr, rt->rt6i_dst.plen,
955 offsetof(struct rt6_info, rt6i_dst), allow_create,
Hannes Frederic Sowac8c4d422014-10-06 19:58:36 +0200956 replace_required, sernum);
Matti Vaittinen4a287eb2011-11-14 00:15:14 +0000957 if (IS_ERR(fn)) {
958 err = PTR_ERR(fn);
Daniel Borkmannae7b4e12013-09-07 15:13:20 +0200959 fn = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960 goto out;
Lin Ming188c5172012-09-25 15:17:07 +0000961 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962
YOSHIFUJI Hideaki66729e12006-08-23 17:20:34 -0700963 pn = fn;
964
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965#ifdef CONFIG_IPV6_SUBTREES
966 if (rt->rt6i_src.plen) {
967 struct fib6_node *sn;
968
David S. Miller507c9b12011-12-03 17:50:45 -0500969 if (!fn->subtree) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970 struct fib6_node *sfn;
971
972 /*
973 * Create subtree.
974 *
975 * fn[main tree]
976 * |
977 * sfn[subtree root]
978 * \
979 * sn[new leaf node]
980 */
981
982 /* Create subtree root node */
983 sfn = node_alloc();
David S. Miller507c9b12011-12-03 17:50:45 -0500984 if (!sfn)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985 goto st_failure;
986
Daniel Lezcano8ed67782008-03-04 13:48:30 -0800987 sfn->leaf = info->nl_net->ipv6.ip6_null_entry;
988 atomic_inc(&info->nl_net->ipv6.ip6_null_entry->rt6i_ref);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989 sfn->fn_flags = RTN_ROOT;
Hannes Frederic Sowac8c4d422014-10-06 19:58:36 +0200990 sfn->fn_sernum = sernum;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991
992 /* Now add the first leaf node to new subtree */
993
994 sn = fib6_add_1(sfn, &rt->rt6i_src.addr,
fan.du9225b232013-07-22 14:21:09 +0800995 rt->rt6i_src.plen,
Matti Vaittinen4a287eb2011-11-14 00:15:14 +0000996 offsetof(struct rt6_info, rt6i_src),
Hannes Frederic Sowac8c4d422014-10-06 19:58:36 +0200997 allow_create, replace_required, sernum);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998
Wei Yongjunf950c0e2012-09-20 18:29:56 +0000999 if (IS_ERR(sn)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000 /* If it is failed, discard just allocated
1001 root, and then (in st_failure) stale node
1002 in main tree.
1003 */
1004 node_free(sfn);
Lin Ming188c5172012-09-25 15:17:07 +00001005 err = PTR_ERR(sn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006 goto st_failure;
1007 }
1008
1009 /* Now link new subtree to main tree */
1010 sfn->parent = fn;
1011 fn->subtree = sfn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012 } else {
1013 sn = fib6_add_1(fn->subtree, &rt->rt6i_src.addr,
fan.du9225b232013-07-22 14:21:09 +08001014 rt->rt6i_src.plen,
Matti Vaittinen4a287eb2011-11-14 00:15:14 +00001015 offsetof(struct rt6_info, rt6i_src),
Hannes Frederic Sowac8c4d422014-10-06 19:58:36 +02001016 allow_create, replace_required, sernum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017
Matti Vaittinen4a287eb2011-11-14 00:15:14 +00001018 if (IS_ERR(sn)) {
1019 err = PTR_ERR(sn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020 goto st_failure;
Lin Ming188c5172012-09-25 15:17:07 +00001021 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 }
1023
David S. Miller507c9b12011-12-03 17:50:45 -05001024 if (!fn->leaf) {
YOSHIFUJI Hideaki66729e12006-08-23 17:20:34 -07001025 fn->leaf = rt;
1026 atomic_inc(&rt->rt6i_ref);
1027 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028 fn = sn;
1029 }
1030#endif
1031
Florian Westphale715b6d2015-01-05 23:57:44 +01001032 err = fib6_add_rt2node(fn, rt, info, mxc);
David S. Miller507c9b12011-12-03 17:50:45 -05001033 if (!err) {
Daniel Lezcano63152fc2008-03-03 23:31:11 -08001034 fib6_start_gc(info->nl_net, rt);
David S. Miller507c9b12011-12-03 17:50:45 -05001035 if (!(rt->rt6i_flags & RTF_CACHE))
Duan Jiong163cd4e2014-05-09 13:31:43 +08001036 fib6_prune_clones(info->nl_net, pn);
Martin KaFai Lau8e3d5be2015-09-15 14:30:08 -07001037 rt->dst.flags &= ~DST_NOCACHE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038 }
1039
1040out:
YOSHIFUJI Hideaki66729e12006-08-23 17:20:34 -07001041 if (err) {
1042#ifdef CONFIG_IPV6_SUBTREES
1043 /*
1044 * If fib6_add_1 has cleared the old leaf pointer in the
1045 * super-tree leaf node we have to find a new one for it.
1046 */
David S. Miller3c051232008-04-18 01:46:19 -07001047 if (pn != fn && pn->leaf == rt) {
1048 pn->leaf = NULL;
1049 atomic_dec(&rt->rt6i_ref);
1050 }
YOSHIFUJI Hideaki66729e12006-08-23 17:20:34 -07001051 if (pn != fn && !pn->leaf && !(pn->fn_flags & RTN_RTINFO)) {
Daniel Lezcano8ed67782008-03-04 13:48:30 -08001052 pn->leaf = fib6_find_prefix(info->nl_net, pn);
YOSHIFUJI Hideaki66729e12006-08-23 17:20:34 -07001053#if RT6_DEBUG >= 2
1054 if (!pn->leaf) {
Ilpo Järvinen547b7922008-07-25 21:43:18 -07001055 WARN_ON(pn->leaf == NULL);
Daniel Lezcano8ed67782008-03-04 13:48:30 -08001056 pn->leaf = info->nl_net->ipv6.ip6_null_entry;
YOSHIFUJI Hideaki66729e12006-08-23 17:20:34 -07001057 }
1058#endif
1059 atomic_inc(&pn->leaf->rt6i_ref);
1060 }
1061#endif
Martin KaFai Lau8e3d5be2015-09-15 14:30:08 -07001062 if (!(rt->dst.flags & DST_NOCACHE))
1063 dst_free(&rt->dst);
YOSHIFUJI Hideaki66729e12006-08-23 17:20:34 -07001064 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065 return err;
1066
1067#ifdef CONFIG_IPV6_SUBTREES
1068 /* Subtree creation failed, probably main tree node
1069 is orphan. If it is, shoot it.
1070 */
1071st_failure:
1072 if (fn && !(fn->fn_flags & (RTN_RTINFO|RTN_ROOT)))
Daniel Lezcano8ed67782008-03-04 13:48:30 -08001073 fib6_repair_tree(info->nl_net, fn);
Martin KaFai Lau8e3d5be2015-09-15 14:30:08 -07001074 if (!(rt->dst.flags & DST_NOCACHE))
1075 dst_free(&rt->dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 return err;
1077#endif
1078}
1079
1080/*
1081 * Routing tree lookup
1082 *
1083 */
1084
1085struct lookup_args {
David S. Miller507c9b12011-12-03 17:50:45 -05001086 int offset; /* key offset on rt6_info */
Eric Dumazetb71d1d42011-04-22 04:53:02 +00001087 const struct in6_addr *addr; /* search key */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088};
1089
Wang Yufen437de072014-03-28 12:07:04 +08001090static struct fib6_node *fib6_lookup_1(struct fib6_node *root,
1091 struct lookup_args *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092{
1093 struct fib6_node *fn;
Al Viroe69a4adc2006-11-14 20:56:00 -08001094 __be32 dir;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095
YOSHIFUJI Hideaki825e2882006-08-23 17:21:29 -07001096 if (unlikely(args->offset == 0))
1097 return NULL;
1098
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099 /*
1100 * Descend on a tree
1101 */
1102
1103 fn = root;
1104
1105 for (;;) {
1106 struct fib6_node *next;
1107
1108 dir = addr_bit_set(args->addr, fn->fn_bit);
1109
1110 next = dir ? fn->right : fn->left;
1111
1112 if (next) {
1113 fn = next;
1114 continue;
1115 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116 break;
1117 }
1118
David S. Miller507c9b12011-12-03 17:50:45 -05001119 while (fn) {
YOSHIFUJI Hideaki7fc33162006-08-23 17:22:24 -07001120 if (FIB6_SUBTREE(fn) || fn->fn_flags & RTN_RTINFO) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121 struct rt6key *key;
1122
1123 key = (struct rt6key *) ((u8 *) fn->leaf +
1124 args->offset);
1125
YOSHIFUJI Hideaki3fc5e042006-08-23 17:21:12 -07001126 if (ipv6_prefix_equal(&key->addr, args->addr, key->plen)) {
1127#ifdef CONFIG_IPV6_SUBTREES
Hannes Frederic Sowa3e3be272013-08-07 02:34:31 +02001128 if (fn->subtree) {
1129 struct fib6_node *sfn;
1130 sfn = fib6_lookup_1(fn->subtree,
1131 args + 1);
1132 if (!sfn)
1133 goto backtrack;
1134 fn = sfn;
1135 }
YOSHIFUJI Hideaki3fc5e042006-08-23 17:21:12 -07001136#endif
Hannes Frederic Sowa3e3be272013-08-07 02:34:31 +02001137 if (fn->fn_flags & RTN_RTINFO)
YOSHIFUJI Hideaki3fc5e042006-08-23 17:21:12 -07001138 return fn;
1139 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140 }
Hannes Frederic Sowa3e3be272013-08-07 02:34:31 +02001141#ifdef CONFIG_IPV6_SUBTREES
1142backtrack:
1143#endif
YOSHIFUJI Hideaki3fc5e042006-08-23 17:21:12 -07001144 if (fn->fn_flags & RTN_ROOT)
1145 break;
1146
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147 fn = fn->parent;
1148 }
1149
1150 return NULL;
1151}
1152
Wang Yufen437de072014-03-28 12:07:04 +08001153struct fib6_node *fib6_lookup(struct fib6_node *root, const struct in6_addr *daddr,
1154 const struct in6_addr *saddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156 struct fib6_node *fn;
YOSHIFUJI Hideaki825e2882006-08-23 17:21:29 -07001157 struct lookup_args args[] = {
1158 {
1159 .offset = offsetof(struct rt6_info, rt6i_dst),
1160 .addr = daddr,
1161 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162#ifdef CONFIG_IPV6_SUBTREES
YOSHIFUJI Hideaki825e2882006-08-23 17:21:29 -07001163 {
1164 .offset = offsetof(struct rt6_info, rt6i_src),
1165 .addr = saddr,
1166 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167#endif
YOSHIFUJI Hideaki825e2882006-08-23 17:21:29 -07001168 {
1169 .offset = 0, /* sentinel */
1170 }
1171 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172
YOSHIFUJI Hideakifefc2a62006-08-23 17:21:50 -07001173 fn = fib6_lookup_1(root, daddr ? args : args + 1);
David S. Miller507c9b12011-12-03 17:50:45 -05001174 if (!fn || fn->fn_flags & RTN_TL_ROOT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175 fn = root;
1176
1177 return fn;
1178}
1179
1180/*
1181 * Get node with specified destination prefix (and source prefix,
1182 * if subtrees are used)
1183 */
1184
1185
Wang Yufen437de072014-03-28 12:07:04 +08001186static struct fib6_node *fib6_locate_1(struct fib6_node *root,
1187 const struct in6_addr *addr,
1188 int plen, int offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189{
1190 struct fib6_node *fn;
1191
1192 for (fn = root; fn ; ) {
1193 struct rt6key *key = (struct rt6key *)((u8 *)fn->leaf + offset);
1194
1195 /*
1196 * Prefix match
1197 */
1198 if (plen < fn->fn_bit ||
1199 !ipv6_prefix_equal(&key->addr, addr, fn->fn_bit))
1200 return NULL;
1201
1202 if (plen == fn->fn_bit)
1203 return fn;
1204
1205 /*
1206 * We have more bits to go
1207 */
1208 if (addr_bit_set(addr, fn->fn_bit))
1209 fn = fn->right;
1210 else
1211 fn = fn->left;
1212 }
1213 return NULL;
1214}
1215
Wang Yufen437de072014-03-28 12:07:04 +08001216struct fib6_node *fib6_locate(struct fib6_node *root,
1217 const struct in6_addr *daddr, int dst_len,
1218 const struct in6_addr *saddr, int src_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219{
1220 struct fib6_node *fn;
1221
1222 fn = fib6_locate_1(root, daddr, dst_len,
1223 offsetof(struct rt6_info, rt6i_dst));
1224
1225#ifdef CONFIG_IPV6_SUBTREES
1226 if (src_len) {
Ilpo Järvinen547b7922008-07-25 21:43:18 -07001227 WARN_ON(saddr == NULL);
YOSHIFUJI Hideaki3fc5e042006-08-23 17:21:12 -07001228 if (fn && fn->subtree)
1229 fn = fib6_locate_1(fn->subtree, saddr, src_len,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230 offsetof(struct rt6_info, rt6i_src));
1231 }
1232#endif
1233
David S. Miller507c9b12011-12-03 17:50:45 -05001234 if (fn && fn->fn_flags & RTN_RTINFO)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235 return fn;
1236
1237 return NULL;
1238}
1239
1240
1241/*
1242 * Deletion
1243 *
1244 */
1245
Daniel Lezcano8ed67782008-03-04 13:48:30 -08001246static struct rt6_info *fib6_find_prefix(struct net *net, struct fib6_node *fn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247{
David S. Miller507c9b12011-12-03 17:50:45 -05001248 if (fn->fn_flags & RTN_ROOT)
Daniel Lezcano8ed67782008-03-04 13:48:30 -08001249 return net->ipv6.ip6_null_entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250
David S. Miller507c9b12011-12-03 17:50:45 -05001251 while (fn) {
1252 if (fn->left)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253 return fn->left->leaf;
David S. Miller507c9b12011-12-03 17:50:45 -05001254 if (fn->right)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255 return fn->right->leaf;
1256
YOSHIFUJI Hideaki7fc33162006-08-23 17:22:24 -07001257 fn = FIB6_SUBTREE(fn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258 }
1259 return NULL;
1260}
1261
1262/*
1263 * Called to trim the tree of intermediate nodes when possible. "fn"
1264 * is the node we want to try and remove.
1265 */
1266
Daniel Lezcano8ed67782008-03-04 13:48:30 -08001267static struct fib6_node *fib6_repair_tree(struct net *net,
1268 struct fib6_node *fn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269{
1270 int children;
1271 int nstate;
1272 struct fib6_node *child, *pn;
Hannes Frederic Sowa94b2cfe2014-10-06 19:58:34 +02001273 struct fib6_walker *w;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274 int iter = 0;
1275
1276 for (;;) {
1277 RT6_TRACE("fixing tree: plen=%d iter=%d\n", fn->fn_bit, iter);
1278 iter++;
1279
Ilpo Järvinen547b7922008-07-25 21:43:18 -07001280 WARN_ON(fn->fn_flags & RTN_RTINFO);
1281 WARN_ON(fn->fn_flags & RTN_TL_ROOT);
Ian Morris53b24b82015-03-29 14:00:05 +01001282 WARN_ON(fn->leaf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283
1284 children = 0;
1285 child = NULL;
Wang Yufen49e253e2014-03-28 12:07:03 +08001286 if (fn->right)
1287 child = fn->right, children |= 1;
1288 if (fn->left)
1289 child = fn->left, children |= 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290
YOSHIFUJI Hideaki7fc33162006-08-23 17:22:24 -07001291 if (children == 3 || FIB6_SUBTREE(fn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292#ifdef CONFIG_IPV6_SUBTREES
1293 /* Subtree root (i.e. fn) may have one child */
David S. Miller507c9b12011-12-03 17:50:45 -05001294 || (children && fn->fn_flags & RTN_ROOT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295#endif
1296 ) {
Daniel Lezcano8ed67782008-03-04 13:48:30 -08001297 fn->leaf = fib6_find_prefix(net, fn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298#if RT6_DEBUG >= 2
David S. Miller507c9b12011-12-03 17:50:45 -05001299 if (!fn->leaf) {
Ilpo Järvinen547b7922008-07-25 21:43:18 -07001300 WARN_ON(!fn->leaf);
Daniel Lezcano8ed67782008-03-04 13:48:30 -08001301 fn->leaf = net->ipv6.ip6_null_entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302 }
1303#endif
1304 atomic_inc(&fn->leaf->rt6i_ref);
1305 return fn->parent;
1306 }
1307
1308 pn = fn->parent;
1309#ifdef CONFIG_IPV6_SUBTREES
YOSHIFUJI Hideaki7fc33162006-08-23 17:22:24 -07001310 if (FIB6_SUBTREE(pn) == fn) {
Ilpo Järvinen547b7922008-07-25 21:43:18 -07001311 WARN_ON(!(fn->fn_flags & RTN_ROOT));
YOSHIFUJI Hideaki7fc33162006-08-23 17:22:24 -07001312 FIB6_SUBTREE(pn) = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313 nstate = FWS_L;
1314 } else {
Ilpo Järvinen547b7922008-07-25 21:43:18 -07001315 WARN_ON(fn->fn_flags & RTN_ROOT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316#endif
Wang Yufen49e253e2014-03-28 12:07:03 +08001317 if (pn->right == fn)
1318 pn->right = child;
1319 else if (pn->left == fn)
1320 pn->left = child;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321#if RT6_DEBUG >= 2
Ilpo Järvinen547b7922008-07-25 21:43:18 -07001322 else
1323 WARN_ON(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324#endif
1325 if (child)
1326 child->parent = pn;
1327 nstate = FWS_R;
1328#ifdef CONFIG_IPV6_SUBTREES
1329 }
1330#endif
1331
1332 read_lock(&fib6_walker_lock);
1333 FOR_WALKERS(w) {
David S. Miller507c9b12011-12-03 17:50:45 -05001334 if (!child) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335 if (w->root == fn) {
1336 w->root = w->node = NULL;
1337 RT6_TRACE("W %p adjusted by delroot 1\n", w);
1338 } else if (w->node == fn) {
1339 RT6_TRACE("W %p adjusted by delnode 1, s=%d/%d\n", w, w->state, nstate);
1340 w->node = pn;
1341 w->state = nstate;
1342 }
1343 } else {
1344 if (w->root == fn) {
1345 w->root = child;
1346 RT6_TRACE("W %p adjusted by delroot 2\n", w);
1347 }
1348 if (w->node == fn) {
1349 w->node = child;
1350 if (children&2) {
1351 RT6_TRACE("W %p adjusted by delnode 2, s=%d\n", w, w->state);
Wang Yufen8db46f12014-03-28 12:07:02 +08001352 w->state = w->state >= FWS_R ? FWS_U : FWS_INIT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353 } else {
1354 RT6_TRACE("W %p adjusted by delnode 2, s=%d\n", w, w->state);
Wang Yufen8db46f12014-03-28 12:07:02 +08001355 w->state = w->state >= FWS_C ? FWS_U : FWS_INIT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356 }
1357 }
1358 }
1359 }
1360 read_unlock(&fib6_walker_lock);
1361
1362 node_free(fn);
David S. Miller507c9b12011-12-03 17:50:45 -05001363 if (pn->fn_flags & RTN_RTINFO || FIB6_SUBTREE(pn))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364 return pn;
1365
1366 rt6_release(pn->leaf);
1367 pn->leaf = NULL;
1368 fn = pn;
1369 }
1370}
1371
1372static void fib6_del_route(struct fib6_node *fn, struct rt6_info **rtp,
Thomas Graf86872cb2006-08-22 00:01:08 -07001373 struct nl_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374{
Hannes Frederic Sowa94b2cfe2014-10-06 19:58:34 +02001375 struct fib6_walker *w;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376 struct rt6_info *rt = *rtp;
Benjamin Theryc5728722008-03-03 23:34:17 -08001377 struct net *net = info->nl_net;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378
1379 RT6_TRACE("fib6_del_route\n");
1380
1381 /* Unlink it */
Changli Gaod8d1f302010-06-10 23:31:35 -07001382 *rtp = rt->dst.rt6_next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383 rt->rt6i_node = NULL;
Benjamin Theryc5728722008-03-03 23:34:17 -08001384 net->ipv6.rt6_stats->fib_rt_entries--;
1385 net->ipv6.rt6_stats->fib_discarded_routes++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386
David S. Millerf11e6652007-03-24 20:36:25 -07001387 /* Reset round-robin state, if necessary */
1388 if (fn->rr_ptr == rt)
1389 fn->rr_ptr = NULL;
1390
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00001391 /* Remove this entry from other siblings */
1392 if (rt->rt6i_nsiblings) {
1393 struct rt6_info *sibling, *next_sibling;
1394
1395 list_for_each_entry_safe(sibling, next_sibling,
1396 &rt->rt6i_siblings, rt6i_siblings)
1397 sibling->rt6i_nsiblings--;
1398 rt->rt6i_nsiblings = 0;
1399 list_del_init(&rt->rt6i_siblings);
1400 }
1401
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402 /* Adjust walkers */
1403 read_lock(&fib6_walker_lock);
1404 FOR_WALKERS(w) {
1405 if (w->state == FWS_C && w->leaf == rt) {
1406 RT6_TRACE("walker %p adjusted by delroute\n", w);
Changli Gaod8d1f302010-06-10 23:31:35 -07001407 w->leaf = rt->dst.rt6_next;
David S. Miller507c9b12011-12-03 17:50:45 -05001408 if (!w->leaf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409 w->state = FWS_U;
1410 }
1411 }
1412 read_unlock(&fib6_walker_lock);
1413
Changli Gaod8d1f302010-06-10 23:31:35 -07001414 rt->dst.rt6_next = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416 /* If it was last route, expunge its radix tree node */
David S. Miller507c9b12011-12-03 17:50:45 -05001417 if (!fn->leaf) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418 fn->fn_flags &= ~RTN_RTINFO;
Benjamin Theryc5728722008-03-03 23:34:17 -08001419 net->ipv6.rt6_stats->fib_route_nodes--;
Daniel Lezcano8ed67782008-03-04 13:48:30 -08001420 fn = fib6_repair_tree(net, fn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421 }
1422
Hannes Frederic Sowa6e9e16e62015-01-26 15:11:17 +01001423 fib6_purge_rt(rt, fn, net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424
Roopa Prabhu37a1d362015-09-13 10:18:33 -07001425 inet6_rt_notify(RTM_DELROUTE, rt, info, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426 rt6_release(rt);
1427}
1428
Thomas Graf86872cb2006-08-22 00:01:08 -07001429int fib6_del(struct rt6_info *rt, struct nl_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430{
Daniel Lezcano8ed67782008-03-04 13:48:30 -08001431 struct net *net = info->nl_net;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432 struct fib6_node *fn = rt->rt6i_node;
1433 struct rt6_info **rtp;
1434
1435#if RT6_DEBUG >= 2
Wang Yufen8db46f12014-03-28 12:07:02 +08001436 if (rt->dst.obsolete > 0) {
Ian Morris53b24b82015-03-29 14:00:05 +01001437 WARN_ON(fn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438 return -ENOENT;
1439 }
1440#endif
David S. Miller507c9b12011-12-03 17:50:45 -05001441 if (!fn || rt == net->ipv6.ip6_null_entry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442 return -ENOENT;
1443
Ilpo Järvinen547b7922008-07-25 21:43:18 -07001444 WARN_ON(!(fn->fn_flags & RTN_RTINFO));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445
David S. Miller507c9b12011-12-03 17:50:45 -05001446 if (!(rt->rt6i_flags & RTF_CACHE)) {
YOSHIFUJI Hideaki150730d2006-08-23 17:22:55 -07001447 struct fib6_node *pn = fn;
1448#ifdef CONFIG_IPV6_SUBTREES
1449 /* clones of this route might be in another subtree */
1450 if (rt->rt6i_src.plen) {
David S. Miller507c9b12011-12-03 17:50:45 -05001451 while (!(pn->fn_flags & RTN_ROOT))
YOSHIFUJI Hideaki150730d2006-08-23 17:22:55 -07001452 pn = pn->parent;
1453 pn = pn->parent;
1454 }
1455#endif
Duan Jiong163cd4e2014-05-09 13:31:43 +08001456 fib6_prune_clones(info->nl_net, pn);
YOSHIFUJI Hideaki150730d2006-08-23 17:22:55 -07001457 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458
1459 /*
1460 * Walk the leaf entries looking for ourself
1461 */
1462
Changli Gaod8d1f302010-06-10 23:31:35 -07001463 for (rtp = &fn->leaf; *rtp; rtp = &(*rtp)->dst.rt6_next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464 if (*rtp == rt) {
Thomas Graf86872cb2006-08-22 00:01:08 -07001465 fib6_del_route(fn, rtp, info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466 return 0;
1467 }
1468 }
1469 return -ENOENT;
1470}
1471
1472/*
1473 * Tree traversal function.
1474 *
1475 * Certainly, it is not interrupt safe.
1476 * However, it is internally reenterable wrt itself and fib6_add/fib6_del.
1477 * It means, that we can modify tree during walking
1478 * and use this function for garbage collection, clone pruning,
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001479 * cleaning tree when a device goes down etc. etc.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480 *
1481 * It guarantees that every node will be traversed,
1482 * and that it will be traversed only once.
1483 *
1484 * Callback function w->func may return:
1485 * 0 -> continue walking.
1486 * positive value -> walking is suspended (used by tree dumps,
1487 * and probably by gc, if it will be split to several slices)
1488 * negative value -> terminate walking.
1489 *
1490 * The function itself returns:
1491 * 0 -> walk is complete.
1492 * >0 -> walk is incomplete (i.e. suspended)
1493 * <0 -> walk is terminated by an error.
1494 */
1495
Hannes Frederic Sowa94b2cfe2014-10-06 19:58:34 +02001496static int fib6_walk_continue(struct fib6_walker *w)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497{
1498 struct fib6_node *fn, *pn;
1499
1500 for (;;) {
1501 fn = w->node;
David S. Miller507c9b12011-12-03 17:50:45 -05001502 if (!fn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503 return 0;
1504
1505 if (w->prune && fn != w->root &&
David S. Miller507c9b12011-12-03 17:50:45 -05001506 fn->fn_flags & RTN_RTINFO && w->state < FWS_C) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507 w->state = FWS_C;
1508 w->leaf = fn->leaf;
1509 }
1510 switch (w->state) {
1511#ifdef CONFIG_IPV6_SUBTREES
1512 case FWS_S:
YOSHIFUJI Hideaki7fc33162006-08-23 17:22:24 -07001513 if (FIB6_SUBTREE(fn)) {
1514 w->node = FIB6_SUBTREE(fn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515 continue;
1516 }
1517 w->state = FWS_L;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001518#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519 case FWS_L:
1520 if (fn->left) {
1521 w->node = fn->left;
1522 w->state = FWS_INIT;
1523 continue;
1524 }
1525 w->state = FWS_R;
1526 case FWS_R:
1527 if (fn->right) {
1528 w->node = fn->right;
1529 w->state = FWS_INIT;
1530 continue;
1531 }
1532 w->state = FWS_C;
1533 w->leaf = fn->leaf;
1534 case FWS_C:
David S. Miller507c9b12011-12-03 17:50:45 -05001535 if (w->leaf && fn->fn_flags & RTN_RTINFO) {
Patrick McHardy2bec5a32010-02-08 05:19:03 +00001536 int err;
1537
Eric Dumazetfa809e22012-06-25 15:37:19 -07001538 if (w->skip) {
1539 w->skip--;
Kumar Sundararajan1c265852014-04-24 09:48:53 -04001540 goto skip;
Patrick McHardy2bec5a32010-02-08 05:19:03 +00001541 }
1542
1543 err = w->func(w);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544 if (err)
1545 return err;
Patrick McHardy2bec5a32010-02-08 05:19:03 +00001546
1547 w->count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548 continue;
1549 }
Kumar Sundararajan1c265852014-04-24 09:48:53 -04001550skip:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551 w->state = FWS_U;
1552 case FWS_U:
1553 if (fn == w->root)
1554 return 0;
1555 pn = fn->parent;
1556 w->node = pn;
1557#ifdef CONFIG_IPV6_SUBTREES
YOSHIFUJI Hideaki7fc33162006-08-23 17:22:24 -07001558 if (FIB6_SUBTREE(pn) == fn) {
Ilpo Järvinen547b7922008-07-25 21:43:18 -07001559 WARN_ON(!(fn->fn_flags & RTN_ROOT));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560 w->state = FWS_L;
1561 continue;
1562 }
1563#endif
1564 if (pn->left == fn) {
1565 w->state = FWS_R;
1566 continue;
1567 }
1568 if (pn->right == fn) {
1569 w->state = FWS_C;
1570 w->leaf = w->node->leaf;
1571 continue;
1572 }
1573#if RT6_DEBUG >= 2
Ilpo Järvinen547b7922008-07-25 21:43:18 -07001574 WARN_ON(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575#endif
1576 }
1577 }
1578}
1579
Hannes Frederic Sowa94b2cfe2014-10-06 19:58:34 +02001580static int fib6_walk(struct fib6_walker *w)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581{
1582 int res;
1583
1584 w->state = FWS_INIT;
1585 w->node = w->root;
1586
1587 fib6_walker_link(w);
1588 res = fib6_walk_continue(w);
1589 if (res <= 0)
1590 fib6_walker_unlink(w);
1591 return res;
1592}
1593
Hannes Frederic Sowa94b2cfe2014-10-06 19:58:34 +02001594static int fib6_clean_node(struct fib6_walker *w)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595{
1596 int res;
1597 struct rt6_info *rt;
Hannes Frederic Sowa94b2cfe2014-10-06 19:58:34 +02001598 struct fib6_cleaner *c = container_of(w, struct fib6_cleaner, w);
Benjamin Theryec7d43c2008-03-03 23:31:57 -08001599 struct nl_info info = {
1600 .nl_net = c->net,
1601 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602
Hannes Frederic Sowa327571c2014-10-06 19:58:38 +02001603 if (c->sernum != FIB6_NO_SERNUM_CHANGE &&
1604 w->node->fn_sernum != c->sernum)
1605 w->node->fn_sernum = c->sernum;
1606
1607 if (!c->func) {
1608 WARN_ON_ONCE(c->sernum == FIB6_NO_SERNUM_CHANGE);
1609 w->leaf = NULL;
1610 return 0;
1611 }
1612
Changli Gaod8d1f302010-06-10 23:31:35 -07001613 for (rt = w->leaf; rt; rt = rt->dst.rt6_next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614 res = c->func(rt, c->arg);
1615 if (res < 0) {
1616 w->leaf = rt;
Denis V. Lunev528c4ce2007-12-13 09:45:12 -08001617 res = fib6_del(rt, &info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618 if (res) {
1619#if RT6_DEBUG >= 2
Joe Perches91df42b2012-05-15 14:11:54 +00001620 pr_debug("%s: del failed: rt=%p@%p err=%d\n",
1621 __func__, rt, rt->rt6i_node, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622#endif
1623 continue;
1624 }
1625 return 0;
1626 }
Ilpo Järvinen547b7922008-07-25 21:43:18 -07001627 WARN_ON(res != 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628 }
1629 w->leaf = rt;
1630 return 0;
1631}
1632
1633/*
1634 * Convenient frontend to tree walker.
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001635 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636 * func is called on each route.
1637 * It may return -1 -> delete this route.
1638 * 0 -> continue walking
1639 *
1640 * prune==1 -> only immediate children of node (certainly,
1641 * ignoring pure split nodes) will be scanned.
1642 */
1643
Benjamin Theryec7d43c2008-03-03 23:31:57 -08001644static void fib6_clean_tree(struct net *net, struct fib6_node *root,
Adrian Bunk8ce11e62006-08-07 21:50:48 -07001645 int (*func)(struct rt6_info *, void *arg),
Hannes Frederic Sowa327571c2014-10-06 19:58:38 +02001646 bool prune, int sernum, void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647{
Hannes Frederic Sowa94b2cfe2014-10-06 19:58:34 +02001648 struct fib6_cleaner c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649
1650 c.w.root = root;
1651 c.w.func = fib6_clean_node;
1652 c.w.prune = prune;
Patrick McHardy2bec5a32010-02-08 05:19:03 +00001653 c.w.count = 0;
1654 c.w.skip = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655 c.func = func;
Hannes Frederic Sowa327571c2014-10-06 19:58:38 +02001656 c.sernum = sernum;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657 c.arg = arg;
Benjamin Theryec7d43c2008-03-03 23:31:57 -08001658 c.net = net;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659
1660 fib6_walk(&c.w);
1661}
1662
Hannes Frederic Sowa327571c2014-10-06 19:58:38 +02001663static void __fib6_clean_all(struct net *net,
1664 int (*func)(struct rt6_info *, void *),
1665 int sernum, void *arg)
Thomas Grafc71099a2006-08-04 23:20:06 -07001666{
Thomas Grafc71099a2006-08-04 23:20:06 -07001667 struct fib6_table *table;
Daniel Lezcano58f09b72008-03-03 23:25:27 -08001668 struct hlist_head *head;
Patrick McHardy1b43af52006-08-10 23:11:17 -07001669 unsigned int h;
Thomas Grafc71099a2006-08-04 23:20:06 -07001670
Patrick McHardy1b43af52006-08-10 23:11:17 -07001671 rcu_read_lock();
Neil Hormana33bc5c2009-07-30 18:52:15 -07001672 for (h = 0; h < FIB6_TABLE_HASHSZ; h++) {
Daniel Lezcanof3db4852008-03-03 23:27:06 -08001673 head = &net->ipv6.fib_table_hash[h];
Sasha Levinb67bfe02013-02-27 17:06:00 -08001674 hlist_for_each_entry_rcu(table, head, tb6_hlist) {
Thomas Grafc71099a2006-08-04 23:20:06 -07001675 write_lock_bh(&table->tb6_lock);
Benjamin Theryec7d43c2008-03-03 23:31:57 -08001676 fib6_clean_tree(net, &table->tb6_root,
Hannes Frederic Sowa327571c2014-10-06 19:58:38 +02001677 func, false, sernum, arg);
Thomas Grafc71099a2006-08-04 23:20:06 -07001678 write_unlock_bh(&table->tb6_lock);
1679 }
1680 }
Patrick McHardy1b43af52006-08-10 23:11:17 -07001681 rcu_read_unlock();
Thomas Grafc71099a2006-08-04 23:20:06 -07001682}
1683
Hannes Frederic Sowa327571c2014-10-06 19:58:38 +02001684void fib6_clean_all(struct net *net, int (*func)(struct rt6_info *, void *),
1685 void *arg)
1686{
1687 __fib6_clean_all(net, func, FIB6_NO_SERNUM_CHANGE, arg);
1688}
1689
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690static int fib6_prune_clone(struct rt6_info *rt, void *arg)
1691{
1692 if (rt->rt6i_flags & RTF_CACHE) {
1693 RT6_TRACE("pruning clone %p\n", rt);
1694 return -1;
1695 }
1696
1697 return 0;
1698}
1699
Duan Jiong163cd4e2014-05-09 13:31:43 +08001700static void fib6_prune_clones(struct net *net, struct fib6_node *fn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701{
Hannes Frederic Sowa327571c2014-10-06 19:58:38 +02001702 fib6_clean_tree(net, fn, fib6_prune_clone, true,
1703 FIB6_NO_SERNUM_CHANGE, NULL);
Hannes Frederic Sowa705f1c82014-09-28 00:46:06 +02001704}
1705
1706static void fib6_flush_trees(struct net *net)
1707{
Hannes Frederic Sowa812918c2014-10-06 19:58:37 +02001708 int new_sernum = fib6_new_sernum(net);
Hannes Frederic Sowa705f1c82014-09-28 00:46:06 +02001709
Hannes Frederic Sowa327571c2014-10-06 19:58:38 +02001710 __fib6_clean_all(net, NULL, new_sernum, NULL);
Hannes Frederic Sowa705f1c82014-09-28 00:46:06 +02001711}
1712
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713/*
1714 * Garbage collection
1715 */
1716
1717static struct fib6_gc_args
1718{
1719 int timeout;
1720 int more;
1721} gc_args;
1722
1723static int fib6_age(struct rt6_info *rt, void *arg)
1724{
1725 unsigned long now = jiffies;
1726
1727 /*
1728 * check addrconf expiration here.
1729 * Routes are expired even if they are in use.
1730 *
1731 * Also age clones. Note, that clones are aged out
1732 * only if they are not in use now.
1733 */
1734
David S. Millerd1918542011-12-28 20:19:20 -05001735 if (rt->rt6i_flags & RTF_EXPIRES && rt->dst.expires) {
1736 if (time_after(now, rt->dst.expires)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737 RT6_TRACE("expiring %p\n", rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738 return -1;
1739 }
1740 gc_args.more++;
1741 } else if (rt->rt6i_flags & RTF_CACHE) {
Changli Gaod8d1f302010-06-10 23:31:35 -07001742 if (atomic_read(&rt->dst.__refcnt) == 0 &&
1743 time_after_eq(now, rt->dst.lastuse + gc_args.timeout)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744 RT6_TRACE("aging clone %p\n", rt);
1745 return -1;
David S. Miller5339ab82012-01-27 15:14:01 -08001746 } else if (rt->rt6i_flags & RTF_GATEWAY) {
1747 struct neighbour *neigh;
1748 __u8 neigh_flags = 0;
1749
1750 neigh = dst_neigh_lookup(&rt->dst, &rt->rt6i_gateway);
1751 if (neigh) {
1752 neigh_flags = neigh->flags;
1753 neigh_release(neigh);
1754 }
Thomas Graf8bd74512012-06-07 06:51:04 +00001755 if (!(neigh_flags & NTF_ROUTER)) {
David S. Miller5339ab82012-01-27 15:14:01 -08001756 RT6_TRACE("purging route %p via non-router but gateway\n",
1757 rt);
1758 return -1;
1759 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760 }
1761 gc_args.more++;
1762 }
1763
1764 return 0;
1765}
1766
1767static DEFINE_SPINLOCK(fib6_gc_lock);
1768
Michal Kubeček2ac3ac82013-08-01 10:04:14 +02001769void fib6_run_gc(unsigned long expires, struct net *net, bool force)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770{
Michal Kubeček49a18d82013-08-01 10:04:24 +02001771 unsigned long now;
1772
Michal Kubeček2ac3ac82013-08-01 10:04:14 +02001773 if (force) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774 spin_lock_bh(&fib6_gc_lock);
Michal Kubeček2ac3ac82013-08-01 10:04:14 +02001775 } else if (!spin_trylock_bh(&fib6_gc_lock)) {
1776 mod_timer(&net->ipv6.ip6_fib_timer, jiffies + HZ);
1777 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778 }
Michal Kubeček2ac3ac82013-08-01 10:04:14 +02001779 gc_args.timeout = expires ? (int)expires :
1780 net->ipv6.sysctl.ip6_rt_gc_interval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781
Stephen Hemminger3d0f24a2008-07-22 14:35:50 -07001782 gc_args.more = icmp6_dst_gc();
Daniel Lezcanof3db4852008-03-03 23:27:06 -08001783
Li RongQing0c3584d2013-12-27 16:32:38 +08001784 fib6_clean_all(net, fib6_age, NULL);
Michal Kubeček49a18d82013-08-01 10:04:24 +02001785 now = jiffies;
1786 net->ipv6.ip6_rt_last_gc = now;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787
1788 if (gc_args.more)
Stephen Hemmingerc8a45222008-07-22 14:34:09 -07001789 mod_timer(&net->ipv6.ip6_fib_timer,
Michal Kubeček49a18d82013-08-01 10:04:24 +02001790 round_jiffies(now
Stephen Hemmingerc8a45222008-07-22 14:34:09 -07001791 + net->ipv6.sysctl.ip6_rt_gc_interval));
Stephen Hemminger417f28b2008-07-22 14:33:45 -07001792 else
1793 del_timer(&net->ipv6.ip6_fib_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794 spin_unlock_bh(&fib6_gc_lock);
1795}
1796
Daniel Lezcano5b7c9312008-03-03 23:28:58 -08001797static void fib6_gc_timer_cb(unsigned long arg)
1798{
Michal Kubeček2ac3ac82013-08-01 10:04:14 +02001799 fib6_run_gc(0, (struct net *)arg, true);
Daniel Lezcano5b7c9312008-03-03 23:28:58 -08001800}
1801
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00001802static int __net_init fib6_net_init(struct net *net)
Daniel Lezcano58f09b72008-03-03 23:25:27 -08001803{
Eric Dumazet10da66f2010-10-13 08:22:03 +00001804 size_t size = sizeof(struct hlist_head) * FIB6_TABLE_HASHSZ;
1805
Stephen Hemminger417f28b2008-07-22 14:33:45 -07001806 setup_timer(&net->ipv6.ip6_fib_timer, fib6_gc_timer_cb, (unsigned long)net);
Daniel Lezcano63152fc2008-03-03 23:31:11 -08001807
Benjamin Theryc5728722008-03-03 23:34:17 -08001808 net->ipv6.rt6_stats = kzalloc(sizeof(*net->ipv6.rt6_stats), GFP_KERNEL);
1809 if (!net->ipv6.rt6_stats)
1810 goto out_timer;
1811
Eric Dumazet10da66f2010-10-13 08:22:03 +00001812 /* Avoid false sharing : Use at least a full cache line */
1813 size = max_t(size_t, size, L1_CACHE_BYTES);
1814
1815 net->ipv6.fib_table_hash = kzalloc(size, GFP_KERNEL);
Daniel Lezcano58f09b72008-03-03 23:25:27 -08001816 if (!net->ipv6.fib_table_hash)
Benjamin Theryc5728722008-03-03 23:34:17 -08001817 goto out_rt6_stats;
Daniel Lezcano58f09b72008-03-03 23:25:27 -08001818
1819 net->ipv6.fib6_main_tbl = kzalloc(sizeof(*net->ipv6.fib6_main_tbl),
1820 GFP_KERNEL);
1821 if (!net->ipv6.fib6_main_tbl)
1822 goto out_fib_table_hash;
1823
1824 net->ipv6.fib6_main_tbl->tb6_id = RT6_TABLE_MAIN;
Daniel Lezcano8ed67782008-03-04 13:48:30 -08001825 net->ipv6.fib6_main_tbl->tb6_root.leaf = net->ipv6.ip6_null_entry;
Daniel Lezcano58f09b72008-03-03 23:25:27 -08001826 net->ipv6.fib6_main_tbl->tb6_root.fn_flags =
1827 RTN_ROOT | RTN_TL_ROOT | RTN_RTINFO;
David S. Miller8e773272012-06-11 00:01:52 -07001828 inet_peer_base_init(&net->ipv6.fib6_main_tbl->tb6_peers);
Daniel Lezcano58f09b72008-03-03 23:25:27 -08001829
1830#ifdef CONFIG_IPV6_MULTIPLE_TABLES
1831 net->ipv6.fib6_local_tbl = kzalloc(sizeof(*net->ipv6.fib6_local_tbl),
1832 GFP_KERNEL);
1833 if (!net->ipv6.fib6_local_tbl)
1834 goto out_fib6_main_tbl;
1835 net->ipv6.fib6_local_tbl->tb6_id = RT6_TABLE_LOCAL;
Daniel Lezcano8ed67782008-03-04 13:48:30 -08001836 net->ipv6.fib6_local_tbl->tb6_root.leaf = net->ipv6.ip6_null_entry;
Daniel Lezcano58f09b72008-03-03 23:25:27 -08001837 net->ipv6.fib6_local_tbl->tb6_root.fn_flags =
1838 RTN_ROOT | RTN_TL_ROOT | RTN_RTINFO;
David S. Miller8e773272012-06-11 00:01:52 -07001839 inet_peer_base_init(&net->ipv6.fib6_local_tbl->tb6_peers);
Daniel Lezcano58f09b72008-03-03 23:25:27 -08001840#endif
1841 fib6_tables_init(net);
1842
Stephen Hemminger417f28b2008-07-22 14:33:45 -07001843 return 0;
Daniel Lezcano58f09b72008-03-03 23:25:27 -08001844
1845#ifdef CONFIG_IPV6_MULTIPLE_TABLES
1846out_fib6_main_tbl:
1847 kfree(net->ipv6.fib6_main_tbl);
1848#endif
1849out_fib_table_hash:
1850 kfree(net->ipv6.fib_table_hash);
Benjamin Theryc5728722008-03-03 23:34:17 -08001851out_rt6_stats:
1852 kfree(net->ipv6.rt6_stats);
Daniel Lezcano63152fc2008-03-03 23:31:11 -08001853out_timer:
Stephen Hemminger417f28b2008-07-22 14:33:45 -07001854 return -ENOMEM;
Wang Yufen8db46f12014-03-28 12:07:02 +08001855}
Daniel Lezcano58f09b72008-03-03 23:25:27 -08001856
1857static void fib6_net_exit(struct net *net)
1858{
Daniel Lezcano8ed67782008-03-04 13:48:30 -08001859 rt6_ifdown(net, NULL);
Stephen Hemminger417f28b2008-07-22 14:33:45 -07001860 del_timer_sync(&net->ipv6.ip6_fib_timer);
1861
Daniel Lezcano58f09b72008-03-03 23:25:27 -08001862#ifdef CONFIG_IPV6_MULTIPLE_TABLES
David S. Miller8e773272012-06-11 00:01:52 -07001863 inetpeer_invalidate_tree(&net->ipv6.fib6_local_tbl->tb6_peers);
Daniel Lezcano58f09b72008-03-03 23:25:27 -08001864 kfree(net->ipv6.fib6_local_tbl);
1865#endif
David S. Miller8e773272012-06-11 00:01:52 -07001866 inetpeer_invalidate_tree(&net->ipv6.fib6_main_tbl->tb6_peers);
Daniel Lezcano58f09b72008-03-03 23:25:27 -08001867 kfree(net->ipv6.fib6_main_tbl);
1868 kfree(net->ipv6.fib_table_hash);
Benjamin Theryc5728722008-03-03 23:34:17 -08001869 kfree(net->ipv6.rt6_stats);
Daniel Lezcano58f09b72008-03-03 23:25:27 -08001870}
1871
1872static struct pernet_operations fib6_net_ops = {
1873 .init = fib6_net_init,
1874 .exit = fib6_net_exit,
1875};
1876
Daniel Lezcanod63bddb2007-12-07 00:40:34 -08001877int __init fib6_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001878{
Daniel Lezcanoe0b855902008-03-03 23:24:31 -08001879 int ret = -ENOMEM;
Daniel Lezcano63152fc2008-03-03 23:31:11 -08001880
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881 fib6_node_kmem = kmem_cache_create("fib6_nodes",
1882 sizeof(struct fib6_node),
Daniel Lezcanof845ab62007-12-07 00:45:16 -08001883 0, SLAB_HWCACHE_ALIGN,
Paul Mundt20c2df82007-07-20 10:11:58 +09001884 NULL);
Daniel Lezcanof845ab62007-12-07 00:45:16 -08001885 if (!fib6_node_kmem)
Daniel Lezcanoe0b855902008-03-03 23:24:31 -08001886 goto out;
1887
Daniel Lezcano58f09b72008-03-03 23:25:27 -08001888 ret = register_pernet_subsys(&fib6_net_ops);
1889 if (ret)
Benjamin Theryc5728722008-03-03 23:34:17 -08001890 goto out_kmem_cache_create;
David S. Millere8803b62012-06-16 01:12:19 -07001891
1892 ret = __rtnl_register(PF_INET6, RTM_GETROUTE, NULL, inet6_dump_fib,
1893 NULL);
1894 if (ret)
1895 goto out_unregister_subsys;
Hannes Frederic Sowa705f1c82014-09-28 00:46:06 +02001896
1897 __fib6_flush_trees = fib6_flush_trees;
Daniel Lezcanod63bddb2007-12-07 00:40:34 -08001898out:
1899 return ret;
1900
David S. Millere8803b62012-06-16 01:12:19 -07001901out_unregister_subsys:
1902 unregister_pernet_subsys(&fib6_net_ops);
Daniel Lezcanod63bddb2007-12-07 00:40:34 -08001903out_kmem_cache_create:
1904 kmem_cache_destroy(fib6_node_kmem);
1905 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001906}
1907
1908void fib6_gc_cleanup(void)
1909{
Daniel Lezcano58f09b72008-03-03 23:25:27 -08001910 unregister_pernet_subsys(&fib6_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911 kmem_cache_destroy(fib6_node_kmem);
1912}
Hannes Frederic Sowa8d2ca1d2013-09-21 16:55:59 +02001913
1914#ifdef CONFIG_PROC_FS
1915
1916struct ipv6_route_iter {
1917 struct seq_net_private p;
Hannes Frederic Sowa94b2cfe2014-10-06 19:58:34 +02001918 struct fib6_walker w;
Hannes Frederic Sowa8d2ca1d2013-09-21 16:55:59 +02001919 loff_t skip;
1920 struct fib6_table *tbl;
Hannes Frederic Sowa42b18702014-10-06 19:58:35 +02001921 int sernum;
Hannes Frederic Sowa8d2ca1d2013-09-21 16:55:59 +02001922};
1923
1924static int ipv6_route_seq_show(struct seq_file *seq, void *v)
1925{
1926 struct rt6_info *rt = v;
1927 struct ipv6_route_iter *iter = seq->private;
1928
1929 seq_printf(seq, "%pi6 %02x ", &rt->rt6i_dst.addr, rt->rt6i_dst.plen);
1930
1931#ifdef CONFIG_IPV6_SUBTREES
1932 seq_printf(seq, "%pi6 %02x ", &rt->rt6i_src.addr, rt->rt6i_src.plen);
1933#else
1934 seq_puts(seq, "00000000000000000000000000000000 00 ");
1935#endif
1936 if (rt->rt6i_flags & RTF_GATEWAY)
1937 seq_printf(seq, "%pi6", &rt->rt6i_gateway);
1938 else
1939 seq_puts(seq, "00000000000000000000000000000000");
1940
1941 seq_printf(seq, " %08x %08x %08x %08x %8s\n",
1942 rt->rt6i_metric, atomic_read(&rt->dst.__refcnt),
1943 rt->dst.__use, rt->rt6i_flags,
1944 rt->dst.dev ? rt->dst.dev->name : "");
1945 iter->w.leaf = NULL;
1946 return 0;
1947}
1948
Hannes Frederic Sowa94b2cfe2014-10-06 19:58:34 +02001949static int ipv6_route_yield(struct fib6_walker *w)
Hannes Frederic Sowa8d2ca1d2013-09-21 16:55:59 +02001950{
1951 struct ipv6_route_iter *iter = w->args;
1952
1953 if (!iter->skip)
1954 return 1;
1955
1956 do {
1957 iter->w.leaf = iter->w.leaf->dst.rt6_next;
1958 iter->skip--;
1959 if (!iter->skip && iter->w.leaf)
1960 return 1;
1961 } while (iter->w.leaf);
1962
1963 return 0;
1964}
1965
1966static void ipv6_route_seq_setup_walk(struct ipv6_route_iter *iter)
1967{
1968 memset(&iter->w, 0, sizeof(iter->w));
1969 iter->w.func = ipv6_route_yield;
1970 iter->w.root = &iter->tbl->tb6_root;
1971 iter->w.state = FWS_INIT;
1972 iter->w.node = iter->w.root;
1973 iter->w.args = iter;
Hannes Frederic Sowa0a67d3e2013-09-21 16:56:10 +02001974 iter->sernum = iter->w.root->fn_sernum;
Hannes Frederic Sowa8d2ca1d2013-09-21 16:55:59 +02001975 INIT_LIST_HEAD(&iter->w.lh);
1976 fib6_walker_link(&iter->w);
1977}
1978
1979static struct fib6_table *ipv6_route_seq_next_table(struct fib6_table *tbl,
1980 struct net *net)
1981{
1982 unsigned int h;
1983 struct hlist_node *node;
1984
1985 if (tbl) {
1986 h = (tbl->tb6_id & (FIB6_TABLE_HASHSZ - 1)) + 1;
1987 node = rcu_dereference_bh(hlist_next_rcu(&tbl->tb6_hlist));
1988 } else {
1989 h = 0;
1990 node = NULL;
1991 }
1992
1993 while (!node && h < FIB6_TABLE_HASHSZ) {
1994 node = rcu_dereference_bh(
1995 hlist_first_rcu(&net->ipv6.fib_table_hash[h++]));
1996 }
1997 return hlist_entry_safe(node, struct fib6_table, tb6_hlist);
1998}
1999
Hannes Frederic Sowa0a67d3e2013-09-21 16:56:10 +02002000static void ipv6_route_check_sernum(struct ipv6_route_iter *iter)
2001{
2002 if (iter->sernum != iter->w.root->fn_sernum) {
2003 iter->sernum = iter->w.root->fn_sernum;
2004 iter->w.state = FWS_INIT;
2005 iter->w.node = iter->w.root;
2006 WARN_ON(iter->w.skip);
2007 iter->w.skip = iter->w.count;
2008 }
2009}
2010
Hannes Frederic Sowa8d2ca1d2013-09-21 16:55:59 +02002011static void *ipv6_route_seq_next(struct seq_file *seq, void *v, loff_t *pos)
2012{
2013 int r;
2014 struct rt6_info *n;
2015 struct net *net = seq_file_net(seq);
2016 struct ipv6_route_iter *iter = seq->private;
2017
2018 if (!v)
2019 goto iter_table;
2020
2021 n = ((struct rt6_info *)v)->dst.rt6_next;
2022 if (n) {
2023 ++*pos;
2024 return n;
2025 }
2026
2027iter_table:
Hannes Frederic Sowa0a67d3e2013-09-21 16:56:10 +02002028 ipv6_route_check_sernum(iter);
Hannes Frederic Sowa8d2ca1d2013-09-21 16:55:59 +02002029 read_lock(&iter->tbl->tb6_lock);
2030 r = fib6_walk_continue(&iter->w);
2031 read_unlock(&iter->tbl->tb6_lock);
2032 if (r > 0) {
2033 if (v)
2034 ++*pos;
2035 return iter->w.leaf;
2036 } else if (r < 0) {
2037 fib6_walker_unlink(&iter->w);
2038 return NULL;
2039 }
2040 fib6_walker_unlink(&iter->w);
2041
2042 iter->tbl = ipv6_route_seq_next_table(iter->tbl, net);
2043 if (!iter->tbl)
2044 return NULL;
2045
2046 ipv6_route_seq_setup_walk(iter);
2047 goto iter_table;
2048}
2049
2050static void *ipv6_route_seq_start(struct seq_file *seq, loff_t *pos)
2051 __acquires(RCU_BH)
2052{
2053 struct net *net = seq_file_net(seq);
2054 struct ipv6_route_iter *iter = seq->private;
2055
2056 rcu_read_lock_bh();
2057 iter->tbl = ipv6_route_seq_next_table(NULL, net);
2058 iter->skip = *pos;
2059
2060 if (iter->tbl) {
2061 ipv6_route_seq_setup_walk(iter);
2062 return ipv6_route_seq_next(seq, NULL, pos);
2063 } else {
2064 return NULL;
2065 }
2066}
2067
2068static bool ipv6_route_iter_active(struct ipv6_route_iter *iter)
2069{
Hannes Frederic Sowa94b2cfe2014-10-06 19:58:34 +02002070 struct fib6_walker *w = &iter->w;
Hannes Frederic Sowa8d2ca1d2013-09-21 16:55:59 +02002071 return w->node && !(w->state == FWS_U && w->node == w->root);
2072}
2073
2074static void ipv6_route_seq_stop(struct seq_file *seq, void *v)
2075 __releases(RCU_BH)
2076{
2077 struct ipv6_route_iter *iter = seq->private;
2078
2079 if (ipv6_route_iter_active(iter))
2080 fib6_walker_unlink(&iter->w);
2081
2082 rcu_read_unlock_bh();
2083}
2084
2085static const struct seq_operations ipv6_route_seq_ops = {
2086 .start = ipv6_route_seq_start,
2087 .next = ipv6_route_seq_next,
2088 .stop = ipv6_route_seq_stop,
2089 .show = ipv6_route_seq_show
2090};
2091
2092int ipv6_route_open(struct inode *inode, struct file *file)
2093{
2094 return seq_open_net(inode, file, &ipv6_route_seq_ops,
2095 sizeof(struct ipv6_route_iter));
2096}
2097
2098#endif /* CONFIG_PROC_FS */