blob: d044fa355f697085a4964aa25ad975df761e4b1d [file] [log] [blame]
Robert Olsson19baf832005-06-21 12:43:18 -07001/*
2 * This program is free software; you can redistribute it and/or
3 * modify it under the terms of the GNU General Public License
4 * as published by the Free Software Foundation; either version
5 * 2 of the License, or (at your option) any later version.
6 *
7 * Robert Olsson <robert.olsson@its.uu.se> Uppsala Universitet
8 * & Swedish University of Agricultural Sciences.
9 *
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +090010 * Jens Laas <jens.laas@data.slu.se> Swedish University of
Robert Olsson19baf832005-06-21 12:43:18 -070011 * Agricultural Sciences.
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +090012 *
Robert Olsson19baf832005-06-21 12:43:18 -070013 * Hans Liss <hans.liss@its.uu.se> Uppsala Universitet
14 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -030015 * This work is based on the LPC-trie which is originally described in:
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +090016 *
Robert Olsson19baf832005-06-21 12:43:18 -070017 * An experimental study of compression methods for dynamic tries
18 * Stefan Nilsson and Matti Tikkanen. Algorithmica, 33(1):19-33, 2002.
Justin P. Mattock631dd1a2010-10-18 11:03:14 +020019 * http://www.csc.kth.se/~snilsson/software/dyntrie2/
Robert Olsson19baf832005-06-21 12:43:18 -070020 *
21 *
22 * IP-address lookup using LC-tries. Stefan Nilsson and Gunnar Karlsson
23 * IEEE Journal on Selected Areas in Communications, 17(6):1083-1092, June 1999
24 *
Robert Olsson19baf832005-06-21 12:43:18 -070025 *
26 * Code from fib_hash has been reused which includes the following header:
27 *
28 *
29 * INET An implementation of the TCP/IP protocol suite for the LINUX
30 * operating system. INET is implemented using the BSD Socket
31 * interface as the means of communication with the user level.
32 *
33 * IPv4 FIB: lookup engine and maintenance routines.
34 *
35 *
36 * Authors: Alexey Kuznetsov, <kuznet@ms2.inr.ac.ru>
37 *
38 * This program is free software; you can redistribute it and/or
39 * modify it under the terms of the GNU General Public License
40 * as published by the Free Software Foundation; either version
41 * 2 of the License, or (at your option) any later version.
Robert Olssonfd966252005-12-22 11:25:10 -080042 *
43 * Substantial contributions to this work comes from:
44 *
45 * David S. Miller, <davem@davemloft.net>
46 * Stephen Hemminger <shemminger@osdl.org>
47 * Paul E. McKenney <paulmck@us.ibm.com>
48 * Patrick McHardy <kaber@trash.net>
Robert Olsson19baf832005-06-21 12:43:18 -070049 */
50
Jens Låås80b71b82009-08-28 23:57:15 -070051#define VERSION "0.409"
Robert Olsson19baf832005-06-21 12:43:18 -070052
Robert Olsson19baf832005-06-21 12:43:18 -070053#include <asm/uaccess.h>
Jiri Slaby1977f032007-10-18 23:40:25 -070054#include <linux/bitops.h>
Robert Olsson19baf832005-06-21 12:43:18 -070055#include <linux/types.h>
56#include <linux/kernel.h>
Robert Olsson19baf832005-06-21 12:43:18 -070057#include <linux/mm.h>
58#include <linux/string.h>
59#include <linux/socket.h>
60#include <linux/sockios.h>
61#include <linux/errno.h>
62#include <linux/in.h>
63#include <linux/inet.h>
Stephen Hemmingercd8787a2006-01-03 14:38:34 -080064#include <linux/inetdevice.h>
Robert Olsson19baf832005-06-21 12:43:18 -070065#include <linux/netdevice.h>
66#include <linux/if_arp.h>
67#include <linux/proc_fs.h>
Robert Olsson2373ce12005-08-25 13:01:29 -070068#include <linux/rcupdate.h>
Robert Olsson19baf832005-06-21 12:43:18 -070069#include <linux/skbuff.h>
70#include <linux/netlink.h>
71#include <linux/init.h>
72#include <linux/list.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090073#include <linux/slab.h>
Paul Gortmakerbc3b2d72011-07-15 11:47:34 -040074#include <linux/export.h>
Eric W. Biederman457c4cb2007-09-12 12:01:34 +020075#include <net/net_namespace.h>
Robert Olsson19baf832005-06-21 12:43:18 -070076#include <net/ip.h>
77#include <net/protocol.h>
78#include <net/route.h>
79#include <net/tcp.h>
80#include <net/sock.h>
81#include <net/ip_fib.h>
82#include "fib_lookup.h"
83
Robert Olsson06ef9212006-03-20 21:35:01 -080084#define MAX_STAT_DEPTH 32
Robert Olsson19baf832005-06-21 12:43:18 -070085
Robert Olsson19baf832005-06-21 12:43:18 -070086#define KEYLENGTH (8*sizeof(t_key))
Robert Olsson19baf832005-06-21 12:43:18 -070087
Robert Olsson19baf832005-06-21 12:43:18 -070088typedef unsigned int t_key;
89
Alexander Duyck64c9b6f2014-12-31 10:55:35 -080090#define IS_TNODE(n) ((n)->bits)
91#define IS_LEAF(n) (!(n)->bits)
Robert Olsson2373ce12005-08-25 13:01:29 -070092
Alexander Duycke9b44012014-12-31 10:56:12 -080093#define get_index(_key, _kv) (((_key) ^ (_kv)->key) >> (_kv)->pos)
Alexander Duyck9f9e6362014-12-31 10:55:54 -080094
Alexander Duyck64c9b6f2014-12-31 10:55:35 -080095struct tnode {
96 t_key key;
97 unsigned char bits; /* 2log(KEYLENGTH) bits needed */
98 unsigned char pos; /* 2log(KEYLENGTH) bits needed */
99 struct tnode __rcu *parent;
Alexander Duyck37fd30f2014-12-31 10:55:41 -0800100 struct rcu_head rcu;
Alexander Duyckadaf9812014-12-31 10:55:47 -0800101 union {
102 /* The fields in this struct are valid if bits > 0 (TNODE) */
103 struct {
104 unsigned int full_children; /* KEYLENGTH bits needed */
105 unsigned int empty_children; /* KEYLENGTH bits needed */
106 struct tnode __rcu *child[0];
107 };
108 /* This list pointer if valid if bits == 0 (LEAF) */
109 struct hlist_head list;
110 };
Robert Olsson19baf832005-06-21 12:43:18 -0700111};
112
113struct leaf_info {
114 struct hlist_node hlist;
115 int plen;
Eric Dumazet5c745012011-07-18 03:16:33 +0000116 u32 mask_plen; /* ntohl(inet_make_mask(plen)) */
Robert Olsson19baf832005-06-21 12:43:18 -0700117 struct list_head falh;
Eric Dumazet5c745012011-07-18 03:16:33 +0000118 struct rcu_head rcu;
Robert Olsson19baf832005-06-21 12:43:18 -0700119};
120
Robert Olsson19baf832005-06-21 12:43:18 -0700121#ifdef CONFIG_IP_FIB_TRIE_STATS
122struct trie_use_stats {
123 unsigned int gets;
124 unsigned int backtrack;
125 unsigned int semantic_match_passed;
126 unsigned int semantic_match_miss;
127 unsigned int null_node_hit;
Robert Olsson2f368952005-07-05 15:02:40 -0700128 unsigned int resize_node_skipped;
Robert Olsson19baf832005-06-21 12:43:18 -0700129};
130#endif
131
132struct trie_stat {
133 unsigned int totdepth;
134 unsigned int maxdepth;
135 unsigned int tnodes;
136 unsigned int leaves;
137 unsigned int nullpointers;
Stephen Hemminger93672292008-01-22 21:54:05 -0800138 unsigned int prefixes;
Robert Olsson06ef9212006-03-20 21:35:01 -0800139 unsigned int nodesizes[MAX_STAT_DEPTH];
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700140};
Robert Olsson19baf832005-06-21 12:43:18 -0700141
142struct trie {
Alexander Duyckadaf9812014-12-31 10:55:47 -0800143 struct tnode __rcu *trie;
Robert Olsson19baf832005-06-21 12:43:18 -0700144#ifdef CONFIG_IP_FIB_TRIE_STATS
Alexander Duyck8274a972014-12-31 10:55:29 -0800145 struct trie_use_stats __percpu *stats;
Robert Olsson19baf832005-06-21 12:43:18 -0700146#endif
Robert Olsson19baf832005-06-21 12:43:18 -0700147};
148
Alexander Duyck98293e82014-12-31 10:56:18 -0800149static void tnode_put_child_reorg(struct tnode *tn, unsigned long i,
150 struct tnode *n, int wasfull);
Alexander Duyckadaf9812014-12-31 10:55:47 -0800151static struct tnode *resize(struct trie *t, struct tnode *tn);
Jarek Poplawskie0f7cb82009-06-15 02:31:29 -0700152/* tnodes to free after resize(); protected by RTNL */
Alexander Duyck37fd30f2014-12-31 10:55:41 -0800153static struct callback_head *tnode_free_head;
Jarek Poplawskic3059472009-07-14 08:33:08 +0000154static size_t tnode_free_size;
155
156/*
157 * synchronize_rcu after call_rcu for that many pages; it should be especially
158 * useful before resizing the root node with PREEMPT_NONE configs; the value was
159 * obtained experimentally, aiming to avoid visible slowdown.
160 */
161static const int sync_pages = 128;
Robert Olsson19baf832005-06-21 12:43:18 -0700162
Christoph Lametere18b8902006-12-06 20:33:20 -0800163static struct kmem_cache *fn_alias_kmem __read_mostly;
Stephen Hemmingerbc3c8c12008-01-22 21:51:50 -0800164static struct kmem_cache *trie_leaf_kmem __read_mostly;
Robert Olsson19baf832005-06-21 12:43:18 -0700165
Alexander Duyck64c9b6f2014-12-31 10:55:35 -0800166/* caller must hold RTNL */
167#define node_parent(n) rtnl_dereference((n)->parent)
Eric Dumazet0a5c0472011-03-31 01:51:35 -0700168
Alexander Duyck64c9b6f2014-12-31 10:55:35 -0800169/* caller must hold RCU read lock or RTNL */
170#define node_parent_rcu(n) rcu_dereference_rtnl((n)->parent)
Eric Dumazet0a5c0472011-03-31 01:51:35 -0700171
Alexander Duyck64c9b6f2014-12-31 10:55:35 -0800172/* wrapper for rcu_assign_pointer */
Alexander Duyckadaf9812014-12-31 10:55:47 -0800173static inline void node_set_parent(struct tnode *n, struct tnode *tp)
Stephen Hemminger06801912007-08-10 15:22:13 -0700174{
Alexander Duyckadaf9812014-12-31 10:55:47 -0800175 if (n)
176 rcu_assign_pointer(n->parent, tp);
Alexander Duyck64c9b6f2014-12-31 10:55:35 -0800177}
178
179#define NODE_INIT_PARENT(n, p) RCU_INIT_POINTER((n)->parent, p)
180
181/* This provides us with the number of children in this node, in the case of a
182 * leaf this will return 0 meaning none of the children are accessible.
183 */
Alexander Duyck98293e82014-12-31 10:56:18 -0800184static inline unsigned long tnode_child_length(const struct tnode *tn)
Alexander Duyck64c9b6f2014-12-31 10:55:35 -0800185{
186 return (1ul << tn->bits) & ~(1ul);
Stephen Hemminger06801912007-08-10 15:22:13 -0700187}
Robert Olsson2373ce12005-08-25 13:01:29 -0700188
Alexander Duyck98293e82014-12-31 10:56:18 -0800189/* caller must hold RTNL */
190static inline struct tnode *tnode_get_child(const struct tnode *tn,
191 unsigned long i)
Robert Olsson19baf832005-06-21 12:43:18 -0700192{
Alexander Duyck64c9b6f2014-12-31 10:55:35 -0800193 BUG_ON(i >= tnode_child_length(tn));
Robert Olsson19baf832005-06-21 12:43:18 -0700194
Eric Dumazet0a5c0472011-03-31 01:51:35 -0700195 return rtnl_dereference(tn->child[i]);
Eric Dumazetb59cfbf2008-01-18 03:31:36 -0800196}
197
Alexander Duyck98293e82014-12-31 10:56:18 -0800198/* caller must hold RCU read lock or RTNL */
199static inline struct tnode *tnode_get_child_rcu(const struct tnode *tn,
200 unsigned long i)
Eric Dumazetb59cfbf2008-01-18 03:31:36 -0800201{
Alexander Duyck64c9b6f2014-12-31 10:55:35 -0800202 BUG_ON(i >= tnode_child_length(tn));
Eric Dumazetb59cfbf2008-01-18 03:31:36 -0800203
Eric Dumazet0a5c0472011-03-31 01:51:35 -0700204 return rcu_dereference_rtnl(tn->child[i]);
Robert Olsson19baf832005-06-21 12:43:18 -0700205}
206
Alexander Duycke9b44012014-12-31 10:56:12 -0800207/* To understand this stuff, an understanding of keys and all their bits is
208 * necessary. Every node in the trie has a key associated with it, but not
209 * all of the bits in that key are significant.
210 *
211 * Consider a node 'n' and its parent 'tp'.
212 *
213 * If n is a leaf, every bit in its key is significant. Its presence is
214 * necessitated by path compression, since during a tree traversal (when
215 * searching for a leaf - unless we are doing an insertion) we will completely
216 * ignore all skipped bits we encounter. Thus we need to verify, at the end of
217 * a potentially successful search, that we have indeed been walking the
218 * correct key path.
219 *
220 * Note that we can never "miss" the correct key in the tree if present by
221 * following the wrong path. Path compression ensures that segments of the key
222 * that are the same for all keys with a given prefix are skipped, but the
223 * skipped part *is* identical for each node in the subtrie below the skipped
224 * bit! trie_insert() in this implementation takes care of that.
225 *
226 * if n is an internal node - a 'tnode' here, the various parts of its key
227 * have many different meanings.
228 *
229 * Example:
230 * _________________________________________________________________
231 * | i | i | i | i | i | i | i | N | N | N | S | S | S | S | S | C |
232 * -----------------------------------------------------------------
233 * 31 30 29 28 27 26 25 24 23 22 21 20 19 18 17 16
234 *
235 * _________________________________________________________________
236 * | C | C | C | u | u | u | u | u | u | u | u | u | u | u | u | u |
237 * -----------------------------------------------------------------
238 * 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
239 *
240 * tp->pos = 22
241 * tp->bits = 3
242 * n->pos = 13
243 * n->bits = 4
244 *
245 * First, let's just ignore the bits that come before the parent tp, that is
246 * the bits from (tp->pos + tp->bits) to 31. They are *known* but at this
247 * point we do not use them for anything.
248 *
249 * The bits from (tp->pos) to (tp->pos + tp->bits - 1) - "N", above - are the
250 * index into the parent's child array. That is, they will be used to find
251 * 'n' among tp's children.
252 *
253 * The bits from (n->pos + n->bits) to (tn->pos - 1) - "S" - are skipped bits
254 * for the node n.
255 *
256 * All the bits we have seen so far are significant to the node n. The rest
257 * of the bits are really not needed or indeed known in n->key.
258 *
259 * The bits from (n->pos) to (n->pos + n->bits - 1) - "C" - are the index into
260 * n's child array, and will of course be different for each child.
261 *
262 * The rest of the bits, from 0 to (n->pos + n->bits), are completely unknown
263 * at this point.
264 */
Robert Olsson19baf832005-06-21 12:43:18 -0700265
Denis V. Lunevf5026fa2007-12-13 09:47:57 -0800266static const int halve_threshold = 25;
267static const int inflate_threshold = 50;
Jarek Poplawski345aa032009-07-07 19:39:16 -0700268static const int halve_threshold_root = 15;
Jens Låås80b71b82009-08-28 23:57:15 -0700269static const int inflate_threshold_root = 30;
Robert Olsson2373ce12005-08-25 13:01:29 -0700270
271static void __alias_free_mem(struct rcu_head *head)
272{
273 struct fib_alias *fa = container_of(head, struct fib_alias, rcu);
274 kmem_cache_free(fn_alias_kmem, fa);
275}
276
277static inline void alias_free_mem_rcu(struct fib_alias *fa)
278{
279 call_rcu(&fa->rcu, __alias_free_mem);
280}
281
Alexander Duyck37fd30f2014-12-31 10:55:41 -0800282#define TNODE_KMALLOC_MAX \
Alexander Duyckadaf9812014-12-31 10:55:47 -0800283 ilog2((PAGE_SIZE - sizeof(struct tnode)) / sizeof(struct tnode *))
Alexander Duyck37fd30f2014-12-31 10:55:41 -0800284
285static void __node_free_rcu(struct rcu_head *head)
Robert Olsson2373ce12005-08-25 13:01:29 -0700286{
Alexander Duyckadaf9812014-12-31 10:55:47 -0800287 struct tnode *n = container_of(head, struct tnode, rcu);
Alexander Duyck37fd30f2014-12-31 10:55:41 -0800288
289 if (IS_LEAF(n))
290 kmem_cache_free(trie_leaf_kmem, n);
291 else if (n->bits <= TNODE_KMALLOC_MAX)
292 kfree(n);
293 else
294 vfree(n);
Robert Olsson2373ce12005-08-25 13:01:29 -0700295}
296
Alexander Duyck37fd30f2014-12-31 10:55:41 -0800297#define node_free(n) call_rcu(&n->rcu, __node_free_rcu)
Stephen Hemminger387a5482008-04-10 03:47:34 -0700298
Robert Olsson2373ce12005-08-25 13:01:29 -0700299static inline void free_leaf_info(struct leaf_info *leaf)
300{
Lai Jiangshanbceb0f42011-03-18 11:42:34 +0800301 kfree_rcu(leaf, rcu);
Robert Olsson2373ce12005-08-25 13:01:29 -0700302}
303
Eric Dumazet8d965442008-01-13 22:31:44 -0800304static struct tnode *tnode_alloc(size_t size)
Robert Olsson2373ce12005-08-25 13:01:29 -0700305{
Robert Olsson2373ce12005-08-25 13:01:29 -0700306 if (size <= PAGE_SIZE)
Eric Dumazet8d965442008-01-13 22:31:44 -0800307 return kzalloc(size, GFP_KERNEL);
Stephen Hemminger15be75c2008-04-10 02:56:38 -0700308 else
Eric Dumazet7a1c8e52010-11-20 07:46:35 +0000309 return vzalloc(size);
Stephen Hemminger15be75c2008-04-10 02:56:38 -0700310}
Robert Olsson2373ce12005-08-25 13:01:29 -0700311
Jarek Poplawskie0f7cb82009-06-15 02:31:29 -0700312static void tnode_free_safe(struct tnode *tn)
313{
314 BUG_ON(IS_LEAF(tn));
Alexander Duyck37fd30f2014-12-31 10:55:41 -0800315 tn->rcu.next = tnode_free_head;
316 tnode_free_head = &tn->rcu;
Jarek Poplawskie0f7cb82009-06-15 02:31:29 -0700317}
318
319static void tnode_free_flush(void)
320{
Alexander Duyck37fd30f2014-12-31 10:55:41 -0800321 struct callback_head *head;
Jarek Poplawskie0f7cb82009-06-15 02:31:29 -0700322
Alexander Duyck37fd30f2014-12-31 10:55:41 -0800323 while ((head = tnode_free_head)) {
324 struct tnode *tn = container_of(head, struct tnode, rcu);
325
326 tnode_free_head = head->next;
327 tnode_free_size += offsetof(struct tnode, child[1 << tn->bits]);
328
329 node_free(tn);
Jarek Poplawskie0f7cb82009-06-15 02:31:29 -0700330 }
Jarek Poplawskic3059472009-07-14 08:33:08 +0000331
332 if (tnode_free_size >= PAGE_SIZE * sync_pages) {
333 tnode_free_size = 0;
334 synchronize_rcu();
335 }
Jarek Poplawskie0f7cb82009-06-15 02:31:29 -0700336}
337
Alexander Duyckadaf9812014-12-31 10:55:47 -0800338static struct tnode *leaf_new(t_key key)
Robert Olsson19baf832005-06-21 12:43:18 -0700339{
Alexander Duyckadaf9812014-12-31 10:55:47 -0800340 struct tnode *l = kmem_cache_alloc(trie_leaf_kmem, GFP_KERNEL);
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700341 if (l) {
Alexander Duyck64c9b6f2014-12-31 10:55:35 -0800342 l->parent = NULL;
343 /* set key and pos to reflect full key value
344 * any trailing zeros in the key should be ignored
345 * as the nodes are searched
346 */
347 l->key = key;
Alexander Duycke9b44012014-12-31 10:56:12 -0800348 l->pos = 0;
Alexander Duyck64c9b6f2014-12-31 10:55:35 -0800349 /* set bits to 0 indicating we are not a tnode */
350 l->bits = 0;
351
Robert Olsson19baf832005-06-21 12:43:18 -0700352 INIT_HLIST_HEAD(&l->list);
353 }
354 return l;
355}
356
357static struct leaf_info *leaf_info_new(int plen)
358{
359 struct leaf_info *li = kmalloc(sizeof(struct leaf_info), GFP_KERNEL);
Robert Olsson2373ce12005-08-25 13:01:29 -0700360 if (li) {
361 li->plen = plen;
Eric Dumazet5c745012011-07-18 03:16:33 +0000362 li->mask_plen = ntohl(inet_make_mask(plen));
Robert Olsson2373ce12005-08-25 13:01:29 -0700363 INIT_LIST_HEAD(&li->falh);
Patrick McHardyf0e36f82005-07-05 14:44:55 -0700364 }
Robert Olsson2373ce12005-08-25 13:01:29 -0700365 return li;
Patrick McHardyf0e36f82005-07-05 14:44:55 -0700366}
367
Stephen Hemmingera07f5f52008-01-22 21:53:36 -0800368static struct tnode *tnode_new(t_key key, int pos, int bits)
Robert Olsson19baf832005-06-21 12:43:18 -0700369{
Alexander Duyck37fd30f2014-12-31 10:55:41 -0800370 size_t sz = offsetof(struct tnode, child[1 << bits]);
Patrick McHardyf0e36f82005-07-05 14:44:55 -0700371 struct tnode *tn = tnode_alloc(sz);
Alexander Duyck64c9b6f2014-12-31 10:55:35 -0800372 unsigned int shift = pos + bits;
373
374 /* verify bits and pos their msb bits clear and values are valid */
375 BUG_ON(!bits || (shift > KEYLENGTH));
Robert Olsson19baf832005-06-21 12:43:18 -0700376
Olof Johansson91b9a272005-08-09 20:24:39 -0700377 if (tn) {
Alexander Duyck64c9b6f2014-12-31 10:55:35 -0800378 tn->parent = NULL;
Robert Olsson19baf832005-06-21 12:43:18 -0700379 tn->pos = pos;
380 tn->bits = bits;
Alexander Duycke9b44012014-12-31 10:56:12 -0800381 tn->key = (shift < KEYLENGTH) ? (key >> shift) << shift : 0;
Robert Olsson19baf832005-06-21 12:43:18 -0700382 tn->full_children = 0;
383 tn->empty_children = 1<<bits;
384 }
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700385
Eric Dumazeta034ee32010-09-09 23:32:28 +0000386 pr_debug("AT %p s=%zu %zu\n", tn, sizeof(struct tnode),
Alexander Duyckadaf9812014-12-31 10:55:47 -0800387 sizeof(struct tnode *) << bits);
Robert Olsson19baf832005-06-21 12:43:18 -0700388 return tn;
389}
390
Alexander Duycke9b44012014-12-31 10:56:12 -0800391/* Check whether a tnode 'n' is "full", i.e. it is an internal node
Robert Olsson19baf832005-06-21 12:43:18 -0700392 * and no bits are skipped. See discussion in dyntree paper p. 6
393 */
Alexander Duyckadaf9812014-12-31 10:55:47 -0800394static inline int tnode_full(const struct tnode *tn, const struct tnode *n)
Robert Olsson19baf832005-06-21 12:43:18 -0700395{
Alexander Duycke9b44012014-12-31 10:56:12 -0800396 return n && ((n->pos + n->bits) == tn->pos) && IS_TNODE(n);
Robert Olsson19baf832005-06-21 12:43:18 -0700397}
398
Alexander Duyck98293e82014-12-31 10:56:18 -0800399static inline void put_child(struct tnode *tn, unsigned long i,
Alexander Duyckadaf9812014-12-31 10:55:47 -0800400 struct tnode *n)
Robert Olsson19baf832005-06-21 12:43:18 -0700401{
402 tnode_put_child_reorg(tn, i, n, -1);
403}
404
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700405 /*
Robert Olsson19baf832005-06-21 12:43:18 -0700406 * Add a child at position i overwriting the old value.
407 * Update the value of full_children and empty_children.
408 */
409
Alexander Duyck98293e82014-12-31 10:56:18 -0800410static void tnode_put_child_reorg(struct tnode *tn, unsigned long i,
411 struct tnode *n, int wasfull)
Robert Olsson19baf832005-06-21 12:43:18 -0700412{
Alexander Duyckadaf9812014-12-31 10:55:47 -0800413 struct tnode *chi = rtnl_dereference(tn->child[i]);
Robert Olsson19baf832005-06-21 12:43:18 -0700414 int isfull;
415
Alexander Duyck98293e82014-12-31 10:56:18 -0800416 BUG_ON(i >= tnode_child_length(tn));
Stephen Hemminger0c7770c2005-08-23 21:59:41 -0700417
Robert Olsson19baf832005-06-21 12:43:18 -0700418 /* update emptyChildren */
419 if (n == NULL && chi != NULL)
420 tn->empty_children++;
421 else if (n != NULL && chi == NULL)
422 tn->empty_children--;
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700423
Robert Olsson19baf832005-06-21 12:43:18 -0700424 /* update fullChildren */
Olof Johansson91b9a272005-08-09 20:24:39 -0700425 if (wasfull == -1)
Robert Olsson19baf832005-06-21 12:43:18 -0700426 wasfull = tnode_full(tn, chi);
427
428 isfull = tnode_full(tn, n);
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700429 if (wasfull && !isfull)
Robert Olsson19baf832005-06-21 12:43:18 -0700430 tn->full_children--;
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700431 else if (!wasfull && isfull)
Robert Olsson19baf832005-06-21 12:43:18 -0700432 tn->full_children++;
Olof Johansson91b9a272005-08-09 20:24:39 -0700433
Alexander Duyck64c9b6f2014-12-31 10:55:35 -0800434 node_set_parent(n, tn);
Robert Olsson19baf832005-06-21 12:43:18 -0700435
Eric Dumazetcf778b02012-01-12 04:41:32 +0000436 rcu_assign_pointer(tn->child[i], n);
Robert Olsson19baf832005-06-21 12:43:18 -0700437}
438
Alexander Duyck836a0122014-12-31 10:56:06 -0800439static void put_child_root(struct tnode *tp, struct trie *t,
440 t_key key, struct tnode *n)
441{
442 if (tp)
443 put_child(tp, get_index(key, tp), n);
444 else
445 rcu_assign_pointer(t->trie, n);
446}
447
Eric Dumazet0a5c0472011-03-31 01:51:35 -0700448static void tnode_clean_free(struct tnode *tn)
449{
Alexander Duyckadaf9812014-12-31 10:55:47 -0800450 struct tnode *tofree;
Alexander Duyck98293e82014-12-31 10:56:18 -0800451 unsigned long i;
Eric Dumazet0a5c0472011-03-31 01:51:35 -0700452
453 for (i = 0; i < tnode_child_length(tn); i++) {
Alexander Duyck98293e82014-12-31 10:56:18 -0800454 tofree = tnode_get_child(tn, i);
Eric Dumazet0a5c0472011-03-31 01:51:35 -0700455 if (tofree)
Alexander Duyck37fd30f2014-12-31 10:55:41 -0800456 node_free(tofree);
Eric Dumazet0a5c0472011-03-31 01:51:35 -0700457 }
Alexander Duyck37fd30f2014-12-31 10:55:41 -0800458 node_free(tn);
Eric Dumazet0a5c0472011-03-31 01:51:35 -0700459}
460
Alexander Duyckadaf9812014-12-31 10:55:47 -0800461static struct tnode *inflate(struct trie *t, struct tnode *oldtnode)
Robert Olsson19baf832005-06-21 12:43:18 -0700462{
Alexander Duyck98293e82014-12-31 10:56:18 -0800463 unsigned long olen = tnode_child_length(oldtnode);
Alexander Duyckadaf9812014-12-31 10:55:47 -0800464 struct tnode *tn;
Alexander Duyck98293e82014-12-31 10:56:18 -0800465 unsigned long i;
Alexander Duycke9b44012014-12-31 10:56:12 -0800466 t_key m;
Robert Olsson19baf832005-06-21 12:43:18 -0700467
Stephen Hemminger0c7770c2005-08-23 21:59:41 -0700468 pr_debug("In inflate\n");
Robert Olsson19baf832005-06-21 12:43:18 -0700469
Alexander Duycke9b44012014-12-31 10:56:12 -0800470 tn = tnode_new(oldtnode->key, oldtnode->pos - 1, oldtnode->bits + 1);
Robert Olsson19baf832005-06-21 12:43:18 -0700471
Stephen Hemminger0c7770c2005-08-23 21:59:41 -0700472 if (!tn)
Robert Olsson2f80b3c2005-08-09 20:25:06 -0700473 return ERR_PTR(-ENOMEM);
Robert Olsson2f368952005-07-05 15:02:40 -0700474
475 /*
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700476 * Preallocate and store tnodes before the actual work so we
477 * don't get into an inconsistent state if memory allocation
478 * fails. In case of failure we return the oldnode and inflate
Robert Olsson2f368952005-07-05 15:02:40 -0700479 * of tnode is ignored.
480 */
Alexander Duycke9b44012014-12-31 10:56:12 -0800481 for (i = 0, m = 1u << tn->pos; i < olen; i++) {
482 struct tnode *inode = tnode_get_child(oldtnode, i);
Olof Johansson91b9a272005-08-09 20:24:39 -0700483
Alexander Duycke9b44012014-12-31 10:56:12 -0800484 if (tnode_full(oldtnode, inode) && (inode->bits > 1)) {
Robert Olsson2f368952005-07-05 15:02:40 -0700485 struct tnode *left, *right;
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700486
Alexander Duycke9b44012014-12-31 10:56:12 -0800487 left = tnode_new(inode->key & ~m, inode->pos,
Robert Olsson2f368952005-07-05 15:02:40 -0700488 inode->bits - 1);
Robert Olsson2f80b3c2005-08-09 20:25:06 -0700489 if (!left)
490 goto nomem;
Olof Johansson91b9a272005-08-09 20:24:39 -0700491
Alexander Duycke9b44012014-12-31 10:56:12 -0800492 right = tnode_new(inode->key | m, inode->pos,
Robert Olsson2f368952005-07-05 15:02:40 -0700493 inode->bits - 1);
494
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900495 if (!right) {
Alexander Duyck37fd30f2014-12-31 10:55:41 -0800496 node_free(left);
Robert Olsson2f80b3c2005-08-09 20:25:06 -0700497 goto nomem;
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900498 }
Robert Olsson2f368952005-07-05 15:02:40 -0700499
Alexander Duyckadaf9812014-12-31 10:55:47 -0800500 put_child(tn, 2*i, left);
501 put_child(tn, 2*i+1, right);
Robert Olsson2f368952005-07-05 15:02:40 -0700502 }
503 }
504
Olof Johansson91b9a272005-08-09 20:24:39 -0700505 for (i = 0; i < olen; i++) {
Alexander Duyckadaf9812014-12-31 10:55:47 -0800506 struct tnode *inode = tnode_get_child(oldtnode, i);
Olof Johansson91b9a272005-08-09 20:24:39 -0700507 struct tnode *left, *right;
Alexander Duyck98293e82014-12-31 10:56:18 -0800508 unsigned long size, j;
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700509
Robert Olsson19baf832005-06-21 12:43:18 -0700510 /* An empty child */
Alexander Duyckadaf9812014-12-31 10:55:47 -0800511 if (inode == NULL)
Robert Olsson19baf832005-06-21 12:43:18 -0700512 continue;
513
514 /* A leaf or an internal node with skipped bits */
Alexander Duyckadaf9812014-12-31 10:55:47 -0800515 if (!tnode_full(oldtnode, inode)) {
Alexander Duycke9b44012014-12-31 10:56:12 -0800516 put_child(tn, get_index(inode->key, tn), inode);
Robert Olsson19baf832005-06-21 12:43:18 -0700517 continue;
518 }
519
520 /* An internal node with two children */
Robert Olsson19baf832005-06-21 12:43:18 -0700521 if (inode->bits == 1) {
Lin Ming61648d92012-07-29 02:00:03 +0000522 put_child(tn, 2*i, rtnl_dereference(inode->child[0]));
523 put_child(tn, 2*i+1, rtnl_dereference(inode->child[1]));
Robert Olsson19baf832005-06-21 12:43:18 -0700524
Jarek Poplawskie0f7cb82009-06-15 02:31:29 -0700525 tnode_free_safe(inode);
Olof Johansson91b9a272005-08-09 20:24:39 -0700526 continue;
Robert Olsson19baf832005-06-21 12:43:18 -0700527 }
528
Olof Johansson91b9a272005-08-09 20:24:39 -0700529 /* An internal node with more than two children */
Robert Olsson19baf832005-06-21 12:43:18 -0700530
Olof Johansson91b9a272005-08-09 20:24:39 -0700531 /* We will replace this node 'inode' with two new
532 * ones, 'left' and 'right', each with half of the
533 * original children. The two new nodes will have
534 * a position one bit further down the key and this
535 * means that the "significant" part of their keys
536 * (see the discussion near the top of this file)
537 * will differ by one bit, which will be "0" in
538 * left's key and "1" in right's key. Since we are
539 * moving the key position by one step, the bit that
540 * we are moving away from - the bit at position
541 * (inode->pos) - is the one that will differ between
542 * left and right. So... we synthesize that bit in the
543 * two new keys.
544 * The mask 'm' below will be a single "one" bit at
545 * the position (inode->pos)
546 */
Robert Olsson19baf832005-06-21 12:43:18 -0700547
Olof Johansson91b9a272005-08-09 20:24:39 -0700548 /* Use the old key, but set the new significant
549 * bit to zero.
550 */
Robert Olsson19baf832005-06-21 12:43:18 -0700551
Alexander Duyckadaf9812014-12-31 10:55:47 -0800552 left = tnode_get_child(tn, 2*i);
Lin Ming61648d92012-07-29 02:00:03 +0000553 put_child(tn, 2*i, NULL);
Robert Olsson19baf832005-06-21 12:43:18 -0700554
Olof Johansson91b9a272005-08-09 20:24:39 -0700555 BUG_ON(!left);
Robert Olsson2f368952005-07-05 15:02:40 -0700556
Alexander Duyckadaf9812014-12-31 10:55:47 -0800557 right = tnode_get_child(tn, 2*i+1);
Lin Ming61648d92012-07-29 02:00:03 +0000558 put_child(tn, 2*i+1, NULL);
Robert Olsson2f368952005-07-05 15:02:40 -0700559
Olof Johansson91b9a272005-08-09 20:24:39 -0700560 BUG_ON(!right);
Robert Olsson2f368952005-07-05 15:02:40 -0700561
Olof Johansson91b9a272005-08-09 20:24:39 -0700562 size = tnode_child_length(left);
563 for (j = 0; j < size; j++) {
Lin Ming61648d92012-07-29 02:00:03 +0000564 put_child(left, j, rtnl_dereference(inode->child[j]));
565 put_child(right, j, rtnl_dereference(inode->child[j + size]));
Robert Olsson19baf832005-06-21 12:43:18 -0700566 }
Lin Ming61648d92012-07-29 02:00:03 +0000567 put_child(tn, 2*i, resize(t, left));
568 put_child(tn, 2*i+1, resize(t, right));
Olof Johansson91b9a272005-08-09 20:24:39 -0700569
Jarek Poplawskie0f7cb82009-06-15 02:31:29 -0700570 tnode_free_safe(inode);
Robert Olsson19baf832005-06-21 12:43:18 -0700571 }
Jarek Poplawskie0f7cb82009-06-15 02:31:29 -0700572 tnode_free_safe(oldtnode);
Robert Olsson19baf832005-06-21 12:43:18 -0700573 return tn;
Robert Olsson2f80b3c2005-08-09 20:25:06 -0700574nomem:
Eric Dumazet0a5c0472011-03-31 01:51:35 -0700575 tnode_clean_free(tn);
576 return ERR_PTR(-ENOMEM);
Robert Olsson19baf832005-06-21 12:43:18 -0700577}
578
Alexander Duyckadaf9812014-12-31 10:55:47 -0800579static struct tnode *halve(struct trie *t, struct tnode *oldtnode)
Robert Olsson19baf832005-06-21 12:43:18 -0700580{
Alexander Duyck98293e82014-12-31 10:56:18 -0800581 unsigned long olen = tnode_child_length(oldtnode);
Alexander Duyckadaf9812014-12-31 10:55:47 -0800582 struct tnode *tn, *left, *right;
Robert Olsson19baf832005-06-21 12:43:18 -0700583 int i;
Robert Olsson19baf832005-06-21 12:43:18 -0700584
Stephen Hemminger0c7770c2005-08-23 21:59:41 -0700585 pr_debug("In halve\n");
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700586
Alexander Duycke9b44012014-12-31 10:56:12 -0800587 tn = tnode_new(oldtnode->key, oldtnode->pos + 1, oldtnode->bits - 1);
Robert Olsson19baf832005-06-21 12:43:18 -0700588
Robert Olsson2f80b3c2005-08-09 20:25:06 -0700589 if (!tn)
590 return ERR_PTR(-ENOMEM);
Robert Olsson2f368952005-07-05 15:02:40 -0700591
592 /*
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700593 * Preallocate and store tnodes before the actual work so we
594 * don't get into an inconsistent state if memory allocation
595 * fails. In case of failure we return the oldnode and halve
Robert Olsson2f368952005-07-05 15:02:40 -0700596 * of tnode is ignored.
597 */
598
Olof Johansson91b9a272005-08-09 20:24:39 -0700599 for (i = 0; i < olen; i += 2) {
Robert Olsson2f368952005-07-05 15:02:40 -0700600 left = tnode_get_child(oldtnode, i);
601 right = tnode_get_child(oldtnode, i+1);
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700602
Robert Olsson2f368952005-07-05 15:02:40 -0700603 /* Two nonempty children */
Stephen Hemminger0c7770c2005-08-23 21:59:41 -0700604 if (left && right) {
Robert Olsson2f80b3c2005-08-09 20:25:06 -0700605 struct tnode *newn;
Stephen Hemminger0c7770c2005-08-23 21:59:41 -0700606
Alexander Duycke9b44012014-12-31 10:56:12 -0800607 newn = tnode_new(left->key, oldtnode->pos, 1);
Stephen Hemminger0c7770c2005-08-23 21:59:41 -0700608
609 if (!newn)
Robert Olsson2f80b3c2005-08-09 20:25:06 -0700610 goto nomem;
Stephen Hemminger0c7770c2005-08-23 21:59:41 -0700611
Alexander Duyckadaf9812014-12-31 10:55:47 -0800612 put_child(tn, i/2, newn);
Robert Olsson2f368952005-07-05 15:02:40 -0700613 }
Robert Olsson2f368952005-07-05 15:02:40 -0700614
Robert Olsson2f368952005-07-05 15:02:40 -0700615 }
Robert Olsson19baf832005-06-21 12:43:18 -0700616
Olof Johansson91b9a272005-08-09 20:24:39 -0700617 for (i = 0; i < olen; i += 2) {
618 struct tnode *newBinNode;
619
Robert Olsson19baf832005-06-21 12:43:18 -0700620 left = tnode_get_child(oldtnode, i);
621 right = tnode_get_child(oldtnode, i+1);
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700622
Robert Olsson19baf832005-06-21 12:43:18 -0700623 /* At least one of the children is empty */
624 if (left == NULL) {
625 if (right == NULL) /* Both are empty */
626 continue;
Lin Ming61648d92012-07-29 02:00:03 +0000627 put_child(tn, i/2, right);
Olof Johansson91b9a272005-08-09 20:24:39 -0700628 continue;
Stephen Hemminger0c7770c2005-08-23 21:59:41 -0700629 }
Olof Johansson91b9a272005-08-09 20:24:39 -0700630
631 if (right == NULL) {
Lin Ming61648d92012-07-29 02:00:03 +0000632 put_child(tn, i/2, left);
Olof Johansson91b9a272005-08-09 20:24:39 -0700633 continue;
634 }
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700635
Robert Olsson19baf832005-06-21 12:43:18 -0700636 /* Two nonempty children */
Alexander Duyckadaf9812014-12-31 10:55:47 -0800637 newBinNode = tnode_get_child(tn, i/2);
Lin Ming61648d92012-07-29 02:00:03 +0000638 put_child(tn, i/2, NULL);
639 put_child(newBinNode, 0, left);
640 put_child(newBinNode, 1, right);
641 put_child(tn, i/2, resize(t, newBinNode));
Robert Olsson19baf832005-06-21 12:43:18 -0700642 }
Jarek Poplawskie0f7cb82009-06-15 02:31:29 -0700643 tnode_free_safe(oldtnode);
Robert Olsson19baf832005-06-21 12:43:18 -0700644 return tn;
Robert Olsson2f80b3c2005-08-09 20:25:06 -0700645nomem:
Eric Dumazet0a5c0472011-03-31 01:51:35 -0700646 tnode_clean_free(tn);
647 return ERR_PTR(-ENOMEM);
Robert Olsson19baf832005-06-21 12:43:18 -0700648}
649
Alexander Duyckcf3637b2014-12-31 10:56:31 -0800650#define MAX_WORK 10
651static struct tnode *resize(struct trie *t, struct tnode *tn)
652{
653 struct tnode *old_tn, *n = NULL;
654 int inflate_threshold_use;
655 int halve_threshold_use;
656 int max_work;
657
658 if (!tn)
659 return NULL;
660
661 pr_debug("In tnode_resize %p inflate_threshold=%d threshold=%d\n",
662 tn, inflate_threshold, halve_threshold);
663
664 /* No children */
665 if (tn->empty_children > (tnode_child_length(tn) - 1))
666 goto no_children;
667
668 /* One child */
669 if (tn->empty_children == (tnode_child_length(tn) - 1))
670 goto one_child;
671 /*
672 * Double as long as the resulting node has a number of
673 * nonempty nodes that are above the threshold.
674 */
675
676 /*
677 * From "Implementing a dynamic compressed trie" by Stefan Nilsson of
678 * the Helsinki University of Technology and Matti Tikkanen of Nokia
679 * Telecommunications, page 6:
680 * "A node is doubled if the ratio of non-empty children to all
681 * children in the *doubled* node is at least 'high'."
682 *
683 * 'high' in this instance is the variable 'inflate_threshold'. It
684 * is expressed as a percentage, so we multiply it with
685 * tnode_child_length() and instead of multiplying by 2 (since the
686 * child array will be doubled by inflate()) and multiplying
687 * the left-hand side by 100 (to handle the percentage thing) we
688 * multiply the left-hand side by 50.
689 *
690 * The left-hand side may look a bit weird: tnode_child_length(tn)
691 * - tn->empty_children is of course the number of non-null children
692 * in the current node. tn->full_children is the number of "full"
693 * children, that is non-null tnodes with a skip value of 0.
694 * All of those will be doubled in the resulting inflated tnode, so
695 * we just count them one extra time here.
696 *
697 * A clearer way to write this would be:
698 *
699 * to_be_doubled = tn->full_children;
700 * not_to_be_doubled = tnode_child_length(tn) - tn->empty_children -
701 * tn->full_children;
702 *
703 * new_child_length = tnode_child_length(tn) * 2;
704 *
705 * new_fill_factor = 100 * (not_to_be_doubled + 2*to_be_doubled) /
706 * new_child_length;
707 * if (new_fill_factor >= inflate_threshold)
708 *
709 * ...and so on, tho it would mess up the while () loop.
710 *
711 * anyway,
712 * 100 * (not_to_be_doubled + 2*to_be_doubled) / new_child_length >=
713 * inflate_threshold
714 *
715 * avoid a division:
716 * 100 * (not_to_be_doubled + 2*to_be_doubled) >=
717 * inflate_threshold * new_child_length
718 *
719 * expand not_to_be_doubled and to_be_doubled, and shorten:
720 * 100 * (tnode_child_length(tn) - tn->empty_children +
721 * tn->full_children) >= inflate_threshold * new_child_length
722 *
723 * expand new_child_length:
724 * 100 * (tnode_child_length(tn) - tn->empty_children +
725 * tn->full_children) >=
726 * inflate_threshold * tnode_child_length(tn) * 2
727 *
728 * shorten again:
729 * 50 * (tn->full_children + tnode_child_length(tn) -
730 * tn->empty_children) >= inflate_threshold *
731 * tnode_child_length(tn)
732 *
733 */
734
735 /* Keep root node larger */
736
737 if (!node_parent(tn)) {
738 inflate_threshold_use = inflate_threshold_root;
739 halve_threshold_use = halve_threshold_root;
740 } else {
741 inflate_threshold_use = inflate_threshold;
742 halve_threshold_use = halve_threshold;
743 }
744
745 max_work = MAX_WORK;
746 while ((tn->full_children > 0 && max_work-- &&
747 50 * (tn->full_children + tnode_child_length(tn)
748 - tn->empty_children)
749 >= inflate_threshold_use * tnode_child_length(tn))) {
750
751 old_tn = tn;
752 tn = inflate(t, tn);
753
754 if (IS_ERR(tn)) {
755 tn = old_tn;
756#ifdef CONFIG_IP_FIB_TRIE_STATS
757 this_cpu_inc(t->stats->resize_node_skipped);
758#endif
759 break;
760 }
761 }
762
763 /* Return if at least one inflate is run */
764 if (max_work != MAX_WORK)
765 return tn;
766
767 /*
768 * Halve as long as the number of empty children in this
769 * node is above threshold.
770 */
771
772 max_work = MAX_WORK;
773 while (tn->bits > 1 && max_work-- &&
774 100 * (tnode_child_length(tn) - tn->empty_children) <
775 halve_threshold_use * tnode_child_length(tn)) {
776
777 old_tn = tn;
778 tn = halve(t, tn);
779 if (IS_ERR(tn)) {
780 tn = old_tn;
781#ifdef CONFIG_IP_FIB_TRIE_STATS
782 this_cpu_inc(t->stats->resize_node_skipped);
783#endif
784 break;
785 }
786 }
787
788
789 /* Only one child remains */
790 if (tn->empty_children == (tnode_child_length(tn) - 1)) {
791 unsigned long i;
792one_child:
793 for (i = tnode_child_length(tn); !n && i;)
794 n = tnode_get_child(tn, --i);
795no_children:
796 /* compress one level */
797 node_set_parent(n, NULL);
798 tnode_free_safe(tn);
799 return n;
800 }
801 return tn;
802}
803
Robert Olsson772cb712005-09-19 15:31:18 -0700804/* readside must use rcu_read_lock currently dump routines
Robert Olsson2373ce12005-08-25 13:01:29 -0700805 via get_fa_head and dump */
806
Alexander Duyckadaf9812014-12-31 10:55:47 -0800807static struct leaf_info *find_leaf_info(struct tnode *l, int plen)
Robert Olsson19baf832005-06-21 12:43:18 -0700808{
Robert Olsson772cb712005-09-19 15:31:18 -0700809 struct hlist_head *head = &l->list;
Robert Olsson19baf832005-06-21 12:43:18 -0700810 struct leaf_info *li;
811
Sasha Levinb67bfe02013-02-27 17:06:00 -0800812 hlist_for_each_entry_rcu(li, head, hlist)
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700813 if (li->plen == plen)
Robert Olsson19baf832005-06-21 12:43:18 -0700814 return li;
Olof Johansson91b9a272005-08-09 20:24:39 -0700815
Robert Olsson19baf832005-06-21 12:43:18 -0700816 return NULL;
817}
818
Alexander Duyckadaf9812014-12-31 10:55:47 -0800819static inline struct list_head *get_fa_head(struct tnode *l, int plen)
Robert Olsson19baf832005-06-21 12:43:18 -0700820{
Robert Olsson772cb712005-09-19 15:31:18 -0700821 struct leaf_info *li = find_leaf_info(l, plen);
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700822
Olof Johansson91b9a272005-08-09 20:24:39 -0700823 if (!li)
824 return NULL;
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700825
Olof Johansson91b9a272005-08-09 20:24:39 -0700826 return &li->falh;
Robert Olsson19baf832005-06-21 12:43:18 -0700827}
828
829static void insert_leaf_info(struct hlist_head *head, struct leaf_info *new)
830{
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900831 struct leaf_info *li = NULL, *last = NULL;
Robert Olsson19baf832005-06-21 12:43:18 -0700832
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900833 if (hlist_empty(head)) {
834 hlist_add_head_rcu(&new->hlist, head);
835 } else {
Sasha Levinb67bfe02013-02-27 17:06:00 -0800836 hlist_for_each_entry(li, head, hlist) {
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900837 if (new->plen > li->plen)
838 break;
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700839
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900840 last = li;
841 }
842 if (last)
Ken Helias1d023282014-08-06 16:09:16 -0700843 hlist_add_behind_rcu(&new->hlist, &last->hlist);
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900844 else
845 hlist_add_before_rcu(&new->hlist, &li->hlist);
846 }
Robert Olsson19baf832005-06-21 12:43:18 -0700847}
848
Robert Olsson2373ce12005-08-25 13:01:29 -0700849/* rcu_read_lock needs to be hold by caller from readside */
Alexander Duyckadaf9812014-12-31 10:55:47 -0800850static struct tnode *fib_find_node(struct trie *t, u32 key)
Robert Olsson19baf832005-06-21 12:43:18 -0700851{
Alexander Duyckadaf9812014-12-31 10:55:47 -0800852 struct tnode *n = rcu_dereference_rtnl(t->trie);
Robert Olsson19baf832005-06-21 12:43:18 -0700853
Alexander Duyck939afb02014-12-31 10:56:00 -0800854 while (n) {
855 unsigned long index = get_index(key, n);
856
857 /* This bit of code is a bit tricky but it combines multiple
858 * checks into a single check. The prefix consists of the
859 * prefix plus zeros for the bits in the cindex. The index
860 * is the difference between the key and this value. From
861 * this we can actually derive several pieces of data.
862 * if !(index >> bits)
863 * we know the value is cindex
864 * else
865 * we have a mismatch in skip bits and failed
866 */
867 if (index >> n->bits)
868 return NULL;
869
870 /* we have found a leaf. Prefixes have already been compared */
871 if (IS_LEAF(n))
Robert Olsson19baf832005-06-21 12:43:18 -0700872 break;
Alexander Duyck939afb02014-12-31 10:56:00 -0800873
874 n = rcu_dereference_rtnl(n->child[index]);
Robert Olsson19baf832005-06-21 12:43:18 -0700875 }
Robert Olsson19baf832005-06-21 12:43:18 -0700876
Alexander Duyck939afb02014-12-31 10:56:00 -0800877 return n;
Robert Olsson19baf832005-06-21 12:43:18 -0700878}
879
Jarek Poplawski7b855762009-06-18 00:28:51 -0700880static void trie_rebalance(struct trie *t, struct tnode *tn)
Robert Olsson19baf832005-06-21 12:43:18 -0700881{
Robert Olsson19baf832005-06-21 12:43:18 -0700882 int wasfull;
Robert Olsson3ed18d72009-05-21 15:20:59 -0700883 t_key cindex, key;
Stephen Hemminger06801912007-08-10 15:22:13 -0700884 struct tnode *tp;
Robert Olsson19baf832005-06-21 12:43:18 -0700885
Robert Olsson3ed18d72009-05-21 15:20:59 -0700886 key = tn->key;
887
Alexander Duyck64c9b6f2014-12-31 10:55:35 -0800888 while (tn != NULL && (tp = node_parent(tn)) != NULL) {
Alexander Duycke9b44012014-12-31 10:56:12 -0800889 cindex = get_index(key, tp);
Robert Olsson19baf832005-06-21 12:43:18 -0700890 wasfull = tnode_full(tp, tnode_get_child(tp, cindex));
Alexander Duyckadaf9812014-12-31 10:55:47 -0800891 tn = resize(t, tn);
Stephen Hemmingera07f5f52008-01-22 21:53:36 -0800892
Alexander Duyckadaf9812014-12-31 10:55:47 -0800893 tnode_put_child_reorg(tp, cindex, tn, wasfull);
Olof Johansson91b9a272005-08-09 20:24:39 -0700894
Alexander Duyck64c9b6f2014-12-31 10:55:35 -0800895 tp = node_parent(tn);
Jarek Poplawski008440e2009-06-30 12:47:19 -0700896 if (!tp)
Alexander Duyckadaf9812014-12-31 10:55:47 -0800897 rcu_assign_pointer(t->trie, tn);
Jarek Poplawski008440e2009-06-30 12:47:19 -0700898
Jarek Poplawskie0f7cb82009-06-15 02:31:29 -0700899 tnode_free_flush();
Stephen Hemminger06801912007-08-10 15:22:13 -0700900 if (!tp)
Robert Olsson19baf832005-06-21 12:43:18 -0700901 break;
Stephen Hemminger06801912007-08-10 15:22:13 -0700902 tn = tp;
Robert Olsson19baf832005-06-21 12:43:18 -0700903 }
Stephen Hemminger06801912007-08-10 15:22:13 -0700904
Robert Olsson19baf832005-06-21 12:43:18 -0700905 /* Handle last (top) tnode */
Jarek Poplawski7b855762009-06-18 00:28:51 -0700906 if (IS_TNODE(tn))
Alexander Duyckadaf9812014-12-31 10:55:47 -0800907 tn = resize(t, tn);
Robert Olsson19baf832005-06-21 12:43:18 -0700908
Alexander Duyckadaf9812014-12-31 10:55:47 -0800909 rcu_assign_pointer(t->trie, tn);
Jarek Poplawski7b855762009-06-18 00:28:51 -0700910 tnode_free_flush();
Robert Olsson19baf832005-06-21 12:43:18 -0700911}
912
Robert Olsson2373ce12005-08-25 13:01:29 -0700913/* only used from updater-side */
914
Stephen Hemmingerfea86ad2008-01-12 20:57:07 -0800915static struct list_head *fib_insert_node(struct trie *t, u32 key, int plen)
Robert Olsson19baf832005-06-21 12:43:18 -0700916{
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700917 struct list_head *fa_head = NULL;
Alexander Duyck836a0122014-12-31 10:56:06 -0800918 struct tnode *l, *n, *tp = NULL;
Robert Olsson19baf832005-06-21 12:43:18 -0700919 struct leaf_info *li;
Robert Olsson19baf832005-06-21 12:43:18 -0700920
Alexander Duyck836a0122014-12-31 10:56:06 -0800921 li = leaf_info_new(plen);
922 if (!li)
923 return NULL;
924 fa_head = &li->falh;
925
Eric Dumazet0a5c0472011-03-31 01:51:35 -0700926 n = rtnl_dereference(t->trie);
Robert Olsson19baf832005-06-21 12:43:18 -0700927
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700928 /* If we point to NULL, stop. Either the tree is empty and we should
929 * just put a new leaf in if, or we have reached an empty child slot,
Robert Olsson19baf832005-06-21 12:43:18 -0700930 * and we should just put our new leaf in that.
Robert Olsson19baf832005-06-21 12:43:18 -0700931 *
Alexander Duyck836a0122014-12-31 10:56:06 -0800932 * If we hit a node with a key that does't match then we should stop
933 * and create a new tnode to replace that node and insert ourselves
934 * and the other node into the new tnode.
Robert Olsson19baf832005-06-21 12:43:18 -0700935 */
Alexander Duyck836a0122014-12-31 10:56:06 -0800936 while (n) {
937 unsigned long index = get_index(key, n);
Robert Olsson19baf832005-06-21 12:43:18 -0700938
Alexander Duyck836a0122014-12-31 10:56:06 -0800939 /* This bit of code is a bit tricky but it combines multiple
940 * checks into a single check. The prefix consists of the
941 * prefix plus zeros for the "bits" in the prefix. The index
942 * is the difference between the key and this value. From
943 * this we can actually derive several pieces of data.
944 * if !(index >> bits)
945 * we know the value is child index
946 * else
947 * we have a mismatch in skip bits and failed
Robert Olsson19baf832005-06-21 12:43:18 -0700948 */
Alexander Duyck836a0122014-12-31 10:56:06 -0800949 if (index >> n->bits)
950 break;
Robert Olsson19baf832005-06-21 12:43:18 -0700951
Alexander Duyck836a0122014-12-31 10:56:06 -0800952 /* we have found a leaf. Prefixes have already been compared */
953 if (IS_LEAF(n)) {
954 /* Case 1: n is a leaf, and prefixes match*/
955 insert_leaf_info(&n->list, li);
956 return fa_head;
Robert Olsson19baf832005-06-21 12:43:18 -0700957 }
Robert Olsson19baf832005-06-21 12:43:18 -0700958
Alexander Duyck836a0122014-12-31 10:56:06 -0800959 tp = n;
960 n = rcu_dereference_rtnl(n->child[index]);
961 }
962
963 l = leaf_new(key);
964 if (!l) {
965 free_leaf_info(li);
966 return NULL;
967 }
968
969 insert_leaf_info(&l->list, li);
970
971 /* Case 2: n is a LEAF or a TNODE and the key doesn't match.
972 *
973 * Add a new tnode here
974 * first tnode need some special handling
975 * leaves us in position for handling as case 3
976 */
977 if (n) {
978 struct tnode *tn;
Alexander Duyck836a0122014-12-31 10:56:06 -0800979
Alexander Duycke9b44012014-12-31 10:56:12 -0800980 tn = tnode_new(key, __fls(key ^ n->key), 1);
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700981 if (!tn) {
Robert Olssonf835e472005-06-28 15:00:39 -0700982 free_leaf_info(li);
Alexander Duyck37fd30f2014-12-31 10:55:41 -0800983 node_free(l);
Stephen Hemmingerfea86ad2008-01-12 20:57:07 -0800984 return NULL;
Olof Johansson91b9a272005-08-09 20:24:39 -0700985 }
986
Alexander Duyck836a0122014-12-31 10:56:06 -0800987 /* initialize routes out of node */
988 NODE_INIT_PARENT(tn, tp);
989 put_child(tn, get_index(key, tn) ^ 1, n);
Robert Olsson19baf832005-06-21 12:43:18 -0700990
Alexander Duyck836a0122014-12-31 10:56:06 -0800991 /* start adding routes into the node */
992 put_child_root(tp, t, key, tn);
993 node_set_parent(n, tn);
Robert Olsson19baf832005-06-21 12:43:18 -0700994
Alexander Duyck836a0122014-12-31 10:56:06 -0800995 /* parent now has a NULL spot where the leaf can go */
Alexander Duycke962f302014-12-10 21:49:22 -0800996 tp = tn;
Robert Olsson19baf832005-06-21 12:43:18 -0700997 }
Olof Johansson91b9a272005-08-09 20:24:39 -0700998
Alexander Duyck836a0122014-12-31 10:56:06 -0800999 /* Case 3: n is NULL, and will just insert a new leaf */
1000 if (tp) {
1001 NODE_INIT_PARENT(l, tp);
1002 put_child(tp, get_index(key, tp), l);
1003 trie_rebalance(t, tp);
1004 } else {
1005 rcu_assign_pointer(t->trie, l);
1006 }
Olof Johansson91b9a272005-08-09 20:24:39 -07001007
Robert Olsson19baf832005-06-21 12:43:18 -07001008 return fa_head;
1009}
1010
Robert Olssond562f1f2007-03-26 14:22:22 -07001011/*
1012 * Caller must hold RTNL.
1013 */
Stephen Hemminger16c6cf82009-09-20 10:35:36 +00001014int fib_table_insert(struct fib_table *tb, struct fib_config *cfg)
Robert Olsson19baf832005-06-21 12:43:18 -07001015{
1016 struct trie *t = (struct trie *) tb->tb_data;
1017 struct fib_alias *fa, *new_fa;
Stephen Hemmingerc877efb2005-07-19 14:01:51 -07001018 struct list_head *fa_head = NULL;
Robert Olsson19baf832005-06-21 12:43:18 -07001019 struct fib_info *fi;
Thomas Graf4e902c52006-08-17 18:14:52 -07001020 int plen = cfg->fc_dst_len;
1021 u8 tos = cfg->fc_tos;
Robert Olsson19baf832005-06-21 12:43:18 -07001022 u32 key, mask;
1023 int err;
Alexander Duyckadaf9812014-12-31 10:55:47 -08001024 struct tnode *l;
Robert Olsson19baf832005-06-21 12:43:18 -07001025
1026 if (plen > 32)
1027 return -EINVAL;
1028
Thomas Graf4e902c52006-08-17 18:14:52 -07001029 key = ntohl(cfg->fc_dst);
Robert Olsson19baf832005-06-21 12:43:18 -07001030
Patrick McHardy2dfe55b2006-08-10 23:08:33 -07001031 pr_debug("Insert table=%u %08x/%d\n", tb->tb_id, key, plen);
Robert Olsson19baf832005-06-21 12:43:18 -07001032
Olof Johansson91b9a272005-08-09 20:24:39 -07001033 mask = ntohl(inet_make_mask(plen));
Robert Olsson19baf832005-06-21 12:43:18 -07001034
Stephen Hemmingerc877efb2005-07-19 14:01:51 -07001035 if (key & ~mask)
Robert Olsson19baf832005-06-21 12:43:18 -07001036 return -EINVAL;
1037
1038 key = key & mask;
1039
Thomas Graf4e902c52006-08-17 18:14:52 -07001040 fi = fib_create_info(cfg);
1041 if (IS_ERR(fi)) {
1042 err = PTR_ERR(fi);
Robert Olsson19baf832005-06-21 12:43:18 -07001043 goto err;
Thomas Graf4e902c52006-08-17 18:14:52 -07001044 }
Robert Olsson19baf832005-06-21 12:43:18 -07001045
1046 l = fib_find_node(t, key);
Stephen Hemmingerc877efb2005-07-19 14:01:51 -07001047 fa = NULL;
Robert Olsson19baf832005-06-21 12:43:18 -07001048
Stephen Hemmingerc877efb2005-07-19 14:01:51 -07001049 if (l) {
Robert Olsson19baf832005-06-21 12:43:18 -07001050 fa_head = get_fa_head(l, plen);
1051 fa = fib_find_alias(fa_head, tos, fi->fib_priority);
1052 }
1053
1054 /* Now fa, if non-NULL, points to the first fib alias
1055 * with the same keys [prefix,tos,priority], if such key already
1056 * exists or to the node before which we will insert new one.
1057 *
1058 * If fa is NULL, we will need to allocate a new one and
1059 * insert to the head of f.
1060 *
1061 * If f is NULL, no fib node matched the destination key
1062 * and we need to allocate a new one of those as well.
1063 */
1064
Julian Anastasov936f6f82008-01-28 21:18:06 -08001065 if (fa && fa->fa_tos == tos &&
1066 fa->fa_info->fib_priority == fi->fib_priority) {
1067 struct fib_alias *fa_first, *fa_match;
Robert Olsson19baf832005-06-21 12:43:18 -07001068
1069 err = -EEXIST;
Thomas Graf4e902c52006-08-17 18:14:52 -07001070 if (cfg->fc_nlflags & NLM_F_EXCL)
Robert Olsson19baf832005-06-21 12:43:18 -07001071 goto out;
1072
Julian Anastasov936f6f82008-01-28 21:18:06 -08001073 /* We have 2 goals:
1074 * 1. Find exact match for type, scope, fib_info to avoid
1075 * duplicate routes
1076 * 2. Find next 'fa' (or head), NLM_F_APPEND inserts before it
1077 */
1078 fa_match = NULL;
1079 fa_first = fa;
1080 fa = list_entry(fa->fa_list.prev, struct fib_alias, fa_list);
1081 list_for_each_entry_continue(fa, fa_head, fa_list) {
1082 if (fa->fa_tos != tos)
1083 break;
1084 if (fa->fa_info->fib_priority != fi->fib_priority)
1085 break;
1086 if (fa->fa_type == cfg->fc_type &&
Julian Anastasov936f6f82008-01-28 21:18:06 -08001087 fa->fa_info == fi) {
1088 fa_match = fa;
1089 break;
1090 }
1091 }
1092
Thomas Graf4e902c52006-08-17 18:14:52 -07001093 if (cfg->fc_nlflags & NLM_F_REPLACE) {
Robert Olsson19baf832005-06-21 12:43:18 -07001094 struct fib_info *fi_drop;
1095 u8 state;
1096
Julian Anastasov936f6f82008-01-28 21:18:06 -08001097 fa = fa_first;
1098 if (fa_match) {
1099 if (fa == fa_match)
1100 err = 0;
Joonwoo Park67250332008-01-18 03:45:18 -08001101 goto out;
Julian Anastasov936f6f82008-01-28 21:18:06 -08001102 }
Robert Olsson2373ce12005-08-25 13:01:29 -07001103 err = -ENOBUFS;
Christoph Lametere94b1762006-12-06 20:33:17 -08001104 new_fa = kmem_cache_alloc(fn_alias_kmem, GFP_KERNEL);
Robert Olsson2373ce12005-08-25 13:01:29 -07001105 if (new_fa == NULL)
1106 goto out;
Robert Olsson19baf832005-06-21 12:43:18 -07001107
1108 fi_drop = fa->fa_info;
Robert Olsson2373ce12005-08-25 13:01:29 -07001109 new_fa->fa_tos = fa->fa_tos;
1110 new_fa->fa_info = fi;
Thomas Graf4e902c52006-08-17 18:14:52 -07001111 new_fa->fa_type = cfg->fc_type;
Robert Olsson19baf832005-06-21 12:43:18 -07001112 state = fa->fa_state;
Julian Anastasov936f6f82008-01-28 21:18:06 -08001113 new_fa->fa_state = state & ~FA_S_ACCESSED;
Robert Olsson19baf832005-06-21 12:43:18 -07001114
Robert Olsson2373ce12005-08-25 13:01:29 -07001115 list_replace_rcu(&fa->fa_list, &new_fa->fa_list);
1116 alias_free_mem_rcu(fa);
Robert Olsson19baf832005-06-21 12:43:18 -07001117
1118 fib_release_info(fi_drop);
1119 if (state & FA_S_ACCESSED)
Nicolas Dichtel4ccfe6d2012-09-07 00:45:29 +00001120 rt_cache_flush(cfg->fc_nlinfo.nl_net);
Milan Kocianb8f55832007-05-23 14:55:06 -07001121 rtmsg_fib(RTM_NEWROUTE, htonl(key), new_fa, plen,
1122 tb->tb_id, &cfg->fc_nlinfo, NLM_F_REPLACE);
Robert Olsson19baf832005-06-21 12:43:18 -07001123
Olof Johansson91b9a272005-08-09 20:24:39 -07001124 goto succeeded;
Robert Olsson19baf832005-06-21 12:43:18 -07001125 }
1126 /* Error if we find a perfect match which
1127 * uses the same scope, type, and nexthop
1128 * information.
1129 */
Julian Anastasov936f6f82008-01-28 21:18:06 -08001130 if (fa_match)
1131 goto out;
Stephen Hemmingera07f5f52008-01-22 21:53:36 -08001132
Thomas Graf4e902c52006-08-17 18:14:52 -07001133 if (!(cfg->fc_nlflags & NLM_F_APPEND))
Julian Anastasov936f6f82008-01-28 21:18:06 -08001134 fa = fa_first;
Robert Olsson19baf832005-06-21 12:43:18 -07001135 }
1136 err = -ENOENT;
Thomas Graf4e902c52006-08-17 18:14:52 -07001137 if (!(cfg->fc_nlflags & NLM_F_CREATE))
Robert Olsson19baf832005-06-21 12:43:18 -07001138 goto out;
1139
1140 err = -ENOBUFS;
Christoph Lametere94b1762006-12-06 20:33:17 -08001141 new_fa = kmem_cache_alloc(fn_alias_kmem, GFP_KERNEL);
Robert Olsson19baf832005-06-21 12:43:18 -07001142 if (new_fa == NULL)
1143 goto out;
1144
1145 new_fa->fa_info = fi;
1146 new_fa->fa_tos = tos;
Thomas Graf4e902c52006-08-17 18:14:52 -07001147 new_fa->fa_type = cfg->fc_type;
Robert Olsson19baf832005-06-21 12:43:18 -07001148 new_fa->fa_state = 0;
Robert Olsson19baf832005-06-21 12:43:18 -07001149 /*
1150 * Insert new entry to the list.
1151 */
1152
Stephen Hemmingerc877efb2005-07-19 14:01:51 -07001153 if (!fa_head) {
Stephen Hemmingerfea86ad2008-01-12 20:57:07 -08001154 fa_head = fib_insert_node(t, key, plen);
1155 if (unlikely(!fa_head)) {
1156 err = -ENOMEM;
Robert Olssonf835e472005-06-28 15:00:39 -07001157 goto out_free_new_fa;
Stephen Hemmingerfea86ad2008-01-12 20:57:07 -08001158 }
Robert Olssonf835e472005-06-28 15:00:39 -07001159 }
Robert Olsson19baf832005-06-21 12:43:18 -07001160
David S. Miller21d8c492011-04-14 14:49:37 -07001161 if (!plen)
1162 tb->tb_num_default++;
1163
Robert Olsson2373ce12005-08-25 13:01:29 -07001164 list_add_tail_rcu(&new_fa->fa_list,
1165 (fa ? &fa->fa_list : fa_head));
Robert Olsson19baf832005-06-21 12:43:18 -07001166
Nicolas Dichtel4ccfe6d2012-09-07 00:45:29 +00001167 rt_cache_flush(cfg->fc_nlinfo.nl_net);
Thomas Graf4e902c52006-08-17 18:14:52 -07001168 rtmsg_fib(RTM_NEWROUTE, htonl(key), new_fa, plen, tb->tb_id,
Milan Kocianb8f55832007-05-23 14:55:06 -07001169 &cfg->fc_nlinfo, 0);
Robert Olsson19baf832005-06-21 12:43:18 -07001170succeeded:
1171 return 0;
Robert Olssonf835e472005-06-28 15:00:39 -07001172
1173out_free_new_fa:
1174 kmem_cache_free(fn_alias_kmem, new_fa);
Robert Olsson19baf832005-06-21 12:43:18 -07001175out:
1176 fib_release_info(fi);
Olof Johansson91b9a272005-08-09 20:24:39 -07001177err:
Robert Olsson19baf832005-06-21 12:43:18 -07001178 return err;
1179}
1180
Alexander Duyck9f9e6362014-12-31 10:55:54 -08001181static inline t_key prefix_mismatch(t_key key, struct tnode *n)
1182{
1183 t_key prefix = n->key;
1184
1185 return (key ^ prefix) & (prefix | -prefix);
1186}
1187
Alexander Duyck345e9b52014-12-31 10:56:24 -08001188/* should be called with rcu_read_lock */
David S. Miller22bd5b92011-03-11 19:54:08 -05001189int fib_table_lookup(struct fib_table *tb, const struct flowi4 *flp,
Eric Dumazetebc0ffa2010-10-05 10:41:36 +00001190 struct fib_result *res, int fib_flags)
Robert Olsson19baf832005-06-21 12:43:18 -07001191{
Alexander Duyck9f9e6362014-12-31 10:55:54 -08001192 struct trie *t = (struct trie *)tb->tb_data;
Alexander Duyck8274a972014-12-31 10:55:29 -08001193#ifdef CONFIG_IP_FIB_TRIE_STATS
1194 struct trie_use_stats __percpu *stats = t->stats;
1195#endif
Alexander Duyck9f9e6362014-12-31 10:55:54 -08001196 const t_key key = ntohl(flp->daddr);
1197 struct tnode *n, *pn;
Alexander Duyck345e9b52014-12-31 10:56:24 -08001198 struct leaf_info *li;
Alexander Duyck9f9e6362014-12-31 10:55:54 -08001199 t_key cindex;
Robert Olsson19baf832005-06-21 12:43:18 -07001200
Robert Olsson2373ce12005-08-25 13:01:29 -07001201 n = rcu_dereference(t->trie);
Stephen Hemmingerc877efb2005-07-19 14:01:51 -07001202 if (!n)
Alexander Duyck345e9b52014-12-31 10:56:24 -08001203 return -EAGAIN;
Robert Olsson19baf832005-06-21 12:43:18 -07001204
1205#ifdef CONFIG_IP_FIB_TRIE_STATS
Alexander Duyck8274a972014-12-31 10:55:29 -08001206 this_cpu_inc(stats->gets);
Robert Olsson19baf832005-06-21 12:43:18 -07001207#endif
1208
Alexander Duyckadaf9812014-12-31 10:55:47 -08001209 pn = n;
Alexander Duyck9f9e6362014-12-31 10:55:54 -08001210 cindex = 0;
Stephen Hemmingerc877efb2005-07-19 14:01:51 -07001211
Alexander Duyck9f9e6362014-12-31 10:55:54 -08001212 /* Step 1: Travel to the longest prefix match in the trie */
1213 for (;;) {
1214 unsigned long index = get_index(key, n);
Robert Olsson19baf832005-06-21 12:43:18 -07001215
Alexander Duyck9f9e6362014-12-31 10:55:54 -08001216 /* This bit of code is a bit tricky but it combines multiple
1217 * checks into a single check. The prefix consists of the
1218 * prefix plus zeros for the "bits" in the prefix. The index
1219 * is the difference between the key and this value. From
1220 * this we can actually derive several pieces of data.
1221 * if !(index >> bits)
1222 * we know the value is child index
1223 * else
1224 * we have a mismatch in skip bits and failed
1225 */
1226 if (index >> n->bits)
1227 break;
Robert Olsson19baf832005-06-21 12:43:18 -07001228
Alexander Duyck9f9e6362014-12-31 10:55:54 -08001229 /* we have found a leaf. Prefixes have already been compared */
1230 if (IS_LEAF(n))
Stephen Hemmingera07f5f52008-01-22 21:53:36 -08001231 goto found;
Alexander Duyck9f9e6362014-12-31 10:55:54 -08001232
1233 /* only record pn and cindex if we are going to be chopping
1234 * bits later. Otherwise we are just wasting cycles.
1235 */
1236 if (index) {
1237 pn = n;
1238 cindex = index;
Olof Johansson91b9a272005-08-09 20:24:39 -07001239 }
1240
Alexander Duyck9f9e6362014-12-31 10:55:54 -08001241 n = rcu_dereference(n->child[index]);
1242 if (unlikely(!n))
Robert Olsson19baf832005-06-21 12:43:18 -07001243 goto backtrace;
Alexander Duyck9f9e6362014-12-31 10:55:54 -08001244 }
1245
1246 /* Step 2: Sort out leaves and begin backtracing for longest prefix */
1247 for (;;) {
1248 /* record the pointer where our next node pointer is stored */
1249 struct tnode __rcu **cptr = n->child;
1250
1251 /* This test verifies that none of the bits that differ
1252 * between the key and the prefix exist in the region of
1253 * the lsb and higher in the prefix.
1254 */
1255 if (unlikely(prefix_mismatch(key, n)))
1256 goto backtrace;
1257
1258 /* exit out and process leaf */
1259 if (unlikely(IS_LEAF(n)))
1260 break;
1261
1262 /* Don't bother recording parent info. Since we are in
1263 * prefix match mode we will have to come back to wherever
1264 * we started this traversal anyway
1265 */
1266
1267 while ((n = rcu_dereference(*cptr)) == NULL) {
1268backtrace:
1269#ifdef CONFIG_IP_FIB_TRIE_STATS
1270 if (!n)
1271 this_cpu_inc(stats->null_node_hit);
1272#endif
1273 /* If we are at cindex 0 there are no more bits for
1274 * us to strip at this level so we must ascend back
1275 * up one level to see if there are any more bits to
1276 * be stripped there.
1277 */
1278 while (!cindex) {
1279 t_key pkey = pn->key;
1280
1281 pn = node_parent_rcu(pn);
1282 if (unlikely(!pn))
Alexander Duyck345e9b52014-12-31 10:56:24 -08001283 return -EAGAIN;
Alexander Duyck9f9e6362014-12-31 10:55:54 -08001284#ifdef CONFIG_IP_FIB_TRIE_STATS
1285 this_cpu_inc(stats->backtrack);
1286#endif
1287 /* Get Child's index */
1288 cindex = get_index(pkey, pn);
1289 }
1290
1291 /* strip the least significant bit from the cindex */
1292 cindex &= cindex - 1;
1293
1294 /* grab pointer for next child node */
1295 cptr = &pn->child[cindex];
Stephen Hemmingerc877efb2005-07-19 14:01:51 -07001296 }
Robert Olsson19baf832005-06-21 12:43:18 -07001297 }
Alexander Duyck9f9e6362014-12-31 10:55:54 -08001298
Robert Olsson19baf832005-06-21 12:43:18 -07001299found:
Alexander Duyck9f9e6362014-12-31 10:55:54 -08001300 /* Step 3: Process the leaf, if that fails fall back to backtracing */
Alexander Duyck345e9b52014-12-31 10:56:24 -08001301 hlist_for_each_entry_rcu(li, &n->list, hlist) {
1302 struct fib_alias *fa;
1303
1304 if ((key ^ n->key) & li->mask_plen)
1305 continue;
1306
1307 list_for_each_entry_rcu(fa, &li->falh, fa_list) {
1308 struct fib_info *fi = fa->fa_info;
1309 int nhsel, err;
1310
1311 if (fa->fa_tos && fa->fa_tos != flp->flowi4_tos)
1312 continue;
1313 if (fi->fib_dead)
1314 continue;
1315 if (fa->fa_info->fib_scope < flp->flowi4_scope)
1316 continue;
1317 fib_alias_accessed(fa);
1318 err = fib_props[fa->fa_type].error;
1319 if (unlikely(err < 0)) {
1320#ifdef CONFIG_IP_FIB_TRIE_STATS
1321 this_cpu_inc(stats->semantic_match_passed);
1322#endif
1323 return err;
1324 }
1325 if (fi->fib_flags & RTNH_F_DEAD)
1326 continue;
1327 for (nhsel = 0; nhsel < fi->fib_nhs; nhsel++) {
1328 const struct fib_nh *nh = &fi->fib_nh[nhsel];
1329
1330 if (nh->nh_flags & RTNH_F_DEAD)
1331 continue;
1332 if (flp->flowi4_oif && flp->flowi4_oif != nh->nh_oif)
1333 continue;
1334
1335 if (!(fib_flags & FIB_LOOKUP_NOREF))
1336 atomic_inc(&fi->fib_clntref);
1337
1338 res->prefixlen = li->plen;
1339 res->nh_sel = nhsel;
1340 res->type = fa->fa_type;
1341 res->scope = fi->fib_scope;
1342 res->fi = fi;
1343 res->table = tb;
1344 res->fa_head = &li->falh;
1345#ifdef CONFIG_IP_FIB_TRIE_STATS
1346 this_cpu_inc(stats->semantic_match_passed);
1347#endif
1348 return err;
1349 }
1350 }
1351
1352#ifdef CONFIG_IP_FIB_TRIE_STATS
1353 this_cpu_inc(stats->semantic_match_miss);
1354#endif
1355 }
1356 goto backtrace;
Robert Olsson19baf832005-06-21 12:43:18 -07001357}
Florian Westphal6fc01432011-08-25 13:46:12 +02001358EXPORT_SYMBOL_GPL(fib_table_lookup);
Robert Olsson19baf832005-06-21 12:43:18 -07001359
Stephen Hemminger9195bef2008-01-22 21:56:34 -08001360/*
1361 * Remove the leaf and return parent.
1362 */
Alexander Duyckadaf9812014-12-31 10:55:47 -08001363static void trie_leaf_remove(struct trie *t, struct tnode *l)
Robert Olsson19baf832005-06-21 12:43:18 -07001364{
Alexander Duyck64c9b6f2014-12-31 10:55:35 -08001365 struct tnode *tp = node_parent(l);
Robert Olsson19baf832005-06-21 12:43:18 -07001366
Stephen Hemminger9195bef2008-01-22 21:56:34 -08001367 pr_debug("entering trie_leaf_remove(%p)\n", l);
Robert Olsson19baf832005-06-21 12:43:18 -07001368
Stephen Hemmingerc877efb2005-07-19 14:01:51 -07001369 if (tp) {
Alexander Duyck836a0122014-12-31 10:56:06 -08001370 put_child(tp, get_index(l->key, tp), NULL);
Jarek Poplawski7b855762009-06-18 00:28:51 -07001371 trie_rebalance(t, tp);
Alexander Duyck836a0122014-12-31 10:56:06 -08001372 } else {
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +00001373 RCU_INIT_POINTER(t->trie, NULL);
Alexander Duyck836a0122014-12-31 10:56:06 -08001374 }
Robert Olsson19baf832005-06-21 12:43:18 -07001375
Alexander Duyck37fd30f2014-12-31 10:55:41 -08001376 node_free(l);
Robert Olsson19baf832005-06-21 12:43:18 -07001377}
1378
Robert Olssond562f1f2007-03-26 14:22:22 -07001379/*
1380 * Caller must hold RTNL.
1381 */
Stephen Hemminger16c6cf82009-09-20 10:35:36 +00001382int fib_table_delete(struct fib_table *tb, struct fib_config *cfg)
Robert Olsson19baf832005-06-21 12:43:18 -07001383{
1384 struct trie *t = (struct trie *) tb->tb_data;
1385 u32 key, mask;
Thomas Graf4e902c52006-08-17 18:14:52 -07001386 int plen = cfg->fc_dst_len;
1387 u8 tos = cfg->fc_tos;
Robert Olsson19baf832005-06-21 12:43:18 -07001388 struct fib_alias *fa, *fa_to_delete;
1389 struct list_head *fa_head;
Alexander Duyckadaf9812014-12-31 10:55:47 -08001390 struct tnode *l;
Olof Johansson91b9a272005-08-09 20:24:39 -07001391 struct leaf_info *li;
1392
Stephen Hemmingerc877efb2005-07-19 14:01:51 -07001393 if (plen > 32)
Robert Olsson19baf832005-06-21 12:43:18 -07001394 return -EINVAL;
1395
Thomas Graf4e902c52006-08-17 18:14:52 -07001396 key = ntohl(cfg->fc_dst);
Olof Johansson91b9a272005-08-09 20:24:39 -07001397 mask = ntohl(inet_make_mask(plen));
Robert Olsson19baf832005-06-21 12:43:18 -07001398
Stephen Hemmingerc877efb2005-07-19 14:01:51 -07001399 if (key & ~mask)
Robert Olsson19baf832005-06-21 12:43:18 -07001400 return -EINVAL;
1401
1402 key = key & mask;
1403 l = fib_find_node(t, key);
1404
Stephen Hemmingerc877efb2005-07-19 14:01:51 -07001405 if (!l)
Robert Olsson19baf832005-06-21 12:43:18 -07001406 return -ESRCH;
1407
Igor Maravicad5b3102012-08-13 10:26:08 +02001408 li = find_leaf_info(l, plen);
1409
1410 if (!li)
1411 return -ESRCH;
1412
1413 fa_head = &li->falh;
Robert Olsson19baf832005-06-21 12:43:18 -07001414 fa = fib_find_alias(fa_head, tos, 0);
1415
1416 if (!fa)
1417 return -ESRCH;
1418
Stephen Hemminger0c7770c2005-08-23 21:59:41 -07001419 pr_debug("Deleting %08x/%d tos=%d t=%p\n", key, plen, tos, t);
Robert Olsson19baf832005-06-21 12:43:18 -07001420
1421 fa_to_delete = NULL;
Julian Anastasov936f6f82008-01-28 21:18:06 -08001422 fa = list_entry(fa->fa_list.prev, struct fib_alias, fa_list);
1423 list_for_each_entry_continue(fa, fa_head, fa_list) {
Robert Olsson19baf832005-06-21 12:43:18 -07001424 struct fib_info *fi = fa->fa_info;
1425
1426 if (fa->fa_tos != tos)
1427 break;
1428
Thomas Graf4e902c52006-08-17 18:14:52 -07001429 if ((!cfg->fc_type || fa->fa_type == cfg->fc_type) &&
1430 (cfg->fc_scope == RT_SCOPE_NOWHERE ||
David S. Miller37e826c2011-03-24 18:06:47 -07001431 fa->fa_info->fib_scope == cfg->fc_scope) &&
Julian Anastasov74cb3c12011-03-19 12:13:46 +00001432 (!cfg->fc_prefsrc ||
1433 fi->fib_prefsrc == cfg->fc_prefsrc) &&
Thomas Graf4e902c52006-08-17 18:14:52 -07001434 (!cfg->fc_protocol ||
1435 fi->fib_protocol == cfg->fc_protocol) &&
1436 fib_nh_match(cfg, fi) == 0) {
Robert Olsson19baf832005-06-21 12:43:18 -07001437 fa_to_delete = fa;
1438 break;
1439 }
1440 }
1441
Olof Johansson91b9a272005-08-09 20:24:39 -07001442 if (!fa_to_delete)
1443 return -ESRCH;
Robert Olsson19baf832005-06-21 12:43:18 -07001444
Olof Johansson91b9a272005-08-09 20:24:39 -07001445 fa = fa_to_delete;
Thomas Graf4e902c52006-08-17 18:14:52 -07001446 rtmsg_fib(RTM_DELROUTE, htonl(key), fa, plen, tb->tb_id,
Milan Kocianb8f55832007-05-23 14:55:06 -07001447 &cfg->fc_nlinfo, 0);
Robert Olsson19baf832005-06-21 12:43:18 -07001448
Robert Olsson2373ce12005-08-25 13:01:29 -07001449 list_del_rcu(&fa->fa_list);
Robert Olsson19baf832005-06-21 12:43:18 -07001450
David S. Miller21d8c492011-04-14 14:49:37 -07001451 if (!plen)
1452 tb->tb_num_default--;
1453
Olof Johansson91b9a272005-08-09 20:24:39 -07001454 if (list_empty(fa_head)) {
Robert Olsson2373ce12005-08-25 13:01:29 -07001455 hlist_del_rcu(&li->hlist);
Olof Johansson91b9a272005-08-09 20:24:39 -07001456 free_leaf_info(li);
Robert Olsson2373ce12005-08-25 13:01:29 -07001457 }
Olof Johansson91b9a272005-08-09 20:24:39 -07001458
1459 if (hlist_empty(&l->list))
Stephen Hemminger9195bef2008-01-22 21:56:34 -08001460 trie_leaf_remove(t, l);
Olof Johansson91b9a272005-08-09 20:24:39 -07001461
1462 if (fa->fa_state & FA_S_ACCESSED)
Nicolas Dichtel4ccfe6d2012-09-07 00:45:29 +00001463 rt_cache_flush(cfg->fc_nlinfo.nl_net);
Olof Johansson91b9a272005-08-09 20:24:39 -07001464
Robert Olsson2373ce12005-08-25 13:01:29 -07001465 fib_release_info(fa->fa_info);
1466 alias_free_mem_rcu(fa);
Olof Johansson91b9a272005-08-09 20:24:39 -07001467 return 0;
Robert Olsson19baf832005-06-21 12:43:18 -07001468}
1469
Stephen Hemmingeref3660c2008-04-10 03:46:12 -07001470static int trie_flush_list(struct list_head *head)
Robert Olsson19baf832005-06-21 12:43:18 -07001471{
1472 struct fib_alias *fa, *fa_node;
1473 int found = 0;
1474
1475 list_for_each_entry_safe(fa, fa_node, head, fa_list) {
1476 struct fib_info *fi = fa->fa_info;
Robert Olsson19baf832005-06-21 12:43:18 -07001477
Robert Olsson2373ce12005-08-25 13:01:29 -07001478 if (fi && (fi->fib_flags & RTNH_F_DEAD)) {
1479 list_del_rcu(&fa->fa_list);
1480 fib_release_info(fa->fa_info);
1481 alias_free_mem_rcu(fa);
Robert Olsson19baf832005-06-21 12:43:18 -07001482 found++;
1483 }
1484 }
1485 return found;
1486}
1487
Alexander Duyckadaf9812014-12-31 10:55:47 -08001488static int trie_flush_leaf(struct tnode *l)
Robert Olsson19baf832005-06-21 12:43:18 -07001489{
1490 int found = 0;
1491 struct hlist_head *lih = &l->list;
Sasha Levinb67bfe02013-02-27 17:06:00 -08001492 struct hlist_node *tmp;
Robert Olsson19baf832005-06-21 12:43:18 -07001493 struct leaf_info *li = NULL;
1494
Sasha Levinb67bfe02013-02-27 17:06:00 -08001495 hlist_for_each_entry_safe(li, tmp, lih, hlist) {
Stephen Hemmingeref3660c2008-04-10 03:46:12 -07001496 found += trie_flush_list(&li->falh);
Robert Olsson19baf832005-06-21 12:43:18 -07001497
1498 if (list_empty(&li->falh)) {
Robert Olsson2373ce12005-08-25 13:01:29 -07001499 hlist_del_rcu(&li->hlist);
Robert Olsson19baf832005-06-21 12:43:18 -07001500 free_leaf_info(li);
1501 }
1502 }
1503 return found;
1504}
1505
Stephen Hemminger82cfbb02008-01-22 21:55:32 -08001506/*
1507 * Scan for the next right leaf starting at node p->child[idx]
1508 * Since we have back pointer, no recursion necessary.
1509 */
Alexander Duyckadaf9812014-12-31 10:55:47 -08001510static struct tnode *leaf_walk_rcu(struct tnode *p, struct tnode *c)
Robert Olsson19baf832005-06-21 12:43:18 -07001511{
Stephen Hemminger82cfbb02008-01-22 21:55:32 -08001512 do {
Alexander Duyck98293e82014-12-31 10:56:18 -08001513 unsigned long idx = c ? idx = get_index(c->key, p) + 1 : 0;
Robert Olsson19baf832005-06-21 12:43:18 -07001514
Alexander Duyck98293e82014-12-31 10:56:18 -08001515 while (idx < tnode_child_length(p)) {
Stephen Hemminger82cfbb02008-01-22 21:55:32 -08001516 c = tnode_get_child_rcu(p, idx++);
Robert Olsson2373ce12005-08-25 13:01:29 -07001517 if (!c)
Olof Johansson91b9a272005-08-09 20:24:39 -07001518 continue;
Robert Olsson19baf832005-06-21 12:43:18 -07001519
Eric Dumazetaab515d2013-08-05 11:18:49 -07001520 if (IS_LEAF(c))
Alexander Duyckadaf9812014-12-31 10:55:47 -08001521 return c;
Stephen Hemminger82cfbb02008-01-22 21:55:32 -08001522
1523 /* Rescan start scanning in new node */
Alexander Duyckadaf9812014-12-31 10:55:47 -08001524 p = c;
Stephen Hemminger82cfbb02008-01-22 21:55:32 -08001525 idx = 0;
Robert Olsson19baf832005-06-21 12:43:18 -07001526 }
Stephen Hemminger82cfbb02008-01-22 21:55:32 -08001527
1528 /* Node empty, walk back up to parent */
Alexander Duyckadaf9812014-12-31 10:55:47 -08001529 c = p;
Eric Dumazeta034ee32010-09-09 23:32:28 +00001530 } while ((p = node_parent_rcu(c)) != NULL);
Stephen Hemminger82cfbb02008-01-22 21:55:32 -08001531
1532 return NULL; /* Root of trie */
1533}
1534
Alexander Duyckadaf9812014-12-31 10:55:47 -08001535static struct tnode *trie_firstleaf(struct trie *t)
Stephen Hemminger82cfbb02008-01-22 21:55:32 -08001536{
Alexander Duyckadaf9812014-12-31 10:55:47 -08001537 struct tnode *n = rcu_dereference_rtnl(t->trie);
Stephen Hemminger82cfbb02008-01-22 21:55:32 -08001538
1539 if (!n)
1540 return NULL;
1541
1542 if (IS_LEAF(n)) /* trie is just a leaf */
Alexander Duyckadaf9812014-12-31 10:55:47 -08001543 return n;
Stephen Hemminger82cfbb02008-01-22 21:55:32 -08001544
1545 return leaf_walk_rcu(n, NULL);
1546}
1547
Alexander Duyckadaf9812014-12-31 10:55:47 -08001548static struct tnode *trie_nextleaf(struct tnode *l)
Stephen Hemminger82cfbb02008-01-22 21:55:32 -08001549{
Alexander Duyckadaf9812014-12-31 10:55:47 -08001550 struct tnode *p = node_parent_rcu(l);
Stephen Hemminger82cfbb02008-01-22 21:55:32 -08001551
1552 if (!p)
1553 return NULL; /* trie with just one leaf */
1554
Alexander Duyckadaf9812014-12-31 10:55:47 -08001555 return leaf_walk_rcu(p, l);
Robert Olsson19baf832005-06-21 12:43:18 -07001556}
1557
Alexander Duyckadaf9812014-12-31 10:55:47 -08001558static struct tnode *trie_leafindex(struct trie *t, int index)
Stephen Hemminger71d67e62008-01-31 16:45:47 -08001559{
Alexander Duyckadaf9812014-12-31 10:55:47 -08001560 struct tnode *l = trie_firstleaf(t);
Stephen Hemminger71d67e62008-01-31 16:45:47 -08001561
Stephen Hemmingerec28cf72008-02-11 21:12:49 -08001562 while (l && index-- > 0)
Stephen Hemminger71d67e62008-01-31 16:45:47 -08001563 l = trie_nextleaf(l);
Stephen Hemmingerec28cf72008-02-11 21:12:49 -08001564
Stephen Hemminger71d67e62008-01-31 16:45:47 -08001565 return l;
1566}
1567
1568
Robert Olssond562f1f2007-03-26 14:22:22 -07001569/*
1570 * Caller must hold RTNL.
1571 */
Stephen Hemminger16c6cf82009-09-20 10:35:36 +00001572int fib_table_flush(struct fib_table *tb)
Robert Olsson19baf832005-06-21 12:43:18 -07001573{
1574 struct trie *t = (struct trie *) tb->tb_data;
Alexander Duyckadaf9812014-12-31 10:55:47 -08001575 struct tnode *l, *ll = NULL;
Stephen Hemminger82cfbb02008-01-22 21:55:32 -08001576 int found = 0;
Robert Olsson19baf832005-06-21 12:43:18 -07001577
Stephen Hemminger82cfbb02008-01-22 21:55:32 -08001578 for (l = trie_firstleaf(t); l; l = trie_nextleaf(l)) {
Stephen Hemmingeref3660c2008-04-10 03:46:12 -07001579 found += trie_flush_leaf(l);
Robert Olsson19baf832005-06-21 12:43:18 -07001580
1581 if (ll && hlist_empty(&ll->list))
Stephen Hemminger9195bef2008-01-22 21:56:34 -08001582 trie_leaf_remove(t, ll);
Robert Olsson19baf832005-06-21 12:43:18 -07001583 ll = l;
1584 }
1585
1586 if (ll && hlist_empty(&ll->list))
Stephen Hemminger9195bef2008-01-22 21:56:34 -08001587 trie_leaf_remove(t, ll);
Robert Olsson19baf832005-06-21 12:43:18 -07001588
Stephen Hemminger0c7770c2005-08-23 21:59:41 -07001589 pr_debug("trie_flush found=%d\n", found);
Robert Olsson19baf832005-06-21 12:43:18 -07001590 return found;
1591}
1592
Pavel Emelyanov4aa2c462010-10-28 02:00:43 +00001593void fib_free_table(struct fib_table *tb)
1594{
Alexander Duyck8274a972014-12-31 10:55:29 -08001595#ifdef CONFIG_IP_FIB_TRIE_STATS
1596 struct trie *t = (struct trie *)tb->tb_data;
1597
1598 free_percpu(t->stats);
1599#endif /* CONFIG_IP_FIB_TRIE_STATS */
Pavel Emelyanov4aa2c462010-10-28 02:00:43 +00001600 kfree(tb);
1601}
1602
Stephen Hemmingera07f5f52008-01-22 21:53:36 -08001603static int fn_trie_dump_fa(t_key key, int plen, struct list_head *fah,
1604 struct fib_table *tb,
Robert Olsson19baf832005-06-21 12:43:18 -07001605 struct sk_buff *skb, struct netlink_callback *cb)
1606{
1607 int i, s_i;
1608 struct fib_alias *fa;
Al Viro32ab5f82006-09-26 22:21:45 -07001609 __be32 xkey = htonl(key);
Robert Olsson19baf832005-06-21 12:43:18 -07001610
Stephen Hemminger71d67e62008-01-31 16:45:47 -08001611 s_i = cb->args[5];
Robert Olsson19baf832005-06-21 12:43:18 -07001612 i = 0;
1613
Robert Olsson2373ce12005-08-25 13:01:29 -07001614 /* rcu_read_lock is hold by caller */
1615
1616 list_for_each_entry_rcu(fa, fah, fa_list) {
Robert Olsson19baf832005-06-21 12:43:18 -07001617 if (i < s_i) {
1618 i++;
1619 continue;
1620 }
Robert Olsson19baf832005-06-21 12:43:18 -07001621
Eric W. Biederman15e47302012-09-07 20:12:54 +00001622 if (fib_dump_info(skb, NETLINK_CB(cb->skb).portid,
Robert Olsson19baf832005-06-21 12:43:18 -07001623 cb->nlh->nlmsg_seq,
1624 RTM_NEWROUTE,
1625 tb->tb_id,
1626 fa->fa_type,
Thomas Grafbe403ea2006-08-17 18:15:17 -07001627 xkey,
Robert Olsson19baf832005-06-21 12:43:18 -07001628 plen,
1629 fa->fa_tos,
Stephen Hemminger64347f72008-01-22 21:55:01 -08001630 fa->fa_info, NLM_F_MULTI) < 0) {
Stephen Hemminger71d67e62008-01-31 16:45:47 -08001631 cb->args[5] = i;
Robert Olsson19baf832005-06-21 12:43:18 -07001632 return -1;
Olof Johansson91b9a272005-08-09 20:24:39 -07001633 }
Robert Olsson19baf832005-06-21 12:43:18 -07001634 i++;
1635 }
Stephen Hemminger71d67e62008-01-31 16:45:47 -08001636 cb->args[5] = i;
Robert Olsson19baf832005-06-21 12:43:18 -07001637 return skb->len;
1638}
1639
Alexander Duyckadaf9812014-12-31 10:55:47 -08001640static int fn_trie_dump_leaf(struct tnode *l, struct fib_table *tb,
Stephen Hemmingera88ee222008-01-22 21:56:11 -08001641 struct sk_buff *skb, struct netlink_callback *cb)
Robert Olsson19baf832005-06-21 12:43:18 -07001642{
Stephen Hemmingera88ee222008-01-22 21:56:11 -08001643 struct leaf_info *li;
Stephen Hemmingera88ee222008-01-22 21:56:11 -08001644 int i, s_i;
Robert Olsson19baf832005-06-21 12:43:18 -07001645
Stephen Hemminger71d67e62008-01-31 16:45:47 -08001646 s_i = cb->args[4];
Stephen Hemmingera88ee222008-01-22 21:56:11 -08001647 i = 0;
Robert Olsson19baf832005-06-21 12:43:18 -07001648
Stephen Hemmingera88ee222008-01-22 21:56:11 -08001649 /* rcu_read_lock is hold by caller */
Sasha Levinb67bfe02013-02-27 17:06:00 -08001650 hlist_for_each_entry_rcu(li, &l->list, hlist) {
Stephen Hemmingera88ee222008-01-22 21:56:11 -08001651 if (i < s_i) {
1652 i++;
Robert Olsson19baf832005-06-21 12:43:18 -07001653 continue;
Stephen Hemmingera88ee222008-01-22 21:56:11 -08001654 }
Robert Olsson19baf832005-06-21 12:43:18 -07001655
Stephen Hemmingera88ee222008-01-22 21:56:11 -08001656 if (i > s_i)
Stephen Hemminger71d67e62008-01-31 16:45:47 -08001657 cb->args[5] = 0;
Olof Johansson91b9a272005-08-09 20:24:39 -07001658
Stephen Hemmingera88ee222008-01-22 21:56:11 -08001659 if (list_empty(&li->falh))
Robert Olsson19baf832005-06-21 12:43:18 -07001660 continue;
1661
Stephen Hemmingera88ee222008-01-22 21:56:11 -08001662 if (fn_trie_dump_fa(l->key, li->plen, &li->falh, tb, skb, cb) < 0) {
Stephen Hemminger71d67e62008-01-31 16:45:47 -08001663 cb->args[4] = i;
Robert Olsson19baf832005-06-21 12:43:18 -07001664 return -1;
1665 }
Stephen Hemmingera88ee222008-01-22 21:56:11 -08001666 i++;
Robert Olsson19baf832005-06-21 12:43:18 -07001667 }
Stephen Hemmingera88ee222008-01-22 21:56:11 -08001668
Stephen Hemminger71d67e62008-01-31 16:45:47 -08001669 cb->args[4] = i;
Robert Olsson19baf832005-06-21 12:43:18 -07001670 return skb->len;
1671}
1672
Stephen Hemminger16c6cf82009-09-20 10:35:36 +00001673int fib_table_dump(struct fib_table *tb, struct sk_buff *skb,
1674 struct netlink_callback *cb)
Robert Olsson19baf832005-06-21 12:43:18 -07001675{
Alexander Duyckadaf9812014-12-31 10:55:47 -08001676 struct tnode *l;
Robert Olsson19baf832005-06-21 12:43:18 -07001677 struct trie *t = (struct trie *) tb->tb_data;
Stephen Hemmingerd5ce8a02008-01-22 21:57:22 -08001678 t_key key = cb->args[2];
Stephen Hemminger71d67e62008-01-31 16:45:47 -08001679 int count = cb->args[3];
Robert Olsson19baf832005-06-21 12:43:18 -07001680
Robert Olsson2373ce12005-08-25 13:01:29 -07001681 rcu_read_lock();
Stephen Hemmingerd5ce8a02008-01-22 21:57:22 -08001682 /* Dump starting at last key.
1683 * Note: 0.0.0.0/0 (ie default) is first key.
1684 */
Stephen Hemminger71d67e62008-01-31 16:45:47 -08001685 if (count == 0)
Stephen Hemmingerd5ce8a02008-01-22 21:57:22 -08001686 l = trie_firstleaf(t);
1687 else {
Stephen Hemminger71d67e62008-01-31 16:45:47 -08001688 /* Normally, continue from last key, but if that is missing
1689 * fallback to using slow rescan
1690 */
Stephen Hemmingerd5ce8a02008-01-22 21:57:22 -08001691 l = fib_find_node(t, key);
Stephen Hemminger71d67e62008-01-31 16:45:47 -08001692 if (!l)
1693 l = trie_leafindex(t, count);
Stephen Hemmingerd5ce8a02008-01-22 21:57:22 -08001694 }
Stephen Hemmingera88ee222008-01-22 21:56:11 -08001695
Stephen Hemmingerd5ce8a02008-01-22 21:57:22 -08001696 while (l) {
1697 cb->args[2] = l->key;
Stephen Hemmingera88ee222008-01-22 21:56:11 -08001698 if (fn_trie_dump_leaf(l, tb, skb, cb) < 0) {
Stephen Hemminger71d67e62008-01-31 16:45:47 -08001699 cb->args[3] = count;
Stephen Hemmingera88ee222008-01-22 21:56:11 -08001700 rcu_read_unlock();
Stephen Hemmingera88ee222008-01-22 21:56:11 -08001701 return -1;
Robert Olsson19baf832005-06-21 12:43:18 -07001702 }
Stephen Hemmingerd5ce8a02008-01-22 21:57:22 -08001703
Stephen Hemminger71d67e62008-01-31 16:45:47 -08001704 ++count;
Stephen Hemmingerd5ce8a02008-01-22 21:57:22 -08001705 l = trie_nextleaf(l);
Stephen Hemminger71d67e62008-01-31 16:45:47 -08001706 memset(&cb->args[4], 0,
1707 sizeof(cb->args) - 4*sizeof(cb->args[0]));
Robert Olsson19baf832005-06-21 12:43:18 -07001708 }
Stephen Hemminger71d67e62008-01-31 16:45:47 -08001709 cb->args[3] = count;
Robert Olsson2373ce12005-08-25 13:01:29 -07001710 rcu_read_unlock();
Stephen Hemmingera88ee222008-01-22 21:56:11 -08001711
Robert Olsson19baf832005-06-21 12:43:18 -07001712 return skb->len;
Robert Olsson19baf832005-06-21 12:43:18 -07001713}
1714
David S. Miller5348ba82011-02-01 15:30:56 -08001715void __init fib_trie_init(void)
Stephen Hemminger7f9b8052008-01-14 23:14:20 -08001716{
Stephen Hemmingera07f5f52008-01-22 21:53:36 -08001717 fn_alias_kmem = kmem_cache_create("ip_fib_alias",
1718 sizeof(struct fib_alias),
Stephen Hemmingerbc3c8c12008-01-22 21:51:50 -08001719 0, SLAB_PANIC, NULL);
1720
1721 trie_leaf_kmem = kmem_cache_create("ip_fib_trie",
Alexander Duyckadaf9812014-12-31 10:55:47 -08001722 max(sizeof(struct tnode),
Stephen Hemmingerbc3c8c12008-01-22 21:51:50 -08001723 sizeof(struct leaf_info)),
1724 0, SLAB_PANIC, NULL);
Stephen Hemminger7f9b8052008-01-14 23:14:20 -08001725}
Robert Olsson19baf832005-06-21 12:43:18 -07001726
Stephen Hemminger7f9b8052008-01-14 23:14:20 -08001727
David S. Miller5348ba82011-02-01 15:30:56 -08001728struct fib_table *fib_trie_table(u32 id)
Robert Olsson19baf832005-06-21 12:43:18 -07001729{
1730 struct fib_table *tb;
1731 struct trie *t;
1732
Robert Olsson19baf832005-06-21 12:43:18 -07001733 tb = kmalloc(sizeof(struct fib_table) + sizeof(struct trie),
1734 GFP_KERNEL);
1735 if (tb == NULL)
1736 return NULL;
1737
1738 tb->tb_id = id;
Denis V. Lunev971b8932007-12-08 00:32:23 -08001739 tb->tb_default = -1;
David S. Miller21d8c492011-04-14 14:49:37 -07001740 tb->tb_num_default = 0;
Robert Olsson19baf832005-06-21 12:43:18 -07001741
1742 t = (struct trie *) tb->tb_data;
Alexander Duyck8274a972014-12-31 10:55:29 -08001743 RCU_INIT_POINTER(t->trie, NULL);
1744#ifdef CONFIG_IP_FIB_TRIE_STATS
1745 t->stats = alloc_percpu(struct trie_use_stats);
1746 if (!t->stats) {
1747 kfree(tb);
1748 tb = NULL;
1749 }
1750#endif
Robert Olsson19baf832005-06-21 12:43:18 -07001751
Robert Olsson19baf832005-06-21 12:43:18 -07001752 return tb;
1753}
1754
Robert Olsson19baf832005-06-21 12:43:18 -07001755#ifdef CONFIG_PROC_FS
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07001756/* Depth first Trie walk iterator */
1757struct fib_trie_iter {
Denis V. Lunev1c340b22008-01-10 03:27:17 -08001758 struct seq_net_private p;
Stephen Hemminger3d3b2d22008-03-23 22:43:56 -07001759 struct fib_table *tb;
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07001760 struct tnode *tnode;
Eric Dumazeta034ee32010-09-09 23:32:28 +00001761 unsigned int index;
1762 unsigned int depth;
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07001763};
Robert Olsson19baf832005-06-21 12:43:18 -07001764
Alexander Duyckadaf9812014-12-31 10:55:47 -08001765static struct tnode *fib_trie_get_next(struct fib_trie_iter *iter)
Robert Olsson19baf832005-06-21 12:43:18 -07001766{
Alexander Duyck98293e82014-12-31 10:56:18 -08001767 unsigned long cindex = iter->index;
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07001768 struct tnode *tn = iter->tnode;
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07001769 struct tnode *p;
1770
Eric W. Biederman6640e692007-01-24 14:42:04 -08001771 /* A single entry routing table */
1772 if (!tn)
1773 return NULL;
1774
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07001775 pr_debug("get_next iter={node=%p index=%d depth=%d}\n",
1776 iter->tnode, iter->index, iter->depth);
1777rescan:
Alexander Duyck98293e82014-12-31 10:56:18 -08001778 while (cindex < tnode_child_length(tn)) {
Alexander Duyckadaf9812014-12-31 10:55:47 -08001779 struct tnode *n = tnode_get_child_rcu(tn, cindex);
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07001780
1781 if (n) {
1782 if (IS_LEAF(n)) {
1783 iter->tnode = tn;
1784 iter->index = cindex + 1;
1785 } else {
1786 /* push down one level */
Alexander Duyckadaf9812014-12-31 10:55:47 -08001787 iter->tnode = n;
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07001788 iter->index = 0;
1789 ++iter->depth;
1790 }
1791 return n;
1792 }
1793
1794 ++cindex;
1795 }
1796
1797 /* Current node exhausted, pop back up */
Alexander Duyckadaf9812014-12-31 10:55:47 -08001798 p = node_parent_rcu(tn);
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07001799 if (p) {
Alexander Duycke9b44012014-12-31 10:56:12 -08001800 cindex = get_index(tn->key, p) + 1;
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07001801 tn = p;
1802 --iter->depth;
1803 goto rescan;
1804 }
1805
1806 /* got root? */
Robert Olsson19baf832005-06-21 12:43:18 -07001807 return NULL;
1808}
1809
Alexander Duyckadaf9812014-12-31 10:55:47 -08001810static struct tnode *fib_trie_get_first(struct fib_trie_iter *iter,
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07001811 struct trie *t)
Robert Olsson19baf832005-06-21 12:43:18 -07001812{
Alexander Duyckadaf9812014-12-31 10:55:47 -08001813 struct tnode *n;
Robert Olsson5ddf0eb2006-03-20 21:34:12 -08001814
Stephen Hemminger132adf52007-03-08 20:44:43 -08001815 if (!t)
Robert Olsson5ddf0eb2006-03-20 21:34:12 -08001816 return NULL;
1817
1818 n = rcu_dereference(t->trie);
Stephen Hemminger3d3b2d22008-03-23 22:43:56 -07001819 if (!n)
Robert Olsson5ddf0eb2006-03-20 21:34:12 -08001820 return NULL;
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07001821
Stephen Hemminger3d3b2d22008-03-23 22:43:56 -07001822 if (IS_TNODE(n)) {
Alexander Duyckadaf9812014-12-31 10:55:47 -08001823 iter->tnode = n;
Stephen Hemminger3d3b2d22008-03-23 22:43:56 -07001824 iter->index = 0;
1825 iter->depth = 1;
1826 } else {
1827 iter->tnode = NULL;
1828 iter->index = 0;
1829 iter->depth = 0;
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07001830 }
Stephen Hemminger3d3b2d22008-03-23 22:43:56 -07001831
1832 return n;
Robert Olsson19baf832005-06-21 12:43:18 -07001833}
1834
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07001835static void trie_collect_stats(struct trie *t, struct trie_stat *s)
Robert Olsson19baf832005-06-21 12:43:18 -07001836{
Alexander Duyckadaf9812014-12-31 10:55:47 -08001837 struct tnode *n;
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07001838 struct fib_trie_iter iter;
Robert Olsson19baf832005-06-21 12:43:18 -07001839
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07001840 memset(s, 0, sizeof(*s));
Robert Olsson19baf832005-06-21 12:43:18 -07001841
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07001842 rcu_read_lock();
Stephen Hemminger3d3b2d22008-03-23 22:43:56 -07001843 for (n = fib_trie_get_first(&iter, t); n; n = fib_trie_get_next(&iter)) {
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07001844 if (IS_LEAF(n)) {
Stephen Hemminger93672292008-01-22 21:54:05 -08001845 struct leaf_info *li;
Stephen Hemminger93672292008-01-22 21:54:05 -08001846
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07001847 s->leaves++;
1848 s->totdepth += iter.depth;
1849 if (iter.depth > s->maxdepth)
1850 s->maxdepth = iter.depth;
Stephen Hemminger93672292008-01-22 21:54:05 -08001851
Alexander Duyckadaf9812014-12-31 10:55:47 -08001852 hlist_for_each_entry_rcu(li, &n->list, hlist)
Stephen Hemminger93672292008-01-22 21:54:05 -08001853 ++s->prefixes;
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07001854 } else {
Alexander Duyck98293e82014-12-31 10:56:18 -08001855 unsigned long i;
Robert Olsson19baf832005-06-21 12:43:18 -07001856
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07001857 s->tnodes++;
Alexander Duyckadaf9812014-12-31 10:55:47 -08001858 if (n->bits < MAX_STAT_DEPTH)
1859 s->nodesizes[n->bits]++;
Robert Olsson06ef9212006-03-20 21:35:01 -08001860
Alexander Duyck98293e82014-12-31 10:56:18 -08001861 for (i = 0; i < tnode_child_length(n); i++) {
Alexander Duyckadaf9812014-12-31 10:55:47 -08001862 if (!rcu_access_pointer(n->child[i]))
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07001863 s->nullpointers++;
Alexander Duyck98293e82014-12-31 10:56:18 -08001864 }
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07001865 }
1866 }
1867 rcu_read_unlock();
Robert Olsson19baf832005-06-21 12:43:18 -07001868}
1869
Stephen Hemmingerc877efb2005-07-19 14:01:51 -07001870/*
Robert Olsson19baf832005-06-21 12:43:18 -07001871 * This outputs /proc/net/fib_triestats
Robert Olsson19baf832005-06-21 12:43:18 -07001872 */
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07001873static void trie_show_stats(struct seq_file *seq, struct trie_stat *stat)
Robert Olsson19baf832005-06-21 12:43:18 -07001874{
Eric Dumazeta034ee32010-09-09 23:32:28 +00001875 unsigned int i, max, pointers, bytes, avdepth;
Robert Olsson19baf832005-06-21 12:43:18 -07001876
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07001877 if (stat->leaves)
1878 avdepth = stat->totdepth*100 / stat->leaves;
1879 else
1880 avdepth = 0;
Robert Olsson19baf832005-06-21 12:43:18 -07001881
Stephen Hemmingera07f5f52008-01-22 21:53:36 -08001882 seq_printf(seq, "\tAver depth: %u.%02d\n",
1883 avdepth / 100, avdepth % 100);
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07001884 seq_printf(seq, "\tMax depth: %u\n", stat->maxdepth);
Robert Olsson19baf832005-06-21 12:43:18 -07001885
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07001886 seq_printf(seq, "\tLeaves: %u\n", stat->leaves);
Alexander Duyckadaf9812014-12-31 10:55:47 -08001887 bytes = sizeof(struct tnode) * stat->leaves;
Stephen Hemminger93672292008-01-22 21:54:05 -08001888
1889 seq_printf(seq, "\tPrefixes: %u\n", stat->prefixes);
1890 bytes += sizeof(struct leaf_info) * stat->prefixes;
1891
Stephen Hemminger187b5182008-01-12 20:55:55 -08001892 seq_printf(seq, "\tInternal nodes: %u\n\t", stat->tnodes);
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07001893 bytes += sizeof(struct tnode) * stat->tnodes;
Robert Olsson19baf832005-06-21 12:43:18 -07001894
Robert Olsson06ef9212006-03-20 21:35:01 -08001895 max = MAX_STAT_DEPTH;
1896 while (max > 0 && stat->nodesizes[max-1] == 0)
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07001897 max--;
Robert Olsson19baf832005-06-21 12:43:18 -07001898
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07001899 pointers = 0;
Jerry Snitselaarf585a992013-07-22 12:01:58 -07001900 for (i = 1; i < max; i++)
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07001901 if (stat->nodesizes[i] != 0) {
Stephen Hemminger187b5182008-01-12 20:55:55 -08001902 seq_printf(seq, " %u: %u", i, stat->nodesizes[i]);
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07001903 pointers += (1<<i) * stat->nodesizes[i];
1904 }
1905 seq_putc(seq, '\n');
Stephen Hemminger187b5182008-01-12 20:55:55 -08001906 seq_printf(seq, "\tPointers: %u\n", pointers);
Robert Olsson19baf832005-06-21 12:43:18 -07001907
Alexander Duyckadaf9812014-12-31 10:55:47 -08001908 bytes += sizeof(struct tnode *) * pointers;
Stephen Hemminger187b5182008-01-12 20:55:55 -08001909 seq_printf(seq, "Null ptrs: %u\n", stat->nullpointers);
1910 seq_printf(seq, "Total size: %u kB\n", (bytes + 1023) / 1024);
Stephen Hemminger66a2f7f2008-01-12 21:23:17 -08001911}
Robert Olsson19baf832005-06-21 12:43:18 -07001912
1913#ifdef CONFIG_IP_FIB_TRIE_STATS
Stephen Hemminger66a2f7f2008-01-12 21:23:17 -08001914static void trie_show_usage(struct seq_file *seq,
Alexander Duyck8274a972014-12-31 10:55:29 -08001915 const struct trie_use_stats __percpu *stats)
Stephen Hemminger66a2f7f2008-01-12 21:23:17 -08001916{
Alexander Duyck8274a972014-12-31 10:55:29 -08001917 struct trie_use_stats s = { 0 };
1918 int cpu;
1919
1920 /* loop through all of the CPUs and gather up the stats */
1921 for_each_possible_cpu(cpu) {
1922 const struct trie_use_stats *pcpu = per_cpu_ptr(stats, cpu);
1923
1924 s.gets += pcpu->gets;
1925 s.backtrack += pcpu->backtrack;
1926 s.semantic_match_passed += pcpu->semantic_match_passed;
1927 s.semantic_match_miss += pcpu->semantic_match_miss;
1928 s.null_node_hit += pcpu->null_node_hit;
1929 s.resize_node_skipped += pcpu->resize_node_skipped;
1930 }
1931
Stephen Hemminger66a2f7f2008-01-12 21:23:17 -08001932 seq_printf(seq, "\nCounters:\n---------\n");
Alexander Duyck8274a972014-12-31 10:55:29 -08001933 seq_printf(seq, "gets = %u\n", s.gets);
1934 seq_printf(seq, "backtracks = %u\n", s.backtrack);
Stephen Hemmingera07f5f52008-01-22 21:53:36 -08001935 seq_printf(seq, "semantic match passed = %u\n",
Alexander Duyck8274a972014-12-31 10:55:29 -08001936 s.semantic_match_passed);
1937 seq_printf(seq, "semantic match miss = %u\n", s.semantic_match_miss);
1938 seq_printf(seq, "null node hit= %u\n", s.null_node_hit);
1939 seq_printf(seq, "skipped node resize = %u\n\n", s.resize_node_skipped);
Robert Olsson19baf832005-06-21 12:43:18 -07001940}
Stephen Hemminger66a2f7f2008-01-12 21:23:17 -08001941#endif /* CONFIG_IP_FIB_TRIE_STATS */
1942
Stephen Hemminger3d3b2d22008-03-23 22:43:56 -07001943static void fib_table_print(struct seq_file *seq, struct fib_table *tb)
Stephen Hemmingerd717a9a2008-01-14 23:11:54 -08001944{
Stephen Hemminger3d3b2d22008-03-23 22:43:56 -07001945 if (tb->tb_id == RT_TABLE_LOCAL)
1946 seq_puts(seq, "Local:\n");
1947 else if (tb->tb_id == RT_TABLE_MAIN)
1948 seq_puts(seq, "Main:\n");
1949 else
1950 seq_printf(seq, "Id %d:\n", tb->tb_id);
Stephen Hemmingerd717a9a2008-01-14 23:11:54 -08001951}
Robert Olsson19baf832005-06-21 12:43:18 -07001952
Stephen Hemminger3d3b2d22008-03-23 22:43:56 -07001953
Robert Olsson19baf832005-06-21 12:43:18 -07001954static int fib_triestat_seq_show(struct seq_file *seq, void *v)
1955{
Denis V. Lunev1c340b22008-01-10 03:27:17 -08001956 struct net *net = (struct net *)seq->private;
Stephen Hemminger3d3b2d22008-03-23 22:43:56 -07001957 unsigned int h;
Eric W. Biederman877a9bf2007-12-07 00:47:47 -08001958
Stephen Hemmingerd717a9a2008-01-14 23:11:54 -08001959 seq_printf(seq,
Stephen Hemmingera07f5f52008-01-22 21:53:36 -08001960 "Basic info: size of leaf:"
1961 " %Zd bytes, size of tnode: %Zd bytes.\n",
Alexander Duyckadaf9812014-12-31 10:55:47 -08001962 sizeof(struct tnode), sizeof(struct tnode));
Olof Johansson91b9a272005-08-09 20:24:39 -07001963
Stephen Hemminger3d3b2d22008-03-23 22:43:56 -07001964 for (h = 0; h < FIB_TABLE_HASHSZ; h++) {
1965 struct hlist_head *head = &net->ipv4.fib_table_hash[h];
Stephen Hemminger3d3b2d22008-03-23 22:43:56 -07001966 struct fib_table *tb;
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07001967
Sasha Levinb67bfe02013-02-27 17:06:00 -08001968 hlist_for_each_entry_rcu(tb, head, tb_hlist) {
Stephen Hemminger3d3b2d22008-03-23 22:43:56 -07001969 struct trie *t = (struct trie *) tb->tb_data;
1970 struct trie_stat stat;
1971
1972 if (!t)
1973 continue;
1974
1975 fib_table_print(seq, tb);
1976
1977 trie_collect_stats(t, &stat);
1978 trie_show_stats(seq, &stat);
1979#ifdef CONFIG_IP_FIB_TRIE_STATS
Alexander Duyck8274a972014-12-31 10:55:29 -08001980 trie_show_usage(seq, t->stats);
Stephen Hemminger3d3b2d22008-03-23 22:43:56 -07001981#endif
1982 }
1983 }
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07001984
Robert Olsson19baf832005-06-21 12:43:18 -07001985 return 0;
1986}
1987
Robert Olsson19baf832005-06-21 12:43:18 -07001988static int fib_triestat_seq_open(struct inode *inode, struct file *file)
1989{
Pavel Emelyanovde05c552008-07-18 04:07:21 -07001990 return single_open_net(inode, file, fib_triestat_seq_show);
Denis V. Lunev1c340b22008-01-10 03:27:17 -08001991}
1992
Arjan van de Ven9a321442007-02-12 00:55:35 -08001993static const struct file_operations fib_triestat_fops = {
Stephen Hemmingerc877efb2005-07-19 14:01:51 -07001994 .owner = THIS_MODULE,
1995 .open = fib_triestat_seq_open,
1996 .read = seq_read,
1997 .llseek = seq_lseek,
Pavel Emelyanovb6fcbdb2008-07-18 04:07:44 -07001998 .release = single_release_net,
Robert Olsson19baf832005-06-21 12:43:18 -07001999};
2000
Alexander Duyckadaf9812014-12-31 10:55:47 -08002001static struct tnode *fib_trie_get_idx(struct seq_file *seq, loff_t pos)
Robert Olsson19baf832005-06-21 12:43:18 -07002002{
YOSHIFUJI Hideaki12188542008-03-26 02:36:06 +09002003 struct fib_trie_iter *iter = seq->private;
2004 struct net *net = seq_file_net(seq);
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002005 loff_t idx = 0;
Stephen Hemminger3d3b2d22008-03-23 22:43:56 -07002006 unsigned int h;
Robert Olsson19baf832005-06-21 12:43:18 -07002007
Stephen Hemminger3d3b2d22008-03-23 22:43:56 -07002008 for (h = 0; h < FIB_TABLE_HASHSZ; h++) {
2009 struct hlist_head *head = &net->ipv4.fib_table_hash[h];
Stephen Hemminger3d3b2d22008-03-23 22:43:56 -07002010 struct fib_table *tb;
2011
Sasha Levinb67bfe02013-02-27 17:06:00 -08002012 hlist_for_each_entry_rcu(tb, head, tb_hlist) {
Alexander Duyckadaf9812014-12-31 10:55:47 -08002013 struct tnode *n;
Stephen Hemminger3d3b2d22008-03-23 22:43:56 -07002014
2015 for (n = fib_trie_get_first(iter,
2016 (struct trie *) tb->tb_data);
2017 n; n = fib_trie_get_next(iter))
2018 if (pos == idx++) {
2019 iter->tb = tb;
2020 return n;
2021 }
2022 }
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002023 }
Robert Olsson19baf832005-06-21 12:43:18 -07002024
Robert Olsson19baf832005-06-21 12:43:18 -07002025 return NULL;
2026}
2027
2028static void *fib_trie_seq_start(struct seq_file *seq, loff_t *pos)
Stephen Hemmingerc95aaf92008-01-12 21:25:02 -08002029 __acquires(RCU)
Robert Olsson19baf832005-06-21 12:43:18 -07002030{
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002031 rcu_read_lock();
YOSHIFUJI Hideaki12188542008-03-26 02:36:06 +09002032 return fib_trie_get_idx(seq, *pos);
Robert Olsson19baf832005-06-21 12:43:18 -07002033}
2034
2035static void *fib_trie_seq_next(struct seq_file *seq, void *v, loff_t *pos)
2036{
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002037 struct fib_trie_iter *iter = seq->private;
YOSHIFUJI Hideaki12188542008-03-26 02:36:06 +09002038 struct net *net = seq_file_net(seq);
Stephen Hemminger3d3b2d22008-03-23 22:43:56 -07002039 struct fib_table *tb = iter->tb;
2040 struct hlist_node *tb_node;
2041 unsigned int h;
Alexander Duyckadaf9812014-12-31 10:55:47 -08002042 struct tnode *n;
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002043
Robert Olsson19baf832005-06-21 12:43:18 -07002044 ++*pos;
Stephen Hemminger3d3b2d22008-03-23 22:43:56 -07002045 /* next node in same table */
2046 n = fib_trie_get_next(iter);
2047 if (n)
2048 return n;
Olof Johansson91b9a272005-08-09 20:24:39 -07002049
Stephen Hemminger3d3b2d22008-03-23 22:43:56 -07002050 /* walk rest of this hash chain */
2051 h = tb->tb_id & (FIB_TABLE_HASHSZ - 1);
Eric Dumazet0a5c0472011-03-31 01:51:35 -07002052 while ((tb_node = rcu_dereference(hlist_next_rcu(&tb->tb_hlist)))) {
Stephen Hemminger3d3b2d22008-03-23 22:43:56 -07002053 tb = hlist_entry(tb_node, struct fib_table, tb_hlist);
2054 n = fib_trie_get_first(iter, (struct trie *) tb->tb_data);
2055 if (n)
2056 goto found;
2057 }
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002058
Stephen Hemminger3d3b2d22008-03-23 22:43:56 -07002059 /* new hash chain */
2060 while (++h < FIB_TABLE_HASHSZ) {
2061 struct hlist_head *head = &net->ipv4.fib_table_hash[h];
Sasha Levinb67bfe02013-02-27 17:06:00 -08002062 hlist_for_each_entry_rcu(tb, head, tb_hlist) {
Stephen Hemminger3d3b2d22008-03-23 22:43:56 -07002063 n = fib_trie_get_first(iter, (struct trie *) tb->tb_data);
2064 if (n)
2065 goto found;
2066 }
2067 }
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002068 return NULL;
Stephen Hemminger3d3b2d22008-03-23 22:43:56 -07002069
2070found:
2071 iter->tb = tb;
2072 return n;
Robert Olsson19baf832005-06-21 12:43:18 -07002073}
2074
2075static void fib_trie_seq_stop(struct seq_file *seq, void *v)
Stephen Hemmingerc95aaf92008-01-12 21:25:02 -08002076 __releases(RCU)
Robert Olsson19baf832005-06-21 12:43:18 -07002077{
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002078 rcu_read_unlock();
Robert Olsson19baf832005-06-21 12:43:18 -07002079}
2080
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002081static void seq_indent(struct seq_file *seq, int n)
2082{
Eric Dumazeta034ee32010-09-09 23:32:28 +00002083 while (n-- > 0)
2084 seq_puts(seq, " ");
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002085}
Robert Olsson19baf832005-06-21 12:43:18 -07002086
Eric Dumazet28d36e32008-01-14 23:09:56 -08002087static inline const char *rtn_scope(char *buf, size_t len, enum rt_scope_t s)
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002088{
Stephen Hemminger132adf52007-03-08 20:44:43 -08002089 switch (s) {
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002090 case RT_SCOPE_UNIVERSE: return "universe";
2091 case RT_SCOPE_SITE: return "site";
2092 case RT_SCOPE_LINK: return "link";
2093 case RT_SCOPE_HOST: return "host";
2094 case RT_SCOPE_NOWHERE: return "nowhere";
2095 default:
Eric Dumazet28d36e32008-01-14 23:09:56 -08002096 snprintf(buf, len, "scope=%d", s);
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002097 return buf;
2098 }
2099}
2100
Jan Engelhardt36cbd3d2009-08-05 10:42:58 -07002101static const char *const rtn_type_names[__RTN_MAX] = {
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002102 [RTN_UNSPEC] = "UNSPEC",
2103 [RTN_UNICAST] = "UNICAST",
2104 [RTN_LOCAL] = "LOCAL",
2105 [RTN_BROADCAST] = "BROADCAST",
2106 [RTN_ANYCAST] = "ANYCAST",
2107 [RTN_MULTICAST] = "MULTICAST",
2108 [RTN_BLACKHOLE] = "BLACKHOLE",
2109 [RTN_UNREACHABLE] = "UNREACHABLE",
2110 [RTN_PROHIBIT] = "PROHIBIT",
2111 [RTN_THROW] = "THROW",
2112 [RTN_NAT] = "NAT",
2113 [RTN_XRESOLVE] = "XRESOLVE",
2114};
2115
Eric Dumazeta034ee32010-09-09 23:32:28 +00002116static inline const char *rtn_type(char *buf, size_t len, unsigned int t)
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002117{
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002118 if (t < __RTN_MAX && rtn_type_names[t])
2119 return rtn_type_names[t];
Eric Dumazet28d36e32008-01-14 23:09:56 -08002120 snprintf(buf, len, "type %u", t);
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002121 return buf;
2122}
2123
2124/* Pretty print the trie */
Robert Olsson19baf832005-06-21 12:43:18 -07002125static int fib_trie_seq_show(struct seq_file *seq, void *v)
2126{
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002127 const struct fib_trie_iter *iter = seq->private;
Alexander Duyckadaf9812014-12-31 10:55:47 -08002128 struct tnode *n = v;
Robert Olsson19baf832005-06-21 12:43:18 -07002129
Stephen Hemminger3d3b2d22008-03-23 22:43:56 -07002130 if (!node_parent_rcu(n))
2131 fib_table_print(seq, iter->tb);
Robert Olsson095b8502007-01-26 19:06:01 -08002132
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002133 if (IS_TNODE(n)) {
Alexander Duyckadaf9812014-12-31 10:55:47 -08002134 __be32 prf = htonl(n->key);
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002135
Alexander Duycke9b44012014-12-31 10:56:12 -08002136 seq_indent(seq, iter->depth-1);
2137 seq_printf(seq, " +-- %pI4/%zu %u %u %u\n",
2138 &prf, KEYLENGTH - n->pos - n->bits, n->bits,
2139 n->full_children, n->empty_children);
Olof Johansson91b9a272005-08-09 20:24:39 -07002140 } else {
Stephen Hemminger13280422008-01-22 21:54:37 -08002141 struct leaf_info *li;
Alexander Duyckadaf9812014-12-31 10:55:47 -08002142 __be32 val = htonl(n->key);
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002143
2144 seq_indent(seq, iter->depth);
Harvey Harrison673d57e2008-10-31 00:53:57 -07002145 seq_printf(seq, " |-- %pI4\n", &val);
Eric Dumazet28d36e32008-01-14 23:09:56 -08002146
Alexander Duyckadaf9812014-12-31 10:55:47 -08002147 hlist_for_each_entry_rcu(li, &n->list, hlist) {
Stephen Hemminger13280422008-01-22 21:54:37 -08002148 struct fib_alias *fa;
Eric Dumazet28d36e32008-01-14 23:09:56 -08002149
Stephen Hemminger13280422008-01-22 21:54:37 -08002150 list_for_each_entry_rcu(fa, &li->falh, fa_list) {
2151 char buf1[32], buf2[32];
Eric Dumazet28d36e32008-01-14 23:09:56 -08002152
Stephen Hemminger13280422008-01-22 21:54:37 -08002153 seq_indent(seq, iter->depth+1);
2154 seq_printf(seq, " /%d %s %s", li->plen,
2155 rtn_scope(buf1, sizeof(buf1),
David S. Miller37e826c2011-03-24 18:06:47 -07002156 fa->fa_info->fib_scope),
Stephen Hemminger13280422008-01-22 21:54:37 -08002157 rtn_type(buf2, sizeof(buf2),
2158 fa->fa_type));
2159 if (fa->fa_tos)
Denis V. Lunevb9c4d822008-02-05 02:58:45 -08002160 seq_printf(seq, " tos=%d", fa->fa_tos);
Stephen Hemminger13280422008-01-22 21:54:37 -08002161 seq_putc(seq, '\n');
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002162 }
2163 }
Robert Olsson19baf832005-06-21 12:43:18 -07002164 }
2165
2166 return 0;
2167}
2168
Stephen Hemmingerf6908082007-03-12 14:34:29 -07002169static const struct seq_operations fib_trie_seq_ops = {
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002170 .start = fib_trie_seq_start,
2171 .next = fib_trie_seq_next,
2172 .stop = fib_trie_seq_stop,
2173 .show = fib_trie_seq_show,
Robert Olsson19baf832005-06-21 12:43:18 -07002174};
2175
2176static int fib_trie_seq_open(struct inode *inode, struct file *file)
2177{
Denis V. Lunev1c340b22008-01-10 03:27:17 -08002178 return seq_open_net(inode, file, &fib_trie_seq_ops,
2179 sizeof(struct fib_trie_iter));
Robert Olsson19baf832005-06-21 12:43:18 -07002180}
2181
Arjan van de Ven9a321442007-02-12 00:55:35 -08002182static const struct file_operations fib_trie_fops = {
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002183 .owner = THIS_MODULE,
2184 .open = fib_trie_seq_open,
2185 .read = seq_read,
2186 .llseek = seq_lseek,
Denis V. Lunev1c340b22008-01-10 03:27:17 -08002187 .release = seq_release_net,
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002188};
2189
Stephen Hemminger8315f5d2008-02-11 21:14:39 -08002190struct fib_route_iter {
2191 struct seq_net_private p;
2192 struct trie *main_trie;
2193 loff_t pos;
2194 t_key key;
2195};
2196
Alexander Duyckadaf9812014-12-31 10:55:47 -08002197static struct tnode *fib_route_get_idx(struct fib_route_iter *iter, loff_t pos)
Stephen Hemminger8315f5d2008-02-11 21:14:39 -08002198{
Alexander Duyckadaf9812014-12-31 10:55:47 -08002199 struct tnode *l = NULL;
Stephen Hemminger8315f5d2008-02-11 21:14:39 -08002200 struct trie *t = iter->main_trie;
2201
2202 /* use cache location of last found key */
2203 if (iter->pos > 0 && pos >= iter->pos && (l = fib_find_node(t, iter->key)))
2204 pos -= iter->pos;
2205 else {
2206 iter->pos = 0;
2207 l = trie_firstleaf(t);
2208 }
2209
2210 while (l && pos-- > 0) {
2211 iter->pos++;
2212 l = trie_nextleaf(l);
2213 }
2214
2215 if (l)
2216 iter->key = pos; /* remember it */
2217 else
2218 iter->pos = 0; /* forget it */
2219
2220 return l;
2221}
2222
2223static void *fib_route_seq_start(struct seq_file *seq, loff_t *pos)
2224 __acquires(RCU)
2225{
2226 struct fib_route_iter *iter = seq->private;
2227 struct fib_table *tb;
2228
2229 rcu_read_lock();
YOSHIFUJI Hideaki12188542008-03-26 02:36:06 +09002230 tb = fib_get_table(seq_file_net(seq), RT_TABLE_MAIN);
Stephen Hemminger8315f5d2008-02-11 21:14:39 -08002231 if (!tb)
2232 return NULL;
2233
2234 iter->main_trie = (struct trie *) tb->tb_data;
2235 if (*pos == 0)
2236 return SEQ_START_TOKEN;
2237 else
2238 return fib_route_get_idx(iter, *pos - 1);
2239}
2240
2241static void *fib_route_seq_next(struct seq_file *seq, void *v, loff_t *pos)
2242{
2243 struct fib_route_iter *iter = seq->private;
Alexander Duyckadaf9812014-12-31 10:55:47 -08002244 struct tnode *l = v;
Stephen Hemminger8315f5d2008-02-11 21:14:39 -08002245
2246 ++*pos;
2247 if (v == SEQ_START_TOKEN) {
2248 iter->pos = 0;
2249 l = trie_firstleaf(iter->main_trie);
2250 } else {
2251 iter->pos++;
2252 l = trie_nextleaf(l);
2253 }
2254
2255 if (l)
2256 iter->key = l->key;
2257 else
2258 iter->pos = 0;
2259 return l;
2260}
2261
2262static void fib_route_seq_stop(struct seq_file *seq, void *v)
2263 __releases(RCU)
2264{
2265 rcu_read_unlock();
2266}
2267
Eric Dumazeta034ee32010-09-09 23:32:28 +00002268static unsigned int fib_flag_trans(int type, __be32 mask, const struct fib_info *fi)
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002269{
Eric Dumazeta034ee32010-09-09 23:32:28 +00002270 unsigned int flags = 0;
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002271
Eric Dumazeta034ee32010-09-09 23:32:28 +00002272 if (type == RTN_UNREACHABLE || type == RTN_PROHIBIT)
2273 flags = RTF_REJECT;
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002274 if (fi && fi->fib_nh->nh_gw)
2275 flags |= RTF_GATEWAY;
Al Viro32ab5f82006-09-26 22:21:45 -07002276 if (mask == htonl(0xFFFFFFFF))
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002277 flags |= RTF_HOST;
2278 flags |= RTF_UP;
2279 return flags;
2280}
2281
2282/*
2283 * This outputs /proc/net/route.
2284 * The format of the file is not supposed to be changed
Eric Dumazeta034ee32010-09-09 23:32:28 +00002285 * and needs to be same as fib_hash output to avoid breaking
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002286 * legacy utilities
2287 */
2288static int fib_route_seq_show(struct seq_file *seq, void *v)
2289{
Alexander Duyckadaf9812014-12-31 10:55:47 -08002290 struct tnode *l = v;
Stephen Hemminger13280422008-01-22 21:54:37 -08002291 struct leaf_info *li;
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002292
2293 if (v == SEQ_START_TOKEN) {
2294 seq_printf(seq, "%-127s\n", "Iface\tDestination\tGateway "
2295 "\tFlags\tRefCnt\tUse\tMetric\tMask\t\tMTU"
2296 "\tWindow\tIRTT");
2297 return 0;
2298 }
2299
Sasha Levinb67bfe02013-02-27 17:06:00 -08002300 hlist_for_each_entry_rcu(li, &l->list, hlist) {
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002301 struct fib_alias *fa;
Al Viro32ab5f82006-09-26 22:21:45 -07002302 __be32 mask, prefix;
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002303
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002304 mask = inet_make_mask(li->plen);
2305 prefix = htonl(l->key);
2306
2307 list_for_each_entry_rcu(fa, &li->falh, fa_list) {
Herbert Xu1371e372005-10-15 09:42:39 +10002308 const struct fib_info *fi = fa->fa_info;
Eric Dumazeta034ee32010-09-09 23:32:28 +00002309 unsigned int flags = fib_flag_trans(fa->fa_type, mask, fi);
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002310
2311 if (fa->fa_type == RTN_BROADCAST
2312 || fa->fa_type == RTN_MULTICAST)
2313 continue;
2314
Tetsuo Handa652586d2013-11-14 14:31:57 -08002315 seq_setwidth(seq, 127);
2316
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002317 if (fi)
Pavel Emelyanov5e659e42008-04-24 01:02:16 -07002318 seq_printf(seq,
2319 "%s\t%08X\t%08X\t%04X\t%d\t%u\t"
Tetsuo Handa652586d2013-11-14 14:31:57 -08002320 "%d\t%08X\t%d\t%u\t%u",
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002321 fi->fib_dev ? fi->fib_dev->name : "*",
2322 prefix,
2323 fi->fib_nh->nh_gw, flags, 0, 0,
2324 fi->fib_priority,
2325 mask,
Stephen Hemmingera07f5f52008-01-22 21:53:36 -08002326 (fi->fib_advmss ?
2327 fi->fib_advmss + 40 : 0),
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002328 fi->fib_window,
Tetsuo Handa652586d2013-11-14 14:31:57 -08002329 fi->fib_rtt >> 3);
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002330 else
Pavel Emelyanov5e659e42008-04-24 01:02:16 -07002331 seq_printf(seq,
2332 "*\t%08X\t%08X\t%04X\t%d\t%u\t"
Tetsuo Handa652586d2013-11-14 14:31:57 -08002333 "%d\t%08X\t%d\t%u\t%u",
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002334 prefix, 0, flags, 0, 0, 0,
Tetsuo Handa652586d2013-11-14 14:31:57 -08002335 mask, 0, 0, 0);
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002336
Tetsuo Handa652586d2013-11-14 14:31:57 -08002337 seq_pad(seq, '\n');
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002338 }
2339 }
2340
2341 return 0;
2342}
2343
Stephen Hemmingerf6908082007-03-12 14:34:29 -07002344static const struct seq_operations fib_route_seq_ops = {
Stephen Hemminger8315f5d2008-02-11 21:14:39 -08002345 .start = fib_route_seq_start,
2346 .next = fib_route_seq_next,
2347 .stop = fib_route_seq_stop,
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002348 .show = fib_route_seq_show,
2349};
2350
2351static int fib_route_seq_open(struct inode *inode, struct file *file)
2352{
Denis V. Lunev1c340b22008-01-10 03:27:17 -08002353 return seq_open_net(inode, file, &fib_route_seq_ops,
Stephen Hemminger8315f5d2008-02-11 21:14:39 -08002354 sizeof(struct fib_route_iter));
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002355}
2356
Arjan van de Ven9a321442007-02-12 00:55:35 -08002357static const struct file_operations fib_route_fops = {
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002358 .owner = THIS_MODULE,
2359 .open = fib_route_seq_open,
2360 .read = seq_read,
2361 .llseek = seq_lseek,
Denis V. Lunev1c340b22008-01-10 03:27:17 -08002362 .release = seq_release_net,
Robert Olsson19baf832005-06-21 12:43:18 -07002363};
2364
Denis V. Lunev61a02652008-01-10 03:21:09 -08002365int __net_init fib_proc_init(struct net *net)
Robert Olsson19baf832005-06-21 12:43:18 -07002366{
Gao fengd4beaa62013-02-18 01:34:54 +00002367 if (!proc_create("fib_trie", S_IRUGO, net->proc_net, &fib_trie_fops))
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002368 goto out1;
2369
Gao fengd4beaa62013-02-18 01:34:54 +00002370 if (!proc_create("fib_triestat", S_IRUGO, net->proc_net,
2371 &fib_triestat_fops))
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002372 goto out2;
2373
Gao fengd4beaa62013-02-18 01:34:54 +00002374 if (!proc_create("route", S_IRUGO, net->proc_net, &fib_route_fops))
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002375 goto out3;
2376
Robert Olsson19baf832005-06-21 12:43:18 -07002377 return 0;
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002378
2379out3:
Gao fengece31ff2013-02-18 01:34:56 +00002380 remove_proc_entry("fib_triestat", net->proc_net);
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002381out2:
Gao fengece31ff2013-02-18 01:34:56 +00002382 remove_proc_entry("fib_trie", net->proc_net);
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002383out1:
2384 return -ENOMEM;
Robert Olsson19baf832005-06-21 12:43:18 -07002385}
2386
Denis V. Lunev61a02652008-01-10 03:21:09 -08002387void __net_exit fib_proc_exit(struct net *net)
Robert Olsson19baf832005-06-21 12:43:18 -07002388{
Gao fengece31ff2013-02-18 01:34:56 +00002389 remove_proc_entry("fib_trie", net->proc_net);
2390 remove_proc_entry("fib_triestat", net->proc_net);
2391 remove_proc_entry("route", net->proc_net);
Robert Olsson19baf832005-06-21 12:43:18 -07002392}
2393
2394#endif /* CONFIG_PROC_FS */