blob: 04f05a96b75b16cc317aefbabaafae3769f31f8a [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 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070061 struct hlist_head *fz_hash; /* Hash table pointer */
Linus Torvalds1da177e2005-04-16 15:20:36 -070062 u32 fz_hashmask; /* (fz_divisor - 1) */
Linus Torvalds1da177e2005-04-16 15:20:36 -070063
Eric Dumazet9bef83e2010-10-14 20:53:04 +000064 u8 fz_order; /* Zone order (0..32) */
65 u8 fz_revorder; /* 32 - fz_order */
66 __be32 fz_mask; /* inet_make_mask(order) */
Linus Torvalds1da177e2005-04-16 15:20:36 -070067#define FZ_MASK(fz) ((fz)->fz_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
Eric Dumazet9bef83e2010-10-14 20:53:04 +000069 struct hlist_head fz_embedded_hash[EMBEDDED_HASH_SIZE];
70
71 int fz_nent; /* Number of entries */
72 int fz_divisor; /* Hash size (mask+1) */
73};
Linus Torvalds1da177e2005-04-16 15:20:36 -070074
75struct fn_hash {
Eric Dumazet117a8cd2010-10-14 20:53:34 +000076 struct fn_zone *fn_zones[33];
77 struct fn_zone __rcu *fn_zone_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -070078};
79
Al Virob6e80c62006-09-26 22:20:01 -070080static inline u32 fn_hash(__be32 key, struct fn_zone *fz)
Linus Torvalds1da177e2005-04-16 15:20:36 -070081{
Eric Dumazet9bef83e2010-10-14 20:53:04 +000082 u32 h = ntohl(key) >> fz->fz_revorder;
Linus Torvalds1da177e2005-04-16 15:20:36 -070083 h ^= (h>>20);
84 h ^= (h>>10);
85 h ^= (h>>5);
Eric Dumazet9bef83e2010-10-14 20:53:04 +000086 h &= fz->fz_hashmask;
Linus Torvalds1da177e2005-04-16 15:20:36 -070087 return h;
88}
89
Al Virob6e80c62006-09-26 22:20:01 -070090static inline __be32 fz_key(__be32 dst, struct fn_zone *fz)
Linus Torvalds1da177e2005-04-16 15:20:36 -070091{
92 return dst & FZ_MASK(fz);
93}
94
95static DEFINE_RWLOCK(fib_hash_lock);
96static 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
104 if (size <= PAGE_SIZE) {
Joonwoo Park3015a342007-11-26 23:31:24 +0800105 return kzalloc(size, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 } else {
107 return (struct hlist_head *)
Joonwoo Park3015a342007-11-26 23:31:24 +0800108 __get_free_pages(GFP_KERNEL | __GFP_ZERO, get_order(size));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 }
110}
111
112/* The fib hash lock must be held when this is called. */
113static inline void fn_rebuild_zone(struct fn_zone *fz,
114 struct hlist_head *old_ht,
115 int old_divisor)
116{
117 int i;
118
119 for (i = 0; i < old_divisor; i++) {
120 struct hlist_node *node, *n;
121 struct fib_node *f;
122
123 hlist_for_each_entry_safe(f, node, n, &old_ht[i], fn_hash) {
124 struct hlist_head *new_head;
125
126 hlist_del(&f->fn_hash);
127
128 new_head = &fz->fz_hash[fn_hash(f->fn_key, fz)];
129 hlist_add_head(&f->fn_hash, new_head);
130 }
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) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 write_lock_bh(&fib_hash_lock);
179 old_ht = fz->fz_hash;
180 fz->fz_hash = ht;
181 fz->fz_hashmask = new_hashmask;
182 fz->fz_divisor = new_divisor;
183 fn_rebuild_zone(fz, old_ht, old_divisor);
184 fib_hash_genid++;
185 write_unlock_bh(&fib_hash_lock);
186
Eric Dumazet9bef83e2010-10-14 20:53:04 +0000187 if (old_ht != fz->fz_embedded_hash)
188 fz_hash_free(old_ht, old_divisor);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 }
190}
191
192static inline void fn_free_node(struct fib_node * f)
193{
194 kmem_cache_free(fn_hash_kmem, f);
195}
196
Eric Dumazeta6501e02008-01-18 03:33:26 -0800197static inline void fn_free_alias(struct fib_alias *fa, struct fib_node *f)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198{
199 fib_release_info(fa->fa_info);
Eric Dumazeta6501e02008-01-18 03:33:26 -0800200 if (fa == &f->fn_embedded_alias)
201 fa->fa_info = NULL;
202 else
203 kmem_cache_free(fn_alias_kmem, fa);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204}
205
206static struct fn_zone *
207fn_new_zone(struct fn_hash *table, int z)
208{
209 int i;
Panagiotis Issaris0da974f2006-07-21 14:51:30 -0700210 struct fn_zone *fz = kzalloc(sizeof(struct fn_zone), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 if (!fz)
212 return NULL;
213
Eric Dumazet9bef83e2010-10-14 20:53:04 +0000214 fz->fz_divisor = z ? EMBEDDED_HASH_SIZE : 1;
215 fz->fz_hashmask = fz->fz_divisor - 1;
216 fz->fz_hash = fz->fz_embedded_hash;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 fz->fz_order = z;
Eric Dumazet9bef83e2010-10-14 20:53:04 +0000218 fz->fz_revorder = 32 - z;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 fz->fz_mask = inet_make_mask(z);
220
221 /* Find the first not empty zone with more specific mask */
Eric Dumazet117a8cd2010-10-14 20:53:34 +0000222 for (i = z + 1; i <= 32; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 if (table->fn_zones[i])
224 break;
Eric Dumazet117a8cd2010-10-14 20:53:34 +0000225 if (i > 32) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 /* No more specific masks, we are the first. */
Eric Dumazet117a8cd2010-10-14 20:53:34 +0000227 rcu_assign_pointer(fz->fz_next,
228 rtnl_dereference(table->fn_zone_list));
229 rcu_assign_pointer(table->fn_zone_list, fz);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 } else {
Eric Dumazet117a8cd2010-10-14 20:53:34 +0000231 rcu_assign_pointer(fz->fz_next,
232 rtnl_dereference(table->fn_zones[i]->fz_next));
233 rcu_assign_pointer(table->fn_zones[i]->fz_next, fz);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 }
235 table->fn_zones[z] = fz;
236 fib_hash_genid++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 return fz;
238}
239
Stephen Hemminger16c6cf82009-09-20 10:35:36 +0000240int fib_table_lookup(struct fib_table *tb,
Eric Dumazetebc0ffa2010-10-05 10:41:36 +0000241 const struct flowi *flp, struct fib_result *res,
242 int fib_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243{
244 int err;
245 struct fn_zone *fz;
Jianjun Kong6ed25332008-11-03 00:25:16 -0800246 struct fn_hash *t = (struct fn_hash *)tb->tb_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247
Eric Dumazet117a8cd2010-10-14 20:53:34 +0000248 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 read_lock(&fib_hash_lock);
Eric Dumazet117a8cd2010-10-14 20:53:34 +0000250 for (fz = rcu_dereference(t->fn_zone_list);
251 fz != NULL;
252 fz = rcu_dereference(fz->fz_next)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 struct hlist_head *head;
254 struct hlist_node *node;
255 struct fib_node *f;
Al Virob6e80c62006-09-26 22:20:01 -0700256 __be32 k = fz_key(flp->fl4_dst, fz);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257
258 head = &fz->fz_hash[fn_hash(k, fz)];
259 hlist_for_each_entry(f, node, head, fn_hash) {
260 if (f->fn_key != k)
261 continue;
262
263 err = fib_semantic_match(&f->fn_alias,
264 flp, res,
Eric Dumazetebc0ffa2010-10-05 10:41:36 +0000265 fz->fz_order, fib_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 if (err <= 0)
267 goto out;
268 }
269 }
270 err = 1;
271out:
272 read_unlock(&fib_hash_lock);
Eric Dumazet117a8cd2010-10-14 20:53:34 +0000273 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 return err;
275}
276
Stephen Hemminger16c6cf82009-09-20 10:35:36 +0000277void fib_table_select_default(struct fib_table *tb,
278 const struct flowi *flp, struct fib_result *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279{
280 int order, last_idx;
281 struct hlist_node *node;
282 struct fib_node *f;
283 struct fib_info *fi = NULL;
284 struct fib_info *last_resort;
Jianjun Kong6ed25332008-11-03 00:25:16 -0800285 struct fn_hash *t = (struct fn_hash *)tb->tb_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 struct fn_zone *fz = t->fn_zones[0];
287
288 if (fz == NULL)
289 return;
290
291 last_idx = -1;
292 last_resort = NULL;
293 order = -1;
294
295 read_lock(&fib_hash_lock);
296 hlist_for_each_entry(f, node, &fz->fz_hash[0], fn_hash) {
297 struct fib_alias *fa;
298
299 list_for_each_entry(fa, &f->fn_alias, fa_list) {
300 struct fib_info *next_fi = fa->fa_info;
301
302 if (fa->fa_scope != res->scope ||
303 fa->fa_type != RTN_UNICAST)
304 continue;
305
306 if (next_fi->fib_priority > res->fi->fib_priority)
307 break;
308 if (!next_fi->fib_nh[0].nh_gw ||
309 next_fi->fib_nh[0].nh_scope != RT_SCOPE_LINK)
310 continue;
311 fa->fa_state |= FA_S_ACCESSED;
312
313 if (fi == NULL) {
314 if (next_fi != res->fi)
315 break;
316 } else if (!fib_detect_death(fi, order, &last_resort,
Denis V. Lunev971b8932007-12-08 00:32:23 -0800317 &last_idx, tb->tb_default)) {
Denis V. Luneva2bbe682007-12-08 00:31:44 -0800318 fib_result_assign(res, fi);
Denis V. Lunev971b8932007-12-08 00:32:23 -0800319 tb->tb_default = order;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 goto out;
321 }
322 fi = next_fi;
323 order++;
324 }
325 }
326
327 if (order <= 0 || fi == NULL) {
Denis V. Lunev971b8932007-12-08 00:32:23 -0800328 tb->tb_default = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 goto out;
330 }
331
Denis V. Lunev971b8932007-12-08 00:32:23 -0800332 if (!fib_detect_death(fi, order, &last_resort, &last_idx,
333 tb->tb_default)) {
Denis V. Luneva2bbe682007-12-08 00:31:44 -0800334 fib_result_assign(res, fi);
Denis V. Lunev971b8932007-12-08 00:32:23 -0800335 tb->tb_default = order;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 goto out;
337 }
338
Denis V. Luneva2bbe682007-12-08 00:31:44 -0800339 if (last_idx >= 0)
340 fib_result_assign(res, last_resort);
Denis V. Lunev971b8932007-12-08 00:32:23 -0800341 tb->tb_default = last_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342out:
343 read_unlock(&fib_hash_lock);
344}
345
346/* Insert node F to FZ. */
347static inline void fib_insert_node(struct fn_zone *fz, struct fib_node *f)
348{
349 struct hlist_head *head = &fz->fz_hash[fn_hash(f->fn_key, fz)];
350
351 hlist_add_head(&f->fn_hash, head);
352}
353
354/* Return the node in FZ matching KEY. */
Al Virob6e80c62006-09-26 22:20:01 -0700355static struct fib_node *fib_find_node(struct fn_zone *fz, __be32 key)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356{
357 struct hlist_head *head = &fz->fz_hash[fn_hash(key, fz)];
358 struct hlist_node *node;
359 struct fib_node *f;
360
361 hlist_for_each_entry(f, node, head, fn_hash) {
362 if (f->fn_key == key)
363 return f;
364 }
365
366 return NULL;
367}
368
Eric Dumazet117a8cd2010-10-14 20:53:34 +0000369/* Caller must hold RTNL. */
Stephen Hemminger16c6cf82009-09-20 10:35:36 +0000370int fib_table_insert(struct fib_table *tb, struct fib_config *cfg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371{
372 struct fn_hash *table = (struct fn_hash *) tb->tb_data;
Adrian Bunk94cb1502008-02-19 16:28:54 -0800373 struct fib_node *new_f = NULL;
374 struct fib_node *f;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 struct fib_alias *fa, *new_fa;
376 struct fn_zone *fz;
377 struct fib_info *fi;
Thomas Graf4e902c52006-08-17 18:14:52 -0700378 u8 tos = cfg->fc_tos;
Al Virob6e80c62006-09-26 22:20:01 -0700379 __be32 key;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 int err;
381
Thomas Graf4e902c52006-08-17 18:14:52 -0700382 if (cfg->fc_dst_len > 32)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 return -EINVAL;
Thomas Graf4e902c52006-08-17 18:14:52 -0700384
385 fz = table->fn_zones[cfg->fc_dst_len];
386 if (!fz && !(fz = fn_new_zone(table, cfg->fc_dst_len)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 return -ENOBUFS;
388
389 key = 0;
Thomas Graf4e902c52006-08-17 18:14:52 -0700390 if (cfg->fc_dst) {
391 if (cfg->fc_dst & ~FZ_MASK(fz))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 return -EINVAL;
Thomas Graf4e902c52006-08-17 18:14:52 -0700393 key = fz_key(cfg->fc_dst, fz);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 }
395
Thomas Graf4e902c52006-08-17 18:14:52 -0700396 fi = fib_create_info(cfg);
397 if (IS_ERR(fi))
398 return PTR_ERR(fi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399
400 if (fz->fz_nent > (fz->fz_divisor<<1) &&
401 fz->fz_divisor < FZ_MAX_DIVISOR &&
Thomas Graf4e902c52006-08-17 18:14:52 -0700402 (cfg->fc_dst_len == 32 ||
403 (1 << cfg->fc_dst_len) > fz->fz_divisor))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 fn_rehash_zone(fz);
405
406 f = fib_find_node(fz, key);
407
408 if (!f)
409 fa = NULL;
410 else
411 fa = fib_find_alias(&f->fn_alias, tos, fi->fib_priority);
412
413 /* Now fa, if non-NULL, points to the first fib alias
414 * with the same keys [prefix,tos,priority], if such key already
415 * exists or to the node before which we will insert new one.
416 *
417 * If fa is NULL, we will need to allocate a new one and
418 * insert to the head of f.
419 *
420 * If f is NULL, no fib node matched the destination key
421 * and we need to allocate a new one of those as well.
422 */
423
424 if (fa && fa->fa_tos == tos &&
425 fa->fa_info->fib_priority == fi->fib_priority) {
Julian Anastasovc18865f2008-01-28 21:14:10 -0800426 struct fib_alias *fa_first, *fa_match;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427
428 err = -EEXIST;
Thomas Graf4e902c52006-08-17 18:14:52 -0700429 if (cfg->fc_nlflags & NLM_F_EXCL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 goto out;
431
Julian Anastasovc18865f2008-01-28 21:14:10 -0800432 /* We have 2 goals:
433 * 1. Find exact match for type, scope, fib_info to avoid
434 * duplicate routes
435 * 2. Find next 'fa' (or head), NLM_F_APPEND inserts before it
436 */
437 fa_match = NULL;
438 fa_first = fa;
439 fa = list_entry(fa->fa_list.prev, struct fib_alias, fa_list);
440 list_for_each_entry_continue(fa, &f->fn_alias, fa_list) {
441 if (fa->fa_tos != tos)
442 break;
443 if (fa->fa_info->fib_priority != fi->fib_priority)
444 break;
445 if (fa->fa_type == cfg->fc_type &&
446 fa->fa_scope == cfg->fc_scope &&
447 fa->fa_info == fi) {
448 fa_match = fa;
449 break;
450 }
451 }
452
Thomas Graf4e902c52006-08-17 18:14:52 -0700453 if (cfg->fc_nlflags & NLM_F_REPLACE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 struct fib_info *fi_drop;
455 u8 state;
456
Julian Anastasovc18865f2008-01-28 21:14:10 -0800457 fa = fa_first;
458 if (fa_match) {
459 if (fa == fa_match)
460 err = 0;
Joonwoo Parkbd566e72008-01-18 03:44:48 -0800461 goto out;
Julian Anastasovc18865f2008-01-28 21:14:10 -0800462 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 write_lock_bh(&fib_hash_lock);
464 fi_drop = fa->fa_info;
465 fa->fa_info = fi;
Thomas Graf4e902c52006-08-17 18:14:52 -0700466 fa->fa_type = cfg->fc_type;
467 fa->fa_scope = cfg->fc_scope;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 state = fa->fa_state;
469 fa->fa_state &= ~FA_S_ACCESSED;
470 fib_hash_genid++;
471 write_unlock_bh(&fib_hash_lock);
472
473 fib_release_info(fi_drop);
474 if (state & FA_S_ACCESSED)
Denis V. Lunev76e6ebf2008-07-05 19:00:44 -0700475 rt_cache_flush(cfg->fc_nlinfo.nl_net, -1);
Milan Kocianb8f55832007-05-23 14:55:06 -0700476 rtmsg_fib(RTM_NEWROUTE, key, fa, cfg->fc_dst_len, tb->tb_id,
477 &cfg->fc_nlinfo, NLM_F_REPLACE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 return 0;
479 }
480
481 /* Error if we find a perfect match which
482 * uses the same scope, type, and nexthop
483 * information.
484 */
Julian Anastasovc18865f2008-01-28 21:14:10 -0800485 if (fa_match)
486 goto out;
487
Thomas Graf4e902c52006-08-17 18:14:52 -0700488 if (!(cfg->fc_nlflags & NLM_F_APPEND))
Julian Anastasovc18865f2008-01-28 21:14:10 -0800489 fa = fa_first;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 }
491
492 err = -ENOENT;
Thomas Graf4e902c52006-08-17 18:14:52 -0700493 if (!(cfg->fc_nlflags & NLM_F_CREATE))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 goto out;
495
496 err = -ENOBUFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 if (!f) {
Eric Dumazeta6501e02008-01-18 03:33:26 -0800499 new_f = kmem_cache_zalloc(fn_hash_kmem, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 if (new_f == NULL)
Eric Dumazeta6501e02008-01-18 03:33:26 -0800501 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502
503 INIT_HLIST_NODE(&new_f->fn_hash);
504 INIT_LIST_HEAD(&new_f->fn_alias);
505 new_f->fn_key = key;
506 f = new_f;
507 }
508
Eric Dumazeta6501e02008-01-18 03:33:26 -0800509 new_fa = &f->fn_embedded_alias;
510 if (new_fa->fa_info != NULL) {
511 new_fa = kmem_cache_alloc(fn_alias_kmem, GFP_KERNEL);
512 if (new_fa == NULL)
Adrian Bunk94cb1502008-02-19 16:28:54 -0800513 goto out;
Eric Dumazeta6501e02008-01-18 03:33:26 -0800514 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 new_fa->fa_info = fi;
516 new_fa->fa_tos = tos;
Thomas Graf4e902c52006-08-17 18:14:52 -0700517 new_fa->fa_type = cfg->fc_type;
518 new_fa->fa_scope = cfg->fc_scope;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 new_fa->fa_state = 0;
520
521 /*
522 * Insert new entry to the list.
523 */
524
525 write_lock_bh(&fib_hash_lock);
526 if (new_f)
527 fib_insert_node(fz, new_f);
528 list_add_tail(&new_fa->fa_list,
529 (fa ? &fa->fa_list : &f->fn_alias));
530 fib_hash_genid++;
531 write_unlock_bh(&fib_hash_lock);
532
533 if (new_f)
534 fz->fz_nent++;
Denis V. Lunev76e6ebf2008-07-05 19:00:44 -0700535 rt_cache_flush(cfg->fc_nlinfo.nl_net, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536
Thomas Graf4e902c52006-08-17 18:14:52 -0700537 rtmsg_fib(RTM_NEWROUTE, key, new_fa, cfg->fc_dst_len, tb->tb_id,
Milan Kocianb8f55832007-05-23 14:55:06 -0700538 &cfg->fc_nlinfo, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 return 0;
540
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541out:
Adrian Bunk94cb1502008-02-19 16:28:54 -0800542 if (new_f)
543 kmem_cache_free(fn_hash_kmem, new_f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 fib_release_info(fi);
545 return err;
546}
547
Stephen Hemminger16c6cf82009-09-20 10:35:36 +0000548int fib_table_delete(struct fib_table *tb, struct fib_config *cfg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549{
Jianjun Kong6ed25332008-11-03 00:25:16 -0800550 struct fn_hash *table = (struct fn_hash *)tb->tb_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 struct fib_node *f;
552 struct fib_alias *fa, *fa_to_delete;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 struct fn_zone *fz;
Al Virob6e80c62006-09-26 22:20:01 -0700554 __be32 key;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555
Thomas Graf4e902c52006-08-17 18:14:52 -0700556 if (cfg->fc_dst_len > 32)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 return -EINVAL;
Thomas Graf4e902c52006-08-17 18:14:52 -0700558
559 if ((fz = table->fn_zones[cfg->fc_dst_len]) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 return -ESRCH;
561
562 key = 0;
Thomas Graf4e902c52006-08-17 18:14:52 -0700563 if (cfg->fc_dst) {
564 if (cfg->fc_dst & ~FZ_MASK(fz))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 return -EINVAL;
Thomas Graf4e902c52006-08-17 18:14:52 -0700566 key = fz_key(cfg->fc_dst, fz);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 }
568
569 f = fib_find_node(fz, key);
570
571 if (!f)
572 fa = NULL;
573 else
Thomas Graf4e902c52006-08-17 18:14:52 -0700574 fa = fib_find_alias(&f->fn_alias, cfg->fc_tos, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 if (!fa)
576 return -ESRCH;
577
578 fa_to_delete = NULL;
579 fa = list_entry(fa->fa_list.prev, struct fib_alias, fa_list);
580 list_for_each_entry_continue(fa, &f->fn_alias, fa_list) {
581 struct fib_info *fi = fa->fa_info;
582
Thomas Graf4e902c52006-08-17 18:14:52 -0700583 if (fa->fa_tos != cfg->fc_tos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 break;
585
Thomas Graf4e902c52006-08-17 18:14:52 -0700586 if ((!cfg->fc_type ||
587 fa->fa_type == cfg->fc_type) &&
588 (cfg->fc_scope == RT_SCOPE_NOWHERE ||
589 fa->fa_scope == cfg->fc_scope) &&
590 (!cfg->fc_protocol ||
591 fi->fib_protocol == cfg->fc_protocol) &&
592 fib_nh_match(cfg, fi) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 fa_to_delete = fa;
594 break;
595 }
596 }
597
598 if (fa_to_delete) {
599 int kill_fn;
600
601 fa = fa_to_delete;
Thomas Graf4e902c52006-08-17 18:14:52 -0700602 rtmsg_fib(RTM_DELROUTE, key, fa, cfg->fc_dst_len,
Milan Kocianb8f55832007-05-23 14:55:06 -0700603 tb->tb_id, &cfg->fc_nlinfo, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604
605 kill_fn = 0;
606 write_lock_bh(&fib_hash_lock);
607 list_del(&fa->fa_list);
608 if (list_empty(&f->fn_alias)) {
609 hlist_del(&f->fn_hash);
610 kill_fn = 1;
611 }
612 fib_hash_genid++;
613 write_unlock_bh(&fib_hash_lock);
614
615 if (fa->fa_state & FA_S_ACCESSED)
Denis V. Lunev76e6ebf2008-07-05 19:00:44 -0700616 rt_cache_flush(cfg->fc_nlinfo.nl_net, -1);
Eric Dumazeta6501e02008-01-18 03:33:26 -0800617 fn_free_alias(fa, f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 if (kill_fn) {
619 fn_free_node(f);
620 fz->fz_nent--;
621 }
622
623 return 0;
624 }
625 return -ESRCH;
626}
627
628static int fn_flush_list(struct fn_zone *fz, int idx)
629{
630 struct hlist_head *head = &fz->fz_hash[idx];
631 struct hlist_node *node, *n;
632 struct fib_node *f;
633 int found = 0;
634
635 hlist_for_each_entry_safe(f, node, n, head, fn_hash) {
636 struct fib_alias *fa, *fa_node;
637 int kill_f;
638
639 kill_f = 0;
640 list_for_each_entry_safe(fa, fa_node, &f->fn_alias, fa_list) {
641 struct fib_info *fi = fa->fa_info;
642
643 if (fi && (fi->fib_flags&RTNH_F_DEAD)) {
644 write_lock_bh(&fib_hash_lock);
645 list_del(&fa->fa_list);
646 if (list_empty(&f->fn_alias)) {
647 hlist_del(&f->fn_hash);
648 kill_f = 1;
649 }
650 fib_hash_genid++;
651 write_unlock_bh(&fib_hash_lock);
652
Eric Dumazeta6501e02008-01-18 03:33:26 -0800653 fn_free_alias(fa, f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 found++;
655 }
656 }
657 if (kill_f) {
658 fn_free_node(f);
659 fz->fz_nent--;
660 }
661 }
662 return found;
663}
664
Eric Dumazet117a8cd2010-10-14 20:53:34 +0000665/* caller must hold RTNL. */
Stephen Hemminger16c6cf82009-09-20 10:35:36 +0000666int fib_table_flush(struct fib_table *tb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667{
668 struct fn_hash *table = (struct fn_hash *) tb->tb_data;
669 struct fn_zone *fz;
670 int found = 0;
671
Eric Dumazet117a8cd2010-10-14 20:53:34 +0000672 for (fz = rtnl_dereference(table->fn_zone_list);
673 fz != NULL;
674 fz = rtnl_dereference(fz->fz_next)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 int i;
676
677 for (i = fz->fz_divisor - 1; i >= 0; i--)
678 found += fn_flush_list(fz, i);
679 }
680 return found;
681}
682
683
684static inline int
685fn_hash_dump_bucket(struct sk_buff *skb, struct netlink_callback *cb,
686 struct fib_table *tb,
687 struct fn_zone *fz,
688 struct hlist_head *head)
689{
690 struct hlist_node *node;
691 struct fib_node *f;
692 int i, s_i;
693
Patrick McHardy1af5a8c2006-08-10 23:10:46 -0700694 s_i = cb->args[4];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 i = 0;
696 hlist_for_each_entry(f, node, head, fn_hash) {
697 struct fib_alias *fa;
698
699 list_for_each_entry(fa, &f->fn_alias, fa_list) {
700 if (i < s_i)
701 goto next;
702
703 if (fib_dump_info(skb, NETLINK_CB(cb->skb).pid,
704 cb->nlh->nlmsg_seq,
705 RTM_NEWROUTE,
706 tb->tb_id,
707 fa->fa_type,
708 fa->fa_scope,
Thomas Grafbe403ea2006-08-17 18:15:17 -0700709 f->fn_key,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 fz->fz_order,
711 fa->fa_tos,
Jamal Hadi Salimb6544c02005-06-18 22:54:12 -0700712 fa->fa_info,
713 NLM_F_MULTI) < 0) {
Patrick McHardy1af5a8c2006-08-10 23:10:46 -0700714 cb->args[4] = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 return -1;
716 }
717 next:
718 i++;
719 }
720 }
Patrick McHardy1af5a8c2006-08-10 23:10:46 -0700721 cb->args[4] = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 return skb->len;
723}
724
725static inline int
726fn_hash_dump_zone(struct sk_buff *skb, struct netlink_callback *cb,
727 struct fib_table *tb,
728 struct fn_zone *fz)
729{
730 int h, s_h;
731
Eric Dumazet8d3f0992008-01-18 04:30:21 -0800732 if (fz->fz_hash == NULL)
733 return skb->len;
Patrick McHardy1af5a8c2006-08-10 23:10:46 -0700734 s_h = cb->args[3];
Eric Dumazet8d3f0992008-01-18 04:30:21 -0800735 for (h = s_h; h < fz->fz_divisor; h++) {
736 if (hlist_empty(&fz->fz_hash[h]))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 continue;
Eric Dumazet8d3f0992008-01-18 04:30:21 -0800738 if (fn_hash_dump_bucket(skb, cb, tb, fz, &fz->fz_hash[h]) < 0) {
Patrick McHardy1af5a8c2006-08-10 23:10:46 -0700739 cb->args[3] = h;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 return -1;
741 }
Eric Dumazet8d3f0992008-01-18 04:30:21 -0800742 memset(&cb->args[4], 0,
743 sizeof(cb->args) - 4*sizeof(cb->args[0]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744 }
Patrick McHardy1af5a8c2006-08-10 23:10:46 -0700745 cb->args[3] = h;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 return skb->len;
747}
748
Stephen Hemminger16c6cf82009-09-20 10:35:36 +0000749int fib_table_dump(struct fib_table *tb, struct sk_buff *skb,
750 struct netlink_callback *cb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751{
Eric Dumazet117a8cd2010-10-14 20:53:34 +0000752 int m = 0, s_m;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 struct fn_zone *fz;
Jianjun Kong6ed25332008-11-03 00:25:16 -0800754 struct fn_hash *table = (struct fn_hash *)tb->tb_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755
Patrick McHardy1af5a8c2006-08-10 23:10:46 -0700756 s_m = cb->args[2];
Eric Dumazet117a8cd2010-10-14 20:53:34 +0000757 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 read_lock(&fib_hash_lock);
Eric Dumazet117a8cd2010-10-14 20:53:34 +0000759 for (fz = rcu_dereference(table->fn_zone_list);
760 fz != NULL;
761 fz = rcu_dereference(fz->fz_next), m++) {
762 if (m < s_m)
763 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 if (fn_hash_dump_zone(skb, cb, tb, fz) < 0) {
Patrick McHardy1af5a8c2006-08-10 23:10:46 -0700765 cb->args[2] = m;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 read_unlock(&fib_hash_lock);
Eric Dumazet117a8cd2010-10-14 20:53:34 +0000767 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 return -1;
769 }
Eric Dumazet8d3f0992008-01-18 04:30:21 -0800770 memset(&cb->args[3], 0,
771 sizeof(cb->args) - 3*sizeof(cb->args[0]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 }
773 read_unlock(&fib_hash_lock);
Eric Dumazet117a8cd2010-10-14 20:53:34 +0000774 rcu_read_unlock();
Patrick McHardy1af5a8c2006-08-10 23:10:46 -0700775 cb->args[2] = m;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 return skb->len;
777}
778
Stephen Hemminger7f9b8052008-01-14 23:14:20 -0800779void __init fib_hash_init(void)
780{
781 fn_hash_kmem = kmem_cache_create("ip_fib_hash", sizeof(struct fib_node),
Eric Dumazeta6501e02008-01-18 03:33:26 -0800782 0, SLAB_PANIC, NULL);
Stephen Hemminger7f9b8052008-01-14 23:14:20 -0800783
784 fn_alias_kmem = kmem_cache_create("ip_fib_alias", sizeof(struct fib_alias),
Eric Dumazeta6501e02008-01-18 03:33:26 -0800785 0, SLAB_PANIC, NULL);
Stephen Hemminger7f9b8052008-01-14 23:14:20 -0800786
787}
788
789struct fib_table *fib_hash_table(u32 id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790{
791 struct fib_table *tb;
792
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 tb = kmalloc(sizeof(struct fib_table) + sizeof(struct fn_hash),
794 GFP_KERNEL);
795 if (tb == NULL)
796 return NULL;
797
798 tb->tb_id = id;
Denis V. Lunev971b8932007-12-08 00:32:23 -0800799 tb->tb_default = -1;
Stephen Hemminger16c6cf82009-09-20 10:35:36 +0000800
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 memset(tb->tb_data, 0, sizeof(struct fn_hash));
802 return tb;
803}
804
805/* ------------------------------------------------------------------------ */
806#ifdef CONFIG_PROC_FS
807
808struct fib_iter_state {
Denis V. Lunev6e04d012008-01-10 03:26:50 -0800809 struct seq_net_private p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 struct fn_zone *zone;
811 int bucket;
812 struct hlist_head *hash_head;
813 struct fib_node *fn;
814 struct fib_alias *fa;
815 loff_t pos;
816 unsigned int genid;
817 int valid;
818};
819
820static struct fib_alias *fib_get_first(struct seq_file *seq)
821{
822 struct fib_iter_state *iter = seq->private;
Denis V. Lunev6e04d012008-01-10 03:26:50 -0800823 struct fib_table *main_table;
824 struct fn_hash *table;
825
YOSHIFUJI Hideaki12188542008-03-26 02:36:06 +0900826 main_table = fib_get_table(seq_file_net(seq), RT_TABLE_MAIN);
Denis V. Lunev6e04d012008-01-10 03:26:50 -0800827 table = (struct fn_hash *)main_table->tb_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828
829 iter->bucket = 0;
830 iter->hash_head = NULL;
831 iter->fn = NULL;
832 iter->fa = NULL;
833 iter->pos = 0;
834 iter->genid = fib_hash_genid;
835 iter->valid = 1;
836
Eric Dumazet117a8cd2010-10-14 20:53:34 +0000837 for (iter->zone = rcu_dereference(table->fn_zone_list);
838 iter->zone != NULL;
839 iter->zone = rcu_dereference(iter->zone->fz_next)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840 int maxslot;
841
842 if (!iter->zone->fz_nent)
843 continue;
844
845 iter->hash_head = iter->zone->fz_hash;
846 maxslot = iter->zone->fz_divisor;
847
848 for (iter->bucket = 0; iter->bucket < maxslot;
849 ++iter->bucket, ++iter->hash_head) {
850 struct hlist_node *node;
851 struct fib_node *fn;
852
Jianjun Kong6ed25332008-11-03 00:25:16 -0800853 hlist_for_each_entry(fn, node, iter->hash_head, fn_hash) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 struct fib_alias *fa;
855
Jianjun Kong6ed25332008-11-03 00:25:16 -0800856 list_for_each_entry(fa, &fn->fn_alias, fa_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 iter->fn = fn;
858 iter->fa = fa;
859 goto out;
860 }
861 }
862 }
863 }
864out:
865 return iter->fa;
866}
867
868static struct fib_alias *fib_get_next(struct seq_file *seq)
869{
870 struct fib_iter_state *iter = seq->private;
871 struct fib_node *fn;
872 struct fib_alias *fa;
873
874 /* Advance FA, if any. */
875 fn = iter->fn;
876 fa = iter->fa;
877 if (fa) {
878 BUG_ON(!fn);
879 list_for_each_entry_continue(fa, &fn->fn_alias, fa_list) {
880 iter->fa = fa;
881 goto out;
882 }
883 }
884
885 fa = iter->fa = NULL;
886
887 /* Advance FN. */
888 if (fn) {
889 struct hlist_node *node = &fn->fn_hash;
890 hlist_for_each_entry_continue(fn, node, fn_hash) {
891 iter->fn = fn;
892
893 list_for_each_entry(fa, &fn->fn_alias, fa_list) {
894 iter->fa = fa;
895 goto out;
896 }
897 }
898 }
899
900 fn = iter->fn = NULL;
901
902 /* Advance hash chain. */
903 if (!iter->zone)
904 goto out;
905
906 for (;;) {
907 struct hlist_node *node;
908 int maxslot;
909
910 maxslot = iter->zone->fz_divisor;
911
912 while (++iter->bucket < maxslot) {
913 iter->hash_head++;
914
915 hlist_for_each_entry(fn, node, iter->hash_head, fn_hash) {
916 list_for_each_entry(fa, &fn->fn_alias, fa_list) {
917 iter->fn = fn;
918 iter->fa = fa;
919 goto out;
920 }
921 }
922 }
923
Eric Dumazet117a8cd2010-10-14 20:53:34 +0000924 iter->zone = rcu_dereference(iter->zone->fz_next);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925
926 if (!iter->zone)
927 goto out;
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900928
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929 iter->bucket = 0;
930 iter->hash_head = iter->zone->fz_hash;
931
932 hlist_for_each_entry(fn, node, iter->hash_head, fn_hash) {
933 list_for_each_entry(fa, &fn->fn_alias, fa_list) {
934 iter->fn = fn;
935 iter->fa = fa;
936 goto out;
937 }
938 }
939 }
940out:
941 iter->pos++;
942 return fa;
943}
944
945static struct fib_alias *fib_get_idx(struct seq_file *seq, loff_t pos)
946{
947 struct fib_iter_state *iter = seq->private;
948 struct fib_alias *fa;
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900949
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950 if (iter->valid && pos >= iter->pos && iter->genid == fib_hash_genid) {
951 fa = iter->fa;
952 pos -= iter->pos;
953 } else
954 fa = fib_get_first(seq);
955
956 if (fa)
957 while (pos && (fa = fib_get_next(seq)))
958 --pos;
959 return pos ? NULL : fa;
960}
961
962static void *fib_seq_start(struct seq_file *seq, loff_t *pos)
Eric Dumazet9a429c42008-01-01 21:58:02 -0800963 __acquires(fib_hash_lock)
Eric Dumazet117a8cd2010-10-14 20:53:34 +0000964 __acquires(RCU)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965{
966 void *v = NULL;
967
Eric Dumazet117a8cd2010-10-14 20:53:34 +0000968 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969 read_lock(&fib_hash_lock);
YOSHIFUJI Hideaki12188542008-03-26 02:36:06 +0900970 if (fib_get_table(seq_file_net(seq), RT_TABLE_MAIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971 v = *pos ? fib_get_idx(seq, *pos - 1) : SEQ_START_TOKEN;
972 return v;
973}
974
975static void *fib_seq_next(struct seq_file *seq, void *v, loff_t *pos)
976{
977 ++*pos;
978 return v == SEQ_START_TOKEN ? fib_get_first(seq) : fib_get_next(seq);
979}
980
981static void fib_seq_stop(struct seq_file *seq, void *v)
Eric Dumazet9a429c42008-01-01 21:58:02 -0800982 __releases(fib_hash_lock)
Eric Dumazet117a8cd2010-10-14 20:53:34 +0000983 __releases(RCU)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984{
985 read_unlock(&fib_hash_lock);
Eric Dumazet117a8cd2010-10-14 20:53:34 +0000986 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987}
988
Al Virob6e80c62006-09-26 22:20:01 -0700989static unsigned fib_flag_trans(int type, __be32 mask, struct fib_info *fi)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990{
Arjan van de Ven9b5b5cf2005-11-29 16:21:38 -0800991 static const unsigned type2flags[RTN_MAX + 1] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992 [7] = RTF_REJECT, [8] = RTF_REJECT,
993 };
994 unsigned flags = type2flags[type];
995
996 if (fi && fi->fib_nh->nh_gw)
997 flags |= RTF_GATEWAY;
Al Virob6e80c62006-09-26 22:20:01 -0700998 if (mask == htonl(0xFFFFFFFF))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999 flags |= RTF_HOST;
1000 flags |= RTF_UP;
1001 return flags;
1002}
1003
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09001004/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005 * This outputs /proc/net/route.
1006 *
1007 * It always works in backward compatibility mode.
1008 * The format of the file is not supposed to be changed.
1009 */
1010static int fib_seq_show(struct seq_file *seq, void *v)
1011{
1012 struct fib_iter_state *iter;
Pavel Emelyanov5e659e42008-04-24 01:02:16 -07001013 int len;
Al Virob6e80c62006-09-26 22:20:01 -07001014 __be32 prefix, mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 unsigned flags;
1016 struct fib_node *f;
1017 struct fib_alias *fa;
1018 struct fib_info *fi;
1019
1020 if (v == SEQ_START_TOKEN) {
1021 seq_printf(seq, "%-127s\n", "Iface\tDestination\tGateway "
1022 "\tFlags\tRefCnt\tUse\tMetric\tMask\t\tMTU"
1023 "\tWindow\tIRTT");
1024 goto out;
1025 }
1026
1027 iter = seq->private;
1028 f = iter->fn;
1029 fa = iter->fa;
1030 fi = fa->fa_info;
1031 prefix = f->fn_key;
1032 mask = FZ_MASK(iter->zone);
1033 flags = fib_flag_trans(fa->fa_type, mask, fi);
1034 if (fi)
Pavel Emelyanov5e659e42008-04-24 01:02:16 -07001035 seq_printf(seq,
1036 "%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 -07001037 fi->fib_dev ? fi->fib_dev->name : "*", prefix,
1038 fi->fib_nh->nh_gw, flags, 0, 0, fi->fib_priority,
1039 mask, (fi->fib_advmss ? fi->fib_advmss + 40 : 0),
1040 fi->fib_window,
Pavel Emelyanov5e659e42008-04-24 01:02:16 -07001041 fi->fib_rtt >> 3, &len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 else
Pavel Emelyanov5e659e42008-04-24 01:02:16 -07001043 seq_printf(seq,
1044 "*\t%08X\t%08X\t%04X\t%d\t%u\t%d\t%08X\t%d\t%u\t%u%n",
1045 prefix, 0, flags, 0, 0, 0, mask, 0, 0, 0, &len);
1046
1047 seq_printf(seq, "%*s\n", 127 - len, "");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048out:
1049 return 0;
1050}
1051
Stephen Hemmingerf6908082007-03-12 14:34:29 -07001052static const struct seq_operations fib_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053 .start = fib_seq_start,
1054 .next = fib_seq_next,
1055 .stop = fib_seq_stop,
1056 .show = fib_seq_show,
1057};
1058
1059static int fib_seq_open(struct inode *inode, struct file *file)
1060{
Denis V. Lunev6e04d012008-01-10 03:26:50 -08001061 return seq_open_net(inode, file, &fib_seq_ops,
1062 sizeof(struct fib_iter_state));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063}
1064
Arjan van de Ven9a321442007-02-12 00:55:35 -08001065static const struct file_operations fib_seq_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066 .owner = THIS_MODULE,
1067 .open = fib_seq_open,
1068 .read = seq_read,
1069 .llseek = seq_lseek,
Denis V. Lunev6e04d012008-01-10 03:26:50 -08001070 .release = seq_release_net,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071};
1072
Denis V. Lunev61a02652008-01-10 03:21:09 -08001073int __net_init fib_proc_init(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074{
Denis V. Lunev61a02652008-01-10 03:21:09 -08001075 if (!proc_net_fops_create(net, "route", S_IRUGO, &fib_seq_fops))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 return -ENOMEM;
1077 return 0;
1078}
1079
Denis V. Lunev61a02652008-01-10 03:21:09 -08001080void __net_exit fib_proc_exit(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081{
Denis V. Lunev61a02652008-01-10 03:21:09 -08001082 proc_net_remove(net, "route");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083}
1084#endif /* CONFIG_PROC_FS */