blob: 85c7e250c7a8f3212440a5fd3fd2715f8af259e5 [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
Wei Wang7f8f23f2017-08-21 09:47:10 -0700151static void node_free_immediate(struct fib6_node *fn)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152{
153 kmem_cache_free(fib6_node_kmem, fn);
154}
155
Wei Wang7f8f23f2017-08-21 09:47:10 -0700156static void node_free_rcu(struct rcu_head *head)
157{
158 struct fib6_node *fn = container_of(head, struct fib6_node, rcu);
159
160 kmem_cache_free(fib6_node_kmem, fn);
161}
162
163static void node_free(struct fib6_node *fn)
164{
165 call_rcu(&fn->rcu, node_free_rcu);
166}
167
Martin KaFai Lau70da5b52015-09-15 14:30:09 -0700168static void rt6_rcu_free(struct rt6_info *rt)
169{
170 call_rcu(&rt->dst.rcu_head, dst_rcu_free);
171}
172
Martin KaFai Laud52d3992015-05-22 20:56:06 -0700173static void rt6_free_pcpu(struct rt6_info *non_pcpu_rt)
174{
175 int cpu;
176
177 if (!non_pcpu_rt->rt6i_pcpu)
178 return;
179
180 for_each_possible_cpu(cpu) {
181 struct rt6_info **ppcpu_rt;
182 struct rt6_info *pcpu_rt;
183
184 ppcpu_rt = per_cpu_ptr(non_pcpu_rt->rt6i_pcpu, cpu);
185 pcpu_rt = *ppcpu_rt;
186 if (pcpu_rt) {
Martin KaFai Lau70da5b52015-09-15 14:30:09 -0700187 rt6_rcu_free(pcpu_rt);
Martin KaFai Laud52d3992015-05-22 20:56:06 -0700188 *ppcpu_rt = NULL;
189 }
190 }
Martin KaFai Lau9c7370a2015-08-14 11:05:54 -0700191
Martin KaFai Lau903ce4a2016-07-05 12:10:23 -0700192 free_percpu(non_pcpu_rt->rt6i_pcpu);
Martin KaFai Lau9c7370a2015-08-14 11:05:54 -0700193 non_pcpu_rt->rt6i_pcpu = NULL;
Martin KaFai Laud52d3992015-05-22 20:56:06 -0700194}
195
Hannes Frederic Sowa94b2cfe2014-10-06 19:58:34 +0200196static void rt6_release(struct rt6_info *rt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197{
Martin KaFai Laud52d3992015-05-22 20:56:06 -0700198 if (atomic_dec_and_test(&rt->rt6i_ref)) {
199 rt6_free_pcpu(rt);
Martin KaFai Lau70da5b52015-09-15 14:30:09 -0700200 rt6_rcu_free(rt);
Martin KaFai Laud52d3992015-05-22 20:56:06 -0700201 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202}
203
Sabrina Dubrocac9335db2017-09-08 10:26:19 +0200204static void fib6_free_table(struct fib6_table *table)
205{
206 inetpeer_invalidate_tree(&table->tb6_peers);
207 kfree(table);
208}
209
Daniel Lezcano58f09b72008-03-03 23:25:27 -0800210static void fib6_link_table(struct net *net, struct fib6_table *tb)
Patrick McHardy1b43af52006-08-10 23:11:17 -0700211{
212 unsigned int h;
213
Thomas Graf375216a2006-10-21 20:20:54 -0700214 /*
215 * Initialize table lock at a single place to give lockdep a key,
216 * tables aren't visible prior to being linked to the list.
217 */
218 rwlock_init(&tb->tb6_lock);
219
Neil Hormana33bc5c2009-07-30 18:52:15 -0700220 h = tb->tb6_id & (FIB6_TABLE_HASHSZ - 1);
Patrick McHardy1b43af52006-08-10 23:11:17 -0700221
222 /*
223 * No protection necessary, this is the only list mutatation
224 * operation, tables never disappear once they exist.
225 */
Daniel Lezcano58f09b72008-03-03 23:25:27 -0800226 hlist_add_head_rcu(&tb->tb6_hlist, &net->ipv6.fib_table_hash[h]);
Patrick McHardy1b43af52006-08-10 23:11:17 -0700227}
228
229#ifdef CONFIG_IPV6_MULTIPLE_TABLES
Daniel Lezcanoe0b855902008-03-03 23:24:31 -0800230
Daniel Lezcano8ed67782008-03-04 13:48:30 -0800231static struct fib6_table *fib6_alloc_table(struct net *net, u32 id)
Thomas Grafc71099a2006-08-04 23:20:06 -0700232{
233 struct fib6_table *table;
234
235 table = kzalloc(sizeof(*table), GFP_ATOMIC);
David S. Miller507c9b12011-12-03 17:50:45 -0500236 if (table) {
Thomas Grafc71099a2006-08-04 23:20:06 -0700237 table->tb6_id = id;
Daniel Lezcano8ed67782008-03-04 13:48:30 -0800238 table->tb6_root.leaf = net->ipv6.ip6_null_entry;
Thomas Grafc71099a2006-08-04 23:20:06 -0700239 table->tb6_root.fn_flags = RTN_ROOT | RTN_TL_ROOT | RTN_RTINFO;
David S. Miller8e773272012-06-11 00:01:52 -0700240 inet_peer_base_init(&table->tb6_peers);
Thomas Grafc71099a2006-08-04 23:20:06 -0700241 }
242
243 return table;
244}
245
Daniel Lezcano58f09b72008-03-03 23:25:27 -0800246struct fib6_table *fib6_new_table(struct net *net, u32 id)
Thomas Grafc71099a2006-08-04 23:20:06 -0700247{
248 struct fib6_table *tb;
249
250 if (id == 0)
251 id = RT6_TABLE_MAIN;
Daniel Lezcano58f09b72008-03-03 23:25:27 -0800252 tb = fib6_get_table(net, id);
Thomas Grafc71099a2006-08-04 23:20:06 -0700253 if (tb)
254 return tb;
255
Daniel Lezcano8ed67782008-03-04 13:48:30 -0800256 tb = fib6_alloc_table(net, id);
David S. Miller507c9b12011-12-03 17:50:45 -0500257 if (tb)
Daniel Lezcano58f09b72008-03-03 23:25:27 -0800258 fib6_link_table(net, tb);
Thomas Grafc71099a2006-08-04 23:20:06 -0700259
260 return tb;
261}
David Ahernb3b46632016-05-04 21:46:12 -0700262EXPORT_SYMBOL_GPL(fib6_new_table);
Thomas Grafc71099a2006-08-04 23:20:06 -0700263
Daniel Lezcano58f09b72008-03-03 23:25:27 -0800264struct fib6_table *fib6_get_table(struct net *net, u32 id)
Thomas Grafc71099a2006-08-04 23:20:06 -0700265{
266 struct fib6_table *tb;
Daniel Lezcano58f09b72008-03-03 23:25:27 -0800267 struct hlist_head *head;
Thomas Grafc71099a2006-08-04 23:20:06 -0700268 unsigned int h;
269
270 if (id == 0)
271 id = RT6_TABLE_MAIN;
Neil Hormana33bc5c2009-07-30 18:52:15 -0700272 h = id & (FIB6_TABLE_HASHSZ - 1);
Thomas Grafc71099a2006-08-04 23:20:06 -0700273 rcu_read_lock();
Daniel Lezcano58f09b72008-03-03 23:25:27 -0800274 head = &net->ipv6.fib_table_hash[h];
Sasha Levinb67bfe02013-02-27 17:06:00 -0800275 hlist_for_each_entry_rcu(tb, head, tb6_hlist) {
Thomas Grafc71099a2006-08-04 23:20:06 -0700276 if (tb->tb6_id == id) {
277 rcu_read_unlock();
278 return tb;
279 }
280 }
281 rcu_read_unlock();
282
283 return NULL;
284}
David Ahernc4850682015-10-12 11:47:08 -0700285EXPORT_SYMBOL_GPL(fib6_get_table);
Thomas Grafc71099a2006-08-04 23:20:06 -0700286
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +0000287static void __net_init fib6_tables_init(struct net *net)
Thomas Grafc71099a2006-08-04 23:20:06 -0700288{
Daniel Lezcano58f09b72008-03-03 23:25:27 -0800289 fib6_link_table(net, net->ipv6.fib6_main_tbl);
290 fib6_link_table(net, net->ipv6.fib6_local_tbl);
Thomas Grafc71099a2006-08-04 23:20:06 -0700291}
Thomas Grafc71099a2006-08-04 23:20:06 -0700292#else
293
Daniel Lezcano58f09b72008-03-03 23:25:27 -0800294struct fib6_table *fib6_new_table(struct net *net, u32 id)
Thomas Grafc71099a2006-08-04 23:20:06 -0700295{
Daniel Lezcano58f09b72008-03-03 23:25:27 -0800296 return fib6_get_table(net, id);
Thomas Grafc71099a2006-08-04 23:20:06 -0700297}
298
Daniel Lezcano58f09b72008-03-03 23:25:27 -0800299struct fib6_table *fib6_get_table(struct net *net, u32 id)
Thomas Grafc71099a2006-08-04 23:20:06 -0700300{
Daniel Lezcano58f09b72008-03-03 23:25:27 -0800301 return net->ipv6.fib6_main_tbl;
Thomas Grafc71099a2006-08-04 23:20:06 -0700302}
303
David S. Miller4c9483b2011-03-12 16:22:43 -0500304struct dst_entry *fib6_rule_lookup(struct net *net, struct flowi6 *fl6,
Daniel Lezcano58f09b72008-03-03 23:25:27 -0800305 int flags, pol_lookup_t lookup)
Thomas Grafc71099a2006-08-04 23:20:06 -0700306{
lucienab997ad2015-10-23 15:36:53 +0800307 struct rt6_info *rt;
308
309 rt = lookup(net, net->ipv6.fib6_main_tbl, fl6, flags);
Serhey Popovychb9ca9b02017-06-20 13:29:25 +0300310 if (rt->dst.error == -EAGAIN) {
lucienab997ad2015-10-23 15:36:53 +0800311 ip6_rt_put(rt);
312 rt = net->ipv6.ip6_null_entry;
313 dst_hold(&rt->dst);
314 }
315
316 return &rt->dst;
Thomas Grafc71099a2006-08-04 23:20:06 -0700317}
318
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +0000319static void __net_init fib6_tables_init(struct net *net)
Thomas Grafc71099a2006-08-04 23:20:06 -0700320{
Daniel Lezcano58f09b72008-03-03 23:25:27 -0800321 fib6_link_table(net, net->ipv6.fib6_main_tbl);
Thomas Grafc71099a2006-08-04 23:20:06 -0700322}
323
324#endif
325
Hannes Frederic Sowa94b2cfe2014-10-06 19:58:34 +0200326static int fib6_dump_node(struct fib6_walker *w)
Patrick McHardy1b43af52006-08-10 23:11:17 -0700327{
328 int res;
329 struct rt6_info *rt;
330
Changli Gaod8d1f302010-06-10 23:31:35 -0700331 for (rt = w->leaf; rt; rt = rt->dst.rt6_next) {
Patrick McHardy1b43af52006-08-10 23:11:17 -0700332 res = rt6_dump_route(rt, w->args);
333 if (res < 0) {
334 /* Frame is full, suspend walking */
335 w->leaf = rt;
336 return 1;
337 }
Patrick McHardy1b43af52006-08-10 23:11:17 -0700338 }
339 w->leaf = NULL;
340 return 0;
341}
342
343static void fib6_dump_end(struct netlink_callback *cb)
344{
Michal Kubeček9a03cd82016-03-08 14:44:35 +0100345 struct net *net = sock_net(cb->skb->sk);
Hannes Frederic Sowa94b2cfe2014-10-06 19:58:34 +0200346 struct fib6_walker *w = (void *)cb->args[2];
Patrick McHardy1b43af52006-08-10 23:11:17 -0700347
348 if (w) {
Herbert Xu7891cc82009-01-13 22:17:51 -0800349 if (cb->args[4]) {
350 cb->args[4] = 0;
Michal Kubeček9a03cd82016-03-08 14:44:35 +0100351 fib6_walker_unlink(net, w);
Herbert Xu7891cc82009-01-13 22:17:51 -0800352 }
Patrick McHardy1b43af52006-08-10 23:11:17 -0700353 cb->args[2] = 0;
354 kfree(w);
355 }
Wang Yufen437de072014-03-28 12:07:04 +0800356 cb->done = (void *)cb->args[3];
Patrick McHardy1b43af52006-08-10 23:11:17 -0700357 cb->args[1] = 3;
358}
359
360static int fib6_dump_done(struct netlink_callback *cb)
361{
362 fib6_dump_end(cb);
363 return cb->done ? cb->done(cb) : 0;
364}
365
366static int fib6_dump_table(struct fib6_table *table, struct sk_buff *skb,
367 struct netlink_callback *cb)
368{
Michal Kubeček9a03cd82016-03-08 14:44:35 +0100369 struct net *net = sock_net(skb->sk);
Hannes Frederic Sowa94b2cfe2014-10-06 19:58:34 +0200370 struct fib6_walker *w;
Patrick McHardy1b43af52006-08-10 23:11:17 -0700371 int res;
372
373 w = (void *)cb->args[2];
374 w->root = &table->tb6_root;
375
376 if (cb->args[4] == 0) {
Patrick McHardy2bec5a32010-02-08 05:19:03 +0000377 w->count = 0;
378 w->skip = 0;
379
Patrick McHardy1b43af52006-08-10 23:11:17 -0700380 read_lock_bh(&table->tb6_lock);
Michal Kubeček9a03cd82016-03-08 14:44:35 +0100381 res = fib6_walk(net, w);
Patrick McHardy1b43af52006-08-10 23:11:17 -0700382 read_unlock_bh(&table->tb6_lock);
Patrick McHardy2bec5a32010-02-08 05:19:03 +0000383 if (res > 0) {
Patrick McHardy1b43af52006-08-10 23:11:17 -0700384 cb->args[4] = 1;
Patrick McHardy2bec5a32010-02-08 05:19:03 +0000385 cb->args[5] = w->root->fn_sernum;
386 }
Patrick McHardy1b43af52006-08-10 23:11:17 -0700387 } else {
Patrick McHardy2bec5a32010-02-08 05:19:03 +0000388 if (cb->args[5] != w->root->fn_sernum) {
389 /* Begin at the root if the tree changed */
390 cb->args[5] = w->root->fn_sernum;
391 w->state = FWS_INIT;
392 w->node = w->root;
393 w->skip = w->count;
394 } else
395 w->skip = 0;
396
Patrick McHardy1b43af52006-08-10 23:11:17 -0700397 read_lock_bh(&table->tb6_lock);
398 res = fib6_walk_continue(w);
399 read_unlock_bh(&table->tb6_lock);
Herbert Xu7891cc82009-01-13 22:17:51 -0800400 if (res <= 0) {
Michal Kubeček9a03cd82016-03-08 14:44:35 +0100401 fib6_walker_unlink(net, w);
Herbert Xu7891cc82009-01-13 22:17:51 -0800402 cb->args[4] = 0;
Patrick McHardy1b43af52006-08-10 23:11:17 -0700403 }
Patrick McHardy1b43af52006-08-10 23:11:17 -0700404 }
Herbert Xu7891cc82009-01-13 22:17:51 -0800405
Patrick McHardy1b43af52006-08-10 23:11:17 -0700406 return res;
407}
408
Thomas Grafc127ea22007-03-22 11:58:32 -0700409static int inet6_dump_fib(struct sk_buff *skb, struct netlink_callback *cb)
Patrick McHardy1b43af52006-08-10 23:11:17 -0700410{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900411 struct net *net = sock_net(skb->sk);
Patrick McHardy1b43af52006-08-10 23:11:17 -0700412 unsigned int h, s_h;
413 unsigned int e = 0, s_e;
414 struct rt6_rtnl_dump_arg arg;
Hannes Frederic Sowa94b2cfe2014-10-06 19:58:34 +0200415 struct fib6_walker *w;
Patrick McHardy1b43af52006-08-10 23:11:17 -0700416 struct fib6_table *tb;
Daniel Lezcano58f09b72008-03-03 23:25:27 -0800417 struct hlist_head *head;
Patrick McHardy1b43af52006-08-10 23:11:17 -0700418 int res = 0;
419
420 s_h = cb->args[0];
421 s_e = cb->args[1];
422
423 w = (void *)cb->args[2];
David S. Miller507c9b12011-12-03 17:50:45 -0500424 if (!w) {
Patrick McHardy1b43af52006-08-10 23:11:17 -0700425 /* New dump:
426 *
427 * 1. hook callback destructor.
428 */
429 cb->args[3] = (long)cb->done;
430 cb->done = fib6_dump_done;
431
432 /*
433 * 2. allocate and initialize walker.
434 */
435 w = kzalloc(sizeof(*w), GFP_ATOMIC);
David S. Miller507c9b12011-12-03 17:50:45 -0500436 if (!w)
Patrick McHardy1b43af52006-08-10 23:11:17 -0700437 return -ENOMEM;
438 w->func = fib6_dump_node;
439 cb->args[2] = (long)w;
440 }
441
442 arg.skb = skb;
443 arg.cb = cb;
Brian Haley191cd582008-08-14 15:33:21 -0700444 arg.net = net;
Patrick McHardy1b43af52006-08-10 23:11:17 -0700445 w->args = &arg;
446
Eric Dumazete67f88d2011-04-27 22:56:07 +0000447 rcu_read_lock();
Neil Hormana33bc5c2009-07-30 18:52:15 -0700448 for (h = s_h; h < FIB6_TABLE_HASHSZ; h++, s_e = 0) {
Patrick McHardy1b43af52006-08-10 23:11:17 -0700449 e = 0;
Daniel Lezcano58f09b72008-03-03 23:25:27 -0800450 head = &net->ipv6.fib_table_hash[h];
Sasha Levinb67bfe02013-02-27 17:06:00 -0800451 hlist_for_each_entry_rcu(tb, head, tb6_hlist) {
Patrick McHardy1b43af52006-08-10 23:11:17 -0700452 if (e < s_e)
453 goto next;
454 res = fib6_dump_table(tb, skb, cb);
455 if (res != 0)
456 goto out;
457next:
458 e++;
459 }
460 }
461out:
Eric Dumazete67f88d2011-04-27 22:56:07 +0000462 rcu_read_unlock();
Patrick McHardy1b43af52006-08-10 23:11:17 -0700463 cb->args[1] = e;
464 cb->args[0] = h;
465
466 res = res < 0 ? res : skb->len;
467 if (res <= 0)
468 fib6_dump_end(cb);
469 return res;
470}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471
472/*
473 * Routing Table
474 *
475 * return the appropriate node for a routing tree "add" operation
476 * by either creating and inserting or by returning an existing
477 * node.
478 */
479
fan.du9225b232013-07-22 14:21:09 +0800480static struct fib6_node *fib6_add_1(struct fib6_node *root,
481 struct in6_addr *addr, int plen,
Matti Vaittinen4a287eb2011-11-14 00:15:14 +0000482 int offset, int allow_create,
Hannes Frederic Sowac8c4d422014-10-06 19:58:36 +0200483 int replace_required, int sernum)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484{
485 struct fib6_node *fn, *in, *ln;
486 struct fib6_node *pn = NULL;
487 struct rt6key *key;
488 int bit;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900489 __be32 dir = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490
491 RT6_TRACE("fib6_add_1\n");
492
493 /* insert node in tree */
494
495 fn = root;
496
497 do {
498 key = (struct rt6key *)((u8 *)fn->leaf + offset);
499
500 /*
501 * Prefix match
502 */
503 if (plen < fn->fn_bit ||
Matti Vaittinen4a287eb2011-11-14 00:15:14 +0000504 !ipv6_prefix_equal(&key->addr, addr, fn->fn_bit)) {
Matti Vaittinen14df0152011-11-16 21:18:02 +0000505 if (!allow_create) {
506 if (replace_required) {
Joe Perchesf3213832012-05-15 14:11:53 +0000507 pr_warn("Can't replace route, no match found\n");
Matti Vaittinen14df0152011-11-16 21:18:02 +0000508 return ERR_PTR(-ENOENT);
509 }
Joe Perchesf3213832012-05-15 14:11:53 +0000510 pr_warn("NLM_F_CREATE should be set when creating new route\n");
Matti Vaittinen14df0152011-11-16 21:18:02 +0000511 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 goto insert_above;
Matti Vaittinen4a287eb2011-11-14 00:15:14 +0000513 }
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900514
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 /*
516 * Exact match ?
517 */
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900518
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 if (plen == fn->fn_bit) {
520 /* clean up an intermediate node */
David S. Miller507c9b12011-12-03 17:50:45 -0500521 if (!(fn->fn_flags & RTN_RTINFO)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 rt6_release(fn->leaf);
523 fn->leaf = NULL;
524 }
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900525
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 fn->fn_sernum = sernum;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900527
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 return fn;
529 }
530
531 /*
532 * We have more bits to go
533 */
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900534
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 /* Try to walk down on tree. */
536 fn->fn_sernum = sernum;
537 dir = addr_bit_set(addr, fn->fn_bit);
538 pn = fn;
Wang Yufen8db46f12014-03-28 12:07:02 +0800539 fn = dir ? fn->right : fn->left;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 } while (fn);
541
Matti Vaittinen14df0152011-11-16 21:18:02 +0000542 if (!allow_create) {
Matti Vaittinen4a287eb2011-11-14 00:15:14 +0000543 /* We should not create new node because
544 * NLM_F_REPLACE was specified without NLM_F_CREATE
545 * I assume it is safe to require NLM_F_CREATE when
546 * REPLACE flag is used! Later we may want to remove the
547 * check for replace_required, because according
548 * to netlink specification, NLM_F_CREATE
549 * MUST be specified if new route is created.
550 * That would keep IPv6 consistent with IPv4
551 */
Matti Vaittinen14df0152011-11-16 21:18:02 +0000552 if (replace_required) {
Joe Perchesf3213832012-05-15 14:11:53 +0000553 pr_warn("Can't replace route, no match found\n");
Matti Vaittinen14df0152011-11-16 21:18:02 +0000554 return ERR_PTR(-ENOENT);
555 }
Joe Perchesf3213832012-05-15 14:11:53 +0000556 pr_warn("NLM_F_CREATE should be set when creating new route\n");
Matti Vaittinen4a287eb2011-11-14 00:15:14 +0000557 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 /*
559 * We walked to the bottom of tree.
560 * Create new leaf node without children.
561 */
562
563 ln = node_alloc();
564
David S. Miller507c9b12011-12-03 17:50:45 -0500565 if (!ln)
Lin Ming188c5172012-09-25 15:17:07 +0000566 return ERR_PTR(-ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 ln->fn_bit = plen;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900568
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 ln->parent = pn;
570 ln->fn_sernum = sernum;
571
572 if (dir)
573 pn->right = ln;
574 else
575 pn->left = ln;
576
577 return ln;
578
579
580insert_above:
581 /*
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900582 * split since we don't have a common prefix anymore or
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 * we have a less significant route.
584 * we've to insert an intermediate node on the list
585 * this new node will point to the one we need to create
586 * and the current
587 */
588
589 pn = fn->parent;
590
591 /* find 1st bit in difference between the 2 addrs.
592
YOSHIFUJI Hideaki971f3592005-11-08 09:37:56 -0800593 See comment in __ipv6_addr_diff: bit may be an invalid value,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 but if it is >= plen, the value is ignored in any case.
595 */
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900596
fan.du9225b232013-07-22 14:21:09 +0800597 bit = __ipv6_addr_diff(addr, &key->addr, sizeof(*addr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900599 /*
600 * (intermediate)[in]
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 * / \
602 * (new leaf node)[ln] (old node)[fn]
603 */
604 if (plen > bit) {
605 in = node_alloc();
606 ln = node_alloc();
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900607
David S. Miller507c9b12011-12-03 17:50:45 -0500608 if (!in || !ln) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 if (in)
Wei Wang7f8f23f2017-08-21 09:47:10 -0700610 node_free_immediate(in);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 if (ln)
Wei Wang7f8f23f2017-08-21 09:47:10 -0700612 node_free_immediate(ln);
Lin Ming188c5172012-09-25 15:17:07 +0000613 return ERR_PTR(-ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 }
615
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900616 /*
617 * new intermediate node.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 * RTN_RTINFO will
619 * be off since that an address that chooses one of
620 * the branches would not match less specific routes
621 * in the other branch
622 */
623
624 in->fn_bit = bit;
625
626 in->parent = pn;
627 in->leaf = fn->leaf;
628 atomic_inc(&in->leaf->rt6i_ref);
629
630 in->fn_sernum = sernum;
631
632 /* update parent pointer */
633 if (dir)
634 pn->right = in;
635 else
636 pn->left = in;
637
638 ln->fn_bit = plen;
639
640 ln->parent = in;
641 fn->parent = in;
642
643 ln->fn_sernum = sernum;
644
645 if (addr_bit_set(addr, bit)) {
646 in->right = ln;
647 in->left = fn;
648 } else {
649 in->left = ln;
650 in->right = fn;
651 }
652 } else { /* plen <= bit */
653
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900654 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 * (new leaf node)[ln]
656 * / \
657 * (old node)[fn] NULL
658 */
659
660 ln = node_alloc();
661
David S. Miller507c9b12011-12-03 17:50:45 -0500662 if (!ln)
Lin Ming188c5172012-09-25 15:17:07 +0000663 return ERR_PTR(-ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664
665 ln->fn_bit = plen;
666
667 ln->parent = pn;
668
669 ln->fn_sernum = sernum;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900670
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 if (dir)
672 pn->right = ln;
673 else
674 pn->left = ln;
675
676 if (addr_bit_set(&key->addr, plen))
677 ln->right = fn;
678 else
679 ln->left = fn;
680
681 fn->parent = ln;
682 }
683 return ln;
684}
685
Hannes Frederic Sowa94b2cfe2014-10-06 19:58:34 +0200686static bool rt6_qualify_for_ecmp(struct rt6_info *rt)
Hannes Frederic Sowa307f2fb2013-07-12 23:46:33 +0200687{
688 return (rt->rt6i_flags & (RTF_GATEWAY|RTF_ADDRCONF|RTF_DYNAMIC)) ==
689 RTF_GATEWAY;
690}
691
Florian Westphale715b6d2015-01-05 23:57:44 +0100692static void fib6_copy_metrics(u32 *mp, const struct mx6_config *mxc)
Michal Kubečeke5fd3872014-03-27 13:04:08 +0100693{
Florian Westphale715b6d2015-01-05 23:57:44 +0100694 int i;
Michal Kubečeke5fd3872014-03-27 13:04:08 +0100695
Florian Westphale715b6d2015-01-05 23:57:44 +0100696 for (i = 0; i < RTAX_MAX; i++) {
697 if (test_bit(i, mxc->mx_valid))
698 mp[i] = mxc->mx[i];
Michal Kubečeke5fd3872014-03-27 13:04:08 +0100699 }
Florian Westphale715b6d2015-01-05 23:57:44 +0100700}
701
702static int fib6_commit_metrics(struct dst_entry *dst, struct mx6_config *mxc)
703{
704 if (!mxc->mx)
705 return 0;
706
707 if (dst->flags & DST_HOST) {
708 u32 *mp = dst_metrics_write_ptr(dst);
709
710 if (unlikely(!mp))
711 return -ENOMEM;
712
713 fib6_copy_metrics(mp, mxc);
714 } else {
715 dst_init_metrics(dst, mxc->mx, false);
716
717 /* We've stolen mx now. */
718 mxc->mx = NULL;
719 }
720
Michal Kubečeke5fd3872014-03-27 13:04:08 +0100721 return 0;
722}
723
Hannes Frederic Sowa6e9e16e62015-01-26 15:11:17 +0100724static void fib6_purge_rt(struct rt6_info *rt, struct fib6_node *fn,
725 struct net *net)
726{
727 if (atomic_read(&rt->rt6i_ref) != 1) {
728 /* This route is used as dummy address holder in some split
729 * nodes. It is not leaked, but it still holds other resources,
730 * which must be released in time. So, scan ascendant nodes
731 * and replace dummy references to this route with references
732 * to still alive ones.
733 */
734 while (fn) {
735 if (!(fn->fn_flags & RTN_RTINFO) && fn->leaf == rt) {
736 fn->leaf = fib6_find_prefix(net, fn);
737 atomic_inc(&fn->leaf->rt6i_ref);
738 rt6_release(rt);
739 }
740 fn = fn->parent;
741 }
742 /* No more references are possible at this point. */
743 BUG_ON(atomic_read(&rt->rt6i_ref) != 1);
744 }
745}
746
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747/*
748 * Insert routing information in a node.
749 */
750
751static int fib6_add_rt2node(struct fib6_node *fn, struct rt6_info *rt,
Florian Westphale715b6d2015-01-05 23:57:44 +0100752 struct nl_info *info, struct mx6_config *mxc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753{
754 struct rt6_info *iter = NULL;
755 struct rt6_info **ins;
Michal Kubeček27596472015-05-18 20:54:00 +0200756 struct rt6_info **fallback_ins = NULL;
David S. Miller507c9b12011-12-03 17:50:45 -0500757 int replace = (info->nlh &&
758 (info->nlh->nlmsg_flags & NLM_F_REPLACE));
759 int add = (!info->nlh ||
760 (info->nlh->nlmsg_flags & NLM_F_CREATE));
Matti Vaittinen4a287eb2011-11-14 00:15:14 +0000761 int found = 0;
Hannes Frederic Sowa307f2fb2013-07-12 23:46:33 +0200762 bool rt_can_ecmp = rt6_qualify_for_ecmp(rt);
Guillaume Nault73483c12016-09-07 17:21:40 +0200763 u16 nlflags = NLM_F_EXCL;
Michal Kubečeke5fd3872014-03-27 13:04:08 +0100764 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765
766 ins = &fn->leaf;
767
David S. Miller507c9b12011-12-03 17:50:45 -0500768 for (iter = fn->leaf; iter; iter = iter->dst.rt6_next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 /*
770 * Search for duplicates
771 */
772
773 if (iter->rt6i_metric == rt->rt6i_metric) {
774 /*
775 * Same priority level
776 */
David S. Miller507c9b12011-12-03 17:50:45 -0500777 if (info->nlh &&
778 (info->nlh->nlmsg_flags & NLM_F_EXCL))
Matti Vaittinen4a287eb2011-11-14 00:15:14 +0000779 return -EEXIST;
Guillaume Nault73483c12016-09-07 17:21:40 +0200780
781 nlflags &= ~NLM_F_EXCL;
Matti Vaittinen4a287eb2011-11-14 00:15:14 +0000782 if (replace) {
Michal Kubeček27596472015-05-18 20:54:00 +0200783 if (rt_can_ecmp == rt6_qualify_for_ecmp(iter)) {
784 found++;
785 break;
786 }
Benjamin Poirier1f78daa2020-02-12 10:41:06 +0900787 fallback_ins = fallback_ins ?: ins;
Michal Kubeček27596472015-05-18 20:54:00 +0200788 goto next_iter;
Matti Vaittinen4a287eb2011-11-14 00:15:14 +0000789 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790
David Ahern0bc26d12017-07-05 14:41:46 -0600791 if (rt6_duplicate_nexthop(iter, rt)) {
Nicolas Dichtel51ebd312012-10-22 03:42:09 +0000792 if (rt->rt6i_nsiblings)
793 rt->rt6i_nsiblings = 0;
David S. Miller507c9b12011-12-03 17:50:45 -0500794 if (!(iter->rt6i_flags & RTF_EXPIRES))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 return -EEXIST;
Gao feng1716a962012-04-06 00:13:10 +0000796 if (!(rt->rt6i_flags & RTF_EXPIRES))
797 rt6_clean_expires(iter);
798 else
799 rt6_set_expires(iter, rt->dst.expires);
Martin KaFai Lau45e4fd22015-05-22 20:56:00 -0700800 iter->rt6i_pmtu = rt->rt6i_pmtu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 return -EEXIST;
802 }
Nicolas Dichtel51ebd312012-10-22 03:42:09 +0000803 /* If we have the same destination and the same metric,
804 * but not the same gateway, then the route we try to
805 * add is sibling to this route, increment our counter
806 * of siblings, and later we will add our route to the
807 * list.
808 * Only static routes (which don't have flag
809 * RTF_EXPIRES) are used for ECMPv6.
810 *
811 * To avoid long list, we only had siblings if the
812 * route have a gateway.
813 */
Hannes Frederic Sowa307f2fb2013-07-12 23:46:33 +0200814 if (rt_can_ecmp &&
815 rt6_qualify_for_ecmp(iter))
Nicolas Dichtel51ebd312012-10-22 03:42:09 +0000816 rt->rt6i_nsiblings++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 }
818
819 if (iter->rt6i_metric > rt->rt6i_metric)
820 break;
821
Michal Kubeček27596472015-05-18 20:54:00 +0200822next_iter:
Changli Gaod8d1f302010-06-10 23:31:35 -0700823 ins = &iter->dst.rt6_next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 }
825
Michal Kubeček27596472015-05-18 20:54:00 +0200826 if (fallback_ins && !found) {
Benjamin Poirier1f78daa2020-02-12 10:41:06 +0900827 /* No matching route with same ecmp-able-ness found, replace
828 * first matching route
829 */
Michal Kubeček27596472015-05-18 20:54:00 +0200830 ins = fallback_ins;
831 iter = *ins;
832 found++;
833 }
834
David S. Millerf11e6652007-03-24 20:36:25 -0700835 /* Reset round-robin state, if necessary */
836 if (ins == &fn->leaf)
837 fn->rr_ptr = NULL;
838
Nicolas Dichtel51ebd312012-10-22 03:42:09 +0000839 /* Link this route to others same route. */
840 if (rt->rt6i_nsiblings) {
841 unsigned int rt6i_nsiblings;
842 struct rt6_info *sibling, *temp_sibling;
843
844 /* Find the first route that have the same metric */
845 sibling = fn->leaf;
846 while (sibling) {
Hannes Frederic Sowa307f2fb2013-07-12 23:46:33 +0200847 if (sibling->rt6i_metric == rt->rt6i_metric &&
848 rt6_qualify_for_ecmp(sibling)) {
Nicolas Dichtel51ebd312012-10-22 03:42:09 +0000849 list_add_tail(&rt->rt6i_siblings,
850 &sibling->rt6i_siblings);
851 break;
852 }
853 sibling = sibling->dst.rt6_next;
854 }
855 /* For each sibling in the list, increment the counter of
856 * siblings. BUG() if counters does not match, list of siblings
857 * is broken!
858 */
859 rt6i_nsiblings = 0;
860 list_for_each_entry_safe(sibling, temp_sibling,
861 &rt->rt6i_siblings, rt6i_siblings) {
862 sibling->rt6i_nsiblings++;
863 BUG_ON(sibling->rt6i_nsiblings != rt->rt6i_nsiblings);
864 rt6i_nsiblings++;
865 }
866 BUG_ON(rt6i_nsiblings != rt->rt6i_nsiblings);
867 }
868
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 /*
870 * insert node
871 */
Matti Vaittinen4a287eb2011-11-14 00:15:14 +0000872 if (!replace) {
873 if (!add)
Joe Perchesf3213832012-05-15 14:11:53 +0000874 pr_warn("NLM_F_CREATE should be set when creating new route\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875
Matti Vaittinen4a287eb2011-11-14 00:15:14 +0000876add:
Guillaume Nault73483c12016-09-07 17:21:40 +0200877 nlflags |= NLM_F_CREATE;
Florian Westphale715b6d2015-01-05 23:57:44 +0100878 err = fib6_commit_metrics(&rt->dst, mxc);
879 if (err)
880 return err;
881
Matti Vaittinen4a287eb2011-11-14 00:15:14 +0000882 rt->dst.rt6_next = iter;
883 *ins = rt;
Wei Wang43c792a2017-08-25 15:03:10 -0700884 rcu_assign_pointer(rt->rt6i_node, fn);
Matti Vaittinen4a287eb2011-11-14 00:15:14 +0000885 atomic_inc(&rt->rt6i_ref);
Guillaume Nault73483c12016-09-07 17:21:40 +0200886 inet6_rt_notify(RTM_NEWROUTE, rt, info, nlflags);
Matti Vaittinen4a287eb2011-11-14 00:15:14 +0000887 info->nl_net->ipv6.rt6_stats->fib_rt_entries++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888
David S. Miller507c9b12011-12-03 17:50:45 -0500889 if (!(fn->fn_flags & RTN_RTINFO)) {
Matti Vaittinen4a287eb2011-11-14 00:15:14 +0000890 info->nl_net->ipv6.rt6_stats->fib_route_nodes++;
891 fn->fn_flags |= RTN_RTINFO;
892 }
893
894 } else {
Michal Kubeček27596472015-05-18 20:54:00 +0200895 int nsiblings;
896
Matti Vaittinen4a287eb2011-11-14 00:15:14 +0000897 if (!found) {
898 if (add)
899 goto add;
Joe Perchesf3213832012-05-15 14:11:53 +0000900 pr_warn("NLM_F_REPLACE set, but no existing node found!\n");
Matti Vaittinen4a287eb2011-11-14 00:15:14 +0000901 return -ENOENT;
902 }
Florian Westphale715b6d2015-01-05 23:57:44 +0100903
904 err = fib6_commit_metrics(&rt->dst, mxc);
905 if (err)
906 return err;
907
Matti Vaittinen4a287eb2011-11-14 00:15:14 +0000908 *ins = rt;
Wei Wang43c792a2017-08-25 15:03:10 -0700909 rcu_assign_pointer(rt->rt6i_node, fn);
Matti Vaittinen4a287eb2011-11-14 00:15:14 +0000910 rt->dst.rt6_next = iter->dst.rt6_next;
911 atomic_inc(&rt->rt6i_ref);
Roopa Prabhu37a1d362015-09-13 10:18:33 -0700912 inet6_rt_notify(RTM_NEWROUTE, rt, info, NLM_F_REPLACE);
David S. Miller507c9b12011-12-03 17:50:45 -0500913 if (!(fn->fn_flags & RTN_RTINFO)) {
Matti Vaittinen4a287eb2011-11-14 00:15:14 +0000914 info->nl_net->ipv6.rt6_stats->fib_route_nodes++;
915 fn->fn_flags |= RTN_RTINFO;
916 }
Michal Kubeček27596472015-05-18 20:54:00 +0200917 nsiblings = iter->rt6i_nsiblings;
Hannes Frederic Sowa6e9e16e62015-01-26 15:11:17 +0100918 fib6_purge_rt(iter, fn, info->nl_net);
Wei Wang62e9a282017-08-16 11:18:09 -0700919 if (fn->rr_ptr == iter)
920 fn->rr_ptr = NULL;
Hannes Frederic Sowa6e9e16e62015-01-26 15:11:17 +0100921 rt6_release(iter);
Michal Kubeček27596472015-05-18 20:54:00 +0200922
923 if (nsiblings) {
924 /* Replacing an ECMP route, remove all siblings */
925 ins = &rt->dst.rt6_next;
926 iter = *ins;
927 while (iter) {
Sabrina Dubroca4a8d3bb2017-03-13 13:28:09 +0100928 if (iter->rt6i_metric > rt->rt6i_metric)
929 break;
Michal Kubeček27596472015-05-18 20:54:00 +0200930 if (rt6_qualify_for_ecmp(iter)) {
931 *ins = iter->dst.rt6_next;
932 fib6_purge_rt(iter, fn, info->nl_net);
Wei Wang62e9a282017-08-16 11:18:09 -0700933 if (fn->rr_ptr == iter)
934 fn->rr_ptr = NULL;
Michal Kubeček27596472015-05-18 20:54:00 +0200935 rt6_release(iter);
936 nsiblings--;
937 } else {
938 ins = &iter->dst.rt6_next;
939 }
940 iter = *ins;
941 }
942 WARN_ON(nsiblings != 0);
943 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944 }
945
946 return 0;
947}
948
Hannes Frederic Sowa94b2cfe2014-10-06 19:58:34 +0200949static void fib6_start_gc(struct net *net, struct rt6_info *rt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950{
Stephen Hemminger417f28b2008-07-22 14:33:45 -0700951 if (!timer_pending(&net->ipv6.ip6_fib_timer) &&
David S. Miller507c9b12011-12-03 17:50:45 -0500952 (rt->rt6i_flags & (RTF_EXPIRES | RTF_CACHE)))
Stephen Hemminger417f28b2008-07-22 14:33:45 -0700953 mod_timer(&net->ipv6.ip6_fib_timer,
Stephen Hemminger847499c2008-07-21 13:21:35 -0700954 jiffies + net->ipv6.sysctl.ip6_rt_gc_interval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955}
956
Daniel Lezcano63152fc2008-03-03 23:31:11 -0800957void fib6_force_start_gc(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958{
Stephen Hemminger417f28b2008-07-22 14:33:45 -0700959 if (!timer_pending(&net->ipv6.ip6_fib_timer))
960 mod_timer(&net->ipv6.ip6_fib_timer,
Stephen Hemminger847499c2008-07-21 13:21:35 -0700961 jiffies + net->ipv6.sysctl.ip6_rt_gc_interval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962}
963
964/*
965 * Add routing information to the routing tree.
966 * <destination addr>/<source addr>
967 * with source addr info in sub-trees
968 */
969
Florian Westphale715b6d2015-01-05 23:57:44 +0100970int fib6_add(struct fib6_node *root, struct rt6_info *rt,
971 struct nl_info *info, struct mx6_config *mxc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972{
YOSHIFUJI Hideaki66729e12006-08-23 17:20:34 -0700973 struct fib6_node *fn, *pn = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974 int err = -ENOMEM;
Matti Vaittinen4a287eb2011-11-14 00:15:14 +0000975 int allow_create = 1;
976 int replace_required = 0;
Hannes Frederic Sowa812918c2014-10-06 19:58:37 +0200977 int sernum = fib6_new_sernum(info->nl_net);
David S. Miller507c9b12011-12-03 17:50:45 -0500978
Martin KaFai Lau8e3d5be2015-09-15 14:30:08 -0700979 if (WARN_ON_ONCE((rt->dst.flags & DST_NOCACHE) &&
980 !atomic_read(&rt->dst.__refcnt)))
981 return -EINVAL;
982
David S. Miller507c9b12011-12-03 17:50:45 -0500983 if (info->nlh) {
984 if (!(info->nlh->nlmsg_flags & NLM_F_CREATE))
Matti Vaittinen4a287eb2011-11-14 00:15:14 +0000985 allow_create = 0;
David S. Miller507c9b12011-12-03 17:50:45 -0500986 if (info->nlh->nlmsg_flags & NLM_F_REPLACE)
Matti Vaittinen4a287eb2011-11-14 00:15:14 +0000987 replace_required = 1;
988 }
989 if (!allow_create && !replace_required)
Joe Perchesf3213832012-05-15 14:11:53 +0000990 pr_warn("RTM_NEWROUTE with no NLM_F_CREATE or NLM_F_REPLACE\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991
fan.du9225b232013-07-22 14:21:09 +0800992 fn = fib6_add_1(root, &rt->rt6i_dst.addr, rt->rt6i_dst.plen,
993 offsetof(struct rt6_info, rt6i_dst), allow_create,
Hannes Frederic Sowac8c4d422014-10-06 19:58:36 +0200994 replace_required, sernum);
Matti Vaittinen4a287eb2011-11-14 00:15:14 +0000995 if (IS_ERR(fn)) {
996 err = PTR_ERR(fn);
Daniel Borkmannae7b4e12013-09-07 15:13:20 +0200997 fn = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 goto out;
Lin Ming188c5172012-09-25 15:17:07 +0000999 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000
YOSHIFUJI Hideaki66729e12006-08-23 17:20:34 -07001001 pn = fn;
1002
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003#ifdef CONFIG_IPV6_SUBTREES
1004 if (rt->rt6i_src.plen) {
1005 struct fib6_node *sn;
1006
David S. Miller507c9b12011-12-03 17:50:45 -05001007 if (!fn->subtree) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008 struct fib6_node *sfn;
1009
1010 /*
1011 * Create subtree.
1012 *
1013 * fn[main tree]
1014 * |
1015 * sfn[subtree root]
1016 * \
1017 * sn[new leaf node]
1018 */
1019
1020 /* Create subtree root node */
1021 sfn = node_alloc();
David S. Miller507c9b12011-12-03 17:50:45 -05001022 if (!sfn)
Wei Wang1c18f932017-08-18 17:14:49 -07001023 goto failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024
Daniel Lezcano8ed67782008-03-04 13:48:30 -08001025 sfn->leaf = info->nl_net->ipv6.ip6_null_entry;
1026 atomic_inc(&info->nl_net->ipv6.ip6_null_entry->rt6i_ref);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027 sfn->fn_flags = RTN_ROOT;
Hannes Frederic Sowac8c4d422014-10-06 19:58:36 +02001028 sfn->fn_sernum = sernum;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029
1030 /* Now add the first leaf node to new subtree */
1031
1032 sn = fib6_add_1(sfn, &rt->rt6i_src.addr,
fan.du9225b232013-07-22 14:21:09 +08001033 rt->rt6i_src.plen,
Matti Vaittinen4a287eb2011-11-14 00:15:14 +00001034 offsetof(struct rt6_info, rt6i_src),
Hannes Frederic Sowac8c4d422014-10-06 19:58:36 +02001035 allow_create, replace_required, sernum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036
Wei Yongjunf950c0e2012-09-20 18:29:56 +00001037 if (IS_ERR(sn)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038 /* If it is failed, discard just allocated
Wei Wang1c18f932017-08-18 17:14:49 -07001039 root, and then (in failure) stale node
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040 in main tree.
1041 */
Wei Wang7f8f23f2017-08-21 09:47:10 -07001042 node_free_immediate(sfn);
Lin Ming188c5172012-09-25 15:17:07 +00001043 err = PTR_ERR(sn);
Wei Wang1c18f932017-08-18 17:14:49 -07001044 goto failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045 }
1046
1047 /* Now link new subtree to main tree */
1048 sfn->parent = fn;
1049 fn->subtree = sfn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050 } else {
1051 sn = fib6_add_1(fn->subtree, &rt->rt6i_src.addr,
fan.du9225b232013-07-22 14:21:09 +08001052 rt->rt6i_src.plen,
Matti Vaittinen4a287eb2011-11-14 00:15:14 +00001053 offsetof(struct rt6_info, rt6i_src),
Hannes Frederic Sowac8c4d422014-10-06 19:58:36 +02001054 allow_create, replace_required, sernum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055
Matti Vaittinen4a287eb2011-11-14 00:15:14 +00001056 if (IS_ERR(sn)) {
1057 err = PTR_ERR(sn);
Wei Wang1c18f932017-08-18 17:14:49 -07001058 goto failure;
Lin Ming188c5172012-09-25 15:17:07 +00001059 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060 }
1061
David S. Miller507c9b12011-12-03 17:50:45 -05001062 if (!fn->leaf) {
YOSHIFUJI Hideaki66729e12006-08-23 17:20:34 -07001063 fn->leaf = rt;
1064 atomic_inc(&rt->rt6i_ref);
1065 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066 fn = sn;
1067 }
1068#endif
1069
Florian Westphale715b6d2015-01-05 23:57:44 +01001070 err = fib6_add_rt2node(fn, rt, info, mxc);
David S. Miller507c9b12011-12-03 17:50:45 -05001071 if (!err) {
Daniel Lezcano63152fc2008-03-03 23:31:11 -08001072 fib6_start_gc(info->nl_net, rt);
David S. Miller507c9b12011-12-03 17:50:45 -05001073 if (!(rt->rt6i_flags & RTF_CACHE))
Duan Jiong163cd4e2014-05-09 13:31:43 +08001074 fib6_prune_clones(info->nl_net, pn);
Martin KaFai Lau8e3d5be2015-09-15 14:30:08 -07001075 rt->dst.flags &= ~DST_NOCACHE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 }
1077
1078out:
YOSHIFUJI Hideaki66729e12006-08-23 17:20:34 -07001079 if (err) {
1080#ifdef CONFIG_IPV6_SUBTREES
1081 /*
1082 * If fib6_add_1 has cleared the old leaf pointer in the
1083 * super-tree leaf node we have to find a new one for it.
1084 */
David S. Miller3c051232008-04-18 01:46:19 -07001085 if (pn != fn && pn->leaf == rt) {
1086 pn->leaf = NULL;
1087 atomic_dec(&rt->rt6i_ref);
1088 }
YOSHIFUJI Hideaki66729e12006-08-23 17:20:34 -07001089 if (pn != fn && !pn->leaf && !(pn->fn_flags & RTN_RTINFO)) {
Daniel Lezcano8ed67782008-03-04 13:48:30 -08001090 pn->leaf = fib6_find_prefix(info->nl_net, pn);
YOSHIFUJI Hideaki66729e12006-08-23 17:20:34 -07001091#if RT6_DEBUG >= 2
1092 if (!pn->leaf) {
Ilpo Järvinen547b7922008-07-25 21:43:18 -07001093 WARN_ON(pn->leaf == NULL);
Daniel Lezcano8ed67782008-03-04 13:48:30 -08001094 pn->leaf = info->nl_net->ipv6.ip6_null_entry;
YOSHIFUJI Hideaki66729e12006-08-23 17:20:34 -07001095 }
1096#endif
1097 atomic_inc(&pn->leaf->rt6i_ref);
1098 }
1099#endif
Wei Wang1c18f932017-08-18 17:14:49 -07001100 goto failure;
YOSHIFUJI Hideaki66729e12006-08-23 17:20:34 -07001101 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102 return err;
1103
Wei Wang1c18f932017-08-18 17:14:49 -07001104failure:
1105 /* fn->leaf could be NULL if fn is an intermediate node and we
1106 * failed to add the new route to it in both subtree creation
1107 * failure and fib6_add_rt2node() failure case.
1108 * In both cases, fib6_repair_tree() should be called to fix
1109 * fn->leaf.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111 if (fn && !(fn->fn_flags & (RTN_RTINFO|RTN_ROOT)))
Daniel Lezcano8ed67782008-03-04 13:48:30 -08001112 fib6_repair_tree(info->nl_net, fn);
Martin KaFai Lau8e3d5be2015-09-15 14:30:08 -07001113 if (!(rt->dst.flags & DST_NOCACHE))
1114 dst_free(&rt->dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116}
1117
1118/*
1119 * Routing tree lookup
1120 *
1121 */
1122
1123struct lookup_args {
David S. Miller507c9b12011-12-03 17:50:45 -05001124 int offset; /* key offset on rt6_info */
Eric Dumazetb71d1d42011-04-22 04:53:02 +00001125 const struct in6_addr *addr; /* search key */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126};
1127
Wang Yufen437de072014-03-28 12:07:04 +08001128static struct fib6_node *fib6_lookup_1(struct fib6_node *root,
1129 struct lookup_args *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130{
1131 struct fib6_node *fn;
Al Viroe69a4adc2006-11-14 20:56:00 -08001132 __be32 dir;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133
YOSHIFUJI Hideaki825e2882006-08-23 17:21:29 -07001134 if (unlikely(args->offset == 0))
1135 return NULL;
1136
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137 /*
1138 * Descend on a tree
1139 */
1140
1141 fn = root;
1142
1143 for (;;) {
1144 struct fib6_node *next;
1145
1146 dir = addr_bit_set(args->addr, fn->fn_bit);
1147
1148 next = dir ? fn->right : fn->left;
1149
1150 if (next) {
1151 fn = next;
1152 continue;
1153 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154 break;
1155 }
1156
David S. Miller507c9b12011-12-03 17:50:45 -05001157 while (fn) {
YOSHIFUJI Hideaki7fc33162006-08-23 17:22:24 -07001158 if (FIB6_SUBTREE(fn) || fn->fn_flags & RTN_RTINFO) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159 struct rt6key *key;
1160
1161 key = (struct rt6key *) ((u8 *) fn->leaf +
1162 args->offset);
1163
YOSHIFUJI Hideaki3fc5e042006-08-23 17:21:12 -07001164 if (ipv6_prefix_equal(&key->addr, args->addr, key->plen)) {
1165#ifdef CONFIG_IPV6_SUBTREES
Hannes Frederic Sowa3e3be272013-08-07 02:34:31 +02001166 if (fn->subtree) {
1167 struct fib6_node *sfn;
1168 sfn = fib6_lookup_1(fn->subtree,
1169 args + 1);
1170 if (!sfn)
1171 goto backtrack;
1172 fn = sfn;
1173 }
YOSHIFUJI Hideaki3fc5e042006-08-23 17:21:12 -07001174#endif
Hannes Frederic Sowa3e3be272013-08-07 02:34:31 +02001175 if (fn->fn_flags & RTN_RTINFO)
YOSHIFUJI Hideaki3fc5e042006-08-23 17:21:12 -07001176 return fn;
1177 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178 }
Hannes Frederic Sowa3e3be272013-08-07 02:34:31 +02001179#ifdef CONFIG_IPV6_SUBTREES
1180backtrack:
1181#endif
YOSHIFUJI Hideaki3fc5e042006-08-23 17:21:12 -07001182 if (fn->fn_flags & RTN_ROOT)
1183 break;
1184
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185 fn = fn->parent;
1186 }
1187
1188 return NULL;
1189}
1190
Wang Yufen437de072014-03-28 12:07:04 +08001191struct fib6_node *fib6_lookup(struct fib6_node *root, const struct in6_addr *daddr,
1192 const struct in6_addr *saddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194 struct fib6_node *fn;
YOSHIFUJI Hideaki825e2882006-08-23 17:21:29 -07001195 struct lookup_args args[] = {
1196 {
1197 .offset = offsetof(struct rt6_info, rt6i_dst),
1198 .addr = daddr,
1199 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200#ifdef CONFIG_IPV6_SUBTREES
YOSHIFUJI Hideaki825e2882006-08-23 17:21:29 -07001201 {
1202 .offset = offsetof(struct rt6_info, rt6i_src),
1203 .addr = saddr,
1204 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205#endif
YOSHIFUJI Hideaki825e2882006-08-23 17:21:29 -07001206 {
1207 .offset = 0, /* sentinel */
1208 }
1209 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210
YOSHIFUJI Hideakifefc2a62006-08-23 17:21:50 -07001211 fn = fib6_lookup_1(root, daddr ? args : args + 1);
David S. Miller507c9b12011-12-03 17:50:45 -05001212 if (!fn || fn->fn_flags & RTN_TL_ROOT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213 fn = root;
1214
1215 return fn;
1216}
1217
1218/*
1219 * Get node with specified destination prefix (and source prefix,
1220 * if subtrees are used)
1221 */
1222
1223
Wang Yufen437de072014-03-28 12:07:04 +08001224static struct fib6_node *fib6_locate_1(struct fib6_node *root,
1225 const struct in6_addr *addr,
1226 int plen, int offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227{
1228 struct fib6_node *fn;
1229
1230 for (fn = root; fn ; ) {
1231 struct rt6key *key = (struct rt6key *)((u8 *)fn->leaf + offset);
1232
1233 /*
1234 * Prefix match
1235 */
1236 if (plen < fn->fn_bit ||
1237 !ipv6_prefix_equal(&key->addr, addr, fn->fn_bit))
1238 return NULL;
1239
1240 if (plen == fn->fn_bit)
1241 return fn;
1242
1243 /*
1244 * We have more bits to go
1245 */
1246 if (addr_bit_set(addr, fn->fn_bit))
1247 fn = fn->right;
1248 else
1249 fn = fn->left;
1250 }
1251 return NULL;
1252}
1253
Wang Yufen437de072014-03-28 12:07:04 +08001254struct fib6_node *fib6_locate(struct fib6_node *root,
1255 const struct in6_addr *daddr, int dst_len,
1256 const struct in6_addr *saddr, int src_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257{
1258 struct fib6_node *fn;
1259
1260 fn = fib6_locate_1(root, daddr, dst_len,
1261 offsetof(struct rt6_info, rt6i_dst));
1262
1263#ifdef CONFIG_IPV6_SUBTREES
1264 if (src_len) {
Ilpo Järvinen547b7922008-07-25 21:43:18 -07001265 WARN_ON(saddr == NULL);
YOSHIFUJI Hideaki3fc5e042006-08-23 17:21:12 -07001266 if (fn && fn->subtree)
1267 fn = fib6_locate_1(fn->subtree, saddr, src_len,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268 offsetof(struct rt6_info, rt6i_src));
1269 }
1270#endif
1271
David S. Miller507c9b12011-12-03 17:50:45 -05001272 if (fn && fn->fn_flags & RTN_RTINFO)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273 return fn;
1274
1275 return NULL;
1276}
1277
1278
1279/*
1280 * Deletion
1281 *
1282 */
1283
Daniel Lezcano8ed67782008-03-04 13:48:30 -08001284static struct rt6_info *fib6_find_prefix(struct net *net, struct fib6_node *fn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285{
David S. Miller507c9b12011-12-03 17:50:45 -05001286 if (fn->fn_flags & RTN_ROOT)
Daniel Lezcano8ed67782008-03-04 13:48:30 -08001287 return net->ipv6.ip6_null_entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288
David S. Miller507c9b12011-12-03 17:50:45 -05001289 while (fn) {
1290 if (fn->left)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291 return fn->left->leaf;
David S. Miller507c9b12011-12-03 17:50:45 -05001292 if (fn->right)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293 return fn->right->leaf;
1294
YOSHIFUJI Hideaki7fc33162006-08-23 17:22:24 -07001295 fn = FIB6_SUBTREE(fn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296 }
1297 return NULL;
1298}
1299
1300/*
1301 * Called to trim the tree of intermediate nodes when possible. "fn"
1302 * is the node we want to try and remove.
1303 */
1304
Daniel Lezcano8ed67782008-03-04 13:48:30 -08001305static struct fib6_node *fib6_repair_tree(struct net *net,
1306 struct fib6_node *fn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307{
1308 int children;
1309 int nstate;
1310 struct fib6_node *child, *pn;
Hannes Frederic Sowa94b2cfe2014-10-06 19:58:34 +02001311 struct fib6_walker *w;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312 int iter = 0;
1313
1314 for (;;) {
1315 RT6_TRACE("fixing tree: plen=%d iter=%d\n", fn->fn_bit, iter);
1316 iter++;
1317
Ilpo Järvinen547b7922008-07-25 21:43:18 -07001318 WARN_ON(fn->fn_flags & RTN_RTINFO);
1319 WARN_ON(fn->fn_flags & RTN_TL_ROOT);
Ian Morris53b24b82015-03-29 14:00:05 +01001320 WARN_ON(fn->leaf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321
1322 children = 0;
1323 child = NULL;
Wang Yufen49e253e2014-03-28 12:07:03 +08001324 if (fn->right)
1325 child = fn->right, children |= 1;
1326 if (fn->left)
1327 child = fn->left, children |= 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328
YOSHIFUJI Hideaki7fc33162006-08-23 17:22:24 -07001329 if (children == 3 || FIB6_SUBTREE(fn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330#ifdef CONFIG_IPV6_SUBTREES
1331 /* Subtree root (i.e. fn) may have one child */
David S. Miller507c9b12011-12-03 17:50:45 -05001332 || (children && fn->fn_flags & RTN_ROOT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333#endif
1334 ) {
Daniel Lezcano8ed67782008-03-04 13:48:30 -08001335 fn->leaf = fib6_find_prefix(net, fn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336#if RT6_DEBUG >= 2
David S. Miller507c9b12011-12-03 17:50:45 -05001337 if (!fn->leaf) {
Ilpo Järvinen547b7922008-07-25 21:43:18 -07001338 WARN_ON(!fn->leaf);
Daniel Lezcano8ed67782008-03-04 13:48:30 -08001339 fn->leaf = net->ipv6.ip6_null_entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340 }
1341#endif
1342 atomic_inc(&fn->leaf->rt6i_ref);
1343 return fn->parent;
1344 }
1345
1346 pn = fn->parent;
1347#ifdef CONFIG_IPV6_SUBTREES
YOSHIFUJI Hideaki7fc33162006-08-23 17:22:24 -07001348 if (FIB6_SUBTREE(pn) == fn) {
Ilpo Järvinen547b7922008-07-25 21:43:18 -07001349 WARN_ON(!(fn->fn_flags & RTN_ROOT));
YOSHIFUJI Hideaki7fc33162006-08-23 17:22:24 -07001350 FIB6_SUBTREE(pn) = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351 nstate = FWS_L;
1352 } else {
Ilpo Järvinen547b7922008-07-25 21:43:18 -07001353 WARN_ON(fn->fn_flags & RTN_ROOT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354#endif
Wang Yufen49e253e2014-03-28 12:07:03 +08001355 if (pn->right == fn)
1356 pn->right = child;
1357 else if (pn->left == fn)
1358 pn->left = child;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359#if RT6_DEBUG >= 2
Ilpo Järvinen547b7922008-07-25 21:43:18 -07001360 else
1361 WARN_ON(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362#endif
1363 if (child)
1364 child->parent = pn;
1365 nstate = FWS_R;
1366#ifdef CONFIG_IPV6_SUBTREES
1367 }
1368#endif
1369
Michal Kubeček9a03cd82016-03-08 14:44:35 +01001370 read_lock(&net->ipv6.fib6_walker_lock);
1371 FOR_WALKERS(net, w) {
David S. Miller507c9b12011-12-03 17:50:45 -05001372 if (!child) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373 if (w->root == fn) {
1374 w->root = w->node = NULL;
1375 RT6_TRACE("W %p adjusted by delroot 1\n", w);
1376 } else if (w->node == fn) {
1377 RT6_TRACE("W %p adjusted by delnode 1, s=%d/%d\n", w, w->state, nstate);
1378 w->node = pn;
1379 w->state = nstate;
1380 }
1381 } else {
1382 if (w->root == fn) {
1383 w->root = child;
1384 RT6_TRACE("W %p adjusted by delroot 2\n", w);
1385 }
1386 if (w->node == fn) {
1387 w->node = child;
1388 if (children&2) {
1389 RT6_TRACE("W %p adjusted by delnode 2, s=%d\n", w, w->state);
Wang Yufen8db46f12014-03-28 12:07:02 +08001390 w->state = w->state >= FWS_R ? FWS_U : FWS_INIT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391 } else {
1392 RT6_TRACE("W %p adjusted by delnode 2, s=%d\n", w, w->state);
Wang Yufen8db46f12014-03-28 12:07:02 +08001393 w->state = w->state >= FWS_C ? FWS_U : FWS_INIT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394 }
1395 }
1396 }
1397 }
Michal Kubeček9a03cd82016-03-08 14:44:35 +01001398 read_unlock(&net->ipv6.fib6_walker_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399
1400 node_free(fn);
David S. Miller507c9b12011-12-03 17:50:45 -05001401 if (pn->fn_flags & RTN_RTINFO || FIB6_SUBTREE(pn))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402 return pn;
1403
1404 rt6_release(pn->leaf);
1405 pn->leaf = NULL;
1406 fn = pn;
1407 }
1408}
1409
1410static void fib6_del_route(struct fib6_node *fn, struct rt6_info **rtp,
Thomas Graf86872cb2006-08-22 00:01:08 -07001411 struct nl_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412{
Hannes Frederic Sowa94b2cfe2014-10-06 19:58:34 +02001413 struct fib6_walker *w;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414 struct rt6_info *rt = *rtp;
Benjamin Theryc5728722008-03-03 23:34:17 -08001415 struct net *net = info->nl_net;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416
1417 RT6_TRACE("fib6_del_route\n");
1418
1419 /* Unlink it */
Changli Gaod8d1f302010-06-10 23:31:35 -07001420 *rtp = rt->dst.rt6_next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421 rt->rt6i_node = NULL;
Benjamin Theryc5728722008-03-03 23:34:17 -08001422 net->ipv6.rt6_stats->fib_rt_entries--;
1423 net->ipv6.rt6_stats->fib_discarded_routes++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424
David S. Millerf11e6652007-03-24 20:36:25 -07001425 /* Reset round-robin state, if necessary */
1426 if (fn->rr_ptr == rt)
1427 fn->rr_ptr = NULL;
1428
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00001429 /* Remove this entry from other siblings */
1430 if (rt->rt6i_nsiblings) {
1431 struct rt6_info *sibling, *next_sibling;
1432
1433 list_for_each_entry_safe(sibling, next_sibling,
1434 &rt->rt6i_siblings, rt6i_siblings)
1435 sibling->rt6i_nsiblings--;
1436 rt->rt6i_nsiblings = 0;
1437 list_del_init(&rt->rt6i_siblings);
1438 }
1439
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440 /* Adjust walkers */
Michal Kubeček9a03cd82016-03-08 14:44:35 +01001441 read_lock(&net->ipv6.fib6_walker_lock);
1442 FOR_WALKERS(net, w) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443 if (w->state == FWS_C && w->leaf == rt) {
1444 RT6_TRACE("walker %p adjusted by delroute\n", w);
Changli Gaod8d1f302010-06-10 23:31:35 -07001445 w->leaf = rt->dst.rt6_next;
David S. Miller507c9b12011-12-03 17:50:45 -05001446 if (!w->leaf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447 w->state = FWS_U;
1448 }
1449 }
Michal Kubeček9a03cd82016-03-08 14:44:35 +01001450 read_unlock(&net->ipv6.fib6_walker_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451
Changli Gaod8d1f302010-06-10 23:31:35 -07001452 rt->dst.rt6_next = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454 /* If it was last route, expunge its radix tree node */
David S. Miller507c9b12011-12-03 17:50:45 -05001455 if (!fn->leaf) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456 fn->fn_flags &= ~RTN_RTINFO;
Benjamin Theryc5728722008-03-03 23:34:17 -08001457 net->ipv6.rt6_stats->fib_route_nodes--;
Daniel Lezcano8ed67782008-03-04 13:48:30 -08001458 fn = fib6_repair_tree(net, fn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459 }
1460
Hannes Frederic Sowa6e9e16e62015-01-26 15:11:17 +01001461 fib6_purge_rt(rt, fn, net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462
Roopa Prabhu37a1d362015-09-13 10:18:33 -07001463 inet6_rt_notify(RTM_DELROUTE, rt, info, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464 rt6_release(rt);
1465}
1466
Thomas Graf86872cb2006-08-22 00:01:08 -07001467int fib6_del(struct rt6_info *rt, struct nl_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468{
Wei Wang43c792a2017-08-25 15:03:10 -07001469 struct fib6_node *fn = rcu_dereference_protected(rt->rt6i_node,
1470 lockdep_is_held(&rt->rt6i_table->tb6_lock));
Daniel Lezcano8ed67782008-03-04 13:48:30 -08001471 struct net *net = info->nl_net;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472 struct rt6_info **rtp;
1473
1474#if RT6_DEBUG >= 2
Wang Yufen8db46f12014-03-28 12:07:02 +08001475 if (rt->dst.obsolete > 0) {
Ian Morris53b24b82015-03-29 14:00:05 +01001476 WARN_ON(fn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477 return -ENOENT;
1478 }
1479#endif
David S. Miller507c9b12011-12-03 17:50:45 -05001480 if (!fn || rt == net->ipv6.ip6_null_entry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481 return -ENOENT;
1482
Ilpo Järvinen547b7922008-07-25 21:43:18 -07001483 WARN_ON(!(fn->fn_flags & RTN_RTINFO));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484
David S. Miller507c9b12011-12-03 17:50:45 -05001485 if (!(rt->rt6i_flags & RTF_CACHE)) {
YOSHIFUJI Hideaki150730d2006-08-23 17:22:55 -07001486 struct fib6_node *pn = fn;
1487#ifdef CONFIG_IPV6_SUBTREES
1488 /* clones of this route might be in another subtree */
1489 if (rt->rt6i_src.plen) {
David S. Miller507c9b12011-12-03 17:50:45 -05001490 while (!(pn->fn_flags & RTN_ROOT))
YOSHIFUJI Hideaki150730d2006-08-23 17:22:55 -07001491 pn = pn->parent;
1492 pn = pn->parent;
1493 }
1494#endif
Duan Jiong163cd4e2014-05-09 13:31:43 +08001495 fib6_prune_clones(info->nl_net, pn);
YOSHIFUJI Hideaki150730d2006-08-23 17:22:55 -07001496 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497
1498 /*
1499 * Walk the leaf entries looking for ourself
1500 */
1501
Changli Gaod8d1f302010-06-10 23:31:35 -07001502 for (rtp = &fn->leaf; *rtp; rtp = &(*rtp)->dst.rt6_next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503 if (*rtp == rt) {
Thomas Graf86872cb2006-08-22 00:01:08 -07001504 fib6_del_route(fn, rtp, info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505 return 0;
1506 }
1507 }
1508 return -ENOENT;
1509}
1510
1511/*
1512 * Tree traversal function.
1513 *
1514 * Certainly, it is not interrupt safe.
1515 * However, it is internally reenterable wrt itself and fib6_add/fib6_del.
1516 * It means, that we can modify tree during walking
1517 * and use this function for garbage collection, clone pruning,
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001518 * cleaning tree when a device goes down etc. etc.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519 *
1520 * It guarantees that every node will be traversed,
1521 * and that it will be traversed only once.
1522 *
1523 * Callback function w->func may return:
1524 * 0 -> continue walking.
1525 * positive value -> walking is suspended (used by tree dumps,
1526 * and probably by gc, if it will be split to several slices)
1527 * negative value -> terminate walking.
1528 *
1529 * The function itself returns:
1530 * 0 -> walk is complete.
1531 * >0 -> walk is incomplete (i.e. suspended)
1532 * <0 -> walk is terminated by an error.
1533 */
1534
Hannes Frederic Sowa94b2cfe2014-10-06 19:58:34 +02001535static int fib6_walk_continue(struct fib6_walker *w)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001536{
1537 struct fib6_node *fn, *pn;
1538
1539 for (;;) {
1540 fn = w->node;
David S. Miller507c9b12011-12-03 17:50:45 -05001541 if (!fn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542 return 0;
1543
1544 if (w->prune && fn != w->root &&
David S. Miller507c9b12011-12-03 17:50:45 -05001545 fn->fn_flags & RTN_RTINFO && w->state < FWS_C) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546 w->state = FWS_C;
1547 w->leaf = fn->leaf;
1548 }
1549 switch (w->state) {
1550#ifdef CONFIG_IPV6_SUBTREES
1551 case FWS_S:
YOSHIFUJI Hideaki7fc33162006-08-23 17:22:24 -07001552 if (FIB6_SUBTREE(fn)) {
1553 w->node = FIB6_SUBTREE(fn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001554 continue;
1555 }
1556 w->state = FWS_L;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001557#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558 case FWS_L:
1559 if (fn->left) {
1560 w->node = fn->left;
1561 w->state = FWS_INIT;
1562 continue;
1563 }
1564 w->state = FWS_R;
1565 case FWS_R:
1566 if (fn->right) {
1567 w->node = fn->right;
1568 w->state = FWS_INIT;
1569 continue;
1570 }
1571 w->state = FWS_C;
1572 w->leaf = fn->leaf;
1573 case FWS_C:
David S. Miller507c9b12011-12-03 17:50:45 -05001574 if (w->leaf && fn->fn_flags & RTN_RTINFO) {
Patrick McHardy2bec5a32010-02-08 05:19:03 +00001575 int err;
1576
Eric Dumazetfa809e22012-06-25 15:37:19 -07001577 if (w->skip) {
1578 w->skip--;
Kumar Sundararajan1c265852014-04-24 09:48:53 -04001579 goto skip;
Patrick McHardy2bec5a32010-02-08 05:19:03 +00001580 }
1581
1582 err = w->func(w);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583 if (err)
1584 return err;
Patrick McHardy2bec5a32010-02-08 05:19:03 +00001585
1586 w->count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587 continue;
1588 }
Kumar Sundararajan1c265852014-04-24 09:48:53 -04001589skip:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590 w->state = FWS_U;
1591 case FWS_U:
1592 if (fn == w->root)
1593 return 0;
1594 pn = fn->parent;
1595 w->node = pn;
1596#ifdef CONFIG_IPV6_SUBTREES
YOSHIFUJI Hideaki7fc33162006-08-23 17:22:24 -07001597 if (FIB6_SUBTREE(pn) == fn) {
Ilpo Järvinen547b7922008-07-25 21:43:18 -07001598 WARN_ON(!(fn->fn_flags & RTN_ROOT));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599 w->state = FWS_L;
1600 continue;
1601 }
1602#endif
1603 if (pn->left == fn) {
1604 w->state = FWS_R;
1605 continue;
1606 }
1607 if (pn->right == fn) {
1608 w->state = FWS_C;
1609 w->leaf = w->node->leaf;
1610 continue;
1611 }
1612#if RT6_DEBUG >= 2
Ilpo Järvinen547b7922008-07-25 21:43:18 -07001613 WARN_ON(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614#endif
1615 }
1616 }
1617}
1618
Michal Kubeček9a03cd82016-03-08 14:44:35 +01001619static int fib6_walk(struct net *net, struct fib6_walker *w)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620{
1621 int res;
1622
1623 w->state = FWS_INIT;
1624 w->node = w->root;
1625
Michal Kubeček9a03cd82016-03-08 14:44:35 +01001626 fib6_walker_link(net, w);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627 res = fib6_walk_continue(w);
1628 if (res <= 0)
Michal Kubeček9a03cd82016-03-08 14:44:35 +01001629 fib6_walker_unlink(net, w);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630 return res;
1631}
1632
Hannes Frederic Sowa94b2cfe2014-10-06 19:58:34 +02001633static int fib6_clean_node(struct fib6_walker *w)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634{
1635 int res;
1636 struct rt6_info *rt;
Hannes Frederic Sowa94b2cfe2014-10-06 19:58:34 +02001637 struct fib6_cleaner *c = container_of(w, struct fib6_cleaner, w);
Benjamin Theryec7d43c2008-03-03 23:31:57 -08001638 struct nl_info info = {
1639 .nl_net = c->net,
1640 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641
Hannes Frederic Sowa327571c2014-10-06 19:58:38 +02001642 if (c->sernum != FIB6_NO_SERNUM_CHANGE &&
1643 w->node->fn_sernum != c->sernum)
1644 w->node->fn_sernum = c->sernum;
1645
1646 if (!c->func) {
1647 WARN_ON_ONCE(c->sernum == FIB6_NO_SERNUM_CHANGE);
1648 w->leaf = NULL;
1649 return 0;
1650 }
1651
Changli Gaod8d1f302010-06-10 23:31:35 -07001652 for (rt = w->leaf; rt; rt = rt->dst.rt6_next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653 res = c->func(rt, c->arg);
1654 if (res < 0) {
1655 w->leaf = rt;
Denis V. Lunev528c4ce2007-12-13 09:45:12 -08001656 res = fib6_del(rt, &info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657 if (res) {
1658#if RT6_DEBUG >= 2
Joe Perches91df42b2012-05-15 14:11:54 +00001659 pr_debug("%s: del failed: rt=%p@%p err=%d\n",
Wei Wang43c792a2017-08-25 15:03:10 -07001660 __func__, rt,
1661 rcu_access_pointer(rt->rt6i_node),
1662 res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663#endif
1664 continue;
1665 }
1666 return 0;
1667 }
Ilpo Järvinen547b7922008-07-25 21:43:18 -07001668 WARN_ON(res != 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669 }
1670 w->leaf = rt;
1671 return 0;
1672}
1673
1674/*
1675 * Convenient frontend to tree walker.
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001676 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677 * func is called on each route.
1678 * It may return -1 -> delete this route.
1679 * 0 -> continue walking
1680 *
1681 * prune==1 -> only immediate children of node (certainly,
1682 * ignoring pure split nodes) will be scanned.
1683 */
1684
Benjamin Theryec7d43c2008-03-03 23:31:57 -08001685static void fib6_clean_tree(struct net *net, struct fib6_node *root,
Adrian Bunk8ce11e62006-08-07 21:50:48 -07001686 int (*func)(struct rt6_info *, void *arg),
Hannes Frederic Sowa327571c2014-10-06 19:58:38 +02001687 bool prune, int sernum, void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688{
Hannes Frederic Sowa94b2cfe2014-10-06 19:58:34 +02001689 struct fib6_cleaner c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690
1691 c.w.root = root;
1692 c.w.func = fib6_clean_node;
1693 c.w.prune = prune;
Patrick McHardy2bec5a32010-02-08 05:19:03 +00001694 c.w.count = 0;
1695 c.w.skip = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696 c.func = func;
Hannes Frederic Sowa327571c2014-10-06 19:58:38 +02001697 c.sernum = sernum;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698 c.arg = arg;
Benjamin Theryec7d43c2008-03-03 23:31:57 -08001699 c.net = net;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700
Michal Kubeček9a03cd82016-03-08 14:44:35 +01001701 fib6_walk(net, &c.w);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702}
1703
Hannes Frederic Sowa327571c2014-10-06 19:58:38 +02001704static void __fib6_clean_all(struct net *net,
1705 int (*func)(struct rt6_info *, void *),
1706 int sernum, void *arg)
Thomas Grafc71099a2006-08-04 23:20:06 -07001707{
Thomas Grafc71099a2006-08-04 23:20:06 -07001708 struct fib6_table *table;
Daniel Lezcano58f09b72008-03-03 23:25:27 -08001709 struct hlist_head *head;
Patrick McHardy1b43af52006-08-10 23:11:17 -07001710 unsigned int h;
Thomas Grafc71099a2006-08-04 23:20:06 -07001711
Patrick McHardy1b43af52006-08-10 23:11:17 -07001712 rcu_read_lock();
Neil Hormana33bc5c2009-07-30 18:52:15 -07001713 for (h = 0; h < FIB6_TABLE_HASHSZ; h++) {
Daniel Lezcanof3db4852008-03-03 23:27:06 -08001714 head = &net->ipv6.fib_table_hash[h];
Sasha Levinb67bfe02013-02-27 17:06:00 -08001715 hlist_for_each_entry_rcu(table, head, tb6_hlist) {
Thomas Grafc71099a2006-08-04 23:20:06 -07001716 write_lock_bh(&table->tb6_lock);
Benjamin Theryec7d43c2008-03-03 23:31:57 -08001717 fib6_clean_tree(net, &table->tb6_root,
Hannes Frederic Sowa327571c2014-10-06 19:58:38 +02001718 func, false, sernum, arg);
Thomas Grafc71099a2006-08-04 23:20:06 -07001719 write_unlock_bh(&table->tb6_lock);
1720 }
1721 }
Patrick McHardy1b43af52006-08-10 23:11:17 -07001722 rcu_read_unlock();
Thomas Grafc71099a2006-08-04 23:20:06 -07001723}
1724
Hannes Frederic Sowa327571c2014-10-06 19:58:38 +02001725void fib6_clean_all(struct net *net, int (*func)(struct rt6_info *, void *),
1726 void *arg)
1727{
1728 __fib6_clean_all(net, func, FIB6_NO_SERNUM_CHANGE, arg);
1729}
1730
Linus Torvalds1da177e2005-04-16 15:20:36 -07001731static int fib6_prune_clone(struct rt6_info *rt, void *arg)
1732{
1733 if (rt->rt6i_flags & RTF_CACHE) {
1734 RT6_TRACE("pruning clone %p\n", rt);
1735 return -1;
1736 }
1737
1738 return 0;
1739}
1740
Duan Jiong163cd4e2014-05-09 13:31:43 +08001741static void fib6_prune_clones(struct net *net, struct fib6_node *fn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742{
Hannes Frederic Sowa327571c2014-10-06 19:58:38 +02001743 fib6_clean_tree(net, fn, fib6_prune_clone, true,
1744 FIB6_NO_SERNUM_CHANGE, NULL);
Hannes Frederic Sowa705f1c82014-09-28 00:46:06 +02001745}
1746
1747static void fib6_flush_trees(struct net *net)
1748{
Hannes Frederic Sowa812918c2014-10-06 19:58:37 +02001749 int new_sernum = fib6_new_sernum(net);
Hannes Frederic Sowa705f1c82014-09-28 00:46:06 +02001750
Hannes Frederic Sowa327571c2014-10-06 19:58:38 +02001751 __fib6_clean_all(net, NULL, new_sernum, NULL);
Hannes Frederic Sowa705f1c82014-09-28 00:46:06 +02001752}
1753
Linus Torvalds1da177e2005-04-16 15:20:36 -07001754/*
1755 * Garbage collection
1756 */
1757
Michal Kubeček3570df92016-03-08 14:44:25 +01001758struct fib6_gc_args
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759{
1760 int timeout;
1761 int more;
Michal Kubeček3570df92016-03-08 14:44:25 +01001762};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001763
1764static int fib6_age(struct rt6_info *rt, void *arg)
1765{
Michal Kubeček3570df92016-03-08 14:44:25 +01001766 struct fib6_gc_args *gc_args = arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767 unsigned long now = jiffies;
1768
1769 /*
1770 * check addrconf expiration here.
1771 * Routes are expired even if they are in use.
1772 *
1773 * Also age clones. Note, that clones are aged out
1774 * only if they are not in use now.
1775 */
1776
David S. Millerd1918542011-12-28 20:19:20 -05001777 if (rt->rt6i_flags & RTF_EXPIRES && rt->dst.expires) {
1778 if (time_after(now, rt->dst.expires)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779 RT6_TRACE("expiring %p\n", rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780 return -1;
1781 }
Michal Kubeček3570df92016-03-08 14:44:25 +01001782 gc_args->more++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783 } else if (rt->rt6i_flags & RTF_CACHE) {
Changli Gaod8d1f302010-06-10 23:31:35 -07001784 if (atomic_read(&rt->dst.__refcnt) == 0 &&
Michal Kubeček3570df92016-03-08 14:44:25 +01001785 time_after_eq(now, rt->dst.lastuse + gc_args->timeout)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001786 RT6_TRACE("aging clone %p\n", rt);
1787 return -1;
David S. Miller5339ab82012-01-27 15:14:01 -08001788 } else if (rt->rt6i_flags & RTF_GATEWAY) {
1789 struct neighbour *neigh;
1790 __u8 neigh_flags = 0;
1791
1792 neigh = dst_neigh_lookup(&rt->dst, &rt->rt6i_gateway);
1793 if (neigh) {
1794 neigh_flags = neigh->flags;
1795 neigh_release(neigh);
1796 }
Thomas Graf8bd74512012-06-07 06:51:04 +00001797 if (!(neigh_flags & NTF_ROUTER)) {
David S. Miller5339ab82012-01-27 15:14:01 -08001798 RT6_TRACE("purging route %p via non-router but gateway\n",
1799 rt);
1800 return -1;
1801 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001802 }
Michal Kubeček3570df92016-03-08 14:44:25 +01001803 gc_args->more++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804 }
1805
1806 return 0;
1807}
1808
Michal Kubeček2ac3ac82013-08-01 10:04:14 +02001809void fib6_run_gc(unsigned long expires, struct net *net, bool force)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001810{
Michal Kubeček3570df92016-03-08 14:44:25 +01001811 struct fib6_gc_args gc_args;
Michal Kubeček49a18d82013-08-01 10:04:24 +02001812 unsigned long now;
1813
Michal Kubeček2ac3ac82013-08-01 10:04:14 +02001814 if (force) {
Michal Kubeček3dc94f92016-03-08 14:44:45 +01001815 spin_lock_bh(&net->ipv6.fib6_gc_lock);
1816 } else if (!spin_trylock_bh(&net->ipv6.fib6_gc_lock)) {
Michal Kubeček2ac3ac82013-08-01 10:04:14 +02001817 mod_timer(&net->ipv6.ip6_fib_timer, jiffies + HZ);
1818 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819 }
Michal Kubeček2ac3ac82013-08-01 10:04:14 +02001820 gc_args.timeout = expires ? (int)expires :
1821 net->ipv6.sysctl.ip6_rt_gc_interval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822
Stephen Hemminger3d0f24a2008-07-22 14:35:50 -07001823 gc_args.more = icmp6_dst_gc();
Daniel Lezcanof3db4852008-03-03 23:27:06 -08001824
Michal Kubeček3570df92016-03-08 14:44:25 +01001825 fib6_clean_all(net, fib6_age, &gc_args);
Michal Kubeček49a18d82013-08-01 10:04:24 +02001826 now = jiffies;
1827 net->ipv6.ip6_rt_last_gc = now;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828
1829 if (gc_args.more)
Stephen Hemmingerc8a45222008-07-22 14:34:09 -07001830 mod_timer(&net->ipv6.ip6_fib_timer,
Michal Kubeček49a18d82013-08-01 10:04:24 +02001831 round_jiffies(now
Stephen Hemmingerc8a45222008-07-22 14:34:09 -07001832 + net->ipv6.sysctl.ip6_rt_gc_interval));
Stephen Hemminger417f28b2008-07-22 14:33:45 -07001833 else
1834 del_timer(&net->ipv6.ip6_fib_timer);
Michal Kubeček3dc94f92016-03-08 14:44:45 +01001835 spin_unlock_bh(&net->ipv6.fib6_gc_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836}
1837
Daniel Lezcano5b7c9312008-03-03 23:28:58 -08001838static void fib6_gc_timer_cb(unsigned long arg)
1839{
Michal Kubeček2ac3ac82013-08-01 10:04:14 +02001840 fib6_run_gc(0, (struct net *)arg, true);
Daniel Lezcano5b7c9312008-03-03 23:28:58 -08001841}
1842
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00001843static int __net_init fib6_net_init(struct net *net)
Daniel Lezcano58f09b72008-03-03 23:25:27 -08001844{
Eric Dumazet10da66f2010-10-13 08:22:03 +00001845 size_t size = sizeof(struct hlist_head) * FIB6_TABLE_HASHSZ;
1846
Michal Kubeček3dc94f92016-03-08 14:44:45 +01001847 spin_lock_init(&net->ipv6.fib6_gc_lock);
Michal Kubeček9a03cd82016-03-08 14:44:35 +01001848 rwlock_init(&net->ipv6.fib6_walker_lock);
1849 INIT_LIST_HEAD(&net->ipv6.fib6_walkers);
Stephen Hemminger417f28b2008-07-22 14:33:45 -07001850 setup_timer(&net->ipv6.ip6_fib_timer, fib6_gc_timer_cb, (unsigned long)net);
Daniel Lezcano63152fc2008-03-03 23:31:11 -08001851
Benjamin Theryc5728722008-03-03 23:34:17 -08001852 net->ipv6.rt6_stats = kzalloc(sizeof(*net->ipv6.rt6_stats), GFP_KERNEL);
1853 if (!net->ipv6.rt6_stats)
1854 goto out_timer;
1855
Eric Dumazet10da66f2010-10-13 08:22:03 +00001856 /* Avoid false sharing : Use at least a full cache line */
1857 size = max_t(size_t, size, L1_CACHE_BYTES);
1858
1859 net->ipv6.fib_table_hash = kzalloc(size, GFP_KERNEL);
Daniel Lezcano58f09b72008-03-03 23:25:27 -08001860 if (!net->ipv6.fib_table_hash)
Benjamin Theryc5728722008-03-03 23:34:17 -08001861 goto out_rt6_stats;
Daniel Lezcano58f09b72008-03-03 23:25:27 -08001862
1863 net->ipv6.fib6_main_tbl = kzalloc(sizeof(*net->ipv6.fib6_main_tbl),
1864 GFP_KERNEL);
1865 if (!net->ipv6.fib6_main_tbl)
1866 goto out_fib_table_hash;
1867
1868 net->ipv6.fib6_main_tbl->tb6_id = RT6_TABLE_MAIN;
Daniel Lezcano8ed67782008-03-04 13:48:30 -08001869 net->ipv6.fib6_main_tbl->tb6_root.leaf = net->ipv6.ip6_null_entry;
Daniel Lezcano58f09b72008-03-03 23:25:27 -08001870 net->ipv6.fib6_main_tbl->tb6_root.fn_flags =
1871 RTN_ROOT | RTN_TL_ROOT | RTN_RTINFO;
David S. Miller8e773272012-06-11 00:01:52 -07001872 inet_peer_base_init(&net->ipv6.fib6_main_tbl->tb6_peers);
Daniel Lezcano58f09b72008-03-03 23:25:27 -08001873
1874#ifdef CONFIG_IPV6_MULTIPLE_TABLES
1875 net->ipv6.fib6_local_tbl = kzalloc(sizeof(*net->ipv6.fib6_local_tbl),
1876 GFP_KERNEL);
1877 if (!net->ipv6.fib6_local_tbl)
1878 goto out_fib6_main_tbl;
1879 net->ipv6.fib6_local_tbl->tb6_id = RT6_TABLE_LOCAL;
Daniel Lezcano8ed67782008-03-04 13:48:30 -08001880 net->ipv6.fib6_local_tbl->tb6_root.leaf = net->ipv6.ip6_null_entry;
Daniel Lezcano58f09b72008-03-03 23:25:27 -08001881 net->ipv6.fib6_local_tbl->tb6_root.fn_flags =
1882 RTN_ROOT | RTN_TL_ROOT | RTN_RTINFO;
David S. Miller8e773272012-06-11 00:01:52 -07001883 inet_peer_base_init(&net->ipv6.fib6_local_tbl->tb6_peers);
Daniel Lezcano58f09b72008-03-03 23:25:27 -08001884#endif
1885 fib6_tables_init(net);
1886
Stephen Hemminger417f28b2008-07-22 14:33:45 -07001887 return 0;
Daniel Lezcano58f09b72008-03-03 23:25:27 -08001888
1889#ifdef CONFIG_IPV6_MULTIPLE_TABLES
1890out_fib6_main_tbl:
1891 kfree(net->ipv6.fib6_main_tbl);
1892#endif
1893out_fib_table_hash:
1894 kfree(net->ipv6.fib_table_hash);
Benjamin Theryc5728722008-03-03 23:34:17 -08001895out_rt6_stats:
1896 kfree(net->ipv6.rt6_stats);
Daniel Lezcano63152fc2008-03-03 23:31:11 -08001897out_timer:
Stephen Hemminger417f28b2008-07-22 14:33:45 -07001898 return -ENOMEM;
Wang Yufen8db46f12014-03-28 12:07:02 +08001899}
Daniel Lezcano58f09b72008-03-03 23:25:27 -08001900
1901static void fib6_net_exit(struct net *net)
1902{
Sabrina Dubrocac9335db2017-09-08 10:26:19 +02001903 unsigned int i;
1904
Daniel Lezcano8ed67782008-03-04 13:48:30 -08001905 rt6_ifdown(net, NULL);
Stephen Hemminger417f28b2008-07-22 14:33:45 -07001906 del_timer_sync(&net->ipv6.ip6_fib_timer);
1907
Eric Dumazetbf8ed952017-09-08 15:48:47 -07001908 for (i = 0; i < FIB6_TABLE_HASHSZ; i++) {
Sabrina Dubrocac9335db2017-09-08 10:26:19 +02001909 struct hlist_head *head = &net->ipv6.fib_table_hash[i];
1910 struct hlist_node *tmp;
1911 struct fib6_table *tb;
1912
1913 hlist_for_each_entry_safe(tb, tmp, head, tb6_hlist) {
1914 hlist_del(&tb->tb6_hlist);
1915 fib6_free_table(tb);
1916 }
1917 }
1918
Daniel Lezcano58f09b72008-03-03 23:25:27 -08001919 kfree(net->ipv6.fib_table_hash);
Benjamin Theryc5728722008-03-03 23:34:17 -08001920 kfree(net->ipv6.rt6_stats);
Daniel Lezcano58f09b72008-03-03 23:25:27 -08001921}
1922
1923static struct pernet_operations fib6_net_ops = {
1924 .init = fib6_net_init,
1925 .exit = fib6_net_exit,
1926};
1927
Daniel Lezcanod63bddb2007-12-07 00:40:34 -08001928int __init fib6_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001929{
Daniel Lezcanoe0b855902008-03-03 23:24:31 -08001930 int ret = -ENOMEM;
Daniel Lezcano63152fc2008-03-03 23:31:11 -08001931
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932 fib6_node_kmem = kmem_cache_create("fib6_nodes",
1933 sizeof(struct fib6_node),
Daniel Lezcanof845ab62007-12-07 00:45:16 -08001934 0, SLAB_HWCACHE_ALIGN,
Paul Mundt20c2df82007-07-20 10:11:58 +09001935 NULL);
Daniel Lezcanof845ab62007-12-07 00:45:16 -08001936 if (!fib6_node_kmem)
Daniel Lezcanoe0b855902008-03-03 23:24:31 -08001937 goto out;
1938
Daniel Lezcano58f09b72008-03-03 23:25:27 -08001939 ret = register_pernet_subsys(&fib6_net_ops);
1940 if (ret)
Benjamin Theryc5728722008-03-03 23:34:17 -08001941 goto out_kmem_cache_create;
David S. Millere8803b62012-06-16 01:12:19 -07001942
1943 ret = __rtnl_register(PF_INET6, RTM_GETROUTE, NULL, inet6_dump_fib,
1944 NULL);
1945 if (ret)
1946 goto out_unregister_subsys;
Hannes Frederic Sowa705f1c82014-09-28 00:46:06 +02001947
1948 __fib6_flush_trees = fib6_flush_trees;
Daniel Lezcanod63bddb2007-12-07 00:40:34 -08001949out:
1950 return ret;
1951
David S. Millere8803b62012-06-16 01:12:19 -07001952out_unregister_subsys:
1953 unregister_pernet_subsys(&fib6_net_ops);
Daniel Lezcanod63bddb2007-12-07 00:40:34 -08001954out_kmem_cache_create:
1955 kmem_cache_destroy(fib6_node_kmem);
1956 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957}
1958
1959void fib6_gc_cleanup(void)
1960{
Daniel Lezcano58f09b72008-03-03 23:25:27 -08001961 unregister_pernet_subsys(&fib6_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962 kmem_cache_destroy(fib6_node_kmem);
1963}
Hannes Frederic Sowa8d2ca1d2013-09-21 16:55:59 +02001964
1965#ifdef CONFIG_PROC_FS
1966
1967struct ipv6_route_iter {
1968 struct seq_net_private p;
Hannes Frederic Sowa94b2cfe2014-10-06 19:58:34 +02001969 struct fib6_walker w;
Hannes Frederic Sowa8d2ca1d2013-09-21 16:55:59 +02001970 loff_t skip;
1971 struct fib6_table *tbl;
Hannes Frederic Sowa42b18702014-10-06 19:58:35 +02001972 int sernum;
Hannes Frederic Sowa8d2ca1d2013-09-21 16:55:59 +02001973};
1974
1975static int ipv6_route_seq_show(struct seq_file *seq, void *v)
1976{
1977 struct rt6_info *rt = v;
1978 struct ipv6_route_iter *iter = seq->private;
1979
1980 seq_printf(seq, "%pi6 %02x ", &rt->rt6i_dst.addr, rt->rt6i_dst.plen);
1981
1982#ifdef CONFIG_IPV6_SUBTREES
1983 seq_printf(seq, "%pi6 %02x ", &rt->rt6i_src.addr, rt->rt6i_src.plen);
1984#else
1985 seq_puts(seq, "00000000000000000000000000000000 00 ");
1986#endif
1987 if (rt->rt6i_flags & RTF_GATEWAY)
1988 seq_printf(seq, "%pi6", &rt->rt6i_gateway);
1989 else
1990 seq_puts(seq, "00000000000000000000000000000000");
1991
1992 seq_printf(seq, " %08x %08x %08x %08x %8s\n",
1993 rt->rt6i_metric, atomic_read(&rt->dst.__refcnt),
1994 rt->dst.__use, rt->rt6i_flags,
1995 rt->dst.dev ? rt->dst.dev->name : "");
1996 iter->w.leaf = NULL;
1997 return 0;
1998}
1999
Hannes Frederic Sowa94b2cfe2014-10-06 19:58:34 +02002000static int ipv6_route_yield(struct fib6_walker *w)
Hannes Frederic Sowa8d2ca1d2013-09-21 16:55:59 +02002001{
2002 struct ipv6_route_iter *iter = w->args;
2003
2004 if (!iter->skip)
2005 return 1;
2006
2007 do {
2008 iter->w.leaf = iter->w.leaf->dst.rt6_next;
2009 iter->skip--;
2010 if (!iter->skip && iter->w.leaf)
2011 return 1;
2012 } while (iter->w.leaf);
2013
2014 return 0;
2015}
2016
Michal Kubeček9a03cd82016-03-08 14:44:35 +01002017static void ipv6_route_seq_setup_walk(struct ipv6_route_iter *iter,
2018 struct net *net)
Hannes Frederic Sowa8d2ca1d2013-09-21 16:55:59 +02002019{
2020 memset(&iter->w, 0, sizeof(iter->w));
2021 iter->w.func = ipv6_route_yield;
2022 iter->w.root = &iter->tbl->tb6_root;
2023 iter->w.state = FWS_INIT;
2024 iter->w.node = iter->w.root;
2025 iter->w.args = iter;
Hannes Frederic Sowa0a67d3e2013-09-21 16:56:10 +02002026 iter->sernum = iter->w.root->fn_sernum;
Hannes Frederic Sowa8d2ca1d2013-09-21 16:55:59 +02002027 INIT_LIST_HEAD(&iter->w.lh);
Michal Kubeček9a03cd82016-03-08 14:44:35 +01002028 fib6_walker_link(net, &iter->w);
Hannes Frederic Sowa8d2ca1d2013-09-21 16:55:59 +02002029}
2030
2031static struct fib6_table *ipv6_route_seq_next_table(struct fib6_table *tbl,
2032 struct net *net)
2033{
2034 unsigned int h;
2035 struct hlist_node *node;
2036
2037 if (tbl) {
2038 h = (tbl->tb6_id & (FIB6_TABLE_HASHSZ - 1)) + 1;
2039 node = rcu_dereference_bh(hlist_next_rcu(&tbl->tb6_hlist));
2040 } else {
2041 h = 0;
2042 node = NULL;
2043 }
2044
2045 while (!node && h < FIB6_TABLE_HASHSZ) {
2046 node = rcu_dereference_bh(
2047 hlist_first_rcu(&net->ipv6.fib_table_hash[h++]));
2048 }
2049 return hlist_entry_safe(node, struct fib6_table, tb6_hlist);
2050}
2051
Hannes Frederic Sowa0a67d3e2013-09-21 16:56:10 +02002052static void ipv6_route_check_sernum(struct ipv6_route_iter *iter)
2053{
2054 if (iter->sernum != iter->w.root->fn_sernum) {
2055 iter->sernum = iter->w.root->fn_sernum;
2056 iter->w.state = FWS_INIT;
2057 iter->w.node = iter->w.root;
2058 WARN_ON(iter->w.skip);
2059 iter->w.skip = iter->w.count;
2060 }
2061}
2062
Hannes Frederic Sowa8d2ca1d2013-09-21 16:55:59 +02002063static void *ipv6_route_seq_next(struct seq_file *seq, void *v, loff_t *pos)
2064{
2065 int r;
2066 struct rt6_info *n;
2067 struct net *net = seq_file_net(seq);
2068 struct ipv6_route_iter *iter = seq->private;
2069
2070 if (!v)
2071 goto iter_table;
2072
2073 n = ((struct rt6_info *)v)->dst.rt6_next;
2074 if (n) {
2075 ++*pos;
2076 return n;
2077 }
2078
2079iter_table:
Hannes Frederic Sowa0a67d3e2013-09-21 16:56:10 +02002080 ipv6_route_check_sernum(iter);
Hannes Frederic Sowa8d2ca1d2013-09-21 16:55:59 +02002081 read_lock(&iter->tbl->tb6_lock);
2082 r = fib6_walk_continue(&iter->w);
2083 read_unlock(&iter->tbl->tb6_lock);
2084 if (r > 0) {
2085 if (v)
2086 ++*pos;
2087 return iter->w.leaf;
2088 } else if (r < 0) {
Michal Kubeček9a03cd82016-03-08 14:44:35 +01002089 fib6_walker_unlink(net, &iter->w);
Hannes Frederic Sowa8d2ca1d2013-09-21 16:55:59 +02002090 return NULL;
2091 }
Michal Kubeček9a03cd82016-03-08 14:44:35 +01002092 fib6_walker_unlink(net, &iter->w);
Hannes Frederic Sowa8d2ca1d2013-09-21 16:55:59 +02002093
2094 iter->tbl = ipv6_route_seq_next_table(iter->tbl, net);
2095 if (!iter->tbl)
2096 return NULL;
2097
Michal Kubeček9a03cd82016-03-08 14:44:35 +01002098 ipv6_route_seq_setup_walk(iter, net);
Hannes Frederic Sowa8d2ca1d2013-09-21 16:55:59 +02002099 goto iter_table;
2100}
2101
2102static void *ipv6_route_seq_start(struct seq_file *seq, loff_t *pos)
2103 __acquires(RCU_BH)
2104{
2105 struct net *net = seq_file_net(seq);
2106 struct ipv6_route_iter *iter = seq->private;
2107
2108 rcu_read_lock_bh();
2109 iter->tbl = ipv6_route_seq_next_table(NULL, net);
2110 iter->skip = *pos;
2111
2112 if (iter->tbl) {
Michal Kubeček9a03cd82016-03-08 14:44:35 +01002113 ipv6_route_seq_setup_walk(iter, net);
Hannes Frederic Sowa8d2ca1d2013-09-21 16:55:59 +02002114 return ipv6_route_seq_next(seq, NULL, pos);
2115 } else {
2116 return NULL;
2117 }
2118}
2119
2120static bool ipv6_route_iter_active(struct ipv6_route_iter *iter)
2121{
Hannes Frederic Sowa94b2cfe2014-10-06 19:58:34 +02002122 struct fib6_walker *w = &iter->w;
Hannes Frederic Sowa8d2ca1d2013-09-21 16:55:59 +02002123 return w->node && !(w->state == FWS_U && w->node == w->root);
2124}
2125
2126static void ipv6_route_seq_stop(struct seq_file *seq, void *v)
2127 __releases(RCU_BH)
2128{
Michal Kubeček9a03cd82016-03-08 14:44:35 +01002129 struct net *net = seq_file_net(seq);
Hannes Frederic Sowa8d2ca1d2013-09-21 16:55:59 +02002130 struct ipv6_route_iter *iter = seq->private;
2131
2132 if (ipv6_route_iter_active(iter))
Michal Kubeček9a03cd82016-03-08 14:44:35 +01002133 fib6_walker_unlink(net, &iter->w);
Hannes Frederic Sowa8d2ca1d2013-09-21 16:55:59 +02002134
2135 rcu_read_unlock_bh();
2136}
2137
2138static const struct seq_operations ipv6_route_seq_ops = {
2139 .start = ipv6_route_seq_start,
2140 .next = ipv6_route_seq_next,
2141 .stop = ipv6_route_seq_stop,
2142 .show = ipv6_route_seq_show
2143};
2144
2145int ipv6_route_open(struct inode *inode, struct file *file)
2146{
2147 return seq_open_net(inode, file, &ipv6_route_seq_ops,
2148 sizeof(struct ipv6_route_iter));
2149}
2150
2151#endif /* CONFIG_PROC_FS */