blob: a343c2b5f37a4b44ec980b24733ea7dd7db9cb26 [file] [log] [blame]
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001/*
2 * Copyright (c) 2016 Cisco and/or its affiliates.
3 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this file except in compliance with the License.
5 * You may obtain a copy of the License at:
6 *
7 * http://www.apache.org/licenses/LICENSE-2.0
8 *
9 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 * See the License for the specific language governing permissions and
13 * limitations under the License.
14 */
15
16#include <vnet/fib/fib_table.h>
17#include <vnet/fib/fib_entry.h>
18#include <vnet/fib/ip4_fib.h>
19
20/*
Lijian.Zhang33af8c12019-09-16 16:22:36 +080021 * A table of prefixes to be added to tables and the sources for them
Neale Ranns0bfe5d82016-08-25 15:29:12 +010022 */
23typedef struct ip4_fib_table_special_prefix_t_ {
24 fib_prefix_t ift_prefix;
25 fib_source_t ift_source;
26 fib_entry_flag_t ift_flag;
27} ip4_fib_table_special_prefix_t;
28
29static const ip4_fib_table_special_prefix_t ip4_specials[] = {
30 {
31 /* 0.0.0.0/0*/
32 .ift_prefix = {
33 .fp_addr = {
34 .ip4.data_u32 = 0,
35 },
36 .fp_len = 0,
37 .fp_proto = FIB_PROTOCOL_IP4,
38 },
39 .ift_source = FIB_SOURCE_DEFAULT_ROUTE,
40 .ift_flag = FIB_ENTRY_FLAG_DROP,
41 },
42 {
43 /* 0.0.0.0/32*/
44 .ift_prefix = {
45 .fp_addr = {
46 .ip4.data_u32 = 0,
47 },
48 .fp_len = 32,
49 .fp_proto = FIB_PROTOCOL_IP4,
50 },
51 .ift_source = FIB_SOURCE_DEFAULT_ROUTE,
52 .ift_flag = FIB_ENTRY_FLAG_DROP,
53 },
54 {
55 /*
Neale Ranns86fb04d2016-12-01 17:03:25 +000056 * 240.0.0.0/4
Neale Ranns0bfe5d82016-08-25 15:29:12 +010057 * drop class E
58 */
59 .ift_prefix = {
60 .fp_addr = {
61 .ip4.data_u32 = 0xf0000000,
62 },
Neale Ranns86fb04d2016-12-01 17:03:25 +000063 .fp_len = 4,
Neale Ranns0bfe5d82016-08-25 15:29:12 +010064 .fp_proto = FIB_PROTOCOL_IP4,
65 },
66 .ift_source = FIB_SOURCE_SPECIAL,
67 .ift_flag = FIB_ENTRY_FLAG_DROP,
68
69 },
70 {
71 /*
Neale Ranns86fb04d2016-12-01 17:03:25 +000072 * 224.0.0.0/4
Neale Ranns0bfe5d82016-08-25 15:29:12 +010073 * drop all mcast
74 */
75 .ift_prefix = {
76 .fp_addr = {
77 .ip4.data_u32 = 0xe0000000,
78 },
Neale Ranns86fb04d2016-12-01 17:03:25 +000079 .fp_len = 4,
Neale Ranns0bfe5d82016-08-25 15:29:12 +010080 .fp_proto = FIB_PROTOCOL_IP4,
81 },
82 .ift_source = FIB_SOURCE_SPECIAL,
83 .ift_flag = FIB_ENTRY_FLAG_DROP,
84 },
85 {
86 /*
87 * 255.255.255.255/32
88 * drop, but we'll allow it to be usurped by the likes of DHCP
89 */
90 .ift_prefix = {
91 .fp_addr = {
92 .ip4.data_u32 = 0xffffffff,
93 },
94 .fp_len = 32,
95 .fp_proto = FIB_PROTOCOL_IP4,
96 },
97 .ift_source = FIB_SOURCE_DEFAULT_ROUTE,
98 .ift_flag = FIB_ENTRY_FLAG_DROP,
99 }
100};
101
Neale Rannsd6953332021-08-10 07:39:18 +0000102void
103ip4_fib_hash_load_specials (u32 fib_index)
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100104{
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100105 /*
106 * add the special entries into the new FIB
107 */
108 int ii;
109
110 for (ii = 0; ii < ARRAY_LEN(ip4_specials); ii++)
111 {
112 fib_prefix_t prefix = ip4_specials[ii].ift_prefix;
113
114 prefix.fp_addr.ip4.data_u32 =
115 clib_host_to_net_u32(prefix.fp_addr.ip4.data_u32);
116
Neale Rannsd6953332021-08-10 07:39:18 +0000117 fib_table_entry_special_add(fib_index,
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100118 &prefix,
119 ip4_specials[ii].ift_source,
Neale Rannsa0558302017-04-13 00:44:52 -0700120 ip4_specials[ii].ift_flag);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100121 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100122}
123
124void
Neale Rannsd6953332021-08-10 07:39:18 +0000125ip4_fib_hash_flush_specials (u32 fib_index)
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100126{
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100127 int ii;
128
129 /*
130 * remove all the specials we added when the table was created.
Neale Ranns04a75e32017-03-23 06:46:01 -0700131 * In reverse order so the default route is last.
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100132 */
Neale Ranns04a75e32017-03-23 06:46:01 -0700133 for (ii = ARRAY_LEN(ip4_specials) - 1; ii >= 0; ii--)
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100134 {
135 fib_prefix_t prefix = ip4_specials[ii].ift_prefix;
136
137 prefix.fp_addr.ip4.data_u32 =
138 clib_host_to_net_u32(prefix.fp_addr.ip4.data_u32);
139
Neale Rannsd6953332021-08-10 07:39:18 +0000140 fib_table_entry_special_remove(fib_index,
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100141 &prefix,
142 ip4_specials[ii].ift_source);
143 }
Neale Rannsd6953332021-08-10 07:39:18 +0000144}
145
146static u32
147ip4_create_fib_with_table_id (u32 table_id,
148 fib_source_t src)
149{
150 fib_table_t *fib_table;
151 ip4_fib_t *v4_fib;
152
153 pool_get(ip4_main.fibs, fib_table);
154 clib_memset(fib_table, 0, sizeof(*fib_table));
155
156 pool_get_aligned(ip4_fibs, v4_fib, CLIB_CACHE_LINE_BYTES);
157
158 fib_table->ft_proto = FIB_PROTOCOL_IP4;
159 fib_table->ft_index = (v4_fib - ip4_fibs);
160
161 /*
162 * It is required that the index of the fib_table_t in its pool
163 * is the same as the index of the ip4_fib_t in its pool, since the
164 * rest of the code usues the 'fib_index' to mean either of these
165 * objects, depending on the context.
166 */
167 ASSERT(fib_table->ft_index == fib_table - ip4_main.fibs);
168
169 hash_set (ip4_main.fib_index_by_table_id, table_id, fib_table->ft_index);
170
171 fib_table->ft_table_id =
172 v4_fib->hash.table_id =
173 table_id;
174 fib_table->ft_flow_hash_config = IP_FLOW_HASH_DEFAULT;
175
176 fib_table_lock(fib_table->ft_index, FIB_PROTOCOL_IP4, src);
177
178 ip4_fib_table_init(v4_fib);
179
180 /*
181 * add the special entries into the new FIB
182 */
183 ip4_fib_hash_load_specials(fib_table - ip4_main.fibs);
184
185 return (fib_table->ft_index);
186}
187
188void
189ip4_fib_table_destroy (u32 fib_index)
190{
191 fib_table_t *fib_table = pool_elt_at_index(ip4_main.fibs, fib_index);
192 ip4_fib_t *v4_fib = pool_elt_at_index(ip4_fibs, fib_table->ft_index);
193 u32 *n_locks;
194
195 /*
196 * remove all the specials we added when the table was created.
197 * In reverse order so the default route is last.
198 */
199 ip4_fib_hash_flush_specials(fib_table - ip4_main.fibs);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100200
201 /*
202 * validate no more routes.
203 */
Matthew Smithee167e52020-07-02 17:24:17 -0500204#if CLIB_DEBUG > 0
Neale Rannscbe25aa2019-09-30 10:53:31 +0000205 if (0 != fib_table->ft_total_route_counts)
206 fib_table_assert_empty(fib_table);
207#endif
Neale Ranns3bab8f92019-12-04 06:11:00 +0000208
209 vec_foreach(n_locks, fib_table->ft_src_route_counts)
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100210 {
Neale Ranns3bab8f92019-12-04 06:11:00 +0000211 ASSERT(0 == *n_locks);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100212 }
213
214 if (~0 != fib_table->ft_table_id)
215 {
216 hash_unset (ip4_main.fib_index_by_table_id, fib_table->ft_table_id);
217 }
Neale Rannsa3af3372017-03-28 03:49:52 -0700218
Neale Ranns3bab8f92019-12-04 06:11:00 +0000219 vec_free(fib_table->ft_src_route_counts);
Neale Rannsd6953332021-08-10 07:39:18 +0000220 ip4_fib_table_free(v4_fib);
Neale Rannsa3af3372017-03-28 03:49:52 -0700221
Neale Rannsd6953332021-08-10 07:39:18 +0000222 pool_put(ip4_fibs, v4_fib);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100223 pool_put(ip4_main.fibs, fib_table);
224}
225
226
227u32
Neale Ranns15002542017-09-10 04:39:11 -0700228ip4_fib_table_find_or_create_and_lock (u32 table_id,
229 fib_source_t src)
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100230{
231 u32 index;
232
233 index = ip4_fib_index_from_table_id(table_id);
234 if (~0 == index)
Neale Ranns15002542017-09-10 04:39:11 -0700235 return ip4_create_fib_with_table_id(table_id, src);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100236
Neale Ranns15002542017-09-10 04:39:11 -0700237 fib_table_lock(index, FIB_PROTOCOL_IP4, src);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100238
239 return (index);
240}
241
242u32
Neale Ranns15002542017-09-10 04:39:11 -0700243ip4_fib_table_create_and_lock (fib_source_t src)
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100244{
Neale Ranns15002542017-09-10 04:39:11 -0700245 return (ip4_create_fib_with_table_id(~0, src));
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100246}
247
248u32
249ip4_fib_table_get_index_for_sw_if_index (u32 sw_if_index)
250{
251 if (sw_if_index >= vec_len(ip4_main.fib_index_by_sw_if_index))
252 {
253 /*
254 * This is the case for interfaces that are not yet mapped to
255 * a IP table
256 */
257 return (~0);
258 }
259 return (ip4_main.fib_index_by_sw_if_index[sw_if_index]);
260}
261
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100262
Neale Ranns32e1c012016-11-22 17:07:28 +0000263/**
264 * Walk show context
265 */
266typedef struct ip4_fib_show_walk_ctx_t_
267{
268 fib_node_index_t *ifsw_indicies;
269} ip4_fib_show_walk_ctx_t;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100270
Neale Ranns89541992017-04-06 04:41:02 -0700271static fib_table_walk_rc_t
Neale Ranns32e1c012016-11-22 17:07:28 +0000272ip4_fib_show_walk_cb (fib_node_index_t fib_entry_index,
273 void *arg)
274{
275 ip4_fib_show_walk_ctx_t *ctx = arg;
276
277 vec_add1(ctx->ifsw_indicies, fib_entry_index);
278
Neale Ranns89541992017-04-06 04:41:02 -0700279 return (FIB_TABLE_WALK_CONTINUE);
Neale Ranns32e1c012016-11-22 17:07:28 +0000280}
281
282static void
283ip4_fib_table_show_all (ip4_fib_t *fib,
284 vlib_main_t * vm)
285{
286 ip4_fib_show_walk_ctx_t ctx = {
287 .ifsw_indicies = NULL,
288 };
289 fib_node_index_t *fib_entry_index;
290
291 ip4_fib_table_walk(fib, ip4_fib_show_walk_cb, &ctx);
292 vec_sort_with_function(ctx.ifsw_indicies,
293 fib_entry_cmp_for_sort);
294
295 vec_foreach(fib_entry_index, ctx.ifsw_indicies)
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100296 {
297 vlib_cli_output(vm, "%U",
298 format_fib_entry,
299 *fib_entry_index,
300 FIB_ENTRY_FORMAT_BRIEF);
301 }
302
Neale Ranns32e1c012016-11-22 17:07:28 +0000303 vec_free(ctx.ifsw_indicies);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100304}
305
306static void
307ip4_fib_table_show_one (ip4_fib_t *fib,
308 vlib_main_t * vm,
309 ip4_address_t *address,
Neale Ranns88fc83e2017-04-05 08:11:14 -0700310 u32 mask_len,
311 int detail)
Dave Barach2c8e0022020-02-11 15:06:34 -0500312{
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100313 vlib_cli_output(vm, "%U",
314 format_fib_entry,
315 ip4_fib_table_lookup(fib, address, mask_len),
Neale Ranns88fc83e2017-04-05 08:11:14 -0700316 (detail ?
317 FIB_ENTRY_FORMAT_DETAIL2 :
318 FIB_ENTRY_FORMAT_DETAIL));
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100319}
320
Neale Rannsc87aafa2017-11-29 00:59:31 -0800321u8 *
322format_ip4_fib_table_memory (u8 * s, va_list * args)
323{
Damjan Marion8157a162020-09-16 17:06:45 +0200324 s = format(s, "%=30s %=6d\n",
Dave Barach6a5adc32018-07-04 10:56:23 -0400325 "IPv4 unicast",
Damjan Marion8157a162020-09-16 17:06:45 +0200326 pool_elts(ip4_main.fibs));
Neale Rannsc87aafa2017-11-29 00:59:31 -0800327 return (s);
328}
329
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100330static clib_error_t *
331ip4_show_fib (vlib_main_t * vm,
332 unformat_input_t * input,
333 vlib_cli_command_t * cmd)
334{
335 ip4_main_t * im4 = &ip4_main;
Neale Rannsc87aafa2017-11-29 00:59:31 -0800336 u64 total_mtrie_memory, total_hash_memory;
337 int verbose, matching, mtrie, memory;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100338 ip4_address_t matching_address;
Neale Rannsd6953332021-08-10 07:39:18 +0000339 u32 fib_index, matching_mask = 32;
340 int i, table_id = -1, user_fib_index = ~0;
Neale Ranns88fc83e2017-04-05 08:11:14 -0700341 int detail = 0;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100342
343 verbose = 1;
Neale Rannsc87aafa2017-11-29 00:59:31 -0800344 matching = mtrie = memory = 0;
345 total_hash_memory = total_mtrie_memory = 0;
346
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100347 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
348 {
349 if (unformat (input, "brief") || unformat (input, "summary")
350 || unformat (input, "sum"))
351 verbose = 0;
352
Neale Ranns88fc83e2017-04-05 08:11:14 -0700353 else if (unformat (input, "detail") || unformat (input, "det"))
354 detail = 1;
355
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100356 else if (unformat (input, "mtrie"))
357 mtrie = 1;
358
Neale Rannsc87aafa2017-11-29 00:59:31 -0800359 else if (unformat (input, "mem") ||
360 unformat (input, "memory"))
361 memory = 1;
362
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100363 else if (unformat (input, "%U/%d",
364 unformat_ip4_address, &matching_address, &matching_mask))
365 matching = 1;
366
367 else if (unformat (input, "%U", unformat_ip4_address, &matching_address))
368 matching = 1;
369
370 else if (unformat (input, "table %d", &table_id))
371 ;
Neale Rannsd6953332021-08-10 07:39:18 +0000372 else if (unformat (input, "index %d", &user_fib_index))
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100373 ;
374 else
375 break;
376 }
377
Neale Rannsd6953332021-08-10 07:39:18 +0000378 pool_foreach_index (fib_index, im4->fibs)
Damjan Marionb2c31b62020-12-13 21:47:40 +0100379 {
Neale Rannsd6953332021-08-10 07:39:18 +0000380 fib_table_t *fib_table = pool_elt_at_index(im4->fibs, fib_index);
381 ip4_fib_t *fib = pool_elt_at_index(ip4_fibs, fib_table->ft_index);
Neale Ranns15002542017-09-10 04:39:11 -0700382 fib_source_t source;
383 u8 *s = NULL;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100384
Neale Rannsd6953332021-08-10 07:39:18 +0000385 if (table_id >= 0 && table_id != (int)fib->hash.table_id)
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100386 continue;
Neale Rannsd6953332021-08-10 07:39:18 +0000387 if (user_fib_index != ~0 && user_fib_index != fib_index)
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100388 continue;
389
Neale Rannsc87aafa2017-11-29 00:59:31 -0800390 if (memory)
391 {
Damjan Marion8157a162020-09-16 17:06:45 +0200392 uword mtrie_size, hash_size;
Lollita Liue18b45c2019-01-11 05:23:12 -0500393
Neale Rannsc87aafa2017-11-29 00:59:31 -0800394
Neale Rannsd6953332021-08-10 07:39:18 +0000395 mtrie_size = ip4_mtrie_memory_usage(&fib->mtrie);
Neale Rannsc87aafa2017-11-29 00:59:31 -0800396 hash_size = 0;
397
Neale Rannsd6953332021-08-10 07:39:18 +0000398 for (i = 0; i < ARRAY_LEN (fib->hash.fib_entry_by_dst_address); i++)
Neale Rannsc87aafa2017-11-29 00:59:31 -0800399 {
Neale Rannsd6953332021-08-10 07:39:18 +0000400 uword * hash = fib->hash.fib_entry_by_dst_address[i];
Neale Rannsc87aafa2017-11-29 00:59:31 -0800401 if (NULL != hash)
402 {
403 hash_size += hash_bytes(hash);
404 }
405 }
Lollita Liue18b45c2019-01-11 05:23:12 -0500406
Neale Rannsc87aafa2017-11-29 00:59:31 -0800407 if (verbose)
408 vlib_cli_output (vm, "%U mtrie:%d hash:%d",
Neale Rannsd6953332021-08-10 07:39:18 +0000409 format_fib_table_name, fib_index,
Neale Rannsc87aafa2017-11-29 00:59:31 -0800410 FIB_PROTOCOL_IP4,
411 mtrie_size,
412 hash_size);
413 total_mtrie_memory += mtrie_size;
414 total_hash_memory += hash_size;
415 continue;
416 }
417
Neale Ranns9db6ada2019-11-08 12:42:31 +0000418 s = format(s, "%U, fib_index:%d, flow hash:[%U] epoch:%d flags:%U locks:[",
Neale Rannsd6953332021-08-10 07:39:18 +0000419 format_fib_table_name, fib_index,
Neale Ranns15002542017-09-10 04:39:11 -0700420 FIB_PROTOCOL_IP4,
Neale Rannsd6953332021-08-10 07:39:18 +0000421 fib_index,
Neale Ranns15002542017-09-10 04:39:11 -0700422 format_ip_flow_hash_config,
Neale Ranns9db6ada2019-11-08 12:42:31 +0000423 fib_table->ft_flow_hash_config,
424 fib_table->ft_epoch,
425 format_fib_table_flags, fib_table->ft_flags);
Neale Ranns3bab8f92019-12-04 06:11:00 +0000426 vec_foreach_index(source, fib_table->ft_locks)
Neale Ranns15002542017-09-10 04:39:11 -0700427 {
428 if (0 != fib_table->ft_locks[source])
429 {
430 s = format(s, "%U:%d, ",
431 format_fib_source, source,
432 fib_table->ft_locks[source]);
433 }
434 }
435 s = format (s, "]");
Neale Ranns2297af02017-09-12 09:45:04 -0700436 vlib_cli_output (vm, "%v", s);
Neale Ranns15002542017-09-10 04:39:11 -0700437 vec_free(s);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100438
439 /* Show summary? */
Neale Ranns39194252017-11-27 01:03:25 -0800440 if (mtrie)
441 {
Neale Rannsd6953332021-08-10 07:39:18 +0000442 vlib_cli_output (vm, "%U", format_ip4_mtrie, &fib->mtrie, verbose);
Neale Ranns39194252017-11-27 01:03:25 -0800443 continue;
444 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100445 if (! verbose)
446 {
447 vlib_cli_output (vm, "%=20s%=16s", "Prefix length", "Count");
Neale Rannsd6953332021-08-10 07:39:18 +0000448 for (i = 0; i < ARRAY_LEN (fib->hash.fib_entry_by_dst_address); i++)
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100449 {
Neale Rannsd6953332021-08-10 07:39:18 +0000450 uword * hash = fib->hash.fib_entry_by_dst_address[i];
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100451 uword n_elts = hash_elts (hash);
452 if (n_elts > 0)
453 vlib_cli_output (vm, "%20d%16d", i, n_elts);
454 }
455 continue;
456 }
457
458 if (!matching)
459 {
460 ip4_fib_table_show_all(fib, vm);
461 }
462 else
463 {
Neale Ranns88fc83e2017-04-05 08:11:14 -0700464 ip4_fib_table_show_one(fib, vm, &matching_address,
465 matching_mask, detail);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100466 }
Damjan Marionb2c31b62020-12-13 21:47:40 +0100467 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100468
Neale Rannsc87aafa2017-11-29 00:59:31 -0800469 if (memory)
Lollita Liue18b45c2019-01-11 05:23:12 -0500470 {
Neale Rannsc87aafa2017-11-29 00:59:31 -0800471 vlib_cli_output (vm, "totals: mtrie:%ld hash:%ld all:%ld",
472 total_mtrie_memory,
473 total_hash_memory,
474 total_mtrie_memory + total_hash_memory);
Lollita Liue18b45c2019-01-11 05:23:12 -0500475 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100476 return 0;
477}
478
479/*?
Billy McFall0683c9c2016-10-13 08:27:31 -0400480 * This command displays the IPv4 FIB Tables (VRF Tables) and the route
481 * entries for each table.
482 *
483 * @note This command will run for a long time when the FIB tables are
484 * comprised of millions of entries. For those senarios, consider displaying
485 * a single table or summary mode.
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100486 *
487 * @cliexpar
Billy McFall0683c9c2016-10-13 08:27:31 -0400488 * Example of how to display all the IPv4 FIB tables:
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100489 * @cliexstart{show ip fib}
Billy McFallebb9a6a2016-10-17 11:35:32 -0400490 * ipv4-VRF:0, fib_index 0, flow hash: src dst sport dport proto
491 * 0.0.0.0/0
492 * unicast-ip4-chain
493 * [@0]: dpo-load-balance: [index:0 buckets:1 uRPF:0 to:[0:0]]
494 * [0] [@0]: dpo-drop ip6
495 * 0.0.0.0/32
496 * unicast-ip4-chain
497 * [@0]: dpo-load-balance: [index:1 buckets:1 uRPF:1 to:[0:0]]
498 * [0] [@0]: dpo-drop ip6
499 * 6.0.1.2/32
500 * unicast-ip4-chain
501 * [@0]: dpo-load-balance: [index:30 buckets:1 uRPF:29 to:[0:0]]
502 * [0] [@3]: arp-ipv4: via 6.0.0.1 af_packet0
503 * 7.0.0.1/32
504 * unicast-ip4-chain
505 * [@0]: dpo-load-balance: [index:31 buckets:4 uRPF:30 to:[0:0]]
506 * [0] [@3]: arp-ipv4: via 6.0.0.2 af_packet0
507 * [1] [@3]: arp-ipv4: via 6.0.0.2 af_packet0
508 * [2] [@3]: arp-ipv4: via 6.0.0.2 af_packet0
509 * [3] [@3]: arp-ipv4: via 6.0.0.1 af_packet0
510 * 224.0.0.0/8
511 * unicast-ip4-chain
512 * [@0]: dpo-load-balance: [index:3 buckets:1 uRPF:3 to:[0:0]]
513 * [0] [@0]: dpo-drop ip6
514 * 240.0.0.0/8
515 * unicast-ip4-chain
516 * [@0]: dpo-load-balance: [index:2 buckets:1 uRPF:2 to:[0:0]]
517 * [0] [@0]: dpo-drop ip6
518 * 255.255.255.255/32
519 * unicast-ip4-chain
520 * [@0]: dpo-load-balance: [index:4 buckets:1 uRPF:4 to:[0:0]]
521 * [0] [@0]: dpo-drop ip6
522 * ipv4-VRF:7, fib_index 1, flow hash: src dst sport dport proto
523 * 0.0.0.0/0
524 * unicast-ip4-chain
525 * [@0]: dpo-load-balance: [index:12 buckets:1 uRPF:11 to:[0:0]]
526 * [0] [@0]: dpo-drop ip6
527 * 0.0.0.0/32
528 * unicast-ip4-chain
529 * [@0]: dpo-load-balance: [index:13 buckets:1 uRPF:12 to:[0:0]]
530 * [0] [@0]: dpo-drop ip6
531 * 172.16.1.0/24
532 * unicast-ip4-chain
533 * [@0]: dpo-load-balance: [index:17 buckets:1 uRPF:16 to:[0:0]]
534 * [0] [@4]: ipv4-glean: af_packet0
535 * 172.16.1.1/32
536 * unicast-ip4-chain
537 * [@0]: dpo-load-balance: [index:18 buckets:1 uRPF:17 to:[1:84]]
538 * [0] [@2]: dpo-receive: 172.16.1.1 on af_packet0
539 * 172.16.1.2/32
540 * unicast-ip4-chain
541 * [@0]: dpo-load-balance: [index:21 buckets:1 uRPF:20 to:[0:0]]
542 * [0] [@5]: ipv4 via 172.16.1.2 af_packet0: IP4: 02:fe:9e:70:7a:2b -> 26:a5:f6:9c:3a:36
543 * 172.16.2.0/24
544 * unicast-ip4-chain
545 * [@0]: dpo-load-balance: [index:19 buckets:1 uRPF:18 to:[0:0]]
546 * [0] [@4]: ipv4-glean: af_packet1
547 * 172.16.2.1/32
548 * unicast-ip4-chain
549 * [@0]: dpo-load-balance: [index:20 buckets:1 uRPF:19 to:[0:0]]
550 * [0] [@2]: dpo-receive: 172.16.2.1 on af_packet1
551 * 224.0.0.0/8
552 * unicast-ip4-chain
553 * [@0]: dpo-load-balance: [index:15 buckets:1 uRPF:14 to:[0:0]]
554 * [0] [@0]: dpo-drop ip6
555 * 240.0.0.0/8
556 * unicast-ip4-chain
557 * [@0]: dpo-load-balance: [index:14 buckets:1 uRPF:13 to:[0:0]]
558 * [0] [@0]: dpo-drop ip6
559 * 255.255.255.255/32
560 * unicast-ip4-chain
561 * [@0]: dpo-load-balance: [index:16 buckets:1 uRPF:15 to:[0:0]]
562 * [0] [@0]: dpo-drop ip6
Billy McFall0683c9c2016-10-13 08:27:31 -0400563 * @cliexend
564 * Example of how to display a single IPv4 FIB table:
565 * @cliexstart{show ip fib table 7}
Billy McFallebb9a6a2016-10-17 11:35:32 -0400566 * ipv4-VRF:7, fib_index 1, flow hash: src dst sport dport proto
567 * 0.0.0.0/0
568 * unicast-ip4-chain
569 * [@0]: dpo-load-balance: [index:12 buckets:1 uRPF:11 to:[0:0]]
570 * [0] [@0]: dpo-drop ip6
571 * 0.0.0.0/32
572 * unicast-ip4-chain
573 * [@0]: dpo-load-balance: [index:13 buckets:1 uRPF:12 to:[0:0]]
574 * [0] [@0]: dpo-drop ip6
575 * 172.16.1.0/24
576 * unicast-ip4-chain
577 * [@0]: dpo-load-balance: [index:17 buckets:1 uRPF:16 to:[0:0]]
578 * [0] [@4]: ipv4-glean: af_packet0
579 * 172.16.1.1/32
580 * unicast-ip4-chain
581 * [@0]: dpo-load-balance: [index:18 buckets:1 uRPF:17 to:[1:84]]
582 * [0] [@2]: dpo-receive: 172.16.1.1 on af_packet0
583 * 172.16.1.2/32
584 * unicast-ip4-chain
585 * [@0]: dpo-load-balance: [index:21 buckets:1 uRPF:20 to:[0:0]]
586 * [0] [@5]: ipv4 via 172.16.1.2 af_packet0: IP4: 02:fe:9e:70:7a:2b -> 26:a5:f6:9c:3a:36
587 * 172.16.2.0/24
588 * unicast-ip4-chain
589 * [@0]: dpo-load-balance: [index:19 buckets:1 uRPF:18 to:[0:0]]
590 * [0] [@4]: ipv4-glean: af_packet1
591 * 172.16.2.1/32
592 * unicast-ip4-chain
593 * [@0]: dpo-load-balance: [index:20 buckets:1 uRPF:19 to:[0:0]]
594 * [0] [@2]: dpo-receive: 172.16.2.1 on af_packet1
595 * 224.0.0.0/8
596 * unicast-ip4-chain
597 * [@0]: dpo-load-balance: [index:15 buckets:1 uRPF:14 to:[0:0]]
598 * [0] [@0]: dpo-drop ip6
599 * 240.0.0.0/8
600 * unicast-ip4-chain
601 * [@0]: dpo-load-balance: [index:14 buckets:1 uRPF:13 to:[0:0]]
602 * [0] [@0]: dpo-drop ip6
603 * 255.255.255.255/32
604 * unicast-ip4-chain
605 * [@0]: dpo-load-balance: [index:16 buckets:1 uRPF:15 to:[0:0]]
606 * [0] [@0]: dpo-drop ip6
Billy McFall0683c9c2016-10-13 08:27:31 -0400607 * @cliexend
608 * Example of how to display a summary of all IPv4 FIB tables:
609 * @cliexstart{show ip fib summary}
Billy McFallebb9a6a2016-10-17 11:35:32 -0400610 * ipv4-VRF:0, fib_index 0, flow hash: src dst sport dport proto
Billy McFall0683c9c2016-10-13 08:27:31 -0400611 * Prefix length Count
Billy McFallebb9a6a2016-10-17 11:35:32 -0400612 * 0 1
613 * 8 2
614 * 32 4
615 * ipv4-VRF:7, fib_index 1, flow hash: src dst sport dport proto
Billy McFall0683c9c2016-10-13 08:27:31 -0400616 * Prefix length Count
Billy McFallebb9a6a2016-10-17 11:35:32 -0400617 * 0 1
618 * 8 2
619 * 24 2
620 * 32 4
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100621 * @cliexend
622 ?*/
Billy McFall0683c9c2016-10-13 08:27:31 -0400623/* *INDENT-OFF* */
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100624VLIB_CLI_COMMAND (ip4_show_fib_command, static) = {
625 .path = "show ip fib",
Neale Ranns88fc83e2017-04-05 08:11:14 -0700626 .short_help = "show ip fib [summary] [table <table-id>] [index <fib-id>] [<ip4-addr>[/<mask>]] [mtrie] [detail]",
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100627 .function = ip4_show_fib,
628};
Billy McFall0683c9c2016-10-13 08:27:31 -0400629/* *INDENT-ON* */