blob: 87fc9a466fa21c718722de1c189c289049d7be48 [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
Robert Olsson19baf832005-06-21 12:43:18 -070086#define KEYLENGTH (8*sizeof(t_key))
Robert Olsson19baf832005-06-21 12:43:18 -070087
Robert Olsson19baf832005-06-21 12:43:18 -070088typedef unsigned int t_key;
89
Alexander Duyck64c9b6f2014-12-31 10:55:35 -080090#define IS_TNODE(n) ((n)->bits)
91#define IS_LEAF(n) (!(n)->bits)
Robert Olsson2373ce12005-08-25 13:01:29 -070092
Alexander Duycke9b44012014-12-31 10:56:12 -080093#define get_index(_key, _kv) (((_key) ^ (_kv)->key) >> (_kv)->pos)
Alexander Duyck9f9e6362014-12-31 10:55:54 -080094
Alexander Duyck64c9b6f2014-12-31 10:55:35 -080095struct tnode {
96 t_key key;
97 unsigned char bits; /* 2log(KEYLENGTH) bits needed */
98 unsigned char pos; /* 2log(KEYLENGTH) bits needed */
99 struct tnode __rcu *parent;
Alexander Duyck37fd30f2014-12-31 10:55:41 -0800100 struct rcu_head rcu;
Alexander Duyckadaf9812014-12-31 10:55:47 -0800101 union {
102 /* The fields in this struct are valid if bits > 0 (TNODE) */
103 struct {
104 unsigned int full_children; /* KEYLENGTH bits needed */
105 unsigned int empty_children; /* KEYLENGTH bits needed */
106 struct tnode __rcu *child[0];
107 };
108 /* This list pointer if valid if bits == 0 (LEAF) */
109 struct hlist_head list;
110 };
Robert Olsson19baf832005-06-21 12:43:18 -0700111};
112
113struct leaf_info {
114 struct hlist_node hlist;
115 int plen;
Eric Dumazet5c745012011-07-18 03:16:33 +0000116 u32 mask_plen; /* ntohl(inet_make_mask(plen)) */
Robert Olsson19baf832005-06-21 12:43:18 -0700117 struct list_head falh;
Eric Dumazet5c745012011-07-18 03:16:33 +0000118 struct rcu_head rcu;
Robert Olsson19baf832005-06-21 12:43:18 -0700119};
120
Robert Olsson19baf832005-06-21 12:43:18 -0700121#ifdef CONFIG_IP_FIB_TRIE_STATS
122struct trie_use_stats {
123 unsigned int gets;
124 unsigned int backtrack;
125 unsigned int semantic_match_passed;
126 unsigned int semantic_match_miss;
127 unsigned int null_node_hit;
Robert Olsson2f368952005-07-05 15:02:40 -0700128 unsigned int resize_node_skipped;
Robert Olsson19baf832005-06-21 12:43:18 -0700129};
130#endif
131
132struct trie_stat {
133 unsigned int totdepth;
134 unsigned int maxdepth;
135 unsigned int tnodes;
136 unsigned int leaves;
137 unsigned int nullpointers;
Stephen Hemminger93672292008-01-22 21:54:05 -0800138 unsigned int prefixes;
Robert Olsson06ef9212006-03-20 21:35:01 -0800139 unsigned int nodesizes[MAX_STAT_DEPTH];
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700140};
Robert Olsson19baf832005-06-21 12:43:18 -0700141
142struct trie {
Alexander Duyckadaf9812014-12-31 10:55:47 -0800143 struct tnode __rcu *trie;
Robert Olsson19baf832005-06-21 12:43:18 -0700144#ifdef CONFIG_IP_FIB_TRIE_STATS
Alexander Duyck8274a972014-12-31 10:55:29 -0800145 struct trie_use_stats __percpu *stats;
Robert Olsson19baf832005-06-21 12:43:18 -0700146#endif
Robert Olsson19baf832005-06-21 12:43:18 -0700147};
148
Alexander Duyckff181ed2014-12-31 10:56:43 -0800149static void resize(struct trie *t, struct tnode *tn);
Jarek Poplawskic3059472009-07-14 08:33:08 +0000150static size_t tnode_free_size;
151
152/*
153 * synchronize_rcu after call_rcu for that many pages; it should be especially
154 * useful before resizing the root node with PREEMPT_NONE configs; the value was
155 * obtained experimentally, aiming to avoid visible slowdown.
156 */
157static const int sync_pages = 128;
Robert Olsson19baf832005-06-21 12:43:18 -0700158
Christoph Lametere18b8902006-12-06 20:33:20 -0800159static struct kmem_cache *fn_alias_kmem __read_mostly;
Stephen Hemmingerbc3c8c12008-01-22 21:51:50 -0800160static struct kmem_cache *trie_leaf_kmem __read_mostly;
Robert Olsson19baf832005-06-21 12:43:18 -0700161
Alexander Duyck64c9b6f2014-12-31 10:55:35 -0800162/* caller must hold RTNL */
163#define node_parent(n) rtnl_dereference((n)->parent)
Eric Dumazet0a5c0472011-03-31 01:51:35 -0700164
Alexander Duyck64c9b6f2014-12-31 10:55:35 -0800165/* caller must hold RCU read lock or RTNL */
166#define node_parent_rcu(n) rcu_dereference_rtnl((n)->parent)
Eric Dumazet0a5c0472011-03-31 01:51:35 -0700167
Alexander Duyck64c9b6f2014-12-31 10:55:35 -0800168/* wrapper for rcu_assign_pointer */
Alexander Duyckadaf9812014-12-31 10:55:47 -0800169static inline void node_set_parent(struct tnode *n, struct tnode *tp)
Stephen Hemminger06801912007-08-10 15:22:13 -0700170{
Alexander Duyckadaf9812014-12-31 10:55:47 -0800171 if (n)
172 rcu_assign_pointer(n->parent, tp);
Alexander Duyck64c9b6f2014-12-31 10:55:35 -0800173}
174
175#define NODE_INIT_PARENT(n, p) RCU_INIT_POINTER((n)->parent, p)
176
177/* This provides us with the number of children in this node, in the case of a
178 * leaf this will return 0 meaning none of the children are accessible.
179 */
Alexander Duyck98293e82014-12-31 10:56:18 -0800180static inline unsigned long tnode_child_length(const struct tnode *tn)
Alexander Duyck64c9b6f2014-12-31 10:55:35 -0800181{
182 return (1ul << tn->bits) & ~(1ul);
Stephen Hemminger06801912007-08-10 15:22:13 -0700183}
Robert Olsson2373ce12005-08-25 13:01:29 -0700184
Alexander Duyck98293e82014-12-31 10:56:18 -0800185/* caller must hold RTNL */
186static inline struct tnode *tnode_get_child(const struct tnode *tn,
187 unsigned long i)
Robert Olsson19baf832005-06-21 12:43:18 -0700188{
Eric Dumazet0a5c0472011-03-31 01:51:35 -0700189 return rtnl_dereference(tn->child[i]);
Eric Dumazetb59cfbf2008-01-18 03:31:36 -0800190}
191
Alexander Duyck98293e82014-12-31 10:56:18 -0800192/* caller must hold RCU read lock or RTNL */
193static inline struct tnode *tnode_get_child_rcu(const struct tnode *tn,
194 unsigned long i)
Eric Dumazetb59cfbf2008-01-18 03:31:36 -0800195{
Eric Dumazet0a5c0472011-03-31 01:51:35 -0700196 return rcu_dereference_rtnl(tn->child[i]);
Robert Olsson19baf832005-06-21 12:43:18 -0700197}
198
Alexander Duycke9b44012014-12-31 10:56:12 -0800199/* To understand this stuff, an understanding of keys and all their bits is
200 * necessary. Every node in the trie has a key associated with it, but not
201 * all of the bits in that key are significant.
202 *
203 * Consider a node 'n' and its parent 'tp'.
204 *
205 * If n is a leaf, every bit in its key is significant. Its presence is
206 * necessitated by path compression, since during a tree traversal (when
207 * searching for a leaf - unless we are doing an insertion) we will completely
208 * ignore all skipped bits we encounter. Thus we need to verify, at the end of
209 * a potentially successful search, that we have indeed been walking the
210 * correct key path.
211 *
212 * Note that we can never "miss" the correct key in the tree if present by
213 * following the wrong path. Path compression ensures that segments of the key
214 * that are the same for all keys with a given prefix are skipped, but the
215 * skipped part *is* identical for each node in the subtrie below the skipped
216 * bit! trie_insert() in this implementation takes care of that.
217 *
218 * if n is an internal node - a 'tnode' here, the various parts of its key
219 * have many different meanings.
220 *
221 * Example:
222 * _________________________________________________________________
223 * | i | i | i | i | i | i | i | N | N | N | S | S | S | S | S | C |
224 * -----------------------------------------------------------------
225 * 31 30 29 28 27 26 25 24 23 22 21 20 19 18 17 16
226 *
227 * _________________________________________________________________
228 * | C | C | C | u | u | u | u | u | u | u | u | u | u | u | u | u |
229 * -----------------------------------------------------------------
230 * 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
231 *
232 * tp->pos = 22
233 * tp->bits = 3
234 * n->pos = 13
235 * n->bits = 4
236 *
237 * First, let's just ignore the bits that come before the parent tp, that is
238 * the bits from (tp->pos + tp->bits) to 31. They are *known* but at this
239 * point we do not use them for anything.
240 *
241 * The bits from (tp->pos) to (tp->pos + tp->bits - 1) - "N", above - are the
242 * index into the parent's child array. That is, they will be used to find
243 * 'n' among tp's children.
244 *
245 * The bits from (n->pos + n->bits) to (tn->pos - 1) - "S" - are skipped bits
246 * for the node n.
247 *
248 * All the bits we have seen so far are significant to the node n. The rest
249 * of the bits are really not needed or indeed known in n->key.
250 *
251 * The bits from (n->pos) to (n->pos + n->bits - 1) - "C" - are the index into
252 * n's child array, and will of course be different for each child.
253 *
254 * The rest of the bits, from 0 to (n->pos + n->bits), are completely unknown
255 * at this point.
256 */
Robert Olsson19baf832005-06-21 12:43:18 -0700257
Denis V. Lunevf5026fa2007-12-13 09:47:57 -0800258static const int halve_threshold = 25;
259static const int inflate_threshold = 50;
Jarek Poplawski345aa032009-07-07 19:39:16 -0700260static const int halve_threshold_root = 15;
Jens Låås80b71b82009-08-28 23:57:15 -0700261static const int inflate_threshold_root = 30;
Robert Olsson2373ce12005-08-25 13:01:29 -0700262
263static void __alias_free_mem(struct rcu_head *head)
264{
265 struct fib_alias *fa = container_of(head, struct fib_alias, rcu);
266 kmem_cache_free(fn_alias_kmem, fa);
267}
268
269static inline void alias_free_mem_rcu(struct fib_alias *fa)
270{
271 call_rcu(&fa->rcu, __alias_free_mem);
272}
273
Alexander Duyck37fd30f2014-12-31 10:55:41 -0800274#define TNODE_KMALLOC_MAX \
Alexander Duyckadaf9812014-12-31 10:55:47 -0800275 ilog2((PAGE_SIZE - sizeof(struct tnode)) / sizeof(struct tnode *))
Alexander Duyck37fd30f2014-12-31 10:55:41 -0800276
277static void __node_free_rcu(struct rcu_head *head)
Robert Olsson2373ce12005-08-25 13:01:29 -0700278{
Alexander Duyckadaf9812014-12-31 10:55:47 -0800279 struct tnode *n = container_of(head, struct tnode, rcu);
Alexander Duyck37fd30f2014-12-31 10:55:41 -0800280
281 if (IS_LEAF(n))
282 kmem_cache_free(trie_leaf_kmem, n);
283 else if (n->bits <= TNODE_KMALLOC_MAX)
284 kfree(n);
285 else
286 vfree(n);
Robert Olsson2373ce12005-08-25 13:01:29 -0700287}
288
Alexander Duyck37fd30f2014-12-31 10:55:41 -0800289#define node_free(n) call_rcu(&n->rcu, __node_free_rcu)
Stephen Hemminger387a5482008-04-10 03:47:34 -0700290
Robert Olsson2373ce12005-08-25 13:01:29 -0700291static inline void free_leaf_info(struct leaf_info *leaf)
292{
Lai Jiangshanbceb0f42011-03-18 11:42:34 +0800293 kfree_rcu(leaf, rcu);
Robert Olsson2373ce12005-08-25 13:01:29 -0700294}
295
Eric Dumazet8d965442008-01-13 22:31:44 -0800296static struct tnode *tnode_alloc(size_t size)
Robert Olsson2373ce12005-08-25 13:01:29 -0700297{
Robert Olsson2373ce12005-08-25 13:01:29 -0700298 if (size <= PAGE_SIZE)
Eric Dumazet8d965442008-01-13 22:31:44 -0800299 return kzalloc(size, GFP_KERNEL);
Stephen Hemminger15be75c2008-04-10 02:56:38 -0700300 else
Eric Dumazet7a1c8e52010-11-20 07:46:35 +0000301 return vzalloc(size);
Stephen Hemminger15be75c2008-04-10 02:56:38 -0700302}
Robert Olsson2373ce12005-08-25 13:01:29 -0700303
Alexander Duyckadaf9812014-12-31 10:55:47 -0800304static struct tnode *leaf_new(t_key key)
Robert Olsson19baf832005-06-21 12:43:18 -0700305{
Alexander Duyckadaf9812014-12-31 10:55:47 -0800306 struct tnode *l = kmem_cache_alloc(trie_leaf_kmem, GFP_KERNEL);
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700307 if (l) {
Alexander Duyck64c9b6f2014-12-31 10:55:35 -0800308 l->parent = NULL;
309 /* set key and pos to reflect full key value
310 * any trailing zeros in the key should be ignored
311 * as the nodes are searched
312 */
313 l->key = key;
Alexander Duycke9b44012014-12-31 10:56:12 -0800314 l->pos = 0;
Alexander Duyck64c9b6f2014-12-31 10:55:35 -0800315 /* set bits to 0 indicating we are not a tnode */
316 l->bits = 0;
317
Robert Olsson19baf832005-06-21 12:43:18 -0700318 INIT_HLIST_HEAD(&l->list);
319 }
320 return l;
321}
322
323static struct leaf_info *leaf_info_new(int plen)
324{
325 struct leaf_info *li = kmalloc(sizeof(struct leaf_info), GFP_KERNEL);
Robert Olsson2373ce12005-08-25 13:01:29 -0700326 if (li) {
327 li->plen = plen;
Eric Dumazet5c745012011-07-18 03:16:33 +0000328 li->mask_plen = ntohl(inet_make_mask(plen));
Robert Olsson2373ce12005-08-25 13:01:29 -0700329 INIT_LIST_HEAD(&li->falh);
Patrick McHardyf0e36f82005-07-05 14:44:55 -0700330 }
Robert Olsson2373ce12005-08-25 13:01:29 -0700331 return li;
Patrick McHardyf0e36f82005-07-05 14:44:55 -0700332}
333
Stephen Hemmingera07f5f52008-01-22 21:53:36 -0800334static struct tnode *tnode_new(t_key key, int pos, int bits)
Robert Olsson19baf832005-06-21 12:43:18 -0700335{
Alexander Duyck37fd30f2014-12-31 10:55:41 -0800336 size_t sz = offsetof(struct tnode, child[1 << bits]);
Patrick McHardyf0e36f82005-07-05 14:44:55 -0700337 struct tnode *tn = tnode_alloc(sz);
Alexander Duyck64c9b6f2014-12-31 10:55:35 -0800338 unsigned int shift = pos + bits;
339
340 /* verify bits and pos their msb bits clear and values are valid */
341 BUG_ON(!bits || (shift > KEYLENGTH));
Robert Olsson19baf832005-06-21 12:43:18 -0700342
Olof Johansson91b9a272005-08-09 20:24:39 -0700343 if (tn) {
Alexander Duyck64c9b6f2014-12-31 10:55:35 -0800344 tn->parent = NULL;
Robert Olsson19baf832005-06-21 12:43:18 -0700345 tn->pos = pos;
346 tn->bits = bits;
Alexander Duycke9b44012014-12-31 10:56:12 -0800347 tn->key = (shift < KEYLENGTH) ? (key >> shift) << shift : 0;
Robert Olsson19baf832005-06-21 12:43:18 -0700348 tn->full_children = 0;
349 tn->empty_children = 1<<bits;
350 }
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700351
Eric Dumazeta034ee32010-09-09 23:32:28 +0000352 pr_debug("AT %p s=%zu %zu\n", tn, sizeof(struct tnode),
Alexander Duyckadaf9812014-12-31 10:55:47 -0800353 sizeof(struct tnode *) << bits);
Robert Olsson19baf832005-06-21 12:43:18 -0700354 return tn;
355}
356
Alexander Duycke9b44012014-12-31 10:56:12 -0800357/* Check whether a tnode 'n' is "full", i.e. it is an internal node
Robert Olsson19baf832005-06-21 12:43:18 -0700358 * and no bits are skipped. See discussion in dyntree paper p. 6
359 */
Alexander Duyckadaf9812014-12-31 10:55:47 -0800360static inline int tnode_full(const struct tnode *tn, const struct tnode *n)
Robert Olsson19baf832005-06-21 12:43:18 -0700361{
Alexander Duycke9b44012014-12-31 10:56:12 -0800362 return n && ((n->pos + n->bits) == tn->pos) && IS_TNODE(n);
Robert Olsson19baf832005-06-21 12:43:18 -0700363}
364
Alexander Duyckff181ed2014-12-31 10:56:43 -0800365/* Add a child at position i overwriting the old value.
366 * Update the value of full_children and empty_children.
367 */
368static void put_child(struct tnode *tn, unsigned long i, struct tnode *n)
Robert Olsson19baf832005-06-21 12:43:18 -0700369{
Alexander Duyck21d1f112014-12-31 10:57:02 -0800370 struct tnode *chi = tnode_get_child(tn, i);
Alexander Duyckff181ed2014-12-31 10:56:43 -0800371 int isfull, wasfull;
Robert Olsson19baf832005-06-21 12:43:18 -0700372
Alexander Duyck98293e82014-12-31 10:56:18 -0800373 BUG_ON(i >= tnode_child_length(tn));
Stephen Hemminger0c7770c2005-08-23 21:59:41 -0700374
Robert Olsson19baf832005-06-21 12:43:18 -0700375 /* update emptyChildren */
376 if (n == NULL && chi != NULL)
377 tn->empty_children++;
378 else if (n != NULL && chi == NULL)
379 tn->empty_children--;
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700380
Robert Olsson19baf832005-06-21 12:43:18 -0700381 /* update fullChildren */
Alexander Duyckff181ed2014-12-31 10:56:43 -0800382 wasfull = tnode_full(tn, chi);
Robert Olsson19baf832005-06-21 12:43:18 -0700383 isfull = tnode_full(tn, n);
Alexander Duyckff181ed2014-12-31 10:56:43 -0800384
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700385 if (wasfull && !isfull)
Robert Olsson19baf832005-06-21 12:43:18 -0700386 tn->full_children--;
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700387 else if (!wasfull && isfull)
Robert Olsson19baf832005-06-21 12:43:18 -0700388 tn->full_children++;
Olof Johansson91b9a272005-08-09 20:24:39 -0700389
Eric Dumazetcf778b02012-01-12 04:41:32 +0000390 rcu_assign_pointer(tn->child[i], n);
Robert Olsson19baf832005-06-21 12:43:18 -0700391}
392
Alexander Duyck836a0122014-12-31 10:56:06 -0800393static void put_child_root(struct tnode *tp, struct trie *t,
394 t_key key, struct tnode *n)
395{
396 if (tp)
397 put_child(tp, get_index(key, tp), n);
398 else
399 rcu_assign_pointer(t->trie, n);
400}
401
Alexander Duyckfc86a932014-12-31 10:56:49 -0800402static inline void tnode_free_init(struct tnode *tn)
Eric Dumazet0a5c0472011-03-31 01:51:35 -0700403{
Alexander Duyckfc86a932014-12-31 10:56:49 -0800404 tn->rcu.next = NULL;
405}
Eric Dumazet0a5c0472011-03-31 01:51:35 -0700406
Alexander Duyckfc86a932014-12-31 10:56:49 -0800407static inline void tnode_free_append(struct tnode *tn, struct tnode *n)
408{
409 n->rcu.next = tn->rcu.next;
410 tn->rcu.next = &n->rcu;
411}
412
413static void tnode_free(struct tnode *tn)
414{
415 struct callback_head *head = &tn->rcu;
416
417 while (head) {
418 head = head->next;
419 tnode_free_size += offsetof(struct tnode, child[1 << tn->bits]);
420 node_free(tn);
421
422 tn = container_of(head, struct tnode, rcu);
Eric Dumazet0a5c0472011-03-31 01:51:35 -0700423 }
Alexander Duyckfc86a932014-12-31 10:56:49 -0800424
425 if (tnode_free_size >= PAGE_SIZE * sync_pages) {
426 tnode_free_size = 0;
427 synchronize_rcu();
428 }
Eric Dumazet0a5c0472011-03-31 01:51:35 -0700429}
430
Alexander Duyckff181ed2014-12-31 10:56:43 -0800431static int inflate(struct trie *t, struct tnode *oldtnode)
Robert Olsson19baf832005-06-21 12:43:18 -0700432{
Alexander Duyck12c081a2014-12-31 10:56:55 -0800433 struct tnode *inode, *node0, *node1, *tn, *tp;
434 unsigned long i, j, k;
Alexander Duycke9b44012014-12-31 10:56:12 -0800435 t_key m;
Robert Olsson19baf832005-06-21 12:43:18 -0700436
Stephen Hemminger0c7770c2005-08-23 21:59:41 -0700437 pr_debug("In inflate\n");
Robert Olsson19baf832005-06-21 12:43:18 -0700438
Alexander Duycke9b44012014-12-31 10:56:12 -0800439 tn = tnode_new(oldtnode->key, oldtnode->pos - 1, oldtnode->bits + 1);
Stephen Hemminger0c7770c2005-08-23 21:59:41 -0700440 if (!tn)
Alexander Duyckff181ed2014-12-31 10:56:43 -0800441 return -ENOMEM;
Robert Olsson2f368952005-07-05 15:02:40 -0700442
Alexander Duyck12c081a2014-12-31 10:56:55 -0800443 /* Assemble all of the pointers in our cluster, in this case that
444 * represents all of the pointers out of our allocated nodes that
445 * point to existing tnodes and the links between our allocated
446 * nodes.
Robert Olsson2f368952005-07-05 15:02:40 -0700447 */
Alexander Duyck12c081a2014-12-31 10:56:55 -0800448 for (i = tnode_child_length(oldtnode), m = 1u << tn->pos; i;) {
449 inode = tnode_get_child(oldtnode, --i);
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700450
Robert Olsson19baf832005-06-21 12:43:18 -0700451 /* An empty child */
Alexander Duyckadaf9812014-12-31 10:55:47 -0800452 if (inode == NULL)
Robert Olsson19baf832005-06-21 12:43:18 -0700453 continue;
454
455 /* A leaf or an internal node with skipped bits */
Alexander Duyckadaf9812014-12-31 10:55:47 -0800456 if (!tnode_full(oldtnode, inode)) {
Alexander Duycke9b44012014-12-31 10:56:12 -0800457 put_child(tn, get_index(inode->key, tn), inode);
Robert Olsson19baf832005-06-21 12:43:18 -0700458 continue;
459 }
460
461 /* An internal node with two children */
Robert Olsson19baf832005-06-21 12:43:18 -0700462 if (inode->bits == 1) {
Alexander Duyck12c081a2014-12-31 10:56:55 -0800463 put_child(tn, 2 * i + 1, tnode_get_child(inode, 1));
464 put_child(tn, 2 * i, tnode_get_child(inode, 0));
Olof Johansson91b9a272005-08-09 20:24:39 -0700465 continue;
Robert Olsson19baf832005-06-21 12:43:18 -0700466 }
467
Olof Johansson91b9a272005-08-09 20:24:39 -0700468 /* We will replace this node 'inode' with two new
Alexander Duyck12c081a2014-12-31 10:56:55 -0800469 * ones, 'node0' and 'node1', each with half of the
Olof Johansson91b9a272005-08-09 20:24:39 -0700470 * original children. The two new nodes will have
471 * a position one bit further down the key and this
472 * means that the "significant" part of their keys
473 * (see the discussion near the top of this file)
474 * will differ by one bit, which will be "0" in
Alexander Duyck12c081a2014-12-31 10:56:55 -0800475 * node0's key and "1" in node1's key. Since we are
Olof Johansson91b9a272005-08-09 20:24:39 -0700476 * moving the key position by one step, the bit that
477 * we are moving away from - the bit at position
Alexander Duyck12c081a2014-12-31 10:56:55 -0800478 * (tn->pos) - is the one that will differ between
479 * node0 and node1. So... we synthesize that bit in the
480 * two new keys.
Olof Johansson91b9a272005-08-09 20:24:39 -0700481 */
Alexander Duyck12c081a2014-12-31 10:56:55 -0800482 node1 = tnode_new(inode->key | m, inode->pos, inode->bits - 1);
483 if (!node1)
484 goto nomem;
485 tnode_free_append(tn, node1);
Robert Olsson19baf832005-06-21 12:43:18 -0700486
Alexander Duyck12c081a2014-12-31 10:56:55 -0800487 node0 = tnode_new(inode->key & ~m, inode->pos, inode->bits - 1);
488 if (!node0)
489 goto nomem;
490 tnode_free_append(tn, node0);
Robert Olsson19baf832005-06-21 12:43:18 -0700491
Alexander Duyck12c081a2014-12-31 10:56:55 -0800492 /* populate child pointers in new nodes */
493 for (k = tnode_child_length(inode), j = k / 2; j;) {
494 put_child(node1, --j, tnode_get_child(inode, --k));
495 put_child(node0, j, tnode_get_child(inode, j));
496 put_child(node1, --j, tnode_get_child(inode, --k));
497 put_child(node0, j, tnode_get_child(inode, j));
Robert Olsson19baf832005-06-21 12:43:18 -0700498 }
Alexander Duyckff181ed2014-12-31 10:56:43 -0800499
Alexander Duyck12c081a2014-12-31 10:56:55 -0800500 /* link new nodes to parent */
501 NODE_INIT_PARENT(node1, tn);
502 NODE_INIT_PARENT(node0, tn);
Olof Johansson91b9a272005-08-09 20:24:39 -0700503
Alexander Duyck12c081a2014-12-31 10:56:55 -0800504 /* link parent to nodes */
505 put_child(tn, 2 * i + 1, node1);
506 put_child(tn, 2 * i, node0);
Robert Olsson19baf832005-06-21 12:43:18 -0700507 }
Alexander Duyckff181ed2014-12-31 10:56:43 -0800508
Alexander Duyck12c081a2014-12-31 10:56:55 -0800509 /* setup the parent pointer into and out of this node */
510 tp = node_parent(oldtnode);
511 NODE_INIT_PARENT(tn, tp);
Alexander Duyckff181ed2014-12-31 10:56:43 -0800512 put_child_root(tp, t, tn->key, tn);
Alexander Duyckfc86a932014-12-31 10:56:49 -0800513
Alexander Duyck12c081a2014-12-31 10:56:55 -0800514 /* prepare oldtnode to be freed */
515 tnode_free_init(oldtnode);
516
517 /* update all child nodes parent pointers to route to us */
518 for (i = tnode_child_length(oldtnode); i;) {
519 inode = tnode_get_child(oldtnode, --i);
520
521 /* A leaf or an internal node with skipped bits */
522 if (!tnode_full(oldtnode, inode)) {
523 node_set_parent(inode, tn);
524 continue;
525 }
526
527 /* drop the node in the old tnode free list */
528 tnode_free_append(oldtnode, inode);
529
530 /* fetch new nodes */
531 node1 = tnode_get_child(tn, 2 * i + 1);
532 node0 = tnode_get_child(tn, 2 * i);
533
534 /* bits == 1 then node0 and node1 represent inode's children */
535 if (inode->bits == 1) {
536 node_set_parent(node1, tn);
537 node_set_parent(node0, tn);
538 continue;
539 }
540
541 /* update parent pointers in child node's children */
542 for (k = tnode_child_length(inode), j = k / 2; j;) {
543 node_set_parent(tnode_get_child(inode, --k), node1);
544 node_set_parent(tnode_get_child(inode, --j), node0);
545 node_set_parent(tnode_get_child(inode, --k), node1);
546 node_set_parent(tnode_get_child(inode, --j), node0);
547 }
548
549 /* resize child nodes */
550 resize(t, node1);
551 resize(t, node0);
552 }
553
Alexander Duyckfc86a932014-12-31 10:56:49 -0800554 /* we completed without error, prepare to free old node */
555 tnode_free(oldtnode);
Alexander Duyckff181ed2014-12-31 10:56:43 -0800556 return 0;
Robert Olsson2f80b3c2005-08-09 20:25:06 -0700557nomem:
Alexander Duyckfc86a932014-12-31 10:56:49 -0800558 /* all pointers should be clean so we are done */
559 tnode_free(tn);
Alexander Duyckff181ed2014-12-31 10:56:43 -0800560 return -ENOMEM;
Robert Olsson19baf832005-06-21 12:43:18 -0700561}
562
Alexander Duyckff181ed2014-12-31 10:56:43 -0800563static int halve(struct trie *t, struct tnode *oldtnode)
Robert Olsson19baf832005-06-21 12:43:18 -0700564{
Alexander Duyck12c081a2014-12-31 10:56:55 -0800565 struct tnode *tn, *tp, *inode, *node0, *node1;
566 unsigned long i;
Robert Olsson19baf832005-06-21 12:43:18 -0700567
Stephen Hemminger0c7770c2005-08-23 21:59:41 -0700568 pr_debug("In halve\n");
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700569
Alexander Duycke9b44012014-12-31 10:56:12 -0800570 tn = tnode_new(oldtnode->key, oldtnode->pos + 1, oldtnode->bits - 1);
Robert Olsson2f80b3c2005-08-09 20:25:06 -0700571 if (!tn)
Alexander Duyckff181ed2014-12-31 10:56:43 -0800572 return -ENOMEM;
Robert Olsson2f368952005-07-05 15:02:40 -0700573
Alexander Duyck12c081a2014-12-31 10:56:55 -0800574 /* Assemble all of the pointers in our cluster, in this case that
575 * represents all of the pointers out of our allocated nodes that
576 * point to existing tnodes and the links between our allocated
577 * nodes.
Robert Olsson2f368952005-07-05 15:02:40 -0700578 */
Alexander Duyck12c081a2014-12-31 10:56:55 -0800579 for (i = tnode_child_length(oldtnode); i;) {
580 node1 = tnode_get_child(oldtnode, --i);
581 node0 = tnode_get_child(oldtnode, --i);
Robert Olsson2f368952005-07-05 15:02:40 -0700582
Alexander Duyck12c081a2014-12-31 10:56:55 -0800583 /* At least one of the children is empty */
584 if (!node1 || !node0) {
585 put_child(tn, i / 2, node1 ? : node0);
586 continue;
Robert Olsson2f368952005-07-05 15:02:40 -0700587 }
Robert Olsson2f368952005-07-05 15:02:40 -0700588
Alexander Duyck12c081a2014-12-31 10:56:55 -0800589 /* Two nonempty children */
590 inode = tnode_new(node0->key, oldtnode->pos, 1);
591 if (!inode) {
592 tnode_free(tn);
593 return -ENOMEM;
594 }
595 tnode_free_append(tn, inode);
596
597 /* initialize pointers out of node */
598 put_child(inode, 1, node1);
599 put_child(inode, 0, node0);
600 NODE_INIT_PARENT(inode, tn);
601
602 /* link parent to node */
603 put_child(tn, i / 2, inode);
Robert Olsson2f368952005-07-05 15:02:40 -0700604 }
Robert Olsson19baf832005-06-21 12:43:18 -0700605
Alexander Duyck12c081a2014-12-31 10:56:55 -0800606 /* setup the parent pointer out of and back into this node */
607 tp = node_parent(oldtnode);
608 NODE_INIT_PARENT(tn, tp);
609 put_child_root(tp, t, tn->key, tn);
610
Alexander Duyckfc86a932014-12-31 10:56:49 -0800611 /* prepare oldtnode to be freed */
612 tnode_free_init(oldtnode);
613
Alexander Duyck12c081a2014-12-31 10:56:55 -0800614 /* update all of the child parent pointers */
615 for (i = tnode_child_length(tn); i;) {
616 inode = tnode_get_child(tn, --i);
Olof Johansson91b9a272005-08-09 20:24:39 -0700617
Alexander Duyck12c081a2014-12-31 10:56:55 -0800618 /* only new tnodes will be considered "full" nodes */
619 if (!tnode_full(tn, inode)) {
620 node_set_parent(inode, tn);
Olof Johansson91b9a272005-08-09 20:24:39 -0700621 continue;
622 }
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700623
Robert Olsson19baf832005-06-21 12:43:18 -0700624 /* Two nonempty children */
Alexander Duyck12c081a2014-12-31 10:56:55 -0800625 node_set_parent(tnode_get_child(inode, 1), inode);
626 node_set_parent(tnode_get_child(inode, 0), inode);
Alexander Duyckff181ed2014-12-31 10:56:43 -0800627
Alexander Duyckfc86a932014-12-31 10:56:49 -0800628 /* resize child node */
Alexander Duyck12c081a2014-12-31 10:56:55 -0800629 resize(t, inode);
Robert Olsson19baf832005-06-21 12:43:18 -0700630 }
Alexander Duyckff181ed2014-12-31 10:56:43 -0800631
Alexander Duyckfc86a932014-12-31 10:56:49 -0800632 /* all pointers should be clean so we are done */
633 tnode_free(oldtnode);
Alexander Duyckff181ed2014-12-31 10:56:43 -0800634
635 return 0;
Robert Olsson19baf832005-06-21 12:43:18 -0700636}
637
Alexander Duyckf05a4812014-12-31 10:56:37 -0800638/* From "Implementing a dynamic compressed trie" by Stefan Nilsson of
639 * the Helsinki University of Technology and Matti Tikkanen of Nokia
640 * Telecommunications, page 6:
641 * "A node is doubled if the ratio of non-empty children to all
642 * children in the *doubled* node is at least 'high'."
643 *
644 * 'high' in this instance is the variable 'inflate_threshold'. It
645 * is expressed as a percentage, so we multiply it with
646 * tnode_child_length() and instead of multiplying by 2 (since the
647 * child array will be doubled by inflate()) and multiplying
648 * the left-hand side by 100 (to handle the percentage thing) we
649 * multiply the left-hand side by 50.
650 *
651 * The left-hand side may look a bit weird: tnode_child_length(tn)
652 * - tn->empty_children is of course the number of non-null children
653 * in the current node. tn->full_children is the number of "full"
654 * children, that is non-null tnodes with a skip value of 0.
655 * All of those will be doubled in the resulting inflated tnode, so
656 * we just count them one extra time here.
657 *
658 * A clearer way to write this would be:
659 *
660 * to_be_doubled = tn->full_children;
661 * not_to_be_doubled = tnode_child_length(tn) - tn->empty_children -
662 * tn->full_children;
663 *
664 * new_child_length = tnode_child_length(tn) * 2;
665 *
666 * new_fill_factor = 100 * (not_to_be_doubled + 2*to_be_doubled) /
667 * new_child_length;
668 * if (new_fill_factor >= inflate_threshold)
669 *
670 * ...and so on, tho it would mess up the while () loop.
671 *
672 * anyway,
673 * 100 * (not_to_be_doubled + 2*to_be_doubled) / new_child_length >=
674 * inflate_threshold
675 *
676 * avoid a division:
677 * 100 * (not_to_be_doubled + 2*to_be_doubled) >=
678 * inflate_threshold * new_child_length
679 *
680 * expand not_to_be_doubled and to_be_doubled, and shorten:
681 * 100 * (tnode_child_length(tn) - tn->empty_children +
682 * tn->full_children) >= inflate_threshold * new_child_length
683 *
684 * expand new_child_length:
685 * 100 * (tnode_child_length(tn) - tn->empty_children +
686 * tn->full_children) >=
687 * inflate_threshold * tnode_child_length(tn) * 2
688 *
689 * shorten again:
690 * 50 * (tn->full_children + tnode_child_length(tn) -
691 * tn->empty_children) >= inflate_threshold *
692 * tnode_child_length(tn)
693 *
694 */
Alexander Duyckff181ed2014-12-31 10:56:43 -0800695static bool should_inflate(const struct tnode *tp, const struct tnode *tn)
Alexander Duyckf05a4812014-12-31 10:56:37 -0800696{
697 unsigned long used = tnode_child_length(tn);
698 unsigned long threshold = used;
699
700 /* Keep root node larger */
Alexander Duyckff181ed2014-12-31 10:56:43 -0800701 threshold *= tp ? inflate_threshold : inflate_threshold_root;
Alexander Duyckf05a4812014-12-31 10:56:37 -0800702 used += tn->full_children;
703 used -= tn->empty_children;
704
705 return tn->pos && ((50 * used) >= threshold);
706}
707
Alexander Duyckff181ed2014-12-31 10:56:43 -0800708static bool should_halve(const struct tnode *tp, const struct tnode *tn)
Alexander Duyckf05a4812014-12-31 10:56:37 -0800709{
710 unsigned long used = tnode_child_length(tn);
711 unsigned long threshold = used;
712
713 /* Keep root node larger */
Alexander Duyckff181ed2014-12-31 10:56:43 -0800714 threshold *= tp ? halve_threshold : halve_threshold_root;
Alexander Duyckf05a4812014-12-31 10:56:37 -0800715 used -= tn->empty_children;
716
717 return (tn->bits > 1) && ((100 * used) < threshold);
718}
719
Alexander Duyckcf3637b2014-12-31 10:56:31 -0800720#define MAX_WORK 10
Alexander Duyckff181ed2014-12-31 10:56:43 -0800721static void resize(struct trie *t, struct tnode *tn)
Alexander Duyckcf3637b2014-12-31 10:56:31 -0800722{
Alexander Duyckff181ed2014-12-31 10:56:43 -0800723 struct tnode *tp = node_parent(tn), *n = NULL;
724 struct tnode __rcu **cptr;
Alexander Duyckcf3637b2014-12-31 10:56:31 -0800725 int max_work;
726
Alexander Duyckcf3637b2014-12-31 10:56:31 -0800727 pr_debug("In tnode_resize %p inflate_threshold=%d threshold=%d\n",
728 tn, inflate_threshold, halve_threshold);
729
Alexander Duyckff181ed2014-12-31 10:56:43 -0800730 /* track the tnode via the pointer from the parent instead of
731 * doing it ourselves. This way we can let RCU fully do its
732 * thing without us interfering
733 */
734 cptr = tp ? &tp->child[get_index(tn->key, tp)] : &t->trie;
735 BUG_ON(tn != rtnl_dereference(*cptr));
736
Alexander Duyckcf3637b2014-12-31 10:56:31 -0800737 /* No children */
738 if (tn->empty_children > (tnode_child_length(tn) - 1))
739 goto no_children;
740
741 /* One child */
742 if (tn->empty_children == (tnode_child_length(tn) - 1))
743 goto one_child;
Alexander Duyckf05a4812014-12-31 10:56:37 -0800744
745 /* Double as long as the resulting node has a number of
Alexander Duyckcf3637b2014-12-31 10:56:31 -0800746 * nonempty nodes that are above the threshold.
747 */
Alexander Duyckcf3637b2014-12-31 10:56:31 -0800748 max_work = MAX_WORK;
Alexander Duyckff181ed2014-12-31 10:56:43 -0800749 while (should_inflate(tp, tn) && max_work--) {
750 if (inflate(t, tn)) {
Alexander Duyckcf3637b2014-12-31 10:56:31 -0800751#ifdef CONFIG_IP_FIB_TRIE_STATS
752 this_cpu_inc(t->stats->resize_node_skipped);
753#endif
754 break;
755 }
Alexander Duyckff181ed2014-12-31 10:56:43 -0800756
757 tn = rtnl_dereference(*cptr);
Alexander Duyckcf3637b2014-12-31 10:56:31 -0800758 }
759
760 /* Return if at least one inflate is run */
761 if (max_work != MAX_WORK)
Alexander Duyckff181ed2014-12-31 10:56:43 -0800762 return;
Alexander Duyckcf3637b2014-12-31 10:56:31 -0800763
Alexander Duyckf05a4812014-12-31 10:56:37 -0800764 /* Halve as long as the number of empty children in this
Alexander Duyckcf3637b2014-12-31 10:56:31 -0800765 * node is above threshold.
766 */
Alexander Duyckcf3637b2014-12-31 10:56:31 -0800767 max_work = MAX_WORK;
Alexander Duyckff181ed2014-12-31 10:56:43 -0800768 while (should_halve(tp, tn) && max_work--) {
769 if (halve(t, tn)) {
Alexander Duyckcf3637b2014-12-31 10:56:31 -0800770#ifdef CONFIG_IP_FIB_TRIE_STATS
771 this_cpu_inc(t->stats->resize_node_skipped);
772#endif
773 break;
774 }
Alexander Duyckcf3637b2014-12-31 10:56:31 -0800775
Alexander Duyckff181ed2014-12-31 10:56:43 -0800776 tn = rtnl_dereference(*cptr);
777 }
Alexander Duyckcf3637b2014-12-31 10:56:31 -0800778
779 /* Only one child remains */
780 if (tn->empty_children == (tnode_child_length(tn) - 1)) {
781 unsigned long i;
782one_child:
783 for (i = tnode_child_length(tn); !n && i;)
784 n = tnode_get_child(tn, --i);
785no_children:
786 /* compress one level */
Alexander Duyckff181ed2014-12-31 10:56:43 -0800787 put_child_root(tp, t, tn->key, n);
788 node_set_parent(n, tp);
789
790 /* drop dead node */
Alexander Duyckfc86a932014-12-31 10:56:49 -0800791 tnode_free_init(tn);
792 tnode_free(tn);
Alexander Duyckcf3637b2014-12-31 10:56:31 -0800793 }
Alexander Duyckcf3637b2014-12-31 10:56:31 -0800794}
795
Robert Olsson772cb712005-09-19 15:31:18 -0700796/* readside must use rcu_read_lock currently dump routines
Robert Olsson2373ce12005-08-25 13:01:29 -0700797 via get_fa_head and dump */
798
Alexander Duyckadaf9812014-12-31 10:55:47 -0800799static struct leaf_info *find_leaf_info(struct tnode *l, int plen)
Robert Olsson19baf832005-06-21 12:43:18 -0700800{
Robert Olsson772cb712005-09-19 15:31:18 -0700801 struct hlist_head *head = &l->list;
Robert Olsson19baf832005-06-21 12:43:18 -0700802 struct leaf_info *li;
803
Sasha Levinb67bfe02013-02-27 17:06:00 -0800804 hlist_for_each_entry_rcu(li, head, hlist)
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700805 if (li->plen == plen)
Robert Olsson19baf832005-06-21 12:43:18 -0700806 return li;
Olof Johansson91b9a272005-08-09 20:24:39 -0700807
Robert Olsson19baf832005-06-21 12:43:18 -0700808 return NULL;
809}
810
Alexander Duyckadaf9812014-12-31 10:55:47 -0800811static inline struct list_head *get_fa_head(struct tnode *l, int plen)
Robert Olsson19baf832005-06-21 12:43:18 -0700812{
Robert Olsson772cb712005-09-19 15:31:18 -0700813 struct leaf_info *li = find_leaf_info(l, plen);
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700814
Olof Johansson91b9a272005-08-09 20:24:39 -0700815 if (!li)
816 return NULL;
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700817
Olof Johansson91b9a272005-08-09 20:24:39 -0700818 return &li->falh;
Robert Olsson19baf832005-06-21 12:43:18 -0700819}
820
821static void insert_leaf_info(struct hlist_head *head, struct leaf_info *new)
822{
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900823 struct leaf_info *li = NULL, *last = NULL;
Robert Olsson19baf832005-06-21 12:43:18 -0700824
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900825 if (hlist_empty(head)) {
826 hlist_add_head_rcu(&new->hlist, head);
827 } else {
Sasha Levinb67bfe02013-02-27 17:06:00 -0800828 hlist_for_each_entry(li, head, hlist) {
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900829 if (new->plen > li->plen)
830 break;
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700831
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900832 last = li;
833 }
834 if (last)
Ken Helias1d023282014-08-06 16:09:16 -0700835 hlist_add_behind_rcu(&new->hlist, &last->hlist);
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900836 else
837 hlist_add_before_rcu(&new->hlist, &li->hlist);
838 }
Robert Olsson19baf832005-06-21 12:43:18 -0700839}
840
Robert Olsson2373ce12005-08-25 13:01:29 -0700841/* rcu_read_lock needs to be hold by caller from readside */
Alexander Duyckadaf9812014-12-31 10:55:47 -0800842static struct tnode *fib_find_node(struct trie *t, u32 key)
Robert Olsson19baf832005-06-21 12:43:18 -0700843{
Alexander Duyckadaf9812014-12-31 10:55:47 -0800844 struct tnode *n = rcu_dereference_rtnl(t->trie);
Robert Olsson19baf832005-06-21 12:43:18 -0700845
Alexander Duyck939afb02014-12-31 10:56:00 -0800846 while (n) {
847 unsigned long index = get_index(key, n);
848
849 /* This bit of code is a bit tricky but it combines multiple
850 * checks into a single check. The prefix consists of the
851 * prefix plus zeros for the bits in the cindex. The index
852 * is the difference between the key and this value. From
853 * this we can actually derive several pieces of data.
854 * if !(index >> bits)
855 * we know the value is cindex
856 * else
857 * we have a mismatch in skip bits and failed
858 */
859 if (index >> n->bits)
860 return NULL;
861
862 /* we have found a leaf. Prefixes have already been compared */
863 if (IS_LEAF(n))
Robert Olsson19baf832005-06-21 12:43:18 -0700864 break;
Alexander Duyck939afb02014-12-31 10:56:00 -0800865
Alexander Duyck21d1f112014-12-31 10:57:02 -0800866 n = tnode_get_child_rcu(n, index);
Robert Olsson19baf832005-06-21 12:43:18 -0700867 }
Robert Olsson19baf832005-06-21 12:43:18 -0700868
Alexander Duyck939afb02014-12-31 10:56:00 -0800869 return n;
Robert Olsson19baf832005-06-21 12:43:18 -0700870}
871
Jarek Poplawski7b855762009-06-18 00:28:51 -0700872static void trie_rebalance(struct trie *t, struct tnode *tn)
Robert Olsson19baf832005-06-21 12:43:18 -0700873{
Stephen Hemminger06801912007-08-10 15:22:13 -0700874 struct tnode *tp;
Robert Olsson19baf832005-06-21 12:43:18 -0700875
Alexander Duyckff181ed2014-12-31 10:56:43 -0800876 while ((tp = node_parent(tn)) != NULL) {
877 resize(t, tn);
Stephen Hemminger06801912007-08-10 15:22:13 -0700878 tn = tp;
Robert Olsson19baf832005-06-21 12:43:18 -0700879 }
Stephen Hemminger06801912007-08-10 15:22:13 -0700880
Robert Olsson19baf832005-06-21 12:43:18 -0700881 /* Handle last (top) tnode */
Jarek Poplawski7b855762009-06-18 00:28:51 -0700882 if (IS_TNODE(tn))
Alexander Duyckff181ed2014-12-31 10:56:43 -0800883 resize(t, tn);
Robert Olsson19baf832005-06-21 12:43:18 -0700884}
885
Robert Olsson2373ce12005-08-25 13:01:29 -0700886/* only used from updater-side */
887
Stephen Hemmingerfea86ad2008-01-12 20:57:07 -0800888static struct list_head *fib_insert_node(struct trie *t, u32 key, int plen)
Robert Olsson19baf832005-06-21 12:43:18 -0700889{
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700890 struct list_head *fa_head = NULL;
Alexander Duyck836a0122014-12-31 10:56:06 -0800891 struct tnode *l, *n, *tp = NULL;
Robert Olsson19baf832005-06-21 12:43:18 -0700892 struct leaf_info *li;
Robert Olsson19baf832005-06-21 12:43:18 -0700893
Alexander Duyck836a0122014-12-31 10:56:06 -0800894 li = leaf_info_new(plen);
895 if (!li)
896 return NULL;
897 fa_head = &li->falh;
898
Eric Dumazet0a5c0472011-03-31 01:51:35 -0700899 n = rtnl_dereference(t->trie);
Robert Olsson19baf832005-06-21 12:43:18 -0700900
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700901 /* If we point to NULL, stop. Either the tree is empty and we should
902 * just put a new leaf in if, or we have reached an empty child slot,
Robert Olsson19baf832005-06-21 12:43:18 -0700903 * and we should just put our new leaf in that.
Robert Olsson19baf832005-06-21 12:43:18 -0700904 *
Alexander Duyck836a0122014-12-31 10:56:06 -0800905 * If we hit a node with a key that does't match then we should stop
906 * and create a new tnode to replace that node and insert ourselves
907 * and the other node into the new tnode.
Robert Olsson19baf832005-06-21 12:43:18 -0700908 */
Alexander Duyck836a0122014-12-31 10:56:06 -0800909 while (n) {
910 unsigned long index = get_index(key, n);
Robert Olsson19baf832005-06-21 12:43:18 -0700911
Alexander Duyck836a0122014-12-31 10:56:06 -0800912 /* This bit of code is a bit tricky but it combines multiple
913 * checks into a single check. The prefix consists of the
914 * prefix plus zeros for the "bits" in the prefix. The index
915 * is the difference between the key and this value. From
916 * this we can actually derive several pieces of data.
917 * if !(index >> bits)
918 * we know the value is child index
919 * else
920 * we have a mismatch in skip bits and failed
Robert Olsson19baf832005-06-21 12:43:18 -0700921 */
Alexander Duyck836a0122014-12-31 10:56:06 -0800922 if (index >> n->bits)
923 break;
Robert Olsson19baf832005-06-21 12:43:18 -0700924
Alexander Duyck836a0122014-12-31 10:56:06 -0800925 /* we have found a leaf. Prefixes have already been compared */
926 if (IS_LEAF(n)) {
927 /* Case 1: n is a leaf, and prefixes match*/
928 insert_leaf_info(&n->list, li);
929 return fa_head;
Robert Olsson19baf832005-06-21 12:43:18 -0700930 }
Robert Olsson19baf832005-06-21 12:43:18 -0700931
Alexander Duyck836a0122014-12-31 10:56:06 -0800932 tp = n;
Alexander Duyck21d1f112014-12-31 10:57:02 -0800933 n = tnode_get_child_rcu(n, index);
Alexander Duyck836a0122014-12-31 10:56:06 -0800934 }
935
936 l = leaf_new(key);
937 if (!l) {
938 free_leaf_info(li);
939 return NULL;
940 }
941
942 insert_leaf_info(&l->list, li);
943
944 /* Case 2: n is a LEAF or a TNODE and the key doesn't match.
945 *
946 * Add a new tnode here
947 * first tnode need some special handling
948 * leaves us in position for handling as case 3
949 */
950 if (n) {
951 struct tnode *tn;
Alexander Duyck836a0122014-12-31 10:56:06 -0800952
Alexander Duycke9b44012014-12-31 10:56:12 -0800953 tn = tnode_new(key, __fls(key ^ n->key), 1);
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700954 if (!tn) {
Robert Olssonf835e472005-06-28 15:00:39 -0700955 free_leaf_info(li);
Alexander Duyck37fd30f2014-12-31 10:55:41 -0800956 node_free(l);
Stephen Hemmingerfea86ad2008-01-12 20:57:07 -0800957 return NULL;
Olof Johansson91b9a272005-08-09 20:24:39 -0700958 }
959
Alexander Duyck836a0122014-12-31 10:56:06 -0800960 /* initialize routes out of node */
961 NODE_INIT_PARENT(tn, tp);
962 put_child(tn, get_index(key, tn) ^ 1, n);
Robert Olsson19baf832005-06-21 12:43:18 -0700963
Alexander Duyck836a0122014-12-31 10:56:06 -0800964 /* start adding routes into the node */
965 put_child_root(tp, t, key, tn);
966 node_set_parent(n, tn);
Robert Olsson19baf832005-06-21 12:43:18 -0700967
Alexander Duyck836a0122014-12-31 10:56:06 -0800968 /* parent now has a NULL spot where the leaf can go */
Alexander Duycke962f302014-12-10 21:49:22 -0800969 tp = tn;
Robert Olsson19baf832005-06-21 12:43:18 -0700970 }
Olof Johansson91b9a272005-08-09 20:24:39 -0700971
Alexander Duyck836a0122014-12-31 10:56:06 -0800972 /* Case 3: n is NULL, and will just insert a new leaf */
973 if (tp) {
974 NODE_INIT_PARENT(l, tp);
975 put_child(tp, get_index(key, tp), l);
976 trie_rebalance(t, tp);
977 } else {
978 rcu_assign_pointer(t->trie, l);
979 }
Olof Johansson91b9a272005-08-09 20:24:39 -0700980
Robert Olsson19baf832005-06-21 12:43:18 -0700981 return fa_head;
982}
983
Robert Olssond562f1f2007-03-26 14:22:22 -0700984/*
985 * Caller must hold RTNL.
986 */
Stephen Hemminger16c6cf82009-09-20 10:35:36 +0000987int fib_table_insert(struct fib_table *tb, struct fib_config *cfg)
Robert Olsson19baf832005-06-21 12:43:18 -0700988{
989 struct trie *t = (struct trie *) tb->tb_data;
990 struct fib_alias *fa, *new_fa;
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700991 struct list_head *fa_head = NULL;
Robert Olsson19baf832005-06-21 12:43:18 -0700992 struct fib_info *fi;
Thomas Graf4e902c52006-08-17 18:14:52 -0700993 int plen = cfg->fc_dst_len;
994 u8 tos = cfg->fc_tos;
Robert Olsson19baf832005-06-21 12:43:18 -0700995 u32 key, mask;
996 int err;
Alexander Duyckadaf9812014-12-31 10:55:47 -0800997 struct tnode *l;
Robert Olsson19baf832005-06-21 12:43:18 -0700998
999 if (plen > 32)
1000 return -EINVAL;
1001
Thomas Graf4e902c52006-08-17 18:14:52 -07001002 key = ntohl(cfg->fc_dst);
Robert Olsson19baf832005-06-21 12:43:18 -07001003
Patrick McHardy2dfe55b2006-08-10 23:08:33 -07001004 pr_debug("Insert table=%u %08x/%d\n", tb->tb_id, key, plen);
Robert Olsson19baf832005-06-21 12:43:18 -07001005
Olof Johansson91b9a272005-08-09 20:24:39 -07001006 mask = ntohl(inet_make_mask(plen));
Robert Olsson19baf832005-06-21 12:43:18 -07001007
Stephen Hemmingerc877efb2005-07-19 14:01:51 -07001008 if (key & ~mask)
Robert Olsson19baf832005-06-21 12:43:18 -07001009 return -EINVAL;
1010
1011 key = key & mask;
1012
Thomas Graf4e902c52006-08-17 18:14:52 -07001013 fi = fib_create_info(cfg);
1014 if (IS_ERR(fi)) {
1015 err = PTR_ERR(fi);
Robert Olsson19baf832005-06-21 12:43:18 -07001016 goto err;
Thomas Graf4e902c52006-08-17 18:14:52 -07001017 }
Robert Olsson19baf832005-06-21 12:43:18 -07001018
1019 l = fib_find_node(t, key);
Stephen Hemmingerc877efb2005-07-19 14:01:51 -07001020 fa = NULL;
Robert Olsson19baf832005-06-21 12:43:18 -07001021
Stephen Hemmingerc877efb2005-07-19 14:01:51 -07001022 if (l) {
Robert Olsson19baf832005-06-21 12:43:18 -07001023 fa_head = get_fa_head(l, plen);
1024 fa = fib_find_alias(fa_head, tos, fi->fib_priority);
1025 }
1026
1027 /* Now fa, if non-NULL, points to the first fib alias
1028 * with the same keys [prefix,tos,priority], if such key already
1029 * exists or to the node before which we will insert new one.
1030 *
1031 * If fa is NULL, we will need to allocate a new one and
1032 * insert to the head of f.
1033 *
1034 * If f is NULL, no fib node matched the destination key
1035 * and we need to allocate a new one of those as well.
1036 */
1037
Julian Anastasov936f6f82008-01-28 21:18:06 -08001038 if (fa && fa->fa_tos == tos &&
1039 fa->fa_info->fib_priority == fi->fib_priority) {
1040 struct fib_alias *fa_first, *fa_match;
Robert Olsson19baf832005-06-21 12:43:18 -07001041
1042 err = -EEXIST;
Thomas Graf4e902c52006-08-17 18:14:52 -07001043 if (cfg->fc_nlflags & NLM_F_EXCL)
Robert Olsson19baf832005-06-21 12:43:18 -07001044 goto out;
1045
Julian Anastasov936f6f82008-01-28 21:18:06 -08001046 /* We have 2 goals:
1047 * 1. Find exact match for type, scope, fib_info to avoid
1048 * duplicate routes
1049 * 2. Find next 'fa' (or head), NLM_F_APPEND inserts before it
1050 */
1051 fa_match = NULL;
1052 fa_first = fa;
1053 fa = list_entry(fa->fa_list.prev, struct fib_alias, fa_list);
1054 list_for_each_entry_continue(fa, fa_head, fa_list) {
1055 if (fa->fa_tos != tos)
1056 break;
1057 if (fa->fa_info->fib_priority != fi->fib_priority)
1058 break;
1059 if (fa->fa_type == cfg->fc_type &&
Julian Anastasov936f6f82008-01-28 21:18:06 -08001060 fa->fa_info == fi) {
1061 fa_match = fa;
1062 break;
1063 }
1064 }
1065
Thomas Graf4e902c52006-08-17 18:14:52 -07001066 if (cfg->fc_nlflags & NLM_F_REPLACE) {
Robert Olsson19baf832005-06-21 12:43:18 -07001067 struct fib_info *fi_drop;
1068 u8 state;
1069
Julian Anastasov936f6f82008-01-28 21:18:06 -08001070 fa = fa_first;
1071 if (fa_match) {
1072 if (fa == fa_match)
1073 err = 0;
Joonwoo Park67250332008-01-18 03:45:18 -08001074 goto out;
Julian Anastasov936f6f82008-01-28 21:18:06 -08001075 }
Robert Olsson2373ce12005-08-25 13:01:29 -07001076 err = -ENOBUFS;
Christoph Lametere94b1762006-12-06 20:33:17 -08001077 new_fa = kmem_cache_alloc(fn_alias_kmem, GFP_KERNEL);
Robert Olsson2373ce12005-08-25 13:01:29 -07001078 if (new_fa == NULL)
1079 goto out;
Robert Olsson19baf832005-06-21 12:43:18 -07001080
1081 fi_drop = fa->fa_info;
Robert Olsson2373ce12005-08-25 13:01:29 -07001082 new_fa->fa_tos = fa->fa_tos;
1083 new_fa->fa_info = fi;
Thomas Graf4e902c52006-08-17 18:14:52 -07001084 new_fa->fa_type = cfg->fc_type;
Robert Olsson19baf832005-06-21 12:43:18 -07001085 state = fa->fa_state;
Julian Anastasov936f6f82008-01-28 21:18:06 -08001086 new_fa->fa_state = state & ~FA_S_ACCESSED;
Robert Olsson19baf832005-06-21 12:43:18 -07001087
Robert Olsson2373ce12005-08-25 13:01:29 -07001088 list_replace_rcu(&fa->fa_list, &new_fa->fa_list);
1089 alias_free_mem_rcu(fa);
Robert Olsson19baf832005-06-21 12:43:18 -07001090
1091 fib_release_info(fi_drop);
1092 if (state & FA_S_ACCESSED)
Nicolas Dichtel4ccfe6d2012-09-07 00:45:29 +00001093 rt_cache_flush(cfg->fc_nlinfo.nl_net);
Milan Kocianb8f55832007-05-23 14:55:06 -07001094 rtmsg_fib(RTM_NEWROUTE, htonl(key), new_fa, plen,
1095 tb->tb_id, &cfg->fc_nlinfo, NLM_F_REPLACE);
Robert Olsson19baf832005-06-21 12:43:18 -07001096
Olof Johansson91b9a272005-08-09 20:24:39 -07001097 goto succeeded;
Robert Olsson19baf832005-06-21 12:43:18 -07001098 }
1099 /* Error if we find a perfect match which
1100 * uses the same scope, type, and nexthop
1101 * information.
1102 */
Julian Anastasov936f6f82008-01-28 21:18:06 -08001103 if (fa_match)
1104 goto out;
Stephen Hemmingera07f5f52008-01-22 21:53:36 -08001105
Thomas Graf4e902c52006-08-17 18:14:52 -07001106 if (!(cfg->fc_nlflags & NLM_F_APPEND))
Julian Anastasov936f6f82008-01-28 21:18:06 -08001107 fa = fa_first;
Robert Olsson19baf832005-06-21 12:43:18 -07001108 }
1109 err = -ENOENT;
Thomas Graf4e902c52006-08-17 18:14:52 -07001110 if (!(cfg->fc_nlflags & NLM_F_CREATE))
Robert Olsson19baf832005-06-21 12:43:18 -07001111 goto out;
1112
1113 err = -ENOBUFS;
Christoph Lametere94b1762006-12-06 20:33:17 -08001114 new_fa = kmem_cache_alloc(fn_alias_kmem, GFP_KERNEL);
Robert Olsson19baf832005-06-21 12:43:18 -07001115 if (new_fa == NULL)
1116 goto out;
1117
1118 new_fa->fa_info = fi;
1119 new_fa->fa_tos = tos;
Thomas Graf4e902c52006-08-17 18:14:52 -07001120 new_fa->fa_type = cfg->fc_type;
Robert Olsson19baf832005-06-21 12:43:18 -07001121 new_fa->fa_state = 0;
Robert Olsson19baf832005-06-21 12:43:18 -07001122 /*
1123 * Insert new entry to the list.
1124 */
1125
Stephen Hemmingerc877efb2005-07-19 14:01:51 -07001126 if (!fa_head) {
Stephen Hemmingerfea86ad2008-01-12 20:57:07 -08001127 fa_head = fib_insert_node(t, key, plen);
1128 if (unlikely(!fa_head)) {
1129 err = -ENOMEM;
Robert Olssonf835e472005-06-28 15:00:39 -07001130 goto out_free_new_fa;
Stephen Hemmingerfea86ad2008-01-12 20:57:07 -08001131 }
Robert Olssonf835e472005-06-28 15:00:39 -07001132 }
Robert Olsson19baf832005-06-21 12:43:18 -07001133
David S. Miller21d8c492011-04-14 14:49:37 -07001134 if (!plen)
1135 tb->tb_num_default++;
1136
Robert Olsson2373ce12005-08-25 13:01:29 -07001137 list_add_tail_rcu(&new_fa->fa_list,
1138 (fa ? &fa->fa_list : fa_head));
Robert Olsson19baf832005-06-21 12:43:18 -07001139
Nicolas Dichtel4ccfe6d2012-09-07 00:45:29 +00001140 rt_cache_flush(cfg->fc_nlinfo.nl_net);
Thomas Graf4e902c52006-08-17 18:14:52 -07001141 rtmsg_fib(RTM_NEWROUTE, htonl(key), new_fa, plen, tb->tb_id,
Milan Kocianb8f55832007-05-23 14:55:06 -07001142 &cfg->fc_nlinfo, 0);
Robert Olsson19baf832005-06-21 12:43:18 -07001143succeeded:
1144 return 0;
Robert Olssonf835e472005-06-28 15:00:39 -07001145
1146out_free_new_fa:
1147 kmem_cache_free(fn_alias_kmem, new_fa);
Robert Olsson19baf832005-06-21 12:43:18 -07001148out:
1149 fib_release_info(fi);
Olof Johansson91b9a272005-08-09 20:24:39 -07001150err:
Robert Olsson19baf832005-06-21 12:43:18 -07001151 return err;
1152}
1153
Alexander Duyck9f9e6362014-12-31 10:55:54 -08001154static inline t_key prefix_mismatch(t_key key, struct tnode *n)
1155{
1156 t_key prefix = n->key;
1157
1158 return (key ^ prefix) & (prefix | -prefix);
1159}
1160
Alexander Duyck345e9b52014-12-31 10:56:24 -08001161/* should be called with rcu_read_lock */
David S. Miller22bd5b92011-03-11 19:54:08 -05001162int fib_table_lookup(struct fib_table *tb, const struct flowi4 *flp,
Eric Dumazetebc0ffa2010-10-05 10:41:36 +00001163 struct fib_result *res, int fib_flags)
Robert Olsson19baf832005-06-21 12:43:18 -07001164{
Alexander Duyck9f9e6362014-12-31 10:55:54 -08001165 struct trie *t = (struct trie *)tb->tb_data;
Alexander Duyck8274a972014-12-31 10:55:29 -08001166#ifdef CONFIG_IP_FIB_TRIE_STATS
1167 struct trie_use_stats __percpu *stats = t->stats;
1168#endif
Alexander Duyck9f9e6362014-12-31 10:55:54 -08001169 const t_key key = ntohl(flp->daddr);
1170 struct tnode *n, *pn;
Alexander Duyck345e9b52014-12-31 10:56:24 -08001171 struct leaf_info *li;
Alexander Duyck9f9e6362014-12-31 10:55:54 -08001172 t_key cindex;
Robert Olsson19baf832005-06-21 12:43:18 -07001173
Robert Olsson2373ce12005-08-25 13:01:29 -07001174 n = rcu_dereference(t->trie);
Stephen Hemmingerc877efb2005-07-19 14:01:51 -07001175 if (!n)
Alexander Duyck345e9b52014-12-31 10:56:24 -08001176 return -EAGAIN;
Robert Olsson19baf832005-06-21 12:43:18 -07001177
1178#ifdef CONFIG_IP_FIB_TRIE_STATS
Alexander Duyck8274a972014-12-31 10:55:29 -08001179 this_cpu_inc(stats->gets);
Robert Olsson19baf832005-06-21 12:43:18 -07001180#endif
1181
Alexander Duyckadaf9812014-12-31 10:55:47 -08001182 pn = n;
Alexander Duyck9f9e6362014-12-31 10:55:54 -08001183 cindex = 0;
Stephen Hemmingerc877efb2005-07-19 14:01:51 -07001184
Alexander Duyck9f9e6362014-12-31 10:55:54 -08001185 /* Step 1: Travel to the longest prefix match in the trie */
1186 for (;;) {
1187 unsigned long index = get_index(key, n);
Robert Olsson19baf832005-06-21 12:43:18 -07001188
Alexander Duyck9f9e6362014-12-31 10:55:54 -08001189 /* This bit of code is a bit tricky but it combines multiple
1190 * checks into a single check. The prefix consists of the
1191 * prefix plus zeros for the "bits" in the prefix. The index
1192 * is the difference between the key and this value. From
1193 * this we can actually derive several pieces of data.
1194 * if !(index >> bits)
1195 * we know the value is child index
1196 * else
1197 * we have a mismatch in skip bits and failed
1198 */
1199 if (index >> n->bits)
1200 break;
Robert Olsson19baf832005-06-21 12:43:18 -07001201
Alexander Duyck9f9e6362014-12-31 10:55:54 -08001202 /* we have found a leaf. Prefixes have already been compared */
1203 if (IS_LEAF(n))
Stephen Hemmingera07f5f52008-01-22 21:53:36 -08001204 goto found;
Alexander Duyck9f9e6362014-12-31 10:55:54 -08001205
1206 /* only record pn and cindex if we are going to be chopping
1207 * bits later. Otherwise we are just wasting cycles.
1208 */
1209 if (index) {
1210 pn = n;
1211 cindex = index;
Olof Johansson91b9a272005-08-09 20:24:39 -07001212 }
1213
Alexander Duyck21d1f112014-12-31 10:57:02 -08001214 n = tnode_get_child_rcu(n, index);
Alexander Duyck9f9e6362014-12-31 10:55:54 -08001215 if (unlikely(!n))
Robert Olsson19baf832005-06-21 12:43:18 -07001216 goto backtrace;
Alexander Duyck9f9e6362014-12-31 10:55:54 -08001217 }
1218
1219 /* Step 2: Sort out leaves and begin backtracing for longest prefix */
1220 for (;;) {
1221 /* record the pointer where our next node pointer is stored */
1222 struct tnode __rcu **cptr = n->child;
1223
1224 /* This test verifies that none of the bits that differ
1225 * between the key and the prefix exist in the region of
1226 * the lsb and higher in the prefix.
1227 */
1228 if (unlikely(prefix_mismatch(key, n)))
1229 goto backtrace;
1230
1231 /* exit out and process leaf */
1232 if (unlikely(IS_LEAF(n)))
1233 break;
1234
1235 /* Don't bother recording parent info. Since we are in
1236 * prefix match mode we will have to come back to wherever
1237 * we started this traversal anyway
1238 */
1239
1240 while ((n = rcu_dereference(*cptr)) == NULL) {
1241backtrace:
1242#ifdef CONFIG_IP_FIB_TRIE_STATS
1243 if (!n)
1244 this_cpu_inc(stats->null_node_hit);
1245#endif
1246 /* If we are at cindex 0 there are no more bits for
1247 * us to strip at this level so we must ascend back
1248 * up one level to see if there are any more bits to
1249 * be stripped there.
1250 */
1251 while (!cindex) {
1252 t_key pkey = pn->key;
1253
1254 pn = node_parent_rcu(pn);
1255 if (unlikely(!pn))
Alexander Duyck345e9b52014-12-31 10:56:24 -08001256 return -EAGAIN;
Alexander Duyck9f9e6362014-12-31 10:55:54 -08001257#ifdef CONFIG_IP_FIB_TRIE_STATS
1258 this_cpu_inc(stats->backtrack);
1259#endif
1260 /* Get Child's index */
1261 cindex = get_index(pkey, pn);
1262 }
1263
1264 /* strip the least significant bit from the cindex */
1265 cindex &= cindex - 1;
1266
1267 /* grab pointer for next child node */
1268 cptr = &pn->child[cindex];
Stephen Hemmingerc877efb2005-07-19 14:01:51 -07001269 }
Robert Olsson19baf832005-06-21 12:43:18 -07001270 }
Alexander Duyck9f9e6362014-12-31 10:55:54 -08001271
Robert Olsson19baf832005-06-21 12:43:18 -07001272found:
Alexander Duyck9f9e6362014-12-31 10:55:54 -08001273 /* Step 3: Process the leaf, if that fails fall back to backtracing */
Alexander Duyck345e9b52014-12-31 10:56:24 -08001274 hlist_for_each_entry_rcu(li, &n->list, hlist) {
1275 struct fib_alias *fa;
1276
1277 if ((key ^ n->key) & li->mask_plen)
1278 continue;
1279
1280 list_for_each_entry_rcu(fa, &li->falh, fa_list) {
1281 struct fib_info *fi = fa->fa_info;
1282 int nhsel, err;
1283
1284 if (fa->fa_tos && fa->fa_tos != flp->flowi4_tos)
1285 continue;
1286 if (fi->fib_dead)
1287 continue;
1288 if (fa->fa_info->fib_scope < flp->flowi4_scope)
1289 continue;
1290 fib_alias_accessed(fa);
1291 err = fib_props[fa->fa_type].error;
1292 if (unlikely(err < 0)) {
1293#ifdef CONFIG_IP_FIB_TRIE_STATS
1294 this_cpu_inc(stats->semantic_match_passed);
1295#endif
1296 return err;
1297 }
1298 if (fi->fib_flags & RTNH_F_DEAD)
1299 continue;
1300 for (nhsel = 0; nhsel < fi->fib_nhs; nhsel++) {
1301 const struct fib_nh *nh = &fi->fib_nh[nhsel];
1302
1303 if (nh->nh_flags & RTNH_F_DEAD)
1304 continue;
1305 if (flp->flowi4_oif && flp->flowi4_oif != nh->nh_oif)
1306 continue;
1307
1308 if (!(fib_flags & FIB_LOOKUP_NOREF))
1309 atomic_inc(&fi->fib_clntref);
1310
1311 res->prefixlen = li->plen;
1312 res->nh_sel = nhsel;
1313 res->type = fa->fa_type;
1314 res->scope = fi->fib_scope;
1315 res->fi = fi;
1316 res->table = tb;
1317 res->fa_head = &li->falh;
1318#ifdef CONFIG_IP_FIB_TRIE_STATS
1319 this_cpu_inc(stats->semantic_match_passed);
1320#endif
1321 return err;
1322 }
1323 }
1324
1325#ifdef CONFIG_IP_FIB_TRIE_STATS
1326 this_cpu_inc(stats->semantic_match_miss);
1327#endif
1328 }
1329 goto backtrace;
Robert Olsson19baf832005-06-21 12:43:18 -07001330}
Florian Westphal6fc01432011-08-25 13:46:12 +02001331EXPORT_SYMBOL_GPL(fib_table_lookup);
Robert Olsson19baf832005-06-21 12:43:18 -07001332
Stephen Hemminger9195bef2008-01-22 21:56:34 -08001333/*
1334 * Remove the leaf and return parent.
1335 */
Alexander Duyckadaf9812014-12-31 10:55:47 -08001336static void trie_leaf_remove(struct trie *t, struct tnode *l)
Robert Olsson19baf832005-06-21 12:43:18 -07001337{
Alexander Duyck64c9b6f2014-12-31 10:55:35 -08001338 struct tnode *tp = node_parent(l);
Robert Olsson19baf832005-06-21 12:43:18 -07001339
Stephen Hemminger9195bef2008-01-22 21:56:34 -08001340 pr_debug("entering trie_leaf_remove(%p)\n", l);
Robert Olsson19baf832005-06-21 12:43:18 -07001341
Stephen Hemmingerc877efb2005-07-19 14:01:51 -07001342 if (tp) {
Alexander Duyck836a0122014-12-31 10:56:06 -08001343 put_child(tp, get_index(l->key, tp), NULL);
Jarek Poplawski7b855762009-06-18 00:28:51 -07001344 trie_rebalance(t, tp);
Alexander Duyck836a0122014-12-31 10:56:06 -08001345 } else {
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +00001346 RCU_INIT_POINTER(t->trie, NULL);
Alexander Duyck836a0122014-12-31 10:56:06 -08001347 }
Robert Olsson19baf832005-06-21 12:43:18 -07001348
Alexander Duyck37fd30f2014-12-31 10:55:41 -08001349 node_free(l);
Robert Olsson19baf832005-06-21 12:43:18 -07001350}
1351
Robert Olssond562f1f2007-03-26 14:22:22 -07001352/*
1353 * Caller must hold RTNL.
1354 */
Stephen Hemminger16c6cf82009-09-20 10:35:36 +00001355int fib_table_delete(struct fib_table *tb, struct fib_config *cfg)
Robert Olsson19baf832005-06-21 12:43:18 -07001356{
1357 struct trie *t = (struct trie *) tb->tb_data;
1358 u32 key, mask;
Thomas Graf4e902c52006-08-17 18:14:52 -07001359 int plen = cfg->fc_dst_len;
1360 u8 tos = cfg->fc_tos;
Robert Olsson19baf832005-06-21 12:43:18 -07001361 struct fib_alias *fa, *fa_to_delete;
1362 struct list_head *fa_head;
Alexander Duyckadaf9812014-12-31 10:55:47 -08001363 struct tnode *l;
Olof Johansson91b9a272005-08-09 20:24:39 -07001364 struct leaf_info *li;
1365
Stephen Hemmingerc877efb2005-07-19 14:01:51 -07001366 if (plen > 32)
Robert Olsson19baf832005-06-21 12:43:18 -07001367 return -EINVAL;
1368
Thomas Graf4e902c52006-08-17 18:14:52 -07001369 key = ntohl(cfg->fc_dst);
Olof Johansson91b9a272005-08-09 20:24:39 -07001370 mask = ntohl(inet_make_mask(plen));
Robert Olsson19baf832005-06-21 12:43:18 -07001371
Stephen Hemmingerc877efb2005-07-19 14:01:51 -07001372 if (key & ~mask)
Robert Olsson19baf832005-06-21 12:43:18 -07001373 return -EINVAL;
1374
1375 key = key & mask;
1376 l = fib_find_node(t, key);
1377
Stephen Hemmingerc877efb2005-07-19 14:01:51 -07001378 if (!l)
Robert Olsson19baf832005-06-21 12:43:18 -07001379 return -ESRCH;
1380
Igor Maravicad5b3102012-08-13 10:26:08 +02001381 li = find_leaf_info(l, plen);
1382
1383 if (!li)
1384 return -ESRCH;
1385
1386 fa_head = &li->falh;
Robert Olsson19baf832005-06-21 12:43:18 -07001387 fa = fib_find_alias(fa_head, tos, 0);
1388
1389 if (!fa)
1390 return -ESRCH;
1391
Stephen Hemminger0c7770c2005-08-23 21:59:41 -07001392 pr_debug("Deleting %08x/%d tos=%d t=%p\n", key, plen, tos, t);
Robert Olsson19baf832005-06-21 12:43:18 -07001393
1394 fa_to_delete = NULL;
Julian Anastasov936f6f82008-01-28 21:18:06 -08001395 fa = list_entry(fa->fa_list.prev, struct fib_alias, fa_list);
1396 list_for_each_entry_continue(fa, fa_head, fa_list) {
Robert Olsson19baf832005-06-21 12:43:18 -07001397 struct fib_info *fi = fa->fa_info;
1398
1399 if (fa->fa_tos != tos)
1400 break;
1401
Thomas Graf4e902c52006-08-17 18:14:52 -07001402 if ((!cfg->fc_type || fa->fa_type == cfg->fc_type) &&
1403 (cfg->fc_scope == RT_SCOPE_NOWHERE ||
David S. Miller37e826c2011-03-24 18:06:47 -07001404 fa->fa_info->fib_scope == cfg->fc_scope) &&
Julian Anastasov74cb3c12011-03-19 12:13:46 +00001405 (!cfg->fc_prefsrc ||
1406 fi->fib_prefsrc == cfg->fc_prefsrc) &&
Thomas Graf4e902c52006-08-17 18:14:52 -07001407 (!cfg->fc_protocol ||
1408 fi->fib_protocol == cfg->fc_protocol) &&
1409 fib_nh_match(cfg, fi) == 0) {
Robert Olsson19baf832005-06-21 12:43:18 -07001410 fa_to_delete = fa;
1411 break;
1412 }
1413 }
1414
Olof Johansson91b9a272005-08-09 20:24:39 -07001415 if (!fa_to_delete)
1416 return -ESRCH;
Robert Olsson19baf832005-06-21 12:43:18 -07001417
Olof Johansson91b9a272005-08-09 20:24:39 -07001418 fa = fa_to_delete;
Thomas Graf4e902c52006-08-17 18:14:52 -07001419 rtmsg_fib(RTM_DELROUTE, htonl(key), fa, plen, tb->tb_id,
Milan Kocianb8f55832007-05-23 14:55:06 -07001420 &cfg->fc_nlinfo, 0);
Robert Olsson19baf832005-06-21 12:43:18 -07001421
Robert Olsson2373ce12005-08-25 13:01:29 -07001422 list_del_rcu(&fa->fa_list);
Robert Olsson19baf832005-06-21 12:43:18 -07001423
David S. Miller21d8c492011-04-14 14:49:37 -07001424 if (!plen)
1425 tb->tb_num_default--;
1426
Olof Johansson91b9a272005-08-09 20:24:39 -07001427 if (list_empty(fa_head)) {
Robert Olsson2373ce12005-08-25 13:01:29 -07001428 hlist_del_rcu(&li->hlist);
Olof Johansson91b9a272005-08-09 20:24:39 -07001429 free_leaf_info(li);
Robert Olsson2373ce12005-08-25 13:01:29 -07001430 }
Olof Johansson91b9a272005-08-09 20:24:39 -07001431
1432 if (hlist_empty(&l->list))
Stephen Hemminger9195bef2008-01-22 21:56:34 -08001433 trie_leaf_remove(t, l);
Olof Johansson91b9a272005-08-09 20:24:39 -07001434
1435 if (fa->fa_state & FA_S_ACCESSED)
Nicolas Dichtel4ccfe6d2012-09-07 00:45:29 +00001436 rt_cache_flush(cfg->fc_nlinfo.nl_net);
Olof Johansson91b9a272005-08-09 20:24:39 -07001437
Robert Olsson2373ce12005-08-25 13:01:29 -07001438 fib_release_info(fa->fa_info);
1439 alias_free_mem_rcu(fa);
Olof Johansson91b9a272005-08-09 20:24:39 -07001440 return 0;
Robert Olsson19baf832005-06-21 12:43:18 -07001441}
1442
Stephen Hemmingeref3660c2008-04-10 03:46:12 -07001443static int trie_flush_list(struct list_head *head)
Robert Olsson19baf832005-06-21 12:43:18 -07001444{
1445 struct fib_alias *fa, *fa_node;
1446 int found = 0;
1447
1448 list_for_each_entry_safe(fa, fa_node, head, fa_list) {
1449 struct fib_info *fi = fa->fa_info;
Robert Olsson19baf832005-06-21 12:43:18 -07001450
Robert Olsson2373ce12005-08-25 13:01:29 -07001451 if (fi && (fi->fib_flags & RTNH_F_DEAD)) {
1452 list_del_rcu(&fa->fa_list);
1453 fib_release_info(fa->fa_info);
1454 alias_free_mem_rcu(fa);
Robert Olsson19baf832005-06-21 12:43:18 -07001455 found++;
1456 }
1457 }
1458 return found;
1459}
1460
Alexander Duyckadaf9812014-12-31 10:55:47 -08001461static int trie_flush_leaf(struct tnode *l)
Robert Olsson19baf832005-06-21 12:43:18 -07001462{
1463 int found = 0;
1464 struct hlist_head *lih = &l->list;
Sasha Levinb67bfe02013-02-27 17:06:00 -08001465 struct hlist_node *tmp;
Robert Olsson19baf832005-06-21 12:43:18 -07001466 struct leaf_info *li = NULL;
1467
Sasha Levinb67bfe02013-02-27 17:06:00 -08001468 hlist_for_each_entry_safe(li, tmp, lih, hlist) {
Stephen Hemmingeref3660c2008-04-10 03:46:12 -07001469 found += trie_flush_list(&li->falh);
Robert Olsson19baf832005-06-21 12:43:18 -07001470
1471 if (list_empty(&li->falh)) {
Robert Olsson2373ce12005-08-25 13:01:29 -07001472 hlist_del_rcu(&li->hlist);
Robert Olsson19baf832005-06-21 12:43:18 -07001473 free_leaf_info(li);
1474 }
1475 }
1476 return found;
1477}
1478
Stephen Hemminger82cfbb02008-01-22 21:55:32 -08001479/*
1480 * Scan for the next right leaf starting at node p->child[idx]
1481 * Since we have back pointer, no recursion necessary.
1482 */
Alexander Duyckadaf9812014-12-31 10:55:47 -08001483static struct tnode *leaf_walk_rcu(struct tnode *p, struct tnode *c)
Robert Olsson19baf832005-06-21 12:43:18 -07001484{
Stephen Hemminger82cfbb02008-01-22 21:55:32 -08001485 do {
Alexander Duyck98293e82014-12-31 10:56:18 -08001486 unsigned long idx = c ? idx = get_index(c->key, p) + 1 : 0;
Robert Olsson19baf832005-06-21 12:43:18 -07001487
Alexander Duyck98293e82014-12-31 10:56:18 -08001488 while (idx < tnode_child_length(p)) {
Stephen Hemminger82cfbb02008-01-22 21:55:32 -08001489 c = tnode_get_child_rcu(p, idx++);
Robert Olsson2373ce12005-08-25 13:01:29 -07001490 if (!c)
Olof Johansson91b9a272005-08-09 20:24:39 -07001491 continue;
Robert Olsson19baf832005-06-21 12:43:18 -07001492
Eric Dumazetaab515d2013-08-05 11:18:49 -07001493 if (IS_LEAF(c))
Alexander Duyckadaf9812014-12-31 10:55:47 -08001494 return c;
Stephen Hemminger82cfbb02008-01-22 21:55:32 -08001495
1496 /* Rescan start scanning in new node */
Alexander Duyckadaf9812014-12-31 10:55:47 -08001497 p = c;
Stephen Hemminger82cfbb02008-01-22 21:55:32 -08001498 idx = 0;
Robert Olsson19baf832005-06-21 12:43:18 -07001499 }
Stephen Hemminger82cfbb02008-01-22 21:55:32 -08001500
1501 /* Node empty, walk back up to parent */
Alexander Duyckadaf9812014-12-31 10:55:47 -08001502 c = p;
Eric Dumazeta034ee32010-09-09 23:32:28 +00001503 } while ((p = node_parent_rcu(c)) != NULL);
Stephen Hemminger82cfbb02008-01-22 21:55:32 -08001504
1505 return NULL; /* Root of trie */
1506}
1507
Alexander Duyckadaf9812014-12-31 10:55:47 -08001508static struct tnode *trie_firstleaf(struct trie *t)
Stephen Hemminger82cfbb02008-01-22 21:55:32 -08001509{
Alexander Duyckadaf9812014-12-31 10:55:47 -08001510 struct tnode *n = rcu_dereference_rtnl(t->trie);
Stephen Hemminger82cfbb02008-01-22 21:55:32 -08001511
1512 if (!n)
1513 return NULL;
1514
1515 if (IS_LEAF(n)) /* trie is just a leaf */
Alexander Duyckadaf9812014-12-31 10:55:47 -08001516 return n;
Stephen Hemminger82cfbb02008-01-22 21:55:32 -08001517
1518 return leaf_walk_rcu(n, NULL);
1519}
1520
Alexander Duyckadaf9812014-12-31 10:55:47 -08001521static struct tnode *trie_nextleaf(struct tnode *l)
Stephen Hemminger82cfbb02008-01-22 21:55:32 -08001522{
Alexander Duyckadaf9812014-12-31 10:55:47 -08001523 struct tnode *p = node_parent_rcu(l);
Stephen Hemminger82cfbb02008-01-22 21:55:32 -08001524
1525 if (!p)
1526 return NULL; /* trie with just one leaf */
1527
Alexander Duyckadaf9812014-12-31 10:55:47 -08001528 return leaf_walk_rcu(p, l);
Robert Olsson19baf832005-06-21 12:43:18 -07001529}
1530
Alexander Duyckadaf9812014-12-31 10:55:47 -08001531static struct tnode *trie_leafindex(struct trie *t, int index)
Stephen Hemminger71d67e62008-01-31 16:45:47 -08001532{
Alexander Duyckadaf9812014-12-31 10:55:47 -08001533 struct tnode *l = trie_firstleaf(t);
Stephen Hemminger71d67e62008-01-31 16:45:47 -08001534
Stephen Hemmingerec28cf72008-02-11 21:12:49 -08001535 while (l && index-- > 0)
Stephen Hemminger71d67e62008-01-31 16:45:47 -08001536 l = trie_nextleaf(l);
Stephen Hemmingerec28cf72008-02-11 21:12:49 -08001537
Stephen Hemminger71d67e62008-01-31 16:45:47 -08001538 return l;
1539}
1540
1541
Robert Olssond562f1f2007-03-26 14:22:22 -07001542/*
1543 * Caller must hold RTNL.
1544 */
Stephen Hemminger16c6cf82009-09-20 10:35:36 +00001545int fib_table_flush(struct fib_table *tb)
Robert Olsson19baf832005-06-21 12:43:18 -07001546{
1547 struct trie *t = (struct trie *) tb->tb_data;
Alexander Duyckadaf9812014-12-31 10:55:47 -08001548 struct tnode *l, *ll = NULL;
Stephen Hemminger82cfbb02008-01-22 21:55:32 -08001549 int found = 0;
Robert Olsson19baf832005-06-21 12:43:18 -07001550
Stephen Hemminger82cfbb02008-01-22 21:55:32 -08001551 for (l = trie_firstleaf(t); l; l = trie_nextleaf(l)) {
Stephen Hemmingeref3660c2008-04-10 03:46:12 -07001552 found += trie_flush_leaf(l);
Robert Olsson19baf832005-06-21 12:43:18 -07001553
1554 if (ll && hlist_empty(&ll->list))
Stephen Hemminger9195bef2008-01-22 21:56:34 -08001555 trie_leaf_remove(t, ll);
Robert Olsson19baf832005-06-21 12:43:18 -07001556 ll = l;
1557 }
1558
1559 if (ll && hlist_empty(&ll->list))
Stephen Hemminger9195bef2008-01-22 21:56:34 -08001560 trie_leaf_remove(t, ll);
Robert Olsson19baf832005-06-21 12:43:18 -07001561
Stephen Hemminger0c7770c2005-08-23 21:59:41 -07001562 pr_debug("trie_flush found=%d\n", found);
Robert Olsson19baf832005-06-21 12:43:18 -07001563 return found;
1564}
1565
Pavel Emelyanov4aa2c462010-10-28 02:00:43 +00001566void fib_free_table(struct fib_table *tb)
1567{
Alexander Duyck8274a972014-12-31 10:55:29 -08001568#ifdef CONFIG_IP_FIB_TRIE_STATS
1569 struct trie *t = (struct trie *)tb->tb_data;
1570
1571 free_percpu(t->stats);
1572#endif /* CONFIG_IP_FIB_TRIE_STATS */
Pavel Emelyanov4aa2c462010-10-28 02:00:43 +00001573 kfree(tb);
1574}
1575
Stephen Hemmingera07f5f52008-01-22 21:53:36 -08001576static int fn_trie_dump_fa(t_key key, int plen, struct list_head *fah,
1577 struct fib_table *tb,
Robert Olsson19baf832005-06-21 12:43:18 -07001578 struct sk_buff *skb, struct netlink_callback *cb)
1579{
1580 int i, s_i;
1581 struct fib_alias *fa;
Al Viro32ab5f82006-09-26 22:21:45 -07001582 __be32 xkey = htonl(key);
Robert Olsson19baf832005-06-21 12:43:18 -07001583
Stephen Hemminger71d67e62008-01-31 16:45:47 -08001584 s_i = cb->args[5];
Robert Olsson19baf832005-06-21 12:43:18 -07001585 i = 0;
1586
Robert Olsson2373ce12005-08-25 13:01:29 -07001587 /* rcu_read_lock is hold by caller */
1588
1589 list_for_each_entry_rcu(fa, fah, fa_list) {
Robert Olsson19baf832005-06-21 12:43:18 -07001590 if (i < s_i) {
1591 i++;
1592 continue;
1593 }
Robert Olsson19baf832005-06-21 12:43:18 -07001594
Eric W. Biederman15e47302012-09-07 20:12:54 +00001595 if (fib_dump_info(skb, NETLINK_CB(cb->skb).portid,
Robert Olsson19baf832005-06-21 12:43:18 -07001596 cb->nlh->nlmsg_seq,
1597 RTM_NEWROUTE,
1598 tb->tb_id,
1599 fa->fa_type,
Thomas Grafbe403ea2006-08-17 18:15:17 -07001600 xkey,
Robert Olsson19baf832005-06-21 12:43:18 -07001601 plen,
1602 fa->fa_tos,
Stephen Hemminger64347f72008-01-22 21:55:01 -08001603 fa->fa_info, NLM_F_MULTI) < 0) {
Stephen Hemminger71d67e62008-01-31 16:45:47 -08001604 cb->args[5] = i;
Robert Olsson19baf832005-06-21 12:43:18 -07001605 return -1;
Olof Johansson91b9a272005-08-09 20:24:39 -07001606 }
Robert Olsson19baf832005-06-21 12:43:18 -07001607 i++;
1608 }
Stephen Hemminger71d67e62008-01-31 16:45:47 -08001609 cb->args[5] = i;
Robert Olsson19baf832005-06-21 12:43:18 -07001610 return skb->len;
1611}
1612
Alexander Duyckadaf9812014-12-31 10:55:47 -08001613static int fn_trie_dump_leaf(struct tnode *l, struct fib_table *tb,
Stephen Hemmingera88ee222008-01-22 21:56:11 -08001614 struct sk_buff *skb, struct netlink_callback *cb)
Robert Olsson19baf832005-06-21 12:43:18 -07001615{
Stephen Hemmingera88ee222008-01-22 21:56:11 -08001616 struct leaf_info *li;
Stephen Hemmingera88ee222008-01-22 21:56:11 -08001617 int i, s_i;
Robert Olsson19baf832005-06-21 12:43:18 -07001618
Stephen Hemminger71d67e62008-01-31 16:45:47 -08001619 s_i = cb->args[4];
Stephen Hemmingera88ee222008-01-22 21:56:11 -08001620 i = 0;
Robert Olsson19baf832005-06-21 12:43:18 -07001621
Stephen Hemmingera88ee222008-01-22 21:56:11 -08001622 /* rcu_read_lock is hold by caller */
Sasha Levinb67bfe02013-02-27 17:06:00 -08001623 hlist_for_each_entry_rcu(li, &l->list, hlist) {
Stephen Hemmingera88ee222008-01-22 21:56:11 -08001624 if (i < s_i) {
1625 i++;
Robert Olsson19baf832005-06-21 12:43:18 -07001626 continue;
Stephen Hemmingera88ee222008-01-22 21:56:11 -08001627 }
Robert Olsson19baf832005-06-21 12:43:18 -07001628
Stephen Hemmingera88ee222008-01-22 21:56:11 -08001629 if (i > s_i)
Stephen Hemminger71d67e62008-01-31 16:45:47 -08001630 cb->args[5] = 0;
Olof Johansson91b9a272005-08-09 20:24:39 -07001631
Stephen Hemmingera88ee222008-01-22 21:56:11 -08001632 if (list_empty(&li->falh))
Robert Olsson19baf832005-06-21 12:43:18 -07001633 continue;
1634
Stephen Hemmingera88ee222008-01-22 21:56:11 -08001635 if (fn_trie_dump_fa(l->key, li->plen, &li->falh, tb, skb, cb) < 0) {
Stephen Hemminger71d67e62008-01-31 16:45:47 -08001636 cb->args[4] = i;
Robert Olsson19baf832005-06-21 12:43:18 -07001637 return -1;
1638 }
Stephen Hemmingera88ee222008-01-22 21:56:11 -08001639 i++;
Robert Olsson19baf832005-06-21 12:43:18 -07001640 }
Stephen Hemmingera88ee222008-01-22 21:56:11 -08001641
Stephen Hemminger71d67e62008-01-31 16:45:47 -08001642 cb->args[4] = i;
Robert Olsson19baf832005-06-21 12:43:18 -07001643 return skb->len;
1644}
1645
Stephen Hemminger16c6cf82009-09-20 10:35:36 +00001646int fib_table_dump(struct fib_table *tb, struct sk_buff *skb,
1647 struct netlink_callback *cb)
Robert Olsson19baf832005-06-21 12:43:18 -07001648{
Alexander Duyckadaf9812014-12-31 10:55:47 -08001649 struct tnode *l;
Robert Olsson19baf832005-06-21 12:43:18 -07001650 struct trie *t = (struct trie *) tb->tb_data;
Stephen Hemmingerd5ce8a02008-01-22 21:57:22 -08001651 t_key key = cb->args[2];
Stephen Hemminger71d67e62008-01-31 16:45:47 -08001652 int count = cb->args[3];
Robert Olsson19baf832005-06-21 12:43:18 -07001653
Robert Olsson2373ce12005-08-25 13:01:29 -07001654 rcu_read_lock();
Stephen Hemmingerd5ce8a02008-01-22 21:57:22 -08001655 /* Dump starting at last key.
1656 * Note: 0.0.0.0/0 (ie default) is first key.
1657 */
Stephen Hemminger71d67e62008-01-31 16:45:47 -08001658 if (count == 0)
Stephen Hemmingerd5ce8a02008-01-22 21:57:22 -08001659 l = trie_firstleaf(t);
1660 else {
Stephen Hemminger71d67e62008-01-31 16:45:47 -08001661 /* Normally, continue from last key, but if that is missing
1662 * fallback to using slow rescan
1663 */
Stephen Hemmingerd5ce8a02008-01-22 21:57:22 -08001664 l = fib_find_node(t, key);
Stephen Hemminger71d67e62008-01-31 16:45:47 -08001665 if (!l)
1666 l = trie_leafindex(t, count);
Stephen Hemmingerd5ce8a02008-01-22 21:57:22 -08001667 }
Stephen Hemmingera88ee222008-01-22 21:56:11 -08001668
Stephen Hemmingerd5ce8a02008-01-22 21:57:22 -08001669 while (l) {
1670 cb->args[2] = l->key;
Stephen Hemmingera88ee222008-01-22 21:56:11 -08001671 if (fn_trie_dump_leaf(l, tb, skb, cb) < 0) {
Stephen Hemminger71d67e62008-01-31 16:45:47 -08001672 cb->args[3] = count;
Stephen Hemmingera88ee222008-01-22 21:56:11 -08001673 rcu_read_unlock();
Stephen Hemmingera88ee222008-01-22 21:56:11 -08001674 return -1;
Robert Olsson19baf832005-06-21 12:43:18 -07001675 }
Stephen Hemmingerd5ce8a02008-01-22 21:57:22 -08001676
Stephen Hemminger71d67e62008-01-31 16:45:47 -08001677 ++count;
Stephen Hemmingerd5ce8a02008-01-22 21:57:22 -08001678 l = trie_nextleaf(l);
Stephen Hemminger71d67e62008-01-31 16:45:47 -08001679 memset(&cb->args[4], 0,
1680 sizeof(cb->args) - 4*sizeof(cb->args[0]));
Robert Olsson19baf832005-06-21 12:43:18 -07001681 }
Stephen Hemminger71d67e62008-01-31 16:45:47 -08001682 cb->args[3] = count;
Robert Olsson2373ce12005-08-25 13:01:29 -07001683 rcu_read_unlock();
Stephen Hemmingera88ee222008-01-22 21:56:11 -08001684
Robert Olsson19baf832005-06-21 12:43:18 -07001685 return skb->len;
Robert Olsson19baf832005-06-21 12:43:18 -07001686}
1687
David S. Miller5348ba82011-02-01 15:30:56 -08001688void __init fib_trie_init(void)
Stephen Hemminger7f9b8052008-01-14 23:14:20 -08001689{
Stephen Hemmingera07f5f52008-01-22 21:53:36 -08001690 fn_alias_kmem = kmem_cache_create("ip_fib_alias",
1691 sizeof(struct fib_alias),
Stephen Hemmingerbc3c8c12008-01-22 21:51:50 -08001692 0, SLAB_PANIC, NULL);
1693
1694 trie_leaf_kmem = kmem_cache_create("ip_fib_trie",
Alexander Duyckadaf9812014-12-31 10:55:47 -08001695 max(sizeof(struct tnode),
Stephen Hemmingerbc3c8c12008-01-22 21:51:50 -08001696 sizeof(struct leaf_info)),
1697 0, SLAB_PANIC, NULL);
Stephen Hemminger7f9b8052008-01-14 23:14:20 -08001698}
Robert Olsson19baf832005-06-21 12:43:18 -07001699
Stephen Hemminger7f9b8052008-01-14 23:14:20 -08001700
David S. Miller5348ba82011-02-01 15:30:56 -08001701struct fib_table *fib_trie_table(u32 id)
Robert Olsson19baf832005-06-21 12:43:18 -07001702{
1703 struct fib_table *tb;
1704 struct trie *t;
1705
Robert Olsson19baf832005-06-21 12:43:18 -07001706 tb = kmalloc(sizeof(struct fib_table) + sizeof(struct trie),
1707 GFP_KERNEL);
1708 if (tb == NULL)
1709 return NULL;
1710
1711 tb->tb_id = id;
Denis V. Lunev971b8932007-12-08 00:32:23 -08001712 tb->tb_default = -1;
David S. Miller21d8c492011-04-14 14:49:37 -07001713 tb->tb_num_default = 0;
Robert Olsson19baf832005-06-21 12:43:18 -07001714
1715 t = (struct trie *) tb->tb_data;
Alexander Duyck8274a972014-12-31 10:55:29 -08001716 RCU_INIT_POINTER(t->trie, NULL);
1717#ifdef CONFIG_IP_FIB_TRIE_STATS
1718 t->stats = alloc_percpu(struct trie_use_stats);
1719 if (!t->stats) {
1720 kfree(tb);
1721 tb = NULL;
1722 }
1723#endif
Robert Olsson19baf832005-06-21 12:43:18 -07001724
Robert Olsson19baf832005-06-21 12:43:18 -07001725 return tb;
1726}
1727
Robert Olsson19baf832005-06-21 12:43:18 -07001728#ifdef CONFIG_PROC_FS
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07001729/* Depth first Trie walk iterator */
1730struct fib_trie_iter {
Denis V. Lunev1c340b22008-01-10 03:27:17 -08001731 struct seq_net_private p;
Stephen Hemminger3d3b2d22008-03-23 22:43:56 -07001732 struct fib_table *tb;
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07001733 struct tnode *tnode;
Eric Dumazeta034ee32010-09-09 23:32:28 +00001734 unsigned int index;
1735 unsigned int depth;
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07001736};
Robert Olsson19baf832005-06-21 12:43:18 -07001737
Alexander Duyckadaf9812014-12-31 10:55:47 -08001738static struct tnode *fib_trie_get_next(struct fib_trie_iter *iter)
Robert Olsson19baf832005-06-21 12:43:18 -07001739{
Alexander Duyck98293e82014-12-31 10:56:18 -08001740 unsigned long cindex = iter->index;
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07001741 struct tnode *tn = iter->tnode;
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07001742 struct tnode *p;
1743
Eric W. Biederman6640e692007-01-24 14:42:04 -08001744 /* A single entry routing table */
1745 if (!tn)
1746 return NULL;
1747
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07001748 pr_debug("get_next iter={node=%p index=%d depth=%d}\n",
1749 iter->tnode, iter->index, iter->depth);
1750rescan:
Alexander Duyck98293e82014-12-31 10:56:18 -08001751 while (cindex < tnode_child_length(tn)) {
Alexander Duyckadaf9812014-12-31 10:55:47 -08001752 struct tnode *n = tnode_get_child_rcu(tn, cindex);
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07001753
1754 if (n) {
1755 if (IS_LEAF(n)) {
1756 iter->tnode = tn;
1757 iter->index = cindex + 1;
1758 } else {
1759 /* push down one level */
Alexander Duyckadaf9812014-12-31 10:55:47 -08001760 iter->tnode = n;
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07001761 iter->index = 0;
1762 ++iter->depth;
1763 }
1764 return n;
1765 }
1766
1767 ++cindex;
1768 }
1769
1770 /* Current node exhausted, pop back up */
Alexander Duyckadaf9812014-12-31 10:55:47 -08001771 p = node_parent_rcu(tn);
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07001772 if (p) {
Alexander Duycke9b44012014-12-31 10:56:12 -08001773 cindex = get_index(tn->key, p) + 1;
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07001774 tn = p;
1775 --iter->depth;
1776 goto rescan;
1777 }
1778
1779 /* got root? */
Robert Olsson19baf832005-06-21 12:43:18 -07001780 return NULL;
1781}
1782
Alexander Duyckadaf9812014-12-31 10:55:47 -08001783static struct tnode *fib_trie_get_first(struct fib_trie_iter *iter,
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07001784 struct trie *t)
Robert Olsson19baf832005-06-21 12:43:18 -07001785{
Alexander Duyckadaf9812014-12-31 10:55:47 -08001786 struct tnode *n;
Robert Olsson5ddf0eb2006-03-20 21:34:12 -08001787
Stephen Hemminger132adf52007-03-08 20:44:43 -08001788 if (!t)
Robert Olsson5ddf0eb2006-03-20 21:34:12 -08001789 return NULL;
1790
1791 n = rcu_dereference(t->trie);
Stephen Hemminger3d3b2d22008-03-23 22:43:56 -07001792 if (!n)
Robert Olsson5ddf0eb2006-03-20 21:34:12 -08001793 return NULL;
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07001794
Stephen Hemminger3d3b2d22008-03-23 22:43:56 -07001795 if (IS_TNODE(n)) {
Alexander Duyckadaf9812014-12-31 10:55:47 -08001796 iter->tnode = n;
Stephen Hemminger3d3b2d22008-03-23 22:43:56 -07001797 iter->index = 0;
1798 iter->depth = 1;
1799 } else {
1800 iter->tnode = NULL;
1801 iter->index = 0;
1802 iter->depth = 0;
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07001803 }
Stephen Hemminger3d3b2d22008-03-23 22:43:56 -07001804
1805 return n;
Robert Olsson19baf832005-06-21 12:43:18 -07001806}
1807
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07001808static void trie_collect_stats(struct trie *t, struct trie_stat *s)
Robert Olsson19baf832005-06-21 12:43:18 -07001809{
Alexander Duyckadaf9812014-12-31 10:55:47 -08001810 struct tnode *n;
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07001811 struct fib_trie_iter iter;
Robert Olsson19baf832005-06-21 12:43:18 -07001812
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07001813 memset(s, 0, sizeof(*s));
Robert Olsson19baf832005-06-21 12:43:18 -07001814
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07001815 rcu_read_lock();
Stephen Hemminger3d3b2d22008-03-23 22:43:56 -07001816 for (n = fib_trie_get_first(&iter, t); n; n = fib_trie_get_next(&iter)) {
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07001817 if (IS_LEAF(n)) {
Stephen Hemminger93672292008-01-22 21:54:05 -08001818 struct leaf_info *li;
Stephen Hemminger93672292008-01-22 21:54:05 -08001819
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07001820 s->leaves++;
1821 s->totdepth += iter.depth;
1822 if (iter.depth > s->maxdepth)
1823 s->maxdepth = iter.depth;
Stephen Hemminger93672292008-01-22 21:54:05 -08001824
Alexander Duyckadaf9812014-12-31 10:55:47 -08001825 hlist_for_each_entry_rcu(li, &n->list, hlist)
Stephen Hemminger93672292008-01-22 21:54:05 -08001826 ++s->prefixes;
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07001827 } else {
Alexander Duyck98293e82014-12-31 10:56:18 -08001828 unsigned long i;
Robert Olsson19baf832005-06-21 12:43:18 -07001829
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07001830 s->tnodes++;
Alexander Duyckadaf9812014-12-31 10:55:47 -08001831 if (n->bits < MAX_STAT_DEPTH)
1832 s->nodesizes[n->bits]++;
Robert Olsson06ef9212006-03-20 21:35:01 -08001833
Alexander Duyck21d1f112014-12-31 10:57:02 -08001834 for (i = tnode_child_length(n); i--;) {
Alexander Duyckadaf9812014-12-31 10:55:47 -08001835 if (!rcu_access_pointer(n->child[i]))
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07001836 s->nullpointers++;
Alexander Duyck98293e82014-12-31 10:56:18 -08001837 }
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07001838 }
1839 }
1840 rcu_read_unlock();
Robert Olsson19baf832005-06-21 12:43:18 -07001841}
1842
Stephen Hemmingerc877efb2005-07-19 14:01:51 -07001843/*
Robert Olsson19baf832005-06-21 12:43:18 -07001844 * This outputs /proc/net/fib_triestats
Robert Olsson19baf832005-06-21 12:43:18 -07001845 */
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07001846static void trie_show_stats(struct seq_file *seq, struct trie_stat *stat)
Robert Olsson19baf832005-06-21 12:43:18 -07001847{
Eric Dumazeta034ee32010-09-09 23:32:28 +00001848 unsigned int i, max, pointers, bytes, avdepth;
Robert Olsson19baf832005-06-21 12:43:18 -07001849
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07001850 if (stat->leaves)
1851 avdepth = stat->totdepth*100 / stat->leaves;
1852 else
1853 avdepth = 0;
Robert Olsson19baf832005-06-21 12:43:18 -07001854
Stephen Hemmingera07f5f52008-01-22 21:53:36 -08001855 seq_printf(seq, "\tAver depth: %u.%02d\n",
1856 avdepth / 100, avdepth % 100);
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07001857 seq_printf(seq, "\tMax depth: %u\n", stat->maxdepth);
Robert Olsson19baf832005-06-21 12:43:18 -07001858
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07001859 seq_printf(seq, "\tLeaves: %u\n", stat->leaves);
Alexander Duyckadaf9812014-12-31 10:55:47 -08001860 bytes = sizeof(struct tnode) * stat->leaves;
Stephen Hemminger93672292008-01-22 21:54:05 -08001861
1862 seq_printf(seq, "\tPrefixes: %u\n", stat->prefixes);
1863 bytes += sizeof(struct leaf_info) * stat->prefixes;
1864
Stephen Hemminger187b5182008-01-12 20:55:55 -08001865 seq_printf(seq, "\tInternal nodes: %u\n\t", stat->tnodes);
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07001866 bytes += sizeof(struct tnode) * stat->tnodes;
Robert Olsson19baf832005-06-21 12:43:18 -07001867
Robert Olsson06ef9212006-03-20 21:35:01 -08001868 max = MAX_STAT_DEPTH;
1869 while (max > 0 && stat->nodesizes[max-1] == 0)
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07001870 max--;
Robert Olsson19baf832005-06-21 12:43:18 -07001871
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07001872 pointers = 0;
Jerry Snitselaarf585a992013-07-22 12:01:58 -07001873 for (i = 1; i < max; i++)
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07001874 if (stat->nodesizes[i] != 0) {
Stephen Hemminger187b5182008-01-12 20:55:55 -08001875 seq_printf(seq, " %u: %u", i, stat->nodesizes[i]);
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07001876 pointers += (1<<i) * stat->nodesizes[i];
1877 }
1878 seq_putc(seq, '\n');
Stephen Hemminger187b5182008-01-12 20:55:55 -08001879 seq_printf(seq, "\tPointers: %u\n", pointers);
Robert Olsson19baf832005-06-21 12:43:18 -07001880
Alexander Duyckadaf9812014-12-31 10:55:47 -08001881 bytes += sizeof(struct tnode *) * pointers;
Stephen Hemminger187b5182008-01-12 20:55:55 -08001882 seq_printf(seq, "Null ptrs: %u\n", stat->nullpointers);
1883 seq_printf(seq, "Total size: %u kB\n", (bytes + 1023) / 1024);
Stephen Hemminger66a2f7f2008-01-12 21:23:17 -08001884}
Robert Olsson19baf832005-06-21 12:43:18 -07001885
1886#ifdef CONFIG_IP_FIB_TRIE_STATS
Stephen Hemminger66a2f7f2008-01-12 21:23:17 -08001887static void trie_show_usage(struct seq_file *seq,
Alexander Duyck8274a972014-12-31 10:55:29 -08001888 const struct trie_use_stats __percpu *stats)
Stephen Hemminger66a2f7f2008-01-12 21:23:17 -08001889{
Alexander Duyck8274a972014-12-31 10:55:29 -08001890 struct trie_use_stats s = { 0 };
1891 int cpu;
1892
1893 /* loop through all of the CPUs and gather up the stats */
1894 for_each_possible_cpu(cpu) {
1895 const struct trie_use_stats *pcpu = per_cpu_ptr(stats, cpu);
1896
1897 s.gets += pcpu->gets;
1898 s.backtrack += pcpu->backtrack;
1899 s.semantic_match_passed += pcpu->semantic_match_passed;
1900 s.semantic_match_miss += pcpu->semantic_match_miss;
1901 s.null_node_hit += pcpu->null_node_hit;
1902 s.resize_node_skipped += pcpu->resize_node_skipped;
1903 }
1904
Stephen Hemminger66a2f7f2008-01-12 21:23:17 -08001905 seq_printf(seq, "\nCounters:\n---------\n");
Alexander Duyck8274a972014-12-31 10:55:29 -08001906 seq_printf(seq, "gets = %u\n", s.gets);
1907 seq_printf(seq, "backtracks = %u\n", s.backtrack);
Stephen Hemmingera07f5f52008-01-22 21:53:36 -08001908 seq_printf(seq, "semantic match passed = %u\n",
Alexander Duyck8274a972014-12-31 10:55:29 -08001909 s.semantic_match_passed);
1910 seq_printf(seq, "semantic match miss = %u\n", s.semantic_match_miss);
1911 seq_printf(seq, "null node hit= %u\n", s.null_node_hit);
1912 seq_printf(seq, "skipped node resize = %u\n\n", s.resize_node_skipped);
Robert Olsson19baf832005-06-21 12:43:18 -07001913}
Stephen Hemminger66a2f7f2008-01-12 21:23:17 -08001914#endif /* CONFIG_IP_FIB_TRIE_STATS */
1915
Stephen Hemminger3d3b2d22008-03-23 22:43:56 -07001916static void fib_table_print(struct seq_file *seq, struct fib_table *tb)
Stephen Hemmingerd717a9a2008-01-14 23:11:54 -08001917{
Stephen Hemminger3d3b2d22008-03-23 22:43:56 -07001918 if (tb->tb_id == RT_TABLE_LOCAL)
1919 seq_puts(seq, "Local:\n");
1920 else if (tb->tb_id == RT_TABLE_MAIN)
1921 seq_puts(seq, "Main:\n");
1922 else
1923 seq_printf(seq, "Id %d:\n", tb->tb_id);
Stephen Hemmingerd717a9a2008-01-14 23:11:54 -08001924}
Robert Olsson19baf832005-06-21 12:43:18 -07001925
Stephen Hemminger3d3b2d22008-03-23 22:43:56 -07001926
Robert Olsson19baf832005-06-21 12:43:18 -07001927static int fib_triestat_seq_show(struct seq_file *seq, void *v)
1928{
Denis V. Lunev1c340b22008-01-10 03:27:17 -08001929 struct net *net = (struct net *)seq->private;
Stephen Hemminger3d3b2d22008-03-23 22:43:56 -07001930 unsigned int h;
Eric W. Biederman877a9bf2007-12-07 00:47:47 -08001931
Stephen Hemmingerd717a9a2008-01-14 23:11:54 -08001932 seq_printf(seq,
Stephen Hemmingera07f5f52008-01-22 21:53:36 -08001933 "Basic info: size of leaf:"
1934 " %Zd bytes, size of tnode: %Zd bytes.\n",
Alexander Duyckadaf9812014-12-31 10:55:47 -08001935 sizeof(struct tnode), sizeof(struct tnode));
Olof Johansson91b9a272005-08-09 20:24:39 -07001936
Stephen Hemminger3d3b2d22008-03-23 22:43:56 -07001937 for (h = 0; h < FIB_TABLE_HASHSZ; h++) {
1938 struct hlist_head *head = &net->ipv4.fib_table_hash[h];
Stephen Hemminger3d3b2d22008-03-23 22:43:56 -07001939 struct fib_table *tb;
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07001940
Sasha Levinb67bfe02013-02-27 17:06:00 -08001941 hlist_for_each_entry_rcu(tb, head, tb_hlist) {
Stephen Hemminger3d3b2d22008-03-23 22:43:56 -07001942 struct trie *t = (struct trie *) tb->tb_data;
1943 struct trie_stat stat;
1944
1945 if (!t)
1946 continue;
1947
1948 fib_table_print(seq, tb);
1949
1950 trie_collect_stats(t, &stat);
1951 trie_show_stats(seq, &stat);
1952#ifdef CONFIG_IP_FIB_TRIE_STATS
Alexander Duyck8274a972014-12-31 10:55:29 -08001953 trie_show_usage(seq, t->stats);
Stephen Hemminger3d3b2d22008-03-23 22:43:56 -07001954#endif
1955 }
1956 }
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07001957
Robert Olsson19baf832005-06-21 12:43:18 -07001958 return 0;
1959}
1960
Robert Olsson19baf832005-06-21 12:43:18 -07001961static int fib_triestat_seq_open(struct inode *inode, struct file *file)
1962{
Pavel Emelyanovde05c552008-07-18 04:07:21 -07001963 return single_open_net(inode, file, fib_triestat_seq_show);
Denis V. Lunev1c340b22008-01-10 03:27:17 -08001964}
1965
Arjan van de Ven9a321442007-02-12 00:55:35 -08001966static const struct file_operations fib_triestat_fops = {
Stephen Hemmingerc877efb2005-07-19 14:01:51 -07001967 .owner = THIS_MODULE,
1968 .open = fib_triestat_seq_open,
1969 .read = seq_read,
1970 .llseek = seq_lseek,
Pavel Emelyanovb6fcbdb2008-07-18 04:07:44 -07001971 .release = single_release_net,
Robert Olsson19baf832005-06-21 12:43:18 -07001972};
1973
Alexander Duyckadaf9812014-12-31 10:55:47 -08001974static struct tnode *fib_trie_get_idx(struct seq_file *seq, loff_t pos)
Robert Olsson19baf832005-06-21 12:43:18 -07001975{
YOSHIFUJI Hideaki12188542008-03-26 02:36:06 +09001976 struct fib_trie_iter *iter = seq->private;
1977 struct net *net = seq_file_net(seq);
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07001978 loff_t idx = 0;
Stephen Hemminger3d3b2d22008-03-23 22:43:56 -07001979 unsigned int h;
Robert Olsson19baf832005-06-21 12:43:18 -07001980
Stephen Hemminger3d3b2d22008-03-23 22:43:56 -07001981 for (h = 0; h < FIB_TABLE_HASHSZ; h++) {
1982 struct hlist_head *head = &net->ipv4.fib_table_hash[h];
Stephen Hemminger3d3b2d22008-03-23 22:43:56 -07001983 struct fib_table *tb;
1984
Sasha Levinb67bfe02013-02-27 17:06:00 -08001985 hlist_for_each_entry_rcu(tb, head, tb_hlist) {
Alexander Duyckadaf9812014-12-31 10:55:47 -08001986 struct tnode *n;
Stephen Hemminger3d3b2d22008-03-23 22:43:56 -07001987
1988 for (n = fib_trie_get_first(iter,
1989 (struct trie *) tb->tb_data);
1990 n; n = fib_trie_get_next(iter))
1991 if (pos == idx++) {
1992 iter->tb = tb;
1993 return n;
1994 }
1995 }
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07001996 }
Robert Olsson19baf832005-06-21 12:43:18 -07001997
Robert Olsson19baf832005-06-21 12:43:18 -07001998 return NULL;
1999}
2000
2001static void *fib_trie_seq_start(struct seq_file *seq, loff_t *pos)
Stephen Hemmingerc95aaf92008-01-12 21:25:02 -08002002 __acquires(RCU)
Robert Olsson19baf832005-06-21 12:43:18 -07002003{
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002004 rcu_read_lock();
YOSHIFUJI Hideaki12188542008-03-26 02:36:06 +09002005 return fib_trie_get_idx(seq, *pos);
Robert Olsson19baf832005-06-21 12:43:18 -07002006}
2007
2008static void *fib_trie_seq_next(struct seq_file *seq, void *v, loff_t *pos)
2009{
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002010 struct fib_trie_iter *iter = seq->private;
YOSHIFUJI Hideaki12188542008-03-26 02:36:06 +09002011 struct net *net = seq_file_net(seq);
Stephen Hemminger3d3b2d22008-03-23 22:43:56 -07002012 struct fib_table *tb = iter->tb;
2013 struct hlist_node *tb_node;
2014 unsigned int h;
Alexander Duyckadaf9812014-12-31 10:55:47 -08002015 struct tnode *n;
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002016
Robert Olsson19baf832005-06-21 12:43:18 -07002017 ++*pos;
Stephen Hemminger3d3b2d22008-03-23 22:43:56 -07002018 /* next node in same table */
2019 n = fib_trie_get_next(iter);
2020 if (n)
2021 return n;
Olof Johansson91b9a272005-08-09 20:24:39 -07002022
Stephen Hemminger3d3b2d22008-03-23 22:43:56 -07002023 /* walk rest of this hash chain */
2024 h = tb->tb_id & (FIB_TABLE_HASHSZ - 1);
Eric Dumazet0a5c0472011-03-31 01:51:35 -07002025 while ((tb_node = rcu_dereference(hlist_next_rcu(&tb->tb_hlist)))) {
Stephen Hemminger3d3b2d22008-03-23 22:43:56 -07002026 tb = hlist_entry(tb_node, struct fib_table, tb_hlist);
2027 n = fib_trie_get_first(iter, (struct trie *) tb->tb_data);
2028 if (n)
2029 goto found;
2030 }
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002031
Stephen Hemminger3d3b2d22008-03-23 22:43:56 -07002032 /* new hash chain */
2033 while (++h < FIB_TABLE_HASHSZ) {
2034 struct hlist_head *head = &net->ipv4.fib_table_hash[h];
Sasha Levinb67bfe02013-02-27 17:06:00 -08002035 hlist_for_each_entry_rcu(tb, head, tb_hlist) {
Stephen Hemminger3d3b2d22008-03-23 22:43:56 -07002036 n = fib_trie_get_first(iter, (struct trie *) tb->tb_data);
2037 if (n)
2038 goto found;
2039 }
2040 }
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002041 return NULL;
Stephen Hemminger3d3b2d22008-03-23 22:43:56 -07002042
2043found:
2044 iter->tb = tb;
2045 return n;
Robert Olsson19baf832005-06-21 12:43:18 -07002046}
2047
2048static void fib_trie_seq_stop(struct seq_file *seq, void *v)
Stephen Hemmingerc95aaf92008-01-12 21:25:02 -08002049 __releases(RCU)
Robert Olsson19baf832005-06-21 12:43:18 -07002050{
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002051 rcu_read_unlock();
Robert Olsson19baf832005-06-21 12:43:18 -07002052}
2053
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002054static void seq_indent(struct seq_file *seq, int n)
2055{
Eric Dumazeta034ee32010-09-09 23:32:28 +00002056 while (n-- > 0)
2057 seq_puts(seq, " ");
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002058}
Robert Olsson19baf832005-06-21 12:43:18 -07002059
Eric Dumazet28d36e32008-01-14 23:09:56 -08002060static inline const char *rtn_scope(char *buf, size_t len, enum rt_scope_t s)
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002061{
Stephen Hemminger132adf52007-03-08 20:44:43 -08002062 switch (s) {
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002063 case RT_SCOPE_UNIVERSE: return "universe";
2064 case RT_SCOPE_SITE: return "site";
2065 case RT_SCOPE_LINK: return "link";
2066 case RT_SCOPE_HOST: return "host";
2067 case RT_SCOPE_NOWHERE: return "nowhere";
2068 default:
Eric Dumazet28d36e32008-01-14 23:09:56 -08002069 snprintf(buf, len, "scope=%d", s);
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002070 return buf;
2071 }
2072}
2073
Jan Engelhardt36cbd3d2009-08-05 10:42:58 -07002074static const char *const rtn_type_names[__RTN_MAX] = {
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002075 [RTN_UNSPEC] = "UNSPEC",
2076 [RTN_UNICAST] = "UNICAST",
2077 [RTN_LOCAL] = "LOCAL",
2078 [RTN_BROADCAST] = "BROADCAST",
2079 [RTN_ANYCAST] = "ANYCAST",
2080 [RTN_MULTICAST] = "MULTICAST",
2081 [RTN_BLACKHOLE] = "BLACKHOLE",
2082 [RTN_UNREACHABLE] = "UNREACHABLE",
2083 [RTN_PROHIBIT] = "PROHIBIT",
2084 [RTN_THROW] = "THROW",
2085 [RTN_NAT] = "NAT",
2086 [RTN_XRESOLVE] = "XRESOLVE",
2087};
2088
Eric Dumazeta034ee32010-09-09 23:32:28 +00002089static inline const char *rtn_type(char *buf, size_t len, unsigned int t)
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002090{
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002091 if (t < __RTN_MAX && rtn_type_names[t])
2092 return rtn_type_names[t];
Eric Dumazet28d36e32008-01-14 23:09:56 -08002093 snprintf(buf, len, "type %u", t);
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002094 return buf;
2095}
2096
2097/* Pretty print the trie */
Robert Olsson19baf832005-06-21 12:43:18 -07002098static int fib_trie_seq_show(struct seq_file *seq, void *v)
2099{
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002100 const struct fib_trie_iter *iter = seq->private;
Alexander Duyckadaf9812014-12-31 10:55:47 -08002101 struct tnode *n = v;
Robert Olsson19baf832005-06-21 12:43:18 -07002102
Stephen Hemminger3d3b2d22008-03-23 22:43:56 -07002103 if (!node_parent_rcu(n))
2104 fib_table_print(seq, iter->tb);
Robert Olsson095b8502007-01-26 19:06:01 -08002105
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002106 if (IS_TNODE(n)) {
Alexander Duyckadaf9812014-12-31 10:55:47 -08002107 __be32 prf = htonl(n->key);
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002108
Alexander Duycke9b44012014-12-31 10:56:12 -08002109 seq_indent(seq, iter->depth-1);
2110 seq_printf(seq, " +-- %pI4/%zu %u %u %u\n",
2111 &prf, KEYLENGTH - n->pos - n->bits, n->bits,
2112 n->full_children, n->empty_children);
Olof Johansson91b9a272005-08-09 20:24:39 -07002113 } else {
Stephen Hemminger13280422008-01-22 21:54:37 -08002114 struct leaf_info *li;
Alexander Duyckadaf9812014-12-31 10:55:47 -08002115 __be32 val = htonl(n->key);
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002116
2117 seq_indent(seq, iter->depth);
Harvey Harrison673d57e2008-10-31 00:53:57 -07002118 seq_printf(seq, " |-- %pI4\n", &val);
Eric Dumazet28d36e32008-01-14 23:09:56 -08002119
Alexander Duyckadaf9812014-12-31 10:55:47 -08002120 hlist_for_each_entry_rcu(li, &n->list, hlist) {
Stephen Hemminger13280422008-01-22 21:54:37 -08002121 struct fib_alias *fa;
Eric Dumazet28d36e32008-01-14 23:09:56 -08002122
Stephen Hemminger13280422008-01-22 21:54:37 -08002123 list_for_each_entry_rcu(fa, &li->falh, fa_list) {
2124 char buf1[32], buf2[32];
Eric Dumazet28d36e32008-01-14 23:09:56 -08002125
Stephen Hemminger13280422008-01-22 21:54:37 -08002126 seq_indent(seq, iter->depth+1);
2127 seq_printf(seq, " /%d %s %s", li->plen,
2128 rtn_scope(buf1, sizeof(buf1),
David S. Miller37e826c2011-03-24 18:06:47 -07002129 fa->fa_info->fib_scope),
Stephen Hemminger13280422008-01-22 21:54:37 -08002130 rtn_type(buf2, sizeof(buf2),
2131 fa->fa_type));
2132 if (fa->fa_tos)
Denis V. Lunevb9c4d822008-02-05 02:58:45 -08002133 seq_printf(seq, " tos=%d", fa->fa_tos);
Stephen Hemminger13280422008-01-22 21:54:37 -08002134 seq_putc(seq, '\n');
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002135 }
2136 }
Robert Olsson19baf832005-06-21 12:43:18 -07002137 }
2138
2139 return 0;
2140}
2141
Stephen Hemmingerf6908082007-03-12 14:34:29 -07002142static const struct seq_operations fib_trie_seq_ops = {
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002143 .start = fib_trie_seq_start,
2144 .next = fib_trie_seq_next,
2145 .stop = fib_trie_seq_stop,
2146 .show = fib_trie_seq_show,
Robert Olsson19baf832005-06-21 12:43:18 -07002147};
2148
2149static int fib_trie_seq_open(struct inode *inode, struct file *file)
2150{
Denis V. Lunev1c340b22008-01-10 03:27:17 -08002151 return seq_open_net(inode, file, &fib_trie_seq_ops,
2152 sizeof(struct fib_trie_iter));
Robert Olsson19baf832005-06-21 12:43:18 -07002153}
2154
Arjan van de Ven9a321442007-02-12 00:55:35 -08002155static const struct file_operations fib_trie_fops = {
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002156 .owner = THIS_MODULE,
2157 .open = fib_trie_seq_open,
2158 .read = seq_read,
2159 .llseek = seq_lseek,
Denis V. Lunev1c340b22008-01-10 03:27:17 -08002160 .release = seq_release_net,
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002161};
2162
Stephen Hemminger8315f5d2008-02-11 21:14:39 -08002163struct fib_route_iter {
2164 struct seq_net_private p;
2165 struct trie *main_trie;
2166 loff_t pos;
2167 t_key key;
2168};
2169
Alexander Duyckadaf9812014-12-31 10:55:47 -08002170static struct tnode *fib_route_get_idx(struct fib_route_iter *iter, loff_t pos)
Stephen Hemminger8315f5d2008-02-11 21:14:39 -08002171{
Alexander Duyckadaf9812014-12-31 10:55:47 -08002172 struct tnode *l = NULL;
Stephen Hemminger8315f5d2008-02-11 21:14:39 -08002173 struct trie *t = iter->main_trie;
2174
2175 /* use cache location of last found key */
2176 if (iter->pos > 0 && pos >= iter->pos && (l = fib_find_node(t, iter->key)))
2177 pos -= iter->pos;
2178 else {
2179 iter->pos = 0;
2180 l = trie_firstleaf(t);
2181 }
2182
2183 while (l && pos-- > 0) {
2184 iter->pos++;
2185 l = trie_nextleaf(l);
2186 }
2187
2188 if (l)
2189 iter->key = pos; /* remember it */
2190 else
2191 iter->pos = 0; /* forget it */
2192
2193 return l;
2194}
2195
2196static void *fib_route_seq_start(struct seq_file *seq, loff_t *pos)
2197 __acquires(RCU)
2198{
2199 struct fib_route_iter *iter = seq->private;
2200 struct fib_table *tb;
2201
2202 rcu_read_lock();
YOSHIFUJI Hideaki12188542008-03-26 02:36:06 +09002203 tb = fib_get_table(seq_file_net(seq), RT_TABLE_MAIN);
Stephen Hemminger8315f5d2008-02-11 21:14:39 -08002204 if (!tb)
2205 return NULL;
2206
2207 iter->main_trie = (struct trie *) tb->tb_data;
2208 if (*pos == 0)
2209 return SEQ_START_TOKEN;
2210 else
2211 return fib_route_get_idx(iter, *pos - 1);
2212}
2213
2214static void *fib_route_seq_next(struct seq_file *seq, void *v, loff_t *pos)
2215{
2216 struct fib_route_iter *iter = seq->private;
Alexander Duyckadaf9812014-12-31 10:55:47 -08002217 struct tnode *l = v;
Stephen Hemminger8315f5d2008-02-11 21:14:39 -08002218
2219 ++*pos;
2220 if (v == SEQ_START_TOKEN) {
2221 iter->pos = 0;
2222 l = trie_firstleaf(iter->main_trie);
2223 } else {
2224 iter->pos++;
2225 l = trie_nextleaf(l);
2226 }
2227
2228 if (l)
2229 iter->key = l->key;
2230 else
2231 iter->pos = 0;
2232 return l;
2233}
2234
2235static void fib_route_seq_stop(struct seq_file *seq, void *v)
2236 __releases(RCU)
2237{
2238 rcu_read_unlock();
2239}
2240
Eric Dumazeta034ee32010-09-09 23:32:28 +00002241static unsigned int fib_flag_trans(int type, __be32 mask, const struct fib_info *fi)
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002242{
Eric Dumazeta034ee32010-09-09 23:32:28 +00002243 unsigned int flags = 0;
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002244
Eric Dumazeta034ee32010-09-09 23:32:28 +00002245 if (type == RTN_UNREACHABLE || type == RTN_PROHIBIT)
2246 flags = RTF_REJECT;
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002247 if (fi && fi->fib_nh->nh_gw)
2248 flags |= RTF_GATEWAY;
Al Viro32ab5f82006-09-26 22:21:45 -07002249 if (mask == htonl(0xFFFFFFFF))
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002250 flags |= RTF_HOST;
2251 flags |= RTF_UP;
2252 return flags;
2253}
2254
2255/*
2256 * This outputs /proc/net/route.
2257 * The format of the file is not supposed to be changed
Eric Dumazeta034ee32010-09-09 23:32:28 +00002258 * and needs to be same as fib_hash output to avoid breaking
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002259 * legacy utilities
2260 */
2261static int fib_route_seq_show(struct seq_file *seq, void *v)
2262{
Alexander Duyckadaf9812014-12-31 10:55:47 -08002263 struct tnode *l = v;
Stephen Hemminger13280422008-01-22 21:54:37 -08002264 struct leaf_info *li;
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002265
2266 if (v == SEQ_START_TOKEN) {
2267 seq_printf(seq, "%-127s\n", "Iface\tDestination\tGateway "
2268 "\tFlags\tRefCnt\tUse\tMetric\tMask\t\tMTU"
2269 "\tWindow\tIRTT");
2270 return 0;
2271 }
2272
Sasha Levinb67bfe02013-02-27 17:06:00 -08002273 hlist_for_each_entry_rcu(li, &l->list, hlist) {
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002274 struct fib_alias *fa;
Al Viro32ab5f82006-09-26 22:21:45 -07002275 __be32 mask, prefix;
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002276
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002277 mask = inet_make_mask(li->plen);
2278 prefix = htonl(l->key);
2279
2280 list_for_each_entry_rcu(fa, &li->falh, fa_list) {
Herbert Xu1371e372005-10-15 09:42:39 +10002281 const struct fib_info *fi = fa->fa_info;
Eric Dumazeta034ee32010-09-09 23:32:28 +00002282 unsigned int flags = fib_flag_trans(fa->fa_type, mask, fi);
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002283
2284 if (fa->fa_type == RTN_BROADCAST
2285 || fa->fa_type == RTN_MULTICAST)
2286 continue;
2287
Tetsuo Handa652586d2013-11-14 14:31:57 -08002288 seq_setwidth(seq, 127);
2289
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002290 if (fi)
Pavel Emelyanov5e659e42008-04-24 01:02:16 -07002291 seq_printf(seq,
2292 "%s\t%08X\t%08X\t%04X\t%d\t%u\t"
Tetsuo Handa652586d2013-11-14 14:31:57 -08002293 "%d\t%08X\t%d\t%u\t%u",
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002294 fi->fib_dev ? fi->fib_dev->name : "*",
2295 prefix,
2296 fi->fib_nh->nh_gw, flags, 0, 0,
2297 fi->fib_priority,
2298 mask,
Stephen Hemmingera07f5f52008-01-22 21:53:36 -08002299 (fi->fib_advmss ?
2300 fi->fib_advmss + 40 : 0),
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002301 fi->fib_window,
Tetsuo Handa652586d2013-11-14 14:31:57 -08002302 fi->fib_rtt >> 3);
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002303 else
Pavel Emelyanov5e659e42008-04-24 01:02:16 -07002304 seq_printf(seq,
2305 "*\t%08X\t%08X\t%04X\t%d\t%u\t"
Tetsuo Handa652586d2013-11-14 14:31:57 -08002306 "%d\t%08X\t%d\t%u\t%u",
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002307 prefix, 0, flags, 0, 0, 0,
Tetsuo Handa652586d2013-11-14 14:31:57 -08002308 mask, 0, 0, 0);
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002309
Tetsuo Handa652586d2013-11-14 14:31:57 -08002310 seq_pad(seq, '\n');
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002311 }
2312 }
2313
2314 return 0;
2315}
2316
Stephen Hemmingerf6908082007-03-12 14:34:29 -07002317static const struct seq_operations fib_route_seq_ops = {
Stephen Hemminger8315f5d2008-02-11 21:14:39 -08002318 .start = fib_route_seq_start,
2319 .next = fib_route_seq_next,
2320 .stop = fib_route_seq_stop,
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002321 .show = fib_route_seq_show,
2322};
2323
2324static int fib_route_seq_open(struct inode *inode, struct file *file)
2325{
Denis V. Lunev1c340b22008-01-10 03:27:17 -08002326 return seq_open_net(inode, file, &fib_route_seq_ops,
Stephen Hemminger8315f5d2008-02-11 21:14:39 -08002327 sizeof(struct fib_route_iter));
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002328}
2329
Arjan van de Ven9a321442007-02-12 00:55:35 -08002330static const struct file_operations fib_route_fops = {
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002331 .owner = THIS_MODULE,
2332 .open = fib_route_seq_open,
2333 .read = seq_read,
2334 .llseek = seq_lseek,
Denis V. Lunev1c340b22008-01-10 03:27:17 -08002335 .release = seq_release_net,
Robert Olsson19baf832005-06-21 12:43:18 -07002336};
2337
Denis V. Lunev61a02652008-01-10 03:21:09 -08002338int __net_init fib_proc_init(struct net *net)
Robert Olsson19baf832005-06-21 12:43:18 -07002339{
Gao fengd4beaa62013-02-18 01:34:54 +00002340 if (!proc_create("fib_trie", S_IRUGO, net->proc_net, &fib_trie_fops))
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002341 goto out1;
2342
Gao fengd4beaa62013-02-18 01:34:54 +00002343 if (!proc_create("fib_triestat", S_IRUGO, net->proc_net,
2344 &fib_triestat_fops))
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002345 goto out2;
2346
Gao fengd4beaa62013-02-18 01:34:54 +00002347 if (!proc_create("route", S_IRUGO, net->proc_net, &fib_route_fops))
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002348 goto out3;
2349
Robert Olsson19baf832005-06-21 12:43:18 -07002350 return 0;
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002351
2352out3:
Gao fengece31ff2013-02-18 01:34:56 +00002353 remove_proc_entry("fib_triestat", net->proc_net);
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002354out2:
Gao fengece31ff2013-02-18 01:34:56 +00002355 remove_proc_entry("fib_trie", net->proc_net);
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002356out1:
2357 return -ENOMEM;
Robert Olsson19baf832005-06-21 12:43:18 -07002358}
2359
Denis V. Lunev61a02652008-01-10 03:21:09 -08002360void __net_exit fib_proc_exit(struct net *net)
Robert Olsson19baf832005-06-21 12:43:18 -07002361{
Gao fengece31ff2013-02-18 01:34:56 +00002362 remove_proc_entry("fib_trie", net->proc_net);
2363 remove_proc_entry("fib_triestat", net->proc_net);
2364 remove_proc_entry("route", net->proc_net);
Robert Olsson19baf832005-06-21 12:43:18 -07002365}
2366
2367#endif /* CONFIG_PROC_FS */