libertas: move to uniform lbs_/LBS_ namespace
[firewire-audio.git] / net / ipv4 / fib_hash.c
bloba15b2f1b2721d8d4239c81f4eddf13f3fccd6947
1 /*
2 * INET An implementation of the TCP/IP protocol suite for the LINUX
3 * operating system. INET is implemented using the BSD Socket
4 * interface as the means of communication with the user level.
6 * IPv4 FIB: lookup engine and maintenance routines.
8 * Version: $Id: fib_hash.c,v 1.13 2001/10/31 21:55:54 davem Exp $
10 * Authors: Alexey Kuznetsov, <kuznet@ms2.inr.ac.ru>
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version
15 * 2 of the License, or (at your option) any later version.
18 #include <asm/uaccess.h>
19 #include <asm/system.h>
20 #include <linux/bitops.h>
21 #include <linux/types.h>
22 #include <linux/kernel.h>
23 #include <linux/mm.h>
24 #include <linux/string.h>
25 #include <linux/socket.h>
26 #include <linux/sockios.h>
27 #include <linux/errno.h>
28 #include <linux/in.h>
29 #include <linux/inet.h>
30 #include <linux/inetdevice.h>
31 #include <linux/netdevice.h>
32 #include <linux/if_arp.h>
33 #include <linux/proc_fs.h>
34 #include <linux/skbuff.h>
35 #include <linux/netlink.h>
36 #include <linux/init.h>
38 #include <net/net_namespace.h>
39 #include <net/ip.h>
40 #include <net/protocol.h>
41 #include <net/route.h>
42 #include <net/tcp.h>
43 #include <net/sock.h>
44 #include <net/ip_fib.h>
46 #include "fib_lookup.h"
48 static struct kmem_cache *fn_hash_kmem __read_mostly;
49 static struct kmem_cache *fn_alias_kmem __read_mostly;
51 struct fib_node {
52 struct hlist_node fn_hash;
53 struct list_head fn_alias;
54 __be32 fn_key;
55 struct fib_alias fn_embedded_alias;
58 struct fn_zone {
59 struct fn_zone *fz_next; /* Next not empty zone */
60 struct hlist_head *fz_hash; /* Hash table pointer */
61 int fz_nent; /* Number of entries */
63 int fz_divisor; /* Hash divisor */
64 u32 fz_hashmask; /* (fz_divisor - 1) */
65 #define FZ_HASHMASK(fz) ((fz)->fz_hashmask)
67 int fz_order; /* Zone order */
68 __be32 fz_mask;
69 #define FZ_MASK(fz) ((fz)->fz_mask)
72 /* NOTE. On fast computers evaluation of fz_hashmask and fz_mask
73 * can be cheaper than memory lookup, so that FZ_* macros are used.
76 struct fn_hash {
77 struct fn_zone *fn_zones[33];
78 struct fn_zone *fn_zone_list;
81 static inline u32 fn_hash(__be32 key, struct fn_zone *fz)
83 u32 h = ntohl(key)>>(32 - fz->fz_order);
84 h ^= (h>>20);
85 h ^= (h>>10);
86 h ^= (h>>5);
87 h &= FZ_HASHMASK(fz);
88 return h;
91 static inline __be32 fz_key(__be32 dst, struct fn_zone *fz)
93 return dst & FZ_MASK(fz);
96 static DEFINE_RWLOCK(fib_hash_lock);
97 static unsigned int fib_hash_genid;
99 #define FZ_MAX_DIVISOR ((PAGE_SIZE<<MAX_ORDER) / sizeof(struct hlist_head))
101 static struct hlist_head *fz_hash_alloc(int divisor)
103 unsigned long size = divisor * sizeof(struct hlist_head);
105 if (size <= PAGE_SIZE) {
106 return kzalloc(size, GFP_KERNEL);
107 } else {
108 return (struct hlist_head *)
109 __get_free_pages(GFP_KERNEL | __GFP_ZERO, get_order(size));
113 /* The fib hash lock must be held when this is called. */
114 static inline void fn_rebuild_zone(struct fn_zone *fz,
115 struct hlist_head *old_ht,
116 int old_divisor)
118 int i;
120 for (i = 0; i < old_divisor; i++) {
121 struct hlist_node *node, *n;
122 struct fib_node *f;
124 hlist_for_each_entry_safe(f, node, n, &old_ht[i], fn_hash) {
125 struct hlist_head *new_head;
127 hlist_del(&f->fn_hash);
129 new_head = &fz->fz_hash[fn_hash(f->fn_key, fz)];
130 hlist_add_head(&f->fn_hash, new_head);
135 static void fz_hash_free(struct hlist_head *hash, int divisor)
137 unsigned long size = divisor * sizeof(struct hlist_head);
139 if (size <= PAGE_SIZE)
140 kfree(hash);
141 else
142 free_pages((unsigned long)hash, get_order(size));
145 static void fn_rehash_zone(struct fn_zone *fz)
147 struct hlist_head *ht, *old_ht;
148 int old_divisor, new_divisor;
149 u32 new_hashmask;
151 old_divisor = fz->fz_divisor;
153 switch (old_divisor) {
154 case 16:
155 new_divisor = 256;
156 break;
157 case 256:
158 new_divisor = 1024;
159 break;
160 default:
161 if ((old_divisor << 1) > FZ_MAX_DIVISOR) {
162 printk(KERN_CRIT "route.c: bad divisor %d!\n", old_divisor);
163 return;
165 new_divisor = (old_divisor << 1);
166 break;
169 new_hashmask = (new_divisor - 1);
171 #if RT_CACHE_DEBUG >= 2
172 printk(KERN_DEBUG "fn_rehash_zone: hash for zone %d grows from %d\n",
173 fz->fz_order, old_divisor);
174 #endif
176 ht = fz_hash_alloc(new_divisor);
178 if (ht) {
179 write_lock_bh(&fib_hash_lock);
180 old_ht = fz->fz_hash;
181 fz->fz_hash = ht;
182 fz->fz_hashmask = new_hashmask;
183 fz->fz_divisor = new_divisor;
184 fn_rebuild_zone(fz, old_ht, old_divisor);
185 fib_hash_genid++;
186 write_unlock_bh(&fib_hash_lock);
188 fz_hash_free(old_ht, old_divisor);
192 static inline void fn_free_node(struct fib_node * f)
194 kmem_cache_free(fn_hash_kmem, f);
197 static inline void fn_free_alias(struct fib_alias *fa, struct fib_node *f)
199 fib_release_info(fa->fa_info);
200 if (fa == &f->fn_embedded_alias)
201 fa->fa_info = NULL;
202 else
203 kmem_cache_free(fn_alias_kmem, fa);
206 static struct fn_zone *
207 fn_new_zone(struct fn_hash *table, int z)
209 int i;
210 struct fn_zone *fz = kzalloc(sizeof(struct fn_zone), GFP_KERNEL);
211 if (!fz)
212 return NULL;
214 if (z) {
215 fz->fz_divisor = 16;
216 } else {
217 fz->fz_divisor = 1;
219 fz->fz_hashmask = (fz->fz_divisor - 1);
220 fz->fz_hash = fz_hash_alloc(fz->fz_divisor);
221 if (!fz->fz_hash) {
222 kfree(fz);
223 return NULL;
225 fz->fz_order = z;
226 fz->fz_mask = inet_make_mask(z);
228 /* Find the first not empty zone with more specific mask */
229 for (i=z+1; i<=32; i++)
230 if (table->fn_zones[i])
231 break;
232 write_lock_bh(&fib_hash_lock);
233 if (i>32) {
234 /* No more specific masks, we are the first. */
235 fz->fz_next = table->fn_zone_list;
236 table->fn_zone_list = fz;
237 } else {
238 fz->fz_next = table->fn_zones[i]->fz_next;
239 table->fn_zones[i]->fz_next = fz;
241 table->fn_zones[z] = fz;
242 fib_hash_genid++;
243 write_unlock_bh(&fib_hash_lock);
244 return fz;
247 static int
248 fn_hash_lookup(struct fib_table *tb, const struct flowi *flp, struct fib_result *res)
250 int err;
251 struct fn_zone *fz;
252 struct fn_hash *t = (struct fn_hash*)tb->tb_data;
254 read_lock(&fib_hash_lock);
255 for (fz = t->fn_zone_list; fz; fz = fz->fz_next) {
256 struct hlist_head *head;
257 struct hlist_node *node;
258 struct fib_node *f;
259 __be32 k = fz_key(flp->fl4_dst, fz);
261 head = &fz->fz_hash[fn_hash(k, fz)];
262 hlist_for_each_entry(f, node, head, fn_hash) {
263 if (f->fn_key != k)
264 continue;
266 err = fib_semantic_match(&f->fn_alias,
267 flp, res,
268 f->fn_key, fz->fz_mask,
269 fz->fz_order);
270 if (err <= 0)
271 goto out;
274 err = 1;
275 out:
276 read_unlock(&fib_hash_lock);
277 return err;
280 static void
281 fn_hash_select_default(struct fib_table *tb, const struct flowi *flp, struct fib_result *res)
283 int order, last_idx;
284 struct hlist_node *node;
285 struct fib_node *f;
286 struct fib_info *fi = NULL;
287 struct fib_info *last_resort;
288 struct fn_hash *t = (struct fn_hash*)tb->tb_data;
289 struct fn_zone *fz = t->fn_zones[0];
291 if (fz == NULL)
292 return;
294 last_idx = -1;
295 last_resort = NULL;
296 order = -1;
298 read_lock(&fib_hash_lock);
299 hlist_for_each_entry(f, node, &fz->fz_hash[0], fn_hash) {
300 struct fib_alias *fa;
302 list_for_each_entry(fa, &f->fn_alias, fa_list) {
303 struct fib_info *next_fi = fa->fa_info;
305 if (fa->fa_scope != res->scope ||
306 fa->fa_type != RTN_UNICAST)
307 continue;
309 if (next_fi->fib_priority > res->fi->fib_priority)
310 break;
311 if (!next_fi->fib_nh[0].nh_gw ||
312 next_fi->fib_nh[0].nh_scope != RT_SCOPE_LINK)
313 continue;
314 fa->fa_state |= FA_S_ACCESSED;
316 if (fi == NULL) {
317 if (next_fi != res->fi)
318 break;
319 } else if (!fib_detect_death(fi, order, &last_resort,
320 &last_idx, tb->tb_default)) {
321 fib_result_assign(res, fi);
322 tb->tb_default = order;
323 goto out;
325 fi = next_fi;
326 order++;
330 if (order <= 0 || fi == NULL) {
331 tb->tb_default = -1;
332 goto out;
335 if (!fib_detect_death(fi, order, &last_resort, &last_idx,
336 tb->tb_default)) {
337 fib_result_assign(res, fi);
338 tb->tb_default = order;
339 goto out;
342 if (last_idx >= 0)
343 fib_result_assign(res, last_resort);
344 tb->tb_default = last_idx;
345 out:
346 read_unlock(&fib_hash_lock);
349 /* Insert node F to FZ. */
350 static inline void fib_insert_node(struct fn_zone *fz, struct fib_node *f)
352 struct hlist_head *head = &fz->fz_hash[fn_hash(f->fn_key, fz)];
354 hlist_add_head(&f->fn_hash, head);
357 /* Return the node in FZ matching KEY. */
358 static struct fib_node *fib_find_node(struct fn_zone *fz, __be32 key)
360 struct hlist_head *head = &fz->fz_hash[fn_hash(key, fz)];
361 struct hlist_node *node;
362 struct fib_node *f;
364 hlist_for_each_entry(f, node, head, fn_hash) {
365 if (f->fn_key == key)
366 return f;
369 return NULL;
372 static int fn_hash_insert(struct fib_table *tb, struct fib_config *cfg)
374 struct fn_hash *table = (struct fn_hash *) tb->tb_data;
375 struct fib_node *new_f, *f;
376 struct fib_alias *fa, *new_fa;
377 struct fn_zone *fz;
378 struct fib_info *fi;
379 u8 tos = cfg->fc_tos;
380 __be32 key;
381 int err;
383 if (cfg->fc_dst_len > 32)
384 return -EINVAL;
386 fz = table->fn_zones[cfg->fc_dst_len];
387 if (!fz && !(fz = fn_new_zone(table, cfg->fc_dst_len)))
388 return -ENOBUFS;
390 key = 0;
391 if (cfg->fc_dst) {
392 if (cfg->fc_dst & ~FZ_MASK(fz))
393 return -EINVAL;
394 key = fz_key(cfg->fc_dst, fz);
397 fi = fib_create_info(cfg);
398 if (IS_ERR(fi))
399 return PTR_ERR(fi);
401 if (fz->fz_nent > (fz->fz_divisor<<1) &&
402 fz->fz_divisor < FZ_MAX_DIVISOR &&
403 (cfg->fc_dst_len == 32 ||
404 (1 << cfg->fc_dst_len) > fz->fz_divisor))
405 fn_rehash_zone(fz);
407 f = fib_find_node(fz, key);
409 if (!f)
410 fa = NULL;
411 else
412 fa = fib_find_alias(&f->fn_alias, tos, fi->fib_priority);
414 /* Now fa, if non-NULL, points to the first fib alias
415 * with the same keys [prefix,tos,priority], if such key already
416 * exists or to the node before which we will insert new one.
418 * If fa is NULL, we will need to allocate a new one and
419 * insert to the head of f.
421 * If f is NULL, no fib node matched the destination key
422 * and we need to allocate a new one of those as well.
425 if (fa && fa->fa_tos == tos &&
426 fa->fa_info->fib_priority == fi->fib_priority) {
427 struct fib_alias *fa_orig;
429 err = -EEXIST;
430 if (cfg->fc_nlflags & NLM_F_EXCL)
431 goto out;
433 if (cfg->fc_nlflags & NLM_F_REPLACE) {
434 struct fib_info *fi_drop;
435 u8 state;
437 if (fi->fib_treeref > 1)
438 goto out;
440 write_lock_bh(&fib_hash_lock);
441 fi_drop = fa->fa_info;
442 fa->fa_info = fi;
443 fa->fa_type = cfg->fc_type;
444 fa->fa_scope = cfg->fc_scope;
445 state = fa->fa_state;
446 fa->fa_state &= ~FA_S_ACCESSED;
447 fib_hash_genid++;
448 write_unlock_bh(&fib_hash_lock);
450 fib_release_info(fi_drop);
451 if (state & FA_S_ACCESSED)
452 rt_cache_flush(-1);
453 rtmsg_fib(RTM_NEWROUTE, key, fa, cfg->fc_dst_len, tb->tb_id,
454 &cfg->fc_nlinfo, NLM_F_REPLACE);
455 return 0;
458 /* Error if we find a perfect match which
459 * uses the same scope, type, and nexthop
460 * information.
462 fa_orig = fa;
463 fa = list_entry(fa->fa_list.prev, struct fib_alias, fa_list);
464 list_for_each_entry_continue(fa, &f->fn_alias, fa_list) {
465 if (fa->fa_tos != tos)
466 break;
467 if (fa->fa_info->fib_priority != fi->fib_priority)
468 break;
469 if (fa->fa_type == cfg->fc_type &&
470 fa->fa_scope == cfg->fc_scope &&
471 fa->fa_info == fi)
472 goto out;
474 if (!(cfg->fc_nlflags & NLM_F_APPEND))
475 fa = fa_orig;
478 err = -ENOENT;
479 if (!(cfg->fc_nlflags & NLM_F_CREATE))
480 goto out;
482 err = -ENOBUFS;
484 new_f = NULL;
485 if (!f) {
486 new_f = kmem_cache_zalloc(fn_hash_kmem, GFP_KERNEL);
487 if (new_f == NULL)
488 goto out;
490 INIT_HLIST_NODE(&new_f->fn_hash);
491 INIT_LIST_HEAD(&new_f->fn_alias);
492 new_f->fn_key = key;
493 f = new_f;
496 new_fa = &f->fn_embedded_alias;
497 if (new_fa->fa_info != NULL) {
498 new_fa = kmem_cache_alloc(fn_alias_kmem, GFP_KERNEL);
499 if (new_fa == NULL)
500 goto out_free_new_f;
502 new_fa->fa_info = fi;
503 new_fa->fa_tos = tos;
504 new_fa->fa_type = cfg->fc_type;
505 new_fa->fa_scope = cfg->fc_scope;
506 new_fa->fa_state = 0;
509 * Insert new entry to the list.
512 write_lock_bh(&fib_hash_lock);
513 if (new_f)
514 fib_insert_node(fz, new_f);
515 list_add_tail(&new_fa->fa_list,
516 (fa ? &fa->fa_list : &f->fn_alias));
517 fib_hash_genid++;
518 write_unlock_bh(&fib_hash_lock);
520 if (new_f)
521 fz->fz_nent++;
522 rt_cache_flush(-1);
524 rtmsg_fib(RTM_NEWROUTE, key, new_fa, cfg->fc_dst_len, tb->tb_id,
525 &cfg->fc_nlinfo, 0);
526 return 0;
528 out_free_new_f:
529 kmem_cache_free(fn_hash_kmem, new_f);
530 out:
531 fib_release_info(fi);
532 return err;
536 static int fn_hash_delete(struct fib_table *tb, struct fib_config *cfg)
538 struct fn_hash *table = (struct fn_hash*)tb->tb_data;
539 struct fib_node *f;
540 struct fib_alias *fa, *fa_to_delete;
541 struct fn_zone *fz;
542 __be32 key;
544 if (cfg->fc_dst_len > 32)
545 return -EINVAL;
547 if ((fz = table->fn_zones[cfg->fc_dst_len]) == NULL)
548 return -ESRCH;
550 key = 0;
551 if (cfg->fc_dst) {
552 if (cfg->fc_dst & ~FZ_MASK(fz))
553 return -EINVAL;
554 key = fz_key(cfg->fc_dst, fz);
557 f = fib_find_node(fz, key);
559 if (!f)
560 fa = NULL;
561 else
562 fa = fib_find_alias(&f->fn_alias, cfg->fc_tos, 0);
563 if (!fa)
564 return -ESRCH;
566 fa_to_delete = NULL;
567 fa = list_entry(fa->fa_list.prev, struct fib_alias, fa_list);
568 list_for_each_entry_continue(fa, &f->fn_alias, fa_list) {
569 struct fib_info *fi = fa->fa_info;
571 if (fa->fa_tos != cfg->fc_tos)
572 break;
574 if ((!cfg->fc_type ||
575 fa->fa_type == cfg->fc_type) &&
576 (cfg->fc_scope == RT_SCOPE_NOWHERE ||
577 fa->fa_scope == cfg->fc_scope) &&
578 (!cfg->fc_protocol ||
579 fi->fib_protocol == cfg->fc_protocol) &&
580 fib_nh_match(cfg, fi) == 0) {
581 fa_to_delete = fa;
582 break;
586 if (fa_to_delete) {
587 int kill_fn;
589 fa = fa_to_delete;
590 rtmsg_fib(RTM_DELROUTE, key, fa, cfg->fc_dst_len,
591 tb->tb_id, &cfg->fc_nlinfo, 0);
593 kill_fn = 0;
594 write_lock_bh(&fib_hash_lock);
595 list_del(&fa->fa_list);
596 if (list_empty(&f->fn_alias)) {
597 hlist_del(&f->fn_hash);
598 kill_fn = 1;
600 fib_hash_genid++;
601 write_unlock_bh(&fib_hash_lock);
603 if (fa->fa_state & FA_S_ACCESSED)
604 rt_cache_flush(-1);
605 fn_free_alias(fa, f);
606 if (kill_fn) {
607 fn_free_node(f);
608 fz->fz_nent--;
611 return 0;
613 return -ESRCH;
616 static int fn_flush_list(struct fn_zone *fz, int idx)
618 struct hlist_head *head = &fz->fz_hash[idx];
619 struct hlist_node *node, *n;
620 struct fib_node *f;
621 int found = 0;
623 hlist_for_each_entry_safe(f, node, n, head, fn_hash) {
624 struct fib_alias *fa, *fa_node;
625 int kill_f;
627 kill_f = 0;
628 list_for_each_entry_safe(fa, fa_node, &f->fn_alias, fa_list) {
629 struct fib_info *fi = fa->fa_info;
631 if (fi && (fi->fib_flags&RTNH_F_DEAD)) {
632 write_lock_bh(&fib_hash_lock);
633 list_del(&fa->fa_list);
634 if (list_empty(&f->fn_alias)) {
635 hlist_del(&f->fn_hash);
636 kill_f = 1;
638 fib_hash_genid++;
639 write_unlock_bh(&fib_hash_lock);
641 fn_free_alias(fa, f);
642 found++;
645 if (kill_f) {
646 fn_free_node(f);
647 fz->fz_nent--;
650 return found;
653 static int fn_hash_flush(struct fib_table *tb)
655 struct fn_hash *table = (struct fn_hash *) tb->tb_data;
656 struct fn_zone *fz;
657 int found = 0;
659 for (fz = table->fn_zone_list; fz; fz = fz->fz_next) {
660 int i;
662 for (i = fz->fz_divisor - 1; i >= 0; i--)
663 found += fn_flush_list(fz, i);
665 return found;
669 static inline int
670 fn_hash_dump_bucket(struct sk_buff *skb, struct netlink_callback *cb,
671 struct fib_table *tb,
672 struct fn_zone *fz,
673 struct hlist_head *head)
675 struct hlist_node *node;
676 struct fib_node *f;
677 int i, s_i;
679 s_i = cb->args[4];
680 i = 0;
681 hlist_for_each_entry(f, node, head, fn_hash) {
682 struct fib_alias *fa;
684 list_for_each_entry(fa, &f->fn_alias, fa_list) {
685 if (i < s_i)
686 goto next;
688 if (fib_dump_info(skb, NETLINK_CB(cb->skb).pid,
689 cb->nlh->nlmsg_seq,
690 RTM_NEWROUTE,
691 tb->tb_id,
692 fa->fa_type,
693 fa->fa_scope,
694 f->fn_key,
695 fz->fz_order,
696 fa->fa_tos,
697 fa->fa_info,
698 NLM_F_MULTI) < 0) {
699 cb->args[4] = i;
700 return -1;
702 next:
703 i++;
706 cb->args[4] = i;
707 return skb->len;
710 static inline int
711 fn_hash_dump_zone(struct sk_buff *skb, struct netlink_callback *cb,
712 struct fib_table *tb,
713 struct fn_zone *fz)
715 int h, s_h;
717 if (fz->fz_hash == NULL)
718 return skb->len;
719 s_h = cb->args[3];
720 for (h = s_h; h < fz->fz_divisor; h++) {
721 if (hlist_empty(&fz->fz_hash[h]))
722 continue;
723 if (fn_hash_dump_bucket(skb, cb, tb, fz, &fz->fz_hash[h]) < 0) {
724 cb->args[3] = h;
725 return -1;
727 memset(&cb->args[4], 0,
728 sizeof(cb->args) - 4*sizeof(cb->args[0]));
730 cb->args[3] = h;
731 return skb->len;
734 static int fn_hash_dump(struct fib_table *tb, struct sk_buff *skb, struct netlink_callback *cb)
736 int m, s_m;
737 struct fn_zone *fz;
738 struct fn_hash *table = (struct fn_hash*)tb->tb_data;
740 s_m = cb->args[2];
741 read_lock(&fib_hash_lock);
742 for (fz = table->fn_zone_list, m=0; fz; fz = fz->fz_next, m++) {
743 if (m < s_m) continue;
744 if (fn_hash_dump_zone(skb, cb, tb, fz) < 0) {
745 cb->args[2] = m;
746 read_unlock(&fib_hash_lock);
747 return -1;
749 memset(&cb->args[3], 0,
750 sizeof(cb->args) - 3*sizeof(cb->args[0]));
752 read_unlock(&fib_hash_lock);
753 cb->args[2] = m;
754 return skb->len;
757 void __init fib_hash_init(void)
759 fn_hash_kmem = kmem_cache_create("ip_fib_hash", sizeof(struct fib_node),
760 0, SLAB_PANIC, NULL);
762 fn_alias_kmem = kmem_cache_create("ip_fib_alias", sizeof(struct fib_alias),
763 0, SLAB_PANIC, NULL);
767 struct fib_table *fib_hash_table(u32 id)
769 struct fib_table *tb;
771 tb = kmalloc(sizeof(struct fib_table) + sizeof(struct fn_hash),
772 GFP_KERNEL);
773 if (tb == NULL)
774 return NULL;
776 tb->tb_id = id;
777 tb->tb_default = -1;
778 tb->tb_lookup = fn_hash_lookup;
779 tb->tb_insert = fn_hash_insert;
780 tb->tb_delete = fn_hash_delete;
781 tb->tb_flush = fn_hash_flush;
782 tb->tb_select_default = fn_hash_select_default;
783 tb->tb_dump = fn_hash_dump;
784 memset(tb->tb_data, 0, sizeof(struct fn_hash));
785 return tb;
788 /* ------------------------------------------------------------------------ */
789 #ifdef CONFIG_PROC_FS
791 struct fib_iter_state {
792 struct seq_net_private p;
793 struct fn_zone *zone;
794 int bucket;
795 struct hlist_head *hash_head;
796 struct fib_node *fn;
797 struct fib_alias *fa;
798 loff_t pos;
799 unsigned int genid;
800 int valid;
803 static struct fib_alias *fib_get_first(struct seq_file *seq)
805 struct fib_iter_state *iter = seq->private;
806 struct fib_table *main_table;
807 struct fn_hash *table;
809 main_table = fib_get_table(iter->p.net, RT_TABLE_MAIN);
810 table = (struct fn_hash *)main_table->tb_data;
812 iter->bucket = 0;
813 iter->hash_head = NULL;
814 iter->fn = NULL;
815 iter->fa = NULL;
816 iter->pos = 0;
817 iter->genid = fib_hash_genid;
818 iter->valid = 1;
820 for (iter->zone = table->fn_zone_list; iter->zone;
821 iter->zone = iter->zone->fz_next) {
822 int maxslot;
824 if (!iter->zone->fz_nent)
825 continue;
827 iter->hash_head = iter->zone->fz_hash;
828 maxslot = iter->zone->fz_divisor;
830 for (iter->bucket = 0; iter->bucket < maxslot;
831 ++iter->bucket, ++iter->hash_head) {
832 struct hlist_node *node;
833 struct fib_node *fn;
835 hlist_for_each_entry(fn,node,iter->hash_head,fn_hash) {
836 struct fib_alias *fa;
838 list_for_each_entry(fa,&fn->fn_alias,fa_list) {
839 iter->fn = fn;
840 iter->fa = fa;
841 goto out;
846 out:
847 return iter->fa;
850 static struct fib_alias *fib_get_next(struct seq_file *seq)
852 struct fib_iter_state *iter = seq->private;
853 struct fib_node *fn;
854 struct fib_alias *fa;
856 /* Advance FA, if any. */
857 fn = iter->fn;
858 fa = iter->fa;
859 if (fa) {
860 BUG_ON(!fn);
861 list_for_each_entry_continue(fa, &fn->fn_alias, fa_list) {
862 iter->fa = fa;
863 goto out;
867 fa = iter->fa = NULL;
869 /* Advance FN. */
870 if (fn) {
871 struct hlist_node *node = &fn->fn_hash;
872 hlist_for_each_entry_continue(fn, node, fn_hash) {
873 iter->fn = fn;
875 list_for_each_entry(fa, &fn->fn_alias, fa_list) {
876 iter->fa = fa;
877 goto out;
882 fn = iter->fn = NULL;
884 /* Advance hash chain. */
885 if (!iter->zone)
886 goto out;
888 for (;;) {
889 struct hlist_node *node;
890 int maxslot;
892 maxslot = iter->zone->fz_divisor;
894 while (++iter->bucket < maxslot) {
895 iter->hash_head++;
897 hlist_for_each_entry(fn, node, iter->hash_head, fn_hash) {
898 list_for_each_entry(fa, &fn->fn_alias, fa_list) {
899 iter->fn = fn;
900 iter->fa = fa;
901 goto out;
906 iter->zone = iter->zone->fz_next;
908 if (!iter->zone)
909 goto out;
911 iter->bucket = 0;
912 iter->hash_head = iter->zone->fz_hash;
914 hlist_for_each_entry(fn, node, iter->hash_head, fn_hash) {
915 list_for_each_entry(fa, &fn->fn_alias, fa_list) {
916 iter->fn = fn;
917 iter->fa = fa;
918 goto out;
922 out:
923 iter->pos++;
924 return fa;
927 static struct fib_alias *fib_get_idx(struct seq_file *seq, loff_t pos)
929 struct fib_iter_state *iter = seq->private;
930 struct fib_alias *fa;
932 if (iter->valid && pos >= iter->pos && iter->genid == fib_hash_genid) {
933 fa = iter->fa;
934 pos -= iter->pos;
935 } else
936 fa = fib_get_first(seq);
938 if (fa)
939 while (pos && (fa = fib_get_next(seq)))
940 --pos;
941 return pos ? NULL : fa;
944 static void *fib_seq_start(struct seq_file *seq, loff_t *pos)
945 __acquires(fib_hash_lock)
947 struct fib_iter_state *iter = seq->private;
948 void *v = NULL;
950 read_lock(&fib_hash_lock);
951 if (fib_get_table(iter->p.net, RT_TABLE_MAIN))
952 v = *pos ? fib_get_idx(seq, *pos - 1) : SEQ_START_TOKEN;
953 return v;
956 static void *fib_seq_next(struct seq_file *seq, void *v, loff_t *pos)
958 ++*pos;
959 return v == SEQ_START_TOKEN ? fib_get_first(seq) : fib_get_next(seq);
962 static void fib_seq_stop(struct seq_file *seq, void *v)
963 __releases(fib_hash_lock)
965 read_unlock(&fib_hash_lock);
968 static unsigned fib_flag_trans(int type, __be32 mask, struct fib_info *fi)
970 static const unsigned type2flags[RTN_MAX + 1] = {
971 [7] = RTF_REJECT, [8] = RTF_REJECT,
973 unsigned flags = type2flags[type];
975 if (fi && fi->fib_nh->nh_gw)
976 flags |= RTF_GATEWAY;
977 if (mask == htonl(0xFFFFFFFF))
978 flags |= RTF_HOST;
979 flags |= RTF_UP;
980 return flags;
984 * This outputs /proc/net/route.
986 * It always works in backward compatibility mode.
987 * The format of the file is not supposed to be changed.
989 static int fib_seq_show(struct seq_file *seq, void *v)
991 struct fib_iter_state *iter;
992 char bf[128];
993 __be32 prefix, mask;
994 unsigned flags;
995 struct fib_node *f;
996 struct fib_alias *fa;
997 struct fib_info *fi;
999 if (v == SEQ_START_TOKEN) {
1000 seq_printf(seq, "%-127s\n", "Iface\tDestination\tGateway "
1001 "\tFlags\tRefCnt\tUse\tMetric\tMask\t\tMTU"
1002 "\tWindow\tIRTT");
1003 goto out;
1006 iter = seq->private;
1007 f = iter->fn;
1008 fa = iter->fa;
1009 fi = fa->fa_info;
1010 prefix = f->fn_key;
1011 mask = FZ_MASK(iter->zone);
1012 flags = fib_flag_trans(fa->fa_type, mask, fi);
1013 if (fi)
1014 snprintf(bf, sizeof(bf),
1015 "%s\t%08X\t%08X\t%04X\t%d\t%u\t%d\t%08X\t%d\t%u\t%u",
1016 fi->fib_dev ? fi->fib_dev->name : "*", prefix,
1017 fi->fib_nh->nh_gw, flags, 0, 0, fi->fib_priority,
1018 mask, (fi->fib_advmss ? fi->fib_advmss + 40 : 0),
1019 fi->fib_window,
1020 fi->fib_rtt >> 3);
1021 else
1022 snprintf(bf, sizeof(bf),
1023 "*\t%08X\t%08X\t%04X\t%d\t%u\t%d\t%08X\t%d\t%u\t%u",
1024 prefix, 0, flags, 0, 0, 0, mask, 0, 0, 0);
1025 seq_printf(seq, "%-127s\n", bf);
1026 out:
1027 return 0;
1030 static const struct seq_operations fib_seq_ops = {
1031 .start = fib_seq_start,
1032 .next = fib_seq_next,
1033 .stop = fib_seq_stop,
1034 .show = fib_seq_show,
1037 static int fib_seq_open(struct inode *inode, struct file *file)
1039 return seq_open_net(inode, file, &fib_seq_ops,
1040 sizeof(struct fib_iter_state));
1043 static const struct file_operations fib_seq_fops = {
1044 .owner = THIS_MODULE,
1045 .open = fib_seq_open,
1046 .read = seq_read,
1047 .llseek = seq_lseek,
1048 .release = seq_release_net,
1051 int __net_init fib_proc_init(struct net *net)
1053 if (!proc_net_fops_create(net, "route", S_IRUGO, &fib_seq_fops))
1054 return -ENOMEM;
1055 return 0;
1058 void __net_exit fib_proc_exit(struct net *net)
1060 proc_net_remove(net, "route");
1062 #endif /* CONFIG_PROC_FS */