blob: 32c6c1a4ef9a6b388b22041a50e4116da13a741a [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 * node_cli.c: node CLI
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
Benoît Ganne362456a2019-01-21 17:41:25 +010040#include <sys/types.h>
41#include <sys/stat.h>
42#include <fcntl.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070043#include <vlib/vlib.h>
44#include <vlib/threads.h>
45
Matus Fabiand2dc3df2015-12-14 10:31:33 -050046static int
Dave Barach9b8ffd92016-07-08 08:13:45 -040047node_cmp (void *a1, void *a2)
Matus Fabiand2dc3df2015-12-14 10:31:33 -050048{
Dave Barach9b8ffd92016-07-08 08:13:45 -040049 vlib_node_t **n1 = a1;
50 vlib_node_t **n2 = a2;
Matus Fabiand2dc3df2015-12-14 10:31:33 -050051
52 return vec_cmp (n1[0]->name, n2[0]->name);
53}
54
Ed Warnickecb9cada2015-12-08 15:45:58 -070055static clib_error_t *
56show_node_graph (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -040057 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -070058{
Dave Barach9b8ffd92016-07-08 08:13:45 -040059 vlib_node_main_t *nm = &vm->node_main;
60 vlib_node_t *n;
Ed Warnickecb9cada2015-12-08 15:45:58 -070061 u32 node_index;
62
63 vlib_cli_output (vm, "%U\n", format_vlib_node_graph, nm, 0);
64
65 if (unformat (input, "%U", unformat_vlib_node, vm, &node_index))
66 {
67 n = vlib_get_node (vm, node_index);
68 vlib_cli_output (vm, "%U\n", format_vlib_node_graph, nm, n);
69 }
70 else
71 {
Dave Barach9b8ffd92016-07-08 08:13:45 -040072 vlib_node_t **nodes = vec_dup (nm->nodes);
Ed Warnickecb9cada2015-12-08 15:45:58 -070073 uword i;
74
Matus Fabiand2dc3df2015-12-14 10:31:33 -050075 vec_sort_with_function (nodes, node_cmp);
Ed Warnickecb9cada2015-12-08 15:45:58 -070076
77 for (i = 0; i < vec_len (nodes); i++)
78 vlib_cli_output (vm, "%U\n\n", format_vlib_node_graph, nm, nodes[i]);
79
80 vec_free (nodes);
81 }
82
83 return 0;
84}
85
Dave Barach9b8ffd92016-07-08 08:13:45 -040086/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -070087VLIB_CLI_COMMAND (show_node_graph_command, static) = {
88 .path = "show vlib graph",
89 .short_help = "Show packet processing node graph",
90 .function = show_node_graph,
91};
Dave Barach9b8ffd92016-07-08 08:13:45 -040092/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -070093
Benoît Ganne362456a2019-01-21 17:41:25 +010094static clib_error_t *
95show_node_graphviz (vlib_main_t * vm,
96 unformat_input_t * input, vlib_cli_command_t * cmd)
97{
98 clib_error_t *error = 0;
99 vlib_node_main_t *nm = &vm->node_main;
100 u8 *chroot_filename = 0;
101 int fd;
102 vlib_node_t **nodes = 0;
103 uword i, j;
104
105 if (!unformat_user (input, unformat_vlib_tmpfile, &chroot_filename))
106 {
107 fd = -1;
108 }
109 else
110 {
111 fd =
112 open ((char *) chroot_filename, O_CREAT | O_TRUNC | O_WRONLY, 0664);
113 }
114
115#define format__(vm__, fd__, ...) \
116 if ((fd) < 0) \
117 { \
118 vlib_cli_output((vm__), ## __VA_ARGS__); \
119 } \
120 else \
121 { \
122 fdformat((fd__), ## __VA_ARGS__); \
123 }
124
125 format__ (vm, fd, "%s", "digraph {\n");
126
127 nodes = vec_dup (nm->nodes);
128 vec_sort_with_function (nodes, node_cmp);
129
130 for (i = 0; i < vec_len (nodes); i++)
131 {
132 for (j = 0; j < vec_len (nodes[i]->next_nodes); j++)
133 {
134 vlib_node_t *x;
135
136 if (nodes[i]->next_nodes[j] == VLIB_INVALID_NODE_INDEX)
137 continue;
138
139 x = vec_elt (nm->nodes, nodes[i]->next_nodes[j]);
140 format__ (vm, fd, " \"%v\" -> \"%v\"\n", nodes[i]->name, x->name);
141 }
142 }
143
144 format__ (vm, fd, "%s", "}");
145
146 if (fd >= 0)
147 {
148 vlib_cli_output (vm,
149 "vlib graph dumped into `%s'. Run eg. `fdp -Tsvg -O %s'.",
150 chroot_filename, chroot_filename);
151 }
152
153 vec_free (nodes);
154 vec_free (chroot_filename);
155 vec_free (nodes);
156 if (fd >= 0)
157 close (fd);
158 return error;
159}
160
161/* *INDENT-OFF* */
162VLIB_CLI_COMMAND (show_node_graphviz_command, static) = {
163 .path = "show vlib graphviz",
164 .short_help = "Dump packet processing node graph as a graphviz dotfile",
165 .function = show_node_graphviz,
166};
167/* *INDENT-ON* */
168
Dave Barach9b8ffd92016-07-08 08:13:45 -0400169static u8 *
Damjan Marion69abe442018-08-27 22:43:23 +0200170format_vlib_node_state (u8 * s, va_list * va)
171{
172 vlib_main_t *vm = va_arg (*va, vlib_main_t *);
173 vlib_node_t *n = va_arg (*va, vlib_node_t *);
174 char *state;
175
176 state = "active";
177 if (n->type == VLIB_NODE_TYPE_PROCESS)
178 {
179 vlib_process_t *p = vlib_get_process_from_node (vm, n);
180
181 switch (p->flags & (VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_CLOCK
182 | VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_EVENT))
183 {
184 default:
185 if (!(p->flags & VLIB_PROCESS_IS_RUNNING))
186 state = "done";
187 break;
188
189 case VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_CLOCK:
190 state = "time wait";
191 break;
192
193 case VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_EVENT:
194 state = "event wait";
195 break;
196
197 case (VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_EVENT | VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_CLOCK):
198 state =
199 "any wait";
200 break;
201 }
202 }
203 else if (n->type != VLIB_NODE_TYPE_INTERNAL)
204 {
205 state = "polling";
206 if (n->state == VLIB_NODE_STATE_DISABLED)
207 state = "disabled";
208 else if (n->state == VLIB_NODE_STATE_INTERRUPT)
209 state = "interrupt wait";
210 }
211
212 return format (s, "%s", state);
213}
214
215static u8 *
Dave Barach9b8ffd92016-07-08 08:13:45 -0400216format_vlib_node_stats (u8 * s, va_list * va)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700217{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400218 vlib_main_t *vm = va_arg (*va, vlib_main_t *);
219 vlib_node_t *n = va_arg (*va, vlib_node_t *);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700220 int max = va_arg (*va, int);
221 f64 v;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400222 u8 *ns;
223 u8 *misc_info = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700224 u64 c, p, l, d;
225 f64 x;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400226 f64 maxc, maxcn;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700227 u32 maxn;
Christophe Fontained3c008d2017-10-02 18:10:54 +0200228 u32 indent;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700229
Dave Barach9b8ffd92016-07-08 08:13:45 -0400230 if (!n)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700231 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400232 if (max)
Dave Barach4d1a8662018-09-10 12:31:15 -0400233 s = format (s,
234 "%=30s%=17s%=16s%=16s%=16s%=16s",
235 "Name", "Max Node Clocks", "Vectors at Max",
236 "Max Clocks", "Avg Clocks", "Avg Vectors/Call");
Ed Warnickecb9cada2015-12-08 15:45:58 -0700237 else
Dave Barach4d1a8662018-09-10 12:31:15 -0400238 s = format (s,
239 "%=30s%=12s%=16s%=16s%=16s%=16s%=16s",
240 "Name", "State", "Calls", "Vectors", "Suspends",
241 "Clocks", "Vectors/Call");
Dave Barach4d1a8662018-09-10 12:31:15 -0400242 return s;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700243 }
244
245 indent = format_get_indent (s);
246
247 l = n->stats_total.clocks - n->stats_last_clear.clocks;
248 c = n->stats_total.calls - n->stats_last_clear.calls;
249 p = n->stats_total.vectors - n->stats_last_clear.vectors;
250 d = n->stats_total.suspends - n->stats_last_clear.suspends;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400251 maxc = (f64) n->stats_total.max_clock;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700252 maxn = n->stats_total.max_clock_n;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400253 if (n->stats_total.max_clock_n)
254 maxcn = (f64) n->stats_total.max_clock / (f64) maxn;
255 else
Ed Warnickecb9cada2015-12-08 15:45:58 -0700256 maxcn = 0.0;
257
258 /* Clocks per packet, per call or per suspend. */
259 x = 0;
260 if (p > 0)
261 x = (f64) l / (f64) p;
262 else if (c > 0)
263 x = (f64) l / (f64) c;
264 else if (d > 0)
265 x = (f64) l / (f64) d;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400266
Ed Warnickecb9cada2015-12-08 15:45:58 -0700267 if (c > 0)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400268 v = (double) p / (double) c;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700269 else
270 v = 0;
271
Ed Warnickecb9cada2015-12-08 15:45:58 -0700272 if (n->type == VLIB_NODE_TYPE_PROCESS)
273 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400274 vlib_process_t *p = vlib_get_process_from_node (vm, n);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700275
276 /* Show processes with events pending. This helps spot bugs where events are not
Dave Barach9b8ffd92016-07-08 08:13:45 -0400277 being handled. */
278 if (!clib_bitmap_is_zero (p->non_empty_event_type_bitmap))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700279 misc_info = format (misc_info, "events pending, ");
Dave Barach9b8ffd92016-07-08 08:13:45 -0400280 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700281 ns = n->name;
282
283 if (max)
284 s = format (s, "%-30v%=17.2e%=16d%=16.2e%=16.2e%=16.2e",
Dave Barach9b8ffd92016-07-08 08:13:45 -0400285 ns, maxc, maxn, maxcn, x, v);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700286 else
Damjan Marion69abe442018-08-27 22:43:23 +0200287 s = format (s, "%-30v%=12U%16Ld%16Ld%16Ld%16.2e%16.2f", ns,
288 format_vlib_node_state, vm, n, c, p, d, x, v);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700289
290 if (ns != n->name)
291 vec_free (ns);
292
293 if (misc_info)
294 {
295 s = format (s, "\n%U%v", format_white_space, indent + 4, misc_info);
296 vec_free (misc_info);
297 }
298
299 return s;
300}
301
Dave Baracha8df85c2019-10-01 13:34:23 -0400302f64 vlib_get_stat_segment_update_rate (void) __attribute__ ((weak));
303f64
304vlib_get_stat_segment_update_rate (void)
305{
306 return 1e70;
307}
308
Ed Warnickecb9cada2015-12-08 15:45:58 -0700309static clib_error_t *
310show_node_runtime (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400311 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700312{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400313 vlib_node_main_t *nm = &vm->node_main;
314 vlib_node_t *n;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700315 f64 time_now;
316 u32 node_index;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400317 vlib_node_t ***node_dups = 0;
Dave Baracha8df85c2019-10-01 13:34:23 -0400318 f64 *internal_node_vector_rates = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700319
320 time_now = vlib_time_now (vm);
321
322 if (unformat (input, "%U", unformat_vlib_node, vm, &node_index))
323 {
324 n = vlib_get_node (vm, node_index);
325 vlib_node_sync_stats (vm, n);
326 vlib_cli_output (vm, "%U\n", format_vlib_node_stats, vm, 0, 0);
327 vlib_cli_output (vm, "%U\n", format_vlib_node_stats, vm, n, 0);
328 }
329 else
330 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400331 vlib_node_t **nodes;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700332 uword i, j;
333 f64 dt;
334 u64 n_input, n_output, n_drop, n_punt;
335 u64 n_internal_vectors, n_internal_calls;
336 u64 n_clocks, l, v, c, d;
337 int brief = 1;
Dave Barachac78f8a2019-10-04 09:59:00 -0400338 int summary = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700339 int max = 0;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400340 vlib_main_t **stat_vms = 0, *stat_vm;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700341
342 /* Suppress nodes with zero calls since last clear */
343 if (unformat (input, "brief") || unformat (input, "b"))
Dave Barach9b8ffd92016-07-08 08:13:45 -0400344 brief = 1;
345 if (unformat (input, "verbose") || unformat (input, "v"))
346 brief = 0;
347 if (unformat (input, "max") || unformat (input, "m"))
348 max = 1;
Dave Barachac78f8a2019-10-04 09:59:00 -0400349 if (unformat (input, "summary") || unformat (input, "sum")
350 || unformat (input, "su"))
351 summary = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700352
Dave Barach80f54e22017-03-08 19:08:56 -0500353 for (i = 0; i < vec_len (vlib_mains); i++)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400354 {
Dave Barach80f54e22017-03-08 19:08:56 -0500355 stat_vm = vlib_mains[i];
356 if (stat_vm)
357 vec_add1 (stat_vms, stat_vm);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400358 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700359
Dave Barach9b8ffd92016-07-08 08:13:45 -0400360 /*
Ed Warnickecb9cada2015-12-08 15:45:58 -0700361 * Barrier sync across stats scraping.
362 * Otherwise, the counts will be grossly inaccurate.
363 */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400364 vlib_worker_thread_barrier_sync (vm);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700365
366 for (j = 0; j < vec_len (stat_vms); j++)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400367 {
368 stat_vm = stat_vms[j];
369 nm = &stat_vm->node_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700370
Dave Barach9b8ffd92016-07-08 08:13:45 -0400371 for (i = 0; i < vec_len (nm->nodes); i++)
372 {
373 n = nm->nodes[i];
374 vlib_node_sync_stats (stat_vm, n);
375 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700376
Dave Barach9b8ffd92016-07-08 08:13:45 -0400377 nodes = vec_dup (nm->nodes);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700378
Dave Barach9b8ffd92016-07-08 08:13:45 -0400379 vec_add1 (node_dups, nodes);
Dave Baracha8df85c2019-10-01 13:34:23 -0400380 vec_add1 (internal_node_vector_rates,
381 vlib_internal_node_vector_rate (stat_vm));
Dave Barach9b8ffd92016-07-08 08:13:45 -0400382 }
383 vlib_worker_thread_barrier_release (vm);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700384
385
386 for (j = 0; j < vec_len (stat_vms); j++)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400387 {
388 stat_vm = stat_vms[j];
389 nodes = node_dups[j];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700390
Dave Barach9b8ffd92016-07-08 08:13:45 -0400391 vec_sort_with_function (nodes, node_cmp);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700392
Dave Barach9b8ffd92016-07-08 08:13:45 -0400393 n_input = n_output = n_drop = n_punt = n_clocks = 0;
394 n_internal_vectors = n_internal_calls = 0;
395 for (i = 0; i < vec_len (nodes); i++)
396 {
397 n = nodes[i];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700398
Dave Barach9b8ffd92016-07-08 08:13:45 -0400399 l = n->stats_total.clocks - n->stats_last_clear.clocks;
400 n_clocks += l;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700401
Dave Barach9b8ffd92016-07-08 08:13:45 -0400402 v = n->stats_total.vectors - n->stats_last_clear.vectors;
403 c = n->stats_total.calls - n->stats_last_clear.calls;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700404
Dave Barach9b8ffd92016-07-08 08:13:45 -0400405 switch (n->type)
406 {
407 default:
408 continue;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700409
Dave Barach9b8ffd92016-07-08 08:13:45 -0400410 case VLIB_NODE_TYPE_INTERNAL:
411 n_output += (n->flags & VLIB_NODE_FLAG_IS_OUTPUT) ? v : 0;
412 n_drop += (n->flags & VLIB_NODE_FLAG_IS_DROP) ? v : 0;
413 n_punt += (n->flags & VLIB_NODE_FLAG_IS_PUNT) ? v : 0;
414 if (!(n->flags & VLIB_NODE_FLAG_IS_OUTPUT))
415 {
416 n_internal_vectors += v;
417 n_internal_calls += c;
418 }
419 if (n->flags & VLIB_NODE_FLAG_IS_HANDOFF)
420 n_input += v;
421 break;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700422
Dave Barach9b8ffd92016-07-08 08:13:45 -0400423 case VLIB_NODE_TYPE_INPUT:
424 n_input += v;
425 break;
426 }
427 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700428
Dave Barach80f54e22017-03-08 19:08:56 -0500429 if (vec_len (vlib_mains) > 1)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400430 {
431 vlib_worker_thread_t *w = vlib_worker_threads + j;
432 if (j > 0)
433 vlib_cli_output (vm, "---------------");
Ed Warnickecb9cada2015-12-08 15:45:58 -0700434
Mohsin Kazmi5d64c782018-09-11 20:27:09 +0200435 if (w->cpu_id > -1)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400436 vlib_cli_output (vm, "Thread %d %s (lcore %u)", j, w->name,
Mohsin Kazmi5d64c782018-09-11 20:27:09 +0200437 w->cpu_id);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400438 else
439 vlib_cli_output (vm, "Thread %d %s", j, w->name);
440 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700441
Dave Barach9b8ffd92016-07-08 08:13:45 -0400442 dt = time_now - nm->time_last_runtime_stats_clear;
443 vlib_cli_output
444 (vm,
Dave Baracha8df85c2019-10-01 13:34:23 -0400445 "Time %.1f, %f sec internal node vector rate %.2f \n"
446 " vector rates in %.4e, out %.4e, drop %.4e, punt %.4e",
Dave Barach9b8ffd92016-07-08 08:13:45 -0400447 dt,
Dave Baracha8df85c2019-10-01 13:34:23 -0400448 vlib_get_stat_segment_update_rate (),
449 internal_node_vector_rates[j],
Dave Barach9b8ffd92016-07-08 08:13:45 -0400450 (f64) n_input / dt,
451 (f64) n_output / dt, (f64) n_drop / dt, (f64) n_punt / dt);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700452
Dave Barachac78f8a2019-10-04 09:59:00 -0400453 if (summary == 0)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400454 {
Dave Barachac78f8a2019-10-04 09:59:00 -0400455 vlib_cli_output (vm, "%U", format_vlib_node_stats, stat_vm,
456 0, max);
457 for (i = 0; i < vec_len (nodes); i++)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400458 {
Dave Barachac78f8a2019-10-04 09:59:00 -0400459 c =
460 nodes[i]->stats_total.calls -
461 nodes[i]->stats_last_clear.calls;
462 d =
463 nodes[i]->stats_total.suspends -
464 nodes[i]->stats_last_clear.suspends;
465 if (c || d || !brief)
466 {
467 vlib_cli_output (vm, "%U", format_vlib_node_stats,
468 stat_vm, nodes[i], max);
469 }
Dave Barach9b8ffd92016-07-08 08:13:45 -0400470 }
471 }
472 vec_free (nodes);
473 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700474 vec_free (stat_vms);
475 vec_free (node_dups);
Dave Baracha8df85c2019-10-01 13:34:23 -0400476 vec_free (internal_node_vector_rates);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700477 }
478
479 return 0;
480}
481
Dave Barach9b8ffd92016-07-08 08:13:45 -0400482/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700483VLIB_CLI_COMMAND (show_node_runtime_command, static) = {
484 .path = "show runtime",
485 .short_help = "Show packet processing runtime",
486 .function = show_node_runtime,
487 .is_mp_safe = 1,
488};
Dave Barach9b8ffd92016-07-08 08:13:45 -0400489/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700490
491static clib_error_t *
492clear_node_runtime (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400493 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700494{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400495 vlib_node_main_t *nm;
496 vlib_node_t *n;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700497 int i, j;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400498 vlib_main_t **stat_vms = 0, *stat_vm;
499 vlib_node_runtime_t *r;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700500
Dave Barach80f54e22017-03-08 19:08:56 -0500501 for (i = 0; i < vec_len (vlib_mains); i++)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700502 {
Dave Barach80f54e22017-03-08 19:08:56 -0500503 stat_vm = vlib_mains[i];
504 if (stat_vm)
505 vec_add1 (stat_vms, stat_vm);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700506 }
Dave Barach9b8ffd92016-07-08 08:13:45 -0400507
508 vlib_worker_thread_barrier_sync (vm);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700509
510 for (j = 0; j < vec_len (stat_vms); j++)
511 {
512 stat_vm = stat_vms[j];
513 nm = &stat_vm->node_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700514
Dave Barach9b8ffd92016-07-08 08:13:45 -0400515 for (i = 0; i < vec_len (nm->nodes); i++)
516 {
517 n = nm->nodes[i];
518 vlib_node_sync_stats (stat_vm, n);
519 n->stats_last_clear = n->stats_total;
520
521 r = vlib_node_get_runtime (stat_vm, n->index);
522 r->max_clock = 0;
523 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700524 /* Note: input/output rates computed using vlib_global_main */
525 nm->time_last_runtime_stats_clear = vlib_time_now (vm);
526 }
527
Dave Barach9b8ffd92016-07-08 08:13:45 -0400528 vlib_worker_thread_barrier_release (vm);
529
Ed Warnickecb9cada2015-12-08 15:45:58 -0700530 vec_free (stat_vms);
531
532 return 0;
533}
534
Dave Barach9b8ffd92016-07-08 08:13:45 -0400535/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700536VLIB_CLI_COMMAND (clear_node_runtime_command, static) = {
537 .path = "clear runtime",
538 .short_help = "Clear packet processing runtime statistics",
539 .function = clear_node_runtime,
540};
Dave Barach9b8ffd92016-07-08 08:13:45 -0400541/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700542
Damjan Marion69abe442018-08-27 22:43:23 +0200543static clib_error_t *
544show_node (vlib_main_t * vm, unformat_input_t * input,
545 vlib_cli_command_t * cmd)
546{
547 unformat_input_t _line_input, *line_input = &_line_input;
Paul Vinciguerra98afc712018-09-25 10:02:07 -0700548 clib_error_t *error = 0;
Damjan Marion69abe442018-08-27 22:43:23 +0200549 vlib_node_main_t *nm = &vm->node_main;
550 vlib_node_t *n;
551 u8 *s = 0, *s2 = 0;
552 u32 i, node_index = ~0;
553 char *type_str;
Paul Vinciguerra98afc712018-09-25 10:02:07 -0700554 u8 valid_node_name = 0;
Damjan Marion69abe442018-08-27 22:43:23 +0200555
556 if (!unformat_user (input, unformat_line_input, line_input))
557 return 0;
558
559 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
560 {
Paul Vinciguerra98afc712018-09-25 10:02:07 -0700561 if (unformat (line_input, "index %u", &node_index))
Damjan Marion69abe442018-08-27 22:43:23 +0200562 ;
563 else
Paul Vinciguerra98afc712018-09-25 10:02:07 -0700564 if (unformat (line_input, "%U", unformat_vlib_node, vm, &node_index))
565 valid_node_name = 1;
566 else if (!valid_node_name)
567 error = clib_error_return (0, "unknown node name: '%U'",
568 format_unformat_error, line_input);
569 else
570 error = clib_error_return (0, "unknown input '%U'",
571 format_unformat_error, line_input);
Filip Tehlarbe0ffbc2019-07-09 13:52:26 +0000572
573 if (error)
574 break;
Damjan Marion69abe442018-08-27 22:43:23 +0200575 }
Paul Vinciguerra98afc712018-09-25 10:02:07 -0700576
Damjan Marion69abe442018-08-27 22:43:23 +0200577 unformat_free (line_input);
578
Paul Vinciguerra98afc712018-09-25 10:02:07 -0700579 if (error)
580 return error;
581
Damjan Marion69abe442018-08-27 22:43:23 +0200582 if (node_index >= vec_len (vm->node_main.nodes))
583 return clib_error_return (0, "please specify valid node");
584
585 n = vlib_get_node (vm, node_index);
586 vlib_node_sync_stats (vm, n);
587
588 switch (n->type)
589 {
590 case VLIB_NODE_TYPE_INTERNAL:
591 type_str = "internal";
592 break;
593 case VLIB_NODE_TYPE_INPUT:
594 type_str = "input";
595 break;
596 case VLIB_NODE_TYPE_PRE_INPUT:
597 type_str = "pre-input";
598 break;
599 case VLIB_NODE_TYPE_PROCESS:
600 type_str = "process";
601 break;
602 default:
603 type_str = "unknown";
604 }
605
606 if (n->sibling_of)
607 s = format (s, ", sibling-of %s", n->sibling_of);
608
609 vlib_cli_output (vm, "node %s, type %s, state %U, index %d%v\n",
610 n->name, type_str, format_vlib_node_state, vm, n,
611 n->index, s);
612 vec_reset_length (s);
613
614 if (n->node_fn_registrations)
615 {
616 vlib_node_fn_registration_t *fnr = n->node_fn_registrations;
617 while (fnr)
618 {
619 if (vec_len (s) == 0)
620 s = format (s, "\n %-15s %=8s %6s",
621 "Name", "Priority", "Active");
622 s = format (s, "\n %-15s %=8u %=6s", fnr->name, fnr->priority,
623 fnr->function == n->function ? "yes" : "");
624 fnr = fnr->next_registration;
625 }
626 }
627 else
Paul Vinciguerrabdc0e6b2018-09-22 05:32:50 -0700628 s = format (s, "\n default only");
Damjan Marion69abe442018-08-27 22:43:23 +0200629 vlib_cli_output (vm, " node function variants:%v\n", s);
630 vec_reset_length (s);
631
632 for (i = 0; i < vec_len (n->next_nodes); i++)
633 {
634 vlib_node_t *pn;
635 if (n->next_nodes[i] == VLIB_INVALID_NODE_INDEX)
636 continue;
637
638 pn = vec_elt (nm->nodes, n->next_nodes[i]);
639
640 if (vec_len (s) == 0)
641 s = format (s, "\n %10s %10s %=30s %8s",
642 "next-index", "node-index", "Node", "Vectors");
643
644 s = format (s, "\n %=10u %=10u %-30v %=8llu", i, n->next_nodes[i],
645 pn->name, vec_elt (n->n_vectors_by_next_node, i));
646 }
647
648 if (vec_len (s) == 0)
649 s = format (s, "\n none");
650 vlib_cli_output (vm, "\n next nodes:%v\n", s);
651 vec_reset_length (s);
652
653 if (n->type == VLIB_NODE_TYPE_INTERNAL)
654 {
655 int j = 0;
656 /* *INDENT-OFF* */
657 clib_bitmap_foreach (i, n->prev_node_bitmap, ({
658 vlib_node_t *pn = vlib_get_node (vm, i);
659 if (j++ % 3 == 0)
660 s = format (s, "\n ");
661 s2 = format (s2, "%v (%u)", pn->name, i);
662 s = format (s, "%-35v", s2);
663 vec_reset_length (s2);
664 }));
665 /* *INDENT-ON* */
666
667 if (vec_len (s) == 0)
668 s = format (s, "\n none");
669 vlib_cli_output (vm, "\n known previous nodes:%v\n", s);
670 vec_reset_length (s);
671 }
672
673 vec_free (s);
674 vec_free (s2);
675 return 0;
676}
677
678/* *INDENT-OFF* */
679VLIB_CLI_COMMAND (show_node_command, static) = {
680 .path = "show node",
681 .short_help = "show node [index] <node-name | node-index>",
682 .function = show_node,
683};
684
685static clib_error_t *
686set_node_fn(vlib_main_t * vm, unformat_input_t * input, vlib_cli_command_t * cmd)
687{
688 unformat_input_t _line_input, *line_input = &_line_input;
689 u32 node_index;
690 vlib_node_t *n;
691 clib_error_t *err = 0;
692 vlib_node_fn_registration_t *fnr;
693 u8 *variant = 0;
694
695 if (!unformat_user (input, unformat_line_input, line_input))
696 return 0;
697
698 if (!unformat (line_input, "%U", unformat_vlib_node, vm, &node_index))
699 {
700 err = clib_error_return (0, "please specify valid node name");
701 goto done;
702 }
703
704 if (!unformat (line_input, "%s", &variant))
705 {
Paul Vinciguerrabdc0e6b2018-09-22 05:32:50 -0700706 err = clib_error_return (0, "please specify node functional variant");
Damjan Marion69abe442018-08-27 22:43:23 +0200707 goto done;
708 }
709
710 n = vlib_get_node (vm, node_index);
711
712 if (n->node_fn_registrations == 0)
713 {
Paul Vinciguerrabdc0e6b2018-09-22 05:32:50 -0700714 err = clib_error_return (0, "node doesn't have functional variants");
Damjan Marion69abe442018-08-27 22:43:23 +0200715 goto done;
716 }
717
718 fnr = n->node_fn_registrations;
719 vec_add1 (variant, 0);
720
721 while (fnr)
722 {
723 if (!strncmp (fnr->name, (char *) variant, vec_len (variant) - 1))
724 {
725 int i;
726
727 n->function = fnr->function;
728
729 for (i = 0; i < vec_len (vlib_mains); i++)
730 {
731 vlib_node_runtime_t *nrt;
732 nrt = vlib_node_get_runtime (vlib_mains[i], n->index);
733 nrt->function = fnr->function;
734 }
735 goto done;
736 }
737 fnr = fnr->next_registration;
738 }
739
Paul Vinciguerrabdc0e6b2018-09-22 05:32:50 -0700740 err = clib_error_return (0, "node functional variant '%s' not found", variant);
Damjan Marion69abe442018-08-27 22:43:23 +0200741
742done:
743 vec_free (variant);
744 unformat_free (line_input);
745 return err;
746}
747
748/* *INDENT-OFF* */
749VLIB_CLI_COMMAND (set_node_fn_command, static) = {
750 .path = "set node function",
751 .short_help = "set node function <node-name> <variant-name>",
752 .function = set_node_fn,
753};
754/* *INDENT-ON* */
755
Ed Warnickecb9cada2015-12-08 15:45:58 -0700756/* Dummy function to get us linked in. */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400757void
758vlib_node_cli_reference (void)
759{
760}
761
762/*
763 * fd.io coding-style-patch-verification: ON
764 *
765 * Local Variables:
766 * eval: (c-set-style "gnu")
767 * End:
768 */