blob: 98d57c6ccb0547f4c1d55daa7d795c8f29534381 [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. */
58VLIB_CLI_COMMAND (vlib_cli_show_command, static) = {
59 .path = "show",
60 .short_help = "Show commands",
61};
62
63/* Root of all clear commands. */
64VLIB_CLI_COMMAND (vlib_cli_clear_command, static) = {
65 .path = "clear",
66 .short_help = "Clear commands",
67};
68
69/* Root of all set commands. */
70VLIB_CLI_COMMAND (vlib_cli_set_command, static) = {
71 .path = "set",
72 .short_help = "Set commands",
73};
74
75/* Root of all test commands. */
76VLIB_CLI_COMMAND (vlib_cli_test_command, static) = {
77 .path = "test",
78 .short_help = "Test commands",
79};
80
81/* Returns bitmap of commands which match key. */
82static uword *
83vlib_cli_sub_command_match (vlib_cli_command_t * c, unformat_input_t * input)
84{
85 int i, n;
Dave Barach9b8ffd92016-07-08 08:13:45 -040086 uword *match = 0;
87 vlib_cli_parse_position_t *p;
Ed Warnickecb9cada2015-12-08 15:45:58 -070088
89 unformat_skip_white_space (input);
90
Dave Barach9b8ffd92016-07-08 08:13:45 -040091 for (i = 0;; i++)
Ed Warnickecb9cada2015-12-08 15:45:58 -070092 {
93 uword k;
94
95 k = unformat_get_input (input);
96 switch (k)
97 {
98 case 'a' ... 'z':
99 case 'A' ... 'Z':
100 case '0' ... '9':
Dave Barach9b8ffd92016-07-08 08:13:45 -0400101 case '-':
102 case '_':
Ed Warnickecb9cada2015-12-08 15:45:58 -0700103 break;
104
Dave Barach9b8ffd92016-07-08 08:13:45 -0400105 case ' ':
106 case '\t':
107 case '\r':
108 case '\n':
Ed Warnickecb9cada2015-12-08 15:45:58 -0700109 case UNFORMAT_END_OF_INPUT:
110 /* White space or end of input removes any non-white
111 matches that were before possible. */
112 if (i < vec_len (c->sub_command_positions)
113 && clib_bitmap_count_set_bits (match) > 1)
114 {
115 p = vec_elt_at_index (c->sub_command_positions, i);
116 for (n = 0; n < vec_len (p->bitmaps); n++)
117 match = clib_bitmap_andnot (match, p->bitmaps[n]);
118 }
119 goto done;
120
121 default:
122 unformat_put_input (input);
123 goto done;
124 }
125
126 if (i >= vec_len (c->sub_command_positions))
127 {
128 no_match:
129 clib_bitmap_free (match);
130 return 0;
131 }
132
133 p = vec_elt_at_index (c->sub_command_positions, i);
134 if (vec_len (p->bitmaps) == 0)
135 goto no_match;
136
137 n = k - p->min_char;
138 if (n < 0 || n >= vec_len (p->bitmaps))
139 goto no_match;
140
141 if (i == 0)
142 match = clib_bitmap_dup (p->bitmaps[n]);
143 else
144 match = clib_bitmap_and (match, p->bitmaps[n]);
145
146 if (clib_bitmap_is_zero (match))
147 goto no_match;
148 }
149
Dave Barach9b8ffd92016-07-08 08:13:45 -0400150done:
Ed Warnickecb9cada2015-12-08 15:45:58 -0700151 return match;
152}
153
Damjan Marionc50bcbd2022-05-08 20:48:37 +0200154uword
155unformat_vlib_cli_line (unformat_input_t *i, va_list *va)
156{
157 unformat_input_t *result = va_arg (*va, unformat_input_t *);
158 u8 *line = 0;
159 uword c;
160 int skip;
161
162next_line:
163 skip = 0;
164
165 /* skip leading whitespace if any */
166 unformat_skip_white_space (i);
167
168 if (unformat_is_eof (i))
169 return 0;
170
171 while ((c = unformat_get_input (i)) != UNFORMAT_END_OF_INPUT)
172 {
173 if (c == '\\')
174 {
175 c = unformat_get_input (i);
176
177 if (c == '\n')
178 {
179 if (!skip)
180 vec_add1 (line, '\n');
181 skip = 0;
182 continue;
183 }
184
185 if (!skip)
186 vec_add1 (line, '\\');
187
188 if (c == UNFORMAT_END_OF_INPUT)
189 break;
190
191 if (!skip)
192 vec_add1 (line, c);
193 continue;
194 }
195
196 if (c == '#')
197 skip = 1;
198 else if (c == '\n')
199 break;
200
201 if (!skip)
202 vec_add1 (line, c);
203 }
204
205 if (line == 0)
206 goto next_line;
207
208 unformat_init_vector (result, line);
209 return 1;
210}
211
Ed Warnickecb9cada2015-12-08 15:45:58 -0700212/* Looks for string based sub-input formatted { SUB-INPUT }. */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400213uword
214unformat_vlib_cli_sub_input (unformat_input_t * i, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700215{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400216 unformat_input_t *sub_input = va_arg (*args, unformat_input_t *);
217 u8 *s;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700218 uword c;
219
220 while (1)
221 {
222 c = unformat_get_input (i);
223 switch (c)
224 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400225 case ' ':
226 case '\t':
227 case '\n':
228 case '\r':
Ed Warnickecb9cada2015-12-08 15:45:58 -0700229 case '\f':
230 break;
231
232 case '{':
233 default:
234 /* Put back paren. */
235 if (c != UNFORMAT_END_OF_INPUT)
236 unformat_put_input (i);
237
238 if (c == '{' && unformat (i, "%v", &s))
239 {
240 unformat_init_vector (sub_input, s);
241 return 1;
242 }
243 return 0;
244 }
245 }
246 return 0;
247}
248
249static vlib_cli_command_t *
250get_sub_command (vlib_cli_main_t * cm, vlib_cli_command_t * parent, u32 si)
251{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400252 vlib_cli_sub_command_t *s = vec_elt_at_index (parent->sub_commands, si);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700253 return vec_elt_at_index (cm->commands, s->index);
254}
255
Dave Barach9b8ffd92016-07-08 08:13:45 -0400256static uword
257unformat_vlib_cli_sub_command (unformat_input_t * i, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700258{
Damjan Marionfd8deb42021-03-06 12:26:28 +0100259 vlib_main_t __clib_unused *vm = va_arg (*args, vlib_main_t *);
260 vlib_global_main_t *vgm = vlib_get_global_main ();
Dave Barach9b8ffd92016-07-08 08:13:45 -0400261 vlib_cli_command_t *c = va_arg (*args, vlib_cli_command_t *);
262 vlib_cli_command_t **result = va_arg (*args, vlib_cli_command_t **);
Damjan Marionfd8deb42021-03-06 12:26:28 +0100263 vlib_cli_main_t *cm = &vgm->cli_main;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400264 uword *match_bitmap, is_unique, index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700265
Ed Warnickecb9cada2015-12-08 15:45:58 -0700266 match_bitmap = vlib_cli_sub_command_match (c, i);
267 is_unique = clib_bitmap_count_set_bits (match_bitmap) == 1;
268 index = ~0;
269 if (is_unique)
270 {
271 index = clib_bitmap_first_set (match_bitmap);
272 *result = get_sub_command (cm, c, index);
273 }
274 clib_bitmap_free (match_bitmap);
275
276 return is_unique;
277}
278
Yoann Desmouceaux3060e072017-05-18 11:00:48 +0200279static int
280vlib_cli_cmp_strings (void *a1, void *a2)
281{
282 u8 *c1 = *(u8 **) a1;
283 u8 *c2 = *(u8 **) a2;
284
285 return vec_cmp (c1, c2);
286}
287
288u8 **
289vlib_cli_get_possible_completions (u8 * str)
290{
291 vlib_cli_command_t *c;
292 vlib_cli_sub_command_t *sc;
Damjan Marionfd8deb42021-03-06 12:26:28 +0100293 vlib_global_main_t *vgm = vlib_get_global_main ();
294 vlib_cli_main_t *vcm = &vgm->cli_main;
Yoann Desmouceaux3060e072017-05-18 11:00:48 +0200295 uword *match_bitmap = 0;
296 uword index, is_unique, help_next_level;
297 u8 **result = 0;
298 unformat_input_t input;
299 unformat_init_vector (&input, vec_dup (str));
300 c = vec_elt_at_index (vcm->commands, 0);
301
302 /* remove trailing whitespace, except for one of them */
303 while (vec_len (input.buffer) >= 2 &&
304 isspace (input.buffer[vec_len (input.buffer) - 1]) &&
305 isspace (input.buffer[vec_len (input.buffer) - 2]))
306 {
307 vec_del1 (input.buffer, vec_len (input.buffer) - 1);
308 }
309
310 /* if input is empty, directly return list of root commands */
311 if (vec_len (input.buffer) == 0 ||
312 (vec_len (input.buffer) == 1 && isspace (input.buffer[0])))
313 {
314 vec_foreach (sc, c->sub_commands)
315 {
316 vec_add1 (result, (u8 *) sc->name);
317 }
318 goto done;
319 }
320
321 /* add a trailing '?' so that vlib_cli_sub_command_match can find
322 * all commands starting with the input string */
323 vec_add1 (input.buffer, '?');
324
325 while (1)
326 {
327 match_bitmap = vlib_cli_sub_command_match (c, &input);
328 /* no match: return no result */
329 if (match_bitmap == 0)
330 {
331 goto done;
332 }
333 is_unique = clib_bitmap_count_set_bits (match_bitmap) == 1;
334 /* unique match: try to step one subcommand level further */
335 if (is_unique)
336 {
337 /* stop if no more input */
338 if (input.index >= vec_len (input.buffer) - 1)
339 {
340 break;
341 }
342
343 index = clib_bitmap_first_set (match_bitmap);
344 c = get_sub_command (vcm, c, index);
345 clib_bitmap_free (match_bitmap);
346 continue;
347 }
348 /* multiple matches: stop here, return all matches */
349 break;
350 }
351
352 /* remove trailing '?' */
353 vec_del1 (input.buffer, vec_len (input.buffer) - 1);
354
355 /* if we have a space at the end of input, and a unique match,
356 * autocomplete the next level of subcommands */
357 help_next_level = (vec_len (str) == 0) || isspace (str[vec_len (str) - 1]);
Damjan Marionf0ca1e82020-12-13 23:26:56 +0100358 clib_bitmap_foreach (index, match_bitmap) {
Yoann Desmouceaux3060e072017-05-18 11:00:48 +0200359 if (help_next_level && is_unique) {
360 c = get_sub_command (vcm, c, index);
361 vec_foreach (sc, c->sub_commands) {
362 vec_add1 (result, (u8*) sc->name);
363 }
364 goto done; /* break doesn't work in this macro-loop */
365 }
366 sc = &c->sub_commands[index];
367 vec_add1(result, (u8*) sc->name);
Damjan Marionf0ca1e82020-12-13 23:26:56 +0100368 }
Yoann Desmouceaux3060e072017-05-18 11:00:48 +0200369
370done:
371 clib_bitmap_free (match_bitmap);
372 unformat_free (&input);
373
Yoann Desmouceaux4227eef2017-05-24 15:51:48 +0200374 if (result)
375 vec_sort_with_function (result, vlib_cli_cmp_strings);
Yoann Desmouceaux3060e072017-05-18 11:00:48 +0200376 return result;
377}
378
Dave Barach9b8ffd92016-07-08 08:13:45 -0400379static u8 *
380format_vlib_cli_command_help (u8 * s, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700381{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400382 vlib_cli_command_t *c = va_arg (*args, vlib_cli_command_t *);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700383 int is_long = va_arg (*args, int);
384 if (is_long && c->long_help)
385 s = format (s, "%s", c->long_help);
386 else if (c->short_help)
387 s = format (s, "%s", c->short_help);
388 else
389 s = format (s, "%v commands", c->path);
390 return s;
391}
392
Dave Barach9b8ffd92016-07-08 08:13:45 -0400393static u8 *
Dave Barach9b8ffd92016-07-08 08:13:45 -0400394format_vlib_cli_path (u8 * s, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700395{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400396 u8 *path = va_arg (*args, u8 *);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700397
Dave Barach6b3f25c2019-12-09 10:45:47 -0500398 s = format (s, "%v", path);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700399
400 return s;
401}
402
403static vlib_cli_command_t *
Dave Barach9b8ffd92016-07-08 08:13:45 -0400404all_subs (vlib_cli_main_t * cm, vlib_cli_command_t * subs, u32 command_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700405{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400406 vlib_cli_command_t *c = vec_elt_at_index (cm->commands, command_index);
407 vlib_cli_sub_command_t *sc;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700408
409 if (c->function)
410 vec_add1 (subs, c[0]);
411
Dave Barach9b8ffd92016-07-08 08:13:45 -0400412 vec_foreach (sc, c->sub_commands) subs = all_subs (cm, subs, sc->index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700413
414 return subs;
415}
416
Matus Fabiand2dc3df2015-12-14 10:31:33 -0500417static int
Dave Barach9b8ffd92016-07-08 08:13:45 -0400418vlib_cli_cmp_rule (void *a1, void *a2)
Matus Fabiand2dc3df2015-12-14 10:31:33 -0500419{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400420 vlib_cli_sub_rule_t *r1 = a1;
421 vlib_cli_sub_rule_t *r2 = a2;
Matus Fabiand2dc3df2015-12-14 10:31:33 -0500422
423 return vec_cmp (r1->name, r2->name);
424}
425
426static int
Dave Barach9b8ffd92016-07-08 08:13:45 -0400427vlib_cli_cmp_command (void *a1, void *a2)
Matus Fabiand2dc3df2015-12-14 10:31:33 -0500428{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400429 vlib_cli_command_t *c1 = a1;
430 vlib_cli_command_t *c2 = a2;
Matus Fabiand2dc3df2015-12-14 10:31:33 -0500431
432 return vec_cmp (c1->path, c2->path);
433}
434
Ed Warnickecb9cada2015-12-08 15:45:58 -0700435static clib_error_t *
436vlib_cli_dispatch_sub_commands (vlib_main_t * vm,
437 vlib_cli_main_t * cm,
438 unformat_input_t * input,
439 uword parent_command_index)
440{
Damjan Marionfd8deb42021-03-06 12:26:28 +0100441 vlib_global_main_t *vgm = vlib_get_global_main ();
Dave Barach9b8ffd92016-07-08 08:13:45 -0400442 vlib_cli_command_t *parent, *c;
443 clib_error_t *error = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700444 unformat_input_t sub_input;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400445 u8 *string;
Damjan Marionfd8deb42021-03-06 12:26:28 +0100446 uword is_main_dispatch = cm == &vgm->cli_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700447
448 parent = vec_elt_at_index (cm->commands, parent_command_index);
449 if (is_main_dispatch && unformat (input, "help"))
450 {
451 uword help_at_end_of_line, i;
452
Dave Barach9b8ffd92016-07-08 08:13:45 -0400453 help_at_end_of_line =
454 unformat_check_input (input) == UNFORMAT_END_OF_INPUT;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700455 while (1)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400456 {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700457 c = parent;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400458 if (unformat_user
459 (input, unformat_vlib_cli_sub_command, vm, c, &parent))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700460 ;
461
Dave Barach9b8ffd92016-07-08 08:13:45 -0400462 else if (!(unformat_check_input (input) == UNFORMAT_END_OF_INPUT))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700463 goto unknown;
464
465 else
466 break;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400467 }
468
Ed Warnickecb9cada2015-12-08 15:45:58 -0700469 /* help SUB-COMMAND => long format help.
Dave Barach9b8ffd92016-07-08 08:13:45 -0400470 "help" at end of line: show all commands. */
471 if (!help_at_end_of_line)
472 vlib_cli_output (vm, "%U", format_vlib_cli_command_help, c,
473 /* is_long */ 1);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700474
Dave Barach6b3f25c2019-12-09 10:45:47 -0500475 else if (vec_len (c->sub_commands) == 0)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700476 vlib_cli_output (vm, "%v: no sub-commands", c->path);
477
478 else
479 {
Dave Barach6b3f25c2019-12-09 10:45:47 -0500480 vlib_cli_sub_rule_t *sr, *subs = 0;
Dave Barach6d5df8d2019-12-11 09:46:56 -0500481 vlib_cli_sub_command_t *sc;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700482
Dave Barach6d5df8d2019-12-11 09:46:56 -0500483 vec_foreach (sc, c->sub_commands)
484 {
485 vec_add2 (subs, sr, 1);
486 sr->name = sc->name;
487 sr->command_index = sc->index;
488 sr->rule_index = ~0;
489 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700490
Matus Fabiand2dc3df2015-12-14 10:31:33 -0500491 vec_sort_with_function (subs, vlib_cli_cmp_rule);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700492
Dave Barach9b8ffd92016-07-08 08:13:45 -0400493 for (i = 0; i < vec_len (subs); i++)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700494 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400495 vlib_cli_command_t *d;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700496
497 d = vec_elt_at_index (cm->commands, subs[i].command_index);
Dave Barach6b3f25c2019-12-09 10:45:47 -0500498 vlib_cli_output
499 (vm, " %-30v %U", subs[i].name,
500 format_vlib_cli_command_help, d, /* is_long */ 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700501 }
502
503 vec_free (subs);
504 }
505 }
Dave Barach9b8ffd92016-07-08 08:13:45 -0400506
507 else if (is_main_dispatch
508 && (unformat (input, "choices") || unformat (input, "?")))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700509 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400510 vlib_cli_command_t *sub, *subs;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700511
512 subs = all_subs (cm, 0, parent_command_index);
Matus Fabiand2dc3df2015-12-14 10:31:33 -0500513 vec_sort_with_function (subs, vlib_cli_cmp_command);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700514 vec_foreach (sub, subs)
515 vlib_cli_output (vm, " %-40U %U",
516 format_vlib_cli_path, sub->path,
517 format_vlib_cli_command_help, sub, /* is_long */ 0);
518 vec_free (subs);
519 }
520
521 else if (unformat (input, "comment %v", &string))
522 {
523 vec_free (string);
524 }
Dave Barach9b8ffd92016-07-08 08:13:45 -0400525
Dave Barach3d0e0d12021-02-17 10:25:18 -0500526 else if (unformat (input, "vpplog %v", &string))
527 {
528 int i;
529 /*
530 * Delete leading whitespace, so "vpplog { this and that }"
531 * and "vpplog this" line up nicely.
532 */
533 for (i = 0; i < vec_len (string); i++)
534 if (string[i] != ' ')
535 break;
536 if (i > 0)
537 vec_delete (string, i, 0);
538
539 vlib_log_notice (cm->log, "CLI: %v", string);
540 vec_free (string);
541 }
542
Ed Warnickecb9cada2015-12-08 15:45:58 -0700543 else if (unformat (input, "uncomment %U",
544 unformat_vlib_cli_sub_input, &sub_input))
545 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400546 error =
547 vlib_cli_dispatch_sub_commands (vm, cm, &sub_input,
548 parent_command_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700549 unformat_free (&sub_input);
550 }
Dave Barach8fdde3c2019-05-17 10:46:40 -0400551 else if (unformat (input, "leak-check %U",
552 unformat_vlib_cli_sub_input, &sub_input))
553 {
554 u8 *leak_report;
Dave Barachd67a4282019-06-15 12:46:13 -0400555 if (current_traced_heap)
556 {
557 void *oldheap;
558 oldheap = clib_mem_set_heap (current_traced_heap);
559 clib_mem_trace (0);
560 clib_mem_set_heap (oldheap);
561 current_traced_heap = 0;
562 }
Dave Barach8fdde3c2019-05-17 10:46:40 -0400563 clib_mem_trace (1);
564 error =
565 vlib_cli_dispatch_sub_commands (vm, cm, &sub_input,
566 parent_command_index);
567 unformat_free (&sub_input);
568
569 /* Otherwise, the clib_error_t shows up as a leak... */
570 if (error)
571 {
572 vlib_cli_output (vm, "%v", error->what);
573 clib_error_free (error);
574 error = 0;
575 }
576
577 (void) clib_mem_trace_enable_disable (0);
Damjan Marion4537c302020-09-28 19:03:37 +0200578 leak_report = format (0, "%U", format_clib_mem_heap, 0,
Dave Barach8fdde3c2019-05-17 10:46:40 -0400579 1 /* verbose, i.e. print leaks */ );
580 clib_mem_trace (0);
581 vlib_cli_output (vm, "%v", leak_report);
582 vec_free (leak_report);
583 }
Dave Barach9b8ffd92016-07-08 08:13:45 -0400584
585 else
586 if (unformat_user (input, unformat_vlib_cli_sub_command, vm, parent, &c))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700587 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400588 unformat_input_t *si;
589 uword has_sub_commands =
590 vec_len (c->sub_commands) + vec_len (c->sub_rules) > 0;
591
Ed Warnickecb9cada2015-12-08 15:45:58 -0700592 si = input;
593 if (unformat_user (input, unformat_vlib_cli_sub_input, &sub_input))
594 si = &sub_input;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400595
Ed Warnickecb9cada2015-12-08 15:45:58 -0700596 if (has_sub_commands)
597 error = vlib_cli_dispatch_sub_commands (vm, cm, si, c - cm->commands);
598
Dave Barach9b8ffd92016-07-08 08:13:45 -0400599 if (has_sub_commands && !error)
600 /* Found valid sub-command. */ ;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700601
602 else if (c->function)
603 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400604 clib_error_t *c_error;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700605
606 /* Skip white space for benefit of called function. */
607 unformat_skip_white_space (si);
608
609 if (unformat (si, "?"))
610 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400611 vlib_cli_output (vm, " %-40U %U", format_vlib_cli_path, c->path, format_vlib_cli_command_help, c, /* is_long */
612 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700613 }
614 else
615 {
Dave Barachc3a06552018-10-01 09:25:32 -0400616 if (PREDICT_FALSE (vm->elog_trace_cli_commands))
617 {
Dave Barachc3a06552018-10-01 09:25:32 -0400618 ELOG_TYPE_DECLARE (e) =
619 {
620 .format = "cli-cmd: %s",
621 .format_args = "T4",
622 };
Dave Barachc3a06552018-10-01 09:25:32 -0400623 struct
624 {
625 u32 c;
626 } *ed;
Damjan Marionf553a2c2021-03-26 13:45:37 +0100627 ed = ELOG_DATA (vlib_get_elog_main (), e);
628 ed->c = elog_string (vlib_get_elog_main (), "%v", c->path);
Dave Barachc3a06552018-10-01 09:25:32 -0400629 }
630
Dave Barach9b8ffd92016-07-08 08:13:45 -0400631 if (!c->is_mp_safe)
632 vlib_worker_thread_barrier_sync (vm);
Tom Seidenberg6c81f5a2020-07-10 15:49:03 +0000633 if (PREDICT_FALSE (vec_len (cm->perf_counter_cbs) != 0))
634 clib_call_callbacks (cm->perf_counter_cbs, cm,
635 c - cm->commands, 0 /* before */ );
Ed Warnickecb9cada2015-12-08 15:45:58 -0700636
Dave Baracha1f5a952019-11-01 11:24:43 -0400637 c->hit_counter++;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700638 c_error = c->function (vm, si, c);
639
Tom Seidenberg6c81f5a2020-07-10 15:49:03 +0000640 if (PREDICT_FALSE (vec_len (cm->perf_counter_cbs) != 0))
641 clib_call_callbacks (cm->perf_counter_cbs, cm,
642 c - cm->commands, 1 /* after */ );
Dave Barach9b8ffd92016-07-08 08:13:45 -0400643 if (!c->is_mp_safe)
644 vlib_worker_thread_barrier_release (vm);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700645
Dave Barachc3a06552018-10-01 09:25:32 -0400646 if (PREDICT_FALSE (vm->elog_trace_cli_commands))
647 {
Dave Barachc3a06552018-10-01 09:25:32 -0400648 ELOG_TYPE_DECLARE (e) =
649 {
650 .format = "cli-cmd: %s %s",
651 .format_args = "T4T4",
652 };
Dave Barachc3a06552018-10-01 09:25:32 -0400653 struct
654 {
655 u32 c, err;
656 } *ed;
Damjan Marionf553a2c2021-03-26 13:45:37 +0100657 ed = ELOG_DATA (vlib_get_elog_main (), e);
658 ed->c = elog_string (vlib_get_elog_main (), "%v", c->path);
Dave Barachc3a06552018-10-01 09:25:32 -0400659 if (c_error)
660 {
661 vec_add1 (c_error->what, 0);
Damjan Marionf553a2c2021-03-26 13:45:37 +0100662 ed->err = elog_string (vlib_get_elog_main (),
663 (char *) c_error->what);
Damjan Marion8bea5892022-04-04 22:40:45 +0200664 vec_dec_len (c_error->what, 1);
Dave Barachc3a06552018-10-01 09:25:32 -0400665 }
666 else
Damjan Marionf553a2c2021-03-26 13:45:37 +0100667 ed->err = elog_string (vlib_get_elog_main (), "OK");
Dave Barachc3a06552018-10-01 09:25:32 -0400668 }
669
Ed Warnickecb9cada2015-12-08 15:45:58 -0700670 if (c_error)
671 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400672 error =
673 clib_error_return (0, "%v: %v", c->path, c_error->what);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700674 clib_error_free (c_error);
675 /* Free sub input. */
676 if (si != input)
677 unformat_free (si);
678
679 return error;
680 }
681 }
682
683 /* Free any previous error. */
684 clib_error_free (error);
685 }
686
Dave Barach9b8ffd92016-07-08 08:13:45 -0400687 else if (!error)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700688 error = clib_error_return (0, "%v: no sub-commands", c->path);
689
690 /* Free sub input. */
691 if (si != input)
692 unformat_free (si);
693 }
694
695 else
696 goto unknown;
697
698 return error;
699
Dave Barach9b8ffd92016-07-08 08:13:45 -0400700unknown:
Ed Warnickecb9cada2015-12-08 15:45:58 -0700701 if (parent->path)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400702 return clib_error_return (0, "%v: unknown input `%U'", parent->path,
703 format_unformat_error, input);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700704 else
Dave Barach9b8ffd92016-07-08 08:13:45 -0400705 return clib_error_return (0, "unknown input `%U'", format_unformat_error,
706 input);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700707}
708
709
Dave Barach9b8ffd92016-07-08 08:13:45 -0400710void vlib_unix_error_report (vlib_main_t *, clib_error_t *)
711 __attribute__ ((weak));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700712
Dave Barach9b8ffd92016-07-08 08:13:45 -0400713void
714vlib_unix_error_report (vlib_main_t * vm, clib_error_t * error)
715{
716}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700717
718/* Process CLI input. */
Ole Troan72d87582019-05-10 12:01:10 +0200719int
Dave Barach9b8ffd92016-07-08 08:13:45 -0400720vlib_cli_input (vlib_main_t * vm,
721 unformat_input_t * input,
722 vlib_cli_output_function_t * function, uword function_arg)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700723{
Damjan Marionfd8deb42021-03-06 12:26:28 +0100724 vlib_global_main_t *vgm = vlib_get_global_main ();
Dave Barach9b8ffd92016-07-08 08:13:45 -0400725 vlib_process_t *cp = vlib_get_current_process (vm);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400726 clib_error_t *error;
727 vlib_cli_output_function_t *save_function;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700728 uword save_function_arg;
Ole Troan72d87582019-05-10 12:01:10 +0200729 int rv = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700730
Andrew Yourtchenko716d9592016-05-10 10:51:34 +0000731 save_function = cp->output_function;
732 save_function_arg = cp->output_function_arg;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700733
Andrew Yourtchenko716d9592016-05-10 10:51:34 +0000734 cp->output_function = function;
735 cp->output_function_arg = function_arg;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700736
Dave Barach9b8ffd92016-07-08 08:13:45 -0400737 do
738 {
Damjan Marionfd8deb42021-03-06 12:26:28 +0100739 error = vlib_cli_dispatch_sub_commands (vm, &vgm->cli_main, input,
Dave Barach6b3f25c2019-12-09 10:45:47 -0500740 /* parent */ 0);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400741 }
742 while (!error && !unformat (input, "%U", unformat_eof));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700743
744 if (error)
745 {
746 vlib_cli_output (vm, "%v", error->what);
747 vlib_unix_error_report (vm, error);
Ole Troan72d87582019-05-10 12:01:10 +0200748 /* clib_error_return is unfortunately often called with a '0'
749 return code */
750 rv = error->code != 0 ? error->code : -1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700751 clib_error_free (error);
752 }
753
Andrew Yourtchenko716d9592016-05-10 10:51:34 +0000754 cp->output_function = save_function;
755 cp->output_function_arg = save_function_arg;
Ole Troan72d87582019-05-10 12:01:10 +0200756 return rv;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700757}
758
759/* Output to current CLI connection. */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400760void
761vlib_cli_output (vlib_main_t * vm, char *fmt, ...)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700762{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400763 vlib_process_t *cp = vlib_get_current_process (vm);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700764 va_list va;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400765 u8 *s;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700766
767 va_start (va, fmt);
768 s = va_format (0, fmt, &va);
769 va_end (va);
770
Nathan Skrzypczak19ce5022020-11-23 17:56:32 +0100771 /* some format functions might return 0
772 * e.g. show int addr */
773 if (NULL == s)
774 return;
775
Ed Warnickecb9cada2015-12-08 15:45:58 -0700776 /* Terminate with \n if not present. */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400777 if (vec_len (s) > 0 && s[vec_len (s) - 1] != '\n')
Ed Warnickecb9cada2015-12-08 15:45:58 -0700778 vec_add1 (s, '\n');
779
Dave Barach9b8ffd92016-07-08 08:13:45 -0400780 if ((!cp) || (!cp->output_function))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700781 fformat (stdout, "%v", s);
782 else
Andrew Yourtchenko716d9592016-05-10 10:51:34 +0000783 cp->output_function (cp->output_function_arg, s, vec_len (s));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700784
785 vec_free (s);
786}
787
Ole Troan73710c72018-06-04 22:27:49 +0200788void *vl_msg_push_heap (void) __attribute__ ((weak));
Dave Barachd67a4282019-06-15 12:46:13 -0400789void *
790vl_msg_push_heap (void)
791{
792 return 0;
793}
794
Ole Troan73710c72018-06-04 22:27:49 +0200795void vl_msg_pop_heap (void *oldheap) __attribute__ ((weak));
Dave Barachd67a4282019-06-15 12:46:13 -0400796void
797vl_msg_pop_heap (void *oldheap)
798{
799}
800
Ed Warnickecb9cada2015-12-08 15:45:58 -0700801static clib_error_t *
802show_memory_usage (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400803 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700804{
Damjan Marion57d1ec02020-09-16 21:15:44 +0200805 clib_mem_main_t *mm = &clib_mem_main;
Dave Barachd67a4282019-06-15 12:46:13 -0400806 int verbose __attribute__ ((unused)) = 0;
Dave Baracha690fdb2020-01-21 12:34:55 -0500807 int api_segment = 0, stats_segment = 0, main_heap = 0, numa_heaps = 0;
Damjan Marion6bfd0762020-09-11 22:16:53 +0200808 int map = 0;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400809 clib_error_t *error;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700810 u32 index = 0;
Dave Baracha690fdb2020-01-21 12:34:55 -0500811 int i;
Dave Barachd67a4282019-06-15 12:46:13 -0400812 uword clib_mem_trace_enable_disable (uword enable);
813 uword was_enabled;
814
Ed Warnickecb9cada2015-12-08 15:45:58 -0700815
Dave Barach9b8ffd92016-07-08 08:13:45 -0400816 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700817 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400818 if (unformat (input, "verbose"))
819 verbose = 1;
Ole Troan73710c72018-06-04 22:27:49 +0200820 else if (unformat (input, "api-segment"))
821 api_segment = 1;
Dave Barachd67a4282019-06-15 12:46:13 -0400822 else if (unformat (input, "stats-segment"))
823 stats_segment = 1;
824 else if (unformat (input, "main-heap"))
825 main_heap = 1;
Dave Baracha690fdb2020-01-21 12:34:55 -0500826 else if (unformat (input, "numa-heaps"))
827 numa_heaps = 1;
Damjan Marion6bfd0762020-09-11 22:16:53 +0200828 else if (unformat (input, "map"))
829 map = 1;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400830 else
831 {
832 error = clib_error_return (0, "unknown input `%U'",
833 format_unformat_error, input);
834 return error;
835 }
836 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700837
Damjan Marion6bfd0762020-09-11 22:16:53 +0200838 if ((api_segment + stats_segment + main_heap + numa_heaps + map) == 0)
Dave Barachd67a4282019-06-15 12:46:13 -0400839 return clib_error_return
Damjan Marion6bfd0762020-09-11 22:16:53 +0200840 (0, "Need one of api-segment, stats-segment, main-heap, numa-heaps "
841 "or map");
Dave Barachd67a4282019-06-15 12:46:13 -0400842
Ole Troan73710c72018-06-04 22:27:49 +0200843 if (api_segment)
844 {
845 void *oldheap = vl_msg_push_heap ();
Dave Barachd67a4282019-06-15 12:46:13 -0400846 was_enabled = clib_mem_trace_enable_disable (0);
Damjan Marion4537c302020-09-28 19:03:37 +0200847 u8 *s_in_svm = format (0, "%U\n", format_clib_mem_heap, 0, 1);
Ole Troan73710c72018-06-04 22:27:49 +0200848 vl_msg_pop_heap (oldheap);
849 u8 *s = vec_dup (s_in_svm);
850
851 oldheap = vl_msg_push_heap ();
852 vec_free (s_in_svm);
Dave Barachd67a4282019-06-15 12:46:13 -0400853 clib_mem_trace_enable_disable (was_enabled);
Ole Troan73710c72018-06-04 22:27:49 +0200854 vl_msg_pop_heap (oldheap);
Dave Barachd67a4282019-06-15 12:46:13 -0400855 vlib_cli_output (vm, "API segment");
Ole Troan73710c72018-06-04 22:27:49 +0200856 vlib_cli_output (vm, "%v", s);
Dave Barachd67a4282019-06-15 12:46:13 -0400857 vec_free (s);
858 }
859 if (stats_segment)
860 {
Damjan Mariondd298e82022-10-12 16:02:18 +0200861 void *oldheap = vlib_stats_set_heap ();
Dave Barachd67a4282019-06-15 12:46:13 -0400862 was_enabled = clib_mem_trace_enable_disable (0);
Damjan Marion4537c302020-09-28 19:03:37 +0200863 u8 *s_in_svm = format (0, "%U\n", format_clib_mem_heap, 0, 1);
Dave Barachd67a4282019-06-15 12:46:13 -0400864 if (oldheap)
865 clib_mem_set_heap (oldheap);
866 u8 *s = vec_dup (s_in_svm);
867
Damjan Mariondd298e82022-10-12 16:02:18 +0200868 oldheap = vlib_stats_set_heap ();
Dave Barachd67a4282019-06-15 12:46:13 -0400869 vec_free (s_in_svm);
870 if (oldheap)
871 {
872 clib_mem_trace_enable_disable (was_enabled);
873 clib_mem_set_heap (oldheap);
874 }
875 vlib_cli_output (vm, "Stats segment");
876 vlib_cli_output (vm, "%v", s);
Ole Troan73710c72018-06-04 22:27:49 +0200877 vec_free (s);
878 }
879
Dave Baracha690fdb2020-01-21 12:34:55 -0500880
Dave Barach6a5adc32018-07-04 10:56:23 -0400881 {
Dave Barachd67a4282019-06-15 12:46:13 -0400882 if (main_heap)
883 {
884 /*
885 * Note: the foreach_vlib_main causes allocator traffic,
886 * so shut off tracing before we go there...
887 */
888 was_enabled = clib_mem_trace_enable_disable (0);
Dave Barach6a5adc32018-07-04 10:56:23 -0400889
Damjan Marion92ccf9b2021-03-26 11:38:01 +0100890 foreach_vlib_main ()
891 {
892 vlib_cli_output (vm, "%sThread %d %s\n", index ? "\n" : "", index,
893 vlib_worker_threads[index].name);
894 vlib_cli_output (vm, " %U\n", format_clib_mem_heap,
895 mm->per_cpu_mheaps[index], verbose);
896 index++;
897 }
Dave Barach6a5adc32018-07-04 10:56:23 -0400898
Dave Barachd67a4282019-06-15 12:46:13 -0400899 /* Restore the trace flag */
900 clib_mem_trace_enable_disable (was_enabled);
901 }
Dave Baracha690fdb2020-01-21 12:34:55 -0500902 if (numa_heaps)
903 {
Damjan Marion57d1ec02020-09-16 21:15:44 +0200904 for (i = 0; i < ARRAY_LEN (mm->per_numa_mheaps); i++)
Dave Baracha690fdb2020-01-21 12:34:55 -0500905 {
Damjan Marion57d1ec02020-09-16 21:15:44 +0200906 if (mm->per_numa_mheaps[i] == 0)
Dave Baracha690fdb2020-01-21 12:34:55 -0500907 continue;
Damjan Marion57d1ec02020-09-16 21:15:44 +0200908 if (mm->per_numa_mheaps[i] == mm->per_cpu_mheaps[i])
Dave Baracha690fdb2020-01-21 12:34:55 -0500909 {
910 vlib_cli_output (vm, "Numa %d uses the main heap...", i);
911 continue;
912 }
913 was_enabled = clib_mem_trace_enable_disable (0);
Dave Baracha690fdb2020-01-21 12:34:55 -0500914
Dave Baracha690fdb2020-01-21 12:34:55 -0500915 vlib_cli_output (vm, "Numa %d:", i);
Damjan Marion4537c302020-09-28 19:03:37 +0200916 vlib_cli_output (vm, " %U\n", format_clib_mem_heap,
Damjan Marion57d1ec02020-09-16 21:15:44 +0200917 mm->per_numa_mheaps[index], verbose);
Dave Baracha690fdb2020-01-21 12:34:55 -0500918 }
919 }
Damjan Marion6bfd0762020-09-11 22:16:53 +0200920 if (map)
921 {
922 clib_mem_page_stats_t stats = { };
923 clib_mem_vm_map_hdr_t *hdr = 0;
924 u8 *s = 0;
925 int numa = -1;
926
Damjan Marion5ef25162020-09-17 13:29:33 +0200927 s = format (s, "\n%-16s%7s%5s%7s%7s",
928 "StartAddr", "size", "FD", "PageSz", "Pages");
Damjan Marion6bfd0762020-09-11 22:16:53 +0200929 while ((numa = vlib_mem_get_next_numa_node (numa)) != -1)
930 s = format (s, " Numa%u", numa);
931 s = format (s, " NotMap");
932 s = format (s, " Name");
933 vlib_cli_output (vm, "%v", s);
934 vec_reset_length (s);
935
936 while ((hdr = clib_mem_vm_get_next_map_hdr (hdr)))
937 {
938 clib_mem_get_page_stats ((void *) hdr->base_addr,
939 hdr->log2_page_sz, hdr->num_pages,
940 &stats);
Damjan Marion5ef25162020-09-17 13:29:33 +0200941 s = format (s, "%016lx%7U",
Damjan Marion6bfd0762020-09-11 22:16:53 +0200942 hdr->base_addr, format_memory_size,
Damjan Marion5ef25162020-09-17 13:29:33 +0200943 hdr->num_pages << hdr->log2_page_sz);
944
945 if (hdr->fd != -1)
946 s = format (s, "%5d", hdr->fd);
947 else
948 s = format (s, "%5s", " ");
949
950 s = format (s, "%7U%7lu",
Damjan Marion6bfd0762020-09-11 22:16:53 +0200951 format_log2_page_size, hdr->log2_page_sz,
952 hdr->num_pages);
953 while ((numa = vlib_mem_get_next_numa_node (numa)) != -1)
954 s = format (s, "%6lu", stats.per_numa[numa]);
955 s = format (s, "%7lu", stats.not_mapped);
956 s = format (s, " %s", hdr->name);
957 vlib_cli_output (vm, "%v", s);
958 vec_reset_length (s);
959 }
960 vec_free (s);
961 }
Dave Barach6a5adc32018-07-04 10:56:23 -0400962 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700963 return 0;
964}
965
966VLIB_CLI_COMMAND (show_memory_usage_command, static) = {
967 .path = "show memory",
Dave Baracha690fdb2020-01-21 12:34:55 -0500968 .short_help = "show memory [api-segment][stats-segment][verbose]\n"
Benoît Ganneaf62f932023-02-08 18:54:30 +0100969 " [numa-heaps][map][main-heap]",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700970 .function = show_memory_usage,
971};
972
973static clib_error_t *
Damjan Marioneccf5092016-11-18 16:59:24 +0100974show_cpu (vlib_main_t * vm, unformat_input_t * input,
975 vlib_cli_command_t * cmd)
976{
977#define _(a,b,c) vlib_cli_output (vm, "%-25s " b, a ":", c);
978 _("Model name", "%U", format_cpu_model_name);
Paul Vinciguerrad6897c12018-12-30 11:07:36 -0800979 _("Microarch model (family)", "%U", format_cpu_uarch);
Damjan Marioneccf5092016-11-18 16:59:24 +0100980 _("Flags", "%U", format_cpu_flags);
981 _("Base frequency", "%.2f GHz",
982 ((f64) vm->clib_time.clocks_per_second) * 1e-9);
983#undef _
984 return 0;
985}
986
987/*?
988 * Displays various information about the CPU.
989 *
990 * @cliexpar
991 * @cliexstart{show cpu}
992 * Model name: Intel(R) Xeon(R) CPU E5-2667 v4 @ 3.20GHz
993 * Microarchitecture: Broadwell (Broadwell-EP/EX)
994 * Flags: sse3 ssse3 sse41 sse42 avx avx2 aes
995 * Base Frequency: 3.20 GHz
996 * @cliexend
997?*/
Damjan Marioneccf5092016-11-18 16:59:24 +0100998VLIB_CLI_COMMAND (show_cpu_command, static) = {
999 .path = "show cpu",
1000 .short_help = "Show cpu information",
1001 .function = show_cpu,
1002};
Ole Troan73710c72018-06-04 22:27:49 +02001003
Damjan Marioneccf5092016-11-18 16:59:24 +01001004static clib_error_t *
Ed Warnickecb9cada2015-12-08 15:45:58 -07001005enable_disable_memory_trace (vlib_main_t * vm,
1006 unformat_input_t * input,
1007 vlib_cli_command_t * cmd)
1008{
Damjan Marion57d1ec02020-09-16 21:15:44 +02001009 clib_mem_main_t *mm = &clib_mem_main;
Ole Troan73710c72018-06-04 22:27:49 +02001010 unformat_input_t _line_input, *line_input = &_line_input;
Dave Barachd67a4282019-06-15 12:46:13 -04001011 int enable = 1;
Ole Troan73710c72018-06-04 22:27:49 +02001012 int api_segment = 0;
Dave Barachd67a4282019-06-15 12:46:13 -04001013 int stats_segment = 0;
1014 int main_heap = 0;
Dave Baracha690fdb2020-01-21 12:34:55 -05001015 u32 numa_id = ~0;
Ole Troan73710c72018-06-04 22:27:49 +02001016 void *oldheap;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001017
Ole Troan73710c72018-06-04 22:27:49 +02001018 if (!unformat_user (input, unformat_line_input, line_input))
1019 return 0;
1020
1021 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001022 {
Dave Barach1ddbc012018-06-13 09:26:05 -04001023 if (unformat (line_input, "%U", unformat_vlib_enable_disable, &enable))
Ole Troan73710c72018-06-04 22:27:49 +02001024 ;
1025 else if (unformat (line_input, "api-segment"))
1026 api_segment = 1;
Dave Barachd67a4282019-06-15 12:46:13 -04001027 else if (unformat (line_input, "stats-segment"))
1028 stats_segment = 1;
1029 else if (unformat (line_input, "main-heap"))
1030 main_heap = 1;
Dave Baracha690fdb2020-01-21 12:34:55 -05001031 else if (unformat (line_input, "numa-heap %d", &numa_id))
1032 ;
Ole Troan73710c72018-06-04 22:27:49 +02001033 else
1034 {
1035 unformat_free (line_input);
1036 return clib_error_return (0, "invalid input");
1037 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001038 }
Ole Troan73710c72018-06-04 22:27:49 +02001039 unformat_free (line_input);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001040
Dave Baracha690fdb2020-01-21 12:34:55 -05001041 if ((api_segment + stats_segment + main_heap + (enable == 0)
1042 + (numa_id != ~0)) == 0)
Dave Barachd67a4282019-06-15 12:46:13 -04001043 {
1044 return clib_error_return
Dave Baracha690fdb2020-01-21 12:34:55 -05001045 (0, "Need one of main-heap, stats-segment, api-segment,\n"
1046 "numa-heap <nn> or disable");
Dave Barachd67a4282019-06-15 12:46:13 -04001047 }
1048
1049 /* Turn off current trace, if any */
1050 if (current_traced_heap)
1051 {
1052 void *oldheap;
1053 oldheap = clib_mem_set_heap (current_traced_heap);
1054 clib_mem_trace (0);
1055 clib_mem_set_heap (oldheap);
1056 current_traced_heap = 0;
1057 }
1058
1059 if (enable == 0)
1060 return 0;
1061
1062 /* API segment */
Ole Troan73710c72018-06-04 22:27:49 +02001063 if (api_segment)
Dave Barachd67a4282019-06-15 12:46:13 -04001064 {
1065 oldheap = vl_msg_push_heap ();
1066 current_traced_heap = clib_mem_get_heap ();
1067 clib_mem_trace (1);
1068 vl_msg_pop_heap (oldheap);
1069
1070 }
1071
1072 /* Stats segment */
1073 if (stats_segment)
1074 {
Damjan Marion8973b072022-03-01 15:51:18 +01001075 oldheap = vlib_stats_set_heap ();
Dave Barachd67a4282019-06-15 12:46:13 -04001076 current_traced_heap = clib_mem_get_heap ();
1077 clib_mem_trace (stats_segment);
1078 /* We don't want to call vlib_stats_pop_heap... */
1079 if (oldheap)
1080 clib_mem_set_heap (oldheap);
1081 }
1082
1083 /* main_heap */
1084 if (main_heap)
1085 {
1086 current_traced_heap = clib_mem_get_heap ();
1087 clib_mem_trace (main_heap);
1088 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001089
Dave Baracha690fdb2020-01-21 12:34:55 -05001090 if (numa_id != ~0)
1091 {
Damjan Marion57d1ec02020-09-16 21:15:44 +02001092 if (numa_id >= ARRAY_LEN (mm->per_numa_mheaps))
Dave Baracha690fdb2020-01-21 12:34:55 -05001093 return clib_error_return (0, "Numa %d out of range", numa_id);
Damjan Marion57d1ec02020-09-16 21:15:44 +02001094 if (mm->per_numa_mheaps[numa_id] == 0)
Dave Baracha690fdb2020-01-21 12:34:55 -05001095 return clib_error_return (0, "Numa %d heap not active", numa_id);
1096
Damjan Marion57d1ec02020-09-16 21:15:44 +02001097 if (mm->per_numa_mheaps[numa_id] == clib_mem_get_heap ())
Dave Baracha690fdb2020-01-21 12:34:55 -05001098 return clib_error_return (0, "Numa %d uses the main heap...",
1099 numa_id);
Damjan Marion57d1ec02020-09-16 21:15:44 +02001100 current_traced_heap = mm->per_numa_mheaps[numa_id];
Dave Baracha690fdb2020-01-21 12:34:55 -05001101 oldheap = clib_mem_set_heap (current_traced_heap);
1102 clib_mem_trace (1);
1103 clib_mem_set_heap (oldheap);
1104 }
1105
1106
Ole Troan73710c72018-06-04 22:27:49 +02001107 return 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001108}
1109
1110VLIB_CLI_COMMAND (enable_disable_memory_trace_command, static) = {
1111 .path = "memory-trace",
Dave Baracha690fdb2020-01-21 12:34:55 -05001112 .short_help = "memory-trace on|off [api-segment][stats-segment][main-heap]\n"
1113 " [numa-heap <numa-id>]\n",
Ed Warnickecb9cada2015-12-08 15:45:58 -07001114 .function = enable_disable_memory_trace,
1115};
1116
Damjan Marione5ef1d72017-03-02 12:33:48 +01001117static clib_error_t *
1118restart_cmd_fn (vlib_main_t * vm, unformat_input_t * input,
1119 vlib_cli_command_t * cmd)
1120{
Damjan Marionfd8deb42021-03-06 12:26:28 +01001121 vlib_global_main_t *vgm = vlib_get_global_main ();
Chris Luke6edd3602018-06-12 22:45:06 -04001122 clib_file_main_t *fm = &file_main;
1123 clib_file_t *f;
Damjan Marione5ef1d72017-03-02 12:33:48 +01001124
Chris Luke6edd3602018-06-12 22:45:06 -04001125 /* environ(7) does not indicate a header for this */
1126 extern char **environ;
1127
1128 /* Close all known open files */
Damjan Marionb2c31b62020-12-13 21:47:40 +01001129 pool_foreach (f, fm->file_pool)
1130 {
Chris Luke6edd3602018-06-12 22:45:06 -04001131 if (f->file_descriptor > 2)
1132 close(f->file_descriptor);
Damjan Marionb2c31b62020-12-13 21:47:40 +01001133 }
Chris Luke6edd3602018-06-12 22:45:06 -04001134
1135 /* Exec ourself */
Damjan Marion2e90b292022-04-04 18:48:11 +02001136 execve (vgm->name, (char **) vgm->argv, environ);
Damjan Marione5ef1d72017-03-02 12:33:48 +01001137
1138 return 0;
1139}
1140
Damjan Marione5ef1d72017-03-02 12:33:48 +01001141VLIB_CLI_COMMAND (restart_cmd,static) = {
1142 .path = "restart",
1143 .short_help = "restart process",
1144 .function = restart_cmd_fn,
1145};
Damjan Marione5ef1d72017-03-02 12:33:48 +01001146
Andrew Yourtchenko716d9592016-05-10 10:51:34 +00001147#ifdef TEST_CODE
1148/*
1149 * A trivial test harness to verify the per-process output_function
1150 * is working correcty.
1151 */
1152
1153static clib_error_t *
1154sleep_ten_seconds (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -04001155 unformat_input_t * input, vlib_cli_command_t * cmd)
Andrew Yourtchenko716d9592016-05-10 10:51:34 +00001156{
1157 u16 i;
Dave Barach9b8ffd92016-07-08 08:13:45 -04001158 u16 my_id = rand ();
Andrew Yourtchenko716d9592016-05-10 10:51:34 +00001159
Dave Barach9b8ffd92016-07-08 08:13:45 -04001160 vlib_cli_output (vm, "Starting 10 seconds sleep with id %u\n", my_id);
Andrew Yourtchenko716d9592016-05-10 10:51:34 +00001161
Dave Barach9b8ffd92016-07-08 08:13:45 -04001162 for (i = 0; i < 10; i++)
Andrew Yourtchenko716d9592016-05-10 10:51:34 +00001163 {
Dave Barach9b8ffd92016-07-08 08:13:45 -04001164 vlib_process_wait_for_event_or_clock (vm, 1.0);
1165 vlib_cli_output (vm, "Iteration number %u, my id: %u\n", i, my_id);
Andrew Yourtchenko716d9592016-05-10 10:51:34 +00001166 }
Dave Barach9b8ffd92016-07-08 08:13:45 -04001167 vlib_cli_output (vm, "Done with sleep with id %u\n", my_id);
Andrew Yourtchenko716d9592016-05-10 10:51:34 +00001168 return 0;
1169}
1170
1171VLIB_CLI_COMMAND (ping_command, static) = {
1172 .path = "test sleep",
1173 .function = sleep_ten_seconds,
1174 .short_help = "Sleep for 10 seconds",
1175};
1176#endif /* ifdef TEST_CODE */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001177
Dave Barach9b8ffd92016-07-08 08:13:45 -04001178static uword
1179vlib_cli_normalize_path (char *input, char **result)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001180{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001181 char *i = input;
1182 char *s = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001183 uword l = 0;
1184 uword index_of_last_space = ~0;
1185
1186 while (*i != 0)
1187 {
1188 u8 c = *i++;
1189 /* Multiple white space -> single space. */
1190 switch (c)
1191 {
1192 case ' ':
1193 case '\t':
1194 case '\n':
1195 case '\r':
Dave Barach9b8ffd92016-07-08 08:13:45 -04001196 if (l > 0 && s[l - 1] != ' ')
Ed Warnickecb9cada2015-12-08 15:45:58 -07001197 {
1198 vec_add1 (s, ' ');
1199 l++;
1200 }
1201 break;
1202
1203 default:
Dave Barach9b8ffd92016-07-08 08:13:45 -04001204 if (l > 0 && s[l - 1] == ' ')
Ed Warnickecb9cada2015-12-08 15:45:58 -07001205 index_of_last_space = vec_len (s);
1206 vec_add1 (s, c);
1207 l++;
1208 break;
1209 }
1210 }
1211
1212 /* Remove any extra space at end. */
Dave Barach9b8ffd92016-07-08 08:13:45 -04001213 if (l > 0 && s[l - 1] == ' ')
Damjan Marion8bea5892022-04-04 22:40:45 +02001214 vec_dec_len (s, 1);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001215
1216 *result = s;
1217 return index_of_last_space;
1218}
1219
1220always_inline uword
Dave Barach9b8ffd92016-07-08 08:13:45 -04001221parent_path_len (char *path)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001222{
1223 word i;
1224 for (i = vec_len (path) - 1; i >= 0; i--)
1225 {
1226 if (path[i] == ' ')
1227 return i;
1228 }
1229 return ~0;
1230}
1231
Dave Barach9b8ffd92016-07-08 08:13:45 -04001232static void
1233add_sub_command (vlib_cli_main_t * cm, uword parent_index, uword child_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001234{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001235 vlib_cli_command_t *p, *c;
1236 vlib_cli_sub_command_t *sub_c;
1237 u8 *sub_name;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001238 word i, l;
1239
1240 p = vec_elt_at_index (cm->commands, parent_index);
1241 c = vec_elt_at_index (cm->commands, child_index);
1242
1243 l = parent_path_len (c->path);
1244 if (l == ~0)
1245 sub_name = vec_dup ((u8 *) c->path);
1246 else
1247 {
1248 ASSERT (l + 1 < vec_len (c->path));
1249 sub_name = 0;
1250 vec_add (sub_name, c->path + l + 1, vec_len (c->path) - (l + 1));
1251 }
1252
Dave Barachbfb9a662021-06-21 10:31:35 -04001253 /* "Can't happen," check mainly to shut up coverity */
1254 ALWAYS_ASSERT (sub_name != 0);
1255
Ed Warnickecb9cada2015-12-08 15:45:58 -07001256 if (sub_name[0] == '%')
1257 {
Dave Barach9b8ffd92016-07-08 08:13:45 -04001258 uword *q;
1259 vlib_cli_sub_rule_t *sr;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001260
1261 /* Remove %. */
1262 vec_delete (sub_name, 1, 0);
1263
Dave Barach9b8ffd92016-07-08 08:13:45 -04001264 if (!p->sub_rule_index_by_name)
1265 p->sub_rule_index_by_name = hash_create_vec ( /* initial length */ 32,
1266 sizeof (sub_name[0]),
1267 sizeof (uword));
Ed Warnickecb9cada2015-12-08 15:45:58 -07001268 q = hash_get_mem (p->sub_rule_index_by_name, sub_name);
1269 if (q)
1270 {
1271 sr = vec_elt_at_index (p->sub_rules, q[0]);
1272 ASSERT (sr->command_index == child_index);
1273 return;
1274 }
1275
Dave Barach9b8ffd92016-07-08 08:13:45 -04001276 hash_set_mem (p->sub_rule_index_by_name, sub_name,
1277 vec_len (p->sub_rules));
Ed Warnickecb9cada2015-12-08 15:45:58 -07001278 vec_add2 (p->sub_rules, sr, 1);
1279 sr->name = sub_name;
Dave Barach5c944ee2020-01-07 12:29:10 -05001280 sr->rule_index = sr - p->sub_rules;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001281 sr->command_index = child_index;
1282 return;
1283 }
1284
Dave Barach9b8ffd92016-07-08 08:13:45 -04001285 if (!p->sub_command_index_by_name)
1286 p->sub_command_index_by_name = hash_create_vec ( /* initial length */ 32,
1287 sizeof (c->path[0]),
1288 sizeof (uword));
Ed Warnickecb9cada2015-12-08 15:45:58 -07001289
1290 /* Check if sub-command has already been created. */
1291 if (hash_get_mem (p->sub_command_index_by_name, sub_name))
1292 {
1293 vec_free (sub_name);
1294 return;
1295 }
1296
1297 vec_add2 (p->sub_commands, sub_c, 1);
1298 sub_c->index = child_index;
1299 sub_c->name = sub_name;
Dave Barach9b8ffd92016-07-08 08:13:45 -04001300 hash_set_mem (p->sub_command_index_by_name, sub_c->name,
1301 sub_c - p->sub_commands);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001302
1303 vec_validate (p->sub_command_positions, vec_len (sub_c->name) - 1);
1304 for (i = 0; i < vec_len (sub_c->name); i++)
1305 {
1306 int n;
Dave Barach9b8ffd92016-07-08 08:13:45 -04001307 vlib_cli_parse_position_t *pos;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001308
1309 pos = vec_elt_at_index (p->sub_command_positions, i);
1310
Dave Barach9b8ffd92016-07-08 08:13:45 -04001311 if (!pos->bitmaps)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001312 pos->min_char = sub_c->name[i];
1313
1314 n = sub_c->name[i] - pos->min_char;
1315 if (n < 0)
1316 {
1317 pos->min_char = sub_c->name[i];
1318 vec_insert (pos->bitmaps, -n, 0);
1319 n = 0;
1320 }
1321
1322 vec_validate (pos->bitmaps, n);
Dave Barach9b8ffd92016-07-08 08:13:45 -04001323 pos->bitmaps[n] =
1324 clib_bitmap_ori (pos->bitmaps[n], sub_c - p->sub_commands);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001325 }
1326}
1327
1328static void
1329vlib_cli_make_parent (vlib_cli_main_t * cm, uword ci)
1330{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001331 uword p_len, pi, *p;
1332 char *p_path;
1333 vlib_cli_command_t *c, *parent;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001334
1335 /* Root command (index 0) should have already been added. */
1336 ASSERT (vec_len (cm->commands) > 0);
1337
1338 c = vec_elt_at_index (cm->commands, ci);
1339 p_len = parent_path_len (c->path);
1340
Dave Barach9b8ffd92016-07-08 08:13:45 -04001341 /* No space? Parent is root command. */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001342 if (p_len == ~0)
1343 {
1344 add_sub_command (cm, 0, ci);
1345 return;
1346 }
1347
1348 p_path = 0;
1349 vec_add (p_path, c->path, p_len);
1350
1351 p = hash_get_mem (cm->command_index_by_path, p_path);
1352
1353 /* Parent exists? */
Dave Barach9b8ffd92016-07-08 08:13:45 -04001354 if (!p)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001355 {
1356 /* Parent does not exist; create it. */
1357 vec_add2 (cm->commands, parent, 1);
1358 parent->path = p_path;
Dave Barach9b8ffd92016-07-08 08:13:45 -04001359 hash_set_mem (cm->command_index_by_path, parent->path,
1360 parent - cm->commands);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001361 pi = parent - cm->commands;
1362 }
1363 else
1364 {
1365 pi = p[0];
1366 vec_free (p_path);
1367 }
1368
1369 add_sub_command (cm, pi, ci);
1370
1371 /* Create parent's parent. */
Dave Barach9b8ffd92016-07-08 08:13:45 -04001372 if (!p)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001373 vlib_cli_make_parent (cm, pi);
1374}
1375
1376always_inline uword
1377vlib_cli_command_is_empty (vlib_cli_command_t * c)
1378{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001379 return (c->long_help == 0 && c->short_help == 0 && c->function == 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001380}
1381
Dave Barach9b8ffd92016-07-08 08:13:45 -04001382clib_error_t *
1383vlib_cli_register (vlib_main_t * vm, vlib_cli_command_t * c)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001384{
Damjan Marionfd8deb42021-03-06 12:26:28 +01001385 vlib_global_main_t *vgm = vlib_get_global_main ();
1386 vlib_cli_main_t *cm = &vgm->cli_main;
Dave Barach9b8ffd92016-07-08 08:13:45 -04001387 clib_error_t *error = 0;
1388 uword ci, *p;
1389 char *normalized_path;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001390
1391 if ((error = vlib_call_init_function (vm, vlib_cli_init)))
1392 return error;
1393
1394 (void) vlib_cli_normalize_path (c->path, &normalized_path);
1395
Dave Barach9b8ffd92016-07-08 08:13:45 -04001396 if (!cm->command_index_by_path)
1397 cm->command_index_by_path = hash_create_vec ( /* initial length */ 32,
Ed Warnickecb9cada2015-12-08 15:45:58 -07001398 sizeof (c->path[0]),
1399 sizeof (uword));
1400
1401 /* See if command already exists with given path. */
1402 p = hash_get_mem (cm->command_index_by_path, normalized_path);
1403 if (p)
1404 {
Dave Barach9b8ffd92016-07-08 08:13:45 -04001405 vlib_cli_command_t *d;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001406
1407 ci = p[0];
1408 d = vec_elt_at_index (cm->commands, ci);
1409
1410 /* If existing command was created via vlib_cli_make_parent
Dave Barach9b8ffd92016-07-08 08:13:45 -04001411 replaced it with callers data. */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001412 if (vlib_cli_command_is_empty (d))
1413 {
1414 vlib_cli_command_t save = d[0];
1415
Dave Barach9b8ffd92016-07-08 08:13:45 -04001416 ASSERT (!vlib_cli_command_is_empty (c));
Ed Warnickecb9cada2015-12-08 15:45:58 -07001417
1418 /* Copy callers fields. */
1419 d[0] = c[0];
1420
1421 /* Save internal fields. */
1422 d->path = save.path;
1423 d->sub_commands = save.sub_commands;
1424 d->sub_command_index_by_name = save.sub_command_index_by_name;
1425 d->sub_command_positions = save.sub_command_positions;
1426 d->sub_rules = save.sub_rules;
1427 }
1428 else
Dave Barach9b8ffd92016-07-08 08:13:45 -04001429 error =
1430 clib_error_return (0, "duplicate command name with path %v",
1431 normalized_path);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001432
1433 vec_free (normalized_path);
1434 if (error)
1435 return error;
1436 }
1437 else
1438 {
1439 /* Command does not exist: create it. */
1440
1441 /* Add root command (index 0). */
1442 if (vec_len (cm->commands) == 0)
1443 {
1444 /* Create command with index 0; path is empty string. */
1445 vec_resize (cm->commands, 1);
1446 }
1447
1448 ci = vec_len (cm->commands);
1449 hash_set_mem (cm->command_index_by_path, normalized_path, ci);
1450 vec_add1 (cm->commands, c[0]);
1451
1452 c = vec_elt_at_index (cm->commands, ci);
1453 c->path = normalized_path;
1454
1455 /* Don't inherit from registration. */
1456 c->sub_commands = 0;
1457 c->sub_command_index_by_name = 0;
1458 c->sub_command_positions = 0;
1459 }
1460
1461 vlib_cli_make_parent (cm, ci);
1462 return 0;
1463}
1464
Dave Barach6b3f25c2019-12-09 10:45:47 -05001465#if 0
1466/* $$$ turn back on again someday, maybe */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001467clib_error_t *
1468vlib_cli_register_parse_rule (vlib_main_t * vm, vlib_cli_parse_rule_t * r_reg)
1469{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001470 vlib_cli_main_t *cm = &vm->cli_main;
1471 vlib_cli_parse_rule_t *r;
1472 clib_error_t *error = 0;
1473 u8 *r_name;
1474 uword *p;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001475
Dave Barach9b8ffd92016-07-08 08:13:45 -04001476 if (!cm->parse_rule_index_by_name)
1477 cm->parse_rule_index_by_name = hash_create_vec ( /* initial length */ 32,
Ed Warnickecb9cada2015-12-08 15:45:58 -07001478 sizeof (r->name[0]),
1479 sizeof (uword));
1480
1481 /* Make vector copy of name. */
1482 r_name = format (0, "%s", r_reg->name);
1483
1484 if ((p = hash_get_mem (cm->parse_rule_index_by_name, r_name)))
1485 {
1486 vec_free (r_name);
Dave Barach9b8ffd92016-07-08 08:13:45 -04001487 return clib_error_return (0, "duplicate parse rule name `%s'",
1488 r_reg->name);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001489 }
1490
1491 vec_add2 (cm->parse_rules, r, 1);
1492 r[0] = r_reg[0];
1493 r->name = (char *) r_name;
1494 hash_set_mem (cm->parse_rule_index_by_name, r->name, r - cm->parse_rules);
1495
1496 return error;
1497}
1498
Dave Barach9b8ffd92016-07-08 08:13:45 -04001499static clib_error_t *vlib_cli_register_parse_rules (vlib_main_t * vm,
1500 vlib_cli_parse_rule_t *
1501 lo,
1502 vlib_cli_parse_rule_t *
1503 hi)
1504 __attribute__ ((unused))
Ed Warnickecb9cada2015-12-08 15:45:58 -07001505{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001506 clib_error_t *error = 0;
1507 vlib_cli_parse_rule_t *r;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001508
1509 for (r = lo; r < hi; r = clib_elf_section_data_next (r, 0))
1510 {
Dave Barach9b8ffd92016-07-08 08:13:45 -04001511 if (!r->name || strlen (r->name) == 0)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001512 {
1513 error = clib_error_return (0, "parse rule with no name");
1514 goto done;
1515 }
1516
1517 error = vlib_cli_register_parse_rule (vm, r);
1518 if (error)
1519 goto done;
1520 }
1521
Dave Barach9b8ffd92016-07-08 08:13:45 -04001522done:
Ed Warnickecb9cada2015-12-08 15:45:58 -07001523 return error;
1524}
1525#endif
1526
Dave Barach9b8ffd92016-07-08 08:13:45 -04001527static clib_error_t *
Dave Barachaa676742020-11-25 07:23:42 -05001528event_logger_trace_command_fn (vlib_main_t * vm,
1529 unformat_input_t * input,
1530 vlib_cli_command_t * cmd)
Dave Barachc3a06552018-10-01 09:25:32 -04001531{
1532 unformat_input_t _line_input, *line_input = &_line_input;
1533 int enable = 1;
Dave Barach900cbad2019-01-31 19:12:51 -05001534 int api = 0, cli = 0, barrier = 0, dispatch = 0, circuit = 0;
1535 u32 circuit_node_index;
Dave Barachc3a06552018-10-01 09:25:32 -04001536
1537 if (!unformat_user (input, unformat_line_input, line_input))
1538 goto print_status;
1539
1540 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
1541 {
1542 if (unformat (line_input, "api"))
1543 api = 1;
Dave Barach900cbad2019-01-31 19:12:51 -05001544 else if (unformat (line_input, "dispatch"))
1545 dispatch = 1;
1546 else if (unformat (line_input, "circuit-node %U",
1547 unformat_vlib_node, vm, &circuit_node_index))
1548 circuit = 1;
Dave Barachc3a06552018-10-01 09:25:32 -04001549 else if (unformat (line_input, "cli"))
1550 cli = 1;
1551 else if (unformat (line_input, "barrier"))
1552 barrier = 1;
1553 else if (unformat (line_input, "disable"))
1554 enable = 0;
1555 else if (unformat (line_input, "enable"))
1556 enable = 1;
1557 else
1558 break;
1559 }
1560 unformat_free (line_input);
1561
Dave Barachb09f4d02019-07-15 16:00:03 -04001562 vl_api_set_elog_trace_api_messages
1563 (api ? enable : vl_api_get_elog_trace_api_messages ());
Dave Barachc3a06552018-10-01 09:25:32 -04001564 vm->elog_trace_cli_commands = cli ? enable : vm->elog_trace_cli_commands;
Dave Barach900cbad2019-01-31 19:12:51 -05001565 vm->elog_trace_graph_dispatch = dispatch ?
1566 enable : vm->elog_trace_graph_dispatch;
1567 vm->elog_trace_graph_circuit = circuit ?
1568 enable : vm->elog_trace_graph_circuit;
Dave Barachc3a06552018-10-01 09:25:32 -04001569 vlib_worker_threads->barrier_elog_enabled =
1570 barrier ? enable : vlib_worker_threads->barrier_elog_enabled;
Dave Barach900cbad2019-01-31 19:12:51 -05001571 vm->elog_trace_graph_circuit_node_index = circuit_node_index;
1572
1573 /*
1574 * Set up start-of-buffer logic-analyzer trigger
1575 * for main loop event logs, which are fairly heavyweight.
1576 * See src/vlib/main/vlib_elog_main_loop_event(...), which
1577 * will fully disable the scheme when the elog buffer fills.
1578 */
1579 if (dispatch || circuit)
1580 {
Damjan Marionf553a2c2021-03-26 13:45:37 +01001581 elog_main_t *em = &vlib_global_main.elog_main;
Dave Barach900cbad2019-01-31 19:12:51 -05001582
1583 em->n_total_events_disable_limit =
1584 em->n_total_events + vec_len (em->event_ring);
1585 }
1586
Dave Barachc3a06552018-10-01 09:25:32 -04001587
1588print_status:
1589 vlib_cli_output (vm, "Current status:");
1590
1591 vlib_cli_output
1592 (vm, " Event log API message trace: %s\n CLI command trace: %s",
Dave Barachb09f4d02019-07-15 16:00:03 -04001593 vl_api_get_elog_trace_api_messages ()? "on" : "off",
Dave Barachc3a06552018-10-01 09:25:32 -04001594 vm->elog_trace_cli_commands ? "on" : "off");
1595 vlib_cli_output
1596 (vm, " Barrier sync trace: %s",
1597 vlib_worker_threads->barrier_elog_enabled ? "on" : "off");
Dave Barach900cbad2019-01-31 19:12:51 -05001598 vlib_cli_output
1599 (vm, " Graph Dispatch: %s",
1600 vm->elog_trace_graph_dispatch ? "on" : "off");
1601 vlib_cli_output
1602 (vm, " Graph Circuit: %s",
1603 vm->elog_trace_graph_circuit ? "on" : "off");
1604 if (vm->elog_trace_graph_circuit)
1605 vlib_cli_output
1606 (vm, " node %U",
1607 format_vlib_node_name, vm, vm->elog_trace_graph_circuit_node_index);
Dave Barachc3a06552018-10-01 09:25:32 -04001608
1609 return 0;
1610}
1611
1612/*?
1613 * Control event logging of api, cli, and thread barrier events
1614 * With no arguments, displays the current trace status.
1615 * Name the event groups you wish to trace or stop tracing.
1616 *
1617 * @cliexpar
1618 * @clistart
Dave Barachaa676742020-11-25 07:23:42 -05001619 * event-logger trace api cli barrier
1620 * event-logger trace api cli barrier disable
1621 * event-logger trace dispatch
1622 * event-logger trace circuit-node ethernet-input
Dave Barachc3a06552018-10-01 09:25:32 -04001623 * @cliend
Dave Barachaa676742020-11-25 07:23:42 -05001624 * @cliexcmd{event-logger trace [api][cli][barrier][disable]}
Dave Barachc3a06552018-10-01 09:25:32 -04001625?*/
Dave Barachaa676742020-11-25 07:23:42 -05001626VLIB_CLI_COMMAND (event_logger_trace_command, static) =
Dave Barachc3a06552018-10-01 09:25:32 -04001627{
Dave Barachaa676742020-11-25 07:23:42 -05001628 .path = "event-logger trace",
1629 .short_help = "event-logger trace [api][cli][barrier][dispatch]\n"
Dave Barach900cbad2019-01-31 19:12:51 -05001630 "[circuit-node <name> e.g. ethernet-input][disable]",
Dave Barachaa676742020-11-25 07:23:42 -05001631 .function = event_logger_trace_command_fn,
Dave Barachc3a06552018-10-01 09:25:32 -04001632};
Dave Barachc3a06552018-10-01 09:25:32 -04001633
1634static clib_error_t *
Dave Barachc4abafd2019-09-04 12:09:32 -04001635suspend_command_fn (vlib_main_t * vm,
1636 unformat_input_t * input, vlib_cli_command_t * cmd)
1637{
1638 vlib_process_suspend (vm, 30e-3);
1639 return 0;
1640}
1641
Dave Barachc4abafd2019-09-04 12:09:32 -04001642VLIB_CLI_COMMAND (suspend_command, static) =
1643{
1644 .path = "suspend",
1645 .short_help = "suspend debug CLI for 30ms",
1646 .function = suspend_command_fn,
Dave Baracha1f5a952019-11-01 11:24:43 -04001647 .is_mp_safe = 1,
1648};
Dave Baracha1f5a952019-11-01 11:24:43 -04001649
1650
1651static int
1652sort_cmds_by_path (void *a1, void *a2)
1653{
1654 u32 *index1 = a1;
1655 u32 *index2 = a2;
Damjan Marionfd8deb42021-03-06 12:26:28 +01001656 vlib_global_main_t *vgm = vlib_get_global_main ();
1657 vlib_cli_main_t *cm = &vgm->cli_main;
Dave Baracha1f5a952019-11-01 11:24:43 -04001658 vlib_cli_command_t *c1, *c2;
1659 int i, lmin;
1660
1661 c1 = vec_elt_at_index (cm->commands, *index1);
1662 c2 = vec_elt_at_index (cm->commands, *index2);
1663
1664 lmin = vec_len (c1->path);
1665 lmin = (vec_len (c2->path) >= lmin) ? lmin : vec_len (c2->path);
1666
1667 for (i = 0; i < lmin; i++)
1668 {
1669 if (c1->path[i] < c2->path[i])
1670 return -1;
1671 else if (c1->path[i] > c2->path[i])
1672 return 1;
1673 }
1674
1675 return 0;
1676}
1677
1678typedef struct
1679{
1680 vlib_cli_main_t *cm;
1681 u32 parent_command_index;
1682 int show_mp_safe;
1683 int show_not_mp_safe;
1684 int show_hit;
1685 int clear_hit;
1686} vlib_cli_walk_args_t;
1687
1688static void
1689cli_recursive_walk (vlib_cli_walk_args_t * aa)
1690{
1691 vlib_cli_command_t *parent;
1692 vlib_cli_sub_command_t *sub;
1693 vlib_cli_walk_args_t _a, *a = &_a;
1694 vlib_cli_main_t *cm;
1695 int i;
1696
1697 /* Copy args into this stack frame */
1698 *a = *aa;
1699 cm = a->cm;
1700
1701 parent = vec_elt_at_index (cm->commands, a->parent_command_index);
1702
1703 if (parent->function)
1704 {
1705 if (((a->show_mp_safe && parent->is_mp_safe)
1706 || (a->show_not_mp_safe && !parent->is_mp_safe))
1707 && (a->show_hit == 0 || parent->hit_counter))
1708 {
1709 vec_add1 (cm->sort_vector, a->parent_command_index);
1710 }
1711
1712 if (a->clear_hit)
1713 parent->hit_counter = 0;
1714 }
1715
1716 for (i = 0; i < vec_len (parent->sub_commands); i++)
1717 {
1718 sub = vec_elt_at_index (parent->sub_commands, i);
1719 a->parent_command_index = sub->index;
1720 cli_recursive_walk (a);
1721 }
1722}
1723
1724static u8 *
1725format_mp_safe (u8 * s, va_list * args)
1726{
1727 vlib_cli_main_t *cm = va_arg (*args, vlib_cli_main_t *);
1728 int show_mp_safe = va_arg (*args, int);
1729 int show_not_mp_safe = va_arg (*args, int);
1730 int show_hit = va_arg (*args, int);
1731 int clear_hit = va_arg (*args, int);
1732 vlib_cli_command_t *c;
1733 vlib_cli_walk_args_t _a, *a = &_a;
1734 int i;
1735 char *format_string = "\n%v";
1736
1737 if (show_hit)
1738 format_string = "\n%v: %u";
1739
1740 vec_reset_length (cm->sort_vector);
1741
1742 a->cm = cm;
1743 a->parent_command_index = 0;
1744 a->show_mp_safe = show_mp_safe;
1745 a->show_not_mp_safe = show_not_mp_safe;
1746 a->show_hit = show_hit;
1747 a->clear_hit = clear_hit;
1748
1749 cli_recursive_walk (a);
1750
1751 vec_sort_with_function (cm->sort_vector, sort_cmds_by_path);
1752
1753 for (i = 0; i < vec_len (cm->sort_vector); i++)
1754 {
1755 c = vec_elt_at_index (cm->commands, cm->sort_vector[i]);
1756 s = format (s, format_string, c->path, c->hit_counter);
1757 }
1758
1759 return s;
1760}
1761
1762
1763static clib_error_t *
1764show_cli_command_fn (vlib_main_t * vm,
1765 unformat_input_t * input, vlib_cli_command_t * cmd)
1766{
Damjan Marionfd8deb42021-03-06 12:26:28 +01001767 vlib_global_main_t *vgm = vlib_get_global_main ();
Dave Baracha1f5a952019-11-01 11:24:43 -04001768 int show_mp_safe = 0;
1769 int show_not_mp_safe = 0;
1770 int show_hit = 0;
1771 int clear_hit = 0;
1772
1773 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
1774 {
1775 if (unformat (input, "mp-safe"))
1776 show_mp_safe = 1;
1777 if (unformat (input, "not-mp-safe"))
1778 show_not_mp_safe = 1;
1779 else if (unformat (input, "hit"))
1780 show_hit = 1;
1781 else if (unformat (input, "clear-hit"))
1782 clear_hit = 1;
1783 else
1784 break;
1785 }
1786
1787 /* default set: all cli commands */
1788 if (clear_hit == 0 && (show_mp_safe + show_not_mp_safe) == 0)
1789 show_mp_safe = show_not_mp_safe = 1;
1790
Damjan Marionfd8deb42021-03-06 12:26:28 +01001791 vlib_cli_output (vm, "%U", format_mp_safe, &vgm->cli_main, show_mp_safe,
1792 show_not_mp_safe, show_hit, clear_hit);
Dave Baracha1f5a952019-11-01 11:24:43 -04001793 if (clear_hit)
1794 vlib_cli_output (vm, "hit counters cleared...");
1795
1796 return 0;
1797}
1798
1799/*?
1800 * Displays debug cli command information
1801 *
1802 * @cliexpar
1803 * @cliexstart{show cli [mp-safe][not-mp-safe][hit][clear-hit]}
1804 *
1805 * "show cli" displays the entire debug cli:
1806 *
1807 * abf attach
1808 * abf policy
1809 * adjacency counters
1810 * api trace
1811 * app ns
1812 * bfd key del
1813 * ... and so on ...
1814 *
1815 * "show cli mp-safe" displays mp-safe debug CLI commands:
1816 *
1817 * abf policy
1818 * binary-api
1819 * create vhost-user
1820 * exec
1821 * ip container
1822 * ip mroute
1823 * ip probe-neighbor
1824 * ip route
1825 * ip scan-neighbor
1826 * ip table
1827 * ip6 table
1828 *
1829 * "show cli not-mp-safe" displays debug CLI commands
1830 * which cause worker thread barrier synchronization
1831 *
1832 * "show cli hit" displays commands which have been executed. Qualify
1833 * as desired with "mp-safe" or "not-mp-safe".
1834 *
1835 * "show cli clear-hit" clears the per-command hit counters.
1836 * @cliexend
1837?*/
1838
Dave Baracha1f5a952019-11-01 11:24:43 -04001839VLIB_CLI_COMMAND (show_cli_command, static) =
1840{
1841 .path = "show cli",
1842 .short_help = "show cli [mp-safe][not-mp-safe][hit][clear-hit]",
1843 .function = show_cli_command_fn,
1844 .is_mp_safe = 1,
Dave Barachc4abafd2019-09-04 12:09:32 -04001845};
Dave Barachc4abafd2019-09-04 12:09:32 -04001846
1847static clib_error_t *
Dave Barach9b8ffd92016-07-08 08:13:45 -04001848vlib_cli_init (vlib_main_t * vm)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001849{
Damjan Marionfd8deb42021-03-06 12:26:28 +01001850 vlib_global_main_t *vgm = vlib_get_global_main ();
1851 vlib_cli_main_t *cm = &vgm->cli_main;
Dave Barach9b8ffd92016-07-08 08:13:45 -04001852 clib_error_t *error = 0;
1853 vlib_cli_command_t *cmd;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001854
1855 cmd = cm->cli_command_registrations;
1856
1857 while (cmd)
1858 {
1859 error = vlib_cli_register (vm, cmd);
1860 if (error)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001861 return error;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001862 cmd = cmd->next_cli_command;
1863 }
Dave Barach3d0e0d12021-02-17 10:25:18 -05001864
1865 cm->log = vlib_log_register_class_rate_limit (
1866 "cli", "log", 0x7FFFFFFF /* aka no rate limit */);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001867 return error;
1868}
1869
1870VLIB_INIT_FUNCTION (vlib_cli_init);
Dave Barach9b8ffd92016-07-08 08:13:45 -04001871
1872/*
1873 * fd.io coding-style-patch-verification: ON
1874 *
1875 * Local Variables:
1876 * eval: (c-set-style "gnu")
1877 * End:
1878 */