blob: 2187d2886fc342594b30b652caa7537800e492e9 [file] [log] [blame]
Ed Warnickecb9cada2015-12-08 15:45:58 -07001/*
2 * Copyright (c) 2015 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 * cli.c: command line interface
17 *
18 * Copyright (c) 2008 Eliot Dresselhaus
19 *
20 * Permission is hereby granted, free of charge, to any person obtaining
21 * a copy of this software and associated documentation files (the
22 * "Software"), to deal in the Software without restriction, including
23 * without limitation the rights to use, copy, modify, merge, publish,
24 * distribute, sublicense, and/or sell copies of the Software, and to
25 * permit persons to whom the Software is furnished to do so, subject to
26 * the following conditions:
27 *
28 * The above copyright notice and this permission notice shall be
29 * included in all copies or substantial portions of the Software.
30 *
31 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
32 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
33 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
34 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
35 * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
36 * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
37 * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
38 */
39
40#include <vlib/vlib.h>
Damjan Marion8973b072022-03-01 15:51:18 +010041#include <vlib/stats/stats.h>
Chris Luke6edd3602018-06-12 22:45:06 -040042#include <vlib/unix/unix.h>
Tom Seidenberg6c81f5a2020-07-10 15:49:03 +000043#include <vppinfra/callback.h>
Damjan Marioneccf5092016-11-18 16:59:24 +010044#include <vppinfra/cpu.h>
Dave Barachc3a06552018-10-01 09:25:32 -040045#include <vppinfra/elog.h>
Damjan Marione5ef1d72017-03-02 12:33:48 +010046#include <unistd.h>
Yoann Desmouceaux3060e072017-05-18 11:00:48 +020047#include <ctype.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070048
Dave Baracha1f5a952019-11-01 11:24:43 -040049/** \file src/vlib/cli.c Debug CLI Implementation
50 */
51
Dave Barachb09f4d02019-07-15 16:00:03 -040052int vl_api_set_elog_trace_api_messages (int enable);
53int vl_api_get_elog_trace_api_messages (void);
54
Dave Barachd67a4282019-06-15 12:46:13 -040055static void *current_traced_heap;
56
Ed Warnickecb9cada2015-12-08 15:45:58 -070057/* Root of all show commands. */
Dave Barach9b8ffd92016-07-08 08:13:45 -040058/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -070059VLIB_CLI_COMMAND (vlib_cli_show_command, static) = {
60 .path = "show",
61 .short_help = "Show commands",
62};
Dave Barach9b8ffd92016-07-08 08:13:45 -040063/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -070064
65/* Root of all clear commands. */
Dave Barach9b8ffd92016-07-08 08:13:45 -040066/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -070067VLIB_CLI_COMMAND (vlib_cli_clear_command, static) = {
68 .path = "clear",
69 .short_help = "Clear commands",
70};
Dave Barach9b8ffd92016-07-08 08:13:45 -040071/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -070072
73/* Root of all set commands. */
Dave Barach9b8ffd92016-07-08 08:13:45 -040074/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -070075VLIB_CLI_COMMAND (vlib_cli_set_command, static) = {
76 .path = "set",
77 .short_help = "Set commands",
78};
Dave Barach9b8ffd92016-07-08 08:13:45 -040079/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -070080
81/* Root of all test commands. */
Dave Barach9b8ffd92016-07-08 08:13:45 -040082/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -070083VLIB_CLI_COMMAND (vlib_cli_test_command, static) = {
84 .path = "test",
85 .short_help = "Test commands",
86};
Dave Barach9b8ffd92016-07-08 08:13:45 -040087/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -070088
89/* Returns bitmap of commands which match key. */
90static uword *
91vlib_cli_sub_command_match (vlib_cli_command_t * c, unformat_input_t * input)
92{
93 int i, n;
Dave Barach9b8ffd92016-07-08 08:13:45 -040094 uword *match = 0;
95 vlib_cli_parse_position_t *p;
Ed Warnickecb9cada2015-12-08 15:45:58 -070096
97 unformat_skip_white_space (input);
98
Dave Barach9b8ffd92016-07-08 08:13:45 -040099 for (i = 0;; i++)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700100 {
101 uword k;
102
103 k = unformat_get_input (input);
104 switch (k)
105 {
106 case 'a' ... 'z':
107 case 'A' ... 'Z':
108 case '0' ... '9':
Dave Barach9b8ffd92016-07-08 08:13:45 -0400109 case '-':
110 case '_':
Ed Warnickecb9cada2015-12-08 15:45:58 -0700111 break;
112
Dave Barach9b8ffd92016-07-08 08:13:45 -0400113 case ' ':
114 case '\t':
115 case '\r':
116 case '\n':
Ed Warnickecb9cada2015-12-08 15:45:58 -0700117 case UNFORMAT_END_OF_INPUT:
118 /* White space or end of input removes any non-white
119 matches that were before possible. */
120 if (i < vec_len (c->sub_command_positions)
121 && clib_bitmap_count_set_bits (match) > 1)
122 {
123 p = vec_elt_at_index (c->sub_command_positions, i);
124 for (n = 0; n < vec_len (p->bitmaps); n++)
125 match = clib_bitmap_andnot (match, p->bitmaps[n]);
126 }
127 goto done;
128
129 default:
130 unformat_put_input (input);
131 goto done;
132 }
133
134 if (i >= vec_len (c->sub_command_positions))
135 {
136 no_match:
137 clib_bitmap_free (match);
138 return 0;
139 }
140
141 p = vec_elt_at_index (c->sub_command_positions, i);
142 if (vec_len (p->bitmaps) == 0)
143 goto no_match;
144
145 n = k - p->min_char;
146 if (n < 0 || n >= vec_len (p->bitmaps))
147 goto no_match;
148
149 if (i == 0)
150 match = clib_bitmap_dup (p->bitmaps[n]);
151 else
152 match = clib_bitmap_and (match, p->bitmaps[n]);
153
154 if (clib_bitmap_is_zero (match))
155 goto no_match;
156 }
157
Dave Barach9b8ffd92016-07-08 08:13:45 -0400158done:
Ed Warnickecb9cada2015-12-08 15:45:58 -0700159 return match;
160}
161
162/* Looks for string based sub-input formatted { SUB-INPUT }. */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400163uword
164unformat_vlib_cli_sub_input (unformat_input_t * i, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700165{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400166 unformat_input_t *sub_input = va_arg (*args, unformat_input_t *);
167 u8 *s;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700168 uword c;
169
170 while (1)
171 {
172 c = unformat_get_input (i);
173 switch (c)
174 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400175 case ' ':
176 case '\t':
177 case '\n':
178 case '\r':
Ed Warnickecb9cada2015-12-08 15:45:58 -0700179 case '\f':
180 break;
181
182 case '{':
183 default:
184 /* Put back paren. */
185 if (c != UNFORMAT_END_OF_INPUT)
186 unformat_put_input (i);
187
188 if (c == '{' && unformat (i, "%v", &s))
189 {
190 unformat_init_vector (sub_input, s);
191 return 1;
192 }
193 return 0;
194 }
195 }
196 return 0;
197}
198
199static vlib_cli_command_t *
200get_sub_command (vlib_cli_main_t * cm, vlib_cli_command_t * parent, u32 si)
201{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400202 vlib_cli_sub_command_t *s = vec_elt_at_index (parent->sub_commands, si);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700203 return vec_elt_at_index (cm->commands, s->index);
204}
205
Dave Barach9b8ffd92016-07-08 08:13:45 -0400206static uword
207unformat_vlib_cli_sub_command (unformat_input_t * i, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700208{
Damjan Marionfd8deb42021-03-06 12:26:28 +0100209 vlib_main_t __clib_unused *vm = va_arg (*args, vlib_main_t *);
210 vlib_global_main_t *vgm = vlib_get_global_main ();
Dave Barach9b8ffd92016-07-08 08:13:45 -0400211 vlib_cli_command_t *c = va_arg (*args, vlib_cli_command_t *);
212 vlib_cli_command_t **result = va_arg (*args, vlib_cli_command_t **);
Damjan Marionfd8deb42021-03-06 12:26:28 +0100213 vlib_cli_main_t *cm = &vgm->cli_main;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400214 uword *match_bitmap, is_unique, index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700215
Ed Warnickecb9cada2015-12-08 15:45:58 -0700216 match_bitmap = vlib_cli_sub_command_match (c, i);
217 is_unique = clib_bitmap_count_set_bits (match_bitmap) == 1;
218 index = ~0;
219 if (is_unique)
220 {
221 index = clib_bitmap_first_set (match_bitmap);
222 *result = get_sub_command (cm, c, index);
223 }
224 clib_bitmap_free (match_bitmap);
225
226 return is_unique;
227}
228
Yoann Desmouceaux3060e072017-05-18 11:00:48 +0200229static int
230vlib_cli_cmp_strings (void *a1, void *a2)
231{
232 u8 *c1 = *(u8 **) a1;
233 u8 *c2 = *(u8 **) a2;
234
235 return vec_cmp (c1, c2);
236}
237
238u8 **
239vlib_cli_get_possible_completions (u8 * str)
240{
241 vlib_cli_command_t *c;
242 vlib_cli_sub_command_t *sc;
Damjan Marionfd8deb42021-03-06 12:26:28 +0100243 vlib_global_main_t *vgm = vlib_get_global_main ();
244 vlib_cli_main_t *vcm = &vgm->cli_main;
Yoann Desmouceaux3060e072017-05-18 11:00:48 +0200245 uword *match_bitmap = 0;
246 uword index, is_unique, help_next_level;
247 u8 **result = 0;
248 unformat_input_t input;
249 unformat_init_vector (&input, vec_dup (str));
250 c = vec_elt_at_index (vcm->commands, 0);
251
252 /* remove trailing whitespace, except for one of them */
253 while (vec_len (input.buffer) >= 2 &&
254 isspace (input.buffer[vec_len (input.buffer) - 1]) &&
255 isspace (input.buffer[vec_len (input.buffer) - 2]))
256 {
257 vec_del1 (input.buffer, vec_len (input.buffer) - 1);
258 }
259
260 /* if input is empty, directly return list of root commands */
261 if (vec_len (input.buffer) == 0 ||
262 (vec_len (input.buffer) == 1 && isspace (input.buffer[0])))
263 {
264 vec_foreach (sc, c->sub_commands)
265 {
266 vec_add1 (result, (u8 *) sc->name);
267 }
268 goto done;
269 }
270
271 /* add a trailing '?' so that vlib_cli_sub_command_match can find
272 * all commands starting with the input string */
273 vec_add1 (input.buffer, '?');
274
275 while (1)
276 {
277 match_bitmap = vlib_cli_sub_command_match (c, &input);
278 /* no match: return no result */
279 if (match_bitmap == 0)
280 {
281 goto done;
282 }
283 is_unique = clib_bitmap_count_set_bits (match_bitmap) == 1;
284 /* unique match: try to step one subcommand level further */
285 if (is_unique)
286 {
287 /* stop if no more input */
288 if (input.index >= vec_len (input.buffer) - 1)
289 {
290 break;
291 }
292
293 index = clib_bitmap_first_set (match_bitmap);
294 c = get_sub_command (vcm, c, index);
295 clib_bitmap_free (match_bitmap);
296 continue;
297 }
298 /* multiple matches: stop here, return all matches */
299 break;
300 }
301
302 /* remove trailing '?' */
303 vec_del1 (input.buffer, vec_len (input.buffer) - 1);
304
305 /* if we have a space at the end of input, and a unique match,
306 * autocomplete the next level of subcommands */
307 help_next_level = (vec_len (str) == 0) || isspace (str[vec_len (str) - 1]);
308 /* *INDENT-OFF* */
Damjan Marionf0ca1e82020-12-13 23:26:56 +0100309 clib_bitmap_foreach (index, match_bitmap) {
Yoann Desmouceaux3060e072017-05-18 11:00:48 +0200310 if (help_next_level && is_unique) {
311 c = get_sub_command (vcm, c, index);
312 vec_foreach (sc, c->sub_commands) {
313 vec_add1 (result, (u8*) sc->name);
314 }
315 goto done; /* break doesn't work in this macro-loop */
316 }
317 sc = &c->sub_commands[index];
318 vec_add1(result, (u8*) sc->name);
Damjan Marionf0ca1e82020-12-13 23:26:56 +0100319 }
Yoann Desmouceaux3060e072017-05-18 11:00:48 +0200320 /* *INDENT-ON* */
321
322done:
323 clib_bitmap_free (match_bitmap);
324 unformat_free (&input);
325
Yoann Desmouceaux4227eef2017-05-24 15:51:48 +0200326 if (result)
327 vec_sort_with_function (result, vlib_cli_cmp_strings);
Yoann Desmouceaux3060e072017-05-18 11:00:48 +0200328 return result;
329}
330
Dave Barach9b8ffd92016-07-08 08:13:45 -0400331static u8 *
332format_vlib_cli_command_help (u8 * s, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700333{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400334 vlib_cli_command_t *c = va_arg (*args, vlib_cli_command_t *);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700335 int is_long = va_arg (*args, int);
336 if (is_long && c->long_help)
337 s = format (s, "%s", c->long_help);
338 else if (c->short_help)
339 s = format (s, "%s", c->short_help);
340 else
341 s = format (s, "%v commands", c->path);
342 return s;
343}
344
Dave Barach9b8ffd92016-07-08 08:13:45 -0400345static u8 *
Dave Barach9b8ffd92016-07-08 08:13:45 -0400346format_vlib_cli_path (u8 * s, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700347{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400348 u8 *path = va_arg (*args, u8 *);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700349
Dave Barach6b3f25c2019-12-09 10:45:47 -0500350 s = format (s, "%v", path);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700351
352 return s;
353}
354
355static vlib_cli_command_t *
Dave Barach9b8ffd92016-07-08 08:13:45 -0400356all_subs (vlib_cli_main_t * cm, vlib_cli_command_t * subs, u32 command_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700357{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400358 vlib_cli_command_t *c = vec_elt_at_index (cm->commands, command_index);
359 vlib_cli_sub_command_t *sc;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700360
361 if (c->function)
362 vec_add1 (subs, c[0]);
363
Dave Barach9b8ffd92016-07-08 08:13:45 -0400364 vec_foreach (sc, c->sub_commands) subs = all_subs (cm, subs, sc->index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700365
366 return subs;
367}
368
Matus Fabiand2dc3df2015-12-14 10:31:33 -0500369static int
Dave Barach9b8ffd92016-07-08 08:13:45 -0400370vlib_cli_cmp_rule (void *a1, void *a2)
Matus Fabiand2dc3df2015-12-14 10:31:33 -0500371{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400372 vlib_cli_sub_rule_t *r1 = a1;
373 vlib_cli_sub_rule_t *r2 = a2;
Matus Fabiand2dc3df2015-12-14 10:31:33 -0500374
375 return vec_cmp (r1->name, r2->name);
376}
377
378static int
Dave Barach9b8ffd92016-07-08 08:13:45 -0400379vlib_cli_cmp_command (void *a1, void *a2)
Matus Fabiand2dc3df2015-12-14 10:31:33 -0500380{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400381 vlib_cli_command_t *c1 = a1;
382 vlib_cli_command_t *c2 = a2;
Matus Fabiand2dc3df2015-12-14 10:31:33 -0500383
384 return vec_cmp (c1->path, c2->path);
385}
386
Ed Warnickecb9cada2015-12-08 15:45:58 -0700387static clib_error_t *
388vlib_cli_dispatch_sub_commands (vlib_main_t * vm,
389 vlib_cli_main_t * cm,
390 unformat_input_t * input,
391 uword parent_command_index)
392{
Damjan Marionfd8deb42021-03-06 12:26:28 +0100393 vlib_global_main_t *vgm = vlib_get_global_main ();
Dave Barach9b8ffd92016-07-08 08:13:45 -0400394 vlib_cli_command_t *parent, *c;
395 clib_error_t *error = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700396 unformat_input_t sub_input;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400397 u8 *string;
Damjan Marionfd8deb42021-03-06 12:26:28 +0100398 uword is_main_dispatch = cm == &vgm->cli_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700399
400 parent = vec_elt_at_index (cm->commands, parent_command_index);
401 if (is_main_dispatch && unformat (input, "help"))
402 {
403 uword help_at_end_of_line, i;
404
Dave Barach9b8ffd92016-07-08 08:13:45 -0400405 help_at_end_of_line =
406 unformat_check_input (input) == UNFORMAT_END_OF_INPUT;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700407 while (1)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400408 {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700409 c = parent;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400410 if (unformat_user
411 (input, unformat_vlib_cli_sub_command, vm, c, &parent))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700412 ;
413
Dave Barach9b8ffd92016-07-08 08:13:45 -0400414 else if (!(unformat_check_input (input) == UNFORMAT_END_OF_INPUT))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700415 goto unknown;
416
417 else
418 break;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400419 }
420
Ed Warnickecb9cada2015-12-08 15:45:58 -0700421 /* help SUB-COMMAND => long format help.
Dave Barach9b8ffd92016-07-08 08:13:45 -0400422 "help" at end of line: show all commands. */
423 if (!help_at_end_of_line)
424 vlib_cli_output (vm, "%U", format_vlib_cli_command_help, c,
425 /* is_long */ 1);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700426
Dave Barach6b3f25c2019-12-09 10:45:47 -0500427 else if (vec_len (c->sub_commands) == 0)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700428 vlib_cli_output (vm, "%v: no sub-commands", c->path);
429
430 else
431 {
Dave Barach6b3f25c2019-12-09 10:45:47 -0500432 vlib_cli_sub_rule_t *sr, *subs = 0;
Dave Barach6d5df8d2019-12-11 09:46:56 -0500433 vlib_cli_sub_command_t *sc;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700434
Dave Barach6d5df8d2019-12-11 09:46:56 -0500435 vec_foreach (sc, c->sub_commands)
436 {
437 vec_add2 (subs, sr, 1);
438 sr->name = sc->name;
439 sr->command_index = sc->index;
440 sr->rule_index = ~0;
441 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700442
Matus Fabiand2dc3df2015-12-14 10:31:33 -0500443 vec_sort_with_function (subs, vlib_cli_cmp_rule);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700444
Dave Barach9b8ffd92016-07-08 08:13:45 -0400445 for (i = 0; i < vec_len (subs); i++)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700446 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400447 vlib_cli_command_t *d;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700448
449 d = vec_elt_at_index (cm->commands, subs[i].command_index);
Dave Barach6b3f25c2019-12-09 10:45:47 -0500450 vlib_cli_output
451 (vm, " %-30v %U", subs[i].name,
452 format_vlib_cli_command_help, d, /* is_long */ 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700453 }
454
455 vec_free (subs);
456 }
457 }
Dave Barach9b8ffd92016-07-08 08:13:45 -0400458
459 else if (is_main_dispatch
460 && (unformat (input, "choices") || unformat (input, "?")))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700461 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400462 vlib_cli_command_t *sub, *subs;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700463
464 subs = all_subs (cm, 0, parent_command_index);
Matus Fabiand2dc3df2015-12-14 10:31:33 -0500465 vec_sort_with_function (subs, vlib_cli_cmp_command);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700466 vec_foreach (sub, subs)
467 vlib_cli_output (vm, " %-40U %U",
468 format_vlib_cli_path, sub->path,
469 format_vlib_cli_command_help, sub, /* is_long */ 0);
470 vec_free (subs);
471 }
472
473 else if (unformat (input, "comment %v", &string))
474 {
475 vec_free (string);
476 }
Dave Barach9b8ffd92016-07-08 08:13:45 -0400477
Dave Barach3d0e0d12021-02-17 10:25:18 -0500478 else if (unformat (input, "vpplog %v", &string))
479 {
480 int i;
481 /*
482 * Delete leading whitespace, so "vpplog { this and that }"
483 * and "vpplog this" line up nicely.
484 */
485 for (i = 0; i < vec_len (string); i++)
486 if (string[i] != ' ')
487 break;
488 if (i > 0)
489 vec_delete (string, i, 0);
490
491 vlib_log_notice (cm->log, "CLI: %v", string);
492 vec_free (string);
493 }
494
Ed Warnickecb9cada2015-12-08 15:45:58 -0700495 else if (unformat (input, "uncomment %U",
496 unformat_vlib_cli_sub_input, &sub_input))
497 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400498 error =
499 vlib_cli_dispatch_sub_commands (vm, cm, &sub_input,
500 parent_command_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700501 unformat_free (&sub_input);
502 }
Dave Barach8fdde3c2019-05-17 10:46:40 -0400503 else if (unformat (input, "leak-check %U",
504 unformat_vlib_cli_sub_input, &sub_input))
505 {
506 u8 *leak_report;
Dave Barachd67a4282019-06-15 12:46:13 -0400507 if (current_traced_heap)
508 {
509 void *oldheap;
510 oldheap = clib_mem_set_heap (current_traced_heap);
511 clib_mem_trace (0);
512 clib_mem_set_heap (oldheap);
513 current_traced_heap = 0;
514 }
Dave Barach8fdde3c2019-05-17 10:46:40 -0400515 clib_mem_trace (1);
516 error =
517 vlib_cli_dispatch_sub_commands (vm, cm, &sub_input,
518 parent_command_index);
519 unformat_free (&sub_input);
520
521 /* Otherwise, the clib_error_t shows up as a leak... */
522 if (error)
523 {
524 vlib_cli_output (vm, "%v", error->what);
525 clib_error_free (error);
526 error = 0;
527 }
528
529 (void) clib_mem_trace_enable_disable (0);
Damjan Marion4537c302020-09-28 19:03:37 +0200530 leak_report = format (0, "%U", format_clib_mem_heap, 0,
Dave Barach8fdde3c2019-05-17 10:46:40 -0400531 1 /* verbose, i.e. print leaks */ );
532 clib_mem_trace (0);
533 vlib_cli_output (vm, "%v", leak_report);
534 vec_free (leak_report);
535 }
Dave Barach9b8ffd92016-07-08 08:13:45 -0400536
537 else
538 if (unformat_user (input, unformat_vlib_cli_sub_command, vm, parent, &c))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700539 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400540 unformat_input_t *si;
541 uword has_sub_commands =
542 vec_len (c->sub_commands) + vec_len (c->sub_rules) > 0;
543
Ed Warnickecb9cada2015-12-08 15:45:58 -0700544 si = input;
545 if (unformat_user (input, unformat_vlib_cli_sub_input, &sub_input))
546 si = &sub_input;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400547
Ed Warnickecb9cada2015-12-08 15:45:58 -0700548 if (has_sub_commands)
549 error = vlib_cli_dispatch_sub_commands (vm, cm, si, c - cm->commands);
550
Dave Barach9b8ffd92016-07-08 08:13:45 -0400551 if (has_sub_commands && !error)
552 /* Found valid sub-command. */ ;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700553
554 else if (c->function)
555 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400556 clib_error_t *c_error;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700557
558 /* Skip white space for benefit of called function. */
559 unformat_skip_white_space (si);
560
561 if (unformat (si, "?"))
562 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400563 vlib_cli_output (vm, " %-40U %U", format_vlib_cli_path, c->path, format_vlib_cli_command_help, c, /* is_long */
564 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700565 }
566 else
567 {
Dave Barachc3a06552018-10-01 09:25:32 -0400568 if (PREDICT_FALSE (vm->elog_trace_cli_commands))
569 {
570 /* *INDENT-OFF* */
571 ELOG_TYPE_DECLARE (e) =
572 {
573 .format = "cli-cmd: %s",
574 .format_args = "T4",
575 };
576 /* *INDENT-ON* */
577 struct
578 {
579 u32 c;
580 } *ed;
Damjan Marionf553a2c2021-03-26 13:45:37 +0100581 ed = ELOG_DATA (vlib_get_elog_main (), e);
582 ed->c = elog_string (vlib_get_elog_main (), "%v", c->path);
Dave Barachc3a06552018-10-01 09:25:32 -0400583 }
584
Dave Barach9b8ffd92016-07-08 08:13:45 -0400585 if (!c->is_mp_safe)
586 vlib_worker_thread_barrier_sync (vm);
Tom Seidenberg6c81f5a2020-07-10 15:49:03 +0000587 if (PREDICT_FALSE (vec_len (cm->perf_counter_cbs) != 0))
588 clib_call_callbacks (cm->perf_counter_cbs, cm,
589 c - cm->commands, 0 /* before */ );
Ed Warnickecb9cada2015-12-08 15:45:58 -0700590
Dave Baracha1f5a952019-11-01 11:24:43 -0400591 c->hit_counter++;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700592 c_error = c->function (vm, si, c);
593
Tom Seidenberg6c81f5a2020-07-10 15:49:03 +0000594 if (PREDICT_FALSE (vec_len (cm->perf_counter_cbs) != 0))
595 clib_call_callbacks (cm->perf_counter_cbs, cm,
596 c - cm->commands, 1 /* after */ );
Dave Barach9b8ffd92016-07-08 08:13:45 -0400597 if (!c->is_mp_safe)
598 vlib_worker_thread_barrier_release (vm);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700599
Dave Barachc3a06552018-10-01 09:25:32 -0400600 if (PREDICT_FALSE (vm->elog_trace_cli_commands))
601 {
602 /* *INDENT-OFF* */
603 ELOG_TYPE_DECLARE (e) =
604 {
605 .format = "cli-cmd: %s %s",
606 .format_args = "T4T4",
607 };
608 /* *INDENT-ON* */
609 struct
610 {
611 u32 c, err;
612 } *ed;
Damjan Marionf553a2c2021-03-26 13:45:37 +0100613 ed = ELOG_DATA (vlib_get_elog_main (), e);
614 ed->c = elog_string (vlib_get_elog_main (), "%v", c->path);
Dave Barachc3a06552018-10-01 09:25:32 -0400615 if (c_error)
616 {
617 vec_add1 (c_error->what, 0);
Damjan Marionf553a2c2021-03-26 13:45:37 +0100618 ed->err = elog_string (vlib_get_elog_main (),
619 (char *) c_error->what);
Dave Barachc3a06552018-10-01 09:25:32 -0400620 _vec_len (c_error->what) -= 1;
621 }
622 else
Damjan Marionf553a2c2021-03-26 13:45:37 +0100623 ed->err = elog_string (vlib_get_elog_main (), "OK");
Dave Barachc3a06552018-10-01 09:25:32 -0400624 }
625
Ed Warnickecb9cada2015-12-08 15:45:58 -0700626 if (c_error)
627 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400628 error =
629 clib_error_return (0, "%v: %v", c->path, c_error->what);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700630 clib_error_free (c_error);
631 /* Free sub input. */
632 if (si != input)
633 unformat_free (si);
634
635 return error;
636 }
637 }
638
639 /* Free any previous error. */
640 clib_error_free (error);
641 }
642
Dave Barach9b8ffd92016-07-08 08:13:45 -0400643 else if (!error)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700644 error = clib_error_return (0, "%v: no sub-commands", c->path);
645
646 /* Free sub input. */
647 if (si != input)
648 unformat_free (si);
649 }
650
651 else
652 goto unknown;
653
654 return error;
655
Dave Barach9b8ffd92016-07-08 08:13:45 -0400656unknown:
Ed Warnickecb9cada2015-12-08 15:45:58 -0700657 if (parent->path)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400658 return clib_error_return (0, "%v: unknown input `%U'", parent->path,
659 format_unformat_error, input);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700660 else
Dave Barach9b8ffd92016-07-08 08:13:45 -0400661 return clib_error_return (0, "unknown input `%U'", format_unformat_error,
662 input);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700663}
664
665
Dave Barach9b8ffd92016-07-08 08:13:45 -0400666void vlib_unix_error_report (vlib_main_t *, clib_error_t *)
667 __attribute__ ((weak));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700668
Dave Barach9b8ffd92016-07-08 08:13:45 -0400669void
670vlib_unix_error_report (vlib_main_t * vm, clib_error_t * error)
671{
672}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700673
674/* Process CLI input. */
Ole Troan72d87582019-05-10 12:01:10 +0200675int
Dave Barach9b8ffd92016-07-08 08:13:45 -0400676vlib_cli_input (vlib_main_t * vm,
677 unformat_input_t * input,
678 vlib_cli_output_function_t * function, uword function_arg)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700679{
Damjan Marionfd8deb42021-03-06 12:26:28 +0100680 vlib_global_main_t *vgm = vlib_get_global_main ();
Dave Barach9b8ffd92016-07-08 08:13:45 -0400681 vlib_process_t *cp = vlib_get_current_process (vm);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400682 clib_error_t *error;
683 vlib_cli_output_function_t *save_function;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700684 uword save_function_arg;
Ole Troan72d87582019-05-10 12:01:10 +0200685 int rv = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700686
Andrew Yourtchenko716d9592016-05-10 10:51:34 +0000687 save_function = cp->output_function;
688 save_function_arg = cp->output_function_arg;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700689
Andrew Yourtchenko716d9592016-05-10 10:51:34 +0000690 cp->output_function = function;
691 cp->output_function_arg = function_arg;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700692
Dave Barach9b8ffd92016-07-08 08:13:45 -0400693 do
694 {
Damjan Marionfd8deb42021-03-06 12:26:28 +0100695 error = vlib_cli_dispatch_sub_commands (vm, &vgm->cli_main, input,
Dave Barach6b3f25c2019-12-09 10:45:47 -0500696 /* parent */ 0);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400697 }
698 while (!error && !unformat (input, "%U", unformat_eof));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700699
700 if (error)
701 {
702 vlib_cli_output (vm, "%v", error->what);
703 vlib_unix_error_report (vm, error);
Ole Troan72d87582019-05-10 12:01:10 +0200704 /* clib_error_return is unfortunately often called with a '0'
705 return code */
706 rv = error->code != 0 ? error->code : -1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700707 clib_error_free (error);
708 }
709
Andrew Yourtchenko716d9592016-05-10 10:51:34 +0000710 cp->output_function = save_function;
711 cp->output_function_arg = save_function_arg;
Ole Troan72d87582019-05-10 12:01:10 +0200712 return rv;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700713}
714
715/* Output to current CLI connection. */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400716void
717vlib_cli_output (vlib_main_t * vm, char *fmt, ...)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700718{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400719 vlib_process_t *cp = vlib_get_current_process (vm);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700720 va_list va;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400721 u8 *s;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700722
723 va_start (va, fmt);
724 s = va_format (0, fmt, &va);
725 va_end (va);
726
Nathan Skrzypczak19ce5022020-11-23 17:56:32 +0100727 /* some format functions might return 0
728 * e.g. show int addr */
729 if (NULL == s)
730 return;
731
Ed Warnickecb9cada2015-12-08 15:45:58 -0700732 /* Terminate with \n if not present. */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400733 if (vec_len (s) > 0 && s[vec_len (s) - 1] != '\n')
Ed Warnickecb9cada2015-12-08 15:45:58 -0700734 vec_add1 (s, '\n');
735
Dave Barach9b8ffd92016-07-08 08:13:45 -0400736 if ((!cp) || (!cp->output_function))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700737 fformat (stdout, "%v", s);
738 else
Andrew Yourtchenko716d9592016-05-10 10:51:34 +0000739 cp->output_function (cp->output_function_arg, s, vec_len (s));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700740
741 vec_free (s);
742}
743
Ole Troan73710c72018-06-04 22:27:49 +0200744void *vl_msg_push_heap (void) __attribute__ ((weak));
Dave Barachd67a4282019-06-15 12:46:13 -0400745void *
746vl_msg_push_heap (void)
747{
748 return 0;
749}
750
Ole Troan73710c72018-06-04 22:27:49 +0200751void vl_msg_pop_heap (void *oldheap) __attribute__ ((weak));
Dave Barachd67a4282019-06-15 12:46:13 -0400752void
753vl_msg_pop_heap (void *oldheap)
754{
755}
756
Ed Warnickecb9cada2015-12-08 15:45:58 -0700757static clib_error_t *
758show_memory_usage (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400759 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700760{
Damjan Marion57d1ec02020-09-16 21:15:44 +0200761 clib_mem_main_t *mm = &clib_mem_main;
Dave Barachd67a4282019-06-15 12:46:13 -0400762 int verbose __attribute__ ((unused)) = 0;
Dave Baracha690fdb2020-01-21 12:34:55 -0500763 int api_segment = 0, stats_segment = 0, main_heap = 0, numa_heaps = 0;
Damjan Marion6bfd0762020-09-11 22:16:53 +0200764 int map = 0;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400765 clib_error_t *error;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700766 u32 index = 0;
Dave Baracha690fdb2020-01-21 12:34:55 -0500767 int i;
Dave Barachd67a4282019-06-15 12:46:13 -0400768 uword clib_mem_trace_enable_disable (uword enable);
769 uword was_enabled;
770
Ed Warnickecb9cada2015-12-08 15:45:58 -0700771
Dave Barach9b8ffd92016-07-08 08:13:45 -0400772 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700773 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400774 if (unformat (input, "verbose"))
775 verbose = 1;
Ole Troan73710c72018-06-04 22:27:49 +0200776 else if (unformat (input, "api-segment"))
777 api_segment = 1;
Dave Barachd67a4282019-06-15 12:46:13 -0400778 else if (unformat (input, "stats-segment"))
779 stats_segment = 1;
780 else if (unformat (input, "main-heap"))
781 main_heap = 1;
Dave Baracha690fdb2020-01-21 12:34:55 -0500782 else if (unformat (input, "numa-heaps"))
783 numa_heaps = 1;
Damjan Marion6bfd0762020-09-11 22:16:53 +0200784 else if (unformat (input, "map"))
785 map = 1;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400786 else
787 {
788 error = clib_error_return (0, "unknown input `%U'",
789 format_unformat_error, input);
790 return error;
791 }
792 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700793
Damjan Marion6bfd0762020-09-11 22:16:53 +0200794 if ((api_segment + stats_segment + main_heap + numa_heaps + map) == 0)
Dave Barachd67a4282019-06-15 12:46:13 -0400795 return clib_error_return
Damjan Marion6bfd0762020-09-11 22:16:53 +0200796 (0, "Need one of api-segment, stats-segment, main-heap, numa-heaps "
797 "or map");
Dave Barachd67a4282019-06-15 12:46:13 -0400798
Ole Troan73710c72018-06-04 22:27:49 +0200799 if (api_segment)
800 {
801 void *oldheap = vl_msg_push_heap ();
Dave Barachd67a4282019-06-15 12:46:13 -0400802 was_enabled = clib_mem_trace_enable_disable (0);
Damjan Marion4537c302020-09-28 19:03:37 +0200803 u8 *s_in_svm = format (0, "%U\n", format_clib_mem_heap, 0, 1);
Ole Troan73710c72018-06-04 22:27:49 +0200804 vl_msg_pop_heap (oldheap);
805 u8 *s = vec_dup (s_in_svm);
806
807 oldheap = vl_msg_push_heap ();
808 vec_free (s_in_svm);
Dave Barachd67a4282019-06-15 12:46:13 -0400809 clib_mem_trace_enable_disable (was_enabled);
Ole Troan73710c72018-06-04 22:27:49 +0200810 vl_msg_pop_heap (oldheap);
Dave Barachd67a4282019-06-15 12:46:13 -0400811 vlib_cli_output (vm, "API segment");
Ole Troan73710c72018-06-04 22:27:49 +0200812 vlib_cli_output (vm, "%v", s);
Dave Barachd67a4282019-06-15 12:46:13 -0400813 vec_free (s);
814 }
815 if (stats_segment)
816 {
Damjan Marion8973b072022-03-01 15:51:18 +0100817 void *oldheap = vlib_stats_set_heap (0);
Dave Barachd67a4282019-06-15 12:46:13 -0400818 was_enabled = clib_mem_trace_enable_disable (0);
Damjan Marion4537c302020-09-28 19:03:37 +0200819 u8 *s_in_svm = format (0, "%U\n", format_clib_mem_heap, 0, 1);
Dave Barachd67a4282019-06-15 12:46:13 -0400820 if (oldheap)
821 clib_mem_set_heap (oldheap);
822 u8 *s = vec_dup (s_in_svm);
823
Damjan Marion8973b072022-03-01 15:51:18 +0100824 oldheap = vlib_stats_set_heap (0);
Dave Barachd67a4282019-06-15 12:46:13 -0400825 vec_free (s_in_svm);
826 if (oldheap)
827 {
828 clib_mem_trace_enable_disable (was_enabled);
829 clib_mem_set_heap (oldheap);
830 }
831 vlib_cli_output (vm, "Stats segment");
832 vlib_cli_output (vm, "%v", s);
Ole Troan73710c72018-06-04 22:27:49 +0200833 vec_free (s);
834 }
835
Dave Baracha690fdb2020-01-21 12:34:55 -0500836
Dave Barach6a5adc32018-07-04 10:56:23 -0400837 {
Dave Barachd67a4282019-06-15 12:46:13 -0400838 if (main_heap)
839 {
840 /*
841 * Note: the foreach_vlib_main causes allocator traffic,
842 * so shut off tracing before we go there...
843 */
844 was_enabled = clib_mem_trace_enable_disable (0);
Dave Barach6a5adc32018-07-04 10:56:23 -0400845
Damjan Marion92ccf9b2021-03-26 11:38:01 +0100846 foreach_vlib_main ()
847 {
848 vlib_cli_output (vm, "%sThread %d %s\n", index ? "\n" : "", index,
849 vlib_worker_threads[index].name);
850 vlib_cli_output (vm, " %U\n", format_clib_mem_heap,
851 mm->per_cpu_mheaps[index], verbose);
852 index++;
853 }
Dave Barach6a5adc32018-07-04 10:56:23 -0400854
Dave Barachd67a4282019-06-15 12:46:13 -0400855 /* Restore the trace flag */
856 clib_mem_trace_enable_disable (was_enabled);
857 }
Dave Baracha690fdb2020-01-21 12:34:55 -0500858 if (numa_heaps)
859 {
Damjan Marion57d1ec02020-09-16 21:15:44 +0200860 for (i = 0; i < ARRAY_LEN (mm->per_numa_mheaps); i++)
Dave Baracha690fdb2020-01-21 12:34:55 -0500861 {
Damjan Marion57d1ec02020-09-16 21:15:44 +0200862 if (mm->per_numa_mheaps[i] == 0)
Dave Baracha690fdb2020-01-21 12:34:55 -0500863 continue;
Damjan Marion57d1ec02020-09-16 21:15:44 +0200864 if (mm->per_numa_mheaps[i] == mm->per_cpu_mheaps[i])
Dave Baracha690fdb2020-01-21 12:34:55 -0500865 {
866 vlib_cli_output (vm, "Numa %d uses the main heap...", i);
867 continue;
868 }
869 was_enabled = clib_mem_trace_enable_disable (0);
Dave Baracha690fdb2020-01-21 12:34:55 -0500870
Dave Baracha690fdb2020-01-21 12:34:55 -0500871 vlib_cli_output (vm, "Numa %d:", i);
Damjan Marion4537c302020-09-28 19:03:37 +0200872 vlib_cli_output (vm, " %U\n", format_clib_mem_heap,
Damjan Marion57d1ec02020-09-16 21:15:44 +0200873 mm->per_numa_mheaps[index], verbose);
Dave Baracha690fdb2020-01-21 12:34:55 -0500874 }
875 }
Damjan Marion6bfd0762020-09-11 22:16:53 +0200876 if (map)
877 {
878 clib_mem_page_stats_t stats = { };
879 clib_mem_vm_map_hdr_t *hdr = 0;
880 u8 *s = 0;
881 int numa = -1;
882
Damjan Marion5ef25162020-09-17 13:29:33 +0200883 s = format (s, "\n%-16s%7s%5s%7s%7s",
884 "StartAddr", "size", "FD", "PageSz", "Pages");
Damjan Marion6bfd0762020-09-11 22:16:53 +0200885 while ((numa = vlib_mem_get_next_numa_node (numa)) != -1)
886 s = format (s, " Numa%u", numa);
887 s = format (s, " NotMap");
888 s = format (s, " Name");
889 vlib_cli_output (vm, "%v", s);
890 vec_reset_length (s);
891
892 while ((hdr = clib_mem_vm_get_next_map_hdr (hdr)))
893 {
894 clib_mem_get_page_stats ((void *) hdr->base_addr,
895 hdr->log2_page_sz, hdr->num_pages,
896 &stats);
Damjan Marion5ef25162020-09-17 13:29:33 +0200897 s = format (s, "%016lx%7U",
Damjan Marion6bfd0762020-09-11 22:16:53 +0200898 hdr->base_addr, format_memory_size,
Damjan Marion5ef25162020-09-17 13:29:33 +0200899 hdr->num_pages << hdr->log2_page_sz);
900
901 if (hdr->fd != -1)
902 s = format (s, "%5d", hdr->fd);
903 else
904 s = format (s, "%5s", " ");
905
906 s = format (s, "%7U%7lu",
Damjan Marion6bfd0762020-09-11 22:16:53 +0200907 format_log2_page_size, hdr->log2_page_sz,
908 hdr->num_pages);
909 while ((numa = vlib_mem_get_next_numa_node (numa)) != -1)
910 s = format (s, "%6lu", stats.per_numa[numa]);
911 s = format (s, "%7lu", stats.not_mapped);
912 s = format (s, " %s", hdr->name);
913 vlib_cli_output (vm, "%v", s);
914 vec_reset_length (s);
915 }
916 vec_free (s);
917 }
Dave Barach6a5adc32018-07-04 10:56:23 -0400918 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700919 return 0;
920}
921
Dave Barach9b8ffd92016-07-08 08:13:45 -0400922/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700923VLIB_CLI_COMMAND (show_memory_usage_command, static) = {
924 .path = "show memory",
Dave Baracha690fdb2020-01-21 12:34:55 -0500925 .short_help = "show memory [api-segment][stats-segment][verbose]\n"
Damjan Marion6bfd0762020-09-11 22:16:53 +0200926 " [numa-heaps][map]",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700927 .function = show_memory_usage,
928};
Dave Barach9b8ffd92016-07-08 08:13:45 -0400929/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700930
931static clib_error_t *
Damjan Marioneccf5092016-11-18 16:59:24 +0100932show_cpu (vlib_main_t * vm, unformat_input_t * input,
933 vlib_cli_command_t * cmd)
934{
935#define _(a,b,c) vlib_cli_output (vm, "%-25s " b, a ":", c);
936 _("Model name", "%U", format_cpu_model_name);
Paul Vinciguerrad6897c12018-12-30 11:07:36 -0800937 _("Microarch model (family)", "%U", format_cpu_uarch);
Damjan Marioneccf5092016-11-18 16:59:24 +0100938 _("Flags", "%U", format_cpu_flags);
939 _("Base frequency", "%.2f GHz",
940 ((f64) vm->clib_time.clocks_per_second) * 1e-9);
941#undef _
942 return 0;
943}
944
945/*?
946 * Displays various information about the CPU.
947 *
948 * @cliexpar
949 * @cliexstart{show cpu}
950 * Model name: Intel(R) Xeon(R) CPU E5-2667 v4 @ 3.20GHz
951 * Microarchitecture: Broadwell (Broadwell-EP/EX)
952 * Flags: sse3 ssse3 sse41 sse42 avx avx2 aes
953 * Base Frequency: 3.20 GHz
954 * @cliexend
955?*/
956/* *INDENT-OFF* */
957VLIB_CLI_COMMAND (show_cpu_command, static) = {
958 .path = "show cpu",
959 .short_help = "Show cpu information",
960 .function = show_cpu,
961};
Damjan Marioneccf5092016-11-18 16:59:24 +0100962/* *INDENT-ON* */
Ole Troan73710c72018-06-04 22:27:49 +0200963
Damjan Marioneccf5092016-11-18 16:59:24 +0100964static clib_error_t *
Ed Warnickecb9cada2015-12-08 15:45:58 -0700965enable_disable_memory_trace (vlib_main_t * vm,
966 unformat_input_t * input,
967 vlib_cli_command_t * cmd)
968{
Damjan Marion57d1ec02020-09-16 21:15:44 +0200969 clib_mem_main_t *mm = &clib_mem_main;
Ole Troan73710c72018-06-04 22:27:49 +0200970 unformat_input_t _line_input, *line_input = &_line_input;
Dave Barachd67a4282019-06-15 12:46:13 -0400971 int enable = 1;
Ole Troan73710c72018-06-04 22:27:49 +0200972 int api_segment = 0;
Dave Barachd67a4282019-06-15 12:46:13 -0400973 int stats_segment = 0;
974 int main_heap = 0;
Dave Baracha690fdb2020-01-21 12:34:55 -0500975 u32 numa_id = ~0;
Ole Troan73710c72018-06-04 22:27:49 +0200976 void *oldheap;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700977
Ole Troan73710c72018-06-04 22:27:49 +0200978 if (!unformat_user (input, unformat_line_input, line_input))
979 return 0;
980
981 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700982 {
Dave Barach1ddbc012018-06-13 09:26:05 -0400983 if (unformat (line_input, "%U", unformat_vlib_enable_disable, &enable))
Ole Troan73710c72018-06-04 22:27:49 +0200984 ;
985 else if (unformat (line_input, "api-segment"))
986 api_segment = 1;
Dave Barachd67a4282019-06-15 12:46:13 -0400987 else if (unformat (line_input, "stats-segment"))
988 stats_segment = 1;
989 else if (unformat (line_input, "main-heap"))
990 main_heap = 1;
Dave Baracha690fdb2020-01-21 12:34:55 -0500991 else if (unformat (line_input, "numa-heap %d", &numa_id))
992 ;
Ole Troan73710c72018-06-04 22:27:49 +0200993 else
994 {
995 unformat_free (line_input);
996 return clib_error_return (0, "invalid input");
997 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700998 }
Ole Troan73710c72018-06-04 22:27:49 +0200999 unformat_free (line_input);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001000
Dave Baracha690fdb2020-01-21 12:34:55 -05001001 if ((api_segment + stats_segment + main_heap + (enable == 0)
1002 + (numa_id != ~0)) == 0)
Dave Barachd67a4282019-06-15 12:46:13 -04001003 {
1004 return clib_error_return
Dave Baracha690fdb2020-01-21 12:34:55 -05001005 (0, "Need one of main-heap, stats-segment, api-segment,\n"
1006 "numa-heap <nn> or disable");
Dave Barachd67a4282019-06-15 12:46:13 -04001007 }
1008
1009 /* Turn off current trace, if any */
1010 if (current_traced_heap)
1011 {
1012 void *oldheap;
1013 oldheap = clib_mem_set_heap (current_traced_heap);
1014 clib_mem_trace (0);
1015 clib_mem_set_heap (oldheap);
1016 current_traced_heap = 0;
1017 }
1018
1019 if (enable == 0)
1020 return 0;
1021
1022 /* API segment */
Ole Troan73710c72018-06-04 22:27:49 +02001023 if (api_segment)
Dave Barachd67a4282019-06-15 12:46:13 -04001024 {
1025 oldheap = vl_msg_push_heap ();
1026 current_traced_heap = clib_mem_get_heap ();
1027 clib_mem_trace (1);
1028 vl_msg_pop_heap (oldheap);
1029
1030 }
1031
1032 /* Stats segment */
1033 if (stats_segment)
1034 {
Damjan Marion8973b072022-03-01 15:51:18 +01001035 oldheap = vlib_stats_set_heap ();
Dave Barachd67a4282019-06-15 12:46:13 -04001036 current_traced_heap = clib_mem_get_heap ();
1037 clib_mem_trace (stats_segment);
1038 /* We don't want to call vlib_stats_pop_heap... */
1039 if (oldheap)
1040 clib_mem_set_heap (oldheap);
1041 }
1042
1043 /* main_heap */
1044 if (main_heap)
1045 {
1046 current_traced_heap = clib_mem_get_heap ();
1047 clib_mem_trace (main_heap);
1048 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001049
Dave Baracha690fdb2020-01-21 12:34:55 -05001050 if (numa_id != ~0)
1051 {
Damjan Marion57d1ec02020-09-16 21:15:44 +02001052 if (numa_id >= ARRAY_LEN (mm->per_numa_mheaps))
Dave Baracha690fdb2020-01-21 12:34:55 -05001053 return clib_error_return (0, "Numa %d out of range", numa_id);
Damjan Marion57d1ec02020-09-16 21:15:44 +02001054 if (mm->per_numa_mheaps[numa_id] == 0)
Dave Baracha690fdb2020-01-21 12:34:55 -05001055 return clib_error_return (0, "Numa %d heap not active", numa_id);
1056
Damjan Marion57d1ec02020-09-16 21:15:44 +02001057 if (mm->per_numa_mheaps[numa_id] == clib_mem_get_heap ())
Dave Baracha690fdb2020-01-21 12:34:55 -05001058 return clib_error_return (0, "Numa %d uses the main heap...",
1059 numa_id);
Damjan Marion57d1ec02020-09-16 21:15:44 +02001060 current_traced_heap = mm->per_numa_mheaps[numa_id];
Dave Baracha690fdb2020-01-21 12:34:55 -05001061 oldheap = clib_mem_set_heap (current_traced_heap);
1062 clib_mem_trace (1);
1063 clib_mem_set_heap (oldheap);
1064 }
1065
1066
Ole Troan73710c72018-06-04 22:27:49 +02001067 return 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001068}
1069
Dave Barach9b8ffd92016-07-08 08:13:45 -04001070/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001071VLIB_CLI_COMMAND (enable_disable_memory_trace_command, static) = {
1072 .path = "memory-trace",
Dave Baracha690fdb2020-01-21 12:34:55 -05001073 .short_help = "memory-trace on|off [api-segment][stats-segment][main-heap]\n"
1074 " [numa-heap <numa-id>]\n",
Ed Warnickecb9cada2015-12-08 15:45:58 -07001075 .function = enable_disable_memory_trace,
1076};
Dave Barach9b8ffd92016-07-08 08:13:45 -04001077/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001078
Damjan Marione5ef1d72017-03-02 12:33:48 +01001079static clib_error_t *
1080restart_cmd_fn (vlib_main_t * vm, unformat_input_t * input,
1081 vlib_cli_command_t * cmd)
1082{
Damjan Marionfd8deb42021-03-06 12:26:28 +01001083 vlib_global_main_t *vgm = vlib_get_global_main ();
Chris Luke6edd3602018-06-12 22:45:06 -04001084 clib_file_main_t *fm = &file_main;
1085 clib_file_t *f;
Damjan Marione5ef1d72017-03-02 12:33:48 +01001086
Chris Luke6edd3602018-06-12 22:45:06 -04001087 /* environ(7) does not indicate a header for this */
1088 extern char **environ;
1089
1090 /* Close all known open files */
1091 /* *INDENT-OFF* */
Damjan Marionb2c31b62020-12-13 21:47:40 +01001092 pool_foreach (f, fm->file_pool)
1093 {
Chris Luke6edd3602018-06-12 22:45:06 -04001094 if (f->file_descriptor > 2)
1095 close(f->file_descriptor);
Damjan Marionb2c31b62020-12-13 21:47:40 +01001096 }
Chris Luke6edd3602018-06-12 22:45:06 -04001097 /* *INDENT-ON* */
1098
1099 /* Exec ourself */
Damjan Marionfd8deb42021-03-06 12:26:28 +01001100 execve (vgm->name, (char **) vm->argv, environ);
Damjan Marione5ef1d72017-03-02 12:33:48 +01001101
1102 return 0;
1103}
1104
1105/* *INDENT-OFF* */
1106VLIB_CLI_COMMAND (restart_cmd,static) = {
1107 .path = "restart",
1108 .short_help = "restart process",
1109 .function = restart_cmd_fn,
1110};
1111/* *INDENT-ON* */
1112
Andrew Yourtchenko716d9592016-05-10 10:51:34 +00001113#ifdef TEST_CODE
1114/*
1115 * A trivial test harness to verify the per-process output_function
1116 * is working correcty.
1117 */
1118
1119static clib_error_t *
1120sleep_ten_seconds (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -04001121 unformat_input_t * input, vlib_cli_command_t * cmd)
Andrew Yourtchenko716d9592016-05-10 10:51:34 +00001122{
1123 u16 i;
Dave Barach9b8ffd92016-07-08 08:13:45 -04001124 u16 my_id = rand ();
Andrew Yourtchenko716d9592016-05-10 10:51:34 +00001125
Dave Barach9b8ffd92016-07-08 08:13:45 -04001126 vlib_cli_output (vm, "Starting 10 seconds sleep with id %u\n", my_id);
Andrew Yourtchenko716d9592016-05-10 10:51:34 +00001127
Dave Barach9b8ffd92016-07-08 08:13:45 -04001128 for (i = 0; i < 10; i++)
Andrew Yourtchenko716d9592016-05-10 10:51:34 +00001129 {
Dave Barach9b8ffd92016-07-08 08:13:45 -04001130 vlib_process_wait_for_event_or_clock (vm, 1.0);
1131 vlib_cli_output (vm, "Iteration number %u, my id: %u\n", i, my_id);
Andrew Yourtchenko716d9592016-05-10 10:51:34 +00001132 }
Dave Barach9b8ffd92016-07-08 08:13:45 -04001133 vlib_cli_output (vm, "Done with sleep with id %u\n", my_id);
Andrew Yourtchenko716d9592016-05-10 10:51:34 +00001134 return 0;
1135}
1136
Dave Barach9b8ffd92016-07-08 08:13:45 -04001137/* *INDENT-OFF* */
Andrew Yourtchenko716d9592016-05-10 10:51:34 +00001138VLIB_CLI_COMMAND (ping_command, static) = {
1139 .path = "test sleep",
1140 .function = sleep_ten_seconds,
1141 .short_help = "Sleep for 10 seconds",
1142};
Dave Barach9b8ffd92016-07-08 08:13:45 -04001143/* *INDENT-ON* */
Andrew Yourtchenko716d9592016-05-10 10:51:34 +00001144#endif /* ifdef TEST_CODE */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001145
Dave Barach9b8ffd92016-07-08 08:13:45 -04001146static uword
1147vlib_cli_normalize_path (char *input, char **result)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001148{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001149 char *i = input;
1150 char *s = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001151 uword l = 0;
1152 uword index_of_last_space = ~0;
1153
1154 while (*i != 0)
1155 {
1156 u8 c = *i++;
1157 /* Multiple white space -> single space. */
1158 switch (c)
1159 {
1160 case ' ':
1161 case '\t':
1162 case '\n':
1163 case '\r':
Dave Barach9b8ffd92016-07-08 08:13:45 -04001164 if (l > 0 && s[l - 1] != ' ')
Ed Warnickecb9cada2015-12-08 15:45:58 -07001165 {
1166 vec_add1 (s, ' ');
1167 l++;
1168 }
1169 break;
1170
1171 default:
Dave Barach9b8ffd92016-07-08 08:13:45 -04001172 if (l > 0 && s[l - 1] == ' ')
Ed Warnickecb9cada2015-12-08 15:45:58 -07001173 index_of_last_space = vec_len (s);
1174 vec_add1 (s, c);
1175 l++;
1176 break;
1177 }
1178 }
1179
1180 /* Remove any extra space at end. */
Dave Barach9b8ffd92016-07-08 08:13:45 -04001181 if (l > 0 && s[l - 1] == ' ')
Ed Warnickecb9cada2015-12-08 15:45:58 -07001182 _vec_len (s) -= 1;
1183
1184 *result = s;
1185 return index_of_last_space;
1186}
1187
1188always_inline uword
Dave Barach9b8ffd92016-07-08 08:13:45 -04001189parent_path_len (char *path)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001190{
1191 word i;
1192 for (i = vec_len (path) - 1; i >= 0; i--)
1193 {
1194 if (path[i] == ' ')
1195 return i;
1196 }
1197 return ~0;
1198}
1199
Dave Barach9b8ffd92016-07-08 08:13:45 -04001200static void
1201add_sub_command (vlib_cli_main_t * cm, uword parent_index, uword child_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001202{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001203 vlib_cli_command_t *p, *c;
1204 vlib_cli_sub_command_t *sub_c;
1205 u8 *sub_name;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001206 word i, l;
1207
1208 p = vec_elt_at_index (cm->commands, parent_index);
1209 c = vec_elt_at_index (cm->commands, child_index);
1210
1211 l = parent_path_len (c->path);
1212 if (l == ~0)
1213 sub_name = vec_dup ((u8 *) c->path);
1214 else
1215 {
1216 ASSERT (l + 1 < vec_len (c->path));
1217 sub_name = 0;
1218 vec_add (sub_name, c->path + l + 1, vec_len (c->path) - (l + 1));
1219 }
1220
Dave Barachbfb9a662021-06-21 10:31:35 -04001221 /* "Can't happen," check mainly to shut up coverity */
1222 ALWAYS_ASSERT (sub_name != 0);
1223
Ed Warnickecb9cada2015-12-08 15:45:58 -07001224 if (sub_name[0] == '%')
1225 {
Dave Barach9b8ffd92016-07-08 08:13:45 -04001226 uword *q;
1227 vlib_cli_sub_rule_t *sr;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001228
1229 /* Remove %. */
1230 vec_delete (sub_name, 1, 0);
1231
Dave Barach9b8ffd92016-07-08 08:13:45 -04001232 if (!p->sub_rule_index_by_name)
1233 p->sub_rule_index_by_name = hash_create_vec ( /* initial length */ 32,
1234 sizeof (sub_name[0]),
1235 sizeof (uword));
Ed Warnickecb9cada2015-12-08 15:45:58 -07001236 q = hash_get_mem (p->sub_rule_index_by_name, sub_name);
1237 if (q)
1238 {
1239 sr = vec_elt_at_index (p->sub_rules, q[0]);
1240 ASSERT (sr->command_index == child_index);
1241 return;
1242 }
1243
Dave Barach9b8ffd92016-07-08 08:13:45 -04001244 hash_set_mem (p->sub_rule_index_by_name, sub_name,
1245 vec_len (p->sub_rules));
Ed Warnickecb9cada2015-12-08 15:45:58 -07001246 vec_add2 (p->sub_rules, sr, 1);
1247 sr->name = sub_name;
Dave Barach5c944ee2020-01-07 12:29:10 -05001248 sr->rule_index = sr - p->sub_rules;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001249 sr->command_index = child_index;
1250 return;
1251 }
1252
Dave Barach9b8ffd92016-07-08 08:13:45 -04001253 if (!p->sub_command_index_by_name)
1254 p->sub_command_index_by_name = hash_create_vec ( /* initial length */ 32,
1255 sizeof (c->path[0]),
1256 sizeof (uword));
Ed Warnickecb9cada2015-12-08 15:45:58 -07001257
1258 /* Check if sub-command has already been created. */
1259 if (hash_get_mem (p->sub_command_index_by_name, sub_name))
1260 {
1261 vec_free (sub_name);
1262 return;
1263 }
1264
1265 vec_add2 (p->sub_commands, sub_c, 1);
1266 sub_c->index = child_index;
1267 sub_c->name = sub_name;
Dave Barach9b8ffd92016-07-08 08:13:45 -04001268 hash_set_mem (p->sub_command_index_by_name, sub_c->name,
1269 sub_c - p->sub_commands);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001270
1271 vec_validate (p->sub_command_positions, vec_len (sub_c->name) - 1);
1272 for (i = 0; i < vec_len (sub_c->name); i++)
1273 {
1274 int n;
Dave Barach9b8ffd92016-07-08 08:13:45 -04001275 vlib_cli_parse_position_t *pos;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001276
1277 pos = vec_elt_at_index (p->sub_command_positions, i);
1278
Dave Barach9b8ffd92016-07-08 08:13:45 -04001279 if (!pos->bitmaps)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001280 pos->min_char = sub_c->name[i];
1281
1282 n = sub_c->name[i] - pos->min_char;
1283 if (n < 0)
1284 {
1285 pos->min_char = sub_c->name[i];
1286 vec_insert (pos->bitmaps, -n, 0);
1287 n = 0;
1288 }
1289
1290 vec_validate (pos->bitmaps, n);
Dave Barach9b8ffd92016-07-08 08:13:45 -04001291 pos->bitmaps[n] =
1292 clib_bitmap_ori (pos->bitmaps[n], sub_c - p->sub_commands);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001293 }
1294}
1295
1296static void
1297vlib_cli_make_parent (vlib_cli_main_t * cm, uword ci)
1298{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001299 uword p_len, pi, *p;
1300 char *p_path;
1301 vlib_cli_command_t *c, *parent;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001302
1303 /* Root command (index 0) should have already been added. */
1304 ASSERT (vec_len (cm->commands) > 0);
1305
1306 c = vec_elt_at_index (cm->commands, ci);
1307 p_len = parent_path_len (c->path);
1308
Dave Barach9b8ffd92016-07-08 08:13:45 -04001309 /* No space? Parent is root command. */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001310 if (p_len == ~0)
1311 {
1312 add_sub_command (cm, 0, ci);
1313 return;
1314 }
1315
1316 p_path = 0;
1317 vec_add (p_path, c->path, p_len);
1318
1319 p = hash_get_mem (cm->command_index_by_path, p_path);
1320
1321 /* Parent exists? */
Dave Barach9b8ffd92016-07-08 08:13:45 -04001322 if (!p)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001323 {
1324 /* Parent does not exist; create it. */
1325 vec_add2 (cm->commands, parent, 1);
1326 parent->path = p_path;
Dave Barach9b8ffd92016-07-08 08:13:45 -04001327 hash_set_mem (cm->command_index_by_path, parent->path,
1328 parent - cm->commands);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001329 pi = parent - cm->commands;
1330 }
1331 else
1332 {
1333 pi = p[0];
1334 vec_free (p_path);
1335 }
1336
1337 add_sub_command (cm, pi, ci);
1338
1339 /* Create parent's parent. */
Dave Barach9b8ffd92016-07-08 08:13:45 -04001340 if (!p)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001341 vlib_cli_make_parent (cm, pi);
1342}
1343
1344always_inline uword
1345vlib_cli_command_is_empty (vlib_cli_command_t * c)
1346{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001347 return (c->long_help == 0 && c->short_help == 0 && c->function == 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001348}
1349
Dave Barach9b8ffd92016-07-08 08:13:45 -04001350clib_error_t *
1351vlib_cli_register (vlib_main_t * vm, vlib_cli_command_t * c)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001352{
Damjan Marionfd8deb42021-03-06 12:26:28 +01001353 vlib_global_main_t *vgm = vlib_get_global_main ();
1354 vlib_cli_main_t *cm = &vgm->cli_main;
Dave Barach9b8ffd92016-07-08 08:13:45 -04001355 clib_error_t *error = 0;
1356 uword ci, *p;
1357 char *normalized_path;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001358
1359 if ((error = vlib_call_init_function (vm, vlib_cli_init)))
1360 return error;
1361
1362 (void) vlib_cli_normalize_path (c->path, &normalized_path);
1363
Dave Barach9b8ffd92016-07-08 08:13:45 -04001364 if (!cm->command_index_by_path)
1365 cm->command_index_by_path = hash_create_vec ( /* initial length */ 32,
Ed Warnickecb9cada2015-12-08 15:45:58 -07001366 sizeof (c->path[0]),
1367 sizeof (uword));
1368
1369 /* See if command already exists with given path. */
1370 p = hash_get_mem (cm->command_index_by_path, normalized_path);
1371 if (p)
1372 {
Dave Barach9b8ffd92016-07-08 08:13:45 -04001373 vlib_cli_command_t *d;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001374
1375 ci = p[0];
1376 d = vec_elt_at_index (cm->commands, ci);
1377
1378 /* If existing command was created via vlib_cli_make_parent
Dave Barach9b8ffd92016-07-08 08:13:45 -04001379 replaced it with callers data. */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001380 if (vlib_cli_command_is_empty (d))
1381 {
1382 vlib_cli_command_t save = d[0];
1383
Dave Barach9b8ffd92016-07-08 08:13:45 -04001384 ASSERT (!vlib_cli_command_is_empty (c));
Ed Warnickecb9cada2015-12-08 15:45:58 -07001385
1386 /* Copy callers fields. */
1387 d[0] = c[0];
1388
1389 /* Save internal fields. */
1390 d->path = save.path;
1391 d->sub_commands = save.sub_commands;
1392 d->sub_command_index_by_name = save.sub_command_index_by_name;
1393 d->sub_command_positions = save.sub_command_positions;
1394 d->sub_rules = save.sub_rules;
1395 }
1396 else
Dave Barach9b8ffd92016-07-08 08:13:45 -04001397 error =
1398 clib_error_return (0, "duplicate command name with path %v",
1399 normalized_path);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001400
1401 vec_free (normalized_path);
1402 if (error)
1403 return error;
1404 }
1405 else
1406 {
1407 /* Command does not exist: create it. */
1408
1409 /* Add root command (index 0). */
1410 if (vec_len (cm->commands) == 0)
1411 {
1412 /* Create command with index 0; path is empty string. */
1413 vec_resize (cm->commands, 1);
1414 }
1415
1416 ci = vec_len (cm->commands);
1417 hash_set_mem (cm->command_index_by_path, normalized_path, ci);
1418 vec_add1 (cm->commands, c[0]);
1419
1420 c = vec_elt_at_index (cm->commands, ci);
1421 c->path = normalized_path;
1422
1423 /* Don't inherit from registration. */
1424 c->sub_commands = 0;
1425 c->sub_command_index_by_name = 0;
1426 c->sub_command_positions = 0;
1427 }
1428
1429 vlib_cli_make_parent (cm, ci);
1430 return 0;
1431}
1432
Dave Barach6b3f25c2019-12-09 10:45:47 -05001433#if 0
1434/* $$$ turn back on again someday, maybe */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001435clib_error_t *
1436vlib_cli_register_parse_rule (vlib_main_t * vm, vlib_cli_parse_rule_t * r_reg)
1437{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001438 vlib_cli_main_t *cm = &vm->cli_main;
1439 vlib_cli_parse_rule_t *r;
1440 clib_error_t *error = 0;
1441 u8 *r_name;
1442 uword *p;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001443
Dave Barach9b8ffd92016-07-08 08:13:45 -04001444 if (!cm->parse_rule_index_by_name)
1445 cm->parse_rule_index_by_name = hash_create_vec ( /* initial length */ 32,
Ed Warnickecb9cada2015-12-08 15:45:58 -07001446 sizeof (r->name[0]),
1447 sizeof (uword));
1448
1449 /* Make vector copy of name. */
1450 r_name = format (0, "%s", r_reg->name);
1451
1452 if ((p = hash_get_mem (cm->parse_rule_index_by_name, r_name)))
1453 {
1454 vec_free (r_name);
Dave Barach9b8ffd92016-07-08 08:13:45 -04001455 return clib_error_return (0, "duplicate parse rule name `%s'",
1456 r_reg->name);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001457 }
1458
1459 vec_add2 (cm->parse_rules, r, 1);
1460 r[0] = r_reg[0];
1461 r->name = (char *) r_name;
1462 hash_set_mem (cm->parse_rule_index_by_name, r->name, r - cm->parse_rules);
1463
1464 return error;
1465}
1466
Dave Barach9b8ffd92016-07-08 08:13:45 -04001467static clib_error_t *vlib_cli_register_parse_rules (vlib_main_t * vm,
1468 vlib_cli_parse_rule_t *
1469 lo,
1470 vlib_cli_parse_rule_t *
1471 hi)
1472 __attribute__ ((unused))
Ed Warnickecb9cada2015-12-08 15:45:58 -07001473{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001474 clib_error_t *error = 0;
1475 vlib_cli_parse_rule_t *r;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001476
1477 for (r = lo; r < hi; r = clib_elf_section_data_next (r, 0))
1478 {
Dave Barach9b8ffd92016-07-08 08:13:45 -04001479 if (!r->name || strlen (r->name) == 0)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001480 {
1481 error = clib_error_return (0, "parse rule with no name");
1482 goto done;
1483 }
1484
1485 error = vlib_cli_register_parse_rule (vm, r);
1486 if (error)
1487 goto done;
1488 }
1489
Dave Barach9b8ffd92016-07-08 08:13:45 -04001490done:
Ed Warnickecb9cada2015-12-08 15:45:58 -07001491 return error;
1492}
1493#endif
1494
Dave Barach9b8ffd92016-07-08 08:13:45 -04001495static clib_error_t *
Dave Barachaa676742020-11-25 07:23:42 -05001496event_logger_trace_command_fn (vlib_main_t * vm,
1497 unformat_input_t * input,
1498 vlib_cli_command_t * cmd)
Dave Barachc3a06552018-10-01 09:25:32 -04001499{
1500 unformat_input_t _line_input, *line_input = &_line_input;
1501 int enable = 1;
Dave Barach900cbad2019-01-31 19:12:51 -05001502 int api = 0, cli = 0, barrier = 0, dispatch = 0, circuit = 0;
1503 u32 circuit_node_index;
Dave Barachc3a06552018-10-01 09:25:32 -04001504
1505 if (!unformat_user (input, unformat_line_input, line_input))
1506 goto print_status;
1507
1508 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
1509 {
1510 if (unformat (line_input, "api"))
1511 api = 1;
Dave Barach900cbad2019-01-31 19:12:51 -05001512 else if (unformat (line_input, "dispatch"))
1513 dispatch = 1;
1514 else if (unformat (line_input, "circuit-node %U",
1515 unformat_vlib_node, vm, &circuit_node_index))
1516 circuit = 1;
Dave Barachc3a06552018-10-01 09:25:32 -04001517 else if (unformat (line_input, "cli"))
1518 cli = 1;
1519 else if (unformat (line_input, "barrier"))
1520 barrier = 1;
1521 else if (unformat (line_input, "disable"))
1522 enable = 0;
1523 else if (unformat (line_input, "enable"))
1524 enable = 1;
1525 else
1526 break;
1527 }
1528 unformat_free (line_input);
1529
Dave Barachb09f4d02019-07-15 16:00:03 -04001530 vl_api_set_elog_trace_api_messages
1531 (api ? enable : vl_api_get_elog_trace_api_messages ());
Dave Barachc3a06552018-10-01 09:25:32 -04001532 vm->elog_trace_cli_commands = cli ? enable : vm->elog_trace_cli_commands;
Dave Barach900cbad2019-01-31 19:12:51 -05001533 vm->elog_trace_graph_dispatch = dispatch ?
1534 enable : vm->elog_trace_graph_dispatch;
1535 vm->elog_trace_graph_circuit = circuit ?
1536 enable : vm->elog_trace_graph_circuit;
Dave Barachc3a06552018-10-01 09:25:32 -04001537 vlib_worker_threads->barrier_elog_enabled =
1538 barrier ? enable : vlib_worker_threads->barrier_elog_enabled;
Dave Barach900cbad2019-01-31 19:12:51 -05001539 vm->elog_trace_graph_circuit_node_index = circuit_node_index;
1540
1541 /*
1542 * Set up start-of-buffer logic-analyzer trigger
1543 * for main loop event logs, which are fairly heavyweight.
1544 * See src/vlib/main/vlib_elog_main_loop_event(...), which
1545 * will fully disable the scheme when the elog buffer fills.
1546 */
1547 if (dispatch || circuit)
1548 {
Damjan Marionf553a2c2021-03-26 13:45:37 +01001549 elog_main_t *em = &vlib_global_main.elog_main;
Dave Barach900cbad2019-01-31 19:12:51 -05001550
1551 em->n_total_events_disable_limit =
1552 em->n_total_events + vec_len (em->event_ring);
1553 }
1554
Dave Barachc3a06552018-10-01 09:25:32 -04001555
1556print_status:
1557 vlib_cli_output (vm, "Current status:");
1558
1559 vlib_cli_output
1560 (vm, " Event log API message trace: %s\n CLI command trace: %s",
Dave Barachb09f4d02019-07-15 16:00:03 -04001561 vl_api_get_elog_trace_api_messages ()? "on" : "off",
Dave Barachc3a06552018-10-01 09:25:32 -04001562 vm->elog_trace_cli_commands ? "on" : "off");
1563 vlib_cli_output
1564 (vm, " Barrier sync trace: %s",
1565 vlib_worker_threads->barrier_elog_enabled ? "on" : "off");
Dave Barach900cbad2019-01-31 19:12:51 -05001566 vlib_cli_output
1567 (vm, " Graph Dispatch: %s",
1568 vm->elog_trace_graph_dispatch ? "on" : "off");
1569 vlib_cli_output
1570 (vm, " Graph Circuit: %s",
1571 vm->elog_trace_graph_circuit ? "on" : "off");
1572 if (vm->elog_trace_graph_circuit)
1573 vlib_cli_output
1574 (vm, " node %U",
1575 format_vlib_node_name, vm, vm->elog_trace_graph_circuit_node_index);
Dave Barachc3a06552018-10-01 09:25:32 -04001576
1577 return 0;
1578}
1579
1580/*?
1581 * Control event logging of api, cli, and thread barrier events
1582 * With no arguments, displays the current trace status.
1583 * Name the event groups you wish to trace or stop tracing.
1584 *
1585 * @cliexpar
1586 * @clistart
Dave Barachaa676742020-11-25 07:23:42 -05001587 * event-logger trace api cli barrier
1588 * event-logger trace api cli barrier disable
1589 * event-logger trace dispatch
1590 * event-logger trace circuit-node ethernet-input
Dave Barachc3a06552018-10-01 09:25:32 -04001591 * @cliend
Dave Barachaa676742020-11-25 07:23:42 -05001592 * @cliexcmd{event-logger trace [api][cli][barrier][disable]}
Dave Barachc3a06552018-10-01 09:25:32 -04001593?*/
1594/* *INDENT-OFF* */
Dave Barachaa676742020-11-25 07:23:42 -05001595VLIB_CLI_COMMAND (event_logger_trace_command, static) =
Dave Barachc3a06552018-10-01 09:25:32 -04001596{
Dave Barachaa676742020-11-25 07:23:42 -05001597 .path = "event-logger trace",
1598 .short_help = "event-logger trace [api][cli][barrier][dispatch]\n"
Dave Barach900cbad2019-01-31 19:12:51 -05001599 "[circuit-node <name> e.g. ethernet-input][disable]",
Dave Barachaa676742020-11-25 07:23:42 -05001600 .function = event_logger_trace_command_fn,
Dave Barachc3a06552018-10-01 09:25:32 -04001601};
1602/* *INDENT-ON* */
1603
1604static clib_error_t *
Dave Barachc4abafd2019-09-04 12:09:32 -04001605suspend_command_fn (vlib_main_t * vm,
1606 unformat_input_t * input, vlib_cli_command_t * cmd)
1607{
1608 vlib_process_suspend (vm, 30e-3);
1609 return 0;
1610}
1611
1612/* *INDENT-OFF* */
1613VLIB_CLI_COMMAND (suspend_command, static) =
1614{
1615 .path = "suspend",
1616 .short_help = "suspend debug CLI for 30ms",
1617 .function = suspend_command_fn,
Dave Baracha1f5a952019-11-01 11:24:43 -04001618 .is_mp_safe = 1,
1619};
1620/* *INDENT-ON* */
1621
1622
1623static int
1624sort_cmds_by_path (void *a1, void *a2)
1625{
1626 u32 *index1 = a1;
1627 u32 *index2 = a2;
Damjan Marionfd8deb42021-03-06 12:26:28 +01001628 vlib_global_main_t *vgm = vlib_get_global_main ();
1629 vlib_cli_main_t *cm = &vgm->cli_main;
Dave Baracha1f5a952019-11-01 11:24:43 -04001630 vlib_cli_command_t *c1, *c2;
1631 int i, lmin;
1632
1633 c1 = vec_elt_at_index (cm->commands, *index1);
1634 c2 = vec_elt_at_index (cm->commands, *index2);
1635
1636 lmin = vec_len (c1->path);
1637 lmin = (vec_len (c2->path) >= lmin) ? lmin : vec_len (c2->path);
1638
1639 for (i = 0; i < lmin; i++)
1640 {
1641 if (c1->path[i] < c2->path[i])
1642 return -1;
1643 else if (c1->path[i] > c2->path[i])
1644 return 1;
1645 }
1646
1647 return 0;
1648}
1649
1650typedef struct
1651{
1652 vlib_cli_main_t *cm;
1653 u32 parent_command_index;
1654 int show_mp_safe;
1655 int show_not_mp_safe;
1656 int show_hit;
1657 int clear_hit;
1658} vlib_cli_walk_args_t;
1659
1660static void
1661cli_recursive_walk (vlib_cli_walk_args_t * aa)
1662{
1663 vlib_cli_command_t *parent;
1664 vlib_cli_sub_command_t *sub;
1665 vlib_cli_walk_args_t _a, *a = &_a;
1666 vlib_cli_main_t *cm;
1667 int i;
1668
1669 /* Copy args into this stack frame */
1670 *a = *aa;
1671 cm = a->cm;
1672
1673 parent = vec_elt_at_index (cm->commands, a->parent_command_index);
1674
1675 if (parent->function)
1676 {
1677 if (((a->show_mp_safe && parent->is_mp_safe)
1678 || (a->show_not_mp_safe && !parent->is_mp_safe))
1679 && (a->show_hit == 0 || parent->hit_counter))
1680 {
1681 vec_add1 (cm->sort_vector, a->parent_command_index);
1682 }
1683
1684 if (a->clear_hit)
1685 parent->hit_counter = 0;
1686 }
1687
1688 for (i = 0; i < vec_len (parent->sub_commands); i++)
1689 {
1690 sub = vec_elt_at_index (parent->sub_commands, i);
1691 a->parent_command_index = sub->index;
1692 cli_recursive_walk (a);
1693 }
1694}
1695
1696static u8 *
1697format_mp_safe (u8 * s, va_list * args)
1698{
1699 vlib_cli_main_t *cm = va_arg (*args, vlib_cli_main_t *);
1700 int show_mp_safe = va_arg (*args, int);
1701 int show_not_mp_safe = va_arg (*args, int);
1702 int show_hit = va_arg (*args, int);
1703 int clear_hit = va_arg (*args, int);
1704 vlib_cli_command_t *c;
1705 vlib_cli_walk_args_t _a, *a = &_a;
1706 int i;
1707 char *format_string = "\n%v";
1708
1709 if (show_hit)
1710 format_string = "\n%v: %u";
1711
1712 vec_reset_length (cm->sort_vector);
1713
1714 a->cm = cm;
1715 a->parent_command_index = 0;
1716 a->show_mp_safe = show_mp_safe;
1717 a->show_not_mp_safe = show_not_mp_safe;
1718 a->show_hit = show_hit;
1719 a->clear_hit = clear_hit;
1720
1721 cli_recursive_walk (a);
1722
1723 vec_sort_with_function (cm->sort_vector, sort_cmds_by_path);
1724
1725 for (i = 0; i < vec_len (cm->sort_vector); i++)
1726 {
1727 c = vec_elt_at_index (cm->commands, cm->sort_vector[i]);
1728 s = format (s, format_string, c->path, c->hit_counter);
1729 }
1730
1731 return s;
1732}
1733
1734
1735static clib_error_t *
1736show_cli_command_fn (vlib_main_t * vm,
1737 unformat_input_t * input, vlib_cli_command_t * cmd)
1738{
Damjan Marionfd8deb42021-03-06 12:26:28 +01001739 vlib_global_main_t *vgm = vlib_get_global_main ();
Dave Baracha1f5a952019-11-01 11:24:43 -04001740 int show_mp_safe = 0;
1741 int show_not_mp_safe = 0;
1742 int show_hit = 0;
1743 int clear_hit = 0;
1744
1745 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
1746 {
1747 if (unformat (input, "mp-safe"))
1748 show_mp_safe = 1;
1749 if (unformat (input, "not-mp-safe"))
1750 show_not_mp_safe = 1;
1751 else if (unformat (input, "hit"))
1752 show_hit = 1;
1753 else if (unformat (input, "clear-hit"))
1754 clear_hit = 1;
1755 else
1756 break;
1757 }
1758
1759 /* default set: all cli commands */
1760 if (clear_hit == 0 && (show_mp_safe + show_not_mp_safe) == 0)
1761 show_mp_safe = show_not_mp_safe = 1;
1762
Damjan Marionfd8deb42021-03-06 12:26:28 +01001763 vlib_cli_output (vm, "%U", format_mp_safe, &vgm->cli_main, show_mp_safe,
1764 show_not_mp_safe, show_hit, clear_hit);
Dave Baracha1f5a952019-11-01 11:24:43 -04001765 if (clear_hit)
1766 vlib_cli_output (vm, "hit counters cleared...");
1767
1768 return 0;
1769}
1770
1771/*?
1772 * Displays debug cli command information
1773 *
1774 * @cliexpar
1775 * @cliexstart{show cli [mp-safe][not-mp-safe][hit][clear-hit]}
1776 *
1777 * "show cli" displays the entire debug cli:
1778 *
1779 * abf attach
1780 * abf policy
1781 * adjacency counters
1782 * api trace
1783 * app ns
1784 * bfd key del
1785 * ... and so on ...
1786 *
1787 * "show cli mp-safe" displays mp-safe debug CLI commands:
1788 *
1789 * abf policy
1790 * binary-api
1791 * create vhost-user
1792 * exec
1793 * ip container
1794 * ip mroute
1795 * ip probe-neighbor
1796 * ip route
1797 * ip scan-neighbor
1798 * ip table
1799 * ip6 table
1800 *
1801 * "show cli not-mp-safe" displays debug CLI commands
1802 * which cause worker thread barrier synchronization
1803 *
1804 * "show cli hit" displays commands which have been executed. Qualify
1805 * as desired with "mp-safe" or "not-mp-safe".
1806 *
1807 * "show cli clear-hit" clears the per-command hit counters.
1808 * @cliexend
1809?*/
1810
1811/* *INDENT-OFF* */
1812VLIB_CLI_COMMAND (show_cli_command, static) =
1813{
1814 .path = "show cli",
1815 .short_help = "show cli [mp-safe][not-mp-safe][hit][clear-hit]",
1816 .function = show_cli_command_fn,
1817 .is_mp_safe = 1,
Dave Barachc4abafd2019-09-04 12:09:32 -04001818};
1819/* *INDENT-ON* */
1820
1821static clib_error_t *
Dave Barach9b8ffd92016-07-08 08:13:45 -04001822vlib_cli_init (vlib_main_t * vm)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001823{
Damjan Marionfd8deb42021-03-06 12:26:28 +01001824 vlib_global_main_t *vgm = vlib_get_global_main ();
1825 vlib_cli_main_t *cm = &vgm->cli_main;
Dave Barach9b8ffd92016-07-08 08:13:45 -04001826 clib_error_t *error = 0;
1827 vlib_cli_command_t *cmd;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001828
1829 cmd = cm->cli_command_registrations;
1830
1831 while (cmd)
1832 {
1833 error = vlib_cli_register (vm, cmd);
1834 if (error)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001835 return error;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001836 cmd = cmd->next_cli_command;
1837 }
Dave Barach3d0e0d12021-02-17 10:25:18 -05001838
1839 cm->log = vlib_log_register_class_rate_limit (
1840 "cli", "log", 0x7FFFFFFF /* aka no rate limit */);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001841 return error;
1842}
1843
1844VLIB_INIT_FUNCTION (vlib_cli_init);
Dave Barach9b8ffd92016-07-08 08:13:45 -04001845
1846/*
1847 * fd.io coding-style-patch-verification: ON
1848 *
1849 * Local Variables:
1850 * eval: (c-set-style "gnu")
1851 * End:
1852 */