blob: 4c33914e8ccb0fa4a9790fab052d251d7fecd6ad [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. */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400687void
688vlib_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;
697
Andrew Yourtchenko716d9592016-05-10 10:51:34 +0000698 save_function = cp->output_function;
699 save_function_arg = cp->output_function_arg;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700700
Andrew Yourtchenko716d9592016-05-10 10:51:34 +0000701 cp->output_function = function;
702 cp->output_function_arg = function_arg;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700703
Dave Barach9b8ffd92016-07-08 08:13:45 -0400704 do
705 {
706 vec_reset_length (cm->parse_rule_data);
707 error = vlib_cli_dispatch_sub_commands (vm, &vm->cli_main, input, /* parent */
708 0);
709 }
710 while (!error && !unformat (input, "%U", unformat_eof));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700711
712 if (error)
713 {
714 vlib_cli_output (vm, "%v", error->what);
715 vlib_unix_error_report (vm, error);
716 clib_error_free (error);
717 }
718
Andrew Yourtchenko716d9592016-05-10 10:51:34 +0000719 cp->output_function = save_function;
720 cp->output_function_arg = save_function_arg;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700721}
722
723/* Output to current CLI connection. */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400724void
725vlib_cli_output (vlib_main_t * vm, char *fmt, ...)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700726{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400727 vlib_process_t *cp = vlib_get_current_process (vm);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700728 va_list va;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400729 u8 *s;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700730
731 va_start (va, fmt);
732 s = va_format (0, fmt, &va);
733 va_end (va);
734
735 /* Terminate with \n if not present. */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400736 if (vec_len (s) > 0 && s[vec_len (s) - 1] != '\n')
Ed Warnickecb9cada2015-12-08 15:45:58 -0700737 vec_add1 (s, '\n');
738
Dave Barach9b8ffd92016-07-08 08:13:45 -0400739 if ((!cp) || (!cp->output_function))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700740 fformat (stdout, "%v", s);
741 else
Andrew Yourtchenko716d9592016-05-10 10:51:34 +0000742 cp->output_function (cp->output_function_arg, s, vec_len (s));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700743
744 vec_free (s);
745}
746
Ole Troan73710c72018-06-04 22:27:49 +0200747void *vl_msg_push_heap (void) __attribute__ ((weak));
748void vl_msg_pop_heap (void *oldheap) __attribute__ ((weak));
749
Ed Warnickecb9cada2015-12-08 15:45:58 -0700750static clib_error_t *
751show_memory_usage (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400752 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700753{
Dave Barach6a5adc32018-07-04 10:56:23 -0400754 int verbose __attribute__ ((unused)) = 0, api_segment = 0;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400755 clib_error_t *error;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700756 u32 index = 0;
757
Dave Barach9b8ffd92016-07-08 08:13:45 -0400758 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700759 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400760 if (unformat (input, "verbose"))
761 verbose = 1;
Ole Troan73710c72018-06-04 22:27:49 +0200762 else if (unformat (input, "api-segment"))
763 api_segment = 1;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400764 else
765 {
766 error = clib_error_return (0, "unknown input `%U'",
767 format_unformat_error, input);
768 return error;
769 }
770 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700771
Ole Troan73710c72018-06-04 22:27:49 +0200772 if (api_segment)
773 {
774 void *oldheap = vl_msg_push_heap ();
775 u8 *s_in_svm =
776 format (0, "%U\n", format_mheap, clib_mem_get_heap (), 1);
777 vl_msg_pop_heap (oldheap);
778 u8 *s = vec_dup (s_in_svm);
779
780 oldheap = vl_msg_push_heap ();
781 vec_free (s_in_svm);
782 vl_msg_pop_heap (oldheap);
783 vlib_cli_output (vm, "API segment start:");
784 vlib_cli_output (vm, "%v", s);
785 vlib_cli_output (vm, "API segment end:");
786 vec_free (s);
787 }
788
Dave Barach6a5adc32018-07-04 10:56:23 -0400789#if USE_DLMALLOC == 0
Dave Barach9b8ffd92016-07-08 08:13:45 -0400790 /* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700791 foreach_vlib_main (
792 ({
Damjan Marion926b5642018-07-02 21:33:31 +0200793 mheap_t *h = mheap_header (clib_per_cpu_mheaps[index]);
Dave Barach6a5adc32018-07-04 10:56:23 -0400794 vlib_cli_output (vm, "%sThread %d %s\n", index ? "\n":"", index,
Damjan Marion926b5642018-07-02 21:33:31 +0200795 vlib_worker_threads[index].name);
796 vlib_cli_output (vm, " %U\n", format_page_map, pointer_to_uword (h) -
797 h->vm_alloc_offset_from_header,
798 h->vm_alloc_size);
Dave Barach6a5adc32018-07-04 10:56:23 -0400799 vlib_cli_output (vm, " %U\n", format_mheap, clib_per_cpu_mheaps[index],
800 verbose);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700801 index++;
802 }));
Dave Barach9b8ffd92016-07-08 08:13:45 -0400803 /* *INDENT-ON* */
Dave Barach6a5adc32018-07-04 10:56:23 -0400804#else
805 {
806 uword clib_mem_trace_enable_disable (uword enable);
807 uword was_enabled;
808
809 /*
810 * Note: the foreach_vlib_main cause allocator traffic,
811 * so shut off tracing before we go there...
812 */
813 was_enabled = clib_mem_trace_enable_disable (0);
814
815 /* *INDENT-OFF* */
816 foreach_vlib_main (
817 ({
Dave Barachaf7dd5b2018-08-23 17:08:44 -0400818 struct dlmallinfo mi;
Dave Barach6a5adc32018-07-04 10:56:23 -0400819 void *mspace;
820 mspace = clib_per_cpu_mheaps[index];
821
822 mi = mspace_mallinfo (mspace);
823 vlib_cli_output (vm, "%sThread %d %s\n", index ? "\n":"", index,
824 vlib_worker_threads[index].name);
825 vlib_cli_output (vm, " %U\n", format_page_map,
826 pointer_to_uword (mspace_least_addr(mspace)),
827 mi.arena);
828 vlib_cli_output (vm, " %U\n", format_mheap, clib_per_cpu_mheaps[index],
829 verbose);
830 index++;
831 }));
832 /* *INDENT-ON* */
833
834 /* Restore the trace flag */
835 clib_mem_trace_enable_disable (was_enabled);
836 }
837#endif /* USE_DLMALLOC */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700838 return 0;
839}
840
Dave Barach9b8ffd92016-07-08 08:13:45 -0400841/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700842VLIB_CLI_COMMAND (show_memory_usage_command, static) = {
843 .path = "show memory",
Ole Troan73710c72018-06-04 22:27:49 +0200844 .short_help = "[verbose | api-segment] Show current memory usage",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700845 .function = show_memory_usage,
846};
Dave Barach9b8ffd92016-07-08 08:13:45 -0400847/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700848
849static clib_error_t *
Damjan Marioneccf5092016-11-18 16:59:24 +0100850show_cpu (vlib_main_t * vm, unformat_input_t * input,
851 vlib_cli_command_t * cmd)
852{
853#define _(a,b,c) vlib_cli_output (vm, "%-25s " b, a ":", c);
854 _("Model name", "%U", format_cpu_model_name);
Paul Vinciguerrad6897c12018-12-30 11:07:36 -0800855 _("Microarch model (family)", "%U", format_cpu_uarch);
Damjan Marioneccf5092016-11-18 16:59:24 +0100856 _("Flags", "%U", format_cpu_flags);
857 _("Base frequency", "%.2f GHz",
858 ((f64) vm->clib_time.clocks_per_second) * 1e-9);
859#undef _
860 return 0;
861}
862
863/*?
864 * Displays various information about the CPU.
865 *
866 * @cliexpar
867 * @cliexstart{show cpu}
868 * Model name: Intel(R) Xeon(R) CPU E5-2667 v4 @ 3.20GHz
869 * Microarchitecture: Broadwell (Broadwell-EP/EX)
870 * Flags: sse3 ssse3 sse41 sse42 avx avx2 aes
871 * Base Frequency: 3.20 GHz
872 * @cliexend
873?*/
874/* *INDENT-OFF* */
875VLIB_CLI_COMMAND (show_cpu_command, static) = {
876 .path = "show cpu",
877 .short_help = "Show cpu information",
878 .function = show_cpu,
879};
880
881/* *INDENT-ON* */
Ole Troan73710c72018-06-04 22:27:49 +0200882
Damjan Marioneccf5092016-11-18 16:59:24 +0100883static clib_error_t *
Ed Warnickecb9cada2015-12-08 15:45:58 -0700884enable_disable_memory_trace (vlib_main_t * vm,
885 unformat_input_t * input,
886 vlib_cli_command_t * cmd)
887{
Ole Troan73710c72018-06-04 22:27:49 +0200888 unformat_input_t _line_input, *line_input = &_line_input;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700889 int enable;
Ole Troan73710c72018-06-04 22:27:49 +0200890 int api_segment = 0;
891 void *oldheap;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700892
Ole Troan73710c72018-06-04 22:27:49 +0200893
894 if (!unformat_user (input, unformat_line_input, line_input))
895 return 0;
896
897 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700898 {
Dave Barach1ddbc012018-06-13 09:26:05 -0400899 if (unformat (line_input, "%U", unformat_vlib_enable_disable, &enable))
Ole Troan73710c72018-06-04 22:27:49 +0200900 ;
901 else if (unformat (line_input, "api-segment"))
902 api_segment = 1;
903 else
904 {
905 unformat_free (line_input);
906 return clib_error_return (0, "invalid input");
907 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700908 }
Ole Troan73710c72018-06-04 22:27:49 +0200909 unformat_free (line_input);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700910
Ole Troan73710c72018-06-04 22:27:49 +0200911 if (api_segment)
912 oldheap = vl_msg_push_heap ();
Ed Warnickecb9cada2015-12-08 15:45:58 -0700913 clib_mem_trace (enable);
Ole Troan73710c72018-06-04 22:27:49 +0200914 if (api_segment)
915 vl_msg_pop_heap (oldheap);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700916
Ole Troan73710c72018-06-04 22:27:49 +0200917 return 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700918}
919
Dave Barach9b8ffd92016-07-08 08:13:45 -0400920/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700921VLIB_CLI_COMMAND (enable_disable_memory_trace_command, static) = {
922 .path = "memory-trace",
Ole Troan73710c72018-06-04 22:27:49 +0200923 .short_help = "on|off [api-segment] Enable/disable memory allocation trace",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700924 .function = enable_disable_memory_trace,
925};
Dave Barach9b8ffd92016-07-08 08:13:45 -0400926/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700927
928
929static clib_error_t *
930test_heap_validate (vlib_main_t * vm, unformat_input_t * input,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400931 vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700932{
Dave Barach6a5adc32018-07-04 10:56:23 -0400933#if USE_DLMALLOC == 0
Dave Barach9b8ffd92016-07-08 08:13:45 -0400934 clib_error_t *error = 0;
935 void *heap;
936 mheap_t *mheap;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700937
Dave Barach9b8ffd92016-07-08 08:13:45 -0400938 if (unformat (input, "on"))
939 {
940 /* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700941 foreach_vlib_main({
Damjan Marion586afd72017-04-05 19:18:20 +0200942 heap = clib_per_cpu_mheaps[this_vlib_main->thread_index];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700943 mheap = mheap_header(heap);
944 mheap->flags |= MHEAP_FLAG_VALIDATE;
945 // Turn off small object cache because it delays detection of errors
946 mheap->flags &= ~MHEAP_FLAG_SMALL_OBJECT_CACHE;
947 });
Dave Barach9b8ffd92016-07-08 08:13:45 -0400948 /* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700949
Dave Barach9b8ffd92016-07-08 08:13:45 -0400950 }
951 else if (unformat (input, "off"))
952 {
953 /* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700954 foreach_vlib_main({
Damjan Marion586afd72017-04-05 19:18:20 +0200955 heap = clib_per_cpu_mheaps[this_vlib_main->thread_index];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700956 mheap = mheap_header(heap);
957 mheap->flags &= ~MHEAP_FLAG_VALIDATE;
958 mheap->flags |= MHEAP_FLAG_SMALL_OBJECT_CACHE;
959 });
Dave Barach9b8ffd92016-07-08 08:13:45 -0400960 /* *INDENT-ON* */
961 }
962 else if (unformat (input, "now"))
963 {
964 /* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700965 foreach_vlib_main({
Damjan Marion586afd72017-04-05 19:18:20 +0200966 heap = clib_per_cpu_mheaps[this_vlib_main->thread_index];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700967 mheap = mheap_header(heap);
968 mheap_validate(heap);
969 });
Dave Barach9b8ffd92016-07-08 08:13:45 -0400970 /* *INDENT-ON* */
971 vlib_cli_output (vm, "heap validation complete");
Ed Warnickecb9cada2015-12-08 15:45:58 -0700972
Dave Barach9b8ffd92016-07-08 08:13:45 -0400973 }
974 else
975 {
976 return clib_error_return (0, "unknown input `%U'",
977 format_unformat_error, input);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700978 }
979
Dave Barach9b8ffd92016-07-08 08:13:45 -0400980 return error;
Dave Barach6a5adc32018-07-04 10:56:23 -0400981#else
982 return clib_error_return (0, "unimplemented...");
983#endif /* USE_DLMALLOC */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700984}
985
Dave Barach9b8ffd92016-07-08 08:13:45 -0400986/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700987VLIB_CLI_COMMAND (cmd_test_heap_validate,static) = {
988 .path = "test heap-validate",
989 .short_help = "<on/off/now> validate heap on future allocs/frees or right now",
990 .function = test_heap_validate,
991};
Dave Barach9b8ffd92016-07-08 08:13:45 -0400992/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700993
Damjan Marione5ef1d72017-03-02 12:33:48 +0100994static clib_error_t *
995restart_cmd_fn (vlib_main_t * vm, unformat_input_t * input,
996 vlib_cli_command_t * cmd)
997{
Chris Luke6edd3602018-06-12 22:45:06 -0400998 clib_file_main_t *fm = &file_main;
999 clib_file_t *f;
Damjan Marione5ef1d72017-03-02 12:33:48 +01001000
Chris Luke6edd3602018-06-12 22:45:06 -04001001 /* environ(7) does not indicate a header for this */
1002 extern char **environ;
1003
1004 /* Close all known open files */
1005 /* *INDENT-OFF* */
1006 pool_foreach(f, fm->file_pool,
1007 ({
1008 if (f->file_descriptor > 2)
1009 close(f->file_descriptor);
1010 }));
1011 /* *INDENT-ON* */
1012
1013 /* Exec ourself */
1014 execve (vm->name, (char **) vm->argv, environ);
Damjan Marione5ef1d72017-03-02 12:33:48 +01001015
1016 return 0;
1017}
1018
1019/* *INDENT-OFF* */
1020VLIB_CLI_COMMAND (restart_cmd,static) = {
1021 .path = "restart",
1022 .short_help = "restart process",
1023 .function = restart_cmd_fn,
1024};
1025/* *INDENT-ON* */
1026
Andrew Yourtchenko716d9592016-05-10 10:51:34 +00001027#ifdef TEST_CODE
1028/*
1029 * A trivial test harness to verify the per-process output_function
1030 * is working correcty.
1031 */
1032
1033static clib_error_t *
1034sleep_ten_seconds (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -04001035 unformat_input_t * input, vlib_cli_command_t * cmd)
Andrew Yourtchenko716d9592016-05-10 10:51:34 +00001036{
1037 u16 i;
Dave Barach9b8ffd92016-07-08 08:13:45 -04001038 u16 my_id = rand ();
Andrew Yourtchenko716d9592016-05-10 10:51:34 +00001039
Dave Barach9b8ffd92016-07-08 08:13:45 -04001040 vlib_cli_output (vm, "Starting 10 seconds sleep with id %u\n", my_id);
Andrew Yourtchenko716d9592016-05-10 10:51:34 +00001041
Dave Barach9b8ffd92016-07-08 08:13:45 -04001042 for (i = 0; i < 10; i++)
Andrew Yourtchenko716d9592016-05-10 10:51:34 +00001043 {
Dave Barach9b8ffd92016-07-08 08:13:45 -04001044 vlib_process_wait_for_event_or_clock (vm, 1.0);
1045 vlib_cli_output (vm, "Iteration number %u, my id: %u\n", i, my_id);
Andrew Yourtchenko716d9592016-05-10 10:51:34 +00001046 }
Dave Barach9b8ffd92016-07-08 08:13:45 -04001047 vlib_cli_output (vm, "Done with sleep with id %u\n", my_id);
Andrew Yourtchenko716d9592016-05-10 10:51:34 +00001048 return 0;
1049}
1050
Dave Barach9b8ffd92016-07-08 08:13:45 -04001051/* *INDENT-OFF* */
Andrew Yourtchenko716d9592016-05-10 10:51:34 +00001052VLIB_CLI_COMMAND (ping_command, static) = {
1053 .path = "test sleep",
1054 .function = sleep_ten_seconds,
1055 .short_help = "Sleep for 10 seconds",
1056};
Dave Barach9b8ffd92016-07-08 08:13:45 -04001057/* *INDENT-ON* */
Andrew Yourtchenko716d9592016-05-10 10:51:34 +00001058#endif /* ifdef TEST_CODE */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001059
Dave Barach9b8ffd92016-07-08 08:13:45 -04001060static uword
1061vlib_cli_normalize_path (char *input, char **result)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001062{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001063 char *i = input;
1064 char *s = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001065 uword l = 0;
1066 uword index_of_last_space = ~0;
1067
1068 while (*i != 0)
1069 {
1070 u8 c = *i++;
1071 /* Multiple white space -> single space. */
1072 switch (c)
1073 {
1074 case ' ':
1075 case '\t':
1076 case '\n':
1077 case '\r':
Dave Barach9b8ffd92016-07-08 08:13:45 -04001078 if (l > 0 && s[l - 1] != ' ')
Ed Warnickecb9cada2015-12-08 15:45:58 -07001079 {
1080 vec_add1 (s, ' ');
1081 l++;
1082 }
1083 break;
1084
1085 default:
Dave Barach9b8ffd92016-07-08 08:13:45 -04001086 if (l > 0 && s[l - 1] == ' ')
Ed Warnickecb9cada2015-12-08 15:45:58 -07001087 index_of_last_space = vec_len (s);
1088 vec_add1 (s, c);
1089 l++;
1090 break;
1091 }
1092 }
1093
1094 /* Remove any extra space at end. */
Dave Barach9b8ffd92016-07-08 08:13:45 -04001095 if (l > 0 && s[l - 1] == ' ')
Ed Warnickecb9cada2015-12-08 15:45:58 -07001096 _vec_len (s) -= 1;
1097
1098 *result = s;
1099 return index_of_last_space;
1100}
1101
1102always_inline uword
Dave Barach9b8ffd92016-07-08 08:13:45 -04001103parent_path_len (char *path)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001104{
1105 word i;
1106 for (i = vec_len (path) - 1; i >= 0; i--)
1107 {
1108 if (path[i] == ' ')
1109 return i;
1110 }
1111 return ~0;
1112}
1113
Dave Barach9b8ffd92016-07-08 08:13:45 -04001114static void
1115add_sub_command (vlib_cli_main_t * cm, uword parent_index, uword child_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001116{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001117 vlib_cli_command_t *p, *c;
1118 vlib_cli_sub_command_t *sub_c;
1119 u8 *sub_name;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001120 word i, l;
1121
1122 p = vec_elt_at_index (cm->commands, parent_index);
1123 c = vec_elt_at_index (cm->commands, child_index);
1124
1125 l = parent_path_len (c->path);
1126 if (l == ~0)
1127 sub_name = vec_dup ((u8 *) c->path);
1128 else
1129 {
1130 ASSERT (l + 1 < vec_len (c->path));
1131 sub_name = 0;
1132 vec_add (sub_name, c->path + l + 1, vec_len (c->path) - (l + 1));
1133 }
1134
1135 if (sub_name[0] == '%')
1136 {
Dave Barach9b8ffd92016-07-08 08:13:45 -04001137 uword *q;
1138 vlib_cli_sub_rule_t *sr;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001139
1140 /* Remove %. */
1141 vec_delete (sub_name, 1, 0);
1142
Dave Barach9b8ffd92016-07-08 08:13:45 -04001143 if (!p->sub_rule_index_by_name)
1144 p->sub_rule_index_by_name = hash_create_vec ( /* initial length */ 32,
1145 sizeof (sub_name[0]),
1146 sizeof (uword));
Ed Warnickecb9cada2015-12-08 15:45:58 -07001147 q = hash_get_mem (p->sub_rule_index_by_name, sub_name);
1148 if (q)
1149 {
1150 sr = vec_elt_at_index (p->sub_rules, q[0]);
1151 ASSERT (sr->command_index == child_index);
1152 return;
1153 }
1154
1155 q = hash_get_mem (cm->parse_rule_index_by_name, sub_name);
Dave Barach9b8ffd92016-07-08 08:13:45 -04001156 if (!q)
Ed Warnicke853e7202016-08-12 11:42:26 -07001157 {
1158 clib_error ("reference to unknown rule `%%%v' in path `%v'",
1159 sub_name, c->path);
1160 return;
1161 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001162
Dave Barach9b8ffd92016-07-08 08:13:45 -04001163 hash_set_mem (p->sub_rule_index_by_name, sub_name,
1164 vec_len (p->sub_rules));
Ed Warnickecb9cada2015-12-08 15:45:58 -07001165 vec_add2 (p->sub_rules, sr, 1);
1166 sr->name = sub_name;
1167 sr->rule_index = q[0];
1168 sr->command_index = child_index;
1169 return;
1170 }
1171
Dave Barach9b8ffd92016-07-08 08:13:45 -04001172 if (!p->sub_command_index_by_name)
1173 p->sub_command_index_by_name = hash_create_vec ( /* initial length */ 32,
1174 sizeof (c->path[0]),
1175 sizeof (uword));
Ed Warnickecb9cada2015-12-08 15:45:58 -07001176
1177 /* Check if sub-command has already been created. */
1178 if (hash_get_mem (p->sub_command_index_by_name, sub_name))
1179 {
1180 vec_free (sub_name);
1181 return;
1182 }
1183
1184 vec_add2 (p->sub_commands, sub_c, 1);
1185 sub_c->index = child_index;
1186 sub_c->name = sub_name;
Dave Barach9b8ffd92016-07-08 08:13:45 -04001187 hash_set_mem (p->sub_command_index_by_name, sub_c->name,
1188 sub_c - p->sub_commands);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001189
1190 vec_validate (p->sub_command_positions, vec_len (sub_c->name) - 1);
1191 for (i = 0; i < vec_len (sub_c->name); i++)
1192 {
1193 int n;
Dave Barach9b8ffd92016-07-08 08:13:45 -04001194 vlib_cli_parse_position_t *pos;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001195
1196 pos = vec_elt_at_index (p->sub_command_positions, i);
1197
Dave Barach9b8ffd92016-07-08 08:13:45 -04001198 if (!pos->bitmaps)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001199 pos->min_char = sub_c->name[i];
1200
1201 n = sub_c->name[i] - pos->min_char;
1202 if (n < 0)
1203 {
1204 pos->min_char = sub_c->name[i];
1205 vec_insert (pos->bitmaps, -n, 0);
1206 n = 0;
1207 }
1208
1209 vec_validate (pos->bitmaps, n);
Dave Barach9b8ffd92016-07-08 08:13:45 -04001210 pos->bitmaps[n] =
1211 clib_bitmap_ori (pos->bitmaps[n], sub_c - p->sub_commands);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001212 }
1213}
1214
1215static void
1216vlib_cli_make_parent (vlib_cli_main_t * cm, uword ci)
1217{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001218 uword p_len, pi, *p;
1219 char *p_path;
1220 vlib_cli_command_t *c, *parent;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001221
1222 /* Root command (index 0) should have already been added. */
1223 ASSERT (vec_len (cm->commands) > 0);
1224
1225 c = vec_elt_at_index (cm->commands, ci);
1226 p_len = parent_path_len (c->path);
1227
Dave Barach9b8ffd92016-07-08 08:13:45 -04001228 /* No space? Parent is root command. */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001229 if (p_len == ~0)
1230 {
1231 add_sub_command (cm, 0, ci);
1232 return;
1233 }
1234
1235 p_path = 0;
1236 vec_add (p_path, c->path, p_len);
1237
1238 p = hash_get_mem (cm->command_index_by_path, p_path);
1239
1240 /* Parent exists? */
Dave Barach9b8ffd92016-07-08 08:13:45 -04001241 if (!p)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001242 {
1243 /* Parent does not exist; create it. */
1244 vec_add2 (cm->commands, parent, 1);
1245 parent->path = p_path;
Dave Barach9b8ffd92016-07-08 08:13:45 -04001246 hash_set_mem (cm->command_index_by_path, parent->path,
1247 parent - cm->commands);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001248 pi = parent - cm->commands;
1249 }
1250 else
1251 {
1252 pi = p[0];
1253 vec_free (p_path);
1254 }
1255
1256 add_sub_command (cm, pi, ci);
1257
1258 /* Create parent's parent. */
Dave Barach9b8ffd92016-07-08 08:13:45 -04001259 if (!p)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001260 vlib_cli_make_parent (cm, pi);
1261}
1262
1263always_inline uword
1264vlib_cli_command_is_empty (vlib_cli_command_t * c)
1265{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001266 return (c->long_help == 0 && c->short_help == 0 && c->function == 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001267}
1268
Dave Barach9b8ffd92016-07-08 08:13:45 -04001269clib_error_t *
1270vlib_cli_register (vlib_main_t * vm, vlib_cli_command_t * c)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001271{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001272 vlib_cli_main_t *cm = &vm->cli_main;
1273 clib_error_t *error = 0;
1274 uword ci, *p;
1275 char *normalized_path;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001276
1277 if ((error = vlib_call_init_function (vm, vlib_cli_init)))
1278 return error;
1279
1280 (void) vlib_cli_normalize_path (c->path, &normalized_path);
1281
Dave Barach9b8ffd92016-07-08 08:13:45 -04001282 if (!cm->command_index_by_path)
1283 cm->command_index_by_path = hash_create_vec ( /* initial length */ 32,
Ed Warnickecb9cada2015-12-08 15:45:58 -07001284 sizeof (c->path[0]),
1285 sizeof (uword));
1286
1287 /* See if command already exists with given path. */
1288 p = hash_get_mem (cm->command_index_by_path, normalized_path);
1289 if (p)
1290 {
Dave Barach9b8ffd92016-07-08 08:13:45 -04001291 vlib_cli_command_t *d;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001292
1293 ci = p[0];
1294 d = vec_elt_at_index (cm->commands, ci);
1295
1296 /* If existing command was created via vlib_cli_make_parent
Dave Barach9b8ffd92016-07-08 08:13:45 -04001297 replaced it with callers data. */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001298 if (vlib_cli_command_is_empty (d))
1299 {
1300 vlib_cli_command_t save = d[0];
1301
Dave Barach9b8ffd92016-07-08 08:13:45 -04001302 ASSERT (!vlib_cli_command_is_empty (c));
Ed Warnickecb9cada2015-12-08 15:45:58 -07001303
1304 /* Copy callers fields. */
1305 d[0] = c[0];
1306
1307 /* Save internal fields. */
1308 d->path = save.path;
1309 d->sub_commands = save.sub_commands;
1310 d->sub_command_index_by_name = save.sub_command_index_by_name;
1311 d->sub_command_positions = save.sub_command_positions;
1312 d->sub_rules = save.sub_rules;
1313 }
1314 else
Dave Barach9b8ffd92016-07-08 08:13:45 -04001315 error =
1316 clib_error_return (0, "duplicate command name with path %v",
1317 normalized_path);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001318
1319 vec_free (normalized_path);
1320 if (error)
1321 return error;
1322 }
1323 else
1324 {
1325 /* Command does not exist: create it. */
1326
1327 /* Add root command (index 0). */
1328 if (vec_len (cm->commands) == 0)
1329 {
1330 /* Create command with index 0; path is empty string. */
1331 vec_resize (cm->commands, 1);
1332 }
1333
1334 ci = vec_len (cm->commands);
1335 hash_set_mem (cm->command_index_by_path, normalized_path, ci);
1336 vec_add1 (cm->commands, c[0]);
1337
1338 c = vec_elt_at_index (cm->commands, ci);
1339 c->path = normalized_path;
1340
1341 /* Don't inherit from registration. */
1342 c->sub_commands = 0;
1343 c->sub_command_index_by_name = 0;
1344 c->sub_command_positions = 0;
1345 }
1346
1347 vlib_cli_make_parent (cm, ci);
1348 return 0;
1349}
1350
1351clib_error_t *
1352vlib_cli_register_parse_rule (vlib_main_t * vm, vlib_cli_parse_rule_t * r_reg)
1353{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001354 vlib_cli_main_t *cm = &vm->cli_main;
1355 vlib_cli_parse_rule_t *r;
1356 clib_error_t *error = 0;
1357 u8 *r_name;
1358 uword *p;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001359
Dave Barach9b8ffd92016-07-08 08:13:45 -04001360 if (!cm->parse_rule_index_by_name)
1361 cm->parse_rule_index_by_name = hash_create_vec ( /* initial length */ 32,
Ed Warnickecb9cada2015-12-08 15:45:58 -07001362 sizeof (r->name[0]),
1363 sizeof (uword));
1364
1365 /* Make vector copy of name. */
1366 r_name = format (0, "%s", r_reg->name);
1367
1368 if ((p = hash_get_mem (cm->parse_rule_index_by_name, r_name)))
1369 {
1370 vec_free (r_name);
Dave Barach9b8ffd92016-07-08 08:13:45 -04001371 return clib_error_return (0, "duplicate parse rule name `%s'",
1372 r_reg->name);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001373 }
1374
1375 vec_add2 (cm->parse_rules, r, 1);
1376 r[0] = r_reg[0];
1377 r->name = (char *) r_name;
1378 hash_set_mem (cm->parse_rule_index_by_name, r->name, r - cm->parse_rules);
1379
1380 return error;
1381}
1382
1383#if 0
1384/* $$$ turn back on again someday, maybe */
Dave Barach9b8ffd92016-07-08 08:13:45 -04001385static clib_error_t *vlib_cli_register_parse_rules (vlib_main_t * vm,
1386 vlib_cli_parse_rule_t *
1387 lo,
1388 vlib_cli_parse_rule_t *
1389 hi)
1390 __attribute__ ((unused))
Ed Warnickecb9cada2015-12-08 15:45:58 -07001391{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001392 clib_error_t *error = 0;
1393 vlib_cli_parse_rule_t *r;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001394
1395 for (r = lo; r < hi; r = clib_elf_section_data_next (r, 0))
1396 {
Dave Barach9b8ffd92016-07-08 08:13:45 -04001397 if (!r->name || strlen (r->name) == 0)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001398 {
1399 error = clib_error_return (0, "parse rule with no name");
1400 goto done;
1401 }
1402
1403 error = vlib_cli_register_parse_rule (vm, r);
1404 if (error)
1405 goto done;
1406 }
1407
Dave Barach9b8ffd92016-07-08 08:13:45 -04001408done:
Ed Warnickecb9cada2015-12-08 15:45:58 -07001409 return error;
1410}
1411#endif
1412
Damjan Marion9c2b9f42017-04-21 13:56:40 +02001413static int
1414cli_path_compare (void *a1, void *a2)
1415{
1416 u8 **s1 = a1;
1417 u8 **s2 = a2;
1418
1419 if ((vec_len (*s1) < vec_len (*s2)) &&
1420 memcmp ((char *) *s1, (char *) *s2, vec_len (*s1)) == 0)
1421 return -1;
1422
1423
1424 if ((vec_len (*s1) > vec_len (*s2)) &&
1425 memcmp ((char *) *s1, (char *) *s2, vec_len (*s2)) == 0)
1426 return 1;
1427
1428 return vec_cmp (*s1, *s2);
1429}
1430
1431static clib_error_t *
1432show_cli_cmd_fn (vlib_main_t * vm, unformat_input_t * input,
1433 vlib_cli_command_t * cmd)
1434{
1435 vlib_cli_main_t *cm = &vm->cli_main;
1436 vlib_cli_command_t *cli;
1437 u8 **paths = 0, **s;
1438
1439 /* *INDENT-OFF* */
1440 vec_foreach (cli, cm->commands)
1441 if (vec_len (cli->path) > 0)
1442 vec_add1 (paths, (u8 *) cli->path);
1443
1444 vec_sort_with_function (paths, cli_path_compare);
1445
1446 vec_foreach (s, paths)
1447 vlib_cli_output (vm, "%v", *s);
1448 /* *INDENT-ON* */
1449
1450 vec_free (paths);
1451 return 0;
1452}
1453
1454/* *INDENT-OFF* */
1455VLIB_CLI_COMMAND (show_cli_command, static) = {
1456 .path = "show cli",
1457 .short_help = "Show cli commands",
1458 .function = show_cli_cmd_fn,
1459};
1460/* *INDENT-ON* */
1461
Dave Barach9b8ffd92016-07-08 08:13:45 -04001462static clib_error_t *
Dave Barachc3a06552018-10-01 09:25:32 -04001463elog_trace_command_fn (vlib_main_t * vm,
1464 unformat_input_t * input, vlib_cli_command_t * cmd)
1465{
1466 unformat_input_t _line_input, *line_input = &_line_input;
1467 int enable = 1;
1468 int api = 0, cli = 0, barrier = 0;
1469
1470 if (!unformat_user (input, unformat_line_input, line_input))
1471 goto print_status;
1472
1473 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
1474 {
1475 if (unformat (line_input, "api"))
1476 api = 1;
1477 else if (unformat (line_input, "cli"))
1478 cli = 1;
1479 else if (unformat (line_input, "barrier"))
1480 barrier = 1;
1481 else if (unformat (line_input, "disable"))
1482 enable = 0;
1483 else if (unformat (line_input, "enable"))
1484 enable = 1;
1485 else
1486 break;
1487 }
1488 unformat_free (line_input);
1489
1490 vm->elog_trace_api_messages = api ? enable : vm->elog_trace_api_messages;
1491 vm->elog_trace_cli_commands = cli ? enable : vm->elog_trace_cli_commands;
1492 vlib_worker_threads->barrier_elog_enabled =
1493 barrier ? enable : vlib_worker_threads->barrier_elog_enabled;
1494
1495print_status:
1496 vlib_cli_output (vm, "Current status:");
1497
1498 vlib_cli_output
1499 (vm, " Event log API message trace: %s\n CLI command trace: %s",
1500 vm->elog_trace_api_messages ? "on" : "off",
1501 vm->elog_trace_cli_commands ? "on" : "off");
1502 vlib_cli_output
1503 (vm, " Barrier sync trace: %s",
1504 vlib_worker_threads->barrier_elog_enabled ? "on" : "off");
1505
1506 return 0;
1507}
1508
1509/*?
1510 * Control event logging of api, cli, and thread barrier events
1511 * With no arguments, displays the current trace status.
1512 * Name the event groups you wish to trace or stop tracing.
1513 *
1514 * @cliexpar
1515 * @clistart
1516 * elog trace api cli barrier
1517 * elog trace api cli barrier disable
1518 * elog trace
1519 * @cliend
1520 * @cliexcmd{elog trace [api][cli][barrier][disable]}
1521?*/
1522/* *INDENT-OFF* */
1523VLIB_CLI_COMMAND (elog_trace_command, static) =
1524{
1525 .path = "elog trace",
1526 .short_help = "elog trace [api][cli][barrier][disable]",
1527 .function = elog_trace_command_fn,
1528};
1529/* *INDENT-ON* */
1530
1531static clib_error_t *
Dave Barach9b8ffd92016-07-08 08:13:45 -04001532vlib_cli_init (vlib_main_t * vm)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001533{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001534 vlib_cli_main_t *cm = &vm->cli_main;
1535 clib_error_t *error = 0;
1536 vlib_cli_command_t *cmd;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001537
1538 cmd = cm->cli_command_registrations;
1539
1540 while (cmd)
1541 {
1542 error = vlib_cli_register (vm, cmd);
1543 if (error)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001544 return error;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001545 cmd = cmd->next_cli_command;
1546 }
1547 return error;
1548}
1549
1550VLIB_INIT_FUNCTION (vlib_cli_init);
Dave Barach9b8ffd92016-07-08 08:13:45 -04001551
1552/*
1553 * fd.io coding-style-patch-verification: ON
1554 *
1555 * Local Variables:
1556 * eval: (c-set-style "gnu")
1557 * End:
1558 */