blob: e047de6873bd37f06e7320d82cc7fdeba0ccfb00 [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 *
15 * This work is based on the LPC-trie which is originally descibed 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.
19 * http://www.nada.kth.se/~snilsson/public/papers/dyntrie2/
20 *
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 *
25 * Version: $Id: fib_trie.c,v 1.3 2005/06/08 14:20:01 robert Exp $
26 *
27 *
28 * Code from fib_hash has been reused which includes the following header:
29 *
30 *
31 * INET An implementation of the TCP/IP protocol suite for the LINUX
32 * operating system. INET is implemented using the BSD Socket
33 * interface as the means of communication with the user level.
34 *
35 * IPv4 FIB: lookup engine and maintenance routines.
36 *
37 *
38 * Authors: Alexey Kuznetsov, <kuznet@ms2.inr.ac.ru>
39 *
40 * This program is free software; you can redistribute it and/or
41 * modify it under the terms of the GNU General Public License
42 * as published by the Free Software Foundation; either version
43 * 2 of the License, or (at your option) any later version.
Robert Olssonfd966252005-12-22 11:25:10 -080044 *
45 * Substantial contributions to this work comes from:
46 *
47 * David S. Miller, <davem@davemloft.net>
48 * Stephen Hemminger <shemminger@osdl.org>
49 * Paul E. McKenney <paulmck@us.ibm.com>
50 * Patrick McHardy <kaber@trash.net>
Robert Olsson19baf832005-06-21 12:43:18 -070051 */
52
Robert Olsson05eee482007-03-19 16:27:37 -070053#define VERSION "0.408"
Robert Olsson19baf832005-06-21 12:43:18 -070054
Robert Olsson19baf832005-06-21 12:43:18 -070055#include <asm/uaccess.h>
56#include <asm/system.h>
Jiri Slaby1977f032007-10-18 23:40:25 -070057#include <linux/bitops.h>
Robert Olsson19baf832005-06-21 12:43:18 -070058#include <linux/types.h>
59#include <linux/kernel.h>
Robert Olsson19baf832005-06-21 12:43:18 -070060#include <linux/mm.h>
61#include <linux/string.h>
62#include <linux/socket.h>
63#include <linux/sockios.h>
64#include <linux/errno.h>
65#include <linux/in.h>
66#include <linux/inet.h>
Stephen Hemmingercd8787a2006-01-03 14:38:34 -080067#include <linux/inetdevice.h>
Robert Olsson19baf832005-06-21 12:43:18 -070068#include <linux/netdevice.h>
69#include <linux/if_arp.h>
70#include <linux/proc_fs.h>
Robert Olsson2373ce12005-08-25 13:01:29 -070071#include <linux/rcupdate.h>
Robert Olsson19baf832005-06-21 12:43:18 -070072#include <linux/skbuff.h>
73#include <linux/netlink.h>
74#include <linux/init.h>
75#include <linux/list.h>
Eric W. Biederman457c4cb2007-09-12 12:01:34 +020076#include <net/net_namespace.h>
Robert Olsson19baf832005-06-21 12:43:18 -070077#include <net/ip.h>
78#include <net/protocol.h>
79#include <net/route.h>
80#include <net/tcp.h>
81#include <net/sock.h>
82#include <net/ip_fib.h>
83#include "fib_lookup.h"
84
85#undef CONFIG_IP_FIB_TRIE_STATS
Robert Olsson06ef9212006-03-20 21:35:01 -080086#define MAX_STAT_DEPTH 32
Robert Olsson19baf832005-06-21 12:43:18 -070087
Robert Olsson19baf832005-06-21 12:43:18 -070088#define KEYLENGTH (8*sizeof(t_key))
Robert Olsson19baf832005-06-21 12:43:18 -070089
Robert Olsson19baf832005-06-21 12:43:18 -070090typedef unsigned int t_key;
91
92#define T_TNODE 0
93#define T_LEAF 1
94#define NODE_TYPE_MASK 0x1UL
Robert Olsson2373ce12005-08-25 13:01:29 -070095#define NODE_TYPE(node) ((node)->parent & NODE_TYPE_MASK)
96
Olof Johansson91b9a272005-08-09 20:24:39 -070097#define IS_TNODE(n) (!(n->parent & T_LEAF))
98#define IS_LEAF(n) (n->parent & T_LEAF)
Robert Olsson19baf832005-06-21 12:43:18 -070099
100struct node {
Olof Johansson91b9a272005-08-09 20:24:39 -0700101 t_key key;
102 unsigned long parent;
Robert Olsson19baf832005-06-21 12:43:18 -0700103};
104
105struct leaf {
Olof Johansson91b9a272005-08-09 20:24:39 -0700106 t_key key;
107 unsigned long parent;
Robert Olsson19baf832005-06-21 12:43:18 -0700108 struct hlist_head list;
Robert Olsson2373ce12005-08-25 13:01:29 -0700109 struct rcu_head rcu;
Robert Olsson19baf832005-06-21 12:43:18 -0700110};
111
112struct leaf_info {
113 struct hlist_node hlist;
Robert Olsson2373ce12005-08-25 13:01:29 -0700114 struct rcu_head rcu;
Robert Olsson19baf832005-06-21 12:43:18 -0700115 int plen;
116 struct list_head falh;
117};
118
119struct tnode {
Olof Johansson91b9a272005-08-09 20:24:39 -0700120 t_key key;
121 unsigned long parent;
122 unsigned short pos:5; /* 2log(KEYLENGTH) bits needed */
123 unsigned short bits:5; /* 2log(KEYLENGTH) bits needed */
124 unsigned short full_children; /* KEYLENGTH bits needed */
125 unsigned short empty_children; /* KEYLENGTH bits needed */
Robert Olsson2373ce12005-08-25 13:01:29 -0700126 struct rcu_head rcu;
Olof Johansson91b9a272005-08-09 20:24:39 -0700127 struct node *child[0];
Robert Olsson19baf832005-06-21 12:43:18 -0700128};
129
130#ifdef CONFIG_IP_FIB_TRIE_STATS
131struct trie_use_stats {
132 unsigned int gets;
133 unsigned int backtrack;
134 unsigned int semantic_match_passed;
135 unsigned int semantic_match_miss;
136 unsigned int null_node_hit;
Robert Olsson2f368952005-07-05 15:02:40 -0700137 unsigned int resize_node_skipped;
Robert Olsson19baf832005-06-21 12:43:18 -0700138};
139#endif
140
141struct trie_stat {
142 unsigned int totdepth;
143 unsigned int maxdepth;
144 unsigned int tnodes;
145 unsigned int leaves;
146 unsigned int nullpointers;
Robert Olsson06ef9212006-03-20 21:35:01 -0800147 unsigned int nodesizes[MAX_STAT_DEPTH];
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700148};
Robert Olsson19baf832005-06-21 12:43:18 -0700149
150struct trie {
Olof Johansson91b9a272005-08-09 20:24:39 -0700151 struct node *trie;
Robert Olsson19baf832005-06-21 12:43:18 -0700152#ifdef CONFIG_IP_FIB_TRIE_STATS
153 struct trie_use_stats stats;
154#endif
Olof Johansson91b9a272005-08-09 20:24:39 -0700155 int size;
Robert Olsson19baf832005-06-21 12:43:18 -0700156};
157
Robert Olsson19baf832005-06-21 12:43:18 -0700158static void put_child(struct trie *t, struct tnode *tn, int i, struct node *n);
159static void tnode_put_child_reorg(struct tnode *tn, int i, struct node *n, int wasfull);
Robert Olsson19baf832005-06-21 12:43:18 -0700160static struct node *resize(struct trie *t, struct tnode *tn);
Robert Olsson2f80b3c2005-08-09 20:25:06 -0700161static struct tnode *inflate(struct trie *t, struct tnode *tn);
162static struct tnode *halve(struct trie *t, struct tnode *tn);
Robert Olsson19baf832005-06-21 12:43:18 -0700163static void tnode_free(struct tnode *tn);
Robert Olsson19baf832005-06-21 12:43:18 -0700164
Christoph Lametere18b8902006-12-06 20:33:20 -0800165static struct kmem_cache *fn_alias_kmem __read_mostly;
Robert Olsson19baf832005-06-21 12:43:18 -0700166
Stephen Hemminger06801912007-08-10 15:22:13 -0700167static inline struct tnode *node_parent(struct node *node)
168{
169 struct tnode *ret;
170
171 ret = (struct tnode *)(node->parent & ~NODE_TYPE_MASK);
172 return rcu_dereference(ret);
173}
174
175static inline void node_set_parent(struct node *node, struct tnode *ptr)
176{
177 rcu_assign_pointer(node->parent,
178 (unsigned long)ptr | NODE_TYPE(node));
179}
Robert Olsson2373ce12005-08-25 13:01:29 -0700180
181/* rcu_read_lock needs to be hold by caller from readside */
182
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700183static inline struct node *tnode_get_child(struct tnode *tn, int i)
Robert Olsson19baf832005-06-21 12:43:18 -0700184{
Olof Johansson91b9a272005-08-09 20:24:39 -0700185 BUG_ON(i >= 1 << tn->bits);
Robert Olsson19baf832005-06-21 12:43:18 -0700186
Robert Olsson2373ce12005-08-25 13:01:29 -0700187 return rcu_dereference(tn->child[i]);
Robert Olsson19baf832005-06-21 12:43:18 -0700188}
189
Stephen Hemmignerbb435b82005-08-09 20:25:39 -0700190static inline int tnode_child_length(const struct tnode *tn)
Robert Olsson19baf832005-06-21 12:43:18 -0700191{
Olof Johansson91b9a272005-08-09 20:24:39 -0700192 return 1 << tn->bits;
Robert Olsson19baf832005-06-21 12:43:18 -0700193}
194
Stephen Hemmingerab66b4a2007-08-10 15:22:58 -0700195static inline t_key mask_pfx(t_key k, unsigned short l)
196{
197 return (l == 0) ? 0 : k >> (KEYLENGTH-l) << (KEYLENGTH-l);
198}
199
Robert Olsson19baf832005-06-21 12:43:18 -0700200static inline t_key tkey_extract_bits(t_key a, int offset, int bits)
201{
Olof Johansson91b9a272005-08-09 20:24:39 -0700202 if (offset < KEYLENGTH)
Robert Olsson19baf832005-06-21 12:43:18 -0700203 return ((t_key)(a << offset)) >> (KEYLENGTH - bits);
Olof Johansson91b9a272005-08-09 20:24:39 -0700204 else
Robert Olsson19baf832005-06-21 12:43:18 -0700205 return 0;
206}
207
208static inline int tkey_equals(t_key a, t_key b)
209{
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700210 return a == b;
Robert Olsson19baf832005-06-21 12:43:18 -0700211}
212
213static inline int tkey_sub_equals(t_key a, int offset, int bits, t_key b)
214{
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700215 if (bits == 0 || offset >= KEYLENGTH)
216 return 1;
Olof Johansson91b9a272005-08-09 20:24:39 -0700217 bits = bits > KEYLENGTH ? KEYLENGTH : bits;
218 return ((a ^ b) << offset) >> (KEYLENGTH - bits) == 0;
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700219}
Robert Olsson19baf832005-06-21 12:43:18 -0700220
221static inline int tkey_mismatch(t_key a, int offset, t_key b)
222{
223 t_key diff = a ^ b;
224 int i = offset;
225
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700226 if (!diff)
227 return 0;
228 while ((diff << i) >> (KEYLENGTH-1) == 0)
Robert Olsson19baf832005-06-21 12:43:18 -0700229 i++;
230 return i;
231}
232
Robert Olsson19baf832005-06-21 12:43:18 -0700233/*
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900234 To understand this stuff, an understanding of keys and all their bits is
235 necessary. Every node in the trie has a key associated with it, but not
Robert Olsson19baf832005-06-21 12:43:18 -0700236 all of the bits in that key are significant.
237
238 Consider a node 'n' and its parent 'tp'.
239
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900240 If n is a leaf, every bit in its key is significant. Its presence is
241 necessitated by path compression, since during a tree traversal (when
242 searching for a leaf - unless we are doing an insertion) we will completely
243 ignore all skipped bits we encounter. Thus we need to verify, at the end of
244 a potentially successful search, that we have indeed been walking the
Robert Olsson19baf832005-06-21 12:43:18 -0700245 correct key path.
246
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900247 Note that we can never "miss" the correct key in the tree if present by
248 following the wrong path. Path compression ensures that segments of the key
249 that are the same for all keys with a given prefix are skipped, but the
250 skipped part *is* identical for each node in the subtrie below the skipped
251 bit! trie_insert() in this implementation takes care of that - note the
Robert Olsson19baf832005-06-21 12:43:18 -0700252 call to tkey_sub_equals() in trie_insert().
253
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900254 if n is an internal node - a 'tnode' here, the various parts of its key
Robert Olsson19baf832005-06-21 12:43:18 -0700255 have many different meanings.
256
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900257 Example:
Robert Olsson19baf832005-06-21 12:43:18 -0700258 _________________________________________________________________
259 | i | i | i | i | i | i | i | N | N | N | S | S | S | S | S | C |
260 -----------------------------------------------------------------
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900261 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
Robert Olsson19baf832005-06-21 12:43:18 -0700262
263 _________________________________________________________________
264 | C | C | C | u | u | u | u | u | u | u | u | u | u | u | u | u |
265 -----------------------------------------------------------------
266 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
267
268 tp->pos = 7
269 tp->bits = 3
270 n->pos = 15
Olof Johansson91b9a272005-08-09 20:24:39 -0700271 n->bits = 4
Robert Olsson19baf832005-06-21 12:43:18 -0700272
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900273 First, let's just ignore the bits that come before the parent tp, that is
274 the bits from 0 to (tp->pos-1). They are *known* but at this point we do
Robert Olsson19baf832005-06-21 12:43:18 -0700275 not use them for anything.
276
277 The bits from (tp->pos) to (tp->pos + tp->bits - 1) - "N", above - are the
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900278 index into the parent's child array. That is, they will be used to find
Robert Olsson19baf832005-06-21 12:43:18 -0700279 'n' among tp's children.
280
281 The bits from (tp->pos + tp->bits) to (n->pos - 1) - "S" - are skipped bits
282 for the node n.
283
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900284 All the bits we have seen so far are significant to the node n. The rest
Robert Olsson19baf832005-06-21 12:43:18 -0700285 of the bits are really not needed or indeed known in n->key.
286
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900287 The bits from (n->pos) to (n->pos + n->bits - 1) - "C" - are the index into
Robert Olsson19baf832005-06-21 12:43:18 -0700288 n's child array, and will of course be different for each child.
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900289
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700290
Robert Olsson19baf832005-06-21 12:43:18 -0700291 The rest of the bits, from (n->pos + n->bits) onward, are completely unknown
292 at this point.
293
294*/
295
Stephen Hemminger0c7770c2005-08-23 21:59:41 -0700296static inline void check_tnode(const struct tnode *tn)
Robert Olsson19baf832005-06-21 12:43:18 -0700297{
Stephen Hemminger0c7770c2005-08-23 21:59:41 -0700298 WARN_ON(tn && tn->pos+tn->bits > 32);
Robert Olsson19baf832005-06-21 12:43:18 -0700299}
300
Denis V. Lunevf5026fa2007-12-13 09:47:57 -0800301static const int halve_threshold = 25;
302static const int inflate_threshold = 50;
303static const int halve_threshold_root = 8;
304static const int inflate_threshold_root = 15;
Robert Olsson19baf832005-06-21 12:43:18 -0700305
Robert Olsson2373ce12005-08-25 13:01:29 -0700306
307static void __alias_free_mem(struct rcu_head *head)
308{
309 struct fib_alias *fa = container_of(head, struct fib_alias, rcu);
310 kmem_cache_free(fn_alias_kmem, fa);
311}
312
313static inline void alias_free_mem_rcu(struct fib_alias *fa)
314{
315 call_rcu(&fa->rcu, __alias_free_mem);
316}
317
318static void __leaf_free_rcu(struct rcu_head *head)
319{
320 kfree(container_of(head, struct leaf, rcu));
321}
322
Robert Olsson2373ce12005-08-25 13:01:29 -0700323static void __leaf_info_free_rcu(struct rcu_head *head)
324{
325 kfree(container_of(head, struct leaf_info, rcu));
326}
327
328static inline void free_leaf_info(struct leaf_info *leaf)
329{
330 call_rcu(&leaf->rcu, __leaf_info_free_rcu);
331}
332
333static struct tnode *tnode_alloc(unsigned int size)
334{
335 struct page *pages;
336
337 if (size <= PAGE_SIZE)
338 return kcalloc(size, 1, GFP_KERNEL);
339
340 pages = alloc_pages(GFP_KERNEL|__GFP_ZERO, get_order(size));
341 if (!pages)
342 return NULL;
343
344 return page_address(pages);
345}
346
347static void __tnode_free_rcu(struct rcu_head *head)
348{
349 struct tnode *tn = container_of(head, struct tnode, rcu);
350 unsigned int size = sizeof(struct tnode) +
351 (1 << tn->bits) * sizeof(struct node *);
352
353 if (size <= PAGE_SIZE)
354 kfree(tn);
355 else
356 free_pages((unsigned long)tn, get_order(size));
357}
358
359static inline void tnode_free(struct tnode *tn)
360{
Stephen Hemminger132adf52007-03-08 20:44:43 -0800361 if (IS_LEAF(tn)) {
Robert Olsson550e29b2006-04-04 12:53:35 -0700362 struct leaf *l = (struct leaf *) tn;
363 call_rcu_bh(&l->rcu, __leaf_free_rcu);
Stephen Hemminger132adf52007-03-08 20:44:43 -0800364 } else
Robert Olsson550e29b2006-04-04 12:53:35 -0700365 call_rcu(&tn->rcu, __tnode_free_rcu);
Robert Olsson2373ce12005-08-25 13:01:29 -0700366}
367
Robert Olsson19baf832005-06-21 12:43:18 -0700368static struct leaf *leaf_new(void)
369{
370 struct leaf *l = kmalloc(sizeof(struct leaf), GFP_KERNEL);
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700371 if (l) {
Robert Olsson2373ce12005-08-25 13:01:29 -0700372 l->parent = T_LEAF;
Robert Olsson19baf832005-06-21 12:43:18 -0700373 INIT_HLIST_HEAD(&l->list);
374 }
375 return l;
376}
377
378static struct leaf_info *leaf_info_new(int plen)
379{
380 struct leaf_info *li = kmalloc(sizeof(struct leaf_info), GFP_KERNEL);
Robert Olsson2373ce12005-08-25 13:01:29 -0700381 if (li) {
382 li->plen = plen;
383 INIT_LIST_HEAD(&li->falh);
Patrick McHardyf0e36f82005-07-05 14:44:55 -0700384 }
Robert Olsson2373ce12005-08-25 13:01:29 -0700385 return li;
Patrick McHardyf0e36f82005-07-05 14:44:55 -0700386}
387
Robert Olsson19baf832005-06-21 12:43:18 -0700388static struct tnode* tnode_new(t_key key, int pos, int bits)
389{
390 int nchildren = 1<<bits;
391 int sz = sizeof(struct tnode) + nchildren * sizeof(struct node *);
Patrick McHardyf0e36f82005-07-05 14:44:55 -0700392 struct tnode *tn = tnode_alloc(sz);
Robert Olsson19baf832005-06-21 12:43:18 -0700393
Olof Johansson91b9a272005-08-09 20:24:39 -0700394 if (tn) {
Robert Olsson19baf832005-06-21 12:43:18 -0700395 memset(tn, 0, sz);
Robert Olsson2373ce12005-08-25 13:01:29 -0700396 tn->parent = T_TNODE;
Robert Olsson19baf832005-06-21 12:43:18 -0700397 tn->pos = pos;
398 tn->bits = bits;
399 tn->key = key;
400 tn->full_children = 0;
401 tn->empty_children = 1<<bits;
402 }
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700403
Stephen Hemminger0c7770c2005-08-23 21:59:41 -0700404 pr_debug("AT %p s=%u %u\n", tn, (unsigned int) sizeof(struct tnode),
405 (unsigned int) (sizeof(struct node) * 1<<bits));
Robert Olsson19baf832005-06-21 12:43:18 -0700406 return tn;
407}
408
Robert Olsson19baf832005-06-21 12:43:18 -0700409/*
410 * Check whether a tnode 'n' is "full", i.e. it is an internal node
411 * and no bits are skipped. See discussion in dyntree paper p. 6
412 */
413
Stephen Hemmignerbb435b82005-08-09 20:25:39 -0700414static inline int tnode_full(const struct tnode *tn, const struct node *n)
Robert Olsson19baf832005-06-21 12:43:18 -0700415{
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700416 if (n == NULL || IS_LEAF(n))
Robert Olsson19baf832005-06-21 12:43:18 -0700417 return 0;
418
419 return ((struct tnode *) n)->pos == tn->pos + tn->bits;
420}
421
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700422static inline void put_child(struct trie *t, struct tnode *tn, int i, struct node *n)
Robert Olsson19baf832005-06-21 12:43:18 -0700423{
424 tnode_put_child_reorg(tn, i, n, -1);
425}
426
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700427 /*
Robert Olsson19baf832005-06-21 12:43:18 -0700428 * Add a child at position i overwriting the old value.
429 * Update the value of full_children and empty_children.
430 */
431
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700432static void tnode_put_child_reorg(struct tnode *tn, int i, struct node *n, int wasfull)
Robert Olsson19baf832005-06-21 12:43:18 -0700433{
Robert Olsson2373ce12005-08-25 13:01:29 -0700434 struct node *chi = tn->child[i];
Robert Olsson19baf832005-06-21 12:43:18 -0700435 int isfull;
436
Stephen Hemminger0c7770c2005-08-23 21:59:41 -0700437 BUG_ON(i >= 1<<tn->bits);
438
Robert Olsson19baf832005-06-21 12:43:18 -0700439
440 /* update emptyChildren */
441 if (n == NULL && chi != NULL)
442 tn->empty_children++;
443 else if (n != NULL && chi == NULL)
444 tn->empty_children--;
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700445
Robert Olsson19baf832005-06-21 12:43:18 -0700446 /* update fullChildren */
Olof Johansson91b9a272005-08-09 20:24:39 -0700447 if (wasfull == -1)
Robert Olsson19baf832005-06-21 12:43:18 -0700448 wasfull = tnode_full(tn, chi);
449
450 isfull = tnode_full(tn, n);
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700451 if (wasfull && !isfull)
Robert Olsson19baf832005-06-21 12:43:18 -0700452 tn->full_children--;
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700453 else if (!wasfull && isfull)
Robert Olsson19baf832005-06-21 12:43:18 -0700454 tn->full_children++;
Olof Johansson91b9a272005-08-09 20:24:39 -0700455
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700456 if (n)
Stephen Hemminger06801912007-08-10 15:22:13 -0700457 node_set_parent(n, tn);
Robert Olsson19baf832005-06-21 12:43:18 -0700458
Robert Olsson2373ce12005-08-25 13:01:29 -0700459 rcu_assign_pointer(tn->child[i], n);
Robert Olsson19baf832005-06-21 12:43:18 -0700460}
461
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700462static struct node *resize(struct trie *t, struct tnode *tn)
Robert Olsson19baf832005-06-21 12:43:18 -0700463{
464 int i;
Robert Olsson2f368952005-07-05 15:02:40 -0700465 int err = 0;
Robert Olsson2f80b3c2005-08-09 20:25:06 -0700466 struct tnode *old_tn;
Robert Olssone6308be2005-10-04 13:01:58 -0700467 int inflate_threshold_use;
468 int halve_threshold_use;
Robert Olsson05eee482007-03-19 16:27:37 -0700469 int max_resize;
Robert Olsson19baf832005-06-21 12:43:18 -0700470
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900471 if (!tn)
Robert Olsson19baf832005-06-21 12:43:18 -0700472 return NULL;
473
Stephen Hemminger0c7770c2005-08-23 21:59:41 -0700474 pr_debug("In tnode_resize %p inflate_threshold=%d threshold=%d\n",
475 tn, inflate_threshold, halve_threshold);
Robert Olsson19baf832005-06-21 12:43:18 -0700476
477 /* No children */
478 if (tn->empty_children == tnode_child_length(tn)) {
479 tnode_free(tn);
480 return NULL;
481 }
482 /* One child */
483 if (tn->empty_children == tnode_child_length(tn) - 1)
484 for (i = 0; i < tnode_child_length(tn); i++) {
Olof Johansson91b9a272005-08-09 20:24:39 -0700485 struct node *n;
Robert Olsson19baf832005-06-21 12:43:18 -0700486
Olof Johansson91b9a272005-08-09 20:24:39 -0700487 n = tn->child[i];
Robert Olsson2373ce12005-08-25 13:01:29 -0700488 if (!n)
Olof Johansson91b9a272005-08-09 20:24:39 -0700489 continue;
Olof Johansson91b9a272005-08-09 20:24:39 -0700490
491 /* compress one level */
Stephen Hemminger06801912007-08-10 15:22:13 -0700492 node_set_parent(n, NULL);
Olof Johansson91b9a272005-08-09 20:24:39 -0700493 tnode_free(tn);
494 return n;
Robert Olsson19baf832005-06-21 12:43:18 -0700495 }
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700496 /*
Robert Olsson19baf832005-06-21 12:43:18 -0700497 * Double as long as the resulting node has a number of
498 * nonempty nodes that are above the threshold.
499 */
500
501 /*
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700502 * From "Implementing a dynamic compressed trie" by Stefan Nilsson of
503 * the Helsinki University of Technology and Matti Tikkanen of Nokia
Robert Olsson19baf832005-06-21 12:43:18 -0700504 * Telecommunications, page 6:
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700505 * "A node is doubled if the ratio of non-empty children to all
Robert Olsson19baf832005-06-21 12:43:18 -0700506 * children in the *doubled* node is at least 'high'."
507 *
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700508 * 'high' in this instance is the variable 'inflate_threshold'. It
509 * is expressed as a percentage, so we multiply it with
510 * tnode_child_length() and instead of multiplying by 2 (since the
511 * child array will be doubled by inflate()) and multiplying
512 * the left-hand side by 100 (to handle the percentage thing) we
Robert Olsson19baf832005-06-21 12:43:18 -0700513 * multiply the left-hand side by 50.
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700514 *
515 * The left-hand side may look a bit weird: tnode_child_length(tn)
516 * - tn->empty_children is of course the number of non-null children
517 * in the current node. tn->full_children is the number of "full"
Robert Olsson19baf832005-06-21 12:43:18 -0700518 * children, that is non-null tnodes with a skip value of 0.
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700519 * All of those will be doubled in the resulting inflated tnode, so
Robert Olsson19baf832005-06-21 12:43:18 -0700520 * we just count them one extra time here.
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700521 *
Robert Olsson19baf832005-06-21 12:43:18 -0700522 * A clearer way to write this would be:
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700523 *
Robert Olsson19baf832005-06-21 12:43:18 -0700524 * to_be_doubled = tn->full_children;
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700525 * not_to_be_doubled = tnode_child_length(tn) - tn->empty_children -
Robert Olsson19baf832005-06-21 12:43:18 -0700526 * tn->full_children;
527 *
528 * new_child_length = tnode_child_length(tn) * 2;
529 *
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700530 * new_fill_factor = 100 * (not_to_be_doubled + 2*to_be_doubled) /
Robert Olsson19baf832005-06-21 12:43:18 -0700531 * new_child_length;
532 * if (new_fill_factor >= inflate_threshold)
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700533 *
534 * ...and so on, tho it would mess up the while () loop.
535 *
Robert Olsson19baf832005-06-21 12:43:18 -0700536 * anyway,
537 * 100 * (not_to_be_doubled + 2*to_be_doubled) / new_child_length >=
538 * inflate_threshold
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700539 *
Robert Olsson19baf832005-06-21 12:43:18 -0700540 * avoid a division:
541 * 100 * (not_to_be_doubled + 2*to_be_doubled) >=
542 * inflate_threshold * new_child_length
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700543 *
Robert Olsson19baf832005-06-21 12:43:18 -0700544 * expand not_to_be_doubled and to_be_doubled, and shorten:
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700545 * 100 * (tnode_child_length(tn) - tn->empty_children +
Olof Johansson91b9a272005-08-09 20:24:39 -0700546 * tn->full_children) >= inflate_threshold * new_child_length
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700547 *
Robert Olsson19baf832005-06-21 12:43:18 -0700548 * expand new_child_length:
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700549 * 100 * (tnode_child_length(tn) - tn->empty_children +
Olof Johansson91b9a272005-08-09 20:24:39 -0700550 * tn->full_children) >=
Robert Olsson19baf832005-06-21 12:43:18 -0700551 * inflate_threshold * tnode_child_length(tn) * 2
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700552 *
Robert Olsson19baf832005-06-21 12:43:18 -0700553 * shorten again:
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700554 * 50 * (tn->full_children + tnode_child_length(tn) -
Olof Johansson91b9a272005-08-09 20:24:39 -0700555 * tn->empty_children) >= inflate_threshold *
Robert Olsson19baf832005-06-21 12:43:18 -0700556 * tnode_child_length(tn)
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700557 *
Robert Olsson19baf832005-06-21 12:43:18 -0700558 */
559
560 check_tnode(tn);
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700561
Robert Olssone6308be2005-10-04 13:01:58 -0700562 /* Keep root node larger */
563
Stephen Hemminger132adf52007-03-08 20:44:43 -0800564 if (!tn->parent)
Robert Olssone6308be2005-10-04 13:01:58 -0700565 inflate_threshold_use = inflate_threshold_root;
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900566 else
Robert Olssone6308be2005-10-04 13:01:58 -0700567 inflate_threshold_use = inflate_threshold;
568
Robert Olsson2f368952005-07-05 15:02:40 -0700569 err = 0;
Robert Olsson05eee482007-03-19 16:27:37 -0700570 max_resize = 10;
571 while ((tn->full_children > 0 && max_resize-- &&
Robert Olsson19baf832005-06-21 12:43:18 -0700572 50 * (tn->full_children + tnode_child_length(tn) - tn->empty_children) >=
Robert Olssone6308be2005-10-04 13:01:58 -0700573 inflate_threshold_use * tnode_child_length(tn))) {
Robert Olsson19baf832005-06-21 12:43:18 -0700574
Robert Olsson2f80b3c2005-08-09 20:25:06 -0700575 old_tn = tn;
576 tn = inflate(t, tn);
577 if (IS_ERR(tn)) {
578 tn = old_tn;
Robert Olsson2f368952005-07-05 15:02:40 -0700579#ifdef CONFIG_IP_FIB_TRIE_STATS
580 t->stats.resize_node_skipped++;
581#endif
582 break;
583 }
Robert Olsson19baf832005-06-21 12:43:18 -0700584 }
585
Robert Olsson05eee482007-03-19 16:27:37 -0700586 if (max_resize < 0) {
587 if (!tn->parent)
588 printk(KERN_WARNING "Fix inflate_threshold_root. Now=%d size=%d bits\n",
589 inflate_threshold_root, tn->bits);
590 else
591 printk(KERN_WARNING "Fix inflate_threshold. Now=%d size=%d bits\n",
592 inflate_threshold, tn->bits);
593 }
594
Robert Olsson19baf832005-06-21 12:43:18 -0700595 check_tnode(tn);
596
597 /*
598 * Halve as long as the number of empty children in this
599 * node is above threshold.
600 */
Robert Olsson2f368952005-07-05 15:02:40 -0700601
Robert Olssone6308be2005-10-04 13:01:58 -0700602
603 /* Keep root node larger */
604
Stephen Hemminger132adf52007-03-08 20:44:43 -0800605 if (!tn->parent)
Robert Olssone6308be2005-10-04 13:01:58 -0700606 halve_threshold_use = halve_threshold_root;
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900607 else
Robert Olssone6308be2005-10-04 13:01:58 -0700608 halve_threshold_use = halve_threshold;
609
Robert Olsson2f368952005-07-05 15:02:40 -0700610 err = 0;
Robert Olsson05eee482007-03-19 16:27:37 -0700611 max_resize = 10;
612 while (tn->bits > 1 && max_resize-- &&
Robert Olsson19baf832005-06-21 12:43:18 -0700613 100 * (tnode_child_length(tn) - tn->empty_children) <
Robert Olssone6308be2005-10-04 13:01:58 -0700614 halve_threshold_use * tnode_child_length(tn)) {
Robert Olsson19baf832005-06-21 12:43:18 -0700615
Robert Olsson2f80b3c2005-08-09 20:25:06 -0700616 old_tn = tn;
617 tn = halve(t, tn);
618 if (IS_ERR(tn)) {
619 tn = old_tn;
Robert Olsson2f368952005-07-05 15:02:40 -0700620#ifdef CONFIG_IP_FIB_TRIE_STATS
621 t->stats.resize_node_skipped++;
622#endif
623 break;
624 }
625 }
626
Robert Olsson05eee482007-03-19 16:27:37 -0700627 if (max_resize < 0) {
628 if (!tn->parent)
629 printk(KERN_WARNING "Fix halve_threshold_root. Now=%d size=%d bits\n",
630 halve_threshold_root, tn->bits);
631 else
632 printk(KERN_WARNING "Fix halve_threshold. Now=%d size=%d bits\n",
633 halve_threshold, tn->bits);
634 }
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700635
Robert Olsson19baf832005-06-21 12:43:18 -0700636 /* Only one child remains */
Robert Olsson19baf832005-06-21 12:43:18 -0700637 if (tn->empty_children == tnode_child_length(tn) - 1)
638 for (i = 0; i < tnode_child_length(tn); i++) {
Olof Johansson91b9a272005-08-09 20:24:39 -0700639 struct node *n;
640
Olof Johansson91b9a272005-08-09 20:24:39 -0700641 n = tn->child[i];
Robert Olsson2373ce12005-08-25 13:01:29 -0700642 if (!n)
Olof Johansson91b9a272005-08-09 20:24:39 -0700643 continue;
Olof Johansson91b9a272005-08-09 20:24:39 -0700644
645 /* compress one level */
646
Stephen Hemminger06801912007-08-10 15:22:13 -0700647 node_set_parent(n, NULL);
Olof Johansson91b9a272005-08-09 20:24:39 -0700648 tnode_free(tn);
649 return n;
Robert Olsson19baf832005-06-21 12:43:18 -0700650 }
651
652 return (struct node *) tn;
653}
654
Robert Olsson2f80b3c2005-08-09 20:25:06 -0700655static struct tnode *inflate(struct trie *t, struct tnode *tn)
Robert Olsson19baf832005-06-21 12:43:18 -0700656{
657 struct tnode *inode;
658 struct tnode *oldtnode = tn;
659 int olen = tnode_child_length(tn);
660 int i;
661
Stephen Hemminger0c7770c2005-08-23 21:59:41 -0700662 pr_debug("In inflate\n");
Robert Olsson19baf832005-06-21 12:43:18 -0700663
664 tn = tnode_new(oldtnode->key, oldtnode->pos, oldtnode->bits + 1);
665
Stephen Hemminger0c7770c2005-08-23 21:59:41 -0700666 if (!tn)
Robert Olsson2f80b3c2005-08-09 20:25:06 -0700667 return ERR_PTR(-ENOMEM);
Robert Olsson2f368952005-07-05 15:02:40 -0700668
669 /*
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700670 * Preallocate and store tnodes before the actual work so we
671 * don't get into an inconsistent state if memory allocation
672 * fails. In case of failure we return the oldnode and inflate
Robert Olsson2f368952005-07-05 15:02:40 -0700673 * of tnode is ignored.
674 */
Olof Johansson91b9a272005-08-09 20:24:39 -0700675
676 for (i = 0; i < olen; i++) {
Robert Olsson2f368952005-07-05 15:02:40 -0700677 struct tnode *inode = (struct tnode *) tnode_get_child(oldtnode, i);
678
679 if (inode &&
680 IS_TNODE(inode) &&
681 inode->pos == oldtnode->pos + oldtnode->bits &&
682 inode->bits > 1) {
683 struct tnode *left, *right;
Stephen Hemmingerab66b4a2007-08-10 15:22:58 -0700684 t_key m = ~0U << (KEYLENGTH - 1) >> inode->pos;
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700685
Robert Olsson2f368952005-07-05 15:02:40 -0700686 left = tnode_new(inode->key&(~m), inode->pos + 1,
687 inode->bits - 1);
Robert Olsson2f80b3c2005-08-09 20:25:06 -0700688 if (!left)
689 goto nomem;
Olof Johansson91b9a272005-08-09 20:24:39 -0700690
Robert Olsson2f368952005-07-05 15:02:40 -0700691 right = tnode_new(inode->key|m, inode->pos + 1,
692 inode->bits - 1);
693
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900694 if (!right) {
Robert Olsson2f80b3c2005-08-09 20:25:06 -0700695 tnode_free(left);
696 goto nomem;
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900697 }
Robert Olsson2f368952005-07-05 15:02:40 -0700698
699 put_child(t, tn, 2*i, (struct node *) left);
700 put_child(t, tn, 2*i+1, (struct node *) right);
701 }
702 }
703
Olof Johansson91b9a272005-08-09 20:24:39 -0700704 for (i = 0; i < olen; i++) {
Robert Olsson19baf832005-06-21 12:43:18 -0700705 struct node *node = tnode_get_child(oldtnode, i);
Olof Johansson91b9a272005-08-09 20:24:39 -0700706 struct tnode *left, *right;
707 int size, j;
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700708
Robert Olsson19baf832005-06-21 12:43:18 -0700709 /* An empty child */
710 if (node == NULL)
711 continue;
712
713 /* A leaf or an internal node with skipped bits */
714
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700715 if (IS_LEAF(node) || ((struct tnode *) node)->pos >
Robert Olsson19baf832005-06-21 12:43:18 -0700716 tn->pos + tn->bits - 1) {
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700717 if (tkey_extract_bits(node->key, oldtnode->pos + oldtnode->bits,
Robert Olsson19baf832005-06-21 12:43:18 -0700718 1) == 0)
719 put_child(t, tn, 2*i, node);
720 else
721 put_child(t, tn, 2*i+1, node);
722 continue;
723 }
724
725 /* An internal node with two children */
726 inode = (struct tnode *) node;
727
728 if (inode->bits == 1) {
729 put_child(t, tn, 2*i, inode->child[0]);
730 put_child(t, tn, 2*i+1, inode->child[1]);
731
732 tnode_free(inode);
Olof Johansson91b9a272005-08-09 20:24:39 -0700733 continue;
Robert Olsson19baf832005-06-21 12:43:18 -0700734 }
735
Olof Johansson91b9a272005-08-09 20:24:39 -0700736 /* An internal node with more than two children */
Robert Olsson19baf832005-06-21 12:43:18 -0700737
Olof Johansson91b9a272005-08-09 20:24:39 -0700738 /* We will replace this node 'inode' with two new
739 * ones, 'left' and 'right', each with half of the
740 * original children. The two new nodes will have
741 * a position one bit further down the key and this
742 * means that the "significant" part of their keys
743 * (see the discussion near the top of this file)
744 * will differ by one bit, which will be "0" in
745 * left's key and "1" in right's key. Since we are
746 * moving the key position by one step, the bit that
747 * we are moving away from - the bit at position
748 * (inode->pos) - is the one that will differ between
749 * left and right. So... we synthesize that bit in the
750 * two new keys.
751 * The mask 'm' below will be a single "one" bit at
752 * the position (inode->pos)
753 */
Robert Olsson19baf832005-06-21 12:43:18 -0700754
Olof Johansson91b9a272005-08-09 20:24:39 -0700755 /* Use the old key, but set the new significant
756 * bit to zero.
757 */
Robert Olsson19baf832005-06-21 12:43:18 -0700758
Olof Johansson91b9a272005-08-09 20:24:39 -0700759 left = (struct tnode *) tnode_get_child(tn, 2*i);
760 put_child(t, tn, 2*i, NULL);
Robert Olsson19baf832005-06-21 12:43:18 -0700761
Olof Johansson91b9a272005-08-09 20:24:39 -0700762 BUG_ON(!left);
Robert Olsson2f368952005-07-05 15:02:40 -0700763
Olof Johansson91b9a272005-08-09 20:24:39 -0700764 right = (struct tnode *) tnode_get_child(tn, 2*i+1);
765 put_child(t, tn, 2*i+1, NULL);
Robert Olsson2f368952005-07-05 15:02:40 -0700766
Olof Johansson91b9a272005-08-09 20:24:39 -0700767 BUG_ON(!right);
Robert Olsson2f368952005-07-05 15:02:40 -0700768
Olof Johansson91b9a272005-08-09 20:24:39 -0700769 size = tnode_child_length(left);
770 for (j = 0; j < size; j++) {
771 put_child(t, left, j, inode->child[j]);
772 put_child(t, right, j, inode->child[j + size]);
Robert Olsson19baf832005-06-21 12:43:18 -0700773 }
Olof Johansson91b9a272005-08-09 20:24:39 -0700774 put_child(t, tn, 2*i, resize(t, left));
775 put_child(t, tn, 2*i+1, resize(t, right));
776
777 tnode_free(inode);
Robert Olsson19baf832005-06-21 12:43:18 -0700778 }
779 tnode_free(oldtnode);
780 return tn;
Robert Olsson2f80b3c2005-08-09 20:25:06 -0700781nomem:
782 {
783 int size = tnode_child_length(tn);
784 int j;
785
Stephen Hemminger0c7770c2005-08-23 21:59:41 -0700786 for (j = 0; j < size; j++)
Robert Olsson2f80b3c2005-08-09 20:25:06 -0700787 if (tn->child[j])
788 tnode_free((struct tnode *)tn->child[j]);
789
790 tnode_free(tn);
Stephen Hemminger0c7770c2005-08-23 21:59:41 -0700791
Robert Olsson2f80b3c2005-08-09 20:25:06 -0700792 return ERR_PTR(-ENOMEM);
793 }
Robert Olsson19baf832005-06-21 12:43:18 -0700794}
795
Robert Olsson2f80b3c2005-08-09 20:25:06 -0700796static struct tnode *halve(struct trie *t, struct tnode *tn)
Robert Olsson19baf832005-06-21 12:43:18 -0700797{
798 struct tnode *oldtnode = tn;
799 struct node *left, *right;
800 int i;
801 int olen = tnode_child_length(tn);
802
Stephen Hemminger0c7770c2005-08-23 21:59:41 -0700803 pr_debug("In halve\n");
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700804
805 tn = tnode_new(oldtnode->key, oldtnode->pos, oldtnode->bits - 1);
Robert Olsson19baf832005-06-21 12:43:18 -0700806
Robert Olsson2f80b3c2005-08-09 20:25:06 -0700807 if (!tn)
808 return ERR_PTR(-ENOMEM);
Robert Olsson2f368952005-07-05 15:02:40 -0700809
810 /*
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700811 * Preallocate and store tnodes before the actual work so we
812 * don't get into an inconsistent state if memory allocation
813 * fails. In case of failure we return the oldnode and halve
Robert Olsson2f368952005-07-05 15:02:40 -0700814 * of tnode is ignored.
815 */
816
Olof Johansson91b9a272005-08-09 20:24:39 -0700817 for (i = 0; i < olen; i += 2) {
Robert Olsson2f368952005-07-05 15:02:40 -0700818 left = tnode_get_child(oldtnode, i);
819 right = tnode_get_child(oldtnode, i+1);
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700820
Robert Olsson2f368952005-07-05 15:02:40 -0700821 /* Two nonempty children */
Stephen Hemminger0c7770c2005-08-23 21:59:41 -0700822 if (left && right) {
Robert Olsson2f80b3c2005-08-09 20:25:06 -0700823 struct tnode *newn;
Stephen Hemminger0c7770c2005-08-23 21:59:41 -0700824
Robert Olsson2f80b3c2005-08-09 20:25:06 -0700825 newn = tnode_new(left->key, tn->pos + tn->bits, 1);
Stephen Hemminger0c7770c2005-08-23 21:59:41 -0700826
827 if (!newn)
Robert Olsson2f80b3c2005-08-09 20:25:06 -0700828 goto nomem;
Stephen Hemminger0c7770c2005-08-23 21:59:41 -0700829
Robert Olsson2f80b3c2005-08-09 20:25:06 -0700830 put_child(t, tn, i/2, (struct node *)newn);
Robert Olsson2f368952005-07-05 15:02:40 -0700831 }
Robert Olsson2f368952005-07-05 15:02:40 -0700832
Robert Olsson2f368952005-07-05 15:02:40 -0700833 }
Robert Olsson19baf832005-06-21 12:43:18 -0700834
Olof Johansson91b9a272005-08-09 20:24:39 -0700835 for (i = 0; i < olen; i += 2) {
836 struct tnode *newBinNode;
837
Robert Olsson19baf832005-06-21 12:43:18 -0700838 left = tnode_get_child(oldtnode, i);
839 right = tnode_get_child(oldtnode, i+1);
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700840
Robert Olsson19baf832005-06-21 12:43:18 -0700841 /* At least one of the children is empty */
842 if (left == NULL) {
843 if (right == NULL) /* Both are empty */
844 continue;
845 put_child(t, tn, i/2, right);
Olof Johansson91b9a272005-08-09 20:24:39 -0700846 continue;
Stephen Hemminger0c7770c2005-08-23 21:59:41 -0700847 }
Olof Johansson91b9a272005-08-09 20:24:39 -0700848
849 if (right == NULL) {
Robert Olsson19baf832005-06-21 12:43:18 -0700850 put_child(t, tn, i/2, left);
Olof Johansson91b9a272005-08-09 20:24:39 -0700851 continue;
852 }
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700853
Robert Olsson19baf832005-06-21 12:43:18 -0700854 /* Two nonempty children */
Olof Johansson91b9a272005-08-09 20:24:39 -0700855 newBinNode = (struct tnode *) tnode_get_child(tn, i/2);
856 put_child(t, tn, i/2, NULL);
Olof Johansson91b9a272005-08-09 20:24:39 -0700857 put_child(t, newBinNode, 0, left);
858 put_child(t, newBinNode, 1, right);
859 put_child(t, tn, i/2, resize(t, newBinNode));
Robert Olsson19baf832005-06-21 12:43:18 -0700860 }
861 tnode_free(oldtnode);
862 return tn;
Robert Olsson2f80b3c2005-08-09 20:25:06 -0700863nomem:
864 {
865 int size = tnode_child_length(tn);
866 int j;
867
Stephen Hemminger0c7770c2005-08-23 21:59:41 -0700868 for (j = 0; j < size; j++)
Robert Olsson2f80b3c2005-08-09 20:25:06 -0700869 if (tn->child[j])
870 tnode_free((struct tnode *)tn->child[j]);
871
872 tnode_free(tn);
Stephen Hemminger0c7770c2005-08-23 21:59:41 -0700873
Robert Olsson2f80b3c2005-08-09 20:25:06 -0700874 return ERR_PTR(-ENOMEM);
875 }
Robert Olsson19baf832005-06-21 12:43:18 -0700876}
877
Robert Olsson772cb712005-09-19 15:31:18 -0700878/* readside must use rcu_read_lock currently dump routines
Robert Olsson2373ce12005-08-25 13:01:29 -0700879 via get_fa_head and dump */
880
Robert Olsson772cb712005-09-19 15:31:18 -0700881static struct leaf_info *find_leaf_info(struct leaf *l, int plen)
Robert Olsson19baf832005-06-21 12:43:18 -0700882{
Robert Olsson772cb712005-09-19 15:31:18 -0700883 struct hlist_head *head = &l->list;
Robert Olsson19baf832005-06-21 12:43:18 -0700884 struct hlist_node *node;
885 struct leaf_info *li;
886
Robert Olsson2373ce12005-08-25 13:01:29 -0700887 hlist_for_each_entry_rcu(li, node, head, hlist)
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700888 if (li->plen == plen)
Robert Olsson19baf832005-06-21 12:43:18 -0700889 return li;
Olof Johansson91b9a272005-08-09 20:24:39 -0700890
Robert Olsson19baf832005-06-21 12:43:18 -0700891 return NULL;
892}
893
894static inline struct list_head * get_fa_head(struct leaf *l, int plen)
895{
Robert Olsson772cb712005-09-19 15:31:18 -0700896 struct leaf_info *li = find_leaf_info(l, plen);
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700897
Olof Johansson91b9a272005-08-09 20:24:39 -0700898 if (!li)
899 return NULL;
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700900
Olof Johansson91b9a272005-08-09 20:24:39 -0700901 return &li->falh;
Robert Olsson19baf832005-06-21 12:43:18 -0700902}
903
904static void insert_leaf_info(struct hlist_head *head, struct leaf_info *new)
905{
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900906 struct leaf_info *li = NULL, *last = NULL;
907 struct hlist_node *node;
Robert Olsson19baf832005-06-21 12:43:18 -0700908
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900909 if (hlist_empty(head)) {
910 hlist_add_head_rcu(&new->hlist, head);
911 } else {
912 hlist_for_each_entry(li, node, head, hlist) {
913 if (new->plen > li->plen)
914 break;
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700915
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900916 last = li;
917 }
918 if (last)
919 hlist_add_after_rcu(&last->hlist, &new->hlist);
920 else
921 hlist_add_before_rcu(&new->hlist, &li->hlist);
922 }
Robert Olsson19baf832005-06-21 12:43:18 -0700923}
924
Robert Olsson2373ce12005-08-25 13:01:29 -0700925/* rcu_read_lock needs to be hold by caller from readside */
926
Robert Olsson19baf832005-06-21 12:43:18 -0700927static struct leaf *
928fib_find_node(struct trie *t, u32 key)
929{
930 int pos;
931 struct tnode *tn;
932 struct node *n;
933
934 pos = 0;
Robert Olsson2373ce12005-08-25 13:01:29 -0700935 n = rcu_dereference(t->trie);
Robert Olsson19baf832005-06-21 12:43:18 -0700936
937 while (n != NULL && NODE_TYPE(n) == T_TNODE) {
938 tn = (struct tnode *) n;
Olof Johansson91b9a272005-08-09 20:24:39 -0700939
Robert Olsson19baf832005-06-21 12:43:18 -0700940 check_tnode(tn);
Olof Johansson91b9a272005-08-09 20:24:39 -0700941
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700942 if (tkey_sub_equals(tn->key, pos, tn->pos-pos, key)) {
Olof Johansson91b9a272005-08-09 20:24:39 -0700943 pos = tn->pos + tn->bits;
Robert Olsson19baf832005-06-21 12:43:18 -0700944 n = tnode_get_child(tn, tkey_extract_bits(key, tn->pos, tn->bits));
Olof Johansson91b9a272005-08-09 20:24:39 -0700945 } else
Robert Olsson19baf832005-06-21 12:43:18 -0700946 break;
947 }
948 /* Case we have found a leaf. Compare prefixes */
949
Olof Johansson91b9a272005-08-09 20:24:39 -0700950 if (n != NULL && IS_LEAF(n) && tkey_equals(key, n->key))
951 return (struct leaf *)n;
952
Robert Olsson19baf832005-06-21 12:43:18 -0700953 return NULL;
954}
955
956static struct node *trie_rebalance(struct trie *t, struct tnode *tn)
957{
Robert Olsson19baf832005-06-21 12:43:18 -0700958 int wasfull;
Stephen Hemminger06801912007-08-10 15:22:13 -0700959 t_key cindex, key = tn->key;
960 struct tnode *tp;
Robert Olsson19baf832005-06-21 12:43:18 -0700961
Stephen Hemminger06801912007-08-10 15:22:13 -0700962 while (tn != NULL && (tp = node_parent((struct node *)tn)) != NULL) {
Robert Olsson19baf832005-06-21 12:43:18 -0700963 cindex = tkey_extract_bits(key, tp->pos, tp->bits);
964 wasfull = tnode_full(tp, tnode_get_child(tp, cindex));
965 tn = (struct tnode *) resize (t, (struct tnode *)tn);
966 tnode_put_child_reorg((struct tnode *)tp, cindex,(struct node*)tn, wasfull);
Olof Johansson91b9a272005-08-09 20:24:39 -0700967
Stephen Hemminger06801912007-08-10 15:22:13 -0700968 tp = node_parent((struct node *) tn);
969 if (!tp)
Robert Olsson19baf832005-06-21 12:43:18 -0700970 break;
Stephen Hemminger06801912007-08-10 15:22:13 -0700971 tn = tp;
Robert Olsson19baf832005-06-21 12:43:18 -0700972 }
Stephen Hemminger06801912007-08-10 15:22:13 -0700973
Robert Olsson19baf832005-06-21 12:43:18 -0700974 /* Handle last (top) tnode */
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700975 if (IS_TNODE(tn))
Robert Olsson19baf832005-06-21 12:43:18 -0700976 tn = (struct tnode*) resize(t, (struct tnode *)tn);
977
978 return (struct node*) tn;
979}
980
Robert Olsson2373ce12005-08-25 13:01:29 -0700981/* only used from updater-side */
982
Stephen Hemmingerfea86ad2008-01-12 20:57:07 -0800983static struct list_head *fib_insert_node(struct trie *t, u32 key, int plen)
Robert Olsson19baf832005-06-21 12:43:18 -0700984{
985 int pos, newpos;
986 struct tnode *tp = NULL, *tn = NULL;
987 struct node *n;
988 struct leaf *l;
989 int missbit;
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700990 struct list_head *fa_head = NULL;
Robert Olsson19baf832005-06-21 12:43:18 -0700991 struct leaf_info *li;
992 t_key cindex;
993
994 pos = 0;
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700995 n = t->trie;
Robert Olsson19baf832005-06-21 12:43:18 -0700996
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700997 /* If we point to NULL, stop. Either the tree is empty and we should
998 * just put a new leaf in if, or we have reached an empty child slot,
Robert Olsson19baf832005-06-21 12:43:18 -0700999 * and we should just put our new leaf in that.
Stephen Hemmingerc877efb2005-07-19 14:01:51 -07001000 * If we point to a T_TNODE, check if it matches our key. Note that
1001 * a T_TNODE might be skipping any number of bits - its 'pos' need
Robert Olsson19baf832005-06-21 12:43:18 -07001002 * not be the parent's 'pos'+'bits'!
1003 *
Stephen Hemmingerc877efb2005-07-19 14:01:51 -07001004 * If it does match the current key, get pos/bits from it, extract
Robert Olsson19baf832005-06-21 12:43:18 -07001005 * the index from our key, push the T_TNODE and walk the tree.
1006 *
1007 * If it doesn't, we have to replace it with a new T_TNODE.
1008 *
Stephen Hemmingerc877efb2005-07-19 14:01:51 -07001009 * If we point to a T_LEAF, it might or might not have the same key
1010 * as we do. If it does, just change the value, update the T_LEAF's
1011 * value, and return it.
Robert Olsson19baf832005-06-21 12:43:18 -07001012 * If it doesn't, we need to replace it with a T_TNODE.
1013 */
1014
1015 while (n != NULL && NODE_TYPE(n) == T_TNODE) {
1016 tn = (struct tnode *) n;
Olof Johansson91b9a272005-08-09 20:24:39 -07001017
Stephen Hemmingerc877efb2005-07-19 14:01:51 -07001018 check_tnode(tn);
Olof Johansson91b9a272005-08-09 20:24:39 -07001019
Stephen Hemmingerc877efb2005-07-19 14:01:51 -07001020 if (tkey_sub_equals(tn->key, pos, tn->pos-pos, key)) {
Robert Olsson19baf832005-06-21 12:43:18 -07001021 tp = tn;
Olof Johansson91b9a272005-08-09 20:24:39 -07001022 pos = tn->pos + tn->bits;
Robert Olsson19baf832005-06-21 12:43:18 -07001023 n = tnode_get_child(tn, tkey_extract_bits(key, tn->pos, tn->bits));
1024
Stephen Hemminger06801912007-08-10 15:22:13 -07001025 BUG_ON(n && node_parent(n) != tn);
Olof Johansson91b9a272005-08-09 20:24:39 -07001026 } else
Robert Olsson19baf832005-06-21 12:43:18 -07001027 break;
1028 }
1029
1030 /*
1031 * n ----> NULL, LEAF or TNODE
1032 *
Stephen Hemmingerc877efb2005-07-19 14:01:51 -07001033 * tp is n's (parent) ----> NULL or TNODE
Robert Olsson19baf832005-06-21 12:43:18 -07001034 */
1035
Olof Johansson91b9a272005-08-09 20:24:39 -07001036 BUG_ON(tp && IS_LEAF(tp));
Robert Olsson19baf832005-06-21 12:43:18 -07001037
1038 /* Case 1: n is a leaf. Compare prefixes */
1039
Stephen Hemmingerc877efb2005-07-19 14:01:51 -07001040 if (n != NULL && IS_LEAF(n) && tkey_equals(key, n->key)) {
Olof Johansson91b9a272005-08-09 20:24:39 -07001041 struct leaf *l = (struct leaf *) n;
1042
Robert Olsson19baf832005-06-21 12:43:18 -07001043 li = leaf_info_new(plen);
Olof Johansson91b9a272005-08-09 20:24:39 -07001044
Stephen Hemmingerfea86ad2008-01-12 20:57:07 -08001045 if (!li)
1046 return NULL;
Robert Olsson19baf832005-06-21 12:43:18 -07001047
1048 fa_head = &li->falh;
1049 insert_leaf_info(&l->list, li);
1050 goto done;
1051 }
1052 t->size++;
1053 l = leaf_new();
1054
Stephen Hemmingerfea86ad2008-01-12 20:57:07 -08001055 if (!l)
1056 return NULL;
Robert Olsson19baf832005-06-21 12:43:18 -07001057
1058 l->key = key;
1059 li = leaf_info_new(plen);
1060
Stephen Hemmingerc877efb2005-07-19 14:01:51 -07001061 if (!li) {
Robert Olssonf835e472005-06-28 15:00:39 -07001062 tnode_free((struct tnode *) l);
Stephen Hemmingerfea86ad2008-01-12 20:57:07 -08001063 return NULL;
Robert Olssonf835e472005-06-28 15:00:39 -07001064 }
Robert Olsson19baf832005-06-21 12:43:18 -07001065
1066 fa_head = &li->falh;
1067 insert_leaf_info(&l->list, li);
1068
Robert Olsson19baf832005-06-21 12:43:18 -07001069 if (t->trie && n == NULL) {
Olof Johansson91b9a272005-08-09 20:24:39 -07001070 /* Case 2: n is NULL, and will just insert a new leaf */
Robert Olsson19baf832005-06-21 12:43:18 -07001071
Stephen Hemminger06801912007-08-10 15:22:13 -07001072 node_set_parent((struct node *)l, tp);
Robert Olsson19baf832005-06-21 12:43:18 -07001073
Olof Johansson91b9a272005-08-09 20:24:39 -07001074 cindex = tkey_extract_bits(key, tp->pos, tp->bits);
1075 put_child(t, (struct tnode *)tp, cindex, (struct node *)l);
1076 } else {
1077 /* Case 3: n is a LEAF or a TNODE and the key doesn't match. */
Stephen Hemmingerc877efb2005-07-19 14:01:51 -07001078 /*
1079 * Add a new tnode here
Robert Olsson19baf832005-06-21 12:43:18 -07001080 * first tnode need some special handling
1081 */
1082
1083 if (tp)
Olof Johansson91b9a272005-08-09 20:24:39 -07001084 pos = tp->pos+tp->bits;
Robert Olsson19baf832005-06-21 12:43:18 -07001085 else
Olof Johansson91b9a272005-08-09 20:24:39 -07001086 pos = 0;
1087
Stephen Hemmingerc877efb2005-07-19 14:01:51 -07001088 if (n) {
Robert Olsson19baf832005-06-21 12:43:18 -07001089 newpos = tkey_mismatch(key, pos, n->key);
1090 tn = tnode_new(n->key, newpos, 1);
Olof Johansson91b9a272005-08-09 20:24:39 -07001091 } else {
Robert Olsson19baf832005-06-21 12:43:18 -07001092 newpos = 0;
Stephen Hemmingerc877efb2005-07-19 14:01:51 -07001093 tn = tnode_new(key, newpos, 1); /* First tnode */
Robert Olsson19baf832005-06-21 12:43:18 -07001094 }
Robert Olsson19baf832005-06-21 12:43:18 -07001095
Stephen Hemmingerc877efb2005-07-19 14:01:51 -07001096 if (!tn) {
Robert Olssonf835e472005-06-28 15:00:39 -07001097 free_leaf_info(li);
1098 tnode_free((struct tnode *) l);
Stephen Hemmingerfea86ad2008-01-12 20:57:07 -08001099 return NULL;
Olof Johansson91b9a272005-08-09 20:24:39 -07001100 }
1101
Stephen Hemminger06801912007-08-10 15:22:13 -07001102 node_set_parent((struct node *)tn, tp);
Robert Olsson19baf832005-06-21 12:43:18 -07001103
Olof Johansson91b9a272005-08-09 20:24:39 -07001104 missbit = tkey_extract_bits(key, newpos, 1);
Robert Olsson19baf832005-06-21 12:43:18 -07001105 put_child(t, tn, missbit, (struct node *)l);
1106 put_child(t, tn, 1-missbit, n);
1107
Stephen Hemmingerc877efb2005-07-19 14:01:51 -07001108 if (tp) {
Robert Olsson19baf832005-06-21 12:43:18 -07001109 cindex = tkey_extract_bits(key, tp->pos, tp->bits);
1110 put_child(t, (struct tnode *)tp, cindex, (struct node *)tn);
Olof Johansson91b9a272005-08-09 20:24:39 -07001111 } else {
Robert Olsson2373ce12005-08-25 13:01:29 -07001112 rcu_assign_pointer(t->trie, (struct node *)tn); /* First tnode */
Robert Olsson19baf832005-06-21 12:43:18 -07001113 tp = tn;
1114 }
1115 }
Olof Johansson91b9a272005-08-09 20:24:39 -07001116
1117 if (tp && tp->pos + tp->bits > 32)
Stephen Hemminger78c66712005-09-21 00:15:39 -07001118 printk(KERN_WARNING "fib_trie tp=%p pos=%d, bits=%d, key=%0x plen=%d\n",
Robert Olsson19baf832005-06-21 12:43:18 -07001119 tp, tp->pos, tp->bits, key, plen);
Olof Johansson91b9a272005-08-09 20:24:39 -07001120
Robert Olsson19baf832005-06-21 12:43:18 -07001121 /* Rebalance the trie */
Robert Olsson2373ce12005-08-25 13:01:29 -07001122
1123 rcu_assign_pointer(t->trie, trie_rebalance(t, tp));
Robert Olssonf835e472005-06-28 15:00:39 -07001124done:
Robert Olsson19baf832005-06-21 12:43:18 -07001125 return fa_head;
1126}
1127
Robert Olssond562f1f2007-03-26 14:22:22 -07001128/*
1129 * Caller must hold RTNL.
1130 */
Thomas Graf4e902c52006-08-17 18:14:52 -07001131static int fn_trie_insert(struct fib_table *tb, struct fib_config *cfg)
Robert Olsson19baf832005-06-21 12:43:18 -07001132{
1133 struct trie *t = (struct trie *) tb->tb_data;
1134 struct fib_alias *fa, *new_fa;
Stephen Hemmingerc877efb2005-07-19 14:01:51 -07001135 struct list_head *fa_head = NULL;
Robert Olsson19baf832005-06-21 12:43:18 -07001136 struct fib_info *fi;
Thomas Graf4e902c52006-08-17 18:14:52 -07001137 int plen = cfg->fc_dst_len;
1138 u8 tos = cfg->fc_tos;
Robert Olsson19baf832005-06-21 12:43:18 -07001139 u32 key, mask;
1140 int err;
1141 struct leaf *l;
1142
1143 if (plen > 32)
1144 return -EINVAL;
1145
Thomas Graf4e902c52006-08-17 18:14:52 -07001146 key = ntohl(cfg->fc_dst);
Robert Olsson19baf832005-06-21 12:43:18 -07001147
Patrick McHardy2dfe55b2006-08-10 23:08:33 -07001148 pr_debug("Insert table=%u %08x/%d\n", tb->tb_id, key, plen);
Robert Olsson19baf832005-06-21 12:43:18 -07001149
Olof Johansson91b9a272005-08-09 20:24:39 -07001150 mask = ntohl(inet_make_mask(plen));
Robert Olsson19baf832005-06-21 12:43:18 -07001151
Stephen Hemmingerc877efb2005-07-19 14:01:51 -07001152 if (key & ~mask)
Robert Olsson19baf832005-06-21 12:43:18 -07001153 return -EINVAL;
1154
1155 key = key & mask;
1156
Thomas Graf4e902c52006-08-17 18:14:52 -07001157 fi = fib_create_info(cfg);
1158 if (IS_ERR(fi)) {
1159 err = PTR_ERR(fi);
Robert Olsson19baf832005-06-21 12:43:18 -07001160 goto err;
Thomas Graf4e902c52006-08-17 18:14:52 -07001161 }
Robert Olsson19baf832005-06-21 12:43:18 -07001162
1163 l = fib_find_node(t, key);
Stephen Hemmingerc877efb2005-07-19 14:01:51 -07001164 fa = NULL;
Robert Olsson19baf832005-06-21 12:43:18 -07001165
Stephen Hemmingerc877efb2005-07-19 14:01:51 -07001166 if (l) {
Robert Olsson19baf832005-06-21 12:43:18 -07001167 fa_head = get_fa_head(l, plen);
1168 fa = fib_find_alias(fa_head, tos, fi->fib_priority);
1169 }
1170
1171 /* Now fa, if non-NULL, points to the first fib alias
1172 * with the same keys [prefix,tos,priority], if such key already
1173 * exists or to the node before which we will insert new one.
1174 *
1175 * If fa is NULL, we will need to allocate a new one and
1176 * insert to the head of f.
1177 *
1178 * If f is NULL, no fib node matched the destination key
1179 * and we need to allocate a new one of those as well.
1180 */
1181
Olof Johansson91b9a272005-08-09 20:24:39 -07001182 if (fa && fa->fa_info->fib_priority == fi->fib_priority) {
Robert Olsson19baf832005-06-21 12:43:18 -07001183 struct fib_alias *fa_orig;
1184
1185 err = -EEXIST;
Thomas Graf4e902c52006-08-17 18:14:52 -07001186 if (cfg->fc_nlflags & NLM_F_EXCL)
Robert Olsson19baf832005-06-21 12:43:18 -07001187 goto out;
1188
Thomas Graf4e902c52006-08-17 18:14:52 -07001189 if (cfg->fc_nlflags & NLM_F_REPLACE) {
Robert Olsson19baf832005-06-21 12:43:18 -07001190 struct fib_info *fi_drop;
1191 u8 state;
1192
Joonwoo Park67250332008-01-18 03:45:18 -08001193 if (fi->fib_treeref > 1)
1194 goto out;
1195
Robert Olsson2373ce12005-08-25 13:01:29 -07001196 err = -ENOBUFS;
Christoph Lametere94b1762006-12-06 20:33:17 -08001197 new_fa = kmem_cache_alloc(fn_alias_kmem, GFP_KERNEL);
Robert Olsson2373ce12005-08-25 13:01:29 -07001198 if (new_fa == NULL)
1199 goto out;
Robert Olsson19baf832005-06-21 12:43:18 -07001200
1201 fi_drop = fa->fa_info;
Robert Olsson2373ce12005-08-25 13:01:29 -07001202 new_fa->fa_tos = fa->fa_tos;
1203 new_fa->fa_info = fi;
Thomas Graf4e902c52006-08-17 18:14:52 -07001204 new_fa->fa_type = cfg->fc_type;
1205 new_fa->fa_scope = cfg->fc_scope;
Robert Olsson19baf832005-06-21 12:43:18 -07001206 state = fa->fa_state;
Robert Olsson2373ce12005-08-25 13:01:29 -07001207 new_fa->fa_state &= ~FA_S_ACCESSED;
Robert Olsson19baf832005-06-21 12:43:18 -07001208
Robert Olsson2373ce12005-08-25 13:01:29 -07001209 list_replace_rcu(&fa->fa_list, &new_fa->fa_list);
1210 alias_free_mem_rcu(fa);
Robert Olsson19baf832005-06-21 12:43:18 -07001211
1212 fib_release_info(fi_drop);
1213 if (state & FA_S_ACCESSED)
Olof Johansson91b9a272005-08-09 20:24:39 -07001214 rt_cache_flush(-1);
Milan Kocianb8f55832007-05-23 14:55:06 -07001215 rtmsg_fib(RTM_NEWROUTE, htonl(key), new_fa, plen,
1216 tb->tb_id, &cfg->fc_nlinfo, NLM_F_REPLACE);
Robert Olsson19baf832005-06-21 12:43:18 -07001217
Olof Johansson91b9a272005-08-09 20:24:39 -07001218 goto succeeded;
Robert Olsson19baf832005-06-21 12:43:18 -07001219 }
1220 /* Error if we find a perfect match which
1221 * uses the same scope, type, and nexthop
1222 * information.
1223 */
1224 fa_orig = fa;
1225 list_for_each_entry(fa, fa_orig->fa_list.prev, fa_list) {
1226 if (fa->fa_tos != tos)
1227 break;
1228 if (fa->fa_info->fib_priority != fi->fib_priority)
1229 break;
Thomas Graf4e902c52006-08-17 18:14:52 -07001230 if (fa->fa_type == cfg->fc_type &&
1231 fa->fa_scope == cfg->fc_scope &&
Robert Olsson19baf832005-06-21 12:43:18 -07001232 fa->fa_info == fi) {
1233 goto out;
1234 }
1235 }
Thomas Graf4e902c52006-08-17 18:14:52 -07001236 if (!(cfg->fc_nlflags & NLM_F_APPEND))
Robert Olsson19baf832005-06-21 12:43:18 -07001237 fa = fa_orig;
1238 }
1239 err = -ENOENT;
Thomas Graf4e902c52006-08-17 18:14:52 -07001240 if (!(cfg->fc_nlflags & NLM_F_CREATE))
Robert Olsson19baf832005-06-21 12:43:18 -07001241 goto out;
1242
1243 err = -ENOBUFS;
Christoph Lametere94b1762006-12-06 20:33:17 -08001244 new_fa = kmem_cache_alloc(fn_alias_kmem, GFP_KERNEL);
Robert Olsson19baf832005-06-21 12:43:18 -07001245 if (new_fa == NULL)
1246 goto out;
1247
1248 new_fa->fa_info = fi;
1249 new_fa->fa_tos = tos;
Thomas Graf4e902c52006-08-17 18:14:52 -07001250 new_fa->fa_type = cfg->fc_type;
1251 new_fa->fa_scope = cfg->fc_scope;
Robert Olsson19baf832005-06-21 12:43:18 -07001252 new_fa->fa_state = 0;
Robert Olsson19baf832005-06-21 12:43:18 -07001253 /*
1254 * Insert new entry to the list.
1255 */
1256
Stephen Hemmingerc877efb2005-07-19 14:01:51 -07001257 if (!fa_head) {
Stephen Hemmingerfea86ad2008-01-12 20:57:07 -08001258 fa_head = fib_insert_node(t, key, plen);
1259 if (unlikely(!fa_head)) {
1260 err = -ENOMEM;
Robert Olssonf835e472005-06-28 15:00:39 -07001261 goto out_free_new_fa;
Stephen Hemmingerfea86ad2008-01-12 20:57:07 -08001262 }
Robert Olssonf835e472005-06-28 15:00:39 -07001263 }
Robert Olsson19baf832005-06-21 12:43:18 -07001264
Robert Olsson2373ce12005-08-25 13:01:29 -07001265 list_add_tail_rcu(&new_fa->fa_list,
1266 (fa ? &fa->fa_list : fa_head));
Robert Olsson19baf832005-06-21 12:43:18 -07001267
1268 rt_cache_flush(-1);
Thomas Graf4e902c52006-08-17 18:14:52 -07001269 rtmsg_fib(RTM_NEWROUTE, htonl(key), new_fa, plen, tb->tb_id,
Milan Kocianb8f55832007-05-23 14:55:06 -07001270 &cfg->fc_nlinfo, 0);
Robert Olsson19baf832005-06-21 12:43:18 -07001271succeeded:
1272 return 0;
Robert Olssonf835e472005-06-28 15:00:39 -07001273
1274out_free_new_fa:
1275 kmem_cache_free(fn_alias_kmem, new_fa);
Robert Olsson19baf832005-06-21 12:43:18 -07001276out:
1277 fib_release_info(fi);
Olof Johansson91b9a272005-08-09 20:24:39 -07001278err:
Robert Olsson19baf832005-06-21 12:43:18 -07001279 return err;
1280}
1281
Robert Olsson2373ce12005-08-25 13:01:29 -07001282
Robert Olsson772cb712005-09-19 15:31:18 -07001283/* should be called with rcu_read_lock */
Stephen Hemminger0c7770c2005-08-23 21:59:41 -07001284static inline int check_leaf(struct trie *t, struct leaf *l,
1285 t_key key, int *plen, const struct flowi *flp,
Patrick McHardy06c74272005-08-23 22:06:09 -07001286 struct fib_result *res)
Robert Olsson19baf832005-06-21 12:43:18 -07001287{
Patrick McHardy06c74272005-08-23 22:06:09 -07001288 int err, i;
Al Viro888454c2006-09-19 13:42:46 -07001289 __be32 mask;
Robert Olsson19baf832005-06-21 12:43:18 -07001290 struct leaf_info *li;
1291 struct hlist_head *hhead = &l->list;
1292 struct hlist_node *node;
Stephen Hemmingerc877efb2005-07-19 14:01:51 -07001293
Robert Olsson2373ce12005-08-25 13:01:29 -07001294 hlist_for_each_entry_rcu(li, node, hhead, hlist) {
Robert Olsson19baf832005-06-21 12:43:18 -07001295 i = li->plen;
Al Viro888454c2006-09-19 13:42:46 -07001296 mask = inet_make_mask(i);
1297 if (l->key != (key & ntohl(mask)))
Robert Olsson19baf832005-06-21 12:43:18 -07001298 continue;
1299
Al Viro888454c2006-09-19 13:42:46 -07001300 if ((err = fib_semantic_match(&li->falh, flp, res, htonl(l->key), mask, i)) <= 0) {
Robert Olsson19baf832005-06-21 12:43:18 -07001301 *plen = i;
1302#ifdef CONFIG_IP_FIB_TRIE_STATS
1303 t->stats.semantic_match_passed++;
1304#endif
Patrick McHardy06c74272005-08-23 22:06:09 -07001305 return err;
Robert Olsson19baf832005-06-21 12:43:18 -07001306 }
1307#ifdef CONFIG_IP_FIB_TRIE_STATS
1308 t->stats.semantic_match_miss++;
1309#endif
1310 }
Patrick McHardy06c74272005-08-23 22:06:09 -07001311 return 1;
Robert Olsson19baf832005-06-21 12:43:18 -07001312}
1313
1314static int
1315fn_trie_lookup(struct fib_table *tb, const struct flowi *flp, struct fib_result *res)
1316{
1317 struct trie *t = (struct trie *) tb->tb_data;
1318 int plen, ret = 0;
1319 struct node *n;
1320 struct tnode *pn;
1321 int pos, bits;
Olof Johansson91b9a272005-08-09 20:24:39 -07001322 t_key key = ntohl(flp->fl4_dst);
Robert Olsson19baf832005-06-21 12:43:18 -07001323 int chopped_off;
1324 t_key cindex = 0;
1325 int current_prefix_length = KEYLENGTH;
Olof Johansson91b9a272005-08-09 20:24:39 -07001326 struct tnode *cn;
1327 t_key node_prefix, key_prefix, pref_mismatch;
1328 int mp;
1329
Robert Olsson2373ce12005-08-25 13:01:29 -07001330 rcu_read_lock();
Robert Olsson19baf832005-06-21 12:43:18 -07001331
Robert Olsson2373ce12005-08-25 13:01:29 -07001332 n = rcu_dereference(t->trie);
Stephen Hemmingerc877efb2005-07-19 14:01:51 -07001333 if (!n)
Robert Olsson19baf832005-06-21 12:43:18 -07001334 goto failed;
1335
1336#ifdef CONFIG_IP_FIB_TRIE_STATS
1337 t->stats.gets++;
1338#endif
1339
1340 /* Just a leaf? */
1341 if (IS_LEAF(n)) {
Patrick McHardy06c74272005-08-23 22:06:09 -07001342 if ((ret = check_leaf(t, (struct leaf *)n, key, &plen, flp, res)) <= 0)
Robert Olsson19baf832005-06-21 12:43:18 -07001343 goto found;
1344 goto failed;
1345 }
1346 pn = (struct tnode *) n;
1347 chopped_off = 0;
Stephen Hemmingerc877efb2005-07-19 14:01:51 -07001348
Olof Johansson91b9a272005-08-09 20:24:39 -07001349 while (pn) {
Robert Olsson19baf832005-06-21 12:43:18 -07001350 pos = pn->pos;
1351 bits = pn->bits;
1352
Stephen Hemmingerc877efb2005-07-19 14:01:51 -07001353 if (!chopped_off)
Stephen Hemmingerab66b4a2007-08-10 15:22:58 -07001354 cindex = tkey_extract_bits(mask_pfx(key, current_prefix_length),
1355 pos, bits);
Robert Olsson19baf832005-06-21 12:43:18 -07001356
1357 n = tnode_get_child(pn, cindex);
1358
1359 if (n == NULL) {
1360#ifdef CONFIG_IP_FIB_TRIE_STATS
1361 t->stats.null_node_hit++;
1362#endif
1363 goto backtrace;
1364 }
1365
Stephen Hemmingerc877efb2005-07-19 14:01:51 -07001366 if (IS_LEAF(n)) {
Patrick McHardy06c74272005-08-23 22:06:09 -07001367 if ((ret = check_leaf(t, (struct leaf *)n, key, &plen, flp, res)) <= 0)
Robert Olsson19baf832005-06-21 12:43:18 -07001368 goto found;
Olof Johansson91b9a272005-08-09 20:24:39 -07001369 else
1370 goto backtrace;
1371 }
1372
1373#define HL_OPTIMIZE
1374#ifdef HL_OPTIMIZE
1375 cn = (struct tnode *)n;
1376
1377 /*
1378 * It's a tnode, and we can do some extra checks here if we
1379 * like, to avoid descending into a dead-end branch.
1380 * This tnode is in the parent's child array at index
1381 * key[p_pos..p_pos+p_bits] but potentially with some bits
1382 * chopped off, so in reality the index may be just a
1383 * subprefix, padded with zero at the end.
1384 * We can also take a look at any skipped bits in this
1385 * tnode - everything up to p_pos is supposed to be ok,
1386 * and the non-chopped bits of the index (se previous
1387 * paragraph) are also guaranteed ok, but the rest is
1388 * considered unknown.
1389 *
1390 * The skipped bits are key[pos+bits..cn->pos].
1391 */
1392
1393 /* If current_prefix_length < pos+bits, we are already doing
1394 * actual prefix matching, which means everything from
1395 * pos+(bits-chopped_off) onward must be zero along some
1396 * branch of this subtree - otherwise there is *no* valid
1397 * prefix present. Here we can only check the skipped
1398 * bits. Remember, since we have already indexed into the
1399 * parent's child array, we know that the bits we chopped of
1400 * *are* zero.
1401 */
1402
1403 /* NOTA BENE: CHECKING ONLY SKIPPED BITS FOR THE NEW NODE HERE */
1404
1405 if (current_prefix_length < pos+bits) {
1406 if (tkey_extract_bits(cn->key, current_prefix_length,
1407 cn->pos - current_prefix_length) != 0 ||
1408 !(cn->child[0]))
1409 goto backtrace;
1410 }
1411
1412 /*
1413 * If chopped_off=0, the index is fully validated and we
1414 * only need to look at the skipped bits for this, the new,
1415 * tnode. What we actually want to do is to find out if
1416 * these skipped bits match our key perfectly, or if we will
1417 * have to count on finding a matching prefix further down,
1418 * because if we do, we would like to have some way of
1419 * verifying the existence of such a prefix at this point.
1420 */
1421
1422 /* The only thing we can do at this point is to verify that
1423 * any such matching prefix can indeed be a prefix to our
1424 * key, and if the bits in the node we are inspecting that
1425 * do not match our key are not ZERO, this cannot be true.
1426 * Thus, find out where there is a mismatch (before cn->pos)
1427 * and verify that all the mismatching bits are zero in the
1428 * new tnode's key.
1429 */
1430
1431 /* Note: We aren't very concerned about the piece of the key
1432 * that precede pn->pos+pn->bits, since these have already been
1433 * checked. The bits after cn->pos aren't checked since these are
1434 * by definition "unknown" at this point. Thus, what we want to
1435 * see is if we are about to enter the "prefix matching" state,
1436 * and in that case verify that the skipped bits that will prevail
1437 * throughout this subtree are zero, as they have to be if we are
1438 * to find a matching prefix.
1439 */
1440
Stephen Hemmingerab66b4a2007-08-10 15:22:58 -07001441 node_prefix = mask_pfx(cn->key, cn->pos);
1442 key_prefix = mask_pfx(key, cn->pos);
Olof Johansson91b9a272005-08-09 20:24:39 -07001443 pref_mismatch = key_prefix^node_prefix;
1444 mp = 0;
1445
1446 /* In short: If skipped bits in this node do not match the search
1447 * key, enter the "prefix matching" state.directly.
1448 */
1449 if (pref_mismatch) {
1450 while (!(pref_mismatch & (1<<(KEYLENGTH-1)))) {
1451 mp++;
1452 pref_mismatch = pref_mismatch <<1;
1453 }
1454 key_prefix = tkey_extract_bits(cn->key, mp, cn->pos-mp);
1455
1456 if (key_prefix != 0)
1457 goto backtrace;
1458
1459 if (current_prefix_length >= cn->pos)
1460 current_prefix_length = mp;
1461 }
1462#endif
1463 pn = (struct tnode *)n; /* Descend */
1464 chopped_off = 0;
1465 continue;
1466
Robert Olsson19baf832005-06-21 12:43:18 -07001467backtrace:
1468 chopped_off++;
1469
1470 /* As zero don't change the child key (cindex) */
Olof Johansson91b9a272005-08-09 20:24:39 -07001471 while ((chopped_off <= pn->bits) && !(cindex & (1<<(chopped_off-1))))
Robert Olsson19baf832005-06-21 12:43:18 -07001472 chopped_off++;
Robert Olsson19baf832005-06-21 12:43:18 -07001473
1474 /* Decrease current_... with bits chopped off */
1475 if (current_prefix_length > pn->pos + pn->bits - chopped_off)
1476 current_prefix_length = pn->pos + pn->bits - chopped_off;
Olof Johansson91b9a272005-08-09 20:24:39 -07001477
Robert Olsson19baf832005-06-21 12:43:18 -07001478 /*
Stephen Hemmingerc877efb2005-07-19 14:01:51 -07001479 * Either we do the actual chop off according or if we have
Robert Olsson19baf832005-06-21 12:43:18 -07001480 * chopped off all bits in this tnode walk up to our parent.
1481 */
1482
Olof Johansson91b9a272005-08-09 20:24:39 -07001483 if (chopped_off <= pn->bits) {
Robert Olsson19baf832005-06-21 12:43:18 -07001484 cindex &= ~(1 << (chopped_off-1));
Olof Johansson91b9a272005-08-09 20:24:39 -07001485 } else {
Stephen Hemminger06801912007-08-10 15:22:13 -07001486 struct tnode *parent = node_parent((struct node *) pn);
1487 if (!parent)
Robert Olsson19baf832005-06-21 12:43:18 -07001488 goto failed;
Olof Johansson91b9a272005-08-09 20:24:39 -07001489
Robert Olsson19baf832005-06-21 12:43:18 -07001490 /* Get Child's index */
Stephen Hemminger06801912007-08-10 15:22:13 -07001491 cindex = tkey_extract_bits(pn->key, parent->pos, parent->bits);
1492 pn = parent;
Robert Olsson19baf832005-06-21 12:43:18 -07001493 chopped_off = 0;
1494
1495#ifdef CONFIG_IP_FIB_TRIE_STATS
1496 t->stats.backtrack++;
1497#endif
1498 goto backtrace;
Stephen Hemmingerc877efb2005-07-19 14:01:51 -07001499 }
Robert Olsson19baf832005-06-21 12:43:18 -07001500 }
1501failed:
Stephen Hemmingerc877efb2005-07-19 14:01:51 -07001502 ret = 1;
Robert Olsson19baf832005-06-21 12:43:18 -07001503found:
Robert Olsson2373ce12005-08-25 13:01:29 -07001504 rcu_read_unlock();
Robert Olsson19baf832005-06-21 12:43:18 -07001505 return ret;
1506}
1507
Robert Olsson2373ce12005-08-25 13:01:29 -07001508/* only called from updater side */
Robert Olsson19baf832005-06-21 12:43:18 -07001509static int trie_leaf_remove(struct trie *t, t_key key)
1510{
1511 t_key cindex;
1512 struct tnode *tp = NULL;
1513 struct node *n = t->trie;
1514 struct leaf *l;
1515
Stephen Hemminger0c7770c2005-08-23 21:59:41 -07001516 pr_debug("entering trie_leaf_remove(%p)\n", n);
Robert Olsson19baf832005-06-21 12:43:18 -07001517
1518 /* Note that in the case skipped bits, those bits are *not* checked!
Stephen Hemmingerc877efb2005-07-19 14:01:51 -07001519 * When we finish this, we will have NULL or a T_LEAF, and the
Robert Olsson19baf832005-06-21 12:43:18 -07001520 * T_LEAF may or may not match our key.
1521 */
1522
Olof Johansson91b9a272005-08-09 20:24:39 -07001523 while (n != NULL && IS_TNODE(n)) {
Robert Olsson19baf832005-06-21 12:43:18 -07001524 struct tnode *tn = (struct tnode *) n;
1525 check_tnode(tn);
1526 n = tnode_get_child(tn ,tkey_extract_bits(key, tn->pos, tn->bits));
1527
Stephen Hemminger06801912007-08-10 15:22:13 -07001528 BUG_ON(n && node_parent(n) != tn);
Olof Johansson91b9a272005-08-09 20:24:39 -07001529 }
Robert Olsson19baf832005-06-21 12:43:18 -07001530 l = (struct leaf *) n;
1531
Stephen Hemmingerc877efb2005-07-19 14:01:51 -07001532 if (!n || !tkey_equals(l->key, key))
Robert Olsson19baf832005-06-21 12:43:18 -07001533 return 0;
Stephen Hemmingerc877efb2005-07-19 14:01:51 -07001534
1535 /*
1536 * Key found.
1537 * Remove the leaf and rebalance the tree
Robert Olsson19baf832005-06-21 12:43:18 -07001538 */
1539
Robert Olsson19baf832005-06-21 12:43:18 -07001540 t->size--;
1541
Stephen Hemminger06801912007-08-10 15:22:13 -07001542 tp = node_parent(n);
Robert Olsson19baf832005-06-21 12:43:18 -07001543 tnode_free((struct tnode *) n);
1544
Stephen Hemmingerc877efb2005-07-19 14:01:51 -07001545 if (tp) {
Robert Olsson19baf832005-06-21 12:43:18 -07001546 cindex = tkey_extract_bits(key, tp->pos, tp->bits);
1547 put_child(t, (struct tnode *)tp, cindex, NULL);
Robert Olsson2373ce12005-08-25 13:01:29 -07001548 rcu_assign_pointer(t->trie, trie_rebalance(t, tp));
Olof Johansson91b9a272005-08-09 20:24:39 -07001549 } else
Robert Olsson2373ce12005-08-25 13:01:29 -07001550 rcu_assign_pointer(t->trie, NULL);
Robert Olsson19baf832005-06-21 12:43:18 -07001551
1552 return 1;
1553}
1554
Robert Olssond562f1f2007-03-26 14:22:22 -07001555/*
1556 * Caller must hold RTNL.
1557 */
Thomas Graf4e902c52006-08-17 18:14:52 -07001558static int fn_trie_delete(struct fib_table *tb, struct fib_config *cfg)
Robert Olsson19baf832005-06-21 12:43:18 -07001559{
1560 struct trie *t = (struct trie *) tb->tb_data;
1561 u32 key, mask;
Thomas Graf4e902c52006-08-17 18:14:52 -07001562 int plen = cfg->fc_dst_len;
1563 u8 tos = cfg->fc_tos;
Robert Olsson19baf832005-06-21 12:43:18 -07001564 struct fib_alias *fa, *fa_to_delete;
1565 struct list_head *fa_head;
1566 struct leaf *l;
Olof Johansson91b9a272005-08-09 20:24:39 -07001567 struct leaf_info *li;
1568
Stephen Hemmingerc877efb2005-07-19 14:01:51 -07001569 if (plen > 32)
Robert Olsson19baf832005-06-21 12:43:18 -07001570 return -EINVAL;
1571
Thomas Graf4e902c52006-08-17 18:14:52 -07001572 key = ntohl(cfg->fc_dst);
Olof Johansson91b9a272005-08-09 20:24:39 -07001573 mask = ntohl(inet_make_mask(plen));
Robert Olsson19baf832005-06-21 12:43:18 -07001574
Stephen Hemmingerc877efb2005-07-19 14:01:51 -07001575 if (key & ~mask)
Robert Olsson19baf832005-06-21 12:43:18 -07001576 return -EINVAL;
1577
1578 key = key & mask;
1579 l = fib_find_node(t, key);
1580
Stephen Hemmingerc877efb2005-07-19 14:01:51 -07001581 if (!l)
Robert Olsson19baf832005-06-21 12:43:18 -07001582 return -ESRCH;
1583
1584 fa_head = get_fa_head(l, plen);
1585 fa = fib_find_alias(fa_head, tos, 0);
1586
1587 if (!fa)
1588 return -ESRCH;
1589
Stephen Hemminger0c7770c2005-08-23 21:59:41 -07001590 pr_debug("Deleting %08x/%d tos=%d t=%p\n", key, plen, tos, t);
Robert Olsson19baf832005-06-21 12:43:18 -07001591
1592 fa_to_delete = NULL;
1593 fa_head = fa->fa_list.prev;
Robert Olsson2373ce12005-08-25 13:01:29 -07001594
Robert Olsson19baf832005-06-21 12:43:18 -07001595 list_for_each_entry(fa, fa_head, fa_list) {
1596 struct fib_info *fi = fa->fa_info;
1597
1598 if (fa->fa_tos != tos)
1599 break;
1600
Thomas Graf4e902c52006-08-17 18:14:52 -07001601 if ((!cfg->fc_type || fa->fa_type == cfg->fc_type) &&
1602 (cfg->fc_scope == RT_SCOPE_NOWHERE ||
1603 fa->fa_scope == cfg->fc_scope) &&
1604 (!cfg->fc_protocol ||
1605 fi->fib_protocol == cfg->fc_protocol) &&
1606 fib_nh_match(cfg, fi) == 0) {
Robert Olsson19baf832005-06-21 12:43:18 -07001607 fa_to_delete = fa;
1608 break;
1609 }
1610 }
1611
Olof Johansson91b9a272005-08-09 20:24:39 -07001612 if (!fa_to_delete)
1613 return -ESRCH;
Robert Olsson19baf832005-06-21 12:43:18 -07001614
Olof Johansson91b9a272005-08-09 20:24:39 -07001615 fa = fa_to_delete;
Thomas Graf4e902c52006-08-17 18:14:52 -07001616 rtmsg_fib(RTM_DELROUTE, htonl(key), fa, plen, tb->tb_id,
Milan Kocianb8f55832007-05-23 14:55:06 -07001617 &cfg->fc_nlinfo, 0);
Robert Olsson19baf832005-06-21 12:43:18 -07001618
Olof Johansson91b9a272005-08-09 20:24:39 -07001619 l = fib_find_node(t, key);
Robert Olsson772cb712005-09-19 15:31:18 -07001620 li = find_leaf_info(l, plen);
Robert Olsson19baf832005-06-21 12:43:18 -07001621
Robert Olsson2373ce12005-08-25 13:01:29 -07001622 list_del_rcu(&fa->fa_list);
Robert Olsson19baf832005-06-21 12:43:18 -07001623
Olof Johansson91b9a272005-08-09 20:24:39 -07001624 if (list_empty(fa_head)) {
Robert Olsson2373ce12005-08-25 13:01:29 -07001625 hlist_del_rcu(&li->hlist);
Olof Johansson91b9a272005-08-09 20:24:39 -07001626 free_leaf_info(li);
Robert Olsson2373ce12005-08-25 13:01:29 -07001627 }
Olof Johansson91b9a272005-08-09 20:24:39 -07001628
1629 if (hlist_empty(&l->list))
1630 trie_leaf_remove(t, key);
1631
1632 if (fa->fa_state & FA_S_ACCESSED)
1633 rt_cache_flush(-1);
1634
Robert Olsson2373ce12005-08-25 13:01:29 -07001635 fib_release_info(fa->fa_info);
1636 alias_free_mem_rcu(fa);
Olof Johansson91b9a272005-08-09 20:24:39 -07001637 return 0;
Robert Olsson19baf832005-06-21 12:43:18 -07001638}
1639
1640static int trie_flush_list(struct trie *t, struct list_head *head)
1641{
1642 struct fib_alias *fa, *fa_node;
1643 int found = 0;
1644
1645 list_for_each_entry_safe(fa, fa_node, head, fa_list) {
1646 struct fib_info *fi = fa->fa_info;
Robert Olsson19baf832005-06-21 12:43:18 -07001647
Robert Olsson2373ce12005-08-25 13:01:29 -07001648 if (fi && (fi->fib_flags & RTNH_F_DEAD)) {
1649 list_del_rcu(&fa->fa_list);
1650 fib_release_info(fa->fa_info);
1651 alias_free_mem_rcu(fa);
Robert Olsson19baf832005-06-21 12:43:18 -07001652 found++;
1653 }
1654 }
1655 return found;
1656}
1657
1658static int trie_flush_leaf(struct trie *t, struct leaf *l)
1659{
1660 int found = 0;
1661 struct hlist_head *lih = &l->list;
1662 struct hlist_node *node, *tmp;
1663 struct leaf_info *li = NULL;
1664
1665 hlist_for_each_entry_safe(li, node, tmp, lih, hlist) {
Robert Olsson19baf832005-06-21 12:43:18 -07001666 found += trie_flush_list(t, &li->falh);
1667
1668 if (list_empty(&li->falh)) {
Robert Olsson2373ce12005-08-25 13:01:29 -07001669 hlist_del_rcu(&li->hlist);
Robert Olsson19baf832005-06-21 12:43:18 -07001670 free_leaf_info(li);
1671 }
1672 }
1673 return found;
1674}
1675
Robert Olsson2373ce12005-08-25 13:01:29 -07001676/* rcu_read_lock needs to be hold by caller from readside */
1677
Robert Olsson19baf832005-06-21 12:43:18 -07001678static struct leaf *nextleaf(struct trie *t, struct leaf *thisleaf)
1679{
1680 struct node *c = (struct node *) thisleaf;
1681 struct tnode *p;
1682 int idx;
Robert Olsson2373ce12005-08-25 13:01:29 -07001683 struct node *trie = rcu_dereference(t->trie);
Robert Olsson19baf832005-06-21 12:43:18 -07001684
Stephen Hemmingerc877efb2005-07-19 14:01:51 -07001685 if (c == NULL) {
Robert Olsson2373ce12005-08-25 13:01:29 -07001686 if (trie == NULL)
Robert Olsson19baf832005-06-21 12:43:18 -07001687 return NULL;
1688
Robert Olsson2373ce12005-08-25 13:01:29 -07001689 if (IS_LEAF(trie)) /* trie w. just a leaf */
1690 return (struct leaf *) trie;
Robert Olsson19baf832005-06-21 12:43:18 -07001691
Robert Olsson2373ce12005-08-25 13:01:29 -07001692 p = (struct tnode*) trie; /* Start */
Olof Johansson91b9a272005-08-09 20:24:39 -07001693 } else
Stephen Hemminger06801912007-08-10 15:22:13 -07001694 p = node_parent(c);
Stephen Hemmingerc877efb2005-07-19 14:01:51 -07001695
Robert Olsson19baf832005-06-21 12:43:18 -07001696 while (p) {
1697 int pos, last;
1698
1699 /* Find the next child of the parent */
Stephen Hemmingerc877efb2005-07-19 14:01:51 -07001700 if (c)
1701 pos = 1 + tkey_extract_bits(c->key, p->pos, p->bits);
1702 else
Robert Olsson19baf832005-06-21 12:43:18 -07001703 pos = 0;
1704
1705 last = 1 << p->bits;
Olof Johansson91b9a272005-08-09 20:24:39 -07001706 for (idx = pos; idx < last ; idx++) {
Robert Olsson2373ce12005-08-25 13:01:29 -07001707 c = rcu_dereference(p->child[idx]);
1708
1709 if (!c)
Olof Johansson91b9a272005-08-09 20:24:39 -07001710 continue;
Robert Olsson19baf832005-06-21 12:43:18 -07001711
Olof Johansson91b9a272005-08-09 20:24:39 -07001712 /* Decend if tnode */
Robert Olsson2373ce12005-08-25 13:01:29 -07001713 while (IS_TNODE(c)) {
1714 p = (struct tnode *) c;
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09001715 idx = 0;
Robert Olsson19baf832005-06-21 12:43:18 -07001716
Olof Johansson91b9a272005-08-09 20:24:39 -07001717 /* Rightmost non-NULL branch */
1718 if (p && IS_TNODE(p))
Robert Olsson2373ce12005-08-25 13:01:29 -07001719 while (!(c = rcu_dereference(p->child[idx]))
1720 && idx < (1<<p->bits)) idx++;
Robert Olsson19baf832005-06-21 12:43:18 -07001721
Olof Johansson91b9a272005-08-09 20:24:39 -07001722 /* Done with this tnode? */
Robert Olsson2373ce12005-08-25 13:01:29 -07001723 if (idx >= (1 << p->bits) || !c)
Olof Johansson91b9a272005-08-09 20:24:39 -07001724 goto up;
Robert Olsson19baf832005-06-21 12:43:18 -07001725 }
Robert Olsson2373ce12005-08-25 13:01:29 -07001726 return (struct leaf *) c;
Robert Olsson19baf832005-06-21 12:43:18 -07001727 }
1728up:
1729 /* No more children go up one step */
Olof Johansson91b9a272005-08-09 20:24:39 -07001730 c = (struct node *) p;
Stephen Hemminger06801912007-08-10 15:22:13 -07001731 p = node_parent(c);
Robert Olsson19baf832005-06-21 12:43:18 -07001732 }
1733 return NULL; /* Ready. Root of trie */
1734}
1735
Robert Olssond562f1f2007-03-26 14:22:22 -07001736/*
1737 * Caller must hold RTNL.
1738 */
Robert Olsson19baf832005-06-21 12:43:18 -07001739static int fn_trie_flush(struct fib_table *tb)
1740{
1741 struct trie *t = (struct trie *) tb->tb_data;
1742 struct leaf *ll = NULL, *l = NULL;
1743 int found = 0, h;
1744
Olof Johansson91b9a272005-08-09 20:24:39 -07001745 for (h = 0; (l = nextleaf(t, l)) != NULL; h++) {
Robert Olsson19baf832005-06-21 12:43:18 -07001746 found += trie_flush_leaf(t, l);
1747
1748 if (ll && hlist_empty(&ll->list))
1749 trie_leaf_remove(t, ll->key);
1750 ll = l;
1751 }
1752
1753 if (ll && hlist_empty(&ll->list))
1754 trie_leaf_remove(t, ll->key);
1755
Stephen Hemminger0c7770c2005-08-23 21:59:41 -07001756 pr_debug("trie_flush found=%d\n", found);
Robert Olsson19baf832005-06-21 12:43:18 -07001757 return found;
1758}
1759
Robert Olsson19baf832005-06-21 12:43:18 -07001760static void
1761fn_trie_select_default(struct fib_table *tb, const struct flowi *flp, struct fib_result *res)
1762{
1763 struct trie *t = (struct trie *) tb->tb_data;
1764 int order, last_idx;
1765 struct fib_info *fi = NULL;
1766 struct fib_info *last_resort;
1767 struct fib_alias *fa = NULL;
1768 struct list_head *fa_head;
1769 struct leaf *l;
1770
1771 last_idx = -1;
1772 last_resort = NULL;
1773 order = -1;
1774
Robert Olsson2373ce12005-08-25 13:01:29 -07001775 rcu_read_lock();
Stephen Hemmingerc877efb2005-07-19 14:01:51 -07001776
Robert Olsson19baf832005-06-21 12:43:18 -07001777 l = fib_find_node(t, 0);
Stephen Hemmingerc877efb2005-07-19 14:01:51 -07001778 if (!l)
Robert Olsson19baf832005-06-21 12:43:18 -07001779 goto out;
1780
1781 fa_head = get_fa_head(l, 0);
Stephen Hemmingerc877efb2005-07-19 14:01:51 -07001782 if (!fa_head)
Robert Olsson19baf832005-06-21 12:43:18 -07001783 goto out;
1784
Stephen Hemmingerc877efb2005-07-19 14:01:51 -07001785 if (list_empty(fa_head))
Robert Olsson19baf832005-06-21 12:43:18 -07001786 goto out;
1787
Robert Olsson2373ce12005-08-25 13:01:29 -07001788 list_for_each_entry_rcu(fa, fa_head, fa_list) {
Robert Olsson19baf832005-06-21 12:43:18 -07001789 struct fib_info *next_fi = fa->fa_info;
Olof Johansson91b9a272005-08-09 20:24:39 -07001790
Robert Olsson19baf832005-06-21 12:43:18 -07001791 if (fa->fa_scope != res->scope ||
1792 fa->fa_type != RTN_UNICAST)
1793 continue;
Olof Johansson91b9a272005-08-09 20:24:39 -07001794
Robert Olsson19baf832005-06-21 12:43:18 -07001795 if (next_fi->fib_priority > res->fi->fib_priority)
1796 break;
1797 if (!next_fi->fib_nh[0].nh_gw ||
1798 next_fi->fib_nh[0].nh_scope != RT_SCOPE_LINK)
1799 continue;
1800 fa->fa_state |= FA_S_ACCESSED;
Olof Johansson91b9a272005-08-09 20:24:39 -07001801
Robert Olsson19baf832005-06-21 12:43:18 -07001802 if (fi == NULL) {
1803 if (next_fi != res->fi)
1804 break;
1805 } else if (!fib_detect_death(fi, order, &last_resort,
Denis V. Lunev971b8932007-12-08 00:32:23 -08001806 &last_idx, tb->tb_default)) {
Denis V. Luneva2bbe682007-12-08 00:31:44 -08001807 fib_result_assign(res, fi);
Denis V. Lunev971b8932007-12-08 00:32:23 -08001808 tb->tb_default = order;
Robert Olsson19baf832005-06-21 12:43:18 -07001809 goto out;
1810 }
1811 fi = next_fi;
1812 order++;
1813 }
1814 if (order <= 0 || fi == NULL) {
Denis V. Lunev971b8932007-12-08 00:32:23 -08001815 tb->tb_default = -1;
Robert Olsson19baf832005-06-21 12:43:18 -07001816 goto out;
1817 }
1818
Denis V. Lunev971b8932007-12-08 00:32:23 -08001819 if (!fib_detect_death(fi, order, &last_resort, &last_idx,
1820 tb->tb_default)) {
Denis V. Luneva2bbe682007-12-08 00:31:44 -08001821 fib_result_assign(res, fi);
Denis V. Lunev971b8932007-12-08 00:32:23 -08001822 tb->tb_default = order;
Robert Olsson19baf832005-06-21 12:43:18 -07001823 goto out;
1824 }
Denis V. Luneva2bbe682007-12-08 00:31:44 -08001825 if (last_idx >= 0)
1826 fib_result_assign(res, last_resort);
Denis V. Lunev971b8932007-12-08 00:32:23 -08001827 tb->tb_default = last_idx;
1828out:
Robert Olsson2373ce12005-08-25 13:01:29 -07001829 rcu_read_unlock();
Robert Olsson19baf832005-06-21 12:43:18 -07001830}
1831
Stephen Hemmingerc877efb2005-07-19 14:01:51 -07001832static int fn_trie_dump_fa(t_key key, int plen, struct list_head *fah, struct fib_table *tb,
Robert Olsson19baf832005-06-21 12:43:18 -07001833 struct sk_buff *skb, struct netlink_callback *cb)
1834{
1835 int i, s_i;
1836 struct fib_alias *fa;
1837
Al Viro32ab5f82006-09-26 22:21:45 -07001838 __be32 xkey = htonl(key);
Robert Olsson19baf832005-06-21 12:43:18 -07001839
Patrick McHardy1af5a8c2006-08-10 23:10:46 -07001840 s_i = cb->args[4];
Robert Olsson19baf832005-06-21 12:43:18 -07001841 i = 0;
1842
Robert Olsson2373ce12005-08-25 13:01:29 -07001843 /* rcu_read_lock is hold by caller */
1844
1845 list_for_each_entry_rcu(fa, fah, fa_list) {
Robert Olsson19baf832005-06-21 12:43:18 -07001846 if (i < s_i) {
1847 i++;
1848 continue;
1849 }
Stephen Hemminger78c66712005-09-21 00:15:39 -07001850 BUG_ON(!fa->fa_info);
Robert Olsson19baf832005-06-21 12:43:18 -07001851
1852 if (fib_dump_info(skb, NETLINK_CB(cb->skb).pid,
1853 cb->nlh->nlmsg_seq,
1854 RTM_NEWROUTE,
1855 tb->tb_id,
1856 fa->fa_type,
1857 fa->fa_scope,
Thomas Grafbe403ea2006-08-17 18:15:17 -07001858 xkey,
Robert Olsson19baf832005-06-21 12:43:18 -07001859 plen,
1860 fa->fa_tos,
David S. Miller90f66912005-06-21 14:43:28 -07001861 fa->fa_info, 0) < 0) {
Patrick McHardy1af5a8c2006-08-10 23:10:46 -07001862 cb->args[4] = i;
Robert Olsson19baf832005-06-21 12:43:18 -07001863 return -1;
Olof Johansson91b9a272005-08-09 20:24:39 -07001864 }
Robert Olsson19baf832005-06-21 12:43:18 -07001865 i++;
1866 }
Patrick McHardy1af5a8c2006-08-10 23:10:46 -07001867 cb->args[4] = i;
Robert Olsson19baf832005-06-21 12:43:18 -07001868 return skb->len;
1869}
1870
Stephen Hemmingerc877efb2005-07-19 14:01:51 -07001871static int fn_trie_dump_plen(struct trie *t, int plen, struct fib_table *tb, struct sk_buff *skb,
Robert Olsson19baf832005-06-21 12:43:18 -07001872 struct netlink_callback *cb)
1873{
1874 int h, s_h;
1875 struct list_head *fa_head;
1876 struct leaf *l = NULL;
Robert Olsson19baf832005-06-21 12:43:18 -07001877
Patrick McHardy1af5a8c2006-08-10 23:10:46 -07001878 s_h = cb->args[3];
Robert Olsson19baf832005-06-21 12:43:18 -07001879
Olof Johansson91b9a272005-08-09 20:24:39 -07001880 for (h = 0; (l = nextleaf(t, l)) != NULL; h++) {
Robert Olsson19baf832005-06-21 12:43:18 -07001881 if (h < s_h)
1882 continue;
1883 if (h > s_h)
Patrick McHardy1af5a8c2006-08-10 23:10:46 -07001884 memset(&cb->args[4], 0,
1885 sizeof(cb->args) - 4*sizeof(cb->args[0]));
Robert Olsson19baf832005-06-21 12:43:18 -07001886
1887 fa_head = get_fa_head(l, plen);
Olof Johansson91b9a272005-08-09 20:24:39 -07001888
Stephen Hemmingerc877efb2005-07-19 14:01:51 -07001889 if (!fa_head)
Robert Olsson19baf832005-06-21 12:43:18 -07001890 continue;
1891
Stephen Hemmingerc877efb2005-07-19 14:01:51 -07001892 if (list_empty(fa_head))
Robert Olsson19baf832005-06-21 12:43:18 -07001893 continue;
1894
1895 if (fn_trie_dump_fa(l->key, plen, fa_head, tb, skb, cb)<0) {
Patrick McHardy1af5a8c2006-08-10 23:10:46 -07001896 cb->args[3] = h;
Robert Olsson19baf832005-06-21 12:43:18 -07001897 return -1;
1898 }
1899 }
Patrick McHardy1af5a8c2006-08-10 23:10:46 -07001900 cb->args[3] = h;
Robert Olsson19baf832005-06-21 12:43:18 -07001901 return skb->len;
1902}
1903
1904static int fn_trie_dump(struct fib_table *tb, struct sk_buff *skb, struct netlink_callback *cb)
1905{
1906 int m, s_m;
1907 struct trie *t = (struct trie *) tb->tb_data;
1908
Patrick McHardy1af5a8c2006-08-10 23:10:46 -07001909 s_m = cb->args[2];
Robert Olsson19baf832005-06-21 12:43:18 -07001910
Robert Olsson2373ce12005-08-25 13:01:29 -07001911 rcu_read_lock();
Olof Johansson91b9a272005-08-09 20:24:39 -07001912 for (m = 0; m <= 32; m++) {
Robert Olsson19baf832005-06-21 12:43:18 -07001913 if (m < s_m)
1914 continue;
1915 if (m > s_m)
Patrick McHardy1af5a8c2006-08-10 23:10:46 -07001916 memset(&cb->args[3], 0,
1917 sizeof(cb->args) - 3*sizeof(cb->args[0]));
Robert Olsson19baf832005-06-21 12:43:18 -07001918
1919 if (fn_trie_dump_plen(t, 32-m, tb, skb, cb)<0) {
Patrick McHardy1af5a8c2006-08-10 23:10:46 -07001920 cb->args[2] = m;
Robert Olsson19baf832005-06-21 12:43:18 -07001921 goto out;
1922 }
1923 }
Robert Olsson2373ce12005-08-25 13:01:29 -07001924 rcu_read_unlock();
Patrick McHardy1af5a8c2006-08-10 23:10:46 -07001925 cb->args[2] = m;
Robert Olsson19baf832005-06-21 12:43:18 -07001926 return skb->len;
Olof Johansson91b9a272005-08-09 20:24:39 -07001927out:
Robert Olsson2373ce12005-08-25 13:01:29 -07001928 rcu_read_unlock();
Robert Olsson19baf832005-06-21 12:43:18 -07001929 return -1;
1930}
1931
1932/* Fix more generic FIB names for init later */
1933
Denis V. Lunev7b1a74fd2008-01-10 03:22:17 -08001934struct fib_table *fib_hash_init(u32 id)
Robert Olsson19baf832005-06-21 12:43:18 -07001935{
1936 struct fib_table *tb;
1937 struct trie *t;
1938
1939 if (fn_alias_kmem == NULL)
1940 fn_alias_kmem = kmem_cache_create("ip_fib_alias",
1941 sizeof(struct fib_alias),
1942 0, SLAB_HWCACHE_ALIGN,
Paul Mundt20c2df82007-07-20 10:11:58 +09001943 NULL);
Robert Olsson19baf832005-06-21 12:43:18 -07001944
1945 tb = kmalloc(sizeof(struct fib_table) + sizeof(struct trie),
1946 GFP_KERNEL);
1947 if (tb == NULL)
1948 return NULL;
1949
1950 tb->tb_id = id;
Denis V. Lunev971b8932007-12-08 00:32:23 -08001951 tb->tb_default = -1;
Robert Olsson19baf832005-06-21 12:43:18 -07001952 tb->tb_lookup = fn_trie_lookup;
1953 tb->tb_insert = fn_trie_insert;
1954 tb->tb_delete = fn_trie_delete;
1955 tb->tb_flush = fn_trie_flush;
1956 tb->tb_select_default = fn_trie_select_default;
1957 tb->tb_dump = fn_trie_dump;
Robert Olsson19baf832005-06-21 12:43:18 -07001958
1959 t = (struct trie *) tb->tb_data;
Stephen Hemmingerc28a1cf2008-01-12 20:49:13 -08001960 memset(t, 0, sizeof(*t));
Robert Olsson19baf832005-06-21 12:43:18 -07001961
Stephen Hemmingerc877efb2005-07-19 14:01:51 -07001962 if (id == RT_TABLE_LOCAL)
Stephen Hemminger78c66712005-09-21 00:15:39 -07001963 printk(KERN_INFO "IPv4 FIB: Using LC-trie version %s\n", VERSION);
Robert Olsson19baf832005-06-21 12:43:18 -07001964
1965 return tb;
1966}
1967
Robert Olsson19baf832005-06-21 12:43:18 -07001968#ifdef CONFIG_PROC_FS
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07001969/* Depth first Trie walk iterator */
1970struct fib_trie_iter {
Denis V. Lunev1c340b22008-01-10 03:27:17 -08001971 struct seq_net_private p;
Eric W. Biederman877a9bf2007-12-07 00:47:47 -08001972 struct trie *trie_local, *trie_main;
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07001973 struct tnode *tnode;
1974 struct trie *trie;
1975 unsigned index;
1976 unsigned depth;
1977};
Robert Olsson19baf832005-06-21 12:43:18 -07001978
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07001979static struct node *fib_trie_get_next(struct fib_trie_iter *iter)
Robert Olsson19baf832005-06-21 12:43:18 -07001980{
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07001981 struct tnode *tn = iter->tnode;
1982 unsigned cindex = iter->index;
1983 struct tnode *p;
1984
Eric W. Biederman6640e692007-01-24 14:42:04 -08001985 /* A single entry routing table */
1986 if (!tn)
1987 return NULL;
1988
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07001989 pr_debug("get_next iter={node=%p index=%d depth=%d}\n",
1990 iter->tnode, iter->index, iter->depth);
1991rescan:
1992 while (cindex < (1<<tn->bits)) {
1993 struct node *n = tnode_get_child(tn, cindex);
1994
1995 if (n) {
1996 if (IS_LEAF(n)) {
1997 iter->tnode = tn;
1998 iter->index = cindex + 1;
1999 } else {
2000 /* push down one level */
2001 iter->tnode = (struct tnode *) n;
2002 iter->index = 0;
2003 ++iter->depth;
2004 }
2005 return n;
2006 }
2007
2008 ++cindex;
2009 }
2010
2011 /* Current node exhausted, pop back up */
Stephen Hemminger06801912007-08-10 15:22:13 -07002012 p = node_parent((struct node *)tn);
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002013 if (p) {
2014 cindex = tkey_extract_bits(tn->key, p->pos, p->bits)+1;
2015 tn = p;
2016 --iter->depth;
2017 goto rescan;
2018 }
2019
2020 /* got root? */
Robert Olsson19baf832005-06-21 12:43:18 -07002021 return NULL;
2022}
2023
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002024static struct node *fib_trie_get_first(struct fib_trie_iter *iter,
2025 struct trie *t)
Robert Olsson19baf832005-06-21 12:43:18 -07002026{
Robert Olsson5ddf0eb2006-03-20 21:34:12 -08002027 struct node *n ;
2028
Stephen Hemminger132adf52007-03-08 20:44:43 -08002029 if (!t)
Robert Olsson5ddf0eb2006-03-20 21:34:12 -08002030 return NULL;
2031
2032 n = rcu_dereference(t->trie);
2033
Stephen Hemminger132adf52007-03-08 20:44:43 -08002034 if (!iter)
Robert Olsson5ddf0eb2006-03-20 21:34:12 -08002035 return NULL;
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002036
Eric W. Biederman6640e692007-01-24 14:42:04 -08002037 if (n) {
2038 if (IS_TNODE(n)) {
2039 iter->tnode = (struct tnode *) n;
2040 iter->trie = t;
2041 iter->index = 0;
2042 iter->depth = 1;
2043 } else {
2044 iter->tnode = NULL;
2045 iter->trie = t;
2046 iter->index = 0;
2047 iter->depth = 0;
2048 }
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002049 return n;
2050 }
Robert Olsson19baf832005-06-21 12:43:18 -07002051 return NULL;
2052}
2053
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002054static void trie_collect_stats(struct trie *t, struct trie_stat *s)
Robert Olsson19baf832005-06-21 12:43:18 -07002055{
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002056 struct node *n;
2057 struct fib_trie_iter iter;
Robert Olsson19baf832005-06-21 12:43:18 -07002058
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002059 memset(s, 0, sizeof(*s));
Robert Olsson19baf832005-06-21 12:43:18 -07002060
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002061 rcu_read_lock();
2062 for (n = fib_trie_get_first(&iter, t); n;
2063 n = fib_trie_get_next(&iter)) {
2064 if (IS_LEAF(n)) {
2065 s->leaves++;
2066 s->totdepth += iter.depth;
2067 if (iter.depth > s->maxdepth)
2068 s->maxdepth = iter.depth;
2069 } else {
2070 const struct tnode *tn = (const struct tnode *) n;
2071 int i;
Robert Olsson19baf832005-06-21 12:43:18 -07002072
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002073 s->tnodes++;
Stephen Hemminger132adf52007-03-08 20:44:43 -08002074 if (tn->bits < MAX_STAT_DEPTH)
Robert Olsson06ef9212006-03-20 21:35:01 -08002075 s->nodesizes[tn->bits]++;
2076
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002077 for (i = 0; i < (1<<tn->bits); i++)
2078 if (!tn->child[i])
2079 s->nullpointers++;
2080 }
2081 }
2082 rcu_read_unlock();
Robert Olsson19baf832005-06-21 12:43:18 -07002083}
2084
Stephen Hemmingerc877efb2005-07-19 14:01:51 -07002085/*
Robert Olsson19baf832005-06-21 12:43:18 -07002086 * This outputs /proc/net/fib_triestats
Robert Olsson19baf832005-06-21 12:43:18 -07002087 */
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002088static void trie_show_stats(struct seq_file *seq, struct trie_stat *stat)
Robert Olsson19baf832005-06-21 12:43:18 -07002089{
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002090 unsigned i, max, pointers, bytes, avdepth;
Robert Olsson19baf832005-06-21 12:43:18 -07002091
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002092 if (stat->leaves)
2093 avdepth = stat->totdepth*100 / stat->leaves;
2094 else
2095 avdepth = 0;
Robert Olsson19baf832005-06-21 12:43:18 -07002096
Stephen Hemminger187b5182008-01-12 20:55:55 -08002097 seq_printf(seq, "\tAver depth: %u.%02d\n", avdepth / 100, avdepth % 100 );
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002098 seq_printf(seq, "\tMax depth: %u\n", stat->maxdepth);
Robert Olsson19baf832005-06-21 12:43:18 -07002099
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002100 seq_printf(seq, "\tLeaves: %u\n", stat->leaves);
Olof Johansson91b9a272005-08-09 20:24:39 -07002101
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002102 bytes = sizeof(struct leaf) * stat->leaves;
Stephen Hemminger187b5182008-01-12 20:55:55 -08002103 seq_printf(seq, "\tInternal nodes: %u\n\t", stat->tnodes);
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002104 bytes += sizeof(struct tnode) * stat->tnodes;
Robert Olsson19baf832005-06-21 12:43:18 -07002105
Robert Olsson06ef9212006-03-20 21:35:01 -08002106 max = MAX_STAT_DEPTH;
2107 while (max > 0 && stat->nodesizes[max-1] == 0)
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002108 max--;
Robert Olsson19baf832005-06-21 12:43:18 -07002109
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002110 pointers = 0;
2111 for (i = 1; i <= max; i++)
2112 if (stat->nodesizes[i] != 0) {
Stephen Hemminger187b5182008-01-12 20:55:55 -08002113 seq_printf(seq, " %u: %u", i, stat->nodesizes[i]);
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002114 pointers += (1<<i) * stat->nodesizes[i];
2115 }
2116 seq_putc(seq, '\n');
Stephen Hemminger187b5182008-01-12 20:55:55 -08002117 seq_printf(seq, "\tPointers: %u\n", pointers);
Robert Olsson19baf832005-06-21 12:43:18 -07002118
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002119 bytes += sizeof(struct node *) * pointers;
Stephen Hemminger187b5182008-01-12 20:55:55 -08002120 seq_printf(seq, "Null ptrs: %u\n", stat->nullpointers);
2121 seq_printf(seq, "Total size: %u kB\n", (bytes + 1023) / 1024);
Robert Olsson19baf832005-06-21 12:43:18 -07002122
2123#ifdef CONFIG_IP_FIB_TRIE_STATS
2124 seq_printf(seq, "Counters:\n---------\n");
2125 seq_printf(seq,"gets = %d\n", t->stats.gets);
2126 seq_printf(seq,"backtracks = %d\n", t->stats.backtrack);
2127 seq_printf(seq,"semantic match passed = %d\n", t->stats.semantic_match_passed);
2128 seq_printf(seq,"semantic match miss = %d\n", t->stats.semantic_match_miss);
2129 seq_printf(seq,"null node hit= %d\n", t->stats.null_node_hit);
Robert Olsson2f368952005-07-05 15:02:40 -07002130 seq_printf(seq,"skipped node resize = %d\n", t->stats.resize_node_skipped);
Robert Olsson19baf832005-06-21 12:43:18 -07002131#ifdef CLEAR_STATS
2132 memset(&(t->stats), 0, sizeof(t->stats));
2133#endif
2134#endif /* CONFIG_IP_FIB_TRIE_STATS */
2135}
2136
2137static int fib_triestat_seq_show(struct seq_file *seq, void *v)
2138{
Denis V. Lunev1c340b22008-01-10 03:27:17 -08002139 struct net *net = (struct net *)seq->private;
Eric W. Biederman877a9bf2007-12-07 00:47:47 -08002140 struct trie *trie_local, *trie_main;
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002141 struct trie_stat *stat;
Eric W. Biederman877a9bf2007-12-07 00:47:47 -08002142 struct fib_table *tb;
2143
2144 trie_local = NULL;
Denis V. Lunev1c340b22008-01-10 03:27:17 -08002145 tb = fib_get_table(net, RT_TABLE_LOCAL);
Eric W. Biederman877a9bf2007-12-07 00:47:47 -08002146 if (tb)
2147 trie_local = (struct trie *) tb->tb_data;
2148
2149 trie_main = NULL;
Denis V. Lunev1c340b22008-01-10 03:27:17 -08002150 tb = fib_get_table(net, RT_TABLE_MAIN);
Eric W. Biederman877a9bf2007-12-07 00:47:47 -08002151 if (tb)
2152 trie_main = (struct trie *) tb->tb_data;
2153
Stephen Hemmingerc877efb2005-07-19 14:01:51 -07002154
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002155 stat = kmalloc(sizeof(*stat), GFP_KERNEL);
2156 if (!stat)
2157 return -ENOMEM;
Robert Olsson19baf832005-06-21 12:43:18 -07002158
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002159 seq_printf(seq, "Basic info: size of leaf: %Zd bytes, size of tnode: %Zd bytes.\n",
2160 sizeof(struct leaf), sizeof(struct tnode));
Olof Johansson91b9a272005-08-09 20:24:39 -07002161
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002162 if (trie_local) {
2163 seq_printf(seq, "Local:\n");
2164 trie_collect_stats(trie_local, stat);
2165 trie_show_stats(seq, stat);
Robert Olsson19baf832005-06-21 12:43:18 -07002166 }
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002167
2168 if (trie_main) {
2169 seq_printf(seq, "Main:\n");
2170 trie_collect_stats(trie_main, stat);
2171 trie_show_stats(seq, stat);
2172 }
2173 kfree(stat);
2174
Robert Olsson19baf832005-06-21 12:43:18 -07002175 return 0;
2176}
2177
Robert Olsson19baf832005-06-21 12:43:18 -07002178static int fib_triestat_seq_open(struct inode *inode, struct file *file)
2179{
Denis V. Lunev1c340b22008-01-10 03:27:17 -08002180 int err;
2181 struct net *net;
2182
2183 net = get_proc_net(inode);
2184 if (net == NULL)
2185 return -ENXIO;
2186 err = single_open(file, fib_triestat_seq_show, net);
2187 if (err < 0) {
2188 put_net(net);
2189 return err;
2190 }
2191 return 0;
2192}
2193
2194static int fib_triestat_seq_release(struct inode *ino, struct file *f)
2195{
2196 struct seq_file *seq = f->private_data;
2197 put_net(seq->private);
2198 return single_release(ino, f);
Robert Olsson19baf832005-06-21 12:43:18 -07002199}
2200
Arjan van de Ven9a321442007-02-12 00:55:35 -08002201static const struct file_operations fib_triestat_fops = {
Stephen Hemmingerc877efb2005-07-19 14:01:51 -07002202 .owner = THIS_MODULE,
2203 .open = fib_triestat_seq_open,
2204 .read = seq_read,
2205 .llseek = seq_lseek,
Denis V. Lunev1c340b22008-01-10 03:27:17 -08002206 .release = fib_triestat_seq_release,
Robert Olsson19baf832005-06-21 12:43:18 -07002207};
2208
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002209static struct node *fib_trie_get_idx(struct fib_trie_iter *iter,
2210 loff_t pos)
Robert Olsson19baf832005-06-21 12:43:18 -07002211{
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002212 loff_t idx = 0;
2213 struct node *n;
Robert Olsson19baf832005-06-21 12:43:18 -07002214
Eric W. Biederman877a9bf2007-12-07 00:47:47 -08002215 for (n = fib_trie_get_first(iter, iter->trie_local);
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002216 n; ++idx, n = fib_trie_get_next(iter)) {
2217 if (pos == idx)
2218 return n;
2219 }
Robert Olsson19baf832005-06-21 12:43:18 -07002220
Eric W. Biederman877a9bf2007-12-07 00:47:47 -08002221 for (n = fib_trie_get_first(iter, iter->trie_main);
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002222 n; ++idx, n = fib_trie_get_next(iter)) {
2223 if (pos == idx)
2224 return n;
2225 }
Robert Olsson19baf832005-06-21 12:43:18 -07002226 return NULL;
2227}
2228
2229static void *fib_trie_seq_start(struct seq_file *seq, loff_t *pos)
2230{
Eric W. Biederman877a9bf2007-12-07 00:47:47 -08002231 struct fib_trie_iter *iter = seq->private;
2232 struct fib_table *tb;
2233
2234 if (!iter->trie_local) {
Denis V. Lunev1c340b22008-01-10 03:27:17 -08002235 tb = fib_get_table(iter->p.net, RT_TABLE_LOCAL);
Eric W. Biederman877a9bf2007-12-07 00:47:47 -08002236 if (tb)
2237 iter->trie_local = (struct trie *) tb->tb_data;
2238 }
2239 if (!iter->trie_main) {
Denis V. Lunev1c340b22008-01-10 03:27:17 -08002240 tb = fib_get_table(iter->p.net, RT_TABLE_MAIN);
Eric W. Biederman877a9bf2007-12-07 00:47:47 -08002241 if (tb)
2242 iter->trie_main = (struct trie *) tb->tb_data;
2243 }
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002244 rcu_read_lock();
2245 if (*pos == 0)
Olof Johansson91b9a272005-08-09 20:24:39 -07002246 return SEQ_START_TOKEN;
Eric W. Biederman877a9bf2007-12-07 00:47:47 -08002247 return fib_trie_get_idx(iter, *pos - 1);
Robert Olsson19baf832005-06-21 12:43:18 -07002248}
2249
2250static void *fib_trie_seq_next(struct seq_file *seq, void *v, loff_t *pos)
2251{
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002252 struct fib_trie_iter *iter = seq->private;
2253 void *l = v;
2254
Robert Olsson19baf832005-06-21 12:43:18 -07002255 ++*pos;
Olof Johansson91b9a272005-08-09 20:24:39 -07002256 if (v == SEQ_START_TOKEN)
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002257 return fib_trie_get_idx(iter, 0);
Olof Johansson91b9a272005-08-09 20:24:39 -07002258
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002259 v = fib_trie_get_next(iter);
2260 BUG_ON(v == l);
2261 if (v)
2262 return v;
2263
2264 /* continue scan in next trie */
Eric W. Biederman877a9bf2007-12-07 00:47:47 -08002265 if (iter->trie == iter->trie_local)
2266 return fib_trie_get_first(iter, iter->trie_main);
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002267
2268 return NULL;
Robert Olsson19baf832005-06-21 12:43:18 -07002269}
2270
2271static void fib_trie_seq_stop(struct seq_file *seq, void *v)
2272{
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002273 rcu_read_unlock();
Robert Olsson19baf832005-06-21 12:43:18 -07002274}
2275
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002276static void seq_indent(struct seq_file *seq, int n)
2277{
2278 while (n-- > 0) seq_puts(seq, " ");
2279}
Robert Olsson19baf832005-06-21 12:43:18 -07002280
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002281static inline const char *rtn_scope(enum rt_scope_t s)
2282{
2283 static char buf[32];
2284
Stephen Hemminger132adf52007-03-08 20:44:43 -08002285 switch (s) {
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002286 case RT_SCOPE_UNIVERSE: return "universe";
2287 case RT_SCOPE_SITE: return "site";
2288 case RT_SCOPE_LINK: return "link";
2289 case RT_SCOPE_HOST: return "host";
2290 case RT_SCOPE_NOWHERE: return "nowhere";
2291 default:
2292 snprintf(buf, sizeof(buf), "scope=%d", s);
2293 return buf;
2294 }
2295}
2296
2297static const char *rtn_type_names[__RTN_MAX] = {
2298 [RTN_UNSPEC] = "UNSPEC",
2299 [RTN_UNICAST] = "UNICAST",
2300 [RTN_LOCAL] = "LOCAL",
2301 [RTN_BROADCAST] = "BROADCAST",
2302 [RTN_ANYCAST] = "ANYCAST",
2303 [RTN_MULTICAST] = "MULTICAST",
2304 [RTN_BLACKHOLE] = "BLACKHOLE",
2305 [RTN_UNREACHABLE] = "UNREACHABLE",
2306 [RTN_PROHIBIT] = "PROHIBIT",
2307 [RTN_THROW] = "THROW",
2308 [RTN_NAT] = "NAT",
2309 [RTN_XRESOLVE] = "XRESOLVE",
2310};
2311
2312static inline const char *rtn_type(unsigned t)
2313{
2314 static char buf[32];
2315
2316 if (t < __RTN_MAX && rtn_type_names[t])
2317 return rtn_type_names[t];
Stephen Hemminger187b5182008-01-12 20:55:55 -08002318 snprintf(buf, sizeof(buf), "type %u", t);
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002319 return buf;
2320}
2321
2322/* Pretty print the trie */
Robert Olsson19baf832005-06-21 12:43:18 -07002323static int fib_trie_seq_show(struct seq_file *seq, void *v)
2324{
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002325 const struct fib_trie_iter *iter = seq->private;
2326 struct node *n = v;
Robert Olsson19baf832005-06-21 12:43:18 -07002327
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002328 if (v == SEQ_START_TOKEN)
2329 return 0;
Robert Olsson19baf832005-06-21 12:43:18 -07002330
Stephen Hemminger06801912007-08-10 15:22:13 -07002331 if (!node_parent(n)) {
Eric W. Biederman877a9bf2007-12-07 00:47:47 -08002332 if (iter->trie == iter->trie_local)
Robert Olsson095b8502007-01-26 19:06:01 -08002333 seq_puts(seq, "<local>:\n");
2334 else
2335 seq_puts(seq, "<main>:\n");
2336 }
2337
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002338 if (IS_TNODE(n)) {
2339 struct tnode *tn = (struct tnode *) n;
Stephen Hemmingerab66b4a2007-08-10 15:22:58 -07002340 __be32 prf = htonl(mask_pfx(tn->key, tn->pos));
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002341
Robert Olsson1d25cd62005-09-19 15:29:52 -07002342 seq_indent(seq, iter->depth-1);
2343 seq_printf(seq, " +-- %d.%d.%d.%d/%d %d %d %d\n",
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09002344 NIPQUAD(prf), tn->pos, tn->bits, tn->full_children,
Robert Olsson1d25cd62005-09-19 15:29:52 -07002345 tn->empty_children);
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09002346
Olof Johansson91b9a272005-08-09 20:24:39 -07002347 } else {
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002348 struct leaf *l = (struct leaf *) n;
2349 int i;
Al Viro32ab5f82006-09-26 22:21:45 -07002350 __be32 val = htonl(l->key);
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002351
2352 seq_indent(seq, iter->depth);
2353 seq_printf(seq, " |-- %d.%d.%d.%d\n", NIPQUAD(val));
2354 for (i = 32; i >= 0; i--) {
Robert Olsson772cb712005-09-19 15:31:18 -07002355 struct leaf_info *li = find_leaf_info(l, i);
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002356 if (li) {
2357 struct fib_alias *fa;
2358 list_for_each_entry_rcu(fa, &li->falh, fa_list) {
2359 seq_indent(seq, iter->depth+1);
2360 seq_printf(seq, " /%d %s %s", i,
2361 rtn_scope(fa->fa_scope),
2362 rtn_type(fa->fa_type));
2363 if (fa->fa_tos)
2364 seq_printf(seq, "tos =%d\n",
2365 fa->fa_tos);
2366 seq_putc(seq, '\n');
2367 }
2368 }
2369 }
Robert Olsson19baf832005-06-21 12:43:18 -07002370 }
2371
2372 return 0;
2373}
2374
Stephen Hemmingerf6908082007-03-12 14:34:29 -07002375static const struct seq_operations fib_trie_seq_ops = {
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002376 .start = fib_trie_seq_start,
2377 .next = fib_trie_seq_next,
2378 .stop = fib_trie_seq_stop,
2379 .show = fib_trie_seq_show,
Robert Olsson19baf832005-06-21 12:43:18 -07002380};
2381
2382static int fib_trie_seq_open(struct inode *inode, struct file *file)
2383{
Denis V. Lunev1c340b22008-01-10 03:27:17 -08002384 return seq_open_net(inode, file, &fib_trie_seq_ops,
2385 sizeof(struct fib_trie_iter));
Robert Olsson19baf832005-06-21 12:43:18 -07002386}
2387
Arjan van de Ven9a321442007-02-12 00:55:35 -08002388static const struct file_operations fib_trie_fops = {
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002389 .owner = THIS_MODULE,
2390 .open = fib_trie_seq_open,
2391 .read = seq_read,
2392 .llseek = seq_lseek,
Denis V. Lunev1c340b22008-01-10 03:27:17 -08002393 .release = seq_release_net,
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002394};
2395
Al Viro32ab5f82006-09-26 22:21:45 -07002396static unsigned fib_flag_trans(int type, __be32 mask, const struct fib_info *fi)
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002397{
2398 static unsigned type2flags[RTN_MAX + 1] = {
2399 [7] = RTF_REJECT, [8] = RTF_REJECT,
2400 };
2401 unsigned flags = type2flags[type];
2402
2403 if (fi && fi->fib_nh->nh_gw)
2404 flags |= RTF_GATEWAY;
Al Viro32ab5f82006-09-26 22:21:45 -07002405 if (mask == htonl(0xFFFFFFFF))
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002406 flags |= RTF_HOST;
2407 flags |= RTF_UP;
2408 return flags;
2409}
2410
2411/*
2412 * This outputs /proc/net/route.
2413 * The format of the file is not supposed to be changed
2414 * and needs to be same as fib_hash output to avoid breaking
2415 * legacy utilities
2416 */
2417static int fib_route_seq_show(struct seq_file *seq, void *v)
2418{
Patrick McHardyc9e53cb2005-11-20 21:09:00 -08002419 const struct fib_trie_iter *iter = seq->private;
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002420 struct leaf *l = v;
2421 int i;
2422 char bf[128];
2423
2424 if (v == SEQ_START_TOKEN) {
2425 seq_printf(seq, "%-127s\n", "Iface\tDestination\tGateway "
2426 "\tFlags\tRefCnt\tUse\tMetric\tMask\t\tMTU"
2427 "\tWindow\tIRTT");
2428 return 0;
2429 }
2430
Eric W. Biederman877a9bf2007-12-07 00:47:47 -08002431 if (iter->trie == iter->trie_local)
Patrick McHardyc9e53cb2005-11-20 21:09:00 -08002432 return 0;
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002433 if (IS_TNODE(l))
2434 return 0;
2435
2436 for (i=32; i>=0; i--) {
Robert Olsson772cb712005-09-19 15:31:18 -07002437 struct leaf_info *li = find_leaf_info(l, i);
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002438 struct fib_alias *fa;
Al Viro32ab5f82006-09-26 22:21:45 -07002439 __be32 mask, prefix;
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002440
2441 if (!li)
2442 continue;
2443
2444 mask = inet_make_mask(li->plen);
2445 prefix = htonl(l->key);
2446
2447 list_for_each_entry_rcu(fa, &li->falh, fa_list) {
Herbert Xu1371e372005-10-15 09:42:39 +10002448 const struct fib_info *fi = fa->fa_info;
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002449 unsigned flags = fib_flag_trans(fa->fa_type, mask, fi);
2450
2451 if (fa->fa_type == RTN_BROADCAST
2452 || fa->fa_type == RTN_MULTICAST)
2453 continue;
2454
2455 if (fi)
2456 snprintf(bf, sizeof(bf),
2457 "%s\t%08X\t%08X\t%04X\t%d\t%u\t%d\t%08X\t%d\t%u\t%u",
2458 fi->fib_dev ? fi->fib_dev->name : "*",
2459 prefix,
2460 fi->fib_nh->nh_gw, flags, 0, 0,
2461 fi->fib_priority,
2462 mask,
2463 (fi->fib_advmss ? fi->fib_advmss + 40 : 0),
2464 fi->fib_window,
2465 fi->fib_rtt >> 3);
2466 else
2467 snprintf(bf, sizeof(bf),
2468 "*\t%08X\t%08X\t%04X\t%d\t%u\t%d\t%08X\t%d\t%u\t%u",
2469 prefix, 0, flags, 0, 0, 0,
2470 mask, 0, 0, 0);
2471
2472 seq_printf(seq, "%-127s\n", bf);
2473 }
2474 }
2475
2476 return 0;
2477}
2478
Stephen Hemmingerf6908082007-03-12 14:34:29 -07002479static const struct seq_operations fib_route_seq_ops = {
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002480 .start = fib_trie_seq_start,
2481 .next = fib_trie_seq_next,
2482 .stop = fib_trie_seq_stop,
2483 .show = fib_route_seq_show,
2484};
2485
2486static int fib_route_seq_open(struct inode *inode, struct file *file)
2487{
Denis V. Lunev1c340b22008-01-10 03:27:17 -08002488 return seq_open_net(inode, file, &fib_route_seq_ops,
2489 sizeof(struct fib_trie_iter));
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002490}
2491
Arjan van de Ven9a321442007-02-12 00:55:35 -08002492static const struct file_operations fib_route_fops = {
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002493 .owner = THIS_MODULE,
2494 .open = fib_route_seq_open,
2495 .read = seq_read,
2496 .llseek = seq_lseek,
Denis V. Lunev1c340b22008-01-10 03:27:17 -08002497 .release = seq_release_net,
Robert Olsson19baf832005-06-21 12:43:18 -07002498};
2499
Denis V. Lunev61a02652008-01-10 03:21:09 -08002500int __net_init fib_proc_init(struct net *net)
Robert Olsson19baf832005-06-21 12:43:18 -07002501{
Denis V. Lunev61a02652008-01-10 03:21:09 -08002502 if (!proc_net_fops_create(net, "fib_trie", S_IRUGO, &fib_trie_fops))
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002503 goto out1;
2504
Denis V. Lunev61a02652008-01-10 03:21:09 -08002505 if (!proc_net_fops_create(net, "fib_triestat", S_IRUGO,
2506 &fib_triestat_fops))
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002507 goto out2;
2508
Denis V. Lunev61a02652008-01-10 03:21:09 -08002509 if (!proc_net_fops_create(net, "route", S_IRUGO, &fib_route_fops))
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002510 goto out3;
2511
Robert Olsson19baf832005-06-21 12:43:18 -07002512 return 0;
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002513
2514out3:
Denis V. Lunev61a02652008-01-10 03:21:09 -08002515 proc_net_remove(net, "fib_triestat");
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002516out2:
Denis V. Lunev61a02652008-01-10 03:21:09 -08002517 proc_net_remove(net, "fib_trie");
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002518out1:
2519 return -ENOMEM;
Robert Olsson19baf832005-06-21 12:43:18 -07002520}
2521
Denis V. Lunev61a02652008-01-10 03:21:09 -08002522void __net_exit fib_proc_exit(struct net *net)
Robert Olsson19baf832005-06-21 12:43:18 -07002523{
Denis V. Lunev61a02652008-01-10 03:21:09 -08002524 proc_net_remove(net, "fib_trie");
2525 proc_net_remove(net, "fib_triestat");
2526 proc_net_remove(net, "route");
Robert Olsson19baf832005-06-21 12:43:18 -07002527}
2528
2529#endif /* CONFIG_PROC_FS */