/* * Copyright (c) 2016 Cisco and/or its affiliates. * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at: * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include #include #include clib_error_t * vnet_bier_table_cmd (vlib_main_t * vm, unformat_input_t * input, vlib_cli_command_t * cmd) { u32 hdr_len, local_label; clib_error_t * error = 0; bier_table_id_t bti = { .bti_ecmp = BIER_ECMP_TABLE_ID_MAIN, }; u32 is_add = 0; local_label = MPLS_LABEL_INVALID; while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT) { if (unformat (input, "del")) { is_add = 0; } else if (unformat (input, "add")) { is_add = 1; } else if (unformat (input, "sd %d", &bti.bti_sub_domain)) { } else if (unformat (input, "set %d", &bti.bti_set)) { } else if (unformat (input, "bsl %d", &hdr_len)) { } else if (unformat (input, "mpls %d", &local_label)) { } else { error = unformat_parse_error (input); goto done; } } bti.bti_hdr_len = bier_hdr_bit_len_to_id(hdr_len); // FIXME bti.bti_type = BIER_TABLE_MPLS_SPF; if (is_add) { bier_table_add_or_lock(&bti, local_label); } else { bier_table_unlock(&bti); } done: return (error); } VLIB_CLI_COMMAND (bier_table_command) = { .path = "bier table", .short_help = "bier table [add|del] sd set bsl [mpls