Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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. |
| 5 | * |
| 6 | * IPv4 FIB: lookup engine and maintenance routines. |
| 7 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8 | * Authors: Alexey Kuznetsov, <kuznet@ms2.inr.ac.ru> |
| 9 | * |
| 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. |
| 14 | */ |
| 15 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 21 | #include <linux/mm.h> |
| 22 | #include <linux/string.h> |
| 23 | #include <linux/socket.h> |
| 24 | #include <linux/sockios.h> |
| 25 | #include <linux/errno.h> |
| 26 | #include <linux/in.h> |
| 27 | #include <linux/inet.h> |
Arnaldo Carvalho de Melo | 14c8502 | 2005-12-27 02:43:12 -0200 | [diff] [blame] | 28 | #include <linux/inetdevice.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 35 | #include <linux/slab.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 36 | |
Eric W. Biederman | 457c4cb | 2007-09-12 12:01:34 +0200 | [diff] [blame] | 37 | #include <net/net_namespace.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | #include <net/ip.h> |
| 39 | #include <net/protocol.h> |
| 40 | #include <net/route.h> |
| 41 | #include <net/tcp.h> |
| 42 | #include <net/sock.h> |
| 43 | #include <net/ip_fib.h> |
| 44 | |
| 45 | #include "fib_lookup.h" |
| 46 | |
Christoph Lameter | e18b890 | 2006-12-06 20:33:20 -0800 | [diff] [blame] | 47 | static struct kmem_cache *fn_hash_kmem __read_mostly; |
| 48 | static struct kmem_cache *fn_alias_kmem __read_mostly; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 49 | |
| 50 | struct fib_node { |
| 51 | struct hlist_node fn_hash; |
| 52 | struct list_head fn_alias; |
Al Viro | b6e80c6 | 2006-09-26 22:20:01 -0700 | [diff] [blame] | 53 | __be32 fn_key; |
Eric Dumazet | a6501e0 | 2008-01-18 03:33:26 -0800 | [diff] [blame] | 54 | struct fib_alias fn_embedded_alias; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 55 | }; |
| 56 | |
Eric Dumazet | 9bef83e | 2010-10-14 20:53:04 +0000 | [diff] [blame] | 57 | #define EMBEDDED_HASH_SIZE (L1_CACHE_BYTES / sizeof(struct hlist_head)) |
| 58 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 59 | struct fn_zone { |
Eric Dumazet | 117a8cd | 2010-10-14 20:53:34 +0000 | [diff] [blame] | 60 | struct fn_zone __rcu *fz_next; /* Next not empty zone */ |
Eric Dumazet | 19f5725 | 2010-10-14 20:56:39 +0000 | [diff] [blame] | 61 | struct hlist_head __rcu *fz_hash; /* Hash table pointer */ |
| 62 | seqlock_t fz_lock; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 63 | u32 fz_hashmask; /* (fz_divisor - 1) */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 64 | |
Eric Dumazet | 9bef83e | 2010-10-14 20:53:04 +0000 | [diff] [blame] | 65 | u8 fz_order; /* Zone order (0..32) */ |
| 66 | u8 fz_revorder; /* 32 - fz_order */ |
| 67 | __be32 fz_mask; /* inet_make_mask(order) */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 68 | #define FZ_MASK(fz) ((fz)->fz_mask) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 69 | |
Eric Dumazet | 9bef83e | 2010-10-14 20:53:04 +0000 | [diff] [blame] | 70 | struct hlist_head fz_embedded_hash[EMBEDDED_HASH_SIZE]; |
| 71 | |
| 72 | int fz_nent; /* Number of entries */ |
| 73 | int fz_divisor; /* Hash size (mask+1) */ |
| 74 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 75 | |
| 76 | struct fn_hash { |
Eric Dumazet | 117a8cd | 2010-10-14 20:53:34 +0000 | [diff] [blame] | 77 | struct fn_zone *fn_zones[33]; |
| 78 | struct fn_zone __rcu *fn_zone_list; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 79 | }; |
| 80 | |
Al Viro | b6e80c6 | 2006-09-26 22:20:01 -0700 | [diff] [blame] | 81 | static inline u32 fn_hash(__be32 key, struct fn_zone *fz) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 82 | { |
Eric Dumazet | 9bef83e | 2010-10-14 20:53:04 +0000 | [diff] [blame] | 83 | u32 h = ntohl(key) >> fz->fz_revorder; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 84 | h ^= (h>>20); |
| 85 | h ^= (h>>10); |
| 86 | h ^= (h>>5); |
Eric Dumazet | 9bef83e | 2010-10-14 20:53:04 +0000 | [diff] [blame] | 87 | h &= fz->fz_hashmask; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 88 | return h; |
| 89 | } |
| 90 | |
Al Viro | b6e80c6 | 2006-09-26 22:20:01 -0700 | [diff] [blame] | 91 | static inline __be32 fz_key(__be32 dst, struct fn_zone *fz) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 92 | { |
| 93 | return dst & FZ_MASK(fz); |
| 94 | } |
| 95 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 96 | static unsigned int fib_hash_genid; |
| 97 | |
| 98 | #define FZ_MAX_DIVISOR ((PAGE_SIZE<<MAX_ORDER) / sizeof(struct hlist_head)) |
| 99 | |
| 100 | static struct hlist_head *fz_hash_alloc(int divisor) |
| 101 | { |
| 102 | unsigned long size = divisor * sizeof(struct hlist_head); |
| 103 | |
Eric Dumazet | 19f5725 | 2010-10-14 20:56:39 +0000 | [diff] [blame] | 104 | if (size <= PAGE_SIZE) |
Joonwoo Park | 3015a34 | 2007-11-26 23:31:24 +0800 | [diff] [blame] | 105 | return kzalloc(size, GFP_KERNEL); |
Eric Dumazet | 19f5725 | 2010-10-14 20:56:39 +0000 | [diff] [blame] | 106 | |
| 107 | return (struct hlist_head *) |
| 108 | __get_free_pages(GFP_KERNEL | __GFP_ZERO, get_order(size)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 109 | } |
| 110 | |
| 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, |
| 114 | int old_divisor) |
| 115 | { |
| 116 | int i; |
| 117 | |
| 118 | for (i = 0; i < old_divisor; i++) { |
| 119 | struct hlist_node *node, *n; |
| 120 | struct fib_node *f; |
| 121 | |
| 122 | hlist_for_each_entry_safe(f, node, n, &old_ht[i], fn_hash) { |
Eric Dumazet | ded85aa | 2010-10-26 03:24:16 +0000 | [diff] [blame] | 123 | struct hlist_head *new_head; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 124 | |
Eric Dumazet | 19f5725 | 2010-10-14 20:56:39 +0000 | [diff] [blame] | 125 | hlist_del_rcu(&f->fn_hash); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 126 | |
Eric Dumazet | ded85aa | 2010-10-26 03:24:16 +0000 | [diff] [blame] | 127 | new_head = rcu_dereference_protected(fz->fz_hash, 1) + |
| 128 | fn_hash(f->fn_key, fz); |
Eric Dumazet | 19f5725 | 2010-10-14 20:56:39 +0000 | [diff] [blame] | 129 | hlist_add_head_rcu(&f->fn_hash, new_head); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 130 | } |
| 131 | } |
| 132 | } |
| 133 | |
| 134 | static void fz_hash_free(struct hlist_head *hash, int divisor) |
| 135 | { |
| 136 | unsigned long size = divisor * sizeof(struct hlist_head); |
| 137 | |
| 138 | if (size <= PAGE_SIZE) |
| 139 | kfree(hash); |
| 140 | else |
| 141 | free_pages((unsigned long)hash, get_order(size)); |
| 142 | } |
| 143 | |
| 144 | static void fn_rehash_zone(struct fn_zone *fz) |
| 145 | { |
| 146 | struct hlist_head *ht, *old_ht; |
| 147 | int old_divisor, new_divisor; |
| 148 | u32 new_hashmask; |
YOSHIFUJI Hideaki | e905a9e | 2007-02-09 23:24:47 +0900 | [diff] [blame] | 149 | |
Eric Dumazet | 9bef83e | 2010-10-14 20:53:04 +0000 | [diff] [blame] | 150 | new_divisor = old_divisor = fz->fz_divisor; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 151 | |
| 152 | switch (old_divisor) { |
Eric Dumazet | 9bef83e | 2010-10-14 20:53:04 +0000 | [diff] [blame] | 153 | case EMBEDDED_HASH_SIZE: |
| 154 | new_divisor *= EMBEDDED_HASH_SIZE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 155 | break; |
Eric Dumazet | 9bef83e | 2010-10-14 20:53:04 +0000 | [diff] [blame] | 156 | case EMBEDDED_HASH_SIZE*EMBEDDED_HASH_SIZE: |
| 157 | new_divisor *= (EMBEDDED_HASH_SIZE/2); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 158 | break; |
| 159 | default: |
| 160 | if ((old_divisor << 1) > FZ_MAX_DIVISOR) { |
| 161 | printk(KERN_CRIT "route.c: bad divisor %d!\n", old_divisor); |
| 162 | return; |
| 163 | } |
| 164 | new_divisor = (old_divisor << 1); |
| 165 | break; |
| 166 | } |
| 167 | |
| 168 | new_hashmask = (new_divisor - 1); |
| 169 | |
| 170 | #if RT_CACHE_DEBUG >= 2 |
Stephen Hemminger | a6db901 | 2008-01-12 20:58:35 -0800 | [diff] [blame] | 171 | printk(KERN_DEBUG "fn_rehash_zone: hash for zone %d grows from %d\n", |
| 172 | fz->fz_order, old_divisor); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 173 | #endif |
| 174 | |
| 175 | ht = fz_hash_alloc(new_divisor); |
| 176 | |
| 177 | if (ht) { |
Eric Dumazet | 19f5725 | 2010-10-14 20:56:39 +0000 | [diff] [blame] | 178 | struct fn_zone nfz; |
| 179 | |
| 180 | memcpy(&nfz, fz, sizeof(nfz)); |
| 181 | |
| 182 | write_seqlock_bh(&fz->fz_lock); |
Eric Dumazet | ded85aa | 2010-10-26 03:24:16 +0000 | [diff] [blame] | 183 | old_ht = rcu_dereference_protected(fz->fz_hash, 1); |
| 184 | RCU_INIT_POINTER(nfz.fz_hash, ht); |
Eric Dumazet | 19f5725 | 2010-10-14 20:56:39 +0000 | [diff] [blame] | 185 | nfz.fz_hashmask = new_hashmask; |
| 186 | nfz.fz_divisor = new_divisor; |
| 187 | fn_rebuild_zone(&nfz, old_ht, old_divisor); |
| 188 | fib_hash_genid++; |
| 189 | rcu_assign_pointer(fz->fz_hash, ht); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 190 | fz->fz_hashmask = new_hashmask; |
| 191 | fz->fz_divisor = new_divisor; |
Eric Dumazet | 19f5725 | 2010-10-14 20:56:39 +0000 | [diff] [blame] | 192 | write_sequnlock_bh(&fz->fz_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 193 | |
Eric Dumazet | 19f5725 | 2010-10-14 20:56:39 +0000 | [diff] [blame] | 194 | if (old_ht != fz->fz_embedded_hash) { |
| 195 | synchronize_rcu(); |
Eric Dumazet | 9bef83e | 2010-10-14 20:53:04 +0000 | [diff] [blame] | 196 | fz_hash_free(old_ht, old_divisor); |
Eric Dumazet | 19f5725 | 2010-10-14 20:56:39 +0000 | [diff] [blame] | 197 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 198 | } |
| 199 | } |
| 200 | |
Eric Dumazet | 19f5725 | 2010-10-14 20:56:39 +0000 | [diff] [blame] | 201 | static void fn_free_node_rcu(struct rcu_head *head) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 202 | { |
Eric Dumazet | 19f5725 | 2010-10-14 20:56:39 +0000 | [diff] [blame] | 203 | struct fib_node *f = container_of(head, struct fib_node, fn_embedded_alias.rcu); |
| 204 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 205 | kmem_cache_free(fn_hash_kmem, f); |
| 206 | } |
| 207 | |
Eric Dumazet | 19f5725 | 2010-10-14 20:56:39 +0000 | [diff] [blame] | 208 | static inline void fn_free_node(struct fib_node *f) |
| 209 | { |
| 210 | call_rcu(&f->fn_embedded_alias.rcu, fn_free_node_rcu); |
| 211 | } |
| 212 | |
| 213 | static void fn_free_alias_rcu(struct rcu_head *head) |
| 214 | { |
| 215 | struct fib_alias *fa = container_of(head, struct fib_alias, rcu); |
| 216 | |
| 217 | kmem_cache_free(fn_alias_kmem, fa); |
| 218 | } |
| 219 | |
Eric Dumazet | a6501e0 | 2008-01-18 03:33:26 -0800 | [diff] [blame] | 220 | static inline void fn_free_alias(struct fib_alias *fa, struct fib_node *f) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 221 | { |
| 222 | fib_release_info(fa->fa_info); |
Eric Dumazet | a6501e0 | 2008-01-18 03:33:26 -0800 | [diff] [blame] | 223 | if (fa == &f->fn_embedded_alias) |
| 224 | fa->fa_info = NULL; |
| 225 | else |
Eric Dumazet | 19f5725 | 2010-10-14 20:56:39 +0000 | [diff] [blame] | 226 | call_rcu(&fa->rcu, fn_free_alias_rcu); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 227 | } |
| 228 | |
| 229 | static struct fn_zone * |
| 230 | fn_new_zone(struct fn_hash *table, int z) |
| 231 | { |
| 232 | int i; |
Panagiotis Issaris | 0da974f | 2006-07-21 14:51:30 -0700 | [diff] [blame] | 233 | struct fn_zone *fz = kzalloc(sizeof(struct fn_zone), GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 234 | if (!fz) |
| 235 | return NULL; |
| 236 | |
Eric Dumazet | 19f5725 | 2010-10-14 20:56:39 +0000 | [diff] [blame] | 237 | seqlock_init(&fz->fz_lock); |
Eric Dumazet | 9bef83e | 2010-10-14 20:53:04 +0000 | [diff] [blame] | 238 | fz->fz_divisor = z ? EMBEDDED_HASH_SIZE : 1; |
| 239 | fz->fz_hashmask = fz->fz_divisor - 1; |
Eric Dumazet | ded85aa | 2010-10-26 03:24:16 +0000 | [diff] [blame] | 240 | RCU_INIT_POINTER(fz->fz_hash, fz->fz_embedded_hash); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 241 | fz->fz_order = z; |
Eric Dumazet | 9bef83e | 2010-10-14 20:53:04 +0000 | [diff] [blame] | 242 | fz->fz_revorder = 32 - z; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 243 | fz->fz_mask = inet_make_mask(z); |
| 244 | |
| 245 | /* Find the first not empty zone with more specific mask */ |
Eric Dumazet | 117a8cd | 2010-10-14 20:53:34 +0000 | [diff] [blame] | 246 | for (i = z + 1; i <= 32; i++) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 247 | if (table->fn_zones[i]) |
| 248 | break; |
Eric Dumazet | 117a8cd | 2010-10-14 20:53:34 +0000 | [diff] [blame] | 249 | if (i > 32) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 250 | /* No more specific masks, we are the first. */ |
Eric Dumazet | 117a8cd | 2010-10-14 20:53:34 +0000 | [diff] [blame] | 251 | rcu_assign_pointer(fz->fz_next, |
| 252 | rtnl_dereference(table->fn_zone_list)); |
| 253 | rcu_assign_pointer(table->fn_zone_list, fz); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 254 | } else { |
Eric Dumazet | 117a8cd | 2010-10-14 20:53:34 +0000 | [diff] [blame] | 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); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 258 | } |
| 259 | table->fn_zones[z] = fz; |
| 260 | fib_hash_genid++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 261 | return fz; |
| 262 | } |
| 263 | |
Stephen Hemminger | 16c6cf8 | 2009-09-20 10:35:36 +0000 | [diff] [blame] | 264 | int fib_table_lookup(struct fib_table *tb, |
Eric Dumazet | ebc0ffa | 2010-10-05 10:41:36 +0000 | [diff] [blame] | 265 | const struct flowi *flp, struct fib_result *res, |
| 266 | int fib_flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 267 | { |
| 268 | int err; |
| 269 | struct fn_zone *fz; |
Jianjun Kong | 6ed2533 | 2008-11-03 00:25:16 -0800 | [diff] [blame] | 270 | struct fn_hash *t = (struct fn_hash *)tb->tb_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 271 | |
Eric Dumazet | 117a8cd | 2010-10-14 20:53:34 +0000 | [diff] [blame] | 272 | rcu_read_lock(); |
Eric Dumazet | 117a8cd | 2010-10-14 20:53:34 +0000 | [diff] [blame] | 273 | for (fz = rcu_dereference(t->fn_zone_list); |
| 274 | fz != NULL; |
| 275 | fz = rcu_dereference(fz->fz_next)) { |
Eric Dumazet | ded85aa | 2010-10-26 03:24:16 +0000 | [diff] [blame] | 276 | struct hlist_head *head; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 277 | struct hlist_node *node; |
| 278 | struct fib_node *f; |
Eric Dumazet | 19f5725 | 2010-10-14 20:56:39 +0000 | [diff] [blame] | 279 | __be32 k; |
| 280 | unsigned int seq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 281 | |
Eric Dumazet | 19f5725 | 2010-10-14 20:56:39 +0000 | [diff] [blame] | 282 | do { |
| 283 | seq = read_seqbegin(&fz->fz_lock); |
| 284 | k = fz_key(flp->fl4_dst, fz); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 285 | |
Eric Dumazet | ded85aa | 2010-10-26 03:24:16 +0000 | [diff] [blame] | 286 | head = rcu_dereference(fz->fz_hash) + fn_hash(k, fz); |
Eric Dumazet | 19f5725 | 2010-10-14 20:56:39 +0000 | [diff] [blame] | 287 | hlist_for_each_entry_rcu(f, node, head, fn_hash) { |
| 288 | if (f->fn_key != k) |
| 289 | continue; |
| 290 | |
| 291 | err = fib_semantic_match(&f->fn_alias, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 292 | flp, res, |
Eric Dumazet | ebc0ffa | 2010-10-05 10:41:36 +0000 | [diff] [blame] | 293 | fz->fz_order, fib_flags); |
Eric Dumazet | 19f5725 | 2010-10-14 20:56:39 +0000 | [diff] [blame] | 294 | if (err <= 0) |
| 295 | goto out; |
| 296 | } |
| 297 | } while (read_seqretry(&fz->fz_lock, seq)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 298 | } |
| 299 | err = 1; |
| 300 | out: |
Eric Dumazet | 117a8cd | 2010-10-14 20:53:34 +0000 | [diff] [blame] | 301 | rcu_read_unlock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 302 | return err; |
| 303 | } |
| 304 | |
Stephen Hemminger | 16c6cf8 | 2009-09-20 10:35:36 +0000 | [diff] [blame] | 305 | void fib_table_select_default(struct fib_table *tb, |
| 306 | const struct flowi *flp, struct fib_result *res) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 307 | { |
| 308 | int order, last_idx; |
| 309 | struct hlist_node *node; |
| 310 | struct fib_node *f; |
| 311 | struct fib_info *fi = NULL; |
| 312 | struct fib_info *last_resort; |
Jianjun Kong | 6ed2533 | 2008-11-03 00:25:16 -0800 | [diff] [blame] | 313 | struct fn_hash *t = (struct fn_hash *)tb->tb_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 314 | struct fn_zone *fz = t->fn_zones[0]; |
Eric Dumazet | ded85aa | 2010-10-26 03:24:16 +0000 | [diff] [blame] | 315 | struct hlist_head *head; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 316 | |
| 317 | if (fz == NULL) |
| 318 | return; |
| 319 | |
| 320 | last_idx = -1; |
| 321 | last_resort = NULL; |
| 322 | order = -1; |
| 323 | |
Eric Dumazet | 19f5725 | 2010-10-14 20:56:39 +0000 | [diff] [blame] | 324 | rcu_read_lock(); |
Eric Dumazet | ded85aa | 2010-10-26 03:24:16 +0000 | [diff] [blame] | 325 | head = rcu_dereference(fz->fz_hash); |
| 326 | hlist_for_each_entry_rcu(f, node, head, fn_hash) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 327 | struct fib_alias *fa; |
| 328 | |
Eric Dumazet | 19f5725 | 2010-10-14 20:56:39 +0000 | [diff] [blame] | 329 | list_for_each_entry_rcu(fa, &f->fn_alias, fa_list) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 330 | struct fib_info *next_fi = fa->fa_info; |
| 331 | |
| 332 | if (fa->fa_scope != res->scope || |
| 333 | fa->fa_type != RTN_UNICAST) |
| 334 | continue; |
| 335 | |
| 336 | if (next_fi->fib_priority > res->fi->fib_priority) |
| 337 | break; |
| 338 | if (!next_fi->fib_nh[0].nh_gw || |
| 339 | next_fi->fib_nh[0].nh_scope != RT_SCOPE_LINK) |
| 340 | continue; |
Eric Dumazet | 9b0c290 | 2010-10-20 22:03:38 +0000 | [diff] [blame] | 341 | |
| 342 | fib_alias_accessed(fa); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 343 | |
| 344 | if (fi == NULL) { |
| 345 | if (next_fi != res->fi) |
| 346 | break; |
| 347 | } else if (!fib_detect_death(fi, order, &last_resort, |
Denis V. Lunev | 971b893 | 2007-12-08 00:32:23 -0800 | [diff] [blame] | 348 | &last_idx, tb->tb_default)) { |
Denis V. Lunev | a2bbe68 | 2007-12-08 00:31:44 -0800 | [diff] [blame] | 349 | fib_result_assign(res, fi); |
Denis V. Lunev | 971b893 | 2007-12-08 00:32:23 -0800 | [diff] [blame] | 350 | tb->tb_default = order; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 351 | goto out; |
| 352 | } |
| 353 | fi = next_fi; |
| 354 | order++; |
| 355 | } |
| 356 | } |
| 357 | |
| 358 | if (order <= 0 || fi == NULL) { |
Denis V. Lunev | 971b893 | 2007-12-08 00:32:23 -0800 | [diff] [blame] | 359 | tb->tb_default = -1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 360 | goto out; |
| 361 | } |
| 362 | |
Denis V. Lunev | 971b893 | 2007-12-08 00:32:23 -0800 | [diff] [blame] | 363 | if (!fib_detect_death(fi, order, &last_resort, &last_idx, |
| 364 | tb->tb_default)) { |
Denis V. Lunev | a2bbe68 | 2007-12-08 00:31:44 -0800 | [diff] [blame] | 365 | fib_result_assign(res, fi); |
Denis V. Lunev | 971b893 | 2007-12-08 00:32:23 -0800 | [diff] [blame] | 366 | tb->tb_default = order; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 367 | goto out; |
| 368 | } |
| 369 | |
Denis V. Lunev | a2bbe68 | 2007-12-08 00:31:44 -0800 | [diff] [blame] | 370 | if (last_idx >= 0) |
| 371 | fib_result_assign(res, last_resort); |
Denis V. Lunev | 971b893 | 2007-12-08 00:32:23 -0800 | [diff] [blame] | 372 | tb->tb_default = last_idx; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 373 | out: |
Eric Dumazet | 19f5725 | 2010-10-14 20:56:39 +0000 | [diff] [blame] | 374 | rcu_read_unlock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 375 | } |
| 376 | |
| 377 | /* Insert node F to FZ. */ |
| 378 | static inline void fib_insert_node(struct fn_zone *fz, struct fib_node *f) |
| 379 | { |
Eric Dumazet | ded85aa | 2010-10-26 03:24:16 +0000 | [diff] [blame] | 380 | struct hlist_head *head = rtnl_dereference(fz->fz_hash) + fn_hash(f->fn_key, fz); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 381 | |
Eric Dumazet | 19f5725 | 2010-10-14 20:56:39 +0000 | [diff] [blame] | 382 | hlist_add_head_rcu(&f->fn_hash, head); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 383 | } |
| 384 | |
| 385 | /* Return the node in FZ matching KEY. */ |
Al Viro | b6e80c6 | 2006-09-26 22:20:01 -0700 | [diff] [blame] | 386 | static struct fib_node *fib_find_node(struct fn_zone *fz, __be32 key) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 387 | { |
Eric Dumazet | ded85aa | 2010-10-26 03:24:16 +0000 | [diff] [blame] | 388 | struct hlist_head *head = rtnl_dereference(fz->fz_hash) + fn_hash(key, fz); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 389 | struct hlist_node *node; |
| 390 | struct fib_node *f; |
| 391 | |
Eric Dumazet | 19f5725 | 2010-10-14 20:56:39 +0000 | [diff] [blame] | 392 | hlist_for_each_entry_rcu(f, node, head, fn_hash) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 393 | if (f->fn_key == key) |
| 394 | return f; |
| 395 | } |
| 396 | |
| 397 | return NULL; |
| 398 | } |
| 399 | |
Eric Dumazet | 19f5725 | 2010-10-14 20:56:39 +0000 | [diff] [blame] | 400 | |
| 401 | static struct fib_alias *fib_fast_alloc(struct fib_node *f) |
| 402 | { |
| 403 | struct fib_alias *fa = &f->fn_embedded_alias; |
| 404 | |
| 405 | if (fa->fa_info != NULL) |
| 406 | fa = kmem_cache_alloc(fn_alias_kmem, GFP_KERNEL); |
| 407 | return fa; |
| 408 | } |
| 409 | |
Eric Dumazet | 117a8cd | 2010-10-14 20:53:34 +0000 | [diff] [blame] | 410 | /* Caller must hold RTNL. */ |
Stephen Hemminger | 16c6cf8 | 2009-09-20 10:35:36 +0000 | [diff] [blame] | 411 | int fib_table_insert(struct fib_table *tb, struct fib_config *cfg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 412 | { |
| 413 | struct fn_hash *table = (struct fn_hash *) tb->tb_data; |
Adrian Bunk | 94cb150 | 2008-02-19 16:28:54 -0800 | [diff] [blame] | 414 | struct fib_node *new_f = NULL; |
| 415 | struct fib_node *f; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 416 | struct fib_alias *fa, *new_fa; |
| 417 | struct fn_zone *fz; |
| 418 | struct fib_info *fi; |
Thomas Graf | 4e902c5 | 2006-08-17 18:14:52 -0700 | [diff] [blame] | 419 | u8 tos = cfg->fc_tos; |
Al Viro | b6e80c6 | 2006-09-26 22:20:01 -0700 | [diff] [blame] | 420 | __be32 key; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 421 | int err; |
| 422 | |
Thomas Graf | 4e902c5 | 2006-08-17 18:14:52 -0700 | [diff] [blame] | 423 | if (cfg->fc_dst_len > 32) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 424 | return -EINVAL; |
Thomas Graf | 4e902c5 | 2006-08-17 18:14:52 -0700 | [diff] [blame] | 425 | |
| 426 | fz = table->fn_zones[cfg->fc_dst_len]; |
| 427 | if (!fz && !(fz = fn_new_zone(table, cfg->fc_dst_len))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 428 | return -ENOBUFS; |
| 429 | |
| 430 | key = 0; |
Thomas Graf | 4e902c5 | 2006-08-17 18:14:52 -0700 | [diff] [blame] | 431 | if (cfg->fc_dst) { |
| 432 | if (cfg->fc_dst & ~FZ_MASK(fz)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 433 | return -EINVAL; |
Thomas Graf | 4e902c5 | 2006-08-17 18:14:52 -0700 | [diff] [blame] | 434 | key = fz_key(cfg->fc_dst, fz); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 435 | } |
| 436 | |
Thomas Graf | 4e902c5 | 2006-08-17 18:14:52 -0700 | [diff] [blame] | 437 | fi = fib_create_info(cfg); |
| 438 | if (IS_ERR(fi)) |
| 439 | return PTR_ERR(fi); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 440 | |
| 441 | if (fz->fz_nent > (fz->fz_divisor<<1) && |
| 442 | fz->fz_divisor < FZ_MAX_DIVISOR && |
Thomas Graf | 4e902c5 | 2006-08-17 18:14:52 -0700 | [diff] [blame] | 443 | (cfg->fc_dst_len == 32 || |
| 444 | (1 << cfg->fc_dst_len) > fz->fz_divisor)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 445 | fn_rehash_zone(fz); |
| 446 | |
| 447 | f = fib_find_node(fz, key); |
| 448 | |
| 449 | if (!f) |
| 450 | fa = NULL; |
| 451 | else |
| 452 | fa = fib_find_alias(&f->fn_alias, tos, fi->fib_priority); |
| 453 | |
| 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. |
| 457 | * |
| 458 | * If fa is NULL, we will need to allocate a new one and |
| 459 | * insert to the head of f. |
| 460 | * |
| 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. |
| 463 | */ |
| 464 | |
| 465 | if (fa && fa->fa_tos == tos && |
| 466 | fa->fa_info->fib_priority == fi->fib_priority) { |
Julian Anastasov | c18865f | 2008-01-28 21:14:10 -0800 | [diff] [blame] | 467 | struct fib_alias *fa_first, *fa_match; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 468 | |
| 469 | err = -EEXIST; |
Thomas Graf | 4e902c5 | 2006-08-17 18:14:52 -0700 | [diff] [blame] | 470 | if (cfg->fc_nlflags & NLM_F_EXCL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 471 | goto out; |
| 472 | |
Julian Anastasov | c18865f | 2008-01-28 21:14:10 -0800 | [diff] [blame] | 473 | /* We have 2 goals: |
| 474 | * 1. Find exact match for type, scope, fib_info to avoid |
| 475 | * duplicate routes |
| 476 | * 2. Find next 'fa' (or head), NLM_F_APPEND inserts before it |
| 477 | */ |
| 478 | fa_match = NULL; |
| 479 | fa_first = fa; |
| 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) |
| 483 | break; |
| 484 | if (fa->fa_info->fib_priority != fi->fib_priority) |
| 485 | break; |
| 486 | if (fa->fa_type == cfg->fc_type && |
| 487 | fa->fa_scope == cfg->fc_scope && |
| 488 | fa->fa_info == fi) { |
| 489 | fa_match = fa; |
| 490 | break; |
| 491 | } |
| 492 | } |
| 493 | |
Thomas Graf | 4e902c5 | 2006-08-17 18:14:52 -0700 | [diff] [blame] | 494 | if (cfg->fc_nlflags & NLM_F_REPLACE) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 495 | u8 state; |
| 496 | |
Julian Anastasov | c18865f | 2008-01-28 21:14:10 -0800 | [diff] [blame] | 497 | fa = fa_first; |
| 498 | if (fa_match) { |
| 499 | if (fa == fa_match) |
| 500 | err = 0; |
Joonwoo Park | bd566e7 | 2008-01-18 03:44:48 -0800 | [diff] [blame] | 501 | goto out; |
Julian Anastasov | c18865f | 2008-01-28 21:14:10 -0800 | [diff] [blame] | 502 | } |
Eric Dumazet | 19f5725 | 2010-10-14 20:56:39 +0000 | [diff] [blame] | 503 | err = -ENOBUFS; |
| 504 | new_fa = fib_fast_alloc(f); |
| 505 | if (new_fa == NULL) |
| 506 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 507 | |
Eric Dumazet | 19f5725 | 2010-10-14 20:56:39 +0000 | [diff] [blame] | 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; |
| 514 | fib_hash_genid++; |
| 515 | list_replace_rcu(&fa->fa_list, &new_fa->fa_list); |
| 516 | |
| 517 | fn_free_alias(fa, f); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 518 | if (state & FA_S_ACCESSED) |
Denis V. Lunev | 76e6ebf | 2008-07-05 19:00:44 -0700 | [diff] [blame] | 519 | rt_cache_flush(cfg->fc_nlinfo.nl_net, -1); |
Eric Dumazet | 19f5725 | 2010-10-14 20:56:39 +0000 | [diff] [blame] | 520 | rtmsg_fib(RTM_NEWROUTE, key, new_fa, cfg->fc_dst_len, |
| 521 | tb->tb_id, &cfg->fc_nlinfo, NLM_F_REPLACE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 522 | return 0; |
| 523 | } |
| 524 | |
| 525 | /* Error if we find a perfect match which |
| 526 | * uses the same scope, type, and nexthop |
| 527 | * information. |
| 528 | */ |
Julian Anastasov | c18865f | 2008-01-28 21:14:10 -0800 | [diff] [blame] | 529 | if (fa_match) |
| 530 | goto out; |
| 531 | |
Thomas Graf | 4e902c5 | 2006-08-17 18:14:52 -0700 | [diff] [blame] | 532 | if (!(cfg->fc_nlflags & NLM_F_APPEND)) |
Julian Anastasov | c18865f | 2008-01-28 21:14:10 -0800 | [diff] [blame] | 533 | fa = fa_first; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 534 | } |
| 535 | |
| 536 | err = -ENOENT; |
Thomas Graf | 4e902c5 | 2006-08-17 18:14:52 -0700 | [diff] [blame] | 537 | if (!(cfg->fc_nlflags & NLM_F_CREATE)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 538 | goto out; |
| 539 | |
| 540 | err = -ENOBUFS; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 541 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 542 | if (!f) { |
Eric Dumazet | a6501e0 | 2008-01-18 03:33:26 -0800 | [diff] [blame] | 543 | new_f = kmem_cache_zalloc(fn_hash_kmem, GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 544 | if (new_f == NULL) |
Eric Dumazet | a6501e0 | 2008-01-18 03:33:26 -0800 | [diff] [blame] | 545 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 546 | |
| 547 | INIT_HLIST_NODE(&new_f->fn_hash); |
| 548 | INIT_LIST_HEAD(&new_f->fn_alias); |
| 549 | new_f->fn_key = key; |
| 550 | f = new_f; |
| 551 | } |
| 552 | |
Eric Dumazet | 19f5725 | 2010-10-14 20:56:39 +0000 | [diff] [blame] | 553 | new_fa = fib_fast_alloc(f); |
| 554 | if (new_fa == NULL) |
| 555 | goto out; |
| 556 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 557 | new_fa->fa_info = fi; |
| 558 | new_fa->fa_tos = tos; |
Thomas Graf | 4e902c5 | 2006-08-17 18:14:52 -0700 | [diff] [blame] | 559 | new_fa->fa_type = cfg->fc_type; |
| 560 | new_fa->fa_scope = cfg->fc_scope; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 561 | new_fa->fa_state = 0; |
| 562 | |
| 563 | /* |
| 564 | * Insert new entry to the list. |
| 565 | */ |
| 566 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 567 | if (new_f) |
| 568 | fib_insert_node(fz, new_f); |
Eric Dumazet | 19f5725 | 2010-10-14 20:56:39 +0000 | [diff] [blame] | 569 | list_add_tail_rcu(&new_fa->fa_list, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 570 | (fa ? &fa->fa_list : &f->fn_alias)); |
| 571 | fib_hash_genid++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 572 | |
| 573 | if (new_f) |
| 574 | fz->fz_nent++; |
Denis V. Lunev | 76e6ebf | 2008-07-05 19:00:44 -0700 | [diff] [blame] | 575 | rt_cache_flush(cfg->fc_nlinfo.nl_net, -1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 576 | |
Thomas Graf | 4e902c5 | 2006-08-17 18:14:52 -0700 | [diff] [blame] | 577 | rtmsg_fib(RTM_NEWROUTE, key, new_fa, cfg->fc_dst_len, tb->tb_id, |
Milan Kocian | b8f5583 | 2007-05-23 14:55:06 -0700 | [diff] [blame] | 578 | &cfg->fc_nlinfo, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 579 | return 0; |
| 580 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 581 | out: |
Adrian Bunk | 94cb150 | 2008-02-19 16:28:54 -0800 | [diff] [blame] | 582 | if (new_f) |
| 583 | kmem_cache_free(fn_hash_kmem, new_f); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 584 | fib_release_info(fi); |
| 585 | return err; |
| 586 | } |
| 587 | |
Stephen Hemminger | 16c6cf8 | 2009-09-20 10:35:36 +0000 | [diff] [blame] | 588 | int fib_table_delete(struct fib_table *tb, struct fib_config *cfg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 589 | { |
Jianjun Kong | 6ed2533 | 2008-11-03 00:25:16 -0800 | [diff] [blame] | 590 | struct fn_hash *table = (struct fn_hash *)tb->tb_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 591 | struct fib_node *f; |
| 592 | struct fib_alias *fa, *fa_to_delete; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 593 | struct fn_zone *fz; |
Al Viro | b6e80c6 | 2006-09-26 22:20:01 -0700 | [diff] [blame] | 594 | __be32 key; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 595 | |
Thomas Graf | 4e902c5 | 2006-08-17 18:14:52 -0700 | [diff] [blame] | 596 | if (cfg->fc_dst_len > 32) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 597 | return -EINVAL; |
Thomas Graf | 4e902c5 | 2006-08-17 18:14:52 -0700 | [diff] [blame] | 598 | |
| 599 | if ((fz = table->fn_zones[cfg->fc_dst_len]) == NULL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 600 | return -ESRCH; |
| 601 | |
| 602 | key = 0; |
Thomas Graf | 4e902c5 | 2006-08-17 18:14:52 -0700 | [diff] [blame] | 603 | if (cfg->fc_dst) { |
| 604 | if (cfg->fc_dst & ~FZ_MASK(fz)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 605 | return -EINVAL; |
Thomas Graf | 4e902c5 | 2006-08-17 18:14:52 -0700 | [diff] [blame] | 606 | key = fz_key(cfg->fc_dst, fz); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 607 | } |
| 608 | |
| 609 | f = fib_find_node(fz, key); |
| 610 | |
| 611 | if (!f) |
| 612 | fa = NULL; |
| 613 | else |
Thomas Graf | 4e902c5 | 2006-08-17 18:14:52 -0700 | [diff] [blame] | 614 | fa = fib_find_alias(&f->fn_alias, cfg->fc_tos, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 615 | if (!fa) |
| 616 | return -ESRCH; |
| 617 | |
| 618 | fa_to_delete = NULL; |
| 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; |
| 622 | |
Thomas Graf | 4e902c5 | 2006-08-17 18:14:52 -0700 | [diff] [blame] | 623 | if (fa->fa_tos != cfg->fc_tos) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 624 | break; |
| 625 | |
Thomas Graf | 4e902c5 | 2006-08-17 18:14:52 -0700 | [diff] [blame] | 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) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 633 | fa_to_delete = fa; |
| 634 | break; |
| 635 | } |
| 636 | } |
| 637 | |
| 638 | if (fa_to_delete) { |
| 639 | int kill_fn; |
| 640 | |
| 641 | fa = fa_to_delete; |
Thomas Graf | 4e902c5 | 2006-08-17 18:14:52 -0700 | [diff] [blame] | 642 | rtmsg_fib(RTM_DELROUTE, key, fa, cfg->fc_dst_len, |
Milan Kocian | b8f5583 | 2007-05-23 14:55:06 -0700 | [diff] [blame] | 643 | tb->tb_id, &cfg->fc_nlinfo, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 644 | |
| 645 | kill_fn = 0; |
Eric Dumazet | 19f5725 | 2010-10-14 20:56:39 +0000 | [diff] [blame] | 646 | list_del_rcu(&fa->fa_list); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 647 | if (list_empty(&f->fn_alias)) { |
Eric Dumazet | 19f5725 | 2010-10-14 20:56:39 +0000 | [diff] [blame] | 648 | hlist_del_rcu(&f->fn_hash); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 649 | kill_fn = 1; |
| 650 | } |
| 651 | fib_hash_genid++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 652 | |
| 653 | if (fa->fa_state & FA_S_ACCESSED) |
Denis V. Lunev | 76e6ebf | 2008-07-05 19:00:44 -0700 | [diff] [blame] | 654 | rt_cache_flush(cfg->fc_nlinfo.nl_net, -1); |
Eric Dumazet | a6501e0 | 2008-01-18 03:33:26 -0800 | [diff] [blame] | 655 | fn_free_alias(fa, f); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 656 | if (kill_fn) { |
| 657 | fn_free_node(f); |
| 658 | fz->fz_nent--; |
| 659 | } |
| 660 | |
| 661 | return 0; |
| 662 | } |
| 663 | return -ESRCH; |
| 664 | } |
| 665 | |
| 666 | static int fn_flush_list(struct fn_zone *fz, int idx) |
| 667 | { |
Eric Dumazet | ded85aa | 2010-10-26 03:24:16 +0000 | [diff] [blame] | 668 | struct hlist_head *head = rtnl_dereference(fz->fz_hash) + idx; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 669 | struct hlist_node *node, *n; |
| 670 | struct fib_node *f; |
| 671 | int found = 0; |
| 672 | |
| 673 | hlist_for_each_entry_safe(f, node, n, head, fn_hash) { |
| 674 | struct fib_alias *fa, *fa_node; |
| 675 | int kill_f; |
| 676 | |
| 677 | kill_f = 0; |
| 678 | list_for_each_entry_safe(fa, fa_node, &f->fn_alias, fa_list) { |
| 679 | struct fib_info *fi = fa->fa_info; |
| 680 | |
| 681 | if (fi && (fi->fib_flags&RTNH_F_DEAD)) { |
Eric Dumazet | 19f5725 | 2010-10-14 20:56:39 +0000 | [diff] [blame] | 682 | list_del_rcu(&fa->fa_list); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 683 | if (list_empty(&f->fn_alias)) { |
Eric Dumazet | 19f5725 | 2010-10-14 20:56:39 +0000 | [diff] [blame] | 684 | hlist_del_rcu(&f->fn_hash); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 685 | kill_f = 1; |
| 686 | } |
| 687 | fib_hash_genid++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 688 | |
Eric Dumazet | a6501e0 | 2008-01-18 03:33:26 -0800 | [diff] [blame] | 689 | fn_free_alias(fa, f); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 690 | found++; |
| 691 | } |
| 692 | } |
| 693 | if (kill_f) { |
| 694 | fn_free_node(f); |
| 695 | fz->fz_nent--; |
| 696 | } |
| 697 | } |
| 698 | return found; |
| 699 | } |
| 700 | |
Eric Dumazet | 117a8cd | 2010-10-14 20:53:34 +0000 | [diff] [blame] | 701 | /* caller must hold RTNL. */ |
Stephen Hemminger | 16c6cf8 | 2009-09-20 10:35:36 +0000 | [diff] [blame] | 702 | int fib_table_flush(struct fib_table *tb) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 703 | { |
| 704 | struct fn_hash *table = (struct fn_hash *) tb->tb_data; |
| 705 | struct fn_zone *fz; |
| 706 | int found = 0; |
| 707 | |
Eric Dumazet | 117a8cd | 2010-10-14 20:53:34 +0000 | [diff] [blame] | 708 | for (fz = rtnl_dereference(table->fn_zone_list); |
| 709 | fz != NULL; |
| 710 | fz = rtnl_dereference(fz->fz_next)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 711 | int i; |
| 712 | |
| 713 | for (i = fz->fz_divisor - 1; i >= 0; i--) |
| 714 | found += fn_flush_list(fz, i); |
| 715 | } |
| 716 | return found; |
| 717 | } |
| 718 | |
Pavel Emelyanov | 4aa2c46 | 2010-10-28 02:00:43 +0000 | [diff] [blame] | 719 | void fib_free_table(struct fib_table *tb) |
| 720 | { |
| 721 | struct fn_hash *table = (struct fn_hash *) tb->tb_data; |
| 722 | struct fn_zone *fz, *next; |
| 723 | |
| 724 | next = table->fn_zone_list; |
| 725 | while (next != NULL) { |
| 726 | fz = next; |
| 727 | next = fz->fz_next; |
| 728 | |
| 729 | if (fz->fz_hash != fz->fz_embedded_hash) |
| 730 | fz_hash_free(fz->fz_hash, fz->fz_divisor); |
| 731 | |
| 732 | kfree(fz); |
| 733 | } |
| 734 | |
| 735 | kfree(tb); |
| 736 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 737 | |
| 738 | static inline int |
| 739 | fn_hash_dump_bucket(struct sk_buff *skb, struct netlink_callback *cb, |
| 740 | struct fib_table *tb, |
| 741 | struct fn_zone *fz, |
| 742 | struct hlist_head *head) |
| 743 | { |
| 744 | struct hlist_node *node; |
| 745 | struct fib_node *f; |
| 746 | int i, s_i; |
| 747 | |
Patrick McHardy | 1af5a8c | 2006-08-10 23:10:46 -0700 | [diff] [blame] | 748 | s_i = cb->args[4]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 749 | i = 0; |
Eric Dumazet | 19f5725 | 2010-10-14 20:56:39 +0000 | [diff] [blame] | 750 | hlist_for_each_entry_rcu(f, node, head, fn_hash) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 751 | struct fib_alias *fa; |
| 752 | |
Eric Dumazet | 19f5725 | 2010-10-14 20:56:39 +0000 | [diff] [blame] | 753 | list_for_each_entry_rcu(fa, &f->fn_alias, fa_list) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 754 | if (i < s_i) |
| 755 | goto next; |
| 756 | |
| 757 | if (fib_dump_info(skb, NETLINK_CB(cb->skb).pid, |
| 758 | cb->nlh->nlmsg_seq, |
| 759 | RTM_NEWROUTE, |
| 760 | tb->tb_id, |
| 761 | fa->fa_type, |
| 762 | fa->fa_scope, |
Thomas Graf | be403ea | 2006-08-17 18:15:17 -0700 | [diff] [blame] | 763 | f->fn_key, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 764 | fz->fz_order, |
| 765 | fa->fa_tos, |
Jamal Hadi Salim | b6544c0 | 2005-06-18 22:54:12 -0700 | [diff] [blame] | 766 | fa->fa_info, |
| 767 | NLM_F_MULTI) < 0) { |
Patrick McHardy | 1af5a8c | 2006-08-10 23:10:46 -0700 | [diff] [blame] | 768 | cb->args[4] = i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 769 | return -1; |
| 770 | } |
Eric Dumazet | 19f5725 | 2010-10-14 20:56:39 +0000 | [diff] [blame] | 771 | next: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 772 | i++; |
| 773 | } |
| 774 | } |
Patrick McHardy | 1af5a8c | 2006-08-10 23:10:46 -0700 | [diff] [blame] | 775 | cb->args[4] = i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 776 | return skb->len; |
| 777 | } |
| 778 | |
| 779 | static inline int |
| 780 | fn_hash_dump_zone(struct sk_buff *skb, struct netlink_callback *cb, |
| 781 | struct fib_table *tb, |
| 782 | struct fn_zone *fz) |
| 783 | { |
| 784 | int h, s_h; |
Eric Dumazet | ded85aa | 2010-10-26 03:24:16 +0000 | [diff] [blame] | 785 | struct hlist_head *head = rcu_dereference(fz->fz_hash); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 786 | |
Eric Dumazet | ded85aa | 2010-10-26 03:24:16 +0000 | [diff] [blame] | 787 | if (head == NULL) |
Eric Dumazet | 8d3f099 | 2008-01-18 04:30:21 -0800 | [diff] [blame] | 788 | return skb->len; |
Patrick McHardy | 1af5a8c | 2006-08-10 23:10:46 -0700 | [diff] [blame] | 789 | s_h = cb->args[3]; |
Eric Dumazet | 8d3f099 | 2008-01-18 04:30:21 -0800 | [diff] [blame] | 790 | for (h = s_h; h < fz->fz_divisor; h++) { |
Eric Dumazet | ded85aa | 2010-10-26 03:24:16 +0000 | [diff] [blame] | 791 | if (hlist_empty(head + h)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 792 | continue; |
Eric Dumazet | ded85aa | 2010-10-26 03:24:16 +0000 | [diff] [blame] | 793 | if (fn_hash_dump_bucket(skb, cb, tb, fz, head + h) < 0) { |
Patrick McHardy | 1af5a8c | 2006-08-10 23:10:46 -0700 | [diff] [blame] | 794 | cb->args[3] = h; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 795 | return -1; |
| 796 | } |
Eric Dumazet | 8d3f099 | 2008-01-18 04:30:21 -0800 | [diff] [blame] | 797 | memset(&cb->args[4], 0, |
| 798 | sizeof(cb->args) - 4*sizeof(cb->args[0])); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 799 | } |
Patrick McHardy | 1af5a8c | 2006-08-10 23:10:46 -0700 | [diff] [blame] | 800 | cb->args[3] = h; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 801 | return skb->len; |
| 802 | } |
| 803 | |
Stephen Hemminger | 16c6cf8 | 2009-09-20 10:35:36 +0000 | [diff] [blame] | 804 | int fib_table_dump(struct fib_table *tb, struct sk_buff *skb, |
| 805 | struct netlink_callback *cb) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 806 | { |
Eric Dumazet | 117a8cd | 2010-10-14 20:53:34 +0000 | [diff] [blame] | 807 | int m = 0, s_m; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 808 | struct fn_zone *fz; |
Jianjun Kong | 6ed2533 | 2008-11-03 00:25:16 -0800 | [diff] [blame] | 809 | struct fn_hash *table = (struct fn_hash *)tb->tb_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 810 | |
Patrick McHardy | 1af5a8c | 2006-08-10 23:10:46 -0700 | [diff] [blame] | 811 | s_m = cb->args[2]; |
Eric Dumazet | 117a8cd | 2010-10-14 20:53:34 +0000 | [diff] [blame] | 812 | rcu_read_lock(); |
Eric Dumazet | 117a8cd | 2010-10-14 20:53:34 +0000 | [diff] [blame] | 813 | for (fz = rcu_dereference(table->fn_zone_list); |
| 814 | fz != NULL; |
| 815 | fz = rcu_dereference(fz->fz_next), m++) { |
| 816 | if (m < s_m) |
| 817 | continue; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 818 | if (fn_hash_dump_zone(skb, cb, tb, fz) < 0) { |
Patrick McHardy | 1af5a8c | 2006-08-10 23:10:46 -0700 | [diff] [blame] | 819 | cb->args[2] = m; |
Eric Dumazet | 117a8cd | 2010-10-14 20:53:34 +0000 | [diff] [blame] | 820 | rcu_read_unlock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 821 | return -1; |
| 822 | } |
Eric Dumazet | 8d3f099 | 2008-01-18 04:30:21 -0800 | [diff] [blame] | 823 | memset(&cb->args[3], 0, |
| 824 | sizeof(cb->args) - 3*sizeof(cb->args[0])); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 825 | } |
Eric Dumazet | 117a8cd | 2010-10-14 20:53:34 +0000 | [diff] [blame] | 826 | rcu_read_unlock(); |
Patrick McHardy | 1af5a8c | 2006-08-10 23:10:46 -0700 | [diff] [blame] | 827 | cb->args[2] = m; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 828 | return skb->len; |
| 829 | } |
| 830 | |
Stephen Hemminger | 7f9b805 | 2008-01-14 23:14:20 -0800 | [diff] [blame] | 831 | void __init fib_hash_init(void) |
| 832 | { |
| 833 | fn_hash_kmem = kmem_cache_create("ip_fib_hash", sizeof(struct fib_node), |
Eric Dumazet | a6501e0 | 2008-01-18 03:33:26 -0800 | [diff] [blame] | 834 | 0, SLAB_PANIC, NULL); |
Stephen Hemminger | 7f9b805 | 2008-01-14 23:14:20 -0800 | [diff] [blame] | 835 | |
| 836 | fn_alias_kmem = kmem_cache_create("ip_fib_alias", sizeof(struct fib_alias), |
Eric Dumazet | a6501e0 | 2008-01-18 03:33:26 -0800 | [diff] [blame] | 837 | 0, SLAB_PANIC, NULL); |
Stephen Hemminger | 7f9b805 | 2008-01-14 23:14:20 -0800 | [diff] [blame] | 838 | |
| 839 | } |
| 840 | |
| 841 | struct fib_table *fib_hash_table(u32 id) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 842 | { |
| 843 | struct fib_table *tb; |
| 844 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 845 | tb = kmalloc(sizeof(struct fib_table) + sizeof(struct fn_hash), |
| 846 | GFP_KERNEL); |
| 847 | if (tb == NULL) |
| 848 | return NULL; |
| 849 | |
| 850 | tb->tb_id = id; |
Denis V. Lunev | 971b893 | 2007-12-08 00:32:23 -0800 | [diff] [blame] | 851 | tb->tb_default = -1; |
Stephen Hemminger | 16c6cf8 | 2009-09-20 10:35:36 +0000 | [diff] [blame] | 852 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 853 | memset(tb->tb_data, 0, sizeof(struct fn_hash)); |
| 854 | return tb; |
| 855 | } |
| 856 | |
| 857 | /* ------------------------------------------------------------------------ */ |
| 858 | #ifdef CONFIG_PROC_FS |
| 859 | |
| 860 | struct fib_iter_state { |
Denis V. Lunev | 6e04d01 | 2008-01-10 03:26:50 -0800 | [diff] [blame] | 861 | struct seq_net_private p; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 862 | struct fn_zone *zone; |
| 863 | int bucket; |
| 864 | struct hlist_head *hash_head; |
| 865 | struct fib_node *fn; |
| 866 | struct fib_alias *fa; |
| 867 | loff_t pos; |
| 868 | unsigned int genid; |
| 869 | int valid; |
| 870 | }; |
| 871 | |
| 872 | static struct fib_alias *fib_get_first(struct seq_file *seq) |
| 873 | { |
| 874 | struct fib_iter_state *iter = seq->private; |
Denis V. Lunev | 6e04d01 | 2008-01-10 03:26:50 -0800 | [diff] [blame] | 875 | struct fib_table *main_table; |
| 876 | struct fn_hash *table; |
| 877 | |
YOSHIFUJI Hideaki | 1218854 | 2008-03-26 02:36:06 +0900 | [diff] [blame] | 878 | main_table = fib_get_table(seq_file_net(seq), RT_TABLE_MAIN); |
Denis V. Lunev | 6e04d01 | 2008-01-10 03:26:50 -0800 | [diff] [blame] | 879 | table = (struct fn_hash *)main_table->tb_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 880 | |
| 881 | iter->bucket = 0; |
| 882 | iter->hash_head = NULL; |
| 883 | iter->fn = NULL; |
| 884 | iter->fa = NULL; |
| 885 | iter->pos = 0; |
| 886 | iter->genid = fib_hash_genid; |
| 887 | iter->valid = 1; |
| 888 | |
Eric Dumazet | 117a8cd | 2010-10-14 20:53:34 +0000 | [diff] [blame] | 889 | for (iter->zone = rcu_dereference(table->fn_zone_list); |
| 890 | iter->zone != NULL; |
| 891 | iter->zone = rcu_dereference(iter->zone->fz_next)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 892 | int maxslot; |
| 893 | |
| 894 | if (!iter->zone->fz_nent) |
| 895 | continue; |
| 896 | |
Eric Dumazet | ded85aa | 2010-10-26 03:24:16 +0000 | [diff] [blame] | 897 | iter->hash_head = rcu_dereference(iter->zone->fz_hash); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 898 | maxslot = iter->zone->fz_divisor; |
| 899 | |
| 900 | for (iter->bucket = 0; iter->bucket < maxslot; |
| 901 | ++iter->bucket, ++iter->hash_head) { |
| 902 | struct hlist_node *node; |
| 903 | struct fib_node *fn; |
| 904 | |
Jianjun Kong | 6ed2533 | 2008-11-03 00:25:16 -0800 | [diff] [blame] | 905 | hlist_for_each_entry(fn, node, iter->hash_head, fn_hash) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 906 | struct fib_alias *fa; |
| 907 | |
Jianjun Kong | 6ed2533 | 2008-11-03 00:25:16 -0800 | [diff] [blame] | 908 | list_for_each_entry(fa, &fn->fn_alias, fa_list) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 909 | iter->fn = fn; |
| 910 | iter->fa = fa; |
| 911 | goto out; |
| 912 | } |
| 913 | } |
| 914 | } |
| 915 | } |
| 916 | out: |
| 917 | return iter->fa; |
| 918 | } |
| 919 | |
| 920 | static struct fib_alias *fib_get_next(struct seq_file *seq) |
| 921 | { |
| 922 | struct fib_iter_state *iter = seq->private; |
| 923 | struct fib_node *fn; |
| 924 | struct fib_alias *fa; |
| 925 | |
| 926 | /* Advance FA, if any. */ |
| 927 | fn = iter->fn; |
| 928 | fa = iter->fa; |
| 929 | if (fa) { |
| 930 | BUG_ON(!fn); |
| 931 | list_for_each_entry_continue(fa, &fn->fn_alias, fa_list) { |
| 932 | iter->fa = fa; |
| 933 | goto out; |
| 934 | } |
| 935 | } |
| 936 | |
| 937 | fa = iter->fa = NULL; |
| 938 | |
| 939 | /* Advance FN. */ |
| 940 | if (fn) { |
| 941 | struct hlist_node *node = &fn->fn_hash; |
| 942 | hlist_for_each_entry_continue(fn, node, fn_hash) { |
| 943 | iter->fn = fn; |
| 944 | |
| 945 | list_for_each_entry(fa, &fn->fn_alias, fa_list) { |
| 946 | iter->fa = fa; |
| 947 | goto out; |
| 948 | } |
| 949 | } |
| 950 | } |
| 951 | |
| 952 | fn = iter->fn = NULL; |
| 953 | |
| 954 | /* Advance hash chain. */ |
| 955 | if (!iter->zone) |
| 956 | goto out; |
| 957 | |
| 958 | for (;;) { |
| 959 | struct hlist_node *node; |
| 960 | int maxslot; |
| 961 | |
| 962 | maxslot = iter->zone->fz_divisor; |
| 963 | |
| 964 | while (++iter->bucket < maxslot) { |
| 965 | iter->hash_head++; |
| 966 | |
| 967 | hlist_for_each_entry(fn, node, iter->hash_head, fn_hash) { |
| 968 | list_for_each_entry(fa, &fn->fn_alias, fa_list) { |
| 969 | iter->fn = fn; |
| 970 | iter->fa = fa; |
| 971 | goto out; |
| 972 | } |
| 973 | } |
| 974 | } |
| 975 | |
Eric Dumazet | 117a8cd | 2010-10-14 20:53:34 +0000 | [diff] [blame] | 976 | iter->zone = rcu_dereference(iter->zone->fz_next); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 977 | |
| 978 | if (!iter->zone) |
| 979 | goto out; |
YOSHIFUJI Hideaki | e905a9e | 2007-02-09 23:24:47 +0900 | [diff] [blame] | 980 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 981 | iter->bucket = 0; |
Eric Dumazet | ded85aa | 2010-10-26 03:24:16 +0000 | [diff] [blame] | 982 | iter->hash_head = rcu_dereference(iter->zone->fz_hash); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 983 | |
| 984 | hlist_for_each_entry(fn, node, iter->hash_head, fn_hash) { |
| 985 | list_for_each_entry(fa, &fn->fn_alias, fa_list) { |
| 986 | iter->fn = fn; |
| 987 | iter->fa = fa; |
| 988 | goto out; |
| 989 | } |
| 990 | } |
| 991 | } |
| 992 | out: |
| 993 | iter->pos++; |
| 994 | return fa; |
| 995 | } |
| 996 | |
| 997 | static struct fib_alias *fib_get_idx(struct seq_file *seq, loff_t pos) |
| 998 | { |
| 999 | struct fib_iter_state *iter = seq->private; |
| 1000 | struct fib_alias *fa; |
YOSHIFUJI Hideaki | e905a9e | 2007-02-09 23:24:47 +0900 | [diff] [blame] | 1001 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1002 | if (iter->valid && pos >= iter->pos && iter->genid == fib_hash_genid) { |
| 1003 | fa = iter->fa; |
| 1004 | pos -= iter->pos; |
| 1005 | } else |
| 1006 | fa = fib_get_first(seq); |
| 1007 | |
| 1008 | if (fa) |
| 1009 | while (pos && (fa = fib_get_next(seq))) |
| 1010 | --pos; |
| 1011 | return pos ? NULL : fa; |
| 1012 | } |
| 1013 | |
| 1014 | static void *fib_seq_start(struct seq_file *seq, loff_t *pos) |
Eric Dumazet | 117a8cd | 2010-10-14 20:53:34 +0000 | [diff] [blame] | 1015 | __acquires(RCU) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1016 | { |
| 1017 | void *v = NULL; |
| 1018 | |
Eric Dumazet | 117a8cd | 2010-10-14 20:53:34 +0000 | [diff] [blame] | 1019 | rcu_read_lock(); |
YOSHIFUJI Hideaki | 1218854 | 2008-03-26 02:36:06 +0900 | [diff] [blame] | 1020 | if (fib_get_table(seq_file_net(seq), RT_TABLE_MAIN)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1021 | v = *pos ? fib_get_idx(seq, *pos - 1) : SEQ_START_TOKEN; |
| 1022 | return v; |
| 1023 | } |
| 1024 | |
| 1025 | static void *fib_seq_next(struct seq_file *seq, void *v, loff_t *pos) |
| 1026 | { |
| 1027 | ++*pos; |
| 1028 | return v == SEQ_START_TOKEN ? fib_get_first(seq) : fib_get_next(seq); |
| 1029 | } |
| 1030 | |
| 1031 | static void fib_seq_stop(struct seq_file *seq, void *v) |
Eric Dumazet | 117a8cd | 2010-10-14 20:53:34 +0000 | [diff] [blame] | 1032 | __releases(RCU) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1033 | { |
Eric Dumazet | 117a8cd | 2010-10-14 20:53:34 +0000 | [diff] [blame] | 1034 | rcu_read_unlock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1035 | } |
| 1036 | |
Al Viro | b6e80c6 | 2006-09-26 22:20:01 -0700 | [diff] [blame] | 1037 | static unsigned fib_flag_trans(int type, __be32 mask, struct fib_info *fi) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1038 | { |
Arjan van de Ven | 9b5b5cf | 2005-11-29 16:21:38 -0800 | [diff] [blame] | 1039 | static const unsigned type2flags[RTN_MAX + 1] = { |
Eric Dumazet | 19f5725 | 2010-10-14 20:56:39 +0000 | [diff] [blame] | 1040 | [7] = RTF_REJECT, |
| 1041 | [8] = RTF_REJECT, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1042 | }; |
| 1043 | unsigned flags = type2flags[type]; |
| 1044 | |
| 1045 | if (fi && fi->fib_nh->nh_gw) |
| 1046 | flags |= RTF_GATEWAY; |
Al Viro | b6e80c6 | 2006-09-26 22:20:01 -0700 | [diff] [blame] | 1047 | if (mask == htonl(0xFFFFFFFF)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1048 | flags |= RTF_HOST; |
| 1049 | flags |= RTF_UP; |
| 1050 | return flags; |
| 1051 | } |
| 1052 | |
YOSHIFUJI Hideaki | e905a9e | 2007-02-09 23:24:47 +0900 | [diff] [blame] | 1053 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1054 | * This outputs /proc/net/route. |
| 1055 | * |
| 1056 | * It always works in backward compatibility mode. |
| 1057 | * The format of the file is not supposed to be changed. |
| 1058 | */ |
| 1059 | static int fib_seq_show(struct seq_file *seq, void *v) |
| 1060 | { |
| 1061 | struct fib_iter_state *iter; |
Pavel Emelyanov | 5e659e4 | 2008-04-24 01:02:16 -0700 | [diff] [blame] | 1062 | int len; |
Al Viro | b6e80c6 | 2006-09-26 22:20:01 -0700 | [diff] [blame] | 1063 | __be32 prefix, mask; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1064 | unsigned flags; |
| 1065 | struct fib_node *f; |
| 1066 | struct fib_alias *fa; |
| 1067 | struct fib_info *fi; |
| 1068 | |
| 1069 | if (v == SEQ_START_TOKEN) { |
| 1070 | seq_printf(seq, "%-127s\n", "Iface\tDestination\tGateway " |
| 1071 | "\tFlags\tRefCnt\tUse\tMetric\tMask\t\tMTU" |
| 1072 | "\tWindow\tIRTT"); |
| 1073 | goto out; |
| 1074 | } |
| 1075 | |
| 1076 | iter = seq->private; |
| 1077 | f = iter->fn; |
| 1078 | fa = iter->fa; |
| 1079 | fi = fa->fa_info; |
| 1080 | prefix = f->fn_key; |
| 1081 | mask = FZ_MASK(iter->zone); |
| 1082 | flags = fib_flag_trans(fa->fa_type, mask, fi); |
| 1083 | if (fi) |
Pavel Emelyanov | 5e659e4 | 2008-04-24 01:02:16 -0700 | [diff] [blame] | 1084 | seq_printf(seq, |
| 1085 | "%s\t%08X\t%08X\t%04X\t%d\t%u\t%d\t%08X\t%d\t%u\t%u%n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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), |
| 1089 | fi->fib_window, |
Pavel Emelyanov | 5e659e4 | 2008-04-24 01:02:16 -0700 | [diff] [blame] | 1090 | fi->fib_rtt >> 3, &len); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1091 | else |
Pavel Emelyanov | 5e659e4 | 2008-04-24 01:02:16 -0700 | [diff] [blame] | 1092 | seq_printf(seq, |
| 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); |
| 1095 | |
| 1096 | seq_printf(seq, "%*s\n", 127 - len, ""); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1097 | out: |
| 1098 | return 0; |
| 1099 | } |
| 1100 | |
Stephen Hemminger | f690808 | 2007-03-12 14:34:29 -0700 | [diff] [blame] | 1101 | static const struct seq_operations fib_seq_ops = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1102 | .start = fib_seq_start, |
| 1103 | .next = fib_seq_next, |
| 1104 | .stop = fib_seq_stop, |
| 1105 | .show = fib_seq_show, |
| 1106 | }; |
| 1107 | |
| 1108 | static int fib_seq_open(struct inode *inode, struct file *file) |
| 1109 | { |
Denis V. Lunev | 6e04d01 | 2008-01-10 03:26:50 -0800 | [diff] [blame] | 1110 | return seq_open_net(inode, file, &fib_seq_ops, |
| 1111 | sizeof(struct fib_iter_state)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1112 | } |
| 1113 | |
Arjan van de Ven | 9a32144 | 2007-02-12 00:55:35 -0800 | [diff] [blame] | 1114 | static const struct file_operations fib_seq_fops = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1115 | .owner = THIS_MODULE, |
| 1116 | .open = fib_seq_open, |
| 1117 | .read = seq_read, |
| 1118 | .llseek = seq_lseek, |
Denis V. Lunev | 6e04d01 | 2008-01-10 03:26:50 -0800 | [diff] [blame] | 1119 | .release = seq_release_net, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1120 | }; |
| 1121 | |
Denis V. Lunev | 61a0265 | 2008-01-10 03:21:09 -0800 | [diff] [blame] | 1122 | int __net_init fib_proc_init(struct net *net) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1123 | { |
Denis V. Lunev | 61a0265 | 2008-01-10 03:21:09 -0800 | [diff] [blame] | 1124 | if (!proc_net_fops_create(net, "route", S_IRUGO, &fib_seq_fops)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1125 | return -ENOMEM; |
| 1126 | return 0; |
| 1127 | } |
| 1128 | |
Denis V. Lunev | 61a0265 | 2008-01-10 03:21:09 -0800 | [diff] [blame] | 1129 | void __net_exit fib_proc_exit(struct net *net) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1130 | { |
Denis V. Lunev | 61a0265 | 2008-01-10 03:21:09 -0800 | [diff] [blame] | 1131 | proc_net_remove(net, "route"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1132 | } |
| 1133 | #endif /* CONFIG_PROC_FS */ |