blob: cab95cf3b39fcfaf1f17c8e26098d0b7cc66bffa [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>
Ido Schimmeldf77fe42017-08-03 13:28:17 +020036#include <net/fib_notifier.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
38#include <net/ip6_fib.h>
39#include <net/ip6_route.h>
40
Wang Yufen437de072014-03-28 12:07:04 +080041static struct kmem_cache *fib6_node_kmem __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
Hannes Frederic Sowa94b2cfe2014-10-06 19:58:34 +020043struct fib6_cleaner {
44 struct fib6_walker w;
Benjamin Theryec7d43c2008-03-03 23:31:57 -080045 struct net *net;
Linus Torvalds1da177e2005-04-16 15:20:36 -070046 int (*func)(struct rt6_info *, void *arg);
Hannes Frederic Sowa327571c2014-10-06 19:58:38 +020047 int sernum;
Linus Torvalds1da177e2005-04-16 15:20:36 -070048 void *arg;
49};
50
Linus Torvalds1da177e2005-04-16 15:20:36 -070051#ifdef CONFIG_IPV6_SUBTREES
52#define FWS_INIT FWS_S
Linus Torvalds1da177e2005-04-16 15:20:36 -070053#else
54#define FWS_INIT FWS_L
Linus Torvalds1da177e2005-04-16 15:20:36 -070055#endif
56
Wei Wang66f5d6c2017-10-06 12:06:10 -070057static struct rt6_info *fib6_find_prefix(struct net *net,
58 struct fib6_table *table,
59 struct fib6_node *fn);
60static struct fib6_node *fib6_repair_tree(struct net *net,
61 struct fib6_table *table,
62 struct fib6_node *fn);
Michal Kubeček9a03cd82016-03-08 14:44:35 +010063static int fib6_walk(struct net *net, struct fib6_walker *w);
Hannes Frederic Sowa94b2cfe2014-10-06 19:58:34 +020064static int fib6_walk_continue(struct fib6_walker *w);
Linus Torvalds1da177e2005-04-16 15:20:36 -070065
66/*
67 * A routing update causes an increase of the serial number on the
68 * affected subtree. This allows for cached routes to be asynchronously
69 * tested when modifications are made to the destination cache as a
70 * result of redirects, path MTU changes, etc.
71 */
72
Kees Cook86cb30e2017-10-17 20:21:24 -070073static void fib6_gc_timer_cb(struct timer_list *t);
Daniel Lezcano5b7c9312008-03-03 23:28:58 -080074
Michal Kubeček9a03cd82016-03-08 14:44:35 +010075#define FOR_WALKERS(net, w) \
76 list_for_each_entry(w, &(net)->ipv6.fib6_walkers, lh)
Linus Torvalds1da177e2005-04-16 15:20:36 -070077
Michal Kubeček9a03cd82016-03-08 14:44:35 +010078static void fib6_walker_link(struct net *net, struct fib6_walker *w)
Adrian Bunk90d41122006-08-14 23:49:16 -070079{
Michal Kubeček9a03cd82016-03-08 14:44:35 +010080 write_lock_bh(&net->ipv6.fib6_walker_lock);
81 list_add(&w->lh, &net->ipv6.fib6_walkers);
82 write_unlock_bh(&net->ipv6.fib6_walker_lock);
Adrian Bunk90d41122006-08-14 23:49:16 -070083}
84
Michal Kubeček9a03cd82016-03-08 14:44:35 +010085static void fib6_walker_unlink(struct net *net, struct fib6_walker *w)
Adrian Bunk90d41122006-08-14 23:49:16 -070086{
Michal Kubeček9a03cd82016-03-08 14:44:35 +010087 write_lock_bh(&net->ipv6.fib6_walker_lock);
Alexey Dobriyanbbef49d2010-02-18 08:13:30 +000088 list_del(&w->lh);
Michal Kubeček9a03cd82016-03-08 14:44:35 +010089 write_unlock_bh(&net->ipv6.fib6_walker_lock);
Adrian Bunk90d41122006-08-14 23:49:16 -070090}
Hannes Frederic Sowa94b2cfe2014-10-06 19:58:34 +020091
Hannes Frederic Sowa812918c2014-10-06 19:58:37 +020092static int fib6_new_sernum(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -070093{
Hannes Frederic Sowa42b18702014-10-06 19:58:35 +020094 int new, old;
95
96 do {
Hannes Frederic Sowa812918c2014-10-06 19:58:37 +020097 old = atomic_read(&net->ipv6.fib6_sernum);
Hannes Frederic Sowa42b18702014-10-06 19:58:35 +020098 new = old < INT_MAX ? old + 1 : 1;
Hannes Frederic Sowa812918c2014-10-06 19:58:37 +020099 } while (atomic_cmpxchg(&net->ipv6.fib6_sernum,
100 old, new) != old);
Hannes Frederic Sowa42b18702014-10-06 19:58:35 +0200101 return new;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102}
103
Hannes Frederic Sowa327571c2014-10-06 19:58:38 +0200104enum {
105 FIB6_NO_SERNUM_CHANGE = 0,
106};
107
Wei Wang180ca442017-10-06 12:05:56 -0700108void fib6_update_sernum(struct rt6_info *rt)
109{
Wei Wang180ca442017-10-06 12:05:56 -0700110 struct net *net = dev_net(rt->dst.dev);
111 struct fib6_node *fn;
112
Wei Wang180ca442017-10-06 12:05:56 -0700113 fn = rcu_dereference_protected(rt->rt6i_node,
Ido Schimmel922c2ac2018-01-07 12:45:14 +0200114 lockdep_is_held(&rt->rt6i_table->tb6_lock));
Wei Wang180ca442017-10-06 12:05:56 -0700115 if (fn)
116 fn->fn_sernum = fib6_new_sernum(net);
Wei Wang180ca442017-10-06 12:05:56 -0700117}
118
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119/*
120 * Auxiliary address test functions for the radix tree.
121 *
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900122 * These assume a 32bit processor (although it will work on
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 * 64bit processors)
124 */
125
126/*
127 * test bit
128 */
YOSHIFUJI Hideaki / 吉藤英明02cdce52010-03-27 01:24:16 +0000129#if defined(__LITTLE_ENDIAN)
130# define BITOP_BE32_SWIZZLE (0x1F & ~7)
131#else
132# define BITOP_BE32_SWIZZLE 0
133#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134
Hannes Frederic Sowa94b2cfe2014-10-06 19:58:34 +0200135static __be32 addr_bit_set(const void *token, int fn_bit)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136{
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000137 const __be32 *addr = token;
YOSHIFUJI Hideaki / 吉藤英明02cdce52010-03-27 01:24:16 +0000138 /*
139 * Here,
Wang Yufen8db46f12014-03-28 12:07:02 +0800140 * 1 << ((~fn_bit ^ BITOP_BE32_SWIZZLE) & 0x1f)
YOSHIFUJI Hideaki / 吉藤英明02cdce52010-03-27 01:24:16 +0000141 * is optimized version of
142 * htonl(1 << ((~fn_bit)&0x1F))
143 * See include/asm-generic/bitops/le.h.
144 */
Eric Dumazet0eae88f2010-04-20 19:06:52 -0700145 return (__force __be32)(1 << ((~fn_bit ^ BITOP_BE32_SWIZZLE) & 0x1f)) &
146 addr[fn_bit >> 5];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147}
148
Wei Wang81eb8442017-10-06 12:06:11 -0700149static struct fib6_node *node_alloc(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150{
151 struct fib6_node *fn;
152
Robert P. J. Dayc3762222007-02-10 01:45:03 -0800153 fn = kmem_cache_zalloc(fib6_node_kmem, GFP_ATOMIC);
Wei Wang81eb8442017-10-06 12:06:11 -0700154 if (fn)
155 net->ipv6.rt6_stats->fib_nodes++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156
157 return fn;
158}
159
Wei Wang81eb8442017-10-06 12:06:11 -0700160static void node_free_immediate(struct net *net, struct fib6_node *fn)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161{
162 kmem_cache_free(fib6_node_kmem, fn);
Wei Wang81eb8442017-10-06 12:06:11 -0700163 net->ipv6.rt6_stats->fib_nodes--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164}
165
Wei Wangc5cff852017-08-21 09:47:10 -0700166static void node_free_rcu(struct rcu_head *head)
167{
168 struct fib6_node *fn = container_of(head, struct fib6_node, rcu);
169
170 kmem_cache_free(fib6_node_kmem, fn);
171}
172
Wei Wang81eb8442017-10-06 12:06:11 -0700173static void node_free(struct net *net, struct fib6_node *fn)
Wei Wangc5cff852017-08-21 09:47:10 -0700174{
175 call_rcu(&fn->rcu, node_free_rcu);
Wei Wang81eb8442017-10-06 12:06:11 -0700176 net->ipv6.rt6_stats->fib_nodes--;
Wei Wangc5cff852017-08-21 09:47:10 -0700177}
178
Ido Schimmela460aa82017-08-03 13:28:25 +0200179void rt6_free_pcpu(struct rt6_info *non_pcpu_rt)
Martin KaFai Laud52d3992015-05-22 20:56:06 -0700180{
181 int cpu;
182
183 if (!non_pcpu_rt->rt6i_pcpu)
184 return;
185
186 for_each_possible_cpu(cpu) {
187 struct rt6_info **ppcpu_rt;
188 struct rt6_info *pcpu_rt;
189
190 ppcpu_rt = per_cpu_ptr(non_pcpu_rt->rt6i_pcpu, cpu);
191 pcpu_rt = *ppcpu_rt;
192 if (pcpu_rt) {
Wei Wang95145282017-06-17 10:42:34 -0700193 dst_dev_put(&pcpu_rt->dst);
Wei Wang1cfb71e2017-06-17 10:42:33 -0700194 dst_release(&pcpu_rt->dst);
Martin KaFai Laud52d3992015-05-22 20:56:06 -0700195 *ppcpu_rt = NULL;
196 }
197 }
198}
Ido Schimmela460aa82017-08-03 13:28:25 +0200199EXPORT_SYMBOL_GPL(rt6_free_pcpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200
Sabrina Dubrocaba1cc082017-09-08 10:26:19 +0200201static void fib6_free_table(struct fib6_table *table)
202{
203 inetpeer_invalidate_tree(&table->tb6_peers);
204 kfree(table);
205}
206
Daniel Lezcano58f09b72008-03-03 23:25:27 -0800207static void fib6_link_table(struct net *net, struct fib6_table *tb)
Patrick McHardy1b43af52006-08-10 23:11:17 -0700208{
209 unsigned int h;
210
Thomas Graf375216a2006-10-21 20:20:54 -0700211 /*
212 * Initialize table lock at a single place to give lockdep a key,
213 * tables aren't visible prior to being linked to the list.
214 */
Wei Wang66f5d6c2017-10-06 12:06:10 -0700215 spin_lock_init(&tb->tb6_lock);
Neil Hormana33bc5c2009-07-30 18:52:15 -0700216 h = tb->tb6_id & (FIB6_TABLE_HASHSZ - 1);
Patrick McHardy1b43af52006-08-10 23:11:17 -0700217
218 /*
219 * No protection necessary, this is the only list mutatation
220 * operation, tables never disappear once they exist.
221 */
Daniel Lezcano58f09b72008-03-03 23:25:27 -0800222 hlist_add_head_rcu(&tb->tb6_hlist, &net->ipv6.fib_table_hash[h]);
Patrick McHardy1b43af52006-08-10 23:11:17 -0700223}
224
225#ifdef CONFIG_IPV6_MULTIPLE_TABLES
Daniel Lezcanoe0b855902008-03-03 23:24:31 -0800226
Daniel Lezcano8ed67782008-03-04 13:48:30 -0800227static struct fib6_table *fib6_alloc_table(struct net *net, u32 id)
Thomas Grafc71099a2006-08-04 23:20:06 -0700228{
229 struct fib6_table *table;
230
231 table = kzalloc(sizeof(*table), GFP_ATOMIC);
David S. Miller507c9b12011-12-03 17:50:45 -0500232 if (table) {
Thomas Grafc71099a2006-08-04 23:20:06 -0700233 table->tb6_id = id;
Wei Wang66f5d6c2017-10-06 12:06:10 -0700234 rcu_assign_pointer(table->tb6_root.leaf,
235 net->ipv6.ip6_null_entry);
Thomas Grafc71099a2006-08-04 23:20:06 -0700236 table->tb6_root.fn_flags = RTN_ROOT | RTN_TL_ROOT | RTN_RTINFO;
David S. Miller8e773272012-06-11 00:01:52 -0700237 inet_peer_base_init(&table->tb6_peers);
Thomas Grafc71099a2006-08-04 23:20:06 -0700238 }
239
240 return table;
241}
242
Daniel Lezcano58f09b72008-03-03 23:25:27 -0800243struct fib6_table *fib6_new_table(struct net *net, u32 id)
Thomas Grafc71099a2006-08-04 23:20:06 -0700244{
245 struct fib6_table *tb;
246
247 if (id == 0)
248 id = RT6_TABLE_MAIN;
Daniel Lezcano58f09b72008-03-03 23:25:27 -0800249 tb = fib6_get_table(net, id);
Thomas Grafc71099a2006-08-04 23:20:06 -0700250 if (tb)
251 return tb;
252
Daniel Lezcano8ed67782008-03-04 13:48:30 -0800253 tb = fib6_alloc_table(net, id);
David S. Miller507c9b12011-12-03 17:50:45 -0500254 if (tb)
Daniel Lezcano58f09b72008-03-03 23:25:27 -0800255 fib6_link_table(net, tb);
Thomas Grafc71099a2006-08-04 23:20:06 -0700256
257 return tb;
258}
David Ahernb3b46632016-05-04 21:46:12 -0700259EXPORT_SYMBOL_GPL(fib6_new_table);
Thomas Grafc71099a2006-08-04 23:20:06 -0700260
Daniel Lezcano58f09b72008-03-03 23:25:27 -0800261struct fib6_table *fib6_get_table(struct net *net, u32 id)
Thomas Grafc71099a2006-08-04 23:20:06 -0700262{
263 struct fib6_table *tb;
Daniel Lezcano58f09b72008-03-03 23:25:27 -0800264 struct hlist_head *head;
Thomas Grafc71099a2006-08-04 23:20:06 -0700265 unsigned int h;
266
267 if (id == 0)
268 id = RT6_TABLE_MAIN;
Neil Hormana33bc5c2009-07-30 18:52:15 -0700269 h = id & (FIB6_TABLE_HASHSZ - 1);
Thomas Grafc71099a2006-08-04 23:20:06 -0700270 rcu_read_lock();
Daniel Lezcano58f09b72008-03-03 23:25:27 -0800271 head = &net->ipv6.fib_table_hash[h];
Sasha Levinb67bfe02013-02-27 17:06:00 -0800272 hlist_for_each_entry_rcu(tb, head, tb6_hlist) {
Thomas Grafc71099a2006-08-04 23:20:06 -0700273 if (tb->tb6_id == id) {
274 rcu_read_unlock();
275 return tb;
276 }
277 }
278 rcu_read_unlock();
279
280 return NULL;
281}
David Ahernc4850682015-10-12 11:47:08 -0700282EXPORT_SYMBOL_GPL(fib6_get_table);
Thomas Grafc71099a2006-08-04 23:20:06 -0700283
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +0000284static void __net_init fib6_tables_init(struct net *net)
Thomas Grafc71099a2006-08-04 23:20:06 -0700285{
Daniel Lezcano58f09b72008-03-03 23:25:27 -0800286 fib6_link_table(net, net->ipv6.fib6_main_tbl);
287 fib6_link_table(net, net->ipv6.fib6_local_tbl);
Thomas Grafc71099a2006-08-04 23:20:06 -0700288}
Thomas Grafc71099a2006-08-04 23:20:06 -0700289#else
290
Daniel Lezcano58f09b72008-03-03 23:25:27 -0800291struct fib6_table *fib6_new_table(struct net *net, u32 id)
Thomas Grafc71099a2006-08-04 23:20:06 -0700292{
Daniel Lezcano58f09b72008-03-03 23:25:27 -0800293 return fib6_get_table(net, id);
Thomas Grafc71099a2006-08-04 23:20:06 -0700294}
295
Daniel Lezcano58f09b72008-03-03 23:25:27 -0800296struct fib6_table *fib6_get_table(struct net *net, u32 id)
Thomas Grafc71099a2006-08-04 23:20:06 -0700297{
Daniel Lezcano58f09b72008-03-03 23:25:27 -0800298 return net->ipv6.fib6_main_tbl;
Thomas Grafc71099a2006-08-04 23:20:06 -0700299}
300
David S. Miller4c9483b2011-03-12 16:22:43 -0500301struct dst_entry *fib6_rule_lookup(struct net *net, struct flowi6 *fl6,
Daniel Lezcano58f09b72008-03-03 23:25:27 -0800302 int flags, pol_lookup_t lookup)
Thomas Grafc71099a2006-08-04 23:20:06 -0700303{
lucienab997ad2015-10-23 15:36:53 +0800304 struct rt6_info *rt;
305
306 rt = lookup(net, net->ipv6.fib6_main_tbl, fl6, flags);
Serhey Popovych07f61552017-06-20 13:29:25 +0300307 if (rt->dst.error == -EAGAIN) {
lucienab997ad2015-10-23 15:36:53 +0800308 ip6_rt_put(rt);
309 rt = net->ipv6.ip6_null_entry;
310 dst_hold(&rt->dst);
311 }
312
313 return &rt->dst;
Thomas Grafc71099a2006-08-04 23:20:06 -0700314}
315
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +0000316static void __net_init fib6_tables_init(struct net *net)
Thomas Grafc71099a2006-08-04 23:20:06 -0700317{
Daniel Lezcano58f09b72008-03-03 23:25:27 -0800318 fib6_link_table(net, net->ipv6.fib6_main_tbl);
Thomas Grafc71099a2006-08-04 23:20:06 -0700319}
320
321#endif
322
Ido Schimmele1ee0a52017-08-03 13:28:19 +0200323unsigned int fib6_tables_seq_read(struct net *net)
324{
325 unsigned int h, fib_seq = 0;
326
327 rcu_read_lock();
328 for (h = 0; h < FIB6_TABLE_HASHSZ; h++) {
329 struct hlist_head *head = &net->ipv6.fib_table_hash[h];
330 struct fib6_table *tb;
331
Wei Wang66f5d6c2017-10-06 12:06:10 -0700332 hlist_for_each_entry_rcu(tb, head, tb6_hlist)
Ido Schimmele1ee0a52017-08-03 13:28:19 +0200333 fib_seq += tb->fib_seq;
Ido Schimmele1ee0a52017-08-03 13:28:19 +0200334 }
335 rcu_read_unlock();
336
337 return fib_seq;
338}
339
340static int call_fib6_entry_notifier(struct notifier_block *nb, struct net *net,
341 enum fib_event_type event_type,
342 struct rt6_info *rt)
343{
344 struct fib6_entry_notifier_info info = {
345 .rt = rt,
346 };
347
348 return call_fib6_notifier(nb, net, event_type, &info.info);
349}
350
Ido Schimmeldf77fe42017-08-03 13:28:17 +0200351static int call_fib6_entry_notifiers(struct net *net,
352 enum fib_event_type event_type,
David Ahern6c31e5a2017-10-27 17:37:13 -0700353 struct rt6_info *rt,
354 struct netlink_ext_ack *extack)
Ido Schimmeldf77fe42017-08-03 13:28:17 +0200355{
356 struct fib6_entry_notifier_info info = {
David Ahern6c31e5a2017-10-27 17:37:13 -0700357 .info.extack = extack,
Ido Schimmeldf77fe42017-08-03 13:28:17 +0200358 .rt = rt,
359 };
360
Ido Schimmele1ee0a52017-08-03 13:28:19 +0200361 rt->rt6i_table->fib_seq++;
Ido Schimmeldf77fe42017-08-03 13:28:17 +0200362 return call_fib6_notifiers(net, event_type, &info.info);
363}
364
Ido Schimmele1ee0a52017-08-03 13:28:19 +0200365struct fib6_dump_arg {
366 struct net *net;
367 struct notifier_block *nb;
368};
369
370static void fib6_rt_dump(struct rt6_info *rt, struct fib6_dump_arg *arg)
371{
372 if (rt == arg->net->ipv6.ip6_null_entry)
373 return;
374 call_fib6_entry_notifier(arg->nb, arg->net, FIB_EVENT_ENTRY_ADD, rt);
375}
376
377static int fib6_node_dump(struct fib6_walker *w)
378{
379 struct rt6_info *rt;
380
Wei Wang66f5d6c2017-10-06 12:06:10 -0700381 for_each_fib6_walker_rt(w)
Ido Schimmele1ee0a52017-08-03 13:28:19 +0200382 fib6_rt_dump(rt, w->args);
383 w->leaf = NULL;
384 return 0;
385}
386
387static void fib6_table_dump(struct net *net, struct fib6_table *tb,
388 struct fib6_walker *w)
389{
390 w->root = &tb->tb6_root;
Wei Wang66f5d6c2017-10-06 12:06:10 -0700391 spin_lock_bh(&tb->tb6_lock);
Ido Schimmele1ee0a52017-08-03 13:28:19 +0200392 fib6_walk(net, w);
Wei Wang66f5d6c2017-10-06 12:06:10 -0700393 spin_unlock_bh(&tb->tb6_lock);
Ido Schimmele1ee0a52017-08-03 13:28:19 +0200394}
395
396/* Called with rcu_read_lock() */
397int fib6_tables_dump(struct net *net, struct notifier_block *nb)
398{
399 struct fib6_dump_arg arg;
400 struct fib6_walker *w;
401 unsigned int h;
402
403 w = kzalloc(sizeof(*w), GFP_ATOMIC);
404 if (!w)
405 return -ENOMEM;
406
407 w->func = fib6_node_dump;
408 arg.net = net;
409 arg.nb = nb;
410 w->args = &arg;
411
412 for (h = 0; h < FIB6_TABLE_HASHSZ; h++) {
413 struct hlist_head *head = &net->ipv6.fib_table_hash[h];
414 struct fib6_table *tb;
415
416 hlist_for_each_entry_rcu(tb, head, tb6_hlist)
417 fib6_table_dump(net, tb, w);
418 }
419
420 kfree(w);
421
422 return 0;
423}
424
Hannes Frederic Sowa94b2cfe2014-10-06 19:58:34 +0200425static int fib6_dump_node(struct fib6_walker *w)
Patrick McHardy1b43af52006-08-10 23:11:17 -0700426{
427 int res;
428 struct rt6_info *rt;
429
Wei Wang66f5d6c2017-10-06 12:06:10 -0700430 for_each_fib6_walker_rt(w) {
Patrick McHardy1b43af52006-08-10 23:11:17 -0700431 res = rt6_dump_route(rt, w->args);
432 if (res < 0) {
433 /* Frame is full, suspend walking */
434 w->leaf = rt;
435 return 1;
436 }
David Ahernbeb1afac52017-02-02 12:37:09 -0800437
438 /* Multipath routes are dumped in one route with the
439 * RTA_MULTIPATH attribute. Jump 'rt' to point to the
440 * last sibling of this route (no need to dump the
441 * sibling routes again)
442 */
443 if (rt->rt6i_nsiblings)
444 rt = list_last_entry(&rt->rt6i_siblings,
445 struct rt6_info,
446 rt6i_siblings);
Patrick McHardy1b43af52006-08-10 23:11:17 -0700447 }
448 w->leaf = NULL;
449 return 0;
450}
451
452static void fib6_dump_end(struct netlink_callback *cb)
453{
Michal Kubeček9a03cd82016-03-08 14:44:35 +0100454 struct net *net = sock_net(cb->skb->sk);
Hannes Frederic Sowa94b2cfe2014-10-06 19:58:34 +0200455 struct fib6_walker *w = (void *)cb->args[2];
Patrick McHardy1b43af52006-08-10 23:11:17 -0700456
457 if (w) {
Herbert Xu7891cc82009-01-13 22:17:51 -0800458 if (cb->args[4]) {
459 cb->args[4] = 0;
Michal Kubeček9a03cd82016-03-08 14:44:35 +0100460 fib6_walker_unlink(net, w);
Herbert Xu7891cc82009-01-13 22:17:51 -0800461 }
Patrick McHardy1b43af52006-08-10 23:11:17 -0700462 cb->args[2] = 0;
463 kfree(w);
464 }
Wang Yufen437de072014-03-28 12:07:04 +0800465 cb->done = (void *)cb->args[3];
Patrick McHardy1b43af52006-08-10 23:11:17 -0700466 cb->args[1] = 3;
467}
468
469static int fib6_dump_done(struct netlink_callback *cb)
470{
471 fib6_dump_end(cb);
472 return cb->done ? cb->done(cb) : 0;
473}
474
475static int fib6_dump_table(struct fib6_table *table, struct sk_buff *skb,
476 struct netlink_callback *cb)
477{
Michal Kubeček9a03cd82016-03-08 14:44:35 +0100478 struct net *net = sock_net(skb->sk);
Hannes Frederic Sowa94b2cfe2014-10-06 19:58:34 +0200479 struct fib6_walker *w;
Patrick McHardy1b43af52006-08-10 23:11:17 -0700480 int res;
481
482 w = (void *)cb->args[2];
483 w->root = &table->tb6_root;
484
485 if (cb->args[4] == 0) {
Patrick McHardy2bec5a32010-02-08 05:19:03 +0000486 w->count = 0;
487 w->skip = 0;
488
Wei Wang66f5d6c2017-10-06 12:06:10 -0700489 spin_lock_bh(&table->tb6_lock);
Michal Kubeček9a03cd82016-03-08 14:44:35 +0100490 res = fib6_walk(net, w);
Wei Wang66f5d6c2017-10-06 12:06:10 -0700491 spin_unlock_bh(&table->tb6_lock);
Patrick McHardy2bec5a32010-02-08 05:19:03 +0000492 if (res > 0) {
Patrick McHardy1b43af52006-08-10 23:11:17 -0700493 cb->args[4] = 1;
Patrick McHardy2bec5a32010-02-08 05:19:03 +0000494 cb->args[5] = w->root->fn_sernum;
495 }
Patrick McHardy1b43af52006-08-10 23:11:17 -0700496 } else {
Patrick McHardy2bec5a32010-02-08 05:19:03 +0000497 if (cb->args[5] != w->root->fn_sernum) {
498 /* Begin at the root if the tree changed */
499 cb->args[5] = w->root->fn_sernum;
500 w->state = FWS_INIT;
501 w->node = w->root;
502 w->skip = w->count;
503 } else
504 w->skip = 0;
505
Wei Wang66f5d6c2017-10-06 12:06:10 -0700506 spin_lock_bh(&table->tb6_lock);
Patrick McHardy1b43af52006-08-10 23:11:17 -0700507 res = fib6_walk_continue(w);
Wei Wang66f5d6c2017-10-06 12:06:10 -0700508 spin_unlock_bh(&table->tb6_lock);
Herbert Xu7891cc82009-01-13 22:17:51 -0800509 if (res <= 0) {
Michal Kubeček9a03cd82016-03-08 14:44:35 +0100510 fib6_walker_unlink(net, w);
Herbert Xu7891cc82009-01-13 22:17:51 -0800511 cb->args[4] = 0;
Patrick McHardy1b43af52006-08-10 23:11:17 -0700512 }
Patrick McHardy1b43af52006-08-10 23:11:17 -0700513 }
Herbert Xu7891cc82009-01-13 22:17:51 -0800514
Patrick McHardy1b43af52006-08-10 23:11:17 -0700515 return res;
516}
517
Thomas Grafc127ea22007-03-22 11:58:32 -0700518static int inet6_dump_fib(struct sk_buff *skb, struct netlink_callback *cb)
Patrick McHardy1b43af52006-08-10 23:11:17 -0700519{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900520 struct net *net = sock_net(skb->sk);
Patrick McHardy1b43af52006-08-10 23:11:17 -0700521 unsigned int h, s_h;
522 unsigned int e = 0, s_e;
523 struct rt6_rtnl_dump_arg arg;
Hannes Frederic Sowa94b2cfe2014-10-06 19:58:34 +0200524 struct fib6_walker *w;
Patrick McHardy1b43af52006-08-10 23:11:17 -0700525 struct fib6_table *tb;
Daniel Lezcano58f09b72008-03-03 23:25:27 -0800526 struct hlist_head *head;
Patrick McHardy1b43af52006-08-10 23:11:17 -0700527 int res = 0;
528
529 s_h = cb->args[0];
530 s_e = cb->args[1];
531
532 w = (void *)cb->args[2];
David S. Miller507c9b12011-12-03 17:50:45 -0500533 if (!w) {
Patrick McHardy1b43af52006-08-10 23:11:17 -0700534 /* New dump:
535 *
536 * 1. hook callback destructor.
537 */
538 cb->args[3] = (long)cb->done;
539 cb->done = fib6_dump_done;
540
541 /*
542 * 2. allocate and initialize walker.
543 */
544 w = kzalloc(sizeof(*w), GFP_ATOMIC);
David S. Miller507c9b12011-12-03 17:50:45 -0500545 if (!w)
Patrick McHardy1b43af52006-08-10 23:11:17 -0700546 return -ENOMEM;
547 w->func = fib6_dump_node;
548 cb->args[2] = (long)w;
549 }
550
551 arg.skb = skb;
552 arg.cb = cb;
Brian Haley191cd582008-08-14 15:33:21 -0700553 arg.net = net;
Patrick McHardy1b43af52006-08-10 23:11:17 -0700554 w->args = &arg;
555
Eric Dumazete67f88d2011-04-27 22:56:07 +0000556 rcu_read_lock();
Neil Hormana33bc5c2009-07-30 18:52:15 -0700557 for (h = s_h; h < FIB6_TABLE_HASHSZ; h++, s_e = 0) {
Patrick McHardy1b43af52006-08-10 23:11:17 -0700558 e = 0;
Daniel Lezcano58f09b72008-03-03 23:25:27 -0800559 head = &net->ipv6.fib_table_hash[h];
Sasha Levinb67bfe02013-02-27 17:06:00 -0800560 hlist_for_each_entry_rcu(tb, head, tb6_hlist) {
Patrick McHardy1b43af52006-08-10 23:11:17 -0700561 if (e < s_e)
562 goto next;
563 res = fib6_dump_table(tb, skb, cb);
564 if (res != 0)
565 goto out;
566next:
567 e++;
568 }
569 }
570out:
Eric Dumazete67f88d2011-04-27 22:56:07 +0000571 rcu_read_unlock();
Patrick McHardy1b43af52006-08-10 23:11:17 -0700572 cb->args[1] = e;
573 cb->args[0] = h;
574
575 res = res < 0 ? res : skb->len;
576 if (res <= 0)
577 fib6_dump_end(cb);
578 return res;
579}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580
581/*
582 * Routing Table
583 *
584 * return the appropriate node for a routing tree "add" operation
585 * by either creating and inserting or by returning an existing
586 * node.
587 */
588
Wei Wang81eb8442017-10-06 12:06:11 -0700589static struct fib6_node *fib6_add_1(struct net *net,
590 struct fib6_table *table,
Wei Wang66f5d6c2017-10-06 12:06:10 -0700591 struct fib6_node *root,
592 struct in6_addr *addr, int plen,
593 int offset, int allow_create,
594 int replace_required,
595 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596{
597 struct fib6_node *fn, *in, *ln;
598 struct fib6_node *pn = NULL;
599 struct rt6key *key;
600 int bit;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900601 __be32 dir = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602
603 RT6_TRACE("fib6_add_1\n");
604
605 /* insert node in tree */
606
607 fn = root;
608
609 do {
Wei Wang66f5d6c2017-10-06 12:06:10 -0700610 struct rt6_info *leaf = rcu_dereference_protected(fn->leaf,
611 lockdep_is_held(&table->tb6_lock));
612 key = (struct rt6key *)((u8 *)leaf + offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613
614 /*
615 * Prefix match
616 */
617 if (plen < fn->fn_bit ||
Matti Vaittinen4a287eb2011-11-14 00:15:14 +0000618 !ipv6_prefix_equal(&key->addr, addr, fn->fn_bit)) {
Matti Vaittinen14df0152011-11-16 21:18:02 +0000619 if (!allow_create) {
620 if (replace_required) {
David Ahernd5d531c2017-05-21 10:12:05 -0600621 NL_SET_ERR_MSG(extack,
622 "Can not replace route - no match found");
Joe Perchesf3213832012-05-15 14:11:53 +0000623 pr_warn("Can't replace route, no match found\n");
Matti Vaittinen14df0152011-11-16 21:18:02 +0000624 return ERR_PTR(-ENOENT);
625 }
Joe Perchesf3213832012-05-15 14:11:53 +0000626 pr_warn("NLM_F_CREATE should be set when creating new route\n");
Matti Vaittinen14df0152011-11-16 21:18:02 +0000627 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 goto insert_above;
Matti Vaittinen4a287eb2011-11-14 00:15:14 +0000629 }
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900630
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 /*
632 * Exact match ?
633 */
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900634
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 if (plen == fn->fn_bit) {
636 /* clean up an intermediate node */
David S. Miller507c9b12011-12-03 17:50:45 -0500637 if (!(fn->fn_flags & RTN_RTINFO)) {
Wei Wang66f5d6c2017-10-06 12:06:10 -0700638 RCU_INIT_POINTER(fn->leaf, NULL);
639 rt6_release(leaf);
Wei Wang4512c432018-01-08 10:34:00 -0800640 /* remove null_entry in the root node */
641 } else if (fn->fn_flags & RTN_TL_ROOT &&
642 rcu_access_pointer(fn->leaf) ==
643 net->ipv6.ip6_null_entry) {
644 RCU_INIT_POINTER(fn->leaf, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 }
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900646
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 return fn;
648 }
649
650 /*
651 * We have more bits to go
652 */
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900653
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 /* Try to walk down on tree. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 dir = addr_bit_set(addr, fn->fn_bit);
656 pn = fn;
Wei Wang66f5d6c2017-10-06 12:06:10 -0700657 fn = dir ?
658 rcu_dereference_protected(fn->right,
659 lockdep_is_held(&table->tb6_lock)) :
660 rcu_dereference_protected(fn->left,
661 lockdep_is_held(&table->tb6_lock));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 } while (fn);
663
Matti Vaittinen14df0152011-11-16 21:18:02 +0000664 if (!allow_create) {
Matti Vaittinen4a287eb2011-11-14 00:15:14 +0000665 /* We should not create new node because
666 * NLM_F_REPLACE was specified without NLM_F_CREATE
667 * I assume it is safe to require NLM_F_CREATE when
668 * REPLACE flag is used! Later we may want to remove the
669 * check for replace_required, because according
670 * to netlink specification, NLM_F_CREATE
671 * MUST be specified if new route is created.
672 * That would keep IPv6 consistent with IPv4
673 */
Matti Vaittinen14df0152011-11-16 21:18:02 +0000674 if (replace_required) {
David Ahernd5d531c2017-05-21 10:12:05 -0600675 NL_SET_ERR_MSG(extack,
676 "Can not replace route - no match found");
Joe Perchesf3213832012-05-15 14:11:53 +0000677 pr_warn("Can't replace route, no match found\n");
Matti Vaittinen14df0152011-11-16 21:18:02 +0000678 return ERR_PTR(-ENOENT);
679 }
Joe Perchesf3213832012-05-15 14:11:53 +0000680 pr_warn("NLM_F_CREATE should be set when creating new route\n");
Matti Vaittinen4a287eb2011-11-14 00:15:14 +0000681 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 /*
683 * We walked to the bottom of tree.
684 * Create new leaf node without children.
685 */
686
Wei Wang81eb8442017-10-06 12:06:11 -0700687 ln = node_alloc(net);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688
David S. Miller507c9b12011-12-03 17:50:45 -0500689 if (!ln)
Lin Ming188c5172012-09-25 15:17:07 +0000690 return ERR_PTR(-ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 ln->fn_bit = plen;
Wei Wang66f5d6c2017-10-06 12:06:10 -0700692 RCU_INIT_POINTER(ln->parent, pn);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693
694 if (dir)
Wei Wang66f5d6c2017-10-06 12:06:10 -0700695 rcu_assign_pointer(pn->right, ln);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 else
Wei Wang66f5d6c2017-10-06 12:06:10 -0700697 rcu_assign_pointer(pn->left, ln);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698
699 return ln;
700
701
702insert_above:
703 /*
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900704 * split since we don't have a common prefix anymore or
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 * we have a less significant route.
706 * we've to insert an intermediate node on the list
707 * this new node will point to the one we need to create
708 * and the current
709 */
710
Wei Wang66f5d6c2017-10-06 12:06:10 -0700711 pn = rcu_dereference_protected(fn->parent,
712 lockdep_is_held(&table->tb6_lock));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713
714 /* find 1st bit in difference between the 2 addrs.
715
YOSHIFUJI Hideaki971f3592005-11-08 09:37:56 -0800716 See comment in __ipv6_addr_diff: bit may be an invalid value,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717 but if it is >= plen, the value is ignored in any case.
718 */
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900719
fan.du9225b232013-07-22 14:21:09 +0800720 bit = __ipv6_addr_diff(addr, &key->addr, sizeof(*addr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900722 /*
723 * (intermediate)[in]
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 * / \
725 * (new leaf node)[ln] (old node)[fn]
726 */
727 if (plen > bit) {
Wei Wang81eb8442017-10-06 12:06:11 -0700728 in = node_alloc(net);
729 ln = node_alloc(net);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900730
David S. Miller507c9b12011-12-03 17:50:45 -0500731 if (!in || !ln) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732 if (in)
Wei Wang81eb8442017-10-06 12:06:11 -0700733 node_free_immediate(net, in);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 if (ln)
Wei Wang81eb8442017-10-06 12:06:11 -0700735 node_free_immediate(net, ln);
Lin Ming188c5172012-09-25 15:17:07 +0000736 return ERR_PTR(-ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 }
738
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900739 /*
740 * new intermediate node.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 * RTN_RTINFO will
742 * be off since that an address that chooses one of
743 * the branches would not match less specific routes
744 * in the other branch
745 */
746
747 in->fn_bit = bit;
748
Wei Wang66f5d6c2017-10-06 12:06:10 -0700749 RCU_INIT_POINTER(in->parent, pn);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 in->leaf = fn->leaf;
Wei Wang66f5d6c2017-10-06 12:06:10 -0700751 atomic_inc(&rcu_dereference_protected(in->leaf,
752 lockdep_is_held(&table->tb6_lock))->rt6i_ref);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 /* update parent pointer */
755 if (dir)
Wei Wang66f5d6c2017-10-06 12:06:10 -0700756 rcu_assign_pointer(pn->right, in);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757 else
Wei Wang66f5d6c2017-10-06 12:06:10 -0700758 rcu_assign_pointer(pn->left, in);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759
760 ln->fn_bit = plen;
761
Wei Wang66f5d6c2017-10-06 12:06:10 -0700762 RCU_INIT_POINTER(ln->parent, in);
763 rcu_assign_pointer(fn->parent, in);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 if (addr_bit_set(addr, bit)) {
Wei Wang66f5d6c2017-10-06 12:06:10 -0700766 rcu_assign_pointer(in->right, ln);
767 rcu_assign_pointer(in->left, fn);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 } else {
Wei Wang66f5d6c2017-10-06 12:06:10 -0700769 rcu_assign_pointer(in->left, ln);
770 rcu_assign_pointer(in->right, fn);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 }
772 } else { /* plen <= bit */
773
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900774 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 * (new leaf node)[ln]
776 * / \
777 * (old node)[fn] NULL
778 */
779
Wei Wang81eb8442017-10-06 12:06:11 -0700780 ln = node_alloc(net);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781
David S. Miller507c9b12011-12-03 17:50:45 -0500782 if (!ln)
Lin Ming188c5172012-09-25 15:17:07 +0000783 return ERR_PTR(-ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784
785 ln->fn_bit = plen;
786
Wei Wang66f5d6c2017-10-06 12:06:10 -0700787 RCU_INIT_POINTER(ln->parent, pn);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788
789 if (addr_bit_set(&key->addr, plen))
Wei Wang66f5d6c2017-10-06 12:06:10 -0700790 RCU_INIT_POINTER(ln->right, fn);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 else
Wei Wang66f5d6c2017-10-06 12:06:10 -0700792 RCU_INIT_POINTER(ln->left, fn);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793
Wei Wang66f5d6c2017-10-06 12:06:10 -0700794 rcu_assign_pointer(fn->parent, ln);
795
796 if (dir)
797 rcu_assign_pointer(pn->right, ln);
798 else
799 rcu_assign_pointer(pn->left, ln);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 }
801 return ln;
802}
803
Florian Westphale715b6d2015-01-05 23:57:44 +0100804static void fib6_copy_metrics(u32 *mp, const struct mx6_config *mxc)
Michal Kubečeke5fd3872014-03-27 13:04:08 +0100805{
Florian Westphale715b6d2015-01-05 23:57:44 +0100806 int i;
Michal Kubečeke5fd3872014-03-27 13:04:08 +0100807
Florian Westphale715b6d2015-01-05 23:57:44 +0100808 for (i = 0; i < RTAX_MAX; i++) {
809 if (test_bit(i, mxc->mx_valid))
810 mp[i] = mxc->mx[i];
Michal Kubečeke5fd3872014-03-27 13:04:08 +0100811 }
Florian Westphale715b6d2015-01-05 23:57:44 +0100812}
813
814static int fib6_commit_metrics(struct dst_entry *dst, struct mx6_config *mxc)
815{
816 if (!mxc->mx)
817 return 0;
818
819 if (dst->flags & DST_HOST) {
820 u32 *mp = dst_metrics_write_ptr(dst);
821
822 if (unlikely(!mp))
823 return -ENOMEM;
824
825 fib6_copy_metrics(mp, mxc);
826 } else {
827 dst_init_metrics(dst, mxc->mx, false);
828
829 /* We've stolen mx now. */
830 mxc->mx = NULL;
831 }
832
Michal Kubečeke5fd3872014-03-27 13:04:08 +0100833 return 0;
834}
835
Hannes Frederic Sowa6e9e16e62015-01-26 15:11:17 +0100836static void fib6_purge_rt(struct rt6_info *rt, struct fib6_node *fn,
837 struct net *net)
838{
Wei Wang66f5d6c2017-10-06 12:06:10 -0700839 struct fib6_table *table = rt->rt6i_table;
840
Hannes Frederic Sowa6e9e16e62015-01-26 15:11:17 +0100841 if (atomic_read(&rt->rt6i_ref) != 1) {
842 /* This route is used as dummy address holder in some split
843 * nodes. It is not leaked, but it still holds other resources,
844 * which must be released in time. So, scan ascendant nodes
845 * and replace dummy references to this route with references
846 * to still alive ones.
847 */
848 while (fn) {
Wei Wang66f5d6c2017-10-06 12:06:10 -0700849 struct rt6_info *leaf = rcu_dereference_protected(fn->leaf,
850 lockdep_is_held(&table->tb6_lock));
851 struct rt6_info *new_leaf;
852 if (!(fn->fn_flags & RTN_RTINFO) && leaf == rt) {
853 new_leaf = fib6_find_prefix(net, table, fn);
854 atomic_inc(&new_leaf->rt6i_ref);
855 rcu_assign_pointer(fn->leaf, new_leaf);
Hannes Frederic Sowa6e9e16e62015-01-26 15:11:17 +0100856 rt6_release(rt);
857 }
Wei Wang66f5d6c2017-10-06 12:06:10 -0700858 fn = rcu_dereference_protected(fn->parent,
859 lockdep_is_held(&table->tb6_lock));
Hannes Frederic Sowa6e9e16e62015-01-26 15:11:17 +0100860 }
Hannes Frederic Sowa6e9e16e62015-01-26 15:11:17 +0100861 }
862}
863
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864/*
865 * Insert routing information in a node.
866 */
867
868static int fib6_add_rt2node(struct fib6_node *fn, struct rt6_info *rt,
David Ahern6c31e5a2017-10-27 17:37:13 -0700869 struct nl_info *info, struct mx6_config *mxc,
870 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871{
Wei Wang66f5d6c2017-10-06 12:06:10 -0700872 struct rt6_info *leaf = rcu_dereference_protected(fn->leaf,
873 lockdep_is_held(&rt->rt6i_table->tb6_lock));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 struct rt6_info *iter = NULL;
Wei Wang66f5d6c2017-10-06 12:06:10 -0700875 struct rt6_info __rcu **ins;
876 struct rt6_info __rcu **fallback_ins = NULL;
David S. Miller507c9b12011-12-03 17:50:45 -0500877 int replace = (info->nlh &&
878 (info->nlh->nlmsg_flags & NLM_F_REPLACE));
879 int add = (!info->nlh ||
880 (info->nlh->nlmsg_flags & NLM_F_CREATE));
Matti Vaittinen4a287eb2011-11-14 00:15:14 +0000881 int found = 0;
Hannes Frederic Sowa307f2fb2013-07-12 23:46:33 +0200882 bool rt_can_ecmp = rt6_qualify_for_ecmp(rt);
Guillaume Nault73483c12016-09-07 17:21:40 +0200883 u16 nlflags = NLM_F_EXCL;
Michal Kubečeke5fd3872014-03-27 13:04:08 +0100884 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885
David Ahern1f5e29c2017-01-31 16:51:37 -0800886 if (info->nlh && (info->nlh->nlmsg_flags & NLM_F_APPEND))
887 nlflags |= NLM_F_APPEND;
888
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889 ins = &fn->leaf;
890
Wei Wang66f5d6c2017-10-06 12:06:10 -0700891 for (iter = leaf; iter;
David Miller071fb372017-11-28 15:40:15 -0500892 iter = rcu_dereference_protected(iter->rt6_next,
Wei Wang66f5d6c2017-10-06 12:06:10 -0700893 lockdep_is_held(&rt->rt6i_table->tb6_lock))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 /*
895 * Search for duplicates
896 */
897
898 if (iter->rt6i_metric == rt->rt6i_metric) {
899 /*
900 * Same priority level
901 */
David S. Miller507c9b12011-12-03 17:50:45 -0500902 if (info->nlh &&
903 (info->nlh->nlmsg_flags & NLM_F_EXCL))
Matti Vaittinen4a287eb2011-11-14 00:15:14 +0000904 return -EEXIST;
Guillaume Nault73483c12016-09-07 17:21:40 +0200905
906 nlflags &= ~NLM_F_EXCL;
Matti Vaittinen4a287eb2011-11-14 00:15:14 +0000907 if (replace) {
Michal Kubeček27596472015-05-18 20:54:00 +0200908 if (rt_can_ecmp == rt6_qualify_for_ecmp(iter)) {
909 found++;
910 break;
911 }
912 if (rt_can_ecmp)
913 fallback_ins = fallback_ins ?: ins;
914 goto next_iter;
Matti Vaittinen4a287eb2011-11-14 00:15:14 +0000915 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916
David Ahernf06b7542017-07-05 14:41:46 -0600917 if (rt6_duplicate_nexthop(iter, rt)) {
Nicolas Dichtel51ebd312012-10-22 03:42:09 +0000918 if (rt->rt6i_nsiblings)
919 rt->rt6i_nsiblings = 0;
David S. Miller507c9b12011-12-03 17:50:45 -0500920 if (!(iter->rt6i_flags & RTF_EXPIRES))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921 return -EEXIST;
Gao feng1716a962012-04-06 00:13:10 +0000922 if (!(rt->rt6i_flags & RTF_EXPIRES))
923 rt6_clean_expires(iter);
924 else
925 rt6_set_expires(iter, rt->dst.expires);
Martin KaFai Lau45e4fd22015-05-22 20:56:00 -0700926 iter->rt6i_pmtu = rt->rt6i_pmtu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927 return -EEXIST;
928 }
Nicolas Dichtel51ebd312012-10-22 03:42:09 +0000929 /* If we have the same destination and the same metric,
930 * but not the same gateway, then the route we try to
931 * add is sibling to this route, increment our counter
932 * of siblings, and later we will add our route to the
933 * list.
934 * Only static routes (which don't have flag
935 * RTF_EXPIRES) are used for ECMPv6.
936 *
937 * To avoid long list, we only had siblings if the
938 * route have a gateway.
939 */
Hannes Frederic Sowa307f2fb2013-07-12 23:46:33 +0200940 if (rt_can_ecmp &&
941 rt6_qualify_for_ecmp(iter))
Nicolas Dichtel51ebd312012-10-22 03:42:09 +0000942 rt->rt6i_nsiblings++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943 }
944
945 if (iter->rt6i_metric > rt->rt6i_metric)
946 break;
947
Michal Kubeček27596472015-05-18 20:54:00 +0200948next_iter:
David Miller071fb372017-11-28 15:40:15 -0500949 ins = &iter->rt6_next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950 }
951
Michal Kubeček27596472015-05-18 20:54:00 +0200952 if (fallback_ins && !found) {
953 /* No ECMP-able route found, replace first non-ECMP one */
954 ins = fallback_ins;
Wei Wang66f5d6c2017-10-06 12:06:10 -0700955 iter = rcu_dereference_protected(*ins,
956 lockdep_is_held(&rt->rt6i_table->tb6_lock));
Michal Kubeček27596472015-05-18 20:54:00 +0200957 found++;
958 }
959
David S. Millerf11e6652007-03-24 20:36:25 -0700960 /* Reset round-robin state, if necessary */
961 if (ins == &fn->leaf)
962 fn->rr_ptr = NULL;
963
Nicolas Dichtel51ebd312012-10-22 03:42:09 +0000964 /* Link this route to others same route. */
965 if (rt->rt6i_nsiblings) {
966 unsigned int rt6i_nsiblings;
967 struct rt6_info *sibling, *temp_sibling;
968
969 /* Find the first route that have the same metric */
Wei Wang66f5d6c2017-10-06 12:06:10 -0700970 sibling = leaf;
Nicolas Dichtel51ebd312012-10-22 03:42:09 +0000971 while (sibling) {
Hannes Frederic Sowa307f2fb2013-07-12 23:46:33 +0200972 if (sibling->rt6i_metric == rt->rt6i_metric &&
973 rt6_qualify_for_ecmp(sibling)) {
Nicolas Dichtel51ebd312012-10-22 03:42:09 +0000974 list_add_tail(&rt->rt6i_siblings,
975 &sibling->rt6i_siblings);
976 break;
977 }
David Miller071fb372017-11-28 15:40:15 -0500978 sibling = rcu_dereference_protected(sibling->rt6_next,
Wei Wang66f5d6c2017-10-06 12:06:10 -0700979 lockdep_is_held(&rt->rt6i_table->tb6_lock));
Nicolas Dichtel51ebd312012-10-22 03:42:09 +0000980 }
981 /* For each sibling in the list, increment the counter of
982 * siblings. BUG() if counters does not match, list of siblings
983 * is broken!
984 */
985 rt6i_nsiblings = 0;
986 list_for_each_entry_safe(sibling, temp_sibling,
987 &rt->rt6i_siblings, rt6i_siblings) {
988 sibling->rt6i_nsiblings++;
989 BUG_ON(sibling->rt6i_nsiblings != rt->rt6i_nsiblings);
990 rt6i_nsiblings++;
991 }
992 BUG_ON(rt6i_nsiblings != rt->rt6i_nsiblings);
Ido Schimmeld7dedee2018-01-09 16:40:25 +0200993 rt6_multipath_rebalance(temp_sibling);
Nicolas Dichtel51ebd312012-10-22 03:42:09 +0000994 }
995
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996 /*
997 * insert node
998 */
Matti Vaittinen4a287eb2011-11-14 00:15:14 +0000999 if (!replace) {
1000 if (!add)
Joe Perchesf3213832012-05-15 14:11:53 +00001001 pr_warn("NLM_F_CREATE should be set when creating new route\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002
Matti Vaittinen4a287eb2011-11-14 00:15:14 +00001003add:
Guillaume Nault73483c12016-09-07 17:21:40 +02001004 nlflags |= NLM_F_CREATE;
Florian Westphale715b6d2015-01-05 23:57:44 +01001005 err = fib6_commit_metrics(&rt->dst, mxc);
1006 if (err)
1007 return err;
1008
David Miller071fb372017-11-28 15:40:15 -05001009 rcu_assign_pointer(rt->rt6_next, iter);
Matti Vaittinen4a287eb2011-11-14 00:15:14 +00001010 atomic_inc(&rt->rt6i_ref);
Wei Wang66f5d6c2017-10-06 12:06:10 -07001011 rcu_assign_pointer(rt->rt6i_node, fn);
1012 rcu_assign_pointer(*ins, rt);
Ido Schimmeldf77fe42017-08-03 13:28:17 +02001013 call_fib6_entry_notifiers(info->nl_net, FIB_EVENT_ENTRY_ADD,
David Ahern6c31e5a2017-10-27 17:37:13 -07001014 rt, extack);
David Ahern3b1137f2017-02-02 12:37:10 -08001015 if (!info->skip_notify)
1016 inet6_rt_notify(RTM_NEWROUTE, rt, info, nlflags);
Matti Vaittinen4a287eb2011-11-14 00:15:14 +00001017 info->nl_net->ipv6.rt6_stats->fib_rt_entries++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018
David S. Miller507c9b12011-12-03 17:50:45 -05001019 if (!(fn->fn_flags & RTN_RTINFO)) {
Matti Vaittinen4a287eb2011-11-14 00:15:14 +00001020 info->nl_net->ipv6.rt6_stats->fib_route_nodes++;
1021 fn->fn_flags |= RTN_RTINFO;
1022 }
1023
1024 } else {
Michal Kubeček27596472015-05-18 20:54:00 +02001025 int nsiblings;
1026
Matti Vaittinen4a287eb2011-11-14 00:15:14 +00001027 if (!found) {
1028 if (add)
1029 goto add;
Joe Perchesf3213832012-05-15 14:11:53 +00001030 pr_warn("NLM_F_REPLACE set, but no existing node found!\n");
Matti Vaittinen4a287eb2011-11-14 00:15:14 +00001031 return -ENOENT;
1032 }
Florian Westphale715b6d2015-01-05 23:57:44 +01001033
1034 err = fib6_commit_metrics(&rt->dst, mxc);
1035 if (err)
1036 return err;
1037
Wei Wang66f5d6c2017-10-06 12:06:10 -07001038 atomic_inc(&rt->rt6i_ref);
Wei Wang4e587ea2017-08-25 15:03:10 -07001039 rcu_assign_pointer(rt->rt6i_node, fn);
David Miller071fb372017-11-28 15:40:15 -05001040 rt->rt6_next = iter->rt6_next;
Wei Wang66f5d6c2017-10-06 12:06:10 -07001041 rcu_assign_pointer(*ins, rt);
Ido Schimmeldf77fe42017-08-03 13:28:17 +02001042 call_fib6_entry_notifiers(info->nl_net, FIB_EVENT_ENTRY_REPLACE,
David Ahern6c31e5a2017-10-27 17:37:13 -07001043 rt, extack);
David Ahern3b1137f2017-02-02 12:37:10 -08001044 if (!info->skip_notify)
1045 inet6_rt_notify(RTM_NEWROUTE, rt, info, NLM_F_REPLACE);
David S. Miller507c9b12011-12-03 17:50:45 -05001046 if (!(fn->fn_flags & RTN_RTINFO)) {
Matti Vaittinen4a287eb2011-11-14 00:15:14 +00001047 info->nl_net->ipv6.rt6_stats->fib_route_nodes++;
1048 fn->fn_flags |= RTN_RTINFO;
1049 }
Michal Kubeček27596472015-05-18 20:54:00 +02001050 nsiblings = iter->rt6i_nsiblings;
Ido Schimmel7483cea2017-08-03 13:28:22 +02001051 iter->rt6i_node = NULL;
Hannes Frederic Sowa6e9e16e62015-01-26 15:11:17 +01001052 fib6_purge_rt(iter, fn, info->nl_net);
Wei Wang66f5d6c2017-10-06 12:06:10 -07001053 if (rcu_access_pointer(fn->rr_ptr) == iter)
Wei Wang383143f2017-08-16 11:18:09 -07001054 fn->rr_ptr = NULL;
Hannes Frederic Sowa6e9e16e62015-01-26 15:11:17 +01001055 rt6_release(iter);
Michal Kubeček27596472015-05-18 20:54:00 +02001056
1057 if (nsiblings) {
1058 /* Replacing an ECMP route, remove all siblings */
David Miller071fb372017-11-28 15:40:15 -05001059 ins = &rt->rt6_next;
Wei Wang66f5d6c2017-10-06 12:06:10 -07001060 iter = rcu_dereference_protected(*ins,
1061 lockdep_is_held(&rt->rt6i_table->tb6_lock));
Michal Kubeček27596472015-05-18 20:54:00 +02001062 while (iter) {
Sabrina Dubroca67e19402017-03-13 13:28:09 +01001063 if (iter->rt6i_metric > rt->rt6i_metric)
1064 break;
Michal Kubeček27596472015-05-18 20:54:00 +02001065 if (rt6_qualify_for_ecmp(iter)) {
David Miller071fb372017-11-28 15:40:15 -05001066 *ins = iter->rt6_next;
Ido Schimmel7483cea2017-08-03 13:28:22 +02001067 iter->rt6i_node = NULL;
Michal Kubeček27596472015-05-18 20:54:00 +02001068 fib6_purge_rt(iter, fn, info->nl_net);
Wei Wang66f5d6c2017-10-06 12:06:10 -07001069 if (rcu_access_pointer(fn->rr_ptr) == iter)
Wei Wang383143f2017-08-16 11:18:09 -07001070 fn->rr_ptr = NULL;
Michal Kubeček27596472015-05-18 20:54:00 +02001071 rt6_release(iter);
1072 nsiblings--;
Wei Wang81eb8442017-10-06 12:06:11 -07001073 info->nl_net->ipv6.rt6_stats->fib_rt_entries--;
Michal Kubeček27596472015-05-18 20:54:00 +02001074 } else {
David Miller071fb372017-11-28 15:40:15 -05001075 ins = &iter->rt6_next;
Michal Kubeček27596472015-05-18 20:54:00 +02001076 }
Wei Wang66f5d6c2017-10-06 12:06:10 -07001077 iter = rcu_dereference_protected(*ins,
1078 lockdep_is_held(&rt->rt6i_table->tb6_lock));
Michal Kubeček27596472015-05-18 20:54:00 +02001079 }
1080 WARN_ON(nsiblings != 0);
1081 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082 }
1083
1084 return 0;
1085}
1086
Hannes Frederic Sowa94b2cfe2014-10-06 19:58:34 +02001087static void fib6_start_gc(struct net *net, struct rt6_info *rt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088{
Stephen Hemminger417f28b2008-07-22 14:33:45 -07001089 if (!timer_pending(&net->ipv6.ip6_fib_timer) &&
David S. Miller507c9b12011-12-03 17:50:45 -05001090 (rt->rt6i_flags & (RTF_EXPIRES | RTF_CACHE)))
Stephen Hemminger417f28b2008-07-22 14:33:45 -07001091 mod_timer(&net->ipv6.ip6_fib_timer,
Stephen Hemminger847499c2008-07-21 13:21:35 -07001092 jiffies + net->ipv6.sysctl.ip6_rt_gc_interval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093}
1094
Daniel Lezcano63152fc2008-03-03 23:31:11 -08001095void fib6_force_start_gc(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096{
Stephen Hemminger417f28b2008-07-22 14:33:45 -07001097 if (!timer_pending(&net->ipv6.ip6_fib_timer))
1098 mod_timer(&net->ipv6.ip6_fib_timer,
Stephen Hemminger847499c2008-07-21 13:21:35 -07001099 jiffies + net->ipv6.sysctl.ip6_rt_gc_interval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100}
1101
Ido Schimmel4a8e56e2018-01-07 12:45:13 +02001102static void __fib6_update_sernum_upto_root(struct rt6_info *rt,
1103 int sernum)
Wei Wangbbd63f02017-10-06 12:06:07 -07001104{
1105 struct fib6_node *fn = rcu_dereference_protected(rt->rt6i_node,
1106 lockdep_is_held(&rt->rt6i_table->tb6_lock));
1107
1108 /* paired with smp_rmb() in rt6_get_cookie_safe() */
1109 smp_wmb();
1110 while (fn) {
1111 fn->fn_sernum = sernum;
Wei Wang66f5d6c2017-10-06 12:06:10 -07001112 fn = rcu_dereference_protected(fn->parent,
1113 lockdep_is_held(&rt->rt6i_table->tb6_lock));
Wei Wangbbd63f02017-10-06 12:06:07 -07001114 }
1115}
1116
Ido Schimmel4a8e56e2018-01-07 12:45:13 +02001117void fib6_update_sernum_upto_root(struct net *net, struct rt6_info *rt)
1118{
1119 __fib6_update_sernum_upto_root(rt, fib6_new_sernum(net));
1120}
1121
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122/*
1123 * Add routing information to the routing tree.
1124 * <destination addr>/<source addr>
1125 * with source addr info in sub-trees
Wei Wang66f5d6c2017-10-06 12:06:10 -07001126 * Need to own table->tb6_lock
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127 */
1128
Florian Westphale715b6d2015-01-05 23:57:44 +01001129int fib6_add(struct fib6_node *root, struct rt6_info *rt,
David Ahern333c4302017-05-21 10:12:04 -06001130 struct nl_info *info, struct mx6_config *mxc,
1131 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132{
Wei Wang66f5d6c2017-10-06 12:06:10 -07001133 struct fib6_table *table = rt->rt6i_table;
YOSHIFUJI Hideaki66729e12006-08-23 17:20:34 -07001134 struct fib6_node *fn, *pn = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135 int err = -ENOMEM;
Matti Vaittinen4a287eb2011-11-14 00:15:14 +00001136 int allow_create = 1;
1137 int replace_required = 0;
Hannes Frederic Sowa812918c2014-10-06 19:58:37 +02001138 int sernum = fib6_new_sernum(info->nl_net);
David S. Miller507c9b12011-12-03 17:50:45 -05001139
Wei Wanga4c2fd72017-06-17 10:42:42 -07001140 if (WARN_ON_ONCE(!atomic_read(&rt->dst.__refcnt)))
Martin KaFai Lau8e3d5be2015-09-15 14:30:08 -07001141 return -EINVAL;
Wei Wang2b760fc2017-10-06 12:06:03 -07001142 if (WARN_ON_ONCE(rt->rt6i_flags & RTF_CACHE))
1143 return -EINVAL;
Martin KaFai Lau8e3d5be2015-09-15 14:30:08 -07001144
David S. Miller507c9b12011-12-03 17:50:45 -05001145 if (info->nlh) {
1146 if (!(info->nlh->nlmsg_flags & NLM_F_CREATE))
Matti Vaittinen4a287eb2011-11-14 00:15:14 +00001147 allow_create = 0;
David S. Miller507c9b12011-12-03 17:50:45 -05001148 if (info->nlh->nlmsg_flags & NLM_F_REPLACE)
Matti Vaittinen4a287eb2011-11-14 00:15:14 +00001149 replace_required = 1;
1150 }
1151 if (!allow_create && !replace_required)
Joe Perchesf3213832012-05-15 14:11:53 +00001152 pr_warn("RTM_NEWROUTE with no NLM_F_CREATE or NLM_F_REPLACE\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153
Wei Wang81eb8442017-10-06 12:06:11 -07001154 fn = fib6_add_1(info->nl_net, table, root,
Wei Wang66f5d6c2017-10-06 12:06:10 -07001155 &rt->rt6i_dst.addr, rt->rt6i_dst.plen,
fan.du9225b232013-07-22 14:21:09 +08001156 offsetof(struct rt6_info, rt6i_dst), allow_create,
Wei Wangbbd63f02017-10-06 12:06:07 -07001157 replace_required, extack);
Matti Vaittinen4a287eb2011-11-14 00:15:14 +00001158 if (IS_ERR(fn)) {
1159 err = PTR_ERR(fn);
Daniel Borkmannae7b4e12013-09-07 15:13:20 +02001160 fn = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161 goto out;
Lin Ming188c5172012-09-25 15:17:07 +00001162 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163
YOSHIFUJI Hideaki66729e12006-08-23 17:20:34 -07001164 pn = fn;
1165
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166#ifdef CONFIG_IPV6_SUBTREES
1167 if (rt->rt6i_src.plen) {
1168 struct fib6_node *sn;
1169
Wei Wang66f5d6c2017-10-06 12:06:10 -07001170 if (!rcu_access_pointer(fn->subtree)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171 struct fib6_node *sfn;
1172
1173 /*
1174 * Create subtree.
1175 *
1176 * fn[main tree]
1177 * |
1178 * sfn[subtree root]
1179 * \
1180 * sn[new leaf node]
1181 */
1182
1183 /* Create subtree root node */
Wei Wang81eb8442017-10-06 12:06:11 -07001184 sfn = node_alloc(info->nl_net);
David S. Miller507c9b12011-12-03 17:50:45 -05001185 if (!sfn)
Wei Wang348a4002017-08-18 17:14:49 -07001186 goto failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187
Daniel Lezcano8ed67782008-03-04 13:48:30 -08001188 atomic_inc(&info->nl_net->ipv6.ip6_null_entry->rt6i_ref);
Wei Wang66f5d6c2017-10-06 12:06:10 -07001189 rcu_assign_pointer(sfn->leaf,
1190 info->nl_net->ipv6.ip6_null_entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191 sfn->fn_flags = RTN_ROOT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192
1193 /* Now add the first leaf node to new subtree */
1194
Wei Wang81eb8442017-10-06 12:06:11 -07001195 sn = fib6_add_1(info->nl_net, table, sfn,
1196 &rt->rt6i_src.addr, rt->rt6i_src.plen,
Matti Vaittinen4a287eb2011-11-14 00:15:14 +00001197 offsetof(struct rt6_info, rt6i_src),
Wei Wangbbd63f02017-10-06 12:06:07 -07001198 allow_create, replace_required, extack);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199
Wei Yongjunf950c0e2012-09-20 18:29:56 +00001200 if (IS_ERR(sn)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201 /* If it is failed, discard just allocated
Wei Wang348a4002017-08-18 17:14:49 -07001202 root, and then (in failure) stale node
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203 in main tree.
1204 */
Wei Wang81eb8442017-10-06 12:06:11 -07001205 node_free_immediate(info->nl_net, sfn);
Lin Ming188c5172012-09-25 15:17:07 +00001206 err = PTR_ERR(sn);
Wei Wang348a4002017-08-18 17:14:49 -07001207 goto failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208 }
1209
1210 /* Now link new subtree to main tree */
Wei Wang66f5d6c2017-10-06 12:06:10 -07001211 rcu_assign_pointer(sfn->parent, fn);
1212 rcu_assign_pointer(fn->subtree, sfn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213 } else {
Wei Wang81eb8442017-10-06 12:06:11 -07001214 sn = fib6_add_1(info->nl_net, table, FIB6_SUBTREE(fn),
1215 &rt->rt6i_src.addr, rt->rt6i_src.plen,
Matti Vaittinen4a287eb2011-11-14 00:15:14 +00001216 offsetof(struct rt6_info, rt6i_src),
Wei Wangbbd63f02017-10-06 12:06:07 -07001217 allow_create, replace_required, extack);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218
Matti Vaittinen4a287eb2011-11-14 00:15:14 +00001219 if (IS_ERR(sn)) {
1220 err = PTR_ERR(sn);
Wei Wang348a4002017-08-18 17:14:49 -07001221 goto failure;
Lin Ming188c5172012-09-25 15:17:07 +00001222 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223 }
1224
Wei Wang66f5d6c2017-10-06 12:06:10 -07001225 if (!rcu_access_pointer(fn->leaf)) {
Wei Wang591ff9e2018-01-18 10:40:03 -08001226 if (fn->fn_flags & RTN_TL_ROOT) {
1227 /* put back null_entry for root node */
1228 rcu_assign_pointer(fn->leaf,
1229 info->nl_net->ipv6.ip6_null_entry);
1230 } else {
1231 atomic_inc(&rt->rt6i_ref);
1232 rcu_assign_pointer(fn->leaf, rt);
1233 }
YOSHIFUJI Hideaki66729e12006-08-23 17:20:34 -07001234 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235 fn = sn;
1236 }
1237#endif
1238
David Ahern6c31e5a2017-10-27 17:37:13 -07001239 err = fib6_add_rt2node(fn, rt, info, mxc, extack);
Wei Wangbbd63f02017-10-06 12:06:07 -07001240 if (!err) {
Ido Schimmel4a8e56e2018-01-07 12:45:13 +02001241 __fib6_update_sernum_upto_root(rt, sernum);
Daniel Lezcano63152fc2008-03-03 23:31:11 -08001242 fib6_start_gc(info->nl_net, rt);
Wei Wangbbd63f02017-10-06 12:06:07 -07001243 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244
1245out:
YOSHIFUJI Hideaki66729e12006-08-23 17:20:34 -07001246 if (err) {
1247#ifdef CONFIG_IPV6_SUBTREES
1248 /*
1249 * If fib6_add_1 has cleared the old leaf pointer in the
1250 * super-tree leaf node we have to find a new one for it.
1251 */
Wei Wang7bbfe002018-01-03 14:11:59 -08001252 if (pn != fn) {
1253 struct rt6_info *pn_leaf =
1254 rcu_dereference_protected(pn->leaf,
1255 lockdep_is_held(&table->tb6_lock));
1256 if (pn_leaf == rt) {
1257 pn_leaf = NULL;
1258 RCU_INIT_POINTER(pn->leaf, NULL);
1259 atomic_dec(&rt->rt6i_ref);
YOSHIFUJI Hideaki66729e12006-08-23 17:20:34 -07001260 }
Wei Wang7bbfe002018-01-03 14:11:59 -08001261 if (!pn_leaf && !(pn->fn_flags & RTN_RTINFO)) {
1262 pn_leaf = fib6_find_prefix(info->nl_net, table,
1263 pn);
1264#if RT6_DEBUG >= 2
1265 if (!pn_leaf) {
1266 WARN_ON(!pn_leaf);
1267 pn_leaf =
1268 info->nl_net->ipv6.ip6_null_entry;
1269 }
YOSHIFUJI Hideaki66729e12006-08-23 17:20:34 -07001270#endif
Wei Wang7bbfe002018-01-03 14:11:59 -08001271 atomic_inc(&pn_leaf->rt6i_ref);
1272 rcu_assign_pointer(pn->leaf, pn_leaf);
1273 }
YOSHIFUJI Hideaki66729e12006-08-23 17:20:34 -07001274 }
1275#endif
Wei Wang348a4002017-08-18 17:14:49 -07001276 goto failure;
YOSHIFUJI Hideaki66729e12006-08-23 17:20:34 -07001277 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278 return err;
1279
Wei Wang348a4002017-08-18 17:14:49 -07001280failure:
Wei Wang4512c432018-01-08 10:34:00 -08001281 /* fn->leaf could be NULL and fib6_repair_tree() needs to be called if:
1282 * 1. fn is an intermediate node and we failed to add the new
1283 * route to it in both subtree creation failure and fib6_add_rt2node()
1284 * failure case.
1285 * 2. fn is the root node in the table and we fail to add the first
1286 * default route to it.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287 */
Wei Wang4512c432018-01-08 10:34:00 -08001288 if (fn &&
1289 (!(fn->fn_flags & (RTN_RTINFO|RTN_ROOT)) ||
1290 (fn->fn_flags & RTN_TL_ROOT &&
1291 !rcu_access_pointer(fn->leaf))))
Wei Wang66f5d6c2017-10-06 12:06:10 -07001292 fib6_repair_tree(info->nl_net, table, fn);
Wei Wang1cfb71e2017-06-17 10:42:33 -07001293 /* Always release dst as dst->__refcnt is guaranteed
1294 * to be taken before entering this function
1295 */
Wei Wang587fea72017-06-17 10:42:36 -07001296 dst_release_immediate(&rt->dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298}
1299
1300/*
1301 * Routing tree lookup
1302 *
1303 */
1304
1305struct lookup_args {
David S. Miller507c9b12011-12-03 17:50:45 -05001306 int offset; /* key offset on rt6_info */
Eric Dumazetb71d1d42011-04-22 04:53:02 +00001307 const struct in6_addr *addr; /* search key */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308};
1309
Wang Yufen437de072014-03-28 12:07:04 +08001310static struct fib6_node *fib6_lookup_1(struct fib6_node *root,
1311 struct lookup_args *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312{
1313 struct fib6_node *fn;
Al Viroe69a4ad2006-11-14 20:56:00 -08001314 __be32 dir;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315
YOSHIFUJI Hideaki825e2882006-08-23 17:21:29 -07001316 if (unlikely(args->offset == 0))
1317 return NULL;
1318
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319 /*
1320 * Descend on a tree
1321 */
1322
1323 fn = root;
1324
1325 for (;;) {
1326 struct fib6_node *next;
1327
1328 dir = addr_bit_set(args->addr, fn->fn_bit);
1329
Wei Wang66f5d6c2017-10-06 12:06:10 -07001330 next = dir ? rcu_dereference(fn->right) :
1331 rcu_dereference(fn->left);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332
1333 if (next) {
1334 fn = next;
1335 continue;
1336 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337 break;
1338 }
1339
David S. Miller507c9b12011-12-03 17:50:45 -05001340 while (fn) {
Wei Wang66f5d6c2017-10-06 12:06:10 -07001341 struct fib6_node *subtree = FIB6_SUBTREE(fn);
1342
1343 if (subtree || fn->fn_flags & RTN_RTINFO) {
1344 struct rt6_info *leaf = rcu_dereference(fn->leaf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345 struct rt6key *key;
1346
Wei Wang8d1040e2017-10-06 12:06:08 -07001347 if (!leaf)
1348 goto backtrack;
1349
1350 key = (struct rt6key *) ((u8 *)leaf + args->offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351
YOSHIFUJI Hideaki3fc5e042006-08-23 17:21:12 -07001352 if (ipv6_prefix_equal(&key->addr, args->addr, key->plen)) {
1353#ifdef CONFIG_IPV6_SUBTREES
Wei Wang66f5d6c2017-10-06 12:06:10 -07001354 if (subtree) {
Hannes Frederic Sowa3e3be272013-08-07 02:34:31 +02001355 struct fib6_node *sfn;
Wei Wang66f5d6c2017-10-06 12:06:10 -07001356 sfn = fib6_lookup_1(subtree, args + 1);
Hannes Frederic Sowa3e3be272013-08-07 02:34:31 +02001357 if (!sfn)
1358 goto backtrack;
1359 fn = sfn;
1360 }
YOSHIFUJI Hideaki3fc5e042006-08-23 17:21:12 -07001361#endif
Hannes Frederic Sowa3e3be272013-08-07 02:34:31 +02001362 if (fn->fn_flags & RTN_RTINFO)
YOSHIFUJI Hideaki3fc5e042006-08-23 17:21:12 -07001363 return fn;
1364 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365 }
Hannes Frederic Sowa3e3be272013-08-07 02:34:31 +02001366backtrack:
YOSHIFUJI Hideaki3fc5e042006-08-23 17:21:12 -07001367 if (fn->fn_flags & RTN_ROOT)
1368 break;
1369
Wei Wang66f5d6c2017-10-06 12:06:10 -07001370 fn = rcu_dereference(fn->parent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371 }
1372
1373 return NULL;
1374}
1375
Wei Wang66f5d6c2017-10-06 12:06:10 -07001376/* called with rcu_read_lock() held
1377 */
Wang Yufen437de072014-03-28 12:07:04 +08001378struct fib6_node *fib6_lookup(struct fib6_node *root, const struct in6_addr *daddr,
1379 const struct in6_addr *saddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381 struct fib6_node *fn;
YOSHIFUJI Hideaki825e2882006-08-23 17:21:29 -07001382 struct lookup_args args[] = {
1383 {
1384 .offset = offsetof(struct rt6_info, rt6i_dst),
1385 .addr = daddr,
1386 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387#ifdef CONFIG_IPV6_SUBTREES
YOSHIFUJI Hideaki825e2882006-08-23 17:21:29 -07001388 {
1389 .offset = offsetof(struct rt6_info, rt6i_src),
1390 .addr = saddr,
1391 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392#endif
YOSHIFUJI Hideaki825e2882006-08-23 17:21:29 -07001393 {
1394 .offset = 0, /* sentinel */
1395 }
1396 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397
YOSHIFUJI Hideakifefc2a62006-08-23 17:21:50 -07001398 fn = fib6_lookup_1(root, daddr ? args : args + 1);
David S. Miller507c9b12011-12-03 17:50:45 -05001399 if (!fn || fn->fn_flags & RTN_TL_ROOT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400 fn = root;
1401
1402 return fn;
1403}
1404
1405/*
1406 * Get node with specified destination prefix (and source prefix,
1407 * if subtrees are used)
Wei Wang38fbeee2017-10-06 12:06:02 -07001408 * exact_match == true means we try to find fn with exact match of
1409 * the passed in prefix addr
1410 * exact_match == false means we try to find fn with longest prefix
1411 * match of the passed in prefix addr. This is useful for finding fn
1412 * for cached route as it will be stored in the exception table under
1413 * the node with longest prefix length.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414 */
1415
1416
Wang Yufen437de072014-03-28 12:07:04 +08001417static struct fib6_node *fib6_locate_1(struct fib6_node *root,
1418 const struct in6_addr *addr,
Wei Wang38fbeee2017-10-06 12:06:02 -07001419 int plen, int offset,
1420 bool exact_match)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421{
Wei Wang38fbeee2017-10-06 12:06:02 -07001422 struct fib6_node *fn, *prev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423
1424 for (fn = root; fn ; ) {
Wei Wang66f5d6c2017-10-06 12:06:10 -07001425 struct rt6_info *leaf = rcu_dereference(fn->leaf);
Wei Wang8d1040e2017-10-06 12:06:08 -07001426 struct rt6key *key;
1427
1428 /* This node is being deleted */
1429 if (!leaf) {
1430 if (plen <= fn->fn_bit)
1431 goto out;
1432 else
1433 goto next;
1434 }
1435
1436 key = (struct rt6key *)((u8 *)leaf + offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437
1438 /*
1439 * Prefix match
1440 */
1441 if (plen < fn->fn_bit ||
1442 !ipv6_prefix_equal(&key->addr, addr, fn->fn_bit))
Wei Wang38fbeee2017-10-06 12:06:02 -07001443 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444
1445 if (plen == fn->fn_bit)
1446 return fn;
1447
Wei Wang38fbeee2017-10-06 12:06:02 -07001448 prev = fn;
1449
Wei Wang8d1040e2017-10-06 12:06:08 -07001450next:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451 /*
1452 * We have more bits to go
1453 */
1454 if (addr_bit_set(addr, fn->fn_bit))
Wei Wang66f5d6c2017-10-06 12:06:10 -07001455 fn = rcu_dereference(fn->right);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456 else
Wei Wang66f5d6c2017-10-06 12:06:10 -07001457 fn = rcu_dereference(fn->left);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458 }
Wei Wang38fbeee2017-10-06 12:06:02 -07001459out:
1460 if (exact_match)
1461 return NULL;
1462 else
1463 return prev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464}
1465
Wang Yufen437de072014-03-28 12:07:04 +08001466struct fib6_node *fib6_locate(struct fib6_node *root,
1467 const struct in6_addr *daddr, int dst_len,
Wei Wang38fbeee2017-10-06 12:06:02 -07001468 const struct in6_addr *saddr, int src_len,
1469 bool exact_match)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470{
1471 struct fib6_node *fn;
1472
1473 fn = fib6_locate_1(root, daddr, dst_len,
Wei Wang38fbeee2017-10-06 12:06:02 -07001474 offsetof(struct rt6_info, rt6i_dst),
1475 exact_match);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476
1477#ifdef CONFIG_IPV6_SUBTREES
1478 if (src_len) {
Ilpo Järvinen547b7922008-07-25 21:43:18 -07001479 WARN_ON(saddr == NULL);
Wei Wang0e801932017-10-13 15:01:08 -07001480 if (fn) {
1481 struct fib6_node *subtree = FIB6_SUBTREE(fn);
1482
1483 if (subtree) {
1484 fn = fib6_locate_1(subtree, saddr, src_len,
Wei Wang38fbeee2017-10-06 12:06:02 -07001485 offsetof(struct rt6_info, rt6i_src),
1486 exact_match);
Wei Wang0e801932017-10-13 15:01:08 -07001487 }
1488 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489 }
1490#endif
1491
David S. Miller507c9b12011-12-03 17:50:45 -05001492 if (fn && fn->fn_flags & RTN_RTINFO)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493 return fn;
1494
1495 return NULL;
1496}
1497
1498
1499/*
1500 * Deletion
1501 *
1502 */
1503
Wei Wang66f5d6c2017-10-06 12:06:10 -07001504static struct rt6_info *fib6_find_prefix(struct net *net,
1505 struct fib6_table *table,
1506 struct fib6_node *fn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507{
Wei Wang66f5d6c2017-10-06 12:06:10 -07001508 struct fib6_node *child_left, *child_right;
1509
David S. Miller507c9b12011-12-03 17:50:45 -05001510 if (fn->fn_flags & RTN_ROOT)
Daniel Lezcano8ed67782008-03-04 13:48:30 -08001511 return net->ipv6.ip6_null_entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512
David S. Miller507c9b12011-12-03 17:50:45 -05001513 while (fn) {
Wei Wang66f5d6c2017-10-06 12:06:10 -07001514 child_left = rcu_dereference_protected(fn->left,
1515 lockdep_is_held(&table->tb6_lock));
1516 child_right = rcu_dereference_protected(fn->right,
1517 lockdep_is_held(&table->tb6_lock));
1518 if (child_left)
1519 return rcu_dereference_protected(child_left->leaf,
1520 lockdep_is_held(&table->tb6_lock));
1521 if (child_right)
1522 return rcu_dereference_protected(child_right->leaf,
1523 lockdep_is_held(&table->tb6_lock));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524
YOSHIFUJI Hideaki7fc33162006-08-23 17:22:24 -07001525 fn = FIB6_SUBTREE(fn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526 }
1527 return NULL;
1528}
1529
1530/*
1531 * Called to trim the tree of intermediate nodes when possible. "fn"
1532 * is the node we want to try and remove.
Wei Wang66f5d6c2017-10-06 12:06:10 -07001533 * Need to own table->tb6_lock
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534 */
1535
Daniel Lezcano8ed67782008-03-04 13:48:30 -08001536static struct fib6_node *fib6_repair_tree(struct net *net,
Wei Wang66f5d6c2017-10-06 12:06:10 -07001537 struct fib6_table *table,
1538 struct fib6_node *fn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539{
1540 int children;
1541 int nstate;
Wei Wang66f5d6c2017-10-06 12:06:10 -07001542 struct fib6_node *child;
Hannes Frederic Sowa94b2cfe2014-10-06 19:58:34 +02001543 struct fib6_walker *w;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544 int iter = 0;
1545
Wei Wang4512c432018-01-08 10:34:00 -08001546 /* Set fn->leaf to null_entry for root node. */
1547 if (fn->fn_flags & RTN_TL_ROOT) {
1548 rcu_assign_pointer(fn->leaf, net->ipv6.ip6_null_entry);
1549 return fn;
1550 }
1551
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552 for (;;) {
Wei Wang66f5d6c2017-10-06 12:06:10 -07001553 struct fib6_node *fn_r = rcu_dereference_protected(fn->right,
1554 lockdep_is_held(&table->tb6_lock));
1555 struct fib6_node *fn_l = rcu_dereference_protected(fn->left,
1556 lockdep_is_held(&table->tb6_lock));
1557 struct fib6_node *pn = rcu_dereference_protected(fn->parent,
1558 lockdep_is_held(&table->tb6_lock));
1559 struct fib6_node *pn_r = rcu_dereference_protected(pn->right,
1560 lockdep_is_held(&table->tb6_lock));
1561 struct fib6_node *pn_l = rcu_dereference_protected(pn->left,
1562 lockdep_is_held(&table->tb6_lock));
1563 struct rt6_info *fn_leaf = rcu_dereference_protected(fn->leaf,
1564 lockdep_is_held(&table->tb6_lock));
1565 struct rt6_info *pn_leaf = rcu_dereference_protected(pn->leaf,
1566 lockdep_is_held(&table->tb6_lock));
1567 struct rt6_info *new_fn_leaf;
1568
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569 RT6_TRACE("fixing tree: plen=%d iter=%d\n", fn->fn_bit, iter);
1570 iter++;
1571
Ilpo Järvinen547b7922008-07-25 21:43:18 -07001572 WARN_ON(fn->fn_flags & RTN_RTINFO);
1573 WARN_ON(fn->fn_flags & RTN_TL_ROOT);
Wei Wang66f5d6c2017-10-06 12:06:10 -07001574 WARN_ON(fn_leaf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575
1576 children = 0;
1577 child = NULL;
Wei Wang66f5d6c2017-10-06 12:06:10 -07001578 if (fn_r)
1579 child = fn_r, children |= 1;
1580 if (fn_l)
1581 child = fn_l, children |= 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582
YOSHIFUJI Hideaki7fc33162006-08-23 17:22:24 -07001583 if (children == 3 || FIB6_SUBTREE(fn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584#ifdef CONFIG_IPV6_SUBTREES
1585 /* Subtree root (i.e. fn) may have one child */
David S. Miller507c9b12011-12-03 17:50:45 -05001586 || (children && fn->fn_flags & RTN_ROOT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587#endif
1588 ) {
Wei Wang66f5d6c2017-10-06 12:06:10 -07001589 new_fn_leaf = fib6_find_prefix(net, table, fn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590#if RT6_DEBUG >= 2
Wei Wang66f5d6c2017-10-06 12:06:10 -07001591 if (!new_fn_leaf) {
1592 WARN_ON(!new_fn_leaf);
1593 new_fn_leaf = net->ipv6.ip6_null_entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594 }
1595#endif
Wei Wang66f5d6c2017-10-06 12:06:10 -07001596 atomic_inc(&new_fn_leaf->rt6i_ref);
1597 rcu_assign_pointer(fn->leaf, new_fn_leaf);
1598 return pn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599 }
1600
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601#ifdef CONFIG_IPV6_SUBTREES
YOSHIFUJI Hideaki7fc33162006-08-23 17:22:24 -07001602 if (FIB6_SUBTREE(pn) == fn) {
Ilpo Järvinen547b7922008-07-25 21:43:18 -07001603 WARN_ON(!(fn->fn_flags & RTN_ROOT));
Wei Wang66f5d6c2017-10-06 12:06:10 -07001604 RCU_INIT_POINTER(pn->subtree, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605 nstate = FWS_L;
1606 } else {
Ilpo Järvinen547b7922008-07-25 21:43:18 -07001607 WARN_ON(fn->fn_flags & RTN_ROOT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608#endif
Wei Wang66f5d6c2017-10-06 12:06:10 -07001609 if (pn_r == fn)
1610 rcu_assign_pointer(pn->right, child);
1611 else if (pn_l == fn)
1612 rcu_assign_pointer(pn->left, child);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613#if RT6_DEBUG >= 2
Ilpo Järvinen547b7922008-07-25 21:43:18 -07001614 else
1615 WARN_ON(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616#endif
1617 if (child)
Wei Wang66f5d6c2017-10-06 12:06:10 -07001618 rcu_assign_pointer(child->parent, pn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619 nstate = FWS_R;
1620#ifdef CONFIG_IPV6_SUBTREES
1621 }
1622#endif
1623
Michal Kubeček9a03cd82016-03-08 14:44:35 +01001624 read_lock(&net->ipv6.fib6_walker_lock);
1625 FOR_WALKERS(net, w) {
David S. Miller507c9b12011-12-03 17:50:45 -05001626 if (!child) {
Wei Wang2b760fc2017-10-06 12:06:03 -07001627 if (w->node == fn) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628 RT6_TRACE("W %p adjusted by delnode 1, s=%d/%d\n", w, w->state, nstate);
1629 w->node = pn;
1630 w->state = nstate;
1631 }
1632 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633 if (w->node == fn) {
1634 w->node = child;
1635 if (children&2) {
1636 RT6_TRACE("W %p adjusted by delnode 2, s=%d\n", w, w->state);
Wang Yufen8db46f12014-03-28 12:07:02 +08001637 w->state = w->state >= FWS_R ? FWS_U : FWS_INIT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638 } else {
1639 RT6_TRACE("W %p adjusted by delnode 2, s=%d\n", w, w->state);
Wang Yufen8db46f12014-03-28 12:07:02 +08001640 w->state = w->state >= FWS_C ? FWS_U : FWS_INIT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641 }
1642 }
1643 }
1644 }
Michal Kubeček9a03cd82016-03-08 14:44:35 +01001645 read_unlock(&net->ipv6.fib6_walker_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646
Wei Wang81eb8442017-10-06 12:06:11 -07001647 node_free(net, fn);
David S. Miller507c9b12011-12-03 17:50:45 -05001648 if (pn->fn_flags & RTN_RTINFO || FIB6_SUBTREE(pn))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649 return pn;
1650
Wei Wang66f5d6c2017-10-06 12:06:10 -07001651 RCU_INIT_POINTER(pn->leaf, NULL);
1652 rt6_release(pn_leaf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653 fn = pn;
1654 }
1655}
1656
Wei Wang66f5d6c2017-10-06 12:06:10 -07001657static void fib6_del_route(struct fib6_table *table, struct fib6_node *fn,
1658 struct rt6_info __rcu **rtp, struct nl_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659{
Hannes Frederic Sowa94b2cfe2014-10-06 19:58:34 +02001660 struct fib6_walker *w;
Wei Wang66f5d6c2017-10-06 12:06:10 -07001661 struct rt6_info *rt = rcu_dereference_protected(*rtp,
1662 lockdep_is_held(&table->tb6_lock));
Benjamin Theryc5728722008-03-03 23:34:17 -08001663 struct net *net = info->nl_net;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664
1665 RT6_TRACE("fib6_del_route\n");
1666
Wei Wang2b760fc2017-10-06 12:06:03 -07001667 WARN_ON_ONCE(rt->rt6i_flags & RTF_CACHE);
1668
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669 /* Unlink it */
David Miller071fb372017-11-28 15:40:15 -05001670 *rtp = rt->rt6_next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001671 rt->rt6i_node = NULL;
Benjamin Theryc5728722008-03-03 23:34:17 -08001672 net->ipv6.rt6_stats->fib_rt_entries--;
1673 net->ipv6.rt6_stats->fib_discarded_routes++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674
Wei Wang2b760fc2017-10-06 12:06:03 -07001675 /* Flush all cached dst in exception table */
1676 rt6_flush_exceptions(rt);
1677
David S. Millerf11e6652007-03-24 20:36:25 -07001678 /* Reset round-robin state, if necessary */
Wei Wang66f5d6c2017-10-06 12:06:10 -07001679 if (rcu_access_pointer(fn->rr_ptr) == rt)
David S. Millerf11e6652007-03-24 20:36:25 -07001680 fn->rr_ptr = NULL;
1681
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00001682 /* Remove this entry from other siblings */
1683 if (rt->rt6i_nsiblings) {
1684 struct rt6_info *sibling, *next_sibling;
1685
1686 list_for_each_entry_safe(sibling, next_sibling,
1687 &rt->rt6i_siblings, rt6i_siblings)
1688 sibling->rt6i_nsiblings--;
1689 rt->rt6i_nsiblings = 0;
1690 list_del_init(&rt->rt6i_siblings);
Ido Schimmeld7dedee2018-01-09 16:40:25 +02001691 rt6_multipath_rebalance(next_sibling);
Nicolas Dichtel51ebd312012-10-22 03:42:09 +00001692 }
1693
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694 /* Adjust walkers */
Michal Kubeček9a03cd82016-03-08 14:44:35 +01001695 read_lock(&net->ipv6.fib6_walker_lock);
1696 FOR_WALKERS(net, w) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697 if (w->state == FWS_C && w->leaf == rt) {
1698 RT6_TRACE("walker %p adjusted by delroute\n", w);
David Miller071fb372017-11-28 15:40:15 -05001699 w->leaf = rcu_dereference_protected(rt->rt6_next,
Wei Wang66f5d6c2017-10-06 12:06:10 -07001700 lockdep_is_held(&table->tb6_lock));
David S. Miller507c9b12011-12-03 17:50:45 -05001701 if (!w->leaf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702 w->state = FWS_U;
1703 }
1704 }
Michal Kubeček9a03cd82016-03-08 14:44:35 +01001705 read_unlock(&net->ipv6.fib6_walker_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706
Wei Wang4512c432018-01-08 10:34:00 -08001707 /* If it was last route, call fib6_repair_tree() to:
1708 * 1. For root node, put back null_entry as how the table was created.
1709 * 2. For other nodes, expunge its radix tree node.
1710 */
Wei Wang66f5d6c2017-10-06 12:06:10 -07001711 if (!rcu_access_pointer(fn->leaf)) {
Wei Wang4512c432018-01-08 10:34:00 -08001712 if (!(fn->fn_flags & RTN_TL_ROOT)) {
1713 fn->fn_flags &= ~RTN_RTINFO;
1714 net->ipv6.rt6_stats->fib_route_nodes--;
1715 }
Wei Wang66f5d6c2017-10-06 12:06:10 -07001716 fn = fib6_repair_tree(net, table, fn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717 }
1718
Hannes Frederic Sowa6e9e16e62015-01-26 15:11:17 +01001719 fib6_purge_rt(rt, fn, net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720
David Ahern6c31e5a2017-10-27 17:37:13 -07001721 call_fib6_entry_notifiers(net, FIB_EVENT_ENTRY_DEL, rt, NULL);
David Ahern16a16cd2017-02-02 12:37:11 -08001722 if (!info->skip_notify)
1723 inet6_rt_notify(RTM_DELROUTE, rt, info, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001724 rt6_release(rt);
1725}
1726
Wei Wang66f5d6c2017-10-06 12:06:10 -07001727/* Need to own table->tb6_lock */
Thomas Graf86872cb2006-08-22 00:01:08 -07001728int fib6_del(struct rt6_info *rt, struct nl_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001729{
Wei Wang4e587ea2017-08-25 15:03:10 -07001730 struct fib6_node *fn = rcu_dereference_protected(rt->rt6i_node,
1731 lockdep_is_held(&rt->rt6i_table->tb6_lock));
Wei Wang66f5d6c2017-10-06 12:06:10 -07001732 struct fib6_table *table = rt->rt6i_table;
Daniel Lezcano8ed67782008-03-04 13:48:30 -08001733 struct net *net = info->nl_net;
Wei Wang66f5d6c2017-10-06 12:06:10 -07001734 struct rt6_info __rcu **rtp;
1735 struct rt6_info __rcu **rtp_next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736
1737#if RT6_DEBUG >= 2
Wang Yufen8db46f12014-03-28 12:07:02 +08001738 if (rt->dst.obsolete > 0) {
Ian Morris53b24b82015-03-29 14:00:05 +01001739 WARN_ON(fn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740 return -ENOENT;
1741 }
1742#endif
David S. Miller507c9b12011-12-03 17:50:45 -05001743 if (!fn || rt == net->ipv6.ip6_null_entry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744 return -ENOENT;
1745
Ilpo Järvinen547b7922008-07-25 21:43:18 -07001746 WARN_ON(!(fn->fn_flags & RTN_RTINFO));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747
Wei Wang2b760fc2017-10-06 12:06:03 -07001748 /* remove cached dst from exception table */
1749 if (rt->rt6i_flags & RTF_CACHE)
1750 return rt6_remove_exception_rt(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751
1752 /*
1753 * Walk the leaf entries looking for ourself
1754 */
1755
Wei Wang66f5d6c2017-10-06 12:06:10 -07001756 for (rtp = &fn->leaf; *rtp; rtp = rtp_next) {
1757 struct rt6_info *cur = rcu_dereference_protected(*rtp,
1758 lockdep_is_held(&table->tb6_lock));
1759 if (rt == cur) {
1760 fib6_del_route(table, fn, rtp, info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761 return 0;
1762 }
David Miller071fb372017-11-28 15:40:15 -05001763 rtp_next = &cur->rt6_next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764 }
1765 return -ENOENT;
1766}
1767
1768/*
1769 * Tree traversal function.
1770 *
1771 * Certainly, it is not interrupt safe.
1772 * However, it is internally reenterable wrt itself and fib6_add/fib6_del.
1773 * It means, that we can modify tree during walking
1774 * and use this function for garbage collection, clone pruning,
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001775 * cleaning tree when a device goes down etc. etc.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776 *
1777 * It guarantees that every node will be traversed,
1778 * and that it will be traversed only once.
1779 *
1780 * Callback function w->func may return:
1781 * 0 -> continue walking.
1782 * positive value -> walking is suspended (used by tree dumps,
1783 * and probably by gc, if it will be split to several slices)
1784 * negative value -> terminate walking.
1785 *
1786 * The function itself returns:
1787 * 0 -> walk is complete.
1788 * >0 -> walk is incomplete (i.e. suspended)
1789 * <0 -> walk is terminated by an error.
Wei Wang66f5d6c2017-10-06 12:06:10 -07001790 *
1791 * This function is called with tb6_lock held.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001792 */
1793
Hannes Frederic Sowa94b2cfe2014-10-06 19:58:34 +02001794static int fib6_walk_continue(struct fib6_walker *w)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795{
Wei Wang66f5d6c2017-10-06 12:06:10 -07001796 struct fib6_node *fn, *pn, *left, *right;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797
Wei Wang2b760fc2017-10-06 12:06:03 -07001798 /* w->root should always be table->tb6_root */
1799 WARN_ON_ONCE(!(w->root->fn_flags & RTN_TL_ROOT));
1800
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801 for (;;) {
1802 fn = w->node;
David S. Miller507c9b12011-12-03 17:50:45 -05001803 if (!fn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804 return 0;
1805
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806 switch (w->state) {
1807#ifdef CONFIG_IPV6_SUBTREES
1808 case FWS_S:
YOSHIFUJI Hideaki7fc33162006-08-23 17:22:24 -07001809 if (FIB6_SUBTREE(fn)) {
1810 w->node = FIB6_SUBTREE(fn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001811 continue;
1812 }
1813 w->state = FWS_L;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001814#endif
Gustavo A. R. Silva275757e62017-10-16 16:36:52 -05001815 /* fall through */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001816 case FWS_L:
Wei Wang66f5d6c2017-10-06 12:06:10 -07001817 left = rcu_dereference_protected(fn->left, 1);
1818 if (left) {
1819 w->node = left;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001820 w->state = FWS_INIT;
1821 continue;
1822 }
1823 w->state = FWS_R;
Gustavo A. R. Silva275757e62017-10-16 16:36:52 -05001824 /* fall through */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001825 case FWS_R:
Wei Wang66f5d6c2017-10-06 12:06:10 -07001826 right = rcu_dereference_protected(fn->right, 1);
1827 if (right) {
1828 w->node = right;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829 w->state = FWS_INIT;
1830 continue;
1831 }
1832 w->state = FWS_C;
Wei Wang66f5d6c2017-10-06 12:06:10 -07001833 w->leaf = rcu_dereference_protected(fn->leaf, 1);
Gustavo A. R. Silva275757e62017-10-16 16:36:52 -05001834 /* fall through */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835 case FWS_C:
David S. Miller507c9b12011-12-03 17:50:45 -05001836 if (w->leaf && fn->fn_flags & RTN_RTINFO) {
Patrick McHardy2bec5a32010-02-08 05:19:03 +00001837 int err;
1838
Eric Dumazetfa809e22012-06-25 15:37:19 -07001839 if (w->skip) {
1840 w->skip--;
Kumar Sundararajan1c265852014-04-24 09:48:53 -04001841 goto skip;
Patrick McHardy2bec5a32010-02-08 05:19:03 +00001842 }
1843
1844 err = w->func(w);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001845 if (err)
1846 return err;
Patrick McHardy2bec5a32010-02-08 05:19:03 +00001847
1848 w->count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849 continue;
1850 }
Kumar Sundararajan1c265852014-04-24 09:48:53 -04001851skip:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001852 w->state = FWS_U;
Gustavo A. R. Silva275757e62017-10-16 16:36:52 -05001853 /* fall through */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001854 case FWS_U:
1855 if (fn == w->root)
1856 return 0;
Wei Wang66f5d6c2017-10-06 12:06:10 -07001857 pn = rcu_dereference_protected(fn->parent, 1);
1858 left = rcu_dereference_protected(pn->left, 1);
1859 right = rcu_dereference_protected(pn->right, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860 w->node = pn;
1861#ifdef CONFIG_IPV6_SUBTREES
YOSHIFUJI Hideaki7fc33162006-08-23 17:22:24 -07001862 if (FIB6_SUBTREE(pn) == fn) {
Ilpo Järvinen547b7922008-07-25 21:43:18 -07001863 WARN_ON(!(fn->fn_flags & RTN_ROOT));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864 w->state = FWS_L;
1865 continue;
1866 }
1867#endif
Wei Wang66f5d6c2017-10-06 12:06:10 -07001868 if (left == fn) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001869 w->state = FWS_R;
1870 continue;
1871 }
Wei Wang66f5d6c2017-10-06 12:06:10 -07001872 if (right == fn) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001873 w->state = FWS_C;
Wei Wang66f5d6c2017-10-06 12:06:10 -07001874 w->leaf = rcu_dereference_protected(w->node->leaf, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875 continue;
1876 }
1877#if RT6_DEBUG >= 2
Ilpo Järvinen547b7922008-07-25 21:43:18 -07001878 WARN_ON(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879#endif
1880 }
1881 }
1882}
1883
Michal Kubeček9a03cd82016-03-08 14:44:35 +01001884static int fib6_walk(struct net *net, struct fib6_walker *w)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885{
1886 int res;
1887
1888 w->state = FWS_INIT;
1889 w->node = w->root;
1890
Michal Kubeček9a03cd82016-03-08 14:44:35 +01001891 fib6_walker_link(net, w);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892 res = fib6_walk_continue(w);
1893 if (res <= 0)
Michal Kubeček9a03cd82016-03-08 14:44:35 +01001894 fib6_walker_unlink(net, w);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001895 return res;
1896}
1897
Hannes Frederic Sowa94b2cfe2014-10-06 19:58:34 +02001898static int fib6_clean_node(struct fib6_walker *w)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899{
1900 int res;
1901 struct rt6_info *rt;
Hannes Frederic Sowa94b2cfe2014-10-06 19:58:34 +02001902 struct fib6_cleaner *c = container_of(w, struct fib6_cleaner, w);
Benjamin Theryec7d43c2008-03-03 23:31:57 -08001903 struct nl_info info = {
1904 .nl_net = c->net,
1905 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001906
Hannes Frederic Sowa327571c2014-10-06 19:58:38 +02001907 if (c->sernum != FIB6_NO_SERNUM_CHANGE &&
1908 w->node->fn_sernum != c->sernum)
1909 w->node->fn_sernum = c->sernum;
1910
1911 if (!c->func) {
1912 WARN_ON_ONCE(c->sernum == FIB6_NO_SERNUM_CHANGE);
1913 w->leaf = NULL;
1914 return 0;
1915 }
1916
Wei Wang66f5d6c2017-10-06 12:06:10 -07001917 for_each_fib6_walker_rt(w) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001918 res = c->func(rt, c->arg);
Ido Schimmelb5cb5a72018-01-07 12:45:12 +02001919 if (res == -1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920 w->leaf = rt;
Denis V. Lunev528c4ce2007-12-13 09:45:12 -08001921 res = fib6_del(rt, &info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922 if (res) {
1923#if RT6_DEBUG >= 2
Joe Perches91df42b2012-05-15 14:11:54 +00001924 pr_debug("%s: del failed: rt=%p@%p err=%d\n",
Wei Wang4e587ea2017-08-25 15:03:10 -07001925 __func__, rt,
1926 rcu_access_pointer(rt->rt6i_node),
1927 res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928#endif
1929 continue;
1930 }
1931 return 0;
Ido Schimmelb5cb5a72018-01-07 12:45:12 +02001932 } else if (res == -2) {
1933 if (WARN_ON(!rt->rt6i_nsiblings))
1934 continue;
1935 rt = list_last_entry(&rt->rt6i_siblings,
1936 struct rt6_info, rt6i_siblings);
1937 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938 }
Ilpo Järvinen547b7922008-07-25 21:43:18 -07001939 WARN_ON(res != 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001940 }
1941 w->leaf = rt;
1942 return 0;
1943}
1944
1945/*
1946 * Convenient frontend to tree walker.
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001947 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001948 * func is called on each route.
Ido Schimmelb5cb5a72018-01-07 12:45:12 +02001949 * It may return -2 -> skip multipath route.
1950 * -1 -> delete this route.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951 * 0 -> continue walking
Linus Torvalds1da177e2005-04-16 15:20:36 -07001952 */
1953
Benjamin Theryec7d43c2008-03-03 23:31:57 -08001954static void fib6_clean_tree(struct net *net, struct fib6_node *root,
Adrian Bunk8ce11e62006-08-07 21:50:48 -07001955 int (*func)(struct rt6_info *, void *arg),
Wei Wang2b760fc2017-10-06 12:06:03 -07001956 int sernum, void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957{
Hannes Frederic Sowa94b2cfe2014-10-06 19:58:34 +02001958 struct fib6_cleaner c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001959
1960 c.w.root = root;
1961 c.w.func = fib6_clean_node;
Patrick McHardy2bec5a32010-02-08 05:19:03 +00001962 c.w.count = 0;
1963 c.w.skip = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001964 c.func = func;
Hannes Frederic Sowa327571c2014-10-06 19:58:38 +02001965 c.sernum = sernum;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966 c.arg = arg;
Benjamin Theryec7d43c2008-03-03 23:31:57 -08001967 c.net = net;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001968
Michal Kubeček9a03cd82016-03-08 14:44:35 +01001969 fib6_walk(net, &c.w);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970}
1971
Hannes Frederic Sowa327571c2014-10-06 19:58:38 +02001972static void __fib6_clean_all(struct net *net,
1973 int (*func)(struct rt6_info *, void *),
1974 int sernum, void *arg)
Thomas Grafc71099a2006-08-04 23:20:06 -07001975{
Thomas Grafc71099a2006-08-04 23:20:06 -07001976 struct fib6_table *table;
Daniel Lezcano58f09b72008-03-03 23:25:27 -08001977 struct hlist_head *head;
Patrick McHardy1b43af52006-08-10 23:11:17 -07001978 unsigned int h;
Thomas Grafc71099a2006-08-04 23:20:06 -07001979
Patrick McHardy1b43af52006-08-10 23:11:17 -07001980 rcu_read_lock();
Neil Hormana33bc5c2009-07-30 18:52:15 -07001981 for (h = 0; h < FIB6_TABLE_HASHSZ; h++) {
Daniel Lezcanof3db4852008-03-03 23:27:06 -08001982 head = &net->ipv6.fib_table_hash[h];
Sasha Levinb67bfe02013-02-27 17:06:00 -08001983 hlist_for_each_entry_rcu(table, head, tb6_hlist) {
Wei Wang66f5d6c2017-10-06 12:06:10 -07001984 spin_lock_bh(&table->tb6_lock);
Benjamin Theryec7d43c2008-03-03 23:31:57 -08001985 fib6_clean_tree(net, &table->tb6_root,
Wei Wang2b760fc2017-10-06 12:06:03 -07001986 func, sernum, arg);
Wei Wang66f5d6c2017-10-06 12:06:10 -07001987 spin_unlock_bh(&table->tb6_lock);
Thomas Grafc71099a2006-08-04 23:20:06 -07001988 }
1989 }
Patrick McHardy1b43af52006-08-10 23:11:17 -07001990 rcu_read_unlock();
Thomas Grafc71099a2006-08-04 23:20:06 -07001991}
1992
Hannes Frederic Sowa327571c2014-10-06 19:58:38 +02001993void fib6_clean_all(struct net *net, int (*func)(struct rt6_info *, void *),
1994 void *arg)
1995{
1996 __fib6_clean_all(net, func, FIB6_NO_SERNUM_CHANGE, arg);
1997}
1998
Hannes Frederic Sowa705f1c82014-09-28 00:46:06 +02001999static void fib6_flush_trees(struct net *net)
2000{
Hannes Frederic Sowa812918c2014-10-06 19:58:37 +02002001 int new_sernum = fib6_new_sernum(net);
Hannes Frederic Sowa705f1c82014-09-28 00:46:06 +02002002
Hannes Frederic Sowa327571c2014-10-06 19:58:38 +02002003 __fib6_clean_all(net, NULL, new_sernum, NULL);
Hannes Frederic Sowa705f1c82014-09-28 00:46:06 +02002004}
2005
Linus Torvalds1da177e2005-04-16 15:20:36 -07002006/*
2007 * Garbage collection
2008 */
2009
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010static int fib6_age(struct rt6_info *rt, void *arg)
2011{
Michal Kubeček3570df92016-03-08 14:44:25 +01002012 struct fib6_gc_args *gc_args = arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002013 unsigned long now = jiffies;
2014
2015 /*
2016 * check addrconf expiration here.
2017 * Routes are expired even if they are in use.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002018 */
2019
David S. Millerd1918542011-12-28 20:19:20 -05002020 if (rt->rt6i_flags & RTF_EXPIRES && rt->dst.expires) {
2021 if (time_after(now, rt->dst.expires)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002022 RT6_TRACE("expiring %p\n", rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002023 return -1;
2024 }
Michal Kubeček3570df92016-03-08 14:44:25 +01002025 gc_args->more++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002026 }
2027
Wei Wangc757faa2017-10-06 12:06:01 -07002028 /* Also age clones in the exception table.
2029 * Note, that clones are aged out
2030 * only if they are not in use now.
2031 */
2032 rt6_age_exceptions(rt, gc_args, now);
2033
Linus Torvalds1da177e2005-04-16 15:20:36 -07002034 return 0;
2035}
2036
Michal Kubeček2ac3ac82013-08-01 10:04:14 +02002037void fib6_run_gc(unsigned long expires, struct net *net, bool force)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002038{
Michal Kubeček3570df92016-03-08 14:44:25 +01002039 struct fib6_gc_args gc_args;
Michal Kubeček49a18d82013-08-01 10:04:24 +02002040 unsigned long now;
2041
Michal Kubeček2ac3ac82013-08-01 10:04:14 +02002042 if (force) {
Michal Kubeček3dc94f92016-03-08 14:44:45 +01002043 spin_lock_bh(&net->ipv6.fib6_gc_lock);
2044 } else if (!spin_trylock_bh(&net->ipv6.fib6_gc_lock)) {
Michal Kubeček2ac3ac82013-08-01 10:04:14 +02002045 mod_timer(&net->ipv6.ip6_fib_timer, jiffies + HZ);
2046 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002047 }
Michal Kubeček2ac3ac82013-08-01 10:04:14 +02002048 gc_args.timeout = expires ? (int)expires :
2049 net->ipv6.sysctl.ip6_rt_gc_interval;
Wei Wangdb916642017-06-17 10:42:37 -07002050 gc_args.more = 0;
Daniel Lezcanof3db4852008-03-03 23:27:06 -08002051
Michal Kubeček3570df92016-03-08 14:44:25 +01002052 fib6_clean_all(net, fib6_age, &gc_args);
Michal Kubeček49a18d82013-08-01 10:04:24 +02002053 now = jiffies;
2054 net->ipv6.ip6_rt_last_gc = now;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002055
2056 if (gc_args.more)
Stephen Hemmingerc8a45222008-07-22 14:34:09 -07002057 mod_timer(&net->ipv6.ip6_fib_timer,
Michal Kubeček49a18d82013-08-01 10:04:24 +02002058 round_jiffies(now
Stephen Hemmingerc8a45222008-07-22 14:34:09 -07002059 + net->ipv6.sysctl.ip6_rt_gc_interval));
Stephen Hemminger417f28b2008-07-22 14:33:45 -07002060 else
2061 del_timer(&net->ipv6.ip6_fib_timer);
Michal Kubeček3dc94f92016-03-08 14:44:45 +01002062 spin_unlock_bh(&net->ipv6.fib6_gc_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002063}
2064
Kees Cook86cb30e2017-10-17 20:21:24 -07002065static void fib6_gc_timer_cb(struct timer_list *t)
Daniel Lezcano5b7c9312008-03-03 23:28:58 -08002066{
Kees Cook86cb30e2017-10-17 20:21:24 -07002067 struct net *arg = from_timer(arg, t, ipv6.ip6_fib_timer);
2068
2069 fib6_run_gc(0, arg, true);
Daniel Lezcano5b7c9312008-03-03 23:28:58 -08002070}
2071
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00002072static int __net_init fib6_net_init(struct net *net)
Daniel Lezcano58f09b72008-03-03 23:25:27 -08002073{
Eric Dumazet10da66f2010-10-13 08:22:03 +00002074 size_t size = sizeof(struct hlist_head) * FIB6_TABLE_HASHSZ;
Ido Schimmel16ab6d72017-08-03 13:28:16 +02002075 int err;
2076
2077 err = fib6_notifier_init(net);
2078 if (err)
2079 return err;
Eric Dumazet10da66f2010-10-13 08:22:03 +00002080
Michal Kubeček3dc94f92016-03-08 14:44:45 +01002081 spin_lock_init(&net->ipv6.fib6_gc_lock);
Michal Kubeček9a03cd82016-03-08 14:44:35 +01002082 rwlock_init(&net->ipv6.fib6_walker_lock);
2083 INIT_LIST_HEAD(&net->ipv6.fib6_walkers);
Kees Cook86cb30e2017-10-17 20:21:24 -07002084 timer_setup(&net->ipv6.ip6_fib_timer, fib6_gc_timer_cb, 0);
Daniel Lezcano63152fc2008-03-03 23:31:11 -08002085
Benjamin Theryc5728722008-03-03 23:34:17 -08002086 net->ipv6.rt6_stats = kzalloc(sizeof(*net->ipv6.rt6_stats), GFP_KERNEL);
2087 if (!net->ipv6.rt6_stats)
2088 goto out_timer;
2089
Eric Dumazet10da66f2010-10-13 08:22:03 +00002090 /* Avoid false sharing : Use at least a full cache line */
2091 size = max_t(size_t, size, L1_CACHE_BYTES);
2092
2093 net->ipv6.fib_table_hash = kzalloc(size, GFP_KERNEL);
Daniel Lezcano58f09b72008-03-03 23:25:27 -08002094 if (!net->ipv6.fib_table_hash)
Benjamin Theryc5728722008-03-03 23:34:17 -08002095 goto out_rt6_stats;
Daniel Lezcano58f09b72008-03-03 23:25:27 -08002096
2097 net->ipv6.fib6_main_tbl = kzalloc(sizeof(*net->ipv6.fib6_main_tbl),
2098 GFP_KERNEL);
2099 if (!net->ipv6.fib6_main_tbl)
2100 goto out_fib_table_hash;
2101
2102 net->ipv6.fib6_main_tbl->tb6_id = RT6_TABLE_MAIN;
Wei Wang66f5d6c2017-10-06 12:06:10 -07002103 rcu_assign_pointer(net->ipv6.fib6_main_tbl->tb6_root.leaf,
2104 net->ipv6.ip6_null_entry);
Daniel Lezcano58f09b72008-03-03 23:25:27 -08002105 net->ipv6.fib6_main_tbl->tb6_root.fn_flags =
2106 RTN_ROOT | RTN_TL_ROOT | RTN_RTINFO;
David S. Miller8e773272012-06-11 00:01:52 -07002107 inet_peer_base_init(&net->ipv6.fib6_main_tbl->tb6_peers);
Daniel Lezcano58f09b72008-03-03 23:25:27 -08002108
2109#ifdef CONFIG_IPV6_MULTIPLE_TABLES
2110 net->ipv6.fib6_local_tbl = kzalloc(sizeof(*net->ipv6.fib6_local_tbl),
2111 GFP_KERNEL);
2112 if (!net->ipv6.fib6_local_tbl)
2113 goto out_fib6_main_tbl;
2114 net->ipv6.fib6_local_tbl->tb6_id = RT6_TABLE_LOCAL;
Wei Wang66f5d6c2017-10-06 12:06:10 -07002115 rcu_assign_pointer(net->ipv6.fib6_local_tbl->tb6_root.leaf,
2116 net->ipv6.ip6_null_entry);
Daniel Lezcano58f09b72008-03-03 23:25:27 -08002117 net->ipv6.fib6_local_tbl->tb6_root.fn_flags =
2118 RTN_ROOT | RTN_TL_ROOT | RTN_RTINFO;
David S. Miller8e773272012-06-11 00:01:52 -07002119 inet_peer_base_init(&net->ipv6.fib6_local_tbl->tb6_peers);
Daniel Lezcano58f09b72008-03-03 23:25:27 -08002120#endif
2121 fib6_tables_init(net);
2122
Stephen Hemminger417f28b2008-07-22 14:33:45 -07002123 return 0;
Daniel Lezcano58f09b72008-03-03 23:25:27 -08002124
2125#ifdef CONFIG_IPV6_MULTIPLE_TABLES
2126out_fib6_main_tbl:
2127 kfree(net->ipv6.fib6_main_tbl);
2128#endif
2129out_fib_table_hash:
2130 kfree(net->ipv6.fib_table_hash);
Benjamin Theryc5728722008-03-03 23:34:17 -08002131out_rt6_stats:
2132 kfree(net->ipv6.rt6_stats);
Daniel Lezcano63152fc2008-03-03 23:31:11 -08002133out_timer:
Ido Schimmel16ab6d72017-08-03 13:28:16 +02002134 fib6_notifier_exit(net);
Stephen Hemminger417f28b2008-07-22 14:33:45 -07002135 return -ENOMEM;
Wang Yufen8db46f12014-03-28 12:07:02 +08002136}
Daniel Lezcano58f09b72008-03-03 23:25:27 -08002137
2138static void fib6_net_exit(struct net *net)
2139{
Sabrina Dubrocaba1cc082017-09-08 10:26:19 +02002140 unsigned int i;
2141
Stephen Hemminger417f28b2008-07-22 14:33:45 -07002142 del_timer_sync(&net->ipv6.ip6_fib_timer);
2143
Eric Dumazet32a805b2017-09-08 15:48:47 -07002144 for (i = 0; i < FIB6_TABLE_HASHSZ; i++) {
Sabrina Dubrocaba1cc082017-09-08 10:26:19 +02002145 struct hlist_head *head = &net->ipv6.fib_table_hash[i];
2146 struct hlist_node *tmp;
2147 struct fib6_table *tb;
2148
2149 hlist_for_each_entry_safe(tb, tmp, head, tb6_hlist) {
2150 hlist_del(&tb->tb6_hlist);
2151 fib6_free_table(tb);
2152 }
2153 }
2154
Daniel Lezcano58f09b72008-03-03 23:25:27 -08002155 kfree(net->ipv6.fib_table_hash);
Benjamin Theryc5728722008-03-03 23:34:17 -08002156 kfree(net->ipv6.rt6_stats);
Ido Schimmel16ab6d72017-08-03 13:28:16 +02002157 fib6_notifier_exit(net);
Daniel Lezcano58f09b72008-03-03 23:25:27 -08002158}
2159
2160static struct pernet_operations fib6_net_ops = {
2161 .init = fib6_net_init,
2162 .exit = fib6_net_exit,
Kirill Tkhaid16784d2018-02-19 11:50:28 +03002163 .async = true,
Daniel Lezcano58f09b72008-03-03 23:25:27 -08002164};
2165
Daniel Lezcanod63bddb2007-12-07 00:40:34 -08002166int __init fib6_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002167{
Daniel Lezcanoe0b855902008-03-03 23:24:31 -08002168 int ret = -ENOMEM;
Daniel Lezcano63152fc2008-03-03 23:31:11 -08002169
Linus Torvalds1da177e2005-04-16 15:20:36 -07002170 fib6_node_kmem = kmem_cache_create("fib6_nodes",
2171 sizeof(struct fib6_node),
Daniel Lezcanof845ab62007-12-07 00:45:16 -08002172 0, SLAB_HWCACHE_ALIGN,
Paul Mundt20c2df82007-07-20 10:11:58 +09002173 NULL);
Daniel Lezcanof845ab62007-12-07 00:45:16 -08002174 if (!fib6_node_kmem)
Daniel Lezcanoe0b855902008-03-03 23:24:31 -08002175 goto out;
2176
Daniel Lezcano58f09b72008-03-03 23:25:27 -08002177 ret = register_pernet_subsys(&fib6_net_ops);
2178 if (ret)
Benjamin Theryc5728722008-03-03 23:34:17 -08002179 goto out_kmem_cache_create;
David S. Millere8803b62012-06-16 01:12:19 -07002180
Florian Westphal16feebc2017-12-02 21:44:08 +01002181 ret = rtnl_register_module(THIS_MODULE, PF_INET6, RTM_GETROUTE, NULL,
2182 inet6_dump_fib, 0);
David S. Millere8803b62012-06-16 01:12:19 -07002183 if (ret)
2184 goto out_unregister_subsys;
Hannes Frederic Sowa705f1c82014-09-28 00:46:06 +02002185
2186 __fib6_flush_trees = fib6_flush_trees;
Daniel Lezcanod63bddb2007-12-07 00:40:34 -08002187out:
2188 return ret;
2189
David S. Millere8803b62012-06-16 01:12:19 -07002190out_unregister_subsys:
2191 unregister_pernet_subsys(&fib6_net_ops);
Daniel Lezcanod63bddb2007-12-07 00:40:34 -08002192out_kmem_cache_create:
2193 kmem_cache_destroy(fib6_node_kmem);
2194 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002195}
2196
2197void fib6_gc_cleanup(void)
2198{
Daniel Lezcano58f09b72008-03-03 23:25:27 -08002199 unregister_pernet_subsys(&fib6_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002200 kmem_cache_destroy(fib6_node_kmem);
2201}
Hannes Frederic Sowa8d2ca1d2013-09-21 16:55:59 +02002202
2203#ifdef CONFIG_PROC_FS
2204
2205struct ipv6_route_iter {
2206 struct seq_net_private p;
Hannes Frederic Sowa94b2cfe2014-10-06 19:58:34 +02002207 struct fib6_walker w;
Hannes Frederic Sowa8d2ca1d2013-09-21 16:55:59 +02002208 loff_t skip;
2209 struct fib6_table *tbl;
Hannes Frederic Sowa42b18702014-10-06 19:58:35 +02002210 int sernum;
Hannes Frederic Sowa8d2ca1d2013-09-21 16:55:59 +02002211};
2212
2213static int ipv6_route_seq_show(struct seq_file *seq, void *v)
2214{
2215 struct rt6_info *rt = v;
2216 struct ipv6_route_iter *iter = seq->private;
2217
2218 seq_printf(seq, "%pi6 %02x ", &rt->rt6i_dst.addr, rt->rt6i_dst.plen);
2219
2220#ifdef CONFIG_IPV6_SUBTREES
2221 seq_printf(seq, "%pi6 %02x ", &rt->rt6i_src.addr, rt->rt6i_src.plen);
2222#else
2223 seq_puts(seq, "00000000000000000000000000000000 00 ");
2224#endif
2225 if (rt->rt6i_flags & RTF_GATEWAY)
2226 seq_printf(seq, "%pi6", &rt->rt6i_gateway);
2227 else
2228 seq_puts(seq, "00000000000000000000000000000000");
2229
2230 seq_printf(seq, " %08x %08x %08x %08x %8s\n",
2231 rt->rt6i_metric, atomic_read(&rt->dst.__refcnt),
2232 rt->dst.__use, rt->rt6i_flags,
2233 rt->dst.dev ? rt->dst.dev->name : "");
2234 iter->w.leaf = NULL;
2235 return 0;
2236}
2237
Hannes Frederic Sowa94b2cfe2014-10-06 19:58:34 +02002238static int ipv6_route_yield(struct fib6_walker *w)
Hannes Frederic Sowa8d2ca1d2013-09-21 16:55:59 +02002239{
2240 struct ipv6_route_iter *iter = w->args;
2241
2242 if (!iter->skip)
2243 return 1;
2244
2245 do {
Wei Wang66f5d6c2017-10-06 12:06:10 -07002246 iter->w.leaf = rcu_dereference_protected(
David Miller071fb372017-11-28 15:40:15 -05002247 iter->w.leaf->rt6_next,
Wei Wang66f5d6c2017-10-06 12:06:10 -07002248 lockdep_is_held(&iter->tbl->tb6_lock));
Hannes Frederic Sowa8d2ca1d2013-09-21 16:55:59 +02002249 iter->skip--;
2250 if (!iter->skip && iter->w.leaf)
2251 return 1;
2252 } while (iter->w.leaf);
2253
2254 return 0;
2255}
2256
Michal Kubeček9a03cd82016-03-08 14:44:35 +01002257static void ipv6_route_seq_setup_walk(struct ipv6_route_iter *iter,
2258 struct net *net)
Hannes Frederic Sowa8d2ca1d2013-09-21 16:55:59 +02002259{
2260 memset(&iter->w, 0, sizeof(iter->w));
2261 iter->w.func = ipv6_route_yield;
2262 iter->w.root = &iter->tbl->tb6_root;
2263 iter->w.state = FWS_INIT;
2264 iter->w.node = iter->w.root;
2265 iter->w.args = iter;
Hannes Frederic Sowa0a67d3e2013-09-21 16:56:10 +02002266 iter->sernum = iter->w.root->fn_sernum;
Hannes Frederic Sowa8d2ca1d2013-09-21 16:55:59 +02002267 INIT_LIST_HEAD(&iter->w.lh);
Michal Kubeček9a03cd82016-03-08 14:44:35 +01002268 fib6_walker_link(net, &iter->w);
Hannes Frederic Sowa8d2ca1d2013-09-21 16:55:59 +02002269}
2270
2271static struct fib6_table *ipv6_route_seq_next_table(struct fib6_table *tbl,
2272 struct net *net)
2273{
2274 unsigned int h;
2275 struct hlist_node *node;
2276
2277 if (tbl) {
2278 h = (tbl->tb6_id & (FIB6_TABLE_HASHSZ - 1)) + 1;
2279 node = rcu_dereference_bh(hlist_next_rcu(&tbl->tb6_hlist));
2280 } else {
2281 h = 0;
2282 node = NULL;
2283 }
2284
2285 while (!node && h < FIB6_TABLE_HASHSZ) {
2286 node = rcu_dereference_bh(
2287 hlist_first_rcu(&net->ipv6.fib_table_hash[h++]));
2288 }
2289 return hlist_entry_safe(node, struct fib6_table, tb6_hlist);
2290}
2291
Hannes Frederic Sowa0a67d3e2013-09-21 16:56:10 +02002292static void ipv6_route_check_sernum(struct ipv6_route_iter *iter)
2293{
2294 if (iter->sernum != iter->w.root->fn_sernum) {
2295 iter->sernum = iter->w.root->fn_sernum;
2296 iter->w.state = FWS_INIT;
2297 iter->w.node = iter->w.root;
2298 WARN_ON(iter->w.skip);
2299 iter->w.skip = iter->w.count;
2300 }
2301}
2302
Hannes Frederic Sowa8d2ca1d2013-09-21 16:55:59 +02002303static void *ipv6_route_seq_next(struct seq_file *seq, void *v, loff_t *pos)
2304{
2305 int r;
2306 struct rt6_info *n;
2307 struct net *net = seq_file_net(seq);
2308 struct ipv6_route_iter *iter = seq->private;
2309
2310 if (!v)
2311 goto iter_table;
2312
David Miller071fb372017-11-28 15:40:15 -05002313 n = rcu_dereference_bh(((struct rt6_info *)v)->rt6_next);
Hannes Frederic Sowa8d2ca1d2013-09-21 16:55:59 +02002314 if (n) {
2315 ++*pos;
2316 return n;
2317 }
2318
2319iter_table:
Hannes Frederic Sowa0a67d3e2013-09-21 16:56:10 +02002320 ipv6_route_check_sernum(iter);
Wei Wang66f5d6c2017-10-06 12:06:10 -07002321 spin_lock_bh(&iter->tbl->tb6_lock);
Hannes Frederic Sowa8d2ca1d2013-09-21 16:55:59 +02002322 r = fib6_walk_continue(&iter->w);
Wei Wang66f5d6c2017-10-06 12:06:10 -07002323 spin_unlock_bh(&iter->tbl->tb6_lock);
Hannes Frederic Sowa8d2ca1d2013-09-21 16:55:59 +02002324 if (r > 0) {
2325 if (v)
2326 ++*pos;
2327 return iter->w.leaf;
2328 } else if (r < 0) {
Michal Kubeček9a03cd82016-03-08 14:44:35 +01002329 fib6_walker_unlink(net, &iter->w);
Hannes Frederic Sowa8d2ca1d2013-09-21 16:55:59 +02002330 return NULL;
2331 }
Michal Kubeček9a03cd82016-03-08 14:44:35 +01002332 fib6_walker_unlink(net, &iter->w);
Hannes Frederic Sowa8d2ca1d2013-09-21 16:55:59 +02002333
2334 iter->tbl = ipv6_route_seq_next_table(iter->tbl, net);
2335 if (!iter->tbl)
2336 return NULL;
2337
Michal Kubeček9a03cd82016-03-08 14:44:35 +01002338 ipv6_route_seq_setup_walk(iter, net);
Hannes Frederic Sowa8d2ca1d2013-09-21 16:55:59 +02002339 goto iter_table;
2340}
2341
2342static void *ipv6_route_seq_start(struct seq_file *seq, loff_t *pos)
2343 __acquires(RCU_BH)
2344{
2345 struct net *net = seq_file_net(seq);
2346 struct ipv6_route_iter *iter = seq->private;
2347
2348 rcu_read_lock_bh();
2349 iter->tbl = ipv6_route_seq_next_table(NULL, net);
2350 iter->skip = *pos;
2351
2352 if (iter->tbl) {
Michal Kubeček9a03cd82016-03-08 14:44:35 +01002353 ipv6_route_seq_setup_walk(iter, net);
Hannes Frederic Sowa8d2ca1d2013-09-21 16:55:59 +02002354 return ipv6_route_seq_next(seq, NULL, pos);
2355 } else {
2356 return NULL;
2357 }
2358}
2359
2360static bool ipv6_route_iter_active(struct ipv6_route_iter *iter)
2361{
Hannes Frederic Sowa94b2cfe2014-10-06 19:58:34 +02002362 struct fib6_walker *w = &iter->w;
Hannes Frederic Sowa8d2ca1d2013-09-21 16:55:59 +02002363 return w->node && !(w->state == FWS_U && w->node == w->root);
2364}
2365
2366static void ipv6_route_seq_stop(struct seq_file *seq, void *v)
2367 __releases(RCU_BH)
2368{
Michal Kubeček9a03cd82016-03-08 14:44:35 +01002369 struct net *net = seq_file_net(seq);
Hannes Frederic Sowa8d2ca1d2013-09-21 16:55:59 +02002370 struct ipv6_route_iter *iter = seq->private;
2371
2372 if (ipv6_route_iter_active(iter))
Michal Kubeček9a03cd82016-03-08 14:44:35 +01002373 fib6_walker_unlink(net, &iter->w);
Hannes Frederic Sowa8d2ca1d2013-09-21 16:55:59 +02002374
2375 rcu_read_unlock_bh();
2376}
2377
2378static const struct seq_operations ipv6_route_seq_ops = {
2379 .start = ipv6_route_seq_start,
2380 .next = ipv6_route_seq_next,
2381 .stop = ipv6_route_seq_stop,
2382 .show = ipv6_route_seq_show
2383};
2384
2385int ipv6_route_open(struct inode *inode, struct file *file)
2386{
2387 return seq_open_net(inode, file, &ipv6_route_seq_ops,
2388 sizeof(struct ipv6_route_iter));
2389}
2390
2391#endif /* CONFIG_PROC_FS */