blob: 90ae70870a1035bf5c4f2d492977a96a4876d1f3 [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 *
10 * Jens Laas <jens.laas@data.slu.se> Swedish University of
11 * Agricultural Sciences.
12 *
13 * Hans Liss <hans.liss@its.uu.se> Uppsala Universitet
14 *
15 * This work is based on the LPC-trie which is originally descibed in:
16 *
17 * 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.
44 */
45
Robert Olsson772cb712005-09-19 15:31:18 -070046#define VERSION "0.404"
Robert Olsson19baf832005-06-21 12:43:18 -070047
48#include <linux/config.h>
49#include <asm/uaccess.h>
50#include <asm/system.h>
51#include <asm/bitops.h>
52#include <linux/types.h>
53#include <linux/kernel.h>
54#include <linux/sched.h>
55#include <linux/mm.h>
56#include <linux/string.h>
57#include <linux/socket.h>
58#include <linux/sockios.h>
59#include <linux/errno.h>
60#include <linux/in.h>
61#include <linux/inet.h>
62#include <linux/netdevice.h>
63#include <linux/if_arp.h>
64#include <linux/proc_fs.h>
Robert Olsson2373ce12005-08-25 13:01:29 -070065#include <linux/rcupdate.h>
Robert Olsson19baf832005-06-21 12:43:18 -070066#include <linux/skbuff.h>
67#include <linux/netlink.h>
68#include <linux/init.h>
69#include <linux/list.h>
70#include <net/ip.h>
71#include <net/protocol.h>
72#include <net/route.h>
73#include <net/tcp.h>
74#include <net/sock.h>
75#include <net/ip_fib.h>
76#include "fib_lookup.h"
77
78#undef CONFIG_IP_FIB_TRIE_STATS
79#define MAX_CHILDS 16384
80
Robert Olsson19baf832005-06-21 12:43:18 -070081#define KEYLENGTH (8*sizeof(t_key))
82#define MASK_PFX(k, l) (((l)==0)?0:(k >> (KEYLENGTH-l)) << (KEYLENGTH-l))
83#define TKEY_GET_MASK(offset, bits) (((bits)==0)?0:((t_key)(-1) << (KEYLENGTH - bits) >> offset))
84
Robert Olsson19baf832005-06-21 12:43:18 -070085typedef unsigned int t_key;
86
87#define T_TNODE 0
88#define T_LEAF 1
89#define NODE_TYPE_MASK 0x1UL
Olof Johansson91b9a272005-08-09 20:24:39 -070090#define NODE_PARENT(node) \
Robert Olsson2373ce12005-08-25 13:01:29 -070091 ((struct tnode *)rcu_dereference(((node)->parent & ~NODE_TYPE_MASK)))
92
93#define NODE_TYPE(node) ((node)->parent & NODE_TYPE_MASK)
94
95#define NODE_SET_PARENT(node, ptr) \
96 rcu_assign_pointer((node)->parent, \
97 ((unsigned long)(ptr)) | NODE_TYPE(node))
Robert Olsson19baf832005-06-21 12:43:18 -070098
Olof Johansson91b9a272005-08-09 20:24:39 -070099#define IS_TNODE(n) (!(n->parent & T_LEAF))
100#define IS_LEAF(n) (n->parent & T_LEAF)
Robert Olsson19baf832005-06-21 12:43:18 -0700101
102struct node {
Olof Johansson91b9a272005-08-09 20:24:39 -0700103 t_key key;
104 unsigned long parent;
Robert Olsson19baf832005-06-21 12:43:18 -0700105};
106
107struct leaf {
Olof Johansson91b9a272005-08-09 20:24:39 -0700108 t_key key;
109 unsigned long parent;
Robert Olsson19baf832005-06-21 12:43:18 -0700110 struct hlist_head list;
Robert Olsson2373ce12005-08-25 13:01:29 -0700111 struct rcu_head rcu;
Robert Olsson19baf832005-06-21 12:43:18 -0700112};
113
114struct leaf_info {
115 struct hlist_node hlist;
Robert Olsson2373ce12005-08-25 13:01:29 -0700116 struct rcu_head rcu;
Robert Olsson19baf832005-06-21 12:43:18 -0700117 int plen;
118 struct list_head falh;
119};
120
121struct tnode {
Olof Johansson91b9a272005-08-09 20:24:39 -0700122 t_key key;
123 unsigned long parent;
124 unsigned short pos:5; /* 2log(KEYLENGTH) bits needed */
125 unsigned short bits:5; /* 2log(KEYLENGTH) bits needed */
126 unsigned short full_children; /* KEYLENGTH bits needed */
127 unsigned short empty_children; /* KEYLENGTH bits needed */
Robert Olsson2373ce12005-08-25 13:01:29 -0700128 struct rcu_head rcu;
Olof Johansson91b9a272005-08-09 20:24:39 -0700129 struct node *child[0];
Robert Olsson19baf832005-06-21 12:43:18 -0700130};
131
132#ifdef CONFIG_IP_FIB_TRIE_STATS
133struct trie_use_stats {
134 unsigned int gets;
135 unsigned int backtrack;
136 unsigned int semantic_match_passed;
137 unsigned int semantic_match_miss;
138 unsigned int null_node_hit;
Robert Olsson2f368952005-07-05 15:02:40 -0700139 unsigned int resize_node_skipped;
Robert Olsson19baf832005-06-21 12:43:18 -0700140};
141#endif
142
143struct trie_stat {
144 unsigned int totdepth;
145 unsigned int maxdepth;
146 unsigned int tnodes;
147 unsigned int leaves;
148 unsigned int nullpointers;
149 unsigned int nodesizes[MAX_CHILDS];
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700150};
Robert Olsson19baf832005-06-21 12:43:18 -0700151
152struct trie {
Olof Johansson91b9a272005-08-09 20:24:39 -0700153 struct node *trie;
Robert Olsson19baf832005-06-21 12:43:18 -0700154#ifdef CONFIG_IP_FIB_TRIE_STATS
155 struct trie_use_stats stats;
156#endif
Olof Johansson91b9a272005-08-09 20:24:39 -0700157 int size;
Robert Olsson19baf832005-06-21 12:43:18 -0700158 unsigned int revision;
159};
160
Robert Olsson19baf832005-06-21 12:43:18 -0700161static void put_child(struct trie *t, struct tnode *tn, int i, struct node *n);
162static void tnode_put_child_reorg(struct tnode *tn, int i, struct node *n, int wasfull);
Robert Olsson19baf832005-06-21 12:43:18 -0700163static struct node *resize(struct trie *t, struct tnode *tn);
Robert Olsson2f80b3c2005-08-09 20:25:06 -0700164static struct tnode *inflate(struct trie *t, struct tnode *tn);
165static struct tnode *halve(struct trie *t, struct tnode *tn);
Robert Olsson19baf832005-06-21 12:43:18 -0700166static void tnode_free(struct tnode *tn);
Robert Olsson19baf832005-06-21 12:43:18 -0700167
Eric Dumazetba899662005-08-26 12:05:31 -0700168static kmem_cache_t *fn_alias_kmem __read_mostly;
Robert Olsson19baf832005-06-21 12:43:18 -0700169static struct trie *trie_local = NULL, *trie_main = NULL;
170
Robert Olsson2373ce12005-08-25 13:01:29 -0700171
172/* rcu_read_lock needs to be hold by caller from readside */
173
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700174static inline struct node *tnode_get_child(struct tnode *tn, int i)
Robert Olsson19baf832005-06-21 12:43:18 -0700175{
Olof Johansson91b9a272005-08-09 20:24:39 -0700176 BUG_ON(i >= 1 << tn->bits);
Robert Olsson19baf832005-06-21 12:43:18 -0700177
Robert Olsson2373ce12005-08-25 13:01:29 -0700178 return rcu_dereference(tn->child[i]);
Robert Olsson19baf832005-06-21 12:43:18 -0700179}
180
Stephen Hemmignerbb435b82005-08-09 20:25:39 -0700181static inline int tnode_child_length(const struct tnode *tn)
Robert Olsson19baf832005-06-21 12:43:18 -0700182{
Olof Johansson91b9a272005-08-09 20:24:39 -0700183 return 1 << tn->bits;
Robert Olsson19baf832005-06-21 12:43:18 -0700184}
185
Robert Olsson19baf832005-06-21 12:43:18 -0700186static inline t_key tkey_extract_bits(t_key a, int offset, int bits)
187{
Olof Johansson91b9a272005-08-09 20:24:39 -0700188 if (offset < KEYLENGTH)
Robert Olsson19baf832005-06-21 12:43:18 -0700189 return ((t_key)(a << offset)) >> (KEYLENGTH - bits);
Olof Johansson91b9a272005-08-09 20:24:39 -0700190 else
Robert Olsson19baf832005-06-21 12:43:18 -0700191 return 0;
192}
193
194static inline int tkey_equals(t_key a, t_key b)
195{
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700196 return a == b;
Robert Olsson19baf832005-06-21 12:43:18 -0700197}
198
199static inline int tkey_sub_equals(t_key a, int offset, int bits, t_key b)
200{
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700201 if (bits == 0 || offset >= KEYLENGTH)
202 return 1;
Olof Johansson91b9a272005-08-09 20:24:39 -0700203 bits = bits > KEYLENGTH ? KEYLENGTH : bits;
204 return ((a ^ b) << offset) >> (KEYLENGTH - bits) == 0;
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700205}
Robert Olsson19baf832005-06-21 12:43:18 -0700206
207static inline int tkey_mismatch(t_key a, int offset, t_key b)
208{
209 t_key diff = a ^ b;
210 int i = offset;
211
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700212 if (!diff)
213 return 0;
214 while ((diff << i) >> (KEYLENGTH-1) == 0)
Robert Olsson19baf832005-06-21 12:43:18 -0700215 i++;
216 return i;
217}
218
Robert Olsson19baf832005-06-21 12:43:18 -0700219/*
220 To understand this stuff, an understanding of keys and all their bits is
221 necessary. Every node in the trie has a key associated with it, but not
222 all of the bits in that key are significant.
223
224 Consider a node 'n' and its parent 'tp'.
225
226 If n is a leaf, every bit in its key is significant. Its presence is
Robert Olsson772cb712005-09-19 15:31:18 -0700227 necessitated by path compression, since during a tree traversal (when
Robert Olsson19baf832005-06-21 12:43:18 -0700228 searching for a leaf - unless we are doing an insertion) we will completely
229 ignore all skipped bits we encounter. Thus we need to verify, at the end of
230 a potentially successful search, that we have indeed been walking the
231 correct key path.
232
233 Note that we can never "miss" the correct key in the tree if present by
234 following the wrong path. Path compression ensures that segments of the key
235 that are the same for all keys with a given prefix are skipped, but the
236 skipped part *is* identical for each node in the subtrie below the skipped
237 bit! trie_insert() in this implementation takes care of that - note the
238 call to tkey_sub_equals() in trie_insert().
239
240 if n is an internal node - a 'tnode' here, the various parts of its key
241 have many different meanings.
242
243 Example:
244 _________________________________________________________________
245 | i | i | i | i | i | i | i | N | N | N | S | S | S | S | S | C |
246 -----------------------------------------------------------------
247 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
248
249 _________________________________________________________________
250 | C | C | C | u | u | u | u | u | u | u | u | u | u | u | u | u |
251 -----------------------------------------------------------------
252 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
253
254 tp->pos = 7
255 tp->bits = 3
256 n->pos = 15
Olof Johansson91b9a272005-08-09 20:24:39 -0700257 n->bits = 4
Robert Olsson19baf832005-06-21 12:43:18 -0700258
259 First, let's just ignore the bits that come before the parent tp, that is
260 the bits from 0 to (tp->pos-1). They are *known* but at this point we do
261 not use them for anything.
262
263 The bits from (tp->pos) to (tp->pos + tp->bits - 1) - "N", above - are the
264 index into the parent's child array. That is, they will be used to find
265 'n' among tp's children.
266
267 The bits from (tp->pos + tp->bits) to (n->pos - 1) - "S" - are skipped bits
268 for the node n.
269
270 All the bits we have seen so far are significant to the node n. The rest
271 of the bits are really not needed or indeed known in n->key.
272
273 The bits from (n->pos) to (n->pos + n->bits - 1) - "C" - are the index into
274 n's child array, and will of course be different for each child.
275
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700276
Robert Olsson19baf832005-06-21 12:43:18 -0700277 The rest of the bits, from (n->pos + n->bits) onward, are completely unknown
278 at this point.
279
280*/
281
Stephen Hemminger0c7770c2005-08-23 21:59:41 -0700282static inline void check_tnode(const struct tnode *tn)
Robert Olsson19baf832005-06-21 12:43:18 -0700283{
Stephen Hemminger0c7770c2005-08-23 21:59:41 -0700284 WARN_ON(tn && tn->pos+tn->bits > 32);
Robert Olsson19baf832005-06-21 12:43:18 -0700285}
286
287static int halve_threshold = 25;
288static int inflate_threshold = 50;
289
Robert Olsson2373ce12005-08-25 13:01:29 -0700290
291static void __alias_free_mem(struct rcu_head *head)
292{
293 struct fib_alias *fa = container_of(head, struct fib_alias, rcu);
294 kmem_cache_free(fn_alias_kmem, fa);
295}
296
297static inline void alias_free_mem_rcu(struct fib_alias *fa)
298{
299 call_rcu(&fa->rcu, __alias_free_mem);
300}
301
302static void __leaf_free_rcu(struct rcu_head *head)
303{
304 kfree(container_of(head, struct leaf, rcu));
305}
306
307static inline void free_leaf(struct leaf *leaf)
308{
309 call_rcu(&leaf->rcu, __leaf_free_rcu);
310}
311
312static void __leaf_info_free_rcu(struct rcu_head *head)
313{
314 kfree(container_of(head, struct leaf_info, rcu));
315}
316
317static inline void free_leaf_info(struct leaf_info *leaf)
318{
319 call_rcu(&leaf->rcu, __leaf_info_free_rcu);
320}
321
322static struct tnode *tnode_alloc(unsigned int size)
323{
324 struct page *pages;
325
326 if (size <= PAGE_SIZE)
327 return kcalloc(size, 1, GFP_KERNEL);
328
329 pages = alloc_pages(GFP_KERNEL|__GFP_ZERO, get_order(size));
330 if (!pages)
331 return NULL;
332
333 return page_address(pages);
334}
335
336static void __tnode_free_rcu(struct rcu_head *head)
337{
338 struct tnode *tn = container_of(head, struct tnode, rcu);
339 unsigned int size = sizeof(struct tnode) +
340 (1 << tn->bits) * sizeof(struct node *);
341
342 if (size <= PAGE_SIZE)
343 kfree(tn);
344 else
345 free_pages((unsigned long)tn, get_order(size));
346}
347
348static inline void tnode_free(struct tnode *tn)
349{
350 call_rcu(&tn->rcu, __tnode_free_rcu);
351}
352
Robert Olsson19baf832005-06-21 12:43:18 -0700353static struct leaf *leaf_new(void)
354{
355 struct leaf *l = kmalloc(sizeof(struct leaf), GFP_KERNEL);
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700356 if (l) {
Robert Olsson2373ce12005-08-25 13:01:29 -0700357 l->parent = T_LEAF;
Robert Olsson19baf832005-06-21 12:43:18 -0700358 INIT_HLIST_HEAD(&l->list);
359 }
360 return l;
361}
362
363static struct leaf_info *leaf_info_new(int plen)
364{
365 struct leaf_info *li = kmalloc(sizeof(struct leaf_info), GFP_KERNEL);
Robert Olsson2373ce12005-08-25 13:01:29 -0700366 if (li) {
367 li->plen = plen;
368 INIT_LIST_HEAD(&li->falh);
Patrick McHardyf0e36f82005-07-05 14:44:55 -0700369 }
Robert Olsson2373ce12005-08-25 13:01:29 -0700370 return li;
Patrick McHardyf0e36f82005-07-05 14:44:55 -0700371}
372
Robert Olsson19baf832005-06-21 12:43:18 -0700373static struct tnode* tnode_new(t_key key, int pos, int bits)
374{
375 int nchildren = 1<<bits;
376 int sz = sizeof(struct tnode) + nchildren * sizeof(struct node *);
Patrick McHardyf0e36f82005-07-05 14:44:55 -0700377 struct tnode *tn = tnode_alloc(sz);
Robert Olsson19baf832005-06-21 12:43:18 -0700378
Olof Johansson91b9a272005-08-09 20:24:39 -0700379 if (tn) {
Robert Olsson19baf832005-06-21 12:43:18 -0700380 memset(tn, 0, sz);
Robert Olsson2373ce12005-08-25 13:01:29 -0700381 tn->parent = T_TNODE;
Robert Olsson19baf832005-06-21 12:43:18 -0700382 tn->pos = pos;
383 tn->bits = bits;
384 tn->key = key;
385 tn->full_children = 0;
386 tn->empty_children = 1<<bits;
387 }
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700388
Stephen Hemminger0c7770c2005-08-23 21:59:41 -0700389 pr_debug("AT %p s=%u %u\n", tn, (unsigned int) sizeof(struct tnode),
390 (unsigned int) (sizeof(struct node) * 1<<bits));
Robert Olsson19baf832005-06-21 12:43:18 -0700391 return tn;
392}
393
Robert Olsson19baf832005-06-21 12:43:18 -0700394/*
395 * Check whether a tnode 'n' is "full", i.e. it is an internal node
396 * and no bits are skipped. See discussion in dyntree paper p. 6
397 */
398
Stephen Hemmignerbb435b82005-08-09 20:25:39 -0700399static inline int tnode_full(const struct tnode *tn, const struct node *n)
Robert Olsson19baf832005-06-21 12:43:18 -0700400{
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700401 if (n == NULL || IS_LEAF(n))
Robert Olsson19baf832005-06-21 12:43:18 -0700402 return 0;
403
404 return ((struct tnode *) n)->pos == tn->pos + tn->bits;
405}
406
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700407static inline void put_child(struct trie *t, struct tnode *tn, int i, struct node *n)
Robert Olsson19baf832005-06-21 12:43:18 -0700408{
409 tnode_put_child_reorg(tn, i, n, -1);
410}
411
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700412 /*
Robert Olsson19baf832005-06-21 12:43:18 -0700413 * Add a child at position i overwriting the old value.
414 * Update the value of full_children and empty_children.
415 */
416
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700417static void tnode_put_child_reorg(struct tnode *tn, int i, struct node *n, int wasfull)
Robert Olsson19baf832005-06-21 12:43:18 -0700418{
Robert Olsson2373ce12005-08-25 13:01:29 -0700419 struct node *chi = tn->child[i];
Robert Olsson19baf832005-06-21 12:43:18 -0700420 int isfull;
421
Stephen Hemminger0c7770c2005-08-23 21:59:41 -0700422 BUG_ON(i >= 1<<tn->bits);
423
Robert Olsson19baf832005-06-21 12:43:18 -0700424
425 /* update emptyChildren */
426 if (n == NULL && chi != NULL)
427 tn->empty_children++;
428 else if (n != NULL && chi == NULL)
429 tn->empty_children--;
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700430
Robert Olsson19baf832005-06-21 12:43:18 -0700431 /* update fullChildren */
Olof Johansson91b9a272005-08-09 20:24:39 -0700432 if (wasfull == -1)
Robert Olsson19baf832005-06-21 12:43:18 -0700433 wasfull = tnode_full(tn, chi);
434
435 isfull = tnode_full(tn, n);
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700436 if (wasfull && !isfull)
Robert Olsson19baf832005-06-21 12:43:18 -0700437 tn->full_children--;
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700438 else if (!wasfull && isfull)
Robert Olsson19baf832005-06-21 12:43:18 -0700439 tn->full_children++;
Olof Johansson91b9a272005-08-09 20:24:39 -0700440
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700441 if (n)
442 NODE_SET_PARENT(n, tn);
Robert Olsson19baf832005-06-21 12:43:18 -0700443
Robert Olsson2373ce12005-08-25 13:01:29 -0700444 rcu_assign_pointer(tn->child[i], n);
Robert Olsson19baf832005-06-21 12:43:18 -0700445}
446
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700447static struct node *resize(struct trie *t, struct tnode *tn)
Robert Olsson19baf832005-06-21 12:43:18 -0700448{
449 int i;
Robert Olsson2f368952005-07-05 15:02:40 -0700450 int err = 0;
Robert Olsson2f80b3c2005-08-09 20:25:06 -0700451 struct tnode *old_tn;
Robert Olsson19baf832005-06-21 12:43:18 -0700452
453 if (!tn)
454 return NULL;
455
Stephen Hemminger0c7770c2005-08-23 21:59:41 -0700456 pr_debug("In tnode_resize %p inflate_threshold=%d threshold=%d\n",
457 tn, inflate_threshold, halve_threshold);
Robert Olsson19baf832005-06-21 12:43:18 -0700458
459 /* No children */
460 if (tn->empty_children == tnode_child_length(tn)) {
461 tnode_free(tn);
462 return NULL;
463 }
464 /* One child */
465 if (tn->empty_children == tnode_child_length(tn) - 1)
466 for (i = 0; i < tnode_child_length(tn); i++) {
Olof Johansson91b9a272005-08-09 20:24:39 -0700467 struct node *n;
Robert Olsson19baf832005-06-21 12:43:18 -0700468
Olof Johansson91b9a272005-08-09 20:24:39 -0700469 n = tn->child[i];
Robert Olsson2373ce12005-08-25 13:01:29 -0700470 if (!n)
Olof Johansson91b9a272005-08-09 20:24:39 -0700471 continue;
Olof Johansson91b9a272005-08-09 20:24:39 -0700472
473 /* compress one level */
Robert Olsson2373ce12005-08-25 13:01:29 -0700474 NODE_SET_PARENT(n, NULL);
Olof Johansson91b9a272005-08-09 20:24:39 -0700475 tnode_free(tn);
476 return n;
Robert Olsson19baf832005-06-21 12:43:18 -0700477 }
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700478 /*
Robert Olsson19baf832005-06-21 12:43:18 -0700479 * Double as long as the resulting node has a number of
480 * nonempty nodes that are above the threshold.
481 */
482
483 /*
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700484 * From "Implementing a dynamic compressed trie" by Stefan Nilsson of
485 * the Helsinki University of Technology and Matti Tikkanen of Nokia
Robert Olsson19baf832005-06-21 12:43:18 -0700486 * Telecommunications, page 6:
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700487 * "A node is doubled if the ratio of non-empty children to all
Robert Olsson19baf832005-06-21 12:43:18 -0700488 * children in the *doubled* node is at least 'high'."
489 *
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700490 * 'high' in this instance is the variable 'inflate_threshold'. It
491 * is expressed as a percentage, so we multiply it with
492 * tnode_child_length() and instead of multiplying by 2 (since the
493 * child array will be doubled by inflate()) and multiplying
494 * the left-hand side by 100 (to handle the percentage thing) we
Robert Olsson19baf832005-06-21 12:43:18 -0700495 * multiply the left-hand side by 50.
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700496 *
497 * The left-hand side may look a bit weird: tnode_child_length(tn)
498 * - tn->empty_children is of course the number of non-null children
499 * in the current node. tn->full_children is the number of "full"
Robert Olsson19baf832005-06-21 12:43:18 -0700500 * children, that is non-null tnodes with a skip value of 0.
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700501 * All of those will be doubled in the resulting inflated tnode, so
Robert Olsson19baf832005-06-21 12:43:18 -0700502 * we just count them one extra time here.
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700503 *
Robert Olsson19baf832005-06-21 12:43:18 -0700504 * A clearer way to write this would be:
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700505 *
Robert Olsson19baf832005-06-21 12:43:18 -0700506 * to_be_doubled = tn->full_children;
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700507 * not_to_be_doubled = tnode_child_length(tn) - tn->empty_children -
Robert Olsson19baf832005-06-21 12:43:18 -0700508 * tn->full_children;
509 *
510 * new_child_length = tnode_child_length(tn) * 2;
511 *
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700512 * new_fill_factor = 100 * (not_to_be_doubled + 2*to_be_doubled) /
Robert Olsson19baf832005-06-21 12:43:18 -0700513 * new_child_length;
514 * if (new_fill_factor >= inflate_threshold)
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700515 *
516 * ...and so on, tho it would mess up the while () loop.
517 *
Robert Olsson19baf832005-06-21 12:43:18 -0700518 * anyway,
519 * 100 * (not_to_be_doubled + 2*to_be_doubled) / new_child_length >=
520 * inflate_threshold
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700521 *
Robert Olsson19baf832005-06-21 12:43:18 -0700522 * avoid a division:
523 * 100 * (not_to_be_doubled + 2*to_be_doubled) >=
524 * inflate_threshold * new_child_length
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700525 *
Robert Olsson19baf832005-06-21 12:43:18 -0700526 * expand not_to_be_doubled and to_be_doubled, and shorten:
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700527 * 100 * (tnode_child_length(tn) - tn->empty_children +
Olof Johansson91b9a272005-08-09 20:24:39 -0700528 * tn->full_children) >= inflate_threshold * new_child_length
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700529 *
Robert Olsson19baf832005-06-21 12:43:18 -0700530 * expand new_child_length:
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700531 * 100 * (tnode_child_length(tn) - tn->empty_children +
Olof Johansson91b9a272005-08-09 20:24:39 -0700532 * tn->full_children) >=
Robert Olsson19baf832005-06-21 12:43:18 -0700533 * inflate_threshold * tnode_child_length(tn) * 2
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700534 *
Robert Olsson19baf832005-06-21 12:43:18 -0700535 * shorten again:
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700536 * 50 * (tn->full_children + tnode_child_length(tn) -
Olof Johansson91b9a272005-08-09 20:24:39 -0700537 * tn->empty_children) >= inflate_threshold *
Robert Olsson19baf832005-06-21 12:43:18 -0700538 * tnode_child_length(tn)
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700539 *
Robert Olsson19baf832005-06-21 12:43:18 -0700540 */
541
542 check_tnode(tn);
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700543
Robert Olsson2f368952005-07-05 15:02:40 -0700544 err = 0;
Robert Olsson19baf832005-06-21 12:43:18 -0700545 while ((tn->full_children > 0 &&
546 50 * (tn->full_children + tnode_child_length(tn) - tn->empty_children) >=
547 inflate_threshold * tnode_child_length(tn))) {
548
Robert Olsson2f80b3c2005-08-09 20:25:06 -0700549 old_tn = tn;
550 tn = inflate(t, tn);
551 if (IS_ERR(tn)) {
552 tn = old_tn;
Robert Olsson2f368952005-07-05 15:02:40 -0700553#ifdef CONFIG_IP_FIB_TRIE_STATS
554 t->stats.resize_node_skipped++;
555#endif
556 break;
557 }
Robert Olsson19baf832005-06-21 12:43:18 -0700558 }
559
560 check_tnode(tn);
561
562 /*
563 * Halve as long as the number of empty children in this
564 * node is above threshold.
565 */
Robert Olsson2f368952005-07-05 15:02:40 -0700566
567 err = 0;
Robert Olsson19baf832005-06-21 12:43:18 -0700568 while (tn->bits > 1 &&
569 100 * (tnode_child_length(tn) - tn->empty_children) <
Robert Olsson2f368952005-07-05 15:02:40 -0700570 halve_threshold * tnode_child_length(tn)) {
Robert Olsson19baf832005-06-21 12:43:18 -0700571
Robert Olsson2f80b3c2005-08-09 20:25:06 -0700572 old_tn = tn;
573 tn = halve(t, tn);
574 if (IS_ERR(tn)) {
575 tn = old_tn;
Robert Olsson2f368952005-07-05 15:02:40 -0700576#ifdef CONFIG_IP_FIB_TRIE_STATS
577 t->stats.resize_node_skipped++;
578#endif
579 break;
580 }
581 }
582
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700583
Robert Olsson19baf832005-06-21 12:43:18 -0700584 /* Only one child remains */
Robert Olsson19baf832005-06-21 12:43:18 -0700585 if (tn->empty_children == tnode_child_length(tn) - 1)
586 for (i = 0; i < tnode_child_length(tn); i++) {
Olof Johansson91b9a272005-08-09 20:24:39 -0700587 struct node *n;
588
Olof Johansson91b9a272005-08-09 20:24:39 -0700589 n = tn->child[i];
Robert Olsson2373ce12005-08-25 13:01:29 -0700590 if (!n)
Olof Johansson91b9a272005-08-09 20:24:39 -0700591 continue;
Olof Johansson91b9a272005-08-09 20:24:39 -0700592
593 /* compress one level */
594
Robert Olsson2373ce12005-08-25 13:01:29 -0700595 NODE_SET_PARENT(n, NULL);
Olof Johansson91b9a272005-08-09 20:24:39 -0700596 tnode_free(tn);
597 return n;
Robert Olsson19baf832005-06-21 12:43:18 -0700598 }
599
600 return (struct node *) tn;
601}
602
Robert Olsson2f80b3c2005-08-09 20:25:06 -0700603static struct tnode *inflate(struct trie *t, struct tnode *tn)
Robert Olsson19baf832005-06-21 12:43:18 -0700604{
605 struct tnode *inode;
606 struct tnode *oldtnode = tn;
607 int olen = tnode_child_length(tn);
608 int i;
609
Stephen Hemminger0c7770c2005-08-23 21:59:41 -0700610 pr_debug("In inflate\n");
Robert Olsson19baf832005-06-21 12:43:18 -0700611
612 tn = tnode_new(oldtnode->key, oldtnode->pos, oldtnode->bits + 1);
613
Stephen Hemminger0c7770c2005-08-23 21:59:41 -0700614 if (!tn)
Robert Olsson2f80b3c2005-08-09 20:25:06 -0700615 return ERR_PTR(-ENOMEM);
Robert Olsson2f368952005-07-05 15:02:40 -0700616
617 /*
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700618 * Preallocate and store tnodes before the actual work so we
619 * don't get into an inconsistent state if memory allocation
620 * fails. In case of failure we return the oldnode and inflate
Robert Olsson2f368952005-07-05 15:02:40 -0700621 * of tnode is ignored.
622 */
Olof Johansson91b9a272005-08-09 20:24:39 -0700623
624 for (i = 0; i < olen; i++) {
Robert Olsson2f368952005-07-05 15:02:40 -0700625 struct tnode *inode = (struct tnode *) tnode_get_child(oldtnode, i);
626
627 if (inode &&
628 IS_TNODE(inode) &&
629 inode->pos == oldtnode->pos + oldtnode->bits &&
630 inode->bits > 1) {
631 struct tnode *left, *right;
Robert Olsson2f368952005-07-05 15:02:40 -0700632 t_key m = TKEY_GET_MASK(inode->pos, 1);
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700633
Robert Olsson2f368952005-07-05 15:02:40 -0700634 left = tnode_new(inode->key&(~m), inode->pos + 1,
635 inode->bits - 1);
Robert Olsson2f80b3c2005-08-09 20:25:06 -0700636 if (!left)
637 goto nomem;
Olof Johansson91b9a272005-08-09 20:24:39 -0700638
Robert Olsson2f368952005-07-05 15:02:40 -0700639 right = tnode_new(inode->key|m, inode->pos + 1,
640 inode->bits - 1);
641
Robert Olsson2f80b3c2005-08-09 20:25:06 -0700642 if (!right) {
643 tnode_free(left);
644 goto nomem;
645 }
Robert Olsson2f368952005-07-05 15:02:40 -0700646
647 put_child(t, tn, 2*i, (struct node *) left);
648 put_child(t, tn, 2*i+1, (struct node *) right);
649 }
650 }
651
Olof Johansson91b9a272005-08-09 20:24:39 -0700652 for (i = 0; i < olen; i++) {
Robert Olsson19baf832005-06-21 12:43:18 -0700653 struct node *node = tnode_get_child(oldtnode, i);
Olof Johansson91b9a272005-08-09 20:24:39 -0700654 struct tnode *left, *right;
655 int size, j;
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700656
Robert Olsson19baf832005-06-21 12:43:18 -0700657 /* An empty child */
658 if (node == NULL)
659 continue;
660
661 /* A leaf or an internal node with skipped bits */
662
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700663 if (IS_LEAF(node) || ((struct tnode *) node)->pos >
Robert Olsson19baf832005-06-21 12:43:18 -0700664 tn->pos + tn->bits - 1) {
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700665 if (tkey_extract_bits(node->key, oldtnode->pos + oldtnode->bits,
Robert Olsson19baf832005-06-21 12:43:18 -0700666 1) == 0)
667 put_child(t, tn, 2*i, node);
668 else
669 put_child(t, tn, 2*i+1, node);
670 continue;
671 }
672
673 /* An internal node with two children */
674 inode = (struct tnode *) node;
675
676 if (inode->bits == 1) {
677 put_child(t, tn, 2*i, inode->child[0]);
678 put_child(t, tn, 2*i+1, inode->child[1]);
679
680 tnode_free(inode);
Olof Johansson91b9a272005-08-09 20:24:39 -0700681 continue;
Robert Olsson19baf832005-06-21 12:43:18 -0700682 }
683
Olof Johansson91b9a272005-08-09 20:24:39 -0700684 /* An internal node with more than two children */
Robert Olsson19baf832005-06-21 12:43:18 -0700685
Olof Johansson91b9a272005-08-09 20:24:39 -0700686 /* We will replace this node 'inode' with two new
687 * ones, 'left' and 'right', each with half of the
688 * original children. The two new nodes will have
689 * a position one bit further down the key and this
690 * means that the "significant" part of their keys
691 * (see the discussion near the top of this file)
692 * will differ by one bit, which will be "0" in
693 * left's key and "1" in right's key. Since we are
694 * moving the key position by one step, the bit that
695 * we are moving away from - the bit at position
696 * (inode->pos) - is the one that will differ between
697 * left and right. So... we synthesize that bit in the
698 * two new keys.
699 * The mask 'm' below will be a single "one" bit at
700 * the position (inode->pos)
701 */
Robert Olsson19baf832005-06-21 12:43:18 -0700702
Olof Johansson91b9a272005-08-09 20:24:39 -0700703 /* Use the old key, but set the new significant
704 * bit to zero.
705 */
Robert Olsson19baf832005-06-21 12:43:18 -0700706
Olof Johansson91b9a272005-08-09 20:24:39 -0700707 left = (struct tnode *) tnode_get_child(tn, 2*i);
708 put_child(t, tn, 2*i, NULL);
Robert Olsson19baf832005-06-21 12:43:18 -0700709
Olof Johansson91b9a272005-08-09 20:24:39 -0700710 BUG_ON(!left);
Robert Olsson2f368952005-07-05 15:02:40 -0700711
Olof Johansson91b9a272005-08-09 20:24:39 -0700712 right = (struct tnode *) tnode_get_child(tn, 2*i+1);
713 put_child(t, tn, 2*i+1, NULL);
Robert Olsson2f368952005-07-05 15:02:40 -0700714
Olof Johansson91b9a272005-08-09 20:24:39 -0700715 BUG_ON(!right);
Robert Olsson2f368952005-07-05 15:02:40 -0700716
Olof Johansson91b9a272005-08-09 20:24:39 -0700717 size = tnode_child_length(left);
718 for (j = 0; j < size; j++) {
719 put_child(t, left, j, inode->child[j]);
720 put_child(t, right, j, inode->child[j + size]);
Robert Olsson19baf832005-06-21 12:43:18 -0700721 }
Olof Johansson91b9a272005-08-09 20:24:39 -0700722 put_child(t, tn, 2*i, resize(t, left));
723 put_child(t, tn, 2*i+1, resize(t, right));
724
725 tnode_free(inode);
Robert Olsson19baf832005-06-21 12:43:18 -0700726 }
727 tnode_free(oldtnode);
728 return tn;
Robert Olsson2f80b3c2005-08-09 20:25:06 -0700729nomem:
730 {
731 int size = tnode_child_length(tn);
732 int j;
733
Stephen Hemminger0c7770c2005-08-23 21:59:41 -0700734 for (j = 0; j < size; j++)
Robert Olsson2f80b3c2005-08-09 20:25:06 -0700735 if (tn->child[j])
736 tnode_free((struct tnode *)tn->child[j]);
737
738 tnode_free(tn);
Stephen Hemminger0c7770c2005-08-23 21:59:41 -0700739
Robert Olsson2f80b3c2005-08-09 20:25:06 -0700740 return ERR_PTR(-ENOMEM);
741 }
Robert Olsson19baf832005-06-21 12:43:18 -0700742}
743
Robert Olsson2f80b3c2005-08-09 20:25:06 -0700744static struct tnode *halve(struct trie *t, struct tnode *tn)
Robert Olsson19baf832005-06-21 12:43:18 -0700745{
746 struct tnode *oldtnode = tn;
747 struct node *left, *right;
748 int i;
749 int olen = tnode_child_length(tn);
750
Stephen Hemminger0c7770c2005-08-23 21:59:41 -0700751 pr_debug("In halve\n");
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700752
753 tn = tnode_new(oldtnode->key, oldtnode->pos, oldtnode->bits - 1);
Robert Olsson19baf832005-06-21 12:43:18 -0700754
Robert Olsson2f80b3c2005-08-09 20:25:06 -0700755 if (!tn)
756 return ERR_PTR(-ENOMEM);
Robert Olsson2f368952005-07-05 15:02:40 -0700757
758 /*
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700759 * Preallocate and store tnodes before the actual work so we
760 * don't get into an inconsistent state if memory allocation
761 * fails. In case of failure we return the oldnode and halve
Robert Olsson2f368952005-07-05 15:02:40 -0700762 * of tnode is ignored.
763 */
764
Olof Johansson91b9a272005-08-09 20:24:39 -0700765 for (i = 0; i < olen; i += 2) {
Robert Olsson2f368952005-07-05 15:02:40 -0700766 left = tnode_get_child(oldtnode, i);
767 right = tnode_get_child(oldtnode, i+1);
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700768
Robert Olsson2f368952005-07-05 15:02:40 -0700769 /* Two nonempty children */
Stephen Hemminger0c7770c2005-08-23 21:59:41 -0700770 if (left && right) {
Robert Olsson2f80b3c2005-08-09 20:25:06 -0700771 struct tnode *newn;
Stephen Hemminger0c7770c2005-08-23 21:59:41 -0700772
Robert Olsson2f80b3c2005-08-09 20:25:06 -0700773 newn = tnode_new(left->key, tn->pos + tn->bits, 1);
Stephen Hemminger0c7770c2005-08-23 21:59:41 -0700774
775 if (!newn)
Robert Olsson2f80b3c2005-08-09 20:25:06 -0700776 goto nomem;
Stephen Hemminger0c7770c2005-08-23 21:59:41 -0700777
Robert Olsson2f80b3c2005-08-09 20:25:06 -0700778 put_child(t, tn, i/2, (struct node *)newn);
Robert Olsson2f368952005-07-05 15:02:40 -0700779 }
Robert Olsson2f368952005-07-05 15:02:40 -0700780
Robert Olsson2f368952005-07-05 15:02:40 -0700781 }
Robert Olsson19baf832005-06-21 12:43:18 -0700782
Olof Johansson91b9a272005-08-09 20:24:39 -0700783 for (i = 0; i < olen; i += 2) {
784 struct tnode *newBinNode;
785
Robert Olsson19baf832005-06-21 12:43:18 -0700786 left = tnode_get_child(oldtnode, i);
787 right = tnode_get_child(oldtnode, i+1);
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700788
Robert Olsson19baf832005-06-21 12:43:18 -0700789 /* At least one of the children is empty */
790 if (left == NULL) {
791 if (right == NULL) /* Both are empty */
792 continue;
793 put_child(t, tn, i/2, right);
Olof Johansson91b9a272005-08-09 20:24:39 -0700794 continue;
Stephen Hemminger0c7770c2005-08-23 21:59:41 -0700795 }
Olof Johansson91b9a272005-08-09 20:24:39 -0700796
797 if (right == NULL) {
Robert Olsson19baf832005-06-21 12:43:18 -0700798 put_child(t, tn, i/2, left);
Olof Johansson91b9a272005-08-09 20:24:39 -0700799 continue;
800 }
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700801
Robert Olsson19baf832005-06-21 12:43:18 -0700802 /* Two nonempty children */
Olof Johansson91b9a272005-08-09 20:24:39 -0700803 newBinNode = (struct tnode *) tnode_get_child(tn, i/2);
804 put_child(t, tn, i/2, NULL);
Olof Johansson91b9a272005-08-09 20:24:39 -0700805 put_child(t, newBinNode, 0, left);
806 put_child(t, newBinNode, 1, right);
807 put_child(t, tn, i/2, resize(t, newBinNode));
Robert Olsson19baf832005-06-21 12:43:18 -0700808 }
809 tnode_free(oldtnode);
810 return tn;
Robert Olsson2f80b3c2005-08-09 20:25:06 -0700811nomem:
812 {
813 int size = tnode_child_length(tn);
814 int j;
815
Stephen Hemminger0c7770c2005-08-23 21:59:41 -0700816 for (j = 0; j < size; j++)
Robert Olsson2f80b3c2005-08-09 20:25:06 -0700817 if (tn->child[j])
818 tnode_free((struct tnode *)tn->child[j]);
819
820 tnode_free(tn);
Stephen Hemminger0c7770c2005-08-23 21:59:41 -0700821
Robert Olsson2f80b3c2005-08-09 20:25:06 -0700822 return ERR_PTR(-ENOMEM);
823 }
Robert Olsson19baf832005-06-21 12:43:18 -0700824}
825
Olof Johansson91b9a272005-08-09 20:24:39 -0700826static void trie_init(struct trie *t)
Robert Olsson19baf832005-06-21 12:43:18 -0700827{
Olof Johansson91b9a272005-08-09 20:24:39 -0700828 if (!t)
829 return;
830
831 t->size = 0;
Robert Olsson2373ce12005-08-25 13:01:29 -0700832 rcu_assign_pointer(t->trie, NULL);
Olof Johansson91b9a272005-08-09 20:24:39 -0700833 t->revision = 0;
Robert Olsson19baf832005-06-21 12:43:18 -0700834#ifdef CONFIG_IP_FIB_TRIE_STATS
Olof Johansson91b9a272005-08-09 20:24:39 -0700835 memset(&t->stats, 0, sizeof(struct trie_use_stats));
Robert Olsson19baf832005-06-21 12:43:18 -0700836#endif
Robert Olsson19baf832005-06-21 12:43:18 -0700837}
838
Robert Olsson772cb712005-09-19 15:31:18 -0700839/* readside must use rcu_read_lock currently dump routines
Robert Olsson2373ce12005-08-25 13:01:29 -0700840 via get_fa_head and dump */
841
Robert Olsson772cb712005-09-19 15:31:18 -0700842static struct leaf_info *find_leaf_info(struct leaf *l, int plen)
Robert Olsson19baf832005-06-21 12:43:18 -0700843{
Robert Olsson772cb712005-09-19 15:31:18 -0700844 struct hlist_head *head = &l->list;
Robert Olsson19baf832005-06-21 12:43:18 -0700845 struct hlist_node *node;
846 struct leaf_info *li;
847
Robert Olsson2373ce12005-08-25 13:01:29 -0700848 hlist_for_each_entry_rcu(li, node, head, hlist)
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700849 if (li->plen == plen)
Robert Olsson19baf832005-06-21 12:43:18 -0700850 return li;
Olof Johansson91b9a272005-08-09 20:24:39 -0700851
Robert Olsson19baf832005-06-21 12:43:18 -0700852 return NULL;
853}
854
855static inline struct list_head * get_fa_head(struct leaf *l, int plen)
856{
Robert Olsson772cb712005-09-19 15:31:18 -0700857 struct leaf_info *li = find_leaf_info(l, plen);
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700858
Olof Johansson91b9a272005-08-09 20:24:39 -0700859 if (!li)
860 return NULL;
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700861
Olof Johansson91b9a272005-08-09 20:24:39 -0700862 return &li->falh;
Robert Olsson19baf832005-06-21 12:43:18 -0700863}
864
865static void insert_leaf_info(struct hlist_head *head, struct leaf_info *new)
866{
Robert Olsson2373ce12005-08-25 13:01:29 -0700867 struct leaf_info *li = NULL, *last = NULL;
868 struct hlist_node *node;
Robert Olsson19baf832005-06-21 12:43:18 -0700869
Robert Olsson2373ce12005-08-25 13:01:29 -0700870 if (hlist_empty(head)) {
871 hlist_add_head_rcu(&new->hlist, head);
872 } else {
873 hlist_for_each_entry(li, node, head, hlist) {
874 if (new->plen > li->plen)
875 break;
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700876
Robert Olsson2373ce12005-08-25 13:01:29 -0700877 last = li;
878 }
879 if (last)
880 hlist_add_after_rcu(&last->hlist, &new->hlist);
881 else
882 hlist_add_before_rcu(&new->hlist, &li->hlist);
883 }
Robert Olsson19baf832005-06-21 12:43:18 -0700884}
885
Robert Olsson2373ce12005-08-25 13:01:29 -0700886/* rcu_read_lock needs to be hold by caller from readside */
887
Robert Olsson19baf832005-06-21 12:43:18 -0700888static struct leaf *
889fib_find_node(struct trie *t, u32 key)
890{
891 int pos;
892 struct tnode *tn;
893 struct node *n;
894
895 pos = 0;
Robert Olsson2373ce12005-08-25 13:01:29 -0700896 n = rcu_dereference(t->trie);
Robert Olsson19baf832005-06-21 12:43:18 -0700897
898 while (n != NULL && NODE_TYPE(n) == T_TNODE) {
899 tn = (struct tnode *) n;
Olof Johansson91b9a272005-08-09 20:24:39 -0700900
Robert Olsson19baf832005-06-21 12:43:18 -0700901 check_tnode(tn);
Olof Johansson91b9a272005-08-09 20:24:39 -0700902
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700903 if (tkey_sub_equals(tn->key, pos, tn->pos-pos, key)) {
Olof Johansson91b9a272005-08-09 20:24:39 -0700904 pos = tn->pos + tn->bits;
Robert Olsson19baf832005-06-21 12:43:18 -0700905 n = tnode_get_child(tn, tkey_extract_bits(key, tn->pos, tn->bits));
Olof Johansson91b9a272005-08-09 20:24:39 -0700906 } else
Robert Olsson19baf832005-06-21 12:43:18 -0700907 break;
908 }
909 /* Case we have found a leaf. Compare prefixes */
910
Olof Johansson91b9a272005-08-09 20:24:39 -0700911 if (n != NULL && IS_LEAF(n) && tkey_equals(key, n->key))
912 return (struct leaf *)n;
913
Robert Olsson19baf832005-06-21 12:43:18 -0700914 return NULL;
915}
916
917static struct node *trie_rebalance(struct trie *t, struct tnode *tn)
918{
Robert Olsson19baf832005-06-21 12:43:18 -0700919 int wasfull;
920 t_key cindex, key;
921 struct tnode *tp = NULL;
922
Robert Olsson19baf832005-06-21 12:43:18 -0700923 key = tn->key;
Robert Olsson19baf832005-06-21 12:43:18 -0700924
925 while (tn != NULL && NODE_PARENT(tn) != NULL) {
Robert Olsson19baf832005-06-21 12:43:18 -0700926
927 tp = NODE_PARENT(tn);
928 cindex = tkey_extract_bits(key, tp->pos, tp->bits);
929 wasfull = tnode_full(tp, tnode_get_child(tp, cindex));
930 tn = (struct tnode *) resize (t, (struct tnode *)tn);
931 tnode_put_child_reorg((struct tnode *)tp, cindex,(struct node*)tn, wasfull);
Olof Johansson91b9a272005-08-09 20:24:39 -0700932
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700933 if (!NODE_PARENT(tn))
Robert Olsson19baf832005-06-21 12:43:18 -0700934 break;
935
936 tn = NODE_PARENT(tn);
937 }
938 /* Handle last (top) tnode */
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700939 if (IS_TNODE(tn))
Robert Olsson19baf832005-06-21 12:43:18 -0700940 tn = (struct tnode*) resize(t, (struct tnode *)tn);
941
942 return (struct node*) tn;
943}
944
Robert Olsson2373ce12005-08-25 13:01:29 -0700945/* only used from updater-side */
946
Robert Olssonf835e472005-06-28 15:00:39 -0700947static struct list_head *
948fib_insert_node(struct trie *t, int *err, u32 key, int plen)
Robert Olsson19baf832005-06-21 12:43:18 -0700949{
950 int pos, newpos;
951 struct tnode *tp = NULL, *tn = NULL;
952 struct node *n;
953 struct leaf *l;
954 int missbit;
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700955 struct list_head *fa_head = NULL;
Robert Olsson19baf832005-06-21 12:43:18 -0700956 struct leaf_info *li;
957 t_key cindex;
958
959 pos = 0;
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700960 n = t->trie;
Robert Olsson19baf832005-06-21 12:43:18 -0700961
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700962 /* If we point to NULL, stop. Either the tree is empty and we should
963 * just put a new leaf in if, or we have reached an empty child slot,
Robert Olsson19baf832005-06-21 12:43:18 -0700964 * and we should just put our new leaf in that.
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700965 * If we point to a T_TNODE, check if it matches our key. Note that
966 * a T_TNODE might be skipping any number of bits - its 'pos' need
Robert Olsson19baf832005-06-21 12:43:18 -0700967 * not be the parent's 'pos'+'bits'!
968 *
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700969 * If it does match the current key, get pos/bits from it, extract
Robert Olsson19baf832005-06-21 12:43:18 -0700970 * the index from our key, push the T_TNODE and walk the tree.
971 *
972 * If it doesn't, we have to replace it with a new T_TNODE.
973 *
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700974 * If we point to a T_LEAF, it might or might not have the same key
975 * as we do. If it does, just change the value, update the T_LEAF's
976 * value, and return it.
Robert Olsson19baf832005-06-21 12:43:18 -0700977 * If it doesn't, we need to replace it with a T_TNODE.
978 */
979
980 while (n != NULL && NODE_TYPE(n) == T_TNODE) {
981 tn = (struct tnode *) n;
Olof Johansson91b9a272005-08-09 20:24:39 -0700982
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700983 check_tnode(tn);
Olof Johansson91b9a272005-08-09 20:24:39 -0700984
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700985 if (tkey_sub_equals(tn->key, pos, tn->pos-pos, key)) {
Robert Olsson19baf832005-06-21 12:43:18 -0700986 tp = tn;
Olof Johansson91b9a272005-08-09 20:24:39 -0700987 pos = tn->pos + tn->bits;
Robert Olsson19baf832005-06-21 12:43:18 -0700988 n = tnode_get_child(tn, tkey_extract_bits(key, tn->pos, tn->bits));
989
Stephen Hemminger0c7770c2005-08-23 21:59:41 -0700990 BUG_ON(n && NODE_PARENT(n) != tn);
Olof Johansson91b9a272005-08-09 20:24:39 -0700991 } else
Robert Olsson19baf832005-06-21 12:43:18 -0700992 break;
993 }
994
995 /*
996 * n ----> NULL, LEAF or TNODE
997 *
Stephen Hemmingerc877efb2005-07-19 14:01:51 -0700998 * tp is n's (parent) ----> NULL or TNODE
Robert Olsson19baf832005-06-21 12:43:18 -0700999 */
1000
Olof Johansson91b9a272005-08-09 20:24:39 -07001001 BUG_ON(tp && IS_LEAF(tp));
Robert Olsson19baf832005-06-21 12:43:18 -07001002
1003 /* Case 1: n is a leaf. Compare prefixes */
1004
Stephen Hemmingerc877efb2005-07-19 14:01:51 -07001005 if (n != NULL && IS_LEAF(n) && tkey_equals(key, n->key)) {
Olof Johansson91b9a272005-08-09 20:24:39 -07001006 struct leaf *l = (struct leaf *) n;
1007
Robert Olsson19baf832005-06-21 12:43:18 -07001008 li = leaf_info_new(plen);
Olof Johansson91b9a272005-08-09 20:24:39 -07001009
Stephen Hemmingerc877efb2005-07-19 14:01:51 -07001010 if (!li) {
Robert Olssonf835e472005-06-28 15:00:39 -07001011 *err = -ENOMEM;
1012 goto err;
1013 }
Robert Olsson19baf832005-06-21 12:43:18 -07001014
1015 fa_head = &li->falh;
1016 insert_leaf_info(&l->list, li);
1017 goto done;
1018 }
1019 t->size++;
1020 l = leaf_new();
1021
Stephen Hemmingerc877efb2005-07-19 14:01:51 -07001022 if (!l) {
Robert Olssonf835e472005-06-28 15:00:39 -07001023 *err = -ENOMEM;
1024 goto err;
1025 }
Robert Olsson19baf832005-06-21 12:43:18 -07001026
1027 l->key = key;
1028 li = leaf_info_new(plen);
1029
Stephen Hemmingerc877efb2005-07-19 14:01:51 -07001030 if (!li) {
Robert Olssonf835e472005-06-28 15:00:39 -07001031 tnode_free((struct tnode *) l);
1032 *err = -ENOMEM;
1033 goto err;
1034 }
Robert Olsson19baf832005-06-21 12:43:18 -07001035
1036 fa_head = &li->falh;
1037 insert_leaf_info(&l->list, li);
1038
Robert Olsson19baf832005-06-21 12:43:18 -07001039 if (t->trie && n == NULL) {
Olof Johansson91b9a272005-08-09 20:24:39 -07001040 /* Case 2: n is NULL, and will just insert a new leaf */
Robert Olsson19baf832005-06-21 12:43:18 -07001041
1042 NODE_SET_PARENT(l, tp);
Robert Olsson19baf832005-06-21 12:43:18 -07001043
Olof Johansson91b9a272005-08-09 20:24:39 -07001044 cindex = tkey_extract_bits(key, tp->pos, tp->bits);
1045 put_child(t, (struct tnode *)tp, cindex, (struct node *)l);
1046 } else {
1047 /* Case 3: n is a LEAF or a TNODE and the key doesn't match. */
Stephen Hemmingerc877efb2005-07-19 14:01:51 -07001048 /*
1049 * Add a new tnode here
Robert Olsson19baf832005-06-21 12:43:18 -07001050 * first tnode need some special handling
1051 */
1052
1053 if (tp)
Olof Johansson91b9a272005-08-09 20:24:39 -07001054 pos = tp->pos+tp->bits;
Robert Olsson19baf832005-06-21 12:43:18 -07001055 else
Olof Johansson91b9a272005-08-09 20:24:39 -07001056 pos = 0;
1057
Stephen Hemmingerc877efb2005-07-19 14:01:51 -07001058 if (n) {
Robert Olsson19baf832005-06-21 12:43:18 -07001059 newpos = tkey_mismatch(key, pos, n->key);
1060 tn = tnode_new(n->key, newpos, 1);
Olof Johansson91b9a272005-08-09 20:24:39 -07001061 } else {
Robert Olsson19baf832005-06-21 12:43:18 -07001062 newpos = 0;
Stephen Hemmingerc877efb2005-07-19 14:01:51 -07001063 tn = tnode_new(key, newpos, 1); /* First tnode */
Robert Olsson19baf832005-06-21 12:43:18 -07001064 }
Robert Olsson19baf832005-06-21 12:43:18 -07001065
Stephen Hemmingerc877efb2005-07-19 14:01:51 -07001066 if (!tn) {
Robert Olssonf835e472005-06-28 15:00:39 -07001067 free_leaf_info(li);
1068 tnode_free((struct tnode *) l);
1069 *err = -ENOMEM;
1070 goto err;
Olof Johansson91b9a272005-08-09 20:24:39 -07001071 }
1072
Robert Olsson19baf832005-06-21 12:43:18 -07001073 NODE_SET_PARENT(tn, tp);
1074
Olof Johansson91b9a272005-08-09 20:24:39 -07001075 missbit = tkey_extract_bits(key, newpos, 1);
Robert Olsson19baf832005-06-21 12:43:18 -07001076 put_child(t, tn, missbit, (struct node *)l);
1077 put_child(t, tn, 1-missbit, n);
1078
Stephen Hemmingerc877efb2005-07-19 14:01:51 -07001079 if (tp) {
Robert Olsson19baf832005-06-21 12:43:18 -07001080 cindex = tkey_extract_bits(key, tp->pos, tp->bits);
1081 put_child(t, (struct tnode *)tp, cindex, (struct node *)tn);
Olof Johansson91b9a272005-08-09 20:24:39 -07001082 } else {
Robert Olsson2373ce12005-08-25 13:01:29 -07001083 rcu_assign_pointer(t->trie, (struct node *)tn); /* First tnode */
Robert Olsson19baf832005-06-21 12:43:18 -07001084 tp = tn;
1085 }
1086 }
Olof Johansson91b9a272005-08-09 20:24:39 -07001087
1088 if (tp && tp->pos + tp->bits > 32)
Stephen Hemmingerc877efb2005-07-19 14:01:51 -07001089 printk("ERROR tp=%p pos=%d, bits=%d, key=%0x plen=%d\n",
Robert Olsson19baf832005-06-21 12:43:18 -07001090 tp, tp->pos, tp->bits, key, plen);
Olof Johansson91b9a272005-08-09 20:24:39 -07001091
Robert Olsson19baf832005-06-21 12:43:18 -07001092 /* Rebalance the trie */
Robert Olsson2373ce12005-08-25 13:01:29 -07001093
1094 rcu_assign_pointer(t->trie, trie_rebalance(t, tp));
Robert Olssonf835e472005-06-28 15:00:39 -07001095done:
1096 t->revision++;
Olof Johansson91b9a272005-08-09 20:24:39 -07001097err:
Robert Olsson19baf832005-06-21 12:43:18 -07001098 return fa_head;
1099}
1100
1101static int
1102fn_trie_insert(struct fib_table *tb, struct rtmsg *r, struct kern_rta *rta,
1103 struct nlmsghdr *nlhdr, struct netlink_skb_parms *req)
1104{
1105 struct trie *t = (struct trie *) tb->tb_data;
1106 struct fib_alias *fa, *new_fa;
Stephen Hemmingerc877efb2005-07-19 14:01:51 -07001107 struct list_head *fa_head = NULL;
Robert Olsson19baf832005-06-21 12:43:18 -07001108 struct fib_info *fi;
1109 int plen = r->rtm_dst_len;
1110 int type = r->rtm_type;
1111 u8 tos = r->rtm_tos;
1112 u32 key, mask;
1113 int err;
1114 struct leaf *l;
1115
1116 if (plen > 32)
1117 return -EINVAL;
1118
1119 key = 0;
Stephen Hemmingerc877efb2005-07-19 14:01:51 -07001120 if (rta->rta_dst)
Robert Olsson19baf832005-06-21 12:43:18 -07001121 memcpy(&key, rta->rta_dst, 4);
1122
1123 key = ntohl(key);
1124
Stephen Hemminger0c7770c2005-08-23 21:59:41 -07001125 pr_debug("Insert table=%d %08x/%d\n", tb->tb_id, key, plen);
Robert Olsson19baf832005-06-21 12:43:18 -07001126
Olof Johansson91b9a272005-08-09 20:24:39 -07001127 mask = ntohl(inet_make_mask(plen));
Robert Olsson19baf832005-06-21 12:43:18 -07001128
Stephen Hemmingerc877efb2005-07-19 14:01:51 -07001129 if (key & ~mask)
Robert Olsson19baf832005-06-21 12:43:18 -07001130 return -EINVAL;
1131
1132 key = key & mask;
1133
Olof Johansson91b9a272005-08-09 20:24:39 -07001134 fi = fib_create_info(r, rta, nlhdr, &err);
1135
1136 if (!fi)
Robert Olsson19baf832005-06-21 12:43:18 -07001137 goto err;
1138
1139 l = fib_find_node(t, key);
Stephen Hemmingerc877efb2005-07-19 14:01:51 -07001140 fa = NULL;
Robert Olsson19baf832005-06-21 12:43:18 -07001141
Stephen Hemmingerc877efb2005-07-19 14:01:51 -07001142 if (l) {
Robert Olsson19baf832005-06-21 12:43:18 -07001143 fa_head = get_fa_head(l, plen);
1144 fa = fib_find_alias(fa_head, tos, fi->fib_priority);
1145 }
1146
1147 /* Now fa, if non-NULL, points to the first fib alias
1148 * with the same keys [prefix,tos,priority], if such key already
1149 * exists or to the node before which we will insert new one.
1150 *
1151 * If fa is NULL, we will need to allocate a new one and
1152 * insert to the head of f.
1153 *
1154 * If f is NULL, no fib node matched the destination key
1155 * and we need to allocate a new one of those as well.
1156 */
1157
Olof Johansson91b9a272005-08-09 20:24:39 -07001158 if (fa && fa->fa_info->fib_priority == fi->fib_priority) {
Robert Olsson19baf832005-06-21 12:43:18 -07001159 struct fib_alias *fa_orig;
1160
1161 err = -EEXIST;
1162 if (nlhdr->nlmsg_flags & NLM_F_EXCL)
1163 goto out;
1164
1165 if (nlhdr->nlmsg_flags & NLM_F_REPLACE) {
1166 struct fib_info *fi_drop;
1167 u8 state;
1168
Robert Olsson2373ce12005-08-25 13:01:29 -07001169 err = -ENOBUFS;
1170 new_fa = kmem_cache_alloc(fn_alias_kmem, SLAB_KERNEL);
1171 if (new_fa == NULL)
1172 goto out;
Robert Olsson19baf832005-06-21 12:43:18 -07001173
1174 fi_drop = fa->fa_info;
Robert Olsson2373ce12005-08-25 13:01:29 -07001175 new_fa->fa_tos = fa->fa_tos;
1176 new_fa->fa_info = fi;
1177 new_fa->fa_type = type;
1178 new_fa->fa_scope = r->rtm_scope;
Robert Olsson19baf832005-06-21 12:43:18 -07001179 state = fa->fa_state;
Robert Olsson2373ce12005-08-25 13:01:29 -07001180 new_fa->fa_state &= ~FA_S_ACCESSED;
Robert Olsson19baf832005-06-21 12:43:18 -07001181
Robert Olsson2373ce12005-08-25 13:01:29 -07001182 list_replace_rcu(&fa->fa_list, &new_fa->fa_list);
1183 alias_free_mem_rcu(fa);
Robert Olsson19baf832005-06-21 12:43:18 -07001184
1185 fib_release_info(fi_drop);
1186 if (state & FA_S_ACCESSED)
Olof Johansson91b9a272005-08-09 20:24:39 -07001187 rt_cache_flush(-1);
Robert Olsson19baf832005-06-21 12:43:18 -07001188
Olof Johansson91b9a272005-08-09 20:24:39 -07001189 goto succeeded;
Robert Olsson19baf832005-06-21 12:43:18 -07001190 }
1191 /* Error if we find a perfect match which
1192 * uses the same scope, type, and nexthop
1193 * information.
1194 */
1195 fa_orig = fa;
1196 list_for_each_entry(fa, fa_orig->fa_list.prev, fa_list) {
1197 if (fa->fa_tos != tos)
1198 break;
1199 if (fa->fa_info->fib_priority != fi->fib_priority)
1200 break;
1201 if (fa->fa_type == type &&
1202 fa->fa_scope == r->rtm_scope &&
1203 fa->fa_info == fi) {
1204 goto out;
1205 }
1206 }
1207 if (!(nlhdr->nlmsg_flags & NLM_F_APPEND))
1208 fa = fa_orig;
1209 }
1210 err = -ENOENT;
Olof Johansson91b9a272005-08-09 20:24:39 -07001211 if (!(nlhdr->nlmsg_flags & NLM_F_CREATE))
Robert Olsson19baf832005-06-21 12:43:18 -07001212 goto out;
1213
1214 err = -ENOBUFS;
1215 new_fa = kmem_cache_alloc(fn_alias_kmem, SLAB_KERNEL);
1216 if (new_fa == NULL)
1217 goto out;
1218
1219 new_fa->fa_info = fi;
1220 new_fa->fa_tos = tos;
1221 new_fa->fa_type = type;
1222 new_fa->fa_scope = r->rtm_scope;
1223 new_fa->fa_state = 0;
Robert Olsson19baf832005-06-21 12:43:18 -07001224 /*
1225 * Insert new entry to the list.
1226 */
1227
Stephen Hemmingerc877efb2005-07-19 14:01:51 -07001228 if (!fa_head) {
Robert Olssonf835e472005-06-28 15:00:39 -07001229 fa_head = fib_insert_node(t, &err, key, plen);
1230 err = 0;
Stephen Hemmingerc877efb2005-07-19 14:01:51 -07001231 if (err)
Robert Olssonf835e472005-06-28 15:00:39 -07001232 goto out_free_new_fa;
1233 }
Robert Olsson19baf832005-06-21 12:43:18 -07001234
Robert Olsson2373ce12005-08-25 13:01:29 -07001235 list_add_tail_rcu(&new_fa->fa_list,
1236 (fa ? &fa->fa_list : fa_head));
Robert Olsson19baf832005-06-21 12:43:18 -07001237
1238 rt_cache_flush(-1);
1239 rtmsg_fib(RTM_NEWROUTE, htonl(key), new_fa, plen, tb->tb_id, nlhdr, req);
1240succeeded:
1241 return 0;
Robert Olssonf835e472005-06-28 15:00:39 -07001242
1243out_free_new_fa:
1244 kmem_cache_free(fn_alias_kmem, new_fa);
Robert Olsson19baf832005-06-21 12:43:18 -07001245out:
1246 fib_release_info(fi);
Olof Johansson91b9a272005-08-09 20:24:39 -07001247err:
Robert Olsson19baf832005-06-21 12:43:18 -07001248 return err;
1249}
1250
Robert Olsson2373ce12005-08-25 13:01:29 -07001251
Robert Olsson772cb712005-09-19 15:31:18 -07001252/* should be called with rcu_read_lock */
Stephen Hemminger0c7770c2005-08-23 21:59:41 -07001253static inline int check_leaf(struct trie *t, struct leaf *l,
1254 t_key key, int *plen, const struct flowi *flp,
Patrick McHardy06c74272005-08-23 22:06:09 -07001255 struct fib_result *res)
Robert Olsson19baf832005-06-21 12:43:18 -07001256{
Patrick McHardy06c74272005-08-23 22:06:09 -07001257 int err, i;
Robert Olsson19baf832005-06-21 12:43:18 -07001258 t_key mask;
1259 struct leaf_info *li;
1260 struct hlist_head *hhead = &l->list;
1261 struct hlist_node *node;
Stephen Hemmingerc877efb2005-07-19 14:01:51 -07001262
Robert Olsson2373ce12005-08-25 13:01:29 -07001263 hlist_for_each_entry_rcu(li, node, hhead, hlist) {
Robert Olsson19baf832005-06-21 12:43:18 -07001264 i = li->plen;
1265 mask = ntohl(inet_make_mask(i));
Stephen Hemmingerc877efb2005-07-19 14:01:51 -07001266 if (l->key != (key & mask))
Robert Olsson19baf832005-06-21 12:43:18 -07001267 continue;
1268
Patrick McHardy06c74272005-08-23 22:06:09 -07001269 if ((err = fib_semantic_match(&li->falh, flp, res, l->key, mask, i)) <= 0) {
Robert Olsson19baf832005-06-21 12:43:18 -07001270 *plen = i;
1271#ifdef CONFIG_IP_FIB_TRIE_STATS
1272 t->stats.semantic_match_passed++;
1273#endif
Patrick McHardy06c74272005-08-23 22:06:09 -07001274 return err;
Robert Olsson19baf832005-06-21 12:43:18 -07001275 }
1276#ifdef CONFIG_IP_FIB_TRIE_STATS
1277 t->stats.semantic_match_miss++;
1278#endif
1279 }
Patrick McHardy06c74272005-08-23 22:06:09 -07001280 return 1;
Robert Olsson19baf832005-06-21 12:43:18 -07001281}
1282
1283static int
1284fn_trie_lookup(struct fib_table *tb, const struct flowi *flp, struct fib_result *res)
1285{
1286 struct trie *t = (struct trie *) tb->tb_data;
1287 int plen, ret = 0;
1288 struct node *n;
1289 struct tnode *pn;
1290 int pos, bits;
Olof Johansson91b9a272005-08-09 20:24:39 -07001291 t_key key = ntohl(flp->fl4_dst);
Robert Olsson19baf832005-06-21 12:43:18 -07001292 int chopped_off;
1293 t_key cindex = 0;
1294 int current_prefix_length = KEYLENGTH;
Olof Johansson91b9a272005-08-09 20:24:39 -07001295 struct tnode *cn;
1296 t_key node_prefix, key_prefix, pref_mismatch;
1297 int mp;
1298
Robert Olsson2373ce12005-08-25 13:01:29 -07001299 rcu_read_lock();
Robert Olsson19baf832005-06-21 12:43:18 -07001300
Robert Olsson2373ce12005-08-25 13:01:29 -07001301 n = rcu_dereference(t->trie);
Stephen Hemmingerc877efb2005-07-19 14:01:51 -07001302 if (!n)
Robert Olsson19baf832005-06-21 12:43:18 -07001303 goto failed;
1304
1305#ifdef CONFIG_IP_FIB_TRIE_STATS
1306 t->stats.gets++;
1307#endif
1308
1309 /* Just a leaf? */
1310 if (IS_LEAF(n)) {
Patrick McHardy06c74272005-08-23 22:06:09 -07001311 if ((ret = check_leaf(t, (struct leaf *)n, key, &plen, flp, res)) <= 0)
Robert Olsson19baf832005-06-21 12:43:18 -07001312 goto found;
1313 goto failed;
1314 }
1315 pn = (struct tnode *) n;
1316 chopped_off = 0;
Stephen Hemmingerc877efb2005-07-19 14:01:51 -07001317
Olof Johansson91b9a272005-08-09 20:24:39 -07001318 while (pn) {
Robert Olsson19baf832005-06-21 12:43:18 -07001319 pos = pn->pos;
1320 bits = pn->bits;
1321
Stephen Hemmingerc877efb2005-07-19 14:01:51 -07001322 if (!chopped_off)
Robert Olsson19baf832005-06-21 12:43:18 -07001323 cindex = tkey_extract_bits(MASK_PFX(key, current_prefix_length), pos, bits);
1324
1325 n = tnode_get_child(pn, cindex);
1326
1327 if (n == NULL) {
1328#ifdef CONFIG_IP_FIB_TRIE_STATS
1329 t->stats.null_node_hit++;
1330#endif
1331 goto backtrace;
1332 }
1333
Stephen Hemmingerc877efb2005-07-19 14:01:51 -07001334 if (IS_LEAF(n)) {
Patrick McHardy06c74272005-08-23 22:06:09 -07001335 if ((ret = check_leaf(t, (struct leaf *)n, key, &plen, flp, res)) <= 0)
Robert Olsson19baf832005-06-21 12:43:18 -07001336 goto found;
Olof Johansson91b9a272005-08-09 20:24:39 -07001337 else
1338 goto backtrace;
1339 }
1340
1341#define HL_OPTIMIZE
1342#ifdef HL_OPTIMIZE
1343 cn = (struct tnode *)n;
1344
1345 /*
1346 * It's a tnode, and we can do some extra checks here if we
1347 * like, to avoid descending into a dead-end branch.
1348 * This tnode is in the parent's child array at index
1349 * key[p_pos..p_pos+p_bits] but potentially with some bits
1350 * chopped off, so in reality the index may be just a
1351 * subprefix, padded with zero at the end.
1352 * We can also take a look at any skipped bits in this
1353 * tnode - everything up to p_pos is supposed to be ok,
1354 * and the non-chopped bits of the index (se previous
1355 * paragraph) are also guaranteed ok, but the rest is
1356 * considered unknown.
1357 *
1358 * The skipped bits are key[pos+bits..cn->pos].
1359 */
1360
1361 /* If current_prefix_length < pos+bits, we are already doing
1362 * actual prefix matching, which means everything from
1363 * pos+(bits-chopped_off) onward must be zero along some
1364 * branch of this subtree - otherwise there is *no* valid
1365 * prefix present. Here we can only check the skipped
1366 * bits. Remember, since we have already indexed into the
1367 * parent's child array, we know that the bits we chopped of
1368 * *are* zero.
1369 */
1370
1371 /* NOTA BENE: CHECKING ONLY SKIPPED BITS FOR THE NEW NODE HERE */
1372
1373 if (current_prefix_length < pos+bits) {
1374 if (tkey_extract_bits(cn->key, current_prefix_length,
1375 cn->pos - current_prefix_length) != 0 ||
1376 !(cn->child[0]))
1377 goto backtrace;
1378 }
1379
1380 /*
1381 * If chopped_off=0, the index is fully validated and we
1382 * only need to look at the skipped bits for this, the new,
1383 * tnode. What we actually want to do is to find out if
1384 * these skipped bits match our key perfectly, or if we will
1385 * have to count on finding a matching prefix further down,
1386 * because if we do, we would like to have some way of
1387 * verifying the existence of such a prefix at this point.
1388 */
1389
1390 /* The only thing we can do at this point is to verify that
1391 * any such matching prefix can indeed be a prefix to our
1392 * key, and if the bits in the node we are inspecting that
1393 * do not match our key are not ZERO, this cannot be true.
1394 * Thus, find out where there is a mismatch (before cn->pos)
1395 * and verify that all the mismatching bits are zero in the
1396 * new tnode's key.
1397 */
1398
1399 /* Note: We aren't very concerned about the piece of the key
1400 * that precede pn->pos+pn->bits, since these have already been
1401 * checked. The bits after cn->pos aren't checked since these are
1402 * by definition "unknown" at this point. Thus, what we want to
1403 * see is if we are about to enter the "prefix matching" state,
1404 * and in that case verify that the skipped bits that will prevail
1405 * throughout this subtree are zero, as they have to be if we are
1406 * to find a matching prefix.
1407 */
1408
1409 node_prefix = MASK_PFX(cn->key, cn->pos);
1410 key_prefix = MASK_PFX(key, cn->pos);
1411 pref_mismatch = key_prefix^node_prefix;
1412 mp = 0;
1413
1414 /* In short: If skipped bits in this node do not match the search
1415 * key, enter the "prefix matching" state.directly.
1416 */
1417 if (pref_mismatch) {
1418 while (!(pref_mismatch & (1<<(KEYLENGTH-1)))) {
1419 mp++;
1420 pref_mismatch = pref_mismatch <<1;
1421 }
1422 key_prefix = tkey_extract_bits(cn->key, mp, cn->pos-mp);
1423
1424 if (key_prefix != 0)
1425 goto backtrace;
1426
1427 if (current_prefix_length >= cn->pos)
1428 current_prefix_length = mp;
1429 }
1430#endif
1431 pn = (struct tnode *)n; /* Descend */
1432 chopped_off = 0;
1433 continue;
1434
Robert Olsson19baf832005-06-21 12:43:18 -07001435backtrace:
1436 chopped_off++;
1437
1438 /* As zero don't change the child key (cindex) */
Olof Johansson91b9a272005-08-09 20:24:39 -07001439 while ((chopped_off <= pn->bits) && !(cindex & (1<<(chopped_off-1))))
Robert Olsson19baf832005-06-21 12:43:18 -07001440 chopped_off++;
Robert Olsson19baf832005-06-21 12:43:18 -07001441
1442 /* Decrease current_... with bits chopped off */
1443 if (current_prefix_length > pn->pos + pn->bits - chopped_off)
1444 current_prefix_length = pn->pos + pn->bits - chopped_off;
Olof Johansson91b9a272005-08-09 20:24:39 -07001445
Robert Olsson19baf832005-06-21 12:43:18 -07001446 /*
Stephen Hemmingerc877efb2005-07-19 14:01:51 -07001447 * Either we do the actual chop off according or if we have
Robert Olsson19baf832005-06-21 12:43:18 -07001448 * chopped off all bits in this tnode walk up to our parent.
1449 */
1450
Olof Johansson91b9a272005-08-09 20:24:39 -07001451 if (chopped_off <= pn->bits) {
Robert Olsson19baf832005-06-21 12:43:18 -07001452 cindex &= ~(1 << (chopped_off-1));
Olof Johansson91b9a272005-08-09 20:24:39 -07001453 } else {
Stephen Hemmingerc877efb2005-07-19 14:01:51 -07001454 if (NODE_PARENT(pn) == NULL)
Robert Olsson19baf832005-06-21 12:43:18 -07001455 goto failed;
Olof Johansson91b9a272005-08-09 20:24:39 -07001456
Robert Olsson19baf832005-06-21 12:43:18 -07001457 /* Get Child's index */
1458 cindex = tkey_extract_bits(pn->key, NODE_PARENT(pn)->pos, NODE_PARENT(pn)->bits);
1459 pn = NODE_PARENT(pn);
1460 chopped_off = 0;
1461
1462#ifdef CONFIG_IP_FIB_TRIE_STATS
1463 t->stats.backtrack++;
1464#endif
1465 goto backtrace;
Stephen Hemmingerc877efb2005-07-19 14:01:51 -07001466 }
Robert Olsson19baf832005-06-21 12:43:18 -07001467 }
1468failed:
Stephen Hemmingerc877efb2005-07-19 14:01:51 -07001469 ret = 1;
Robert Olsson19baf832005-06-21 12:43:18 -07001470found:
Robert Olsson2373ce12005-08-25 13:01:29 -07001471 rcu_read_unlock();
Robert Olsson19baf832005-06-21 12:43:18 -07001472 return ret;
1473}
1474
Robert Olsson2373ce12005-08-25 13:01:29 -07001475/* only called from updater side */
Robert Olsson19baf832005-06-21 12:43:18 -07001476static int trie_leaf_remove(struct trie *t, t_key key)
1477{
1478 t_key cindex;
1479 struct tnode *tp = NULL;
1480 struct node *n = t->trie;
1481 struct leaf *l;
1482
Stephen Hemminger0c7770c2005-08-23 21:59:41 -07001483 pr_debug("entering trie_leaf_remove(%p)\n", n);
Robert Olsson19baf832005-06-21 12:43:18 -07001484
1485 /* Note that in the case skipped bits, those bits are *not* checked!
Stephen Hemmingerc877efb2005-07-19 14:01:51 -07001486 * When we finish this, we will have NULL or a T_LEAF, and the
Robert Olsson19baf832005-06-21 12:43:18 -07001487 * T_LEAF may or may not match our key.
1488 */
1489
Olof Johansson91b9a272005-08-09 20:24:39 -07001490 while (n != NULL && IS_TNODE(n)) {
Robert Olsson19baf832005-06-21 12:43:18 -07001491 struct tnode *tn = (struct tnode *) n;
1492 check_tnode(tn);
1493 n = tnode_get_child(tn ,tkey_extract_bits(key, tn->pos, tn->bits));
1494
Stephen Hemminger0c7770c2005-08-23 21:59:41 -07001495 BUG_ON(n && NODE_PARENT(n) != tn);
Olof Johansson91b9a272005-08-09 20:24:39 -07001496 }
Robert Olsson19baf832005-06-21 12:43:18 -07001497 l = (struct leaf *) n;
1498
Stephen Hemmingerc877efb2005-07-19 14:01:51 -07001499 if (!n || !tkey_equals(l->key, key))
Robert Olsson19baf832005-06-21 12:43:18 -07001500 return 0;
Stephen Hemmingerc877efb2005-07-19 14:01:51 -07001501
1502 /*
1503 * Key found.
1504 * Remove the leaf and rebalance the tree
Robert Olsson19baf832005-06-21 12:43:18 -07001505 */
1506
1507 t->revision++;
1508 t->size--;
1509
Robert Olsson2373ce12005-08-25 13:01:29 -07001510 preempt_disable();
Robert Olsson19baf832005-06-21 12:43:18 -07001511 tp = NODE_PARENT(n);
1512 tnode_free((struct tnode *) n);
1513
Stephen Hemmingerc877efb2005-07-19 14:01:51 -07001514 if (tp) {
Robert Olsson19baf832005-06-21 12:43:18 -07001515 cindex = tkey_extract_bits(key, tp->pos, tp->bits);
1516 put_child(t, (struct tnode *)tp, cindex, NULL);
Robert Olsson2373ce12005-08-25 13:01:29 -07001517 rcu_assign_pointer(t->trie, trie_rebalance(t, tp));
Olof Johansson91b9a272005-08-09 20:24:39 -07001518 } else
Robert Olsson2373ce12005-08-25 13:01:29 -07001519 rcu_assign_pointer(t->trie, NULL);
1520 preempt_enable();
Robert Olsson19baf832005-06-21 12:43:18 -07001521
1522 return 1;
1523}
1524
1525static int
1526fn_trie_delete(struct fib_table *tb, struct rtmsg *r, struct kern_rta *rta,
Olof Johansson91b9a272005-08-09 20:24:39 -07001527 struct nlmsghdr *nlhdr, struct netlink_skb_parms *req)
Robert Olsson19baf832005-06-21 12:43:18 -07001528{
1529 struct trie *t = (struct trie *) tb->tb_data;
1530 u32 key, mask;
1531 int plen = r->rtm_dst_len;
1532 u8 tos = r->rtm_tos;
1533 struct fib_alias *fa, *fa_to_delete;
1534 struct list_head *fa_head;
1535 struct leaf *l;
Olof Johansson91b9a272005-08-09 20:24:39 -07001536 struct leaf_info *li;
1537
Robert Olsson19baf832005-06-21 12:43:18 -07001538
Stephen Hemmingerc877efb2005-07-19 14:01:51 -07001539 if (plen > 32)
Robert Olsson19baf832005-06-21 12:43:18 -07001540 return -EINVAL;
1541
1542 key = 0;
Stephen Hemmingerc877efb2005-07-19 14:01:51 -07001543 if (rta->rta_dst)
Robert Olsson19baf832005-06-21 12:43:18 -07001544 memcpy(&key, rta->rta_dst, 4);
1545
1546 key = ntohl(key);
Olof Johansson91b9a272005-08-09 20:24:39 -07001547 mask = ntohl(inet_make_mask(plen));
Robert Olsson19baf832005-06-21 12:43:18 -07001548
Stephen Hemmingerc877efb2005-07-19 14:01:51 -07001549 if (key & ~mask)
Robert Olsson19baf832005-06-21 12:43:18 -07001550 return -EINVAL;
1551
1552 key = key & mask;
1553 l = fib_find_node(t, key);
1554
Stephen Hemmingerc877efb2005-07-19 14:01:51 -07001555 if (!l)
Robert Olsson19baf832005-06-21 12:43:18 -07001556 return -ESRCH;
1557
1558 fa_head = get_fa_head(l, plen);
1559 fa = fib_find_alias(fa_head, tos, 0);
1560
1561 if (!fa)
1562 return -ESRCH;
1563
Stephen Hemminger0c7770c2005-08-23 21:59:41 -07001564 pr_debug("Deleting %08x/%d tos=%d t=%p\n", key, plen, tos, t);
Robert Olsson19baf832005-06-21 12:43:18 -07001565
1566 fa_to_delete = NULL;
1567 fa_head = fa->fa_list.prev;
Robert Olsson2373ce12005-08-25 13:01:29 -07001568
Robert Olsson19baf832005-06-21 12:43:18 -07001569 list_for_each_entry(fa, fa_head, fa_list) {
1570 struct fib_info *fi = fa->fa_info;
1571
1572 if (fa->fa_tos != tos)
1573 break;
1574
1575 if ((!r->rtm_type ||
1576 fa->fa_type == r->rtm_type) &&
1577 (r->rtm_scope == RT_SCOPE_NOWHERE ||
1578 fa->fa_scope == r->rtm_scope) &&
1579 (!r->rtm_protocol ||
1580 fi->fib_protocol == r->rtm_protocol) &&
1581 fib_nh_match(r, nlhdr, rta, fi) == 0) {
1582 fa_to_delete = fa;
1583 break;
1584 }
1585 }
1586
Olof Johansson91b9a272005-08-09 20:24:39 -07001587 if (!fa_to_delete)
1588 return -ESRCH;
Robert Olsson19baf832005-06-21 12:43:18 -07001589
Olof Johansson91b9a272005-08-09 20:24:39 -07001590 fa = fa_to_delete;
1591 rtmsg_fib(RTM_DELROUTE, htonl(key), fa, plen, tb->tb_id, nlhdr, req);
Robert Olsson19baf832005-06-21 12:43:18 -07001592
Olof Johansson91b9a272005-08-09 20:24:39 -07001593 l = fib_find_node(t, key);
Robert Olsson772cb712005-09-19 15:31:18 -07001594 li = find_leaf_info(l, plen);
Robert Olsson19baf832005-06-21 12:43:18 -07001595
Robert Olsson2373ce12005-08-25 13:01:29 -07001596 list_del_rcu(&fa->fa_list);
Robert Olsson19baf832005-06-21 12:43:18 -07001597
Olof Johansson91b9a272005-08-09 20:24:39 -07001598 if (list_empty(fa_head)) {
Robert Olsson2373ce12005-08-25 13:01:29 -07001599 hlist_del_rcu(&li->hlist);
Olof Johansson91b9a272005-08-09 20:24:39 -07001600 free_leaf_info(li);
Robert Olsson2373ce12005-08-25 13:01:29 -07001601 }
Olof Johansson91b9a272005-08-09 20:24:39 -07001602
1603 if (hlist_empty(&l->list))
1604 trie_leaf_remove(t, key);
1605
1606 if (fa->fa_state & FA_S_ACCESSED)
1607 rt_cache_flush(-1);
1608
Robert Olsson2373ce12005-08-25 13:01:29 -07001609 fib_release_info(fa->fa_info);
1610 alias_free_mem_rcu(fa);
Olof Johansson91b9a272005-08-09 20:24:39 -07001611 return 0;
Robert Olsson19baf832005-06-21 12:43:18 -07001612}
1613
1614static int trie_flush_list(struct trie *t, struct list_head *head)
1615{
1616 struct fib_alias *fa, *fa_node;
1617 int found = 0;
1618
1619 list_for_each_entry_safe(fa, fa_node, head, fa_list) {
1620 struct fib_info *fi = fa->fa_info;
Robert Olsson19baf832005-06-21 12:43:18 -07001621
Robert Olsson2373ce12005-08-25 13:01:29 -07001622 if (fi && (fi->fib_flags & RTNH_F_DEAD)) {
1623 list_del_rcu(&fa->fa_list);
1624 fib_release_info(fa->fa_info);
1625 alias_free_mem_rcu(fa);
Robert Olsson19baf832005-06-21 12:43:18 -07001626 found++;
1627 }
1628 }
1629 return found;
1630}
1631
1632static int trie_flush_leaf(struct trie *t, struct leaf *l)
1633{
1634 int found = 0;
1635 struct hlist_head *lih = &l->list;
1636 struct hlist_node *node, *tmp;
1637 struct leaf_info *li = NULL;
1638
1639 hlist_for_each_entry_safe(li, node, tmp, lih, hlist) {
Robert Olsson19baf832005-06-21 12:43:18 -07001640 found += trie_flush_list(t, &li->falh);
1641
1642 if (list_empty(&li->falh)) {
Robert Olsson2373ce12005-08-25 13:01:29 -07001643 hlist_del_rcu(&li->hlist);
Robert Olsson19baf832005-06-21 12:43:18 -07001644 free_leaf_info(li);
1645 }
1646 }
1647 return found;
1648}
1649
Robert Olsson2373ce12005-08-25 13:01:29 -07001650/* rcu_read_lock needs to be hold by caller from readside */
1651
Robert Olsson19baf832005-06-21 12:43:18 -07001652static struct leaf *nextleaf(struct trie *t, struct leaf *thisleaf)
1653{
1654 struct node *c = (struct node *) thisleaf;
1655 struct tnode *p;
1656 int idx;
Robert Olsson2373ce12005-08-25 13:01:29 -07001657 struct node *trie = rcu_dereference(t->trie);
Robert Olsson19baf832005-06-21 12:43:18 -07001658
Stephen Hemmingerc877efb2005-07-19 14:01:51 -07001659 if (c == NULL) {
Robert Olsson2373ce12005-08-25 13:01:29 -07001660 if (trie == NULL)
Robert Olsson19baf832005-06-21 12:43:18 -07001661 return NULL;
1662
Robert Olsson2373ce12005-08-25 13:01:29 -07001663 if (IS_LEAF(trie)) /* trie w. just a leaf */
1664 return (struct leaf *) trie;
Robert Olsson19baf832005-06-21 12:43:18 -07001665
Robert Olsson2373ce12005-08-25 13:01:29 -07001666 p = (struct tnode*) trie; /* Start */
Olof Johansson91b9a272005-08-09 20:24:39 -07001667 } else
Robert Olsson19baf832005-06-21 12:43:18 -07001668 p = (struct tnode *) NODE_PARENT(c);
Stephen Hemmingerc877efb2005-07-19 14:01:51 -07001669
Robert Olsson19baf832005-06-21 12:43:18 -07001670 while (p) {
1671 int pos, last;
1672
1673 /* Find the next child of the parent */
Stephen Hemmingerc877efb2005-07-19 14:01:51 -07001674 if (c)
1675 pos = 1 + tkey_extract_bits(c->key, p->pos, p->bits);
1676 else
Robert Olsson19baf832005-06-21 12:43:18 -07001677 pos = 0;
1678
1679 last = 1 << p->bits;
Olof Johansson91b9a272005-08-09 20:24:39 -07001680 for (idx = pos; idx < last ; idx++) {
Robert Olsson2373ce12005-08-25 13:01:29 -07001681 c = rcu_dereference(p->child[idx]);
1682
1683 if (!c)
Olof Johansson91b9a272005-08-09 20:24:39 -07001684 continue;
Robert Olsson19baf832005-06-21 12:43:18 -07001685
Olof Johansson91b9a272005-08-09 20:24:39 -07001686 /* Decend if tnode */
Robert Olsson2373ce12005-08-25 13:01:29 -07001687 while (IS_TNODE(c)) {
1688 p = (struct tnode *) c;
1689 idx = 0;
Robert Olsson19baf832005-06-21 12:43:18 -07001690
Olof Johansson91b9a272005-08-09 20:24:39 -07001691 /* Rightmost non-NULL branch */
1692 if (p && IS_TNODE(p))
Robert Olsson2373ce12005-08-25 13:01:29 -07001693 while (!(c = rcu_dereference(p->child[idx]))
1694 && idx < (1<<p->bits)) idx++;
Robert Olsson19baf832005-06-21 12:43:18 -07001695
Olof Johansson91b9a272005-08-09 20:24:39 -07001696 /* Done with this tnode? */
Robert Olsson2373ce12005-08-25 13:01:29 -07001697 if (idx >= (1 << p->bits) || !c)
Olof Johansson91b9a272005-08-09 20:24:39 -07001698 goto up;
Robert Olsson19baf832005-06-21 12:43:18 -07001699 }
Robert Olsson2373ce12005-08-25 13:01:29 -07001700 return (struct leaf *) c;
Robert Olsson19baf832005-06-21 12:43:18 -07001701 }
1702up:
1703 /* No more children go up one step */
Olof Johansson91b9a272005-08-09 20:24:39 -07001704 c = (struct node *) p;
Robert Olsson19baf832005-06-21 12:43:18 -07001705 p = (struct tnode *) NODE_PARENT(p);
1706 }
1707 return NULL; /* Ready. Root of trie */
1708}
1709
1710static int fn_trie_flush(struct fib_table *tb)
1711{
1712 struct trie *t = (struct trie *) tb->tb_data;
1713 struct leaf *ll = NULL, *l = NULL;
1714 int found = 0, h;
1715
1716 t->revision++;
1717
Olof Johansson91b9a272005-08-09 20:24:39 -07001718 for (h = 0; (l = nextleaf(t, l)) != NULL; h++) {
Robert Olsson19baf832005-06-21 12:43:18 -07001719 found += trie_flush_leaf(t, l);
1720
1721 if (ll && hlist_empty(&ll->list))
1722 trie_leaf_remove(t, ll->key);
1723 ll = l;
1724 }
1725
1726 if (ll && hlist_empty(&ll->list))
1727 trie_leaf_remove(t, ll->key);
1728
Stephen Hemminger0c7770c2005-08-23 21:59:41 -07001729 pr_debug("trie_flush found=%d\n", found);
Robert Olsson19baf832005-06-21 12:43:18 -07001730 return found;
1731}
1732
Olof Johansson91b9a272005-08-09 20:24:39 -07001733static int trie_last_dflt = -1;
Robert Olsson19baf832005-06-21 12:43:18 -07001734
1735static void
1736fn_trie_select_default(struct fib_table *tb, const struct flowi *flp, struct fib_result *res)
1737{
1738 struct trie *t = (struct trie *) tb->tb_data;
1739 int order, last_idx;
1740 struct fib_info *fi = NULL;
1741 struct fib_info *last_resort;
1742 struct fib_alias *fa = NULL;
1743 struct list_head *fa_head;
1744 struct leaf *l;
1745
1746 last_idx = -1;
1747 last_resort = NULL;
1748 order = -1;
1749
Robert Olsson2373ce12005-08-25 13:01:29 -07001750 rcu_read_lock();
Stephen Hemmingerc877efb2005-07-19 14:01:51 -07001751
Robert Olsson19baf832005-06-21 12:43:18 -07001752 l = fib_find_node(t, 0);
Stephen Hemmingerc877efb2005-07-19 14:01:51 -07001753 if (!l)
Robert Olsson19baf832005-06-21 12:43:18 -07001754 goto out;
1755
1756 fa_head = get_fa_head(l, 0);
Stephen Hemmingerc877efb2005-07-19 14:01:51 -07001757 if (!fa_head)
Robert Olsson19baf832005-06-21 12:43:18 -07001758 goto out;
1759
Stephen Hemmingerc877efb2005-07-19 14:01:51 -07001760 if (list_empty(fa_head))
Robert Olsson19baf832005-06-21 12:43:18 -07001761 goto out;
1762
Robert Olsson2373ce12005-08-25 13:01:29 -07001763 list_for_each_entry_rcu(fa, fa_head, fa_list) {
Robert Olsson19baf832005-06-21 12:43:18 -07001764 struct fib_info *next_fi = fa->fa_info;
Olof Johansson91b9a272005-08-09 20:24:39 -07001765
Robert Olsson19baf832005-06-21 12:43:18 -07001766 if (fa->fa_scope != res->scope ||
1767 fa->fa_type != RTN_UNICAST)
1768 continue;
Olof Johansson91b9a272005-08-09 20:24:39 -07001769
Robert Olsson19baf832005-06-21 12:43:18 -07001770 if (next_fi->fib_priority > res->fi->fib_priority)
1771 break;
1772 if (!next_fi->fib_nh[0].nh_gw ||
1773 next_fi->fib_nh[0].nh_scope != RT_SCOPE_LINK)
1774 continue;
1775 fa->fa_state |= FA_S_ACCESSED;
Olof Johansson91b9a272005-08-09 20:24:39 -07001776
Robert Olsson19baf832005-06-21 12:43:18 -07001777 if (fi == NULL) {
1778 if (next_fi != res->fi)
1779 break;
1780 } else if (!fib_detect_death(fi, order, &last_resort,
1781 &last_idx, &trie_last_dflt)) {
1782 if (res->fi)
1783 fib_info_put(res->fi);
1784 res->fi = fi;
1785 atomic_inc(&fi->fib_clntref);
1786 trie_last_dflt = order;
1787 goto out;
1788 }
1789 fi = next_fi;
1790 order++;
1791 }
1792 if (order <= 0 || fi == NULL) {
1793 trie_last_dflt = -1;
1794 goto out;
1795 }
1796
1797 if (!fib_detect_death(fi, order, &last_resort, &last_idx, &trie_last_dflt)) {
1798 if (res->fi)
1799 fib_info_put(res->fi);
1800 res->fi = fi;
1801 atomic_inc(&fi->fib_clntref);
1802 trie_last_dflt = order;
1803 goto out;
1804 }
1805 if (last_idx >= 0) {
1806 if (res->fi)
1807 fib_info_put(res->fi);
1808 res->fi = last_resort;
1809 if (last_resort)
1810 atomic_inc(&last_resort->fib_clntref);
1811 }
1812 trie_last_dflt = last_idx;
1813 out:;
Robert Olsson2373ce12005-08-25 13:01:29 -07001814 rcu_read_unlock();
Robert Olsson19baf832005-06-21 12:43:18 -07001815}
1816
Stephen Hemmingerc877efb2005-07-19 14:01:51 -07001817static 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 -07001818 struct sk_buff *skb, struct netlink_callback *cb)
1819{
1820 int i, s_i;
1821 struct fib_alias *fa;
1822
Olof Johansson91b9a272005-08-09 20:24:39 -07001823 u32 xkey = htonl(key);
Robert Olsson19baf832005-06-21 12:43:18 -07001824
Olof Johansson91b9a272005-08-09 20:24:39 -07001825 s_i = cb->args[3];
Robert Olsson19baf832005-06-21 12:43:18 -07001826 i = 0;
1827
Robert Olsson2373ce12005-08-25 13:01:29 -07001828 /* rcu_read_lock is hold by caller */
1829
1830 list_for_each_entry_rcu(fa, fah, fa_list) {
Robert Olsson19baf832005-06-21 12:43:18 -07001831 if (i < s_i) {
1832 i++;
1833 continue;
1834 }
1835 if (fa->fa_info->fib_nh == NULL) {
1836 printk("Trie error _fib_nh=NULL in fa[%d] k=%08x plen=%d\n", i, key, plen);
1837 i++;
1838 continue;
1839 }
1840 if (fa->fa_info == NULL) {
1841 printk("Trie error fa_info=NULL in fa[%d] k=%08x plen=%d\n", i, key, plen);
1842 i++;
1843 continue;
1844 }
1845
1846 if (fib_dump_info(skb, NETLINK_CB(cb->skb).pid,
1847 cb->nlh->nlmsg_seq,
1848 RTM_NEWROUTE,
1849 tb->tb_id,
1850 fa->fa_type,
1851 fa->fa_scope,
1852 &xkey,
1853 plen,
1854 fa->fa_tos,
David S. Miller90f66912005-06-21 14:43:28 -07001855 fa->fa_info, 0) < 0) {
Robert Olsson19baf832005-06-21 12:43:18 -07001856 cb->args[3] = i;
1857 return -1;
Olof Johansson91b9a272005-08-09 20:24:39 -07001858 }
Robert Olsson19baf832005-06-21 12:43:18 -07001859 i++;
1860 }
Olof Johansson91b9a272005-08-09 20:24:39 -07001861 cb->args[3] = i;
Robert Olsson19baf832005-06-21 12:43:18 -07001862 return skb->len;
1863}
1864
Stephen Hemmingerc877efb2005-07-19 14:01:51 -07001865static 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 -07001866 struct netlink_callback *cb)
1867{
1868 int h, s_h;
1869 struct list_head *fa_head;
1870 struct leaf *l = NULL;
Robert Olsson19baf832005-06-21 12:43:18 -07001871
Olof Johansson91b9a272005-08-09 20:24:39 -07001872 s_h = cb->args[2];
Robert Olsson19baf832005-06-21 12:43:18 -07001873
Olof Johansson91b9a272005-08-09 20:24:39 -07001874 for (h = 0; (l = nextleaf(t, l)) != NULL; h++) {
Robert Olsson19baf832005-06-21 12:43:18 -07001875 if (h < s_h)
1876 continue;
1877 if (h > s_h)
1878 memset(&cb->args[3], 0,
1879 sizeof(cb->args) - 3*sizeof(cb->args[0]));
1880
1881 fa_head = get_fa_head(l, plen);
Olof Johansson91b9a272005-08-09 20:24:39 -07001882
Stephen Hemmingerc877efb2005-07-19 14:01:51 -07001883 if (!fa_head)
Robert Olsson19baf832005-06-21 12:43:18 -07001884 continue;
1885
Stephen Hemmingerc877efb2005-07-19 14:01:51 -07001886 if (list_empty(fa_head))
Robert Olsson19baf832005-06-21 12:43:18 -07001887 continue;
1888
1889 if (fn_trie_dump_fa(l->key, plen, fa_head, tb, skb, cb)<0) {
Olof Johansson91b9a272005-08-09 20:24:39 -07001890 cb->args[2] = h;
Robert Olsson19baf832005-06-21 12:43:18 -07001891 return -1;
1892 }
1893 }
Olof Johansson91b9a272005-08-09 20:24:39 -07001894 cb->args[2] = h;
Robert Olsson19baf832005-06-21 12:43:18 -07001895 return skb->len;
1896}
1897
1898static int fn_trie_dump(struct fib_table *tb, struct sk_buff *skb, struct netlink_callback *cb)
1899{
1900 int m, s_m;
1901 struct trie *t = (struct trie *) tb->tb_data;
1902
1903 s_m = cb->args[1];
1904
Robert Olsson2373ce12005-08-25 13:01:29 -07001905 rcu_read_lock();
Olof Johansson91b9a272005-08-09 20:24:39 -07001906 for (m = 0; m <= 32; m++) {
Robert Olsson19baf832005-06-21 12:43:18 -07001907 if (m < s_m)
1908 continue;
1909 if (m > s_m)
1910 memset(&cb->args[2], 0,
Olof Johansson91b9a272005-08-09 20:24:39 -07001911 sizeof(cb->args) - 2*sizeof(cb->args[0]));
Robert Olsson19baf832005-06-21 12:43:18 -07001912
1913 if (fn_trie_dump_plen(t, 32-m, tb, skb, cb)<0) {
1914 cb->args[1] = m;
1915 goto out;
1916 }
1917 }
Robert Olsson2373ce12005-08-25 13:01:29 -07001918 rcu_read_unlock();
Robert Olsson19baf832005-06-21 12:43:18 -07001919 cb->args[1] = m;
1920 return skb->len;
Olof Johansson91b9a272005-08-09 20:24:39 -07001921out:
Robert Olsson2373ce12005-08-25 13:01:29 -07001922 rcu_read_unlock();
Robert Olsson19baf832005-06-21 12:43:18 -07001923 return -1;
1924}
1925
1926/* Fix more generic FIB names for init later */
1927
1928#ifdef CONFIG_IP_MULTIPLE_TABLES
1929struct fib_table * fib_hash_init(int id)
1930#else
1931struct fib_table * __init fib_hash_init(int id)
1932#endif
1933{
1934 struct fib_table *tb;
1935 struct trie *t;
1936
1937 if (fn_alias_kmem == NULL)
1938 fn_alias_kmem = kmem_cache_create("ip_fib_alias",
1939 sizeof(struct fib_alias),
1940 0, SLAB_HWCACHE_ALIGN,
1941 NULL, NULL);
1942
1943 tb = kmalloc(sizeof(struct fib_table) + sizeof(struct trie),
1944 GFP_KERNEL);
1945 if (tb == NULL)
1946 return NULL;
1947
1948 tb->tb_id = id;
1949 tb->tb_lookup = fn_trie_lookup;
1950 tb->tb_insert = fn_trie_insert;
1951 tb->tb_delete = fn_trie_delete;
1952 tb->tb_flush = fn_trie_flush;
1953 tb->tb_select_default = fn_trie_select_default;
1954 tb->tb_dump = fn_trie_dump;
1955 memset(tb->tb_data, 0, sizeof(struct trie));
1956
1957 t = (struct trie *) tb->tb_data;
1958
1959 trie_init(t);
1960
Stephen Hemmingerc877efb2005-07-19 14:01:51 -07001961 if (id == RT_TABLE_LOCAL)
Olof Johansson91b9a272005-08-09 20:24:39 -07001962 trie_local = t;
Stephen Hemmingerc877efb2005-07-19 14:01:51 -07001963 else if (id == RT_TABLE_MAIN)
Olof Johansson91b9a272005-08-09 20:24:39 -07001964 trie_main = t;
Robert Olsson19baf832005-06-21 12:43:18 -07001965
1966 if (id == RT_TABLE_LOCAL)
1967 printk("IPv4 FIB: Using LC-trie version %s\n", VERSION);
1968
1969 return tb;
1970}
1971
Robert Olsson19baf832005-06-21 12:43:18 -07001972#ifdef CONFIG_PROC_FS
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07001973/* Depth first Trie walk iterator */
1974struct fib_trie_iter {
1975 struct tnode *tnode;
1976 struct trie *trie;
1977 unsigned index;
1978 unsigned depth;
1979};
Robert Olsson19baf832005-06-21 12:43:18 -07001980
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07001981static struct node *fib_trie_get_next(struct fib_trie_iter *iter)
Robert Olsson19baf832005-06-21 12:43:18 -07001982{
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07001983 struct tnode *tn = iter->tnode;
1984 unsigned cindex = iter->index;
1985 struct tnode *p;
1986
1987 pr_debug("get_next iter={node=%p index=%d depth=%d}\n",
1988 iter->tnode, iter->index, iter->depth);
1989rescan:
1990 while (cindex < (1<<tn->bits)) {
1991 struct node *n = tnode_get_child(tn, cindex);
1992
1993 if (n) {
1994 if (IS_LEAF(n)) {
1995 iter->tnode = tn;
1996 iter->index = cindex + 1;
1997 } else {
1998 /* push down one level */
1999 iter->tnode = (struct tnode *) n;
2000 iter->index = 0;
2001 ++iter->depth;
2002 }
2003 return n;
2004 }
2005
2006 ++cindex;
2007 }
2008
2009 /* Current node exhausted, pop back up */
2010 p = NODE_PARENT(tn);
2011 if (p) {
2012 cindex = tkey_extract_bits(tn->key, p->pos, p->bits)+1;
2013 tn = p;
2014 --iter->depth;
2015 goto rescan;
2016 }
2017
2018 /* got root? */
Robert Olsson19baf832005-06-21 12:43:18 -07002019 return NULL;
2020}
2021
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002022static struct node *fib_trie_get_first(struct fib_trie_iter *iter,
2023 struct trie *t)
Robert Olsson19baf832005-06-21 12:43:18 -07002024{
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002025 struct node *n = rcu_dereference(t->trie);
2026
2027 if (n && IS_TNODE(n)) {
2028 iter->tnode = (struct tnode *) n;
2029 iter->trie = t;
2030 iter->index = 0;
Robert Olsson1d25cd62005-09-19 15:29:52 -07002031 iter->depth = 1;
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002032 return n;
2033 }
Robert Olsson19baf832005-06-21 12:43:18 -07002034 return NULL;
2035}
2036
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002037static void trie_collect_stats(struct trie *t, struct trie_stat *s)
Robert Olsson19baf832005-06-21 12:43:18 -07002038{
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002039 struct node *n;
2040 struct fib_trie_iter iter;
Robert Olsson19baf832005-06-21 12:43:18 -07002041
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002042 memset(s, 0, sizeof(*s));
Robert Olsson19baf832005-06-21 12:43:18 -07002043
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002044 rcu_read_lock();
2045 for (n = fib_trie_get_first(&iter, t); n;
2046 n = fib_trie_get_next(&iter)) {
2047 if (IS_LEAF(n)) {
2048 s->leaves++;
2049 s->totdepth += iter.depth;
2050 if (iter.depth > s->maxdepth)
2051 s->maxdepth = iter.depth;
2052 } else {
2053 const struct tnode *tn = (const struct tnode *) n;
2054 int i;
Robert Olsson19baf832005-06-21 12:43:18 -07002055
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002056 s->tnodes++;
2057 s->nodesizes[tn->bits]++;
2058 for (i = 0; i < (1<<tn->bits); i++)
2059 if (!tn->child[i])
2060 s->nullpointers++;
2061 }
2062 }
2063 rcu_read_unlock();
Robert Olsson19baf832005-06-21 12:43:18 -07002064}
2065
Stephen Hemmingerc877efb2005-07-19 14:01:51 -07002066/*
Robert Olsson19baf832005-06-21 12:43:18 -07002067 * This outputs /proc/net/fib_triestats
Robert Olsson19baf832005-06-21 12:43:18 -07002068 */
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002069static void trie_show_stats(struct seq_file *seq, struct trie_stat *stat)
Robert Olsson19baf832005-06-21 12:43:18 -07002070{
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002071 unsigned i, max, pointers, bytes, avdepth;
Robert Olsson19baf832005-06-21 12:43:18 -07002072
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002073 if (stat->leaves)
2074 avdepth = stat->totdepth*100 / stat->leaves;
2075 else
2076 avdepth = 0;
Robert Olsson19baf832005-06-21 12:43:18 -07002077
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002078 seq_printf(seq, "\tAver depth: %d.%02d\n", avdepth / 100, avdepth % 100 );
2079 seq_printf(seq, "\tMax depth: %u\n", stat->maxdepth);
Robert Olsson19baf832005-06-21 12:43:18 -07002080
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002081 seq_printf(seq, "\tLeaves: %u\n", stat->leaves);
Olof Johansson91b9a272005-08-09 20:24:39 -07002082
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002083 bytes = sizeof(struct leaf) * stat->leaves;
2084 seq_printf(seq, "\tInternal nodes: %d\n\t", stat->tnodes);
2085 bytes += sizeof(struct tnode) * stat->tnodes;
Robert Olsson19baf832005-06-21 12:43:18 -07002086
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002087 max = MAX_CHILDS-1;
2088 while (max >= 0 && stat->nodesizes[max] == 0)
2089 max--;
Robert Olsson19baf832005-06-21 12:43:18 -07002090
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002091 pointers = 0;
2092 for (i = 1; i <= max; i++)
2093 if (stat->nodesizes[i] != 0) {
2094 seq_printf(seq, " %d: %d", i, stat->nodesizes[i]);
2095 pointers += (1<<i) * stat->nodesizes[i];
2096 }
2097 seq_putc(seq, '\n');
2098 seq_printf(seq, "\tPointers: %d\n", pointers);
Robert Olsson19baf832005-06-21 12:43:18 -07002099
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002100 bytes += sizeof(struct node *) * pointers;
2101 seq_printf(seq, "Null ptrs: %d\n", stat->nullpointers);
2102 seq_printf(seq, "Total size: %d kB\n", (bytes + 1023) / 1024);
Robert Olsson19baf832005-06-21 12:43:18 -07002103
2104#ifdef CONFIG_IP_FIB_TRIE_STATS
2105 seq_printf(seq, "Counters:\n---------\n");
2106 seq_printf(seq,"gets = %d\n", t->stats.gets);
2107 seq_printf(seq,"backtracks = %d\n", t->stats.backtrack);
2108 seq_printf(seq,"semantic match passed = %d\n", t->stats.semantic_match_passed);
2109 seq_printf(seq,"semantic match miss = %d\n", t->stats.semantic_match_miss);
2110 seq_printf(seq,"null node hit= %d\n", t->stats.null_node_hit);
Robert Olsson2f368952005-07-05 15:02:40 -07002111 seq_printf(seq,"skipped node resize = %d\n", t->stats.resize_node_skipped);
Robert Olsson19baf832005-06-21 12:43:18 -07002112#ifdef CLEAR_STATS
2113 memset(&(t->stats), 0, sizeof(t->stats));
2114#endif
2115#endif /* CONFIG_IP_FIB_TRIE_STATS */
2116}
2117
2118static int fib_triestat_seq_show(struct seq_file *seq, void *v)
2119{
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002120 struct trie_stat *stat;
Stephen Hemmingerc877efb2005-07-19 14:01:51 -07002121
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002122 stat = kmalloc(sizeof(*stat), GFP_KERNEL);
2123 if (!stat)
2124 return -ENOMEM;
Robert Olsson19baf832005-06-21 12:43:18 -07002125
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002126 seq_printf(seq, "Basic info: size of leaf: %Zd bytes, size of tnode: %Zd bytes.\n",
2127 sizeof(struct leaf), sizeof(struct tnode));
Olof Johansson91b9a272005-08-09 20:24:39 -07002128
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002129 if (trie_local) {
2130 seq_printf(seq, "Local:\n");
2131 trie_collect_stats(trie_local, stat);
2132 trie_show_stats(seq, stat);
Robert Olsson19baf832005-06-21 12:43:18 -07002133 }
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002134
2135 if (trie_main) {
2136 seq_printf(seq, "Main:\n");
2137 trie_collect_stats(trie_main, stat);
2138 trie_show_stats(seq, stat);
2139 }
2140 kfree(stat);
2141
Robert Olsson19baf832005-06-21 12:43:18 -07002142 return 0;
2143}
2144
Robert Olsson19baf832005-06-21 12:43:18 -07002145static int fib_triestat_seq_open(struct inode *inode, struct file *file)
2146{
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002147 return single_open(file, fib_triestat_seq_show, NULL);
Robert Olsson19baf832005-06-21 12:43:18 -07002148}
2149
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002150static struct file_operations fib_triestat_fops = {
Stephen Hemmingerc877efb2005-07-19 14:01:51 -07002151 .owner = THIS_MODULE,
2152 .open = fib_triestat_seq_open,
2153 .read = seq_read,
2154 .llseek = seq_lseek,
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002155 .release = single_release,
Robert Olsson19baf832005-06-21 12:43:18 -07002156};
2157
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002158static struct node *fib_trie_get_idx(struct fib_trie_iter *iter,
2159 loff_t pos)
Robert Olsson19baf832005-06-21 12:43:18 -07002160{
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002161 loff_t idx = 0;
2162 struct node *n;
Robert Olsson19baf832005-06-21 12:43:18 -07002163
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002164 for (n = fib_trie_get_first(iter, trie_local);
2165 n; ++idx, n = fib_trie_get_next(iter)) {
2166 if (pos == idx)
2167 return n;
2168 }
Robert Olsson19baf832005-06-21 12:43:18 -07002169
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002170 for (n = fib_trie_get_first(iter, trie_main);
2171 n; ++idx, n = fib_trie_get_next(iter)) {
2172 if (pos == idx)
2173 return n;
2174 }
Robert Olsson19baf832005-06-21 12:43:18 -07002175 return NULL;
2176}
2177
2178static void *fib_trie_seq_start(struct seq_file *seq, loff_t *pos)
2179{
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002180 rcu_read_lock();
2181 if (*pos == 0)
Olof Johansson91b9a272005-08-09 20:24:39 -07002182 return SEQ_START_TOKEN;
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002183 return fib_trie_get_idx(seq->private, *pos - 1);
Robert Olsson19baf832005-06-21 12:43:18 -07002184}
2185
2186static void *fib_trie_seq_next(struct seq_file *seq, void *v, loff_t *pos)
2187{
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002188 struct fib_trie_iter *iter = seq->private;
2189 void *l = v;
2190
Robert Olsson19baf832005-06-21 12:43:18 -07002191 ++*pos;
Olof Johansson91b9a272005-08-09 20:24:39 -07002192 if (v == SEQ_START_TOKEN)
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002193 return fib_trie_get_idx(iter, 0);
Olof Johansson91b9a272005-08-09 20:24:39 -07002194
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002195 v = fib_trie_get_next(iter);
2196 BUG_ON(v == l);
2197 if (v)
2198 return v;
2199
2200 /* continue scan in next trie */
2201 if (iter->trie == trie_local)
2202 return fib_trie_get_first(iter, trie_main);
2203
2204 return NULL;
Robert Olsson19baf832005-06-21 12:43:18 -07002205}
2206
2207static void fib_trie_seq_stop(struct seq_file *seq, void *v)
2208{
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002209 rcu_read_unlock();
Robert Olsson19baf832005-06-21 12:43:18 -07002210}
2211
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002212static void seq_indent(struct seq_file *seq, int n)
2213{
2214 while (n-- > 0) seq_puts(seq, " ");
2215}
Robert Olsson19baf832005-06-21 12:43:18 -07002216
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002217static inline const char *rtn_scope(enum rt_scope_t s)
2218{
2219 static char buf[32];
2220
2221 switch(s) {
2222 case RT_SCOPE_UNIVERSE: return "universe";
2223 case RT_SCOPE_SITE: return "site";
2224 case RT_SCOPE_LINK: return "link";
2225 case RT_SCOPE_HOST: return "host";
2226 case RT_SCOPE_NOWHERE: return "nowhere";
2227 default:
2228 snprintf(buf, sizeof(buf), "scope=%d", s);
2229 return buf;
2230 }
2231}
2232
2233static const char *rtn_type_names[__RTN_MAX] = {
2234 [RTN_UNSPEC] = "UNSPEC",
2235 [RTN_UNICAST] = "UNICAST",
2236 [RTN_LOCAL] = "LOCAL",
2237 [RTN_BROADCAST] = "BROADCAST",
2238 [RTN_ANYCAST] = "ANYCAST",
2239 [RTN_MULTICAST] = "MULTICAST",
2240 [RTN_BLACKHOLE] = "BLACKHOLE",
2241 [RTN_UNREACHABLE] = "UNREACHABLE",
2242 [RTN_PROHIBIT] = "PROHIBIT",
2243 [RTN_THROW] = "THROW",
2244 [RTN_NAT] = "NAT",
2245 [RTN_XRESOLVE] = "XRESOLVE",
2246};
2247
2248static inline const char *rtn_type(unsigned t)
2249{
2250 static char buf[32];
2251
2252 if (t < __RTN_MAX && rtn_type_names[t])
2253 return rtn_type_names[t];
2254 snprintf(buf, sizeof(buf), "type %d", t);
2255 return buf;
2256}
2257
2258/* Pretty print the trie */
Robert Olsson19baf832005-06-21 12:43:18 -07002259static int fib_trie_seq_show(struct seq_file *seq, void *v)
2260{
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002261 const struct fib_trie_iter *iter = seq->private;
2262 struct node *n = v;
Robert Olsson19baf832005-06-21 12:43:18 -07002263
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002264 if (v == SEQ_START_TOKEN)
2265 return 0;
Robert Olsson19baf832005-06-21 12:43:18 -07002266
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002267 if (IS_TNODE(n)) {
2268 struct tnode *tn = (struct tnode *) n;
2269 t_key prf = ntohl(MASK_PFX(tn->key, tn->pos));
2270
2271 if (!NODE_PARENT(n)) {
2272 if (iter->trie == trie_local)
2273 seq_puts(seq, "<local>:\n");
2274 else
2275 seq_puts(seq, "<main>:\n");
Robert Olsson1d25cd62005-09-19 15:29:52 -07002276 }
2277 seq_indent(seq, iter->depth-1);
2278 seq_printf(seq, " +-- %d.%d.%d.%d/%d %d %d %d\n",
2279 NIPQUAD(prf), tn->pos, tn->bits, tn->full_children,
2280 tn->empty_children);
2281
Olof Johansson91b9a272005-08-09 20:24:39 -07002282 } else {
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002283 struct leaf *l = (struct leaf *) n;
2284 int i;
2285 u32 val = ntohl(l->key);
2286
2287 seq_indent(seq, iter->depth);
2288 seq_printf(seq, " |-- %d.%d.%d.%d\n", NIPQUAD(val));
2289 for (i = 32; i >= 0; i--) {
Robert Olsson772cb712005-09-19 15:31:18 -07002290 struct leaf_info *li = find_leaf_info(l, i);
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002291 if (li) {
2292 struct fib_alias *fa;
2293 list_for_each_entry_rcu(fa, &li->falh, fa_list) {
2294 seq_indent(seq, iter->depth+1);
2295 seq_printf(seq, " /%d %s %s", i,
2296 rtn_scope(fa->fa_scope),
2297 rtn_type(fa->fa_type));
2298 if (fa->fa_tos)
2299 seq_printf(seq, "tos =%d\n",
2300 fa->fa_tos);
2301 seq_putc(seq, '\n');
2302 }
2303 }
2304 }
Robert Olsson19baf832005-06-21 12:43:18 -07002305 }
2306
2307 return 0;
2308}
2309
2310static struct seq_operations fib_trie_seq_ops = {
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002311 .start = fib_trie_seq_start,
2312 .next = fib_trie_seq_next,
2313 .stop = fib_trie_seq_stop,
2314 .show = fib_trie_seq_show,
Robert Olsson19baf832005-06-21 12:43:18 -07002315};
2316
2317static int fib_trie_seq_open(struct inode *inode, struct file *file)
2318{
2319 struct seq_file *seq;
2320 int rc = -ENOMEM;
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002321 struct fib_trie_iter *s = kmalloc(sizeof(*s), GFP_KERNEL);
2322
2323 if (!s)
2324 goto out;
Robert Olsson19baf832005-06-21 12:43:18 -07002325
2326 rc = seq_open(file, &fib_trie_seq_ops);
2327 if (rc)
2328 goto out_kfree;
2329
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002330 seq = file->private_data;
2331 seq->private = s;
2332 memset(s, 0, sizeof(*s));
Robert Olsson19baf832005-06-21 12:43:18 -07002333out:
2334 return rc;
2335out_kfree:
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002336 kfree(s);
Robert Olsson19baf832005-06-21 12:43:18 -07002337 goto out;
2338}
2339
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002340static struct file_operations fib_trie_fops = {
2341 .owner = THIS_MODULE,
2342 .open = fib_trie_seq_open,
2343 .read = seq_read,
2344 .llseek = seq_lseek,
2345 .release = seq_release_private,
2346};
2347
2348static unsigned fib_flag_trans(int type, u32 mask, const struct fib_info *fi)
2349{
2350 static unsigned type2flags[RTN_MAX + 1] = {
2351 [7] = RTF_REJECT, [8] = RTF_REJECT,
2352 };
2353 unsigned flags = type2flags[type];
2354
2355 if (fi && fi->fib_nh->nh_gw)
2356 flags |= RTF_GATEWAY;
2357 if (mask == 0xFFFFFFFF)
2358 flags |= RTF_HOST;
2359 flags |= RTF_UP;
2360 return flags;
2361}
2362
2363/*
2364 * This outputs /proc/net/route.
2365 * The format of the file is not supposed to be changed
2366 * and needs to be same as fib_hash output to avoid breaking
2367 * legacy utilities
2368 */
2369static int fib_route_seq_show(struct seq_file *seq, void *v)
2370{
2371 struct leaf *l = v;
2372 int i;
2373 char bf[128];
2374
2375 if (v == SEQ_START_TOKEN) {
2376 seq_printf(seq, "%-127s\n", "Iface\tDestination\tGateway "
2377 "\tFlags\tRefCnt\tUse\tMetric\tMask\t\tMTU"
2378 "\tWindow\tIRTT");
2379 return 0;
2380 }
2381
2382 if (IS_TNODE(l))
2383 return 0;
2384
2385 for (i=32; i>=0; i--) {
Robert Olsson772cb712005-09-19 15:31:18 -07002386 struct leaf_info *li = find_leaf_info(l, i);
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002387 struct fib_alias *fa;
2388 u32 mask, prefix;
2389
2390 if (!li)
2391 continue;
2392
2393 mask = inet_make_mask(li->plen);
2394 prefix = htonl(l->key);
2395
2396 list_for_each_entry_rcu(fa, &li->falh, fa_list) {
2397 const struct fib_info *fi = rcu_dereference(fa->fa_info);
2398 unsigned flags = fib_flag_trans(fa->fa_type, mask, fi);
2399
2400 if (fa->fa_type == RTN_BROADCAST
2401 || fa->fa_type == RTN_MULTICAST)
2402 continue;
2403
2404 if (fi)
2405 snprintf(bf, sizeof(bf),
2406 "%s\t%08X\t%08X\t%04X\t%d\t%u\t%d\t%08X\t%d\t%u\t%u",
2407 fi->fib_dev ? fi->fib_dev->name : "*",
2408 prefix,
2409 fi->fib_nh->nh_gw, flags, 0, 0,
2410 fi->fib_priority,
2411 mask,
2412 (fi->fib_advmss ? fi->fib_advmss + 40 : 0),
2413 fi->fib_window,
2414 fi->fib_rtt >> 3);
2415 else
2416 snprintf(bf, sizeof(bf),
2417 "*\t%08X\t%08X\t%04X\t%d\t%u\t%d\t%08X\t%d\t%u\t%u",
2418 prefix, 0, flags, 0, 0, 0,
2419 mask, 0, 0, 0);
2420
2421 seq_printf(seq, "%-127s\n", bf);
2422 }
2423 }
2424
2425 return 0;
2426}
2427
2428static struct seq_operations fib_route_seq_ops = {
2429 .start = fib_trie_seq_start,
2430 .next = fib_trie_seq_next,
2431 .stop = fib_trie_seq_stop,
2432 .show = fib_route_seq_show,
2433};
2434
2435static int fib_route_seq_open(struct inode *inode, struct file *file)
2436{
2437 struct seq_file *seq;
2438 int rc = -ENOMEM;
2439 struct fib_trie_iter *s = kmalloc(sizeof(*s), GFP_KERNEL);
2440
2441 if (!s)
2442 goto out;
2443
2444 rc = seq_open(file, &fib_route_seq_ops);
2445 if (rc)
2446 goto out_kfree;
2447
2448 seq = file->private_data;
2449 seq->private = s;
2450 memset(s, 0, sizeof(*s));
2451out:
2452 return rc;
2453out_kfree:
2454 kfree(s);
2455 goto out;
2456}
2457
2458static struct file_operations fib_route_fops = {
2459 .owner = THIS_MODULE,
2460 .open = fib_route_seq_open,
2461 .read = seq_read,
2462 .llseek = seq_lseek,
2463 .release = seq_release_private,
Robert Olsson19baf832005-06-21 12:43:18 -07002464};
2465
2466int __init fib_proc_init(void)
2467{
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002468 if (!proc_net_fops_create("fib_trie", S_IRUGO, &fib_trie_fops))
2469 goto out1;
2470
2471 if (!proc_net_fops_create("fib_triestat", S_IRUGO, &fib_triestat_fops))
2472 goto out2;
2473
2474 if (!proc_net_fops_create("route", S_IRUGO, &fib_route_fops))
2475 goto out3;
2476
Robert Olsson19baf832005-06-21 12:43:18 -07002477 return 0;
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002478
2479out3:
2480 proc_net_remove("fib_triestat");
2481out2:
2482 proc_net_remove("fib_trie");
2483out1:
2484 return -ENOMEM;
Robert Olsson19baf832005-06-21 12:43:18 -07002485}
2486
2487void __init fib_proc_exit(void)
2488{
2489 proc_net_remove("fib_trie");
Stephen Hemmingercb7b5932005-09-09 13:35:42 -07002490 proc_net_remove("fib_triestat");
2491 proc_net_remove("route");
Robert Olsson19baf832005-06-21 12:43:18 -07002492}
2493
2494#endif /* CONFIG_PROC_FS */