blob: aa9fdb9a98b5f015230ca7f13652e5596b08d3eb [file] [log] [blame]
Neale Ranns32e1c012016-11-22 17:07:28 +00001/*
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/mfib/ip6_mfib.h>
17
18#include <vnet/mfib/mfib_table.h>
19#include <vnet/mfib/mfib_entry.h>
20#include <vnet/fib/ip6_fib.h>
21
22/**
Neale Ranns32e1c012016-11-22 17:07:28 +000023 * Key and mask for radix
24 */
Neale Rannsae809832018-11-23 09:00:27 -080025typedef clib_bihash_kv_40_8_t ip6_mfib_key_t;
Neale Ranns32e1c012016-11-22 17:07:28 +000026
27static const mfib_prefix_t all_zeros = {
28 /* (*,*) */
29 .fp_src_addr = {
30 .ip6.as_u64 = {0, 0},
31 },
32 .fp_grp_addr = {
33 .ip6.as_u64 = {0, 0},
34 },
35 .fp_len = 0,
36 .fp_proto = FIB_PROTOCOL_IP6,
37};
38
39typedef enum ip6_mfib_special_type_t_ {
40 IP6_MFIB_SPECIAL_TYPE_NONE,
41 IP6_MFIB_SPECIAL_TYPE_SOLICITED,
42} ip6_mfib_special_type_t;
43
44typedef struct ip6_mfib_special_t_ {
45 /**
46 * @brief solicited or not
47 */
48 ip6_mfib_special_type_t ims_type;
49
50 /**
51 * @brief the Prefix length
52 */
53 u8 ims_len;
54
55 /**
56 * @brief The last byte of the mcast address
57 */
58 u8 ims_byte;
59 /**
60 * @brief The scope of the address
61 */
62 u8 ims_scope;
63} ip6_mfib_special_t;
64
65static const ip6_mfib_special_t ip6_mfib_specials[] =
66{
67 {
68 /*
69 * Add ff02::1:ff00:0/104 via local route for all tables.
70 * This is required for neighbor discovery to work.
71 */
72 .ims_type = IP6_MFIB_SPECIAL_TYPE_SOLICITED,
73 .ims_len = 104,
74 },
75 {
76 /*
77 * all-routers multicast address
78 */
79 .ims_type = IP6_MFIB_SPECIAL_TYPE_NONE,
80 .ims_scope = IP6_MULTICAST_SCOPE_link_local,
81 .ims_byte = IP6_MULTICAST_GROUP_ID_all_routers,
82 .ims_len = 128,
83 },
84 {
85 /*
86 * all-nodes multicast address
87 */
88 .ims_type = IP6_MFIB_SPECIAL_TYPE_NONE,
89 .ims_scope = IP6_MULTICAST_SCOPE_link_local,
90 .ims_byte = IP6_MULTICAST_GROUP_ID_all_hosts,
91 .ims_len = 128,
92 },
93 {
94 /*
95 * Add all-mldv2 multicast address via local route for all tables
96 */
97 .ims_type = IP6_MFIB_SPECIAL_TYPE_NONE,
98 .ims_len = 128,
99 .ims_scope = IP6_MULTICAST_SCOPE_link_local,
100 .ims_byte = IP6_MULTICAST_GROUP_ID_mldv2_routers,
101 }
102};
103
104#define FOR_EACH_IP6_SPECIAL(_pfx, _body) \
105{ \
106 const ip6_mfib_special_t *_spec; \
107 u8 _ii; \
108 for (_ii = 0; \
109 _ii < ARRAY_LEN(ip6_mfib_specials); \
110 _ii++) \
111 { \
112 _spec = &ip6_mfib_specials[_ii]; \
113 if (IP6_MFIB_SPECIAL_TYPE_SOLICITED == _spec->ims_type) \
114 { \
115 ip6_set_solicited_node_multicast_address( \
116 &(_pfx)->fp_grp_addr.ip6, 0); \
117 } \
118 else \
119 { \
120 ip6_set_reserved_multicast_address ( \
121 &(_pfx)->fp_grp_addr.ip6, \
122 _spec->ims_scope, \
123 _spec->ims_byte); \
124 } \
125 (_pfx)->fp_len = _spec->ims_len; \
126 do { _body; } while (0); \
127 } \
128}
129
130
131static u32
Neale Ranns15002542017-09-10 04:39:11 -0700132ip6_create_mfib_with_table_id (u32 table_id,
133 mfib_source_t src)
Neale Ranns32e1c012016-11-22 17:07:28 +0000134{
135 mfib_table_t *mfib_table;
136 mfib_prefix_t pfx = {
137 .fp_proto = FIB_PROTOCOL_IP6,
138 };
139 const fib_route_path_t path_for_us = {
Neale Rannsda78f952017-05-24 09:15:43 -0700140 .frp_proto = DPO_PROTO_IP6,
Neale Ranns32e1c012016-11-22 17:07:28 +0000141 .frp_addr = zero_addr,
142 .frp_sw_if_index = 0xffffffff,
143 .frp_fib_index = ~0,
144 .frp_weight = 0,
145 .frp_flags = FIB_ROUTE_PATH_LOCAL,
146 };
147
148 pool_get_aligned(ip6_main.mfibs, mfib_table, CLIB_CACHE_LINE_BYTES);
Dave Barachb7b92992018-10-17 10:38:51 -0400149 clib_memset(mfib_table, 0, sizeof(*mfib_table));
Neale Ranns32e1c012016-11-22 17:07:28 +0000150
151 mfib_table->mft_proto = FIB_PROTOCOL_IP6;
152 mfib_table->mft_index =
153 mfib_table->v6.index =
154 (mfib_table - ip6_main.mfibs);
155
156 hash_set (ip6_main.mfib_index_by_table_id,
157 table_id,
158 mfib_table->mft_index);
159
160 mfib_table->mft_table_id =
161 mfib_table->v6.table_id =
162 table_id;
163
Neale Ranns15002542017-09-10 04:39:11 -0700164 mfib_table_lock(mfib_table->mft_index, FIB_PROTOCOL_IP6, src);
Neale Ranns32e1c012016-11-22 17:07:28 +0000165
Neale Ranns32e1c012016-11-22 17:07:28 +0000166 /*
167 * add the special entries into the new FIB
168 */
169 mfib_table_entry_update(mfib_table->mft_index,
170 &all_zeros,
171 MFIB_SOURCE_DEFAULT_ROUTE,
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800172 MFIB_RPF_ID_NONE,
Neale Ranns32e1c012016-11-22 17:07:28 +0000173 MFIB_ENTRY_FLAG_DROP);
174
175 /*
176 * Add each of the specials
177 */
178 FOR_EACH_IP6_SPECIAL(&pfx,
179 ({
180 mfib_table_entry_path_update(mfib_table->mft_index,
181 &pfx,
182 MFIB_SOURCE_SPECIAL,
183 &path_for_us,
184 MFIB_ITF_FLAG_FORWARD);
185 }));
186
187 return (mfib_table->mft_index);
188}
189
190void
191ip6_mfib_table_destroy (ip6_mfib_t *mfib)
192{
193 mfib_table_t *mfib_table = (mfib_table_t*)mfib;
194 fib_node_index_t mfei;
195 mfib_prefix_t pfx = {
196 .fp_proto = FIB_PROTOCOL_IP6,
197 };
198 const fib_route_path_t path_for_us = {
Neale Rannsda78f952017-05-24 09:15:43 -0700199 .frp_proto = DPO_PROTO_IP6,
Neale Ranns32e1c012016-11-22 17:07:28 +0000200 .frp_addr = zero_addr,
201 .frp_sw_if_index = 0xffffffff,
202 .frp_fib_index = ~0,
203 .frp_weight = 0,
204 .frp_flags = FIB_ROUTE_PATH_LOCAL,
205 };
206
207 /*
208 * remove all the specials we added when the table was created.
209 */
210 FOR_EACH_IP6_SPECIAL(&pfx,
211 {
212 mfib_table_entry_path_remove(mfib_table->mft_index,
213 &pfx,
214 MFIB_SOURCE_SPECIAL,
215 &path_for_us);
216 });
217
218 mfei = mfib_table_lookup_exact_match(mfib_table->mft_index, &all_zeros);
219 mfib_table_entry_delete_index(mfei, MFIB_SOURCE_DEFAULT_ROUTE);
220
221 /*
222 * validate no more routes.
223 */
224 ASSERT(0 == mfib_table->mft_total_route_counts);
225 ASSERT(~0 != mfib_table->mft_table_id);
226
227 hash_unset (ip6_main.mfib_index_by_table_id, mfib_table->mft_table_id);
Neale Ranns32e1c012016-11-22 17:07:28 +0000228 pool_put(ip6_main.mfibs, mfib_table);
229}
230
231void
232ip6_mfib_interface_enable_disable (u32 sw_if_index, int is_enable)
233{
234 const fib_route_path_t path = {
Neale Rannsda78f952017-05-24 09:15:43 -0700235 .frp_proto = DPO_PROTO_IP6,
Neale Ranns32e1c012016-11-22 17:07:28 +0000236 .frp_addr = zero_addr,
237 .frp_sw_if_index = sw_if_index,
238 .frp_fib_index = ~0,
239 .frp_weight = 0,
240 };
241 mfib_prefix_t pfx = {
242 .fp_proto = FIB_PROTOCOL_IP6,
243 };
244 u32 mfib_index;
245
246 vec_validate (ip6_main.mfib_index_by_sw_if_index, sw_if_index);
247 mfib_index = ip6_mfib_table_get_index_for_sw_if_index(sw_if_index);
248
249 if (is_enable)
250 {
251 FOR_EACH_IP6_SPECIAL(&pfx,
252 {
253 mfib_table_entry_path_update(mfib_index,
254 &pfx,
255 MFIB_SOURCE_SPECIAL,
256 &path,
257 MFIB_ITF_FLAG_ACCEPT);
258 });
259 }
260 else
261 {
262 FOR_EACH_IP6_SPECIAL(&pfx,
263 {
264 mfib_table_entry_path_remove(mfib_index,
265 &pfx,
266 MFIB_SOURCE_SPECIAL,
267 &path);
268 });
269 }
270}
271
272u32
Neale Ranns15002542017-09-10 04:39:11 -0700273ip6_mfib_table_find_or_create_and_lock (u32 table_id,
274 mfib_source_t src)
Neale Ranns32e1c012016-11-22 17:07:28 +0000275{
276 u32 index;
277
278 index = ip6_mfib_index_from_table_id(table_id);
279 if (~0 == index)
Neale Ranns15002542017-09-10 04:39:11 -0700280 return ip6_create_mfib_with_table_id(table_id, src);
281 mfib_table_lock(index, FIB_PROTOCOL_IP6, src);
Neale Ranns32e1c012016-11-22 17:07:28 +0000282
283 return (index);
284}
285
286u32
287ip6_mfib_table_get_index_for_sw_if_index (u32 sw_if_index)
288{
289 if (sw_if_index >= vec_len(ip6_main.mfib_index_by_sw_if_index))
290 {
291 /*
292 * This is the case for interfaces that are not yet mapped to
293 * a IP table
294 */
295 return (~0);
296 }
297 return (ip6_main.mfib_index_by_sw_if_index[sw_if_index]);
298}
299
Neale Rannsae809832018-11-23 09:00:27 -0800300#define IPV6_MFIB_GRP_LEN(_len) \
301 (_len > 128 ? 128 : _len)
Neale Ranns32e1c012016-11-22 17:07:28 +0000302
Neale Rannsae809832018-11-23 09:00:27 -0800303#define IP6_MFIB_MK_KEY(_mfib, _grp, _src, _len, _key) \
304{ \
305 _key.key[0] = (_grp->as_u64[0] & \
306 ip6_main.fib_masks[IPV6_MFIB_GRP_LEN(_len)].as_u64[0]); \
307 _key.key[1] = (_grp->as_u64[1] & \
308 ip6_main.fib_masks[IPV6_MFIB_GRP_LEN(_len)].as_u64[1]); \
309 if (_len == 256) { \
310 _key.key[2] = _src->as_u64[0]; \
311 _key.key[3] = _src->as_u64[1]; \
312 } else { \
313 _key.key[2] = 0; \
314 _key.key[3] = 0; \
315 } \
316 _key.key[4] = _mfib->index; \
317 _key.key[4] = (_key.key[4] << 32) | len; \
Neale Ranns32e1c012016-11-22 17:07:28 +0000318}
319
320/*
321 * ip6_fib_table_lookup_exact_match
322 *
323 * Exact match prefix lookup
324 */
325fib_node_index_t
326ip6_mfib_table_lookup_exact_match (const ip6_mfib_t *mfib,
327 const ip6_address_t *grp,
328 const ip6_address_t *src,
329 u32 len)
330{
Neale Rannsae809832018-11-23 09:00:27 -0800331 ip6_mfib_key_t key, value;
332 int rv;
Neale Ranns32e1c012016-11-22 17:07:28 +0000333
Neale Rannsae809832018-11-23 09:00:27 -0800334 IP6_MFIB_MK_KEY(mfib, grp, src, len, key);
Neale Ranns32e1c012016-11-22 17:07:28 +0000335
Neale Rannsae809832018-11-23 09:00:27 -0800336 rv = clib_bihash_search_inline_2_40_8(&ip6_main.ip6_mtable.ip6_mhash,
337 &key, &value);
338 if (rv == 0)
339 return value.value;
Neale Ranns32e1c012016-11-22 17:07:28 +0000340
Neale Rannsae809832018-11-23 09:00:27 -0800341 return (FIB_NODE_INDEX_INVALID);
342}
343
344/*
345 * ip6_fib_table_lookup
346 *
347 * Longest prefix match for the forwarding plane (no mask given)
348 */
349fib_node_index_t
350ip6_mfib_table_fwd_lookup (const ip6_mfib_t *mfib,
351 const ip6_address_t *src,
352 const ip6_address_t *grp)
353{
354 ip6_mfib_table_instance_t *table;
355 ip6_mfib_key_t key, value;
356 int i, n, len;
357 int rv;
358
359 table = &ip6_main.ip6_mtable;
360 n = vec_len (table->prefix_lengths_in_search_order);
361
362 for (i = 0; i < n; i++)
Neale Ranns32e1c012016-11-22 17:07:28 +0000363 {
Neale Rannsae809832018-11-23 09:00:27 -0800364 len = table->prefix_lengths_in_search_order[i];
365
366 ASSERT(len >= 0 && len <= 256);
367 IP6_MFIB_MK_KEY(mfib, grp, src, len, key);
Neale Rannsae809832018-11-23 09:00:27 -0800368 rv = clib_bihash_search_inline_2_40_8(&table->ip6_mhash, &key, &value);
369 if (rv == 0)
370 return value.value;
Neale Ranns32e1c012016-11-22 17:07:28 +0000371 }
372
Neale Rannsae809832018-11-23 09:00:27 -0800373 return (FIB_NODE_INDEX_INVALID);
Neale Ranns32e1c012016-11-22 17:07:28 +0000374}
375
Neale Ranns9e829a82018-12-17 05:50:32 -0800376
377fib_node_index_t
378ip6_mfib_table_get_less_specific (const ip6_mfib_t *mfib,
379 const ip6_address_t *src,
380 const ip6_address_t *grp,
381 u32 len)
382{
383 u32 mask_len;
384
385 /*
386 * in the absence of a tree structure for the table that allows for an O(1)
387 * parent get, a cheeky way to find the cover is to LPM for the prefix with
388 * mask-1.
389 * there should always be a cover, though it may be the default route. the
390 * default route's cover is the default route.
391 */
392 if (len == 256)
393 {
394 /* go from (S,G) to (*,G*) */
395 mask_len = 128;
396 }
397 else if (len != 0)
398 {
399 mask_len = len - 1;
400 }
401 else
402 {
403 mask_len = len;
404 }
405
406 return (ip6_mfib_table_lookup(mfib, src, grp, mask_len));
407}
408
Neale Ranns32e1c012016-11-22 17:07:28 +0000409/*
410 * ip6_fib_table_lookup
411 *
412 * Longest prefix match
413 */
414fib_node_index_t
415ip6_mfib_table_lookup (const ip6_mfib_t *mfib,
416 const ip6_address_t *src,
417 const ip6_address_t *grp,
418 u32 len)
419{
Neale Rannsae809832018-11-23 09:00:27 -0800420 ip6_mfib_table_instance_t *table;
421 ip6_mfib_key_t key, value;
422 int i, n, rv;
Neale Ranns32e1c012016-11-22 17:07:28 +0000423
Neale Rannsae809832018-11-23 09:00:27 -0800424 table = &ip6_main.ip6_mtable;
425 n = vec_len (table->prefix_lengths_in_search_order);
Neale Ranns32e1c012016-11-22 17:07:28 +0000426
Neale Rannsae809832018-11-23 09:00:27 -0800427 /*
428 * start search from a mask length same length or shorter.
429 * we don't want matches longer than the mask passed
430 */
431 i = 0;
432 while (i < n && table->prefix_lengths_in_search_order[i] > len)
433 {
434 i++;
435 }
Neale Ranns32e1c012016-11-22 17:07:28 +0000436
Neale Rannsae809832018-11-23 09:00:27 -0800437 for (; i < n; i++)
438 {
439 len = table->prefix_lengths_in_search_order[i];
Neale Ranns32e1c012016-11-22 17:07:28 +0000440
Neale Rannsb7778b62018-12-21 07:00:56 -0800441 ASSERT(len <= 256);
Neale Rannsae809832018-11-23 09:00:27 -0800442 IP6_MFIB_MK_KEY(mfib, grp, src, len, key);
443
444 rv = clib_bihash_search_inline_2_40_8(&table->ip6_mhash, &key, &value);
445 if (rv == 0)
446 return value.value;
447 }
448
449 return (FIB_NODE_INDEX_INVALID);
Neale Ranns32e1c012016-11-22 17:07:28 +0000450}
451
Neale Rannsae809832018-11-23 09:00:27 -0800452static void
453compute_prefix_lengths_in_search_order (ip6_mfib_table_instance_t *table)
Neale Ranns32e1c012016-11-22 17:07:28 +0000454{
Neale Rannsae809832018-11-23 09:00:27 -0800455 int i;
456 vec_reset_length (table->prefix_lengths_in_search_order);
457 /* Note: bitmap reversed so this is in fact a longest prefix match */
458 clib_bitmap_foreach (i, table->non_empty_dst_address_length_bitmap,
459 ({
460 vec_add1(table->prefix_lengths_in_search_order, (256 - i));
461 }));
Neale Ranns32e1c012016-11-22 17:07:28 +0000462}
463
464void
465ip6_mfib_table_entry_insert (ip6_mfib_t *mfib,
466 const ip6_address_t *grp,
467 const ip6_address_t *src,
468 u32 len,
469 fib_node_index_t mfib_entry_index)
470{
Neale Rannsae809832018-11-23 09:00:27 -0800471 ip6_mfib_table_instance_t *table;
472 ip6_mfib_key_t key;
Neale Ranns32e1c012016-11-22 17:07:28 +0000473
Neale Rannsae809832018-11-23 09:00:27 -0800474 table = &ip6_main.ip6_mtable;
475 IP6_MFIB_MK_KEY(mfib, grp, src, len, key);
476 key.value = mfib_entry_index;
Neale Ranns32e1c012016-11-22 17:07:28 +0000477
Neale Rannsae809832018-11-23 09:00:27 -0800478 clib_bihash_add_del_40_8(&table->ip6_mhash, &key, 1);
Neale Ranns32e1c012016-11-22 17:07:28 +0000479
Neale Rannsae809832018-11-23 09:00:27 -0800480 if (0 == table->dst_address_length_refcounts[len]++)
Neale Ranns32e1c012016-11-22 17:07:28 +0000481 {
Neale Rannsae809832018-11-23 09:00:27 -0800482 table->non_empty_dst_address_length_bitmap =
483 clib_bitmap_set (table->non_empty_dst_address_length_bitmap,
484 256 - len, 1);
485 compute_prefix_lengths_in_search_order (table);
Neale Ranns32e1c012016-11-22 17:07:28 +0000486 }
487}
488
489void
490ip6_mfib_table_entry_remove (ip6_mfib_t *mfib,
491 const ip6_address_t *grp,
492 const ip6_address_t *src,
493 u32 len)
494{
Neale Rannsae809832018-11-23 09:00:27 -0800495 ip6_mfib_table_instance_t *table;
Neale Ranns32e1c012016-11-22 17:07:28 +0000496 ip6_mfib_key_t key;
497
Neale Rannsae809832018-11-23 09:00:27 -0800498 IP6_MFIB_MK_KEY(mfib, grp, src, len, key);
Neale Ranns32e1c012016-11-22 17:07:28 +0000499
Neale Rannsae809832018-11-23 09:00:27 -0800500 table = &ip6_main.ip6_mtable;
501 clib_bihash_add_del_40_8(&table->ip6_mhash, &key, 0);
Neale Ranns32e1c012016-11-22 17:07:28 +0000502
Neale Rannsae809832018-11-23 09:00:27 -0800503 ASSERT (table->dst_address_length_refcounts[len] > 0);
504 if (--table->dst_address_length_refcounts[len] == 0)
505 {
506 table->non_empty_dst_address_length_bitmap =
507 clib_bitmap_set (table->non_empty_dst_address_length_bitmap,
508 256 - len, 0);
509 compute_prefix_lengths_in_search_order (table);
510 }
Neale Ranns32e1c012016-11-22 17:07:28 +0000511}
512
513static clib_error_t *
514ip6_mfib_module_init (vlib_main_t * vm)
515{
516 return (NULL);
517}
518
519VLIB_INIT_FUNCTION(ip6_mfib_module_init);
520
Neale Rannsc87aafa2017-11-29 00:59:31 -0800521u8 *
522format_ip6_mfib_table_memory (u8 * s, va_list * args)
523{
524 s = format(s, "%=30s %=6d %=8s\n",
525 "IPv6 multicast",
526 pool_elts(ip6_main.mfibs), "???");
527
528 return (s);
529}
530
Neale Ranns32e1c012016-11-22 17:07:28 +0000531static void
532ip6_mfib_table_show_one (ip6_mfib_t *mfib,
533 vlib_main_t * vm,
534 ip6_address_t *src,
535 ip6_address_t *grp,
Neale Ranns9e829a82018-12-17 05:50:32 -0800536 u32 mask_len,
537 u32 cover)
Neale Ranns32e1c012016-11-22 17:07:28 +0000538{
Neale Ranns9e829a82018-12-17 05:50:32 -0800539 if (cover)
540 {
541 vlib_cli_output(vm, "%U",
542 format_mfib_entry,
543 ip6_mfib_table_get_less_specific(mfib, src, grp, mask_len),
544 MFIB_ENTRY_FORMAT_DETAIL);
545 }
546 else
547 {
548 vlib_cli_output(vm, "%U",
549 format_mfib_entry,
550 ip6_mfib_table_lookup(mfib, src, grp, mask_len),
551 MFIB_ENTRY_FORMAT_DETAIL);
552 }
Neale Ranns32e1c012016-11-22 17:07:28 +0000553}
554
555typedef struct ip6_mfib_show_ctx_t_ {
Neale Ranns32e1c012016-11-22 17:07:28 +0000556 fib_node_index_t *entries;
557} ip6_mfib_show_ctx_t;
558
559
560static int
Neale Ranns5a8123b2017-01-26 01:18:23 -0800561ip6_mfib_table_collect_entries (fib_node_index_t mfei, void *arg)
Neale Ranns32e1c012016-11-22 17:07:28 +0000562{
563 ip6_mfib_show_ctx_t *ctx = arg;
Neale Ranns32e1c012016-11-22 17:07:28 +0000564
Neale Ranns5a8123b2017-01-26 01:18:23 -0800565 vec_add1(ctx->entries, mfei);
Neale Ranns32e1c012016-11-22 17:07:28 +0000566
567 return (0);
568}
569
570static void
571ip6_mfib_table_show_all (ip6_mfib_t *mfib,
572 vlib_main_t * vm)
573{
574 fib_node_index_t *mfib_entry_index;
575 ip6_mfib_show_ctx_t ctx = {
Neale Ranns32e1c012016-11-22 17:07:28 +0000576 .entries = NULL,
577 };
578
Neale Ranns5a8123b2017-01-26 01:18:23 -0800579 ip6_mfib_table_walk(mfib,
580 ip6_mfib_table_collect_entries,
581 &ctx);
Neale Ranns32e1c012016-11-22 17:07:28 +0000582
583 vec_sort_with_function(ctx.entries, mfib_entry_cmp_for_sort);
584
585 vec_foreach(mfib_entry_index, ctx.entries)
586 {
587 vlib_cli_output(vm, "%U",
588 format_mfib_entry,
589 *mfib_entry_index,
590 MFIB_ENTRY_FORMAT_BRIEF);
591 }
592
593 vec_free(ctx.entries);
594}
595
Neale Rannsae809832018-11-23 09:00:27 -0800596/**
597 * @brief Context when walking the IPv6 table. Since all VRFs are in the
598 * same hash table, we need to filter only those we need as we walk
599 */
600typedef struct ip6_mfib_walk_ctx_t_
Neale Ranns5a8123b2017-01-26 01:18:23 -0800601{
Neale Rannsae809832018-11-23 09:00:27 -0800602 u32 i6w_mfib_index;
603 mfib_table_walk_fn_t i6w_fn;
604 void *i6w_ctx;
605} ip6_mfib_walk_ctx_t;
Neale Ranns5a8123b2017-01-26 01:18:23 -0800606
607static int
Neale Rannsae809832018-11-23 09:00:27 -0800608ip6_mfib_walk_cb (clib_bihash_kv_40_8_t * kvp,
609 void *arg)
Neale Ranns5a8123b2017-01-26 01:18:23 -0800610{
Neale Rannsae809832018-11-23 09:00:27 -0800611 ip6_mfib_walk_ctx_t *ctx = arg;
Neale Ranns5a8123b2017-01-26 01:18:23 -0800612
Neale Rannsae809832018-11-23 09:00:27 -0800613 if ((kvp->key[4] >> 32) == ctx->i6w_mfib_index)
614 {
615 return (ctx->i6w_fn(kvp->value, ctx->i6w_ctx));
616 }
617 return (FIB_TABLE_WALK_CONTINUE);
Neale Ranns5a8123b2017-01-26 01:18:23 -0800618}
619
620void
621ip6_mfib_table_walk (ip6_mfib_t *mfib,
622 mfib_table_walk_fn_t fn,
Neale Rannsae809832018-11-23 09:00:27 -0800623 void *arg)
Neale Ranns5a8123b2017-01-26 01:18:23 -0800624{
Neale Rannsae809832018-11-23 09:00:27 -0800625 ip6_mfib_walk_ctx_t ctx = {
626 .i6w_mfib_index = mfib->index,
627 .i6w_fn = fn,
628 .i6w_ctx = arg,
Neale Ranns5a8123b2017-01-26 01:18:23 -0800629 };
630
Neale Rannsae809832018-11-23 09:00:27 -0800631 clib_bihash_foreach_key_value_pair_40_8(
632 &ip6_main.ip6_mtable.ip6_mhash,
633 ip6_mfib_walk_cb,
634 &ctx);
Neale Ranns5a8123b2017-01-26 01:18:23 -0800635}
636
Neale Ranns32e1c012016-11-22 17:07:28 +0000637static clib_error_t *
638ip6_show_mfib (vlib_main_t * vm,
639 unformat_input_t * input,
640 vlib_cli_command_t * cmd)
641{
Neale Rannsc87aafa2017-11-29 00:59:31 -0800642 ip6_main_t * im6 = &ip6_main;
Neale Ranns32e1c012016-11-22 17:07:28 +0000643 mfib_table_t *mfib_table;
644 int verbose, matching;
645 ip6_address_t grp, src = {{0}};
Neale Ranns9e829a82018-12-17 05:50:32 -0800646 u32 mask = 128, cover;
Neale Ranns32e1c012016-11-22 17:07:28 +0000647 int table_id = -1, fib_index = ~0;
648
649 verbose = 1;
650 matching = 0;
Neale Ranns9e829a82018-12-17 05:50:32 -0800651 cover = 0;
Neale Ranns32e1c012016-11-22 17:07:28 +0000652
653 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
654 {
655 if (unformat (input, "brief") || unformat (input, "summary")
656 || unformat (input, "sum"))
657 verbose = 0;
658
659 else if (unformat (input, "%U %U",
660 unformat_ip6_address, &src,
661 unformat_ip6_address, &grp))
662 {
663 matching = 1;
Neale Rannsc7409dc2017-05-19 02:54:32 -0700664 mask = 256;
665 }
666 else if (unformat (input, "%U/%d", unformat_ip6_address, &grp, &mask))
667 {
Dave Barachb7b92992018-10-17 10:38:51 -0400668 clib_memset(&src, 0, sizeof(src));
Neale Rannsc7409dc2017-05-19 02:54:32 -0700669 matching = 1;
Neale Ranns32e1c012016-11-22 17:07:28 +0000670 }
671 else if (unformat (input, "%U", unformat_ip6_address, &grp))
672 {
Dave Barachb7b92992018-10-17 10:38:51 -0400673 clib_memset(&src, 0, sizeof(src));
Neale Ranns32e1c012016-11-22 17:07:28 +0000674 matching = 1;
Neale Rannsc7409dc2017-05-19 02:54:32 -0700675 mask = 128;
Neale Ranns32e1c012016-11-22 17:07:28 +0000676 }
Neale Ranns32e1c012016-11-22 17:07:28 +0000677 else if (unformat (input, "table %d", &table_id))
678 ;
679 else if (unformat (input, "index %d", &fib_index))
680 ;
Neale Ranns9e829a82018-12-17 05:50:32 -0800681 else if (unformat (input, "cover"))
682 cover = 1;
Neale Ranns32e1c012016-11-22 17:07:28 +0000683 else
684 break;
685 }
686
Neale Rannsc87aafa2017-11-29 00:59:31 -0800687 pool_foreach (mfib_table, im6->mfibs,
Neale Ranns32e1c012016-11-22 17:07:28 +0000688 ({
689 ip6_mfib_t *mfib = &mfib_table->v6;
690
691 if (table_id >= 0 && table_id != (int)mfib->table_id)
692 continue;
693 if (fib_index != ~0 && fib_index != (int)mfib->index)
694 continue;
695
696 vlib_cli_output (vm, "%U, fib_index %d",
697 format_mfib_table_name, mfib->index, FIB_PROTOCOL_IP6,
698 mfib->index);
699
700 /* Show summary? */
701 if (! verbose)
702 {
703 /* vlib_cli_output (vm, "%=20s%=16s", "Prefix length", "Count"); */
704 /* for (i = 0; i < ARRAY_LEN (mfib->fib_entry_by_dst_address); i++) */
705 /* { */
706 /* uword * hash = mfib->fib_entry_by_dst_address[i]; */
707 /* uword n_elts = hash_elts (hash); */
708 /* if (n_elts > 0) */
709 /* vlib_cli_output (vm, "%20d%16d", i, n_elts); */
710 /* } */
711 continue;
712 }
713
714 if (!matching)
715 {
716 ip6_mfib_table_show_all(mfib, vm);
717 }
718 else
719 {
Neale Ranns9e829a82018-12-17 05:50:32 -0800720 ip6_mfib_table_show_one(mfib, vm, &src, &grp, mask, cover);
Neale Ranns32e1c012016-11-22 17:07:28 +0000721 }
722 }));
723
724 return 0;
725}
726
727/*
Neale Rannsc87aafa2017-11-29 00:59:31 -0800728 * This command displays the IPv6 MulticasrFIB Tables (VRF Tables) and
Neale Ranns32e1c012016-11-22 17:07:28 +0000729 * the route entries for each table.
730 *
731 * @note This command will run for a long time when the FIB tables are
732 * comprised of millions of entries. For those senarios, consider displaying
733 * a single table or summary mode.
734 *
735 * @cliexpar
Neale Rannsc87aafa2017-11-29 00:59:31 -0800736 * Example of how to display all the IPv6 Multicast FIB tables:
Neale Ranns32e1c012016-11-22 17:07:28 +0000737 * @cliexstart{show ip fib}
Neale Rannsc87aafa2017-11-29 00:59:31 -0800738 * ipv6-VRF:0, fib_index 0
Neale Ranns32e1c012016-11-22 17:07:28 +0000739 * (*, 0.0.0.0/0): flags:D,
740 * Interfaces:
741 * multicast-ip6-chain
742 * [@1]: dpo-drop ip6
743 * (*, 232.1.1.1/32):
744 * Interfaces:
745 * test-eth1: Forward,
746 * test-eth2: Forward,
747 * test-eth0: Accept,
748 * multicast-ip6-chain
749 * [@2]: dpo-replicate: [index:1 buckets:2 to:[0:0]]
Neale Rannsc87aafa2017-11-29 00:59:31 -0800750 * [0] [@1]: ipv6-mcast: test-eth1: IP6: d0:d1:d2:d3:d4:01 -> 01:00:05:00:00:00
751 * [1] [@1]: ipv6-mcast: test-eth2: IP6: d0:d1:d2:d3:d4:02 -> 01:00:05:00:00:00
Neale Ranns32e1c012016-11-22 17:07:28 +0000752 *
753 * @cliexend
Neale Rannsc87aafa2017-11-29 00:59:31 -0800754 * Example of how to display a summary of all IPv6 FIB tables:
Neale Ranns32e1c012016-11-22 17:07:28 +0000755 * @cliexstart{show ip fib summary}
Neale Rannsc87aafa2017-11-29 00:59:31 -0800756 * ipv6-VRF:0, fib_index 0, flow hash: src dst sport dport proto
Neale Ranns32e1c012016-11-22 17:07:28 +0000757 * Prefix length Count
758 * 0 1
759 * 8 2
760 * 32 4
Neale Rannsc87aafa2017-11-29 00:59:31 -0800761 * ipv6-VRF:7, fib_index 1, flow hash: src dst sport dport proto
Neale Ranns32e1c012016-11-22 17:07:28 +0000762 * Prefix length Count
763 * 0 1
764 * 8 2
765 * 24 2
766 * 32 4
767 * @cliexend
768 */
769/* *INDENT-OFF* */
770VLIB_CLI_COMMAND (ip6_show_fib_command, static) = {
771 .path = "show ip6 mfib",
772 .short_help = "show ip mfib [summary] [table <table-id>] [index <fib-id>] [<grp-addr>[/<mask>]] [<grp-addr>] [<src-addr> <grp-addr>]",
773 .function = ip6_show_mfib,
774};
775/* *INDENT-ON* */