dpdk: Add support for Mellanox ConnectX-4 devices
[vpp.git] / src / vnet / fib / ip4_fib.c
1 /*
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  */
23 typedef 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
29 static 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         /*
56          * 240.0.0.0/4
57          * drop class E
58          */
59         .ift_prefix = {
60             .fp_addr = {
61                 .ip4.data_u32 = 0xf0000000,
62             },
63             .fp_len   = 4,
64             .fp_proto = FIB_PROTOCOL_IP4,
65         },
66         .ift_source = FIB_SOURCE_SPECIAL,
67         .ift_flag   = FIB_ENTRY_FLAG_DROP,
68
69     },
70     {
71         /*
72          * 224.0.0.0/4
73          * drop all mcast
74          */
75         .ift_prefix = {
76             .fp_addr = {
77                 .ip4.data_u32 = 0xe0000000,
78             },
79             .fp_len   = 4,
80             .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
103 static u32
104 ip4_create_fib_with_table_id (u32 table_id)
105 {
106     fib_table_t *fib_table;
107
108     pool_get_aligned(ip4_main.fibs, fib_table, CLIB_CACHE_LINE_BYTES);
109     memset(fib_table, 0, sizeof(*fib_table));
110
111     fib_table->ft_proto = FIB_PROTOCOL_IP4;
112     fib_table->ft_index =
113         fib_table->v4.index =
114             (fib_table - ip4_main.fibs);
115
116     hash_set (ip4_main.fib_index_by_table_id, table_id, fib_table->ft_index);
117
118     fib_table->ft_table_id =
119         fib_table->v4.table_id =
120             table_id;
121     fib_table->ft_flow_hash_config = 
122         fib_table->v4.flow_hash_config =
123             IP_FLOW_HASH_DEFAULT;
124     fib_table->v4.fwd_classify_table_index = ~0;
125     fib_table->v4.rev_classify_table_index = ~0;
126     
127     fib_table_lock(fib_table->ft_index, FIB_PROTOCOL_IP4);
128
129     ip4_mtrie_init(&fib_table->v4.mtrie);
130
131     /*
132      * add the special entries into the new FIB
133      */
134     int ii;
135
136     for (ii = 0; ii < ARRAY_LEN(ip4_specials); ii++)
137     {
138         fib_prefix_t prefix = ip4_specials[ii].ift_prefix;
139
140         prefix.fp_addr.ip4.data_u32 =
141             clib_host_to_net_u32(prefix.fp_addr.ip4.data_u32);
142
143         fib_table_entry_special_add(fib_table->ft_index,
144                                     &prefix,
145                                     ip4_specials[ii].ift_source,
146                                     ip4_specials[ii].ift_flag,
147                                     ADJ_INDEX_INVALID);
148     }
149
150     return (fib_table->ft_index);
151 }
152
153 void
154 ip4_fib_table_destroy (ip4_fib_t *fib)
155 {
156     fib_table_t *fib_table = (fib_table_t*)fib;
157     int ii;
158
159     /*
160      * remove all the specials we added when the table was created.
161      */
162     for (ii = 0; ii < ARRAY_LEN(ip4_specials); ii++)
163     {
164         fib_prefix_t prefix = ip4_specials[ii].ift_prefix;
165
166         prefix.fp_addr.ip4.data_u32 =
167             clib_host_to_net_u32(prefix.fp_addr.ip4.data_u32);
168
169         fib_table_entry_special_remove(fib_table->ft_index,
170                                        &prefix,
171                                        ip4_specials[ii].ift_source);
172     }
173
174     /*
175      * validate no more routes.
176      */
177     ASSERT(0 == fib_table->ft_total_route_counts);
178     FOR_EACH_FIB_SOURCE(ii)
179     {
180         ASSERT(0 == fib_table->ft_src_route_counts[ii]);
181     }
182
183     if (~0 != fib_table->ft_table_id)
184     {
185         hash_unset (ip4_main.fib_index_by_table_id, fib_table->ft_table_id);
186     }
187     pool_put(ip4_main.fibs, fib_table);
188 }
189
190
191 u32
192 ip4_fib_table_find_or_create_and_lock (u32 table_id)
193 {
194     u32 index;
195
196     index = ip4_fib_index_from_table_id(table_id);
197     if (~0 == index)
198         return ip4_create_fib_with_table_id(table_id);
199
200     fib_table_lock(index, FIB_PROTOCOL_IP4);
201
202     return (index);
203 }
204
205 u32
206 ip4_fib_table_create_and_lock (void)
207 {
208     return (ip4_create_fib_with_table_id(~0));
209 }
210
211 u32
212 ip4_fib_table_get_index_for_sw_if_index (u32 sw_if_index)
213 {
214     if (sw_if_index >= vec_len(ip4_main.fib_index_by_sw_if_index))
215     {
216         /*
217          * This is the case for interfaces that are not yet mapped to
218          * a IP table
219          */
220         return (~0);
221     }
222     return (ip4_main.fib_index_by_sw_if_index[sw_if_index]);
223 }
224
225 flow_hash_config_t
226 ip4_fib_table_get_flow_hash_config (u32 fib_index)
227 {
228     return (ip4_fib_get(fib_index)->flow_hash_config);
229 }
230
231 /*
232  * ip4_fib_table_lookup_exact_match
233  *
234  * Exact match prefix lookup
235  */
236 fib_node_index_t
237 ip4_fib_table_lookup_exact_match (const ip4_fib_t *fib,
238                                   const ip4_address_t *addr,
239                                   u32 len)
240 {
241     uword * hash, * result;
242     u32 key;
243
244     hash = fib->fib_entry_by_dst_address[len];
245     key  = (addr->data_u32 & ip4_main.fib_masks[len]);
246
247     result = hash_get(hash, key);
248
249     if (NULL != result) {
250         return (result[0]);
251     }
252     return (FIB_NODE_INDEX_INVALID);
253 }
254
255 /*
256  * ip4_fib_table_lookup_adj
257  *
258  * Longest prefix match
259  */
260 index_t
261 ip4_fib_table_lookup_lb (ip4_fib_t *fib,
262                          const ip4_address_t *addr)
263 {
264     fib_node_index_t fei;
265
266     fei = ip4_fib_table_lookup(fib, addr, 32);
267
268     if (FIB_NODE_INDEX_INVALID != fei)
269     {
270         const dpo_id_t *dpo;
271
272         dpo = fib_entry_contribute_ip_forwarding(fei);
273
274         return (dpo->dpoi_index);
275     }
276     return (INDEX_INVALID);
277 }
278
279 /*
280  * ip4_fib_table_lookup
281  *
282  * Longest prefix match
283  */
284 fib_node_index_t
285 ip4_fib_table_lookup (const ip4_fib_t *fib,
286                       const ip4_address_t *addr,
287                       u32 len)
288 {
289     uword * hash, * result;
290     i32 mask_len;
291     u32 key;
292
293     for (mask_len = len; mask_len >= 0; mask_len--)
294     {
295         hash = fib->fib_entry_by_dst_address[mask_len];
296         key = (addr->data_u32 & ip4_main.fib_masks[mask_len]);
297
298         result = hash_get (hash, key);
299
300         if (NULL != result) {
301             return (result[0]);
302         }
303     }
304     return (FIB_NODE_INDEX_INVALID);
305 }
306
307 void
308 ip4_fib_table_entry_insert (ip4_fib_t *fib,
309                             const ip4_address_t *addr,
310                             u32 len,
311                             fib_node_index_t fib_entry_index)
312 {
313     uword * hash, * result;
314     u32 key;
315
316     key = (addr->data_u32 & ip4_main.fib_masks[len]);
317     hash = fib->fib_entry_by_dst_address[len];
318     result = hash_get (hash, key);
319
320     if (NULL == result) {
321         /*
322          * adding a new entry
323          */
324         if (NULL == hash) {
325             hash = hash_create (32 /* elts */, sizeof (uword));
326             hash_set_flags (hash, HASH_FLAG_NO_AUTO_SHRINK);
327         }
328         hash = hash_set(hash, key, fib_entry_index);
329         fib->fib_entry_by_dst_address[len] = hash;
330     }
331     else
332     {
333         ASSERT(0);
334     }
335 }
336
337 void
338 ip4_fib_table_entry_remove (ip4_fib_t *fib,
339                             const ip4_address_t *addr,
340                             u32 len)
341 {
342     uword * hash, * result;
343     u32 key;
344
345     key = (addr->data_u32 & ip4_main.fib_masks[len]);
346     hash = fib->fib_entry_by_dst_address[len];
347     result = hash_get (hash, key);
348
349     if (NULL == result)
350     {
351         /*
352          * removing a non-existant entry. i'll allow it.
353          */
354     }
355     else 
356     {
357         hash_unset(hash, key);
358     }
359
360     fib->fib_entry_by_dst_address[len] = hash;
361 }
362
363 void
364 ip4_fib_table_fwding_dpo_update (ip4_fib_t *fib,
365                                  const ip4_address_t *addr,
366                                  u32 len,
367                                  const dpo_id_t *dpo)
368 {
369     ip4_fib_mtrie_add_del_route(fib, *addr, len, dpo->dpoi_index, 0); // ADD
370 }
371
372 void
373 ip4_fib_table_fwding_dpo_remove (ip4_fib_t *fib,
374                                  const ip4_address_t *addr,
375                                  u32 len,
376                                  const dpo_id_t *dpo)
377 {
378     ip4_fib_mtrie_add_del_route(fib, *addr, len, dpo->dpoi_index, 1); // DELETE
379 }
380
381 static void
382 ip4_fib_table_show_all (ip4_fib_t *fib,
383                         vlib_main_t * vm)
384 {
385     fib_node_index_t *fib_entry_indicies;
386     fib_node_index_t *fib_entry_index;
387     int i;
388
389     fib_entry_indicies = NULL;
390
391     for (i = 0; i < ARRAY_LEN (fib->fib_entry_by_dst_address); i++)
392     {
393         uword * hash = fib->fib_entry_by_dst_address[i];
394
395         if (NULL != hash)
396         {
397             hash_pair_t * p;
398
399             hash_foreach_pair (p, hash,
400             ({
401                 vec_add1(fib_entry_indicies, p->value[0]);
402             }));
403         }
404     }
405
406     vec_sort_with_function(fib_entry_indicies, fib_entry_cmp_for_sort);
407
408     vec_foreach(fib_entry_index, fib_entry_indicies)
409     {
410         vlib_cli_output(vm, "%U",
411                         format_fib_entry,
412                         *fib_entry_index,
413                         FIB_ENTRY_FORMAT_BRIEF);
414     }
415
416     vec_free(fib_entry_indicies);
417 }
418
419 static void
420 ip4_fib_table_show_one (ip4_fib_t *fib,
421                         vlib_main_t * vm,
422                         ip4_address_t *address,
423                         u32 mask_len)
424 {    
425     vlib_cli_output(vm, "%U",
426                     format_fib_entry,
427                     ip4_fib_table_lookup(fib, address, mask_len),
428                     FIB_ENTRY_FORMAT_DETAIL);
429 }
430
431 static clib_error_t *
432 ip4_show_fib (vlib_main_t * vm,
433               unformat_input_t * input,
434               vlib_cli_command_t * cmd)
435 {
436     ip4_main_t * im4 = &ip4_main;
437     fib_table_t * fib_table;
438     int verbose, matching, mtrie;
439     ip4_address_t matching_address;
440     u32 matching_mask = 32;
441     int i, table_id = -1, fib_index = ~0;
442
443     verbose = 1;
444     matching = 0;
445     mtrie = 0;
446     while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
447     {
448         if (unformat (input, "brief") || unformat (input, "summary")
449             || unformat (input, "sum"))
450             verbose = 0;
451
452         else if (unformat (input, "mtrie"))
453             mtrie = 1;
454
455         else if (unformat (input, "%U/%d",
456                            unformat_ip4_address, &matching_address, &matching_mask))
457             matching = 1;
458
459         else if (unformat (input, "%U", unformat_ip4_address, &matching_address))
460             matching = 1;
461
462         else if (unformat (input, "table %d", &table_id))
463             ;
464         else if (unformat (input, "index %d", &fib_index))
465             ;
466         else
467             break;
468     }
469
470     pool_foreach (fib_table, im4->fibs,
471     ({
472         ip4_fib_t *fib = &fib_table->v4;
473
474         if (table_id >= 0 && table_id != (int)fib->table_id)
475             continue;
476         if (fib_index != ~0 && fib_index != (int)fib->index)
477             continue;
478
479         vlib_cli_output (vm, "%U, fib_index %d, flow hash: %U", 
480                          format_fib_table_name, fib->index, FIB_PROTOCOL_IP4,
481                          fib->index,
482                          format_ip_flow_hash_config, fib->flow_hash_config);
483
484         /* Show summary? */
485         if (! verbose)
486         {
487             vlib_cli_output (vm, "%=20s%=16s", "Prefix length", "Count");
488             for (i = 0; i < ARRAY_LEN (fib->fib_entry_by_dst_address); i++)
489             {
490                 uword * hash = fib->fib_entry_by_dst_address[i];
491                 uword n_elts = hash_elts (hash);
492                 if (n_elts > 0)
493                     vlib_cli_output (vm, "%20d%16d", i, n_elts);
494             }
495             continue;
496         }
497
498         if (!matching)
499         {
500             ip4_fib_table_show_all(fib, vm);
501         }
502         else
503         {
504             ip4_fib_table_show_one(fib, vm, &matching_address, matching_mask);
505         }
506
507         if (mtrie)
508             vlib_cli_output (vm, "%U", format_ip4_fib_mtrie, &fib->mtrie);
509     }));
510
511     return 0;
512 }
513
514 /*?
515  * This command displays the IPv4 FIB Tables (VRF Tables) and the route
516  * entries for each table.
517  *
518  * @note This command will run for a long time when the FIB tables are
519  * comprised of millions of entries. For those senarios, consider displaying
520  * a single table or summary mode.
521  *
522  * @cliexpar
523  * Example of how to display all the IPv4 FIB tables:
524  * @cliexstart{show ip fib}
525  * ipv4-VRF:0, fib_index 0, flow hash: src dst sport dport proto
526  * 0.0.0.0/0
527  *   unicast-ip4-chain
528  *   [@0]: dpo-load-balance: [index:0 buckets:1 uRPF:0 to:[0:0]]
529  *     [0] [@0]: dpo-drop ip6
530  * 0.0.0.0/32
531  *   unicast-ip4-chain
532  *   [@0]: dpo-load-balance: [index:1 buckets:1 uRPF:1 to:[0:0]]
533  *     [0] [@0]: dpo-drop ip6
534  * 6.0.1.2/32
535  *   unicast-ip4-chain
536  *   [@0]: dpo-load-balance: [index:30 buckets:1 uRPF:29 to:[0:0]]
537  *     [0] [@3]: arp-ipv4: via 6.0.0.1 af_packet0
538  * 7.0.0.1/32
539  *   unicast-ip4-chain
540  *   [@0]: dpo-load-balance: [index:31 buckets:4 uRPF:30 to:[0:0]]
541  *     [0] [@3]: arp-ipv4: via 6.0.0.2 af_packet0
542  *     [1] [@3]: arp-ipv4: via 6.0.0.2 af_packet0
543  *     [2] [@3]: arp-ipv4: via 6.0.0.2 af_packet0
544  *     [3] [@3]: arp-ipv4: via 6.0.0.1 af_packet0
545  * 224.0.0.0/8
546  *   unicast-ip4-chain
547  *   [@0]: dpo-load-balance: [index:3 buckets:1 uRPF:3 to:[0:0]]
548  *     [0] [@0]: dpo-drop ip6
549  * 240.0.0.0/8
550  *   unicast-ip4-chain
551  *   [@0]: dpo-load-balance: [index:2 buckets:1 uRPF:2 to:[0:0]]
552  *     [0] [@0]: dpo-drop ip6
553  * 255.255.255.255/32
554  *   unicast-ip4-chain
555  *   [@0]: dpo-load-balance: [index:4 buckets:1 uRPF:4 to:[0:0]]
556  *     [0] [@0]: dpo-drop ip6
557  * ipv4-VRF:7, fib_index 1, flow hash: src dst sport dport proto
558  * 0.0.0.0/0
559  *   unicast-ip4-chain
560  *   [@0]: dpo-load-balance: [index:12 buckets:1 uRPF:11 to:[0:0]]
561  *     [0] [@0]: dpo-drop ip6
562  * 0.0.0.0/32
563  *   unicast-ip4-chain
564  *   [@0]: dpo-load-balance: [index:13 buckets:1 uRPF:12 to:[0:0]]
565  *     [0] [@0]: dpo-drop ip6
566  * 172.16.1.0/24
567  *   unicast-ip4-chain
568  *   [@0]: dpo-load-balance: [index:17 buckets:1 uRPF:16 to:[0:0]]
569  *     [0] [@4]: ipv4-glean: af_packet0
570  * 172.16.1.1/32
571  *   unicast-ip4-chain
572  *   [@0]: dpo-load-balance: [index:18 buckets:1 uRPF:17 to:[1:84]]
573  *     [0] [@2]: dpo-receive: 172.16.1.1 on af_packet0
574  * 172.16.1.2/32
575  *   unicast-ip4-chain
576  *   [@0]: dpo-load-balance: [index:21 buckets:1 uRPF:20 to:[0:0]]
577  *     [0] [@5]: ipv4 via 172.16.1.2 af_packet0: IP4: 02:fe:9e:70:7a:2b -> 26:a5:f6:9c:3a:36
578  * 172.16.2.0/24
579  *   unicast-ip4-chain
580  *   [@0]: dpo-load-balance: [index:19 buckets:1 uRPF:18 to:[0:0]]
581  *     [0] [@4]: ipv4-glean: af_packet1
582  * 172.16.2.1/32
583  *   unicast-ip4-chain
584  *   [@0]: dpo-load-balance: [index:20 buckets:1 uRPF:19 to:[0:0]]
585  *     [0] [@2]: dpo-receive: 172.16.2.1 on af_packet1
586  * 224.0.0.0/8
587  *   unicast-ip4-chain
588  *   [@0]: dpo-load-balance: [index:15 buckets:1 uRPF:14 to:[0:0]]
589  *     [0] [@0]: dpo-drop ip6
590  * 240.0.0.0/8
591  *   unicast-ip4-chain
592  *   [@0]: dpo-load-balance: [index:14 buckets:1 uRPF:13 to:[0:0]]
593  *     [0] [@0]: dpo-drop ip6
594  * 255.255.255.255/32
595  *   unicast-ip4-chain
596  *   [@0]: dpo-load-balance: [index:16 buckets:1 uRPF:15 to:[0:0]]
597  *     [0] [@0]: dpo-drop ip6
598  * @cliexend
599  * Example of how to display a single IPv4 FIB table:
600  * @cliexstart{show ip fib table 7}
601  * ipv4-VRF:7, fib_index 1, flow hash: src dst sport dport proto
602  * 0.0.0.0/0
603  *   unicast-ip4-chain
604  *   [@0]: dpo-load-balance: [index:12 buckets:1 uRPF:11 to:[0:0]]
605  *     [0] [@0]: dpo-drop ip6
606  * 0.0.0.0/32
607  *   unicast-ip4-chain
608  *   [@0]: dpo-load-balance: [index:13 buckets:1 uRPF:12 to:[0:0]]
609  *     [0] [@0]: dpo-drop ip6
610  * 172.16.1.0/24
611  *   unicast-ip4-chain
612  *   [@0]: dpo-load-balance: [index:17 buckets:1 uRPF:16 to:[0:0]]
613  *     [0] [@4]: ipv4-glean: af_packet0
614  * 172.16.1.1/32
615  *   unicast-ip4-chain
616  *   [@0]: dpo-load-balance: [index:18 buckets:1 uRPF:17 to:[1:84]]
617  *     [0] [@2]: dpo-receive: 172.16.1.1 on af_packet0
618  * 172.16.1.2/32
619  *   unicast-ip4-chain
620  *   [@0]: dpo-load-balance: [index:21 buckets:1 uRPF:20 to:[0:0]]
621  *     [0] [@5]: ipv4 via 172.16.1.2 af_packet0: IP4: 02:fe:9e:70:7a:2b -> 26:a5:f6:9c:3a:36
622  * 172.16.2.0/24
623  *   unicast-ip4-chain
624  *   [@0]: dpo-load-balance: [index:19 buckets:1 uRPF:18 to:[0:0]]
625  *     [0] [@4]: ipv4-glean: af_packet1
626  * 172.16.2.1/32
627  *   unicast-ip4-chain
628  *   [@0]: dpo-load-balance: [index:20 buckets:1 uRPF:19 to:[0:0]]
629  *     [0] [@2]: dpo-receive: 172.16.2.1 on af_packet1
630  * 224.0.0.0/8
631  *   unicast-ip4-chain
632  *   [@0]: dpo-load-balance: [index:15 buckets:1 uRPF:14 to:[0:0]]
633  *     [0] [@0]: dpo-drop ip6
634  * 240.0.0.0/8
635  *   unicast-ip4-chain
636  *   [@0]: dpo-load-balance: [index:14 buckets:1 uRPF:13 to:[0:0]]
637  *     [0] [@0]: dpo-drop ip6
638  * 255.255.255.255/32
639  *   unicast-ip4-chain
640  *   [@0]: dpo-load-balance: [index:16 buckets:1 uRPF:15 to:[0:0]]
641  *     [0] [@0]: dpo-drop ip6
642  * @cliexend
643  * Example of how to display a summary of all IPv4 FIB tables:
644  * @cliexstart{show ip fib summary}
645  * ipv4-VRF:0, fib_index 0, flow hash: src dst sport dport proto
646  *     Prefix length         Count
647  *                    0               1
648  *                    8               2
649  *                   32               4
650  * ipv4-VRF:7, fib_index 1, flow hash: src dst sport dport proto
651  *     Prefix length         Count
652  *                    0               1
653  *                    8               2
654  *                   24               2
655  *                   32               4
656  * @cliexend
657  ?*/
658 /* *INDENT-OFF* */
659 VLIB_CLI_COMMAND (ip4_show_fib_command, static) = {
660     .path = "show ip fib",
661     .short_help = "show ip fib [summary] [table <table-id>] [index <fib-id>] [<ip4-addr>[/<mask>]] [mtrie]",
662     .function = ip4_show_fib,
663 };
664 /* *INDENT-ON* */