blob: ef548520452253dd5a39f6c24388b8fa1ddaa580 [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
Linus Torvalds1da177e2005-04-16 15:20:36 -070058#ifdef CONFIG_IPV6_SUBTREES
59#define FWS_INIT FWS_S
Linus Torvalds1da177e2005-04-16 15:20:36 -070060#else
61#define FWS_INIT FWS_L
Linus Torvalds1da177e2005-04-16 15:20:36 -070062#endif
63
Duan Jiong163cd4e2014-05-09 13:31:43 +080064static void fib6_prune_clones(struct net *net, struct fib6_node *fn);
Daniel Lezcano8ed67782008-03-04 13:48:30 -080065static struct rt6_info *fib6_find_prefix(struct net *net, struct fib6_node *fn);
66static struct fib6_node *fib6_repair_tree(struct net *net, struct fib6_node *fn);
Michal Kubeček9a03cd82016-03-08 14:44:35 +010067static int fib6_walk(struct net *net, struct fib6_walker *w);
Hannes Frederic Sowa94b2cfe2014-10-06 19:58:34 +020068static int fib6_walk_continue(struct fib6_walker *w);
Linus Torvalds1da177e2005-04-16 15:20:36 -070069
70/*
71 * A routing update causes an increase of the serial number on the
72 * affected subtree. This allows for cached routes to be asynchronously
73 * tested when modifications are made to the destination cache as a
74 * result of redirects, path MTU changes, etc.
75 */
76
Daniel Lezcano5b7c9312008-03-03 23:28:58 -080077static void fib6_gc_timer_cb(unsigned long arg);
78
Michal Kubeček9a03cd82016-03-08 14:44:35 +010079#define FOR_WALKERS(net, w) \
80 list_for_each_entry(w, &(net)->ipv6.fib6_walkers, lh)
Linus Torvalds1da177e2005-04-16 15:20:36 -070081
Michal Kubeček9a03cd82016-03-08 14:44:35 +010082static void fib6_walker_link(struct net *net, struct fib6_walker *w)
Adrian Bunk90d41122006-08-14 23:49:16 -070083{
Michal Kubeček9a03cd82016-03-08 14:44:35 +010084 write_lock_bh(&net->ipv6.fib6_walker_lock);
85 list_add(&w->lh, &net->ipv6.fib6_walkers);
86 write_unlock_bh(&net->ipv6.fib6_walker_lock);
Adrian Bunk90d41122006-08-14 23:49:16 -070087}
88
Michal Kubeček9a03cd82016-03-08 14:44:35 +010089static void fib6_walker_unlink(struct net *net, struct fib6_walker *w)
Adrian Bunk90d41122006-08-14 23:49:16 -070090{
Michal Kubeček9a03cd82016-03-08 14:44:35 +010091 write_lock_bh(&net->ipv6.fib6_walker_lock);
Alexey Dobriyanbbef49d2010-02-18 08:13:30 +000092 list_del(&w->lh);
Michal Kubeček9a03cd82016-03-08 14:44:35 +010093 write_unlock_bh(&net->ipv6.fib6_walker_lock);
Adrian Bunk90d41122006-08-14 23:49:16 -070094}
Hannes Frederic Sowa94b2cfe2014-10-06 19:58:34 +020095
Hannes Frederic Sowa812918c2014-10-06 19:58:37 +020096static int fib6_new_sernum(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -070097{
Hannes Frederic Sowa42b18702014-10-06 19:58:35 +020098 int new, old;
99
100 do {
Hannes Frederic Sowa812918c2014-10-06 19:58:37 +0200101 old = atomic_read(&net->ipv6.fib6_sernum);
Hannes Frederic Sowa42b18702014-10-06 19:58:35 +0200102 new = old < INT_MAX ? old + 1 : 1;
Hannes Frederic Sowa812918c2014-10-06 19:58:37 +0200103 } while (atomic_cmpxchg(&net->ipv6.fib6_sernum,
104 old, new) != old);
Hannes Frederic Sowa42b18702014-10-06 19:58:35 +0200105 return new;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106}
107
Hannes Frederic Sowa327571c2014-10-06 19:58:38 +0200108enum {
109 FIB6_NO_SERNUM_CHANGE = 0,
110};
111
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112/*
113 * Auxiliary address test functions for the radix tree.
114 *
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900115 * These assume a 32bit processor (although it will work on
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 * 64bit processors)
117 */
118
119/*
120 * test bit
121 */
YOSHIFUJI Hideaki / 吉藤英明02cdce52010-03-27 01:24:16 +0000122#if defined(__LITTLE_ENDIAN)
123# define BITOP_BE32_SWIZZLE (0x1F & ~7)
124#else
125# define BITOP_BE32_SWIZZLE 0
126#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127
Hannes Frederic Sowa94b2cfe2014-10-06 19:58:34 +0200128static __be32 addr_bit_set(const void *token, int fn_bit)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129{
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000130 const __be32 *addr = token;
YOSHIFUJI Hideaki / 吉藤英明02cdce52010-03-27 01:24:16 +0000131 /*
132 * Here,
Wang Yufen8db46f12014-03-28 12:07:02 +0800133 * 1 << ((~fn_bit ^ BITOP_BE32_SWIZZLE) & 0x1f)
YOSHIFUJI Hideaki / 吉藤英明02cdce52010-03-27 01:24:16 +0000134 * is optimized version of
135 * htonl(1 << ((~fn_bit)&0x1F))
136 * See include/asm-generic/bitops/le.h.
137 */
Eric Dumazet0eae88f2010-04-20 19:06:52 -0700138 return (__force __be32)(1 << ((~fn_bit ^ BITOP_BE32_SWIZZLE) & 0x1f)) &
139 addr[fn_bit >> 5];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140}
141
Hannes Frederic Sowa94b2cfe2014-10-06 19:58:34 +0200142static struct fib6_node *node_alloc(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143{
144 struct fib6_node *fn;
145
Robert P. J. Dayc3762222007-02-10 01:45:03 -0800146 fn = kmem_cache_zalloc(fib6_node_kmem, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147
148 return fn;
149}
150
Hannes Frederic Sowa94b2cfe2014-10-06 19:58:34 +0200151static void node_free(struct fib6_node *fn)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152{
153 kmem_cache_free(fib6_node_kmem, fn);
154}
155
Martin KaFai Lau70da5b52015-09-15 14:30:09 -0700156static void rt6_rcu_free(struct rt6_info *rt)
157{
158 call_rcu(&rt->dst.rcu_head, dst_rcu_free);
159}
160
Martin KaFai Laud52d3992015-05-22 20:56:06 -0700161static void rt6_free_pcpu(struct rt6_info *non_pcpu_rt)
162{
163 int cpu;
164
165 if (!non_pcpu_rt->rt6i_pcpu)
166 return;
167
168 for_each_possible_cpu(cpu) {
169 struct rt6_info **ppcpu_rt;
170 struct rt6_info *pcpu_rt;
171
172 ppcpu_rt = per_cpu_ptr(non_pcpu_rt->rt6i_pcpu, cpu);
173 pcpu_rt = *ppcpu_rt;
174 if (pcpu_rt) {
Martin KaFai Lau70da5b52015-09-15 14:30:09 -0700175 rt6_rcu_free(pcpu_rt);
Martin KaFai Laud52d3992015-05-22 20:56:06 -0700176 *ppcpu_rt = NULL;
177 }
178 }
Martin KaFai Lau9c7370a2015-08-14 11:05:54 -0700179
Martin KaFai Lau903ce4a2016-07-05 12:10:23 -0700180 free_percpu(non_pcpu_rt->rt6i_pcpu);
Martin KaFai Lau9c7370a2015-08-14 11:05:54 -0700181 non_pcpu_rt->rt6i_pcpu = NULL;
Martin KaFai Laud52d3992015-05-22 20:56:06 -0700182}
183
Hannes Frederic Sowa94b2cfe2014-10-06 19:58:34 +0200184static void rt6_release(struct rt6_info *rt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185{
Martin KaFai Laud52d3992015-05-22 20:56:06 -0700186 if (atomic_dec_and_test(&rt->rt6i_ref)) {
187 rt6_free_pcpu(rt);
Martin KaFai Lau70da5b52015-09-15 14:30:09 -0700188 rt6_rcu_free(rt);
Martin KaFai Laud52d3992015-05-22 20:56:06 -0700189 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190}
191
Daniel Lezcano58f09b72008-03-03 23:25:27 -0800192static void fib6_link_table(struct net *net, struct fib6_table *tb)
Patrick McHardy1b43af52006-08-10 23:11:17 -0700193{
194 unsigned int h;
195
Thomas Graf375216a2006-10-21 20:20:54 -0700196 /*
197 * Initialize table lock at a single place to give lockdep a key,
198 * tables aren't visible prior to being linked to the list.
199 */
200 rwlock_init(&tb->tb6_lock);
201
Neil Hormana33bc5c2009-07-30 18:52:15 -0700202 h = tb->tb6_id & (FIB6_TABLE_HASHSZ - 1);
Patrick McHardy1b43af52006-08-10 23:11:17 -0700203
204 /*
205 * No protection necessary, this is the only list mutatation
206 * operation, tables never disappear once they exist.
207 */
Daniel Lezcano58f09b72008-03-03 23:25:27 -0800208 hlist_add_head_rcu(&tb->tb6_hlist, &net->ipv6.fib_table_hash[h]);
Patrick McHardy1b43af52006-08-10 23:11:17 -0700209}
210
211#ifdef CONFIG_IPV6_MULTIPLE_TABLES
Daniel Lezcanoe0b855902008-03-03 23:24:31 -0800212
Daniel Lezcano8ed67782008-03-04 13:48:30 -0800213static struct fib6_table *fib6_alloc_table(struct net *net, u32 id)
Thomas Grafc71099a2006-08-04 23:20:06 -0700214{
215 struct fib6_table *table;
216
217 table = kzalloc(sizeof(*table), GFP_ATOMIC);
David S. Miller507c9b12011-12-03 17:50:45 -0500218 if (table) {
Thomas Grafc71099a2006-08-04 23:20:06 -0700219 table->tb6_id = id;
Daniel Lezcano8ed67782008-03-04 13:48:30 -0800220 table->tb6_root.leaf = net->ipv6.ip6_null_entry;
Thomas Grafc71099a2006-08-04 23:20:06 -0700221 table->tb6_root.fn_flags = RTN_ROOT | RTN_TL_ROOT | RTN_RTINFO;
David S. Miller8e773272012-06-11 00:01:52 -0700222 inet_peer_base_init(&table->tb6_peers);
Thomas Grafc71099a2006-08-04 23:20:06 -0700223 }
224
225 return table;
226}
227
Daniel Lezcano58f09b72008-03-03 23:25:27 -0800228struct fib6_table *fib6_new_table(struct net *net, u32 id)
Thomas Grafc71099a2006-08-04 23:20:06 -0700229{
230 struct fib6_table *tb;
231
232 if (id == 0)
233 id = RT6_TABLE_MAIN;
Daniel Lezcano58f09b72008-03-03 23:25:27 -0800234 tb = fib6_get_table(net, id);
Thomas Grafc71099a2006-08-04 23:20:06 -0700235 if (tb)
236 return tb;
237
Daniel Lezcano8ed67782008-03-04 13:48:30 -0800238 tb = fib6_alloc_table(net, id);
David S. Miller507c9b12011-12-03 17:50:45 -0500239 if (tb)
Daniel Lezcano58f09b72008-03-03 23:25:27 -0800240 fib6_link_table(net, tb);
Thomas Grafc71099a2006-08-04 23:20:06 -0700241
242 return tb;
243}
David Ahernb3b46632016-05-04 21:46:12 -0700244EXPORT_SYMBOL_GPL(fib6_new_table);
Thomas Grafc71099a2006-08-04 23:20:06 -0700245
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}
David Ahernc4850682015-10-12 11:47:08 -0700267EXPORT_SYMBOL_GPL(fib6_get_table);
Thomas Grafc71099a2006-08-04 23:20:06 -0700268
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +0000269static void __net_init fib6_tables_init(struct net *net)
Thomas Grafc71099a2006-08-04 23:20:06 -0700270{
Daniel Lezcano58f09b72008-03-03 23:25:27 -0800271 fib6_link_table(net, net->ipv6.fib6_main_tbl);
272 fib6_link_table(net, net->ipv6.fib6_local_tbl);
Thomas Grafc71099a2006-08-04 23:20:06 -0700273}
Thomas Grafc71099a2006-08-04 23:20:06 -0700274#else
275
Daniel Lezcano58f09b72008-03-03 23:25:27 -0800276struct fib6_table *fib6_new_table(struct net *net, u32 id)
Thomas Grafc71099a2006-08-04 23:20:06 -0700277{
Daniel Lezcano58f09b72008-03-03 23:25:27 -0800278 return fib6_get_table(net, id);
Thomas Grafc71099a2006-08-04 23:20:06 -0700279}
280
Daniel Lezcano58f09b72008-03-03 23:25:27 -0800281struct fib6_table *fib6_get_table(struct net *net, u32 id)
Thomas Grafc71099a2006-08-04 23:20:06 -0700282{
Daniel Lezcano58f09b72008-03-03 23:25:27 -0800283 return net->ipv6.fib6_main_tbl;
Thomas Grafc71099a2006-08-04 23:20:06 -0700284}
285
David S. Miller4c9483b2011-03-12 16:22:43 -0500286struct dst_entry *fib6_rule_lookup(struct net *net, struct flowi6 *fl6,
Daniel Lezcano58f09b72008-03-03 23:25:27 -0800287 int flags, pol_lookup_t lookup)
Thomas Grafc71099a2006-08-04 23:20:06 -0700288{
lucienab997ad2015-10-23 15:36:53 +0800289 struct rt6_info *rt;
290
291 rt = lookup(net, net->ipv6.fib6_main_tbl, fl6, flags);
292 if (rt->rt6i_flags & RTF_REJECT &&
293 rt->dst.error == -EAGAIN) {
294 ip6_rt_put(rt);
295 rt = net->ipv6.ip6_null_entry;
296 dst_hold(&rt->dst);
297 }
298
299 return &rt->dst;
Thomas Grafc71099a2006-08-04 23:20:06 -0700300}
301
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +0000302static void __net_init fib6_tables_init(struct net *net)
Thomas Grafc71099a2006-08-04 23:20:06 -0700303{
Daniel Lezcano58f09b72008-03-03 23:25:27 -0800304 fib6_link_table(net, net->ipv6.fib6_main_tbl);
Thomas Grafc71099a2006-08-04 23:20:06 -0700305}
306
307#endif
308
Hannes Frederic Sowa94b2cfe2014-10-06 19:58:34 +0200309static int fib6_dump_node(struct fib6_walker *w)
Patrick McHardy1b43af52006-08-10 23:11:17 -0700310{
311 int res;
312 struct rt6_info *rt;
313
Changli Gaod8d1f302010-06-10 23:31:35 -0700314 for (rt = w->leaf; rt; rt = rt->dst.rt6_next) {
Patrick McHardy1b43af52006-08-10 23:11:17 -0700315 res = rt6_dump_route(rt, w->args);
316 if (res < 0) {
317 /* Frame is full, suspend walking */
318 w->leaf = rt;
319 return 1;
320 }
Patrick McHardy1b43af52006-08-10 23:11:17 -0700321 }
322 w->leaf = NULL;
323 return 0;
324}
325
326static void fib6_dump_end(struct netlink_callback *cb)
327{
Michal Kubeček9a03cd82016-03-08 14:44:35 +0100328 struct net *net = sock_net(cb->skb->sk);
Hannes Frederic Sowa94b2cfe2014-10-06 19:58:34 +0200329 struct fib6_walker *w = (void *)cb->args[2];
Patrick McHardy1b43af52006-08-10 23:11:17 -0700330
331 if (w) {
Herbert Xu7891cc82009-01-13 22:17:51 -0800332 if (cb->args[4]) {
333 cb->args[4] = 0;
Michal Kubeček9a03cd82016-03-08 14:44:35 +0100334 fib6_walker_unlink(net, w);
Herbert Xu7891cc82009-01-13 22:17:51 -0800335 }
Patrick McHardy1b43af52006-08-10 23:11:17 -0700336 cb->args[2] = 0;
337 kfree(w);
338 }
Wang Yufen437de072014-03-28 12:07:04 +0800339 cb->done = (void *)cb->args[3];
Patrick McHardy1b43af52006-08-10 23:11:17 -0700340 cb->args[1] = 3;
341}
342
343static int fib6_dump_done(struct netlink_callback *cb)
344{
345 fib6_dump_end(cb);
346 return cb->done ? cb->done(cb) : 0;
347}
348
349static int fib6_dump_table(struct fib6_table *table, struct sk_buff *skb,
350 struct netlink_callback *cb)
351{
Michal Kubeček9a03cd82016-03-08 14:44:35 +0100352 struct net *net = sock_net(skb->sk);
Hannes Frederic Sowa94b2cfe2014-10-06 19:58:34 +0200353 struct fib6_walker *w;
Patrick McHardy1b43af52006-08-10 23:11:17 -0700354 int res;
355
356 w = (void *)cb->args[2];
357 w->root = &table->tb6_root;
358
359 if (cb->args[4] == 0) {
Patrick McHardy2bec5a32010-02-08 05:19:03 +0000360 w->count = 0;
361 w->skip = 0;
362
Patrick McHardy1b43af52006-08-10 23:11:17 -0700363 read_lock_bh(&table->tb6_lock);
Michal Kubeček9a03cd82016-03-08 14:44:35 +0100364 res = fib6_walk(net, w);
Patrick McHardy1b43af52006-08-10 23:11:17 -0700365 read_unlock_bh(&table->tb6_lock);
Patrick McHardy2bec5a32010-02-08 05:19:03 +0000366 if (res > 0) {
Patrick McHardy1b43af52006-08-10 23:11:17 -0700367 cb->args[4] = 1;
Patrick McHardy2bec5a32010-02-08 05:19:03 +0000368 cb->args[5] = w->root->fn_sernum;
369 }
Patrick McHardy1b43af52006-08-10 23:11:17 -0700370 } else {
Patrick McHardy2bec5a32010-02-08 05:19:03 +0000371 if (cb->args[5] != w->root->fn_sernum) {
372 /* Begin at the root if the tree changed */
373 cb->args[5] = w->root->fn_sernum;
374 w->state = FWS_INIT;
375 w->node = w->root;
376 w->skip = w->count;
377 } else
378 w->skip = 0;
379
Patrick McHardy1b43af52006-08-10 23:11:17 -0700380 read_lock_bh(&table->tb6_lock);
381 res = fib6_walk_continue(w);
382 read_unlock_bh(&table->tb6_lock);
Herbert Xu7891cc82009-01-13 22:17:51 -0800383 if (res <= 0) {
Michal Kubeček9a03cd82016-03-08 14:44:35 +0100384 fib6_walker_unlink(net, w);
Herbert Xu7891cc82009-01-13 22:17:51 -0800385 cb->args[4] = 0;
Patrick McHardy1b43af52006-08-10 23:11:17 -0700386 }
Patrick McHardy1b43af52006-08-10 23:11:17 -0700387 }
Herbert Xu7891cc82009-01-13 22:17:51 -0800388
Patrick McHardy1b43af52006-08-10 23:11:17 -0700389 return res;
390}
391
Thomas Grafc127ea22007-03-22 11:58:32 -0700392static int inet6_dump_fib(struct sk_buff *skb, struct netlink_callback *cb)
Patrick McHardy1b43af52006-08-10 23:11:17 -0700393{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900394 struct net *net = sock_net(skb->sk);
Patrick McHardy1b43af52006-08-10 23:11:17 -0700395 unsigned int h, s_h;
396 unsigned int e = 0, s_e;
397 struct rt6_rtnl_dump_arg arg;
Hannes Frederic Sowa94b2cfe2014-10-06 19:58:34 +0200398 struct fib6_walker *w;
Patrick McHardy1b43af52006-08-10 23:11:17 -0700399 struct fib6_table *tb;
Daniel Lezcano58f09b72008-03-03 23:25:27 -0800400 struct hlist_head *head;
Patrick McHardy1b43af52006-08-10 23:11:17 -0700401 int res = 0;
402
403 s_h = cb->args[0];
404 s_e = cb->args[1];
405
406 w = (void *)cb->args[2];
David S. Miller507c9b12011-12-03 17:50:45 -0500407 if (!w) {
Patrick McHardy1b43af52006-08-10 23:11:17 -0700408 /* New dump:
409 *
410 * 1. hook callback destructor.
411 */
412 cb->args[3] = (long)cb->done;
413 cb->done = fib6_dump_done;
414
415 /*
416 * 2. allocate and initialize walker.
417 */
418 w = kzalloc(sizeof(*w), GFP_ATOMIC);
David S. Miller507c9b12011-12-03 17:50:45 -0500419 if (!w)
Patrick McHardy1b43af52006-08-10 23:11:17 -0700420 return -ENOMEM;
421 w->func = fib6_dump_node;
422 cb->args[2] = (long)w;
423 }
424
425 arg.skb = skb;
426 arg.cb = cb;
Brian Haley191cd582008-08-14 15:33:21 -0700427 arg.net = net;
Patrick McHardy1b43af52006-08-10 23:11:17 -0700428 w->args = &arg;
429
Eric Dumazete67f88d2011-04-27 22:56:07 +0000430 rcu_read_lock();
Neil Hormana33bc5c2009-07-30 18:52:15 -0700431 for (h = s_h; h < FIB6_TABLE_HASHSZ; h++, s_e = 0) {
Patrick McHardy1b43af52006-08-10 23:11:17 -0700432 e = 0;
Daniel Lezcano58f09b72008-03-03 23:25:27 -0800433 head = &net->ipv6.fib_table_hash[h];
Sasha Levinb67bfe02013-02-27 17:06:00 -0800434 hlist_for_each_entry_rcu(tb, head, tb6_hlist) {
Patrick McHardy1b43af52006-08-10 23:11:17 -0700435 if (e < s_e)
436 goto next;
437 res = fib6_dump_table(tb, skb, cb);
438 if (res != 0)
439 goto out;
440next:
441 e++;
442 }
443 }
444out:
Eric Dumazete67f88d2011-04-27 22:56:07 +0000445 rcu_read_unlock();
Patrick McHardy1b43af52006-08-10 23:11:17 -0700446 cb->args[1] = e;
447 cb->args[0] = h;
448
449 res = res < 0 ? res : skb->len;
450 if (res <= 0)
451 fib6_dump_end(cb);
452 return res;
453}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454
455/*
456 * Routing Table
457 *
458 * return the appropriate node for a routing tree "add" operation
459 * by either creating and inserting or by returning an existing
460 * node.
461 */
462
fan.du9225b232013-07-22 14:21:09 +0800463static struct fib6_node *fib6_add_1(struct fib6_node *root,
464 struct in6_addr *addr, int plen,
Matti Vaittinen4a287eb2011-11-14 00:15:14 +0000465 int offset, int allow_create,
Hannes Frederic Sowac8c4d422014-10-06 19:58:36 +0200466 int replace_required, int sernum)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467{
468 struct fib6_node *fn, *in, *ln;
469 struct fib6_node *pn = NULL;
470 struct rt6key *key;
471 int bit;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900472 __be32 dir = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473
474 RT6_TRACE("fib6_add_1\n");
475
476 /* insert node in tree */
477
478 fn = root;
479
480 do {
481 key = (struct rt6key *)((u8 *)fn->leaf + offset);
482
483 /*
484 * Prefix match
485 */
486 if (plen < fn->fn_bit ||
Matti Vaittinen4a287eb2011-11-14 00:15:14 +0000487 !ipv6_prefix_equal(&key->addr, addr, fn->fn_bit)) {
Matti Vaittinen14df0152011-11-16 21:18:02 +0000488 if (!allow_create) {
489 if (replace_required) {
Joe Perchesf3213832012-05-15 14:11:53 +0000490 pr_warn("Can't replace route, no match found\n");
Matti Vaittinen14df0152011-11-16 21:18:02 +0000491 return ERR_PTR(-ENOENT);
492 }
Joe Perchesf3213832012-05-15 14:11:53 +0000493 pr_warn("NLM_F_CREATE should be set when creating new route\n");
Matti Vaittinen14df0152011-11-16 21:18:02 +0000494 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 goto insert_above;
Matti Vaittinen4a287eb2011-11-14 00:15:14 +0000496 }
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900497
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 /*
499 * Exact match ?
500 */
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900501
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 if (plen == fn->fn_bit) {
503 /* clean up an intermediate node */
David S. Miller507c9b12011-12-03 17:50:45 -0500504 if (!(fn->fn_flags & RTN_RTINFO)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 rt6_release(fn->leaf);
506 fn->leaf = NULL;
507 }
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900508
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 fn->fn_sernum = sernum;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900510
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 return fn;
512 }
513
514 /*
515 * We have more bits to go
516 */
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900517
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 /* Try to walk down on tree. */
519 fn->fn_sernum = sernum;
520 dir = addr_bit_set(addr, fn->fn_bit);
521 pn = fn;
Wang Yufen8db46f12014-03-28 12:07:02 +0800522 fn = dir ? fn->right : fn->left;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 } while (fn);
524
Matti Vaittinen14df0152011-11-16 21:18:02 +0000525 if (!allow_create) {
Matti Vaittinen4a287eb2011-11-14 00:15:14 +0000526 /* We should not create new node because
527 * NLM_F_REPLACE was specified without NLM_F_CREATE
528 * I assume it is safe to require NLM_F_CREATE when
529 * REPLACE flag is used! Later we may want to remove the
530 * check for replace_required, because according
531 * to netlink specification, NLM_F_CREATE
532 * MUST be specified if new route is created.
533 * That would keep IPv6 consistent with IPv4
534 */
Matti Vaittinen14df0152011-11-16 21:18:02 +0000535 if (replace_required) {
Joe Perchesf3213832012-05-15 14:11:53 +0000536 pr_warn("Can't replace route, no match found\n");
Matti Vaittinen14df0152011-11-16 21:18:02 +0000537 return ERR_PTR(-ENOENT);
538 }
Joe Perchesf3213832012-05-15 14:11:53 +0000539 pr_warn("NLM_F_CREATE should be set when creating new route\n");
Matti Vaittinen4a287eb2011-11-14 00:15:14 +0000540 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 /*
542 * We walked to the bottom of tree.
543 * Create new leaf node without children.
544 */
545
546 ln = node_alloc();
547
David S. Miller507c9b12011-12-03 17:50:45 -0500548 if (!ln)
Lin Ming188c5172012-09-25 15:17:07 +0000549 return ERR_PTR(-ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 ln->fn_bit = plen;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900551
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 ln->parent = pn;
553 ln->fn_sernum = sernum;
554
555 if (dir)
556 pn->right = ln;
557 else
558 pn->left = ln;
559
560 return ln;
561
562
563insert_above:
564 /*
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900565 * split since we don't have a common prefix anymore or
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 * we have a less significant route.
567 * we've to insert an intermediate node on the list
568 * this new node will point to the one we need to create
569 * and the current
570 */
571
572 pn = fn->parent;
573
574 /* find 1st bit in difference between the 2 addrs.
575
YOSHIFUJI Hideaki971f3592005-11-08 09:37:56 -0800576 See comment in __ipv6_addr_diff: bit may be an invalid value,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 but if it is >= plen, the value is ignored in any case.
578 */
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900579
fan.du9225b232013-07-22 14:21:09 +0800580 bit = __ipv6_addr_diff(addr, &key->addr, sizeof(*addr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900582 /*
583 * (intermediate)[in]
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 * / \
585 * (new leaf node)[ln] (old node)[fn]
586 */
587 if (plen > bit) {
588 in = node_alloc();
589 ln = node_alloc();
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900590
David S. Miller507c9b12011-12-03 17:50:45 -0500591 if (!in || !ln) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 if (in)
593 node_free(in);
594 if (ln)
595 node_free(ln);
Lin Ming188c5172012-09-25 15:17:07 +0000596 return ERR_PTR(-ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 }
598
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900599 /*
600 * new intermediate node.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 * RTN_RTINFO will
602 * be off since that an address that chooses one of
603 * the branches would not match less specific routes
604 * in the other branch
605 */
606
607 in->fn_bit = bit;
608
609 in->parent = pn;
610 in->leaf = fn->leaf;
611 atomic_inc(&in->leaf->rt6i_ref);
612
613 in->fn_sernum = sernum;
614
615 /* update parent pointer */
616 if (dir)
617 pn->right = in;
618 else
619 pn->left = in;
620
621 ln->fn_bit = plen;
622
623 ln->parent = in;
624 fn->parent = in;
625
626 ln->fn_sernum = sernum;
627
628 if (addr_bit_set(addr, bit)) {
629 in->right = ln;
630 in->left = fn;
631 } else {
632 in->left = ln;
633 in->right = fn;
634 }
635 } else { /* plen <= bit */
636
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900637 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 * (new leaf node)[ln]
639 * / \
640 * (old node)[fn] NULL
641 */
642
643 ln = node_alloc();
644
David S. Miller507c9b12011-12-03 17:50:45 -0500645 if (!ln)
Lin Ming188c5172012-09-25 15:17:07 +0000646 return ERR_PTR(-ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647
648 ln->fn_bit = plen;
649
650 ln->parent = pn;
651
652 ln->fn_sernum = sernum;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900653
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 if (dir)
655 pn->right = ln;
656 else
657 pn->left = ln;
658
659 if (addr_bit_set(&key->addr, plen))
660 ln->right = fn;
661 else
662 ln->left = fn;
663
664 fn->parent = ln;
665 }
666 return ln;
667}
668
Hannes Frederic Sowa94b2cfe2014-10-06 19:58:34 +0200669static bool rt6_qualify_for_ecmp(struct rt6_info *rt)
Hannes Frederic Sowa307f2fb2013-07-12 23:46:33 +0200670{
671 return (rt->rt6i_flags & (RTF_GATEWAY|RTF_ADDRCONF|RTF_DYNAMIC)) ==
672 RTF_GATEWAY;
673}
674
Florian Westphale715b6d2015-01-05 23:57:44 +0100675static void fib6_copy_metrics(u32 *mp, const struct mx6_config *mxc)
Michal Kubečeke5fd3872014-03-27 13:04:08 +0100676{
Florian Westphale715b6d2015-01-05 23:57:44 +0100677 int i;
Michal Kubečeke5fd3872014-03-27 13:04:08 +0100678
Florian Westphale715b6d2015-01-05 23:57:44 +0100679 for (i = 0; i < RTAX_MAX; i++) {
680 if (test_bit(i, mxc->mx_valid))
681 mp[i] = mxc->mx[i];
Michal Kubečeke5fd3872014-03-27 13:04:08 +0100682 }
Florian Westphale715b6d2015-01-05 23:57:44 +0100683}
684
685static int fib6_commit_metrics(struct dst_entry *dst, struct mx6_config *mxc)
686{
687 if (!mxc->mx)
688 return 0;
689
690 if (dst->flags & DST_HOST) {
691 u32 *mp = dst_metrics_write_ptr(dst);
692
693 if (unlikely(!mp))
694 return -ENOMEM;
695
696 fib6_copy_metrics(mp, mxc);
697 } else {
698 dst_init_metrics(dst, mxc->mx, false);
699
700 /* We've stolen mx now. */
701 mxc->mx = NULL;
702 }
703
Michal Kubečeke5fd3872014-03-27 13:04:08 +0100704 return 0;
705}
706
Hannes Frederic Sowa6e9e16e62015-01-26 15:11:17 +0100707static void fib6_purge_rt(struct rt6_info *rt, struct fib6_node *fn,
708 struct net *net)
709{
710 if (atomic_read(&rt->rt6i_ref) != 1) {
711 /* This route is used as dummy address holder in some split
712 * nodes. It is not leaked, but it still holds other resources,
713 * which must be released in time. So, scan ascendant nodes
714 * and replace dummy references to this route with references
715 * to still alive ones.
716 */
717 while (fn) {
718 if (!(fn->fn_flags & RTN_RTINFO) && fn->leaf == rt) {
719 fn->leaf = fib6_find_prefix(net, fn);
720 atomic_inc(&fn->leaf->rt6i_ref);
721 rt6_release(rt);
722 }
723 fn = fn->parent;
724 }
725 /* No more references are possible at this point. */
726 BUG_ON(atomic_read(&rt->rt6i_ref) != 1);
727 }
728}
729
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730/*
731 * Insert routing information in a node.
732 */
733
734static int fib6_add_rt2node(struct fib6_node *fn, struct rt6_info *rt,
Florian Westphale715b6d2015-01-05 23:57:44 +0100735 struct nl_info *info, struct mx6_config *mxc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736{
737 struct rt6_info *iter = NULL;
738 struct rt6_info **ins;
Michal Kubeček27596472015-05-18 20:54:00 +0200739 struct rt6_info **fallback_ins = NULL;
David S. Miller507c9b12011-12-03 17:50:45 -0500740 int replace = (info->nlh &&
741 (info->nlh->nlmsg_flags & NLM_F_REPLACE));
742 int add = (!info->nlh ||
743 (info->nlh->nlmsg_flags & NLM_F_CREATE));
Matti Vaittinen4a287eb2011-11-14 00:15:14 +0000744 int found = 0;
Hannes Frederic Sowa307f2fb2013-07-12 23:46:33 +0200745 bool rt_can_ecmp = rt6_qualify_for_ecmp(rt);
Guillaume Nault73483c12016-09-07 17:21:40 +0200746 u16 nlflags = NLM_F_EXCL;
Michal Kubečeke5fd3872014-03-27 13:04:08 +0100747 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748
749 ins = &fn->leaf;
750
David S. Miller507c9b12011-12-03 17:50:45 -0500751 for (iter = fn->leaf; iter; iter = iter->dst.rt6_next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 /*
753 * Search for duplicates
754 */
755
756 if (iter->rt6i_metric == rt->rt6i_metric) {
757 /*
758 * Same priority level
759 */
David S. Miller507c9b12011-12-03 17:50:45 -0500760 if (info->nlh &&
761 (info->nlh->nlmsg_flags & NLM_F_EXCL))
Matti Vaittinen4a287eb2011-11-14 00:15:14 +0000762 return -EEXIST;
Guillaume Nault73483c12016-09-07 17:21:40 +0200763
764 nlflags &= ~NLM_F_EXCL;
Matti Vaittinen4a287eb2011-11-14 00:15:14 +0000765 if (replace) {
Michal Kubeček27596472015-05-18 20:54:00 +0200766 if (rt_can_ecmp == rt6_qualify_for_ecmp(iter)) {
767 found++;
768 break;
769 }
770 if (rt_can_ecmp)
771 fallback_ins = fallback_ins ?: ins;
772 goto next_iter;
Matti Vaittinen4a287eb2011-11-14 00:15:14 +0000773 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774
David S. Millerd1918542011-12-28 20:19:20 -0500775 if (iter->dst.dev == rt->dst.dev &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 iter->rt6i_idev == rt->rt6i_idev &&
777 ipv6_addr_equal(&iter->rt6i_gateway,
778 &rt->rt6i_gateway)) {
Nicolas Dichtel51ebd312012-10-22 03:42:09 +0000779 if (rt->rt6i_nsiblings)
780 rt->rt6i_nsiblings = 0;
David S. Miller507c9b12011-12-03 17:50:45 -0500781 if (!(iter->rt6i_flags & RTF_EXPIRES))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 return -EEXIST;
Gao feng1716a962012-04-06 00:13:10 +0000783 if (!(rt->rt6i_flags & RTF_EXPIRES))
784 rt6_clean_expires(iter);
785 else
786 rt6_set_expires(iter, rt->dst.expires);
Martin KaFai Lau45e4fd22015-05-22 20:56:00 -0700787 iter->rt6i_pmtu = rt->rt6i_pmtu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 return -EEXIST;
789 }
Nicolas Dichtel51ebd312012-10-22 03:42:09 +0000790 /* If we have the same destination and the same metric,
791 * but not the same gateway, then the route we try to
792 * add is sibling to this route, increment our counter
793 * of siblings, and later we will add our route to the
794 * list.
795 * Only static routes (which don't have flag
796 * RTF_EXPIRES) are used for ECMPv6.
797 *
798 * To avoid long list, we only had siblings if the
799 * route have a gateway.
800 */
Hannes Frederic Sowa307f2fb2013-07-12 23:46:33 +0200801 if (rt_can_ecmp &&
802 rt6_qualify_for_ecmp(iter))
Nicolas Dichtel51ebd312012-10-22 03:42:09 +0000803 rt->rt6i_nsiblings++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 }
805
806 if (iter->rt6i_metric > rt->rt6i_metric)
807 break;
808
Michal Kubeček27596472015-05-18 20:54:00 +0200809next_iter:
Changli Gaod8d1f302010-06-10 23:31:35 -0700810 ins = &iter->dst.rt6_next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 }
812
Michal Kubeček27596472015-05-18 20:54:00 +0200813 if (fallback_ins && !found) {
814 /* No ECMP-able route found, replace first non-ECMP one */
815 ins = fallback_ins;
816 iter = *ins;
817 found++;
818 }
819
David S. Millerf11e6652007-03-24 20:36:25 -0700820 /* Reset round-robin state, if necessary */
821 if (ins == &fn->leaf)
822 fn->rr_ptr = NULL;
823
Nicolas Dichtel51ebd312012-10-22 03:42:09 +0000824 /* Link this route to others same route. */
825 if (rt->rt6i_nsiblings) {
826 unsigned int rt6i_nsiblings;
827 struct rt6_info *sibling, *temp_sibling;
828
829 /* Find the first route that have the same metric */
830 sibling = fn->leaf;
831 while (sibling) {
Hannes Frederic Sowa307f2fb2013-07-12 23:46:33 +0200832 if (sibling->rt6i_metric == rt->rt6i_metric &&
833 rt6_qualify_for_ecmp(sibling)) {
Nicolas Dichtel51ebd312012-10-22 03:42:09 +0000834 list_add_tail(&rt->rt6i_siblings,
835 &sibling->rt6i_siblings);
836 break;
837 }
838 sibling = sibling->dst.rt6_next;
839 }
840 /* For each sibling in the list, increment the counter of
841 * siblings. BUG() if counters does not match, list of siblings
842 * is broken!
843 */
844 rt6i_nsiblings = 0;
845 list_for_each_entry_safe(sibling, temp_sibling,
846 &rt->rt6i_siblings, rt6i_siblings) {
847 sibling->rt6i_nsiblings++;
848 BUG_ON(sibling->rt6i_nsiblings != rt->rt6i_nsiblings);
849 rt6i_nsiblings++;
850 }
851 BUG_ON(rt6i_nsiblings != rt->rt6i_nsiblings);
852 }
853
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 /*
855 * insert node
856 */
Matti Vaittinen4a287eb2011-11-14 00:15:14 +0000857 if (!replace) {
858 if (!add)
Joe Perchesf3213832012-05-15 14:11:53 +0000859 pr_warn("NLM_F_CREATE should be set when creating new route\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860
Matti Vaittinen4a287eb2011-11-14 00:15:14 +0000861add:
Guillaume Nault73483c12016-09-07 17:21:40 +0200862 nlflags |= NLM_F_CREATE;
Florian Westphale715b6d2015-01-05 23:57:44 +0100863 err = fib6_commit_metrics(&rt->dst, mxc);
864 if (err)
865 return err;
866
Matti Vaittinen4a287eb2011-11-14 00:15:14 +0000867 rt->dst.rt6_next = iter;
868 *ins = rt;
869 rt->rt6i_node = fn;
870 atomic_inc(&rt->rt6i_ref);
Guillaume Nault73483c12016-09-07 17:21:40 +0200871 inet6_rt_notify(RTM_NEWROUTE, rt, info, nlflags);
Matti Vaittinen4a287eb2011-11-14 00:15:14 +0000872 info->nl_net->ipv6.rt6_stats->fib_rt_entries++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873
David S. Miller507c9b12011-12-03 17:50:45 -0500874 if (!(fn->fn_flags & RTN_RTINFO)) {
Matti Vaittinen4a287eb2011-11-14 00:15:14 +0000875 info->nl_net->ipv6.rt6_stats->fib_route_nodes++;
876 fn->fn_flags |= RTN_RTINFO;
877 }
878
879 } else {
Michal Kubeček27596472015-05-18 20:54:00 +0200880 int nsiblings;
881
Matti Vaittinen4a287eb2011-11-14 00:15:14 +0000882 if (!found) {
883 if (add)
884 goto add;
Joe Perchesf3213832012-05-15 14:11:53 +0000885 pr_warn("NLM_F_REPLACE set, but no existing node found!\n");
Matti Vaittinen4a287eb2011-11-14 00:15:14 +0000886 return -ENOENT;
887 }
Florian Westphale715b6d2015-01-05 23:57:44 +0100888
889 err = fib6_commit_metrics(&rt->dst, mxc);
890 if (err)
891 return err;
892
Matti Vaittinen4a287eb2011-11-14 00:15:14 +0000893 *ins = rt;
894 rt->rt6i_node = fn;
895 rt->dst.rt6_next = iter->dst.rt6_next;
896 atomic_inc(&rt->rt6i_ref);
Roopa Prabhu37a1d362015-09-13 10:18:33 -0700897 inet6_rt_notify(RTM_NEWROUTE, rt, info, NLM_F_REPLACE);
David S. Miller507c9b12011-12-03 17:50:45 -0500898 if (!(fn->fn_flags & RTN_RTINFO)) {
Matti Vaittinen4a287eb2011-11-14 00:15:14 +0000899 info->nl_net->ipv6.rt6_stats->fib_route_nodes++;
900 fn->fn_flags |= RTN_RTINFO;
901 }
Michal Kubeček27596472015-05-18 20:54:00 +0200902 nsiblings = iter->rt6i_nsiblings;
Hannes Frederic Sowa6e9e16e62015-01-26 15:11:17 +0100903 fib6_purge_rt(iter, fn, info->nl_net);
904 rt6_release(iter);
Michal Kubeček27596472015-05-18 20:54:00 +0200905
906 if (nsiblings) {
907 /* Replacing an ECMP route, remove all siblings */
908 ins = &rt->dst.rt6_next;
909 iter = *ins;
910 while (iter) {
911 if (rt6_qualify_for_ecmp(iter)) {
912 *ins = iter->dst.rt6_next;
913 fib6_purge_rt(iter, fn, info->nl_net);
914 rt6_release(iter);
915 nsiblings--;
916 } else {
917 ins = &iter->dst.rt6_next;
918 }
919 iter = *ins;
920 }
921 WARN_ON(nsiblings != 0);
922 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923 }
924
925 return 0;
926}
927
Hannes Frederic Sowa94b2cfe2014-10-06 19:58:34 +0200928static void fib6_start_gc(struct net *net, struct rt6_info *rt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929{
Stephen Hemminger417f28b2008-07-22 14:33:45 -0700930 if (!timer_pending(&net->ipv6.ip6_fib_timer) &&
David S. Miller507c9b12011-12-03 17:50:45 -0500931 (rt->rt6i_flags & (RTF_EXPIRES | RTF_CACHE)))
Stephen Hemminger417f28b2008-07-22 14:33:45 -0700932 mod_timer(&net->ipv6.ip6_fib_timer,
Stephen Hemminger847499c2008-07-21 13:21:35 -0700933 jiffies + net->ipv6.sysctl.ip6_rt_gc_interval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934}
935
Daniel Lezcano63152fc2008-03-03 23:31:11 -0800936void fib6_force_start_gc(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937{
Stephen Hemminger417f28b2008-07-22 14:33:45 -0700938 if (!timer_pending(&net->ipv6.ip6_fib_timer))
939 mod_timer(&net->ipv6.ip6_fib_timer,
Stephen Hemminger847499c2008-07-21 13:21:35 -0700940 jiffies + net->ipv6.sysctl.ip6_rt_gc_interval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941}
942
943/*
944 * Add routing information to the routing tree.
945 * <destination addr>/<source addr>
946 * with source addr info in sub-trees
947 */
948
Florian Westphale715b6d2015-01-05 23:57:44 +0100949int fib6_add(struct fib6_node *root, struct rt6_info *rt,
950 struct nl_info *info, struct mx6_config *mxc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951{
YOSHIFUJI Hideaki66729e12006-08-23 17:20:34 -0700952 struct fib6_node *fn, *pn = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953 int err = -ENOMEM;
Matti Vaittinen4a287eb2011-11-14 00:15:14 +0000954 int allow_create = 1;
955 int replace_required = 0;
Hannes Frederic Sowa812918c2014-10-06 19:58:37 +0200956 int sernum = fib6_new_sernum(info->nl_net);
David S. Miller507c9b12011-12-03 17:50:45 -0500957
Martin KaFai Lau8e3d5be2015-09-15 14:30:08 -0700958 if (WARN_ON_ONCE((rt->dst.flags & DST_NOCACHE) &&
959 !atomic_read(&rt->dst.__refcnt)))
960 return -EINVAL;
961
David S. Miller507c9b12011-12-03 17:50:45 -0500962 if (info->nlh) {
963 if (!(info->nlh->nlmsg_flags & NLM_F_CREATE))
Matti Vaittinen4a287eb2011-11-14 00:15:14 +0000964 allow_create = 0;
David S. Miller507c9b12011-12-03 17:50:45 -0500965 if (info->nlh->nlmsg_flags & NLM_F_REPLACE)
Matti Vaittinen4a287eb2011-11-14 00:15:14 +0000966 replace_required = 1;
967 }
968 if (!allow_create && !replace_required)
Joe Perchesf3213832012-05-15 14:11:53 +0000969 pr_warn("RTM_NEWROUTE with no NLM_F_CREATE or NLM_F_REPLACE\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970
fan.du9225b232013-07-22 14:21:09 +0800971 fn = fib6_add_1(root, &rt->rt6i_dst.addr, rt->rt6i_dst.plen,
972 offsetof(struct rt6_info, rt6i_dst), allow_create,
Hannes Frederic Sowac8c4d422014-10-06 19:58:36 +0200973 replace_required, sernum);
Matti Vaittinen4a287eb2011-11-14 00:15:14 +0000974 if (IS_ERR(fn)) {
975 err = PTR_ERR(fn);
Daniel Borkmannae7b4e12013-09-07 15:13:20 +0200976 fn = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977 goto out;
Lin Ming188c5172012-09-25 15:17:07 +0000978 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979
YOSHIFUJI Hideaki66729e12006-08-23 17:20:34 -0700980 pn = fn;
981
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982#ifdef CONFIG_IPV6_SUBTREES
983 if (rt->rt6i_src.plen) {
984 struct fib6_node *sn;
985
David S. Miller507c9b12011-12-03 17:50:45 -0500986 if (!fn->subtree) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 struct fib6_node *sfn;
988
989 /*
990 * Create subtree.
991 *
992 * fn[main tree]
993 * |
994 * sfn[subtree root]
995 * \
996 * sn[new leaf node]
997 */
998
999 /* Create subtree root node */
1000 sfn = node_alloc();
David S. Miller507c9b12011-12-03 17:50:45 -05001001 if (!sfn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002 goto st_failure;
1003
Daniel Lezcano8ed67782008-03-04 13:48:30 -08001004 sfn->leaf = info->nl_net->ipv6.ip6_null_entry;
1005 atomic_inc(&info->nl_net->ipv6.ip6_null_entry->rt6i_ref);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006 sfn->fn_flags = RTN_ROOT;
Hannes Frederic Sowac8c4d422014-10-06 19:58:36 +02001007 sfn->fn_sernum = sernum;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008
1009 /* Now add the first leaf node to new subtree */
1010
1011 sn = fib6_add_1(sfn, &rt->rt6i_src.addr,
fan.du9225b232013-07-22 14:21:09 +08001012 rt->rt6i_src.plen,
Matti Vaittinen4a287eb2011-11-14 00:15:14 +00001013 offsetof(struct rt6_info, rt6i_src),
Hannes Frederic Sowac8c4d422014-10-06 19:58:36 +02001014 allow_create, replace_required, sernum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015
Wei Yongjunf950c0e2012-09-20 18:29:56 +00001016 if (IS_ERR(sn)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017 /* If it is failed, discard just allocated
1018 root, and then (in st_failure) stale node
1019 in main tree.
1020 */
1021 node_free(sfn);
Lin Ming188c5172012-09-25 15:17:07 +00001022 err = PTR_ERR(sn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023 goto st_failure;
1024 }
1025
1026 /* Now link new subtree to main tree */
1027 sfn->parent = fn;
1028 fn->subtree = sfn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029 } else {
1030 sn = fib6_add_1(fn->subtree, &rt->rt6i_src.addr,
fan.du9225b232013-07-22 14:21:09 +08001031 rt->rt6i_src.plen,
Matti Vaittinen4a287eb2011-11-14 00:15:14 +00001032 offsetof(struct rt6_info, rt6i_src),
Hannes Frederic Sowac8c4d422014-10-06 19:58:36 +02001033 allow_create, replace_required, sernum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034
Matti Vaittinen4a287eb2011-11-14 00:15:14 +00001035 if (IS_ERR(sn)) {
1036 err = PTR_ERR(sn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037 goto st_failure;
Lin Ming188c5172012-09-25 15:17:07 +00001038 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039 }
1040
David S. Miller507c9b12011-12-03 17:50:45 -05001041 if (!fn->leaf) {
YOSHIFUJI Hideaki66729e12006-08-23 17:20:34 -07001042 fn->leaf = rt;
1043 atomic_inc(&rt->rt6i_ref);
1044 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045 fn = sn;
1046 }
1047#endif
1048
Florian Westphale715b6d2015-01-05 23:57:44 +01001049 err = fib6_add_rt2node(fn, rt, info, mxc);
David S. Miller507c9b12011-12-03 17:50:45 -05001050 if (!err) {
Daniel Lezcano63152fc2008-03-03 23:31:11 -08001051 fib6_start_gc(info->nl_net, rt);
David S. Miller507c9b12011-12-03 17:50:45 -05001052 if (!(rt->rt6i_flags & RTF_CACHE))
Duan Jiong163cd4e2014-05-09 13:31:43 +08001053 fib6_prune_clones(info->nl_net, pn);
Martin KaFai Lau8e3d5be2015-09-15 14:30:08 -07001054 rt->dst.flags &= ~DST_NOCACHE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055 }
1056
1057out:
YOSHIFUJI Hideaki66729e12006-08-23 17:20:34 -07001058 if (err) {
1059#ifdef CONFIG_IPV6_SUBTREES
1060 /*
1061 * If fib6_add_1 has cleared the old leaf pointer in the
1062 * super-tree leaf node we have to find a new one for it.
1063 */
David S. Miller3c051232008-04-18 01:46:19 -07001064 if (pn != fn && pn->leaf == rt) {
1065 pn->leaf = NULL;
1066 atomic_dec(&rt->rt6i_ref);
1067 }
YOSHIFUJI Hideaki66729e12006-08-23 17:20:34 -07001068 if (pn != fn && !pn->leaf && !(pn->fn_flags & RTN_RTINFO)) {
Daniel Lezcano8ed67782008-03-04 13:48:30 -08001069 pn->leaf = fib6_find_prefix(info->nl_net, pn);
YOSHIFUJI Hideaki66729e12006-08-23 17:20:34 -07001070#if RT6_DEBUG >= 2
1071 if (!pn->leaf) {
Ilpo Järvinen547b7922008-07-25 21:43:18 -07001072 WARN_ON(pn->leaf == NULL);
Daniel Lezcano8ed67782008-03-04 13:48:30 -08001073 pn->leaf = info->nl_net->ipv6.ip6_null_entry;
YOSHIFUJI Hideaki66729e12006-08-23 17:20:34 -07001074 }
1075#endif
1076 atomic_inc(&pn->leaf->rt6i_ref);
1077 }
1078#endif
Martin KaFai Lau8e3d5be2015-09-15 14:30:08 -07001079 if (!(rt->dst.flags & DST_NOCACHE))
1080 dst_free(&rt->dst);
YOSHIFUJI Hideaki66729e12006-08-23 17:20:34 -07001081 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082 return err;
1083
1084#ifdef CONFIG_IPV6_SUBTREES
1085 /* Subtree creation failed, probably main tree node
1086 is orphan. If it is, shoot it.
1087 */
1088st_failure:
1089 if (fn && !(fn->fn_flags & (RTN_RTINFO|RTN_ROOT)))
Daniel Lezcano8ed67782008-03-04 13:48:30 -08001090 fib6_repair_tree(info->nl_net, fn);
Martin KaFai Lau8e3d5be2015-09-15 14:30:08 -07001091 if (!(rt->dst.flags & DST_NOCACHE))
1092 dst_free(&rt->dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093 return err;
1094#endif
1095}
1096
1097/*
1098 * Routing tree lookup
1099 *
1100 */
1101
1102struct lookup_args {
David S. Miller507c9b12011-12-03 17:50:45 -05001103 int offset; /* key offset on rt6_info */
Eric Dumazetb71d1d42011-04-22 04:53:02 +00001104 const struct in6_addr *addr; /* search key */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105};
1106
Wang Yufen437de072014-03-28 12:07:04 +08001107static struct fib6_node *fib6_lookup_1(struct fib6_node *root,
1108 struct lookup_args *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109{
1110 struct fib6_node *fn;
Al Viroe69a4adc2006-11-14 20:56:00 -08001111 __be32 dir;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112
YOSHIFUJI Hideaki825e2882006-08-23 17:21:29 -07001113 if (unlikely(args->offset == 0))
1114 return NULL;
1115
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116 /*
1117 * Descend on a tree
1118 */
1119
1120 fn = root;
1121
1122 for (;;) {
1123 struct fib6_node *next;
1124
1125 dir = addr_bit_set(args->addr, fn->fn_bit);
1126
1127 next = dir ? fn->right : fn->left;
1128
1129 if (next) {
1130 fn = next;
1131 continue;
1132 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133 break;
1134 }
1135
David S. Miller507c9b12011-12-03 17:50:45 -05001136 while (fn) {
YOSHIFUJI Hideaki7fc33162006-08-23 17:22:24 -07001137 if (FIB6_SUBTREE(fn) || fn->fn_flags & RTN_RTINFO) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138 struct rt6key *key;
1139
1140 key = (struct rt6key *) ((u8 *) fn->leaf +
1141 args->offset);
1142
YOSHIFUJI Hideaki3fc5e042006-08-23 17:21:12 -07001143 if (ipv6_prefix_equal(&key->addr, args->addr, key->plen)) {
1144#ifdef CONFIG_IPV6_SUBTREES
Hannes Frederic Sowa3e3be272013-08-07 02:34:31 +02001145 if (fn->subtree) {
1146 struct fib6_node *sfn;
1147 sfn = fib6_lookup_1(fn->subtree,
1148 args + 1);
1149 if (!sfn)
1150 goto backtrack;
1151 fn = sfn;
1152 }
YOSHIFUJI Hideaki3fc5e042006-08-23 17:21:12 -07001153#endif
Hannes Frederic Sowa3e3be272013-08-07 02:34:31 +02001154 if (fn->fn_flags & RTN_RTINFO)
YOSHIFUJI Hideaki3fc5e042006-08-23 17:21:12 -07001155 return fn;
1156 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157 }
Hannes Frederic Sowa3e3be272013-08-07 02:34:31 +02001158#ifdef CONFIG_IPV6_SUBTREES
1159backtrack:
1160#endif
YOSHIFUJI Hideaki3fc5e042006-08-23 17:21:12 -07001161 if (fn->fn_flags & RTN_ROOT)
1162 break;
1163
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164 fn = fn->parent;
1165 }
1166
1167 return NULL;
1168}
1169
Wang Yufen437de072014-03-28 12:07:04 +08001170struct fib6_node *fib6_lookup(struct fib6_node *root, const struct in6_addr *daddr,
1171 const struct in6_addr *saddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173 struct fib6_node *fn;
YOSHIFUJI Hideaki825e2882006-08-23 17:21:29 -07001174 struct lookup_args args[] = {
1175 {
1176 .offset = offsetof(struct rt6_info, rt6i_dst),
1177 .addr = daddr,
1178 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179#ifdef CONFIG_IPV6_SUBTREES
YOSHIFUJI Hideaki825e2882006-08-23 17:21:29 -07001180 {
1181 .offset = offsetof(struct rt6_info, rt6i_src),
1182 .addr = saddr,
1183 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184#endif
YOSHIFUJI Hideaki825e2882006-08-23 17:21:29 -07001185 {
1186 .offset = 0, /* sentinel */
1187 }
1188 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189
YOSHIFUJI Hideakifefc2a62006-08-23 17:21:50 -07001190 fn = fib6_lookup_1(root, daddr ? args : args + 1);
David S. Miller507c9b12011-12-03 17:50:45 -05001191 if (!fn || fn->fn_flags & RTN_TL_ROOT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192 fn = root;
1193
1194 return fn;
1195}
1196
1197/*
1198 * Get node with specified destination prefix (and source prefix,
1199 * if subtrees are used)
1200 */
1201
1202
Wang Yufen437de072014-03-28 12:07:04 +08001203static struct fib6_node *fib6_locate_1(struct fib6_node *root,
1204 const struct in6_addr *addr,
1205 int plen, int offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206{
1207 struct fib6_node *fn;
1208
1209 for (fn = root; fn ; ) {
1210 struct rt6key *key = (struct rt6key *)((u8 *)fn->leaf + offset);
1211
1212 /*
1213 * Prefix match
1214 */
1215 if (plen < fn->fn_bit ||
1216 !ipv6_prefix_equal(&key->addr, addr, fn->fn_bit))
1217 return NULL;
1218
1219 if (plen == fn->fn_bit)
1220 return fn;
1221
1222 /*
1223 * We have more bits to go
1224 */
1225 if (addr_bit_set(addr, fn->fn_bit))
1226 fn = fn->right;
1227 else
1228 fn = fn->left;
1229 }
1230 return NULL;
1231}
1232
Wang Yufen437de072014-03-28 12:07:04 +08001233struct fib6_node *fib6_locate(struct fib6_node *root,
1234 const struct in6_addr *daddr, int dst_len,
1235 const struct in6_addr *saddr, int src_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236{
1237 struct fib6_node *fn;
1238
1239 fn = fib6_locate_1(root, daddr, dst_len,
1240 offsetof(struct rt6_info, rt6i_dst));
1241
1242#ifdef CONFIG_IPV6_SUBTREES
1243 if (src_len) {
Ilpo Järvinen547b7922008-07-25 21:43:18 -07001244 WARN_ON(saddr == NULL);
YOSHIFUJI Hideaki3fc5e042006-08-23 17:21:12 -07001245 if (fn && fn->subtree)
1246 fn = fib6_locate_1(fn->subtree, saddr, src_len,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247 offsetof(struct rt6_info, rt6i_src));
1248 }
1249#endif
1250
David S. Miller507c9b12011-12-03 17:50:45 -05001251 if (fn && fn->fn_flags & RTN_RTINFO)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252 return fn;
1253
1254 return NULL;
1255}
1256
1257
1258/*
1259 * Deletion
1260 *
1261 */
1262
Daniel Lezcano8ed67782008-03-04 13:48:30 -08001263static struct rt6_info *fib6_find_prefix(struct net *net, struct fib6_node *fn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264{
David S. Miller507c9b12011-12-03 17:50:45 -05001265 if (fn->fn_flags & RTN_ROOT)
Daniel Lezcano8ed67782008-03-04 13:48:30 -08001266 return net->ipv6.ip6_null_entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267
David S. Miller507c9b12011-12-03 17:50:45 -05001268 while (fn) {
1269 if (fn->left)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270 return fn->left->leaf;
David S. Miller507c9b12011-12-03 17:50:45 -05001271 if (fn->right)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272 return fn->right->leaf;
1273
YOSHIFUJI Hideaki7fc33162006-08-23 17:22:24 -07001274 fn = FIB6_SUBTREE(fn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275 }
1276 return NULL;
1277}
1278
1279/*
1280 * Called to trim the tree of intermediate nodes when possible. "fn"
1281 * is the node we want to try and remove.
1282 */
1283
Daniel Lezcano8ed67782008-03-04 13:48:30 -08001284static struct fib6_node *fib6_repair_tree(struct net *net,
1285 struct fib6_node *fn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286{
1287 int children;
1288 int nstate;
1289 struct fib6_node *child, *pn;
Hannes Frederic Sowa94b2cfe2014-10-06 19:58:34 +02001290 struct fib6_walker *w;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291 int iter = 0;
1292
1293 for (;;) {
1294 RT6_TRACE("fixing tree: plen=%d iter=%d\n", fn->fn_bit, iter);
1295 iter++;
1296
Ilpo Järvinen547b7922008-07-25 21:43:18 -07001297 WARN_ON(fn->fn_flags & RTN_RTINFO);
1298 WARN_ON(fn->fn_flags & RTN_TL_ROOT);
Ian Morris53b24b82015-03-29 14:00:05 +01001299 WARN_ON(fn->leaf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300
1301 children = 0;
1302 child = NULL;
Wang Yufen49e253e2014-03-28 12:07:03 +08001303 if (fn->right)
1304 child = fn->right, children |= 1;
1305 if (fn->left)
1306 child = fn->left, children |= 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307
YOSHIFUJI Hideaki7fc33162006-08-23 17:22:24 -07001308 if (children == 3 || FIB6_SUBTREE(fn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309#ifdef CONFIG_IPV6_SUBTREES
1310 /* Subtree root (i.e. fn) may have one child */
David S. Miller507c9b12011-12-03 17:50:45 -05001311 || (children && fn->fn_flags & RTN_ROOT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312#endif
1313 ) {
Daniel Lezcano8ed67782008-03-04 13:48:30 -08001314 fn->leaf = fib6_find_prefix(net, fn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315#if RT6_DEBUG >= 2
David S. Miller507c9b12011-12-03 17:50:45 -05001316 if (!fn->leaf) {
Ilpo Järvinen547b7922008-07-25 21:43:18 -07001317 WARN_ON(!fn->leaf);
Daniel Lezcano8ed67782008-03-04 13:48:30 -08001318 fn->leaf = net->ipv6.ip6_null_entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319 }
1320#endif
1321 atomic_inc(&fn->leaf->rt6i_ref);
1322 return fn->parent;
1323 }
1324
1325 pn = fn->parent;
1326#ifdef CONFIG_IPV6_SUBTREES
YOSHIFUJI Hideaki7fc33162006-08-23 17:22:24 -07001327 if (FIB6_SUBTREE(pn) == fn) {
Ilpo Järvinen547b7922008-07-25 21:43:18 -07001328 WARN_ON(!(fn->fn_flags & RTN_ROOT));
YOSHIFUJI Hideaki7fc33162006-08-23 17:22:24 -07001329 FIB6_SUBTREE(pn) = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330 nstate = FWS_L;
1331 } else {
Ilpo Järvinen547b7922008-07-25 21:43:18 -07001332 WARN_ON(fn->fn_flags & RTN_ROOT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333#endif
Wang Yufen49e253e2014-03-28 12:07:03 +08001334 if (pn->right == fn)
1335 pn->right = child;
1336 else if (pn->left == fn)
1337 pn->left = child;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338#if RT6_DEBUG >= 2
Ilpo Järvinen547b7922008-07-25 21:43:18 -07001339 else
1340 WARN_ON(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341#endif
1342 if (child)
1343 child->parent = pn;
1344 nstate = FWS_R;
1345#ifdef CONFIG_IPV6_SUBTREES
1346 }
1347#endif
1348
Michal Kubeček9a03cd82016-03-08 14:44:35 +01001349 read_lock(&net->ipv6.fib6_walker_lock);
1350 FOR_WALKERS(net, w) {
David S. Miller507c9b12011-12-03 17:50:45 -05001351 if (!child) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352 if (w->root == fn) {
1353 w->root = w->node = NULL;
1354 RT6_TRACE("W %p adjusted by delroot 1\n", w);
1355 } else if (w->node == fn) {
1356 RT6_TRACE("W %p adjusted by delnode 1, s=%d/%d\n", w, w->state, nstate);
1357 w->node = pn;
1358 w->state = nstate;
1359 }
1360 } else {
1361 if (w->root == fn) {
1362 w->root = child;
1363 RT6_TRACE("W %p adjusted by delroot 2\n", w);
1364 }
1365 if (w->node == fn) {
1366 w->node = child;
1367 if (children&2) {
1368 RT6_TRACE("W %p adjusted by delnode 2, s=%d\n", w, w->state);
Wang Yufen8db46f12014-03-28 12:07:02 +08001369 w->state = w->state >= FWS_R ? FWS_U : FWS_INIT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370 } else {
1371 RT6_TRACE("W %p adjusted by delnode 2, s=%d\n", w, w->state);
Wang Yufen8db46f12014-03-28 12:07:02 +08001372 w->state = w->state >= FWS_C ? FWS_U : FWS_INIT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373 }
1374 }
1375 }
1376 }
Michal Kubeček9a03cd82016-03-08 14:44:35 +01001377 read_unlock(&net->ipv6.fib6_walker_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378
1379 node_free(fn);
David S. Miller507c9b12011-12-03 17:50:45 -05001380 if (pn->fn_flags & RTN_RTINFO || FIB6_SUBTREE(pn))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381 return pn;
1382
1383 rt6_release(pn->leaf);
1384 pn->leaf = NULL;
1385 fn = pn;
1386 }
1387}
1388
1389static void fib6_del_route(struct fib6_node *fn, struct rt6_info **rtp,
Thomas Graf86872cb2006-08-22 00:01:08 -07001390 struct nl_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391{
Hannes Frederic Sowa94b2cfe2014-10-06 19:58:34 +02001392 struct fib6_walker *w;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393 struct rt6_info *rt = *rtp;
Benjamin Theryc5728722008-03-03 23:34:17 -08001394 struct net *net = info->nl_net;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395
1396 RT6_TRACE("fib6_del_route\n");
1397
1398 /* Unlink it */
Changli Gaod8d1f302010-06-10 23:31:35 -07001399 *rtp = rt->dst.rt6_next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400 rt->rt6i_node = NULL;
Benjamin Theryc5728722008-03-03 23:34:17 -08001401 net->ipv6.rt6_stats->fib_rt_entries--;
1402 net->ipv6.rt6_stats->fib_discarded_routes++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403
David S. Millerf11e6652007-03-24 20:36:25 -07001404 /* Reset round-robin state, if necessary */
1405 if (fn->rr_ptr == rt)
1406 fn->rr_ptr = NULL;
1407
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00001408 /* Remove this entry from other siblings */
1409 if (rt->rt6i_nsiblings) {
1410 struct rt6_info *sibling, *next_sibling;
1411
1412 list_for_each_entry_safe(sibling, next_sibling,
1413 &rt->rt6i_siblings, rt6i_siblings)
1414 sibling->rt6i_nsiblings--;
1415 rt->rt6i_nsiblings = 0;
1416 list_del_init(&rt->rt6i_siblings);
1417 }
1418
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419 /* Adjust walkers */
Michal Kubeček9a03cd82016-03-08 14:44:35 +01001420 read_lock(&net->ipv6.fib6_walker_lock);
1421 FOR_WALKERS(net, w) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422 if (w->state == FWS_C && w->leaf == rt) {
1423 RT6_TRACE("walker %p adjusted by delroute\n", w);
Changli Gaod8d1f302010-06-10 23:31:35 -07001424 w->leaf = rt->dst.rt6_next;
David S. Miller507c9b12011-12-03 17:50:45 -05001425 if (!w->leaf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426 w->state = FWS_U;
1427 }
1428 }
Michal Kubeček9a03cd82016-03-08 14:44:35 +01001429 read_unlock(&net->ipv6.fib6_walker_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430
Changli Gaod8d1f302010-06-10 23:31:35 -07001431 rt->dst.rt6_next = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433 /* If it was last route, expunge its radix tree node */
David S. Miller507c9b12011-12-03 17:50:45 -05001434 if (!fn->leaf) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435 fn->fn_flags &= ~RTN_RTINFO;
Benjamin Theryc5728722008-03-03 23:34:17 -08001436 net->ipv6.rt6_stats->fib_route_nodes--;
Daniel Lezcano8ed67782008-03-04 13:48:30 -08001437 fn = fib6_repair_tree(net, fn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438 }
1439
Hannes Frederic Sowa6e9e16e62015-01-26 15:11:17 +01001440 fib6_purge_rt(rt, fn, net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441
Roopa Prabhu37a1d362015-09-13 10:18:33 -07001442 inet6_rt_notify(RTM_DELROUTE, rt, info, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443 rt6_release(rt);
1444}
1445
Thomas Graf86872cb2006-08-22 00:01:08 -07001446int fib6_del(struct rt6_info *rt, struct nl_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447{
Daniel Lezcano8ed67782008-03-04 13:48:30 -08001448 struct net *net = info->nl_net;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449 struct fib6_node *fn = rt->rt6i_node;
1450 struct rt6_info **rtp;
1451
1452#if RT6_DEBUG >= 2
Wang Yufen8db46f12014-03-28 12:07:02 +08001453 if (rt->dst.obsolete > 0) {
Ian Morris53b24b82015-03-29 14:00:05 +01001454 WARN_ON(fn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455 return -ENOENT;
1456 }
1457#endif
David S. Miller507c9b12011-12-03 17:50:45 -05001458 if (!fn || rt == net->ipv6.ip6_null_entry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459 return -ENOENT;
1460
Ilpo Järvinen547b7922008-07-25 21:43:18 -07001461 WARN_ON(!(fn->fn_flags & RTN_RTINFO));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462
David S. Miller507c9b12011-12-03 17:50:45 -05001463 if (!(rt->rt6i_flags & RTF_CACHE)) {
YOSHIFUJI Hideaki150730d2006-08-23 17:22:55 -07001464 struct fib6_node *pn = fn;
1465#ifdef CONFIG_IPV6_SUBTREES
1466 /* clones of this route might be in another subtree */
1467 if (rt->rt6i_src.plen) {
David S. Miller507c9b12011-12-03 17:50:45 -05001468 while (!(pn->fn_flags & RTN_ROOT))
YOSHIFUJI Hideaki150730d2006-08-23 17:22:55 -07001469 pn = pn->parent;
1470 pn = pn->parent;
1471 }
1472#endif
Duan Jiong163cd4e2014-05-09 13:31:43 +08001473 fib6_prune_clones(info->nl_net, pn);
YOSHIFUJI Hideaki150730d2006-08-23 17:22:55 -07001474 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475
1476 /*
1477 * Walk the leaf entries looking for ourself
1478 */
1479
Changli Gaod8d1f302010-06-10 23:31:35 -07001480 for (rtp = &fn->leaf; *rtp; rtp = &(*rtp)->dst.rt6_next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481 if (*rtp == rt) {
Thomas Graf86872cb2006-08-22 00:01:08 -07001482 fib6_del_route(fn, rtp, info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483 return 0;
1484 }
1485 }
1486 return -ENOENT;
1487}
1488
1489/*
1490 * Tree traversal function.
1491 *
1492 * Certainly, it is not interrupt safe.
1493 * However, it is internally reenterable wrt itself and fib6_add/fib6_del.
1494 * It means, that we can modify tree during walking
1495 * and use this function for garbage collection, clone pruning,
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001496 * cleaning tree when a device goes down etc. etc.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497 *
1498 * It guarantees that every node will be traversed,
1499 * and that it will be traversed only once.
1500 *
1501 * Callback function w->func may return:
1502 * 0 -> continue walking.
1503 * positive value -> walking is suspended (used by tree dumps,
1504 * and probably by gc, if it will be split to several slices)
1505 * negative value -> terminate walking.
1506 *
1507 * The function itself returns:
1508 * 0 -> walk is complete.
1509 * >0 -> walk is incomplete (i.e. suspended)
1510 * <0 -> walk is terminated by an error.
1511 */
1512
Hannes Frederic Sowa94b2cfe2014-10-06 19:58:34 +02001513static int fib6_walk_continue(struct fib6_walker *w)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514{
1515 struct fib6_node *fn, *pn;
1516
1517 for (;;) {
1518 fn = w->node;
David S. Miller507c9b12011-12-03 17:50:45 -05001519 if (!fn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520 return 0;
1521
1522 if (w->prune && fn != w->root &&
David S. Miller507c9b12011-12-03 17:50:45 -05001523 fn->fn_flags & RTN_RTINFO && w->state < FWS_C) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524 w->state = FWS_C;
1525 w->leaf = fn->leaf;
1526 }
1527 switch (w->state) {
1528#ifdef CONFIG_IPV6_SUBTREES
1529 case FWS_S:
YOSHIFUJI Hideaki7fc33162006-08-23 17:22:24 -07001530 if (FIB6_SUBTREE(fn)) {
1531 w->node = FIB6_SUBTREE(fn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532 continue;
1533 }
1534 w->state = FWS_L;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001535#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001536 case FWS_L:
1537 if (fn->left) {
1538 w->node = fn->left;
1539 w->state = FWS_INIT;
1540 continue;
1541 }
1542 w->state = FWS_R;
1543 case FWS_R:
1544 if (fn->right) {
1545 w->node = fn->right;
1546 w->state = FWS_INIT;
1547 continue;
1548 }
1549 w->state = FWS_C;
1550 w->leaf = fn->leaf;
1551 case FWS_C:
David S. Miller507c9b12011-12-03 17:50:45 -05001552 if (w->leaf && fn->fn_flags & RTN_RTINFO) {
Patrick McHardy2bec5a32010-02-08 05:19:03 +00001553 int err;
1554
Eric Dumazetfa809e22012-06-25 15:37:19 -07001555 if (w->skip) {
1556 w->skip--;
Kumar Sundararajan1c265852014-04-24 09:48:53 -04001557 goto skip;
Patrick McHardy2bec5a32010-02-08 05:19:03 +00001558 }
1559
1560 err = w->func(w);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561 if (err)
1562 return err;
Patrick McHardy2bec5a32010-02-08 05:19:03 +00001563
1564 w->count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565 continue;
1566 }
Kumar Sundararajan1c265852014-04-24 09:48:53 -04001567skip:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568 w->state = FWS_U;
1569 case FWS_U:
1570 if (fn == w->root)
1571 return 0;
1572 pn = fn->parent;
1573 w->node = pn;
1574#ifdef CONFIG_IPV6_SUBTREES
YOSHIFUJI Hideaki7fc33162006-08-23 17:22:24 -07001575 if (FIB6_SUBTREE(pn) == fn) {
Ilpo Järvinen547b7922008-07-25 21:43:18 -07001576 WARN_ON(!(fn->fn_flags & RTN_ROOT));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577 w->state = FWS_L;
1578 continue;
1579 }
1580#endif
1581 if (pn->left == fn) {
1582 w->state = FWS_R;
1583 continue;
1584 }
1585 if (pn->right == fn) {
1586 w->state = FWS_C;
1587 w->leaf = w->node->leaf;
1588 continue;
1589 }
1590#if RT6_DEBUG >= 2
Ilpo Järvinen547b7922008-07-25 21:43:18 -07001591 WARN_ON(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592#endif
1593 }
1594 }
1595}
1596
Michal Kubeček9a03cd82016-03-08 14:44:35 +01001597static int fib6_walk(struct net *net, struct fib6_walker *w)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598{
1599 int res;
1600
1601 w->state = FWS_INIT;
1602 w->node = w->root;
1603
Michal Kubeček9a03cd82016-03-08 14:44:35 +01001604 fib6_walker_link(net, w);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605 res = fib6_walk_continue(w);
1606 if (res <= 0)
Michal Kubeček9a03cd82016-03-08 14:44:35 +01001607 fib6_walker_unlink(net, w);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608 return res;
1609}
1610
Hannes Frederic Sowa94b2cfe2014-10-06 19:58:34 +02001611static int fib6_clean_node(struct fib6_walker *w)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612{
1613 int res;
1614 struct rt6_info *rt;
Hannes Frederic Sowa94b2cfe2014-10-06 19:58:34 +02001615 struct fib6_cleaner *c = container_of(w, struct fib6_cleaner, w);
Benjamin Theryec7d43c2008-03-03 23:31:57 -08001616 struct nl_info info = {
1617 .nl_net = c->net,
1618 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619
Hannes Frederic Sowa327571c2014-10-06 19:58:38 +02001620 if (c->sernum != FIB6_NO_SERNUM_CHANGE &&
1621 w->node->fn_sernum != c->sernum)
1622 w->node->fn_sernum = c->sernum;
1623
1624 if (!c->func) {
1625 WARN_ON_ONCE(c->sernum == FIB6_NO_SERNUM_CHANGE);
1626 w->leaf = NULL;
1627 return 0;
1628 }
1629
Changli Gaod8d1f302010-06-10 23:31:35 -07001630 for (rt = w->leaf; rt; rt = rt->dst.rt6_next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631 res = c->func(rt, c->arg);
1632 if (res < 0) {
1633 w->leaf = rt;
Denis V. Lunev528c4ce2007-12-13 09:45:12 -08001634 res = fib6_del(rt, &info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635 if (res) {
1636#if RT6_DEBUG >= 2
Joe Perches91df42b2012-05-15 14:11:54 +00001637 pr_debug("%s: del failed: rt=%p@%p err=%d\n",
1638 __func__, rt, rt->rt6i_node, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639#endif
1640 continue;
1641 }
1642 return 0;
1643 }
Ilpo Järvinen547b7922008-07-25 21:43:18 -07001644 WARN_ON(res != 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645 }
1646 w->leaf = rt;
1647 return 0;
1648}
1649
1650/*
1651 * Convenient frontend to tree walker.
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001652 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653 * func is called on each route.
1654 * It may return -1 -> delete this route.
1655 * 0 -> continue walking
1656 *
1657 * prune==1 -> only immediate children of node (certainly,
1658 * ignoring pure split nodes) will be scanned.
1659 */
1660
Benjamin Theryec7d43c2008-03-03 23:31:57 -08001661static void fib6_clean_tree(struct net *net, struct fib6_node *root,
Adrian Bunk8ce11e62006-08-07 21:50:48 -07001662 int (*func)(struct rt6_info *, void *arg),
Hannes Frederic Sowa327571c2014-10-06 19:58:38 +02001663 bool prune, int sernum, void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664{
Hannes Frederic Sowa94b2cfe2014-10-06 19:58:34 +02001665 struct fib6_cleaner c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666
1667 c.w.root = root;
1668 c.w.func = fib6_clean_node;
1669 c.w.prune = prune;
Patrick McHardy2bec5a32010-02-08 05:19:03 +00001670 c.w.count = 0;
1671 c.w.skip = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672 c.func = func;
Hannes Frederic Sowa327571c2014-10-06 19:58:38 +02001673 c.sernum = sernum;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674 c.arg = arg;
Benjamin Theryec7d43c2008-03-03 23:31:57 -08001675 c.net = net;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676
Michal Kubeček9a03cd82016-03-08 14:44:35 +01001677 fib6_walk(net, &c.w);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678}
1679
Hannes Frederic Sowa327571c2014-10-06 19:58:38 +02001680static void __fib6_clean_all(struct net *net,
1681 int (*func)(struct rt6_info *, void *),
1682 int sernum, void *arg)
Thomas Grafc71099a2006-08-04 23:20:06 -07001683{
Thomas Grafc71099a2006-08-04 23:20:06 -07001684 struct fib6_table *table;
Daniel Lezcano58f09b72008-03-03 23:25:27 -08001685 struct hlist_head *head;
Patrick McHardy1b43af52006-08-10 23:11:17 -07001686 unsigned int h;
Thomas Grafc71099a2006-08-04 23:20:06 -07001687
Patrick McHardy1b43af52006-08-10 23:11:17 -07001688 rcu_read_lock();
Neil Hormana33bc5c2009-07-30 18:52:15 -07001689 for (h = 0; h < FIB6_TABLE_HASHSZ; h++) {
Daniel Lezcanof3db4852008-03-03 23:27:06 -08001690 head = &net->ipv6.fib_table_hash[h];
Sasha Levinb67bfe02013-02-27 17:06:00 -08001691 hlist_for_each_entry_rcu(table, head, tb6_hlist) {
Thomas Grafc71099a2006-08-04 23:20:06 -07001692 write_lock_bh(&table->tb6_lock);
Benjamin Theryec7d43c2008-03-03 23:31:57 -08001693 fib6_clean_tree(net, &table->tb6_root,
Hannes Frederic Sowa327571c2014-10-06 19:58:38 +02001694 func, false, sernum, arg);
Thomas Grafc71099a2006-08-04 23:20:06 -07001695 write_unlock_bh(&table->tb6_lock);
1696 }
1697 }
Patrick McHardy1b43af52006-08-10 23:11:17 -07001698 rcu_read_unlock();
Thomas Grafc71099a2006-08-04 23:20:06 -07001699}
1700
Hannes Frederic Sowa327571c2014-10-06 19:58:38 +02001701void fib6_clean_all(struct net *net, int (*func)(struct rt6_info *, void *),
1702 void *arg)
1703{
1704 __fib6_clean_all(net, func, FIB6_NO_SERNUM_CHANGE, arg);
1705}
1706
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707static int fib6_prune_clone(struct rt6_info *rt, void *arg)
1708{
1709 if (rt->rt6i_flags & RTF_CACHE) {
1710 RT6_TRACE("pruning clone %p\n", rt);
1711 return -1;
1712 }
1713
1714 return 0;
1715}
1716
Duan Jiong163cd4e2014-05-09 13:31:43 +08001717static void fib6_prune_clones(struct net *net, struct fib6_node *fn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718{
Hannes Frederic Sowa327571c2014-10-06 19:58:38 +02001719 fib6_clean_tree(net, fn, fib6_prune_clone, true,
1720 FIB6_NO_SERNUM_CHANGE, NULL);
Hannes Frederic Sowa705f1c82014-09-28 00:46:06 +02001721}
1722
1723static void fib6_flush_trees(struct net *net)
1724{
Hannes Frederic Sowa812918c2014-10-06 19:58:37 +02001725 int new_sernum = fib6_new_sernum(net);
Hannes Frederic Sowa705f1c82014-09-28 00:46:06 +02001726
Hannes Frederic Sowa327571c2014-10-06 19:58:38 +02001727 __fib6_clean_all(net, NULL, new_sernum, NULL);
Hannes Frederic Sowa705f1c82014-09-28 00:46:06 +02001728}
1729
Linus Torvalds1da177e2005-04-16 15:20:36 -07001730/*
1731 * Garbage collection
1732 */
1733
Michal Kubeček3570df92016-03-08 14:44:25 +01001734struct fib6_gc_args
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735{
1736 int timeout;
1737 int more;
Michal Kubeček3570df92016-03-08 14:44:25 +01001738};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739
1740static int fib6_age(struct rt6_info *rt, void *arg)
1741{
Michal Kubeček3570df92016-03-08 14:44:25 +01001742 struct fib6_gc_args *gc_args = arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743 unsigned long now = jiffies;
1744
1745 /*
1746 * check addrconf expiration here.
1747 * Routes are expired even if they are in use.
1748 *
1749 * Also age clones. Note, that clones are aged out
1750 * only if they are not in use now.
1751 */
1752
David S. Millerd1918542011-12-28 20:19:20 -05001753 if (rt->rt6i_flags & RTF_EXPIRES && rt->dst.expires) {
1754 if (time_after(now, rt->dst.expires)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755 RT6_TRACE("expiring %p\n", rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756 return -1;
1757 }
Michal Kubeček3570df92016-03-08 14:44:25 +01001758 gc_args->more++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759 } else if (rt->rt6i_flags & RTF_CACHE) {
Changli Gaod8d1f302010-06-10 23:31:35 -07001760 if (atomic_read(&rt->dst.__refcnt) == 0 &&
Michal Kubeček3570df92016-03-08 14:44:25 +01001761 time_after_eq(now, rt->dst.lastuse + gc_args->timeout)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762 RT6_TRACE("aging clone %p\n", rt);
1763 return -1;
David S. Miller5339ab82012-01-27 15:14:01 -08001764 } else if (rt->rt6i_flags & RTF_GATEWAY) {
1765 struct neighbour *neigh;
1766 __u8 neigh_flags = 0;
1767
1768 neigh = dst_neigh_lookup(&rt->dst, &rt->rt6i_gateway);
1769 if (neigh) {
1770 neigh_flags = neigh->flags;
1771 neigh_release(neigh);
1772 }
Thomas Graf8bd74512012-06-07 06:51:04 +00001773 if (!(neigh_flags & NTF_ROUTER)) {
David S. Miller5339ab82012-01-27 15:14:01 -08001774 RT6_TRACE("purging route %p via non-router but gateway\n",
1775 rt);
1776 return -1;
1777 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778 }
Michal Kubeček3570df92016-03-08 14:44:25 +01001779 gc_args->more++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780 }
1781
1782 return 0;
1783}
1784
Michal Kubeček2ac3ac82013-08-01 10:04:14 +02001785void fib6_run_gc(unsigned long expires, struct net *net, bool force)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001786{
Michal Kubeček3570df92016-03-08 14:44:25 +01001787 struct fib6_gc_args gc_args;
Michal Kubeček49a18d82013-08-01 10:04:24 +02001788 unsigned long now;
1789
Michal Kubeček2ac3ac82013-08-01 10:04:14 +02001790 if (force) {
Michal Kubeček3dc94f92016-03-08 14:44:45 +01001791 spin_lock_bh(&net->ipv6.fib6_gc_lock);
1792 } else if (!spin_trylock_bh(&net->ipv6.fib6_gc_lock)) {
Michal Kubeček2ac3ac82013-08-01 10:04:14 +02001793 mod_timer(&net->ipv6.ip6_fib_timer, jiffies + HZ);
1794 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795 }
Michal Kubeček2ac3ac82013-08-01 10:04:14 +02001796 gc_args.timeout = expires ? (int)expires :
1797 net->ipv6.sysctl.ip6_rt_gc_interval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001798
Stephen Hemminger3d0f24a2008-07-22 14:35:50 -07001799 gc_args.more = icmp6_dst_gc();
Daniel Lezcanof3db4852008-03-03 23:27:06 -08001800
Michal Kubeček3570df92016-03-08 14:44:25 +01001801 fib6_clean_all(net, fib6_age, &gc_args);
Michal Kubeček49a18d82013-08-01 10:04:24 +02001802 now = jiffies;
1803 net->ipv6.ip6_rt_last_gc = now;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804
1805 if (gc_args.more)
Stephen Hemmingerc8a45222008-07-22 14:34:09 -07001806 mod_timer(&net->ipv6.ip6_fib_timer,
Michal Kubeček49a18d82013-08-01 10:04:24 +02001807 round_jiffies(now
Stephen Hemmingerc8a45222008-07-22 14:34:09 -07001808 + net->ipv6.sysctl.ip6_rt_gc_interval));
Stephen Hemminger417f28b2008-07-22 14:33:45 -07001809 else
1810 del_timer(&net->ipv6.ip6_fib_timer);
Michal Kubeček3dc94f92016-03-08 14:44:45 +01001811 spin_unlock_bh(&net->ipv6.fib6_gc_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812}
1813
Daniel Lezcano5b7c9312008-03-03 23:28:58 -08001814static void fib6_gc_timer_cb(unsigned long arg)
1815{
Michal Kubeček2ac3ac82013-08-01 10:04:14 +02001816 fib6_run_gc(0, (struct net *)arg, true);
Daniel Lezcano5b7c9312008-03-03 23:28:58 -08001817}
1818
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00001819static int __net_init fib6_net_init(struct net *net)
Daniel Lezcano58f09b72008-03-03 23:25:27 -08001820{
Eric Dumazet10da66f2010-10-13 08:22:03 +00001821 size_t size = sizeof(struct hlist_head) * FIB6_TABLE_HASHSZ;
1822
Michal Kubeček3dc94f92016-03-08 14:44:45 +01001823 spin_lock_init(&net->ipv6.fib6_gc_lock);
Michal Kubeček9a03cd82016-03-08 14:44:35 +01001824 rwlock_init(&net->ipv6.fib6_walker_lock);
1825 INIT_LIST_HEAD(&net->ipv6.fib6_walkers);
Stephen Hemminger417f28b2008-07-22 14:33:45 -07001826 setup_timer(&net->ipv6.ip6_fib_timer, fib6_gc_timer_cb, (unsigned long)net);
Daniel Lezcano63152fc2008-03-03 23:31:11 -08001827
Benjamin Theryc5728722008-03-03 23:34:17 -08001828 net->ipv6.rt6_stats = kzalloc(sizeof(*net->ipv6.rt6_stats), GFP_KERNEL);
1829 if (!net->ipv6.rt6_stats)
1830 goto out_timer;
1831
Eric Dumazet10da66f2010-10-13 08:22:03 +00001832 /* Avoid false sharing : Use at least a full cache line */
1833 size = max_t(size_t, size, L1_CACHE_BYTES);
1834
1835 net->ipv6.fib_table_hash = kzalloc(size, GFP_KERNEL);
Daniel Lezcano58f09b72008-03-03 23:25:27 -08001836 if (!net->ipv6.fib_table_hash)
Benjamin Theryc5728722008-03-03 23:34:17 -08001837 goto out_rt6_stats;
Daniel Lezcano58f09b72008-03-03 23:25:27 -08001838
1839 net->ipv6.fib6_main_tbl = kzalloc(sizeof(*net->ipv6.fib6_main_tbl),
1840 GFP_KERNEL);
1841 if (!net->ipv6.fib6_main_tbl)
1842 goto out_fib_table_hash;
1843
1844 net->ipv6.fib6_main_tbl->tb6_id = RT6_TABLE_MAIN;
Daniel Lezcano8ed67782008-03-04 13:48:30 -08001845 net->ipv6.fib6_main_tbl->tb6_root.leaf = net->ipv6.ip6_null_entry;
Daniel Lezcano58f09b72008-03-03 23:25:27 -08001846 net->ipv6.fib6_main_tbl->tb6_root.fn_flags =
1847 RTN_ROOT | RTN_TL_ROOT | RTN_RTINFO;
David S. Miller8e773272012-06-11 00:01:52 -07001848 inet_peer_base_init(&net->ipv6.fib6_main_tbl->tb6_peers);
Daniel Lezcano58f09b72008-03-03 23:25:27 -08001849
1850#ifdef CONFIG_IPV6_MULTIPLE_TABLES
1851 net->ipv6.fib6_local_tbl = kzalloc(sizeof(*net->ipv6.fib6_local_tbl),
1852 GFP_KERNEL);
1853 if (!net->ipv6.fib6_local_tbl)
1854 goto out_fib6_main_tbl;
1855 net->ipv6.fib6_local_tbl->tb6_id = RT6_TABLE_LOCAL;
Daniel Lezcano8ed67782008-03-04 13:48:30 -08001856 net->ipv6.fib6_local_tbl->tb6_root.leaf = net->ipv6.ip6_null_entry;
Daniel Lezcano58f09b72008-03-03 23:25:27 -08001857 net->ipv6.fib6_local_tbl->tb6_root.fn_flags =
1858 RTN_ROOT | RTN_TL_ROOT | RTN_RTINFO;
David S. Miller8e773272012-06-11 00:01:52 -07001859 inet_peer_base_init(&net->ipv6.fib6_local_tbl->tb6_peers);
Daniel Lezcano58f09b72008-03-03 23:25:27 -08001860#endif
1861 fib6_tables_init(net);
1862
Stephen Hemminger417f28b2008-07-22 14:33:45 -07001863 return 0;
Daniel Lezcano58f09b72008-03-03 23:25:27 -08001864
1865#ifdef CONFIG_IPV6_MULTIPLE_TABLES
1866out_fib6_main_tbl:
1867 kfree(net->ipv6.fib6_main_tbl);
1868#endif
1869out_fib_table_hash:
1870 kfree(net->ipv6.fib_table_hash);
Benjamin Theryc5728722008-03-03 23:34:17 -08001871out_rt6_stats:
1872 kfree(net->ipv6.rt6_stats);
Daniel Lezcano63152fc2008-03-03 23:31:11 -08001873out_timer:
Stephen Hemminger417f28b2008-07-22 14:33:45 -07001874 return -ENOMEM;
Wang Yufen8db46f12014-03-28 12:07:02 +08001875}
Daniel Lezcano58f09b72008-03-03 23:25:27 -08001876
1877static void fib6_net_exit(struct net *net)
1878{
Daniel Lezcano8ed67782008-03-04 13:48:30 -08001879 rt6_ifdown(net, NULL);
Stephen Hemminger417f28b2008-07-22 14:33:45 -07001880 del_timer_sync(&net->ipv6.ip6_fib_timer);
1881
Daniel Lezcano58f09b72008-03-03 23:25:27 -08001882#ifdef CONFIG_IPV6_MULTIPLE_TABLES
David S. Miller8e773272012-06-11 00:01:52 -07001883 inetpeer_invalidate_tree(&net->ipv6.fib6_local_tbl->tb6_peers);
Daniel Lezcano58f09b72008-03-03 23:25:27 -08001884 kfree(net->ipv6.fib6_local_tbl);
1885#endif
David S. Miller8e773272012-06-11 00:01:52 -07001886 inetpeer_invalidate_tree(&net->ipv6.fib6_main_tbl->tb6_peers);
Daniel Lezcano58f09b72008-03-03 23:25:27 -08001887 kfree(net->ipv6.fib6_main_tbl);
1888 kfree(net->ipv6.fib_table_hash);
Benjamin Theryc5728722008-03-03 23:34:17 -08001889 kfree(net->ipv6.rt6_stats);
Daniel Lezcano58f09b72008-03-03 23:25:27 -08001890}
1891
1892static struct pernet_operations fib6_net_ops = {
1893 .init = fib6_net_init,
1894 .exit = fib6_net_exit,
1895};
1896
Daniel Lezcanod63bddb2007-12-07 00:40:34 -08001897int __init fib6_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001898{
Daniel Lezcanoe0b855902008-03-03 23:24:31 -08001899 int ret = -ENOMEM;
Daniel Lezcano63152fc2008-03-03 23:31:11 -08001900
Linus Torvalds1da177e2005-04-16 15:20:36 -07001901 fib6_node_kmem = kmem_cache_create("fib6_nodes",
1902 sizeof(struct fib6_node),
Daniel Lezcanof845ab62007-12-07 00:45:16 -08001903 0, SLAB_HWCACHE_ALIGN,
Paul Mundt20c2df82007-07-20 10:11:58 +09001904 NULL);
Daniel Lezcanof845ab62007-12-07 00:45:16 -08001905 if (!fib6_node_kmem)
Daniel Lezcanoe0b855902008-03-03 23:24:31 -08001906 goto out;
1907
Daniel Lezcano58f09b72008-03-03 23:25:27 -08001908 ret = register_pernet_subsys(&fib6_net_ops);
1909 if (ret)
Benjamin Theryc5728722008-03-03 23:34:17 -08001910 goto out_kmem_cache_create;
David S. Millere8803b62012-06-16 01:12:19 -07001911
1912 ret = __rtnl_register(PF_INET6, RTM_GETROUTE, NULL, inet6_dump_fib,
1913 NULL);
1914 if (ret)
1915 goto out_unregister_subsys;
Hannes Frederic Sowa705f1c82014-09-28 00:46:06 +02001916
1917 __fib6_flush_trees = fib6_flush_trees;
Daniel Lezcanod63bddb2007-12-07 00:40:34 -08001918out:
1919 return ret;
1920
David S. Millere8803b62012-06-16 01:12:19 -07001921out_unregister_subsys:
1922 unregister_pernet_subsys(&fib6_net_ops);
Daniel Lezcanod63bddb2007-12-07 00:40:34 -08001923out_kmem_cache_create:
1924 kmem_cache_destroy(fib6_node_kmem);
1925 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001926}
1927
1928void fib6_gc_cleanup(void)
1929{
Daniel Lezcano58f09b72008-03-03 23:25:27 -08001930 unregister_pernet_subsys(&fib6_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931 kmem_cache_destroy(fib6_node_kmem);
1932}
Hannes Frederic Sowa8d2ca1d2013-09-21 16:55:59 +02001933
1934#ifdef CONFIG_PROC_FS
1935
1936struct ipv6_route_iter {
1937 struct seq_net_private p;
Hannes Frederic Sowa94b2cfe2014-10-06 19:58:34 +02001938 struct fib6_walker w;
Hannes Frederic Sowa8d2ca1d2013-09-21 16:55:59 +02001939 loff_t skip;
1940 struct fib6_table *tbl;
Hannes Frederic Sowa42b18702014-10-06 19:58:35 +02001941 int sernum;
Hannes Frederic Sowa8d2ca1d2013-09-21 16:55:59 +02001942};
1943
1944static int ipv6_route_seq_show(struct seq_file *seq, void *v)
1945{
1946 struct rt6_info *rt = v;
1947 struct ipv6_route_iter *iter = seq->private;
1948
1949 seq_printf(seq, "%pi6 %02x ", &rt->rt6i_dst.addr, rt->rt6i_dst.plen);
1950
1951#ifdef CONFIG_IPV6_SUBTREES
1952 seq_printf(seq, "%pi6 %02x ", &rt->rt6i_src.addr, rt->rt6i_src.plen);
1953#else
1954 seq_puts(seq, "00000000000000000000000000000000 00 ");
1955#endif
1956 if (rt->rt6i_flags & RTF_GATEWAY)
1957 seq_printf(seq, "%pi6", &rt->rt6i_gateway);
1958 else
1959 seq_puts(seq, "00000000000000000000000000000000");
1960
1961 seq_printf(seq, " %08x %08x %08x %08x %8s\n",
1962 rt->rt6i_metric, atomic_read(&rt->dst.__refcnt),
1963 rt->dst.__use, rt->rt6i_flags,
1964 rt->dst.dev ? rt->dst.dev->name : "");
1965 iter->w.leaf = NULL;
1966 return 0;
1967}
1968
Hannes Frederic Sowa94b2cfe2014-10-06 19:58:34 +02001969static int ipv6_route_yield(struct fib6_walker *w)
Hannes Frederic Sowa8d2ca1d2013-09-21 16:55:59 +02001970{
1971 struct ipv6_route_iter *iter = w->args;
1972
1973 if (!iter->skip)
1974 return 1;
1975
1976 do {
1977 iter->w.leaf = iter->w.leaf->dst.rt6_next;
1978 iter->skip--;
1979 if (!iter->skip && iter->w.leaf)
1980 return 1;
1981 } while (iter->w.leaf);
1982
1983 return 0;
1984}
1985
Michal Kubeček9a03cd82016-03-08 14:44:35 +01001986static void ipv6_route_seq_setup_walk(struct ipv6_route_iter *iter,
1987 struct net *net)
Hannes Frederic Sowa8d2ca1d2013-09-21 16:55:59 +02001988{
1989 memset(&iter->w, 0, sizeof(iter->w));
1990 iter->w.func = ipv6_route_yield;
1991 iter->w.root = &iter->tbl->tb6_root;
1992 iter->w.state = FWS_INIT;
1993 iter->w.node = iter->w.root;
1994 iter->w.args = iter;
Hannes Frederic Sowa0a67d3e2013-09-21 16:56:10 +02001995 iter->sernum = iter->w.root->fn_sernum;
Hannes Frederic Sowa8d2ca1d2013-09-21 16:55:59 +02001996 INIT_LIST_HEAD(&iter->w.lh);
Michal Kubeček9a03cd82016-03-08 14:44:35 +01001997 fib6_walker_link(net, &iter->w);
Hannes Frederic Sowa8d2ca1d2013-09-21 16:55:59 +02001998}
1999
2000static struct fib6_table *ipv6_route_seq_next_table(struct fib6_table *tbl,
2001 struct net *net)
2002{
2003 unsigned int h;
2004 struct hlist_node *node;
2005
2006 if (tbl) {
2007 h = (tbl->tb6_id & (FIB6_TABLE_HASHSZ - 1)) + 1;
2008 node = rcu_dereference_bh(hlist_next_rcu(&tbl->tb6_hlist));
2009 } else {
2010 h = 0;
2011 node = NULL;
2012 }
2013
2014 while (!node && h < FIB6_TABLE_HASHSZ) {
2015 node = rcu_dereference_bh(
2016 hlist_first_rcu(&net->ipv6.fib_table_hash[h++]));
2017 }
2018 return hlist_entry_safe(node, struct fib6_table, tb6_hlist);
2019}
2020
Hannes Frederic Sowa0a67d3e2013-09-21 16:56:10 +02002021static void ipv6_route_check_sernum(struct ipv6_route_iter *iter)
2022{
2023 if (iter->sernum != iter->w.root->fn_sernum) {
2024 iter->sernum = iter->w.root->fn_sernum;
2025 iter->w.state = FWS_INIT;
2026 iter->w.node = iter->w.root;
2027 WARN_ON(iter->w.skip);
2028 iter->w.skip = iter->w.count;
2029 }
2030}
2031
Hannes Frederic Sowa8d2ca1d2013-09-21 16:55:59 +02002032static void *ipv6_route_seq_next(struct seq_file *seq, void *v, loff_t *pos)
2033{
2034 int r;
2035 struct rt6_info *n;
2036 struct net *net = seq_file_net(seq);
2037 struct ipv6_route_iter *iter = seq->private;
2038
2039 if (!v)
2040 goto iter_table;
2041
2042 n = ((struct rt6_info *)v)->dst.rt6_next;
2043 if (n) {
2044 ++*pos;
2045 return n;
2046 }
2047
2048iter_table:
Hannes Frederic Sowa0a67d3e2013-09-21 16:56:10 +02002049 ipv6_route_check_sernum(iter);
Hannes Frederic Sowa8d2ca1d2013-09-21 16:55:59 +02002050 read_lock(&iter->tbl->tb6_lock);
2051 r = fib6_walk_continue(&iter->w);
2052 read_unlock(&iter->tbl->tb6_lock);
2053 if (r > 0) {
2054 if (v)
2055 ++*pos;
2056 return iter->w.leaf;
2057 } else if (r < 0) {
Michal Kubeček9a03cd82016-03-08 14:44:35 +01002058 fib6_walker_unlink(net, &iter->w);
Hannes Frederic Sowa8d2ca1d2013-09-21 16:55:59 +02002059 return NULL;
2060 }
Michal Kubeček9a03cd82016-03-08 14:44:35 +01002061 fib6_walker_unlink(net, &iter->w);
Hannes Frederic Sowa8d2ca1d2013-09-21 16:55:59 +02002062
2063 iter->tbl = ipv6_route_seq_next_table(iter->tbl, net);
2064 if (!iter->tbl)
2065 return NULL;
2066
Michal Kubeček9a03cd82016-03-08 14:44:35 +01002067 ipv6_route_seq_setup_walk(iter, net);
Hannes Frederic Sowa8d2ca1d2013-09-21 16:55:59 +02002068 goto iter_table;
2069}
2070
2071static void *ipv6_route_seq_start(struct seq_file *seq, loff_t *pos)
2072 __acquires(RCU_BH)
2073{
2074 struct net *net = seq_file_net(seq);
2075 struct ipv6_route_iter *iter = seq->private;
2076
2077 rcu_read_lock_bh();
2078 iter->tbl = ipv6_route_seq_next_table(NULL, net);
2079 iter->skip = *pos;
2080
2081 if (iter->tbl) {
Michal Kubeček9a03cd82016-03-08 14:44:35 +01002082 ipv6_route_seq_setup_walk(iter, net);
Hannes Frederic Sowa8d2ca1d2013-09-21 16:55:59 +02002083 return ipv6_route_seq_next(seq, NULL, pos);
2084 } else {
2085 return NULL;
2086 }
2087}
2088
2089static bool ipv6_route_iter_active(struct ipv6_route_iter *iter)
2090{
Hannes Frederic Sowa94b2cfe2014-10-06 19:58:34 +02002091 struct fib6_walker *w = &iter->w;
Hannes Frederic Sowa8d2ca1d2013-09-21 16:55:59 +02002092 return w->node && !(w->state == FWS_U && w->node == w->root);
2093}
2094
2095static void ipv6_route_seq_stop(struct seq_file *seq, void *v)
2096 __releases(RCU_BH)
2097{
Michal Kubeček9a03cd82016-03-08 14:44:35 +01002098 struct net *net = seq_file_net(seq);
Hannes Frederic Sowa8d2ca1d2013-09-21 16:55:59 +02002099 struct ipv6_route_iter *iter = seq->private;
2100
2101 if (ipv6_route_iter_active(iter))
Michal Kubeček9a03cd82016-03-08 14:44:35 +01002102 fib6_walker_unlink(net, &iter->w);
Hannes Frederic Sowa8d2ca1d2013-09-21 16:55:59 +02002103
2104 rcu_read_unlock_bh();
2105}
2106
2107static const struct seq_operations ipv6_route_seq_ops = {
2108 .start = ipv6_route_seq_start,
2109 .next = ipv6_route_seq_next,
2110 .stop = ipv6_route_seq_stop,
2111 .show = ipv6_route_seq_show
2112};
2113
2114int ipv6_route_open(struct inode *inode, struct file *file)
2115{
2116 return seq_open_net(inode, file, &ipv6_route_seq_ops,
2117 sizeof(struct ipv6_route_iter));
2118}
2119
2120#endif /* CONFIG_PROC_FS */