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.
10 * This program is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU General Public License
12 * as published by the Free Software Foundation; either version
13 * 2 of the License, or (at your option) any later version.
16 #include <asm/uaccess.h>
17 #include <asm/system.h>
18 #include <linux/bitops.h>
19 #include <linux/types.h>
20 #include <linux/kernel.h>
22 #include <linux/string.h>
23 #include <linux/socket.h>
24 #include <linux/sockios.h>
25 #include <linux/errno.h>
27 #include <linux/inet.h>
28 #include <linux/inetdevice.h>
29 #include <linux/netdevice.h>
30 #include <linux/if_arp.h>
31 #include <linux/proc_fs.h>
32 #include <linux/skbuff.h>
33 #include <linux/netlink.h>
34 #include <linux/init.h>
35 #include <linux/slab.h>
37 #include <net/net_namespace.h>
39 #include <net/protocol.h>
40 #include <net/route.h>
43 #include <net/ip_fib.h>
45 #include "fib_lookup.h"
47 static struct kmem_cache *fn_hash_kmem __read_mostly;
48 static struct kmem_cache *fn_alias_kmem __read_mostly;
51 struct hlist_node fn_hash;
52 struct list_head fn_alias;
54 struct fib_alias fn_embedded_alias;
57 #define EMBEDDED_HASH_SIZE (L1_CACHE_BYTES / sizeof(struct hlist_head))
60 struct fn_zone __rcu *fz_next; /* Next not empty zone */
61 struct hlist_head __rcu *fz_hash; /* Hash table pointer */
63 u32 fz_hashmask; /* (fz_divisor - 1) */
65 u8 fz_order; /* Zone order (0..32) */
66 u8 fz_revorder; /* 32 - fz_order */
67 __be32 fz_mask; /* inet_make_mask(order) */
68 #define FZ_MASK(fz) ((fz)->fz_mask)
70 struct hlist_head fz_embedded_hash[EMBEDDED_HASH_SIZE];
72 int fz_nent; /* Number of entries */
73 int fz_divisor; /* Hash size (mask+1) */
77 struct fn_zone *fn_zones[33];
78 struct fn_zone __rcu *fn_zone_list;
81 static inline u32 fn_hash(__be32 key, struct fn_zone *fz)
83 u32 h = ntohl(key) >> fz->fz_revorder;
91 static inline __be32 fz_key(__be32 dst, struct fn_zone *fz)
93 return dst & FZ_MASK(fz);
96 static unsigned int fib_hash_genid;
98 #define FZ_MAX_DIVISOR ((PAGE_SIZE<<MAX_ORDER) / sizeof(struct hlist_head))
100 static struct hlist_head *fz_hash_alloc(int divisor)
102 unsigned long size = divisor * sizeof(struct hlist_head);
104 if (size <= PAGE_SIZE)
105 return kzalloc(size, GFP_KERNEL);
107 return (struct hlist_head *)
108 __get_free_pages(GFP_KERNEL | __GFP_ZERO, get_order(size));
111 /* The fib hash lock must be held when this is called. */
112 static inline void fn_rebuild_zone(struct fn_zone *fz,
113 struct hlist_head *old_ht,
118 for (i = 0; i < old_divisor; i++) {
119 struct hlist_node *node, *n;
122 hlist_for_each_entry_safe(f, node, n, &old_ht[i], fn_hash) {
123 struct hlist_head *new_head;
125 hlist_del_rcu(&f->fn_hash);
127 new_head = rcu_dereference_protected(fz->fz_hash, 1) +
128 fn_hash(f->fn_key, fz);
129 hlist_add_head_rcu(&f->fn_hash, new_head);
134 static void fz_hash_free(struct hlist_head *hash, int divisor)
136 unsigned long size = divisor * sizeof(struct hlist_head);
138 if (size <= PAGE_SIZE)
141 free_pages((unsigned long)hash, get_order(size));
144 static void fn_rehash_zone(struct fn_zone *fz)
146 struct hlist_head *ht, *old_ht;
147 int old_divisor, new_divisor;
150 new_divisor = old_divisor = fz->fz_divisor;
152 switch (old_divisor) {
153 case EMBEDDED_HASH_SIZE:
154 new_divisor *= EMBEDDED_HASH_SIZE;
156 case EMBEDDED_HASH_SIZE*EMBEDDED_HASH_SIZE:
157 new_divisor *= (EMBEDDED_HASH_SIZE/2);
160 if ((old_divisor << 1) > FZ_MAX_DIVISOR) {
161 printk(KERN_CRIT "route.c: bad divisor %d!\n", old_divisor);
164 new_divisor = (old_divisor << 1);
168 new_hashmask = (new_divisor - 1);
170 #if RT_CACHE_DEBUG >= 2
171 printk(KERN_DEBUG "fn_rehash_zone: hash for zone %d grows from %d\n",
172 fz->fz_order, old_divisor);
175 ht = fz_hash_alloc(new_divisor);
180 memcpy(&nfz, fz, sizeof(nfz));
182 write_seqlock_bh(&fz->fz_lock);
183 old_ht = rcu_dereference_protected(fz->fz_hash, 1);
184 RCU_INIT_POINTER(nfz.fz_hash, ht);
185 nfz.fz_hashmask = new_hashmask;
186 nfz.fz_divisor = new_divisor;
187 fn_rebuild_zone(&nfz, old_ht, old_divisor);
189 rcu_assign_pointer(fz->fz_hash, ht);
190 fz->fz_hashmask = new_hashmask;
191 fz->fz_divisor = new_divisor;
192 write_sequnlock_bh(&fz->fz_lock);
194 if (old_ht != fz->fz_embedded_hash) {
196 fz_hash_free(old_ht, old_divisor);
201 static void fn_free_node_rcu(struct rcu_head *head)
203 struct fib_node *f = container_of(head, struct fib_node, fn_embedded_alias.rcu);
205 kmem_cache_free(fn_hash_kmem, f);
208 static inline void fn_free_node(struct fib_node *f)
210 call_rcu(&f->fn_embedded_alias.rcu, fn_free_node_rcu);
213 static void fn_free_alias_rcu(struct rcu_head *head)
215 struct fib_alias *fa = container_of(head, struct fib_alias, rcu);
217 kmem_cache_free(fn_alias_kmem, fa);
220 static inline void fn_free_alias(struct fib_alias *fa, struct fib_node *f)
222 fib_release_info(fa->fa_info);
223 if (fa == &f->fn_embedded_alias)
226 call_rcu(&fa->rcu, fn_free_alias_rcu);
229 static struct fn_zone *
230 fn_new_zone(struct fn_hash *table, int z)
233 struct fn_zone *fz = kzalloc(sizeof(struct fn_zone), GFP_KERNEL);
237 seqlock_init(&fz->fz_lock);
238 fz->fz_divisor = z ? EMBEDDED_HASH_SIZE : 1;
239 fz->fz_hashmask = fz->fz_divisor - 1;
240 RCU_INIT_POINTER(fz->fz_hash, fz->fz_embedded_hash);
242 fz->fz_revorder = 32 - z;
243 fz->fz_mask = inet_make_mask(z);
245 /* Find the first not empty zone with more specific mask */
246 for (i = z + 1; i <= 32; i++)
247 if (table->fn_zones[i])
250 /* No more specific masks, we are the first. */
251 rcu_assign_pointer(fz->fz_next,
252 rtnl_dereference(table->fn_zone_list));
253 rcu_assign_pointer(table->fn_zone_list, fz);
255 rcu_assign_pointer(fz->fz_next,
256 rtnl_dereference(table->fn_zones[i]->fz_next));
257 rcu_assign_pointer(table->fn_zones[i]->fz_next, fz);
259 table->fn_zones[z] = fz;
264 int fib_table_lookup(struct fib_table *tb,
265 const struct flowi *flp, struct fib_result *res,
270 struct fn_hash *t = (struct fn_hash *)tb->tb_data;
273 for (fz = rcu_dereference(t->fn_zone_list);
275 fz = rcu_dereference(fz->fz_next)) {
276 struct hlist_head *head;
277 struct hlist_node *node;
283 seq = read_seqbegin(&fz->fz_lock);
284 k = fz_key(flp->fl4_dst, fz);
286 head = rcu_dereference(fz->fz_hash) + fn_hash(k, fz);
287 hlist_for_each_entry_rcu(f, node, head, fn_hash) {
291 err = fib_semantic_match(&f->fn_alias,
293 fz->fz_order, fib_flags);
297 } while (read_seqretry(&fz->fz_lock, seq));
305 void fib_table_select_default(struct fib_table *tb,
306 const struct flowi *flp, struct fib_result *res)
309 struct hlist_node *node;
311 struct fib_info *fi = NULL;
312 struct fib_info *last_resort;
313 struct fn_hash *t = (struct fn_hash *)tb->tb_data;
314 struct fn_zone *fz = t->fn_zones[0];
315 struct hlist_head *head;
325 head = rcu_dereference(fz->fz_hash);
326 hlist_for_each_entry_rcu(f, node, head, fn_hash) {
327 struct fib_alias *fa;
329 list_for_each_entry_rcu(fa, &f->fn_alias, fa_list) {
330 struct fib_info *next_fi = fa->fa_info;
332 if (fa->fa_scope != res->scope ||
333 fa->fa_type != RTN_UNICAST)
336 if (next_fi->fib_priority > res->fi->fib_priority)
338 if (!next_fi->fib_nh[0].nh_gw ||
339 next_fi->fib_nh[0].nh_scope != RT_SCOPE_LINK)
342 fib_alias_accessed(fa);
345 if (next_fi != res->fi)
347 } else if (!fib_detect_death(fi, order, &last_resort,
348 &last_idx, tb->tb_default)) {
349 fib_result_assign(res, fi);
350 tb->tb_default = order;
358 if (order <= 0 || fi == NULL) {
363 if (!fib_detect_death(fi, order, &last_resort, &last_idx,
365 fib_result_assign(res, fi);
366 tb->tb_default = order;
371 fib_result_assign(res, last_resort);
372 tb->tb_default = last_idx;
377 /* Insert node F to FZ. */
378 static inline void fib_insert_node(struct fn_zone *fz, struct fib_node *f)
380 struct hlist_head *head = rtnl_dereference(fz->fz_hash) + fn_hash(f->fn_key, fz);
382 hlist_add_head_rcu(&f->fn_hash, head);
385 /* Return the node in FZ matching KEY. */
386 static struct fib_node *fib_find_node(struct fn_zone *fz, __be32 key)
388 struct hlist_head *head = rtnl_dereference(fz->fz_hash) + fn_hash(key, fz);
389 struct hlist_node *node;
392 hlist_for_each_entry_rcu(f, node, head, fn_hash) {
393 if (f->fn_key == key)
401 static struct fib_alias *fib_fast_alloc(struct fib_node *f)
403 struct fib_alias *fa = &f->fn_embedded_alias;
405 if (fa->fa_info != NULL)
406 fa = kmem_cache_alloc(fn_alias_kmem, GFP_KERNEL);
410 /* Caller must hold RTNL. */
411 int fib_table_insert(struct fib_table *tb, struct fib_config *cfg)
413 struct fn_hash *table = (struct fn_hash *) tb->tb_data;
414 struct fib_node *new_f = NULL;
416 struct fib_alias *fa, *new_fa;
419 u8 tos = cfg->fc_tos;
423 if (cfg->fc_dst_len > 32)
426 fz = table->fn_zones[cfg->fc_dst_len];
427 if (!fz && !(fz = fn_new_zone(table, cfg->fc_dst_len)))
432 if (cfg->fc_dst & ~FZ_MASK(fz))
434 key = fz_key(cfg->fc_dst, fz);
437 fi = fib_create_info(cfg);
441 if (fz->fz_nent > (fz->fz_divisor<<1) &&
442 fz->fz_divisor < FZ_MAX_DIVISOR &&
443 (cfg->fc_dst_len == 32 ||
444 (1 << cfg->fc_dst_len) > fz->fz_divisor))
447 f = fib_find_node(fz, key);
452 fa = fib_find_alias(&f->fn_alias, tos, fi->fib_priority);
454 /* Now fa, if non-NULL, points to the first fib alias
455 * with the same keys [prefix,tos,priority], if such key already
456 * exists or to the node before which we will insert new one.
458 * If fa is NULL, we will need to allocate a new one and
459 * insert to the head of f.
461 * If f is NULL, no fib node matched the destination key
462 * and we need to allocate a new one of those as well.
465 if (fa && fa->fa_tos == tos &&
466 fa->fa_info->fib_priority == fi->fib_priority) {
467 struct fib_alias *fa_first, *fa_match;
470 if (cfg->fc_nlflags & NLM_F_EXCL)
474 * 1. Find exact match for type, scope, fib_info to avoid
476 * 2. Find next 'fa' (or head), NLM_F_APPEND inserts before it
480 fa = list_entry(fa->fa_list.prev, struct fib_alias, fa_list);
481 list_for_each_entry_continue(fa, &f->fn_alias, fa_list) {
482 if (fa->fa_tos != tos)
484 if (fa->fa_info->fib_priority != fi->fib_priority)
486 if (fa->fa_type == cfg->fc_type &&
487 fa->fa_scope == cfg->fc_scope &&
494 if (cfg->fc_nlflags & NLM_F_REPLACE) {
504 new_fa = fib_fast_alloc(f);
508 new_fa->fa_tos = fa->fa_tos;
509 new_fa->fa_info = fi;
510 new_fa->fa_type = cfg->fc_type;
511 new_fa->fa_scope = cfg->fc_scope;
512 state = fa->fa_state;
513 new_fa->fa_state = state & ~FA_S_ACCESSED;
515 list_replace_rcu(&fa->fa_list, &new_fa->fa_list);
517 fn_free_alias(fa, f);
518 if (state & FA_S_ACCESSED)
519 rt_cache_flush(cfg->fc_nlinfo.nl_net, -1);
520 rtmsg_fib(RTM_NEWROUTE, key, new_fa, cfg->fc_dst_len,
521 tb->tb_id, &cfg->fc_nlinfo, NLM_F_REPLACE);
525 /* Error if we find a perfect match which
526 * uses the same scope, type, and nexthop
532 if (!(cfg->fc_nlflags & NLM_F_APPEND))
537 if (!(cfg->fc_nlflags & NLM_F_CREATE))
543 new_f = kmem_cache_zalloc(fn_hash_kmem, GFP_KERNEL);
547 INIT_HLIST_NODE(&new_f->fn_hash);
548 INIT_LIST_HEAD(&new_f->fn_alias);
553 new_fa = fib_fast_alloc(f);
557 new_fa->fa_info = fi;
558 new_fa->fa_tos = tos;
559 new_fa->fa_type = cfg->fc_type;
560 new_fa->fa_scope = cfg->fc_scope;
561 new_fa->fa_state = 0;
564 * Insert new entry to the list.
568 fib_insert_node(fz, new_f);
569 list_add_tail_rcu(&new_fa->fa_list,
570 (fa ? &fa->fa_list : &f->fn_alias));
575 rt_cache_flush(cfg->fc_nlinfo.nl_net, -1);
577 rtmsg_fib(RTM_NEWROUTE, key, new_fa, cfg->fc_dst_len, tb->tb_id,
583 kmem_cache_free(fn_hash_kmem, new_f);
584 fib_release_info(fi);
588 int fib_table_delete(struct fib_table *tb, struct fib_config *cfg)
590 struct fn_hash *table = (struct fn_hash *)tb->tb_data;
592 struct fib_alias *fa, *fa_to_delete;
596 if (cfg->fc_dst_len > 32)
599 if ((fz = table->fn_zones[cfg->fc_dst_len]) == NULL)
604 if (cfg->fc_dst & ~FZ_MASK(fz))
606 key = fz_key(cfg->fc_dst, fz);
609 f = fib_find_node(fz, key);
614 fa = fib_find_alias(&f->fn_alias, cfg->fc_tos, 0);
619 fa = list_entry(fa->fa_list.prev, struct fib_alias, fa_list);
620 list_for_each_entry_continue(fa, &f->fn_alias, fa_list) {
621 struct fib_info *fi = fa->fa_info;
623 if (fa->fa_tos != cfg->fc_tos)
626 if ((!cfg->fc_type ||
627 fa->fa_type == cfg->fc_type) &&
628 (cfg->fc_scope == RT_SCOPE_NOWHERE ||
629 fa->fa_scope == cfg->fc_scope) &&
630 (!cfg->fc_protocol ||
631 fi->fib_protocol == cfg->fc_protocol) &&
632 fib_nh_match(cfg, fi) == 0) {
642 rtmsg_fib(RTM_DELROUTE, key, fa, cfg->fc_dst_len,
643 tb->tb_id, &cfg->fc_nlinfo, 0);
646 list_del_rcu(&fa->fa_list);
647 if (list_empty(&f->fn_alias)) {
648 hlist_del_rcu(&f->fn_hash);
653 if (fa->fa_state & FA_S_ACCESSED)
654 rt_cache_flush(cfg->fc_nlinfo.nl_net, -1);
655 fn_free_alias(fa, f);
666 static int fn_flush_list(struct fn_zone *fz, int idx)
668 struct hlist_head *head = rtnl_dereference(fz->fz_hash) + idx;
669 struct hlist_node *node, *n;
673 hlist_for_each_entry_safe(f, node, n, head, fn_hash) {
674 struct fib_alias *fa, *fa_node;
678 list_for_each_entry_safe(fa, fa_node, &f->fn_alias, fa_list) {
679 struct fib_info *fi = fa->fa_info;
681 if (fi && (fi->fib_flags&RTNH_F_DEAD)) {
682 list_del_rcu(&fa->fa_list);
683 if (list_empty(&f->fn_alias)) {
684 hlist_del_rcu(&f->fn_hash);
689 fn_free_alias(fa, f);
701 /* caller must hold RTNL. */
702 int fib_table_flush(struct fib_table *tb)
704 struct fn_hash *table = (struct fn_hash *) tb->tb_data;
708 for (fz = rtnl_dereference(table->fn_zone_list);
710 fz = rtnl_dereference(fz->fz_next)) {
713 for (i = fz->fz_divisor - 1; i >= 0; i--)
714 found += fn_flush_list(fz, i);
719 void fib_free_table(struct fib_table *tb)
721 struct fn_hash *table = (struct fn_hash *) tb->tb_data;
722 struct fn_zone *fz, *next;
724 next = table->fn_zone_list;
725 while (next != NULL) {
729 if (fz->fz_hash != fz->fz_embedded_hash)
730 fz_hash_free(fz->fz_hash, fz->fz_divisor);
739 fn_hash_dump_bucket(struct sk_buff *skb, struct netlink_callback *cb,
740 struct fib_table *tb,
742 struct hlist_head *head)
744 struct hlist_node *node;
750 hlist_for_each_entry_rcu(f, node, head, fn_hash) {
751 struct fib_alias *fa;
753 list_for_each_entry_rcu(fa, &f->fn_alias, fa_list) {
757 if (fib_dump_info(skb, NETLINK_CB(cb->skb).pid,
780 fn_hash_dump_zone(struct sk_buff *skb, struct netlink_callback *cb,
781 struct fib_table *tb,
785 struct hlist_head *head = rcu_dereference(fz->fz_hash);
790 for (h = s_h; h < fz->fz_divisor; h++) {
791 if (hlist_empty(head + h))
793 if (fn_hash_dump_bucket(skb, cb, tb, fz, head + h) < 0) {
797 memset(&cb->args[4], 0,
798 sizeof(cb->args) - 4*sizeof(cb->args[0]));
804 int fib_table_dump(struct fib_table *tb, struct sk_buff *skb,
805 struct netlink_callback *cb)
809 struct fn_hash *table = (struct fn_hash *)tb->tb_data;
813 for (fz = rcu_dereference(table->fn_zone_list);
815 fz = rcu_dereference(fz->fz_next), m++) {
818 if (fn_hash_dump_zone(skb, cb, tb, fz) < 0) {
823 memset(&cb->args[3], 0,
824 sizeof(cb->args) - 3*sizeof(cb->args[0]));
831 void __init fib_hash_init(void)
833 fn_hash_kmem = kmem_cache_create("ip_fib_hash", sizeof(struct fib_node),
834 0, SLAB_PANIC, NULL);
836 fn_alias_kmem = kmem_cache_create("ip_fib_alias", sizeof(struct fib_alias),
837 0, SLAB_PANIC, NULL);
841 struct fib_table *fib_hash_table(u32 id)
843 struct fib_table *tb;
845 tb = kmalloc(sizeof(struct fib_table) + sizeof(struct fn_hash),
853 memset(tb->tb_data, 0, sizeof(struct fn_hash));
857 /* ------------------------------------------------------------------------ */
858 #ifdef CONFIG_PROC_FS
860 struct fib_iter_state {
861 struct seq_net_private p;
862 struct fn_zone *zone;
864 struct hlist_head *hash_head;
866 struct fib_alias *fa;
872 static struct fib_alias *fib_get_first(struct seq_file *seq)
874 struct fib_iter_state *iter = seq->private;
875 struct fib_table *main_table;
876 struct fn_hash *table;
878 main_table = fib_get_table(seq_file_net(seq), RT_TABLE_MAIN);
879 table = (struct fn_hash *)main_table->tb_data;
882 iter->hash_head = NULL;
886 iter->genid = fib_hash_genid;
889 for (iter->zone = rcu_dereference(table->fn_zone_list);
891 iter->zone = rcu_dereference(iter->zone->fz_next)) {
894 if (!iter->zone->fz_nent)
897 iter->hash_head = rcu_dereference(iter->zone->fz_hash);
898 maxslot = iter->zone->fz_divisor;
900 for (iter->bucket = 0; iter->bucket < maxslot;
901 ++iter->bucket, ++iter->hash_head) {
902 struct hlist_node *node;
905 hlist_for_each_entry(fn, node, iter->hash_head, fn_hash) {
906 struct fib_alias *fa;
908 list_for_each_entry(fa, &fn->fn_alias, fa_list) {
920 static struct fib_alias *fib_get_next(struct seq_file *seq)
922 struct fib_iter_state *iter = seq->private;
924 struct fib_alias *fa;
926 /* Advance FA, if any. */
931 list_for_each_entry_continue(fa, &fn->fn_alias, fa_list) {
937 fa = iter->fa = NULL;
941 struct hlist_node *node = &fn->fn_hash;
942 hlist_for_each_entry_continue(fn, node, fn_hash) {
945 list_for_each_entry(fa, &fn->fn_alias, fa_list) {
952 fn = iter->fn = NULL;
954 /* Advance hash chain. */
959 struct hlist_node *node;
962 maxslot = iter->zone->fz_divisor;
964 while (++iter->bucket < maxslot) {
967 hlist_for_each_entry(fn, node, iter->hash_head, fn_hash) {
968 list_for_each_entry(fa, &fn->fn_alias, fa_list) {
976 iter->zone = rcu_dereference(iter->zone->fz_next);
982 iter->hash_head = rcu_dereference(iter->zone->fz_hash);
984 hlist_for_each_entry(fn, node, iter->hash_head, fn_hash) {
985 list_for_each_entry(fa, &fn->fn_alias, fa_list) {
997 static struct fib_alias *fib_get_idx(struct seq_file *seq, loff_t pos)
999 struct fib_iter_state *iter = seq->private;
1000 struct fib_alias *fa;
1002 if (iter->valid && pos >= iter->pos && iter->genid == fib_hash_genid) {
1006 fa = fib_get_first(seq);
1009 while (pos && (fa = fib_get_next(seq)))
1011 return pos ? NULL : fa;
1014 static void *fib_seq_start(struct seq_file *seq, loff_t *pos)
1020 if (fib_get_table(seq_file_net(seq), RT_TABLE_MAIN))
1021 v = *pos ? fib_get_idx(seq, *pos - 1) : SEQ_START_TOKEN;
1025 static void *fib_seq_next(struct seq_file *seq, void *v, loff_t *pos)
1028 return v == SEQ_START_TOKEN ? fib_get_first(seq) : fib_get_next(seq);
1031 static void fib_seq_stop(struct seq_file *seq, void *v)
1037 static unsigned fib_flag_trans(int type, __be32 mask, struct fib_info *fi)
1039 static const unsigned type2flags[RTN_MAX + 1] = {
1043 unsigned flags = type2flags[type];
1045 if (fi && fi->fib_nh->nh_gw)
1046 flags |= RTF_GATEWAY;
1047 if (mask == htonl(0xFFFFFFFF))
1054 * This outputs /proc/net/route.
1056 * It always works in backward compatibility mode.
1057 * The format of the file is not supposed to be changed.
1059 static int fib_seq_show(struct seq_file *seq, void *v)
1061 struct fib_iter_state *iter;
1063 __be32 prefix, mask;
1066 struct fib_alias *fa;
1067 struct fib_info *fi;
1069 if (v == SEQ_START_TOKEN) {
1070 seq_printf(seq, "%-127s\n", "Iface\tDestination\tGateway "
1071 "\tFlags\tRefCnt\tUse\tMetric\tMask\t\tMTU"
1076 iter = seq->private;
1081 mask = FZ_MASK(iter->zone);
1082 flags = fib_flag_trans(fa->fa_type, mask, fi);
1085 "%s\t%08X\t%08X\t%04X\t%d\t%u\t%d\t%08X\t%d\t%u\t%u%n",
1086 fi->fib_dev ? fi->fib_dev->name : "*", prefix,
1087 fi->fib_nh->nh_gw, flags, 0, 0, fi->fib_priority,
1088 mask, (fi->fib_advmss ? fi->fib_advmss + 40 : 0),
1090 fi->fib_rtt >> 3, &len);
1093 "*\t%08X\t%08X\t%04X\t%d\t%u\t%d\t%08X\t%d\t%u\t%u%n",
1094 prefix, 0, flags, 0, 0, 0, mask, 0, 0, 0, &len);
1096 seq_printf(seq, "%*s\n", 127 - len, "");
1101 static const struct seq_operations fib_seq_ops = {
1102 .start = fib_seq_start,
1103 .next = fib_seq_next,
1104 .stop = fib_seq_stop,
1105 .show = fib_seq_show,
1108 static int fib_seq_open(struct inode *inode, struct file *file)
1110 return seq_open_net(inode, file, &fib_seq_ops,
1111 sizeof(struct fib_iter_state));
1114 static const struct file_operations fib_seq_fops = {
1115 .owner = THIS_MODULE,
1116 .open = fib_seq_open,
1118 .llseek = seq_lseek,
1119 .release = seq_release_net,
1122 int __net_init fib_proc_init(struct net *net)
1124 if (!proc_net_fops_create(net, "route", S_IRUGO, &fib_seq_fops))
1129 void __net_exit fib_proc_exit(struct net *net)
1131 proc_net_remove(net, "route");
1133 #endif /* CONFIG_PROC_FS */