blob: b232375a0b75f4f3108284c9bcb4b993b415ebdc [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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 Torvalds1da177e2005-04-16 15:20:36 -07008 * 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 Torvalds1da177e2005-04-16 15:20:36 -070016#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 Torvalds1da177e2005-04-16 15:20:36 -070021#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 Melo14c85022005-12-27 02:43:12 -020028#include <linux/inetdevice.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#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 Heo5a0e3ad2010-03-24 17:04:11 +090035#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036
Eric W. Biederman457c4cb2007-09-12 12:01:34 +020037#include <net/net_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#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 Lametere18b8902006-12-06 20:33:20 -080047static struct kmem_cache *fn_hash_kmem __read_mostly;
48static struct kmem_cache *fn_alias_kmem __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
50struct fib_node {
51 struct hlist_node fn_hash;
52 struct list_head fn_alias;
Al Virob6e80c62006-09-26 22:20:01 -070053 __be32 fn_key;
Eric Dumazeta6501e02008-01-18 03:33:26 -080054 struct fib_alias fn_embedded_alias;
Linus Torvalds1da177e2005-04-16 15:20:36 -070055};
56
Eric Dumazet9bef83e2010-10-14 20:53:04 +000057#define EMBEDDED_HASH_SIZE (L1_CACHE_BYTES / sizeof(struct hlist_head))
58
Linus Torvalds1da177e2005-04-16 15:20:36 -070059struct fn_zone {
Eric Dumazet117a8cd2010-10-14 20:53:34 +000060 struct fn_zone __rcu *fz_next; /* Next not empty zone */
Eric Dumazet19f57252010-10-14 20:56:39 +000061 struct hlist_head __rcu *fz_hash; /* Hash table pointer */
62 seqlock_t fz_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -070063 u32 fz_hashmask; /* (fz_divisor - 1) */
Linus Torvalds1da177e2005-04-16 15:20:36 -070064
Eric Dumazet9bef83e2010-10-14 20:53:04 +000065 u8 fz_order; /* Zone order (0..32) */
66 u8 fz_revorder; /* 32 - fz_order */
67 __be32 fz_mask; /* inet_make_mask(order) */
Linus Torvalds1da177e2005-04-16 15:20:36 -070068#define FZ_MASK(fz) ((fz)->fz_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -070069
Eric Dumazet9bef83e2010-10-14 20:53:04 +000070 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 Torvalds1da177e2005-04-16 15:20:36 -070075
76struct fn_hash {
Eric Dumazet117a8cd2010-10-14 20:53:34 +000077 struct fn_zone *fn_zones[33];
78 struct fn_zone __rcu *fn_zone_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -070079};
80
Al Virob6e80c62006-09-26 22:20:01 -070081static inline u32 fn_hash(__be32 key, struct fn_zone *fz)
Linus Torvalds1da177e2005-04-16 15:20:36 -070082{
Eric Dumazet9bef83e2010-10-14 20:53:04 +000083 u32 h = ntohl(key) >> fz->fz_revorder;
Linus Torvalds1da177e2005-04-16 15:20:36 -070084 h ^= (h>>20);
85 h ^= (h>>10);
86 h ^= (h>>5);
Eric Dumazet9bef83e2010-10-14 20:53:04 +000087 h &= fz->fz_hashmask;
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 return h;
89}
90
Al Virob6e80c62006-09-26 22:20:01 -070091static inline __be32 fz_key(__be32 dst, struct fn_zone *fz)
Linus Torvalds1da177e2005-04-16 15:20:36 -070092{
93 return dst & FZ_MASK(fz);
94}
95
Linus Torvalds1da177e2005-04-16 15:20:36 -070096static unsigned int fib_hash_genid;
97
98#define FZ_MAX_DIVISOR ((PAGE_SIZE<<MAX_ORDER) / sizeof(struct hlist_head))
99
100static struct hlist_head *fz_hash_alloc(int divisor)
101{
102 unsigned long size = divisor * sizeof(struct hlist_head);
103
Eric Dumazet19f57252010-10-14 20:56:39 +0000104 if (size <= PAGE_SIZE)
Joonwoo Park3015a342007-11-26 23:31:24 +0800105 return kzalloc(size, GFP_KERNEL);
Eric Dumazet19f57252010-10-14 20:56:39 +0000106
107 return (struct hlist_head *)
108 __get_free_pages(GFP_KERNEL | __GFP_ZERO, get_order(size));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109}
110
111/* The fib hash lock must be held when this is called. */
112static 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 Dumazetded85aa2010-10-26 03:24:16 +0000123 struct hlist_head *new_head;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124
Eric Dumazet19f57252010-10-14 20:56:39 +0000125 hlist_del_rcu(&f->fn_hash);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126
Eric Dumazetded85aa2010-10-26 03:24:16 +0000127 new_head = rcu_dereference_protected(fz->fz_hash, 1) +
128 fn_hash(f->fn_key, fz);
Eric Dumazet19f57252010-10-14 20:56:39 +0000129 hlist_add_head_rcu(&f->fn_hash, new_head);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 }
131 }
132}
133
134static 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
144static 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 Hideakie905a9e2007-02-09 23:24:47 +0900149
Eric Dumazet9bef83e2010-10-14 20:53:04 +0000150 new_divisor = old_divisor = fz->fz_divisor;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151
152 switch (old_divisor) {
Eric Dumazet9bef83e2010-10-14 20:53:04 +0000153 case EMBEDDED_HASH_SIZE:
154 new_divisor *= EMBEDDED_HASH_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 break;
Eric Dumazet9bef83e2010-10-14 20:53:04 +0000156 case EMBEDDED_HASH_SIZE*EMBEDDED_HASH_SIZE:
157 new_divisor *= (EMBEDDED_HASH_SIZE/2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 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 Hemmingera6db9012008-01-12 20:58:35 -0800171 printk(KERN_DEBUG "fn_rehash_zone: hash for zone %d grows from %d\n",
172 fz->fz_order, old_divisor);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173#endif
174
175 ht = fz_hash_alloc(new_divisor);
176
177 if (ht) {
Eric Dumazet19f57252010-10-14 20:56:39 +0000178 struct fn_zone nfz;
179
180 memcpy(&nfz, fz, sizeof(nfz));
181
182 write_seqlock_bh(&fz->fz_lock);
Eric Dumazetded85aa2010-10-26 03:24:16 +0000183 old_ht = rcu_dereference_protected(fz->fz_hash, 1);
184 RCU_INIT_POINTER(nfz.fz_hash, ht);
Eric Dumazet19f57252010-10-14 20:56:39 +0000185 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 Torvalds1da177e2005-04-16 15:20:36 -0700190 fz->fz_hashmask = new_hashmask;
191 fz->fz_divisor = new_divisor;
Eric Dumazet19f57252010-10-14 20:56:39 +0000192 write_sequnlock_bh(&fz->fz_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193
Eric Dumazet19f57252010-10-14 20:56:39 +0000194 if (old_ht != fz->fz_embedded_hash) {
195 synchronize_rcu();
Eric Dumazet9bef83e2010-10-14 20:53:04 +0000196 fz_hash_free(old_ht, old_divisor);
Eric Dumazet19f57252010-10-14 20:56:39 +0000197 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 }
199}
200
Eric Dumazet19f57252010-10-14 20:56:39 +0000201static void fn_free_node_rcu(struct rcu_head *head)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202{
Eric Dumazet19f57252010-10-14 20:56:39 +0000203 struct fib_node *f = container_of(head, struct fib_node, fn_embedded_alias.rcu);
204
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 kmem_cache_free(fn_hash_kmem, f);
206}
207
Eric Dumazet19f57252010-10-14 20:56:39 +0000208static inline void fn_free_node(struct fib_node *f)
209{
210 call_rcu(&f->fn_embedded_alias.rcu, fn_free_node_rcu);
211}
212
213static 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 Dumazeta6501e02008-01-18 03:33:26 -0800220static inline void fn_free_alias(struct fib_alias *fa, struct fib_node *f)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221{
222 fib_release_info(fa->fa_info);
Eric Dumazeta6501e02008-01-18 03:33:26 -0800223 if (fa == &f->fn_embedded_alias)
224 fa->fa_info = NULL;
225 else
Eric Dumazet19f57252010-10-14 20:56:39 +0000226 call_rcu(&fa->rcu, fn_free_alias_rcu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227}
228
229static struct fn_zone *
230fn_new_zone(struct fn_hash *table, int z)
231{
232 int i;
Panagiotis Issaris0da974f2006-07-21 14:51:30 -0700233 struct fn_zone *fz = kzalloc(sizeof(struct fn_zone), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 if (!fz)
235 return NULL;
236
Eric Dumazet19f57252010-10-14 20:56:39 +0000237 seqlock_init(&fz->fz_lock);
Eric Dumazet9bef83e2010-10-14 20:53:04 +0000238 fz->fz_divisor = z ? EMBEDDED_HASH_SIZE : 1;
239 fz->fz_hashmask = fz->fz_divisor - 1;
Eric Dumazetded85aa2010-10-26 03:24:16 +0000240 RCU_INIT_POINTER(fz->fz_hash, fz->fz_embedded_hash);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 fz->fz_order = z;
Eric Dumazet9bef83e2010-10-14 20:53:04 +0000242 fz->fz_revorder = 32 - z;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 fz->fz_mask = inet_make_mask(z);
244
245 /* Find the first not empty zone with more specific mask */
Eric Dumazet117a8cd2010-10-14 20:53:34 +0000246 for (i = z + 1; i <= 32; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 if (table->fn_zones[i])
248 break;
Eric Dumazet117a8cd2010-10-14 20:53:34 +0000249 if (i > 32) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 /* No more specific masks, we are the first. */
Eric Dumazet117a8cd2010-10-14 20:53:34 +0000251 rcu_assign_pointer(fz->fz_next,
252 rtnl_dereference(table->fn_zone_list));
253 rcu_assign_pointer(table->fn_zone_list, fz);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 } else {
Eric Dumazet117a8cd2010-10-14 20:53:34 +0000255 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 Torvalds1da177e2005-04-16 15:20:36 -0700258 }
259 table->fn_zones[z] = fz;
260 fib_hash_genid++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 return fz;
262}
263
Stephen Hemminger16c6cf82009-09-20 10:35:36 +0000264int fib_table_lookup(struct fib_table *tb,
Eric Dumazetebc0ffa2010-10-05 10:41:36 +0000265 const struct flowi *flp, struct fib_result *res,
266 int fib_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267{
268 int err;
269 struct fn_zone *fz;
Jianjun Kong6ed25332008-11-03 00:25:16 -0800270 struct fn_hash *t = (struct fn_hash *)tb->tb_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271
Eric Dumazet117a8cd2010-10-14 20:53:34 +0000272 rcu_read_lock();
Eric Dumazet117a8cd2010-10-14 20:53:34 +0000273 for (fz = rcu_dereference(t->fn_zone_list);
274 fz != NULL;
275 fz = rcu_dereference(fz->fz_next)) {
Eric Dumazetded85aa2010-10-26 03:24:16 +0000276 struct hlist_head *head;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 struct hlist_node *node;
278 struct fib_node *f;
Eric Dumazet19f57252010-10-14 20:56:39 +0000279 __be32 k;
280 unsigned int seq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281
Eric Dumazet19f57252010-10-14 20:56:39 +0000282 do {
283 seq = read_seqbegin(&fz->fz_lock);
284 k = fz_key(flp->fl4_dst, fz);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285
Eric Dumazetded85aa2010-10-26 03:24:16 +0000286 head = rcu_dereference(fz->fz_hash) + fn_hash(k, fz);
Eric Dumazet19f57252010-10-14 20:56:39 +0000287 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 Torvalds1da177e2005-04-16 15:20:36 -0700292 flp, res,
Eric Dumazetebc0ffa2010-10-05 10:41:36 +0000293 fz->fz_order, fib_flags);
Eric Dumazet19f57252010-10-14 20:56:39 +0000294 if (err <= 0)
295 goto out;
296 }
297 } while (read_seqretry(&fz->fz_lock, seq));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 }
299 err = 1;
300out:
Eric Dumazet117a8cd2010-10-14 20:53:34 +0000301 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 return err;
303}
304
Stephen Hemminger16c6cf82009-09-20 10:35:36 +0000305void fib_table_select_default(struct fib_table *tb,
306 const struct flowi *flp, struct fib_result *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307{
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 Kong6ed25332008-11-03 00:25:16 -0800313 struct fn_hash *t = (struct fn_hash *)tb->tb_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 struct fn_zone *fz = t->fn_zones[0];
Eric Dumazetded85aa2010-10-26 03:24:16 +0000315 struct hlist_head *head;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316
317 if (fz == NULL)
318 return;
319
320 last_idx = -1;
321 last_resort = NULL;
322 order = -1;
323
Eric Dumazet19f57252010-10-14 20:56:39 +0000324 rcu_read_lock();
Eric Dumazetded85aa2010-10-26 03:24:16 +0000325 head = rcu_dereference(fz->fz_hash);
326 hlist_for_each_entry_rcu(f, node, head, fn_hash) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 struct fib_alias *fa;
328
Eric Dumazet19f57252010-10-14 20:56:39 +0000329 list_for_each_entry_rcu(fa, &f->fn_alias, fa_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 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 Dumazet9b0c2902010-10-20 22:03:38 +0000341
342 fib_alias_accessed(fa);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343
344 if (fi == NULL) {
345 if (next_fi != res->fi)
346 break;
347 } else if (!fib_detect_death(fi, order, &last_resort,
Denis V. Lunev971b8932007-12-08 00:32:23 -0800348 &last_idx, tb->tb_default)) {
Denis V. Luneva2bbe682007-12-08 00:31:44 -0800349 fib_result_assign(res, fi);
Denis V. Lunev971b8932007-12-08 00:32:23 -0800350 tb->tb_default = order;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 goto out;
352 }
353 fi = next_fi;
354 order++;
355 }
356 }
357
358 if (order <= 0 || fi == NULL) {
Denis V. Lunev971b8932007-12-08 00:32:23 -0800359 tb->tb_default = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 goto out;
361 }
362
Denis V. Lunev971b8932007-12-08 00:32:23 -0800363 if (!fib_detect_death(fi, order, &last_resort, &last_idx,
364 tb->tb_default)) {
Denis V. Luneva2bbe682007-12-08 00:31:44 -0800365 fib_result_assign(res, fi);
Denis V. Lunev971b8932007-12-08 00:32:23 -0800366 tb->tb_default = order;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 goto out;
368 }
369
Denis V. Luneva2bbe682007-12-08 00:31:44 -0800370 if (last_idx >= 0)
371 fib_result_assign(res, last_resort);
Denis V. Lunev971b8932007-12-08 00:32:23 -0800372 tb->tb_default = last_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373out:
Eric Dumazet19f57252010-10-14 20:56:39 +0000374 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375}
376
377/* Insert node F to FZ. */
378static inline void fib_insert_node(struct fn_zone *fz, struct fib_node *f)
379{
Eric Dumazetded85aa2010-10-26 03:24:16 +0000380 struct hlist_head *head = rtnl_dereference(fz->fz_hash) + fn_hash(f->fn_key, fz);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381
Eric Dumazet19f57252010-10-14 20:56:39 +0000382 hlist_add_head_rcu(&f->fn_hash, head);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383}
384
385/* Return the node in FZ matching KEY. */
Al Virob6e80c62006-09-26 22:20:01 -0700386static struct fib_node *fib_find_node(struct fn_zone *fz, __be32 key)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387{
Eric Dumazetded85aa2010-10-26 03:24:16 +0000388 struct hlist_head *head = rtnl_dereference(fz->fz_hash) + fn_hash(key, fz);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 struct hlist_node *node;
390 struct fib_node *f;
391
Eric Dumazet19f57252010-10-14 20:56:39 +0000392 hlist_for_each_entry_rcu(f, node, head, fn_hash) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 if (f->fn_key == key)
394 return f;
395 }
396
397 return NULL;
398}
399
Eric Dumazet19f57252010-10-14 20:56:39 +0000400
401static 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 Dumazet117a8cd2010-10-14 20:53:34 +0000410/* Caller must hold RTNL. */
Stephen Hemminger16c6cf82009-09-20 10:35:36 +0000411int fib_table_insert(struct fib_table *tb, struct fib_config *cfg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412{
413 struct fn_hash *table = (struct fn_hash *) tb->tb_data;
Adrian Bunk94cb1502008-02-19 16:28:54 -0800414 struct fib_node *new_f = NULL;
415 struct fib_node *f;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 struct fib_alias *fa, *new_fa;
417 struct fn_zone *fz;
418 struct fib_info *fi;
Thomas Graf4e902c52006-08-17 18:14:52 -0700419 u8 tos = cfg->fc_tos;
Al Virob6e80c62006-09-26 22:20:01 -0700420 __be32 key;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 int err;
422
Thomas Graf4e902c52006-08-17 18:14:52 -0700423 if (cfg->fc_dst_len > 32)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 return -EINVAL;
Thomas Graf4e902c52006-08-17 18:14:52 -0700425
426 fz = table->fn_zones[cfg->fc_dst_len];
427 if (!fz && !(fz = fn_new_zone(table, cfg->fc_dst_len)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 return -ENOBUFS;
429
430 key = 0;
Thomas Graf4e902c52006-08-17 18:14:52 -0700431 if (cfg->fc_dst) {
432 if (cfg->fc_dst & ~FZ_MASK(fz))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 return -EINVAL;
Thomas Graf4e902c52006-08-17 18:14:52 -0700434 key = fz_key(cfg->fc_dst, fz);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 }
436
Thomas Graf4e902c52006-08-17 18:14:52 -0700437 fi = fib_create_info(cfg);
438 if (IS_ERR(fi))
439 return PTR_ERR(fi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440
441 if (fz->fz_nent > (fz->fz_divisor<<1) &&
442 fz->fz_divisor < FZ_MAX_DIVISOR &&
Thomas Graf4e902c52006-08-17 18:14:52 -0700443 (cfg->fc_dst_len == 32 ||
444 (1 << cfg->fc_dst_len) > fz->fz_divisor))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 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 Anastasovc18865f2008-01-28 21:14:10 -0800467 struct fib_alias *fa_first, *fa_match;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468
469 err = -EEXIST;
Thomas Graf4e902c52006-08-17 18:14:52 -0700470 if (cfg->fc_nlflags & NLM_F_EXCL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 goto out;
472
Julian Anastasovc18865f2008-01-28 21:14:10 -0800473 /* 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 Graf4e902c52006-08-17 18:14:52 -0700494 if (cfg->fc_nlflags & NLM_F_REPLACE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 u8 state;
496
Julian Anastasovc18865f2008-01-28 21:14:10 -0800497 fa = fa_first;
498 if (fa_match) {
499 if (fa == fa_match)
500 err = 0;
Joonwoo Parkbd566e72008-01-18 03:44:48 -0800501 goto out;
Julian Anastasovc18865f2008-01-28 21:14:10 -0800502 }
Eric Dumazet19f57252010-10-14 20:56:39 +0000503 err = -ENOBUFS;
504 new_fa = fib_fast_alloc(f);
505 if (new_fa == NULL)
506 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507
Eric Dumazet19f57252010-10-14 20:56:39 +0000508 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 Torvalds1da177e2005-04-16 15:20:36 -0700518 if (state & FA_S_ACCESSED)
Denis V. Lunev76e6ebf2008-07-05 19:00:44 -0700519 rt_cache_flush(cfg->fc_nlinfo.nl_net, -1);
Eric Dumazet19f57252010-10-14 20:56:39 +0000520 rtmsg_fib(RTM_NEWROUTE, key, new_fa, cfg->fc_dst_len,
521 tb->tb_id, &cfg->fc_nlinfo, NLM_F_REPLACE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 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 Anastasovc18865f2008-01-28 21:14:10 -0800529 if (fa_match)
530 goto out;
531
Thomas Graf4e902c52006-08-17 18:14:52 -0700532 if (!(cfg->fc_nlflags & NLM_F_APPEND))
Julian Anastasovc18865f2008-01-28 21:14:10 -0800533 fa = fa_first;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 }
535
536 err = -ENOENT;
Thomas Graf4e902c52006-08-17 18:14:52 -0700537 if (!(cfg->fc_nlflags & NLM_F_CREATE))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 goto out;
539
540 err = -ENOBUFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 if (!f) {
Eric Dumazeta6501e02008-01-18 03:33:26 -0800543 new_f = kmem_cache_zalloc(fn_hash_kmem, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 if (new_f == NULL)
Eric Dumazeta6501e02008-01-18 03:33:26 -0800545 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546
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 Dumazet19f57252010-10-14 20:56:39 +0000553 new_fa = fib_fast_alloc(f);
554 if (new_fa == NULL)
555 goto out;
556
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 new_fa->fa_info = fi;
558 new_fa->fa_tos = tos;
Thomas Graf4e902c52006-08-17 18:14:52 -0700559 new_fa->fa_type = cfg->fc_type;
560 new_fa->fa_scope = cfg->fc_scope;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 new_fa->fa_state = 0;
562
563 /*
564 * Insert new entry to the list.
565 */
566
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 if (new_f)
568 fib_insert_node(fz, new_f);
Eric Dumazet19f57252010-10-14 20:56:39 +0000569 list_add_tail_rcu(&new_fa->fa_list,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 (fa ? &fa->fa_list : &f->fn_alias));
571 fib_hash_genid++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572
573 if (new_f)
574 fz->fz_nent++;
Denis V. Lunev76e6ebf2008-07-05 19:00:44 -0700575 rt_cache_flush(cfg->fc_nlinfo.nl_net, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576
Thomas Graf4e902c52006-08-17 18:14:52 -0700577 rtmsg_fib(RTM_NEWROUTE, key, new_fa, cfg->fc_dst_len, tb->tb_id,
Milan Kocianb8f55832007-05-23 14:55:06 -0700578 &cfg->fc_nlinfo, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 return 0;
580
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581out:
Adrian Bunk94cb1502008-02-19 16:28:54 -0800582 if (new_f)
583 kmem_cache_free(fn_hash_kmem, new_f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 fib_release_info(fi);
585 return err;
586}
587
Stephen Hemminger16c6cf82009-09-20 10:35:36 +0000588int fib_table_delete(struct fib_table *tb, struct fib_config *cfg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589{
Jianjun Kong6ed25332008-11-03 00:25:16 -0800590 struct fn_hash *table = (struct fn_hash *)tb->tb_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 struct fib_node *f;
592 struct fib_alias *fa, *fa_to_delete;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 struct fn_zone *fz;
Al Virob6e80c62006-09-26 22:20:01 -0700594 __be32 key;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595
Thomas Graf4e902c52006-08-17 18:14:52 -0700596 if (cfg->fc_dst_len > 32)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 return -EINVAL;
Thomas Graf4e902c52006-08-17 18:14:52 -0700598
599 if ((fz = table->fn_zones[cfg->fc_dst_len]) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 return -ESRCH;
601
602 key = 0;
Thomas Graf4e902c52006-08-17 18:14:52 -0700603 if (cfg->fc_dst) {
604 if (cfg->fc_dst & ~FZ_MASK(fz))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 return -EINVAL;
Thomas Graf4e902c52006-08-17 18:14:52 -0700606 key = fz_key(cfg->fc_dst, fz);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 }
608
609 f = fib_find_node(fz, key);
610
611 if (!f)
612 fa = NULL;
613 else
Thomas Graf4e902c52006-08-17 18:14:52 -0700614 fa = fib_find_alias(&f->fn_alias, cfg->fc_tos, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 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 Graf4e902c52006-08-17 18:14:52 -0700623 if (fa->fa_tos != cfg->fc_tos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 break;
625
Thomas Graf4e902c52006-08-17 18:14:52 -0700626 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 Torvalds1da177e2005-04-16 15:20:36 -0700633 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 Graf4e902c52006-08-17 18:14:52 -0700642 rtmsg_fib(RTM_DELROUTE, key, fa, cfg->fc_dst_len,
Milan Kocianb8f55832007-05-23 14:55:06 -0700643 tb->tb_id, &cfg->fc_nlinfo, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644
645 kill_fn = 0;
Eric Dumazet19f57252010-10-14 20:56:39 +0000646 list_del_rcu(&fa->fa_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 if (list_empty(&f->fn_alias)) {
Eric Dumazet19f57252010-10-14 20:56:39 +0000648 hlist_del_rcu(&f->fn_hash);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 kill_fn = 1;
650 }
651 fib_hash_genid++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652
653 if (fa->fa_state & FA_S_ACCESSED)
Denis V. Lunev76e6ebf2008-07-05 19:00:44 -0700654 rt_cache_flush(cfg->fc_nlinfo.nl_net, -1);
Eric Dumazeta6501e02008-01-18 03:33:26 -0800655 fn_free_alias(fa, f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 if (kill_fn) {
657 fn_free_node(f);
658 fz->fz_nent--;
659 }
660
661 return 0;
662 }
663 return -ESRCH;
664}
665
666static int fn_flush_list(struct fn_zone *fz, int idx)
667{
Eric Dumazetded85aa2010-10-26 03:24:16 +0000668 struct hlist_head *head = rtnl_dereference(fz->fz_hash) + idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 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 Dumazet19f57252010-10-14 20:56:39 +0000682 list_del_rcu(&fa->fa_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 if (list_empty(&f->fn_alias)) {
Eric Dumazet19f57252010-10-14 20:56:39 +0000684 hlist_del_rcu(&f->fn_hash);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 kill_f = 1;
686 }
687 fib_hash_genid++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688
Eric Dumazeta6501e02008-01-18 03:33:26 -0800689 fn_free_alias(fa, f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 found++;
691 }
692 }
693 if (kill_f) {
694 fn_free_node(f);
695 fz->fz_nent--;
696 }
697 }
698 return found;
699}
700
Eric Dumazet117a8cd2010-10-14 20:53:34 +0000701/* caller must hold RTNL. */
Stephen Hemminger16c6cf82009-09-20 10:35:36 +0000702int fib_table_flush(struct fib_table *tb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703{
704 struct fn_hash *table = (struct fn_hash *) tb->tb_data;
705 struct fn_zone *fz;
706 int found = 0;
707
Eric Dumazet117a8cd2010-10-14 20:53:34 +0000708 for (fz = rtnl_dereference(table->fn_zone_list);
709 fz != NULL;
710 fz = rtnl_dereference(fz->fz_next)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 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
719
720static inline int
721fn_hash_dump_bucket(struct sk_buff *skb, struct netlink_callback *cb,
722 struct fib_table *tb,
723 struct fn_zone *fz,
724 struct hlist_head *head)
725{
726 struct hlist_node *node;
727 struct fib_node *f;
728 int i, s_i;
729
Patrick McHardy1af5a8c2006-08-10 23:10:46 -0700730 s_i = cb->args[4];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 i = 0;
Eric Dumazet19f57252010-10-14 20:56:39 +0000732 hlist_for_each_entry_rcu(f, node, head, fn_hash) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 struct fib_alias *fa;
734
Eric Dumazet19f57252010-10-14 20:56:39 +0000735 list_for_each_entry_rcu(fa, &f->fn_alias, fa_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 if (i < s_i)
737 goto next;
738
739 if (fib_dump_info(skb, NETLINK_CB(cb->skb).pid,
740 cb->nlh->nlmsg_seq,
741 RTM_NEWROUTE,
742 tb->tb_id,
743 fa->fa_type,
744 fa->fa_scope,
Thomas Grafbe403ea2006-08-17 18:15:17 -0700745 f->fn_key,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 fz->fz_order,
747 fa->fa_tos,
Jamal Hadi Salimb6544c02005-06-18 22:54:12 -0700748 fa->fa_info,
749 NLM_F_MULTI) < 0) {
Patrick McHardy1af5a8c2006-08-10 23:10:46 -0700750 cb->args[4] = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 return -1;
752 }
Eric Dumazet19f57252010-10-14 20:56:39 +0000753next:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 i++;
755 }
756 }
Patrick McHardy1af5a8c2006-08-10 23:10:46 -0700757 cb->args[4] = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 return skb->len;
759}
760
761static inline int
762fn_hash_dump_zone(struct sk_buff *skb, struct netlink_callback *cb,
763 struct fib_table *tb,
764 struct fn_zone *fz)
765{
766 int h, s_h;
Eric Dumazetded85aa2010-10-26 03:24:16 +0000767 struct hlist_head *head = rcu_dereference(fz->fz_hash);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768
Eric Dumazetded85aa2010-10-26 03:24:16 +0000769 if (head == NULL)
Eric Dumazet8d3f0992008-01-18 04:30:21 -0800770 return skb->len;
Patrick McHardy1af5a8c2006-08-10 23:10:46 -0700771 s_h = cb->args[3];
Eric Dumazet8d3f0992008-01-18 04:30:21 -0800772 for (h = s_h; h < fz->fz_divisor; h++) {
Eric Dumazetded85aa2010-10-26 03:24:16 +0000773 if (hlist_empty(head + h))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 continue;
Eric Dumazetded85aa2010-10-26 03:24:16 +0000775 if (fn_hash_dump_bucket(skb, cb, tb, fz, head + h) < 0) {
Patrick McHardy1af5a8c2006-08-10 23:10:46 -0700776 cb->args[3] = h;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 return -1;
778 }
Eric Dumazet8d3f0992008-01-18 04:30:21 -0800779 memset(&cb->args[4], 0,
780 sizeof(cb->args) - 4*sizeof(cb->args[0]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 }
Patrick McHardy1af5a8c2006-08-10 23:10:46 -0700782 cb->args[3] = h;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 return skb->len;
784}
785
Stephen Hemminger16c6cf82009-09-20 10:35:36 +0000786int fib_table_dump(struct fib_table *tb, struct sk_buff *skb,
787 struct netlink_callback *cb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788{
Eric Dumazet117a8cd2010-10-14 20:53:34 +0000789 int m = 0, s_m;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 struct fn_zone *fz;
Jianjun Kong6ed25332008-11-03 00:25:16 -0800791 struct fn_hash *table = (struct fn_hash *)tb->tb_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792
Patrick McHardy1af5a8c2006-08-10 23:10:46 -0700793 s_m = cb->args[2];
Eric Dumazet117a8cd2010-10-14 20:53:34 +0000794 rcu_read_lock();
Eric Dumazet117a8cd2010-10-14 20:53:34 +0000795 for (fz = rcu_dereference(table->fn_zone_list);
796 fz != NULL;
797 fz = rcu_dereference(fz->fz_next), m++) {
798 if (m < s_m)
799 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 if (fn_hash_dump_zone(skb, cb, tb, fz) < 0) {
Patrick McHardy1af5a8c2006-08-10 23:10:46 -0700801 cb->args[2] = m;
Eric Dumazet117a8cd2010-10-14 20:53:34 +0000802 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 return -1;
804 }
Eric Dumazet8d3f0992008-01-18 04:30:21 -0800805 memset(&cb->args[3], 0,
806 sizeof(cb->args) - 3*sizeof(cb->args[0]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 }
Eric Dumazet117a8cd2010-10-14 20:53:34 +0000808 rcu_read_unlock();
Patrick McHardy1af5a8c2006-08-10 23:10:46 -0700809 cb->args[2] = m;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 return skb->len;
811}
812
Stephen Hemminger7f9b8052008-01-14 23:14:20 -0800813void __init fib_hash_init(void)
814{
815 fn_hash_kmem = kmem_cache_create("ip_fib_hash", sizeof(struct fib_node),
Eric Dumazeta6501e02008-01-18 03:33:26 -0800816 0, SLAB_PANIC, NULL);
Stephen Hemminger7f9b8052008-01-14 23:14:20 -0800817
818 fn_alias_kmem = kmem_cache_create("ip_fib_alias", sizeof(struct fib_alias),
Eric Dumazeta6501e02008-01-18 03:33:26 -0800819 0, SLAB_PANIC, NULL);
Stephen Hemminger7f9b8052008-01-14 23:14:20 -0800820
821}
822
823struct fib_table *fib_hash_table(u32 id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824{
825 struct fib_table *tb;
826
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827 tb = kmalloc(sizeof(struct fib_table) + sizeof(struct fn_hash),
828 GFP_KERNEL);
829 if (tb == NULL)
830 return NULL;
831
832 tb->tb_id = id;
Denis V. Lunev971b8932007-12-08 00:32:23 -0800833 tb->tb_default = -1;
Stephen Hemminger16c6cf82009-09-20 10:35:36 +0000834
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 memset(tb->tb_data, 0, sizeof(struct fn_hash));
836 return tb;
837}
838
839/* ------------------------------------------------------------------------ */
840#ifdef CONFIG_PROC_FS
841
842struct fib_iter_state {
Denis V. Lunev6e04d012008-01-10 03:26:50 -0800843 struct seq_net_private p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 struct fn_zone *zone;
845 int bucket;
846 struct hlist_head *hash_head;
847 struct fib_node *fn;
848 struct fib_alias *fa;
849 loff_t pos;
850 unsigned int genid;
851 int valid;
852};
853
854static struct fib_alias *fib_get_first(struct seq_file *seq)
855{
856 struct fib_iter_state *iter = seq->private;
Denis V. Lunev6e04d012008-01-10 03:26:50 -0800857 struct fib_table *main_table;
858 struct fn_hash *table;
859
YOSHIFUJI Hideaki12188542008-03-26 02:36:06 +0900860 main_table = fib_get_table(seq_file_net(seq), RT_TABLE_MAIN);
Denis V. Lunev6e04d012008-01-10 03:26:50 -0800861 table = (struct fn_hash *)main_table->tb_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862
863 iter->bucket = 0;
864 iter->hash_head = NULL;
865 iter->fn = NULL;
866 iter->fa = NULL;
867 iter->pos = 0;
868 iter->genid = fib_hash_genid;
869 iter->valid = 1;
870
Eric Dumazet117a8cd2010-10-14 20:53:34 +0000871 for (iter->zone = rcu_dereference(table->fn_zone_list);
872 iter->zone != NULL;
873 iter->zone = rcu_dereference(iter->zone->fz_next)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 int maxslot;
875
876 if (!iter->zone->fz_nent)
877 continue;
878
Eric Dumazetded85aa2010-10-26 03:24:16 +0000879 iter->hash_head = rcu_dereference(iter->zone->fz_hash);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 maxslot = iter->zone->fz_divisor;
881
882 for (iter->bucket = 0; iter->bucket < maxslot;
883 ++iter->bucket, ++iter->hash_head) {
884 struct hlist_node *node;
885 struct fib_node *fn;
886
Jianjun Kong6ed25332008-11-03 00:25:16 -0800887 hlist_for_each_entry(fn, node, iter->hash_head, fn_hash) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888 struct fib_alias *fa;
889
Jianjun Kong6ed25332008-11-03 00:25:16 -0800890 list_for_each_entry(fa, &fn->fn_alias, fa_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 iter->fn = fn;
892 iter->fa = fa;
893 goto out;
894 }
895 }
896 }
897 }
898out:
899 return iter->fa;
900}
901
902static struct fib_alias *fib_get_next(struct seq_file *seq)
903{
904 struct fib_iter_state *iter = seq->private;
905 struct fib_node *fn;
906 struct fib_alias *fa;
907
908 /* Advance FA, if any. */
909 fn = iter->fn;
910 fa = iter->fa;
911 if (fa) {
912 BUG_ON(!fn);
913 list_for_each_entry_continue(fa, &fn->fn_alias, fa_list) {
914 iter->fa = fa;
915 goto out;
916 }
917 }
918
919 fa = iter->fa = NULL;
920
921 /* Advance FN. */
922 if (fn) {
923 struct hlist_node *node = &fn->fn_hash;
924 hlist_for_each_entry_continue(fn, node, fn_hash) {
925 iter->fn = fn;
926
927 list_for_each_entry(fa, &fn->fn_alias, fa_list) {
928 iter->fa = fa;
929 goto out;
930 }
931 }
932 }
933
934 fn = iter->fn = NULL;
935
936 /* Advance hash chain. */
937 if (!iter->zone)
938 goto out;
939
940 for (;;) {
941 struct hlist_node *node;
942 int maxslot;
943
944 maxslot = iter->zone->fz_divisor;
945
946 while (++iter->bucket < maxslot) {
947 iter->hash_head++;
948
949 hlist_for_each_entry(fn, node, iter->hash_head, fn_hash) {
950 list_for_each_entry(fa, &fn->fn_alias, fa_list) {
951 iter->fn = fn;
952 iter->fa = fa;
953 goto out;
954 }
955 }
956 }
957
Eric Dumazet117a8cd2010-10-14 20:53:34 +0000958 iter->zone = rcu_dereference(iter->zone->fz_next);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959
960 if (!iter->zone)
961 goto out;
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900962
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963 iter->bucket = 0;
Eric Dumazetded85aa2010-10-26 03:24:16 +0000964 iter->hash_head = rcu_dereference(iter->zone->fz_hash);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965
966 hlist_for_each_entry(fn, node, iter->hash_head, fn_hash) {
967 list_for_each_entry(fa, &fn->fn_alias, fa_list) {
968 iter->fn = fn;
969 iter->fa = fa;
970 goto out;
971 }
972 }
973 }
974out:
975 iter->pos++;
976 return fa;
977}
978
979static struct fib_alias *fib_get_idx(struct seq_file *seq, loff_t pos)
980{
981 struct fib_iter_state *iter = seq->private;
982 struct fib_alias *fa;
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900983
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984 if (iter->valid && pos >= iter->pos && iter->genid == fib_hash_genid) {
985 fa = iter->fa;
986 pos -= iter->pos;
987 } else
988 fa = fib_get_first(seq);
989
990 if (fa)
991 while (pos && (fa = fib_get_next(seq)))
992 --pos;
993 return pos ? NULL : fa;
994}
995
996static void *fib_seq_start(struct seq_file *seq, loff_t *pos)
Eric Dumazet117a8cd2010-10-14 20:53:34 +0000997 __acquires(RCU)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998{
999 void *v = NULL;
1000
Eric Dumazet117a8cd2010-10-14 20:53:34 +00001001 rcu_read_lock();
YOSHIFUJI Hideaki12188542008-03-26 02:36:06 +09001002 if (fib_get_table(seq_file_net(seq), RT_TABLE_MAIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 v = *pos ? fib_get_idx(seq, *pos - 1) : SEQ_START_TOKEN;
1004 return v;
1005}
1006
1007static void *fib_seq_next(struct seq_file *seq, void *v, loff_t *pos)
1008{
1009 ++*pos;
1010 return v == SEQ_START_TOKEN ? fib_get_first(seq) : fib_get_next(seq);
1011}
1012
1013static void fib_seq_stop(struct seq_file *seq, void *v)
Eric Dumazet117a8cd2010-10-14 20:53:34 +00001014 __releases(RCU)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015{
Eric Dumazet117a8cd2010-10-14 20:53:34 +00001016 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017}
1018
Al Virob6e80c62006-09-26 22:20:01 -07001019static unsigned fib_flag_trans(int type, __be32 mask, struct fib_info *fi)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020{
Arjan van de Ven9b5b5cf2005-11-29 16:21:38 -08001021 static const unsigned type2flags[RTN_MAX + 1] = {
Eric Dumazet19f57252010-10-14 20:56:39 +00001022 [7] = RTF_REJECT,
1023 [8] = RTF_REJECT,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024 };
1025 unsigned flags = type2flags[type];
1026
1027 if (fi && fi->fib_nh->nh_gw)
1028 flags |= RTF_GATEWAY;
Al Virob6e80c62006-09-26 22:20:01 -07001029 if (mask == htonl(0xFFFFFFFF))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030 flags |= RTF_HOST;
1031 flags |= RTF_UP;
1032 return flags;
1033}
1034
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09001035/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 * This outputs /proc/net/route.
1037 *
1038 * It always works in backward compatibility mode.
1039 * The format of the file is not supposed to be changed.
1040 */
1041static int fib_seq_show(struct seq_file *seq, void *v)
1042{
1043 struct fib_iter_state *iter;
Pavel Emelyanov5e659e42008-04-24 01:02:16 -07001044 int len;
Al Virob6e80c62006-09-26 22:20:01 -07001045 __be32 prefix, mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046 unsigned flags;
1047 struct fib_node *f;
1048 struct fib_alias *fa;
1049 struct fib_info *fi;
1050
1051 if (v == SEQ_START_TOKEN) {
1052 seq_printf(seq, "%-127s\n", "Iface\tDestination\tGateway "
1053 "\tFlags\tRefCnt\tUse\tMetric\tMask\t\tMTU"
1054 "\tWindow\tIRTT");
1055 goto out;
1056 }
1057
1058 iter = seq->private;
1059 f = iter->fn;
1060 fa = iter->fa;
1061 fi = fa->fa_info;
1062 prefix = f->fn_key;
1063 mask = FZ_MASK(iter->zone);
1064 flags = fib_flag_trans(fa->fa_type, mask, fi);
1065 if (fi)
Pavel Emelyanov5e659e42008-04-24 01:02:16 -07001066 seq_printf(seq,
1067 "%s\t%08X\t%08X\t%04X\t%d\t%u\t%d\t%08X\t%d\t%u\t%u%n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068 fi->fib_dev ? fi->fib_dev->name : "*", prefix,
1069 fi->fib_nh->nh_gw, flags, 0, 0, fi->fib_priority,
1070 mask, (fi->fib_advmss ? fi->fib_advmss + 40 : 0),
1071 fi->fib_window,
Pavel Emelyanov5e659e42008-04-24 01:02:16 -07001072 fi->fib_rtt >> 3, &len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073 else
Pavel Emelyanov5e659e42008-04-24 01:02:16 -07001074 seq_printf(seq,
1075 "*\t%08X\t%08X\t%04X\t%d\t%u\t%d\t%08X\t%d\t%u\t%u%n",
1076 prefix, 0, flags, 0, 0, 0, mask, 0, 0, 0, &len);
1077
1078 seq_printf(seq, "%*s\n", 127 - len, "");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079out:
1080 return 0;
1081}
1082
Stephen Hemmingerf6908082007-03-12 14:34:29 -07001083static const struct seq_operations fib_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084 .start = fib_seq_start,
1085 .next = fib_seq_next,
1086 .stop = fib_seq_stop,
1087 .show = fib_seq_show,
1088};
1089
1090static int fib_seq_open(struct inode *inode, struct file *file)
1091{
Denis V. Lunev6e04d012008-01-10 03:26:50 -08001092 return seq_open_net(inode, file, &fib_seq_ops,
1093 sizeof(struct fib_iter_state));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094}
1095
Arjan van de Ven9a321442007-02-12 00:55:35 -08001096static const struct file_operations fib_seq_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097 .owner = THIS_MODULE,
1098 .open = fib_seq_open,
1099 .read = seq_read,
1100 .llseek = seq_lseek,
Denis V. Lunev6e04d012008-01-10 03:26:50 -08001101 .release = seq_release_net,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102};
1103
Denis V. Lunev61a02652008-01-10 03:21:09 -08001104int __net_init fib_proc_init(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105{
Denis V. Lunev61a02652008-01-10 03:21:09 -08001106 if (!proc_net_fops_create(net, "route", S_IRUGO, &fib_seq_fops))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107 return -ENOMEM;
1108 return 0;
1109}
1110
Denis V. Lunev61a02652008-01-10 03:21:09 -08001111void __net_exit fib_proc_exit(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112{
Denis V. Lunev61a02652008-01-10 03:21:09 -08001113 proc_net_remove(net, "route");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114}
1115#endif /* CONFIG_PROC_FS */