blob: 2de43956c9d000d09ab452c3ee5478aead24caaa [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
Scott Feldman104616e2015-03-05 21:21:16 -08001539/* Caller must hold RTNL */
1540void fib_table_flush_external(struct fib_table *tb)
1541{
1542 struct trie *t = (struct trie *)tb->tb_data;
1543 struct fib_alias *fa;
1544 struct tnode *n, *pn;
1545 unsigned long cindex;
1546 unsigned char slen;
1547 int found = 0;
1548
1549 n = rcu_dereference(t->trie);
1550 if (!n)
1551 return;
1552
1553 pn = NULL;
1554 cindex = 0;
1555
1556 while (IS_TNODE(n)) {
1557 /* record pn and cindex for leaf walking */
1558 pn = n;
1559 cindex = 1ul << n->bits;
1560backtrace:
1561 /* walk trie in reverse order */
1562 do {
1563 while (!(cindex--)) {
1564 t_key pkey = pn->key;
1565
1566 n = pn;
1567 pn = node_parent(n);
1568
1569 /* resize completed node */
1570 resize(t, n);
1571
1572 /* if we got the root we are done */
1573 if (!pn)
1574 return;
1575
1576 cindex = get_index(pkey, pn);
1577 }
1578
1579 /* grab the next available node */
1580 n = tnode_get_child(pn, cindex);
1581 } while (!n);
1582 }
1583
1584 hlist_for_each_entry(fa, &n->leaf, fa_list) {
1585 struct fib_info *fi = fa->fa_info;
1586
1587 if (fi && (fi->fib_flags & RTNH_F_EXTERNAL)) {
1588 netdev_switch_fib_ipv4_del(n->key,
1589 KEYLENGTH - fa->fa_slen,
1590 fi, fa->fa_tos,
1591 fa->fa_type, tb->tb_id);
1592 }
1593 }
1594
1595 /* if trie is leaf only loop is completed */
1596 if (pn)
1597 goto backtrace;
1598}
1599
Alexander Duyck8be33e92015-03-04 14:59:19 -08001600/* Caller must hold RTNL. */
Stephen Hemminger16c6cf82009-09-20 10:35:36 +00001601int fib_table_flush(struct fib_table *tb)
Robert Olsson19baf832005-06-21 12:43:18 -07001602{
Alexander Duyck7289e6d2015-03-04 14:58:19 -08001603 struct trie *t = (struct trie *)tb->tb_data;
1604 struct hlist_node *tmp;
1605 struct fib_alias *fa;
1606 struct tnode *n, *pn;
1607 unsigned long cindex;
1608 unsigned char slen;
Stephen Hemminger82cfbb02008-01-22 21:55:32 -08001609 int found = 0;
Robert Olsson19baf832005-06-21 12:43:18 -07001610
Alexander Duyck7289e6d2015-03-04 14:58:19 -08001611 n = rcu_dereference(t->trie);
1612 if (!n)
1613 goto flush_complete;
Robert Olsson19baf832005-06-21 12:43:18 -07001614
Alexander Duyck7289e6d2015-03-04 14:58:19 -08001615 pn = NULL;
1616 cindex = 0;
1617
1618 while (IS_TNODE(n)) {
1619 /* record pn and cindex for leaf walking */
1620 pn = n;
1621 cindex = 1ul << n->bits;
1622backtrace:
1623 /* walk trie in reverse order */
1624 do {
1625 while (!(cindex--)) {
1626 t_key pkey = pn->key;
1627
1628 n = pn;
1629 pn = node_parent(n);
1630
1631 /* resize completed node */
1632 resize(t, n);
1633
1634 /* if we got the root we are done */
1635 if (!pn)
1636 goto flush_complete;
1637
1638 cindex = get_index(pkey, pn);
1639 }
1640
1641 /* grab the next available node */
1642 n = tnode_get_child(pn, cindex);
1643 } while (!n);
1644 }
1645
1646 /* track slen in case any prefixes survive */
1647 slen = 0;
1648
1649 hlist_for_each_entry_safe(fa, tmp, &n->leaf, fa_list) {
1650 struct fib_info *fi = fa->fa_info;
1651
1652 if (fi && (fi->fib_flags & RTNH_F_DEAD)) {
1653 hlist_del_rcu(&fa->fa_list);
1654 fib_release_info(fa->fa_info);
1655 alias_free_mem_rcu(fa);
1656 found++;
1657
1658 continue;
Alexander Duyck64c62722015-01-22 15:51:45 -08001659 }
1660
Alexander Duyck7289e6d2015-03-04 14:58:19 -08001661 slen = fa->fa_slen;
Robert Olsson19baf832005-06-21 12:43:18 -07001662 }
1663
Alexander Duyck7289e6d2015-03-04 14:58:19 -08001664 /* update leaf slen */
1665 n->slen = slen;
1666
1667 if (hlist_empty(&n->leaf)) {
1668 put_child_root(pn, t, n->key, NULL);
1669 node_free(n);
1670 } else {
Alexander Duyckd5d64872015-03-04 15:02:18 -08001671 leaf_pull_suffix(pn, n);
Alexander Duyck64c62722015-01-22 15:51:45 -08001672 }
Robert Olsson19baf832005-06-21 12:43:18 -07001673
Alexander Duyck7289e6d2015-03-04 14:58:19 -08001674 /* if trie is leaf only loop is completed */
1675 if (pn)
1676 goto backtrace;
1677flush_complete:
Stephen Hemminger0c7770c2005-08-23 21:59:41 -07001678 pr_debug("trie_flush found=%d\n", found);
Robert Olsson19baf832005-06-21 12:43:18 -07001679 return found;
1680}
1681
Alexander Duycka7e53532015-03-04 15:02:44 -08001682static void __trie_free_rcu(struct rcu_head *head)
Pavel Emelyanov4aa2c462010-10-28 02:00:43 +00001683{
Alexander Duycka7e53532015-03-04 15:02:44 -08001684 struct fib_table *tb = container_of(head, struct fib_table, rcu);
Alexander Duyck8274a972014-12-31 10:55:29 -08001685#ifdef CONFIG_IP_FIB_TRIE_STATS
1686 struct trie *t = (struct trie *)tb->tb_data;
1687
1688 free_percpu(t->stats);
1689#endif /* CONFIG_IP_FIB_TRIE_STATS */
Pavel Emelyanov4aa2c462010-10-28 02:00:43 +00001690 kfree(tb);
1691}
1692
Alexander Duycka7e53532015-03-04 15:02:44 -08001693void fib_free_table(struct fib_table *tb)
1694{
1695 call_rcu(&tb->rcu, __trie_free_rcu);
1696}
1697
Alexander Duyck79e5ad22015-02-25 15:31:51 -08001698static int fn_trie_dump_leaf(struct tnode *l, struct fib_table *tb,
1699 struct sk_buff *skb, struct netlink_callback *cb)
Robert Olsson19baf832005-06-21 12:43:18 -07001700{
Alexander Duyck79e5ad22015-02-25 15:31:51 -08001701 __be32 xkey = htonl(l->key);
Robert Olsson19baf832005-06-21 12:43:18 -07001702 struct fib_alias *fa;
Alexander Duyck79e5ad22015-02-25 15:31:51 -08001703 int i, s_i;
Robert Olsson19baf832005-06-21 12:43:18 -07001704
Alexander Duyck79e5ad22015-02-25 15:31:51 -08001705 s_i = cb->args[4];
Robert Olsson19baf832005-06-21 12:43:18 -07001706 i = 0;
1707
Robert Olsson2373ce12005-08-25 13:01:29 -07001708 /* rcu_read_lock is hold by caller */
Alexander Duyck79e5ad22015-02-25 15:31:51 -08001709 hlist_for_each_entry_rcu(fa, &l->leaf, fa_list) {
Robert Olsson19baf832005-06-21 12:43:18 -07001710 if (i < s_i) {
1711 i++;
1712 continue;
1713 }
Robert Olsson19baf832005-06-21 12:43:18 -07001714
Eric W. Biederman15e47302012-09-07 20:12:54 +00001715 if (fib_dump_info(skb, NETLINK_CB(cb->skb).portid,
Robert Olsson19baf832005-06-21 12:43:18 -07001716 cb->nlh->nlmsg_seq,
1717 RTM_NEWROUTE,
1718 tb->tb_id,
1719 fa->fa_type,
Thomas Grafbe403ea2006-08-17 18:15:17 -07001720 xkey,
Alexander Duyck9b6ebad2015-02-25 15:31:44 -08001721 KEYLENGTH - fa->fa_slen,
Robert Olsson19baf832005-06-21 12:43:18 -07001722 fa->fa_tos,
Stephen Hemminger64347f72008-01-22 21:55:01 -08001723 fa->fa_info, NLM_F_MULTI) < 0) {
Stephen Hemminger71d67e62008-01-31 16:45:47 -08001724 cb->args[4] = i;
Robert Olsson19baf832005-06-21 12:43:18 -07001725 return -1;
1726 }
Stephen Hemmingera88ee222008-01-22 21:56:11 -08001727 i++;
Robert Olsson19baf832005-06-21 12:43:18 -07001728 }
Stephen Hemmingera88ee222008-01-22 21:56:11 -08001729
Stephen Hemminger71d67e62008-01-31 16:45:47 -08001730 cb->args[4] = i;
Robert Olsson19baf832005-06-21 12:43:18 -07001731 return skb->len;
1732}
1733
Alexander Duycka7e53532015-03-04 15:02:44 -08001734/* rcu_read_lock needs to be hold by caller from readside */
Stephen Hemminger16c6cf82009-09-20 10:35:36 +00001735int fib_table_dump(struct fib_table *tb, struct sk_buff *skb,
1736 struct netlink_callback *cb)
Robert Olsson19baf832005-06-21 12:43:18 -07001737{
Alexander Duyck8be33e92015-03-04 14:59:19 -08001738 struct trie *t = (struct trie *)tb->tb_data;
1739 struct tnode *l, *tp;
Stephen Hemmingerd5ce8a02008-01-22 21:57:22 -08001740 /* Dump starting at last key.
1741 * Note: 0.0.0.0/0 (ie default) is first key.
1742 */
Alexander Duyck8be33e92015-03-04 14:59:19 -08001743 int count = cb->args[2];
1744 t_key key = cb->args[3];
Stephen Hemmingera88ee222008-01-22 21:56:11 -08001745
Alexander Duyck8be33e92015-03-04 14:59:19 -08001746 tp = rcu_dereference_rtnl(t->trie);
1747
1748 while ((l = leaf_walk_rcu(&tp, key)) != NULL) {
Stephen Hemmingera88ee222008-01-22 21:56:11 -08001749 if (fn_trie_dump_leaf(l, tb, skb, cb) < 0) {
Alexander Duyck8be33e92015-03-04 14:59:19 -08001750 cb->args[3] = key;
1751 cb->args[2] = count;
Stephen Hemmingera88ee222008-01-22 21:56:11 -08001752 return -1;
Robert Olsson19baf832005-06-21 12:43:18 -07001753 }
Stephen Hemmingerd5ce8a02008-01-22 21:57:22 -08001754
Stephen Hemminger71d67e62008-01-31 16:45:47 -08001755 ++count;
Alexander Duyck8be33e92015-03-04 14:59:19 -08001756 key = l->key + 1;
1757
Stephen Hemminger71d67e62008-01-31 16:45:47 -08001758 memset(&cb->args[4], 0,
1759 sizeof(cb->args) - 4*sizeof(cb->args[0]));
Alexander Duyck8be33e92015-03-04 14:59:19 -08001760
1761 /* stop loop if key wrapped back to 0 */
1762 if (key < l->key)
1763 break;
Robert Olsson19baf832005-06-21 12:43:18 -07001764 }
Alexander Duyck8be33e92015-03-04 14:59:19 -08001765
Alexander Duyck8be33e92015-03-04 14:59:19 -08001766 cb->args[3] = key;
1767 cb->args[2] = count;
1768
Robert Olsson19baf832005-06-21 12:43:18 -07001769 return skb->len;
Robert Olsson19baf832005-06-21 12:43:18 -07001770}
1771
David S. Miller5348ba82011-02-01 15:30:56 -08001772void __init fib_trie_init(void)
Stephen Hemminger7f9b8052008-01-14 23:14:20 -08001773{
Stephen Hemmingera07f5f52008-01-22 21:53:36 -08001774 fn_alias_kmem = kmem_cache_create("ip_fib_alias",
1775 sizeof(struct fib_alias),
Stephen Hemmingerbc3c8c12008-01-22 21:51:50 -08001776 0, SLAB_PANIC, NULL);
1777
1778 trie_leaf_kmem = kmem_cache_create("ip_fib_trie",
Alexander Duyck41b489f2015-03-04 15:02:33 -08001779 LEAF_SIZE,
Stephen Hemmingerbc3c8c12008-01-22 21:51:50 -08001780 0, SLAB_PANIC, NULL);
Stephen Hemminger7f9b8052008-01-14 23:14:20 -08001781}
Robert Olsson19baf832005-06-21 12:43:18 -07001782
Stephen Hemminger7f9b8052008-01-14 23:14:20 -08001783
David S. Miller5348ba82011-02-01 15:30:56 -08001784struct fib_table *fib_trie_table(u32 id)
Robert Olsson19baf832005-06-21 12:43:18 -07001785{
1786 struct fib_table *tb;
1787 struct trie *t;
1788
Robert Olsson19baf832005-06-21 12:43:18 -07001789 tb = kmalloc(sizeof(struct fib_table) + sizeof(struct trie),
1790 GFP_KERNEL);
1791 if (tb == NULL)
1792 return NULL;
1793
1794 tb->tb_id = id;
Denis V. Lunev971b8932007-12-08 00:32:23 -08001795 tb->tb_default = -1;
David S. Miller21d8c492011-04-14 14:49:37 -07001796 tb->tb_num_default = 0;
Robert Olsson19baf832005-06-21 12:43:18 -07001797
1798 t = (struct trie *) tb->tb_data;
Alexander Duyck8274a972014-12-31 10:55:29 -08001799 RCU_INIT_POINTER(t->trie, NULL);
1800#ifdef CONFIG_IP_FIB_TRIE_STATS
1801 t->stats = alloc_percpu(struct trie_use_stats);
1802 if (!t->stats) {
1803 kfree(tb);
1804 tb = NULL;
1805 }
1806#endif
Robert Olsson19baf832005-06-21 12:43:18 -07001807
Robert Olsson19baf832005-06-21 12:43:18 -07001808 return tb;
1809}
1810
Robert Olsson19baf832005-06-21 12:43:18 -07001811#ifdef CONFIG_PROC_FS
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07001812/* Depth first Trie walk iterator */
1813struct fib_trie_iter {
Denis V. Lunev1c340b22008-01-10 03:27:17 -08001814 struct seq_net_private p;
Stephen Hemminger3d3b2d22008-03-23 22:43:56 -07001815 struct fib_table *tb;
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07001816 struct tnode *tnode;
Eric Dumazeta034ee32010-09-09 23:32:28 +00001817 unsigned int index;
1818 unsigned int depth;
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07001819};
Robert Olsson19baf832005-06-21 12:43:18 -07001820
Alexander Duyckadaf9812014-12-31 10:55:47 -08001821static struct tnode *fib_trie_get_next(struct fib_trie_iter *iter)
Robert Olsson19baf832005-06-21 12:43:18 -07001822{
Alexander Duyck98293e82014-12-31 10:56:18 -08001823 unsigned long cindex = iter->index;
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07001824 struct tnode *tn = iter->tnode;
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07001825 struct tnode *p;
1826
Eric W. Biederman6640e692007-01-24 14:42:04 -08001827 /* A single entry routing table */
1828 if (!tn)
1829 return NULL;
1830
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07001831 pr_debug("get_next iter={node=%p index=%d depth=%d}\n",
1832 iter->tnode, iter->index, iter->depth);
1833rescan:
Alexander Duyck98293e82014-12-31 10:56:18 -08001834 while (cindex < tnode_child_length(tn)) {
Alexander Duyckadaf9812014-12-31 10:55:47 -08001835 struct tnode *n = tnode_get_child_rcu(tn, cindex);
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07001836
1837 if (n) {
1838 if (IS_LEAF(n)) {
1839 iter->tnode = tn;
1840 iter->index = cindex + 1;
1841 } else {
1842 /* push down one level */
Alexander Duyckadaf9812014-12-31 10:55:47 -08001843 iter->tnode = n;
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07001844 iter->index = 0;
1845 ++iter->depth;
1846 }
1847 return n;
1848 }
1849
1850 ++cindex;
1851 }
1852
1853 /* Current node exhausted, pop back up */
Alexander Duyckadaf9812014-12-31 10:55:47 -08001854 p = node_parent_rcu(tn);
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07001855 if (p) {
Alexander Duycke9b44012014-12-31 10:56:12 -08001856 cindex = get_index(tn->key, p) + 1;
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07001857 tn = p;
1858 --iter->depth;
1859 goto rescan;
1860 }
1861
1862 /* got root? */
Robert Olsson19baf832005-06-21 12:43:18 -07001863 return NULL;
1864}
1865
Alexander Duyckadaf9812014-12-31 10:55:47 -08001866static struct tnode *fib_trie_get_first(struct fib_trie_iter *iter,
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07001867 struct trie *t)
Robert Olsson19baf832005-06-21 12:43:18 -07001868{
Alexander Duyckadaf9812014-12-31 10:55:47 -08001869 struct tnode *n;
Robert Olsson5ddf0eb2006-03-20 21:34:12 -08001870
Stephen Hemminger132adf52007-03-08 20:44:43 -08001871 if (!t)
Robert Olsson5ddf0eb2006-03-20 21:34:12 -08001872 return NULL;
1873
1874 n = rcu_dereference(t->trie);
Stephen Hemminger3d3b2d22008-03-23 22:43:56 -07001875 if (!n)
Robert Olsson5ddf0eb2006-03-20 21:34:12 -08001876 return NULL;
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07001877
Stephen Hemminger3d3b2d22008-03-23 22:43:56 -07001878 if (IS_TNODE(n)) {
Alexander Duyckadaf9812014-12-31 10:55:47 -08001879 iter->tnode = n;
Stephen Hemminger3d3b2d22008-03-23 22:43:56 -07001880 iter->index = 0;
1881 iter->depth = 1;
1882 } else {
1883 iter->tnode = NULL;
1884 iter->index = 0;
1885 iter->depth = 0;
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07001886 }
Stephen Hemminger3d3b2d22008-03-23 22:43:56 -07001887
1888 return n;
Robert Olsson19baf832005-06-21 12:43:18 -07001889}
1890
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07001891static void trie_collect_stats(struct trie *t, struct trie_stat *s)
Robert Olsson19baf832005-06-21 12:43:18 -07001892{
Alexander Duyckadaf9812014-12-31 10:55:47 -08001893 struct tnode *n;
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07001894 struct fib_trie_iter iter;
Robert Olsson19baf832005-06-21 12:43:18 -07001895
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07001896 memset(s, 0, sizeof(*s));
Robert Olsson19baf832005-06-21 12:43:18 -07001897
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07001898 rcu_read_lock();
Stephen Hemminger3d3b2d22008-03-23 22:43:56 -07001899 for (n = fib_trie_get_first(&iter, t); n; n = fib_trie_get_next(&iter)) {
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07001900 if (IS_LEAF(n)) {
Alexander Duyck79e5ad22015-02-25 15:31:51 -08001901 struct fib_alias *fa;
Stephen Hemminger93672292008-01-22 21:54:05 -08001902
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07001903 s->leaves++;
1904 s->totdepth += iter.depth;
1905 if (iter.depth > s->maxdepth)
1906 s->maxdepth = iter.depth;
Stephen Hemminger93672292008-01-22 21:54:05 -08001907
Alexander Duyck79e5ad22015-02-25 15:31:51 -08001908 hlist_for_each_entry_rcu(fa, &n->leaf, fa_list)
Stephen Hemminger93672292008-01-22 21:54:05 -08001909 ++s->prefixes;
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07001910 } else {
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07001911 s->tnodes++;
Alexander Duyckadaf9812014-12-31 10:55:47 -08001912 if (n->bits < MAX_STAT_DEPTH)
1913 s->nodesizes[n->bits]++;
Alexander Duyck30cfe7c2015-01-22 15:51:33 -08001914 s->nullpointers += n->empty_children;
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07001915 }
1916 }
1917 rcu_read_unlock();
Robert Olsson19baf832005-06-21 12:43:18 -07001918}
1919
Stephen Hemmingerc877efb2005-07-19 14:01:51 -07001920/*
Robert Olsson19baf832005-06-21 12:43:18 -07001921 * This outputs /proc/net/fib_triestats
Robert Olsson19baf832005-06-21 12:43:18 -07001922 */
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07001923static void trie_show_stats(struct seq_file *seq, struct trie_stat *stat)
Robert Olsson19baf832005-06-21 12:43:18 -07001924{
Eric Dumazeta034ee32010-09-09 23:32:28 +00001925 unsigned int i, max, pointers, bytes, avdepth;
Robert Olsson19baf832005-06-21 12:43:18 -07001926
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07001927 if (stat->leaves)
1928 avdepth = stat->totdepth*100 / stat->leaves;
1929 else
1930 avdepth = 0;
Robert Olsson19baf832005-06-21 12:43:18 -07001931
Stephen Hemmingera07f5f52008-01-22 21:53:36 -08001932 seq_printf(seq, "\tAver depth: %u.%02d\n",
1933 avdepth / 100, avdepth % 100);
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07001934 seq_printf(seq, "\tMax depth: %u\n", stat->maxdepth);
Robert Olsson19baf832005-06-21 12:43:18 -07001935
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07001936 seq_printf(seq, "\tLeaves: %u\n", stat->leaves);
Alexander Duyck41b489f2015-03-04 15:02:33 -08001937 bytes = LEAF_SIZE * stat->leaves;
Stephen Hemminger93672292008-01-22 21:54:05 -08001938
1939 seq_printf(seq, "\tPrefixes: %u\n", stat->prefixes);
Alexander Duyck79e5ad22015-02-25 15:31:51 -08001940 bytes += sizeof(struct fib_alias) * stat->prefixes;
Stephen Hemminger93672292008-01-22 21:54:05 -08001941
Stephen Hemminger187b5182008-01-12 20:55:55 -08001942 seq_printf(seq, "\tInternal nodes: %u\n\t", stat->tnodes);
Alexander Duyck41b489f2015-03-04 15:02:33 -08001943 bytes += TNODE_SIZE(0) * stat->tnodes;
Robert Olsson19baf832005-06-21 12:43:18 -07001944
Robert Olsson06ef9212006-03-20 21:35:01 -08001945 max = MAX_STAT_DEPTH;
1946 while (max > 0 && stat->nodesizes[max-1] == 0)
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07001947 max--;
Robert Olsson19baf832005-06-21 12:43:18 -07001948
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07001949 pointers = 0;
Jerry Snitselaarf585a992013-07-22 12:01:58 -07001950 for (i = 1; i < max; i++)
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07001951 if (stat->nodesizes[i] != 0) {
Stephen Hemminger187b5182008-01-12 20:55:55 -08001952 seq_printf(seq, " %u: %u", i, stat->nodesizes[i]);
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07001953 pointers += (1<<i) * stat->nodesizes[i];
1954 }
1955 seq_putc(seq, '\n');
Stephen Hemminger187b5182008-01-12 20:55:55 -08001956 seq_printf(seq, "\tPointers: %u\n", pointers);
Robert Olsson19baf832005-06-21 12:43:18 -07001957
Alexander Duyckadaf9812014-12-31 10:55:47 -08001958 bytes += sizeof(struct tnode *) * pointers;
Stephen Hemminger187b5182008-01-12 20:55:55 -08001959 seq_printf(seq, "Null ptrs: %u\n", stat->nullpointers);
1960 seq_printf(seq, "Total size: %u kB\n", (bytes + 1023) / 1024);
Stephen Hemminger66a2f7f2008-01-12 21:23:17 -08001961}
Robert Olsson19baf832005-06-21 12:43:18 -07001962
1963#ifdef CONFIG_IP_FIB_TRIE_STATS
Stephen Hemminger66a2f7f2008-01-12 21:23:17 -08001964static void trie_show_usage(struct seq_file *seq,
Alexander Duyck8274a972014-12-31 10:55:29 -08001965 const struct trie_use_stats __percpu *stats)
Stephen Hemminger66a2f7f2008-01-12 21:23:17 -08001966{
Alexander Duyck8274a972014-12-31 10:55:29 -08001967 struct trie_use_stats s = { 0 };
1968 int cpu;
1969
1970 /* loop through all of the CPUs and gather up the stats */
1971 for_each_possible_cpu(cpu) {
1972 const struct trie_use_stats *pcpu = per_cpu_ptr(stats, cpu);
1973
1974 s.gets += pcpu->gets;
1975 s.backtrack += pcpu->backtrack;
1976 s.semantic_match_passed += pcpu->semantic_match_passed;
1977 s.semantic_match_miss += pcpu->semantic_match_miss;
1978 s.null_node_hit += pcpu->null_node_hit;
1979 s.resize_node_skipped += pcpu->resize_node_skipped;
1980 }
1981
Stephen Hemminger66a2f7f2008-01-12 21:23:17 -08001982 seq_printf(seq, "\nCounters:\n---------\n");
Alexander Duyck8274a972014-12-31 10:55:29 -08001983 seq_printf(seq, "gets = %u\n", s.gets);
1984 seq_printf(seq, "backtracks = %u\n", s.backtrack);
Stephen Hemmingera07f5f52008-01-22 21:53:36 -08001985 seq_printf(seq, "semantic match passed = %u\n",
Alexander Duyck8274a972014-12-31 10:55:29 -08001986 s.semantic_match_passed);
1987 seq_printf(seq, "semantic match miss = %u\n", s.semantic_match_miss);
1988 seq_printf(seq, "null node hit= %u\n", s.null_node_hit);
1989 seq_printf(seq, "skipped node resize = %u\n\n", s.resize_node_skipped);
Robert Olsson19baf832005-06-21 12:43:18 -07001990}
Stephen Hemminger66a2f7f2008-01-12 21:23:17 -08001991#endif /* CONFIG_IP_FIB_TRIE_STATS */
1992
Stephen Hemminger3d3b2d22008-03-23 22:43:56 -07001993static void fib_table_print(struct seq_file *seq, struct fib_table *tb)
Stephen Hemmingerd717a9a2008-01-14 23:11:54 -08001994{
Stephen Hemminger3d3b2d22008-03-23 22:43:56 -07001995 if (tb->tb_id == RT_TABLE_LOCAL)
1996 seq_puts(seq, "Local:\n");
1997 else if (tb->tb_id == RT_TABLE_MAIN)
1998 seq_puts(seq, "Main:\n");
1999 else
2000 seq_printf(seq, "Id %d:\n", tb->tb_id);
Stephen Hemmingerd717a9a2008-01-14 23:11:54 -08002001}
Robert Olsson19baf832005-06-21 12:43:18 -07002002
Stephen Hemminger3d3b2d22008-03-23 22:43:56 -07002003
Robert Olsson19baf832005-06-21 12:43:18 -07002004static int fib_triestat_seq_show(struct seq_file *seq, void *v)
2005{
Denis V. Lunev1c340b22008-01-10 03:27:17 -08002006 struct net *net = (struct net *)seq->private;
Stephen Hemminger3d3b2d22008-03-23 22:43:56 -07002007 unsigned int h;
Eric W. Biederman877a9bf2007-12-07 00:47:47 -08002008
Stephen Hemmingerd717a9a2008-01-14 23:11:54 -08002009 seq_printf(seq,
Stephen Hemmingera07f5f52008-01-22 21:53:36 -08002010 "Basic info: size of leaf:"
2011 " %Zd bytes, size of tnode: %Zd bytes.\n",
Alexander Duyck41b489f2015-03-04 15:02:33 -08002012 LEAF_SIZE, TNODE_SIZE(0));
Olof Johansson91b9a272005-08-09 20:24:39 -07002013
Stephen Hemminger3d3b2d22008-03-23 22:43:56 -07002014 for (h = 0; h < FIB_TABLE_HASHSZ; h++) {
2015 struct hlist_head *head = &net->ipv4.fib_table_hash[h];
Stephen Hemminger3d3b2d22008-03-23 22:43:56 -07002016 struct fib_table *tb;
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002017
Sasha Levinb67bfe02013-02-27 17:06:00 -08002018 hlist_for_each_entry_rcu(tb, head, tb_hlist) {
Stephen Hemminger3d3b2d22008-03-23 22:43:56 -07002019 struct trie *t = (struct trie *) tb->tb_data;
2020 struct trie_stat stat;
2021
2022 if (!t)
2023 continue;
2024
2025 fib_table_print(seq, tb);
2026
2027 trie_collect_stats(t, &stat);
2028 trie_show_stats(seq, &stat);
2029#ifdef CONFIG_IP_FIB_TRIE_STATS
Alexander Duyck8274a972014-12-31 10:55:29 -08002030 trie_show_usage(seq, t->stats);
Stephen Hemminger3d3b2d22008-03-23 22:43:56 -07002031#endif
2032 }
2033 }
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002034
Robert Olsson19baf832005-06-21 12:43:18 -07002035 return 0;
2036}
2037
Robert Olsson19baf832005-06-21 12:43:18 -07002038static int fib_triestat_seq_open(struct inode *inode, struct file *file)
2039{
Pavel Emelyanovde05c552008-07-18 04:07:21 -07002040 return single_open_net(inode, file, fib_triestat_seq_show);
Denis V. Lunev1c340b22008-01-10 03:27:17 -08002041}
2042
Arjan van de Ven9a321442007-02-12 00:55:35 -08002043static const struct file_operations fib_triestat_fops = {
Stephen Hemmingerc877efb2005-07-19 14:01:51 -07002044 .owner = THIS_MODULE,
2045 .open = fib_triestat_seq_open,
2046 .read = seq_read,
2047 .llseek = seq_lseek,
Pavel Emelyanovb6fcbdb2008-07-18 04:07:44 -07002048 .release = single_release_net,
Robert Olsson19baf832005-06-21 12:43:18 -07002049};
2050
Alexander Duyckadaf9812014-12-31 10:55:47 -08002051static struct tnode *fib_trie_get_idx(struct seq_file *seq, loff_t pos)
Robert Olsson19baf832005-06-21 12:43:18 -07002052{
YOSHIFUJI Hideaki12188542008-03-26 02:36:06 +09002053 struct fib_trie_iter *iter = seq->private;
2054 struct net *net = seq_file_net(seq);
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002055 loff_t idx = 0;
Stephen Hemminger3d3b2d22008-03-23 22:43:56 -07002056 unsigned int h;
Robert Olsson19baf832005-06-21 12:43:18 -07002057
Stephen Hemminger3d3b2d22008-03-23 22:43:56 -07002058 for (h = 0; h < FIB_TABLE_HASHSZ; h++) {
2059 struct hlist_head *head = &net->ipv4.fib_table_hash[h];
Stephen Hemminger3d3b2d22008-03-23 22:43:56 -07002060 struct fib_table *tb;
2061
Sasha Levinb67bfe02013-02-27 17:06:00 -08002062 hlist_for_each_entry_rcu(tb, head, tb_hlist) {
Alexander Duyckadaf9812014-12-31 10:55:47 -08002063 struct tnode *n;
Stephen Hemminger3d3b2d22008-03-23 22:43:56 -07002064
2065 for (n = fib_trie_get_first(iter,
2066 (struct trie *) tb->tb_data);
2067 n; n = fib_trie_get_next(iter))
2068 if (pos == idx++) {
2069 iter->tb = tb;
2070 return n;
2071 }
2072 }
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002073 }
Robert Olsson19baf832005-06-21 12:43:18 -07002074
Robert Olsson19baf832005-06-21 12:43:18 -07002075 return NULL;
2076}
2077
2078static void *fib_trie_seq_start(struct seq_file *seq, loff_t *pos)
Stephen Hemmingerc95aaf92008-01-12 21:25:02 -08002079 __acquires(RCU)
Robert Olsson19baf832005-06-21 12:43:18 -07002080{
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002081 rcu_read_lock();
YOSHIFUJI Hideaki12188542008-03-26 02:36:06 +09002082 return fib_trie_get_idx(seq, *pos);
Robert Olsson19baf832005-06-21 12:43:18 -07002083}
2084
2085static void *fib_trie_seq_next(struct seq_file *seq, void *v, loff_t *pos)
2086{
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002087 struct fib_trie_iter *iter = seq->private;
YOSHIFUJI Hideaki12188542008-03-26 02:36:06 +09002088 struct net *net = seq_file_net(seq);
Stephen Hemminger3d3b2d22008-03-23 22:43:56 -07002089 struct fib_table *tb = iter->tb;
2090 struct hlist_node *tb_node;
2091 unsigned int h;
Alexander Duyckadaf9812014-12-31 10:55:47 -08002092 struct tnode *n;
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002093
Robert Olsson19baf832005-06-21 12:43:18 -07002094 ++*pos;
Stephen Hemminger3d3b2d22008-03-23 22:43:56 -07002095 /* next node in same table */
2096 n = fib_trie_get_next(iter);
2097 if (n)
2098 return n;
Olof Johansson91b9a272005-08-09 20:24:39 -07002099
Stephen Hemminger3d3b2d22008-03-23 22:43:56 -07002100 /* walk rest of this hash chain */
2101 h = tb->tb_id & (FIB_TABLE_HASHSZ - 1);
Eric Dumazet0a5c0472011-03-31 01:51:35 -07002102 while ((tb_node = rcu_dereference(hlist_next_rcu(&tb->tb_hlist)))) {
Stephen Hemminger3d3b2d22008-03-23 22:43:56 -07002103 tb = hlist_entry(tb_node, struct fib_table, tb_hlist);
2104 n = fib_trie_get_first(iter, (struct trie *) tb->tb_data);
2105 if (n)
2106 goto found;
2107 }
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002108
Stephen Hemminger3d3b2d22008-03-23 22:43:56 -07002109 /* new hash chain */
2110 while (++h < FIB_TABLE_HASHSZ) {
2111 struct hlist_head *head = &net->ipv4.fib_table_hash[h];
Sasha Levinb67bfe02013-02-27 17:06:00 -08002112 hlist_for_each_entry_rcu(tb, head, tb_hlist) {
Stephen Hemminger3d3b2d22008-03-23 22:43:56 -07002113 n = fib_trie_get_first(iter, (struct trie *) tb->tb_data);
2114 if (n)
2115 goto found;
2116 }
2117 }
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002118 return NULL;
Stephen Hemminger3d3b2d22008-03-23 22:43:56 -07002119
2120found:
2121 iter->tb = tb;
2122 return n;
Robert Olsson19baf832005-06-21 12:43:18 -07002123}
2124
2125static void fib_trie_seq_stop(struct seq_file *seq, void *v)
Stephen Hemmingerc95aaf92008-01-12 21:25:02 -08002126 __releases(RCU)
Robert Olsson19baf832005-06-21 12:43:18 -07002127{
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002128 rcu_read_unlock();
Robert Olsson19baf832005-06-21 12:43:18 -07002129}
2130
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002131static void seq_indent(struct seq_file *seq, int n)
2132{
Eric Dumazeta034ee32010-09-09 23:32:28 +00002133 while (n-- > 0)
2134 seq_puts(seq, " ");
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002135}
Robert Olsson19baf832005-06-21 12:43:18 -07002136
Eric Dumazet28d36e32008-01-14 23:09:56 -08002137static inline const char *rtn_scope(char *buf, size_t len, enum rt_scope_t s)
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002138{
Stephen Hemminger132adf52007-03-08 20:44:43 -08002139 switch (s) {
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002140 case RT_SCOPE_UNIVERSE: return "universe";
2141 case RT_SCOPE_SITE: return "site";
2142 case RT_SCOPE_LINK: return "link";
2143 case RT_SCOPE_HOST: return "host";
2144 case RT_SCOPE_NOWHERE: return "nowhere";
2145 default:
Eric Dumazet28d36e32008-01-14 23:09:56 -08002146 snprintf(buf, len, "scope=%d", s);
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002147 return buf;
2148 }
2149}
2150
Jan Engelhardt36cbd3d2009-08-05 10:42:58 -07002151static const char *const rtn_type_names[__RTN_MAX] = {
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002152 [RTN_UNSPEC] = "UNSPEC",
2153 [RTN_UNICAST] = "UNICAST",
2154 [RTN_LOCAL] = "LOCAL",
2155 [RTN_BROADCAST] = "BROADCAST",
2156 [RTN_ANYCAST] = "ANYCAST",
2157 [RTN_MULTICAST] = "MULTICAST",
2158 [RTN_BLACKHOLE] = "BLACKHOLE",
2159 [RTN_UNREACHABLE] = "UNREACHABLE",
2160 [RTN_PROHIBIT] = "PROHIBIT",
2161 [RTN_THROW] = "THROW",
2162 [RTN_NAT] = "NAT",
2163 [RTN_XRESOLVE] = "XRESOLVE",
2164};
2165
Eric Dumazeta034ee32010-09-09 23:32:28 +00002166static inline const char *rtn_type(char *buf, size_t len, unsigned int t)
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002167{
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002168 if (t < __RTN_MAX && rtn_type_names[t])
2169 return rtn_type_names[t];
Eric Dumazet28d36e32008-01-14 23:09:56 -08002170 snprintf(buf, len, "type %u", t);
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002171 return buf;
2172}
2173
2174/* Pretty print the trie */
Robert Olsson19baf832005-06-21 12:43:18 -07002175static int fib_trie_seq_show(struct seq_file *seq, void *v)
2176{
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002177 const struct fib_trie_iter *iter = seq->private;
Alexander Duyckadaf9812014-12-31 10:55:47 -08002178 struct tnode *n = v;
Robert Olsson19baf832005-06-21 12:43:18 -07002179
Stephen Hemminger3d3b2d22008-03-23 22:43:56 -07002180 if (!node_parent_rcu(n))
2181 fib_table_print(seq, iter->tb);
Robert Olsson095b8502007-01-26 19:06:01 -08002182
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002183 if (IS_TNODE(n)) {
Alexander Duyckadaf9812014-12-31 10:55:47 -08002184 __be32 prf = htonl(n->key);
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002185
Alexander Duycke9b44012014-12-31 10:56:12 -08002186 seq_indent(seq, iter->depth-1);
2187 seq_printf(seq, " +-- %pI4/%zu %u %u %u\n",
2188 &prf, KEYLENGTH - n->pos - n->bits, n->bits,
2189 n->full_children, n->empty_children);
Olof Johansson91b9a272005-08-09 20:24:39 -07002190 } else {
Alexander Duyckadaf9812014-12-31 10:55:47 -08002191 __be32 val = htonl(n->key);
Alexander Duyck79e5ad22015-02-25 15:31:51 -08002192 struct fib_alias *fa;
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002193
2194 seq_indent(seq, iter->depth);
Harvey Harrison673d57e2008-10-31 00:53:57 -07002195 seq_printf(seq, " |-- %pI4\n", &val);
Eric Dumazet28d36e32008-01-14 23:09:56 -08002196
Alexander Duyck79e5ad22015-02-25 15:31:51 -08002197 hlist_for_each_entry_rcu(fa, &n->leaf, fa_list) {
2198 char buf1[32], buf2[32];
Eric Dumazet28d36e32008-01-14 23:09:56 -08002199
Alexander Duyck79e5ad22015-02-25 15:31:51 -08002200 seq_indent(seq, iter->depth + 1);
2201 seq_printf(seq, " /%zu %s %s",
2202 KEYLENGTH - fa->fa_slen,
2203 rtn_scope(buf1, sizeof(buf1),
2204 fa->fa_info->fib_scope),
2205 rtn_type(buf2, sizeof(buf2),
2206 fa->fa_type));
2207 if (fa->fa_tos)
2208 seq_printf(seq, " tos=%d", fa->fa_tos);
2209 seq_putc(seq, '\n');
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002210 }
Robert Olsson19baf832005-06-21 12:43:18 -07002211 }
2212
2213 return 0;
2214}
2215
Stephen Hemmingerf6908082007-03-12 14:34:29 -07002216static const struct seq_operations fib_trie_seq_ops = {
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002217 .start = fib_trie_seq_start,
2218 .next = fib_trie_seq_next,
2219 .stop = fib_trie_seq_stop,
2220 .show = fib_trie_seq_show,
Robert Olsson19baf832005-06-21 12:43:18 -07002221};
2222
2223static int fib_trie_seq_open(struct inode *inode, struct file *file)
2224{
Denis V. Lunev1c340b22008-01-10 03:27:17 -08002225 return seq_open_net(inode, file, &fib_trie_seq_ops,
2226 sizeof(struct fib_trie_iter));
Robert Olsson19baf832005-06-21 12:43:18 -07002227}
2228
Arjan van de Ven9a321442007-02-12 00:55:35 -08002229static const struct file_operations fib_trie_fops = {
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002230 .owner = THIS_MODULE,
2231 .open = fib_trie_seq_open,
2232 .read = seq_read,
2233 .llseek = seq_lseek,
Denis V. Lunev1c340b22008-01-10 03:27:17 -08002234 .release = seq_release_net,
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002235};
2236
Stephen Hemminger8315f5d2008-02-11 21:14:39 -08002237struct fib_route_iter {
2238 struct seq_net_private p;
Alexander Duyck8be33e92015-03-04 14:59:19 -08002239 struct fib_table *main_tb;
2240 struct tnode *tnode;
Stephen Hemminger8315f5d2008-02-11 21:14:39 -08002241 loff_t pos;
2242 t_key key;
2243};
2244
Alexander Duyckadaf9812014-12-31 10:55:47 -08002245static struct tnode *fib_route_get_idx(struct fib_route_iter *iter, loff_t pos)
Stephen Hemminger8315f5d2008-02-11 21:14:39 -08002246{
Alexander Duyck8be33e92015-03-04 14:59:19 -08002247 struct fib_table *tb = iter->main_tb;
2248 struct tnode *l, **tp = &iter->tnode;
2249 struct trie *t;
2250 t_key key;
Stephen Hemminger8315f5d2008-02-11 21:14:39 -08002251
Alexander Duyck8be33e92015-03-04 14:59:19 -08002252 /* use cache location of next-to-find key */
2253 if (iter->pos > 0 && pos >= iter->pos) {
Stephen Hemminger8315f5d2008-02-11 21:14:39 -08002254 pos -= iter->pos;
Alexander Duyck8be33e92015-03-04 14:59:19 -08002255 key = iter->key;
2256 } else {
2257 t = (struct trie *)tb->tb_data;
2258 iter->tnode = rcu_dereference_rtnl(t->trie);
Stephen Hemminger8315f5d2008-02-11 21:14:39 -08002259 iter->pos = 0;
Alexander Duyck8be33e92015-03-04 14:59:19 -08002260 key = 0;
Stephen Hemminger8315f5d2008-02-11 21:14:39 -08002261 }
2262
Alexander Duyck8be33e92015-03-04 14:59:19 -08002263 while ((l = leaf_walk_rcu(tp, key)) != NULL) {
2264 key = l->key + 1;
Stephen Hemminger8315f5d2008-02-11 21:14:39 -08002265 iter->pos++;
Alexander Duyck8be33e92015-03-04 14:59:19 -08002266
2267 if (pos-- <= 0)
2268 break;
2269
2270 l = NULL;
2271
2272 /* handle unlikely case of a key wrap */
2273 if (!key)
2274 break;
Stephen Hemminger8315f5d2008-02-11 21:14:39 -08002275 }
2276
2277 if (l)
Alexander Duyck8be33e92015-03-04 14:59:19 -08002278 iter->key = key; /* remember it */
Stephen Hemminger8315f5d2008-02-11 21:14:39 -08002279 else
2280 iter->pos = 0; /* forget it */
2281
2282 return l;
2283}
2284
2285static void *fib_route_seq_start(struct seq_file *seq, loff_t *pos)
2286 __acquires(RCU)
2287{
2288 struct fib_route_iter *iter = seq->private;
2289 struct fib_table *tb;
Alexander Duyck8be33e92015-03-04 14:59:19 -08002290 struct trie *t;
Stephen Hemminger8315f5d2008-02-11 21:14:39 -08002291
2292 rcu_read_lock();
Alexander Duyck8be33e92015-03-04 14:59:19 -08002293
YOSHIFUJI Hideaki12188542008-03-26 02:36:06 +09002294 tb = fib_get_table(seq_file_net(seq), RT_TABLE_MAIN);
Stephen Hemminger8315f5d2008-02-11 21:14:39 -08002295 if (!tb)
2296 return NULL;
2297
Alexander Duyck8be33e92015-03-04 14:59:19 -08002298 iter->main_tb = tb;
2299
2300 if (*pos != 0)
2301 return fib_route_get_idx(iter, *pos);
2302
2303 t = (struct trie *)tb->tb_data;
2304 iter->tnode = rcu_dereference_rtnl(t->trie);
2305 iter->pos = 0;
2306 iter->key = 0;
2307
2308 return SEQ_START_TOKEN;
Stephen Hemminger8315f5d2008-02-11 21:14:39 -08002309}
2310
2311static void *fib_route_seq_next(struct seq_file *seq, void *v, loff_t *pos)
2312{
2313 struct fib_route_iter *iter = seq->private;
Alexander Duyck8be33e92015-03-04 14:59:19 -08002314 struct tnode *l = NULL;
2315 t_key key = iter->key;
Stephen Hemminger8315f5d2008-02-11 21:14:39 -08002316
2317 ++*pos;
Alexander Duyck8be33e92015-03-04 14:59:19 -08002318
2319 /* only allow key of 0 for start of sequence */
2320 if ((v == SEQ_START_TOKEN) || key)
2321 l = leaf_walk_rcu(&iter->tnode, key);
2322
2323 if (l) {
2324 iter->key = l->key + 1;
Stephen Hemminger8315f5d2008-02-11 21:14:39 -08002325 iter->pos++;
Alexander Duyck8be33e92015-03-04 14:59:19 -08002326 } else {
2327 iter->pos = 0;
Stephen Hemminger8315f5d2008-02-11 21:14:39 -08002328 }
2329
Stephen Hemminger8315f5d2008-02-11 21:14:39 -08002330 return l;
2331}
2332
2333static void fib_route_seq_stop(struct seq_file *seq, void *v)
2334 __releases(RCU)
2335{
2336 rcu_read_unlock();
2337}
2338
Eric Dumazeta034ee32010-09-09 23:32:28 +00002339static unsigned int fib_flag_trans(int type, __be32 mask, const struct fib_info *fi)
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002340{
Eric Dumazeta034ee32010-09-09 23:32:28 +00002341 unsigned int flags = 0;
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002342
Eric Dumazeta034ee32010-09-09 23:32:28 +00002343 if (type == RTN_UNREACHABLE || type == RTN_PROHIBIT)
2344 flags = RTF_REJECT;
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002345 if (fi && fi->fib_nh->nh_gw)
2346 flags |= RTF_GATEWAY;
Al Viro32ab5f82006-09-26 22:21:45 -07002347 if (mask == htonl(0xFFFFFFFF))
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002348 flags |= RTF_HOST;
2349 flags |= RTF_UP;
2350 return flags;
2351}
2352
2353/*
2354 * This outputs /proc/net/route.
2355 * The format of the file is not supposed to be changed
Eric Dumazeta034ee32010-09-09 23:32:28 +00002356 * and needs to be same as fib_hash output to avoid breaking
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002357 * legacy utilities
2358 */
2359static int fib_route_seq_show(struct seq_file *seq, void *v)
2360{
Alexander Duyck79e5ad22015-02-25 15:31:51 -08002361 struct fib_alias *fa;
Alexander Duyckadaf9812014-12-31 10:55:47 -08002362 struct tnode *l = v;
Alexander Duyck9b6ebad2015-02-25 15:31:44 -08002363 __be32 prefix;
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002364
2365 if (v == SEQ_START_TOKEN) {
2366 seq_printf(seq, "%-127s\n", "Iface\tDestination\tGateway "
2367 "\tFlags\tRefCnt\tUse\tMetric\tMask\t\tMTU"
2368 "\tWindow\tIRTT");
2369 return 0;
2370 }
2371
Alexander Duyck9b6ebad2015-02-25 15:31:44 -08002372 prefix = htonl(l->key);
2373
Alexander Duyck79e5ad22015-02-25 15:31:51 -08002374 hlist_for_each_entry_rcu(fa, &l->leaf, fa_list) {
2375 const struct fib_info *fi = fa->fa_info;
2376 __be32 mask = inet_make_mask(KEYLENGTH - fa->fa_slen);
2377 unsigned int flags = fib_flag_trans(fa->fa_type, mask, fi);
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002378
Alexander Duyck79e5ad22015-02-25 15:31:51 -08002379 if ((fa->fa_type == RTN_BROADCAST) ||
2380 (fa->fa_type == RTN_MULTICAST))
2381 continue;
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002382
Alexander Duyck79e5ad22015-02-25 15:31:51 -08002383 seq_setwidth(seq, 127);
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002384
Alexander Duyck79e5ad22015-02-25 15:31:51 -08002385 if (fi)
2386 seq_printf(seq,
2387 "%s\t%08X\t%08X\t%04X\t%d\t%u\t"
2388 "%d\t%08X\t%d\t%u\t%u",
2389 fi->fib_dev ? fi->fib_dev->name : "*",
2390 prefix,
2391 fi->fib_nh->nh_gw, flags, 0, 0,
2392 fi->fib_priority,
2393 mask,
2394 (fi->fib_advmss ?
2395 fi->fib_advmss + 40 : 0),
2396 fi->fib_window,
2397 fi->fib_rtt >> 3);
2398 else
2399 seq_printf(seq,
2400 "*\t%08X\t%08X\t%04X\t%d\t%u\t"
2401 "%d\t%08X\t%d\t%u\t%u",
2402 prefix, 0, flags, 0, 0, 0,
2403 mask, 0, 0, 0);
Tetsuo Handa652586d2013-11-14 14:31:57 -08002404
Alexander Duyck79e5ad22015-02-25 15:31:51 -08002405 seq_pad(seq, '\n');
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002406 }
2407
2408 return 0;
2409}
2410
Stephen Hemmingerf6908082007-03-12 14:34:29 -07002411static const struct seq_operations fib_route_seq_ops = {
Stephen Hemminger8315f5d2008-02-11 21:14:39 -08002412 .start = fib_route_seq_start,
2413 .next = fib_route_seq_next,
2414 .stop = fib_route_seq_stop,
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002415 .show = fib_route_seq_show,
2416};
2417
2418static int fib_route_seq_open(struct inode *inode, struct file *file)
2419{
Denis V. Lunev1c340b22008-01-10 03:27:17 -08002420 return seq_open_net(inode, file, &fib_route_seq_ops,
Stephen Hemminger8315f5d2008-02-11 21:14:39 -08002421 sizeof(struct fib_route_iter));
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002422}
2423
Arjan van de Ven9a321442007-02-12 00:55:35 -08002424static const struct file_operations fib_route_fops = {
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002425 .owner = THIS_MODULE,
2426 .open = fib_route_seq_open,
2427 .read = seq_read,
2428 .llseek = seq_lseek,
Denis V. Lunev1c340b22008-01-10 03:27:17 -08002429 .release = seq_release_net,
Robert Olsson19baf832005-06-21 12:43:18 -07002430};
2431
Denis V. Lunev61a02652008-01-10 03:21:09 -08002432int __net_init fib_proc_init(struct net *net)
Robert Olsson19baf832005-06-21 12:43:18 -07002433{
Gao fengd4beaa62013-02-18 01:34:54 +00002434 if (!proc_create("fib_trie", S_IRUGO, net->proc_net, &fib_trie_fops))
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002435 goto out1;
2436
Gao fengd4beaa62013-02-18 01:34:54 +00002437 if (!proc_create("fib_triestat", S_IRUGO, net->proc_net,
2438 &fib_triestat_fops))
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002439 goto out2;
2440
Gao fengd4beaa62013-02-18 01:34:54 +00002441 if (!proc_create("route", S_IRUGO, net->proc_net, &fib_route_fops))
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002442 goto out3;
2443
Robert Olsson19baf832005-06-21 12:43:18 -07002444 return 0;
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002445
2446out3:
Gao fengece31ff2013-02-18 01:34:56 +00002447 remove_proc_entry("fib_triestat", net->proc_net);
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002448out2:
Gao fengece31ff2013-02-18 01:34:56 +00002449 remove_proc_entry("fib_trie", net->proc_net);
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002450out1:
2451 return -ENOMEM;
Robert Olsson19baf832005-06-21 12:43:18 -07002452}
2453
Denis V. Lunev61a02652008-01-10 03:21:09 -08002454void __net_exit fib_proc_exit(struct net *net)
Robert Olsson19baf832005-06-21 12:43:18 -07002455{
Gao fengece31ff2013-02-18 01:34:56 +00002456 remove_proc_entry("fib_trie", net->proc_net);
2457 remove_proc_entry("fib_triestat", net->proc_net);
2458 remove_proc_entry("route", net->proc_net);
Robert Olsson19baf832005-06-21 12:43:18 -07002459}
2460
2461#endif /* CONFIG_PROC_FS */