blob: 10001aa4069245751b7092cbef5f54f8947e2f93 [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 {
60 struct fn_zone *fz_next; /* Next not empty zone */
61 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 {
76 struct fn_zone *fn_zones[33];
77 struct fn_zone *fn_zone_list;
78};
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 */
222 for (i=z+1; i<=32; i++)
223 if (table->fn_zones[i])
224 break;
225 write_lock_bh(&fib_hash_lock);
226 if (i>32) {
227 /* No more specific masks, we are the first. */
228 fz->fz_next = table->fn_zone_list;
229 table->fn_zone_list = fz;
230 } else {
231 fz->fz_next = table->fn_zones[i]->fz_next;
232 table->fn_zones[i]->fz_next = fz;
233 }
234 table->fn_zones[z] = fz;
235 fib_hash_genid++;
236 write_unlock_bh(&fib_hash_lock);
237 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
248 read_lock(&fib_hash_lock);
249 for (fz = t->fn_zone_list; fz; fz = fz->fz_next) {
250 struct hlist_head *head;
251 struct hlist_node *node;
252 struct fib_node *f;
Al Virob6e80c62006-09-26 22:20:01 -0700253 __be32 k = fz_key(flp->fl4_dst, fz);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254
255 head = &fz->fz_hash[fn_hash(k, fz)];
256 hlist_for_each_entry(f, node, head, fn_hash) {
257 if (f->fn_key != k)
258 continue;
259
260 err = fib_semantic_match(&f->fn_alias,
261 flp, res,
Eric Dumazetebc0ffa2010-10-05 10:41:36 +0000262 fz->fz_order, fib_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 if (err <= 0)
264 goto out;
265 }
266 }
267 err = 1;
268out:
269 read_unlock(&fib_hash_lock);
270 return err;
271}
272
Stephen Hemminger16c6cf82009-09-20 10:35:36 +0000273void fib_table_select_default(struct fib_table *tb,
274 const struct flowi *flp, struct fib_result *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275{
276 int order, last_idx;
277 struct hlist_node *node;
278 struct fib_node *f;
279 struct fib_info *fi = NULL;
280 struct fib_info *last_resort;
Jianjun Kong6ed25332008-11-03 00:25:16 -0800281 struct fn_hash *t = (struct fn_hash *)tb->tb_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 struct fn_zone *fz = t->fn_zones[0];
283
284 if (fz == NULL)
285 return;
286
287 last_idx = -1;
288 last_resort = NULL;
289 order = -1;
290
291 read_lock(&fib_hash_lock);
292 hlist_for_each_entry(f, node, &fz->fz_hash[0], fn_hash) {
293 struct fib_alias *fa;
294
295 list_for_each_entry(fa, &f->fn_alias, fa_list) {
296 struct fib_info *next_fi = fa->fa_info;
297
298 if (fa->fa_scope != res->scope ||
299 fa->fa_type != RTN_UNICAST)
300 continue;
301
302 if (next_fi->fib_priority > res->fi->fib_priority)
303 break;
304 if (!next_fi->fib_nh[0].nh_gw ||
305 next_fi->fib_nh[0].nh_scope != RT_SCOPE_LINK)
306 continue;
307 fa->fa_state |= FA_S_ACCESSED;
308
309 if (fi == NULL) {
310 if (next_fi != res->fi)
311 break;
312 } else if (!fib_detect_death(fi, order, &last_resort,
Denis V. Lunev971b8932007-12-08 00:32:23 -0800313 &last_idx, tb->tb_default)) {
Denis V. Luneva2bbe682007-12-08 00:31:44 -0800314 fib_result_assign(res, fi);
Denis V. Lunev971b8932007-12-08 00:32:23 -0800315 tb->tb_default = order;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 goto out;
317 }
318 fi = next_fi;
319 order++;
320 }
321 }
322
323 if (order <= 0 || fi == NULL) {
Denis V. Lunev971b8932007-12-08 00:32:23 -0800324 tb->tb_default = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 goto out;
326 }
327
Denis V. Lunev971b8932007-12-08 00:32:23 -0800328 if (!fib_detect_death(fi, order, &last_resort, &last_idx,
329 tb->tb_default)) {
Denis V. Luneva2bbe682007-12-08 00:31:44 -0800330 fib_result_assign(res, fi);
Denis V. Lunev971b8932007-12-08 00:32:23 -0800331 tb->tb_default = order;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 goto out;
333 }
334
Denis V. Luneva2bbe682007-12-08 00:31:44 -0800335 if (last_idx >= 0)
336 fib_result_assign(res, last_resort);
Denis V. Lunev971b8932007-12-08 00:32:23 -0800337 tb->tb_default = last_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338out:
339 read_unlock(&fib_hash_lock);
340}
341
342/* Insert node F to FZ. */
343static inline void fib_insert_node(struct fn_zone *fz, struct fib_node *f)
344{
345 struct hlist_head *head = &fz->fz_hash[fn_hash(f->fn_key, fz)];
346
347 hlist_add_head(&f->fn_hash, head);
348}
349
350/* Return the node in FZ matching KEY. */
Al Virob6e80c62006-09-26 22:20:01 -0700351static struct fib_node *fib_find_node(struct fn_zone *fz, __be32 key)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352{
353 struct hlist_head *head = &fz->fz_hash[fn_hash(key, fz)];
354 struct hlist_node *node;
355 struct fib_node *f;
356
357 hlist_for_each_entry(f, node, head, fn_hash) {
358 if (f->fn_key == key)
359 return f;
360 }
361
362 return NULL;
363}
364
Stephen Hemminger16c6cf82009-09-20 10:35:36 +0000365int fib_table_insert(struct fib_table *tb, struct fib_config *cfg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366{
367 struct fn_hash *table = (struct fn_hash *) tb->tb_data;
Adrian Bunk94cb1502008-02-19 16:28:54 -0800368 struct fib_node *new_f = NULL;
369 struct fib_node *f;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 struct fib_alias *fa, *new_fa;
371 struct fn_zone *fz;
372 struct fib_info *fi;
Thomas Graf4e902c52006-08-17 18:14:52 -0700373 u8 tos = cfg->fc_tos;
Al Virob6e80c62006-09-26 22:20:01 -0700374 __be32 key;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 int err;
376
Thomas Graf4e902c52006-08-17 18:14:52 -0700377 if (cfg->fc_dst_len > 32)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 return -EINVAL;
Thomas Graf4e902c52006-08-17 18:14:52 -0700379
380 fz = table->fn_zones[cfg->fc_dst_len];
381 if (!fz && !(fz = fn_new_zone(table, cfg->fc_dst_len)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 return -ENOBUFS;
383
384 key = 0;
Thomas Graf4e902c52006-08-17 18:14:52 -0700385 if (cfg->fc_dst) {
386 if (cfg->fc_dst & ~FZ_MASK(fz))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 return -EINVAL;
Thomas Graf4e902c52006-08-17 18:14:52 -0700388 key = fz_key(cfg->fc_dst, fz);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 }
390
Thomas Graf4e902c52006-08-17 18:14:52 -0700391 fi = fib_create_info(cfg);
392 if (IS_ERR(fi))
393 return PTR_ERR(fi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394
395 if (fz->fz_nent > (fz->fz_divisor<<1) &&
396 fz->fz_divisor < FZ_MAX_DIVISOR &&
Thomas Graf4e902c52006-08-17 18:14:52 -0700397 (cfg->fc_dst_len == 32 ||
398 (1 << cfg->fc_dst_len) > fz->fz_divisor))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 fn_rehash_zone(fz);
400
401 f = fib_find_node(fz, key);
402
403 if (!f)
404 fa = NULL;
405 else
406 fa = fib_find_alias(&f->fn_alias, tos, fi->fib_priority);
407
408 /* Now fa, if non-NULL, points to the first fib alias
409 * with the same keys [prefix,tos,priority], if such key already
410 * exists or to the node before which we will insert new one.
411 *
412 * If fa is NULL, we will need to allocate a new one and
413 * insert to the head of f.
414 *
415 * If f is NULL, no fib node matched the destination key
416 * and we need to allocate a new one of those as well.
417 */
418
419 if (fa && fa->fa_tos == tos &&
420 fa->fa_info->fib_priority == fi->fib_priority) {
Julian Anastasovc18865f2008-01-28 21:14:10 -0800421 struct fib_alias *fa_first, *fa_match;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422
423 err = -EEXIST;
Thomas Graf4e902c52006-08-17 18:14:52 -0700424 if (cfg->fc_nlflags & NLM_F_EXCL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 goto out;
426
Julian Anastasovc18865f2008-01-28 21:14:10 -0800427 /* We have 2 goals:
428 * 1. Find exact match for type, scope, fib_info to avoid
429 * duplicate routes
430 * 2. Find next 'fa' (or head), NLM_F_APPEND inserts before it
431 */
432 fa_match = NULL;
433 fa_first = fa;
434 fa = list_entry(fa->fa_list.prev, struct fib_alias, fa_list);
435 list_for_each_entry_continue(fa, &f->fn_alias, fa_list) {
436 if (fa->fa_tos != tos)
437 break;
438 if (fa->fa_info->fib_priority != fi->fib_priority)
439 break;
440 if (fa->fa_type == cfg->fc_type &&
441 fa->fa_scope == cfg->fc_scope &&
442 fa->fa_info == fi) {
443 fa_match = fa;
444 break;
445 }
446 }
447
Thomas Graf4e902c52006-08-17 18:14:52 -0700448 if (cfg->fc_nlflags & NLM_F_REPLACE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 struct fib_info *fi_drop;
450 u8 state;
451
Julian Anastasovc18865f2008-01-28 21:14:10 -0800452 fa = fa_first;
453 if (fa_match) {
454 if (fa == fa_match)
455 err = 0;
Joonwoo Parkbd566e72008-01-18 03:44:48 -0800456 goto out;
Julian Anastasovc18865f2008-01-28 21:14:10 -0800457 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 write_lock_bh(&fib_hash_lock);
459 fi_drop = fa->fa_info;
460 fa->fa_info = fi;
Thomas Graf4e902c52006-08-17 18:14:52 -0700461 fa->fa_type = cfg->fc_type;
462 fa->fa_scope = cfg->fc_scope;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 state = fa->fa_state;
464 fa->fa_state &= ~FA_S_ACCESSED;
465 fib_hash_genid++;
466 write_unlock_bh(&fib_hash_lock);
467
468 fib_release_info(fi_drop);
469 if (state & FA_S_ACCESSED)
Denis V. Lunev76e6ebf2008-07-05 19:00:44 -0700470 rt_cache_flush(cfg->fc_nlinfo.nl_net, -1);
Milan Kocianb8f55832007-05-23 14:55:06 -0700471 rtmsg_fib(RTM_NEWROUTE, key, fa, cfg->fc_dst_len, tb->tb_id,
472 &cfg->fc_nlinfo, NLM_F_REPLACE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 return 0;
474 }
475
476 /* Error if we find a perfect match which
477 * uses the same scope, type, and nexthop
478 * information.
479 */
Julian Anastasovc18865f2008-01-28 21:14:10 -0800480 if (fa_match)
481 goto out;
482
Thomas Graf4e902c52006-08-17 18:14:52 -0700483 if (!(cfg->fc_nlflags & NLM_F_APPEND))
Julian Anastasovc18865f2008-01-28 21:14:10 -0800484 fa = fa_first;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 }
486
487 err = -ENOENT;
Thomas Graf4e902c52006-08-17 18:14:52 -0700488 if (!(cfg->fc_nlflags & NLM_F_CREATE))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 goto out;
490
491 err = -ENOBUFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 if (!f) {
Eric Dumazeta6501e02008-01-18 03:33:26 -0800494 new_f = kmem_cache_zalloc(fn_hash_kmem, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 if (new_f == NULL)
Eric Dumazeta6501e02008-01-18 03:33:26 -0800496 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497
498 INIT_HLIST_NODE(&new_f->fn_hash);
499 INIT_LIST_HEAD(&new_f->fn_alias);
500 new_f->fn_key = key;
501 f = new_f;
502 }
503
Eric Dumazeta6501e02008-01-18 03:33:26 -0800504 new_fa = &f->fn_embedded_alias;
505 if (new_fa->fa_info != NULL) {
506 new_fa = kmem_cache_alloc(fn_alias_kmem, GFP_KERNEL);
507 if (new_fa == NULL)
Adrian Bunk94cb1502008-02-19 16:28:54 -0800508 goto out;
Eric Dumazeta6501e02008-01-18 03:33:26 -0800509 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 new_fa->fa_info = fi;
511 new_fa->fa_tos = tos;
Thomas Graf4e902c52006-08-17 18:14:52 -0700512 new_fa->fa_type = cfg->fc_type;
513 new_fa->fa_scope = cfg->fc_scope;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 new_fa->fa_state = 0;
515
516 /*
517 * Insert new entry to the list.
518 */
519
520 write_lock_bh(&fib_hash_lock);
521 if (new_f)
522 fib_insert_node(fz, new_f);
523 list_add_tail(&new_fa->fa_list,
524 (fa ? &fa->fa_list : &f->fn_alias));
525 fib_hash_genid++;
526 write_unlock_bh(&fib_hash_lock);
527
528 if (new_f)
529 fz->fz_nent++;
Denis V. Lunev76e6ebf2008-07-05 19:00:44 -0700530 rt_cache_flush(cfg->fc_nlinfo.nl_net, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531
Thomas Graf4e902c52006-08-17 18:14:52 -0700532 rtmsg_fib(RTM_NEWROUTE, key, new_fa, cfg->fc_dst_len, tb->tb_id,
Milan Kocianb8f55832007-05-23 14:55:06 -0700533 &cfg->fc_nlinfo, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 return 0;
535
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536out:
Adrian Bunk94cb1502008-02-19 16:28:54 -0800537 if (new_f)
538 kmem_cache_free(fn_hash_kmem, new_f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 fib_release_info(fi);
540 return err;
541}
542
Stephen Hemminger16c6cf82009-09-20 10:35:36 +0000543int fib_table_delete(struct fib_table *tb, struct fib_config *cfg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544{
Jianjun Kong6ed25332008-11-03 00:25:16 -0800545 struct fn_hash *table = (struct fn_hash *)tb->tb_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 struct fib_node *f;
547 struct fib_alias *fa, *fa_to_delete;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 struct fn_zone *fz;
Al Virob6e80c62006-09-26 22:20:01 -0700549 __be32 key;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550
Thomas Graf4e902c52006-08-17 18:14:52 -0700551 if (cfg->fc_dst_len > 32)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 return -EINVAL;
Thomas Graf4e902c52006-08-17 18:14:52 -0700553
554 if ((fz = table->fn_zones[cfg->fc_dst_len]) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 return -ESRCH;
556
557 key = 0;
Thomas Graf4e902c52006-08-17 18:14:52 -0700558 if (cfg->fc_dst) {
559 if (cfg->fc_dst & ~FZ_MASK(fz))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 return -EINVAL;
Thomas Graf4e902c52006-08-17 18:14:52 -0700561 key = fz_key(cfg->fc_dst, fz);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 }
563
564 f = fib_find_node(fz, key);
565
566 if (!f)
567 fa = NULL;
568 else
Thomas Graf4e902c52006-08-17 18:14:52 -0700569 fa = fib_find_alias(&f->fn_alias, cfg->fc_tos, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 if (!fa)
571 return -ESRCH;
572
573 fa_to_delete = NULL;
574 fa = list_entry(fa->fa_list.prev, struct fib_alias, fa_list);
575 list_for_each_entry_continue(fa, &f->fn_alias, fa_list) {
576 struct fib_info *fi = fa->fa_info;
577
Thomas Graf4e902c52006-08-17 18:14:52 -0700578 if (fa->fa_tos != cfg->fc_tos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 break;
580
Thomas Graf4e902c52006-08-17 18:14:52 -0700581 if ((!cfg->fc_type ||
582 fa->fa_type == cfg->fc_type) &&
583 (cfg->fc_scope == RT_SCOPE_NOWHERE ||
584 fa->fa_scope == cfg->fc_scope) &&
585 (!cfg->fc_protocol ||
586 fi->fib_protocol == cfg->fc_protocol) &&
587 fib_nh_match(cfg, fi) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 fa_to_delete = fa;
589 break;
590 }
591 }
592
593 if (fa_to_delete) {
594 int kill_fn;
595
596 fa = fa_to_delete;
Thomas Graf4e902c52006-08-17 18:14:52 -0700597 rtmsg_fib(RTM_DELROUTE, key, fa, cfg->fc_dst_len,
Milan Kocianb8f55832007-05-23 14:55:06 -0700598 tb->tb_id, &cfg->fc_nlinfo, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599
600 kill_fn = 0;
601 write_lock_bh(&fib_hash_lock);
602 list_del(&fa->fa_list);
603 if (list_empty(&f->fn_alias)) {
604 hlist_del(&f->fn_hash);
605 kill_fn = 1;
606 }
607 fib_hash_genid++;
608 write_unlock_bh(&fib_hash_lock);
609
610 if (fa->fa_state & FA_S_ACCESSED)
Denis V. Lunev76e6ebf2008-07-05 19:00:44 -0700611 rt_cache_flush(cfg->fc_nlinfo.nl_net, -1);
Eric Dumazeta6501e02008-01-18 03:33:26 -0800612 fn_free_alias(fa, f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 if (kill_fn) {
614 fn_free_node(f);
615 fz->fz_nent--;
616 }
617
618 return 0;
619 }
620 return -ESRCH;
621}
622
623static int fn_flush_list(struct fn_zone *fz, int idx)
624{
625 struct hlist_head *head = &fz->fz_hash[idx];
626 struct hlist_node *node, *n;
627 struct fib_node *f;
628 int found = 0;
629
630 hlist_for_each_entry_safe(f, node, n, head, fn_hash) {
631 struct fib_alias *fa, *fa_node;
632 int kill_f;
633
634 kill_f = 0;
635 list_for_each_entry_safe(fa, fa_node, &f->fn_alias, fa_list) {
636 struct fib_info *fi = fa->fa_info;
637
638 if (fi && (fi->fib_flags&RTNH_F_DEAD)) {
639 write_lock_bh(&fib_hash_lock);
640 list_del(&fa->fa_list);
641 if (list_empty(&f->fn_alias)) {
642 hlist_del(&f->fn_hash);
643 kill_f = 1;
644 }
645 fib_hash_genid++;
646 write_unlock_bh(&fib_hash_lock);
647
Eric Dumazeta6501e02008-01-18 03:33:26 -0800648 fn_free_alias(fa, f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 found++;
650 }
651 }
652 if (kill_f) {
653 fn_free_node(f);
654 fz->fz_nent--;
655 }
656 }
657 return found;
658}
659
Stephen Hemminger16c6cf82009-09-20 10:35:36 +0000660int fib_table_flush(struct fib_table *tb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661{
662 struct fn_hash *table = (struct fn_hash *) tb->tb_data;
663 struct fn_zone *fz;
664 int found = 0;
665
666 for (fz = table->fn_zone_list; fz; fz = fz->fz_next) {
667 int i;
668
669 for (i = fz->fz_divisor - 1; i >= 0; i--)
670 found += fn_flush_list(fz, i);
671 }
672 return found;
673}
674
675
676static inline int
677fn_hash_dump_bucket(struct sk_buff *skb, struct netlink_callback *cb,
678 struct fib_table *tb,
679 struct fn_zone *fz,
680 struct hlist_head *head)
681{
682 struct hlist_node *node;
683 struct fib_node *f;
684 int i, s_i;
685
Patrick McHardy1af5a8c2006-08-10 23:10:46 -0700686 s_i = cb->args[4];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 i = 0;
688 hlist_for_each_entry(f, node, head, fn_hash) {
689 struct fib_alias *fa;
690
691 list_for_each_entry(fa, &f->fn_alias, fa_list) {
692 if (i < s_i)
693 goto next;
694
695 if (fib_dump_info(skb, NETLINK_CB(cb->skb).pid,
696 cb->nlh->nlmsg_seq,
697 RTM_NEWROUTE,
698 tb->tb_id,
699 fa->fa_type,
700 fa->fa_scope,
Thomas Grafbe403ea2006-08-17 18:15:17 -0700701 f->fn_key,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 fz->fz_order,
703 fa->fa_tos,
Jamal Hadi Salimb6544c02005-06-18 22:54:12 -0700704 fa->fa_info,
705 NLM_F_MULTI) < 0) {
Patrick McHardy1af5a8c2006-08-10 23:10:46 -0700706 cb->args[4] = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 return -1;
708 }
709 next:
710 i++;
711 }
712 }
Patrick McHardy1af5a8c2006-08-10 23:10:46 -0700713 cb->args[4] = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 return skb->len;
715}
716
717static inline int
718fn_hash_dump_zone(struct sk_buff *skb, struct netlink_callback *cb,
719 struct fib_table *tb,
720 struct fn_zone *fz)
721{
722 int h, s_h;
723
Eric Dumazet8d3f0992008-01-18 04:30:21 -0800724 if (fz->fz_hash == NULL)
725 return skb->len;
Patrick McHardy1af5a8c2006-08-10 23:10:46 -0700726 s_h = cb->args[3];
Eric Dumazet8d3f0992008-01-18 04:30:21 -0800727 for (h = s_h; h < fz->fz_divisor; h++) {
728 if (hlist_empty(&fz->fz_hash[h]))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 continue;
Eric Dumazet8d3f0992008-01-18 04:30:21 -0800730 if (fn_hash_dump_bucket(skb, cb, tb, fz, &fz->fz_hash[h]) < 0) {
Patrick McHardy1af5a8c2006-08-10 23:10:46 -0700731 cb->args[3] = h;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732 return -1;
733 }
Eric Dumazet8d3f0992008-01-18 04:30:21 -0800734 memset(&cb->args[4], 0,
735 sizeof(cb->args) - 4*sizeof(cb->args[0]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 }
Patrick McHardy1af5a8c2006-08-10 23:10:46 -0700737 cb->args[3] = h;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 return skb->len;
739}
740
Stephen Hemminger16c6cf82009-09-20 10:35:36 +0000741int fib_table_dump(struct fib_table *tb, struct sk_buff *skb,
742 struct netlink_callback *cb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743{
744 int m, s_m;
745 struct fn_zone *fz;
Jianjun Kong6ed25332008-11-03 00:25:16 -0800746 struct fn_hash *table = (struct fn_hash *)tb->tb_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747
Patrick McHardy1af5a8c2006-08-10 23:10:46 -0700748 s_m = cb->args[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 read_lock(&fib_hash_lock);
750 for (fz = table->fn_zone_list, m=0; fz; fz = fz->fz_next, m++) {
751 if (m < s_m) continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 if (fn_hash_dump_zone(skb, cb, tb, fz) < 0) {
Patrick McHardy1af5a8c2006-08-10 23:10:46 -0700753 cb->args[2] = m;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 read_unlock(&fib_hash_lock);
755 return -1;
756 }
Eric Dumazet8d3f0992008-01-18 04:30:21 -0800757 memset(&cb->args[3], 0,
758 sizeof(cb->args) - 3*sizeof(cb->args[0]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 }
760 read_unlock(&fib_hash_lock);
Patrick McHardy1af5a8c2006-08-10 23:10:46 -0700761 cb->args[2] = m;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 return skb->len;
763}
764
Stephen Hemminger7f9b8052008-01-14 23:14:20 -0800765void __init fib_hash_init(void)
766{
767 fn_hash_kmem = kmem_cache_create("ip_fib_hash", sizeof(struct fib_node),
Eric Dumazeta6501e02008-01-18 03:33:26 -0800768 0, SLAB_PANIC, NULL);
Stephen Hemminger7f9b8052008-01-14 23:14:20 -0800769
770 fn_alias_kmem = kmem_cache_create("ip_fib_alias", sizeof(struct fib_alias),
Eric Dumazeta6501e02008-01-18 03:33:26 -0800771 0, SLAB_PANIC, NULL);
Stephen Hemminger7f9b8052008-01-14 23:14:20 -0800772
773}
774
775struct fib_table *fib_hash_table(u32 id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776{
777 struct fib_table *tb;
778
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 tb = kmalloc(sizeof(struct fib_table) + sizeof(struct fn_hash),
780 GFP_KERNEL);
781 if (tb == NULL)
782 return NULL;
783
784 tb->tb_id = id;
Denis V. Lunev971b8932007-12-08 00:32:23 -0800785 tb->tb_default = -1;
Stephen Hemminger16c6cf82009-09-20 10:35:36 +0000786
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 memset(tb->tb_data, 0, sizeof(struct fn_hash));
788 return tb;
789}
790
791/* ------------------------------------------------------------------------ */
792#ifdef CONFIG_PROC_FS
793
794struct fib_iter_state {
Denis V. Lunev6e04d012008-01-10 03:26:50 -0800795 struct seq_net_private p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 struct fn_zone *zone;
797 int bucket;
798 struct hlist_head *hash_head;
799 struct fib_node *fn;
800 struct fib_alias *fa;
801 loff_t pos;
802 unsigned int genid;
803 int valid;
804};
805
806static struct fib_alias *fib_get_first(struct seq_file *seq)
807{
808 struct fib_iter_state *iter = seq->private;
Denis V. Lunev6e04d012008-01-10 03:26:50 -0800809 struct fib_table *main_table;
810 struct fn_hash *table;
811
YOSHIFUJI Hideaki12188542008-03-26 02:36:06 +0900812 main_table = fib_get_table(seq_file_net(seq), RT_TABLE_MAIN);
Denis V. Lunev6e04d012008-01-10 03:26:50 -0800813 table = (struct fn_hash *)main_table->tb_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814
815 iter->bucket = 0;
816 iter->hash_head = NULL;
817 iter->fn = NULL;
818 iter->fa = NULL;
819 iter->pos = 0;
820 iter->genid = fib_hash_genid;
821 iter->valid = 1;
822
823 for (iter->zone = table->fn_zone_list; iter->zone;
824 iter->zone = iter->zone->fz_next) {
825 int maxslot;
826
827 if (!iter->zone->fz_nent)
828 continue;
829
830 iter->hash_head = iter->zone->fz_hash;
831 maxslot = iter->zone->fz_divisor;
832
833 for (iter->bucket = 0; iter->bucket < maxslot;
834 ++iter->bucket, ++iter->hash_head) {
835 struct hlist_node *node;
836 struct fib_node *fn;
837
Jianjun Kong6ed25332008-11-03 00:25:16 -0800838 hlist_for_each_entry(fn, node, iter->hash_head, fn_hash) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 struct fib_alias *fa;
840
Jianjun Kong6ed25332008-11-03 00:25:16 -0800841 list_for_each_entry(fa, &fn->fn_alias, fa_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 iter->fn = fn;
843 iter->fa = fa;
844 goto out;
845 }
846 }
847 }
848 }
849out:
850 return iter->fa;
851}
852
853static struct fib_alias *fib_get_next(struct seq_file *seq)
854{
855 struct fib_iter_state *iter = seq->private;
856 struct fib_node *fn;
857 struct fib_alias *fa;
858
859 /* Advance FA, if any. */
860 fn = iter->fn;
861 fa = iter->fa;
862 if (fa) {
863 BUG_ON(!fn);
864 list_for_each_entry_continue(fa, &fn->fn_alias, fa_list) {
865 iter->fa = fa;
866 goto out;
867 }
868 }
869
870 fa = iter->fa = NULL;
871
872 /* Advance FN. */
873 if (fn) {
874 struct hlist_node *node = &fn->fn_hash;
875 hlist_for_each_entry_continue(fn, node, fn_hash) {
876 iter->fn = fn;
877
878 list_for_each_entry(fa, &fn->fn_alias, fa_list) {
879 iter->fa = fa;
880 goto out;
881 }
882 }
883 }
884
885 fn = iter->fn = NULL;
886
887 /* Advance hash chain. */
888 if (!iter->zone)
889 goto out;
890
891 for (;;) {
892 struct hlist_node *node;
893 int maxslot;
894
895 maxslot = iter->zone->fz_divisor;
896
897 while (++iter->bucket < maxslot) {
898 iter->hash_head++;
899
900 hlist_for_each_entry(fn, node, iter->hash_head, fn_hash) {
901 list_for_each_entry(fa, &fn->fn_alias, fa_list) {
902 iter->fn = fn;
903 iter->fa = fa;
904 goto out;
905 }
906 }
907 }
908
909 iter->zone = iter->zone->fz_next;
910
911 if (!iter->zone)
912 goto out;
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900913
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914 iter->bucket = 0;
915 iter->hash_head = iter->zone->fz_hash;
916
917 hlist_for_each_entry(fn, node, iter->hash_head, fn_hash) {
918 list_for_each_entry(fa, &fn->fn_alias, fa_list) {
919 iter->fn = fn;
920 iter->fa = fa;
921 goto out;
922 }
923 }
924 }
925out:
926 iter->pos++;
927 return fa;
928}
929
930static struct fib_alias *fib_get_idx(struct seq_file *seq, loff_t pos)
931{
932 struct fib_iter_state *iter = seq->private;
933 struct fib_alias *fa;
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900934
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935 if (iter->valid && pos >= iter->pos && iter->genid == fib_hash_genid) {
936 fa = iter->fa;
937 pos -= iter->pos;
938 } else
939 fa = fib_get_first(seq);
940
941 if (fa)
942 while (pos && (fa = fib_get_next(seq)))
943 --pos;
944 return pos ? NULL : fa;
945}
946
947static void *fib_seq_start(struct seq_file *seq, loff_t *pos)
Eric Dumazet9a429c42008-01-01 21:58:02 -0800948 __acquires(fib_hash_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949{
950 void *v = NULL;
951
952 read_lock(&fib_hash_lock);
YOSHIFUJI Hideaki12188542008-03-26 02:36:06 +0900953 if (fib_get_table(seq_file_net(seq), RT_TABLE_MAIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954 v = *pos ? fib_get_idx(seq, *pos - 1) : SEQ_START_TOKEN;
955 return v;
956}
957
958static void *fib_seq_next(struct seq_file *seq, void *v, loff_t *pos)
959{
960 ++*pos;
961 return v == SEQ_START_TOKEN ? fib_get_first(seq) : fib_get_next(seq);
962}
963
964static void fib_seq_stop(struct seq_file *seq, void *v)
Eric Dumazet9a429c42008-01-01 21:58:02 -0800965 __releases(fib_hash_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966{
967 read_unlock(&fib_hash_lock);
968}
969
Al Virob6e80c62006-09-26 22:20:01 -0700970static unsigned fib_flag_trans(int type, __be32 mask, struct fib_info *fi)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971{
Arjan van de Ven9b5b5cf2005-11-29 16:21:38 -0800972 static const unsigned type2flags[RTN_MAX + 1] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973 [7] = RTF_REJECT, [8] = RTF_REJECT,
974 };
975 unsigned flags = type2flags[type];
976
977 if (fi && fi->fib_nh->nh_gw)
978 flags |= RTF_GATEWAY;
Al Virob6e80c62006-09-26 22:20:01 -0700979 if (mask == htonl(0xFFFFFFFF))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980 flags |= RTF_HOST;
981 flags |= RTF_UP;
982 return flags;
983}
984
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900985/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986 * This outputs /proc/net/route.
987 *
988 * It always works in backward compatibility mode.
989 * The format of the file is not supposed to be changed.
990 */
991static int fib_seq_show(struct seq_file *seq, void *v)
992{
993 struct fib_iter_state *iter;
Pavel Emelyanov5e659e42008-04-24 01:02:16 -0700994 int len;
Al Virob6e80c62006-09-26 22:20:01 -0700995 __be32 prefix, mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996 unsigned flags;
997 struct fib_node *f;
998 struct fib_alias *fa;
999 struct fib_info *fi;
1000
1001 if (v == SEQ_START_TOKEN) {
1002 seq_printf(seq, "%-127s\n", "Iface\tDestination\tGateway "
1003 "\tFlags\tRefCnt\tUse\tMetric\tMask\t\tMTU"
1004 "\tWindow\tIRTT");
1005 goto out;
1006 }
1007
1008 iter = seq->private;
1009 f = iter->fn;
1010 fa = iter->fa;
1011 fi = fa->fa_info;
1012 prefix = f->fn_key;
1013 mask = FZ_MASK(iter->zone);
1014 flags = fib_flag_trans(fa->fa_type, mask, fi);
1015 if (fi)
Pavel Emelyanov5e659e42008-04-24 01:02:16 -07001016 seq_printf(seq,
1017 "%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 -07001018 fi->fib_dev ? fi->fib_dev->name : "*", prefix,
1019 fi->fib_nh->nh_gw, flags, 0, 0, fi->fib_priority,
1020 mask, (fi->fib_advmss ? fi->fib_advmss + 40 : 0),
1021 fi->fib_window,
Pavel Emelyanov5e659e42008-04-24 01:02:16 -07001022 fi->fib_rtt >> 3, &len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023 else
Pavel Emelyanov5e659e42008-04-24 01:02:16 -07001024 seq_printf(seq,
1025 "*\t%08X\t%08X\t%04X\t%d\t%u\t%d\t%08X\t%d\t%u\t%u%n",
1026 prefix, 0, flags, 0, 0, 0, mask, 0, 0, 0, &len);
1027
1028 seq_printf(seq, "%*s\n", 127 - len, "");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029out:
1030 return 0;
1031}
1032
Stephen Hemmingerf6908082007-03-12 14:34:29 -07001033static const struct seq_operations fib_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034 .start = fib_seq_start,
1035 .next = fib_seq_next,
1036 .stop = fib_seq_stop,
1037 .show = fib_seq_show,
1038};
1039
1040static int fib_seq_open(struct inode *inode, struct file *file)
1041{
Denis V. Lunev6e04d012008-01-10 03:26:50 -08001042 return seq_open_net(inode, file, &fib_seq_ops,
1043 sizeof(struct fib_iter_state));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044}
1045
Arjan van de Ven9a321442007-02-12 00:55:35 -08001046static const struct file_operations fib_seq_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 .owner = THIS_MODULE,
1048 .open = fib_seq_open,
1049 .read = seq_read,
1050 .llseek = seq_lseek,
Denis V. Lunev6e04d012008-01-10 03:26:50 -08001051 .release = seq_release_net,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052};
1053
Denis V. Lunev61a02652008-01-10 03:21:09 -08001054int __net_init fib_proc_init(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055{
Denis V. Lunev61a02652008-01-10 03:21:09 -08001056 if (!proc_net_fops_create(net, "route", S_IRUGO, &fib_seq_fops))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 return -ENOMEM;
1058 return 0;
1059}
1060
Denis V. Lunev61a02652008-01-10 03:21:09 -08001061void __net_exit fib_proc_exit(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062{
Denis V. Lunev61a02652008-01-10 03:21:09 -08001063 proc_net_remove(net, "route");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064}
1065#endif /* CONFIG_PROC_FS */