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