blob: 835cb87d13d5cdbf1997c3a94926341cc7bfbb69 [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>
Chris Luke6edd3602018-06-12 22:45:06 -040041#include <vlib/unix/unix.h>
Damjan Marioneccf5092016-11-18 16:59:24 +010042#include <vppinfra/cpu.h>
Dave Barachc3a06552018-10-01 09:25:32 -040043#include <vppinfra/elog.h>
Damjan Marione5ef1d72017-03-02 12:33:48 +010044#include <unistd.h>
Yoann Desmouceaux3060e072017-05-18 11:00:48 +020045#include <ctype.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070046
47/* Root of all show commands. */
Dave Barach9b8ffd92016-07-08 08:13:45 -040048/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -070049VLIB_CLI_COMMAND (vlib_cli_show_command, static) = {
50 .path = "show",
51 .short_help = "Show commands",
52};
Dave Barach9b8ffd92016-07-08 08:13:45 -040053/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -070054
55/* Root of all clear commands. */
Dave Barach9b8ffd92016-07-08 08:13:45 -040056/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -070057VLIB_CLI_COMMAND (vlib_cli_clear_command, static) = {
58 .path = "clear",
59 .short_help = "Clear commands",
60};
Dave Barach9b8ffd92016-07-08 08:13:45 -040061/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -070062
63/* Root of all set commands. */
Dave Barach9b8ffd92016-07-08 08:13:45 -040064/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -070065VLIB_CLI_COMMAND (vlib_cli_set_command, static) = {
66 .path = "set",
67 .short_help = "Set commands",
68};
Dave Barach9b8ffd92016-07-08 08:13:45 -040069/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -070070
71/* Root of all test commands. */
Dave Barach9b8ffd92016-07-08 08:13:45 -040072/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -070073VLIB_CLI_COMMAND (vlib_cli_test_command, static) = {
74 .path = "test",
75 .short_help = "Test commands",
76};
Dave Barach9b8ffd92016-07-08 08:13:45 -040077/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -070078
79/* Returns bitmap of commands which match key. */
80static uword *
81vlib_cli_sub_command_match (vlib_cli_command_t * c, unformat_input_t * input)
82{
83 int i, n;
Dave Barach9b8ffd92016-07-08 08:13:45 -040084 uword *match = 0;
85 vlib_cli_parse_position_t *p;
Ed Warnickecb9cada2015-12-08 15:45:58 -070086
87 unformat_skip_white_space (input);
88
Dave Barach9b8ffd92016-07-08 08:13:45 -040089 for (i = 0;; i++)
Ed Warnickecb9cada2015-12-08 15:45:58 -070090 {
91 uword k;
92
93 k = unformat_get_input (input);
94 switch (k)
95 {
96 case 'a' ... 'z':
97 case 'A' ... 'Z':
98 case '0' ... '9':
Dave Barach9b8ffd92016-07-08 08:13:45 -040099 case '-':
100 case '_':
Ed Warnickecb9cada2015-12-08 15:45:58 -0700101 break;
102
Dave Barach9b8ffd92016-07-08 08:13:45 -0400103 case ' ':
104 case '\t':
105 case '\r':
106 case '\n':
Ed Warnickecb9cada2015-12-08 15:45:58 -0700107 case UNFORMAT_END_OF_INPUT:
108 /* White space or end of input removes any non-white
109 matches that were before possible. */
110 if (i < vec_len (c->sub_command_positions)
111 && clib_bitmap_count_set_bits (match) > 1)
112 {
113 p = vec_elt_at_index (c->sub_command_positions, i);
114 for (n = 0; n < vec_len (p->bitmaps); n++)
115 match = clib_bitmap_andnot (match, p->bitmaps[n]);
116 }
117 goto done;
118
119 default:
120 unformat_put_input (input);
121 goto done;
122 }
123
124 if (i >= vec_len (c->sub_command_positions))
125 {
126 no_match:
127 clib_bitmap_free (match);
128 return 0;
129 }
130
131 p = vec_elt_at_index (c->sub_command_positions, i);
132 if (vec_len (p->bitmaps) == 0)
133 goto no_match;
134
135 n = k - p->min_char;
136 if (n < 0 || n >= vec_len (p->bitmaps))
137 goto no_match;
138
139 if (i == 0)
140 match = clib_bitmap_dup (p->bitmaps[n]);
141 else
142 match = clib_bitmap_and (match, p->bitmaps[n]);
143
144 if (clib_bitmap_is_zero (match))
145 goto no_match;
146 }
147
Dave Barach9b8ffd92016-07-08 08:13:45 -0400148done:
Ed Warnickecb9cada2015-12-08 15:45:58 -0700149 return match;
150}
151
152/* Looks for string based sub-input formatted { SUB-INPUT }. */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400153uword
154unformat_vlib_cli_sub_input (unformat_input_t * i, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700155{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400156 unformat_input_t *sub_input = va_arg (*args, unformat_input_t *);
157 u8 *s;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700158 uword c;
159
160 while (1)
161 {
162 c = unformat_get_input (i);
163 switch (c)
164 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400165 case ' ':
166 case '\t':
167 case '\n':
168 case '\r':
Ed Warnickecb9cada2015-12-08 15:45:58 -0700169 case '\f':
170 break;
171
172 case '{':
173 default:
174 /* Put back paren. */
175 if (c != UNFORMAT_END_OF_INPUT)
176 unformat_put_input (i);
177
178 if (c == '{' && unformat (i, "%v", &s))
179 {
180 unformat_init_vector (sub_input, s);
181 return 1;
182 }
183 return 0;
184 }
185 }
186 return 0;
187}
188
189static vlib_cli_command_t *
190get_sub_command (vlib_cli_main_t * cm, vlib_cli_command_t * parent, u32 si)
191{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400192 vlib_cli_sub_command_t *s = vec_elt_at_index (parent->sub_commands, si);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700193 return vec_elt_at_index (cm->commands, s->index);
194}
195
Dave Barach9b8ffd92016-07-08 08:13:45 -0400196static uword
197unformat_vlib_cli_sub_command (unformat_input_t * i, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700198{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400199 vlib_main_t *vm = va_arg (*args, vlib_main_t *);
200 vlib_cli_command_t *c = va_arg (*args, vlib_cli_command_t *);
201 vlib_cli_command_t **result = va_arg (*args, vlib_cli_command_t **);
202 vlib_cli_main_t *cm = &vm->cli_main;
203 uword *match_bitmap, is_unique, index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700204
205 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400206 vlib_cli_sub_rule_t *sr;
207 vlib_cli_parse_rule_t *r;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700208 vec_foreach (sr, c->sub_rules)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400209 {
210 void **d;
211 r = vec_elt_at_index (cm->parse_rules, sr->rule_index);
212 vec_add2 (cm->parse_rule_data, d, 1);
213 vec_reset_length (d[0]);
214 if (r->data_size)
215 d[0] = _vec_resize (d[0],
216 /* length increment */ 1,
217 r->data_size,
218 /* header_bytes */ 0,
219 /* data align */ sizeof (uword));
220 if (unformat_user (i, r->unformat_function, vm, d[0]))
221 {
222 *result = vec_elt_at_index (cm->commands, sr->command_index);
223 return 1;
224 }
225 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700226 }
227
228 match_bitmap = vlib_cli_sub_command_match (c, i);
229 is_unique = clib_bitmap_count_set_bits (match_bitmap) == 1;
230 index = ~0;
231 if (is_unique)
232 {
233 index = clib_bitmap_first_set (match_bitmap);
234 *result = get_sub_command (cm, c, index);
235 }
236 clib_bitmap_free (match_bitmap);
237
238 return is_unique;
239}
240
Yoann Desmouceaux3060e072017-05-18 11:00:48 +0200241static int
242vlib_cli_cmp_strings (void *a1, void *a2)
243{
244 u8 *c1 = *(u8 **) a1;
245 u8 *c2 = *(u8 **) a2;
246
247 return vec_cmp (c1, c2);
248}
249
250u8 **
251vlib_cli_get_possible_completions (u8 * str)
252{
253 vlib_cli_command_t *c;
254 vlib_cli_sub_command_t *sc;
255 vlib_main_t *vm = vlib_get_main ();
256 vlib_cli_main_t *vcm = &vm->cli_main;
257 uword *match_bitmap = 0;
258 uword index, is_unique, help_next_level;
259 u8 **result = 0;
260 unformat_input_t input;
261 unformat_init_vector (&input, vec_dup (str));
262 c = vec_elt_at_index (vcm->commands, 0);
263
264 /* remove trailing whitespace, except for one of them */
265 while (vec_len (input.buffer) >= 2 &&
266 isspace (input.buffer[vec_len (input.buffer) - 1]) &&
267 isspace (input.buffer[vec_len (input.buffer) - 2]))
268 {
269 vec_del1 (input.buffer, vec_len (input.buffer) - 1);
270 }
271
272 /* if input is empty, directly return list of root commands */
273 if (vec_len (input.buffer) == 0 ||
274 (vec_len (input.buffer) == 1 && isspace (input.buffer[0])))
275 {
276 vec_foreach (sc, c->sub_commands)
277 {
278 vec_add1 (result, (u8 *) sc->name);
279 }
280 goto done;
281 }
282
283 /* add a trailing '?' so that vlib_cli_sub_command_match can find
284 * all commands starting with the input string */
285 vec_add1 (input.buffer, '?');
286
287 while (1)
288 {
289 match_bitmap = vlib_cli_sub_command_match (c, &input);
290 /* no match: return no result */
291 if (match_bitmap == 0)
292 {
293 goto done;
294 }
295 is_unique = clib_bitmap_count_set_bits (match_bitmap) == 1;
296 /* unique match: try to step one subcommand level further */
297 if (is_unique)
298 {
299 /* stop if no more input */
300 if (input.index >= vec_len (input.buffer) - 1)
301 {
302 break;
303 }
304
305 index = clib_bitmap_first_set (match_bitmap);
306 c = get_sub_command (vcm, c, index);
307 clib_bitmap_free (match_bitmap);
308 continue;
309 }
310 /* multiple matches: stop here, return all matches */
311 break;
312 }
313
314 /* remove trailing '?' */
315 vec_del1 (input.buffer, vec_len (input.buffer) - 1);
316
317 /* if we have a space at the end of input, and a unique match,
318 * autocomplete the next level of subcommands */
319 help_next_level = (vec_len (str) == 0) || isspace (str[vec_len (str) - 1]);
320 /* *INDENT-OFF* */
321 clib_bitmap_foreach(index, match_bitmap, {
322 if (help_next_level && is_unique) {
323 c = get_sub_command (vcm, c, index);
324 vec_foreach (sc, c->sub_commands) {
325 vec_add1 (result, (u8*) sc->name);
326 }
327 goto done; /* break doesn't work in this macro-loop */
328 }
329 sc = &c->sub_commands[index];
330 vec_add1(result, (u8*) sc->name);
331 });
332 /* *INDENT-ON* */
333
334done:
335 clib_bitmap_free (match_bitmap);
336 unformat_free (&input);
337
Yoann Desmouceaux4227eef2017-05-24 15:51:48 +0200338 if (result)
339 vec_sort_with_function (result, vlib_cli_cmp_strings);
Yoann Desmouceaux3060e072017-05-18 11:00:48 +0200340 return result;
341}
342
Dave Barach9b8ffd92016-07-08 08:13:45 -0400343static u8 *
344format_vlib_cli_command_help (u8 * s, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700345{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400346 vlib_cli_command_t *c = va_arg (*args, vlib_cli_command_t *);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700347 int is_long = va_arg (*args, int);
348 if (is_long && c->long_help)
349 s = format (s, "%s", c->long_help);
350 else if (c->short_help)
351 s = format (s, "%s", c->short_help);
352 else
353 s = format (s, "%v commands", c->path);
354 return s;
355}
356
Dave Barach9b8ffd92016-07-08 08:13:45 -0400357static u8 *
358format_vlib_cli_parse_rule_name (u8 * s, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700359{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400360 vlib_cli_parse_rule_t *r = va_arg (*args, vlib_cli_parse_rule_t *);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700361 return format (s, "<%U>", format_c_identifier, r->name);
362}
363
Dave Barach9b8ffd92016-07-08 08:13:45 -0400364static u8 *
365format_vlib_cli_path (u8 * s, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700366{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400367 u8 *path = va_arg (*args, u8 *);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700368 int i, in_rule;
369 in_rule = 0;
370 for (i = 0; i < vec_len (path); i++)
371 {
372 switch (path[i])
373 {
374 case '%':
375 in_rule = 1;
376 vec_add1 (s, '<'); /* start of <RULE> */
377 break;
378
379 case '_':
380 /* _ -> space in rules. */
381 vec_add1 (s, in_rule ? ' ' : '_');
382 break;
383
384 case ' ':
385 if (in_rule)
386 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400387 vec_add1 (s, '>'); /* end of <RULE> */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700388 in_rule = 0;
389 }
390 vec_add1 (s, ' ');
391 break;
392
393 default:
394 vec_add1 (s, path[i]);
395 break;
396 }
397 }
398
399 if (in_rule)
400 vec_add1 (s, '>'); /* terminate <RULE> */
401
402 return s;
403}
404
405static vlib_cli_command_t *
Dave Barach9b8ffd92016-07-08 08:13:45 -0400406all_subs (vlib_cli_main_t * cm, vlib_cli_command_t * subs, u32 command_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700407{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400408 vlib_cli_command_t *c = vec_elt_at_index (cm->commands, command_index);
409 vlib_cli_sub_command_t *sc;
410 vlib_cli_sub_rule_t *sr;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700411
412 if (c->function)
413 vec_add1 (subs, c[0]);
414
415 vec_foreach (sr, c->sub_rules)
416 subs = all_subs (cm, subs, sr->command_index);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400417 vec_foreach (sc, c->sub_commands) subs = all_subs (cm, subs, sc->index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700418
419 return subs;
420}
421
Matus Fabiand2dc3df2015-12-14 10:31:33 -0500422static int
Dave Barach9b8ffd92016-07-08 08:13:45 -0400423vlib_cli_cmp_rule (void *a1, void *a2)
Matus Fabiand2dc3df2015-12-14 10:31:33 -0500424{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400425 vlib_cli_sub_rule_t *r1 = a1;
426 vlib_cli_sub_rule_t *r2 = a2;
Matus Fabiand2dc3df2015-12-14 10:31:33 -0500427
428 return vec_cmp (r1->name, r2->name);
429}
430
431static int
Dave Barach9b8ffd92016-07-08 08:13:45 -0400432vlib_cli_cmp_command (void *a1, void *a2)
Matus Fabiand2dc3df2015-12-14 10:31:33 -0500433{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400434 vlib_cli_command_t *c1 = a1;
435 vlib_cli_command_t *c2 = a2;
Matus Fabiand2dc3df2015-12-14 10:31:33 -0500436
437 return vec_cmp (c1->path, c2->path);
438}
439
Ed Warnickecb9cada2015-12-08 15:45:58 -0700440static clib_error_t *
441vlib_cli_dispatch_sub_commands (vlib_main_t * vm,
442 vlib_cli_main_t * cm,
443 unformat_input_t * input,
444 uword parent_command_index)
445{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400446 vlib_cli_command_t *parent, *c;
447 clib_error_t *error = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700448 unformat_input_t sub_input;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400449 u8 *string;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700450 uword is_main_dispatch = cm == &vm->cli_main;
451
452 parent = vec_elt_at_index (cm->commands, parent_command_index);
453 if (is_main_dispatch && unformat (input, "help"))
454 {
455 uword help_at_end_of_line, i;
456
Dave Barach9b8ffd92016-07-08 08:13:45 -0400457 help_at_end_of_line =
458 unformat_check_input (input) == UNFORMAT_END_OF_INPUT;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700459 while (1)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400460 {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700461 c = parent;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400462 if (unformat_user
463 (input, unformat_vlib_cli_sub_command, vm, c, &parent))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700464 ;
465
Dave Barach9b8ffd92016-07-08 08:13:45 -0400466 else if (!(unformat_check_input (input) == UNFORMAT_END_OF_INPUT))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700467 goto unknown;
468
469 else
470 break;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400471 }
472
Ed Warnickecb9cada2015-12-08 15:45:58 -0700473 /* help SUB-COMMAND => long format help.
Dave Barach9b8ffd92016-07-08 08:13:45 -0400474 "help" at end of line: show all commands. */
475 if (!help_at_end_of_line)
476 vlib_cli_output (vm, "%U", format_vlib_cli_command_help, c,
477 /* is_long */ 1);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700478
479 else if (vec_len (c->sub_commands) + vec_len (c->sub_rules) == 0)
480 vlib_cli_output (vm, "%v: no sub-commands", c->path);
481
482 else
483 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400484 vlib_cli_sub_command_t *sc;
485 vlib_cli_sub_rule_t *sr, *subs;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700486
487 subs = vec_dup (c->sub_rules);
488
489 /* Add in rules if any. */
490 vec_foreach (sc, c->sub_commands)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400491 {
492 vec_add2 (subs, sr, 1);
493 sr->name = sc->name;
494 sr->command_index = sc->index;
495 sr->rule_index = ~0;
496 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700497
Matus Fabiand2dc3df2015-12-14 10:31:33 -0500498 vec_sort_with_function (subs, vlib_cli_cmp_rule);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700499
Dave Barach9b8ffd92016-07-08 08:13:45 -0400500 for (i = 0; i < vec_len (subs); i++)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700501 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400502 vlib_cli_command_t *d;
503 vlib_cli_parse_rule_t *r;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700504
505 d = vec_elt_at_index (cm->commands, subs[i].command_index);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400506 r =
507 subs[i].rule_index != ~0 ? vec_elt_at_index (cm->parse_rules,
508 subs
509 [i].rule_index) :
510 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700511
512 if (r)
513 vlib_cli_output
514 (vm, " %-30U %U",
515 format_vlib_cli_parse_rule_name, r,
516 format_vlib_cli_command_help, d, /* is_long */ 0);
517 else
518 vlib_cli_output
519 (vm, " %-30v %U",
520 subs[i].name,
521 format_vlib_cli_command_help, d, /* is_long */ 0);
522 }
523
524 vec_free (subs);
525 }
526 }
Dave Barach9b8ffd92016-07-08 08:13:45 -0400527
528 else if (is_main_dispatch
529 && (unformat (input, "choices") || unformat (input, "?")))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700530 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400531 vlib_cli_command_t *sub, *subs;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700532
533 subs = all_subs (cm, 0, parent_command_index);
Matus Fabiand2dc3df2015-12-14 10:31:33 -0500534 vec_sort_with_function (subs, vlib_cli_cmp_command);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700535 vec_foreach (sub, subs)
536 vlib_cli_output (vm, " %-40U %U",
537 format_vlib_cli_path, sub->path,
538 format_vlib_cli_command_help, sub, /* is_long */ 0);
539 vec_free (subs);
540 }
541
542 else if (unformat (input, "comment %v", &string))
543 {
544 vec_free (string);
545 }
Dave Barach9b8ffd92016-07-08 08:13:45 -0400546
Ed Warnickecb9cada2015-12-08 15:45:58 -0700547 else if (unformat (input, "uncomment %U",
548 unformat_vlib_cli_sub_input, &sub_input))
549 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400550 error =
551 vlib_cli_dispatch_sub_commands (vm, cm, &sub_input,
552 parent_command_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700553 unformat_free (&sub_input);
554 }
Dave Barach9b8ffd92016-07-08 08:13:45 -0400555
556 else
557 if (unformat_user (input, unformat_vlib_cli_sub_command, vm, parent, &c))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700558 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400559 unformat_input_t *si;
560 uword has_sub_commands =
561 vec_len (c->sub_commands) + vec_len (c->sub_rules) > 0;
562
Ed Warnickecb9cada2015-12-08 15:45:58 -0700563 si = input;
564 if (unformat_user (input, unformat_vlib_cli_sub_input, &sub_input))
565 si = &sub_input;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400566
Ed Warnickecb9cada2015-12-08 15:45:58 -0700567 if (has_sub_commands)
568 error = vlib_cli_dispatch_sub_commands (vm, cm, si, c - cm->commands);
569
Dave Barach9b8ffd92016-07-08 08:13:45 -0400570 if (has_sub_commands && !error)
571 /* Found valid sub-command. */ ;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700572
573 else if (c->function)
574 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400575 clib_error_t *c_error;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700576
577 /* Skip white space for benefit of called function. */
578 unformat_skip_white_space (si);
579
580 if (unformat (si, "?"))
581 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400582 vlib_cli_output (vm, " %-40U %U", format_vlib_cli_path, c->path, format_vlib_cli_command_help, c, /* is_long */
583 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700584 }
585 else
586 {
Dave Barachc3a06552018-10-01 09:25:32 -0400587 if (PREDICT_FALSE (vm->elog_trace_cli_commands))
588 {
589 /* *INDENT-OFF* */
590 ELOG_TYPE_DECLARE (e) =
591 {
592 .format = "cli-cmd: %s",
593 .format_args = "T4",
594 };
595 /* *INDENT-ON* */
596 struct
597 {
598 u32 c;
599 } *ed;
600 ed = ELOG_DATA (&vm->elog_main, e);
601 ed->c = elog_global_id_for_msg_name (c->path);
602 }
603
Dave Barach9b8ffd92016-07-08 08:13:45 -0400604 if (!c->is_mp_safe)
605 vlib_worker_thread_barrier_sync (vm);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700606
607 c_error = c->function (vm, si, c);
608
Dave Barach9b8ffd92016-07-08 08:13:45 -0400609 if (!c->is_mp_safe)
610 vlib_worker_thread_barrier_release (vm);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700611
Dave Barachc3a06552018-10-01 09:25:32 -0400612 if (PREDICT_FALSE (vm->elog_trace_cli_commands))
613 {
614 /* *INDENT-OFF* */
615 ELOG_TYPE_DECLARE (e) =
616 {
617 .format = "cli-cmd: %s %s",
618 .format_args = "T4T4",
619 };
620 /* *INDENT-ON* */
621 struct
622 {
623 u32 c, err;
624 } *ed;
625 ed = ELOG_DATA (&vm->elog_main, e);
626 ed->c = elog_global_id_for_msg_name (c->path);
627 if (c_error)
628 {
629 vec_add1 (c_error->what, 0);
630 ed->err = elog_global_id_for_msg_name
631 ((const char *) c_error->what);
632 _vec_len (c_error->what) -= 1;
633 }
634 else
635 ed->err = elog_global_id_for_msg_name ("OK");
636 }
637
Ed Warnickecb9cada2015-12-08 15:45:58 -0700638 if (c_error)
639 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400640 error =
641 clib_error_return (0, "%v: %v", c->path, c_error->what);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700642 clib_error_free (c_error);
643 /* Free sub input. */
644 if (si != input)
645 unformat_free (si);
646
647 return error;
648 }
649 }
650
651 /* Free any previous error. */
652 clib_error_free (error);
653 }
654
Dave Barach9b8ffd92016-07-08 08:13:45 -0400655 else if (!error)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700656 error = clib_error_return (0, "%v: no sub-commands", c->path);
657
658 /* Free sub input. */
659 if (si != input)
660 unformat_free (si);
661 }
662
663 else
664 goto unknown;
665
666 return error;
667
Dave Barach9b8ffd92016-07-08 08:13:45 -0400668unknown:
Ed Warnickecb9cada2015-12-08 15:45:58 -0700669 if (parent->path)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400670 return clib_error_return (0, "%v: unknown input `%U'", parent->path,
671 format_unformat_error, input);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700672 else
Dave Barach9b8ffd92016-07-08 08:13:45 -0400673 return clib_error_return (0, "unknown input `%U'", format_unformat_error,
674 input);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700675}
676
677
Dave Barach9b8ffd92016-07-08 08:13:45 -0400678void vlib_unix_error_report (vlib_main_t *, clib_error_t *)
679 __attribute__ ((weak));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700680
Dave Barach9b8ffd92016-07-08 08:13:45 -0400681void
682vlib_unix_error_report (vlib_main_t * vm, clib_error_t * error)
683{
684}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700685
686/* Process CLI input. */
Ole Troan72d87582019-05-10 12:01:10 +0200687int
Dave Barach9b8ffd92016-07-08 08:13:45 -0400688vlib_cli_input (vlib_main_t * vm,
689 unformat_input_t * input,
690 vlib_cli_output_function_t * function, uword function_arg)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700691{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400692 vlib_process_t *cp = vlib_get_current_process (vm);
693 vlib_cli_main_t *cm = &vm->cli_main;
694 clib_error_t *error;
695 vlib_cli_output_function_t *save_function;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700696 uword save_function_arg;
Ole Troan72d87582019-05-10 12:01:10 +0200697 int rv = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700698
Andrew Yourtchenko716d9592016-05-10 10:51:34 +0000699 save_function = cp->output_function;
700 save_function_arg = cp->output_function_arg;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700701
Andrew Yourtchenko716d9592016-05-10 10:51:34 +0000702 cp->output_function = function;
703 cp->output_function_arg = function_arg;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700704
Dave Barach9b8ffd92016-07-08 08:13:45 -0400705 do
706 {
707 vec_reset_length (cm->parse_rule_data);
708 error = vlib_cli_dispatch_sub_commands (vm, &vm->cli_main, input, /* parent */
709 0);
710 }
711 while (!error && !unformat (input, "%U", unformat_eof));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700712
713 if (error)
714 {
715 vlib_cli_output (vm, "%v", error->what);
716 vlib_unix_error_report (vm, error);
Ole Troan72d87582019-05-10 12:01:10 +0200717 /* clib_error_return is unfortunately often called with a '0'
718 return code */
719 rv = error->code != 0 ? error->code : -1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700720 clib_error_free (error);
721 }
722
Andrew Yourtchenko716d9592016-05-10 10:51:34 +0000723 cp->output_function = save_function;
724 cp->output_function_arg = save_function_arg;
Ole Troan72d87582019-05-10 12:01:10 +0200725 return rv;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700726}
727
728/* Output to current CLI connection. */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400729void
730vlib_cli_output (vlib_main_t * vm, char *fmt, ...)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700731{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400732 vlib_process_t *cp = vlib_get_current_process (vm);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700733 va_list va;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400734 u8 *s;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700735
736 va_start (va, fmt);
737 s = va_format (0, fmt, &va);
738 va_end (va);
739
740 /* Terminate with \n if not present. */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400741 if (vec_len (s) > 0 && s[vec_len (s) - 1] != '\n')
Ed Warnickecb9cada2015-12-08 15:45:58 -0700742 vec_add1 (s, '\n');
743
Dave Barach9b8ffd92016-07-08 08:13:45 -0400744 if ((!cp) || (!cp->output_function))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700745 fformat (stdout, "%v", s);
746 else
Andrew Yourtchenko716d9592016-05-10 10:51:34 +0000747 cp->output_function (cp->output_function_arg, s, vec_len (s));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700748
749 vec_free (s);
750}
751
Ole Troan73710c72018-06-04 22:27:49 +0200752void *vl_msg_push_heap (void) __attribute__ ((weak));
753void vl_msg_pop_heap (void *oldheap) __attribute__ ((weak));
754
Ed Warnickecb9cada2015-12-08 15:45:58 -0700755static clib_error_t *
756show_memory_usage (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400757 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700758{
Dave Barach6a5adc32018-07-04 10:56:23 -0400759 int verbose __attribute__ ((unused)) = 0, api_segment = 0;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400760 clib_error_t *error;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700761 u32 index = 0;
762
Dave Barach9b8ffd92016-07-08 08:13:45 -0400763 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700764 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400765 if (unformat (input, "verbose"))
766 verbose = 1;
Ole Troan73710c72018-06-04 22:27:49 +0200767 else if (unformat (input, "api-segment"))
768 api_segment = 1;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400769 else
770 {
771 error = clib_error_return (0, "unknown input `%U'",
772 format_unformat_error, input);
773 return error;
774 }
775 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700776
Ole Troan73710c72018-06-04 22:27:49 +0200777 if (api_segment)
778 {
779 void *oldheap = vl_msg_push_heap ();
780 u8 *s_in_svm =
781 format (0, "%U\n", format_mheap, clib_mem_get_heap (), 1);
782 vl_msg_pop_heap (oldheap);
783 u8 *s = vec_dup (s_in_svm);
784
785 oldheap = vl_msg_push_heap ();
786 vec_free (s_in_svm);
787 vl_msg_pop_heap (oldheap);
788 vlib_cli_output (vm, "API segment start:");
789 vlib_cli_output (vm, "%v", s);
790 vlib_cli_output (vm, "API segment end:");
791 vec_free (s);
792 }
793
Dave Barach6a5adc32018-07-04 10:56:23 -0400794#if USE_DLMALLOC == 0
Dave Barach9b8ffd92016-07-08 08:13:45 -0400795 /* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700796 foreach_vlib_main (
797 ({
Damjan Marion926b5642018-07-02 21:33:31 +0200798 mheap_t *h = mheap_header (clib_per_cpu_mheaps[index]);
Dave Barach6a5adc32018-07-04 10:56:23 -0400799 vlib_cli_output (vm, "%sThread %d %s\n", index ? "\n":"", index,
Damjan Marion926b5642018-07-02 21:33:31 +0200800 vlib_worker_threads[index].name);
801 vlib_cli_output (vm, " %U\n", format_page_map, pointer_to_uword (h) -
802 h->vm_alloc_offset_from_header,
803 h->vm_alloc_size);
Dave Barach6a5adc32018-07-04 10:56:23 -0400804 vlib_cli_output (vm, " %U\n", format_mheap, clib_per_cpu_mheaps[index],
805 verbose);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700806 index++;
807 }));
Dave Barach9b8ffd92016-07-08 08:13:45 -0400808 /* *INDENT-ON* */
Dave Barach6a5adc32018-07-04 10:56:23 -0400809#else
810 {
811 uword clib_mem_trace_enable_disable (uword enable);
812 uword was_enabled;
813
814 /*
815 * Note: the foreach_vlib_main cause allocator traffic,
816 * so shut off tracing before we go there...
817 */
818 was_enabled = clib_mem_trace_enable_disable (0);
819
820 /* *INDENT-OFF* */
821 foreach_vlib_main (
822 ({
Dave Barachaf7dd5b2018-08-23 17:08:44 -0400823 struct dlmallinfo mi;
Dave Barach6a5adc32018-07-04 10:56:23 -0400824 void *mspace;
825 mspace = clib_per_cpu_mheaps[index];
826
827 mi = mspace_mallinfo (mspace);
828 vlib_cli_output (vm, "%sThread %d %s\n", index ? "\n":"", index,
829 vlib_worker_threads[index].name);
830 vlib_cli_output (vm, " %U\n", format_page_map,
831 pointer_to_uword (mspace_least_addr(mspace)),
832 mi.arena);
833 vlib_cli_output (vm, " %U\n", format_mheap, clib_per_cpu_mheaps[index],
834 verbose);
835 index++;
836 }));
837 /* *INDENT-ON* */
838
839 /* Restore the trace flag */
840 clib_mem_trace_enable_disable (was_enabled);
841 }
842#endif /* USE_DLMALLOC */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700843 return 0;
844}
845
Dave Barach9b8ffd92016-07-08 08:13:45 -0400846/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700847VLIB_CLI_COMMAND (show_memory_usage_command, static) = {
848 .path = "show memory",
Ole Troan73710c72018-06-04 22:27:49 +0200849 .short_help = "[verbose | api-segment] Show current memory usage",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700850 .function = show_memory_usage,
851};
Dave Barach9b8ffd92016-07-08 08:13:45 -0400852/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700853
854static clib_error_t *
Damjan Marioneccf5092016-11-18 16:59:24 +0100855show_cpu (vlib_main_t * vm, unformat_input_t * input,
856 vlib_cli_command_t * cmd)
857{
858#define _(a,b,c) vlib_cli_output (vm, "%-25s " b, a ":", c);
859 _("Model name", "%U", format_cpu_model_name);
Paul Vinciguerrad6897c12018-12-30 11:07:36 -0800860 _("Microarch model (family)", "%U", format_cpu_uarch);
Damjan Marioneccf5092016-11-18 16:59:24 +0100861 _("Flags", "%U", format_cpu_flags);
862 _("Base frequency", "%.2f GHz",
863 ((f64) vm->clib_time.clocks_per_second) * 1e-9);
864#undef _
865 return 0;
866}
867
868/*?
869 * Displays various information about the CPU.
870 *
871 * @cliexpar
872 * @cliexstart{show cpu}
873 * Model name: Intel(R) Xeon(R) CPU E5-2667 v4 @ 3.20GHz
874 * Microarchitecture: Broadwell (Broadwell-EP/EX)
875 * Flags: sse3 ssse3 sse41 sse42 avx avx2 aes
876 * Base Frequency: 3.20 GHz
877 * @cliexend
878?*/
879/* *INDENT-OFF* */
880VLIB_CLI_COMMAND (show_cpu_command, static) = {
881 .path = "show cpu",
882 .short_help = "Show cpu information",
883 .function = show_cpu,
884};
885
886/* *INDENT-ON* */
Ole Troan73710c72018-06-04 22:27:49 +0200887
Damjan Marioneccf5092016-11-18 16:59:24 +0100888static clib_error_t *
Ed Warnickecb9cada2015-12-08 15:45:58 -0700889enable_disable_memory_trace (vlib_main_t * vm,
890 unformat_input_t * input,
891 vlib_cli_command_t * cmd)
892{
Ole Troan73710c72018-06-04 22:27:49 +0200893 unformat_input_t _line_input, *line_input = &_line_input;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700894 int enable;
Ole Troan73710c72018-06-04 22:27:49 +0200895 int api_segment = 0;
896 void *oldheap;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700897
Ole Troan73710c72018-06-04 22:27:49 +0200898
899 if (!unformat_user (input, unformat_line_input, line_input))
900 return 0;
901
902 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700903 {
Dave Barach1ddbc012018-06-13 09:26:05 -0400904 if (unformat (line_input, "%U", unformat_vlib_enable_disable, &enable))
Ole Troan73710c72018-06-04 22:27:49 +0200905 ;
906 else if (unformat (line_input, "api-segment"))
907 api_segment = 1;
908 else
909 {
910 unformat_free (line_input);
911 return clib_error_return (0, "invalid input");
912 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700913 }
Ole Troan73710c72018-06-04 22:27:49 +0200914 unformat_free (line_input);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700915
Ole Troan73710c72018-06-04 22:27:49 +0200916 if (api_segment)
917 oldheap = vl_msg_push_heap ();
Ed Warnickecb9cada2015-12-08 15:45:58 -0700918 clib_mem_trace (enable);
Ole Troan73710c72018-06-04 22:27:49 +0200919 if (api_segment)
920 vl_msg_pop_heap (oldheap);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700921
Ole Troan73710c72018-06-04 22:27:49 +0200922 return 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700923}
924
Dave Barach9b8ffd92016-07-08 08:13:45 -0400925/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700926VLIB_CLI_COMMAND (enable_disable_memory_trace_command, static) = {
927 .path = "memory-trace",
Ole Troan73710c72018-06-04 22:27:49 +0200928 .short_help = "on|off [api-segment] Enable/disable memory allocation trace",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700929 .function = enable_disable_memory_trace,
930};
Dave Barach9b8ffd92016-07-08 08:13:45 -0400931/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700932
933
934static clib_error_t *
935test_heap_validate (vlib_main_t * vm, unformat_input_t * input,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400936 vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700937{
Dave Barach6a5adc32018-07-04 10:56:23 -0400938#if USE_DLMALLOC == 0
Dave Barach9b8ffd92016-07-08 08:13:45 -0400939 clib_error_t *error = 0;
940 void *heap;
941 mheap_t *mheap;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700942
Dave Barach9b8ffd92016-07-08 08:13:45 -0400943 if (unformat (input, "on"))
944 {
945 /* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700946 foreach_vlib_main({
Damjan Marion586afd72017-04-05 19:18:20 +0200947 heap = clib_per_cpu_mheaps[this_vlib_main->thread_index];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700948 mheap = mheap_header(heap);
949 mheap->flags |= MHEAP_FLAG_VALIDATE;
950 // Turn off small object cache because it delays detection of errors
951 mheap->flags &= ~MHEAP_FLAG_SMALL_OBJECT_CACHE;
952 });
Dave Barach9b8ffd92016-07-08 08:13:45 -0400953 /* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700954
Dave Barach9b8ffd92016-07-08 08:13:45 -0400955 }
956 else if (unformat (input, "off"))
957 {
958 /* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700959 foreach_vlib_main({
Damjan Marion586afd72017-04-05 19:18:20 +0200960 heap = clib_per_cpu_mheaps[this_vlib_main->thread_index];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700961 mheap = mheap_header(heap);
962 mheap->flags &= ~MHEAP_FLAG_VALIDATE;
963 mheap->flags |= MHEAP_FLAG_SMALL_OBJECT_CACHE;
964 });
Dave Barach9b8ffd92016-07-08 08:13:45 -0400965 /* *INDENT-ON* */
966 }
967 else if (unformat (input, "now"))
968 {
969 /* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700970 foreach_vlib_main({
Damjan Marion586afd72017-04-05 19:18:20 +0200971 heap = clib_per_cpu_mheaps[this_vlib_main->thread_index];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700972 mheap = mheap_header(heap);
973 mheap_validate(heap);
974 });
Dave Barach9b8ffd92016-07-08 08:13:45 -0400975 /* *INDENT-ON* */
976 vlib_cli_output (vm, "heap validation complete");
Ed Warnickecb9cada2015-12-08 15:45:58 -0700977
Dave Barach9b8ffd92016-07-08 08:13:45 -0400978 }
979 else
980 {
981 return clib_error_return (0, "unknown input `%U'",
982 format_unformat_error, input);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700983 }
984
Dave Barach9b8ffd92016-07-08 08:13:45 -0400985 return error;
Dave Barach6a5adc32018-07-04 10:56:23 -0400986#else
987 return clib_error_return (0, "unimplemented...");
988#endif /* USE_DLMALLOC */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700989}
990
Dave Barach9b8ffd92016-07-08 08:13:45 -0400991/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700992VLIB_CLI_COMMAND (cmd_test_heap_validate,static) = {
993 .path = "test heap-validate",
994 .short_help = "<on/off/now> validate heap on future allocs/frees or right now",
995 .function = test_heap_validate,
996};
Dave Barach9b8ffd92016-07-08 08:13:45 -0400997/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700998
Damjan Marione5ef1d72017-03-02 12:33:48 +0100999static clib_error_t *
1000restart_cmd_fn (vlib_main_t * vm, unformat_input_t * input,
1001 vlib_cli_command_t * cmd)
1002{
Chris Luke6edd3602018-06-12 22:45:06 -04001003 clib_file_main_t *fm = &file_main;
1004 clib_file_t *f;
Damjan Marione5ef1d72017-03-02 12:33:48 +01001005
Chris Luke6edd3602018-06-12 22:45:06 -04001006 /* environ(7) does not indicate a header for this */
1007 extern char **environ;
1008
1009 /* Close all known open files */
1010 /* *INDENT-OFF* */
1011 pool_foreach(f, fm->file_pool,
1012 ({
1013 if (f->file_descriptor > 2)
1014 close(f->file_descriptor);
1015 }));
1016 /* *INDENT-ON* */
1017
1018 /* Exec ourself */
1019 execve (vm->name, (char **) vm->argv, environ);
Damjan Marione5ef1d72017-03-02 12:33:48 +01001020
1021 return 0;
1022}
1023
1024/* *INDENT-OFF* */
1025VLIB_CLI_COMMAND (restart_cmd,static) = {
1026 .path = "restart",
1027 .short_help = "restart process",
1028 .function = restart_cmd_fn,
1029};
1030/* *INDENT-ON* */
1031
Andrew Yourtchenko716d9592016-05-10 10:51:34 +00001032#ifdef TEST_CODE
1033/*
1034 * A trivial test harness to verify the per-process output_function
1035 * is working correcty.
1036 */
1037
1038static clib_error_t *
1039sleep_ten_seconds (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -04001040 unformat_input_t * input, vlib_cli_command_t * cmd)
Andrew Yourtchenko716d9592016-05-10 10:51:34 +00001041{
1042 u16 i;
Dave Barach9b8ffd92016-07-08 08:13:45 -04001043 u16 my_id = rand ();
Andrew Yourtchenko716d9592016-05-10 10:51:34 +00001044
Dave Barach9b8ffd92016-07-08 08:13:45 -04001045 vlib_cli_output (vm, "Starting 10 seconds sleep with id %u\n", my_id);
Andrew Yourtchenko716d9592016-05-10 10:51:34 +00001046
Dave Barach9b8ffd92016-07-08 08:13:45 -04001047 for (i = 0; i < 10; i++)
Andrew Yourtchenko716d9592016-05-10 10:51:34 +00001048 {
Dave Barach9b8ffd92016-07-08 08:13:45 -04001049 vlib_process_wait_for_event_or_clock (vm, 1.0);
1050 vlib_cli_output (vm, "Iteration number %u, my id: %u\n", i, my_id);
Andrew Yourtchenko716d9592016-05-10 10:51:34 +00001051 }
Dave Barach9b8ffd92016-07-08 08:13:45 -04001052 vlib_cli_output (vm, "Done with sleep with id %u\n", my_id);
Andrew Yourtchenko716d9592016-05-10 10:51:34 +00001053 return 0;
1054}
1055
Dave Barach9b8ffd92016-07-08 08:13:45 -04001056/* *INDENT-OFF* */
Andrew Yourtchenko716d9592016-05-10 10:51:34 +00001057VLIB_CLI_COMMAND (ping_command, static) = {
1058 .path = "test sleep",
1059 .function = sleep_ten_seconds,
1060 .short_help = "Sleep for 10 seconds",
1061};
Dave Barach9b8ffd92016-07-08 08:13:45 -04001062/* *INDENT-ON* */
Andrew Yourtchenko716d9592016-05-10 10:51:34 +00001063#endif /* ifdef TEST_CODE */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001064
Dave Barach9b8ffd92016-07-08 08:13:45 -04001065static uword
1066vlib_cli_normalize_path (char *input, char **result)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001067{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001068 char *i = input;
1069 char *s = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001070 uword l = 0;
1071 uword index_of_last_space = ~0;
1072
1073 while (*i != 0)
1074 {
1075 u8 c = *i++;
1076 /* Multiple white space -> single space. */
1077 switch (c)
1078 {
1079 case ' ':
1080 case '\t':
1081 case '\n':
1082 case '\r':
Dave Barach9b8ffd92016-07-08 08:13:45 -04001083 if (l > 0 && s[l - 1] != ' ')
Ed Warnickecb9cada2015-12-08 15:45:58 -07001084 {
1085 vec_add1 (s, ' ');
1086 l++;
1087 }
1088 break;
1089
1090 default:
Dave Barach9b8ffd92016-07-08 08:13:45 -04001091 if (l > 0 && s[l - 1] == ' ')
Ed Warnickecb9cada2015-12-08 15:45:58 -07001092 index_of_last_space = vec_len (s);
1093 vec_add1 (s, c);
1094 l++;
1095 break;
1096 }
1097 }
1098
1099 /* Remove any extra space at end. */
Dave Barach9b8ffd92016-07-08 08:13:45 -04001100 if (l > 0 && s[l - 1] == ' ')
Ed Warnickecb9cada2015-12-08 15:45:58 -07001101 _vec_len (s) -= 1;
1102
1103 *result = s;
1104 return index_of_last_space;
1105}
1106
1107always_inline uword
Dave Barach9b8ffd92016-07-08 08:13:45 -04001108parent_path_len (char *path)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001109{
1110 word i;
1111 for (i = vec_len (path) - 1; i >= 0; i--)
1112 {
1113 if (path[i] == ' ')
1114 return i;
1115 }
1116 return ~0;
1117}
1118
Dave Barach9b8ffd92016-07-08 08:13:45 -04001119static void
1120add_sub_command (vlib_cli_main_t * cm, uword parent_index, uword child_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001121{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001122 vlib_cli_command_t *p, *c;
1123 vlib_cli_sub_command_t *sub_c;
1124 u8 *sub_name;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001125 word i, l;
1126
1127 p = vec_elt_at_index (cm->commands, parent_index);
1128 c = vec_elt_at_index (cm->commands, child_index);
1129
1130 l = parent_path_len (c->path);
1131 if (l == ~0)
1132 sub_name = vec_dup ((u8 *) c->path);
1133 else
1134 {
1135 ASSERT (l + 1 < vec_len (c->path));
1136 sub_name = 0;
1137 vec_add (sub_name, c->path + l + 1, vec_len (c->path) - (l + 1));
1138 }
1139
1140 if (sub_name[0] == '%')
1141 {
Dave Barach9b8ffd92016-07-08 08:13:45 -04001142 uword *q;
1143 vlib_cli_sub_rule_t *sr;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001144
1145 /* Remove %. */
1146 vec_delete (sub_name, 1, 0);
1147
Dave Barach9b8ffd92016-07-08 08:13:45 -04001148 if (!p->sub_rule_index_by_name)
1149 p->sub_rule_index_by_name = hash_create_vec ( /* initial length */ 32,
1150 sizeof (sub_name[0]),
1151 sizeof (uword));
Ed Warnickecb9cada2015-12-08 15:45:58 -07001152 q = hash_get_mem (p->sub_rule_index_by_name, sub_name);
1153 if (q)
1154 {
1155 sr = vec_elt_at_index (p->sub_rules, q[0]);
1156 ASSERT (sr->command_index == child_index);
1157 return;
1158 }
1159
1160 q = hash_get_mem (cm->parse_rule_index_by_name, sub_name);
Dave Barach9b8ffd92016-07-08 08:13:45 -04001161 if (!q)
Ed Warnicke853e7202016-08-12 11:42:26 -07001162 {
1163 clib_error ("reference to unknown rule `%%%v' in path `%v'",
1164 sub_name, c->path);
1165 return;
1166 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001167
Dave Barach9b8ffd92016-07-08 08:13:45 -04001168 hash_set_mem (p->sub_rule_index_by_name, sub_name,
1169 vec_len (p->sub_rules));
Ed Warnickecb9cada2015-12-08 15:45:58 -07001170 vec_add2 (p->sub_rules, sr, 1);
1171 sr->name = sub_name;
1172 sr->rule_index = q[0];
1173 sr->command_index = child_index;
1174 return;
1175 }
1176
Dave Barach9b8ffd92016-07-08 08:13:45 -04001177 if (!p->sub_command_index_by_name)
1178 p->sub_command_index_by_name = hash_create_vec ( /* initial length */ 32,
1179 sizeof (c->path[0]),
1180 sizeof (uword));
Ed Warnickecb9cada2015-12-08 15:45:58 -07001181
1182 /* Check if sub-command has already been created. */
1183 if (hash_get_mem (p->sub_command_index_by_name, sub_name))
1184 {
1185 vec_free (sub_name);
1186 return;
1187 }
1188
1189 vec_add2 (p->sub_commands, sub_c, 1);
1190 sub_c->index = child_index;
1191 sub_c->name = sub_name;
Dave Barach9b8ffd92016-07-08 08:13:45 -04001192 hash_set_mem (p->sub_command_index_by_name, sub_c->name,
1193 sub_c - p->sub_commands);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001194
1195 vec_validate (p->sub_command_positions, vec_len (sub_c->name) - 1);
1196 for (i = 0; i < vec_len (sub_c->name); i++)
1197 {
1198 int n;
Dave Barach9b8ffd92016-07-08 08:13:45 -04001199 vlib_cli_parse_position_t *pos;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001200
1201 pos = vec_elt_at_index (p->sub_command_positions, i);
1202
Dave Barach9b8ffd92016-07-08 08:13:45 -04001203 if (!pos->bitmaps)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001204 pos->min_char = sub_c->name[i];
1205
1206 n = sub_c->name[i] - pos->min_char;
1207 if (n < 0)
1208 {
1209 pos->min_char = sub_c->name[i];
1210 vec_insert (pos->bitmaps, -n, 0);
1211 n = 0;
1212 }
1213
1214 vec_validate (pos->bitmaps, n);
Dave Barach9b8ffd92016-07-08 08:13:45 -04001215 pos->bitmaps[n] =
1216 clib_bitmap_ori (pos->bitmaps[n], sub_c - p->sub_commands);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001217 }
1218}
1219
1220static void
1221vlib_cli_make_parent (vlib_cli_main_t * cm, uword ci)
1222{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001223 uword p_len, pi, *p;
1224 char *p_path;
1225 vlib_cli_command_t *c, *parent;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001226
1227 /* Root command (index 0) should have already been added. */
1228 ASSERT (vec_len (cm->commands) > 0);
1229
1230 c = vec_elt_at_index (cm->commands, ci);
1231 p_len = parent_path_len (c->path);
1232
Dave Barach9b8ffd92016-07-08 08:13:45 -04001233 /* No space? Parent is root command. */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001234 if (p_len == ~0)
1235 {
1236 add_sub_command (cm, 0, ci);
1237 return;
1238 }
1239
1240 p_path = 0;
1241 vec_add (p_path, c->path, p_len);
1242
1243 p = hash_get_mem (cm->command_index_by_path, p_path);
1244
1245 /* Parent exists? */
Dave Barach9b8ffd92016-07-08 08:13:45 -04001246 if (!p)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001247 {
1248 /* Parent does not exist; create it. */
1249 vec_add2 (cm->commands, parent, 1);
1250 parent->path = p_path;
Dave Barach9b8ffd92016-07-08 08:13:45 -04001251 hash_set_mem (cm->command_index_by_path, parent->path,
1252 parent - cm->commands);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001253 pi = parent - cm->commands;
1254 }
1255 else
1256 {
1257 pi = p[0];
1258 vec_free (p_path);
1259 }
1260
1261 add_sub_command (cm, pi, ci);
1262
1263 /* Create parent's parent. */
Dave Barach9b8ffd92016-07-08 08:13:45 -04001264 if (!p)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001265 vlib_cli_make_parent (cm, pi);
1266}
1267
1268always_inline uword
1269vlib_cli_command_is_empty (vlib_cli_command_t * c)
1270{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001271 return (c->long_help == 0 && c->short_help == 0 && c->function == 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001272}
1273
Dave Barach9b8ffd92016-07-08 08:13:45 -04001274clib_error_t *
1275vlib_cli_register (vlib_main_t * vm, vlib_cli_command_t * c)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001276{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001277 vlib_cli_main_t *cm = &vm->cli_main;
1278 clib_error_t *error = 0;
1279 uword ci, *p;
1280 char *normalized_path;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001281
1282 if ((error = vlib_call_init_function (vm, vlib_cli_init)))
1283 return error;
1284
1285 (void) vlib_cli_normalize_path (c->path, &normalized_path);
1286
Dave Barach9b8ffd92016-07-08 08:13:45 -04001287 if (!cm->command_index_by_path)
1288 cm->command_index_by_path = hash_create_vec ( /* initial length */ 32,
Ed Warnickecb9cada2015-12-08 15:45:58 -07001289 sizeof (c->path[0]),
1290 sizeof (uword));
1291
1292 /* See if command already exists with given path. */
1293 p = hash_get_mem (cm->command_index_by_path, normalized_path);
1294 if (p)
1295 {
Dave Barach9b8ffd92016-07-08 08:13:45 -04001296 vlib_cli_command_t *d;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001297
1298 ci = p[0];
1299 d = vec_elt_at_index (cm->commands, ci);
1300
1301 /* If existing command was created via vlib_cli_make_parent
Dave Barach9b8ffd92016-07-08 08:13:45 -04001302 replaced it with callers data. */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001303 if (vlib_cli_command_is_empty (d))
1304 {
1305 vlib_cli_command_t save = d[0];
1306
Dave Barach9b8ffd92016-07-08 08:13:45 -04001307 ASSERT (!vlib_cli_command_is_empty (c));
Ed Warnickecb9cada2015-12-08 15:45:58 -07001308
1309 /* Copy callers fields. */
1310 d[0] = c[0];
1311
1312 /* Save internal fields. */
1313 d->path = save.path;
1314 d->sub_commands = save.sub_commands;
1315 d->sub_command_index_by_name = save.sub_command_index_by_name;
1316 d->sub_command_positions = save.sub_command_positions;
1317 d->sub_rules = save.sub_rules;
1318 }
1319 else
Dave Barach9b8ffd92016-07-08 08:13:45 -04001320 error =
1321 clib_error_return (0, "duplicate command name with path %v",
1322 normalized_path);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001323
1324 vec_free (normalized_path);
1325 if (error)
1326 return error;
1327 }
1328 else
1329 {
1330 /* Command does not exist: create it. */
1331
1332 /* Add root command (index 0). */
1333 if (vec_len (cm->commands) == 0)
1334 {
1335 /* Create command with index 0; path is empty string. */
1336 vec_resize (cm->commands, 1);
1337 }
1338
1339 ci = vec_len (cm->commands);
1340 hash_set_mem (cm->command_index_by_path, normalized_path, ci);
1341 vec_add1 (cm->commands, c[0]);
1342
1343 c = vec_elt_at_index (cm->commands, ci);
1344 c->path = normalized_path;
1345
1346 /* Don't inherit from registration. */
1347 c->sub_commands = 0;
1348 c->sub_command_index_by_name = 0;
1349 c->sub_command_positions = 0;
1350 }
1351
1352 vlib_cli_make_parent (cm, ci);
1353 return 0;
1354}
1355
1356clib_error_t *
1357vlib_cli_register_parse_rule (vlib_main_t * vm, vlib_cli_parse_rule_t * r_reg)
1358{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001359 vlib_cli_main_t *cm = &vm->cli_main;
1360 vlib_cli_parse_rule_t *r;
1361 clib_error_t *error = 0;
1362 u8 *r_name;
1363 uword *p;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001364
Dave Barach9b8ffd92016-07-08 08:13:45 -04001365 if (!cm->parse_rule_index_by_name)
1366 cm->parse_rule_index_by_name = hash_create_vec ( /* initial length */ 32,
Ed Warnickecb9cada2015-12-08 15:45:58 -07001367 sizeof (r->name[0]),
1368 sizeof (uword));
1369
1370 /* Make vector copy of name. */
1371 r_name = format (0, "%s", r_reg->name);
1372
1373 if ((p = hash_get_mem (cm->parse_rule_index_by_name, r_name)))
1374 {
1375 vec_free (r_name);
Dave Barach9b8ffd92016-07-08 08:13:45 -04001376 return clib_error_return (0, "duplicate parse rule name `%s'",
1377 r_reg->name);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001378 }
1379
1380 vec_add2 (cm->parse_rules, r, 1);
1381 r[0] = r_reg[0];
1382 r->name = (char *) r_name;
1383 hash_set_mem (cm->parse_rule_index_by_name, r->name, r - cm->parse_rules);
1384
1385 return error;
1386}
1387
1388#if 0
1389/* $$$ turn back on again someday, maybe */
Dave Barach9b8ffd92016-07-08 08:13:45 -04001390static clib_error_t *vlib_cli_register_parse_rules (vlib_main_t * vm,
1391 vlib_cli_parse_rule_t *
1392 lo,
1393 vlib_cli_parse_rule_t *
1394 hi)
1395 __attribute__ ((unused))
Ed Warnickecb9cada2015-12-08 15:45:58 -07001396{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001397 clib_error_t *error = 0;
1398 vlib_cli_parse_rule_t *r;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001399
1400 for (r = lo; r < hi; r = clib_elf_section_data_next (r, 0))
1401 {
Dave Barach9b8ffd92016-07-08 08:13:45 -04001402 if (!r->name || strlen (r->name) == 0)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001403 {
1404 error = clib_error_return (0, "parse rule with no name");
1405 goto done;
1406 }
1407
1408 error = vlib_cli_register_parse_rule (vm, r);
1409 if (error)
1410 goto done;
1411 }
1412
Dave Barach9b8ffd92016-07-08 08:13:45 -04001413done:
Ed Warnickecb9cada2015-12-08 15:45:58 -07001414 return error;
1415}
1416#endif
1417
Damjan Marion9c2b9f42017-04-21 13:56:40 +02001418static int
1419cli_path_compare (void *a1, void *a2)
1420{
1421 u8 **s1 = a1;
1422 u8 **s2 = a2;
1423
1424 if ((vec_len (*s1) < vec_len (*s2)) &&
1425 memcmp ((char *) *s1, (char *) *s2, vec_len (*s1)) == 0)
1426 return -1;
1427
1428
1429 if ((vec_len (*s1) > vec_len (*s2)) &&
1430 memcmp ((char *) *s1, (char *) *s2, vec_len (*s2)) == 0)
1431 return 1;
1432
1433 return vec_cmp (*s1, *s2);
1434}
1435
1436static clib_error_t *
1437show_cli_cmd_fn (vlib_main_t * vm, unformat_input_t * input,
1438 vlib_cli_command_t * cmd)
1439{
1440 vlib_cli_main_t *cm = &vm->cli_main;
1441 vlib_cli_command_t *cli;
1442 u8 **paths = 0, **s;
1443
1444 /* *INDENT-OFF* */
1445 vec_foreach (cli, cm->commands)
1446 if (vec_len (cli->path) > 0)
1447 vec_add1 (paths, (u8 *) cli->path);
1448
1449 vec_sort_with_function (paths, cli_path_compare);
1450
1451 vec_foreach (s, paths)
1452 vlib_cli_output (vm, "%v", *s);
1453 /* *INDENT-ON* */
1454
1455 vec_free (paths);
1456 return 0;
1457}
1458
1459/* *INDENT-OFF* */
1460VLIB_CLI_COMMAND (show_cli_command, static) = {
1461 .path = "show cli",
1462 .short_help = "Show cli commands",
1463 .function = show_cli_cmd_fn,
1464};
1465/* *INDENT-ON* */
1466
Dave Barach9b8ffd92016-07-08 08:13:45 -04001467static clib_error_t *
Dave Barachc3a06552018-10-01 09:25:32 -04001468elog_trace_command_fn (vlib_main_t * vm,
1469 unformat_input_t * input, vlib_cli_command_t * cmd)
1470{
1471 unformat_input_t _line_input, *line_input = &_line_input;
1472 int enable = 1;
Dave Barach900cbad2019-01-31 19:12:51 -05001473 int api = 0, cli = 0, barrier = 0, dispatch = 0, circuit = 0;
1474 u32 circuit_node_index;
Dave Barachc3a06552018-10-01 09:25:32 -04001475
1476 if (!unformat_user (input, unformat_line_input, line_input))
1477 goto print_status;
1478
1479 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
1480 {
1481 if (unformat (line_input, "api"))
1482 api = 1;
Dave Barach900cbad2019-01-31 19:12:51 -05001483 else if (unformat (line_input, "dispatch"))
1484 dispatch = 1;
1485 else if (unformat (line_input, "circuit-node %U",
1486 unformat_vlib_node, vm, &circuit_node_index))
1487 circuit = 1;
Dave Barachc3a06552018-10-01 09:25:32 -04001488 else if (unformat (line_input, "cli"))
1489 cli = 1;
1490 else if (unformat (line_input, "barrier"))
1491 barrier = 1;
1492 else if (unformat (line_input, "disable"))
1493 enable = 0;
1494 else if (unformat (line_input, "enable"))
1495 enable = 1;
1496 else
1497 break;
1498 }
1499 unformat_free (line_input);
1500
1501 vm->elog_trace_api_messages = api ? enable : vm->elog_trace_api_messages;
1502 vm->elog_trace_cli_commands = cli ? enable : vm->elog_trace_cli_commands;
Dave Barach900cbad2019-01-31 19:12:51 -05001503 vm->elog_trace_graph_dispatch = dispatch ?
1504 enable : vm->elog_trace_graph_dispatch;
1505 vm->elog_trace_graph_circuit = circuit ?
1506 enable : vm->elog_trace_graph_circuit;
Dave Barachc3a06552018-10-01 09:25:32 -04001507 vlib_worker_threads->barrier_elog_enabled =
1508 barrier ? enable : vlib_worker_threads->barrier_elog_enabled;
Dave Barach900cbad2019-01-31 19:12:51 -05001509 vm->elog_trace_graph_circuit_node_index = circuit_node_index;
1510
1511 /*
1512 * Set up start-of-buffer logic-analyzer trigger
1513 * for main loop event logs, which are fairly heavyweight.
1514 * See src/vlib/main/vlib_elog_main_loop_event(...), which
1515 * will fully disable the scheme when the elog buffer fills.
1516 */
1517 if (dispatch || circuit)
1518 {
1519 elog_main_t *em = &vm->elog_main;
1520
1521 em->n_total_events_disable_limit =
1522 em->n_total_events + vec_len (em->event_ring);
1523 }
1524
Dave Barachc3a06552018-10-01 09:25:32 -04001525
1526print_status:
1527 vlib_cli_output (vm, "Current status:");
1528
1529 vlib_cli_output
1530 (vm, " Event log API message trace: %s\n CLI command trace: %s",
1531 vm->elog_trace_api_messages ? "on" : "off",
1532 vm->elog_trace_cli_commands ? "on" : "off");
1533 vlib_cli_output
1534 (vm, " Barrier sync trace: %s",
1535 vlib_worker_threads->barrier_elog_enabled ? "on" : "off");
Dave Barach900cbad2019-01-31 19:12:51 -05001536 vlib_cli_output
1537 (vm, " Graph Dispatch: %s",
1538 vm->elog_trace_graph_dispatch ? "on" : "off");
1539 vlib_cli_output
1540 (vm, " Graph Circuit: %s",
1541 vm->elog_trace_graph_circuit ? "on" : "off");
1542 if (vm->elog_trace_graph_circuit)
1543 vlib_cli_output
1544 (vm, " node %U",
1545 format_vlib_node_name, vm, vm->elog_trace_graph_circuit_node_index);
Dave Barachc3a06552018-10-01 09:25:32 -04001546
1547 return 0;
1548}
1549
1550/*?
1551 * Control event logging of api, cli, and thread barrier events
1552 * With no arguments, displays the current trace status.
1553 * Name the event groups you wish to trace or stop tracing.
1554 *
1555 * @cliexpar
1556 * @clistart
1557 * elog trace api cli barrier
1558 * elog trace api cli barrier disable
Dave Barach900cbad2019-01-31 19:12:51 -05001559 * elog trace dispatch
1560 * elog trace circuit-node ethernet-input
Dave Barachc3a06552018-10-01 09:25:32 -04001561 * elog trace
1562 * @cliend
1563 * @cliexcmd{elog trace [api][cli][barrier][disable]}
1564?*/
1565/* *INDENT-OFF* */
1566VLIB_CLI_COMMAND (elog_trace_command, static) =
1567{
1568 .path = "elog trace",
Dave Barach900cbad2019-01-31 19:12:51 -05001569 .short_help = "elog trace [api][cli][barrier][dispatch]\n"
1570 "[circuit-node <name> e.g. ethernet-input][disable]",
Dave Barachc3a06552018-10-01 09:25:32 -04001571 .function = elog_trace_command_fn,
1572};
1573/* *INDENT-ON* */
1574
1575static clib_error_t *
Dave Barach9b8ffd92016-07-08 08:13:45 -04001576vlib_cli_init (vlib_main_t * vm)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001577{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001578 vlib_cli_main_t *cm = &vm->cli_main;
1579 clib_error_t *error = 0;
1580 vlib_cli_command_t *cmd;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001581
1582 cmd = cm->cli_command_registrations;
1583
1584 while (cmd)
1585 {
1586 error = vlib_cli_register (vm, cmd);
1587 if (error)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001588 return error;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001589 cmd = cmd->next_cli_command;
1590 }
1591 return error;
1592}
1593
1594VLIB_INIT_FUNCTION (vlib_cli_init);
Dave Barach9b8ffd92016-07-08 08:13:45 -04001595
1596/*
1597 * fd.io coding-style-patch-verification: ON
1598 *
1599 * Local Variables:
1600 * eval: (c-set-style "gnu")
1601 * End:
1602 */