blob: 4108d09f51e5738cad1789a8383f0ad876b7d729 [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#include <vnet/vnet.h>
17#include <vnet/mpls/mpls.h>
18
19#include <vnet/bier/bier_table.h>
20#include <vnet/bier/bier_types.h>
21#include <vnet/bier/bier_update.h>
22
23clib_error_t *
24vnet_bier_table_cmd (vlib_main_t * vm,
25 unformat_input_t * input,
26 vlib_cli_command_t * cmd)
27{
28 u32 hdr_len, local_label;
29 clib_error_t * error = 0;
30 bier_table_id_t bti = {
31 .bti_ecmp = BIER_ECMP_TABLE_ID_MAIN,
32 };
33 u32 is_add = 0;
34
Neale Ranns91286372017-12-05 13:24:04 -080035 local_label = MPLS_LABEL_INVALID;
36
Neale Rannsd792d9c2017-10-21 10:53:20 -070037 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT) {
38 if (unformat (input, "del")) {
39 is_add = 0;
40 } else if (unformat (input, "add")) {
41 is_add = 1;
42 } else if (unformat (input, "sd %d", &bti.bti_sub_domain)) {
43 } else if (unformat (input, "set %d", &bti.bti_set)) {
44 } else if (unformat (input, "bsl %d", &hdr_len)) {
45 } else if (unformat (input, "mpls %d", &local_label)) {
46 } else {
47 error = unformat_parse_error (input);
48 goto done;
49 }
50 }
51
52 bti.bti_hdr_len = bier_hdr_bit_len_to_id(hdr_len);
53 // FIXME
54 bti.bti_type = BIER_TABLE_MPLS_SPF;
55
56 if (is_add)
57 {
58 bier_table_add_or_lock(&bti, local_label);
59 }
60 else
61 {
62 bier_table_unlock(&bti);
63 }
64
65done:
66 return (error);
67}
68
69VLIB_CLI_COMMAND (bier_table_command) = {
70 .path = "bier table",
Neale Ranns91286372017-12-05 13:24:04 -080071 .short_help = "bier table [add|del] sd <sub-domain> set <SET> bsl <bit-string-length> [mpls <label>]",
Neale Rannsd792d9c2017-10-21 10:53:20 -070072 .function = vnet_bier_table_cmd,
73};
74
75clib_error_t *
76vnet_bier_route_cmd (vlib_main_t * vm,
77 unformat_input_t * input,
78 vlib_cli_command_t * cmd)
79{
80 clib_error_t * error = NULL;
Neale Ranns93149bb2017-11-15 10:44:07 -080081 fib_route_path_t *brps = NULL, brp = {
Neale Rannsd792d9c2017-10-21 10:53:20 -070082 .frp_flags = FIB_ROUTE_PATH_BIER_FMASK,
83 };
Neale Ranns70ed8ae2017-11-15 12:54:46 -080084 u32 hdr_len, payload_proto;
Neale Rannsd792d9c2017-10-21 10:53:20 -070085 bier_table_id_t bti = {
Neale Ranns91286372017-12-05 13:24:04 -080086 .bti_ecmp = BIER_ECMP_TABLE_ID_MAIN,
Neale Rannsd792d9c2017-10-21 10:53:20 -070087 };
Neale Rannsd792d9c2017-10-21 10:53:20 -070088 bier_bp_t bp;
Neale Rannsd792d9c2017-10-21 10:53:20 -070089 u32 add = 1;
90
Neale Ranns70ed8ae2017-11-15 12:54:46 -080091 payload_proto = DPO_PROTO_BIER;
92
Neale Rannsd792d9c2017-10-21 10:53:20 -070093 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT) {
94 if (unformat (input, "del")) {
95 add = 0;
Neale Ranns91286372017-12-05 13:24:04 -080096 } else if (unformat (input, "add")) {
97 add = 1;
Neale Rannsd792d9c2017-10-21 10:53:20 -070098 } else if (unformat (input, "sd %d", &bti.bti_sub_domain)) {
99 } else if (unformat (input, "set %d", &bti.bti_set)) {
100 } else if (unformat (input, "bsl %d", &hdr_len)) {
101 } else if (unformat (input, "bp %d", &bp)) {
Neale Ranns70ed8ae2017-11-15 12:54:46 -0800102 } else if (unformat (input, "via %U",
103 unformat_fib_route_path,
104 &brp, &payload_proto)) {
Neale Rannsd792d9c2017-10-21 10:53:20 -0700105 } else {
106 error = unformat_parse_error (input);
107 goto done;
108 }
109 }
110
Neale Ranns93149bb2017-11-15 10:44:07 -0800111 vec_add1(brps, brp);
Neale Rannsd792d9c2017-10-21 10:53:20 -0700112 bti.bti_hdr_len = bier_hdr_bit_len_to_id(hdr_len);
113 // FIXME
114 bti.bti_type = BIER_TABLE_MPLS_SPF;
115
116 if (add)
117 {
Neale Rannsef90ed02018-09-13 08:45:12 -0700118 bier_table_route_path_add(&bti, bp, brps);
Neale Rannsd792d9c2017-10-21 10:53:20 -0700119 }
120 else
121 {
Neale Rannsef90ed02018-09-13 08:45:12 -0700122 bier_table_route_path_remove(&bti, bp, brps);
Neale Rannsd792d9c2017-10-21 10:53:20 -0700123 }
124
125done:
Neale Ranns93149bb2017-11-15 10:44:07 -0800126 vec_free(brps);
Neale Rannsd792d9c2017-10-21 10:53:20 -0700127 return (error);
128}
129
130VLIB_CLI_COMMAND (bier_route_command) = {
Neale Ranns6cfe6432017-11-22 03:05:29 -0800131 .path = "bier route",
Neale Ranns91286372017-12-05 13:24:04 -0800132 .short_help = "bier route [add|del] sd <sud-domain> set <set> bsl <bit-string-length> bp <bit-position> via [next-hop-address] [next-hop-interface] [next-hop-table <value>] [weight <value>] [preference <value>] [udp-encap-id <value>] [ip4-lookup-in-table <value>] [ip6-lookup-in-table <value>] [mpls-lookup-in-table <value>] [resolve-via-host] [resolve-via-connected] [rx-ip4 <interface>] [out-labels <value value value>]",
Neale Rannsd792d9c2017-10-21 10:53:20 -0700133 .function = vnet_bier_route_cmd,
134};
135
136static clib_error_t *
137show_bier_fib_command_fn (vlib_main_t * vm,
138 unformat_input_t * input,
139 vlib_cli_command_t * cmd)
140{
141 bier_show_flags_t flags;
142 index_t bti, bei;
143 bier_bp_t bp;
144
145 bp = BIER_BP_INVALID;
146 bti = bei = INDEX_INVALID;
Neale Ranns93149bb2017-11-15 10:44:07 -0800147 flags = BIER_SHOW_BRIEF;
Neale Rannsd792d9c2017-10-21 10:53:20 -0700148
149 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT) {
150 if (unformat (input, "%d %d", &bti, &bp))
151 {
Neale Rannsef90ed02018-09-13 08:45:12 -0700152 flags = BIER_SHOW_DETAIL;
Neale Rannsd792d9c2017-10-21 10:53:20 -0700153 }
154 else if (unformat (input, "%d", &bti))
155 {
Neale Rannsef90ed02018-09-13 08:45:12 -0700156 flags = BIER_SHOW_DETAIL;
Neale Rannsd792d9c2017-10-21 10:53:20 -0700157 }
158 else
159 {
160 break;
161 }
162 }
163
164 if (INDEX_INVALID == bti)
165 {
166 bier_table_show_all(vm, flags);
167 }
168 else
169 {
170 if (!pool_is_free_index(bier_table_pool, bti))
171 {
172 if (BIER_BP_INVALID == bp)
173 {
174 vlib_cli_output (vm, "%U", format_bier_table, bti, flags);
175 }
176 else
177 {
178 vlib_cli_output (vm, "%U", format_bier_table_entry, bti, bp);
179 }
180 }
181 }
182 return (NULL);
183}
184
185VLIB_CLI_COMMAND (show_bier_fib_command, static) = {
186 .path = "show bier fib",
187 .short_help = "show bier fib [table-index] [bit-position]",
188 .function = show_bier_fib_command_fn,
189};