blob: cf75c2eb0722fb2ce8306695a80b620cea903292 [file] [log] [blame]
Neale Rannsd792d9c2017-10-21 10:53:20 -07001/*
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
17#include <vnet/mpls/mpls.h>
18#include <vnet/bier/bier_table.h>
19#include <vnet/bier/bier_entry.h>
20#include <vnet/bier/bier_fmask.h>
21#include <vnet/bier/bier_bit_string.h>
22#include <vnet/bier/bier_imp.h>
23#include <vnet/bier/bier_disp_table.h>
24#include <vnet/bier/bier_disp_entry.h>
25#include <vnet/fib/fib_entry.h>
26#include <vnet/fib/fib_table.h>
27#include <vnet/fib/mpls_fib.h>
28#include <vnet/dpo/load_balance.h>
29#include <vnet/dpo/drop_dpo.h>
30#include <vnet/dpo/lookup_dpo.h>
31#include <vnet/mfib/mfib_table.h>
32
33#include <vnet/fib/fib_test.h>
34
35/*
36 * Add debugs for passing tests
37 */
38static int bier_test_do_debug;
39
40#define BIER_TEST_I(_cond, _comment, _args...) \
41({ \
42 int _evald = (_cond); \
43 if (!(_evald)) { \
44 fformat(stderr, "FAIL:%d: " _comment "\n", \
45 __LINE__, ##_args); \
46 } else { \
47 if (bier_test_do_debug) \
48 fformat(stderr, "PASS:%d: " _comment "\n", \
49 __LINE__, ##_args); \
50 } \
51 _evald; \
52})
53#define BIER_TEST(_cond, _comment, _args...) \
54{ \
55 if (!BIER_TEST_I(_cond, _comment, ##_args)) { \
56 return 1; \
57 ASSERT(!("FAIL: " _comment)); \
58 } \
59}
60
61/**
62 * A 'i'm not fussed is this is not efficient' store of test data
63 */
64typedef struct test_main_t_ {
65 /**
66 * HW if indicies
67 */
68 u32 hw_if_indicies[4];
69 /**
70 * HW interfaces
71 */
72 vnet_hw_interface_t * hw[4];
73
74} test_main_t;
75static test_main_t test_main;
76
77/* fake ethernet device class, distinct from "fake-ethX" */
78static u8 * format_test_interface_name (u8 * s, va_list * args)
79{
80 u32 dev_instance = va_arg (*args, u32);
81 return format (s, "test-eth%d", dev_instance);
82}
83
84static uword dummy_interface_tx (vlib_main_t * vm,
85 vlib_node_runtime_t * node,
86 vlib_frame_t * frame)
87{
88 clib_warning ("you shouldn't be here, leaking buffers...");
89 return frame->n_vectors;
90}
91
92VNET_DEVICE_CLASS (test_interface_device_class,static) = {
93 .name = "Test interface",
94 .format_device_name = format_test_interface_name,
95 .tx_function = dummy_interface_tx,
96};
97
98static u8 *hw_address;
99
100static int
101bier_test_mk_intf (u32 ninterfaces)
102{
103 clib_error_t * error = NULL;
104 test_main_t *tm = &test_main;
105 u8 byte;
106 u32 i;
107
108 ASSERT(ninterfaces <= ARRAY_LEN(tm->hw_if_indicies));
109
110 for (i=0; i<6; i++)
111 {
112 byte = 0xd0+i;
113 vec_add1(hw_address, byte);
114 }
115
116 for (i = 0; i < ninterfaces; i++)
117 {
118 hw_address[5] = i;
119
120 error = ethernet_register_interface(vnet_get_main(),
121 test_interface_device_class.index,
122 i /* instance */,
123 hw_address,
124 &tm->hw_if_indicies[i],
125 /* flag change */ 0);
126
127 BIER_TEST((NULL == error), "ADD interface %d", i);
128
129 tm->hw[i] = vnet_get_hw_interface(vnet_get_main(),
130 tm->hw_if_indicies[i]);
131 vec_validate (ip4_main.fib_index_by_sw_if_index, tm->hw[i]->sw_if_index);
132 vec_validate (ip6_main.fib_index_by_sw_if_index, tm->hw[i]->sw_if_index);
133 ip4_main.fib_index_by_sw_if_index[tm->hw[i]->sw_if_index] = 0;
134 ip6_main.fib_index_by_sw_if_index[tm->hw[i]->sw_if_index] = 0;
135 error = vnet_sw_interface_set_flags(vnet_get_main(),
136 tm->hw[i]->sw_if_index,
137 VNET_SW_INTERFACE_FLAG_ADMIN_UP);
138 BIER_TEST((NULL == error), "UP interface %d", i);
139 }
140 /*
141 * re-eval after the inevitable realloc
142 */
143 for (i = 0; i < ninterfaces; i++)
144 {
145 tm->hw[i] = vnet_get_hw_interface(vnet_get_main(),
146 tm->hw_if_indicies[i]);
147 }
148
149 return (0);
150}
151
152#define BIER_TEST_LB(_cond, _comment, _args...) \
153{ \
154 if (!BIER_TEST_I(_cond, _comment, ##_args)) { \
155 return (0); \
156 } \
157}
158
159static int
160bier_test_validate_entry (index_t bei,
161 u16 n_buckets,
162 ...)
163{
164 dpo_id_t dpo = DPO_INVALID;
165 const load_balance_t *lb;
166 va_list ap;
167 int res;
168
169 va_start(ap, n_buckets);
170
171 bier_entry_contribute_forwarding(bei, &dpo);
172
173 BIER_TEST_LB((DPO_LOAD_BALANCE == dpo.dpoi_type),
174 "Entry links to %U",
175 format_dpo_type, dpo.dpoi_type);
176
177 lb = load_balance_get(dpo.dpoi_index);
178 res = fib_test_validate_lb_v(lb, n_buckets, &ap);
179
180 dpo_reset(&dpo);
181
182 va_end(ap);
183
184 return (res);
185}
186
187static int
188bier_test_mpls_spf (void)
189{
190 fib_node_index_t lfei, fei, bti;
191 u32 mpls_fib_index;
192 test_main_t *tm;
193 int lb_count;
194
195 lb_count = pool_elts(load_balance_pool);
196 tm = &test_main;
197#define N_BIER_ECMP_TABLES 16
198 int ii;
199
200 /*
201 * Add the BIER Main table
202 */
203 const bier_table_id_t bt_0_0_0_256 = {
204 .bti_set = 0,
205 .bti_sub_domain = 0,
206 .bti_hdr_len = BIER_HDR_LEN_256,
207 .bti_type = BIER_TABLE_MPLS_SPF,
208 .bti_ecmp = BIER_ECMP_TABLE_ID_MAIN,
209 };
210
211 bti = bier_table_add_or_lock(&bt_0_0_0_256, 1600);
212
213 fib_test_lb_bucket_t l_o_bt[N_BIER_ECMP_TABLES];
214 bier_table_id_t bt_ecmp_0_0_0_256 = bt_0_0_0_256;
215
216 for (ii = 0; ii < N_BIER_ECMP_TABLES; ii++)
217 {
218 bt_ecmp_0_0_0_256.bti_ecmp = ii;
219
220 l_o_bt[ii].type = FT_LB_BIER_TABLE;
221 l_o_bt[ii].bier.table =
222 bier_table_ecmp_create_and_lock(&bt_ecmp_0_0_0_256);
223 };
224 const fib_prefix_t pfx_1600_neos = {
225 .fp_len = 21,
226 .fp_proto = FIB_PROTOCOL_MPLS,
227 .fp_label = 1600,
228 .fp_eos = MPLS_NON_EOS,
229 .fp_payload_proto = DPO_PROTO_BIER,
230 };
231 const fib_prefix_t pfx_1600_eos = {
232 .fp_len = 21,
233 .fp_proto = FIB_PROTOCOL_MPLS,
234 .fp_label = 1600,
235 .fp_eos = MPLS_EOS,
236 .fp_payload_proto = DPO_PROTO_BIER,
237 };
238
239 mpls_fib_index = fib_table_find(FIB_PROTOCOL_MPLS,
240 MPLS_FIB_DEFAULT_TABLE_ID);
241
242 lfei = fib_table_lookup(mpls_fib_index, &pfx_1600_neos);
243 BIER_TEST(FIB_NODE_INDEX_INVALID == lfei, "1600/0 is not present");
244
245 lfei = fib_table_lookup(mpls_fib_index, &pfx_1600_eos);
246 BIER_TEST(fib_test_validate_entry(lfei, FIB_FORW_CHAIN_TYPE_MPLS_EOS,
247 16,
248 &l_o_bt[0],
249 &l_o_bt[1],
250 &l_o_bt[2],
251 &l_o_bt[3],
252 &l_o_bt[4],
253 &l_o_bt[5],
254 &l_o_bt[6],
255 &l_o_bt[7],
256 &l_o_bt[8],
257 &l_o_bt[9],
258 &l_o_bt[10],
259 &l_o_bt[11],
260 &l_o_bt[12],
261 &l_o_bt[13],
262 &l_o_bt[14],
263 &l_o_bt[15]),
264 "1600/1 LB stacks on BIER table %d", bti);
265
266 /*
267 * modify the table's local label - keep the lock count accurate
268 */
269 const fib_prefix_t pfx_1601_eos = {
270 .fp_len = 21,
271 .fp_proto = FIB_PROTOCOL_MPLS,
272 .fp_label = 1601,
273 .fp_eos = MPLS_EOS,
274 .fp_payload_proto = DPO_PROTO_BIER,
275 };
276 bti = bier_table_add_or_lock(&bt_0_0_0_256, 1601);
277 bier_table_unlock(&bt_0_0_0_256);
278
279 lfei = fib_table_lookup(mpls_fib_index, &pfx_1600_eos);
280 BIER_TEST(FIB_NODE_INDEX_INVALID == lfei, "1600/1 is deleted");
281
282 lfei = fib_table_lookup(mpls_fib_index, &pfx_1601_eos);
283 BIER_TEST(fib_test_validate_entry(lfei, FIB_FORW_CHAIN_TYPE_MPLS_EOS,
284 16,
285 &l_o_bt[0],
286 &l_o_bt[1],
287 &l_o_bt[2],
288 &l_o_bt[3],
289 &l_o_bt[4],
290 &l_o_bt[5],
291 &l_o_bt[6],
292 &l_o_bt[7],
293 &l_o_bt[8],
294 &l_o_bt[9],
295 &l_o_bt[10],
296 &l_o_bt[11],
297 &l_o_bt[12],
298 &l_o_bt[13],
299 &l_o_bt[14],
300 &l_o_bt[15]),
301 "1601/1 LB stacks on BIER table %d", bti);
302
303 /*
304 * add a route to the table. the via IP route does not exist.
305 */
306 const ip46_address_t nh_1_1_1_1 = {
307 .ip4 = {
308 .as_u32 = clib_host_to_net_u32(0x01010101),
309 },
310 };
311 fib_route_path_t *paths_1_1_1_1 = NULL;
312 fib_route_path_t path_1_1_1_1 = {
313 .frp_addr = nh_1_1_1_1,
314 .frp_bier_fib_index = bti,
Neale Ranns91286372017-12-05 13:24:04 -0800315 .frp_sw_if_index = ~0,
Neale Rannsd792d9c2017-10-21 10:53:20 -0700316 };
317 vec_add1(path_1_1_1_1.frp_label_stack, 500);
318 vec_add1(paths_1_1_1_1, path_1_1_1_1);
319 const fib_prefix_t pfx_1_1_1_1_s_32 = {
320 .fp_addr = nh_1_1_1_1,
321 .fp_len = 32,
322 .fp_proto = FIB_PROTOCOL_IP4,
323 };
Neale Rannsd792d9c2017-10-21 10:53:20 -0700324 index_t bei_1;
325
326 bier_table_route_add(&bt_0_0_0_256, 1, paths_1_1_1_1);
327 bei_1 = bier_table_lookup(bier_table_get(bti), 1);
328
329 BIER_TEST((INDEX_INVALID != bei_1), "BP:1 present");
330
331 /*
332 * the newly created fmask should stack on the non-eos chain
333 * of the via-fib-entry
334 */
335 dpo_id_t neos_dpo_1_1_1_1 = DPO_INVALID;
336 bier_fmask_t *bfm_1_1_1_1;
337 index_t bfmi_1_1_1_1;
338
339 fei = fib_table_lookup_exact_match(0, &pfx_1_1_1_1_s_32);
340 fib_entry_contribute_forwarding(fei,
341 FIB_FORW_CHAIN_TYPE_MPLS_NON_EOS,
342 &neos_dpo_1_1_1_1);
343
Neale Ranns91286372017-12-05 13:24:04 -0800344 bfmi_1_1_1_1 = bier_fmask_db_find(bti, &path_1_1_1_1);
Neale Rannsd792d9c2017-10-21 10:53:20 -0700345 bfm_1_1_1_1 = bier_fmask_get(bfmi_1_1_1_1);
346
Neale Ranns91286372017-12-05 13:24:04 -0800347 BIER_TEST(!dpo_cmp(drop_dpo_get(DPO_PROTO_MPLS),
348 &bfm_1_1_1_1->bfm_dpo),
349 "Fmask via 1.1.1.1 stacks on MPLS drop");
Neale Rannsd792d9c2017-10-21 10:53:20 -0700350
351 /*
352 * The BIER entry should stack on the forwarding chain of the fmask
353 */
354 const fib_test_lb_bucket_t dpo_o_bfm_1_1_1_1 = {
355 .type = FT_LB_BIER_FMASK,
356 .bier = {
357 .fmask = bfmi_1_1_1_1,
358 },
359 };
Neale Ranns91286372017-12-05 13:24:04 -0800360 dpo_id_t dpo_bei = DPO_INVALID;
361 bier_entry_contribute_forwarding(bei_1, &dpo_bei);
362
363 BIER_TEST(!dpo_cmp(&dpo_bei, drop_dpo_get(DPO_PROTO_BIER)),
364 "BP:1 stacks on bier drop");
Neale Rannsd792d9c2017-10-21 10:53:20 -0700365
366 /*
367 * give 1.1.1.1/32 a path and hence a interesting n-eos chain
368 */
369 ip46_address_t nh_10_10_10_1 = {
370 .ip4 = {
371 .as_u32 = clib_host_to_net_u32(0x0a0a0a01),
372 },
373 };
374 adj_index_t ai_mpls_10_10_10_1;
375 ai_mpls_10_10_10_1 = adj_nbr_add_or_lock(FIB_PROTOCOL_IP4,
376 VNET_LINK_MPLS,
377 &nh_10_10_10_1,
378 tm->hw[0]->sw_if_index);
379
380 fib_test_lb_bucket_t bucket_neos_99_via_10_10_10_1 = {
381 .type = FT_LB_LABEL_O_ADJ,
382 .label_o_adj = {
383 .label = 99,
384 .eos = MPLS_NON_EOS,
385 .adj = ai_mpls_10_10_10_1,
386 .ttl = 255,
387 },
388 };
389 mpls_label_t *out_lbl_99 = NULL;
390 vec_add1(out_lbl_99, 99);
391
392 fei = fib_table_entry_update_one_path(0,
393 &pfx_1_1_1_1_s_32,
394 FIB_SOURCE_API,
395 FIB_ENTRY_FLAG_NONE,
396 DPO_PROTO_IP4,
397 &nh_10_10_10_1,
398 tm->hw[0]->sw_if_index,
399 ~0, // invalid fib index
400 1,
401 out_lbl_99,
402 FIB_ROUTE_PATH_FLAG_NONE);
403 fib_entry_contribute_forwarding(fei,
404 FIB_FORW_CHAIN_TYPE_MPLS_NON_EOS,
405 &neos_dpo_1_1_1_1);
406 BIER_TEST(fib_test_validate_lb(&neos_dpo_1_1_1_1, 1,
407 &bucket_neos_99_via_10_10_10_1),
408 "1.1.1.1/32 n-eos LB 1 buckets via: 99 + 10.10.10.1");
409 BIER_TEST(!dpo_cmp(&neos_dpo_1_1_1_1,
410 &bfm_1_1_1_1->bfm_dpo),
411 "Fmask via 1.1.1.1 stacks on updated non-eos of 1.1.1.1/32");
Neale Ranns91286372017-12-05 13:24:04 -0800412 bier_entry_contribute_forwarding(bei_1, &dpo_bei);
413 BIER_TEST((dpo_bei.dpoi_index == bfmi_1_1_1_1),
Neale Rannsd792d9c2017-10-21 10:53:20 -0700414 "BP:1 stacks on fmask 1.1.1.1");
415
416 /*
417 * add another path to the via entry.
418 * this makes the via-entry instantiate a new load-balance with
419 * 2 buckets. and the back-walk to the BIER entry will need to
420 * re-stack on it.
421 */
422 ip46_address_t nh_10_10_10_2 = {
423 .ip4 = {
424 .as_u32 = clib_host_to_net_u32(0x0a0a0a02),
425 },
426 };
427 adj_index_t ai_mpls_10_10_10_2;
428
429 ai_mpls_10_10_10_2 = adj_nbr_add_or_lock(FIB_PROTOCOL_IP4,
430 VNET_LINK_MPLS,
431 &nh_10_10_10_2,
432 tm->hw[0]->sw_if_index);
433
434 fib_test_lb_bucket_t bucket_neos_100_via_10_10_10_2 = {
435 .type = FT_LB_LABEL_O_ADJ,
436 .label_o_adj = {
437 .label = 100,
438 .eos = MPLS_NON_EOS,
439 .adj = ai_mpls_10_10_10_2,
440 .ttl = 255,
441 },
442 };
443 mpls_label_t *out_lbl_100 = NULL;
444 vec_add1(out_lbl_100, 100);
445
446 fei = fib_table_entry_path_add(0,
447 &pfx_1_1_1_1_s_32,
448 FIB_SOURCE_API,
449 FIB_ENTRY_FLAG_NONE,
450 DPO_PROTO_IP4,
451 &nh_10_10_10_2,
452 tm->hw[0]->sw_if_index,
453 ~0, // invalid fib index
454 1,
455 out_lbl_100,
456 FIB_ROUTE_PATH_FLAG_NONE);
457
458 fib_entry_contribute_forwarding(fei,
459 FIB_FORW_CHAIN_TYPE_MPLS_NON_EOS,
460 &neos_dpo_1_1_1_1);
461 BIER_TEST(fib_test_validate_lb(&neos_dpo_1_1_1_1, 2,
462 &bucket_neos_99_via_10_10_10_1,
463 &bucket_neos_100_via_10_10_10_2),
464 "1.1.1.1/32 n-eos LB 2 buckets "
465 "via: 99 + 10.10.10.1, "
466 "via: 100 + 10.10.10.2");
467 BIER_TEST(!dpo_cmp(&neos_dpo_1_1_1_1,
468 &bfm_1_1_1_1->bfm_dpo),
469 "Fmask via 1.1.1.1 stacks on updated non-eos of 1.1.1.1/32");
470
471 /*
472 * add another bier bit-position via the same next-hop
473 * since its the same next hop, the two bit-positions should link
474 * to the same fmask
475 */
476 index_t bei_2;
477
478 bier_table_route_add(&bt_0_0_0_256, 2, paths_1_1_1_1);
479 bei_2 = bier_table_lookup(bier_table_get(bti), 2);
480
Neale Ranns91286372017-12-05 13:24:04 -0800481 bier_entry_contribute_forwarding(bei_2, &dpo_bei);
482 BIER_TEST((dpo_bei.dpoi_index == bfmi_1_1_1_1),
483 "BP:2 stacks on fmask 1.1.1.1");
Neale Rannsd792d9c2017-10-21 10:53:20 -0700484
485 /*
486 * now add a bit-position via a different next hop and expect to
487 * link via a different fmask
488 */
489 const ip46_address_t nh_1_1_1_2 = {
490 .ip4 = {
491 .as_u32 = clib_host_to_net_u32(0x01010102),
492 },
493 };
494 const fib_prefix_t pfx_1_1_1_2_s_32 = {
495 .fp_addr = nh_1_1_1_2,
496 .fp_len = 32,
497 .fp_proto = FIB_PROTOCOL_IP4,
498 };
499 fib_route_path_t *paths_1_1_1_2 = NULL, path_1_1_1_2 = {
500 .frp_addr = nh_1_1_1_2,
501 .frp_bier_fib_index = bti,
Neale Ranns91286372017-12-05 13:24:04 -0800502 .frp_sw_if_index = ~0,
Neale Rannsd792d9c2017-10-21 10:53:20 -0700503 };
504 vec_add1(path_1_1_1_2.frp_label_stack, 501);
505 vec_add1(paths_1_1_1_2, path_1_1_1_2);
Neale Rannsd792d9c2017-10-21 10:53:20 -0700506 index_t bei_3;
507
508 mpls_label_t *out_lbl_101 = NULL;
509 vec_add1(out_lbl_101, 101);
510 fei = fib_table_entry_path_add(0,
511 &pfx_1_1_1_2_s_32,
512 FIB_SOURCE_API,
513 FIB_ENTRY_FLAG_NONE,
514 DPO_PROTO_IP4,
515 &nh_10_10_10_2,
516 tm->hw[0]->sw_if_index,
517 ~0, // invalid fib index
518 1,
519 out_lbl_101,
520 FIB_ROUTE_PATH_FLAG_NONE);
521 bier_table_route_add(&bt_0_0_0_256, 3, paths_1_1_1_2);
522 bei_3 = bier_table_lookup(bier_table_get(bti), 3);
523
524 BIER_TEST((INDEX_INVALID != bei_3), "BP:3 present");
525
526 /*
527 * the newly created fmask should stack on the non-eos chain
528 * of the via-fib-entry
529 */
530 dpo_id_t neos_dpo_1_1_1_2 = DPO_INVALID;
531 bier_fmask_t *bfm_1_1_1_2;
532 index_t bfmi_1_1_1_2;
533
534 fei = fib_table_lookup_exact_match(0, &pfx_1_1_1_2_s_32);
535 fib_entry_contribute_forwarding(fei,
536 FIB_FORW_CHAIN_TYPE_MPLS_NON_EOS,
537 &neos_dpo_1_1_1_2);
538
Neale Ranns91286372017-12-05 13:24:04 -0800539 bfmi_1_1_1_2 = bier_fmask_db_find(bti, &path_1_1_1_2);
Neale Rannsd792d9c2017-10-21 10:53:20 -0700540 bfm_1_1_1_2 = bier_fmask_get(bfmi_1_1_1_2);
541
542 BIER_TEST(!dpo_cmp(&neos_dpo_1_1_1_2,
543 &bfm_1_1_1_2->bfm_dpo),
544 "Fmask via 1.1.1.2 stacks on non-eos of 1.1.1.2/32");
545
546 /*
547 * The BIER entry should stack on the forwarding chain of the fmask
548 */
549 const fib_test_lb_bucket_t dpo_o_bfm_1_1_1_2 = {
550 .type = FT_LB_BIER_FMASK,
551 .bier = {
552 .fmask = bfmi_1_1_1_2,
553 },
554 };
Neale Ranns91286372017-12-05 13:24:04 -0800555 bier_entry_contribute_forwarding(bei_3, &dpo_bei);
556 BIER_TEST((dpo_bei.dpoi_index == bfmi_1_1_1_2),
557 "BP:2 stacks on fmask 1.1.1.2");
Neale Rannsd792d9c2017-10-21 10:53:20 -0700558
559 /*
560 * Load-balance BP:3 over both next-hops
561 */
Neale Ranns91286372017-12-05 13:24:04 -0800562 paths_1_1_1_1[0] = path_1_1_1_1;
Neale Rannsd792d9c2017-10-21 10:53:20 -0700563 bier_table_route_add(&bt_0_0_0_256, 3, paths_1_1_1_1);
564
565 BIER_TEST(bier_test_validate_entry(bei_3, 2,
566 &dpo_o_bfm_1_1_1_1,
567 &dpo_o_bfm_1_1_1_2),
568 "BP:3 stacks on fmask 1.1.1.2 & 1.1.1.1");
569
570 /*
571 * test that the ECMP choices for BP:3 have been spread over the
572 * ECMP tables
573 */
574 BIER_TEST((bier_table_fwd_lookup(bier_table_get(l_o_bt[0].bier.table), 3) ==
575 bfmi_1_1_1_1),
576 "fwd lookup for BP:3 ECMP:0 is 1.1.1.1");
577 BIER_TEST((bier_table_fwd_lookup(bier_table_get(l_o_bt[1].bier.table), 3) ==
578 bfmi_1_1_1_2),
579 "fwd lookup for BP:3 ECMP:1 is 1.1.1.2");
580
581 /*
582 * Withdraw one of the via FIB and thus bring down the fmask
Neale Ranns91286372017-12-05 13:24:04 -0800583 * expect the bier-entry forwarding to remove this from the set
Neale Rannsd792d9c2017-10-21 10:53:20 -0700584 */
585 fib_table_entry_delete(0, &pfx_1_1_1_2_s_32, FIB_SOURCE_API);
586
Neale Ranns91286372017-12-05 13:24:04 -0800587 bier_entry_contribute_forwarding(bei_3, &dpo_bei);
588 BIER_TEST((dpo_bei.dpoi_index == bfmi_1_1_1_1),
589 "BP:3 stacks on fmask 1.1.1.1");
Neale Rannsd792d9c2017-10-21 10:53:20 -0700590
591 BIER_TEST((bier_table_fwd_lookup(bier_table_get(l_o_bt[0].bier.table), 3) ==
592 bfmi_1_1_1_1),
593 "fwd lookup for BP:3 ECMP:0 is 1.1.1.1");
594 BIER_TEST((bier_table_fwd_lookup(bier_table_get(l_o_bt[1].bier.table), 3) ==
595 bfmi_1_1_1_1),
596 "fwd lookup for BP:3 ECMP:1 is 1.1.1.1");
597
598 /*
599 * add the via back
600 */
601 out_lbl_101 = NULL;
602 vec_add1(out_lbl_101, 101);
603 fei = fib_table_entry_path_add(0,
604 &pfx_1_1_1_2_s_32,
605 FIB_SOURCE_API,
606 FIB_ENTRY_FLAG_NONE,
607 DPO_PROTO_IP4,
608 &nh_10_10_10_2,
609 tm->hw[0]->sw_if_index,
610 ~0, // invalid fib index
611 1,
612 out_lbl_101,
613 FIB_ROUTE_PATH_FLAG_NONE);
614 /* suspend so the update walk kicks int */
615 vlib_process_suspend(vlib_get_main(), 1e-5);
616
617 BIER_TEST(bier_test_validate_entry(bei_3, 2,
618 &dpo_o_bfm_1_1_1_1,
619 &dpo_o_bfm_1_1_1_2),
620 "BP:3 stacks on fmask 1.1.1.2 & 1.1.1.1");
621 BIER_TEST((bier_table_fwd_lookup(bier_table_get(l_o_bt[0].bier.table), 3) ==
622 bfmi_1_1_1_1),
623 "fwd lookup for BP:3 ECMP:0 is 1.1.1.1");
624 BIER_TEST((bier_table_fwd_lookup(bier_table_get(l_o_bt[1].bier.table), 3) ==
625 bfmi_1_1_1_2),
626 "fwd lookup for BP:3 ECMP:1 is 1.1.1.2");
627
628 /*
629 * remove the original 1.1.1.2 fmask from BP:3
630 */
631 bier_table_route_remove(&bt_0_0_0_256, 3, paths_1_1_1_2);
Neale Ranns91286372017-12-05 13:24:04 -0800632 bier_entry_contribute_forwarding(bei_3, &dpo_bei);
633 BIER_TEST((dpo_bei.dpoi_index == bfmi_1_1_1_1),
Neale Rannsd792d9c2017-10-21 10:53:20 -0700634 "BP:3 stacks on fmask 1.1.1.1");
Neale Ranns91286372017-12-05 13:24:04 -0800635
Neale Rannsd792d9c2017-10-21 10:53:20 -0700636 /*
637 * test that the ECMP choices for BP:3 have been updated
638 */
639 BIER_TEST((bier_table_fwd_lookup(bier_table_get(l_o_bt[0].bier.table), 3) ==
640 bfmi_1_1_1_1),
641 "fwd lookup for BP:3 ECMP:0 is 1.1.1.1");
642 BIER_TEST((bier_table_fwd_lookup(bier_table_get(l_o_bt[1].bier.table), 3) ==
643 bfmi_1_1_1_1),
644 "fwd lookup for BP:3 ECMP:1 is 1.1.1.1");
645
646 /*
647 * remove the routes added
648 */
649 bier_table_route_remove(&bt_0_0_0_256, 2, paths_1_1_1_1);
650 bier_table_route_remove(&bt_0_0_0_256, 3, paths_1_1_1_2);
651 bier_table_route_remove(&bt_0_0_0_256, 3, paths_1_1_1_1);
652 bier_table_route_remove(&bt_0_0_0_256, 1, paths_1_1_1_1);
653
Neale Rannsd792d9c2017-10-21 10:53:20 -0700654 /*
655 * delete the table
656 */
657 bier_table_unlock(&bt_0_0_0_256);
658
659 /*
660 * test resources are freed
661 */
Neale Ranns91286372017-12-05 13:24:04 -0800662 dpo_reset(&dpo_bei);
Neale Rannsd792d9c2017-10-21 10:53:20 -0700663 for (ii = 0; ii < N_BIER_ECMP_TABLES; ii++)
664 {
665 bier_table_ecmp_unlock(l_o_bt[ii].bier.table);
666 };
667 BIER_TEST(0 == pool_elts(bier_table_pool), "BIER table pool empty");
668 BIER_TEST(0 == pool_elts(bier_fmask_pool), "BIER fmask pool empty");
669 BIER_TEST(0 == pool_elts(bier_entry_pool), "BIER entry pool empty");
670
671 adj_unlock(ai_mpls_10_10_10_1);
672 adj_unlock(ai_mpls_10_10_10_2);
673 dpo_reset(&neos_dpo_1_1_1_1);
674 dpo_reset(&neos_dpo_1_1_1_2);
675 fib_table_entry_delete(0, &pfx_1_1_1_1_s_32, FIB_SOURCE_API);
676 fib_table_entry_delete(0, &pfx_1_1_1_2_s_32, FIB_SOURCE_API);
677
678 /* +1 to account for the one time alloc'd drop LB in the MPLS fibs */
679 BIER_TEST(lb_count+1 == pool_elts(load_balance_pool),
680 "Load-balance resources freed ");
681 BIER_TEST((0 == adj_nbr_db_size()), "ADJ DB size is %d",
682 adj_nbr_db_size());
683
684 vec_free(paths_1_1_1_1);
685 vec_free(paths_1_1_1_2);
686
687 return (0);
688}
689
690static int
691bier_test_mpls_imp (void)
692{
693 fib_node_index_t bii;
694 /* test_main_t *tm; */
695
696 /* tm = &test_main; */
697
698 /*
699 * Add the BIER Main table
700 */
701 const bier_table_id_t bt_0_0_0_256 = {
702 .bti_set = 0,
703 .bti_sub_domain = 0,
704 .bti_hdr_len = BIER_HDR_LEN_256,
705 .bti_type = BIER_TABLE_MPLS_SPF,
706 .bti_ecmp = BIER_ECMP_TABLE_ID_MAIN,
707 };
708
709 bier_table_add_or_lock(&bt_0_0_0_256, 1600);
710
711 /*
712 * A bit-string for imp 1.
713 */
714 bier_bit_string_t bbs_256;
715 u8 buckets[BIER_HDR_BUCKETS_256];
716 memset(buckets, 0x5, BIER_HDR_BUCKETS_256);
717
718 bier_bit_string_init(&bbs_256, BIER_HDR_LEN_256, buckets);
719
720 bii = bier_imp_add_or_lock(&bt_0_0_0_256, 1, &bbs_256);
721
722 /*
723 * An mfib entry that resolves via the BIER imposition
724 */
725 const mfib_prefix_t pfx_1_1_1_1_c_239_1_1_1 = {
726 .fp_len = 64,
727 .fp_proto = FIB_PROTOCOL_IP4,
728 .fp_grp_addr = {
729 .ip4.as_u32 = clib_host_to_net_u32(0xef010101),
730 },
731 .fp_src_addr = {
732 .ip4.as_u32 = clib_host_to_net_u32(0x01010101),
733 },
734 };
735 fib_route_path_t path_via_bier_imp_1 = {
736 .frp_proto = DPO_PROTO_BIER,
737 .frp_bier_imp = bii,
738 .frp_weight = 0,
739 .frp_flags = FIB_ROUTE_PATH_BIER_IMP,
740 };
741 mfib_table_entry_path_update(0, // default table
742 &pfx_1_1_1_1_c_239_1_1_1 ,
743 MFIB_SOURCE_API,
744 &path_via_bier_imp_1,
745 MFIB_ITF_FLAG_FORWARD);
746 mfib_table_entry_delete(0,
747 &pfx_1_1_1_1_c_239_1_1_1 ,
748 MFIB_SOURCE_API);
749
750 bier_imp_unlock(bii);
751 bier_table_unlock(&bt_0_0_0_256);
752
753 BIER_TEST(0 == pool_elts(bier_imp_pool),
754 "BIER imposition resources freed ");
755 BIER_TEST(0 == pool_elts(bier_table_pool),
756 "BIER table resources freed ");
757
758 return (0);
759}
760
761static int
762bier_test_mpls_disp (void)
763{
Neale Rannsd792d9c2017-10-21 10:53:20 -0700764 /*
765 * Add the BIER Main table
766 */
767 const bier_table_id_t bt_0_0_0_256 = {
768 .bti_set = 0,
769 .bti_sub_domain = 0,
770 .bti_hdr_len = BIER_HDR_LEN_256,
771 .bti_type = BIER_TABLE_MPLS_SPF,
772 .bti_ecmp = BIER_ECMP_TABLE_ID_MAIN,
773 };
774 index_t bti;
775
776 bti = bier_table_add_or_lock(&bt_0_0_0_256, 1600);
777
778 /*
779 * Add a BIER dispoition table
780 */
781 const u32 bier_disp_tbl_id = 1;
782 index_t bdti1;
783
784 bdti1 = bier_disp_table_add_or_lock(bier_disp_tbl_id);
785
786 /*
787 * add a bit-poistion in the table that resolves via
788 * DISP table, i.e. a for-us bit-position
789 */
790 fib_route_path_t *paths_via_disp = NULL, path_via_disp = {
791 // .frp_addr = all-zeros
Neale Ranns91286372017-12-05 13:24:04 -0800792 .frp_proto = DPO_PROTO_BIER,
Neale Rannsd792d9c2017-10-21 10:53:20 -0700793 .frp_bier_fib_index = bdti1,
Neale Ranns91286372017-12-05 13:24:04 -0800794 .frp_sw_if_index = ~0,
Neale Rannsd792d9c2017-10-21 10:53:20 -0700795 };
796 vec_add1(paths_via_disp, path_via_disp);
797
798 bier_table_route_add(&bt_0_0_0_256, 3, paths_via_disp);
799
800 /*
801 * the fmask should stack on the BIER disp table
802 */
Neale Rannsd792d9c2017-10-21 10:53:20 -0700803 bier_fmask_t *bfm_0_0_0_0;
804 index_t bfmi_0_0_0_0;
805 dpo_id_t dpo_disp_tbl_1 = DPO_INVALID;
806
807 bier_disp_table_contribute_forwarding(bdti1, &dpo_disp_tbl_1);
808
Neale Ranns91286372017-12-05 13:24:04 -0800809 bfmi_0_0_0_0 = bier_fmask_db_find(bti, &path_via_disp);
Neale Rannsd792d9c2017-10-21 10:53:20 -0700810 bfm_0_0_0_0 = bier_fmask_get(bfmi_0_0_0_0);
811
812 BIER_TEST(!dpo_cmp(&dpo_disp_tbl_1, &bfm_0_0_0_0->bfm_dpo),
813 "Fmask via 0.0.0.0 stacks on BIER disp table 1");
814
815 /*
816 * and a deag entry into the disposition table
817 */
818 fib_route_path_t *rpaths = NULL, path_via_mfib = {
819 .frp_proto = DPO_PROTO_IP4,
820 .frp_addr = zero_addr,
821 .frp_fib_index = 0, // default MFIB table
822 .frp_rpf_id = 9, // some non-zero value
823 .frp_flags = FIB_ROUTE_PATH_RPF_ID,
824 };
Neale Ranns93149bb2017-11-15 10:44:07 -0800825 bier_hdr_src_id_t src = 99;
Neale Rannsd792d9c2017-10-21 10:53:20 -0700826 vec_add1(rpaths, path_via_mfib);
827 bier_disp_table_entry_path_add(bier_disp_tbl_id, src,
828 BIER_HDR_PROTO_IPV4, rpaths);
829
830 /* which should stack on a lookup in the mfib table */
Neale Rannsd792d9c2017-10-21 10:53:20 -0700831 const dpo_id_t *dpo_disp_entry_v4;
832 bier_disp_entry_t *bde_99;
833 index_t bdei;
834
835 bdei = bier_disp_table_lookup(bdti1, clib_host_to_net_u16(src));
836 bde_99 = bier_disp_entry_get(bdei);
Neale Ranns91286372017-12-05 13:24:04 -0800837 dpo_disp_entry_v4 = &bde_99->bde_fwd[BIER_HDR_PROTO_IPV4].bde_dpo;
Neale Rannsd792d9c2017-10-21 10:53:20 -0700838
839 lookup_dpo_t *lkd = lookup_dpo_get(dpo_disp_entry_v4->dpoi_index);
840
841 BIER_TEST((bdti1 == lkd->lkd_fib_index),
842 "disp is deag in %d %U",
843 lkd->lkd_fib_index,
844 format_dpo_id, dpo_disp_entry_v4, 0);
845 BIER_TEST((LOOKUP_INPUT_DST_ADDR == lkd->lkd_input),
846 "disp is destination deag in %d %U",
847 lkd->lkd_input,
848 format_dpo_id, dpo_disp_entry_v4, 0);
849 BIER_TEST((LOOKUP_MULTICAST == lkd->lkd_cast),
850 "disp is multicast deag in %d %U",
851 lkd->lkd_input,
852 format_dpo_id, dpo_disp_entry_v4, 0);
853
854 /*
855 * cleanup
856 */
857 dpo_reset(&dpo_disp_tbl_1);
858
859 bier_disp_table_entry_path_remove(bier_disp_tbl_id, src,
860 BIER_HDR_PROTO_IPV4, rpaths);
861 bier_table_route_remove(&bt_0_0_0_256, 3, paths_via_disp);
862
863 bier_disp_table_unlock_w_table_id(bier_disp_tbl_id);
864
865 bier_table_unlock(&bt_0_0_0_256);
866
867 BIER_TEST(0 == pool_elts(bier_fmask_pool),
868 "BIER fmask resources freed ");
869 BIER_TEST(0 == pool_elts(bier_table_pool),
870 "BIER table resources freed ");
871 BIER_TEST(0 == pool_elts(bier_disp_table_pool),
872 "BIER Disposition table resources freed ");
873 BIER_TEST(0 == pool_elts(bier_disp_entry_pool),
874 "BIER Disposition entry resources freed ");
875
876 vec_free(paths_via_disp);
877 return (0);
878}
879
880static clib_error_t *
881bier_test (vlib_main_t * vm,
882 unformat_input_t * input,
883 vlib_cli_command_t * cmd_arg)
884{
885 int res = 0;
886
887 res += bier_test_mk_intf(4);
888
889 if (unformat (input, "debug"))
890 {
891 bier_test_do_debug = 1;
892 }
893
894 if (unformat (input, "mid"))
895 res += bier_test_mpls_spf();
896 else if (unformat (input, "head"))
897 res += bier_test_mpls_imp();
898 else if (unformat (input, "tail"))
899 res += bier_test_mpls_disp();
900 else
901 {
902 res += bier_test_mpls_spf();
903 res += bier_test_mpls_imp();
904 res += bier_test_mpls_disp();
905 }
906
907 if (res)
908 {
909 return clib_error_return(0, "BIER Unit Test Failed");
910 }
911 else
912 {
913 return (NULL);
914 }
915}
916
917VLIB_CLI_COMMAND (test_route_command, static) = {
918 .path = "test bier",
919 .short_help = "bier unit tests",
920 .function = bier_test,
921};
922
923clib_error_t *
924bier_test_init (vlib_main_t *vm)
925{
926 return 0;
927}
928
929VLIB_INIT_FUNCTION (bier_test_init);