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