blob: fae34ad4bb1adf95dd1f00b9ead4c41661fcc982 [file] [log] [blame]
Robert Olsson19baf832005-06-21 12:43:18 -07001/*
2 * This program is free software; you can redistribute it and/or
3 * modify it under the terms of the GNU General Public License
4 * as published by the Free Software Foundation; either version
5 * 2 of the License, or (at your option) any later version.
6 *
7 * Robert Olsson <robert.olsson@its.uu.se> Uppsala Universitet
8 * & Swedish University of Agricultural Sciences.
9 *
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +090010 * Jens Laas <jens.laas@data.slu.se> Swedish University of
Robert Olsson19baf832005-06-21 12:43:18 -070011 * Agricultural Sciences.
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +090012 *
Robert Olsson19baf832005-06-21 12:43:18 -070013 * Hans Liss <hans.liss@its.uu.se> Uppsala Universitet
14 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -030015 * This work is based on the LPC-trie which is originally described in:
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +090016 *
Robert Olsson19baf832005-06-21 12:43:18 -070017 * An experimental study of compression methods for dynamic tries
18 * Stefan Nilsson and Matti Tikkanen. Algorithmica, 33(1):19-33, 2002.
Justin P. Mattock631dd1a2010-10-18 11:03:14 +020019 * http://www.csc.kth.se/~snilsson/software/dyntrie2/
Robert Olsson19baf832005-06-21 12:43:18 -070020 *
21 *
22 * IP-address lookup using LC-tries. Stefan Nilsson and Gunnar Karlsson
23 * IEEE Journal on Selected Areas in Communications, 17(6):1083-1092, June 1999
24 *
Robert Olsson19baf832005-06-21 12:43:18 -070025 *
26 * Code from fib_hash has been reused which includes the following header:
27 *
28 *
29 * INET An implementation of the TCP/IP protocol suite for the LINUX
30 * operating system. INET is implemented using the BSD Socket
31 * interface as the means of communication with the user level.
32 *
33 * IPv4 FIB: lookup engine and maintenance routines.
34 *
35 *
36 * Authors: Alexey Kuznetsov, <kuznet@ms2.inr.ac.ru>
37 *
38 * This program is free software; you can redistribute it and/or
39 * modify it under the terms of the GNU General Public License
40 * as published by the Free Software Foundation; either version
41 * 2 of the License, or (at your option) any later version.
Robert Olssonfd966252005-12-22 11:25:10 -080042 *
43 * Substantial contributions to this work comes from:
44 *
45 * David S. Miller, <davem@davemloft.net>
46 * Stephen Hemminger <shemminger@osdl.org>
47 * Paul E. McKenney <paulmck@us.ibm.com>
48 * Patrick McHardy <kaber@trash.net>
Robert Olsson19baf832005-06-21 12:43:18 -070049 */
50
Jens Låås80b71b82009-08-28 23:57:15 -070051#define VERSION "0.409"
Robert Olsson19baf832005-06-21 12:43:18 -070052
Robert Olsson19baf832005-06-21 12:43:18 -070053#include <asm/uaccess.h>
Jiri Slaby1977f032007-10-18 23:40:25 -070054#include <linux/bitops.h>
Robert Olsson19baf832005-06-21 12:43:18 -070055#include <linux/types.h>
56#include <linux/kernel.h>
Robert Olsson19baf832005-06-21 12:43:18 -070057#include <linux/mm.h>
58#include <linux/string.h>
59#include <linux/socket.h>
60#include <linux/sockios.h>
61#include <linux/errno.h>
62#include <linux/in.h>
63#include <linux/inet.h>
Stephen Hemmingercd8787a2006-01-03 14:38:34 -080064#include <linux/inetdevice.h>
Robert Olsson19baf832005-06-21 12:43:18 -070065#include <linux/netdevice.h>
66#include <linux/if_arp.h>
67#include <linux/proc_fs.h>
Robert Olsson2373ce12005-08-25 13:01:29 -070068#include <linux/rcupdate.h>
Robert Olsson19baf832005-06-21 12:43:18 -070069#include <linux/skbuff.h>
70#include <linux/netlink.h>
71#include <linux/init.h>
72#include <linux/list.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090073#include <linux/slab.h>
Paul Gortmakerbc3b2d72011-07-15 11:47:34 -040074#include <linux/export.h>
Eric W. Biederman457c4cb2007-09-12 12:01:34 +020075#include <net/net_namespace.h>
Robert Olsson19baf832005-06-21 12:43:18 -070076#include <net/ip.h>
77#include <net/protocol.h>
78#include <net/route.h>
79#include <net/tcp.h>
80#include <net/sock.h>
81#include <net/ip_fib.h>
82#include "fib_lookup.h"
83
Robert Olsson06ef9212006-03-20 21:35:01 -080084#define MAX_STAT_DEPTH 32
Robert Olsson19baf832005-06-21 12:43:18 -070085
Alexander Duyck95f60ea2015-01-22 15:51:26 -080086#define KEYLENGTH (8*sizeof(t_key))
87#define KEY_MAX ((t_key)~0)
Robert Olsson19baf832005-06-21 12:43:18 -070088
Robert Olsson19baf832005-06-21 12:43:18 -070089typedef unsigned int t_key;
90
Alexander Duyck64c9b6f2014-12-31 10:55:35 -080091#define IS_TNODE(n) ((n)->bits)
92#define IS_LEAF(n) (!(n)->bits)
Robert Olsson2373ce12005-08-25 13:01:29 -070093
Alexander Duycke9b44012014-12-31 10:56:12 -080094#define get_index(_key, _kv) (((_key) ^ (_kv)->key) >> (_kv)->pos)
Alexander Duyck9f9e6362014-12-31 10:55:54 -080095
Alexander Duyck64c9b6f2014-12-31 10:55:35 -080096struct tnode {
Alexander Duyck37fd30f2014-12-31 10:55:41 -080097 struct rcu_head rcu;
Alexander Duyck41b489f2015-03-04 15:02:33 -080098
99 t_key empty_children; /* KEYLENGTH bits needed */
100 t_key full_children; /* KEYLENGTH bits needed */
101 struct tnode __rcu *parent;
102
103 t_key key;
104 unsigned char pos; /* 2log(KEYLENGTH) bits needed */
105 unsigned char bits; /* 2log(KEYLENGTH) bits needed */
106 unsigned char slen;
Alexander Duyckadaf9812014-12-31 10:55:47 -0800107 union {
Alexander Duyck41b489f2015-03-04 15:02:33 -0800108 /* This list pointer if valid if (pos | bits) == 0 (LEAF) */
Alexander Duyck79e5ad22015-02-25 15:31:51 -0800109 struct hlist_head leaf;
Alexander Duyck41b489f2015-03-04 15:02:33 -0800110 /* This array is valid if (pos | bits) > 0 (TNODE) */
111 struct tnode __rcu *tnode[0];
Alexander Duyckadaf9812014-12-31 10:55:47 -0800112 };
Robert Olsson19baf832005-06-21 12:43:18 -0700113};
114
Alexander Duyck41b489f2015-03-04 15:02:33 -0800115#define TNODE_SIZE(n) offsetof(struct tnode, tnode[n])
116#define LEAF_SIZE TNODE_SIZE(1)
117
Robert Olsson19baf832005-06-21 12:43:18 -0700118#ifdef CONFIG_IP_FIB_TRIE_STATS
119struct trie_use_stats {
120 unsigned int gets;
121 unsigned int backtrack;
122 unsigned int semantic_match_passed;
123 unsigned int semantic_match_miss;
124 unsigned int null_node_hit;
Robert Olsson2f368952005-07-05 15:02:40 -0700125 unsigned int resize_node_skipped;
Robert Olsson19baf832005-06-21 12:43:18 -0700126};
127#endif
128
129struct trie_stat {
130 unsigned int totdepth;
131 unsigned int maxdepth;
132 unsigned int tnodes;
133 unsigned int leaves;
134 unsigned int nullpointers;
Stephen Hemminger93672292008-01-22 21:54:05 -0800135 unsigned int prefixes;
Robert Olsson06ef9212006-03-20 21:35:01 -0800136 unsigned int nodesizes[MAX_STAT_DEPTH];
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700137};
Robert Olsson19baf832005-06-21 12:43:18 -0700138
139struct trie {
Alexander Duyckadaf9812014-12-31 10:55:47 -0800140 struct tnode __rcu *trie;
Robert Olsson19baf832005-06-21 12:43:18 -0700141#ifdef CONFIG_IP_FIB_TRIE_STATS
Alexander Duyck8274a972014-12-31 10:55:29 -0800142 struct trie_use_stats __percpu *stats;
Robert Olsson19baf832005-06-21 12:43:18 -0700143#endif
Robert Olsson19baf832005-06-21 12:43:18 -0700144};
145
Alexander Duyckff181ed2014-12-31 10:56:43 -0800146static void resize(struct trie *t, struct tnode *tn);
Jarek Poplawskic3059472009-07-14 08:33:08 +0000147static size_t tnode_free_size;
148
149/*
150 * synchronize_rcu after call_rcu for that many pages; it should be especially
151 * useful before resizing the root node with PREEMPT_NONE configs; the value was
152 * obtained experimentally, aiming to avoid visible slowdown.
153 */
154static const int sync_pages = 128;
Robert Olsson19baf832005-06-21 12:43:18 -0700155
Christoph Lametere18b8902006-12-06 20:33:20 -0800156static struct kmem_cache *fn_alias_kmem __read_mostly;
Stephen Hemmingerbc3c8c12008-01-22 21:51:50 -0800157static struct kmem_cache *trie_leaf_kmem __read_mostly;
Robert Olsson19baf832005-06-21 12:43:18 -0700158
Alexander Duyck64c9b6f2014-12-31 10:55:35 -0800159/* caller must hold RTNL */
160#define node_parent(n) rtnl_dereference((n)->parent)
Eric Dumazet0a5c0472011-03-31 01:51:35 -0700161
Alexander Duyck64c9b6f2014-12-31 10:55:35 -0800162/* caller must hold RCU read lock or RTNL */
163#define node_parent_rcu(n) rcu_dereference_rtnl((n)->parent)
Eric Dumazet0a5c0472011-03-31 01:51:35 -0700164
Alexander Duyck64c9b6f2014-12-31 10:55:35 -0800165/* wrapper for rcu_assign_pointer */
Alexander Duyckadaf9812014-12-31 10:55:47 -0800166static inline void node_set_parent(struct tnode *n, struct tnode *tp)
Stephen Hemminger06801912007-08-10 15:22:13 -0700167{
Alexander Duyckadaf9812014-12-31 10:55:47 -0800168 if (n)
169 rcu_assign_pointer(n->parent, tp);
Alexander Duyck64c9b6f2014-12-31 10:55:35 -0800170}
171
172#define NODE_INIT_PARENT(n, p) RCU_INIT_POINTER((n)->parent, p)
173
174/* This provides us with the number of children in this node, in the case of a
175 * leaf this will return 0 meaning none of the children are accessible.
176 */
Alexander Duyck98293e82014-12-31 10:56:18 -0800177static inline unsigned long tnode_child_length(const struct tnode *tn)
Alexander Duyck64c9b6f2014-12-31 10:55:35 -0800178{
179 return (1ul << tn->bits) & ~(1ul);
Stephen Hemminger06801912007-08-10 15:22:13 -0700180}
Robert Olsson2373ce12005-08-25 13:01:29 -0700181
Alexander Duyck98293e82014-12-31 10:56:18 -0800182/* caller must hold RTNL */
183static inline struct tnode *tnode_get_child(const struct tnode *tn,
184 unsigned long i)
Robert Olsson19baf832005-06-21 12:43:18 -0700185{
Alexander Duyck41b489f2015-03-04 15:02:33 -0800186 return rtnl_dereference(tn->tnode[i]);
Eric Dumazetb59cfbf2008-01-18 03:31:36 -0800187}
188
Alexander Duyck98293e82014-12-31 10:56:18 -0800189/* caller must hold RCU read lock or RTNL */
190static inline struct tnode *tnode_get_child_rcu(const struct tnode *tn,
191 unsigned long i)
Eric Dumazetb59cfbf2008-01-18 03:31:36 -0800192{
Alexander Duyck41b489f2015-03-04 15:02:33 -0800193 return rcu_dereference_rtnl(tn->tnode[i]);
Robert Olsson19baf832005-06-21 12:43:18 -0700194}
195
Alexander Duycka7e53532015-03-04 15:02:44 -0800196static inline struct fib_table *trie_get_table(struct trie *t)
197{
198 unsigned long *tb_data = (unsigned long *)t;
199
200 return container_of(tb_data, struct fib_table, tb_data[0]);
201}
202
Alexander Duycke9b44012014-12-31 10:56:12 -0800203/* To understand this stuff, an understanding of keys and all their bits is
204 * necessary. Every node in the trie has a key associated with it, but not
205 * all of the bits in that key are significant.
206 *
207 * Consider a node 'n' and its parent 'tp'.
208 *
209 * If n is a leaf, every bit in its key is significant. Its presence is
210 * necessitated by path compression, since during a tree traversal (when
211 * searching for a leaf - unless we are doing an insertion) we will completely
212 * ignore all skipped bits we encounter. Thus we need to verify, at the end of
213 * a potentially successful search, that we have indeed been walking the
214 * correct key path.
215 *
216 * Note that we can never "miss" the correct key in the tree if present by
217 * following the wrong path. Path compression ensures that segments of the key
218 * that are the same for all keys with a given prefix are skipped, but the
219 * skipped part *is* identical for each node in the subtrie below the skipped
220 * bit! trie_insert() in this implementation takes care of that.
221 *
222 * if n is an internal node - a 'tnode' here, the various parts of its key
223 * have many different meanings.
224 *
225 * Example:
226 * _________________________________________________________________
227 * | i | i | i | i | i | i | i | N | N | N | S | S | S | S | S | C |
228 * -----------------------------------------------------------------
229 * 31 30 29 28 27 26 25 24 23 22 21 20 19 18 17 16
230 *
231 * _________________________________________________________________
232 * | C | C | C | u | u | u | u | u | u | u | u | u | u | u | u | u |
233 * -----------------------------------------------------------------
234 * 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
235 *
236 * tp->pos = 22
237 * tp->bits = 3
238 * n->pos = 13
239 * n->bits = 4
240 *
241 * First, let's just ignore the bits that come before the parent tp, that is
242 * the bits from (tp->pos + tp->bits) to 31. They are *known* but at this
243 * point we do not use them for anything.
244 *
245 * The bits from (tp->pos) to (tp->pos + tp->bits - 1) - "N", above - are the
246 * index into the parent's child array. That is, they will be used to find
247 * 'n' among tp's children.
248 *
249 * The bits from (n->pos + n->bits) to (tn->pos - 1) - "S" - are skipped bits
250 * for the node n.
251 *
252 * All the bits we have seen so far are significant to the node n. The rest
253 * of the bits are really not needed or indeed known in n->key.
254 *
255 * The bits from (n->pos) to (n->pos + n->bits - 1) - "C" - are the index into
256 * n's child array, and will of course be different for each child.
257 *
258 * The rest of the bits, from 0 to (n->pos + n->bits), are completely unknown
259 * at this point.
260 */
Robert Olsson19baf832005-06-21 12:43:18 -0700261
Denis V. Lunevf5026fa2007-12-13 09:47:57 -0800262static const int halve_threshold = 25;
263static const int inflate_threshold = 50;
Jarek Poplawski345aa032009-07-07 19:39:16 -0700264static const int halve_threshold_root = 15;
Jens Låås80b71b82009-08-28 23:57:15 -0700265static const int inflate_threshold_root = 30;
Robert Olsson2373ce12005-08-25 13:01:29 -0700266
267static void __alias_free_mem(struct rcu_head *head)
268{
269 struct fib_alias *fa = container_of(head, struct fib_alias, rcu);
270 kmem_cache_free(fn_alias_kmem, fa);
271}
272
273static inline void alias_free_mem_rcu(struct fib_alias *fa)
274{
275 call_rcu(&fa->rcu, __alias_free_mem);
276}
277
Alexander Duyck37fd30f2014-12-31 10:55:41 -0800278#define TNODE_KMALLOC_MAX \
Alexander Duyck41b489f2015-03-04 15:02:33 -0800279 ilog2((PAGE_SIZE - TNODE_SIZE(0)) / sizeof(struct tnode *))
Alexander Duyck1de3d872015-03-04 15:04:46 -0800280#define TNODE_VMALLOC_MAX \
281 ilog2((SIZE_MAX - TNODE_SIZE(0)) / sizeof(struct tnode *))
Alexander Duyck37fd30f2014-12-31 10:55:41 -0800282
283static void __node_free_rcu(struct rcu_head *head)
Robert Olsson2373ce12005-08-25 13:01:29 -0700284{
Alexander Duyckadaf9812014-12-31 10:55:47 -0800285 struct tnode *n = container_of(head, struct tnode, rcu);
Alexander Duyck37fd30f2014-12-31 10:55:41 -0800286
287 if (IS_LEAF(n))
288 kmem_cache_free(trie_leaf_kmem, n);
289 else if (n->bits <= TNODE_KMALLOC_MAX)
290 kfree(n);
291 else
292 vfree(n);
Robert Olsson2373ce12005-08-25 13:01:29 -0700293}
294
Alexander Duyck37fd30f2014-12-31 10:55:41 -0800295#define node_free(n) call_rcu(&n->rcu, __node_free_rcu)
Stephen Hemminger387a5482008-04-10 03:47:34 -0700296
Alexander Duyck1de3d872015-03-04 15:04:46 -0800297static struct tnode *tnode_alloc(int bits)
Robert Olsson2373ce12005-08-25 13:01:29 -0700298{
Alexander Duyck1de3d872015-03-04 15:04:46 -0800299 size_t size;
300
301 /* verify bits is within bounds */
302 if (bits > TNODE_VMALLOC_MAX)
303 return NULL;
304
305 /* determine size and verify it is non-zero and didn't overflow */
306 size = TNODE_SIZE(1ul << bits);
307
Robert Olsson2373ce12005-08-25 13:01:29 -0700308 if (size <= PAGE_SIZE)
Eric Dumazet8d965442008-01-13 22:31:44 -0800309 return kzalloc(size, GFP_KERNEL);
Stephen Hemminger15be75c2008-04-10 02:56:38 -0700310 else
Eric Dumazet7a1c8e52010-11-20 07:46:35 +0000311 return vzalloc(size);
Stephen Hemminger15be75c2008-04-10 02:56:38 -0700312}
Robert Olsson2373ce12005-08-25 13:01:29 -0700313
Alexander Duyck95f60ea2015-01-22 15:51:26 -0800314static inline void empty_child_inc(struct tnode *n)
315{
316 ++n->empty_children ? : ++n->full_children;
317}
318
319static inline void empty_child_dec(struct tnode *n)
320{
321 n->empty_children-- ? : n->full_children--;
322}
323
Alexander Duyckd5d64872015-03-04 15:02:18 -0800324static struct tnode *leaf_new(t_key key, struct fib_alias *fa)
Robert Olsson19baf832005-06-21 12:43:18 -0700325{
Alexander Duyckadaf9812014-12-31 10:55:47 -0800326 struct tnode *l = kmem_cache_alloc(trie_leaf_kmem, GFP_KERNEL);
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700327 if (l) {
Alexander Duyck64c9b6f2014-12-31 10:55:35 -0800328 l->parent = NULL;
329 /* set key and pos to reflect full key value
330 * any trailing zeros in the key should be ignored
331 * as the nodes are searched
332 */
333 l->key = key;
Alexander Duyckd5d64872015-03-04 15:02:18 -0800334 l->slen = fa->fa_slen;
Alexander Duycke9b44012014-12-31 10:56:12 -0800335 l->pos = 0;
Alexander Duyck64c9b6f2014-12-31 10:55:35 -0800336 /* set bits to 0 indicating we are not a tnode */
337 l->bits = 0;
338
Alexander Duyckd5d64872015-03-04 15:02:18 -0800339 /* link leaf to fib alias */
Alexander Duyck79e5ad22015-02-25 15:31:51 -0800340 INIT_HLIST_HEAD(&l->leaf);
Alexander Duyckd5d64872015-03-04 15:02:18 -0800341 hlist_add_head(&fa->fa_list, &l->leaf);
Robert Olsson19baf832005-06-21 12:43:18 -0700342 }
343 return l;
344}
345
Stephen Hemmingera07f5f52008-01-22 21:53:36 -0800346static struct tnode *tnode_new(t_key key, int pos, int bits)
Robert Olsson19baf832005-06-21 12:43:18 -0700347{
Alexander Duyck1de3d872015-03-04 15:04:46 -0800348 struct tnode *tn = tnode_alloc(bits);
Alexander Duyck64c9b6f2014-12-31 10:55:35 -0800349 unsigned int shift = pos + bits;
350
351 /* verify bits and pos their msb bits clear and values are valid */
352 BUG_ON(!bits || (shift > KEYLENGTH));
Robert Olsson19baf832005-06-21 12:43:18 -0700353
Olof Johansson91b9a272005-08-09 20:24:39 -0700354 if (tn) {
Alexander Duyck64c9b6f2014-12-31 10:55:35 -0800355 tn->parent = NULL;
Alexander Duyck5405afd2014-12-31 10:57:08 -0800356 tn->slen = pos;
Robert Olsson19baf832005-06-21 12:43:18 -0700357 tn->pos = pos;
358 tn->bits = bits;
Alexander Duycke9b44012014-12-31 10:56:12 -0800359 tn->key = (shift < KEYLENGTH) ? (key >> shift) << shift : 0;
Alexander Duyck95f60ea2015-01-22 15:51:26 -0800360 if (bits == KEYLENGTH)
361 tn->full_children = 1;
362 else
363 tn->empty_children = 1ul << bits;
Robert Olsson19baf832005-06-21 12:43:18 -0700364 }
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700365
Alexander Duyck41b489f2015-03-04 15:02:33 -0800366 pr_debug("AT %p s=%zu %zu\n", tn, TNODE_SIZE(0),
Alexander Duyckadaf9812014-12-31 10:55:47 -0800367 sizeof(struct tnode *) << bits);
Robert Olsson19baf832005-06-21 12:43:18 -0700368 return tn;
369}
370
Alexander Duycke9b44012014-12-31 10:56:12 -0800371/* Check whether a tnode 'n' is "full", i.e. it is an internal node
Robert Olsson19baf832005-06-21 12:43:18 -0700372 * and no bits are skipped. See discussion in dyntree paper p. 6
373 */
Alexander Duyckadaf9812014-12-31 10:55:47 -0800374static inline int tnode_full(const struct tnode *tn, const struct tnode *n)
Robert Olsson19baf832005-06-21 12:43:18 -0700375{
Alexander Duycke9b44012014-12-31 10:56:12 -0800376 return n && ((n->pos + n->bits) == tn->pos) && IS_TNODE(n);
Robert Olsson19baf832005-06-21 12:43:18 -0700377}
378
Alexander Duyckff181ed2014-12-31 10:56:43 -0800379/* Add a child at position i overwriting the old value.
380 * Update the value of full_children and empty_children.
381 */
382static void put_child(struct tnode *tn, unsigned long i, struct tnode *n)
Robert Olsson19baf832005-06-21 12:43:18 -0700383{
Alexander Duyck21d1f112014-12-31 10:57:02 -0800384 struct tnode *chi = tnode_get_child(tn, i);
Alexander Duyckff181ed2014-12-31 10:56:43 -0800385 int isfull, wasfull;
Robert Olsson19baf832005-06-21 12:43:18 -0700386
Alexander Duyck98293e82014-12-31 10:56:18 -0800387 BUG_ON(i >= tnode_child_length(tn));
Stephen Hemminger0c7770c2005-08-23 21:59:41 -0700388
Alexander Duyck95f60ea2015-01-22 15:51:26 -0800389 /* update emptyChildren, overflow into fullChildren */
Robert Olsson19baf832005-06-21 12:43:18 -0700390 if (n == NULL && chi != NULL)
Alexander Duyck95f60ea2015-01-22 15:51:26 -0800391 empty_child_inc(tn);
392 if (n != NULL && chi == NULL)
393 empty_child_dec(tn);
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700394
Robert Olsson19baf832005-06-21 12:43:18 -0700395 /* update fullChildren */
Alexander Duyckff181ed2014-12-31 10:56:43 -0800396 wasfull = tnode_full(tn, chi);
Robert Olsson19baf832005-06-21 12:43:18 -0700397 isfull = tnode_full(tn, n);
Alexander Duyckff181ed2014-12-31 10:56:43 -0800398
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700399 if (wasfull && !isfull)
Robert Olsson19baf832005-06-21 12:43:18 -0700400 tn->full_children--;
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700401 else if (!wasfull && isfull)
Robert Olsson19baf832005-06-21 12:43:18 -0700402 tn->full_children++;
Olof Johansson91b9a272005-08-09 20:24:39 -0700403
Alexander Duyck5405afd2014-12-31 10:57:08 -0800404 if (n && (tn->slen < n->slen))
405 tn->slen = n->slen;
406
Alexander Duyck41b489f2015-03-04 15:02:33 -0800407 rcu_assign_pointer(tn->tnode[i], n);
Robert Olsson19baf832005-06-21 12:43:18 -0700408}
409
Alexander Duyck69fa57b2015-01-22 15:51:14 -0800410static void update_children(struct tnode *tn)
411{
412 unsigned long i;
413
414 /* update all of the child parent pointers */
415 for (i = tnode_child_length(tn); i;) {
416 struct tnode *inode = tnode_get_child(tn, --i);
417
418 if (!inode)
419 continue;
420
421 /* Either update the children of a tnode that
422 * already belongs to us or update the child
423 * to point to ourselves.
424 */
425 if (node_parent(inode) == tn)
426 update_children(inode);
427 else
428 node_set_parent(inode, tn);
429 }
430}
431
432static inline void put_child_root(struct tnode *tp, struct trie *t,
433 t_key key, struct tnode *n)
Alexander Duyck836a0122014-12-31 10:56:06 -0800434{
435 if (tp)
436 put_child(tp, get_index(key, tp), n);
437 else
438 rcu_assign_pointer(t->trie, n);
439}
440
Alexander Duyckfc86a932014-12-31 10:56:49 -0800441static inline void tnode_free_init(struct tnode *tn)
Eric Dumazet0a5c0472011-03-31 01:51:35 -0700442{
Alexander Duyckfc86a932014-12-31 10:56:49 -0800443 tn->rcu.next = NULL;
444}
Eric Dumazet0a5c0472011-03-31 01:51:35 -0700445
Alexander Duyckfc86a932014-12-31 10:56:49 -0800446static inline void tnode_free_append(struct tnode *tn, struct tnode *n)
447{
448 n->rcu.next = tn->rcu.next;
449 tn->rcu.next = &n->rcu;
450}
451
452static void tnode_free(struct tnode *tn)
453{
454 struct callback_head *head = &tn->rcu;
455
456 while (head) {
457 head = head->next;
Alexander Duyck41b489f2015-03-04 15:02:33 -0800458 tnode_free_size += TNODE_SIZE(1ul << tn->bits);
Alexander Duyckfc86a932014-12-31 10:56:49 -0800459 node_free(tn);
460
461 tn = container_of(head, struct tnode, rcu);
Eric Dumazet0a5c0472011-03-31 01:51:35 -0700462 }
Alexander Duyckfc86a932014-12-31 10:56:49 -0800463
464 if (tnode_free_size >= PAGE_SIZE * sync_pages) {
465 tnode_free_size = 0;
466 synchronize_rcu();
467 }
Eric Dumazet0a5c0472011-03-31 01:51:35 -0700468}
469
Alexander Duyck69fa57b2015-01-22 15:51:14 -0800470static void replace(struct trie *t, struct tnode *oldtnode, struct tnode *tn)
471{
472 struct tnode *tp = node_parent(oldtnode);
473 unsigned long i;
474
475 /* setup the parent pointer out of and back into this node */
476 NODE_INIT_PARENT(tn, tp);
477 put_child_root(tp, t, tn->key, tn);
478
479 /* update all of the child parent pointers */
480 update_children(tn);
481
482 /* all pointers should be clean so we are done */
483 tnode_free(oldtnode);
484
485 /* resize children now that oldtnode is freed */
486 for (i = tnode_child_length(tn); i;) {
487 struct tnode *inode = tnode_get_child(tn, --i);
488
489 /* resize child node */
490 if (tnode_full(tn, inode))
491 resize(t, inode);
492 }
493}
494
Alexander Duyckff181ed2014-12-31 10:56:43 -0800495static int inflate(struct trie *t, struct tnode *oldtnode)
Robert Olsson19baf832005-06-21 12:43:18 -0700496{
Alexander Duyck69fa57b2015-01-22 15:51:14 -0800497 struct tnode *tn;
498 unsigned long i;
Alexander Duycke9b44012014-12-31 10:56:12 -0800499 t_key m;
Robert Olsson19baf832005-06-21 12:43:18 -0700500
Stephen Hemminger0c7770c2005-08-23 21:59:41 -0700501 pr_debug("In inflate\n");
Robert Olsson19baf832005-06-21 12:43:18 -0700502
Alexander Duycke9b44012014-12-31 10:56:12 -0800503 tn = tnode_new(oldtnode->key, oldtnode->pos - 1, oldtnode->bits + 1);
Stephen Hemminger0c7770c2005-08-23 21:59:41 -0700504 if (!tn)
Alexander Duyckff181ed2014-12-31 10:56:43 -0800505 return -ENOMEM;
Robert Olsson2f368952005-07-05 15:02:40 -0700506
Alexander Duyck69fa57b2015-01-22 15:51:14 -0800507 /* prepare oldtnode to be freed */
508 tnode_free_init(oldtnode);
509
Alexander Duyck12c081a2014-12-31 10:56:55 -0800510 /* Assemble all of the pointers in our cluster, in this case that
511 * represents all of the pointers out of our allocated nodes that
512 * point to existing tnodes and the links between our allocated
513 * nodes.
Robert Olsson2f368952005-07-05 15:02:40 -0700514 */
Alexander Duyck12c081a2014-12-31 10:56:55 -0800515 for (i = tnode_child_length(oldtnode), m = 1u << tn->pos; i;) {
Alexander Duyck69fa57b2015-01-22 15:51:14 -0800516 struct tnode *inode = tnode_get_child(oldtnode, --i);
517 struct tnode *node0, *node1;
518 unsigned long j, k;
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700519
Robert Olsson19baf832005-06-21 12:43:18 -0700520 /* An empty child */
Alexander Duyckadaf9812014-12-31 10:55:47 -0800521 if (inode == NULL)
Robert Olsson19baf832005-06-21 12:43:18 -0700522 continue;
523
524 /* A leaf or an internal node with skipped bits */
Alexander Duyckadaf9812014-12-31 10:55:47 -0800525 if (!tnode_full(oldtnode, inode)) {
Alexander Duycke9b44012014-12-31 10:56:12 -0800526 put_child(tn, get_index(inode->key, tn), inode);
Robert Olsson19baf832005-06-21 12:43:18 -0700527 continue;
528 }
529
Alexander Duyck69fa57b2015-01-22 15:51:14 -0800530 /* drop the node in the old tnode free list */
531 tnode_free_append(oldtnode, inode);
532
Robert Olsson19baf832005-06-21 12:43:18 -0700533 /* An internal node with two children */
Robert Olsson19baf832005-06-21 12:43:18 -0700534 if (inode->bits == 1) {
Alexander Duyck12c081a2014-12-31 10:56:55 -0800535 put_child(tn, 2 * i + 1, tnode_get_child(inode, 1));
536 put_child(tn, 2 * i, tnode_get_child(inode, 0));
Olof Johansson91b9a272005-08-09 20:24:39 -0700537 continue;
Robert Olsson19baf832005-06-21 12:43:18 -0700538 }
539
Olof Johansson91b9a272005-08-09 20:24:39 -0700540 /* We will replace this node 'inode' with two new
Alexander Duyck12c081a2014-12-31 10:56:55 -0800541 * ones, 'node0' and 'node1', each with half of the
Olof Johansson91b9a272005-08-09 20:24:39 -0700542 * original children. The two new nodes will have
543 * a position one bit further down the key and this
544 * means that the "significant" part of their keys
545 * (see the discussion near the top of this file)
546 * will differ by one bit, which will be "0" in
Alexander Duyck12c081a2014-12-31 10:56:55 -0800547 * node0's key and "1" in node1's key. Since we are
Olof Johansson91b9a272005-08-09 20:24:39 -0700548 * moving the key position by one step, the bit that
549 * we are moving away from - the bit at position
Alexander Duyck12c081a2014-12-31 10:56:55 -0800550 * (tn->pos) - is the one that will differ between
551 * node0 and node1. So... we synthesize that bit in the
552 * two new keys.
Olof Johansson91b9a272005-08-09 20:24:39 -0700553 */
Alexander Duyck12c081a2014-12-31 10:56:55 -0800554 node1 = tnode_new(inode->key | m, inode->pos, inode->bits - 1);
555 if (!node1)
556 goto nomem;
Alexander Duyck69fa57b2015-01-22 15:51:14 -0800557 node0 = tnode_new(inode->key, inode->pos, inode->bits - 1);
Robert Olsson19baf832005-06-21 12:43:18 -0700558
Alexander Duyck69fa57b2015-01-22 15:51:14 -0800559 tnode_free_append(tn, node1);
Alexander Duyck12c081a2014-12-31 10:56:55 -0800560 if (!node0)
561 goto nomem;
562 tnode_free_append(tn, node0);
Robert Olsson19baf832005-06-21 12:43:18 -0700563
Alexander Duyck12c081a2014-12-31 10:56:55 -0800564 /* populate child pointers in new nodes */
565 for (k = tnode_child_length(inode), j = k / 2; j;) {
566 put_child(node1, --j, tnode_get_child(inode, --k));
567 put_child(node0, j, tnode_get_child(inode, j));
568 put_child(node1, --j, tnode_get_child(inode, --k));
569 put_child(node0, j, tnode_get_child(inode, j));
Robert Olsson19baf832005-06-21 12:43:18 -0700570 }
Alexander Duyckff181ed2014-12-31 10:56:43 -0800571
Alexander Duyck12c081a2014-12-31 10:56:55 -0800572 /* link new nodes to parent */
573 NODE_INIT_PARENT(node1, tn);
574 NODE_INIT_PARENT(node0, tn);
Olof Johansson91b9a272005-08-09 20:24:39 -0700575
Alexander Duyck12c081a2014-12-31 10:56:55 -0800576 /* link parent to nodes */
577 put_child(tn, 2 * i + 1, node1);
578 put_child(tn, 2 * i, node0);
Robert Olsson19baf832005-06-21 12:43:18 -0700579 }
Alexander Duyckff181ed2014-12-31 10:56:43 -0800580
Alexander Duyck69fa57b2015-01-22 15:51:14 -0800581 /* setup the parent pointers into and out of this node */
582 replace(t, oldtnode, tn);
Alexander Duyckfc86a932014-12-31 10:56:49 -0800583
Alexander Duyckff181ed2014-12-31 10:56:43 -0800584 return 0;
Robert Olsson2f80b3c2005-08-09 20:25:06 -0700585nomem:
Alexander Duyckfc86a932014-12-31 10:56:49 -0800586 /* all pointers should be clean so we are done */
587 tnode_free(tn);
Alexander Duyckff181ed2014-12-31 10:56:43 -0800588 return -ENOMEM;
Robert Olsson19baf832005-06-21 12:43:18 -0700589}
590
Alexander Duyckff181ed2014-12-31 10:56:43 -0800591static int halve(struct trie *t, struct tnode *oldtnode)
Robert Olsson19baf832005-06-21 12:43:18 -0700592{
Alexander Duyck69fa57b2015-01-22 15:51:14 -0800593 struct tnode *tn;
Alexander Duyck12c081a2014-12-31 10:56:55 -0800594 unsigned long i;
Robert Olsson19baf832005-06-21 12:43:18 -0700595
Stephen Hemminger0c7770c2005-08-23 21:59:41 -0700596 pr_debug("In halve\n");
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700597
Alexander Duycke9b44012014-12-31 10:56:12 -0800598 tn = tnode_new(oldtnode->key, oldtnode->pos + 1, oldtnode->bits - 1);
Robert Olsson2f80b3c2005-08-09 20:25:06 -0700599 if (!tn)
Alexander Duyckff181ed2014-12-31 10:56:43 -0800600 return -ENOMEM;
Robert Olsson2f368952005-07-05 15:02:40 -0700601
Alexander Duyck69fa57b2015-01-22 15:51:14 -0800602 /* prepare oldtnode to be freed */
603 tnode_free_init(oldtnode);
604
Alexander Duyck12c081a2014-12-31 10:56:55 -0800605 /* Assemble all of the pointers in our cluster, in this case that
606 * represents all of the pointers out of our allocated nodes that
607 * point to existing tnodes and the links between our allocated
608 * nodes.
Robert Olsson2f368952005-07-05 15:02:40 -0700609 */
Alexander Duyck12c081a2014-12-31 10:56:55 -0800610 for (i = tnode_child_length(oldtnode); i;) {
Alexander Duyck69fa57b2015-01-22 15:51:14 -0800611 struct tnode *node1 = tnode_get_child(oldtnode, --i);
612 struct tnode *node0 = tnode_get_child(oldtnode, --i);
613 struct tnode *inode;
Robert Olsson2f368952005-07-05 15:02:40 -0700614
Alexander Duyck12c081a2014-12-31 10:56:55 -0800615 /* At least one of the children is empty */
616 if (!node1 || !node0) {
617 put_child(tn, i / 2, node1 ? : node0);
618 continue;
Robert Olsson2f368952005-07-05 15:02:40 -0700619 }
Robert Olsson2f368952005-07-05 15:02:40 -0700620
Alexander Duyck12c081a2014-12-31 10:56:55 -0800621 /* Two nonempty children */
622 inode = tnode_new(node0->key, oldtnode->pos, 1);
623 if (!inode) {
624 tnode_free(tn);
625 return -ENOMEM;
626 }
627 tnode_free_append(tn, inode);
628
629 /* initialize pointers out of node */
630 put_child(inode, 1, node1);
631 put_child(inode, 0, node0);
632 NODE_INIT_PARENT(inode, tn);
633
634 /* link parent to node */
635 put_child(tn, i / 2, inode);
Robert Olsson2f368952005-07-05 15:02:40 -0700636 }
Robert Olsson19baf832005-06-21 12:43:18 -0700637
Alexander Duyck69fa57b2015-01-22 15:51:14 -0800638 /* setup the parent pointers into and out of this node */
639 replace(t, oldtnode, tn);
Alexander Duyckff181ed2014-12-31 10:56:43 -0800640
641 return 0;
Robert Olsson19baf832005-06-21 12:43:18 -0700642}
643
Alexander Duyck95f60ea2015-01-22 15:51:26 -0800644static void collapse(struct trie *t, struct tnode *oldtnode)
645{
646 struct tnode *n, *tp;
647 unsigned long i;
648
649 /* scan the tnode looking for that one child that might still exist */
650 for (n = NULL, i = tnode_child_length(oldtnode); !n && i;)
651 n = tnode_get_child(oldtnode, --i);
652
653 /* compress one level */
654 tp = node_parent(oldtnode);
655 put_child_root(tp, t, oldtnode->key, n);
656 node_set_parent(n, tp);
657
658 /* drop dead node */
659 node_free(oldtnode);
660}
661
Alexander Duyck5405afd2014-12-31 10:57:08 -0800662static unsigned char update_suffix(struct tnode *tn)
663{
664 unsigned char slen = tn->pos;
665 unsigned long stride, i;
666
667 /* search though the list of children looking for nodes that might
668 * have a suffix greater than the one we currently have. This is
669 * why we start with a stride of 2 since a stride of 1 would
670 * represent the nodes with suffix length equal to tn->pos
671 */
672 for (i = 0, stride = 0x2ul ; i < tnode_child_length(tn); i += stride) {
673 struct tnode *n = tnode_get_child(tn, i);
674
675 if (!n || (n->slen <= slen))
676 continue;
677
678 /* update stride and slen based on new value */
679 stride <<= (n->slen - slen);
680 slen = n->slen;
681 i &= ~(stride - 1);
682
683 /* if slen covers all but the last bit we can stop here
684 * there will be nothing longer than that since only node
685 * 0 and 1 << (bits - 1) could have that as their suffix
686 * length.
687 */
688 if ((slen + 1) >= (tn->pos + tn->bits))
689 break;
690 }
691
692 tn->slen = slen;
693
694 return slen;
695}
696
Alexander Duyckf05a4812014-12-31 10:56:37 -0800697/* From "Implementing a dynamic compressed trie" by Stefan Nilsson of
698 * the Helsinki University of Technology and Matti Tikkanen of Nokia
699 * Telecommunications, page 6:
700 * "A node is doubled if the ratio of non-empty children to all
701 * children in the *doubled* node is at least 'high'."
702 *
703 * 'high' in this instance is the variable 'inflate_threshold'. It
704 * is expressed as a percentage, so we multiply it with
705 * tnode_child_length() and instead of multiplying by 2 (since the
706 * child array will be doubled by inflate()) and multiplying
707 * the left-hand side by 100 (to handle the percentage thing) we
708 * multiply the left-hand side by 50.
709 *
710 * The left-hand side may look a bit weird: tnode_child_length(tn)
711 * - tn->empty_children is of course the number of non-null children
712 * in the current node. tn->full_children is the number of "full"
713 * children, that is non-null tnodes with a skip value of 0.
714 * All of those will be doubled in the resulting inflated tnode, so
715 * we just count them one extra time here.
716 *
717 * A clearer way to write this would be:
718 *
719 * to_be_doubled = tn->full_children;
720 * not_to_be_doubled = tnode_child_length(tn) - tn->empty_children -
721 * tn->full_children;
722 *
723 * new_child_length = tnode_child_length(tn) * 2;
724 *
725 * new_fill_factor = 100 * (not_to_be_doubled + 2*to_be_doubled) /
726 * new_child_length;
727 * if (new_fill_factor >= inflate_threshold)
728 *
729 * ...and so on, tho it would mess up the while () loop.
730 *
731 * anyway,
732 * 100 * (not_to_be_doubled + 2*to_be_doubled) / new_child_length >=
733 * inflate_threshold
734 *
735 * avoid a division:
736 * 100 * (not_to_be_doubled + 2*to_be_doubled) >=
737 * inflate_threshold * new_child_length
738 *
739 * expand not_to_be_doubled and to_be_doubled, and shorten:
740 * 100 * (tnode_child_length(tn) - tn->empty_children +
741 * tn->full_children) >= inflate_threshold * new_child_length
742 *
743 * expand new_child_length:
744 * 100 * (tnode_child_length(tn) - tn->empty_children +
745 * tn->full_children) >=
746 * inflate_threshold * tnode_child_length(tn) * 2
747 *
748 * shorten again:
749 * 50 * (tn->full_children + tnode_child_length(tn) -
750 * tn->empty_children) >= inflate_threshold *
751 * tnode_child_length(tn)
752 *
753 */
Alexander Duyckff181ed2014-12-31 10:56:43 -0800754static bool should_inflate(const struct tnode *tp, const struct tnode *tn)
Alexander Duyckf05a4812014-12-31 10:56:37 -0800755{
756 unsigned long used = tnode_child_length(tn);
757 unsigned long threshold = used;
758
759 /* Keep root node larger */
Alexander Duyckff181ed2014-12-31 10:56:43 -0800760 threshold *= tp ? inflate_threshold : inflate_threshold_root;
Alexander Duyckf05a4812014-12-31 10:56:37 -0800761 used -= tn->empty_children;
Alexander Duyck95f60ea2015-01-22 15:51:26 -0800762 used += tn->full_children;
Alexander Duyckf05a4812014-12-31 10:56:37 -0800763
Alexander Duyck95f60ea2015-01-22 15:51:26 -0800764 /* if bits == KEYLENGTH then pos = 0, and will fail below */
765
766 return (used > 1) && tn->pos && ((50 * used) >= threshold);
Alexander Duyckf05a4812014-12-31 10:56:37 -0800767}
768
Alexander Duyckff181ed2014-12-31 10:56:43 -0800769static bool should_halve(const struct tnode *tp, const struct tnode *tn)
Alexander Duyckf05a4812014-12-31 10:56:37 -0800770{
771 unsigned long used = tnode_child_length(tn);
772 unsigned long threshold = used;
773
774 /* Keep root node larger */
Alexander Duyckff181ed2014-12-31 10:56:43 -0800775 threshold *= tp ? halve_threshold : halve_threshold_root;
Alexander Duyckf05a4812014-12-31 10:56:37 -0800776 used -= tn->empty_children;
777
Alexander Duyck95f60ea2015-01-22 15:51:26 -0800778 /* if bits == KEYLENGTH then used = 100% on wrap, and will fail below */
779
780 return (used > 1) && (tn->bits > 1) && ((100 * used) < threshold);
781}
782
783static bool should_collapse(const struct tnode *tn)
784{
785 unsigned long used = tnode_child_length(tn);
786
787 used -= tn->empty_children;
788
789 /* account for bits == KEYLENGTH case */
790 if ((tn->bits == KEYLENGTH) && tn->full_children)
791 used -= KEY_MAX;
792
793 /* One child or none, time to drop us from the trie */
794 return used < 2;
Alexander Duyckf05a4812014-12-31 10:56:37 -0800795}
796
Alexander Duyckcf3637b2014-12-31 10:56:31 -0800797#define MAX_WORK 10
Alexander Duyckff181ed2014-12-31 10:56:43 -0800798static void resize(struct trie *t, struct tnode *tn)
Alexander Duyckcf3637b2014-12-31 10:56:31 -0800799{
Alexander Duyck95f60ea2015-01-22 15:51:26 -0800800 struct tnode *tp = node_parent(tn);
Alexander Duyckff181ed2014-12-31 10:56:43 -0800801 struct tnode __rcu **cptr;
Alexander Duycka80e89d2015-01-22 15:51:20 -0800802 int max_work = MAX_WORK;
Alexander Duyckcf3637b2014-12-31 10:56:31 -0800803
Alexander Duyckcf3637b2014-12-31 10:56:31 -0800804 pr_debug("In tnode_resize %p inflate_threshold=%d threshold=%d\n",
805 tn, inflate_threshold, halve_threshold);
806
Alexander Duyckff181ed2014-12-31 10:56:43 -0800807 /* track the tnode via the pointer from the parent instead of
808 * doing it ourselves. This way we can let RCU fully do its
809 * thing without us interfering
810 */
Alexander Duyck41b489f2015-03-04 15:02:33 -0800811 cptr = tp ? &tp->tnode[get_index(tn->key, tp)] : &t->trie;
Alexander Duyckff181ed2014-12-31 10:56:43 -0800812 BUG_ON(tn != rtnl_dereference(*cptr));
813
Alexander Duyckf05a4812014-12-31 10:56:37 -0800814 /* Double as long as the resulting node has a number of
Alexander Duyckcf3637b2014-12-31 10:56:31 -0800815 * nonempty nodes that are above the threshold.
816 */
Alexander Duycka80e89d2015-01-22 15:51:20 -0800817 while (should_inflate(tp, tn) && max_work) {
Alexander Duyckff181ed2014-12-31 10:56:43 -0800818 if (inflate(t, tn)) {
Alexander Duyckcf3637b2014-12-31 10:56:31 -0800819#ifdef CONFIG_IP_FIB_TRIE_STATS
820 this_cpu_inc(t->stats->resize_node_skipped);
821#endif
822 break;
823 }
Alexander Duyckff181ed2014-12-31 10:56:43 -0800824
Alexander Duycka80e89d2015-01-22 15:51:20 -0800825 max_work--;
Alexander Duyckff181ed2014-12-31 10:56:43 -0800826 tn = rtnl_dereference(*cptr);
Alexander Duyckcf3637b2014-12-31 10:56:31 -0800827 }
828
829 /* Return if at least one inflate is run */
830 if (max_work != MAX_WORK)
Alexander Duyckff181ed2014-12-31 10:56:43 -0800831 return;
Alexander Duyckcf3637b2014-12-31 10:56:31 -0800832
Alexander Duyckf05a4812014-12-31 10:56:37 -0800833 /* Halve as long as the number of empty children in this
Alexander Duyckcf3637b2014-12-31 10:56:31 -0800834 * node is above threshold.
835 */
Alexander Duycka80e89d2015-01-22 15:51:20 -0800836 while (should_halve(tp, tn) && max_work) {
Alexander Duyckff181ed2014-12-31 10:56:43 -0800837 if (halve(t, tn)) {
Alexander Duyckcf3637b2014-12-31 10:56:31 -0800838#ifdef CONFIG_IP_FIB_TRIE_STATS
839 this_cpu_inc(t->stats->resize_node_skipped);
840#endif
841 break;
842 }
Alexander Duyckcf3637b2014-12-31 10:56:31 -0800843
Alexander Duycka80e89d2015-01-22 15:51:20 -0800844 max_work--;
Alexander Duyckff181ed2014-12-31 10:56:43 -0800845 tn = rtnl_dereference(*cptr);
846 }
Alexander Duyckcf3637b2014-12-31 10:56:31 -0800847
848 /* Only one child remains */
Alexander Duyck95f60ea2015-01-22 15:51:26 -0800849 if (should_collapse(tn)) {
850 collapse(t, tn);
Alexander Duyck5405afd2014-12-31 10:57:08 -0800851 return;
852 }
853
854 /* Return if at least one deflate was run */
855 if (max_work != MAX_WORK)
856 return;
857
858 /* push the suffix length to the parent node */
859 if (tn->slen > tn->pos) {
860 unsigned char slen = update_suffix(tn);
861
862 if (tp && (slen > tp->slen))
863 tp->slen = slen;
Alexander Duyckcf3637b2014-12-31 10:56:31 -0800864 }
Alexander Duyckcf3637b2014-12-31 10:56:31 -0800865}
866
Alexander Duyckd5d64872015-03-04 15:02:18 -0800867static void leaf_pull_suffix(struct tnode *tp, struct tnode *l)
Robert Olsson19baf832005-06-21 12:43:18 -0700868{
Alexander Duyck5405afd2014-12-31 10:57:08 -0800869 while (tp && (tp->slen > tp->pos) && (tp->slen > l->slen)) {
870 if (update_suffix(tp) > l->slen)
871 break;
872 tp = node_parent(tp);
873 }
874}
875
Alexander Duyckd5d64872015-03-04 15:02:18 -0800876static void leaf_push_suffix(struct tnode *tn, struct tnode *l)
Alexander Duyck5405afd2014-12-31 10:57:08 -0800877{
Alexander Duyck5405afd2014-12-31 10:57:08 -0800878 /* if this is a new leaf then tn will be NULL and we can sort
879 * out parent suffix lengths as a part of trie_rebalance
880 */
881 while (tn && (tn->slen < l->slen)) {
882 tn->slen = l->slen;
883 tn = node_parent(tn);
884 }
885}
886
Robert Olsson2373ce12005-08-25 13:01:29 -0700887/* rcu_read_lock needs to be hold by caller from readside */
Alexander Duyckd4a975e2015-03-04 15:01:59 -0800888static struct tnode *fib_find_node(struct trie *t, struct tnode **tn, u32 key)
Robert Olsson19baf832005-06-21 12:43:18 -0700889{
Alexander Duyckd4a975e2015-03-04 15:01:59 -0800890 struct tnode *pn = NULL, *n = rcu_dereference_rtnl(t->trie);
Robert Olsson19baf832005-06-21 12:43:18 -0700891
Alexander Duyck939afb02014-12-31 10:56:00 -0800892 while (n) {
893 unsigned long index = get_index(key, n);
894
895 /* This bit of code is a bit tricky but it combines multiple
896 * checks into a single check. The prefix consists of the
897 * prefix plus zeros for the bits in the cindex. The index
898 * is the difference between the key and this value. From
899 * this we can actually derive several pieces of data.
Alexander Duyckd4a975e2015-03-04 15:01:59 -0800900 * if (index >= (1ul << bits))
Alexander Duyck939afb02014-12-31 10:56:00 -0800901 * we have a mismatch in skip bits and failed
Alexander Duyckb3832112015-01-22 15:51:08 -0800902 * else
903 * we know the value is cindex
Alexander Duyckd4a975e2015-03-04 15:01:59 -0800904 *
905 * This check is safe even if bits == KEYLENGTH due to the
906 * fact that we can only allocate a node with 32 bits if a
907 * long is greater than 32 bits.
Alexander Duyck939afb02014-12-31 10:56:00 -0800908 */
Alexander Duyckd4a975e2015-03-04 15:01:59 -0800909 if (index >= (1ul << n->bits)) {
910 n = NULL;
911 break;
912 }
Alexander Duyck939afb02014-12-31 10:56:00 -0800913
914 /* we have found a leaf. Prefixes have already been compared */
915 if (IS_LEAF(n))
Robert Olsson19baf832005-06-21 12:43:18 -0700916 break;
Alexander Duyck939afb02014-12-31 10:56:00 -0800917
Alexander Duyckd4a975e2015-03-04 15:01:59 -0800918 pn = n;
Alexander Duyck21d1f112014-12-31 10:57:02 -0800919 n = tnode_get_child_rcu(n, index);
Robert Olsson19baf832005-06-21 12:43:18 -0700920 }
Robert Olsson19baf832005-06-21 12:43:18 -0700921
Alexander Duyckd4a975e2015-03-04 15:01:59 -0800922 *tn = pn;
923
Alexander Duyck939afb02014-12-31 10:56:00 -0800924 return n;
Robert Olsson19baf832005-06-21 12:43:18 -0700925}
926
Alexander Duyck02525362015-01-22 15:51:39 -0800927/* Return the first fib alias matching TOS with
928 * priority less than or equal to PRIO.
929 */
Alexander Duyck79e5ad22015-02-25 15:31:51 -0800930static struct fib_alias *fib_find_alias(struct hlist_head *fah, u8 slen,
931 u8 tos, u32 prio)
Alexander Duyck02525362015-01-22 15:51:39 -0800932{
933 struct fib_alias *fa;
934
935 if (!fah)
936 return NULL;
937
Alexander Duyck56315f92015-02-25 15:31:31 -0800938 hlist_for_each_entry(fa, fah, fa_list) {
Alexander Duyck79e5ad22015-02-25 15:31:51 -0800939 if (fa->fa_slen < slen)
940 continue;
941 if (fa->fa_slen != slen)
942 break;
Alexander Duyck02525362015-01-22 15:51:39 -0800943 if (fa->fa_tos > tos)
944 continue;
945 if (fa->fa_info->fib_priority >= prio || fa->fa_tos < tos)
946 return fa;
947 }
948
949 return NULL;
950}
951
Jarek Poplawski7b855762009-06-18 00:28:51 -0700952static void trie_rebalance(struct trie *t, struct tnode *tn)
Robert Olsson19baf832005-06-21 12:43:18 -0700953{
Stephen Hemminger06801912007-08-10 15:22:13 -0700954 struct tnode *tp;
Robert Olsson19baf832005-06-21 12:43:18 -0700955
Alexander Duyckd5d64872015-03-04 15:02:18 -0800956 while (tn) {
957 tp = node_parent(tn);
Alexander Duyckff181ed2014-12-31 10:56:43 -0800958 resize(t, tn);
Stephen Hemminger06801912007-08-10 15:22:13 -0700959 tn = tp;
Robert Olsson19baf832005-06-21 12:43:18 -0700960 }
Robert Olsson19baf832005-06-21 12:43:18 -0700961}
962
Robert Olsson2373ce12005-08-25 13:01:29 -0700963/* only used from updater-side */
Alexander Duyckd5d64872015-03-04 15:02:18 -0800964static int fib_insert_node(struct trie *t, struct tnode *tp,
965 struct fib_alias *new, t_key key)
Robert Olsson19baf832005-06-21 12:43:18 -0700966{
Alexander Duyckd5d64872015-03-04 15:02:18 -0800967 struct tnode *n, *l;
Alexander Duyck836a0122014-12-31 10:56:06 -0800968
Alexander Duyckd5d64872015-03-04 15:02:18 -0800969 l = leaf_new(key, new);
Alexander Duyck79e5ad22015-02-25 15:31:51 -0800970 if (!l)
Alexander Duyckd5d64872015-03-04 15:02:18 -0800971 return -ENOMEM;
972
973 /* retrieve child from parent node */
974 if (tp)
975 n = tnode_get_child(tp, get_index(key, tp));
976 else
977 n = rcu_dereference_rtnl(t->trie);
Alexander Duyck836a0122014-12-31 10:56:06 -0800978
979 /* Case 2: n is a LEAF or a TNODE and the key doesn't match.
980 *
981 * Add a new tnode here
982 * first tnode need some special handling
983 * leaves us in position for handling as case 3
984 */
985 if (n) {
986 struct tnode *tn;
Alexander Duyck836a0122014-12-31 10:56:06 -0800987
Alexander Duycke9b44012014-12-31 10:56:12 -0800988 tn = tnode_new(key, __fls(key ^ n->key), 1);
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700989 if (!tn) {
Alexander Duyck37fd30f2014-12-31 10:55:41 -0800990 node_free(l);
Alexander Duyckd5d64872015-03-04 15:02:18 -0800991 return -ENOMEM;
Olof Johansson91b9a272005-08-09 20:24:39 -0700992 }
993
Alexander Duyck836a0122014-12-31 10:56:06 -0800994 /* initialize routes out of node */
995 NODE_INIT_PARENT(tn, tp);
996 put_child(tn, get_index(key, tn) ^ 1, n);
Robert Olsson19baf832005-06-21 12:43:18 -0700997
Alexander Duyck836a0122014-12-31 10:56:06 -0800998 /* start adding routes into the node */
999 put_child_root(tp, t, key, tn);
1000 node_set_parent(n, tn);
Robert Olsson19baf832005-06-21 12:43:18 -07001001
Alexander Duyck836a0122014-12-31 10:56:06 -08001002 /* parent now has a NULL spot where the leaf can go */
Alexander Duycke962f302014-12-10 21:49:22 -08001003 tp = tn;
Robert Olsson19baf832005-06-21 12:43:18 -07001004 }
Olof Johansson91b9a272005-08-09 20:24:39 -07001005
Alexander Duyck836a0122014-12-31 10:56:06 -08001006 /* Case 3: n is NULL, and will just insert a new leaf */
Alexander Duyckd5d64872015-03-04 15:02:18 -08001007 NODE_INIT_PARENT(l, tp);
1008 put_child_root(tp, t, key, l);
1009 trie_rebalance(t, tp);
Olof Johansson91b9a272005-08-09 20:24:39 -07001010
Alexander Duyckd5d64872015-03-04 15:02:18 -08001011 return 0;
Robert Olsson19baf832005-06-21 12:43:18 -07001012}
1013
Alexander Duyckd5d64872015-03-04 15:02:18 -08001014static int fib_insert_alias(struct trie *t, struct tnode *tp,
1015 struct tnode *l, struct fib_alias *new,
1016 struct fib_alias *fa, t_key key)
1017{
1018 if (!l)
1019 return fib_insert_node(t, tp, new, key);
1020
1021 if (fa) {
1022 hlist_add_before_rcu(&new->fa_list, &fa->fa_list);
1023 } else {
1024 struct fib_alias *last;
1025
1026 hlist_for_each_entry(last, &l->leaf, fa_list) {
1027 if (new->fa_slen < last->fa_slen)
1028 break;
1029 fa = last;
1030 }
1031
1032 if (fa)
1033 hlist_add_behind_rcu(&new->fa_list, &fa->fa_list);
1034 else
1035 hlist_add_head_rcu(&new->fa_list, &l->leaf);
1036 }
1037
1038 /* if we added to the tail node then we need to update slen */
1039 if (l->slen < new->fa_slen) {
1040 l->slen = new->fa_slen;
1041 leaf_push_suffix(tp, l);
1042 }
1043
1044 return 0;
1045}
1046
1047/* Caller must hold RTNL. */
Stephen Hemminger16c6cf82009-09-20 10:35:36 +00001048int fib_table_insert(struct fib_table *tb, struct fib_config *cfg)
Robert Olsson19baf832005-06-21 12:43:18 -07001049{
Alexander Duyckd4a975e2015-03-04 15:01:59 -08001050 struct trie *t = (struct trie *)tb->tb_data;
Robert Olsson19baf832005-06-21 12:43:18 -07001051 struct fib_alias *fa, *new_fa;
Alexander Duyckd4a975e2015-03-04 15:01:59 -08001052 struct tnode *l, *tp;
Robert Olsson19baf832005-06-21 12:43:18 -07001053 struct fib_info *fi;
Alexander Duyck79e5ad22015-02-25 15:31:51 -08001054 u8 plen = cfg->fc_dst_len;
1055 u8 slen = KEYLENGTH - plen;
Thomas Graf4e902c52006-08-17 18:14:52 -07001056 u8 tos = cfg->fc_tos;
Alexander Duyckd4a975e2015-03-04 15:01:59 -08001057 u32 key;
Robert Olsson19baf832005-06-21 12:43:18 -07001058 int err;
Robert Olsson19baf832005-06-21 12:43:18 -07001059
Alexander Duyck5786ec62015-02-25 15:31:37 -08001060 if (plen > KEYLENGTH)
Robert Olsson19baf832005-06-21 12:43:18 -07001061 return -EINVAL;
1062
Thomas Graf4e902c52006-08-17 18:14:52 -07001063 key = ntohl(cfg->fc_dst);
Robert Olsson19baf832005-06-21 12:43:18 -07001064
Patrick McHardy2dfe55b2006-08-10 23:08:33 -07001065 pr_debug("Insert table=%u %08x/%d\n", tb->tb_id, key, plen);
Robert Olsson19baf832005-06-21 12:43:18 -07001066
Alexander Duyckd4a975e2015-03-04 15:01:59 -08001067 if ((plen < KEYLENGTH) && (key << plen))
Robert Olsson19baf832005-06-21 12:43:18 -07001068 return -EINVAL;
1069
Thomas Graf4e902c52006-08-17 18:14:52 -07001070 fi = fib_create_info(cfg);
1071 if (IS_ERR(fi)) {
1072 err = PTR_ERR(fi);
Robert Olsson19baf832005-06-21 12:43:18 -07001073 goto err;
Thomas Graf4e902c52006-08-17 18:14:52 -07001074 }
Robert Olsson19baf832005-06-21 12:43:18 -07001075
Alexander Duyckd4a975e2015-03-04 15:01:59 -08001076 l = fib_find_node(t, &tp, key);
Alexander Duyck79e5ad22015-02-25 15:31:51 -08001077 fa = l ? fib_find_alias(&l->leaf, slen, tos, fi->fib_priority) : NULL;
Robert Olsson19baf832005-06-21 12:43:18 -07001078
1079 /* Now fa, if non-NULL, points to the first fib alias
1080 * with the same keys [prefix,tos,priority], if such key already
1081 * exists or to the node before which we will insert new one.
1082 *
1083 * If fa is NULL, we will need to allocate a new one and
Alexander Duyck56315f92015-02-25 15:31:31 -08001084 * insert to the tail of the section matching the suffix length
1085 * of the new alias.
Robert Olsson19baf832005-06-21 12:43:18 -07001086 */
1087
Julian Anastasov936f6f82008-01-28 21:18:06 -08001088 if (fa && fa->fa_tos == tos &&
1089 fa->fa_info->fib_priority == fi->fib_priority) {
1090 struct fib_alias *fa_first, *fa_match;
Robert Olsson19baf832005-06-21 12:43:18 -07001091
1092 err = -EEXIST;
Thomas Graf4e902c52006-08-17 18:14:52 -07001093 if (cfg->fc_nlflags & NLM_F_EXCL)
Robert Olsson19baf832005-06-21 12:43:18 -07001094 goto out;
1095
Julian Anastasov936f6f82008-01-28 21:18:06 -08001096 /* We have 2 goals:
1097 * 1. Find exact match for type, scope, fib_info to avoid
1098 * duplicate routes
1099 * 2. Find next 'fa' (or head), NLM_F_APPEND inserts before it
1100 */
1101 fa_match = NULL;
1102 fa_first = fa;
Alexander Duyck56315f92015-02-25 15:31:31 -08001103 hlist_for_each_entry_from(fa, fa_list) {
Alexander Duyck79e5ad22015-02-25 15:31:51 -08001104 if ((fa->fa_slen != slen) || (fa->fa_tos != tos))
Julian Anastasov936f6f82008-01-28 21:18:06 -08001105 break;
1106 if (fa->fa_info->fib_priority != fi->fib_priority)
1107 break;
1108 if (fa->fa_type == cfg->fc_type &&
Julian Anastasov936f6f82008-01-28 21:18:06 -08001109 fa->fa_info == fi) {
1110 fa_match = fa;
1111 break;
1112 }
1113 }
1114
Thomas Graf4e902c52006-08-17 18:14:52 -07001115 if (cfg->fc_nlflags & NLM_F_REPLACE) {
Robert Olsson19baf832005-06-21 12:43:18 -07001116 struct fib_info *fi_drop;
1117 u8 state;
1118
Julian Anastasov936f6f82008-01-28 21:18:06 -08001119 fa = fa_first;
1120 if (fa_match) {
1121 if (fa == fa_match)
1122 err = 0;
Joonwoo Park67250332008-01-18 03:45:18 -08001123 goto out;
Julian Anastasov936f6f82008-01-28 21:18:06 -08001124 }
Robert Olsson2373ce12005-08-25 13:01:29 -07001125 err = -ENOBUFS;
Christoph Lametere94b1762006-12-06 20:33:17 -08001126 new_fa = kmem_cache_alloc(fn_alias_kmem, GFP_KERNEL);
Robert Olsson2373ce12005-08-25 13:01:29 -07001127 if (new_fa == NULL)
1128 goto out;
Robert Olsson19baf832005-06-21 12:43:18 -07001129
1130 fi_drop = fa->fa_info;
Robert Olsson2373ce12005-08-25 13:01:29 -07001131 new_fa->fa_tos = fa->fa_tos;
1132 new_fa->fa_info = fi;
Thomas Graf4e902c52006-08-17 18:14:52 -07001133 new_fa->fa_type = cfg->fc_type;
Robert Olsson19baf832005-06-21 12:43:18 -07001134 state = fa->fa_state;
Julian Anastasov936f6f82008-01-28 21:18:06 -08001135 new_fa->fa_state = state & ~FA_S_ACCESSED;
Alexander Duyck9b6ebad2015-02-25 15:31:44 -08001136 new_fa->fa_slen = fa->fa_slen;
Robert Olsson19baf832005-06-21 12:43:18 -07001137
Alexander Duyck56315f92015-02-25 15:31:31 -08001138 hlist_replace_rcu(&fa->fa_list, &new_fa->fa_list);
Robert Olsson2373ce12005-08-25 13:01:29 -07001139 alias_free_mem_rcu(fa);
Robert Olsson19baf832005-06-21 12:43:18 -07001140
1141 fib_release_info(fi_drop);
1142 if (state & FA_S_ACCESSED)
Nicolas Dichtel4ccfe6d2012-09-07 00:45:29 +00001143 rt_cache_flush(cfg->fc_nlinfo.nl_net);
Milan Kocianb8f55832007-05-23 14:55:06 -07001144 rtmsg_fib(RTM_NEWROUTE, htonl(key), new_fa, plen,
1145 tb->tb_id, &cfg->fc_nlinfo, NLM_F_REPLACE);
Robert Olsson19baf832005-06-21 12:43:18 -07001146
Olof Johansson91b9a272005-08-09 20:24:39 -07001147 goto succeeded;
Robert Olsson19baf832005-06-21 12:43:18 -07001148 }
1149 /* Error if we find a perfect match which
1150 * uses the same scope, type, and nexthop
1151 * information.
1152 */
Julian Anastasov936f6f82008-01-28 21:18:06 -08001153 if (fa_match)
1154 goto out;
Stephen Hemmingera07f5f52008-01-22 21:53:36 -08001155
Thomas Graf4e902c52006-08-17 18:14:52 -07001156 if (!(cfg->fc_nlflags & NLM_F_APPEND))
Julian Anastasov936f6f82008-01-28 21:18:06 -08001157 fa = fa_first;
Robert Olsson19baf832005-06-21 12:43:18 -07001158 }
1159 err = -ENOENT;
Thomas Graf4e902c52006-08-17 18:14:52 -07001160 if (!(cfg->fc_nlflags & NLM_F_CREATE))
Robert Olsson19baf832005-06-21 12:43:18 -07001161 goto out;
1162
1163 err = -ENOBUFS;
Christoph Lametere94b1762006-12-06 20:33:17 -08001164 new_fa = kmem_cache_alloc(fn_alias_kmem, GFP_KERNEL);
Robert Olsson19baf832005-06-21 12:43:18 -07001165 if (new_fa == NULL)
1166 goto out;
1167
1168 new_fa->fa_info = fi;
1169 new_fa->fa_tos = tos;
Thomas Graf4e902c52006-08-17 18:14:52 -07001170 new_fa->fa_type = cfg->fc_type;
Robert Olsson19baf832005-06-21 12:43:18 -07001171 new_fa->fa_state = 0;
Alexander Duyck79e5ad22015-02-25 15:31:51 -08001172 new_fa->fa_slen = slen;
Robert Olsson19baf832005-06-21 12:43:18 -07001173
Alexander Duyck9b6ebad2015-02-25 15:31:44 -08001174 /* Insert new entry to the list. */
Alexander Duyckd5d64872015-03-04 15:02:18 -08001175 err = fib_insert_alias(t, tp, l, new_fa, fa, key);
1176 if (err)
1177 goto out_free_new_fa;
Robert Olsson19baf832005-06-21 12:43:18 -07001178
David S. Miller21d8c492011-04-14 14:49:37 -07001179 if (!plen)
1180 tb->tb_num_default++;
1181
Nicolas Dichtel4ccfe6d2012-09-07 00:45:29 +00001182 rt_cache_flush(cfg->fc_nlinfo.nl_net);
Thomas Graf4e902c52006-08-17 18:14:52 -07001183 rtmsg_fib(RTM_NEWROUTE, htonl(key), new_fa, plen, tb->tb_id,
Milan Kocianb8f55832007-05-23 14:55:06 -07001184 &cfg->fc_nlinfo, 0);
Robert Olsson19baf832005-06-21 12:43:18 -07001185succeeded:
1186 return 0;
Robert Olssonf835e472005-06-28 15:00:39 -07001187
1188out_free_new_fa:
1189 kmem_cache_free(fn_alias_kmem, new_fa);
Robert Olsson19baf832005-06-21 12:43:18 -07001190out:
1191 fib_release_info(fi);
Olof Johansson91b9a272005-08-09 20:24:39 -07001192err:
Robert Olsson19baf832005-06-21 12:43:18 -07001193 return err;
1194}
1195
Alexander Duyck9f9e6362014-12-31 10:55:54 -08001196static inline t_key prefix_mismatch(t_key key, struct tnode *n)
1197{
1198 t_key prefix = n->key;
1199
1200 return (key ^ prefix) & (prefix | -prefix);
1201}
1202
Alexander Duyck345e9b52014-12-31 10:56:24 -08001203/* should be called with rcu_read_lock */
David S. Miller22bd5b92011-03-11 19:54:08 -05001204int fib_table_lookup(struct fib_table *tb, const struct flowi4 *flp,
Eric Dumazetebc0ffa2010-10-05 10:41:36 +00001205 struct fib_result *res, int fib_flags)
Robert Olsson19baf832005-06-21 12:43:18 -07001206{
Alexander Duyck9f9e6362014-12-31 10:55:54 -08001207 struct trie *t = (struct trie *)tb->tb_data;
Alexander Duyck8274a972014-12-31 10:55:29 -08001208#ifdef CONFIG_IP_FIB_TRIE_STATS
1209 struct trie_use_stats __percpu *stats = t->stats;
1210#endif
Alexander Duyck9f9e6362014-12-31 10:55:54 -08001211 const t_key key = ntohl(flp->daddr);
1212 struct tnode *n, *pn;
Alexander Duyck79e5ad22015-02-25 15:31:51 -08001213 struct fib_alias *fa;
Alexander Duyck71e8b672015-03-04 15:04:03 -08001214 unsigned long index;
Alexander Duyck9f9e6362014-12-31 10:55:54 -08001215 t_key cindex;
Robert Olsson19baf832005-06-21 12:43:18 -07001216
Robert Olsson2373ce12005-08-25 13:01:29 -07001217 n = rcu_dereference(t->trie);
Stephen Hemmingerc877efb2005-07-19 14:01:51 -07001218 if (!n)
Alexander Duyck345e9b52014-12-31 10:56:24 -08001219 return -EAGAIN;
Robert Olsson19baf832005-06-21 12:43:18 -07001220
1221#ifdef CONFIG_IP_FIB_TRIE_STATS
Alexander Duyck8274a972014-12-31 10:55:29 -08001222 this_cpu_inc(stats->gets);
Robert Olsson19baf832005-06-21 12:43:18 -07001223#endif
1224
Alexander Duyckadaf9812014-12-31 10:55:47 -08001225 pn = n;
Alexander Duyck9f9e6362014-12-31 10:55:54 -08001226 cindex = 0;
Stephen Hemmingerc877efb2005-07-19 14:01:51 -07001227
Alexander Duyck9f9e6362014-12-31 10:55:54 -08001228 /* Step 1: Travel to the longest prefix match in the trie */
1229 for (;;) {
Alexander Duyck71e8b672015-03-04 15:04:03 -08001230 index = get_index(key, n);
Robert Olsson19baf832005-06-21 12:43:18 -07001231
Alexander Duyck9f9e6362014-12-31 10:55:54 -08001232 /* This bit of code is a bit tricky but it combines multiple
1233 * checks into a single check. The prefix consists of the
1234 * prefix plus zeros for the "bits" in the prefix. The index
1235 * is the difference between the key and this value. From
1236 * this we can actually derive several pieces of data.
Alexander Duyck71e8b672015-03-04 15:04:03 -08001237 * if (index >= (1ul << bits))
Alexander Duyck9f9e6362014-12-31 10:55:54 -08001238 * we have a mismatch in skip bits and failed
Alexander Duyckb3832112015-01-22 15:51:08 -08001239 * else
1240 * we know the value is cindex
Alexander Duyck71e8b672015-03-04 15:04:03 -08001241 *
1242 * This check is safe even if bits == KEYLENGTH due to the
1243 * fact that we can only allocate a node with 32 bits if a
1244 * long is greater than 32 bits.
Alexander Duyck9f9e6362014-12-31 10:55:54 -08001245 */
Alexander Duyck71e8b672015-03-04 15:04:03 -08001246 if (index >= (1ul << n->bits))
Alexander Duyck9f9e6362014-12-31 10:55:54 -08001247 break;
Robert Olsson19baf832005-06-21 12:43:18 -07001248
Alexander Duyck9f9e6362014-12-31 10:55:54 -08001249 /* we have found a leaf. Prefixes have already been compared */
1250 if (IS_LEAF(n))
Stephen Hemmingera07f5f52008-01-22 21:53:36 -08001251 goto found;
Alexander Duyck9f9e6362014-12-31 10:55:54 -08001252
1253 /* only record pn and cindex if we are going to be chopping
1254 * bits later. Otherwise we are just wasting cycles.
1255 */
Alexander Duyck5405afd2014-12-31 10:57:08 -08001256 if (n->slen > n->pos) {
Alexander Duyck9f9e6362014-12-31 10:55:54 -08001257 pn = n;
1258 cindex = index;
Olof Johansson91b9a272005-08-09 20:24:39 -07001259 }
1260
Alexander Duyck21d1f112014-12-31 10:57:02 -08001261 n = tnode_get_child_rcu(n, index);
Alexander Duyck9f9e6362014-12-31 10:55:54 -08001262 if (unlikely(!n))
Robert Olsson19baf832005-06-21 12:43:18 -07001263 goto backtrace;
Alexander Duyck9f9e6362014-12-31 10:55:54 -08001264 }
1265
1266 /* Step 2: Sort out leaves and begin backtracing for longest prefix */
1267 for (;;) {
1268 /* record the pointer where our next node pointer is stored */
Alexander Duyck41b489f2015-03-04 15:02:33 -08001269 struct tnode __rcu **cptr = n->tnode;
Alexander Duyck9f9e6362014-12-31 10:55:54 -08001270
1271 /* This test verifies that none of the bits that differ
1272 * between the key and the prefix exist in the region of
1273 * the lsb and higher in the prefix.
1274 */
Alexander Duyck5405afd2014-12-31 10:57:08 -08001275 if (unlikely(prefix_mismatch(key, n)) || (n->slen == n->pos))
Alexander Duyck9f9e6362014-12-31 10:55:54 -08001276 goto backtrace;
1277
1278 /* exit out and process leaf */
1279 if (unlikely(IS_LEAF(n)))
1280 break;
1281
1282 /* Don't bother recording parent info. Since we are in
1283 * prefix match mode we will have to come back to wherever
1284 * we started this traversal anyway
1285 */
1286
1287 while ((n = rcu_dereference(*cptr)) == NULL) {
1288backtrace:
1289#ifdef CONFIG_IP_FIB_TRIE_STATS
1290 if (!n)
1291 this_cpu_inc(stats->null_node_hit);
1292#endif
1293 /* If we are at cindex 0 there are no more bits for
1294 * us to strip at this level so we must ascend back
1295 * up one level to see if there are any more bits to
1296 * be stripped there.
1297 */
1298 while (!cindex) {
1299 t_key pkey = pn->key;
1300
1301 pn = node_parent_rcu(pn);
1302 if (unlikely(!pn))
Alexander Duyck345e9b52014-12-31 10:56:24 -08001303 return -EAGAIN;
Alexander Duyck9f9e6362014-12-31 10:55:54 -08001304#ifdef CONFIG_IP_FIB_TRIE_STATS
1305 this_cpu_inc(stats->backtrack);
1306#endif
1307 /* Get Child's index */
1308 cindex = get_index(pkey, pn);
1309 }
1310
1311 /* strip the least significant bit from the cindex */
1312 cindex &= cindex - 1;
1313
1314 /* grab pointer for next child node */
Alexander Duyck41b489f2015-03-04 15:02:33 -08001315 cptr = &pn->tnode[cindex];
Stephen Hemmingerc877efb2005-07-19 14:01:51 -07001316 }
Robert Olsson19baf832005-06-21 12:43:18 -07001317 }
Alexander Duyck9f9e6362014-12-31 10:55:54 -08001318
Robert Olsson19baf832005-06-21 12:43:18 -07001319found:
Alexander Duyck71e8b672015-03-04 15:04:03 -08001320 /* this line carries forward the xor from earlier in the function */
1321 index = key ^ n->key;
1322
Alexander Duyck9f9e6362014-12-31 10:55:54 -08001323 /* Step 3: Process the leaf, if that fails fall back to backtracing */
Alexander Duyck79e5ad22015-02-25 15:31:51 -08001324 hlist_for_each_entry_rcu(fa, &n->leaf, fa_list) {
1325 struct fib_info *fi = fa->fa_info;
1326 int nhsel, err;
Alexander Duyck345e9b52014-12-31 10:56:24 -08001327
Alexander Duyck71e8b672015-03-04 15:04:03 -08001328 if ((index >= (1ul << fa->fa_slen)) &&
Alexander Duyck79e5ad22015-02-25 15:31:51 -08001329 ((BITS_PER_LONG > KEYLENGTH) || (fa->fa_slen != KEYLENGTH)))
Alexander Duyck71e8b672015-03-04 15:04:03 -08001330 continue;
Alexander Duyck79e5ad22015-02-25 15:31:51 -08001331 if (fa->fa_tos && fa->fa_tos != flp->flowi4_tos)
1332 continue;
1333 if (fi->fib_dead)
1334 continue;
1335 if (fa->fa_info->fib_scope < flp->flowi4_scope)
1336 continue;
1337 fib_alias_accessed(fa);
1338 err = fib_props[fa->fa_type].error;
1339 if (unlikely(err < 0)) {
Alexander Duyck345e9b52014-12-31 10:56:24 -08001340#ifdef CONFIG_IP_FIB_TRIE_STATS
Alexander Duyck79e5ad22015-02-25 15:31:51 -08001341 this_cpu_inc(stats->semantic_match_passed);
Alexander Duyck345e9b52014-12-31 10:56:24 -08001342#endif
Alexander Duyck79e5ad22015-02-25 15:31:51 -08001343 return err;
1344 }
1345 if (fi->fib_flags & RTNH_F_DEAD)
1346 continue;
1347 for (nhsel = 0; nhsel < fi->fib_nhs; nhsel++) {
1348 const struct fib_nh *nh = &fi->fib_nh[nhsel];
1349
1350 if (nh->nh_flags & RTNH_F_DEAD)
Alexander Duyck345e9b52014-12-31 10:56:24 -08001351 continue;
Alexander Duyck79e5ad22015-02-25 15:31:51 -08001352 if (flp->flowi4_oif && flp->flowi4_oif != nh->nh_oif)
1353 continue;
Alexander Duyck345e9b52014-12-31 10:56:24 -08001354
Alexander Duyck79e5ad22015-02-25 15:31:51 -08001355 if (!(fib_flags & FIB_LOOKUP_NOREF))
1356 atomic_inc(&fi->fib_clntref);
Alexander Duyck345e9b52014-12-31 10:56:24 -08001357
Alexander Duyck79e5ad22015-02-25 15:31:51 -08001358 res->prefixlen = KEYLENGTH - fa->fa_slen;
1359 res->nh_sel = nhsel;
1360 res->type = fa->fa_type;
1361 res->scope = fi->fib_scope;
1362 res->fi = fi;
1363 res->table = tb;
1364 res->fa_head = &n->leaf;
Alexander Duyck345e9b52014-12-31 10:56:24 -08001365#ifdef CONFIG_IP_FIB_TRIE_STATS
Alexander Duyck79e5ad22015-02-25 15:31:51 -08001366 this_cpu_inc(stats->semantic_match_passed);
Alexander Duyck345e9b52014-12-31 10:56:24 -08001367#endif
Alexander Duyck79e5ad22015-02-25 15:31:51 -08001368 return err;
Alexander Duyck345e9b52014-12-31 10:56:24 -08001369 }
Alexander Duyck345e9b52014-12-31 10:56:24 -08001370 }
Alexander Duyck9b6ebad2015-02-25 15:31:44 -08001371#ifdef CONFIG_IP_FIB_TRIE_STATS
1372 this_cpu_inc(stats->semantic_match_miss);
1373#endif
Alexander Duyck345e9b52014-12-31 10:56:24 -08001374 goto backtrace;
Robert Olsson19baf832005-06-21 12:43:18 -07001375}
Florian Westphal6fc01432011-08-25 13:46:12 +02001376EXPORT_SYMBOL_GPL(fib_table_lookup);
Robert Olsson19baf832005-06-21 12:43:18 -07001377
Alexander Duyckd5d64872015-03-04 15:02:18 -08001378static void fib_remove_alias(struct trie *t, struct tnode *tp,
1379 struct tnode *l, struct fib_alias *old)
1380{
1381 /* record the location of the previous list_info entry */
1382 struct hlist_node **pprev = old->fa_list.pprev;
1383 struct fib_alias *fa = hlist_entry(pprev, typeof(*fa), fa_list.next);
1384
1385 /* remove the fib_alias from the list */
1386 hlist_del_rcu(&old->fa_list);
1387
1388 /* if we emptied the list this leaf will be freed and we can sort
1389 * out parent suffix lengths as a part of trie_rebalance
1390 */
1391 if (hlist_empty(&l->leaf)) {
1392 put_child_root(tp, t, l->key, NULL);
1393 node_free(l);
1394 trie_rebalance(t, tp);
1395 return;
1396 }
1397
1398 /* only access fa if it is pointing at the last valid hlist_node */
1399 if (*pprev)
1400 return;
1401
1402 /* update the trie with the latest suffix length */
1403 l->slen = fa->fa_slen;
1404 leaf_pull_suffix(tp, l);
1405}
1406
1407/* Caller must hold RTNL. */
Stephen Hemminger16c6cf82009-09-20 10:35:36 +00001408int fib_table_delete(struct fib_table *tb, struct fib_config *cfg)
Robert Olsson19baf832005-06-21 12:43:18 -07001409{
1410 struct trie *t = (struct trie *) tb->tb_data;
Robert Olsson19baf832005-06-21 12:43:18 -07001411 struct fib_alias *fa, *fa_to_delete;
Alexander Duyckd4a975e2015-03-04 15:01:59 -08001412 struct tnode *l, *tp;
Alexander Duyck79e5ad22015-02-25 15:31:51 -08001413 u8 plen = cfg->fc_dst_len;
Alexander Duyck79e5ad22015-02-25 15:31:51 -08001414 u8 slen = KEYLENGTH - plen;
Alexander Duyckd4a975e2015-03-04 15:01:59 -08001415 u8 tos = cfg->fc_tos;
1416 u32 key;
Olof Johansson91b9a272005-08-09 20:24:39 -07001417
Alexander Duyck79e5ad22015-02-25 15:31:51 -08001418 if (plen > KEYLENGTH)
Robert Olsson19baf832005-06-21 12:43:18 -07001419 return -EINVAL;
1420
Thomas Graf4e902c52006-08-17 18:14:52 -07001421 key = ntohl(cfg->fc_dst);
Robert Olsson19baf832005-06-21 12:43:18 -07001422
Alexander Duyckd4a975e2015-03-04 15:01:59 -08001423 if ((plen < KEYLENGTH) && (key << plen))
Robert Olsson19baf832005-06-21 12:43:18 -07001424 return -EINVAL;
1425
Alexander Duyckd4a975e2015-03-04 15:01:59 -08001426 l = fib_find_node(t, &tp, key);
Stephen Hemmingerc877efb2005-07-19 14:01:51 -07001427 if (!l)
Robert Olsson19baf832005-06-21 12:43:18 -07001428 return -ESRCH;
1429
Alexander Duyck79e5ad22015-02-25 15:31:51 -08001430 fa = fib_find_alias(&l->leaf, slen, tos, 0);
Robert Olsson19baf832005-06-21 12:43:18 -07001431 if (!fa)
1432 return -ESRCH;
1433
Stephen Hemminger0c7770c2005-08-23 21:59:41 -07001434 pr_debug("Deleting %08x/%d tos=%d t=%p\n", key, plen, tos, t);
Robert Olsson19baf832005-06-21 12:43:18 -07001435
1436 fa_to_delete = NULL;
Alexander Duyck56315f92015-02-25 15:31:31 -08001437 hlist_for_each_entry_from(fa, fa_list) {
Robert Olsson19baf832005-06-21 12:43:18 -07001438 struct fib_info *fi = fa->fa_info;
1439
Alexander Duyck79e5ad22015-02-25 15:31:51 -08001440 if ((fa->fa_slen != slen) || (fa->fa_tos != tos))
Robert Olsson19baf832005-06-21 12:43:18 -07001441 break;
1442
Thomas Graf4e902c52006-08-17 18:14:52 -07001443 if ((!cfg->fc_type || fa->fa_type == cfg->fc_type) &&
1444 (cfg->fc_scope == RT_SCOPE_NOWHERE ||
David S. Miller37e826c2011-03-24 18:06:47 -07001445 fa->fa_info->fib_scope == cfg->fc_scope) &&
Julian Anastasov74cb3c12011-03-19 12:13:46 +00001446 (!cfg->fc_prefsrc ||
1447 fi->fib_prefsrc == cfg->fc_prefsrc) &&
Thomas Graf4e902c52006-08-17 18:14:52 -07001448 (!cfg->fc_protocol ||
1449 fi->fib_protocol == cfg->fc_protocol) &&
1450 fib_nh_match(cfg, fi) == 0) {
Robert Olsson19baf832005-06-21 12:43:18 -07001451 fa_to_delete = fa;
1452 break;
1453 }
1454 }
1455
Olof Johansson91b9a272005-08-09 20:24:39 -07001456 if (!fa_to_delete)
1457 return -ESRCH;
Robert Olsson19baf832005-06-21 12:43:18 -07001458
Alexander Duyckd5d64872015-03-04 15:02:18 -08001459 rtmsg_fib(RTM_DELROUTE, htonl(key), fa_to_delete, plen, tb->tb_id,
Milan Kocianb8f55832007-05-23 14:55:06 -07001460 &cfg->fc_nlinfo, 0);
Robert Olsson19baf832005-06-21 12:43:18 -07001461
David S. Miller21d8c492011-04-14 14:49:37 -07001462 if (!plen)
1463 tb->tb_num_default--;
1464
Alexander Duyckd5d64872015-03-04 15:02:18 -08001465 fib_remove_alias(t, tp, l, fa_to_delete);
Alexander Duyck7289e6d2015-03-04 14:58:19 -08001466
Alexander Duyckd5d64872015-03-04 15:02:18 -08001467 if (fa_to_delete->fa_state & FA_S_ACCESSED)
Nicolas Dichtel4ccfe6d2012-09-07 00:45:29 +00001468 rt_cache_flush(cfg->fc_nlinfo.nl_net);
Olof Johansson91b9a272005-08-09 20:24:39 -07001469
Alexander Duyckd5d64872015-03-04 15:02:18 -08001470 fib_release_info(fa_to_delete->fa_info);
1471 alias_free_mem_rcu(fa_to_delete);
Olof Johansson91b9a272005-08-09 20:24:39 -07001472 return 0;
Robert Olsson19baf832005-06-21 12:43:18 -07001473}
1474
Alexander Duyck8be33e92015-03-04 14:59:19 -08001475/* Scan for the next leaf starting at the provided key value */
1476static struct tnode *leaf_walk_rcu(struct tnode **tn, t_key key)
Robert Olsson19baf832005-06-21 12:43:18 -07001477{
Alexander Duyck8be33e92015-03-04 14:59:19 -08001478 struct tnode *pn, *n = *tn;
1479 unsigned long cindex;
Robert Olsson19baf832005-06-21 12:43:18 -07001480
Alexander Duyck8be33e92015-03-04 14:59:19 -08001481 /* record parent node for backtracing */
1482 pn = n;
1483 cindex = n ? get_index(key, n) : 0;
Robert Olsson19baf832005-06-21 12:43:18 -07001484
Alexander Duyck8be33e92015-03-04 14:59:19 -08001485 /* this loop is meant to try and find the key in the trie */
1486 while (n) {
1487 unsigned long idx = get_index(key, n);
Stephen Hemminger82cfbb02008-01-22 21:55:32 -08001488
Alexander Duyck8be33e92015-03-04 14:59:19 -08001489 /* guarantee forward progress on the keys */
1490 if (IS_LEAF(n) && (n->key >= key))
1491 goto found;
1492 if (idx >= (1ul << n->bits))
1493 break;
1494
1495 /* record parent and next child index */
1496 pn = n;
1497 cindex = idx;
1498
1499 /* descend into the next child */
1500 n = tnode_get_child_rcu(pn, cindex++);
1501 }
1502
1503 /* this loop will search for the next leaf with a greater key */
1504 while (pn) {
1505 /* if we exhausted the parent node we will need to climb */
1506 if (cindex >= (1ul << pn->bits)) {
1507 t_key pkey = pn->key;
1508
1509 pn = node_parent_rcu(pn);
1510 if (!pn)
1511 break;
1512
1513 cindex = get_index(pkey, pn) + 1;
1514 continue;
Robert Olsson19baf832005-06-21 12:43:18 -07001515 }
Stephen Hemminger82cfbb02008-01-22 21:55:32 -08001516
Alexander Duyck8be33e92015-03-04 14:59:19 -08001517 /* grab the next available node */
1518 n = tnode_get_child_rcu(pn, cindex++);
1519 if (!n)
1520 continue;
Stephen Hemminger82cfbb02008-01-22 21:55:32 -08001521
Alexander Duyck8be33e92015-03-04 14:59:19 -08001522 /* no need to compare keys since we bumped the index */
1523 if (IS_LEAF(n))
1524 goto found;
1525
1526 /* Rescan start scanning in new node */
1527 pn = n;
1528 cindex = 0;
1529 }
1530
1531 *tn = pn;
Stephen Hemminger82cfbb02008-01-22 21:55:32 -08001532 return NULL; /* Root of trie */
Alexander Duyck8be33e92015-03-04 14:59:19 -08001533found:
1534 /* if we are at the limit for keys just return NULL for the tnode */
1535 *tn = (n->key == KEY_MAX) ? NULL : pn;
1536 return n;
Stephen Hemminger82cfbb02008-01-22 21:55:32 -08001537}
1538
Alexander Duyck8be33e92015-03-04 14:59:19 -08001539/* Caller must hold RTNL. */
Stephen Hemminger16c6cf82009-09-20 10:35:36 +00001540int fib_table_flush(struct fib_table *tb)
Robert Olsson19baf832005-06-21 12:43:18 -07001541{
Alexander Duyck7289e6d2015-03-04 14:58:19 -08001542 struct trie *t = (struct trie *)tb->tb_data;
1543 struct hlist_node *tmp;
1544 struct fib_alias *fa;
1545 struct tnode *n, *pn;
1546 unsigned long cindex;
1547 unsigned char slen;
Stephen Hemminger82cfbb02008-01-22 21:55:32 -08001548 int found = 0;
Robert Olsson19baf832005-06-21 12:43:18 -07001549
Alexander Duyck7289e6d2015-03-04 14:58:19 -08001550 n = rcu_dereference(t->trie);
1551 if (!n)
1552 goto flush_complete;
Robert Olsson19baf832005-06-21 12:43:18 -07001553
Alexander Duyck7289e6d2015-03-04 14:58:19 -08001554 pn = NULL;
1555 cindex = 0;
1556
1557 while (IS_TNODE(n)) {
1558 /* record pn and cindex for leaf walking */
1559 pn = n;
1560 cindex = 1ul << n->bits;
1561backtrace:
1562 /* walk trie in reverse order */
1563 do {
1564 while (!(cindex--)) {
1565 t_key pkey = pn->key;
1566
1567 n = pn;
1568 pn = node_parent(n);
1569
1570 /* resize completed node */
1571 resize(t, n);
1572
1573 /* if we got the root we are done */
1574 if (!pn)
1575 goto flush_complete;
1576
1577 cindex = get_index(pkey, pn);
1578 }
1579
1580 /* grab the next available node */
1581 n = tnode_get_child(pn, cindex);
1582 } while (!n);
1583 }
1584
1585 /* track slen in case any prefixes survive */
1586 slen = 0;
1587
1588 hlist_for_each_entry_safe(fa, tmp, &n->leaf, fa_list) {
1589 struct fib_info *fi = fa->fa_info;
1590
1591 if (fi && (fi->fib_flags & RTNH_F_DEAD)) {
1592 hlist_del_rcu(&fa->fa_list);
1593 fib_release_info(fa->fa_info);
1594 alias_free_mem_rcu(fa);
1595 found++;
1596
1597 continue;
Alexander Duyck64c62722015-01-22 15:51:45 -08001598 }
1599
Alexander Duyck7289e6d2015-03-04 14:58:19 -08001600 slen = fa->fa_slen;
Robert Olsson19baf832005-06-21 12:43:18 -07001601 }
1602
Alexander Duyck7289e6d2015-03-04 14:58:19 -08001603 /* update leaf slen */
1604 n->slen = slen;
1605
1606 if (hlist_empty(&n->leaf)) {
1607 put_child_root(pn, t, n->key, NULL);
1608 node_free(n);
1609 } else {
Alexander Duyckd5d64872015-03-04 15:02:18 -08001610 leaf_pull_suffix(pn, n);
Alexander Duyck64c62722015-01-22 15:51:45 -08001611 }
Robert Olsson19baf832005-06-21 12:43:18 -07001612
Alexander Duyck7289e6d2015-03-04 14:58:19 -08001613 /* if trie is leaf only loop is completed */
1614 if (pn)
1615 goto backtrace;
1616flush_complete:
Stephen Hemminger0c7770c2005-08-23 21:59:41 -07001617 pr_debug("trie_flush found=%d\n", found);
Robert Olsson19baf832005-06-21 12:43:18 -07001618 return found;
1619}
1620
Alexander Duycka7e53532015-03-04 15:02:44 -08001621static void __trie_free_rcu(struct rcu_head *head)
Pavel Emelyanov4aa2c462010-10-28 02:00:43 +00001622{
Alexander Duycka7e53532015-03-04 15:02:44 -08001623 struct fib_table *tb = container_of(head, struct fib_table, rcu);
Alexander Duyck8274a972014-12-31 10:55:29 -08001624#ifdef CONFIG_IP_FIB_TRIE_STATS
1625 struct trie *t = (struct trie *)tb->tb_data;
1626
1627 free_percpu(t->stats);
1628#endif /* CONFIG_IP_FIB_TRIE_STATS */
Pavel Emelyanov4aa2c462010-10-28 02:00:43 +00001629 kfree(tb);
1630}
1631
Alexander Duycka7e53532015-03-04 15:02:44 -08001632void fib_free_table(struct fib_table *tb)
1633{
1634 call_rcu(&tb->rcu, __trie_free_rcu);
1635}
1636
Alexander Duyck79e5ad22015-02-25 15:31:51 -08001637static int fn_trie_dump_leaf(struct tnode *l, struct fib_table *tb,
1638 struct sk_buff *skb, struct netlink_callback *cb)
Robert Olsson19baf832005-06-21 12:43:18 -07001639{
Alexander Duyck79e5ad22015-02-25 15:31:51 -08001640 __be32 xkey = htonl(l->key);
Robert Olsson19baf832005-06-21 12:43:18 -07001641 struct fib_alias *fa;
Alexander Duyck79e5ad22015-02-25 15:31:51 -08001642 int i, s_i;
Robert Olsson19baf832005-06-21 12:43:18 -07001643
Alexander Duyck79e5ad22015-02-25 15:31:51 -08001644 s_i = cb->args[4];
Robert Olsson19baf832005-06-21 12:43:18 -07001645 i = 0;
1646
Robert Olsson2373ce12005-08-25 13:01:29 -07001647 /* rcu_read_lock is hold by caller */
Alexander Duyck79e5ad22015-02-25 15:31:51 -08001648 hlist_for_each_entry_rcu(fa, &l->leaf, fa_list) {
Robert Olsson19baf832005-06-21 12:43:18 -07001649 if (i < s_i) {
1650 i++;
1651 continue;
1652 }
Robert Olsson19baf832005-06-21 12:43:18 -07001653
Eric W. Biederman15e47302012-09-07 20:12:54 +00001654 if (fib_dump_info(skb, NETLINK_CB(cb->skb).portid,
Robert Olsson19baf832005-06-21 12:43:18 -07001655 cb->nlh->nlmsg_seq,
1656 RTM_NEWROUTE,
1657 tb->tb_id,
1658 fa->fa_type,
Thomas Grafbe403ea2006-08-17 18:15:17 -07001659 xkey,
Alexander Duyck9b6ebad2015-02-25 15:31:44 -08001660 KEYLENGTH - fa->fa_slen,
Robert Olsson19baf832005-06-21 12:43:18 -07001661 fa->fa_tos,
Stephen Hemminger64347f72008-01-22 21:55:01 -08001662 fa->fa_info, NLM_F_MULTI) < 0) {
Stephen Hemminger71d67e62008-01-31 16:45:47 -08001663 cb->args[4] = i;
Robert Olsson19baf832005-06-21 12:43:18 -07001664 return -1;
1665 }
Stephen Hemmingera88ee222008-01-22 21:56:11 -08001666 i++;
Robert Olsson19baf832005-06-21 12:43:18 -07001667 }
Stephen Hemmingera88ee222008-01-22 21:56:11 -08001668
Stephen Hemminger71d67e62008-01-31 16:45:47 -08001669 cb->args[4] = i;
Robert Olsson19baf832005-06-21 12:43:18 -07001670 return skb->len;
1671}
1672
Alexander Duycka7e53532015-03-04 15:02:44 -08001673/* rcu_read_lock needs to be hold by caller from readside */
Stephen Hemminger16c6cf82009-09-20 10:35:36 +00001674int fib_table_dump(struct fib_table *tb, struct sk_buff *skb,
1675 struct netlink_callback *cb)
Robert Olsson19baf832005-06-21 12:43:18 -07001676{
Alexander Duyck8be33e92015-03-04 14:59:19 -08001677 struct trie *t = (struct trie *)tb->tb_data;
1678 struct tnode *l, *tp;
Stephen Hemmingerd5ce8a02008-01-22 21:57:22 -08001679 /* Dump starting at last key.
1680 * Note: 0.0.0.0/0 (ie default) is first key.
1681 */
Alexander Duyck8be33e92015-03-04 14:59:19 -08001682 int count = cb->args[2];
1683 t_key key = cb->args[3];
Stephen Hemmingera88ee222008-01-22 21:56:11 -08001684
Alexander Duyck8be33e92015-03-04 14:59:19 -08001685 tp = rcu_dereference_rtnl(t->trie);
1686
1687 while ((l = leaf_walk_rcu(&tp, key)) != NULL) {
Stephen Hemmingera88ee222008-01-22 21:56:11 -08001688 if (fn_trie_dump_leaf(l, tb, skb, cb) < 0) {
Alexander Duyck8be33e92015-03-04 14:59:19 -08001689 cb->args[3] = key;
1690 cb->args[2] = count;
Stephen Hemmingera88ee222008-01-22 21:56:11 -08001691 return -1;
Robert Olsson19baf832005-06-21 12:43:18 -07001692 }
Stephen Hemmingerd5ce8a02008-01-22 21:57:22 -08001693
Stephen Hemminger71d67e62008-01-31 16:45:47 -08001694 ++count;
Alexander Duyck8be33e92015-03-04 14:59:19 -08001695 key = l->key + 1;
1696
Stephen Hemminger71d67e62008-01-31 16:45:47 -08001697 memset(&cb->args[4], 0,
1698 sizeof(cb->args) - 4*sizeof(cb->args[0]));
Alexander Duyck8be33e92015-03-04 14:59:19 -08001699
1700 /* stop loop if key wrapped back to 0 */
1701 if (key < l->key)
1702 break;
Robert Olsson19baf832005-06-21 12:43:18 -07001703 }
Alexander Duyck8be33e92015-03-04 14:59:19 -08001704
Alexander Duyck8be33e92015-03-04 14:59:19 -08001705 cb->args[3] = key;
1706 cb->args[2] = count;
1707
Robert Olsson19baf832005-06-21 12:43:18 -07001708 return skb->len;
Robert Olsson19baf832005-06-21 12:43:18 -07001709}
1710
David S. Miller5348ba82011-02-01 15:30:56 -08001711void __init fib_trie_init(void)
Stephen Hemminger7f9b8052008-01-14 23:14:20 -08001712{
Stephen Hemmingera07f5f52008-01-22 21:53:36 -08001713 fn_alias_kmem = kmem_cache_create("ip_fib_alias",
1714 sizeof(struct fib_alias),
Stephen Hemmingerbc3c8c12008-01-22 21:51:50 -08001715 0, SLAB_PANIC, NULL);
1716
1717 trie_leaf_kmem = kmem_cache_create("ip_fib_trie",
Alexander Duyck41b489f2015-03-04 15:02:33 -08001718 LEAF_SIZE,
Stephen Hemmingerbc3c8c12008-01-22 21:51:50 -08001719 0, SLAB_PANIC, NULL);
Stephen Hemminger7f9b8052008-01-14 23:14:20 -08001720}
Robert Olsson19baf832005-06-21 12:43:18 -07001721
Stephen Hemminger7f9b8052008-01-14 23:14:20 -08001722
David S. Miller5348ba82011-02-01 15:30:56 -08001723struct fib_table *fib_trie_table(u32 id)
Robert Olsson19baf832005-06-21 12:43:18 -07001724{
1725 struct fib_table *tb;
1726 struct trie *t;
1727
Robert Olsson19baf832005-06-21 12:43:18 -07001728 tb = kmalloc(sizeof(struct fib_table) + sizeof(struct trie),
1729 GFP_KERNEL);
1730 if (tb == NULL)
1731 return NULL;
1732
1733 tb->tb_id = id;
Denis V. Lunev971b8932007-12-08 00:32:23 -08001734 tb->tb_default = -1;
David S. Miller21d8c492011-04-14 14:49:37 -07001735 tb->tb_num_default = 0;
Robert Olsson19baf832005-06-21 12:43:18 -07001736
1737 t = (struct trie *) tb->tb_data;
Alexander Duyck8274a972014-12-31 10:55:29 -08001738 RCU_INIT_POINTER(t->trie, NULL);
1739#ifdef CONFIG_IP_FIB_TRIE_STATS
1740 t->stats = alloc_percpu(struct trie_use_stats);
1741 if (!t->stats) {
1742 kfree(tb);
1743 tb = NULL;
1744 }
1745#endif
Robert Olsson19baf832005-06-21 12:43:18 -07001746
Robert Olsson19baf832005-06-21 12:43:18 -07001747 return tb;
1748}
1749
Robert Olsson19baf832005-06-21 12:43:18 -07001750#ifdef CONFIG_PROC_FS
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07001751/* Depth first Trie walk iterator */
1752struct fib_trie_iter {
Denis V. Lunev1c340b22008-01-10 03:27:17 -08001753 struct seq_net_private p;
Stephen Hemminger3d3b2d22008-03-23 22:43:56 -07001754 struct fib_table *tb;
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07001755 struct tnode *tnode;
Eric Dumazeta034ee32010-09-09 23:32:28 +00001756 unsigned int index;
1757 unsigned int depth;
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07001758};
Robert Olsson19baf832005-06-21 12:43:18 -07001759
Alexander Duyckadaf9812014-12-31 10:55:47 -08001760static struct tnode *fib_trie_get_next(struct fib_trie_iter *iter)
Robert Olsson19baf832005-06-21 12:43:18 -07001761{
Alexander Duyck98293e82014-12-31 10:56:18 -08001762 unsigned long cindex = iter->index;
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07001763 struct tnode *tn = iter->tnode;
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07001764 struct tnode *p;
1765
Eric W. Biederman6640e692007-01-24 14:42:04 -08001766 /* A single entry routing table */
1767 if (!tn)
1768 return NULL;
1769
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07001770 pr_debug("get_next iter={node=%p index=%d depth=%d}\n",
1771 iter->tnode, iter->index, iter->depth);
1772rescan:
Alexander Duyck98293e82014-12-31 10:56:18 -08001773 while (cindex < tnode_child_length(tn)) {
Alexander Duyckadaf9812014-12-31 10:55:47 -08001774 struct tnode *n = tnode_get_child_rcu(tn, cindex);
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07001775
1776 if (n) {
1777 if (IS_LEAF(n)) {
1778 iter->tnode = tn;
1779 iter->index = cindex + 1;
1780 } else {
1781 /* push down one level */
Alexander Duyckadaf9812014-12-31 10:55:47 -08001782 iter->tnode = n;
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07001783 iter->index = 0;
1784 ++iter->depth;
1785 }
1786 return n;
1787 }
1788
1789 ++cindex;
1790 }
1791
1792 /* Current node exhausted, pop back up */
Alexander Duyckadaf9812014-12-31 10:55:47 -08001793 p = node_parent_rcu(tn);
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07001794 if (p) {
Alexander Duycke9b44012014-12-31 10:56:12 -08001795 cindex = get_index(tn->key, p) + 1;
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07001796 tn = p;
1797 --iter->depth;
1798 goto rescan;
1799 }
1800
1801 /* got root? */
Robert Olsson19baf832005-06-21 12:43:18 -07001802 return NULL;
1803}
1804
Alexander Duyckadaf9812014-12-31 10:55:47 -08001805static struct tnode *fib_trie_get_first(struct fib_trie_iter *iter,
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07001806 struct trie *t)
Robert Olsson19baf832005-06-21 12:43:18 -07001807{
Alexander Duyckadaf9812014-12-31 10:55:47 -08001808 struct tnode *n;
Robert Olsson5ddf0eb2006-03-20 21:34:12 -08001809
Stephen Hemminger132adf52007-03-08 20:44:43 -08001810 if (!t)
Robert Olsson5ddf0eb2006-03-20 21:34:12 -08001811 return NULL;
1812
1813 n = rcu_dereference(t->trie);
Stephen Hemminger3d3b2d22008-03-23 22:43:56 -07001814 if (!n)
Robert Olsson5ddf0eb2006-03-20 21:34:12 -08001815 return NULL;
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07001816
Stephen Hemminger3d3b2d22008-03-23 22:43:56 -07001817 if (IS_TNODE(n)) {
Alexander Duyckadaf9812014-12-31 10:55:47 -08001818 iter->tnode = n;
Stephen Hemminger3d3b2d22008-03-23 22:43:56 -07001819 iter->index = 0;
1820 iter->depth = 1;
1821 } else {
1822 iter->tnode = NULL;
1823 iter->index = 0;
1824 iter->depth = 0;
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07001825 }
Stephen Hemminger3d3b2d22008-03-23 22:43:56 -07001826
1827 return n;
Robert Olsson19baf832005-06-21 12:43:18 -07001828}
1829
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07001830static void trie_collect_stats(struct trie *t, struct trie_stat *s)
Robert Olsson19baf832005-06-21 12:43:18 -07001831{
Alexander Duyckadaf9812014-12-31 10:55:47 -08001832 struct tnode *n;
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07001833 struct fib_trie_iter iter;
Robert Olsson19baf832005-06-21 12:43:18 -07001834
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07001835 memset(s, 0, sizeof(*s));
Robert Olsson19baf832005-06-21 12:43:18 -07001836
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07001837 rcu_read_lock();
Stephen Hemminger3d3b2d22008-03-23 22:43:56 -07001838 for (n = fib_trie_get_first(&iter, t); n; n = fib_trie_get_next(&iter)) {
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07001839 if (IS_LEAF(n)) {
Alexander Duyck79e5ad22015-02-25 15:31:51 -08001840 struct fib_alias *fa;
Stephen Hemminger93672292008-01-22 21:54:05 -08001841
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07001842 s->leaves++;
1843 s->totdepth += iter.depth;
1844 if (iter.depth > s->maxdepth)
1845 s->maxdepth = iter.depth;
Stephen Hemminger93672292008-01-22 21:54:05 -08001846
Alexander Duyck79e5ad22015-02-25 15:31:51 -08001847 hlist_for_each_entry_rcu(fa, &n->leaf, fa_list)
Stephen Hemminger93672292008-01-22 21:54:05 -08001848 ++s->prefixes;
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07001849 } else {
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07001850 s->tnodes++;
Alexander Duyckadaf9812014-12-31 10:55:47 -08001851 if (n->bits < MAX_STAT_DEPTH)
1852 s->nodesizes[n->bits]++;
Alexander Duyck30cfe7c2015-01-22 15:51:33 -08001853 s->nullpointers += n->empty_children;
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07001854 }
1855 }
1856 rcu_read_unlock();
Robert Olsson19baf832005-06-21 12:43:18 -07001857}
1858
Stephen Hemmingerc877efb2005-07-19 14:01:51 -07001859/*
Robert Olsson19baf832005-06-21 12:43:18 -07001860 * This outputs /proc/net/fib_triestats
Robert Olsson19baf832005-06-21 12:43:18 -07001861 */
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07001862static void trie_show_stats(struct seq_file *seq, struct trie_stat *stat)
Robert Olsson19baf832005-06-21 12:43:18 -07001863{
Eric Dumazeta034ee32010-09-09 23:32:28 +00001864 unsigned int i, max, pointers, bytes, avdepth;
Robert Olsson19baf832005-06-21 12:43:18 -07001865
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07001866 if (stat->leaves)
1867 avdepth = stat->totdepth*100 / stat->leaves;
1868 else
1869 avdepth = 0;
Robert Olsson19baf832005-06-21 12:43:18 -07001870
Stephen Hemmingera07f5f52008-01-22 21:53:36 -08001871 seq_printf(seq, "\tAver depth: %u.%02d\n",
1872 avdepth / 100, avdepth % 100);
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07001873 seq_printf(seq, "\tMax depth: %u\n", stat->maxdepth);
Robert Olsson19baf832005-06-21 12:43:18 -07001874
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07001875 seq_printf(seq, "\tLeaves: %u\n", stat->leaves);
Alexander Duyck41b489f2015-03-04 15:02:33 -08001876 bytes = LEAF_SIZE * stat->leaves;
Stephen Hemminger93672292008-01-22 21:54:05 -08001877
1878 seq_printf(seq, "\tPrefixes: %u\n", stat->prefixes);
Alexander Duyck79e5ad22015-02-25 15:31:51 -08001879 bytes += sizeof(struct fib_alias) * stat->prefixes;
Stephen Hemminger93672292008-01-22 21:54:05 -08001880
Stephen Hemminger187b5182008-01-12 20:55:55 -08001881 seq_printf(seq, "\tInternal nodes: %u\n\t", stat->tnodes);
Alexander Duyck41b489f2015-03-04 15:02:33 -08001882 bytes += TNODE_SIZE(0) * stat->tnodes;
Robert Olsson19baf832005-06-21 12:43:18 -07001883
Robert Olsson06ef9212006-03-20 21:35:01 -08001884 max = MAX_STAT_DEPTH;
1885 while (max > 0 && stat->nodesizes[max-1] == 0)
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07001886 max--;
Robert Olsson19baf832005-06-21 12:43:18 -07001887
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07001888 pointers = 0;
Jerry Snitselaarf585a992013-07-22 12:01:58 -07001889 for (i = 1; i < max; i++)
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07001890 if (stat->nodesizes[i] != 0) {
Stephen Hemminger187b5182008-01-12 20:55:55 -08001891 seq_printf(seq, " %u: %u", i, stat->nodesizes[i]);
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07001892 pointers += (1<<i) * stat->nodesizes[i];
1893 }
1894 seq_putc(seq, '\n');
Stephen Hemminger187b5182008-01-12 20:55:55 -08001895 seq_printf(seq, "\tPointers: %u\n", pointers);
Robert Olsson19baf832005-06-21 12:43:18 -07001896
Alexander Duyckadaf9812014-12-31 10:55:47 -08001897 bytes += sizeof(struct tnode *) * pointers;
Stephen Hemminger187b5182008-01-12 20:55:55 -08001898 seq_printf(seq, "Null ptrs: %u\n", stat->nullpointers);
1899 seq_printf(seq, "Total size: %u kB\n", (bytes + 1023) / 1024);
Stephen Hemminger66a2f7f2008-01-12 21:23:17 -08001900}
Robert Olsson19baf832005-06-21 12:43:18 -07001901
1902#ifdef CONFIG_IP_FIB_TRIE_STATS
Stephen Hemminger66a2f7f2008-01-12 21:23:17 -08001903static void trie_show_usage(struct seq_file *seq,
Alexander Duyck8274a972014-12-31 10:55:29 -08001904 const struct trie_use_stats __percpu *stats)
Stephen Hemminger66a2f7f2008-01-12 21:23:17 -08001905{
Alexander Duyck8274a972014-12-31 10:55:29 -08001906 struct trie_use_stats s = { 0 };
1907 int cpu;
1908
1909 /* loop through all of the CPUs and gather up the stats */
1910 for_each_possible_cpu(cpu) {
1911 const struct trie_use_stats *pcpu = per_cpu_ptr(stats, cpu);
1912
1913 s.gets += pcpu->gets;
1914 s.backtrack += pcpu->backtrack;
1915 s.semantic_match_passed += pcpu->semantic_match_passed;
1916 s.semantic_match_miss += pcpu->semantic_match_miss;
1917 s.null_node_hit += pcpu->null_node_hit;
1918 s.resize_node_skipped += pcpu->resize_node_skipped;
1919 }
1920
Stephen Hemminger66a2f7f2008-01-12 21:23:17 -08001921 seq_printf(seq, "\nCounters:\n---------\n");
Alexander Duyck8274a972014-12-31 10:55:29 -08001922 seq_printf(seq, "gets = %u\n", s.gets);
1923 seq_printf(seq, "backtracks = %u\n", s.backtrack);
Stephen Hemmingera07f5f52008-01-22 21:53:36 -08001924 seq_printf(seq, "semantic match passed = %u\n",
Alexander Duyck8274a972014-12-31 10:55:29 -08001925 s.semantic_match_passed);
1926 seq_printf(seq, "semantic match miss = %u\n", s.semantic_match_miss);
1927 seq_printf(seq, "null node hit= %u\n", s.null_node_hit);
1928 seq_printf(seq, "skipped node resize = %u\n\n", s.resize_node_skipped);
Robert Olsson19baf832005-06-21 12:43:18 -07001929}
Stephen Hemminger66a2f7f2008-01-12 21:23:17 -08001930#endif /* CONFIG_IP_FIB_TRIE_STATS */
1931
Stephen Hemminger3d3b2d22008-03-23 22:43:56 -07001932static void fib_table_print(struct seq_file *seq, struct fib_table *tb)
Stephen Hemmingerd717a9a2008-01-14 23:11:54 -08001933{
Stephen Hemminger3d3b2d22008-03-23 22:43:56 -07001934 if (tb->tb_id == RT_TABLE_LOCAL)
1935 seq_puts(seq, "Local:\n");
1936 else if (tb->tb_id == RT_TABLE_MAIN)
1937 seq_puts(seq, "Main:\n");
1938 else
1939 seq_printf(seq, "Id %d:\n", tb->tb_id);
Stephen Hemmingerd717a9a2008-01-14 23:11:54 -08001940}
Robert Olsson19baf832005-06-21 12:43:18 -07001941
Stephen Hemminger3d3b2d22008-03-23 22:43:56 -07001942
Robert Olsson19baf832005-06-21 12:43:18 -07001943static int fib_triestat_seq_show(struct seq_file *seq, void *v)
1944{
Denis V. Lunev1c340b22008-01-10 03:27:17 -08001945 struct net *net = (struct net *)seq->private;
Stephen Hemminger3d3b2d22008-03-23 22:43:56 -07001946 unsigned int h;
Eric W. Biederman877a9bf2007-12-07 00:47:47 -08001947
Stephen Hemmingerd717a9a2008-01-14 23:11:54 -08001948 seq_printf(seq,
Stephen Hemmingera07f5f52008-01-22 21:53:36 -08001949 "Basic info: size of leaf:"
1950 " %Zd bytes, size of tnode: %Zd bytes.\n",
Alexander Duyck41b489f2015-03-04 15:02:33 -08001951 LEAF_SIZE, TNODE_SIZE(0));
Olof Johansson91b9a272005-08-09 20:24:39 -07001952
Stephen Hemminger3d3b2d22008-03-23 22:43:56 -07001953 for (h = 0; h < FIB_TABLE_HASHSZ; h++) {
1954 struct hlist_head *head = &net->ipv4.fib_table_hash[h];
Stephen Hemminger3d3b2d22008-03-23 22:43:56 -07001955 struct fib_table *tb;
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07001956
Sasha Levinb67bfe02013-02-27 17:06:00 -08001957 hlist_for_each_entry_rcu(tb, head, tb_hlist) {
Stephen Hemminger3d3b2d22008-03-23 22:43:56 -07001958 struct trie *t = (struct trie *) tb->tb_data;
1959 struct trie_stat stat;
1960
1961 if (!t)
1962 continue;
1963
1964 fib_table_print(seq, tb);
1965
1966 trie_collect_stats(t, &stat);
1967 trie_show_stats(seq, &stat);
1968#ifdef CONFIG_IP_FIB_TRIE_STATS
Alexander Duyck8274a972014-12-31 10:55:29 -08001969 trie_show_usage(seq, t->stats);
Stephen Hemminger3d3b2d22008-03-23 22:43:56 -07001970#endif
1971 }
1972 }
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07001973
Robert Olsson19baf832005-06-21 12:43:18 -07001974 return 0;
1975}
1976
Robert Olsson19baf832005-06-21 12:43:18 -07001977static int fib_triestat_seq_open(struct inode *inode, struct file *file)
1978{
Pavel Emelyanovde05c552008-07-18 04:07:21 -07001979 return single_open_net(inode, file, fib_triestat_seq_show);
Denis V. Lunev1c340b22008-01-10 03:27:17 -08001980}
1981
Arjan van de Ven9a321442007-02-12 00:55:35 -08001982static const struct file_operations fib_triestat_fops = {
Stephen Hemmingerc877efb2005-07-19 14:01:51 -07001983 .owner = THIS_MODULE,
1984 .open = fib_triestat_seq_open,
1985 .read = seq_read,
1986 .llseek = seq_lseek,
Pavel Emelyanovb6fcbdb2008-07-18 04:07:44 -07001987 .release = single_release_net,
Robert Olsson19baf832005-06-21 12:43:18 -07001988};
1989
Alexander Duyckadaf9812014-12-31 10:55:47 -08001990static struct tnode *fib_trie_get_idx(struct seq_file *seq, loff_t pos)
Robert Olsson19baf832005-06-21 12:43:18 -07001991{
YOSHIFUJI Hideaki12188542008-03-26 02:36:06 +09001992 struct fib_trie_iter *iter = seq->private;
1993 struct net *net = seq_file_net(seq);
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07001994 loff_t idx = 0;
Stephen Hemminger3d3b2d22008-03-23 22:43:56 -07001995 unsigned int h;
Robert Olsson19baf832005-06-21 12:43:18 -07001996
Stephen Hemminger3d3b2d22008-03-23 22:43:56 -07001997 for (h = 0; h < FIB_TABLE_HASHSZ; h++) {
1998 struct hlist_head *head = &net->ipv4.fib_table_hash[h];
Stephen Hemminger3d3b2d22008-03-23 22:43:56 -07001999 struct fib_table *tb;
2000
Sasha Levinb67bfe02013-02-27 17:06:00 -08002001 hlist_for_each_entry_rcu(tb, head, tb_hlist) {
Alexander Duyckadaf9812014-12-31 10:55:47 -08002002 struct tnode *n;
Stephen Hemminger3d3b2d22008-03-23 22:43:56 -07002003
2004 for (n = fib_trie_get_first(iter,
2005 (struct trie *) tb->tb_data);
2006 n; n = fib_trie_get_next(iter))
2007 if (pos == idx++) {
2008 iter->tb = tb;
2009 return n;
2010 }
2011 }
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002012 }
Robert Olsson19baf832005-06-21 12:43:18 -07002013
Robert Olsson19baf832005-06-21 12:43:18 -07002014 return NULL;
2015}
2016
2017static void *fib_trie_seq_start(struct seq_file *seq, loff_t *pos)
Stephen Hemmingerc95aaf92008-01-12 21:25:02 -08002018 __acquires(RCU)
Robert Olsson19baf832005-06-21 12:43:18 -07002019{
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002020 rcu_read_lock();
YOSHIFUJI Hideaki12188542008-03-26 02:36:06 +09002021 return fib_trie_get_idx(seq, *pos);
Robert Olsson19baf832005-06-21 12:43:18 -07002022}
2023
2024static void *fib_trie_seq_next(struct seq_file *seq, void *v, loff_t *pos)
2025{
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002026 struct fib_trie_iter *iter = seq->private;
YOSHIFUJI Hideaki12188542008-03-26 02:36:06 +09002027 struct net *net = seq_file_net(seq);
Stephen Hemminger3d3b2d22008-03-23 22:43:56 -07002028 struct fib_table *tb = iter->tb;
2029 struct hlist_node *tb_node;
2030 unsigned int h;
Alexander Duyckadaf9812014-12-31 10:55:47 -08002031 struct tnode *n;
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002032
Robert Olsson19baf832005-06-21 12:43:18 -07002033 ++*pos;
Stephen Hemminger3d3b2d22008-03-23 22:43:56 -07002034 /* next node in same table */
2035 n = fib_trie_get_next(iter);
2036 if (n)
2037 return n;
Olof Johansson91b9a272005-08-09 20:24:39 -07002038
Stephen Hemminger3d3b2d22008-03-23 22:43:56 -07002039 /* walk rest of this hash chain */
2040 h = tb->tb_id & (FIB_TABLE_HASHSZ - 1);
Eric Dumazet0a5c0472011-03-31 01:51:35 -07002041 while ((tb_node = rcu_dereference(hlist_next_rcu(&tb->tb_hlist)))) {
Stephen Hemminger3d3b2d22008-03-23 22:43:56 -07002042 tb = hlist_entry(tb_node, struct fib_table, tb_hlist);
2043 n = fib_trie_get_first(iter, (struct trie *) tb->tb_data);
2044 if (n)
2045 goto found;
2046 }
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002047
Stephen Hemminger3d3b2d22008-03-23 22:43:56 -07002048 /* new hash chain */
2049 while (++h < FIB_TABLE_HASHSZ) {
2050 struct hlist_head *head = &net->ipv4.fib_table_hash[h];
Sasha Levinb67bfe02013-02-27 17:06:00 -08002051 hlist_for_each_entry_rcu(tb, head, tb_hlist) {
Stephen Hemminger3d3b2d22008-03-23 22:43:56 -07002052 n = fib_trie_get_first(iter, (struct trie *) tb->tb_data);
2053 if (n)
2054 goto found;
2055 }
2056 }
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002057 return NULL;
Stephen Hemminger3d3b2d22008-03-23 22:43:56 -07002058
2059found:
2060 iter->tb = tb;
2061 return n;
Robert Olsson19baf832005-06-21 12:43:18 -07002062}
2063
2064static void fib_trie_seq_stop(struct seq_file *seq, void *v)
Stephen Hemmingerc95aaf92008-01-12 21:25:02 -08002065 __releases(RCU)
Robert Olsson19baf832005-06-21 12:43:18 -07002066{
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002067 rcu_read_unlock();
Robert Olsson19baf832005-06-21 12:43:18 -07002068}
2069
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002070static void seq_indent(struct seq_file *seq, int n)
2071{
Eric Dumazeta034ee32010-09-09 23:32:28 +00002072 while (n-- > 0)
2073 seq_puts(seq, " ");
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002074}
Robert Olsson19baf832005-06-21 12:43:18 -07002075
Eric Dumazet28d36e32008-01-14 23:09:56 -08002076static inline const char *rtn_scope(char *buf, size_t len, enum rt_scope_t s)
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002077{
Stephen Hemminger132adf52007-03-08 20:44:43 -08002078 switch (s) {
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002079 case RT_SCOPE_UNIVERSE: return "universe";
2080 case RT_SCOPE_SITE: return "site";
2081 case RT_SCOPE_LINK: return "link";
2082 case RT_SCOPE_HOST: return "host";
2083 case RT_SCOPE_NOWHERE: return "nowhere";
2084 default:
Eric Dumazet28d36e32008-01-14 23:09:56 -08002085 snprintf(buf, len, "scope=%d", s);
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002086 return buf;
2087 }
2088}
2089
Jan Engelhardt36cbd3d2009-08-05 10:42:58 -07002090static const char *const rtn_type_names[__RTN_MAX] = {
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002091 [RTN_UNSPEC] = "UNSPEC",
2092 [RTN_UNICAST] = "UNICAST",
2093 [RTN_LOCAL] = "LOCAL",
2094 [RTN_BROADCAST] = "BROADCAST",
2095 [RTN_ANYCAST] = "ANYCAST",
2096 [RTN_MULTICAST] = "MULTICAST",
2097 [RTN_BLACKHOLE] = "BLACKHOLE",
2098 [RTN_UNREACHABLE] = "UNREACHABLE",
2099 [RTN_PROHIBIT] = "PROHIBIT",
2100 [RTN_THROW] = "THROW",
2101 [RTN_NAT] = "NAT",
2102 [RTN_XRESOLVE] = "XRESOLVE",
2103};
2104
Eric Dumazeta034ee32010-09-09 23:32:28 +00002105static inline const char *rtn_type(char *buf, size_t len, unsigned int t)
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002106{
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002107 if (t < __RTN_MAX && rtn_type_names[t])
2108 return rtn_type_names[t];
Eric Dumazet28d36e32008-01-14 23:09:56 -08002109 snprintf(buf, len, "type %u", t);
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002110 return buf;
2111}
2112
2113/* Pretty print the trie */
Robert Olsson19baf832005-06-21 12:43:18 -07002114static int fib_trie_seq_show(struct seq_file *seq, void *v)
2115{
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002116 const struct fib_trie_iter *iter = seq->private;
Alexander Duyckadaf9812014-12-31 10:55:47 -08002117 struct tnode *n = v;
Robert Olsson19baf832005-06-21 12:43:18 -07002118
Stephen Hemminger3d3b2d22008-03-23 22:43:56 -07002119 if (!node_parent_rcu(n))
2120 fib_table_print(seq, iter->tb);
Robert Olsson095b8502007-01-26 19:06:01 -08002121
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002122 if (IS_TNODE(n)) {
Alexander Duyckadaf9812014-12-31 10:55:47 -08002123 __be32 prf = htonl(n->key);
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002124
Alexander Duycke9b44012014-12-31 10:56:12 -08002125 seq_indent(seq, iter->depth-1);
2126 seq_printf(seq, " +-- %pI4/%zu %u %u %u\n",
2127 &prf, KEYLENGTH - n->pos - n->bits, n->bits,
2128 n->full_children, n->empty_children);
Olof Johansson91b9a272005-08-09 20:24:39 -07002129 } else {
Alexander Duyckadaf9812014-12-31 10:55:47 -08002130 __be32 val = htonl(n->key);
Alexander Duyck79e5ad22015-02-25 15:31:51 -08002131 struct fib_alias *fa;
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002132
2133 seq_indent(seq, iter->depth);
Harvey Harrison673d57e2008-10-31 00:53:57 -07002134 seq_printf(seq, " |-- %pI4\n", &val);
Eric Dumazet28d36e32008-01-14 23:09:56 -08002135
Alexander Duyck79e5ad22015-02-25 15:31:51 -08002136 hlist_for_each_entry_rcu(fa, &n->leaf, fa_list) {
2137 char buf1[32], buf2[32];
Eric Dumazet28d36e32008-01-14 23:09:56 -08002138
Alexander Duyck79e5ad22015-02-25 15:31:51 -08002139 seq_indent(seq, iter->depth + 1);
2140 seq_printf(seq, " /%zu %s %s",
2141 KEYLENGTH - fa->fa_slen,
2142 rtn_scope(buf1, sizeof(buf1),
2143 fa->fa_info->fib_scope),
2144 rtn_type(buf2, sizeof(buf2),
2145 fa->fa_type));
2146 if (fa->fa_tos)
2147 seq_printf(seq, " tos=%d", fa->fa_tos);
2148 seq_putc(seq, '\n');
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002149 }
Robert Olsson19baf832005-06-21 12:43:18 -07002150 }
2151
2152 return 0;
2153}
2154
Stephen Hemmingerf6908082007-03-12 14:34:29 -07002155static const struct seq_operations fib_trie_seq_ops = {
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002156 .start = fib_trie_seq_start,
2157 .next = fib_trie_seq_next,
2158 .stop = fib_trie_seq_stop,
2159 .show = fib_trie_seq_show,
Robert Olsson19baf832005-06-21 12:43:18 -07002160};
2161
2162static int fib_trie_seq_open(struct inode *inode, struct file *file)
2163{
Denis V. Lunev1c340b22008-01-10 03:27:17 -08002164 return seq_open_net(inode, file, &fib_trie_seq_ops,
2165 sizeof(struct fib_trie_iter));
Robert Olsson19baf832005-06-21 12:43:18 -07002166}
2167
Arjan van de Ven9a321442007-02-12 00:55:35 -08002168static const struct file_operations fib_trie_fops = {
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002169 .owner = THIS_MODULE,
2170 .open = fib_trie_seq_open,
2171 .read = seq_read,
2172 .llseek = seq_lseek,
Denis V. Lunev1c340b22008-01-10 03:27:17 -08002173 .release = seq_release_net,
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002174};
2175
Stephen Hemminger8315f5d2008-02-11 21:14:39 -08002176struct fib_route_iter {
2177 struct seq_net_private p;
Alexander Duyck8be33e92015-03-04 14:59:19 -08002178 struct fib_table *main_tb;
2179 struct tnode *tnode;
Stephen Hemminger8315f5d2008-02-11 21:14:39 -08002180 loff_t pos;
2181 t_key key;
2182};
2183
Alexander Duyckadaf9812014-12-31 10:55:47 -08002184static struct tnode *fib_route_get_idx(struct fib_route_iter *iter, loff_t pos)
Stephen Hemminger8315f5d2008-02-11 21:14:39 -08002185{
Alexander Duyck8be33e92015-03-04 14:59:19 -08002186 struct fib_table *tb = iter->main_tb;
2187 struct tnode *l, **tp = &iter->tnode;
2188 struct trie *t;
2189 t_key key;
Stephen Hemminger8315f5d2008-02-11 21:14:39 -08002190
Alexander Duyck8be33e92015-03-04 14:59:19 -08002191 /* use cache location of next-to-find key */
2192 if (iter->pos > 0 && pos >= iter->pos) {
Stephen Hemminger8315f5d2008-02-11 21:14:39 -08002193 pos -= iter->pos;
Alexander Duyck8be33e92015-03-04 14:59:19 -08002194 key = iter->key;
2195 } else {
2196 t = (struct trie *)tb->tb_data;
2197 iter->tnode = rcu_dereference_rtnl(t->trie);
Stephen Hemminger8315f5d2008-02-11 21:14:39 -08002198 iter->pos = 0;
Alexander Duyck8be33e92015-03-04 14:59:19 -08002199 key = 0;
Stephen Hemminger8315f5d2008-02-11 21:14:39 -08002200 }
2201
Alexander Duyck8be33e92015-03-04 14:59:19 -08002202 while ((l = leaf_walk_rcu(tp, key)) != NULL) {
2203 key = l->key + 1;
Stephen Hemminger8315f5d2008-02-11 21:14:39 -08002204 iter->pos++;
Alexander Duyck8be33e92015-03-04 14:59:19 -08002205
2206 if (pos-- <= 0)
2207 break;
2208
2209 l = NULL;
2210
2211 /* handle unlikely case of a key wrap */
2212 if (!key)
2213 break;
Stephen Hemminger8315f5d2008-02-11 21:14:39 -08002214 }
2215
2216 if (l)
Alexander Duyck8be33e92015-03-04 14:59:19 -08002217 iter->key = key; /* remember it */
Stephen Hemminger8315f5d2008-02-11 21:14:39 -08002218 else
2219 iter->pos = 0; /* forget it */
2220
2221 return l;
2222}
2223
2224static void *fib_route_seq_start(struct seq_file *seq, loff_t *pos)
2225 __acquires(RCU)
2226{
2227 struct fib_route_iter *iter = seq->private;
2228 struct fib_table *tb;
Alexander Duyck8be33e92015-03-04 14:59:19 -08002229 struct trie *t;
Stephen Hemminger8315f5d2008-02-11 21:14:39 -08002230
2231 rcu_read_lock();
Alexander Duyck8be33e92015-03-04 14:59:19 -08002232
YOSHIFUJI Hideaki12188542008-03-26 02:36:06 +09002233 tb = fib_get_table(seq_file_net(seq), RT_TABLE_MAIN);
Stephen Hemminger8315f5d2008-02-11 21:14:39 -08002234 if (!tb)
2235 return NULL;
2236
Alexander Duyck8be33e92015-03-04 14:59:19 -08002237 iter->main_tb = tb;
2238
2239 if (*pos != 0)
2240 return fib_route_get_idx(iter, *pos);
2241
2242 t = (struct trie *)tb->tb_data;
2243 iter->tnode = rcu_dereference_rtnl(t->trie);
2244 iter->pos = 0;
2245 iter->key = 0;
2246
2247 return SEQ_START_TOKEN;
Stephen Hemminger8315f5d2008-02-11 21:14:39 -08002248}
2249
2250static void *fib_route_seq_next(struct seq_file *seq, void *v, loff_t *pos)
2251{
2252 struct fib_route_iter *iter = seq->private;
Alexander Duyck8be33e92015-03-04 14:59:19 -08002253 struct tnode *l = NULL;
2254 t_key key = iter->key;
Stephen Hemminger8315f5d2008-02-11 21:14:39 -08002255
2256 ++*pos;
Alexander Duyck8be33e92015-03-04 14:59:19 -08002257
2258 /* only allow key of 0 for start of sequence */
2259 if ((v == SEQ_START_TOKEN) || key)
2260 l = leaf_walk_rcu(&iter->tnode, key);
2261
2262 if (l) {
2263 iter->key = l->key + 1;
Stephen Hemminger8315f5d2008-02-11 21:14:39 -08002264 iter->pos++;
Alexander Duyck8be33e92015-03-04 14:59:19 -08002265 } else {
2266 iter->pos = 0;
Stephen Hemminger8315f5d2008-02-11 21:14:39 -08002267 }
2268
Stephen Hemminger8315f5d2008-02-11 21:14:39 -08002269 return l;
2270}
2271
2272static void fib_route_seq_stop(struct seq_file *seq, void *v)
2273 __releases(RCU)
2274{
2275 rcu_read_unlock();
2276}
2277
Eric Dumazeta034ee32010-09-09 23:32:28 +00002278static unsigned int fib_flag_trans(int type, __be32 mask, const struct fib_info *fi)
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002279{
Eric Dumazeta034ee32010-09-09 23:32:28 +00002280 unsigned int flags = 0;
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002281
Eric Dumazeta034ee32010-09-09 23:32:28 +00002282 if (type == RTN_UNREACHABLE || type == RTN_PROHIBIT)
2283 flags = RTF_REJECT;
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002284 if (fi && fi->fib_nh->nh_gw)
2285 flags |= RTF_GATEWAY;
Al Viro32ab5f82006-09-26 22:21:45 -07002286 if (mask == htonl(0xFFFFFFFF))
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002287 flags |= RTF_HOST;
2288 flags |= RTF_UP;
2289 return flags;
2290}
2291
2292/*
2293 * This outputs /proc/net/route.
2294 * The format of the file is not supposed to be changed
Eric Dumazeta034ee32010-09-09 23:32:28 +00002295 * and needs to be same as fib_hash output to avoid breaking
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002296 * legacy utilities
2297 */
2298static int fib_route_seq_show(struct seq_file *seq, void *v)
2299{
Alexander Duyck79e5ad22015-02-25 15:31:51 -08002300 struct fib_alias *fa;
Alexander Duyckadaf9812014-12-31 10:55:47 -08002301 struct tnode *l = v;
Alexander Duyck9b6ebad2015-02-25 15:31:44 -08002302 __be32 prefix;
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002303
2304 if (v == SEQ_START_TOKEN) {
2305 seq_printf(seq, "%-127s\n", "Iface\tDestination\tGateway "
2306 "\tFlags\tRefCnt\tUse\tMetric\tMask\t\tMTU"
2307 "\tWindow\tIRTT");
2308 return 0;
2309 }
2310
Alexander Duyck9b6ebad2015-02-25 15:31:44 -08002311 prefix = htonl(l->key);
2312
Alexander Duyck79e5ad22015-02-25 15:31:51 -08002313 hlist_for_each_entry_rcu(fa, &l->leaf, fa_list) {
2314 const struct fib_info *fi = fa->fa_info;
2315 __be32 mask = inet_make_mask(KEYLENGTH - fa->fa_slen);
2316 unsigned int flags = fib_flag_trans(fa->fa_type, mask, fi);
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002317
Alexander Duyck79e5ad22015-02-25 15:31:51 -08002318 if ((fa->fa_type == RTN_BROADCAST) ||
2319 (fa->fa_type == RTN_MULTICAST))
2320 continue;
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002321
Alexander Duyck79e5ad22015-02-25 15:31:51 -08002322 seq_setwidth(seq, 127);
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002323
Alexander Duyck79e5ad22015-02-25 15:31:51 -08002324 if (fi)
2325 seq_printf(seq,
2326 "%s\t%08X\t%08X\t%04X\t%d\t%u\t"
2327 "%d\t%08X\t%d\t%u\t%u",
2328 fi->fib_dev ? fi->fib_dev->name : "*",
2329 prefix,
2330 fi->fib_nh->nh_gw, flags, 0, 0,
2331 fi->fib_priority,
2332 mask,
2333 (fi->fib_advmss ?
2334 fi->fib_advmss + 40 : 0),
2335 fi->fib_window,
2336 fi->fib_rtt >> 3);
2337 else
2338 seq_printf(seq,
2339 "*\t%08X\t%08X\t%04X\t%d\t%u\t"
2340 "%d\t%08X\t%d\t%u\t%u",
2341 prefix, 0, flags, 0, 0, 0,
2342 mask, 0, 0, 0);
Tetsuo Handa652586d2013-11-14 14:31:57 -08002343
Alexander Duyck79e5ad22015-02-25 15:31:51 -08002344 seq_pad(seq, '\n');
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002345 }
2346
2347 return 0;
2348}
2349
Stephen Hemmingerf6908082007-03-12 14:34:29 -07002350static const struct seq_operations fib_route_seq_ops = {
Stephen Hemminger8315f5d2008-02-11 21:14:39 -08002351 .start = fib_route_seq_start,
2352 .next = fib_route_seq_next,
2353 .stop = fib_route_seq_stop,
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002354 .show = fib_route_seq_show,
2355};
2356
2357static int fib_route_seq_open(struct inode *inode, struct file *file)
2358{
Denis V. Lunev1c340b22008-01-10 03:27:17 -08002359 return seq_open_net(inode, file, &fib_route_seq_ops,
Stephen Hemminger8315f5d2008-02-11 21:14:39 -08002360 sizeof(struct fib_route_iter));
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002361}
2362
Arjan van de Ven9a321442007-02-12 00:55:35 -08002363static const struct file_operations fib_route_fops = {
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002364 .owner = THIS_MODULE,
2365 .open = fib_route_seq_open,
2366 .read = seq_read,
2367 .llseek = seq_lseek,
Denis V. Lunev1c340b22008-01-10 03:27:17 -08002368 .release = seq_release_net,
Robert Olsson19baf832005-06-21 12:43:18 -07002369};
2370
Denis V. Lunev61a02652008-01-10 03:21:09 -08002371int __net_init fib_proc_init(struct net *net)
Robert Olsson19baf832005-06-21 12:43:18 -07002372{
Gao fengd4beaa62013-02-18 01:34:54 +00002373 if (!proc_create("fib_trie", S_IRUGO, net->proc_net, &fib_trie_fops))
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002374 goto out1;
2375
Gao fengd4beaa62013-02-18 01:34:54 +00002376 if (!proc_create("fib_triestat", S_IRUGO, net->proc_net,
2377 &fib_triestat_fops))
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002378 goto out2;
2379
Gao fengd4beaa62013-02-18 01:34:54 +00002380 if (!proc_create("route", S_IRUGO, net->proc_net, &fib_route_fops))
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002381 goto out3;
2382
Robert Olsson19baf832005-06-21 12:43:18 -07002383 return 0;
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002384
2385out3:
Gao fengece31ff2013-02-18 01:34:56 +00002386 remove_proc_entry("fib_triestat", net->proc_net);
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002387out2:
Gao fengece31ff2013-02-18 01:34:56 +00002388 remove_proc_entry("fib_trie", net->proc_net);
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002389out1:
2390 return -ENOMEM;
Robert Olsson19baf832005-06-21 12:43:18 -07002391}
2392
Denis V. Lunev61a02652008-01-10 03:21:09 -08002393void __net_exit fib_proc_exit(struct net *net)
Robert Olsson19baf832005-06-21 12:43:18 -07002394{
Gao fengece31ff2013-02-18 01:34:56 +00002395 remove_proc_entry("fib_trie", net->proc_net);
2396 remove_proc_entry("fib_triestat", net->proc_net);
2397 remove_proc_entry("route", net->proc_net);
Robert Olsson19baf832005-06-21 12:43:18 -07002398}
2399
2400#endif /* CONFIG_PROC_FS */