blob: a2cae364d9b4452125a7a22c37c8fbbbe1cc2c9a [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>
Arthur de Kerhor156158f2021-02-18 03:09:42 -080045#include <math.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070046
Matus Fabiand2dc3df2015-12-14 10:31:33 -050047static int
Dave Barach9b8ffd92016-07-08 08:13:45 -040048node_cmp (void *a1, void *a2)
Matus Fabiand2dc3df2015-12-14 10:31:33 -050049{
Dave Barach9b8ffd92016-07-08 08:13:45 -040050 vlib_node_t **n1 = a1;
51 vlib_node_t **n2 = a2;
Matus Fabiand2dc3df2015-12-14 10:31:33 -050052
53 return vec_cmp (n1[0]->name, n2[0]->name);
54}
55
Ed Warnickecb9cada2015-12-08 15:45:58 -070056static clib_error_t *
57show_node_graph (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -040058 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -070059{
Dave Barach9b8ffd92016-07-08 08:13:45 -040060 vlib_node_main_t *nm = &vm->node_main;
61 vlib_node_t *n;
Ed Warnickecb9cada2015-12-08 15:45:58 -070062 u32 node_index;
63
64 vlib_cli_output (vm, "%U\n", format_vlib_node_graph, nm, 0);
65
66 if (unformat (input, "%U", unformat_vlib_node, vm, &node_index))
67 {
68 n = vlib_get_node (vm, node_index);
69 vlib_cli_output (vm, "%U\n", format_vlib_node_graph, nm, n);
70 }
71 else
72 {
Dave Barach9b8ffd92016-07-08 08:13:45 -040073 vlib_node_t **nodes = vec_dup (nm->nodes);
Ed Warnickecb9cada2015-12-08 15:45:58 -070074 uword i;
75
Matus Fabiand2dc3df2015-12-14 10:31:33 -050076 vec_sort_with_function (nodes, node_cmp);
Ed Warnickecb9cada2015-12-08 15:45:58 -070077
78 for (i = 0; i < vec_len (nodes); i++)
79 vlib_cli_output (vm, "%U\n\n", format_vlib_node_graph, nm, nodes[i]);
80
81 vec_free (nodes);
82 }
83
84 return 0;
85}
86
Dave Barach9b8ffd92016-07-08 08:13:45 -040087/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -070088VLIB_CLI_COMMAND (show_node_graph_command, static) = {
89 .path = "show vlib graph",
90 .short_help = "Show packet processing node graph",
91 .function = show_node_graph,
92};
Dave Barach9b8ffd92016-07-08 08:13:45 -040093/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -070094
Benoît Ganne362456a2019-01-21 17:41:25 +010095static clib_error_t *
96show_node_graphviz (vlib_main_t * vm,
97 unformat_input_t * input, vlib_cli_command_t * cmd)
98{
99 clib_error_t *error = 0;
100 vlib_node_main_t *nm = &vm->node_main;
Arthur de Kerhor156158f2021-02-18 03:09:42 -0800101 vlib_node_t **nodes = nm->nodes;
Benoît Ganne362456a2019-01-21 17:41:25 +0100102 u8 *chroot_filename = 0;
103 int fd;
Arthur de Kerhor156158f2021-02-18 03:09:42 -0800104 uword *active = 0;
105 u32 i, j;
106 unformat_input_t _line_input, *line_input = &_line_input;
107 u8 filter = 0, calls_filter = 0, vectors_filter = 0, both = 0;
Benoît Ganne362456a2019-01-21 17:41:25 +0100108
Arthur de Kerhor156158f2021-02-18 03:09:42 -0800109 fd = -1;
110 /* Get a line of input. */
111 if (unformat_user (input, unformat_line_input, line_input))
Benoît Ganne362456a2019-01-21 17:41:25 +0100112 {
Arthur de Kerhor156158f2021-02-18 03:09:42 -0800113 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
114 {
115 if (unformat (line_input, "filter"))
116 filter = 1;
117 else if (unformat (line_input, "calls") && filter)
118 calls_filter = 1;
119 else if (unformat (line_input, "vectors") && filter)
120 vectors_filter = 1;
121 else if (unformat (line_input, "file %U", unformat_vlib_tmpfile,
122 &chroot_filename))
123 {
124 fd = open ((char *) chroot_filename,
125 O_CREAT | O_TRUNC | O_WRONLY, 0664);
126 }
127 else
128 return clib_error_return (0, "unknown input `%U'",
129 format_unformat_error, input);
130 }
131 unformat_free (line_input);
Benoît Ganne362456a2019-01-21 17:41:25 +0100132 }
Arthur de Kerhor156158f2021-02-18 03:09:42 -0800133
134 /*both is set to true if calls_filter and vectors_filter are, or neither */
135 both = filter & (!(calls_filter ^ vectors_filter));
Benoît Ganne362456a2019-01-21 17:41:25 +0100136
137#define format__(vm__, fd__, ...) \
138 if ((fd) < 0) \
139 { \
140 vlib_cli_output((vm__), ## __VA_ARGS__); \
141 } \
142 else \
143 { \
144 fdformat((fd__), ## __VA_ARGS__); \
145 }
146
147 format__ (vm, fd, "%s", "digraph {\n");
148
Arthur de Kerhor156158f2021-02-18 03:09:42 -0800149 clib_bitmap_alloc (active, vec_len (nodes));
150 clib_bitmap_set_region (active, 0, 1, vec_len (nodes));
151 if (filter)
Benoît Ganne362456a2019-01-21 17:41:25 +0100152 {
Arthur de Kerhor156158f2021-02-18 03:09:42 -0800153 /*Adding the legend to the dot file*/
154 format__ (vm, fd, "%s",
155 " rankdir=\"LR\"\n nodesep=2\n subgraph cluster_legend {\n "
156 " label=\"Legend\"\n style=\"solid\"\n labelloc = b\n "
157 " subgraph cluster_colors {\n label=\"Packets/Call\"\n "
158 " style=\"solid\"\n labelloc = b\n");
159 format__ (vm, fd, "%s",
160 " 0 [label=\"No packet\", fixedsize=true shape=circle "
161 "width=2 fontsize=17]\n"
162 " 1 [label=\"1-32\", fillcolor=1 style=filled "
163 "colorscheme=ylorrd8 fixedsize=true shape=circle width=2 "
164 "fontsize=17]\n"
165 " 2 [label=\"33-64\", fillcolor=2 style=filled "
166 "colorscheme=ylorrd8 fixedsize=true shape=circle width=2 "
167 "fontsize=17]\n"
168 " 3 [label=\"65-96\", fillcolor=3 style=filled "
169 "colorscheme=ylorrd8 fixedsize=true shape=circle width=2 "
170 "fontsize=17]\n"
171 " 4 [label=\"97-128\", fillcolor=4 style=filled "
172 "colorscheme=ylorrd8 fixedsize=true shape=circle width=2 "
173 "fontsize=17]\n"
174 " 5 [label=\"129-160\", fillcolor=5 style=filled "
175 "colorscheme=ylorrd8 fixedsize=true shape=circle width=2 "
176 "fontsize=17]\n"
177 " 6 [label=\"161-192\", fillcolor=6 style=filled "
178 "colorscheme=ylorrd8 fixedsize=true shape=circle width=2 "
179 "fontsize=17]\n"
180 " 7 [label=\"193-224\", fillcolor=7 style=filled "
181 "colorscheme=ylorrd8 fixedsize=true shape=circle width=2 "
182 "fontsize=17]\n"
183 " 8 [label=\"224+\", fillcolor=8 style=filled "
184 "colorscheme=ylorrd8 fixedsize=true shape=circle width=2 "
185 "fontsize=17]\n");
186 format__ (vm, fd, "%s",
187 " 0 -> 1 -> 2 -> 3 -> 4 [style=\"invis\",weight =100]\n "
188 " 5 -> 6 -> 7 -> 8 [style=\"invis\",weight =100]\n }\n "
189 " subgraph cluster_size {\n label=\"Cycles/Packet\"\n "
190 " style=\"solid\"\n labelloc = b\n");
191 format__ (
192 vm, fd, "%s",
193 " a[label=\"0\",fixedsize=true shape=circle width=1] \n"
194 " b[label=\"10\",fixedsize=true shape=circle width=2 "
195 "fontsize=17]\n"
196 " c[label=\"100\",fixedsize=true shape=circle width=3 "
197 "fontsize=20]\n"
198 " d[label=\"1000\",fixedsize=true shape=circle width=4 "
199 "fontsize=23]\n"
200 " a -> b -> c -> d [style=\"invis\",weight =100]\n }\n }\n");
201
202 vlib_worker_thread_barrier_sync (vm);
203 for (j = 0; j < vec_len (nm->nodes); j++)
Benoît Ganne362456a2019-01-21 17:41:25 +0100204 {
Arthur de Kerhor156158f2021-02-18 03:09:42 -0800205 vlib_node_t *n;
206 n = nm->nodes[j];
207 vlib_node_sync_stats (vm, n);
208 }
Benoît Ganne362456a2019-01-21 17:41:25 +0100209
Arthur de Kerhor156158f2021-02-18 03:09:42 -0800210 /* Updating the stats for multithreaded use cases.
211 * We need to dup the nodes to sum the stats from all threads.*/
212 nodes = vec_dup (nm->nodes);
Damjan Marion6ffb7c62021-03-26 13:06:13 +0100213 for (i = 1; i < vlib_get_n_threads (); i++)
Arthur de Kerhor156158f2021-02-18 03:09:42 -0800214 {
215 vlib_node_main_t *nm_clone;
216 vlib_main_t *vm_clone;
217 vlib_node_runtime_t *rt;
218 vlib_node_t *n;
Benoît Ganne362456a2019-01-21 17:41:25 +0100219
Damjan Marion6ffb7c62021-03-26 13:06:13 +0100220 vm_clone = vlib_get_main_by_index (i);
Arthur de Kerhor156158f2021-02-18 03:09:42 -0800221 nm_clone = &vm_clone->node_main;
222
223 for (j = 0; j < vec_len (nm_clone->nodes); j++)
224 {
225 n = nm_clone->nodes[j];
226
227 rt = vlib_node_get_runtime (vm_clone, n->index);
228 /* Sync the stats directly in the duplicated node.*/
229 vlib_node_runtime_sync_stats_node (nodes[j], rt, 0, 0, 0);
230 }
231 }
232 vlib_worker_thread_barrier_release (vm);
233
234 for (i = 0; i < vec_len (nodes); i++)
235 {
236 u64 p, c, l;
237 c = nodes[i]->stats_total.calls - nodes[i]->stats_last_clear.calls;
238 p =
239 nodes[i]->stats_total.vectors - nodes[i]->stats_last_clear.vectors;
240 l = nodes[i]->stats_total.clocks - nodes[i]->stats_last_clear.clocks;
241
242 if ((both && c > 0 && p > 0) || (calls_filter && c > 0) ||
243 (vectors_filter && p > 0))
244 {
245 format__ (vm, fd, " \"%v\" [shape=circle", nodes[i]->name);
246 /*Changing the size and the font of nodes that receive packets*/
247 if (p > 0)
248 {
249 f64 x = (f64) l / (f64) p;
250 f64 size_ratio = (1 + log10 (x + 1));
251 format__ (vm, fd, " width=%.2f fontsize=%.2f fixedsize=true",
252 size_ratio, 11 + 3 * size_ratio);
253 /*Coloring nodes that are indeed called*/
254 if (c > 0)
255 {
256 u64 color = ((p - 1) / (32 * c)) + 1;
257 color = clib_min (color, 8);
258 format__ (
259 vm, fd,
260 " fillcolor=%u style=filled colorscheme=ylorrd8",
261 color);
262 }
263 }
264 format__ (vm, fd, "]\n");
265 }
266 else
267 {
268 clib_bitmap_set (active, i, 0);
269 }
Benoît Ganne362456a2019-01-21 17:41:25 +0100270 }
271 }
272
Arthur de Kerhor156158f2021-02-18 03:09:42 -0800273 clib_bitmap_foreach (i, active)
274 {
275 for (j = 0; j < vec_len (nodes[i]->next_nodes); j++)
276 {
277 if (nodes[i]->next_nodes[j] == VLIB_INVALID_NODE_INDEX)
278 continue;
279
280 if (!filter || clib_bitmap_get (active, nodes[i]->next_nodes[j]))
281 {
282 format__ (vm, fd, " \"%v\" -> \"%v\"\n", nodes[i]->name,
283 nodes[nodes[i]->next_nodes[j]]->name);
284 }
285 }
286 }
287
288 format__ (vm, fd, "}\n");
Benoît Ganne362456a2019-01-21 17:41:25 +0100289
290 if (fd >= 0)
291 {
Arthur de Kerhor156158f2021-02-18 03:09:42 -0800292 /*Dumping all the nodes saturates dot capacities to render a directed
293 * graph. In this case, prefer using he fdp command to generate an
294 * undirected graph. */
295 const char *soft = filter ? "dot" : "fdp";
296 vlib_cli_output (
297 vm, "vlib graph dumped into `%s'. Run eg. `%s -Tsvg -O %s'.",
298 chroot_filename, soft, chroot_filename);
Benoît Ganne362456a2019-01-21 17:41:25 +0100299 }
300
Arthur de Kerhor156158f2021-02-18 03:09:42 -0800301 clib_bitmap_free (active);
Benoît Ganne362456a2019-01-21 17:41:25 +0100302 vec_free (chroot_filename);
Arthur de Kerhor156158f2021-02-18 03:09:42 -0800303 if (filter)
304 vec_free (nodes);
Benoît Ganne362456a2019-01-21 17:41:25 +0100305 if (fd >= 0)
306 close (fd);
307 return error;
308}
309
Arthur de Kerhor156158f2021-02-18 03:09:42 -0800310/*?
311 * Dump dot files data to draw a graph of all the nodes.
312 * If the argument 'filter' is provided, only the active nodes (since the last
Nathan Skrzypczakecd6b1a2021-09-29 15:35:31 +0200313 * "clear run" command) are selected and they are scaled and colored according
Arthur de Kerhor156158f2021-02-18 03:09:42 -0800314 * to their utilization. You can choose to filter nodes that are called,
315 * nodes that receive vectors or both (default).
316 * The 'file' option allows to save data in a temp file.
317 *
318 * @cliexpar
319 * @clistart
320 * show vlib graphviz
321 * show vlib graphviz filter file tmpfile
322 * show vlib graphviz filter calls file tmpfile
323 * @cliend
324 * @cliexcmd{show vlib graphviz [filter][calls][vectors][file <filename>]}
325?*/
Benoît Ganne362456a2019-01-21 17:41:25 +0100326/* *INDENT-OFF* */
327VLIB_CLI_COMMAND (show_node_graphviz_command, static) = {
328 .path = "show vlib graphviz",
329 .short_help = "Dump packet processing node graph as a graphviz dotfile",
330 .function = show_node_graphviz,
Arthur de Kerhor156158f2021-02-18 03:09:42 -0800331 .is_mp_safe = 1,
Benoît Ganne362456a2019-01-21 17:41:25 +0100332};
333/* *INDENT-ON* */
334
Dave Barach9b8ffd92016-07-08 08:13:45 -0400335static u8 *
Damjan Marion69abe442018-08-27 22:43:23 +0200336format_vlib_node_state (u8 * s, va_list * va)
337{
338 vlib_main_t *vm = va_arg (*va, vlib_main_t *);
339 vlib_node_t *n = va_arg (*va, vlib_node_t *);
340 char *state;
341
342 state = "active";
343 if (n->type == VLIB_NODE_TYPE_PROCESS)
344 {
345 vlib_process_t *p = vlib_get_process_from_node (vm, n);
346
347 switch (p->flags & (VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_CLOCK
348 | VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_EVENT))
349 {
350 default:
351 if (!(p->flags & VLIB_PROCESS_IS_RUNNING))
352 state = "done";
353 break;
354
355 case VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_CLOCK:
356 state = "time wait";
357 break;
358
359 case VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_EVENT:
360 state = "event wait";
361 break;
362
363 case (VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_EVENT | VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_CLOCK):
364 state =
365 "any wait";
366 break;
367 }
368 }
369 else if (n->type != VLIB_NODE_TYPE_INTERNAL)
370 {
371 state = "polling";
372 if (n->state == VLIB_NODE_STATE_DISABLED)
373 state = "disabled";
374 else if (n->state == VLIB_NODE_STATE_INTERRUPT)
375 state = "interrupt wait";
376 }
377
378 return format (s, "%s", state);
379}
380
381static u8 *
Dave Barach9b8ffd92016-07-08 08:13:45 -0400382format_vlib_node_stats (u8 * s, va_list * va)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700383{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400384 vlib_main_t *vm = va_arg (*va, vlib_main_t *);
385 vlib_node_t *n = va_arg (*va, vlib_node_t *);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700386 int max = va_arg (*va, int);
387 f64 v;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400388 u8 *ns;
389 u8 *misc_info = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700390 u64 c, p, l, d;
391 f64 x;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400392 f64 maxc, maxcn;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700393 u32 maxn;
Christophe Fontained3c008d2017-10-02 18:10:54 +0200394 u32 indent;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700395
Dave Barach9b8ffd92016-07-08 08:13:45 -0400396 if (!n)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700397 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400398 if (max)
Dave Barach4d1a8662018-09-10 12:31:15 -0400399 s = format (s,
400 "%=30s%=17s%=16s%=16s%=16s%=16s",
401 "Name", "Max Node Clocks", "Vectors at Max",
402 "Max Clocks", "Avg Clocks", "Avg Vectors/Call");
Ed Warnickecb9cada2015-12-08 15:45:58 -0700403 else
Dave Barach4d1a8662018-09-10 12:31:15 -0400404 s = format (s,
405 "%=30s%=12s%=16s%=16s%=16s%=16s%=16s",
406 "Name", "State", "Calls", "Vectors", "Suspends",
407 "Clocks", "Vectors/Call");
Dave Barach4d1a8662018-09-10 12:31:15 -0400408 return s;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700409 }
410
411 indent = format_get_indent (s);
412
413 l = n->stats_total.clocks - n->stats_last_clear.clocks;
414 c = n->stats_total.calls - n->stats_last_clear.calls;
415 p = n->stats_total.vectors - n->stats_last_clear.vectors;
416 d = n->stats_total.suspends - n->stats_last_clear.suspends;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400417 maxc = (f64) n->stats_total.max_clock;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700418 maxn = n->stats_total.max_clock_n;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400419 if (n->stats_total.max_clock_n)
420 maxcn = (f64) n->stats_total.max_clock / (f64) maxn;
421 else
Ed Warnickecb9cada2015-12-08 15:45:58 -0700422 maxcn = 0.0;
423
424 /* Clocks per packet, per call or per suspend. */
425 x = 0;
426 if (p > 0)
427 x = (f64) l / (f64) p;
428 else if (c > 0)
429 x = (f64) l / (f64) c;
430 else if (d > 0)
431 x = (f64) l / (f64) d;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400432
Ed Warnickecb9cada2015-12-08 15:45:58 -0700433 if (c > 0)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400434 v = (double) p / (double) c;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700435 else
436 v = 0;
437
Ed Warnickecb9cada2015-12-08 15:45:58 -0700438 if (n->type == VLIB_NODE_TYPE_PROCESS)
439 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400440 vlib_process_t *p = vlib_get_process_from_node (vm, n);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700441
442 /* Show processes with events pending. This helps spot bugs where events are not
Dave Barach9b8ffd92016-07-08 08:13:45 -0400443 being handled. */
444 if (!clib_bitmap_is_zero (p->non_empty_event_type_bitmap))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700445 misc_info = format (misc_info, "events pending, ");
Dave Barach9b8ffd92016-07-08 08:13:45 -0400446 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700447 ns = n->name;
448
449 if (max)
450 s = format (s, "%-30v%=17.2e%=16d%=16.2e%=16.2e%=16.2e",
Dave Barach9b8ffd92016-07-08 08:13:45 -0400451 ns, maxc, maxn, maxcn, x, v);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700452 else
Damjan Marion69abe442018-08-27 22:43:23 +0200453 s = format (s, "%-30v%=12U%16Ld%16Ld%16Ld%16.2e%16.2f", ns,
454 format_vlib_node_state, vm, n, c, p, d, x, v);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700455
456 if (ns != n->name)
457 vec_free (ns);
458
459 if (misc_info)
460 {
461 s = format (s, "\n%U%v", format_white_space, indent + 4, misc_info);
462 vec_free (misc_info);
463 }
464
465 return s;
466}
467
Dave Baracha8df85c2019-10-01 13:34:23 -0400468f64 vlib_get_stat_segment_update_rate (void) __attribute__ ((weak));
469f64
470vlib_get_stat_segment_update_rate (void)
471{
472 return 1e70;
473}
474
Ed Warnickecb9cada2015-12-08 15:45:58 -0700475static clib_error_t *
476show_node_runtime (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400477 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700478{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400479 vlib_node_main_t *nm = &vm->node_main;
480 vlib_node_t *n;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700481 f64 time_now;
482 u32 node_index;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400483 vlib_node_t ***node_dups = 0;
Dave Baracha8df85c2019-10-01 13:34:23 -0400484 f64 *internal_node_vector_rates = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700485
486 time_now = vlib_time_now (vm);
487
488 if (unformat (input, "%U", unformat_vlib_node, vm, &node_index))
489 {
490 n = vlib_get_node (vm, node_index);
491 vlib_node_sync_stats (vm, n);
492 vlib_cli_output (vm, "%U\n", format_vlib_node_stats, vm, 0, 0);
493 vlib_cli_output (vm, "%U\n", format_vlib_node_stats, vm, n, 0);
494 }
495 else
496 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400497 vlib_node_t **nodes;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700498 uword i, j;
499 f64 dt;
500 u64 n_input, n_output, n_drop, n_punt;
501 u64 n_internal_vectors, n_internal_calls;
502 u64 n_clocks, l, v, c, d;
503 int brief = 1;
Dave Barachac78f8a2019-10-04 09:59:00 -0400504 int summary = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700505 int max = 0;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400506 vlib_main_t **stat_vms = 0, *stat_vm;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700507
508 /* Suppress nodes with zero calls since last clear */
509 if (unformat (input, "brief") || unformat (input, "b"))
Dave Barach9b8ffd92016-07-08 08:13:45 -0400510 brief = 1;
511 if (unformat (input, "verbose") || unformat (input, "v"))
512 brief = 0;
513 if (unformat (input, "max") || unformat (input, "m"))
514 max = 1;
Dave Barachac78f8a2019-10-04 09:59:00 -0400515 if (unformat (input, "summary") || unformat (input, "sum")
516 || unformat (input, "su"))
517 summary = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700518
Damjan Marion6ffb7c62021-03-26 13:06:13 +0100519 for (i = 0; i < vlib_get_n_threads (); i++)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400520 {
Damjan Marion6ffb7c62021-03-26 13:06:13 +0100521 stat_vm = vlib_get_main_by_index (i);
Dave Barach80f54e22017-03-08 19:08:56 -0500522 if (stat_vm)
523 vec_add1 (stat_vms, stat_vm);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400524 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700525
Dave Barach9b8ffd92016-07-08 08:13:45 -0400526 /*
Ed Warnickecb9cada2015-12-08 15:45:58 -0700527 * Barrier sync across stats scraping.
528 * Otherwise, the counts will be grossly inaccurate.
529 */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400530 vlib_worker_thread_barrier_sync (vm);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700531
532 for (j = 0; j < vec_len (stat_vms); j++)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400533 {
534 stat_vm = stat_vms[j];
535 nm = &stat_vm->node_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700536
Dave Barach9b8ffd92016-07-08 08:13:45 -0400537 for (i = 0; i < vec_len (nm->nodes); i++)
538 {
539 n = nm->nodes[i];
540 vlib_node_sync_stats (stat_vm, n);
541 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700542
Dave Barach9b8ffd92016-07-08 08:13:45 -0400543 nodes = vec_dup (nm->nodes);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700544
Dave Barach9b8ffd92016-07-08 08:13:45 -0400545 vec_add1 (node_dups, nodes);
Dave Baracha8df85c2019-10-01 13:34:23 -0400546 vec_add1 (internal_node_vector_rates,
547 vlib_internal_node_vector_rate (stat_vm));
Dave Barach9b8ffd92016-07-08 08:13:45 -0400548 }
549 vlib_worker_thread_barrier_release (vm);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700550
551
552 for (j = 0; j < vec_len (stat_vms); j++)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400553 {
554 stat_vm = stat_vms[j];
555 nodes = node_dups[j];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700556
Dave Barach9b8ffd92016-07-08 08:13:45 -0400557 vec_sort_with_function (nodes, node_cmp);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700558
Dave Barach9b8ffd92016-07-08 08:13:45 -0400559 n_input = n_output = n_drop = n_punt = n_clocks = 0;
560 n_internal_vectors = n_internal_calls = 0;
561 for (i = 0; i < vec_len (nodes); i++)
562 {
563 n = nodes[i];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700564
Dave Barach9b8ffd92016-07-08 08:13:45 -0400565 l = n->stats_total.clocks - n->stats_last_clear.clocks;
566 n_clocks += l;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700567
Dave Barach9b8ffd92016-07-08 08:13:45 -0400568 v = n->stats_total.vectors - n->stats_last_clear.vectors;
569 c = n->stats_total.calls - n->stats_last_clear.calls;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700570
Dave Barach9b8ffd92016-07-08 08:13:45 -0400571 switch (n->type)
572 {
573 default:
574 continue;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700575
Dave Barach9b8ffd92016-07-08 08:13:45 -0400576 case VLIB_NODE_TYPE_INTERNAL:
577 n_output += (n->flags & VLIB_NODE_FLAG_IS_OUTPUT) ? v : 0;
578 n_drop += (n->flags & VLIB_NODE_FLAG_IS_DROP) ? v : 0;
579 n_punt += (n->flags & VLIB_NODE_FLAG_IS_PUNT) ? v : 0;
580 if (!(n->flags & VLIB_NODE_FLAG_IS_OUTPUT))
581 {
582 n_internal_vectors += v;
583 n_internal_calls += c;
584 }
585 if (n->flags & VLIB_NODE_FLAG_IS_HANDOFF)
586 n_input += v;
587 break;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700588
Dave Barach9b8ffd92016-07-08 08:13:45 -0400589 case VLIB_NODE_TYPE_INPUT:
590 n_input += v;
591 break;
592 }
593 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700594
Damjan Marion6ffb7c62021-03-26 13:06:13 +0100595 if (vlib_get_n_threads () > 1)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400596 {
597 vlib_worker_thread_t *w = vlib_worker_threads + j;
598 if (j > 0)
599 vlib_cli_output (vm, "---------------");
Ed Warnickecb9cada2015-12-08 15:45:58 -0700600
Mohsin Kazmi5d64c782018-09-11 20:27:09 +0200601 if (w->cpu_id > -1)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400602 vlib_cli_output (vm, "Thread %d %s (lcore %u)", j, w->name,
Mohsin Kazmi5d64c782018-09-11 20:27:09 +0200603 w->cpu_id);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400604 else
605 vlib_cli_output (vm, "Thread %d %s", j, w->name);
606 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700607
Dave Barach9b8ffd92016-07-08 08:13:45 -0400608 dt = time_now - nm->time_last_runtime_stats_clear;
609 vlib_cli_output
610 (vm,
Dave Barach000a0292020-02-17 17:07:12 -0500611 "Time %.1f, %f sec internal node vector rate %.2f loops/sec %.2f\n"
Dave Baracha8df85c2019-10-01 13:34:23 -0400612 " vector rates in %.4e, out %.4e, drop %.4e, punt %.4e",
Dave Barach9b8ffd92016-07-08 08:13:45 -0400613 dt,
Dave Baracha8df85c2019-10-01 13:34:23 -0400614 vlib_get_stat_segment_update_rate (),
615 internal_node_vector_rates[j],
Dave Barach000a0292020-02-17 17:07:12 -0500616 stat_vm->loops_per_second,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400617 (f64) n_input / dt,
618 (f64) n_output / dt, (f64) n_drop / dt, (f64) n_punt / dt);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700619
Dave Barachac78f8a2019-10-04 09:59:00 -0400620 if (summary == 0)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400621 {
Dave Barachac78f8a2019-10-04 09:59:00 -0400622 vlib_cli_output (vm, "%U", format_vlib_node_stats, stat_vm,
623 0, max);
624 for (i = 0; i < vec_len (nodes); i++)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400625 {
Dave Barachac78f8a2019-10-04 09:59:00 -0400626 c =
627 nodes[i]->stats_total.calls -
628 nodes[i]->stats_last_clear.calls;
629 d =
630 nodes[i]->stats_total.suspends -
631 nodes[i]->stats_last_clear.suspends;
632 if (c || d || !brief)
633 {
634 vlib_cli_output (vm, "%U", format_vlib_node_stats,
635 stat_vm, nodes[i], max);
636 }
Dave Barach9b8ffd92016-07-08 08:13:45 -0400637 }
638 }
639 vec_free (nodes);
640 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700641 vec_free (stat_vms);
642 vec_free (node_dups);
Dave Baracha8df85c2019-10-01 13:34:23 -0400643 vec_free (internal_node_vector_rates);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700644 }
645
646 return 0;
647}
648
Dave Barach9b8ffd92016-07-08 08:13:45 -0400649/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700650VLIB_CLI_COMMAND (show_node_runtime_command, static) = {
651 .path = "show runtime",
652 .short_help = "Show packet processing runtime",
653 .function = show_node_runtime,
654 .is_mp_safe = 1,
655};
Dave Barach9b8ffd92016-07-08 08:13:45 -0400656/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700657
658static clib_error_t *
659clear_node_runtime (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400660 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700661{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400662 vlib_node_main_t *nm;
663 vlib_node_t *n;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700664 int i, j;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400665 vlib_main_t **stat_vms = 0, *stat_vm;
666 vlib_node_runtime_t *r;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700667
Damjan Marion6ffb7c62021-03-26 13:06:13 +0100668 for (i = 0; i < vlib_get_n_threads (); i++)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700669 {
Damjan Marion6ffb7c62021-03-26 13:06:13 +0100670 stat_vm = vlib_get_main_by_index (i);
Dave Barach80f54e22017-03-08 19:08:56 -0500671 if (stat_vm)
672 vec_add1 (stat_vms, stat_vm);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700673 }
Dave Barach9b8ffd92016-07-08 08:13:45 -0400674
675 vlib_worker_thread_barrier_sync (vm);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700676
677 for (j = 0; j < vec_len (stat_vms); j++)
678 {
679 stat_vm = stat_vms[j];
680 nm = &stat_vm->node_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700681
Dave Barach9b8ffd92016-07-08 08:13:45 -0400682 for (i = 0; i < vec_len (nm->nodes); i++)
683 {
684 n = nm->nodes[i];
685 vlib_node_sync_stats (stat_vm, n);
686 n->stats_last_clear = n->stats_total;
687
688 r = vlib_node_get_runtime (stat_vm, n->index);
689 r->max_clock = 0;
690 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700691 /* Note: input/output rates computed using vlib_global_main */
692 nm->time_last_runtime_stats_clear = vlib_time_now (vm);
693 }
694
Dave Barach9b8ffd92016-07-08 08:13:45 -0400695 vlib_worker_thread_barrier_release (vm);
696
Ed Warnickecb9cada2015-12-08 15:45:58 -0700697 vec_free (stat_vms);
698
699 return 0;
700}
701
Dave Barach9b8ffd92016-07-08 08:13:45 -0400702/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700703VLIB_CLI_COMMAND (clear_node_runtime_command, static) = {
704 .path = "clear runtime",
705 .short_help = "Clear packet processing runtime statistics",
706 .function = clear_node_runtime,
707};
Dave Barach9b8ffd92016-07-08 08:13:45 -0400708/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700709
Damjan Marion69abe442018-08-27 22:43:23 +0200710static clib_error_t *
711show_node (vlib_main_t * vm, unformat_input_t * input,
712 vlib_cli_command_t * cmd)
713{
714 unformat_input_t _line_input, *line_input = &_line_input;
Paul Vinciguerra98afc712018-09-25 10:02:07 -0700715 clib_error_t *error = 0;
Damjan Marion69abe442018-08-27 22:43:23 +0200716 vlib_node_main_t *nm = &vm->node_main;
717 vlib_node_t *n;
718 u8 *s = 0, *s2 = 0;
Florin Coras178ecc02020-03-12 23:26:11 +0000719 u32 i, node_index = ~0, verbose = 0;
Damjan Marion69abe442018-08-27 22:43:23 +0200720 char *type_str;
Paul Vinciguerra98afc712018-09-25 10:02:07 -0700721 u8 valid_node_name = 0;
Florin Coras178ecc02020-03-12 23:26:11 +0000722 u64 cl, ca, v;
Damjan Marion69abe442018-08-27 22:43:23 +0200723
724 if (!unformat_user (input, unformat_line_input, line_input))
725 return 0;
726
727 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
728 {
Paul Vinciguerra98afc712018-09-25 10:02:07 -0700729 if (unformat (line_input, "index %u", &node_index))
Damjan Marion69abe442018-08-27 22:43:23 +0200730 ;
Florin Coras178ecc02020-03-12 23:26:11 +0000731 else if (unformat (line_input, "verbose"))
732 verbose = 1;
Damjan Marion69abe442018-08-27 22:43:23 +0200733 else
Paul Vinciguerra98afc712018-09-25 10:02:07 -0700734 if (unformat (line_input, "%U", unformat_vlib_node, vm, &node_index))
735 valid_node_name = 1;
736 else if (!valid_node_name)
737 error = clib_error_return (0, "unknown node name: '%U'",
738 format_unformat_error, line_input);
739 else
740 error = clib_error_return (0, "unknown input '%U'",
741 format_unformat_error, line_input);
Filip Tehlarbe0ffbc2019-07-09 13:52:26 +0000742
743 if (error)
744 break;
Damjan Marion69abe442018-08-27 22:43:23 +0200745 }
Paul Vinciguerra98afc712018-09-25 10:02:07 -0700746
Damjan Marion69abe442018-08-27 22:43:23 +0200747 unformat_free (line_input);
748
Paul Vinciguerra98afc712018-09-25 10:02:07 -0700749 if (error)
750 return error;
751
Damjan Marion69abe442018-08-27 22:43:23 +0200752 if (node_index >= vec_len (vm->node_main.nodes))
753 return clib_error_return (0, "please specify valid node");
754
755 n = vlib_get_node (vm, node_index);
756 vlib_node_sync_stats (vm, n);
757
758 switch (n->type)
759 {
760 case VLIB_NODE_TYPE_INTERNAL:
761 type_str = "internal";
762 break;
763 case VLIB_NODE_TYPE_INPUT:
764 type_str = "input";
765 break;
766 case VLIB_NODE_TYPE_PRE_INPUT:
767 type_str = "pre-input";
768 break;
769 case VLIB_NODE_TYPE_PROCESS:
770 type_str = "process";
771 break;
772 default:
773 type_str = "unknown";
774 }
775
776 if (n->sibling_of)
777 s = format (s, ", sibling-of %s", n->sibling_of);
778
Benoît Ganne62d9fda2019-12-16 15:49:47 +0100779 vlib_cli_output (vm, "node %v, type %s, state %U, index %d%v\n",
Damjan Marion69abe442018-08-27 22:43:23 +0200780 n->name, type_str, format_vlib_node_state, vm, n,
781 n->index, s);
782 vec_reset_length (s);
783
784 if (n->node_fn_registrations)
785 {
786 vlib_node_fn_registration_t *fnr = n->node_fn_registrations;
Damjan Mariona31698b2021-03-10 14:35:28 +0100787 vlib_node_fn_variant_t *v;
Damjan Marion69abe442018-08-27 22:43:23 +0200788 while (fnr)
789 {
Damjan Mariona31698b2021-03-10 14:35:28 +0100790 v = vec_elt_at_index (vm->node_main.variants, fnr->march_variant);
Damjan Marion69abe442018-08-27 22:43:23 +0200791 if (vec_len (s) == 0)
Damjan Mariona31698b2021-03-10 14:35:28 +0100792 s = format (s, "\n %-15s %=8s %6s %s", "Name", "Priority",
793 "Active", "Description");
794 s = format (s, "\n %-15s %8d %=6s %s", v->suffix, v->priority,
795 fnr->function == n->function ? "yes" : "", v->desc);
Damjan Marion69abe442018-08-27 22:43:23 +0200796 fnr = fnr->next_registration;
797 }
798 }
799 else
Paul Vinciguerrabdc0e6b2018-09-22 05:32:50 -0700800 s = format (s, "\n default only");
Damjan Marion69abe442018-08-27 22:43:23 +0200801 vlib_cli_output (vm, " node function variants:%v\n", s);
802 vec_reset_length (s);
803
804 for (i = 0; i < vec_len (n->next_nodes); i++)
805 {
806 vlib_node_t *pn;
807 if (n->next_nodes[i] == VLIB_INVALID_NODE_INDEX)
808 continue;
809
810 pn = vec_elt (nm->nodes, n->next_nodes[i]);
811
812 if (vec_len (s) == 0)
813 s = format (s, "\n %10s %10s %=30s %8s",
814 "next-index", "node-index", "Node", "Vectors");
815
Florin Coras178ecc02020-03-12 23:26:11 +0000816 s = format (s, "\n %=10u %=10u %=30v %=8llu", i, n->next_nodes[i],
Damjan Marion69abe442018-08-27 22:43:23 +0200817 pn->name, vec_elt (n->n_vectors_by_next_node, i));
818 }
819
820 if (vec_len (s) == 0)
821 s = format (s, "\n none");
822 vlib_cli_output (vm, "\n next nodes:%v\n", s);
823 vec_reset_length (s);
824
825 if (n->type == VLIB_NODE_TYPE_INTERNAL)
826 {
827 int j = 0;
828 /* *INDENT-OFF* */
Damjan Marionf0ca1e82020-12-13 23:26:56 +0100829 clib_bitmap_foreach (i, n->prev_node_bitmap) {
Damjan Marion69abe442018-08-27 22:43:23 +0200830 vlib_node_t *pn = vlib_get_node (vm, i);
831 if (j++ % 3 == 0)
832 s = format (s, "\n ");
833 s2 = format (s2, "%v (%u)", pn->name, i);
834 s = format (s, "%-35v", s2);
835 vec_reset_length (s2);
Damjan Marionf0ca1e82020-12-13 23:26:56 +0100836 }
Damjan Marion69abe442018-08-27 22:43:23 +0200837 /* *INDENT-ON* */
838
839 if (vec_len (s) == 0)
840 s = format (s, "\n none");
841 vlib_cli_output (vm, "\n known previous nodes:%v\n", s);
842 vec_reset_length (s);
Florin Coras178ecc02020-03-12 23:26:11 +0000843 vec_free (s2);
Damjan Marion69abe442018-08-27 22:43:23 +0200844 }
845
Florin Coras178ecc02020-03-12 23:26:11 +0000846 if (!verbose)
847 goto done;
848
849 s = format (s, "\n%8s %=12s %=12s %=12s %=12s %=12s\n", "Thread", "Calls",
850 "Clocks", "Vectors", "Max Clock", "Max Vectors");
Damjan Marion6ffb7c62021-03-26 13:06:13 +0100851 for (i = 0; i < vlib_get_n_threads (); i++)
Florin Coras178ecc02020-03-12 23:26:11 +0000852 {
Damjan Marion6ffb7c62021-03-26 13:06:13 +0100853 n = vlib_get_node (vlib_get_main_by_index (i), node_index);
854 vlib_node_sync_stats (vlib_get_main_by_index (i), n);
Florin Coras178ecc02020-03-12 23:26:11 +0000855
856 cl = n->stats_total.clocks - n->stats_last_clear.clocks;
857 ca = n->stats_total.calls - n->stats_last_clear.calls;
858 v = n->stats_total.vectors - n->stats_last_clear.vectors;
859
860 s = format (s, "%=8u %=12lu %=12lu %=12lu %=12u %=12u\n", i, ca, cl, v,
861 n->stats_total.max_clock, n->stats_total.max_clock_n);
862 }
863
864 vlib_cli_output (vm, "%v", s);
865
866done:
867
Damjan Marion69abe442018-08-27 22:43:23 +0200868 vec_free (s);
Damjan Marion69abe442018-08-27 22:43:23 +0200869 return 0;
870}
871
872/* *INDENT-OFF* */
873VLIB_CLI_COMMAND (show_node_command, static) = {
874 .path = "show node",
875 .short_help = "show node [index] <node-name | node-index>",
876 .function = show_node,
877};
878
879static clib_error_t *
880set_node_fn(vlib_main_t * vm, unformat_input_t * input, vlib_cli_command_t * cmd)
881{
882 unformat_input_t _line_input, *line_input = &_line_input;
Damjan Mariona31698b2021-03-10 14:35:28 +0100883 u32 node_index, march_variant;
Damjan Marion69abe442018-08-27 22:43:23 +0200884 vlib_node_t *n;
885 clib_error_t *err = 0;
Damjan Marion69abe442018-08-27 22:43:23 +0200886
887 if (!unformat_user (input, unformat_line_input, line_input))
888 return 0;
889
890 if (!unformat (line_input, "%U", unformat_vlib_node, vm, &node_index))
891 {
892 err = clib_error_return (0, "please specify valid node name");
893 goto done;
894 }
895
Damjan Mariona31698b2021-03-10 14:35:28 +0100896 if (!unformat (line_input, "%U", unformat_vlib_node_variant, &march_variant))
Damjan Marion69abe442018-08-27 22:43:23 +0200897 {
Damjan Mariona31698b2021-03-10 14:35:28 +0100898 err = clib_error_return (0, "please specify node function variant");
Damjan Marion69abe442018-08-27 22:43:23 +0200899 goto done;
900 }
901
902 n = vlib_get_node (vm, node_index);
903
904 if (n->node_fn_registrations == 0)
905 {
Damjan Mariona31698b2021-03-10 14:35:28 +0100906 err = clib_error_return (0, "node doesn't have function variants");
Damjan Marion69abe442018-08-27 22:43:23 +0200907 goto done;
908 }
909
Damjan Mariona31698b2021-03-10 14:35:28 +0100910 if (vlib_node_set_march_variant (vm, node_index, march_variant))
Damjan Marion69abe442018-08-27 22:43:23 +0200911 {
Damjan Mariona31698b2021-03-10 14:35:28 +0100912 vlib_node_fn_variant_t *v;
913 v = vec_elt_at_index (vm->node_main.variants, march_variant);
914 err = clib_error_return (0, "node function variant '%s' not found",
915 v->suffix);
916 goto done;
Damjan Marion69abe442018-08-27 22:43:23 +0200917 }
918
Damjan Marion69abe442018-08-27 22:43:23 +0200919
920done:
Damjan Marion69abe442018-08-27 22:43:23 +0200921 unformat_free (line_input);
922 return err;
923}
924
925/* *INDENT-OFF* */
926VLIB_CLI_COMMAND (set_node_fn_command, static) = {
927 .path = "set node function",
928 .short_help = "set node function <node-name> <variant-name>",
929 .function = set_node_fn,
930};
931/* *INDENT-ON* */
932
Ed Warnickecb9cada2015-12-08 15:45:58 -0700933/* Dummy function to get us linked in. */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400934void
935vlib_node_cli_reference (void)
936{
937}
938
939/*
940 * fd.io coding-style-patch-verification: ON
941 *
942 * Local Variables:
943 * eval: (c-set-style "gnu")
944 * End:
945 */