blob: 7f342265968e8244603c69d921e5904ee3e8ce4d [file] [log] [blame]
Robert Olsson19baf832005-06-21 12:43:18 -07001/*
2 * This program is free software; you can redistribute it and/or
3 * modify it under the terms of the GNU General Public License
4 * as published by the Free Software Foundation; either version
5 * 2 of the License, or (at your option) any later version.
6 *
7 * Robert Olsson <robert.olsson@its.uu.se> Uppsala Universitet
8 * & Swedish University of Agricultural Sciences.
9 *
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +090010 * Jens Laas <jens.laas@data.slu.se> Swedish University of
Robert Olsson19baf832005-06-21 12:43:18 -070011 * Agricultural Sciences.
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +090012 *
Robert Olsson19baf832005-06-21 12:43:18 -070013 * Hans Liss <hans.liss@its.uu.se> Uppsala Universitet
14 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -030015 * This work is based on the LPC-trie which is originally described in:
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +090016 *
Robert Olsson19baf832005-06-21 12:43:18 -070017 * An experimental study of compression methods for dynamic tries
18 * Stefan Nilsson and Matti Tikkanen. Algorithmica, 33(1):19-33, 2002.
Justin P. Mattock631dd1a2010-10-18 11:03:14 +020019 * http://www.csc.kth.se/~snilsson/software/dyntrie2/
Robert Olsson19baf832005-06-21 12:43:18 -070020 *
21 *
22 * IP-address lookup using LC-tries. Stefan Nilsson and Gunnar Karlsson
23 * IEEE Journal on Selected Areas in Communications, 17(6):1083-1092, June 1999
24 *
Robert Olsson19baf832005-06-21 12:43:18 -070025 *
26 * Code from fib_hash has been reused which includes the following header:
27 *
28 *
29 * INET An implementation of the TCP/IP protocol suite for the LINUX
30 * operating system. INET is implemented using the BSD Socket
31 * interface as the means of communication with the user level.
32 *
33 * IPv4 FIB: lookup engine and maintenance routines.
34 *
35 *
36 * Authors: Alexey Kuznetsov, <kuznet@ms2.inr.ac.ru>
37 *
38 * This program is free software; you can redistribute it and/or
39 * modify it under the terms of the GNU General Public License
40 * as published by the Free Software Foundation; either version
41 * 2 of the License, or (at your option) any later version.
Robert Olssonfd966252005-12-22 11:25:10 -080042 *
43 * Substantial contributions to this work comes from:
44 *
45 * David S. Miller, <davem@davemloft.net>
46 * Stephen Hemminger <shemminger@osdl.org>
47 * Paul E. McKenney <paulmck@us.ibm.com>
48 * Patrick McHardy <kaber@trash.net>
Robert Olsson19baf832005-06-21 12:43:18 -070049 */
50
Jens Låås80b71b82009-08-28 23:57:15 -070051#define VERSION "0.409"
Robert Olsson19baf832005-06-21 12:43:18 -070052
Robert Olsson19baf832005-06-21 12:43:18 -070053#include <asm/uaccess.h>
Jiri Slaby1977f032007-10-18 23:40:25 -070054#include <linux/bitops.h>
Robert Olsson19baf832005-06-21 12:43:18 -070055#include <linux/types.h>
56#include <linux/kernel.h>
Robert Olsson19baf832005-06-21 12:43:18 -070057#include <linux/mm.h>
58#include <linux/string.h>
59#include <linux/socket.h>
60#include <linux/sockios.h>
61#include <linux/errno.h>
62#include <linux/in.h>
63#include <linux/inet.h>
Stephen Hemmingercd8787a2006-01-03 14:38:34 -080064#include <linux/inetdevice.h>
Robert Olsson19baf832005-06-21 12:43:18 -070065#include <linux/netdevice.h>
66#include <linux/if_arp.h>
67#include <linux/proc_fs.h>
Robert Olsson2373ce12005-08-25 13:01:29 -070068#include <linux/rcupdate.h>
Robert Olsson19baf832005-06-21 12:43:18 -070069#include <linux/skbuff.h>
70#include <linux/netlink.h>
71#include <linux/init.h>
72#include <linux/list.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090073#include <linux/slab.h>
Paul Gortmakerbc3b2d72011-07-15 11:47:34 -040074#include <linux/export.h>
Eric W. Biederman457c4cb2007-09-12 12:01:34 +020075#include <net/net_namespace.h>
Robert Olsson19baf832005-06-21 12:43:18 -070076#include <net/ip.h>
77#include <net/protocol.h>
78#include <net/route.h>
79#include <net/tcp.h>
80#include <net/sock.h>
81#include <net/ip_fib.h>
82#include "fib_lookup.h"
83
Robert Olsson06ef9212006-03-20 21:35:01 -080084#define MAX_STAT_DEPTH 32
Robert Olsson19baf832005-06-21 12:43:18 -070085
Alexander Duyck95f60ea2015-01-22 15:51:26 -080086#define KEYLENGTH (8*sizeof(t_key))
87#define KEY_MAX ((t_key)~0)
Robert Olsson19baf832005-06-21 12:43:18 -070088
Robert Olsson19baf832005-06-21 12:43:18 -070089typedef unsigned int t_key;
90
Alexander Duyck64c9b6f2014-12-31 10:55:35 -080091#define IS_TNODE(n) ((n)->bits)
92#define IS_LEAF(n) (!(n)->bits)
Robert Olsson2373ce12005-08-25 13:01:29 -070093
Alexander Duycke9b44012014-12-31 10:56:12 -080094#define get_index(_key, _kv) (((_key) ^ (_kv)->key) >> (_kv)->pos)
Alexander Duyck9f9e6362014-12-31 10:55:54 -080095
Alexander Duyck64c9b6f2014-12-31 10:55:35 -080096struct tnode {
97 t_key key;
98 unsigned char bits; /* 2log(KEYLENGTH) bits needed */
99 unsigned char pos; /* 2log(KEYLENGTH) bits needed */
Alexander Duyck5405afd2014-12-31 10:57:08 -0800100 unsigned char slen;
Alexander Duyck64c9b6f2014-12-31 10:55:35 -0800101 struct tnode __rcu *parent;
Alexander Duyck37fd30f2014-12-31 10:55:41 -0800102 struct rcu_head rcu;
Alexander Duyckadaf9812014-12-31 10:55:47 -0800103 union {
104 /* The fields in this struct are valid if bits > 0 (TNODE) */
105 struct {
Alexander Duyck95f60ea2015-01-22 15:51:26 -0800106 t_key empty_children; /* KEYLENGTH bits needed */
107 t_key full_children; /* KEYLENGTH bits needed */
Alexander Duyckadaf9812014-12-31 10:55:47 -0800108 struct tnode __rcu *child[0];
109 };
110 /* This list pointer if valid if bits == 0 (LEAF) */
111 struct hlist_head list;
112 };
Robert Olsson19baf832005-06-21 12:43:18 -0700113};
114
115struct leaf_info {
116 struct hlist_node hlist;
117 int plen;
Eric Dumazet5c745012011-07-18 03:16:33 +0000118 u32 mask_plen; /* ntohl(inet_make_mask(plen)) */
Robert Olsson19baf832005-06-21 12:43:18 -0700119 struct list_head falh;
Eric Dumazet5c745012011-07-18 03:16:33 +0000120 struct rcu_head rcu;
Robert Olsson19baf832005-06-21 12:43:18 -0700121};
122
Robert Olsson19baf832005-06-21 12:43:18 -0700123#ifdef CONFIG_IP_FIB_TRIE_STATS
124struct trie_use_stats {
125 unsigned int gets;
126 unsigned int backtrack;
127 unsigned int semantic_match_passed;
128 unsigned int semantic_match_miss;
129 unsigned int null_node_hit;
Robert Olsson2f368952005-07-05 15:02:40 -0700130 unsigned int resize_node_skipped;
Robert Olsson19baf832005-06-21 12:43:18 -0700131};
132#endif
133
134struct trie_stat {
135 unsigned int totdepth;
136 unsigned int maxdepth;
137 unsigned int tnodes;
138 unsigned int leaves;
139 unsigned int nullpointers;
Stephen Hemminger93672292008-01-22 21:54:05 -0800140 unsigned int prefixes;
Robert Olsson06ef9212006-03-20 21:35:01 -0800141 unsigned int nodesizes[MAX_STAT_DEPTH];
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700142};
Robert Olsson19baf832005-06-21 12:43:18 -0700143
144struct trie {
Alexander Duyckadaf9812014-12-31 10:55:47 -0800145 struct tnode __rcu *trie;
Robert Olsson19baf832005-06-21 12:43:18 -0700146#ifdef CONFIG_IP_FIB_TRIE_STATS
Alexander Duyck8274a972014-12-31 10:55:29 -0800147 struct trie_use_stats __percpu *stats;
Robert Olsson19baf832005-06-21 12:43:18 -0700148#endif
Robert Olsson19baf832005-06-21 12:43:18 -0700149};
150
Alexander Duyckff181ed2014-12-31 10:56:43 -0800151static void resize(struct trie *t, struct tnode *tn);
Jarek Poplawskic3059472009-07-14 08:33:08 +0000152static size_t tnode_free_size;
153
154/*
155 * synchronize_rcu after call_rcu for that many pages; it should be especially
156 * useful before resizing the root node with PREEMPT_NONE configs; the value was
157 * obtained experimentally, aiming to avoid visible slowdown.
158 */
159static const int sync_pages = 128;
Robert Olsson19baf832005-06-21 12:43:18 -0700160
Christoph Lametere18b8902006-12-06 20:33:20 -0800161static struct kmem_cache *fn_alias_kmem __read_mostly;
Stephen Hemmingerbc3c8c12008-01-22 21:51:50 -0800162static struct kmem_cache *trie_leaf_kmem __read_mostly;
Robert Olsson19baf832005-06-21 12:43:18 -0700163
Alexander Duyck64c9b6f2014-12-31 10:55:35 -0800164/* caller must hold RTNL */
165#define node_parent(n) rtnl_dereference((n)->parent)
Eric Dumazet0a5c0472011-03-31 01:51:35 -0700166
Alexander Duyck64c9b6f2014-12-31 10:55:35 -0800167/* caller must hold RCU read lock or RTNL */
168#define node_parent_rcu(n) rcu_dereference_rtnl((n)->parent)
Eric Dumazet0a5c0472011-03-31 01:51:35 -0700169
Alexander Duyck64c9b6f2014-12-31 10:55:35 -0800170/* wrapper for rcu_assign_pointer */
Alexander Duyckadaf9812014-12-31 10:55:47 -0800171static inline void node_set_parent(struct tnode *n, struct tnode *tp)
Stephen Hemminger06801912007-08-10 15:22:13 -0700172{
Alexander Duyckadaf9812014-12-31 10:55:47 -0800173 if (n)
174 rcu_assign_pointer(n->parent, tp);
Alexander Duyck64c9b6f2014-12-31 10:55:35 -0800175}
176
177#define NODE_INIT_PARENT(n, p) RCU_INIT_POINTER((n)->parent, p)
178
179/* This provides us with the number of children in this node, in the case of a
180 * leaf this will return 0 meaning none of the children are accessible.
181 */
Alexander Duyck98293e82014-12-31 10:56:18 -0800182static inline unsigned long tnode_child_length(const struct tnode *tn)
Alexander Duyck64c9b6f2014-12-31 10:55:35 -0800183{
184 return (1ul << tn->bits) & ~(1ul);
Stephen Hemminger06801912007-08-10 15:22:13 -0700185}
Robert Olsson2373ce12005-08-25 13:01:29 -0700186
Alexander Duyck98293e82014-12-31 10:56:18 -0800187/* caller must hold RTNL */
188static inline struct tnode *tnode_get_child(const struct tnode *tn,
189 unsigned long i)
Robert Olsson19baf832005-06-21 12:43:18 -0700190{
Eric Dumazet0a5c0472011-03-31 01:51:35 -0700191 return rtnl_dereference(tn->child[i]);
Eric Dumazetb59cfbf2008-01-18 03:31:36 -0800192}
193
Alexander Duyck98293e82014-12-31 10:56:18 -0800194/* caller must hold RCU read lock or RTNL */
195static inline struct tnode *tnode_get_child_rcu(const struct tnode *tn,
196 unsigned long i)
Eric Dumazetb59cfbf2008-01-18 03:31:36 -0800197{
Eric Dumazet0a5c0472011-03-31 01:51:35 -0700198 return rcu_dereference_rtnl(tn->child[i]);
Robert Olsson19baf832005-06-21 12:43:18 -0700199}
200
Alexander Duycke9b44012014-12-31 10:56:12 -0800201/* To understand this stuff, an understanding of keys and all their bits is
202 * necessary. Every node in the trie has a key associated with it, but not
203 * all of the bits in that key are significant.
204 *
205 * Consider a node 'n' and its parent 'tp'.
206 *
207 * If n is a leaf, every bit in its key is significant. Its presence is
208 * necessitated by path compression, since during a tree traversal (when
209 * searching for a leaf - unless we are doing an insertion) we will completely
210 * ignore all skipped bits we encounter. Thus we need to verify, at the end of
211 * a potentially successful search, that we have indeed been walking the
212 * correct key path.
213 *
214 * Note that we can never "miss" the correct key in the tree if present by
215 * following the wrong path. Path compression ensures that segments of the key
216 * that are the same for all keys with a given prefix are skipped, but the
217 * skipped part *is* identical for each node in the subtrie below the skipped
218 * bit! trie_insert() in this implementation takes care of that.
219 *
220 * if n is an internal node - a 'tnode' here, the various parts of its key
221 * have many different meanings.
222 *
223 * Example:
224 * _________________________________________________________________
225 * | i | i | i | i | i | i | i | N | N | N | S | S | S | S | S | C |
226 * -----------------------------------------------------------------
227 * 31 30 29 28 27 26 25 24 23 22 21 20 19 18 17 16
228 *
229 * _________________________________________________________________
230 * | C | C | C | u | u | u | u | u | u | u | u | u | u | u | u | u |
231 * -----------------------------------------------------------------
232 * 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
233 *
234 * tp->pos = 22
235 * tp->bits = 3
236 * n->pos = 13
237 * n->bits = 4
238 *
239 * First, let's just ignore the bits that come before the parent tp, that is
240 * the bits from (tp->pos + tp->bits) to 31. They are *known* but at this
241 * point we do not use them for anything.
242 *
243 * The bits from (tp->pos) to (tp->pos + tp->bits - 1) - "N", above - are the
244 * index into the parent's child array. That is, they will be used to find
245 * 'n' among tp's children.
246 *
247 * The bits from (n->pos + n->bits) to (tn->pos - 1) - "S" - are skipped bits
248 * for the node n.
249 *
250 * All the bits we have seen so far are significant to the node n. The rest
251 * of the bits are really not needed or indeed known in n->key.
252 *
253 * The bits from (n->pos) to (n->pos + n->bits - 1) - "C" - are the index into
254 * n's child array, and will of course be different for each child.
255 *
256 * The rest of the bits, from 0 to (n->pos + n->bits), are completely unknown
257 * at this point.
258 */
Robert Olsson19baf832005-06-21 12:43:18 -0700259
Denis V. Lunevf5026fa2007-12-13 09:47:57 -0800260static const int halve_threshold = 25;
261static const int inflate_threshold = 50;
Jarek Poplawski345aa032009-07-07 19:39:16 -0700262static const int halve_threshold_root = 15;
Jens Låås80b71b82009-08-28 23:57:15 -0700263static const int inflate_threshold_root = 30;
Robert Olsson2373ce12005-08-25 13:01:29 -0700264
265static void __alias_free_mem(struct rcu_head *head)
266{
267 struct fib_alias *fa = container_of(head, struct fib_alias, rcu);
268 kmem_cache_free(fn_alias_kmem, fa);
269}
270
271static inline void alias_free_mem_rcu(struct fib_alias *fa)
272{
273 call_rcu(&fa->rcu, __alias_free_mem);
274}
275
Alexander Duyck37fd30f2014-12-31 10:55:41 -0800276#define TNODE_KMALLOC_MAX \
Alexander Duyckadaf9812014-12-31 10:55:47 -0800277 ilog2((PAGE_SIZE - sizeof(struct tnode)) / sizeof(struct tnode *))
Alexander Duyck37fd30f2014-12-31 10:55:41 -0800278
279static void __node_free_rcu(struct rcu_head *head)
Robert Olsson2373ce12005-08-25 13:01:29 -0700280{
Alexander Duyckadaf9812014-12-31 10:55:47 -0800281 struct tnode *n = container_of(head, struct tnode, rcu);
Alexander Duyck37fd30f2014-12-31 10:55:41 -0800282
283 if (IS_LEAF(n))
284 kmem_cache_free(trie_leaf_kmem, n);
285 else if (n->bits <= TNODE_KMALLOC_MAX)
286 kfree(n);
287 else
288 vfree(n);
Robert Olsson2373ce12005-08-25 13:01:29 -0700289}
290
Alexander Duyck37fd30f2014-12-31 10:55:41 -0800291#define node_free(n) call_rcu(&n->rcu, __node_free_rcu)
Stephen Hemminger387a5482008-04-10 03:47:34 -0700292
Robert Olsson2373ce12005-08-25 13:01:29 -0700293static inline void free_leaf_info(struct leaf_info *leaf)
294{
Lai Jiangshanbceb0f42011-03-18 11:42:34 +0800295 kfree_rcu(leaf, rcu);
Robert Olsson2373ce12005-08-25 13:01:29 -0700296}
297
Eric Dumazet8d965442008-01-13 22:31:44 -0800298static struct tnode *tnode_alloc(size_t size)
Robert Olsson2373ce12005-08-25 13:01:29 -0700299{
Robert Olsson2373ce12005-08-25 13:01:29 -0700300 if (size <= PAGE_SIZE)
Eric Dumazet8d965442008-01-13 22:31:44 -0800301 return kzalloc(size, GFP_KERNEL);
Stephen Hemminger15be75c2008-04-10 02:56:38 -0700302 else
Eric Dumazet7a1c8e52010-11-20 07:46:35 +0000303 return vzalloc(size);
Stephen Hemminger15be75c2008-04-10 02:56:38 -0700304}
Robert Olsson2373ce12005-08-25 13:01:29 -0700305
Alexander Duyck95f60ea2015-01-22 15:51:26 -0800306static inline void empty_child_inc(struct tnode *n)
307{
308 ++n->empty_children ? : ++n->full_children;
309}
310
311static inline void empty_child_dec(struct tnode *n)
312{
313 n->empty_children-- ? : n->full_children--;
314}
315
Alexander Duyckadaf9812014-12-31 10:55:47 -0800316static struct tnode *leaf_new(t_key key)
Robert Olsson19baf832005-06-21 12:43:18 -0700317{
Alexander Duyckadaf9812014-12-31 10:55:47 -0800318 struct tnode *l = kmem_cache_alloc(trie_leaf_kmem, GFP_KERNEL);
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700319 if (l) {
Alexander Duyck64c9b6f2014-12-31 10:55:35 -0800320 l->parent = NULL;
321 /* set key and pos to reflect full key value
322 * any trailing zeros in the key should be ignored
323 * as the nodes are searched
324 */
325 l->key = key;
Alexander Duyck5405afd2014-12-31 10:57:08 -0800326 l->slen = 0;
Alexander Duycke9b44012014-12-31 10:56:12 -0800327 l->pos = 0;
Alexander Duyck64c9b6f2014-12-31 10:55:35 -0800328 /* set bits to 0 indicating we are not a tnode */
329 l->bits = 0;
330
Robert Olsson19baf832005-06-21 12:43:18 -0700331 INIT_HLIST_HEAD(&l->list);
332 }
333 return l;
334}
335
336static struct leaf_info *leaf_info_new(int plen)
337{
338 struct leaf_info *li = kmalloc(sizeof(struct leaf_info), GFP_KERNEL);
Robert Olsson2373ce12005-08-25 13:01:29 -0700339 if (li) {
340 li->plen = plen;
Eric Dumazet5c745012011-07-18 03:16:33 +0000341 li->mask_plen = ntohl(inet_make_mask(plen));
Robert Olsson2373ce12005-08-25 13:01:29 -0700342 INIT_LIST_HEAD(&li->falh);
Patrick McHardyf0e36f82005-07-05 14:44:55 -0700343 }
Robert Olsson2373ce12005-08-25 13:01:29 -0700344 return li;
Patrick McHardyf0e36f82005-07-05 14:44:55 -0700345}
346
Stephen Hemmingera07f5f52008-01-22 21:53:36 -0800347static struct tnode *tnode_new(t_key key, int pos, int bits)
Robert Olsson19baf832005-06-21 12:43:18 -0700348{
Alexander Duyck95f60ea2015-01-22 15:51:26 -0800349 size_t sz = offsetof(struct tnode, child[1ul << bits]);
Patrick McHardyf0e36f82005-07-05 14:44:55 -0700350 struct tnode *tn = tnode_alloc(sz);
Alexander Duyck64c9b6f2014-12-31 10:55:35 -0800351 unsigned int shift = pos + bits;
352
353 /* verify bits and pos their msb bits clear and values are valid */
354 BUG_ON(!bits || (shift > KEYLENGTH));
Robert Olsson19baf832005-06-21 12:43:18 -0700355
Olof Johansson91b9a272005-08-09 20:24:39 -0700356 if (tn) {
Alexander Duyck64c9b6f2014-12-31 10:55:35 -0800357 tn->parent = NULL;
Alexander Duyck5405afd2014-12-31 10:57:08 -0800358 tn->slen = pos;
Robert Olsson19baf832005-06-21 12:43:18 -0700359 tn->pos = pos;
360 tn->bits = bits;
Alexander Duycke9b44012014-12-31 10:56:12 -0800361 tn->key = (shift < KEYLENGTH) ? (key >> shift) << shift : 0;
Alexander Duyck95f60ea2015-01-22 15:51:26 -0800362 if (bits == KEYLENGTH)
363 tn->full_children = 1;
364 else
365 tn->empty_children = 1ul << bits;
Robert Olsson19baf832005-06-21 12:43:18 -0700366 }
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700367
Eric Dumazeta034ee32010-09-09 23:32:28 +0000368 pr_debug("AT %p s=%zu %zu\n", tn, sizeof(struct tnode),
Alexander Duyckadaf9812014-12-31 10:55:47 -0800369 sizeof(struct tnode *) << bits);
Robert Olsson19baf832005-06-21 12:43:18 -0700370 return tn;
371}
372
Alexander Duycke9b44012014-12-31 10:56:12 -0800373/* Check whether a tnode 'n' is "full", i.e. it is an internal node
Robert Olsson19baf832005-06-21 12:43:18 -0700374 * and no bits are skipped. See discussion in dyntree paper p. 6
375 */
Alexander Duyckadaf9812014-12-31 10:55:47 -0800376static inline int tnode_full(const struct tnode *tn, const struct tnode *n)
Robert Olsson19baf832005-06-21 12:43:18 -0700377{
Alexander Duycke9b44012014-12-31 10:56:12 -0800378 return n && ((n->pos + n->bits) == tn->pos) && IS_TNODE(n);
Robert Olsson19baf832005-06-21 12:43:18 -0700379}
380
Alexander Duyckff181ed2014-12-31 10:56:43 -0800381/* Add a child at position i overwriting the old value.
382 * Update the value of full_children and empty_children.
383 */
384static void put_child(struct tnode *tn, unsigned long i, struct tnode *n)
Robert Olsson19baf832005-06-21 12:43:18 -0700385{
Alexander Duyck21d1f112014-12-31 10:57:02 -0800386 struct tnode *chi = tnode_get_child(tn, i);
Alexander Duyckff181ed2014-12-31 10:56:43 -0800387 int isfull, wasfull;
Robert Olsson19baf832005-06-21 12:43:18 -0700388
Alexander Duyck98293e82014-12-31 10:56:18 -0800389 BUG_ON(i >= tnode_child_length(tn));
Stephen Hemminger0c7770c2005-08-23 21:59:41 -0700390
Alexander Duyck95f60ea2015-01-22 15:51:26 -0800391 /* update emptyChildren, overflow into fullChildren */
Robert Olsson19baf832005-06-21 12:43:18 -0700392 if (n == NULL && chi != NULL)
Alexander Duyck95f60ea2015-01-22 15:51:26 -0800393 empty_child_inc(tn);
394 if (n != NULL && chi == NULL)
395 empty_child_dec(tn);
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700396
Robert Olsson19baf832005-06-21 12:43:18 -0700397 /* update fullChildren */
Alexander Duyckff181ed2014-12-31 10:56:43 -0800398 wasfull = tnode_full(tn, chi);
Robert Olsson19baf832005-06-21 12:43:18 -0700399 isfull = tnode_full(tn, n);
Alexander Duyckff181ed2014-12-31 10:56:43 -0800400
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700401 if (wasfull && !isfull)
Robert Olsson19baf832005-06-21 12:43:18 -0700402 tn->full_children--;
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700403 else if (!wasfull && isfull)
Robert Olsson19baf832005-06-21 12:43:18 -0700404 tn->full_children++;
Olof Johansson91b9a272005-08-09 20:24:39 -0700405
Alexander Duyck5405afd2014-12-31 10:57:08 -0800406 if (n && (tn->slen < n->slen))
407 tn->slen = n->slen;
408
Eric Dumazetcf778b02012-01-12 04:41:32 +0000409 rcu_assign_pointer(tn->child[i], n);
Robert Olsson19baf832005-06-21 12:43:18 -0700410}
411
Alexander Duyck69fa57b2015-01-22 15:51:14 -0800412static void update_children(struct tnode *tn)
413{
414 unsigned long i;
415
416 /* update all of the child parent pointers */
417 for (i = tnode_child_length(tn); i;) {
418 struct tnode *inode = tnode_get_child(tn, --i);
419
420 if (!inode)
421 continue;
422
423 /* Either update the children of a tnode that
424 * already belongs to us or update the child
425 * to point to ourselves.
426 */
427 if (node_parent(inode) == tn)
428 update_children(inode);
429 else
430 node_set_parent(inode, tn);
431 }
432}
433
434static inline void put_child_root(struct tnode *tp, struct trie *t,
435 t_key key, struct tnode *n)
Alexander Duyck836a0122014-12-31 10:56:06 -0800436{
437 if (tp)
438 put_child(tp, get_index(key, tp), n);
439 else
440 rcu_assign_pointer(t->trie, n);
441}
442
Alexander Duyckfc86a932014-12-31 10:56:49 -0800443static inline void tnode_free_init(struct tnode *tn)
Eric Dumazet0a5c0472011-03-31 01:51:35 -0700444{
Alexander Duyckfc86a932014-12-31 10:56:49 -0800445 tn->rcu.next = NULL;
446}
Eric Dumazet0a5c0472011-03-31 01:51:35 -0700447
Alexander Duyckfc86a932014-12-31 10:56:49 -0800448static inline void tnode_free_append(struct tnode *tn, struct tnode *n)
449{
450 n->rcu.next = tn->rcu.next;
451 tn->rcu.next = &n->rcu;
452}
453
454static void tnode_free(struct tnode *tn)
455{
456 struct callback_head *head = &tn->rcu;
457
458 while (head) {
459 head = head->next;
460 tnode_free_size += offsetof(struct tnode, child[1 << tn->bits]);
461 node_free(tn);
462
463 tn = container_of(head, struct tnode, rcu);
Eric Dumazet0a5c0472011-03-31 01:51:35 -0700464 }
Alexander Duyckfc86a932014-12-31 10:56:49 -0800465
466 if (tnode_free_size >= PAGE_SIZE * sync_pages) {
467 tnode_free_size = 0;
468 synchronize_rcu();
469 }
Eric Dumazet0a5c0472011-03-31 01:51:35 -0700470}
471
Alexander Duyck69fa57b2015-01-22 15:51:14 -0800472static void replace(struct trie *t, struct tnode *oldtnode, struct tnode *tn)
473{
474 struct tnode *tp = node_parent(oldtnode);
475 unsigned long i;
476
477 /* setup the parent pointer out of and back into this node */
478 NODE_INIT_PARENT(tn, tp);
479 put_child_root(tp, t, tn->key, tn);
480
481 /* update all of the child parent pointers */
482 update_children(tn);
483
484 /* all pointers should be clean so we are done */
485 tnode_free(oldtnode);
486
487 /* resize children now that oldtnode is freed */
488 for (i = tnode_child_length(tn); i;) {
489 struct tnode *inode = tnode_get_child(tn, --i);
490
491 /* resize child node */
492 if (tnode_full(tn, inode))
493 resize(t, inode);
494 }
495}
496
Alexander Duyckff181ed2014-12-31 10:56:43 -0800497static int inflate(struct trie *t, struct tnode *oldtnode)
Robert Olsson19baf832005-06-21 12:43:18 -0700498{
Alexander Duyck69fa57b2015-01-22 15:51:14 -0800499 struct tnode *tn;
500 unsigned long i;
Alexander Duycke9b44012014-12-31 10:56:12 -0800501 t_key m;
Robert Olsson19baf832005-06-21 12:43:18 -0700502
Stephen Hemminger0c7770c2005-08-23 21:59:41 -0700503 pr_debug("In inflate\n");
Robert Olsson19baf832005-06-21 12:43:18 -0700504
Alexander Duycke9b44012014-12-31 10:56:12 -0800505 tn = tnode_new(oldtnode->key, oldtnode->pos - 1, oldtnode->bits + 1);
Stephen Hemminger0c7770c2005-08-23 21:59:41 -0700506 if (!tn)
Alexander Duyckff181ed2014-12-31 10:56:43 -0800507 return -ENOMEM;
Robert Olsson2f368952005-07-05 15:02:40 -0700508
Alexander Duyck69fa57b2015-01-22 15:51:14 -0800509 /* prepare oldtnode to be freed */
510 tnode_free_init(oldtnode);
511
Alexander Duyck12c081a2014-12-31 10:56:55 -0800512 /* Assemble all of the pointers in our cluster, in this case that
513 * represents all of the pointers out of our allocated nodes that
514 * point to existing tnodes and the links between our allocated
515 * nodes.
Robert Olsson2f368952005-07-05 15:02:40 -0700516 */
Alexander Duyck12c081a2014-12-31 10:56:55 -0800517 for (i = tnode_child_length(oldtnode), m = 1u << tn->pos; i;) {
Alexander Duyck69fa57b2015-01-22 15:51:14 -0800518 struct tnode *inode = tnode_get_child(oldtnode, --i);
519 struct tnode *node0, *node1;
520 unsigned long j, k;
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700521
Robert Olsson19baf832005-06-21 12:43:18 -0700522 /* An empty child */
Alexander Duyckadaf9812014-12-31 10:55:47 -0800523 if (inode == NULL)
Robert Olsson19baf832005-06-21 12:43:18 -0700524 continue;
525
526 /* A leaf or an internal node with skipped bits */
Alexander Duyckadaf9812014-12-31 10:55:47 -0800527 if (!tnode_full(oldtnode, inode)) {
Alexander Duycke9b44012014-12-31 10:56:12 -0800528 put_child(tn, get_index(inode->key, tn), inode);
Robert Olsson19baf832005-06-21 12:43:18 -0700529 continue;
530 }
531
Alexander Duyck69fa57b2015-01-22 15:51:14 -0800532 /* drop the node in the old tnode free list */
533 tnode_free_append(oldtnode, inode);
534
Robert Olsson19baf832005-06-21 12:43:18 -0700535 /* An internal node with two children */
Robert Olsson19baf832005-06-21 12:43:18 -0700536 if (inode->bits == 1) {
Alexander Duyck12c081a2014-12-31 10:56:55 -0800537 put_child(tn, 2 * i + 1, tnode_get_child(inode, 1));
538 put_child(tn, 2 * i, tnode_get_child(inode, 0));
Olof Johansson91b9a272005-08-09 20:24:39 -0700539 continue;
Robert Olsson19baf832005-06-21 12:43:18 -0700540 }
541
Olof Johansson91b9a272005-08-09 20:24:39 -0700542 /* We will replace this node 'inode' with two new
Alexander Duyck12c081a2014-12-31 10:56:55 -0800543 * ones, 'node0' and 'node1', each with half of the
Olof Johansson91b9a272005-08-09 20:24:39 -0700544 * original children. The two new nodes will have
545 * a position one bit further down the key and this
546 * means that the "significant" part of their keys
547 * (see the discussion near the top of this file)
548 * will differ by one bit, which will be "0" in
Alexander Duyck12c081a2014-12-31 10:56:55 -0800549 * node0's key and "1" in node1's key. Since we are
Olof Johansson91b9a272005-08-09 20:24:39 -0700550 * moving the key position by one step, the bit that
551 * we are moving away from - the bit at position
Alexander Duyck12c081a2014-12-31 10:56:55 -0800552 * (tn->pos) - is the one that will differ between
553 * node0 and node1. So... we synthesize that bit in the
554 * two new keys.
Olof Johansson91b9a272005-08-09 20:24:39 -0700555 */
Alexander Duyck12c081a2014-12-31 10:56:55 -0800556 node1 = tnode_new(inode->key | m, inode->pos, inode->bits - 1);
557 if (!node1)
558 goto nomem;
Alexander Duyck69fa57b2015-01-22 15:51:14 -0800559 node0 = tnode_new(inode->key, inode->pos, inode->bits - 1);
Robert Olsson19baf832005-06-21 12:43:18 -0700560
Alexander Duyck69fa57b2015-01-22 15:51:14 -0800561 tnode_free_append(tn, node1);
Alexander Duyck12c081a2014-12-31 10:56:55 -0800562 if (!node0)
563 goto nomem;
564 tnode_free_append(tn, node0);
Robert Olsson19baf832005-06-21 12:43:18 -0700565
Alexander Duyck12c081a2014-12-31 10:56:55 -0800566 /* populate child pointers in new nodes */
567 for (k = tnode_child_length(inode), j = k / 2; j;) {
568 put_child(node1, --j, tnode_get_child(inode, --k));
569 put_child(node0, j, tnode_get_child(inode, j));
570 put_child(node1, --j, tnode_get_child(inode, --k));
571 put_child(node0, j, tnode_get_child(inode, j));
Robert Olsson19baf832005-06-21 12:43:18 -0700572 }
Alexander Duyckff181ed2014-12-31 10:56:43 -0800573
Alexander Duyck12c081a2014-12-31 10:56:55 -0800574 /* link new nodes to parent */
575 NODE_INIT_PARENT(node1, tn);
576 NODE_INIT_PARENT(node0, tn);
Olof Johansson91b9a272005-08-09 20:24:39 -0700577
Alexander Duyck12c081a2014-12-31 10:56:55 -0800578 /* link parent to nodes */
579 put_child(tn, 2 * i + 1, node1);
580 put_child(tn, 2 * i, node0);
Robert Olsson19baf832005-06-21 12:43:18 -0700581 }
Alexander Duyckff181ed2014-12-31 10:56:43 -0800582
Alexander Duyck69fa57b2015-01-22 15:51:14 -0800583 /* setup the parent pointers into and out of this node */
584 replace(t, oldtnode, tn);
Alexander Duyckfc86a932014-12-31 10:56:49 -0800585
Alexander Duyckff181ed2014-12-31 10:56:43 -0800586 return 0;
Robert Olsson2f80b3c2005-08-09 20:25:06 -0700587nomem:
Alexander Duyckfc86a932014-12-31 10:56:49 -0800588 /* all pointers should be clean so we are done */
589 tnode_free(tn);
Alexander Duyckff181ed2014-12-31 10:56:43 -0800590 return -ENOMEM;
Robert Olsson19baf832005-06-21 12:43:18 -0700591}
592
Alexander Duyckff181ed2014-12-31 10:56:43 -0800593static int halve(struct trie *t, struct tnode *oldtnode)
Robert Olsson19baf832005-06-21 12:43:18 -0700594{
Alexander Duyck69fa57b2015-01-22 15:51:14 -0800595 struct tnode *tn;
Alexander Duyck12c081a2014-12-31 10:56:55 -0800596 unsigned long i;
Robert Olsson19baf832005-06-21 12:43:18 -0700597
Stephen Hemminger0c7770c2005-08-23 21:59:41 -0700598 pr_debug("In halve\n");
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700599
Alexander Duycke9b44012014-12-31 10:56:12 -0800600 tn = tnode_new(oldtnode->key, oldtnode->pos + 1, oldtnode->bits - 1);
Robert Olsson2f80b3c2005-08-09 20:25:06 -0700601 if (!tn)
Alexander Duyckff181ed2014-12-31 10:56:43 -0800602 return -ENOMEM;
Robert Olsson2f368952005-07-05 15:02:40 -0700603
Alexander Duyck69fa57b2015-01-22 15:51:14 -0800604 /* prepare oldtnode to be freed */
605 tnode_free_init(oldtnode);
606
Alexander Duyck12c081a2014-12-31 10:56:55 -0800607 /* Assemble all of the pointers in our cluster, in this case that
608 * represents all of the pointers out of our allocated nodes that
609 * point to existing tnodes and the links between our allocated
610 * nodes.
Robert Olsson2f368952005-07-05 15:02:40 -0700611 */
Alexander Duyck12c081a2014-12-31 10:56:55 -0800612 for (i = tnode_child_length(oldtnode); i;) {
Alexander Duyck69fa57b2015-01-22 15:51:14 -0800613 struct tnode *node1 = tnode_get_child(oldtnode, --i);
614 struct tnode *node0 = tnode_get_child(oldtnode, --i);
615 struct tnode *inode;
Robert Olsson2f368952005-07-05 15:02:40 -0700616
Alexander Duyck12c081a2014-12-31 10:56:55 -0800617 /* At least one of the children is empty */
618 if (!node1 || !node0) {
619 put_child(tn, i / 2, node1 ? : node0);
620 continue;
Robert Olsson2f368952005-07-05 15:02:40 -0700621 }
Robert Olsson2f368952005-07-05 15:02:40 -0700622
Alexander Duyck12c081a2014-12-31 10:56:55 -0800623 /* Two nonempty children */
624 inode = tnode_new(node0->key, oldtnode->pos, 1);
625 if (!inode) {
626 tnode_free(tn);
627 return -ENOMEM;
628 }
629 tnode_free_append(tn, inode);
630
631 /* initialize pointers out of node */
632 put_child(inode, 1, node1);
633 put_child(inode, 0, node0);
634 NODE_INIT_PARENT(inode, tn);
635
636 /* link parent to node */
637 put_child(tn, i / 2, inode);
Robert Olsson2f368952005-07-05 15:02:40 -0700638 }
Robert Olsson19baf832005-06-21 12:43:18 -0700639
Alexander Duyck69fa57b2015-01-22 15:51:14 -0800640 /* setup the parent pointers into and out of this node */
641 replace(t, oldtnode, tn);
Alexander Duyckff181ed2014-12-31 10:56:43 -0800642
643 return 0;
Robert Olsson19baf832005-06-21 12:43:18 -0700644}
645
Alexander Duyck95f60ea2015-01-22 15:51:26 -0800646static void collapse(struct trie *t, struct tnode *oldtnode)
647{
648 struct tnode *n, *tp;
649 unsigned long i;
650
651 /* scan the tnode looking for that one child that might still exist */
652 for (n = NULL, i = tnode_child_length(oldtnode); !n && i;)
653 n = tnode_get_child(oldtnode, --i);
654
655 /* compress one level */
656 tp = node_parent(oldtnode);
657 put_child_root(tp, t, oldtnode->key, n);
658 node_set_parent(n, tp);
659
660 /* drop dead node */
661 node_free(oldtnode);
662}
663
Alexander Duyck5405afd2014-12-31 10:57:08 -0800664static unsigned char update_suffix(struct tnode *tn)
665{
666 unsigned char slen = tn->pos;
667 unsigned long stride, i;
668
669 /* search though the list of children looking for nodes that might
670 * have a suffix greater than the one we currently have. This is
671 * why we start with a stride of 2 since a stride of 1 would
672 * represent the nodes with suffix length equal to tn->pos
673 */
674 for (i = 0, stride = 0x2ul ; i < tnode_child_length(tn); i += stride) {
675 struct tnode *n = tnode_get_child(tn, i);
676
677 if (!n || (n->slen <= slen))
678 continue;
679
680 /* update stride and slen based on new value */
681 stride <<= (n->slen - slen);
682 slen = n->slen;
683 i &= ~(stride - 1);
684
685 /* if slen covers all but the last bit we can stop here
686 * there will be nothing longer than that since only node
687 * 0 and 1 << (bits - 1) could have that as their suffix
688 * length.
689 */
690 if ((slen + 1) >= (tn->pos + tn->bits))
691 break;
692 }
693
694 tn->slen = slen;
695
696 return slen;
697}
698
Alexander Duyckf05a4812014-12-31 10:56:37 -0800699/* From "Implementing a dynamic compressed trie" by Stefan Nilsson of
700 * the Helsinki University of Technology and Matti Tikkanen of Nokia
701 * Telecommunications, page 6:
702 * "A node is doubled if the ratio of non-empty children to all
703 * children in the *doubled* node is at least 'high'."
704 *
705 * 'high' in this instance is the variable 'inflate_threshold'. It
706 * is expressed as a percentage, so we multiply it with
707 * tnode_child_length() and instead of multiplying by 2 (since the
708 * child array will be doubled by inflate()) and multiplying
709 * the left-hand side by 100 (to handle the percentage thing) we
710 * multiply the left-hand side by 50.
711 *
712 * The left-hand side may look a bit weird: tnode_child_length(tn)
713 * - tn->empty_children is of course the number of non-null children
714 * in the current node. tn->full_children is the number of "full"
715 * children, that is non-null tnodes with a skip value of 0.
716 * All of those will be doubled in the resulting inflated tnode, so
717 * we just count them one extra time here.
718 *
719 * A clearer way to write this would be:
720 *
721 * to_be_doubled = tn->full_children;
722 * not_to_be_doubled = tnode_child_length(tn) - tn->empty_children -
723 * tn->full_children;
724 *
725 * new_child_length = tnode_child_length(tn) * 2;
726 *
727 * new_fill_factor = 100 * (not_to_be_doubled + 2*to_be_doubled) /
728 * new_child_length;
729 * if (new_fill_factor >= inflate_threshold)
730 *
731 * ...and so on, tho it would mess up the while () loop.
732 *
733 * anyway,
734 * 100 * (not_to_be_doubled + 2*to_be_doubled) / new_child_length >=
735 * inflate_threshold
736 *
737 * avoid a division:
738 * 100 * (not_to_be_doubled + 2*to_be_doubled) >=
739 * inflate_threshold * new_child_length
740 *
741 * expand not_to_be_doubled and to_be_doubled, and shorten:
742 * 100 * (tnode_child_length(tn) - tn->empty_children +
743 * tn->full_children) >= inflate_threshold * new_child_length
744 *
745 * expand new_child_length:
746 * 100 * (tnode_child_length(tn) - tn->empty_children +
747 * tn->full_children) >=
748 * inflate_threshold * tnode_child_length(tn) * 2
749 *
750 * shorten again:
751 * 50 * (tn->full_children + tnode_child_length(tn) -
752 * tn->empty_children) >= inflate_threshold *
753 * tnode_child_length(tn)
754 *
755 */
Alexander Duyckff181ed2014-12-31 10:56:43 -0800756static bool should_inflate(const struct tnode *tp, const struct tnode *tn)
Alexander Duyckf05a4812014-12-31 10:56:37 -0800757{
758 unsigned long used = tnode_child_length(tn);
759 unsigned long threshold = used;
760
761 /* Keep root node larger */
Alexander Duyckff181ed2014-12-31 10:56:43 -0800762 threshold *= tp ? inflate_threshold : inflate_threshold_root;
Alexander Duyckf05a4812014-12-31 10:56:37 -0800763 used -= tn->empty_children;
Alexander Duyck95f60ea2015-01-22 15:51:26 -0800764 used += tn->full_children;
Alexander Duyckf05a4812014-12-31 10:56:37 -0800765
Alexander Duyck95f60ea2015-01-22 15:51:26 -0800766 /* if bits == KEYLENGTH then pos = 0, and will fail below */
767
768 return (used > 1) && tn->pos && ((50 * used) >= threshold);
Alexander Duyckf05a4812014-12-31 10:56:37 -0800769}
770
Alexander Duyckff181ed2014-12-31 10:56:43 -0800771static bool should_halve(const struct tnode *tp, const struct tnode *tn)
Alexander Duyckf05a4812014-12-31 10:56:37 -0800772{
773 unsigned long used = tnode_child_length(tn);
774 unsigned long threshold = used;
775
776 /* Keep root node larger */
Alexander Duyckff181ed2014-12-31 10:56:43 -0800777 threshold *= tp ? halve_threshold : halve_threshold_root;
Alexander Duyckf05a4812014-12-31 10:56:37 -0800778 used -= tn->empty_children;
779
Alexander Duyck95f60ea2015-01-22 15:51:26 -0800780 /* if bits == KEYLENGTH then used = 100% on wrap, and will fail below */
781
782 return (used > 1) && (tn->bits > 1) && ((100 * used) < threshold);
783}
784
785static bool should_collapse(const struct tnode *tn)
786{
787 unsigned long used = tnode_child_length(tn);
788
789 used -= tn->empty_children;
790
791 /* account for bits == KEYLENGTH case */
792 if ((tn->bits == KEYLENGTH) && tn->full_children)
793 used -= KEY_MAX;
794
795 /* One child or none, time to drop us from the trie */
796 return used < 2;
Alexander Duyckf05a4812014-12-31 10:56:37 -0800797}
798
Alexander Duyckcf3637b2014-12-31 10:56:31 -0800799#define MAX_WORK 10
Alexander Duyckff181ed2014-12-31 10:56:43 -0800800static void resize(struct trie *t, struct tnode *tn)
Alexander Duyckcf3637b2014-12-31 10:56:31 -0800801{
Alexander Duyck95f60ea2015-01-22 15:51:26 -0800802 struct tnode *tp = node_parent(tn);
Alexander Duyckff181ed2014-12-31 10:56:43 -0800803 struct tnode __rcu **cptr;
Alexander Duycka80e89d2015-01-22 15:51:20 -0800804 int max_work = MAX_WORK;
Alexander Duyckcf3637b2014-12-31 10:56:31 -0800805
Alexander Duyckcf3637b2014-12-31 10:56:31 -0800806 pr_debug("In tnode_resize %p inflate_threshold=%d threshold=%d\n",
807 tn, inflate_threshold, halve_threshold);
808
Alexander Duyckff181ed2014-12-31 10:56:43 -0800809 /* track the tnode via the pointer from the parent instead of
810 * doing it ourselves. This way we can let RCU fully do its
811 * thing without us interfering
812 */
813 cptr = tp ? &tp->child[get_index(tn->key, tp)] : &t->trie;
814 BUG_ON(tn != rtnl_dereference(*cptr));
815
Alexander Duyckf05a4812014-12-31 10:56:37 -0800816 /* Double as long as the resulting node has a number of
Alexander Duyckcf3637b2014-12-31 10:56:31 -0800817 * nonempty nodes that are above the threshold.
818 */
Alexander Duycka80e89d2015-01-22 15:51:20 -0800819 while (should_inflate(tp, tn) && max_work) {
Alexander Duyckff181ed2014-12-31 10:56:43 -0800820 if (inflate(t, tn)) {
Alexander Duyckcf3637b2014-12-31 10:56:31 -0800821#ifdef CONFIG_IP_FIB_TRIE_STATS
822 this_cpu_inc(t->stats->resize_node_skipped);
823#endif
824 break;
825 }
Alexander Duyckff181ed2014-12-31 10:56:43 -0800826
Alexander Duycka80e89d2015-01-22 15:51:20 -0800827 max_work--;
Alexander Duyckff181ed2014-12-31 10:56:43 -0800828 tn = rtnl_dereference(*cptr);
Alexander Duyckcf3637b2014-12-31 10:56:31 -0800829 }
830
831 /* Return if at least one inflate is run */
832 if (max_work != MAX_WORK)
Alexander Duyckff181ed2014-12-31 10:56:43 -0800833 return;
Alexander Duyckcf3637b2014-12-31 10:56:31 -0800834
Alexander Duyckf05a4812014-12-31 10:56:37 -0800835 /* Halve as long as the number of empty children in this
Alexander Duyckcf3637b2014-12-31 10:56:31 -0800836 * node is above threshold.
837 */
Alexander Duycka80e89d2015-01-22 15:51:20 -0800838 while (should_halve(tp, tn) && max_work) {
Alexander Duyckff181ed2014-12-31 10:56:43 -0800839 if (halve(t, tn)) {
Alexander Duyckcf3637b2014-12-31 10:56:31 -0800840#ifdef CONFIG_IP_FIB_TRIE_STATS
841 this_cpu_inc(t->stats->resize_node_skipped);
842#endif
843 break;
844 }
Alexander Duyckcf3637b2014-12-31 10:56:31 -0800845
Alexander Duycka80e89d2015-01-22 15:51:20 -0800846 max_work--;
Alexander Duyckff181ed2014-12-31 10:56:43 -0800847 tn = rtnl_dereference(*cptr);
848 }
Alexander Duyckcf3637b2014-12-31 10:56:31 -0800849
850 /* Only one child remains */
Alexander Duyck95f60ea2015-01-22 15:51:26 -0800851 if (should_collapse(tn)) {
852 collapse(t, tn);
Alexander Duyck5405afd2014-12-31 10:57:08 -0800853 return;
854 }
855
856 /* Return if at least one deflate was run */
857 if (max_work != MAX_WORK)
858 return;
859
860 /* push the suffix length to the parent node */
861 if (tn->slen > tn->pos) {
862 unsigned char slen = update_suffix(tn);
863
864 if (tp && (slen > tp->slen))
865 tp->slen = slen;
Alexander Duyckcf3637b2014-12-31 10:56:31 -0800866 }
Alexander Duyckcf3637b2014-12-31 10:56:31 -0800867}
868
Robert Olsson772cb712005-09-19 15:31:18 -0700869/* readside must use rcu_read_lock currently dump routines
Robert Olsson2373ce12005-08-25 13:01:29 -0700870 via get_fa_head and dump */
871
Alexander Duyckadaf9812014-12-31 10:55:47 -0800872static struct leaf_info *find_leaf_info(struct tnode *l, int plen)
Robert Olsson19baf832005-06-21 12:43:18 -0700873{
Robert Olsson772cb712005-09-19 15:31:18 -0700874 struct hlist_head *head = &l->list;
Robert Olsson19baf832005-06-21 12:43:18 -0700875 struct leaf_info *li;
876
Sasha Levinb67bfe02013-02-27 17:06:00 -0800877 hlist_for_each_entry_rcu(li, head, hlist)
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700878 if (li->plen == plen)
Robert Olsson19baf832005-06-21 12:43:18 -0700879 return li;
Olof Johansson91b9a272005-08-09 20:24:39 -0700880
Robert Olsson19baf832005-06-21 12:43:18 -0700881 return NULL;
882}
883
Alexander Duyckadaf9812014-12-31 10:55:47 -0800884static inline struct list_head *get_fa_head(struct tnode *l, int plen)
Robert Olsson19baf832005-06-21 12:43:18 -0700885{
Robert Olsson772cb712005-09-19 15:31:18 -0700886 struct leaf_info *li = find_leaf_info(l, plen);
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700887
Olof Johansson91b9a272005-08-09 20:24:39 -0700888 if (!li)
889 return NULL;
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700890
Olof Johansson91b9a272005-08-09 20:24:39 -0700891 return &li->falh;
Robert Olsson19baf832005-06-21 12:43:18 -0700892}
893
Alexander Duyck5405afd2014-12-31 10:57:08 -0800894static void leaf_pull_suffix(struct tnode *l)
Robert Olsson19baf832005-06-21 12:43:18 -0700895{
Alexander Duyck5405afd2014-12-31 10:57:08 -0800896 struct tnode *tp = node_parent(l);
897
898 while (tp && (tp->slen > tp->pos) && (tp->slen > l->slen)) {
899 if (update_suffix(tp) > l->slen)
900 break;
901 tp = node_parent(tp);
902 }
903}
904
905static void leaf_push_suffix(struct tnode *l)
906{
907 struct tnode *tn = node_parent(l);
908
909 /* if this is a new leaf then tn will be NULL and we can sort
910 * out parent suffix lengths as a part of trie_rebalance
911 */
912 while (tn && (tn->slen < l->slen)) {
913 tn->slen = l->slen;
914 tn = node_parent(tn);
915 }
916}
917
918static void remove_leaf_info(struct tnode *l, struct leaf_info *old)
919{
920 struct hlist_node *prev;
921
922 /* record the location of the pointer to this object */
923 prev = rtnl_dereference(hlist_pprev_rcu(&old->hlist));
924
925 /* remove the leaf info from the list */
926 hlist_del_rcu(&old->hlist);
927
928 /* if we emptied the list this leaf will be freed and we can sort
929 * out parent suffix lengths as a part of trie_rebalance
930 */
931 if (hlist_empty(&l->list))
932 return;
933
934 /* if we removed the tail then we need to update slen */
935 if (!rcu_access_pointer(hlist_next_rcu(prev))) {
936 struct leaf_info *li = hlist_entry(prev, typeof(*li), hlist);
937
938 l->slen = KEYLENGTH - li->plen;
939 leaf_pull_suffix(l);
940 }
941}
942
943static void insert_leaf_info(struct tnode *l, struct leaf_info *new)
944{
945 struct hlist_head *head = &l->list;
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900946 struct leaf_info *li = NULL, *last = NULL;
Robert Olsson19baf832005-06-21 12:43:18 -0700947
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900948 if (hlist_empty(head)) {
949 hlist_add_head_rcu(&new->hlist, head);
950 } else {
Sasha Levinb67bfe02013-02-27 17:06:00 -0800951 hlist_for_each_entry(li, head, hlist) {
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900952 if (new->plen > li->plen)
953 break;
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700954
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900955 last = li;
956 }
957 if (last)
Ken Helias1d023282014-08-06 16:09:16 -0700958 hlist_add_behind_rcu(&new->hlist, &last->hlist);
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900959 else
960 hlist_add_before_rcu(&new->hlist, &li->hlist);
961 }
Alexander Duyck5405afd2014-12-31 10:57:08 -0800962
963 /* if we added to the tail node then we need to update slen */
964 if (!rcu_access_pointer(hlist_next_rcu(&new->hlist))) {
965 l->slen = KEYLENGTH - new->plen;
966 leaf_push_suffix(l);
967 }
Robert Olsson19baf832005-06-21 12:43:18 -0700968}
969
Robert Olsson2373ce12005-08-25 13:01:29 -0700970/* rcu_read_lock needs to be hold by caller from readside */
Alexander Duyckadaf9812014-12-31 10:55:47 -0800971static struct tnode *fib_find_node(struct trie *t, u32 key)
Robert Olsson19baf832005-06-21 12:43:18 -0700972{
Alexander Duyckadaf9812014-12-31 10:55:47 -0800973 struct tnode *n = rcu_dereference_rtnl(t->trie);
Robert Olsson19baf832005-06-21 12:43:18 -0700974
Alexander Duyck939afb02014-12-31 10:56:00 -0800975 while (n) {
976 unsigned long index = get_index(key, n);
977
978 /* This bit of code is a bit tricky but it combines multiple
979 * checks into a single check. The prefix consists of the
980 * prefix plus zeros for the bits in the cindex. The index
981 * is the difference between the key and this value. From
982 * this we can actually derive several pieces of data.
Alexander Duyckb3832112015-01-22 15:51:08 -0800983 * if (index & (~0ul << bits))
Alexander Duyck939afb02014-12-31 10:56:00 -0800984 * we have a mismatch in skip bits and failed
Alexander Duyckb3832112015-01-22 15:51:08 -0800985 * else
986 * we know the value is cindex
Alexander Duyck939afb02014-12-31 10:56:00 -0800987 */
Alexander Duyckb3832112015-01-22 15:51:08 -0800988 if (index & (~0ul << n->bits))
Alexander Duyck939afb02014-12-31 10:56:00 -0800989 return NULL;
990
991 /* we have found a leaf. Prefixes have already been compared */
992 if (IS_LEAF(n))
Robert Olsson19baf832005-06-21 12:43:18 -0700993 break;
Alexander Duyck939afb02014-12-31 10:56:00 -0800994
Alexander Duyck21d1f112014-12-31 10:57:02 -0800995 n = tnode_get_child_rcu(n, index);
Robert Olsson19baf832005-06-21 12:43:18 -0700996 }
Robert Olsson19baf832005-06-21 12:43:18 -0700997
Alexander Duyck939afb02014-12-31 10:56:00 -0800998 return n;
Robert Olsson19baf832005-06-21 12:43:18 -0700999}
1000
Alexander Duyck02525362015-01-22 15:51:39 -08001001/* Return the first fib alias matching TOS with
1002 * priority less than or equal to PRIO.
1003 */
1004static struct fib_alias *fib_find_alias(struct list_head *fah, u8 tos, u32 prio)
1005{
1006 struct fib_alias *fa;
1007
1008 if (!fah)
1009 return NULL;
1010
1011 list_for_each_entry(fa, fah, fa_list) {
1012 if (fa->fa_tos > tos)
1013 continue;
1014 if (fa->fa_info->fib_priority >= prio || fa->fa_tos < tos)
1015 return fa;
1016 }
1017
1018 return NULL;
1019}
1020
Jarek Poplawski7b855762009-06-18 00:28:51 -07001021static void trie_rebalance(struct trie *t, struct tnode *tn)
Robert Olsson19baf832005-06-21 12:43:18 -07001022{
Stephen Hemminger06801912007-08-10 15:22:13 -07001023 struct tnode *tp;
Robert Olsson19baf832005-06-21 12:43:18 -07001024
Alexander Duyckff181ed2014-12-31 10:56:43 -08001025 while ((tp = node_parent(tn)) != NULL) {
1026 resize(t, tn);
Stephen Hemminger06801912007-08-10 15:22:13 -07001027 tn = tp;
Robert Olsson19baf832005-06-21 12:43:18 -07001028 }
Stephen Hemminger06801912007-08-10 15:22:13 -07001029
Robert Olsson19baf832005-06-21 12:43:18 -07001030 /* Handle last (top) tnode */
Jarek Poplawski7b855762009-06-18 00:28:51 -07001031 if (IS_TNODE(tn))
Alexander Duyckff181ed2014-12-31 10:56:43 -08001032 resize(t, tn);
Robert Olsson19baf832005-06-21 12:43:18 -07001033}
1034
Robert Olsson2373ce12005-08-25 13:01:29 -07001035/* only used from updater-side */
1036
Stephen Hemmingerfea86ad2008-01-12 20:57:07 -08001037static struct list_head *fib_insert_node(struct trie *t, u32 key, int plen)
Robert Olsson19baf832005-06-21 12:43:18 -07001038{
Stephen Hemmingerc877efb2005-07-19 14:01:51 -07001039 struct list_head *fa_head = NULL;
Alexander Duyck836a0122014-12-31 10:56:06 -08001040 struct tnode *l, *n, *tp = NULL;
Robert Olsson19baf832005-06-21 12:43:18 -07001041 struct leaf_info *li;
Robert Olsson19baf832005-06-21 12:43:18 -07001042
Alexander Duyck836a0122014-12-31 10:56:06 -08001043 li = leaf_info_new(plen);
1044 if (!li)
1045 return NULL;
1046 fa_head = &li->falh;
1047
Eric Dumazet0a5c0472011-03-31 01:51:35 -07001048 n = rtnl_dereference(t->trie);
Robert Olsson19baf832005-06-21 12:43:18 -07001049
Stephen Hemmingerc877efb2005-07-19 14:01:51 -07001050 /* If we point to NULL, stop. Either the tree is empty and we should
1051 * just put a new leaf in if, or we have reached an empty child slot,
Robert Olsson19baf832005-06-21 12:43:18 -07001052 * and we should just put our new leaf in that.
Robert Olsson19baf832005-06-21 12:43:18 -07001053 *
Alexander Duyck836a0122014-12-31 10:56:06 -08001054 * If we hit a node with a key that does't match then we should stop
1055 * and create a new tnode to replace that node and insert ourselves
1056 * and the other node into the new tnode.
Robert Olsson19baf832005-06-21 12:43:18 -07001057 */
Alexander Duyck836a0122014-12-31 10:56:06 -08001058 while (n) {
1059 unsigned long index = get_index(key, n);
Robert Olsson19baf832005-06-21 12:43:18 -07001060
Alexander Duyck836a0122014-12-31 10:56:06 -08001061 /* This bit of code is a bit tricky but it combines multiple
1062 * checks into a single check. The prefix consists of the
1063 * prefix plus zeros for the "bits" in the prefix. The index
1064 * is the difference between the key and this value. From
1065 * this we can actually derive several pieces of data.
1066 * if !(index >> bits)
1067 * we know the value is child index
1068 * else
1069 * we have a mismatch in skip bits and failed
Robert Olsson19baf832005-06-21 12:43:18 -07001070 */
Alexander Duyck836a0122014-12-31 10:56:06 -08001071 if (index >> n->bits)
1072 break;
Robert Olsson19baf832005-06-21 12:43:18 -07001073
Alexander Duyck836a0122014-12-31 10:56:06 -08001074 /* we have found a leaf. Prefixes have already been compared */
1075 if (IS_LEAF(n)) {
1076 /* Case 1: n is a leaf, and prefixes match*/
Alexander Duyck5405afd2014-12-31 10:57:08 -08001077 insert_leaf_info(n, li);
Alexander Duyck836a0122014-12-31 10:56:06 -08001078 return fa_head;
Robert Olsson19baf832005-06-21 12:43:18 -07001079 }
Robert Olsson19baf832005-06-21 12:43:18 -07001080
Alexander Duyck836a0122014-12-31 10:56:06 -08001081 tp = n;
Alexander Duyck21d1f112014-12-31 10:57:02 -08001082 n = tnode_get_child_rcu(n, index);
Alexander Duyck836a0122014-12-31 10:56:06 -08001083 }
1084
1085 l = leaf_new(key);
1086 if (!l) {
1087 free_leaf_info(li);
1088 return NULL;
1089 }
1090
Alexander Duyck5405afd2014-12-31 10:57:08 -08001091 insert_leaf_info(l, li);
Alexander Duyck836a0122014-12-31 10:56:06 -08001092
1093 /* Case 2: n is a LEAF or a TNODE and the key doesn't match.
1094 *
1095 * Add a new tnode here
1096 * first tnode need some special handling
1097 * leaves us in position for handling as case 3
1098 */
1099 if (n) {
1100 struct tnode *tn;
Alexander Duyck836a0122014-12-31 10:56:06 -08001101
Alexander Duycke9b44012014-12-31 10:56:12 -08001102 tn = tnode_new(key, __fls(key ^ n->key), 1);
Stephen Hemmingerc877efb2005-07-19 14:01:51 -07001103 if (!tn) {
Robert Olssonf835e472005-06-28 15:00:39 -07001104 free_leaf_info(li);
Alexander Duyck37fd30f2014-12-31 10:55:41 -08001105 node_free(l);
Stephen Hemmingerfea86ad2008-01-12 20:57:07 -08001106 return NULL;
Olof Johansson91b9a272005-08-09 20:24:39 -07001107 }
1108
Alexander Duyck836a0122014-12-31 10:56:06 -08001109 /* initialize routes out of node */
1110 NODE_INIT_PARENT(tn, tp);
1111 put_child(tn, get_index(key, tn) ^ 1, n);
Robert Olsson19baf832005-06-21 12:43:18 -07001112
Alexander Duyck836a0122014-12-31 10:56:06 -08001113 /* start adding routes into the node */
1114 put_child_root(tp, t, key, tn);
1115 node_set_parent(n, tn);
Robert Olsson19baf832005-06-21 12:43:18 -07001116
Alexander Duyck836a0122014-12-31 10:56:06 -08001117 /* parent now has a NULL spot where the leaf can go */
Alexander Duycke962f302014-12-10 21:49:22 -08001118 tp = tn;
Robert Olsson19baf832005-06-21 12:43:18 -07001119 }
Olof Johansson91b9a272005-08-09 20:24:39 -07001120
Alexander Duyck836a0122014-12-31 10:56:06 -08001121 /* Case 3: n is NULL, and will just insert a new leaf */
1122 if (tp) {
1123 NODE_INIT_PARENT(l, tp);
1124 put_child(tp, get_index(key, tp), l);
1125 trie_rebalance(t, tp);
1126 } else {
1127 rcu_assign_pointer(t->trie, l);
1128 }
Olof Johansson91b9a272005-08-09 20:24:39 -07001129
Robert Olsson19baf832005-06-21 12:43:18 -07001130 return fa_head;
1131}
1132
Robert Olssond562f1f2007-03-26 14:22:22 -07001133/*
1134 * Caller must hold RTNL.
1135 */
Stephen Hemminger16c6cf82009-09-20 10:35:36 +00001136int fib_table_insert(struct fib_table *tb, struct fib_config *cfg)
Robert Olsson19baf832005-06-21 12:43:18 -07001137{
1138 struct trie *t = (struct trie *) tb->tb_data;
1139 struct fib_alias *fa, *new_fa;
Stephen Hemmingerc877efb2005-07-19 14:01:51 -07001140 struct list_head *fa_head = NULL;
Robert Olsson19baf832005-06-21 12:43:18 -07001141 struct fib_info *fi;
Thomas Graf4e902c52006-08-17 18:14:52 -07001142 int plen = cfg->fc_dst_len;
1143 u8 tos = cfg->fc_tos;
Robert Olsson19baf832005-06-21 12:43:18 -07001144 u32 key, mask;
1145 int err;
Alexander Duyckadaf9812014-12-31 10:55:47 -08001146 struct tnode *l;
Robert Olsson19baf832005-06-21 12:43:18 -07001147
1148 if (plen > 32)
1149 return -EINVAL;
1150
Thomas Graf4e902c52006-08-17 18:14:52 -07001151 key = ntohl(cfg->fc_dst);
Robert Olsson19baf832005-06-21 12:43:18 -07001152
Patrick McHardy2dfe55b2006-08-10 23:08:33 -07001153 pr_debug("Insert table=%u %08x/%d\n", tb->tb_id, key, plen);
Robert Olsson19baf832005-06-21 12:43:18 -07001154
Olof Johansson91b9a272005-08-09 20:24:39 -07001155 mask = ntohl(inet_make_mask(plen));
Robert Olsson19baf832005-06-21 12:43:18 -07001156
Stephen Hemmingerc877efb2005-07-19 14:01:51 -07001157 if (key & ~mask)
Robert Olsson19baf832005-06-21 12:43:18 -07001158 return -EINVAL;
1159
1160 key = key & mask;
1161
Thomas Graf4e902c52006-08-17 18:14:52 -07001162 fi = fib_create_info(cfg);
1163 if (IS_ERR(fi)) {
1164 err = PTR_ERR(fi);
Robert Olsson19baf832005-06-21 12:43:18 -07001165 goto err;
Thomas Graf4e902c52006-08-17 18:14:52 -07001166 }
Robert Olsson19baf832005-06-21 12:43:18 -07001167
1168 l = fib_find_node(t, key);
Stephen Hemmingerc877efb2005-07-19 14:01:51 -07001169 fa = NULL;
Robert Olsson19baf832005-06-21 12:43:18 -07001170
Stephen Hemmingerc877efb2005-07-19 14:01:51 -07001171 if (l) {
Robert Olsson19baf832005-06-21 12:43:18 -07001172 fa_head = get_fa_head(l, plen);
1173 fa = fib_find_alias(fa_head, tos, fi->fib_priority);
1174 }
1175
1176 /* Now fa, if non-NULL, points to the first fib alias
1177 * with the same keys [prefix,tos,priority], if such key already
1178 * exists or to the node before which we will insert new one.
1179 *
1180 * If fa is NULL, we will need to allocate a new one and
1181 * insert to the head of f.
1182 *
1183 * If f is NULL, no fib node matched the destination key
1184 * and we need to allocate a new one of those as well.
1185 */
1186
Julian Anastasov936f6f82008-01-28 21:18:06 -08001187 if (fa && fa->fa_tos == tos &&
1188 fa->fa_info->fib_priority == fi->fib_priority) {
1189 struct fib_alias *fa_first, *fa_match;
Robert Olsson19baf832005-06-21 12:43:18 -07001190
1191 err = -EEXIST;
Thomas Graf4e902c52006-08-17 18:14:52 -07001192 if (cfg->fc_nlflags & NLM_F_EXCL)
Robert Olsson19baf832005-06-21 12:43:18 -07001193 goto out;
1194
Julian Anastasov936f6f82008-01-28 21:18:06 -08001195 /* We have 2 goals:
1196 * 1. Find exact match for type, scope, fib_info to avoid
1197 * duplicate routes
1198 * 2. Find next 'fa' (or head), NLM_F_APPEND inserts before it
1199 */
1200 fa_match = NULL;
1201 fa_first = fa;
1202 fa = list_entry(fa->fa_list.prev, struct fib_alias, fa_list);
1203 list_for_each_entry_continue(fa, fa_head, fa_list) {
1204 if (fa->fa_tos != tos)
1205 break;
1206 if (fa->fa_info->fib_priority != fi->fib_priority)
1207 break;
1208 if (fa->fa_type == cfg->fc_type &&
Julian Anastasov936f6f82008-01-28 21:18:06 -08001209 fa->fa_info == fi) {
1210 fa_match = fa;
1211 break;
1212 }
1213 }
1214
Thomas Graf4e902c52006-08-17 18:14:52 -07001215 if (cfg->fc_nlflags & NLM_F_REPLACE) {
Robert Olsson19baf832005-06-21 12:43:18 -07001216 struct fib_info *fi_drop;
1217 u8 state;
1218
Julian Anastasov936f6f82008-01-28 21:18:06 -08001219 fa = fa_first;
1220 if (fa_match) {
1221 if (fa == fa_match)
1222 err = 0;
Joonwoo Park67250332008-01-18 03:45:18 -08001223 goto out;
Julian Anastasov936f6f82008-01-28 21:18:06 -08001224 }
Robert Olsson2373ce12005-08-25 13:01:29 -07001225 err = -ENOBUFS;
Christoph Lametere94b1762006-12-06 20:33:17 -08001226 new_fa = kmem_cache_alloc(fn_alias_kmem, GFP_KERNEL);
Robert Olsson2373ce12005-08-25 13:01:29 -07001227 if (new_fa == NULL)
1228 goto out;
Robert Olsson19baf832005-06-21 12:43:18 -07001229
1230 fi_drop = fa->fa_info;
Robert Olsson2373ce12005-08-25 13:01:29 -07001231 new_fa->fa_tos = fa->fa_tos;
1232 new_fa->fa_info = fi;
Thomas Graf4e902c52006-08-17 18:14:52 -07001233 new_fa->fa_type = cfg->fc_type;
Robert Olsson19baf832005-06-21 12:43:18 -07001234 state = fa->fa_state;
Julian Anastasov936f6f82008-01-28 21:18:06 -08001235 new_fa->fa_state = state & ~FA_S_ACCESSED;
Robert Olsson19baf832005-06-21 12:43:18 -07001236
Robert Olsson2373ce12005-08-25 13:01:29 -07001237 list_replace_rcu(&fa->fa_list, &new_fa->fa_list);
1238 alias_free_mem_rcu(fa);
Robert Olsson19baf832005-06-21 12:43:18 -07001239
1240 fib_release_info(fi_drop);
1241 if (state & FA_S_ACCESSED)
Nicolas Dichtel4ccfe6d2012-09-07 00:45:29 +00001242 rt_cache_flush(cfg->fc_nlinfo.nl_net);
Milan Kocianb8f55832007-05-23 14:55:06 -07001243 rtmsg_fib(RTM_NEWROUTE, htonl(key), new_fa, plen,
1244 tb->tb_id, &cfg->fc_nlinfo, NLM_F_REPLACE);
Robert Olsson19baf832005-06-21 12:43:18 -07001245
Olof Johansson91b9a272005-08-09 20:24:39 -07001246 goto succeeded;
Robert Olsson19baf832005-06-21 12:43:18 -07001247 }
1248 /* Error if we find a perfect match which
1249 * uses the same scope, type, and nexthop
1250 * information.
1251 */
Julian Anastasov936f6f82008-01-28 21:18:06 -08001252 if (fa_match)
1253 goto out;
Stephen Hemmingera07f5f52008-01-22 21:53:36 -08001254
Thomas Graf4e902c52006-08-17 18:14:52 -07001255 if (!(cfg->fc_nlflags & NLM_F_APPEND))
Julian Anastasov936f6f82008-01-28 21:18:06 -08001256 fa = fa_first;
Robert Olsson19baf832005-06-21 12:43:18 -07001257 }
1258 err = -ENOENT;
Thomas Graf4e902c52006-08-17 18:14:52 -07001259 if (!(cfg->fc_nlflags & NLM_F_CREATE))
Robert Olsson19baf832005-06-21 12:43:18 -07001260 goto out;
1261
1262 err = -ENOBUFS;
Christoph Lametere94b1762006-12-06 20:33:17 -08001263 new_fa = kmem_cache_alloc(fn_alias_kmem, GFP_KERNEL);
Robert Olsson19baf832005-06-21 12:43:18 -07001264 if (new_fa == NULL)
1265 goto out;
1266
1267 new_fa->fa_info = fi;
1268 new_fa->fa_tos = tos;
Thomas Graf4e902c52006-08-17 18:14:52 -07001269 new_fa->fa_type = cfg->fc_type;
Robert Olsson19baf832005-06-21 12:43:18 -07001270 new_fa->fa_state = 0;
Robert Olsson19baf832005-06-21 12:43:18 -07001271 /*
1272 * Insert new entry to the list.
1273 */
1274
Stephen Hemmingerc877efb2005-07-19 14:01:51 -07001275 if (!fa_head) {
Stephen Hemmingerfea86ad2008-01-12 20:57:07 -08001276 fa_head = fib_insert_node(t, key, plen);
1277 if (unlikely(!fa_head)) {
1278 err = -ENOMEM;
Robert Olssonf835e472005-06-28 15:00:39 -07001279 goto out_free_new_fa;
Stephen Hemmingerfea86ad2008-01-12 20:57:07 -08001280 }
Robert Olssonf835e472005-06-28 15:00:39 -07001281 }
Robert Olsson19baf832005-06-21 12:43:18 -07001282
David S. Miller21d8c492011-04-14 14:49:37 -07001283 if (!plen)
1284 tb->tb_num_default++;
1285
Robert Olsson2373ce12005-08-25 13:01:29 -07001286 list_add_tail_rcu(&new_fa->fa_list,
1287 (fa ? &fa->fa_list : fa_head));
Robert Olsson19baf832005-06-21 12:43:18 -07001288
Nicolas Dichtel4ccfe6d2012-09-07 00:45:29 +00001289 rt_cache_flush(cfg->fc_nlinfo.nl_net);
Thomas Graf4e902c52006-08-17 18:14:52 -07001290 rtmsg_fib(RTM_NEWROUTE, htonl(key), new_fa, plen, tb->tb_id,
Milan Kocianb8f55832007-05-23 14:55:06 -07001291 &cfg->fc_nlinfo, 0);
Robert Olsson19baf832005-06-21 12:43:18 -07001292succeeded:
1293 return 0;
Robert Olssonf835e472005-06-28 15:00:39 -07001294
1295out_free_new_fa:
1296 kmem_cache_free(fn_alias_kmem, new_fa);
Robert Olsson19baf832005-06-21 12:43:18 -07001297out:
1298 fib_release_info(fi);
Olof Johansson91b9a272005-08-09 20:24:39 -07001299err:
Robert Olsson19baf832005-06-21 12:43:18 -07001300 return err;
1301}
1302
Alexander Duyck9f9e6362014-12-31 10:55:54 -08001303static inline t_key prefix_mismatch(t_key key, struct tnode *n)
1304{
1305 t_key prefix = n->key;
1306
1307 return (key ^ prefix) & (prefix | -prefix);
1308}
1309
Alexander Duyck345e9b52014-12-31 10:56:24 -08001310/* should be called with rcu_read_lock */
David S. Miller22bd5b92011-03-11 19:54:08 -05001311int fib_table_lookup(struct fib_table *tb, const struct flowi4 *flp,
Eric Dumazetebc0ffa2010-10-05 10:41:36 +00001312 struct fib_result *res, int fib_flags)
Robert Olsson19baf832005-06-21 12:43:18 -07001313{
Alexander Duyck9f9e6362014-12-31 10:55:54 -08001314 struct trie *t = (struct trie *)tb->tb_data;
Alexander Duyck8274a972014-12-31 10:55:29 -08001315#ifdef CONFIG_IP_FIB_TRIE_STATS
1316 struct trie_use_stats __percpu *stats = t->stats;
1317#endif
Alexander Duyck9f9e6362014-12-31 10:55:54 -08001318 const t_key key = ntohl(flp->daddr);
1319 struct tnode *n, *pn;
Alexander Duyck345e9b52014-12-31 10:56:24 -08001320 struct leaf_info *li;
Alexander Duyck9f9e6362014-12-31 10:55:54 -08001321 t_key cindex;
Robert Olsson19baf832005-06-21 12:43:18 -07001322
Robert Olsson2373ce12005-08-25 13:01:29 -07001323 n = rcu_dereference(t->trie);
Stephen Hemmingerc877efb2005-07-19 14:01:51 -07001324 if (!n)
Alexander Duyck345e9b52014-12-31 10:56:24 -08001325 return -EAGAIN;
Robert Olsson19baf832005-06-21 12:43:18 -07001326
1327#ifdef CONFIG_IP_FIB_TRIE_STATS
Alexander Duyck8274a972014-12-31 10:55:29 -08001328 this_cpu_inc(stats->gets);
Robert Olsson19baf832005-06-21 12:43:18 -07001329#endif
1330
Alexander Duyckadaf9812014-12-31 10:55:47 -08001331 pn = n;
Alexander Duyck9f9e6362014-12-31 10:55:54 -08001332 cindex = 0;
Stephen Hemmingerc877efb2005-07-19 14:01:51 -07001333
Alexander Duyck9f9e6362014-12-31 10:55:54 -08001334 /* Step 1: Travel to the longest prefix match in the trie */
1335 for (;;) {
1336 unsigned long index = get_index(key, n);
Robert Olsson19baf832005-06-21 12:43:18 -07001337
Alexander Duyck9f9e6362014-12-31 10:55:54 -08001338 /* This bit of code is a bit tricky but it combines multiple
1339 * checks into a single check. The prefix consists of the
1340 * prefix plus zeros for the "bits" in the prefix. The index
1341 * is the difference between the key and this value. From
1342 * this we can actually derive several pieces of data.
Alexander Duyckb3832112015-01-22 15:51:08 -08001343 * if (index & (~0ul << bits))
Alexander Duyck9f9e6362014-12-31 10:55:54 -08001344 * we have a mismatch in skip bits and failed
Alexander Duyckb3832112015-01-22 15:51:08 -08001345 * else
1346 * we know the value is cindex
Alexander Duyck9f9e6362014-12-31 10:55:54 -08001347 */
Alexander Duyckb3832112015-01-22 15:51:08 -08001348 if (index & (~0ul << n->bits))
Alexander Duyck9f9e6362014-12-31 10:55:54 -08001349 break;
Robert Olsson19baf832005-06-21 12:43:18 -07001350
Alexander Duyck9f9e6362014-12-31 10:55:54 -08001351 /* we have found a leaf. Prefixes have already been compared */
1352 if (IS_LEAF(n))
Stephen Hemmingera07f5f52008-01-22 21:53:36 -08001353 goto found;
Alexander Duyck9f9e6362014-12-31 10:55:54 -08001354
1355 /* only record pn and cindex if we are going to be chopping
1356 * bits later. Otherwise we are just wasting cycles.
1357 */
Alexander Duyck5405afd2014-12-31 10:57:08 -08001358 if (n->slen > n->pos) {
Alexander Duyck9f9e6362014-12-31 10:55:54 -08001359 pn = n;
1360 cindex = index;
Olof Johansson91b9a272005-08-09 20:24:39 -07001361 }
1362
Alexander Duyck21d1f112014-12-31 10:57:02 -08001363 n = tnode_get_child_rcu(n, index);
Alexander Duyck9f9e6362014-12-31 10:55:54 -08001364 if (unlikely(!n))
Robert Olsson19baf832005-06-21 12:43:18 -07001365 goto backtrace;
Alexander Duyck9f9e6362014-12-31 10:55:54 -08001366 }
1367
1368 /* Step 2: Sort out leaves and begin backtracing for longest prefix */
1369 for (;;) {
1370 /* record the pointer where our next node pointer is stored */
1371 struct tnode __rcu **cptr = n->child;
1372
1373 /* This test verifies that none of the bits that differ
1374 * between the key and the prefix exist in the region of
1375 * the lsb and higher in the prefix.
1376 */
Alexander Duyck5405afd2014-12-31 10:57:08 -08001377 if (unlikely(prefix_mismatch(key, n)) || (n->slen == n->pos))
Alexander Duyck9f9e6362014-12-31 10:55:54 -08001378 goto backtrace;
1379
1380 /* exit out and process leaf */
1381 if (unlikely(IS_LEAF(n)))
1382 break;
1383
1384 /* Don't bother recording parent info. Since we are in
1385 * prefix match mode we will have to come back to wherever
1386 * we started this traversal anyway
1387 */
1388
1389 while ((n = rcu_dereference(*cptr)) == NULL) {
1390backtrace:
1391#ifdef CONFIG_IP_FIB_TRIE_STATS
1392 if (!n)
1393 this_cpu_inc(stats->null_node_hit);
1394#endif
1395 /* If we are at cindex 0 there are no more bits for
1396 * us to strip at this level so we must ascend back
1397 * up one level to see if there are any more bits to
1398 * be stripped there.
1399 */
1400 while (!cindex) {
1401 t_key pkey = pn->key;
1402
1403 pn = node_parent_rcu(pn);
1404 if (unlikely(!pn))
Alexander Duyck345e9b52014-12-31 10:56:24 -08001405 return -EAGAIN;
Alexander Duyck9f9e6362014-12-31 10:55:54 -08001406#ifdef CONFIG_IP_FIB_TRIE_STATS
1407 this_cpu_inc(stats->backtrack);
1408#endif
1409 /* Get Child's index */
1410 cindex = get_index(pkey, pn);
1411 }
1412
1413 /* strip the least significant bit from the cindex */
1414 cindex &= cindex - 1;
1415
1416 /* grab pointer for next child node */
1417 cptr = &pn->child[cindex];
Stephen Hemmingerc877efb2005-07-19 14:01:51 -07001418 }
Robert Olsson19baf832005-06-21 12:43:18 -07001419 }
Alexander Duyck9f9e6362014-12-31 10:55:54 -08001420
Robert Olsson19baf832005-06-21 12:43:18 -07001421found:
Alexander Duyck9f9e6362014-12-31 10:55:54 -08001422 /* Step 3: Process the leaf, if that fails fall back to backtracing */
Alexander Duyck345e9b52014-12-31 10:56:24 -08001423 hlist_for_each_entry_rcu(li, &n->list, hlist) {
1424 struct fib_alias *fa;
1425
1426 if ((key ^ n->key) & li->mask_plen)
1427 continue;
1428
1429 list_for_each_entry_rcu(fa, &li->falh, fa_list) {
1430 struct fib_info *fi = fa->fa_info;
1431 int nhsel, err;
1432
1433 if (fa->fa_tos && fa->fa_tos != flp->flowi4_tos)
1434 continue;
1435 if (fi->fib_dead)
1436 continue;
1437 if (fa->fa_info->fib_scope < flp->flowi4_scope)
1438 continue;
1439 fib_alias_accessed(fa);
1440 err = fib_props[fa->fa_type].error;
1441 if (unlikely(err < 0)) {
1442#ifdef CONFIG_IP_FIB_TRIE_STATS
1443 this_cpu_inc(stats->semantic_match_passed);
1444#endif
1445 return err;
1446 }
1447 if (fi->fib_flags & RTNH_F_DEAD)
1448 continue;
1449 for (nhsel = 0; nhsel < fi->fib_nhs; nhsel++) {
1450 const struct fib_nh *nh = &fi->fib_nh[nhsel];
1451
1452 if (nh->nh_flags & RTNH_F_DEAD)
1453 continue;
1454 if (flp->flowi4_oif && flp->flowi4_oif != nh->nh_oif)
1455 continue;
1456
1457 if (!(fib_flags & FIB_LOOKUP_NOREF))
1458 atomic_inc(&fi->fib_clntref);
1459
1460 res->prefixlen = li->plen;
1461 res->nh_sel = nhsel;
1462 res->type = fa->fa_type;
1463 res->scope = fi->fib_scope;
1464 res->fi = fi;
1465 res->table = tb;
1466 res->fa_head = &li->falh;
1467#ifdef CONFIG_IP_FIB_TRIE_STATS
1468 this_cpu_inc(stats->semantic_match_passed);
1469#endif
1470 return err;
1471 }
1472 }
1473
1474#ifdef CONFIG_IP_FIB_TRIE_STATS
1475 this_cpu_inc(stats->semantic_match_miss);
1476#endif
1477 }
1478 goto backtrace;
Robert Olsson19baf832005-06-21 12:43:18 -07001479}
Florian Westphal6fc01432011-08-25 13:46:12 +02001480EXPORT_SYMBOL_GPL(fib_table_lookup);
Robert Olsson19baf832005-06-21 12:43:18 -07001481
Stephen Hemminger9195bef2008-01-22 21:56:34 -08001482/*
1483 * Remove the leaf and return parent.
1484 */
Alexander Duyckadaf9812014-12-31 10:55:47 -08001485static void trie_leaf_remove(struct trie *t, struct tnode *l)
Robert Olsson19baf832005-06-21 12:43:18 -07001486{
Alexander Duyck64c9b6f2014-12-31 10:55:35 -08001487 struct tnode *tp = node_parent(l);
Robert Olsson19baf832005-06-21 12:43:18 -07001488
Stephen Hemminger9195bef2008-01-22 21:56:34 -08001489 pr_debug("entering trie_leaf_remove(%p)\n", l);
Robert Olsson19baf832005-06-21 12:43:18 -07001490
Stephen Hemmingerc877efb2005-07-19 14:01:51 -07001491 if (tp) {
Alexander Duyck836a0122014-12-31 10:56:06 -08001492 put_child(tp, get_index(l->key, tp), NULL);
Jarek Poplawski7b855762009-06-18 00:28:51 -07001493 trie_rebalance(t, tp);
Alexander Duyck836a0122014-12-31 10:56:06 -08001494 } else {
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +00001495 RCU_INIT_POINTER(t->trie, NULL);
Alexander Duyck836a0122014-12-31 10:56:06 -08001496 }
Robert Olsson19baf832005-06-21 12:43:18 -07001497
Alexander Duyck37fd30f2014-12-31 10:55:41 -08001498 node_free(l);
Robert Olsson19baf832005-06-21 12:43:18 -07001499}
1500
Robert Olssond562f1f2007-03-26 14:22:22 -07001501/*
1502 * Caller must hold RTNL.
1503 */
Stephen Hemminger16c6cf82009-09-20 10:35:36 +00001504int fib_table_delete(struct fib_table *tb, struct fib_config *cfg)
Robert Olsson19baf832005-06-21 12:43:18 -07001505{
1506 struct trie *t = (struct trie *) tb->tb_data;
1507 u32 key, mask;
Thomas Graf4e902c52006-08-17 18:14:52 -07001508 int plen = cfg->fc_dst_len;
1509 u8 tos = cfg->fc_tos;
Robert Olsson19baf832005-06-21 12:43:18 -07001510 struct fib_alias *fa, *fa_to_delete;
1511 struct list_head *fa_head;
Alexander Duyckadaf9812014-12-31 10:55:47 -08001512 struct tnode *l;
Olof Johansson91b9a272005-08-09 20:24:39 -07001513 struct leaf_info *li;
1514
Stephen Hemmingerc877efb2005-07-19 14:01:51 -07001515 if (plen > 32)
Robert Olsson19baf832005-06-21 12:43:18 -07001516 return -EINVAL;
1517
Thomas Graf4e902c52006-08-17 18:14:52 -07001518 key = ntohl(cfg->fc_dst);
Olof Johansson91b9a272005-08-09 20:24:39 -07001519 mask = ntohl(inet_make_mask(plen));
Robert Olsson19baf832005-06-21 12:43:18 -07001520
Stephen Hemmingerc877efb2005-07-19 14:01:51 -07001521 if (key & ~mask)
Robert Olsson19baf832005-06-21 12:43:18 -07001522 return -EINVAL;
1523
1524 key = key & mask;
1525 l = fib_find_node(t, key);
1526
Stephen Hemmingerc877efb2005-07-19 14:01:51 -07001527 if (!l)
Robert Olsson19baf832005-06-21 12:43:18 -07001528 return -ESRCH;
1529
Igor Maravicad5b3102012-08-13 10:26:08 +02001530 li = find_leaf_info(l, plen);
1531
1532 if (!li)
1533 return -ESRCH;
1534
1535 fa_head = &li->falh;
Robert Olsson19baf832005-06-21 12:43:18 -07001536 fa = fib_find_alias(fa_head, tos, 0);
1537
1538 if (!fa)
1539 return -ESRCH;
1540
Stephen Hemminger0c7770c2005-08-23 21:59:41 -07001541 pr_debug("Deleting %08x/%d tos=%d t=%p\n", key, plen, tos, t);
Robert Olsson19baf832005-06-21 12:43:18 -07001542
1543 fa_to_delete = NULL;
Julian Anastasov936f6f82008-01-28 21:18:06 -08001544 fa = list_entry(fa->fa_list.prev, struct fib_alias, fa_list);
1545 list_for_each_entry_continue(fa, fa_head, fa_list) {
Robert Olsson19baf832005-06-21 12:43:18 -07001546 struct fib_info *fi = fa->fa_info;
1547
1548 if (fa->fa_tos != tos)
1549 break;
1550
Thomas Graf4e902c52006-08-17 18:14:52 -07001551 if ((!cfg->fc_type || fa->fa_type == cfg->fc_type) &&
1552 (cfg->fc_scope == RT_SCOPE_NOWHERE ||
David S. Miller37e826c2011-03-24 18:06:47 -07001553 fa->fa_info->fib_scope == cfg->fc_scope) &&
Julian Anastasov74cb3c12011-03-19 12:13:46 +00001554 (!cfg->fc_prefsrc ||
1555 fi->fib_prefsrc == cfg->fc_prefsrc) &&
Thomas Graf4e902c52006-08-17 18:14:52 -07001556 (!cfg->fc_protocol ||
1557 fi->fib_protocol == cfg->fc_protocol) &&
1558 fib_nh_match(cfg, fi) == 0) {
Robert Olsson19baf832005-06-21 12:43:18 -07001559 fa_to_delete = fa;
1560 break;
1561 }
1562 }
1563
Olof Johansson91b9a272005-08-09 20:24:39 -07001564 if (!fa_to_delete)
1565 return -ESRCH;
Robert Olsson19baf832005-06-21 12:43:18 -07001566
Olof Johansson91b9a272005-08-09 20:24:39 -07001567 fa = fa_to_delete;
Thomas Graf4e902c52006-08-17 18:14:52 -07001568 rtmsg_fib(RTM_DELROUTE, htonl(key), fa, plen, tb->tb_id,
Milan Kocianb8f55832007-05-23 14:55:06 -07001569 &cfg->fc_nlinfo, 0);
Robert Olsson19baf832005-06-21 12:43:18 -07001570
Robert Olsson2373ce12005-08-25 13:01:29 -07001571 list_del_rcu(&fa->fa_list);
Robert Olsson19baf832005-06-21 12:43:18 -07001572
David S. Miller21d8c492011-04-14 14:49:37 -07001573 if (!plen)
1574 tb->tb_num_default--;
1575
Olof Johansson91b9a272005-08-09 20:24:39 -07001576 if (list_empty(fa_head)) {
Alexander Duyck5405afd2014-12-31 10:57:08 -08001577 remove_leaf_info(l, li);
Olof Johansson91b9a272005-08-09 20:24:39 -07001578 free_leaf_info(li);
Robert Olsson2373ce12005-08-25 13:01:29 -07001579 }
Olof Johansson91b9a272005-08-09 20:24:39 -07001580
1581 if (hlist_empty(&l->list))
Stephen Hemminger9195bef2008-01-22 21:56:34 -08001582 trie_leaf_remove(t, l);
Olof Johansson91b9a272005-08-09 20:24:39 -07001583
1584 if (fa->fa_state & FA_S_ACCESSED)
Nicolas Dichtel4ccfe6d2012-09-07 00:45:29 +00001585 rt_cache_flush(cfg->fc_nlinfo.nl_net);
Olof Johansson91b9a272005-08-09 20:24:39 -07001586
Robert Olsson2373ce12005-08-25 13:01:29 -07001587 fib_release_info(fa->fa_info);
1588 alias_free_mem_rcu(fa);
Olof Johansson91b9a272005-08-09 20:24:39 -07001589 return 0;
Robert Olsson19baf832005-06-21 12:43:18 -07001590}
1591
Stephen Hemmingeref3660c2008-04-10 03:46:12 -07001592static int trie_flush_list(struct list_head *head)
Robert Olsson19baf832005-06-21 12:43:18 -07001593{
1594 struct fib_alias *fa, *fa_node;
1595 int found = 0;
1596
1597 list_for_each_entry_safe(fa, fa_node, head, fa_list) {
1598 struct fib_info *fi = fa->fa_info;
Robert Olsson19baf832005-06-21 12:43:18 -07001599
Robert Olsson2373ce12005-08-25 13:01:29 -07001600 if (fi && (fi->fib_flags & RTNH_F_DEAD)) {
1601 list_del_rcu(&fa->fa_list);
1602 fib_release_info(fa->fa_info);
1603 alias_free_mem_rcu(fa);
Robert Olsson19baf832005-06-21 12:43:18 -07001604 found++;
1605 }
1606 }
1607 return found;
1608}
1609
Alexander Duyckadaf9812014-12-31 10:55:47 -08001610static int trie_flush_leaf(struct tnode *l)
Robert Olsson19baf832005-06-21 12:43:18 -07001611{
1612 int found = 0;
1613 struct hlist_head *lih = &l->list;
Sasha Levinb67bfe02013-02-27 17:06:00 -08001614 struct hlist_node *tmp;
Robert Olsson19baf832005-06-21 12:43:18 -07001615 struct leaf_info *li = NULL;
1616
Sasha Levinb67bfe02013-02-27 17:06:00 -08001617 hlist_for_each_entry_safe(li, tmp, lih, hlist) {
Stephen Hemmingeref3660c2008-04-10 03:46:12 -07001618 found += trie_flush_list(&li->falh);
Robert Olsson19baf832005-06-21 12:43:18 -07001619
1620 if (list_empty(&li->falh)) {
Robert Olsson2373ce12005-08-25 13:01:29 -07001621 hlist_del_rcu(&li->hlist);
Robert Olsson19baf832005-06-21 12:43:18 -07001622 free_leaf_info(li);
1623 }
1624 }
1625 return found;
1626}
1627
Stephen Hemminger82cfbb02008-01-22 21:55:32 -08001628/*
1629 * Scan for the next right leaf starting at node p->child[idx]
1630 * Since we have back pointer, no recursion necessary.
1631 */
Alexander Duyckadaf9812014-12-31 10:55:47 -08001632static struct tnode *leaf_walk_rcu(struct tnode *p, struct tnode *c)
Robert Olsson19baf832005-06-21 12:43:18 -07001633{
Stephen Hemminger82cfbb02008-01-22 21:55:32 -08001634 do {
Alexander Duyck98293e82014-12-31 10:56:18 -08001635 unsigned long idx = c ? idx = get_index(c->key, p) + 1 : 0;
Robert Olsson19baf832005-06-21 12:43:18 -07001636
Alexander Duyck98293e82014-12-31 10:56:18 -08001637 while (idx < tnode_child_length(p)) {
Stephen Hemminger82cfbb02008-01-22 21:55:32 -08001638 c = tnode_get_child_rcu(p, idx++);
Robert Olsson2373ce12005-08-25 13:01:29 -07001639 if (!c)
Olof Johansson91b9a272005-08-09 20:24:39 -07001640 continue;
Robert Olsson19baf832005-06-21 12:43:18 -07001641
Eric Dumazetaab515d2013-08-05 11:18:49 -07001642 if (IS_LEAF(c))
Alexander Duyckadaf9812014-12-31 10:55:47 -08001643 return c;
Stephen Hemminger82cfbb02008-01-22 21:55:32 -08001644
1645 /* Rescan start scanning in new node */
Alexander Duyckadaf9812014-12-31 10:55:47 -08001646 p = c;
Stephen Hemminger82cfbb02008-01-22 21:55:32 -08001647 idx = 0;
Robert Olsson19baf832005-06-21 12:43:18 -07001648 }
Stephen Hemminger82cfbb02008-01-22 21:55:32 -08001649
1650 /* Node empty, walk back up to parent */
Alexander Duyckadaf9812014-12-31 10:55:47 -08001651 c = p;
Eric Dumazeta034ee32010-09-09 23:32:28 +00001652 } while ((p = node_parent_rcu(c)) != NULL);
Stephen Hemminger82cfbb02008-01-22 21:55:32 -08001653
1654 return NULL; /* Root of trie */
1655}
1656
Alexander Duyckadaf9812014-12-31 10:55:47 -08001657static struct tnode *trie_firstleaf(struct trie *t)
Stephen Hemminger82cfbb02008-01-22 21:55:32 -08001658{
Alexander Duyckadaf9812014-12-31 10:55:47 -08001659 struct tnode *n = rcu_dereference_rtnl(t->trie);
Stephen Hemminger82cfbb02008-01-22 21:55:32 -08001660
1661 if (!n)
1662 return NULL;
1663
1664 if (IS_LEAF(n)) /* trie is just a leaf */
Alexander Duyckadaf9812014-12-31 10:55:47 -08001665 return n;
Stephen Hemminger82cfbb02008-01-22 21:55:32 -08001666
1667 return leaf_walk_rcu(n, NULL);
1668}
1669
Alexander Duyckadaf9812014-12-31 10:55:47 -08001670static struct tnode *trie_nextleaf(struct tnode *l)
Stephen Hemminger82cfbb02008-01-22 21:55:32 -08001671{
Alexander Duyckadaf9812014-12-31 10:55:47 -08001672 struct tnode *p = node_parent_rcu(l);
Stephen Hemminger82cfbb02008-01-22 21:55:32 -08001673
1674 if (!p)
1675 return NULL; /* trie with just one leaf */
1676
Alexander Duyckadaf9812014-12-31 10:55:47 -08001677 return leaf_walk_rcu(p, l);
Robert Olsson19baf832005-06-21 12:43:18 -07001678}
1679
Alexander Duyckadaf9812014-12-31 10:55:47 -08001680static struct tnode *trie_leafindex(struct trie *t, int index)
Stephen Hemminger71d67e62008-01-31 16:45:47 -08001681{
Alexander Duyckadaf9812014-12-31 10:55:47 -08001682 struct tnode *l = trie_firstleaf(t);
Stephen Hemminger71d67e62008-01-31 16:45:47 -08001683
Stephen Hemmingerec28cf72008-02-11 21:12:49 -08001684 while (l && index-- > 0)
Stephen Hemminger71d67e62008-01-31 16:45:47 -08001685 l = trie_nextleaf(l);
Stephen Hemmingerec28cf72008-02-11 21:12:49 -08001686
Stephen Hemminger71d67e62008-01-31 16:45:47 -08001687 return l;
1688}
1689
1690
Robert Olssond562f1f2007-03-26 14:22:22 -07001691/*
1692 * Caller must hold RTNL.
1693 */
Stephen Hemminger16c6cf82009-09-20 10:35:36 +00001694int fib_table_flush(struct fib_table *tb)
Robert Olsson19baf832005-06-21 12:43:18 -07001695{
1696 struct trie *t = (struct trie *) tb->tb_data;
Alexander Duyckadaf9812014-12-31 10:55:47 -08001697 struct tnode *l, *ll = NULL;
Stephen Hemminger82cfbb02008-01-22 21:55:32 -08001698 int found = 0;
Robert Olsson19baf832005-06-21 12:43:18 -07001699
Stephen Hemminger82cfbb02008-01-22 21:55:32 -08001700 for (l = trie_firstleaf(t); l; l = trie_nextleaf(l)) {
Stephen Hemmingeref3660c2008-04-10 03:46:12 -07001701 found += trie_flush_leaf(l);
Robert Olsson19baf832005-06-21 12:43:18 -07001702
1703 if (ll && hlist_empty(&ll->list))
Stephen Hemminger9195bef2008-01-22 21:56:34 -08001704 trie_leaf_remove(t, ll);
Robert Olsson19baf832005-06-21 12:43:18 -07001705 ll = l;
1706 }
1707
1708 if (ll && hlist_empty(&ll->list))
Stephen Hemminger9195bef2008-01-22 21:56:34 -08001709 trie_leaf_remove(t, ll);
Robert Olsson19baf832005-06-21 12:43:18 -07001710
Stephen Hemminger0c7770c2005-08-23 21:59:41 -07001711 pr_debug("trie_flush found=%d\n", found);
Robert Olsson19baf832005-06-21 12:43:18 -07001712 return found;
1713}
1714
Pavel Emelyanov4aa2c462010-10-28 02:00:43 +00001715void fib_free_table(struct fib_table *tb)
1716{
Alexander Duyck8274a972014-12-31 10:55:29 -08001717#ifdef CONFIG_IP_FIB_TRIE_STATS
1718 struct trie *t = (struct trie *)tb->tb_data;
1719
1720 free_percpu(t->stats);
1721#endif /* CONFIG_IP_FIB_TRIE_STATS */
Pavel Emelyanov4aa2c462010-10-28 02:00:43 +00001722 kfree(tb);
1723}
1724
Stephen Hemmingera07f5f52008-01-22 21:53:36 -08001725static int fn_trie_dump_fa(t_key key, int plen, struct list_head *fah,
1726 struct fib_table *tb,
Robert Olsson19baf832005-06-21 12:43:18 -07001727 struct sk_buff *skb, struct netlink_callback *cb)
1728{
1729 int i, s_i;
1730 struct fib_alias *fa;
Al Viro32ab5f82006-09-26 22:21:45 -07001731 __be32 xkey = htonl(key);
Robert Olsson19baf832005-06-21 12:43:18 -07001732
Stephen Hemminger71d67e62008-01-31 16:45:47 -08001733 s_i = cb->args[5];
Robert Olsson19baf832005-06-21 12:43:18 -07001734 i = 0;
1735
Robert Olsson2373ce12005-08-25 13:01:29 -07001736 /* rcu_read_lock is hold by caller */
1737
1738 list_for_each_entry_rcu(fa, fah, fa_list) {
Robert Olsson19baf832005-06-21 12:43:18 -07001739 if (i < s_i) {
1740 i++;
1741 continue;
1742 }
Robert Olsson19baf832005-06-21 12:43:18 -07001743
Eric W. Biederman15e47302012-09-07 20:12:54 +00001744 if (fib_dump_info(skb, NETLINK_CB(cb->skb).portid,
Robert Olsson19baf832005-06-21 12:43:18 -07001745 cb->nlh->nlmsg_seq,
1746 RTM_NEWROUTE,
1747 tb->tb_id,
1748 fa->fa_type,
Thomas Grafbe403ea2006-08-17 18:15:17 -07001749 xkey,
Robert Olsson19baf832005-06-21 12:43:18 -07001750 plen,
1751 fa->fa_tos,
Stephen Hemminger64347f72008-01-22 21:55:01 -08001752 fa->fa_info, NLM_F_MULTI) < 0) {
Stephen Hemminger71d67e62008-01-31 16:45:47 -08001753 cb->args[5] = i;
Robert Olsson19baf832005-06-21 12:43:18 -07001754 return -1;
Olof Johansson91b9a272005-08-09 20:24:39 -07001755 }
Robert Olsson19baf832005-06-21 12:43:18 -07001756 i++;
1757 }
Stephen Hemminger71d67e62008-01-31 16:45:47 -08001758 cb->args[5] = i;
Robert Olsson19baf832005-06-21 12:43:18 -07001759 return skb->len;
1760}
1761
Alexander Duyckadaf9812014-12-31 10:55:47 -08001762static int fn_trie_dump_leaf(struct tnode *l, struct fib_table *tb,
Stephen Hemmingera88ee222008-01-22 21:56:11 -08001763 struct sk_buff *skb, struct netlink_callback *cb)
Robert Olsson19baf832005-06-21 12:43:18 -07001764{
Stephen Hemmingera88ee222008-01-22 21:56:11 -08001765 struct leaf_info *li;
Stephen Hemmingera88ee222008-01-22 21:56:11 -08001766 int i, s_i;
Robert Olsson19baf832005-06-21 12:43:18 -07001767
Stephen Hemminger71d67e62008-01-31 16:45:47 -08001768 s_i = cb->args[4];
Stephen Hemmingera88ee222008-01-22 21:56:11 -08001769 i = 0;
Robert Olsson19baf832005-06-21 12:43:18 -07001770
Stephen Hemmingera88ee222008-01-22 21:56:11 -08001771 /* rcu_read_lock is hold by caller */
Sasha Levinb67bfe02013-02-27 17:06:00 -08001772 hlist_for_each_entry_rcu(li, &l->list, hlist) {
Stephen Hemmingera88ee222008-01-22 21:56:11 -08001773 if (i < s_i) {
1774 i++;
Robert Olsson19baf832005-06-21 12:43:18 -07001775 continue;
Stephen Hemmingera88ee222008-01-22 21:56:11 -08001776 }
Robert Olsson19baf832005-06-21 12:43:18 -07001777
Stephen Hemmingera88ee222008-01-22 21:56:11 -08001778 if (i > s_i)
Stephen Hemminger71d67e62008-01-31 16:45:47 -08001779 cb->args[5] = 0;
Olof Johansson91b9a272005-08-09 20:24:39 -07001780
Stephen Hemmingera88ee222008-01-22 21:56:11 -08001781 if (list_empty(&li->falh))
Robert Olsson19baf832005-06-21 12:43:18 -07001782 continue;
1783
Stephen Hemmingera88ee222008-01-22 21:56:11 -08001784 if (fn_trie_dump_fa(l->key, li->plen, &li->falh, tb, skb, cb) < 0) {
Stephen Hemminger71d67e62008-01-31 16:45:47 -08001785 cb->args[4] = i;
Robert Olsson19baf832005-06-21 12:43:18 -07001786 return -1;
1787 }
Stephen Hemmingera88ee222008-01-22 21:56:11 -08001788 i++;
Robert Olsson19baf832005-06-21 12:43:18 -07001789 }
Stephen Hemmingera88ee222008-01-22 21:56:11 -08001790
Stephen Hemminger71d67e62008-01-31 16:45:47 -08001791 cb->args[4] = i;
Robert Olsson19baf832005-06-21 12:43:18 -07001792 return skb->len;
1793}
1794
Stephen Hemminger16c6cf82009-09-20 10:35:36 +00001795int fib_table_dump(struct fib_table *tb, struct sk_buff *skb,
1796 struct netlink_callback *cb)
Robert Olsson19baf832005-06-21 12:43:18 -07001797{
Alexander Duyckadaf9812014-12-31 10:55:47 -08001798 struct tnode *l;
Robert Olsson19baf832005-06-21 12:43:18 -07001799 struct trie *t = (struct trie *) tb->tb_data;
Stephen Hemmingerd5ce8a02008-01-22 21:57:22 -08001800 t_key key = cb->args[2];
Stephen Hemminger71d67e62008-01-31 16:45:47 -08001801 int count = cb->args[3];
Robert Olsson19baf832005-06-21 12:43:18 -07001802
Robert Olsson2373ce12005-08-25 13:01:29 -07001803 rcu_read_lock();
Stephen Hemmingerd5ce8a02008-01-22 21:57:22 -08001804 /* Dump starting at last key.
1805 * Note: 0.0.0.0/0 (ie default) is first key.
1806 */
Stephen Hemminger71d67e62008-01-31 16:45:47 -08001807 if (count == 0)
Stephen Hemmingerd5ce8a02008-01-22 21:57:22 -08001808 l = trie_firstleaf(t);
1809 else {
Stephen Hemminger71d67e62008-01-31 16:45:47 -08001810 /* Normally, continue from last key, but if that is missing
1811 * fallback to using slow rescan
1812 */
Stephen Hemmingerd5ce8a02008-01-22 21:57:22 -08001813 l = fib_find_node(t, key);
Stephen Hemminger71d67e62008-01-31 16:45:47 -08001814 if (!l)
1815 l = trie_leafindex(t, count);
Stephen Hemmingerd5ce8a02008-01-22 21:57:22 -08001816 }
Stephen Hemmingera88ee222008-01-22 21:56:11 -08001817
Stephen Hemmingerd5ce8a02008-01-22 21:57:22 -08001818 while (l) {
1819 cb->args[2] = l->key;
Stephen Hemmingera88ee222008-01-22 21:56:11 -08001820 if (fn_trie_dump_leaf(l, tb, skb, cb) < 0) {
Stephen Hemminger71d67e62008-01-31 16:45:47 -08001821 cb->args[3] = count;
Stephen Hemmingera88ee222008-01-22 21:56:11 -08001822 rcu_read_unlock();
Stephen Hemmingera88ee222008-01-22 21:56:11 -08001823 return -1;
Robert Olsson19baf832005-06-21 12:43:18 -07001824 }
Stephen Hemmingerd5ce8a02008-01-22 21:57:22 -08001825
Stephen Hemminger71d67e62008-01-31 16:45:47 -08001826 ++count;
Stephen Hemmingerd5ce8a02008-01-22 21:57:22 -08001827 l = trie_nextleaf(l);
Stephen Hemminger71d67e62008-01-31 16:45:47 -08001828 memset(&cb->args[4], 0,
1829 sizeof(cb->args) - 4*sizeof(cb->args[0]));
Robert Olsson19baf832005-06-21 12:43:18 -07001830 }
Stephen Hemminger71d67e62008-01-31 16:45:47 -08001831 cb->args[3] = count;
Robert Olsson2373ce12005-08-25 13:01:29 -07001832 rcu_read_unlock();
Stephen Hemmingera88ee222008-01-22 21:56:11 -08001833
Robert Olsson19baf832005-06-21 12:43:18 -07001834 return skb->len;
Robert Olsson19baf832005-06-21 12:43:18 -07001835}
1836
David S. Miller5348ba82011-02-01 15:30:56 -08001837void __init fib_trie_init(void)
Stephen Hemminger7f9b8052008-01-14 23:14:20 -08001838{
Stephen Hemmingera07f5f52008-01-22 21:53:36 -08001839 fn_alias_kmem = kmem_cache_create("ip_fib_alias",
1840 sizeof(struct fib_alias),
Stephen Hemmingerbc3c8c12008-01-22 21:51:50 -08001841 0, SLAB_PANIC, NULL);
1842
1843 trie_leaf_kmem = kmem_cache_create("ip_fib_trie",
Alexander Duyckadaf9812014-12-31 10:55:47 -08001844 max(sizeof(struct tnode),
Stephen Hemmingerbc3c8c12008-01-22 21:51:50 -08001845 sizeof(struct leaf_info)),
1846 0, SLAB_PANIC, NULL);
Stephen Hemminger7f9b8052008-01-14 23:14:20 -08001847}
Robert Olsson19baf832005-06-21 12:43:18 -07001848
Stephen Hemminger7f9b8052008-01-14 23:14:20 -08001849
David S. Miller5348ba82011-02-01 15:30:56 -08001850struct fib_table *fib_trie_table(u32 id)
Robert Olsson19baf832005-06-21 12:43:18 -07001851{
1852 struct fib_table *tb;
1853 struct trie *t;
1854
Robert Olsson19baf832005-06-21 12:43:18 -07001855 tb = kmalloc(sizeof(struct fib_table) + sizeof(struct trie),
1856 GFP_KERNEL);
1857 if (tb == NULL)
1858 return NULL;
1859
1860 tb->tb_id = id;
Denis V. Lunev971b8932007-12-08 00:32:23 -08001861 tb->tb_default = -1;
David S. Miller21d8c492011-04-14 14:49:37 -07001862 tb->tb_num_default = 0;
Robert Olsson19baf832005-06-21 12:43:18 -07001863
1864 t = (struct trie *) tb->tb_data;
Alexander Duyck8274a972014-12-31 10:55:29 -08001865 RCU_INIT_POINTER(t->trie, NULL);
1866#ifdef CONFIG_IP_FIB_TRIE_STATS
1867 t->stats = alloc_percpu(struct trie_use_stats);
1868 if (!t->stats) {
1869 kfree(tb);
1870 tb = NULL;
1871 }
1872#endif
Robert Olsson19baf832005-06-21 12:43:18 -07001873
Robert Olsson19baf832005-06-21 12:43:18 -07001874 return tb;
1875}
1876
Robert Olsson19baf832005-06-21 12:43:18 -07001877#ifdef CONFIG_PROC_FS
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07001878/* Depth first Trie walk iterator */
1879struct fib_trie_iter {
Denis V. Lunev1c340b22008-01-10 03:27:17 -08001880 struct seq_net_private p;
Stephen Hemminger3d3b2d22008-03-23 22:43:56 -07001881 struct fib_table *tb;
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07001882 struct tnode *tnode;
Eric Dumazeta034ee32010-09-09 23:32:28 +00001883 unsigned int index;
1884 unsigned int depth;
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07001885};
Robert Olsson19baf832005-06-21 12:43:18 -07001886
Alexander Duyckadaf9812014-12-31 10:55:47 -08001887static struct tnode *fib_trie_get_next(struct fib_trie_iter *iter)
Robert Olsson19baf832005-06-21 12:43:18 -07001888{
Alexander Duyck98293e82014-12-31 10:56:18 -08001889 unsigned long cindex = iter->index;
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07001890 struct tnode *tn = iter->tnode;
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07001891 struct tnode *p;
1892
Eric W. Biederman6640e692007-01-24 14:42:04 -08001893 /* A single entry routing table */
1894 if (!tn)
1895 return NULL;
1896
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07001897 pr_debug("get_next iter={node=%p index=%d depth=%d}\n",
1898 iter->tnode, iter->index, iter->depth);
1899rescan:
Alexander Duyck98293e82014-12-31 10:56:18 -08001900 while (cindex < tnode_child_length(tn)) {
Alexander Duyckadaf9812014-12-31 10:55:47 -08001901 struct tnode *n = tnode_get_child_rcu(tn, cindex);
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07001902
1903 if (n) {
1904 if (IS_LEAF(n)) {
1905 iter->tnode = tn;
1906 iter->index = cindex + 1;
1907 } else {
1908 /* push down one level */
Alexander Duyckadaf9812014-12-31 10:55:47 -08001909 iter->tnode = n;
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07001910 iter->index = 0;
1911 ++iter->depth;
1912 }
1913 return n;
1914 }
1915
1916 ++cindex;
1917 }
1918
1919 /* Current node exhausted, pop back up */
Alexander Duyckadaf9812014-12-31 10:55:47 -08001920 p = node_parent_rcu(tn);
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07001921 if (p) {
Alexander Duycke9b44012014-12-31 10:56:12 -08001922 cindex = get_index(tn->key, p) + 1;
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07001923 tn = p;
1924 --iter->depth;
1925 goto rescan;
1926 }
1927
1928 /* got root? */
Robert Olsson19baf832005-06-21 12:43:18 -07001929 return NULL;
1930}
1931
Alexander Duyckadaf9812014-12-31 10:55:47 -08001932static struct tnode *fib_trie_get_first(struct fib_trie_iter *iter,
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07001933 struct trie *t)
Robert Olsson19baf832005-06-21 12:43:18 -07001934{
Alexander Duyckadaf9812014-12-31 10:55:47 -08001935 struct tnode *n;
Robert Olsson5ddf0eb2006-03-20 21:34:12 -08001936
Stephen Hemminger132adf52007-03-08 20:44:43 -08001937 if (!t)
Robert Olsson5ddf0eb2006-03-20 21:34:12 -08001938 return NULL;
1939
1940 n = rcu_dereference(t->trie);
Stephen Hemminger3d3b2d22008-03-23 22:43:56 -07001941 if (!n)
Robert Olsson5ddf0eb2006-03-20 21:34:12 -08001942 return NULL;
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07001943
Stephen Hemminger3d3b2d22008-03-23 22:43:56 -07001944 if (IS_TNODE(n)) {
Alexander Duyckadaf9812014-12-31 10:55:47 -08001945 iter->tnode = n;
Stephen Hemminger3d3b2d22008-03-23 22:43:56 -07001946 iter->index = 0;
1947 iter->depth = 1;
1948 } else {
1949 iter->tnode = NULL;
1950 iter->index = 0;
1951 iter->depth = 0;
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07001952 }
Stephen Hemminger3d3b2d22008-03-23 22:43:56 -07001953
1954 return n;
Robert Olsson19baf832005-06-21 12:43:18 -07001955}
1956
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07001957static void trie_collect_stats(struct trie *t, struct trie_stat *s)
Robert Olsson19baf832005-06-21 12:43:18 -07001958{
Alexander Duyckadaf9812014-12-31 10:55:47 -08001959 struct tnode *n;
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07001960 struct fib_trie_iter iter;
Robert Olsson19baf832005-06-21 12:43:18 -07001961
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07001962 memset(s, 0, sizeof(*s));
Robert Olsson19baf832005-06-21 12:43:18 -07001963
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07001964 rcu_read_lock();
Stephen Hemminger3d3b2d22008-03-23 22:43:56 -07001965 for (n = fib_trie_get_first(&iter, t); n; n = fib_trie_get_next(&iter)) {
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07001966 if (IS_LEAF(n)) {
Stephen Hemminger93672292008-01-22 21:54:05 -08001967 struct leaf_info *li;
Stephen Hemminger93672292008-01-22 21:54:05 -08001968
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07001969 s->leaves++;
1970 s->totdepth += iter.depth;
1971 if (iter.depth > s->maxdepth)
1972 s->maxdepth = iter.depth;
Stephen Hemminger93672292008-01-22 21:54:05 -08001973
Alexander Duyckadaf9812014-12-31 10:55:47 -08001974 hlist_for_each_entry_rcu(li, &n->list, hlist)
Stephen Hemminger93672292008-01-22 21:54:05 -08001975 ++s->prefixes;
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07001976 } else {
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07001977 s->tnodes++;
Alexander Duyckadaf9812014-12-31 10:55:47 -08001978 if (n->bits < MAX_STAT_DEPTH)
1979 s->nodesizes[n->bits]++;
Alexander Duyck30cfe7c2015-01-22 15:51:33 -08001980 s->nullpointers += n->empty_children;
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07001981 }
1982 }
1983 rcu_read_unlock();
Robert Olsson19baf832005-06-21 12:43:18 -07001984}
1985
Stephen Hemmingerc877efb2005-07-19 14:01:51 -07001986/*
Robert Olsson19baf832005-06-21 12:43:18 -07001987 * This outputs /proc/net/fib_triestats
Robert Olsson19baf832005-06-21 12:43:18 -07001988 */
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07001989static void trie_show_stats(struct seq_file *seq, struct trie_stat *stat)
Robert Olsson19baf832005-06-21 12:43:18 -07001990{
Eric Dumazeta034ee32010-09-09 23:32:28 +00001991 unsigned int i, max, pointers, bytes, avdepth;
Robert Olsson19baf832005-06-21 12:43:18 -07001992
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07001993 if (stat->leaves)
1994 avdepth = stat->totdepth*100 / stat->leaves;
1995 else
1996 avdepth = 0;
Robert Olsson19baf832005-06-21 12:43:18 -07001997
Stephen Hemmingera07f5f52008-01-22 21:53:36 -08001998 seq_printf(seq, "\tAver depth: %u.%02d\n",
1999 avdepth / 100, avdepth % 100);
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002000 seq_printf(seq, "\tMax depth: %u\n", stat->maxdepth);
Robert Olsson19baf832005-06-21 12:43:18 -07002001
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002002 seq_printf(seq, "\tLeaves: %u\n", stat->leaves);
Alexander Duyckadaf9812014-12-31 10:55:47 -08002003 bytes = sizeof(struct tnode) * stat->leaves;
Stephen Hemminger93672292008-01-22 21:54:05 -08002004
2005 seq_printf(seq, "\tPrefixes: %u\n", stat->prefixes);
2006 bytes += sizeof(struct leaf_info) * stat->prefixes;
2007
Stephen Hemminger187b5182008-01-12 20:55:55 -08002008 seq_printf(seq, "\tInternal nodes: %u\n\t", stat->tnodes);
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002009 bytes += sizeof(struct tnode) * stat->tnodes;
Robert Olsson19baf832005-06-21 12:43:18 -07002010
Robert Olsson06ef9212006-03-20 21:35:01 -08002011 max = MAX_STAT_DEPTH;
2012 while (max > 0 && stat->nodesizes[max-1] == 0)
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002013 max--;
Robert Olsson19baf832005-06-21 12:43:18 -07002014
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002015 pointers = 0;
Jerry Snitselaarf585a992013-07-22 12:01:58 -07002016 for (i = 1; i < max; i++)
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002017 if (stat->nodesizes[i] != 0) {
Stephen Hemminger187b5182008-01-12 20:55:55 -08002018 seq_printf(seq, " %u: %u", i, stat->nodesizes[i]);
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002019 pointers += (1<<i) * stat->nodesizes[i];
2020 }
2021 seq_putc(seq, '\n');
Stephen Hemminger187b5182008-01-12 20:55:55 -08002022 seq_printf(seq, "\tPointers: %u\n", pointers);
Robert Olsson19baf832005-06-21 12:43:18 -07002023
Alexander Duyckadaf9812014-12-31 10:55:47 -08002024 bytes += sizeof(struct tnode *) * pointers;
Stephen Hemminger187b5182008-01-12 20:55:55 -08002025 seq_printf(seq, "Null ptrs: %u\n", stat->nullpointers);
2026 seq_printf(seq, "Total size: %u kB\n", (bytes + 1023) / 1024);
Stephen Hemminger66a2f7f2008-01-12 21:23:17 -08002027}
Robert Olsson19baf832005-06-21 12:43:18 -07002028
2029#ifdef CONFIG_IP_FIB_TRIE_STATS
Stephen Hemminger66a2f7f2008-01-12 21:23:17 -08002030static void trie_show_usage(struct seq_file *seq,
Alexander Duyck8274a972014-12-31 10:55:29 -08002031 const struct trie_use_stats __percpu *stats)
Stephen Hemminger66a2f7f2008-01-12 21:23:17 -08002032{
Alexander Duyck8274a972014-12-31 10:55:29 -08002033 struct trie_use_stats s = { 0 };
2034 int cpu;
2035
2036 /* loop through all of the CPUs and gather up the stats */
2037 for_each_possible_cpu(cpu) {
2038 const struct trie_use_stats *pcpu = per_cpu_ptr(stats, cpu);
2039
2040 s.gets += pcpu->gets;
2041 s.backtrack += pcpu->backtrack;
2042 s.semantic_match_passed += pcpu->semantic_match_passed;
2043 s.semantic_match_miss += pcpu->semantic_match_miss;
2044 s.null_node_hit += pcpu->null_node_hit;
2045 s.resize_node_skipped += pcpu->resize_node_skipped;
2046 }
2047
Stephen Hemminger66a2f7f2008-01-12 21:23:17 -08002048 seq_printf(seq, "\nCounters:\n---------\n");
Alexander Duyck8274a972014-12-31 10:55:29 -08002049 seq_printf(seq, "gets = %u\n", s.gets);
2050 seq_printf(seq, "backtracks = %u\n", s.backtrack);
Stephen Hemmingera07f5f52008-01-22 21:53:36 -08002051 seq_printf(seq, "semantic match passed = %u\n",
Alexander Duyck8274a972014-12-31 10:55:29 -08002052 s.semantic_match_passed);
2053 seq_printf(seq, "semantic match miss = %u\n", s.semantic_match_miss);
2054 seq_printf(seq, "null node hit= %u\n", s.null_node_hit);
2055 seq_printf(seq, "skipped node resize = %u\n\n", s.resize_node_skipped);
Robert Olsson19baf832005-06-21 12:43:18 -07002056}
Stephen Hemminger66a2f7f2008-01-12 21:23:17 -08002057#endif /* CONFIG_IP_FIB_TRIE_STATS */
2058
Stephen Hemminger3d3b2d22008-03-23 22:43:56 -07002059static void fib_table_print(struct seq_file *seq, struct fib_table *tb)
Stephen Hemmingerd717a9a2008-01-14 23:11:54 -08002060{
Stephen Hemminger3d3b2d22008-03-23 22:43:56 -07002061 if (tb->tb_id == RT_TABLE_LOCAL)
2062 seq_puts(seq, "Local:\n");
2063 else if (tb->tb_id == RT_TABLE_MAIN)
2064 seq_puts(seq, "Main:\n");
2065 else
2066 seq_printf(seq, "Id %d:\n", tb->tb_id);
Stephen Hemmingerd717a9a2008-01-14 23:11:54 -08002067}
Robert Olsson19baf832005-06-21 12:43:18 -07002068
Stephen Hemminger3d3b2d22008-03-23 22:43:56 -07002069
Robert Olsson19baf832005-06-21 12:43:18 -07002070static int fib_triestat_seq_show(struct seq_file *seq, void *v)
2071{
Denis V. Lunev1c340b22008-01-10 03:27:17 -08002072 struct net *net = (struct net *)seq->private;
Stephen Hemminger3d3b2d22008-03-23 22:43:56 -07002073 unsigned int h;
Eric W. Biederman877a9bf2007-12-07 00:47:47 -08002074
Stephen Hemmingerd717a9a2008-01-14 23:11:54 -08002075 seq_printf(seq,
Stephen Hemmingera07f5f52008-01-22 21:53:36 -08002076 "Basic info: size of leaf:"
2077 " %Zd bytes, size of tnode: %Zd bytes.\n",
Alexander Duyckadaf9812014-12-31 10:55:47 -08002078 sizeof(struct tnode), sizeof(struct tnode));
Olof Johansson91b9a272005-08-09 20:24:39 -07002079
Stephen Hemminger3d3b2d22008-03-23 22:43:56 -07002080 for (h = 0; h < FIB_TABLE_HASHSZ; h++) {
2081 struct hlist_head *head = &net->ipv4.fib_table_hash[h];
Stephen Hemminger3d3b2d22008-03-23 22:43:56 -07002082 struct fib_table *tb;
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002083
Sasha Levinb67bfe02013-02-27 17:06:00 -08002084 hlist_for_each_entry_rcu(tb, head, tb_hlist) {
Stephen Hemminger3d3b2d22008-03-23 22:43:56 -07002085 struct trie *t = (struct trie *) tb->tb_data;
2086 struct trie_stat stat;
2087
2088 if (!t)
2089 continue;
2090
2091 fib_table_print(seq, tb);
2092
2093 trie_collect_stats(t, &stat);
2094 trie_show_stats(seq, &stat);
2095#ifdef CONFIG_IP_FIB_TRIE_STATS
Alexander Duyck8274a972014-12-31 10:55:29 -08002096 trie_show_usage(seq, t->stats);
Stephen Hemminger3d3b2d22008-03-23 22:43:56 -07002097#endif
2098 }
2099 }
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002100
Robert Olsson19baf832005-06-21 12:43:18 -07002101 return 0;
2102}
2103
Robert Olsson19baf832005-06-21 12:43:18 -07002104static int fib_triestat_seq_open(struct inode *inode, struct file *file)
2105{
Pavel Emelyanovde05c552008-07-18 04:07:21 -07002106 return single_open_net(inode, file, fib_triestat_seq_show);
Denis V. Lunev1c340b22008-01-10 03:27:17 -08002107}
2108
Arjan van de Ven9a321442007-02-12 00:55:35 -08002109static const struct file_operations fib_triestat_fops = {
Stephen Hemmingerc877efb2005-07-19 14:01:51 -07002110 .owner = THIS_MODULE,
2111 .open = fib_triestat_seq_open,
2112 .read = seq_read,
2113 .llseek = seq_lseek,
Pavel Emelyanovb6fcbdb2008-07-18 04:07:44 -07002114 .release = single_release_net,
Robert Olsson19baf832005-06-21 12:43:18 -07002115};
2116
Alexander Duyckadaf9812014-12-31 10:55:47 -08002117static struct tnode *fib_trie_get_idx(struct seq_file *seq, loff_t pos)
Robert Olsson19baf832005-06-21 12:43:18 -07002118{
YOSHIFUJI Hideaki12188542008-03-26 02:36:06 +09002119 struct fib_trie_iter *iter = seq->private;
2120 struct net *net = seq_file_net(seq);
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002121 loff_t idx = 0;
Stephen Hemminger3d3b2d22008-03-23 22:43:56 -07002122 unsigned int h;
Robert Olsson19baf832005-06-21 12:43:18 -07002123
Stephen Hemminger3d3b2d22008-03-23 22:43:56 -07002124 for (h = 0; h < FIB_TABLE_HASHSZ; h++) {
2125 struct hlist_head *head = &net->ipv4.fib_table_hash[h];
Stephen Hemminger3d3b2d22008-03-23 22:43:56 -07002126 struct fib_table *tb;
2127
Sasha Levinb67bfe02013-02-27 17:06:00 -08002128 hlist_for_each_entry_rcu(tb, head, tb_hlist) {
Alexander Duyckadaf9812014-12-31 10:55:47 -08002129 struct tnode *n;
Stephen Hemminger3d3b2d22008-03-23 22:43:56 -07002130
2131 for (n = fib_trie_get_first(iter,
2132 (struct trie *) tb->tb_data);
2133 n; n = fib_trie_get_next(iter))
2134 if (pos == idx++) {
2135 iter->tb = tb;
2136 return n;
2137 }
2138 }
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002139 }
Robert Olsson19baf832005-06-21 12:43:18 -07002140
Robert Olsson19baf832005-06-21 12:43:18 -07002141 return NULL;
2142}
2143
2144static void *fib_trie_seq_start(struct seq_file *seq, loff_t *pos)
Stephen Hemmingerc95aaf92008-01-12 21:25:02 -08002145 __acquires(RCU)
Robert Olsson19baf832005-06-21 12:43:18 -07002146{
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002147 rcu_read_lock();
YOSHIFUJI Hideaki12188542008-03-26 02:36:06 +09002148 return fib_trie_get_idx(seq, *pos);
Robert Olsson19baf832005-06-21 12:43:18 -07002149}
2150
2151static void *fib_trie_seq_next(struct seq_file *seq, void *v, loff_t *pos)
2152{
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002153 struct fib_trie_iter *iter = seq->private;
YOSHIFUJI Hideaki12188542008-03-26 02:36:06 +09002154 struct net *net = seq_file_net(seq);
Stephen Hemminger3d3b2d22008-03-23 22:43:56 -07002155 struct fib_table *tb = iter->tb;
2156 struct hlist_node *tb_node;
2157 unsigned int h;
Alexander Duyckadaf9812014-12-31 10:55:47 -08002158 struct tnode *n;
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002159
Robert Olsson19baf832005-06-21 12:43:18 -07002160 ++*pos;
Stephen Hemminger3d3b2d22008-03-23 22:43:56 -07002161 /* next node in same table */
2162 n = fib_trie_get_next(iter);
2163 if (n)
2164 return n;
Olof Johansson91b9a272005-08-09 20:24:39 -07002165
Stephen Hemminger3d3b2d22008-03-23 22:43:56 -07002166 /* walk rest of this hash chain */
2167 h = tb->tb_id & (FIB_TABLE_HASHSZ - 1);
Eric Dumazet0a5c0472011-03-31 01:51:35 -07002168 while ((tb_node = rcu_dereference(hlist_next_rcu(&tb->tb_hlist)))) {
Stephen Hemminger3d3b2d22008-03-23 22:43:56 -07002169 tb = hlist_entry(tb_node, struct fib_table, tb_hlist);
2170 n = fib_trie_get_first(iter, (struct trie *) tb->tb_data);
2171 if (n)
2172 goto found;
2173 }
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002174
Stephen Hemminger3d3b2d22008-03-23 22:43:56 -07002175 /* new hash chain */
2176 while (++h < FIB_TABLE_HASHSZ) {
2177 struct hlist_head *head = &net->ipv4.fib_table_hash[h];
Sasha Levinb67bfe02013-02-27 17:06:00 -08002178 hlist_for_each_entry_rcu(tb, head, tb_hlist) {
Stephen Hemminger3d3b2d22008-03-23 22:43:56 -07002179 n = fib_trie_get_first(iter, (struct trie *) tb->tb_data);
2180 if (n)
2181 goto found;
2182 }
2183 }
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002184 return NULL;
Stephen Hemminger3d3b2d22008-03-23 22:43:56 -07002185
2186found:
2187 iter->tb = tb;
2188 return n;
Robert Olsson19baf832005-06-21 12:43:18 -07002189}
2190
2191static void fib_trie_seq_stop(struct seq_file *seq, void *v)
Stephen Hemmingerc95aaf92008-01-12 21:25:02 -08002192 __releases(RCU)
Robert Olsson19baf832005-06-21 12:43:18 -07002193{
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002194 rcu_read_unlock();
Robert Olsson19baf832005-06-21 12:43:18 -07002195}
2196
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002197static void seq_indent(struct seq_file *seq, int n)
2198{
Eric Dumazeta034ee32010-09-09 23:32:28 +00002199 while (n-- > 0)
2200 seq_puts(seq, " ");
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002201}
Robert Olsson19baf832005-06-21 12:43:18 -07002202
Eric Dumazet28d36e32008-01-14 23:09:56 -08002203static inline const char *rtn_scope(char *buf, size_t len, enum rt_scope_t s)
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002204{
Stephen Hemminger132adf52007-03-08 20:44:43 -08002205 switch (s) {
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002206 case RT_SCOPE_UNIVERSE: return "universe";
2207 case RT_SCOPE_SITE: return "site";
2208 case RT_SCOPE_LINK: return "link";
2209 case RT_SCOPE_HOST: return "host";
2210 case RT_SCOPE_NOWHERE: return "nowhere";
2211 default:
Eric Dumazet28d36e32008-01-14 23:09:56 -08002212 snprintf(buf, len, "scope=%d", s);
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002213 return buf;
2214 }
2215}
2216
Jan Engelhardt36cbd3d2009-08-05 10:42:58 -07002217static const char *const rtn_type_names[__RTN_MAX] = {
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002218 [RTN_UNSPEC] = "UNSPEC",
2219 [RTN_UNICAST] = "UNICAST",
2220 [RTN_LOCAL] = "LOCAL",
2221 [RTN_BROADCAST] = "BROADCAST",
2222 [RTN_ANYCAST] = "ANYCAST",
2223 [RTN_MULTICAST] = "MULTICAST",
2224 [RTN_BLACKHOLE] = "BLACKHOLE",
2225 [RTN_UNREACHABLE] = "UNREACHABLE",
2226 [RTN_PROHIBIT] = "PROHIBIT",
2227 [RTN_THROW] = "THROW",
2228 [RTN_NAT] = "NAT",
2229 [RTN_XRESOLVE] = "XRESOLVE",
2230};
2231
Eric Dumazeta034ee32010-09-09 23:32:28 +00002232static inline const char *rtn_type(char *buf, size_t len, unsigned int t)
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002233{
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002234 if (t < __RTN_MAX && rtn_type_names[t])
2235 return rtn_type_names[t];
Eric Dumazet28d36e32008-01-14 23:09:56 -08002236 snprintf(buf, len, "type %u", t);
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002237 return buf;
2238}
2239
2240/* Pretty print the trie */
Robert Olsson19baf832005-06-21 12:43:18 -07002241static int fib_trie_seq_show(struct seq_file *seq, void *v)
2242{
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002243 const struct fib_trie_iter *iter = seq->private;
Alexander Duyckadaf9812014-12-31 10:55:47 -08002244 struct tnode *n = v;
Robert Olsson19baf832005-06-21 12:43:18 -07002245
Stephen Hemminger3d3b2d22008-03-23 22:43:56 -07002246 if (!node_parent_rcu(n))
2247 fib_table_print(seq, iter->tb);
Robert Olsson095b8502007-01-26 19:06:01 -08002248
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002249 if (IS_TNODE(n)) {
Alexander Duyckadaf9812014-12-31 10:55:47 -08002250 __be32 prf = htonl(n->key);
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002251
Alexander Duycke9b44012014-12-31 10:56:12 -08002252 seq_indent(seq, iter->depth-1);
2253 seq_printf(seq, " +-- %pI4/%zu %u %u %u\n",
2254 &prf, KEYLENGTH - n->pos - n->bits, n->bits,
2255 n->full_children, n->empty_children);
Olof Johansson91b9a272005-08-09 20:24:39 -07002256 } else {
Stephen Hemminger13280422008-01-22 21:54:37 -08002257 struct leaf_info *li;
Alexander Duyckadaf9812014-12-31 10:55:47 -08002258 __be32 val = htonl(n->key);
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002259
2260 seq_indent(seq, iter->depth);
Harvey Harrison673d57e2008-10-31 00:53:57 -07002261 seq_printf(seq, " |-- %pI4\n", &val);
Eric Dumazet28d36e32008-01-14 23:09:56 -08002262
Alexander Duyckadaf9812014-12-31 10:55:47 -08002263 hlist_for_each_entry_rcu(li, &n->list, hlist) {
Stephen Hemminger13280422008-01-22 21:54:37 -08002264 struct fib_alias *fa;
Eric Dumazet28d36e32008-01-14 23:09:56 -08002265
Stephen Hemminger13280422008-01-22 21:54:37 -08002266 list_for_each_entry_rcu(fa, &li->falh, fa_list) {
2267 char buf1[32], buf2[32];
Eric Dumazet28d36e32008-01-14 23:09:56 -08002268
Stephen Hemminger13280422008-01-22 21:54:37 -08002269 seq_indent(seq, iter->depth+1);
2270 seq_printf(seq, " /%d %s %s", li->plen,
2271 rtn_scope(buf1, sizeof(buf1),
David S. Miller37e826c2011-03-24 18:06:47 -07002272 fa->fa_info->fib_scope),
Stephen Hemminger13280422008-01-22 21:54:37 -08002273 rtn_type(buf2, sizeof(buf2),
2274 fa->fa_type));
2275 if (fa->fa_tos)
Denis V. Lunevb9c4d822008-02-05 02:58:45 -08002276 seq_printf(seq, " tos=%d", fa->fa_tos);
Stephen Hemminger13280422008-01-22 21:54:37 -08002277 seq_putc(seq, '\n');
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002278 }
2279 }
Robert Olsson19baf832005-06-21 12:43:18 -07002280 }
2281
2282 return 0;
2283}
2284
Stephen Hemmingerf6908082007-03-12 14:34:29 -07002285static const struct seq_operations fib_trie_seq_ops = {
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002286 .start = fib_trie_seq_start,
2287 .next = fib_trie_seq_next,
2288 .stop = fib_trie_seq_stop,
2289 .show = fib_trie_seq_show,
Robert Olsson19baf832005-06-21 12:43:18 -07002290};
2291
2292static int fib_trie_seq_open(struct inode *inode, struct file *file)
2293{
Denis V. Lunev1c340b22008-01-10 03:27:17 -08002294 return seq_open_net(inode, file, &fib_trie_seq_ops,
2295 sizeof(struct fib_trie_iter));
Robert Olsson19baf832005-06-21 12:43:18 -07002296}
2297
Arjan van de Ven9a321442007-02-12 00:55:35 -08002298static const struct file_operations fib_trie_fops = {
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002299 .owner = THIS_MODULE,
2300 .open = fib_trie_seq_open,
2301 .read = seq_read,
2302 .llseek = seq_lseek,
Denis V. Lunev1c340b22008-01-10 03:27:17 -08002303 .release = seq_release_net,
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002304};
2305
Stephen Hemminger8315f5d2008-02-11 21:14:39 -08002306struct fib_route_iter {
2307 struct seq_net_private p;
2308 struct trie *main_trie;
2309 loff_t pos;
2310 t_key key;
2311};
2312
Alexander Duyckadaf9812014-12-31 10:55:47 -08002313static struct tnode *fib_route_get_idx(struct fib_route_iter *iter, loff_t pos)
Stephen Hemminger8315f5d2008-02-11 21:14:39 -08002314{
Alexander Duyckadaf9812014-12-31 10:55:47 -08002315 struct tnode *l = NULL;
Stephen Hemminger8315f5d2008-02-11 21:14:39 -08002316 struct trie *t = iter->main_trie;
2317
2318 /* use cache location of last found key */
2319 if (iter->pos > 0 && pos >= iter->pos && (l = fib_find_node(t, iter->key)))
2320 pos -= iter->pos;
2321 else {
2322 iter->pos = 0;
2323 l = trie_firstleaf(t);
2324 }
2325
2326 while (l && pos-- > 0) {
2327 iter->pos++;
2328 l = trie_nextleaf(l);
2329 }
2330
2331 if (l)
2332 iter->key = pos; /* remember it */
2333 else
2334 iter->pos = 0; /* forget it */
2335
2336 return l;
2337}
2338
2339static void *fib_route_seq_start(struct seq_file *seq, loff_t *pos)
2340 __acquires(RCU)
2341{
2342 struct fib_route_iter *iter = seq->private;
2343 struct fib_table *tb;
2344
2345 rcu_read_lock();
YOSHIFUJI Hideaki12188542008-03-26 02:36:06 +09002346 tb = fib_get_table(seq_file_net(seq), RT_TABLE_MAIN);
Stephen Hemminger8315f5d2008-02-11 21:14:39 -08002347 if (!tb)
2348 return NULL;
2349
2350 iter->main_trie = (struct trie *) tb->tb_data;
2351 if (*pos == 0)
2352 return SEQ_START_TOKEN;
2353 else
2354 return fib_route_get_idx(iter, *pos - 1);
2355}
2356
2357static void *fib_route_seq_next(struct seq_file *seq, void *v, loff_t *pos)
2358{
2359 struct fib_route_iter *iter = seq->private;
Alexander Duyckadaf9812014-12-31 10:55:47 -08002360 struct tnode *l = v;
Stephen Hemminger8315f5d2008-02-11 21:14:39 -08002361
2362 ++*pos;
2363 if (v == SEQ_START_TOKEN) {
2364 iter->pos = 0;
2365 l = trie_firstleaf(iter->main_trie);
2366 } else {
2367 iter->pos++;
2368 l = trie_nextleaf(l);
2369 }
2370
2371 if (l)
2372 iter->key = l->key;
2373 else
2374 iter->pos = 0;
2375 return l;
2376}
2377
2378static void fib_route_seq_stop(struct seq_file *seq, void *v)
2379 __releases(RCU)
2380{
2381 rcu_read_unlock();
2382}
2383
Eric Dumazeta034ee32010-09-09 23:32:28 +00002384static unsigned int fib_flag_trans(int type, __be32 mask, const struct fib_info *fi)
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002385{
Eric Dumazeta034ee32010-09-09 23:32:28 +00002386 unsigned int flags = 0;
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002387
Eric Dumazeta034ee32010-09-09 23:32:28 +00002388 if (type == RTN_UNREACHABLE || type == RTN_PROHIBIT)
2389 flags = RTF_REJECT;
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002390 if (fi && fi->fib_nh->nh_gw)
2391 flags |= RTF_GATEWAY;
Al Viro32ab5f82006-09-26 22:21:45 -07002392 if (mask == htonl(0xFFFFFFFF))
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002393 flags |= RTF_HOST;
2394 flags |= RTF_UP;
2395 return flags;
2396}
2397
2398/*
2399 * This outputs /proc/net/route.
2400 * The format of the file is not supposed to be changed
Eric Dumazeta034ee32010-09-09 23:32:28 +00002401 * and needs to be same as fib_hash output to avoid breaking
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002402 * legacy utilities
2403 */
2404static int fib_route_seq_show(struct seq_file *seq, void *v)
2405{
Alexander Duyckadaf9812014-12-31 10:55:47 -08002406 struct tnode *l = v;
Stephen Hemminger13280422008-01-22 21:54:37 -08002407 struct leaf_info *li;
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002408
2409 if (v == SEQ_START_TOKEN) {
2410 seq_printf(seq, "%-127s\n", "Iface\tDestination\tGateway "
2411 "\tFlags\tRefCnt\tUse\tMetric\tMask\t\tMTU"
2412 "\tWindow\tIRTT");
2413 return 0;
2414 }
2415
Sasha Levinb67bfe02013-02-27 17:06:00 -08002416 hlist_for_each_entry_rcu(li, &l->list, hlist) {
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002417 struct fib_alias *fa;
Al Viro32ab5f82006-09-26 22:21:45 -07002418 __be32 mask, prefix;
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002419
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002420 mask = inet_make_mask(li->plen);
2421 prefix = htonl(l->key);
2422
2423 list_for_each_entry_rcu(fa, &li->falh, fa_list) {
Herbert Xu1371e372005-10-15 09:42:39 +10002424 const struct fib_info *fi = fa->fa_info;
Eric Dumazeta034ee32010-09-09 23:32:28 +00002425 unsigned int flags = fib_flag_trans(fa->fa_type, mask, fi);
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002426
2427 if (fa->fa_type == RTN_BROADCAST
2428 || fa->fa_type == RTN_MULTICAST)
2429 continue;
2430
Tetsuo Handa652586d2013-11-14 14:31:57 -08002431 seq_setwidth(seq, 127);
2432
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002433 if (fi)
Pavel Emelyanov5e659e42008-04-24 01:02:16 -07002434 seq_printf(seq,
2435 "%s\t%08X\t%08X\t%04X\t%d\t%u\t"
Tetsuo Handa652586d2013-11-14 14:31:57 -08002436 "%d\t%08X\t%d\t%u\t%u",
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002437 fi->fib_dev ? fi->fib_dev->name : "*",
2438 prefix,
2439 fi->fib_nh->nh_gw, flags, 0, 0,
2440 fi->fib_priority,
2441 mask,
Stephen Hemmingera07f5f52008-01-22 21:53:36 -08002442 (fi->fib_advmss ?
2443 fi->fib_advmss + 40 : 0),
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002444 fi->fib_window,
Tetsuo Handa652586d2013-11-14 14:31:57 -08002445 fi->fib_rtt >> 3);
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002446 else
Pavel Emelyanov5e659e42008-04-24 01:02:16 -07002447 seq_printf(seq,
2448 "*\t%08X\t%08X\t%04X\t%d\t%u\t"
Tetsuo Handa652586d2013-11-14 14:31:57 -08002449 "%d\t%08X\t%d\t%u\t%u",
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002450 prefix, 0, flags, 0, 0, 0,
Tetsuo Handa652586d2013-11-14 14:31:57 -08002451 mask, 0, 0, 0);
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002452
Tetsuo Handa652586d2013-11-14 14:31:57 -08002453 seq_pad(seq, '\n');
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002454 }
2455 }
2456
2457 return 0;
2458}
2459
Stephen Hemmingerf6908082007-03-12 14:34:29 -07002460static const struct seq_operations fib_route_seq_ops = {
Stephen Hemminger8315f5d2008-02-11 21:14:39 -08002461 .start = fib_route_seq_start,
2462 .next = fib_route_seq_next,
2463 .stop = fib_route_seq_stop,
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002464 .show = fib_route_seq_show,
2465};
2466
2467static int fib_route_seq_open(struct inode *inode, struct file *file)
2468{
Denis V. Lunev1c340b22008-01-10 03:27:17 -08002469 return seq_open_net(inode, file, &fib_route_seq_ops,
Stephen Hemminger8315f5d2008-02-11 21:14:39 -08002470 sizeof(struct fib_route_iter));
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002471}
2472
Arjan van de Ven9a321442007-02-12 00:55:35 -08002473static const struct file_operations fib_route_fops = {
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002474 .owner = THIS_MODULE,
2475 .open = fib_route_seq_open,
2476 .read = seq_read,
2477 .llseek = seq_lseek,
Denis V. Lunev1c340b22008-01-10 03:27:17 -08002478 .release = seq_release_net,
Robert Olsson19baf832005-06-21 12:43:18 -07002479};
2480
Denis V. Lunev61a02652008-01-10 03:21:09 -08002481int __net_init fib_proc_init(struct net *net)
Robert Olsson19baf832005-06-21 12:43:18 -07002482{
Gao fengd4beaa62013-02-18 01:34:54 +00002483 if (!proc_create("fib_trie", S_IRUGO, net->proc_net, &fib_trie_fops))
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002484 goto out1;
2485
Gao fengd4beaa62013-02-18 01:34:54 +00002486 if (!proc_create("fib_triestat", S_IRUGO, net->proc_net,
2487 &fib_triestat_fops))
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002488 goto out2;
2489
Gao fengd4beaa62013-02-18 01:34:54 +00002490 if (!proc_create("route", S_IRUGO, net->proc_net, &fib_route_fops))
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002491 goto out3;
2492
Robert Olsson19baf832005-06-21 12:43:18 -07002493 return 0;
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002494
2495out3:
Gao fengece31ff2013-02-18 01:34:56 +00002496 remove_proc_entry("fib_triestat", net->proc_net);
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002497out2:
Gao fengece31ff2013-02-18 01:34:56 +00002498 remove_proc_entry("fib_trie", net->proc_net);
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002499out1:
2500 return -ENOMEM;
Robert Olsson19baf832005-06-21 12:43:18 -07002501}
2502
Denis V. Lunev61a02652008-01-10 03:21:09 -08002503void __net_exit fib_proc_exit(struct net *net)
Robert Olsson19baf832005-06-21 12:43:18 -07002504{
Gao fengece31ff2013-02-18 01:34:56 +00002505 remove_proc_entry("fib_trie", net->proc_net);
2506 remove_proc_entry("fib_triestat", net->proc_net);
2507 remove_proc_entry("route", net->proc_net);
Robert Olsson19baf832005-06-21 12:43:18 -07002508}
2509
2510#endif /* CONFIG_PROC_FS */