blob: 01f4a755ec265ab00534b4035136f5d86ab3685d [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/*
21 * A table of pefixes to be added to tables and the sources for them
22 */
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
102
103static u32
Neale Ranns15002542017-09-10 04:39:11 -0700104ip4_create_fib_with_table_id (u32 table_id,
105 fib_source_t src)
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100106{
107 fib_table_t *fib_table;
Neale Rannsa3af3372017-03-28 03:49:52 -0700108 ip4_fib_t *v4_fib;
Neale Ranns1ec36522017-11-29 05:20:37 -0800109 void *old_heap;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100110
Dave Baracheb987d32018-05-03 08:26:39 -0400111 pool_get(ip4_main.fibs, fib_table);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100112 memset(fib_table, 0, sizeof(*fib_table));
113
Neale Ranns1ec36522017-11-29 05:20:37 -0800114 old_heap = clib_mem_set_heap (ip4_main.mtrie_mheap);
Neale Rannsa3af3372017-03-28 03:49:52 -0700115 pool_get_aligned(ip4_main.v4_fibs, v4_fib, CLIB_CACHE_LINE_BYTES);
Neale Ranns1ec36522017-11-29 05:20:37 -0800116 clib_mem_set_heap (old_heap);
Neale Rannsa3af3372017-03-28 03:49:52 -0700117
118 ASSERT((fib_table - ip4_main.fibs) ==
119 (v4_fib - ip4_main.v4_fibs));
120
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100121 fib_table->ft_proto = FIB_PROTOCOL_IP4;
122 fib_table->ft_index =
Neale Rannsa3af3372017-03-28 03:49:52 -0700123 v4_fib->index =
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100124 (fib_table - ip4_main.fibs);
125
126 hash_set (ip4_main.fib_index_by_table_id, table_id, fib_table->ft_index);
127
128 fib_table->ft_table_id =
Neale Rannsa3af3372017-03-28 03:49:52 -0700129 v4_fib->table_id =
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100130 table_id;
Neale Ranns227038a2017-04-21 01:07:59 -0700131 fib_table->ft_flow_hash_config = IP_FLOW_HASH_DEFAULT;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100132
Neale Ranns15002542017-09-10 04:39:11 -0700133 fib_table_lock(fib_table->ft_index, FIB_PROTOCOL_IP4, src);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100134
Neale Rannsa3af3372017-03-28 03:49:52 -0700135 ip4_mtrie_init(&v4_fib->mtrie);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100136
137 /*
138 * add the special entries into the new FIB
139 */
140 int ii;
141
142 for (ii = 0; ii < ARRAY_LEN(ip4_specials); ii++)
143 {
144 fib_prefix_t prefix = ip4_specials[ii].ift_prefix;
145
146 prefix.fp_addr.ip4.data_u32 =
147 clib_host_to_net_u32(prefix.fp_addr.ip4.data_u32);
148
149 fib_table_entry_special_add(fib_table->ft_index,
150 &prefix,
151 ip4_specials[ii].ift_source,
Neale Rannsa0558302017-04-13 00:44:52 -0700152 ip4_specials[ii].ift_flag);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100153 }
154
155 return (fib_table->ft_index);
156}
157
158void
Neale Rannsa3af3372017-03-28 03:49:52 -0700159ip4_fib_table_destroy (u32 fib_index)
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100160{
Neale Rannsa3af3372017-03-28 03:49:52 -0700161 fib_table_t *fib_table = pool_elt_at_index(ip4_main.fibs, fib_index);
162 ip4_fib_t *v4_fib = pool_elt_at_index(ip4_main.v4_fibs, fib_index);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100163 int ii;
164
165 /*
166 * remove all the specials we added when the table was created.
Neale Ranns04a75e32017-03-23 06:46:01 -0700167 * In reverse order so the default route is last.
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100168 */
Neale Ranns04a75e32017-03-23 06:46:01 -0700169 for (ii = ARRAY_LEN(ip4_specials) - 1; ii >= 0; ii--)
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100170 {
171 fib_prefix_t prefix = ip4_specials[ii].ift_prefix;
172
173 prefix.fp_addr.ip4.data_u32 =
174 clib_host_to_net_u32(prefix.fp_addr.ip4.data_u32);
175
176 fib_table_entry_special_remove(fib_table->ft_index,
177 &prefix,
178 ip4_specials[ii].ift_source);
179 }
180
181 /*
182 * validate no more routes.
183 */
184 ASSERT(0 == fib_table->ft_total_route_counts);
185 FOR_EACH_FIB_SOURCE(ii)
186 {
187 ASSERT(0 == fib_table->ft_src_route_counts[ii]);
188 }
189
190 if (~0 != fib_table->ft_table_id)
191 {
192 hash_unset (ip4_main.fib_index_by_table_id, fib_table->ft_table_id);
193 }
Neale Rannsa3af3372017-03-28 03:49:52 -0700194
195 ip4_mtrie_free(&v4_fib->mtrie);
196
197 pool_put(ip4_main.v4_fibs, v4_fib);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100198 pool_put(ip4_main.fibs, fib_table);
199}
200
201
202u32
Neale Ranns15002542017-09-10 04:39:11 -0700203ip4_fib_table_find_or_create_and_lock (u32 table_id,
204 fib_source_t src)
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100205{
206 u32 index;
207
208 index = ip4_fib_index_from_table_id(table_id);
209 if (~0 == index)
Neale Ranns15002542017-09-10 04:39:11 -0700210 return ip4_create_fib_with_table_id(table_id, src);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100211
Neale Ranns15002542017-09-10 04:39:11 -0700212 fib_table_lock(index, FIB_PROTOCOL_IP4, src);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100213
214 return (index);
215}
216
217u32
Neale Ranns15002542017-09-10 04:39:11 -0700218ip4_fib_table_create_and_lock (fib_source_t src)
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100219{
Neale Ranns15002542017-09-10 04:39:11 -0700220 return (ip4_create_fib_with_table_id(~0, src));
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100221}
222
223u32
224ip4_fib_table_get_index_for_sw_if_index (u32 sw_if_index)
225{
226 if (sw_if_index >= vec_len(ip4_main.fib_index_by_sw_if_index))
227 {
228 /*
229 * This is the case for interfaces that are not yet mapped to
230 * a IP table
231 */
232 return (~0);
233 }
234 return (ip4_main.fib_index_by_sw_if_index[sw_if_index]);
235}
236
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100237/*
238 * ip4_fib_table_lookup_exact_match
239 *
240 * Exact match prefix lookup
241 */
242fib_node_index_t
243ip4_fib_table_lookup_exact_match (const ip4_fib_t *fib,
244 const ip4_address_t *addr,
245 u32 len)
246{
247 uword * hash, * result;
248 u32 key;
249
250 hash = fib->fib_entry_by_dst_address[len];
251 key = (addr->data_u32 & ip4_main.fib_masks[len]);
252
253 result = hash_get(hash, key);
254
255 if (NULL != result) {
256 return (result[0]);
257 }
258 return (FIB_NODE_INDEX_INVALID);
259}
260
261/*
262 * ip4_fib_table_lookup_adj
263 *
264 * Longest prefix match
265 */
266index_t
267ip4_fib_table_lookup_lb (ip4_fib_t *fib,
268 const ip4_address_t *addr)
269{
270 fib_node_index_t fei;
271
272 fei = ip4_fib_table_lookup(fib, addr, 32);
273
274 if (FIB_NODE_INDEX_INVALID != fei)
275 {
276 const dpo_id_t *dpo;
277
278 dpo = fib_entry_contribute_ip_forwarding(fei);
279
280 return (dpo->dpoi_index);
281 }
282 return (INDEX_INVALID);
283}
284
285/*
286 * ip4_fib_table_lookup
287 *
288 * Longest prefix match
289 */
290fib_node_index_t
291ip4_fib_table_lookup (const ip4_fib_t *fib,
292 const ip4_address_t *addr,
293 u32 len)
294{
295 uword * hash, * result;
296 i32 mask_len;
297 u32 key;
298
299 for (mask_len = len; mask_len >= 0; mask_len--)
300 {
301 hash = fib->fib_entry_by_dst_address[mask_len];
302 key = (addr->data_u32 & ip4_main.fib_masks[mask_len]);
303
304 result = hash_get (hash, key);
305
306 if (NULL != result) {
307 return (result[0]);
308 }
309 }
310 return (FIB_NODE_INDEX_INVALID);
311}
312
313void
314ip4_fib_table_entry_insert (ip4_fib_t *fib,
315 const ip4_address_t *addr,
316 u32 len,
317 fib_node_index_t fib_entry_index)
318{
319 uword * hash, * result;
320 u32 key;
321
322 key = (addr->data_u32 & ip4_main.fib_masks[len]);
323 hash = fib->fib_entry_by_dst_address[len];
324 result = hash_get (hash, key);
325
326 if (NULL == result) {
327 /*
328 * adding a new entry
329 */
Neale Ranns1ec36522017-11-29 05:20:37 -0800330 uword *old_heap;
331 old_heap = clib_mem_set_heap (ip4_main.mtrie_mheap);
332
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100333 if (NULL == hash) {
334 hash = hash_create (32 /* elts */, sizeof (uword));
335 hash_set_flags (hash, HASH_FLAG_NO_AUTO_SHRINK);
Neale Ranns1ec36522017-11-29 05:20:37 -0800336
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100337 }
338 hash = hash_set(hash, key, fib_entry_index);
339 fib->fib_entry_by_dst_address[len] = hash;
Neale Ranns1ec36522017-11-29 05:20:37 -0800340 clib_mem_set_heap (old_heap);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100341 }
342 else
343 {
344 ASSERT(0);
345 }
346}
347
348void
349ip4_fib_table_entry_remove (ip4_fib_t *fib,
350 const ip4_address_t *addr,
351 u32 len)
352{
353 uword * hash, * result;
354 u32 key;
355
356 key = (addr->data_u32 & ip4_main.fib_masks[len]);
357 hash = fib->fib_entry_by_dst_address[len];
358 result = hash_get (hash, key);
359
360 if (NULL == result)
361 {
362 /*
363 * removing a non-existant entry. i'll allow it.
364 */
365 }
366 else
367 {
Neale Ranns1ec36522017-11-29 05:20:37 -0800368 uword *old_heap;
369
370 old_heap = clib_mem_set_heap (ip4_main.mtrie_mheap);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100371 hash_unset(hash, key);
Neale Ranns1ec36522017-11-29 05:20:37 -0800372 clib_mem_set_heap (old_heap);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100373 }
374
375 fib->fib_entry_by_dst_address[len] = hash;
376}
377
378void
379ip4_fib_table_fwding_dpo_update (ip4_fib_t *fib,
380 const ip4_address_t *addr,
381 u32 len,
382 const dpo_id_t *dpo)
383{
Neale Rannsa3af3372017-03-28 03:49:52 -0700384 ip4_fib_mtrie_route_add(&fib->mtrie, addr, len, dpo->dpoi_index);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100385}
386
387void
388ip4_fib_table_fwding_dpo_remove (ip4_fib_t *fib,
389 const ip4_address_t *addr,
390 u32 len,
Neale Rannsa3af3372017-03-28 03:49:52 -0700391 const dpo_id_t *dpo,
392 u32 cover_index)
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100393{
Neale Rannsa3af3372017-03-28 03:49:52 -0700394 fib_prefix_t cover_prefix = {
395 .fp_len = 0,
396 };
397 const dpo_id_t *cover_dpo;
398
399 /*
400 * We need to pass the MTRIE the LB index and address length of the
401 * covering prefix, so it can fill the plys with the correct replacement
402 * for the entry being removed
403 */
404 fib_entry_get_prefix(cover_index, &cover_prefix);
405 cover_dpo = fib_entry_contribute_ip_forwarding(cover_index);
406
407 ip4_fib_mtrie_route_del(&fib->mtrie,
408 addr, len, dpo->dpoi_index,
409 cover_prefix.fp_len,
410 cover_dpo->dpoi_index);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100411}
412
Neale Ranns32e1c012016-11-22 17:07:28 +0000413void
414ip4_fib_table_walk (ip4_fib_t *fib,
415 fib_table_walk_fn_t fn,
416 void *ctx)
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100417{
Neale Ranns89541992017-04-06 04:41:02 -0700418 fib_prefix_t root = {
419 .fp_proto = FIB_PROTOCOL_IP4,
420 // address and length default to all 0
421 };
422
423 /*
424 * A full tree walk is the dengenerate case of a sub-tree from
425 * the very root
426 */
427 return (ip4_fib_table_sub_tree_walk(fib, &root, fn, ctx));
428}
429
430void
431ip4_fib_table_sub_tree_walk (ip4_fib_t *fib,
432 const fib_prefix_t *root,
433 fib_table_walk_fn_t fn,
434 void *ctx)
435{
436 fib_prefix_t *sub_trees = NULL;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100437 int i;
438
Neale Ranns89541992017-04-06 04:41:02 -0700439 /*
440 * There is no efficent way to walk this array of hash tables.
441 * so we walk each table with a mask length greater than and equal to
442 * the required root and check it is covered by the root.
443 */
444 for (i = root->fp_len;
445 i < ARRAY_LEN (fib->fib_entry_by_dst_address);
446 i++)
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100447 {
448 uword * hash = fib->fib_entry_by_dst_address[i];
449
450 if (NULL != hash)
451 {
Neale Ranns89541992017-04-06 04:41:02 -0700452 ip4_address_t key;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100453 hash_pair_t * p;
454
455 hash_foreach_pair (p, hash,
456 ({
Neale Ranns89541992017-04-06 04:41:02 -0700457 key.as_u32 = p->key;
458 if (ip4_destination_matches_route(&ip4_main,
459 &key,
460 &root->fp_addr.ip4,
461 root->fp_len))
462 {
463 const fib_prefix_t *sub_tree;
464 int skip = 0;
465
466 /*
467 * exclude sub-trees the walk does not want to explore
468 */
469 vec_foreach(sub_tree, sub_trees)
470 {
471 if (ip4_destination_matches_route(&ip4_main,
472 &key,
473 &sub_tree->fp_addr.ip4,
474 sub_tree->fp_len))
475 {
476 skip = 1;
477 break;
478 }
479 }
480
481 if (!skip)
482 {
483 switch (fn(p->value[0], ctx))
484 {
485 case FIB_TABLE_WALK_CONTINUE:
486 break;
487 case FIB_TABLE_WALK_SUB_TREE_STOP: {
488 fib_prefix_t pfx = {
489 .fp_proto = FIB_PROTOCOL_IP4,
490 .fp_len = i,
491 .fp_addr.ip4 = key,
492 };
493 vec_add1(sub_trees, pfx);
494 break;
495 }
496 case FIB_TABLE_WALK_STOP:
497 goto done;
498 }
499 }
500 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100501 }));
502 }
503 }
Neale Ranns89541992017-04-06 04:41:02 -0700504done:
505 vec_free(sub_trees);
506 return;
Neale Ranns32e1c012016-11-22 17:07:28 +0000507}
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100508
Neale Ranns32e1c012016-11-22 17:07:28 +0000509/**
510 * Walk show context
511 */
512typedef struct ip4_fib_show_walk_ctx_t_
513{
514 fib_node_index_t *ifsw_indicies;
515} ip4_fib_show_walk_ctx_t;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100516
Neale Ranns89541992017-04-06 04:41:02 -0700517static fib_table_walk_rc_t
Neale Ranns32e1c012016-11-22 17:07:28 +0000518ip4_fib_show_walk_cb (fib_node_index_t fib_entry_index,
519 void *arg)
520{
521 ip4_fib_show_walk_ctx_t *ctx = arg;
522
523 vec_add1(ctx->ifsw_indicies, fib_entry_index);
524
Neale Ranns89541992017-04-06 04:41:02 -0700525 return (FIB_TABLE_WALK_CONTINUE);
Neale Ranns32e1c012016-11-22 17:07:28 +0000526}
527
528static void
529ip4_fib_table_show_all (ip4_fib_t *fib,
530 vlib_main_t * vm)
531{
532 ip4_fib_show_walk_ctx_t ctx = {
533 .ifsw_indicies = NULL,
534 };
535 fib_node_index_t *fib_entry_index;
536
537 ip4_fib_table_walk(fib, ip4_fib_show_walk_cb, &ctx);
538 vec_sort_with_function(ctx.ifsw_indicies,
539 fib_entry_cmp_for_sort);
540
541 vec_foreach(fib_entry_index, ctx.ifsw_indicies)
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100542 {
543 vlib_cli_output(vm, "%U",
544 format_fib_entry,
545 *fib_entry_index,
546 FIB_ENTRY_FORMAT_BRIEF);
547 }
548
Neale Ranns32e1c012016-11-22 17:07:28 +0000549 vec_free(ctx.ifsw_indicies);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100550}
551
552static void
553ip4_fib_table_show_one (ip4_fib_t *fib,
554 vlib_main_t * vm,
555 ip4_address_t *address,
Neale Ranns88fc83e2017-04-05 08:11:14 -0700556 u32 mask_len,
557 int detail)
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100558{
559 vlib_cli_output(vm, "%U",
560 format_fib_entry,
561 ip4_fib_table_lookup(fib, address, mask_len),
Neale Ranns88fc83e2017-04-05 08:11:14 -0700562 (detail ?
563 FIB_ENTRY_FORMAT_DETAIL2 :
564 FIB_ENTRY_FORMAT_DETAIL));
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100565}
566
Neale Rannsc87aafa2017-11-29 00:59:31 -0800567u8 *
568format_ip4_fib_table_memory (u8 * s, va_list * args)
569{
Dave Barach6a5adc32018-07-04 10:56:23 -0400570#if USE_DLMALLOC == 0
Neale Rannsc87aafa2017-11-29 00:59:31 -0800571 s = format(s, "%=30s %=6d %=8ld\n",
572 "IPv4 unicast",
Neale Ranns1ec36522017-11-29 05:20:37 -0800573 pool_elts(ip4_main.fibs),
574 mheap_bytes(ip4_main.mtrie_mheap));
Dave Barach6a5adc32018-07-04 10:56:23 -0400575#else
576 s = format(s, "%=30s %=6d %=8ld\n",
577 "IPv4 unicast",
578 pool_elts(ip4_main.fibs),
579 mspace_footprint(ip4_main.mtrie_mheap));
580#endif
581
Neale Rannsc87aafa2017-11-29 00:59:31 -0800582
583 return (s);
584}
585
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100586static clib_error_t *
587ip4_show_fib (vlib_main_t * vm,
588 unformat_input_t * input,
589 vlib_cli_command_t * cmd)
590{
591 ip4_main_t * im4 = &ip4_main;
592 fib_table_t * fib_table;
Neale Rannsc87aafa2017-11-29 00:59:31 -0800593 u64 total_mtrie_memory, total_hash_memory;
594 int verbose, matching, mtrie, memory;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100595 ip4_address_t matching_address;
596 u32 matching_mask = 32;
597 int i, table_id = -1, fib_index = ~0;
Neale Ranns88fc83e2017-04-05 08:11:14 -0700598 int detail = 0;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100599
600 verbose = 1;
Neale Rannsc87aafa2017-11-29 00:59:31 -0800601 matching = mtrie = memory = 0;
602 total_hash_memory = total_mtrie_memory = 0;
603
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100604 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
605 {
606 if (unformat (input, "brief") || unformat (input, "summary")
607 || unformat (input, "sum"))
608 verbose = 0;
609
Neale Ranns88fc83e2017-04-05 08:11:14 -0700610 else if (unformat (input, "detail") || unformat (input, "det"))
611 detail = 1;
612
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100613 else if (unformat (input, "mtrie"))
614 mtrie = 1;
615
Neale Rannsc87aafa2017-11-29 00:59:31 -0800616 else if (unformat (input, "mem") ||
617 unformat (input, "memory"))
618 memory = 1;
619
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100620 else if (unformat (input, "%U/%d",
621 unformat_ip4_address, &matching_address, &matching_mask))
622 matching = 1;
623
624 else if (unformat (input, "%U", unformat_ip4_address, &matching_address))
625 matching = 1;
626
627 else if (unformat (input, "table %d", &table_id))
628 ;
629 else if (unformat (input, "index %d", &fib_index))
630 ;
631 else
632 break;
633 }
634
635 pool_foreach (fib_table, im4->fibs,
636 ({
Neale Rannsa3af3372017-03-28 03:49:52 -0700637 ip4_fib_t *fib = pool_elt_at_index(im4->v4_fibs, fib_table->ft_index);
Neale Ranns15002542017-09-10 04:39:11 -0700638 fib_source_t source;
639 u8 *s = NULL;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100640
641 if (table_id >= 0 && table_id != (int)fib->table_id)
642 continue;
643 if (fib_index != ~0 && fib_index != (int)fib->index)
644 continue;
645
Neale Rannsc87aafa2017-11-29 00:59:31 -0800646 if (memory)
647 {
648 uword mtrie_size, hash_size;
649
650 mtrie_size = ip4_fib_mtrie_memory_usage(&fib->mtrie);
651 hash_size = 0;
652
653 for (i = 0; i < ARRAY_LEN (fib->fib_entry_by_dst_address); i++)
654 {
655 uword * hash = fib->fib_entry_by_dst_address[i];
656 if (NULL != hash)
657 {
658 hash_size += hash_bytes(hash);
659 }
660 }
661 if (verbose)
662 vlib_cli_output (vm, "%U mtrie:%d hash:%d",
663 format_fib_table_name, fib->index,
664 FIB_PROTOCOL_IP4,
665 mtrie_size,
666 hash_size);
667 total_mtrie_memory += mtrie_size;
668 total_hash_memory += hash_size;
669 continue;
670 }
671
Neale Ranns15002542017-09-10 04:39:11 -0700672 s = format(s, "%U, fib_index:%d, flow hash:[%U] locks:[",
673 format_fib_table_name, fib->index,
674 FIB_PROTOCOL_IP4,
675 fib->index,
676 format_ip_flow_hash_config,
677 fib_table->ft_flow_hash_config);
678 FOR_EACH_FIB_SOURCE(source)
679 {
680 if (0 != fib_table->ft_locks[source])
681 {
682 s = format(s, "%U:%d, ",
683 format_fib_source, source,
684 fib_table->ft_locks[source]);
685 }
686 }
687 s = format (s, "]");
Neale Ranns2297af02017-09-12 09:45:04 -0700688 vlib_cli_output (vm, "%v", s);
Neale Ranns15002542017-09-10 04:39:11 -0700689 vec_free(s);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100690
691 /* Show summary? */
Neale Ranns39194252017-11-27 01:03:25 -0800692 if (mtrie)
693 {
694 vlib_cli_output (vm, "%U", format_ip4_fib_mtrie, &fib->mtrie, verbose);
695 continue;
696 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100697 if (! verbose)
698 {
699 vlib_cli_output (vm, "%=20s%=16s", "Prefix length", "Count");
700 for (i = 0; i < ARRAY_LEN (fib->fib_entry_by_dst_address); i++)
701 {
702 uword * hash = fib->fib_entry_by_dst_address[i];
703 uword n_elts = hash_elts (hash);
704 if (n_elts > 0)
705 vlib_cli_output (vm, "%20d%16d", i, n_elts);
706 }
707 continue;
708 }
709
710 if (!matching)
711 {
712 ip4_fib_table_show_all(fib, vm);
713 }
714 else
715 {
Neale Ranns88fc83e2017-04-05 08:11:14 -0700716 ip4_fib_table_show_one(fib, vm, &matching_address,
717 matching_mask, detail);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100718 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100719 }));
720
Neale Rannsc87aafa2017-11-29 00:59:31 -0800721 if (memory)
722 vlib_cli_output (vm, "totals: mtrie:%ld hash:%ld all:%ld",
723 total_mtrie_memory,
724 total_hash_memory,
725 total_mtrie_memory + total_hash_memory);
726
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100727 return 0;
728}
729
730/*?
Billy McFall0683c9c2016-10-13 08:27:31 -0400731 * This command displays the IPv4 FIB Tables (VRF Tables) and the route
732 * entries for each table.
733 *
734 * @note This command will run for a long time when the FIB tables are
735 * comprised of millions of entries. For those senarios, consider displaying
736 * a single table or summary mode.
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100737 *
738 * @cliexpar
Billy McFall0683c9c2016-10-13 08:27:31 -0400739 * Example of how to display all the IPv4 FIB tables:
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100740 * @cliexstart{show ip fib}
Billy McFallebb9a6a2016-10-17 11:35:32 -0400741 * ipv4-VRF:0, fib_index 0, flow hash: src dst sport dport proto
742 * 0.0.0.0/0
743 * unicast-ip4-chain
744 * [@0]: dpo-load-balance: [index:0 buckets:1 uRPF:0 to:[0:0]]
745 * [0] [@0]: dpo-drop ip6
746 * 0.0.0.0/32
747 * unicast-ip4-chain
748 * [@0]: dpo-load-balance: [index:1 buckets:1 uRPF:1 to:[0:0]]
749 * [0] [@0]: dpo-drop ip6
750 * 6.0.1.2/32
751 * unicast-ip4-chain
752 * [@0]: dpo-load-balance: [index:30 buckets:1 uRPF:29 to:[0:0]]
753 * [0] [@3]: arp-ipv4: via 6.0.0.1 af_packet0
754 * 7.0.0.1/32
755 * unicast-ip4-chain
756 * [@0]: dpo-load-balance: [index:31 buckets:4 uRPF:30 to:[0:0]]
757 * [0] [@3]: arp-ipv4: via 6.0.0.2 af_packet0
758 * [1] [@3]: arp-ipv4: via 6.0.0.2 af_packet0
759 * [2] [@3]: arp-ipv4: via 6.0.0.2 af_packet0
760 * [3] [@3]: arp-ipv4: via 6.0.0.1 af_packet0
761 * 224.0.0.0/8
762 * unicast-ip4-chain
763 * [@0]: dpo-load-balance: [index:3 buckets:1 uRPF:3 to:[0:0]]
764 * [0] [@0]: dpo-drop ip6
765 * 240.0.0.0/8
766 * unicast-ip4-chain
767 * [@0]: dpo-load-balance: [index:2 buckets:1 uRPF:2 to:[0:0]]
768 * [0] [@0]: dpo-drop ip6
769 * 255.255.255.255/32
770 * unicast-ip4-chain
771 * [@0]: dpo-load-balance: [index:4 buckets:1 uRPF:4 to:[0:0]]
772 * [0] [@0]: dpo-drop ip6
773 * ipv4-VRF:7, fib_index 1, flow hash: src dst sport dport proto
774 * 0.0.0.0/0
775 * unicast-ip4-chain
776 * [@0]: dpo-load-balance: [index:12 buckets:1 uRPF:11 to:[0:0]]
777 * [0] [@0]: dpo-drop ip6
778 * 0.0.0.0/32
779 * unicast-ip4-chain
780 * [@0]: dpo-load-balance: [index:13 buckets:1 uRPF:12 to:[0:0]]
781 * [0] [@0]: dpo-drop ip6
782 * 172.16.1.0/24
783 * unicast-ip4-chain
784 * [@0]: dpo-load-balance: [index:17 buckets:1 uRPF:16 to:[0:0]]
785 * [0] [@4]: ipv4-glean: af_packet0
786 * 172.16.1.1/32
787 * unicast-ip4-chain
788 * [@0]: dpo-load-balance: [index:18 buckets:1 uRPF:17 to:[1:84]]
789 * [0] [@2]: dpo-receive: 172.16.1.1 on af_packet0
790 * 172.16.1.2/32
791 * unicast-ip4-chain
792 * [@0]: dpo-load-balance: [index:21 buckets:1 uRPF:20 to:[0:0]]
793 * [0] [@5]: ipv4 via 172.16.1.2 af_packet0: IP4: 02:fe:9e:70:7a:2b -> 26:a5:f6:9c:3a:36
794 * 172.16.2.0/24
795 * unicast-ip4-chain
796 * [@0]: dpo-load-balance: [index:19 buckets:1 uRPF:18 to:[0:0]]
797 * [0] [@4]: ipv4-glean: af_packet1
798 * 172.16.2.1/32
799 * unicast-ip4-chain
800 * [@0]: dpo-load-balance: [index:20 buckets:1 uRPF:19 to:[0:0]]
801 * [0] [@2]: dpo-receive: 172.16.2.1 on af_packet1
802 * 224.0.0.0/8
803 * unicast-ip4-chain
804 * [@0]: dpo-load-balance: [index:15 buckets:1 uRPF:14 to:[0:0]]
805 * [0] [@0]: dpo-drop ip6
806 * 240.0.0.0/8
807 * unicast-ip4-chain
808 * [@0]: dpo-load-balance: [index:14 buckets:1 uRPF:13 to:[0:0]]
809 * [0] [@0]: dpo-drop ip6
810 * 255.255.255.255/32
811 * unicast-ip4-chain
812 * [@0]: dpo-load-balance: [index:16 buckets:1 uRPF:15 to:[0:0]]
813 * [0] [@0]: dpo-drop ip6
Billy McFall0683c9c2016-10-13 08:27:31 -0400814 * @cliexend
815 * Example of how to display a single IPv4 FIB table:
816 * @cliexstart{show ip fib table 7}
Billy McFallebb9a6a2016-10-17 11:35:32 -0400817 * ipv4-VRF:7, fib_index 1, flow hash: src dst sport dport proto
818 * 0.0.0.0/0
819 * unicast-ip4-chain
820 * [@0]: dpo-load-balance: [index:12 buckets:1 uRPF:11 to:[0:0]]
821 * [0] [@0]: dpo-drop ip6
822 * 0.0.0.0/32
823 * unicast-ip4-chain
824 * [@0]: dpo-load-balance: [index:13 buckets:1 uRPF:12 to:[0:0]]
825 * [0] [@0]: dpo-drop ip6
826 * 172.16.1.0/24
827 * unicast-ip4-chain
828 * [@0]: dpo-load-balance: [index:17 buckets:1 uRPF:16 to:[0:0]]
829 * [0] [@4]: ipv4-glean: af_packet0
830 * 172.16.1.1/32
831 * unicast-ip4-chain
832 * [@0]: dpo-load-balance: [index:18 buckets:1 uRPF:17 to:[1:84]]
833 * [0] [@2]: dpo-receive: 172.16.1.1 on af_packet0
834 * 172.16.1.2/32
835 * unicast-ip4-chain
836 * [@0]: dpo-load-balance: [index:21 buckets:1 uRPF:20 to:[0:0]]
837 * [0] [@5]: ipv4 via 172.16.1.2 af_packet0: IP4: 02:fe:9e:70:7a:2b -> 26:a5:f6:9c:3a:36
838 * 172.16.2.0/24
839 * unicast-ip4-chain
840 * [@0]: dpo-load-balance: [index:19 buckets:1 uRPF:18 to:[0:0]]
841 * [0] [@4]: ipv4-glean: af_packet1
842 * 172.16.2.1/32
843 * unicast-ip4-chain
844 * [@0]: dpo-load-balance: [index:20 buckets:1 uRPF:19 to:[0:0]]
845 * [0] [@2]: dpo-receive: 172.16.2.1 on af_packet1
846 * 224.0.0.0/8
847 * unicast-ip4-chain
848 * [@0]: dpo-load-balance: [index:15 buckets:1 uRPF:14 to:[0:0]]
849 * [0] [@0]: dpo-drop ip6
850 * 240.0.0.0/8
851 * unicast-ip4-chain
852 * [@0]: dpo-load-balance: [index:14 buckets:1 uRPF:13 to:[0:0]]
853 * [0] [@0]: dpo-drop ip6
854 * 255.255.255.255/32
855 * unicast-ip4-chain
856 * [@0]: dpo-load-balance: [index:16 buckets:1 uRPF:15 to:[0:0]]
857 * [0] [@0]: dpo-drop ip6
Billy McFall0683c9c2016-10-13 08:27:31 -0400858 * @cliexend
859 * Example of how to display a summary of all IPv4 FIB tables:
860 * @cliexstart{show ip fib summary}
Billy McFallebb9a6a2016-10-17 11:35:32 -0400861 * ipv4-VRF:0, fib_index 0, flow hash: src dst sport dport proto
Billy McFall0683c9c2016-10-13 08:27:31 -0400862 * Prefix length Count
Billy McFallebb9a6a2016-10-17 11:35:32 -0400863 * 0 1
864 * 8 2
865 * 32 4
866 * ipv4-VRF:7, fib_index 1, flow hash: src dst sport dport proto
Billy McFall0683c9c2016-10-13 08:27:31 -0400867 * Prefix length Count
Billy McFallebb9a6a2016-10-17 11:35:32 -0400868 * 0 1
869 * 8 2
870 * 24 2
871 * 32 4
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100872 * @cliexend
873 ?*/
Billy McFall0683c9c2016-10-13 08:27:31 -0400874/* *INDENT-OFF* */
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100875VLIB_CLI_COMMAND (ip4_show_fib_command, static) = {
876 .path = "show ip fib",
Neale Ranns88fc83e2017-04-05 08:11:14 -0700877 .short_help = "show ip fib [summary] [table <table-id>] [index <fib-id>] [<ip4-addr>[/<mask>]] [mtrie] [detail]",
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100878 .function = ip4_show_fib,
879};
Billy McFall0683c9c2016-10-13 08:27:31 -0400880/* *INDENT-ON* */