d7c7d11aedb2fff5af33e3080bb0eaa3b69a5d44
[vpp.git] / src / vlib / node_cli.c
1 /*
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
40 #include <sys/types.h>
41 #include <sys/stat.h>
42 #include <fcntl.h>
43 #include <vlib/vlib.h>
44 #include <vlib/threads.h>
45 #include <math.h>
46
47 static int
48 node_cmp (void *a1, void *a2)
49 {
50   vlib_node_t **n1 = a1;
51   vlib_node_t **n2 = a2;
52
53   return vec_cmp (n1[0]->name, n2[0]->name);
54 }
55
56 static clib_error_t *
57 show_node_graph (vlib_main_t * vm,
58                  unformat_input_t * input, vlib_cli_command_t * cmd)
59 {
60   vlib_node_main_t *nm = &vm->node_main;
61   vlib_node_t *n;
62   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     {
73       vlib_node_t **nodes = vec_dup (nm->nodes);
74       uword i;
75
76       vec_sort_with_function (nodes, node_cmp);
77
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
87 /* *INDENT-OFF* */
88 VLIB_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 };
93 /* *INDENT-ON* */
94
95 static clib_error_t *
96 show_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;
101   vlib_node_t **nodes = nm->nodes;
102   u8 *chroot_filename = 0;
103   int fd;
104   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;
108
109   fd = -1;
110   /* Get a line of input. */
111   if (unformat_user (input, unformat_line_input, line_input))
112     {
113       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);
132     }
133
134   /*both is set to true if calls_filter and vectors_filter are, or neither */
135   both = filter & (!(calls_filter ^ vectors_filter));
136
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
149   clib_bitmap_alloc (active, vec_len (nodes));
150   clib_bitmap_set_region (active, 0, 1, vec_len (nodes));
151   if (filter)
152     {
153       /*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++)
204         {
205           vlib_node_t *n;
206           n = nm->nodes[j];
207           vlib_node_sync_stats (vm, n);
208         }
209
210       /* 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);
213       for (i = 1; i < vlib_get_n_threads (); i++)
214         {
215           vlib_node_main_t *nm_clone;
216           vlib_main_t *vm_clone;
217           vlib_node_runtime_t *rt;
218           vlib_node_t *n;
219
220           vm_clone = vlib_get_main_by_index (i);
221           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             }
270         }
271     }
272
273   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");
289
290   if (fd >= 0)
291     {
292       /*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);
299     }
300
301   clib_bitmap_free (active);
302   vec_free (chroot_filename);
303   if (filter)
304     vec_free (nodes);
305   if (fd >= 0)
306     close (fd);
307   return error;
308 }
309
310 /*?
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
313  * "clear run" command) are selected and they are scaled and colored according
314  * 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 ?*/
326 /* *INDENT-OFF* */
327 VLIB_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,
331   .is_mp_safe = 1,
332 };
333 /* *INDENT-ON* */
334
335 static u8 *
336 format_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
381 static u8 *
382 format_vlib_node_stats (u8 * s, va_list * va)
383 {
384   vlib_main_t *vm = va_arg (*va, vlib_main_t *);
385   vlib_node_t *n = va_arg (*va, vlib_node_t *);
386   int max = va_arg (*va, int);
387   f64 v;
388   u8 *ns;
389   u8 *misc_info = 0;
390   u64 c, p, l, d;
391   f64 x;
392   f64 maxc, maxcn;
393   u32 maxn;
394   u32 indent;
395
396   if (!n)
397     {
398       if (max)
399         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");
403       else
404         s = format (s,
405                     "%=30s%=12s%=16s%=16s%=16s%=16s%=16s",
406                     "Name", "State", "Calls", "Vectors", "Suspends",
407                     "Clocks", "Vectors/Call");
408       return s;
409     }
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;
417   maxc = (f64) n->stats_total.max_clock;
418   maxn = n->stats_total.max_clock_n;
419   if (n->stats_total.max_clock_n)
420     maxcn = (f64) n->stats_total.max_clock / (f64) maxn;
421   else
422     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;
432
433   if (c > 0)
434     v = (double) p / (double) c;
435   else
436     v = 0;
437
438   if (n->type == VLIB_NODE_TYPE_PROCESS)
439     {
440       vlib_process_t *p = vlib_get_process_from_node (vm, n);
441
442       /* Show processes with events pending.  This helps spot bugs where events are not
443          being handled. */
444       if (!clib_bitmap_is_zero (p->non_empty_event_type_bitmap))
445         misc_info = format (misc_info, "events pending, ");
446     }
447   ns = n->name;
448
449   if (max)
450     s = format (s, "%-30v%=17.2e%=16d%=16.2e%=16.2e%=16.2e",
451                 ns, maxc, maxn, maxcn, x, v);
452   else
453     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);
455
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
468 f64 vlib_get_stat_segment_update_rate (void) __attribute__ ((weak));
469 f64
470 vlib_get_stat_segment_update_rate (void)
471 {
472   return 1e70;
473 }
474
475 static clib_error_t *
476 show_node_runtime (vlib_main_t * vm,
477                    unformat_input_t * input, vlib_cli_command_t * cmd)
478 {
479   vlib_node_main_t *nm = &vm->node_main;
480   vlib_node_t *n;
481   f64 time_now;
482   u32 node_index;
483   vlib_node_t ***node_dups = 0;
484   f64 *internal_node_vector_rates = 0;
485
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     {
497       vlib_node_t **nodes;
498       uword i, j;
499       f64 dt;
500       u64 n_input, n_output, n_drop, n_punt;
501       u64 n_clocks, l, v, c, d;
502       int brief = 1;
503       int summary = 0;
504       int max = 0;
505       vlib_main_t **stat_vms = 0, *stat_vm;
506
507       /* Suppress nodes with zero calls since last clear */
508       if (unformat (input, "brief") || unformat (input, "b"))
509         brief = 1;
510       if (unformat (input, "verbose") || unformat (input, "v"))
511         brief = 0;
512       if (unformat (input, "max") || unformat (input, "m"))
513         max = 1;
514       if (unformat (input, "summary") || unformat (input, "sum")
515           || unformat (input, "su"))
516         summary = 1;
517
518       for (i = 0; i < vlib_get_n_threads (); i++)
519         {
520           stat_vm = vlib_get_main_by_index (i);
521           if (stat_vm)
522             vec_add1 (stat_vms, stat_vm);
523         }
524
525       /*
526        * Barrier sync across stats scraping.
527        * Otherwise, the counts will be grossly inaccurate.
528        */
529       vlib_worker_thread_barrier_sync (vm);
530
531       for (j = 0; j < vec_len (stat_vms); j++)
532         {
533           stat_vm = stat_vms[j];
534           nm = &stat_vm->node_main;
535
536           for (i = 0; i < vec_len (nm->nodes); i++)
537             {
538               n = nm->nodes[i];
539               vlib_node_sync_stats (stat_vm, n);
540             }
541
542           nodes = vec_dup (nm->nodes);
543
544           vec_add1 (node_dups, nodes);
545           vec_add1 (internal_node_vector_rates,
546                     vlib_internal_node_vector_rate (stat_vm));
547         }
548       vlib_worker_thread_barrier_release (vm);
549
550
551       for (j = 0; j < vec_len (stat_vms); j++)
552         {
553           stat_vm = stat_vms[j];
554           nodes = node_dups[j];
555
556           vec_sort_with_function (nodes, node_cmp);
557
558           n_input = n_output = n_drop = n_punt = n_clocks = 0;
559           for (i = 0; i < vec_len (nodes); i++)
560             {
561               n = nodes[i];
562
563               l = n->stats_total.clocks - n->stats_last_clear.clocks;
564               n_clocks += l;
565
566               v = n->stats_total.vectors - n->stats_last_clear.vectors;
567               c = n->stats_total.calls - n->stats_last_clear.calls;
568
569               switch (n->type)
570                 {
571                 default:
572                   continue;
573
574                 case VLIB_NODE_TYPE_INTERNAL:
575                   n_output += (n->flags & VLIB_NODE_FLAG_IS_OUTPUT) ? v : 0;
576                   n_drop += (n->flags & VLIB_NODE_FLAG_IS_DROP) ? v : 0;
577                   n_punt += (n->flags & VLIB_NODE_FLAG_IS_PUNT) ? v : 0;
578                   if (n->flags & VLIB_NODE_FLAG_IS_HANDOFF)
579                     n_input += v;
580                   break;
581
582                 case VLIB_NODE_TYPE_INPUT:
583                   n_input += v;
584                   break;
585                 }
586             }
587
588           if (vlib_get_n_threads () > 1)
589             {
590               vlib_worker_thread_t *w = vlib_worker_threads + j;
591               if (j > 0)
592                 vlib_cli_output (vm, "---------------");
593
594               if (w->cpu_id > -1)
595                 vlib_cli_output (vm, "Thread %d %s (lcore %u)", j, w->name,
596                                  w->cpu_id);
597               else
598                 vlib_cli_output (vm, "Thread %d %s", j, w->name);
599             }
600
601           dt = time_now - nm->time_last_runtime_stats_clear;
602           vlib_cli_output
603             (vm,
604              "Time %.1f, %f sec internal node vector rate %.2f loops/sec %.2f\n"
605              "  vector rates in %.4e, out %.4e, drop %.4e, punt %.4e",
606              dt,
607              vlib_get_stat_segment_update_rate (),
608              internal_node_vector_rates[j],
609              stat_vm->loops_per_second,
610              (f64) n_input / dt,
611              (f64) n_output / dt, (f64) n_drop / dt, (f64) n_punt / dt);
612
613           if (summary == 0)
614             {
615               vlib_cli_output (vm, "%U", format_vlib_node_stats, stat_vm,
616                                0, max);
617               for (i = 0; i < vec_len (nodes); i++)
618                 {
619                   c =
620                     nodes[i]->stats_total.calls -
621                     nodes[i]->stats_last_clear.calls;
622                   d =
623                     nodes[i]->stats_total.suspends -
624                     nodes[i]->stats_last_clear.suspends;
625                   if (c || d || !brief)
626                     {
627                       vlib_cli_output (vm, "%U", format_vlib_node_stats,
628                                        stat_vm, nodes[i], max);
629                     }
630                 }
631             }
632           vec_free (nodes);
633         }
634       vec_free (stat_vms);
635       vec_free (node_dups);
636       vec_free (internal_node_vector_rates);
637     }
638
639   return 0;
640 }
641
642 /* *INDENT-OFF* */
643 VLIB_CLI_COMMAND (show_node_runtime_command, static) = {
644   .path = "show runtime",
645   .short_help = "Show packet processing runtime",
646   .function = show_node_runtime,
647   .is_mp_safe = 1,
648 };
649 /* *INDENT-ON* */
650
651 static clib_error_t *
652 clear_node_runtime (vlib_main_t * vm,
653                     unformat_input_t * input, vlib_cli_command_t * cmd)
654 {
655   vlib_node_main_t *nm;
656   vlib_node_t *n;
657   int i, j;
658   vlib_main_t **stat_vms = 0, *stat_vm;
659   vlib_node_runtime_t *r;
660
661   for (i = 0; i < vlib_get_n_threads (); i++)
662     {
663       stat_vm = vlib_get_main_by_index (i);
664       if (stat_vm)
665         vec_add1 (stat_vms, stat_vm);
666     }
667
668   vlib_worker_thread_barrier_sync (vm);
669
670   for (j = 0; j < vec_len (stat_vms); j++)
671     {
672       stat_vm = stat_vms[j];
673       nm = &stat_vm->node_main;
674
675       for (i = 0; i < vec_len (nm->nodes); i++)
676         {
677           n = nm->nodes[i];
678           vlib_node_sync_stats (stat_vm, n);
679           n->stats_last_clear = n->stats_total;
680
681           r = vlib_node_get_runtime (stat_vm, n->index);
682           r->max_clock = 0;
683         }
684       /* Note: input/output rates computed using vlib_global_main */
685       nm->time_last_runtime_stats_clear = vlib_time_now (vm);
686     }
687
688   vlib_worker_thread_barrier_release (vm);
689
690   vec_free (stat_vms);
691
692   return 0;
693 }
694
695 /* *INDENT-OFF* */
696 VLIB_CLI_COMMAND (clear_node_runtime_command, static) = {
697   .path = "clear runtime",
698   .short_help = "Clear packet processing runtime statistics",
699   .function = clear_node_runtime,
700 };
701 /* *INDENT-ON* */
702
703 static clib_error_t *
704 show_node (vlib_main_t * vm, unformat_input_t * input,
705            vlib_cli_command_t * cmd)
706 {
707   unformat_input_t _line_input, *line_input = &_line_input;
708   clib_error_t *error = 0;
709   vlib_node_main_t *nm = &vm->node_main;
710   vlib_node_t *n;
711   u8 *s = 0, *s2 = 0;
712   u32 i, node_index = ~0, verbose = 0;
713   char *type_str;
714   u8 valid_node_name = 0;
715   u64 cl, ca, v;
716
717   if (!unformat_user (input, unformat_line_input, line_input))
718     return 0;
719
720   while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
721     {
722       if (unformat (line_input, "index %u", &node_index))
723         ;
724       else if (unformat (line_input, "verbose"))
725         verbose = 1;
726       else
727         if (unformat (line_input, "%U", unformat_vlib_node, vm, &node_index))
728         valid_node_name = 1;
729       else if (!valid_node_name)
730         error = clib_error_return (0, "unknown node name: '%U'",
731                                    format_unformat_error, line_input);
732       else
733         error = clib_error_return (0, "unknown input '%U'",
734                                    format_unformat_error, line_input);
735
736       if (error)
737         break;
738     }
739
740   unformat_free (line_input);
741
742   if (error)
743     return error;
744
745   if (node_index >= vec_len (vm->node_main.nodes))
746     return clib_error_return (0, "please specify valid node");
747
748   n = vlib_get_node (vm, node_index);
749   vlib_node_sync_stats (vm, n);
750
751   switch (n->type)
752     {
753     case VLIB_NODE_TYPE_INTERNAL:
754       type_str = "internal";
755       break;
756     case VLIB_NODE_TYPE_INPUT:
757       type_str = "input";
758       break;
759     case VLIB_NODE_TYPE_PRE_INPUT:
760       type_str = "pre-input";
761       break;
762     case VLIB_NODE_TYPE_PROCESS:
763       type_str = "process";
764       break;
765     default:
766       type_str = "unknown";
767     }
768
769   if (n->sibling_of)
770     s = format (s, ", sibling-of %s", n->sibling_of);
771
772   vlib_cli_output (vm, "node %v, type %s, state %U, index %d%v\n",
773                    n->name, type_str, format_vlib_node_state, vm, n,
774                    n->index, s);
775   vec_reset_length (s);
776
777   if (n->node_fn_registrations)
778     {
779       vlib_node_fn_registration_t *fnr = n->node_fn_registrations;
780       vlib_node_fn_variant_t *v;
781       while (fnr)
782         {
783           v = vec_elt_at_index (vm->node_main.variants, fnr->march_variant);
784           if (vec_len (s) == 0)
785             s = format (s, "\n    %-15s  %=8s  %6s  %s", "Name", "Priority",
786                         "Active", "Description");
787           s = format (s, "\n    %-15s  %8d  %=6s  %s", v->suffix, v->priority,
788                       fnr->function == n->function ? "yes" : "", v->desc);
789           fnr = fnr->next_registration;
790         }
791     }
792   else
793     s = format (s, "\n    default only");
794   vlib_cli_output (vm, "  node function variants:%v\n", s);
795   vec_reset_length (s);
796
797   for (i = 0; i < vec_len (n->next_nodes); i++)
798     {
799       vlib_node_t *pn;
800       if (n->next_nodes[i] == VLIB_INVALID_NODE_INDEX)
801         continue;
802
803       pn = vec_elt (nm->nodes, n->next_nodes[i]);
804
805       if (vec_len (s) == 0)
806         s = format (s, "\n    %10s  %10s  %=30s %8s",
807                     "next-index", "node-index", "Node", "Vectors");
808
809       s = format (s, "\n    %=10u  %=10u  %=30v %=8llu", i, n->next_nodes[i],
810                   pn->name, vec_elt (n->n_vectors_by_next_node, i));
811     }
812
813   if (vec_len (s) == 0)
814     s = format (s, "\n    none");
815   vlib_cli_output (vm, "\n  next nodes:%v\n", s);
816   vec_reset_length (s);
817
818   if (n->type == VLIB_NODE_TYPE_INTERNAL)
819     {
820       int j = 0;
821       /* *INDENT-OFF* */
822       clib_bitmap_foreach (i, n->prev_node_bitmap)  {
823             vlib_node_t *pn = vlib_get_node (vm, i);
824             if (j++ % 3 == 0)
825               s = format (s, "\n    ");
826             s2 = format (s2, "%v (%u)", pn->name, i);
827             s = format (s, "%-35v", s2);
828             vec_reset_length (s2);
829           }
830       /* *INDENT-ON* */
831
832       if (vec_len (s) == 0)
833         s = format (s, "\n    none");
834       vlib_cli_output (vm, "\n  known previous nodes:%v\n", s);
835       vec_reset_length (s);
836       vec_free (s2);
837     }
838
839   if (!verbose)
840     goto done;
841
842   s = format (s, "\n%8s %=12s %=12s %=12s %=12s %=12s\n", "Thread", "Calls",
843               "Clocks", "Vectors", "Max Clock", "Max Vectors");
844   for (i = 0; i < vlib_get_n_threads (); i++)
845     {
846       n = vlib_get_node (vlib_get_main_by_index (i), node_index);
847       vlib_node_sync_stats (vlib_get_main_by_index (i), n);
848
849       cl = n->stats_total.clocks - n->stats_last_clear.clocks;
850       ca = n->stats_total.calls - n->stats_last_clear.calls;
851       v = n->stats_total.vectors - n->stats_last_clear.vectors;
852
853       s = format (s, "%=8u %=12lu %=12lu %=12lu %=12u %=12u\n", i, ca, cl, v,
854                   n->stats_total.max_clock, n->stats_total.max_clock_n);
855     }
856
857   vlib_cli_output (vm, "%v", s);
858
859 done:
860
861   vec_free (s);
862   return 0;
863 }
864
865 /* *INDENT-OFF* */
866 VLIB_CLI_COMMAND (show_node_command, static) = {
867   .path = "show node",
868   .short_help = "show node [index] <node-name | node-index>",
869   .function = show_node,
870 };
871
872 static clib_error_t *
873 set_node_fn(vlib_main_t * vm, unformat_input_t * input, vlib_cli_command_t * cmd)
874 {
875   unformat_input_t _line_input, *line_input = &_line_input;
876   u32 node_index, march_variant;
877   vlib_node_t *n;
878   clib_error_t *err = 0;
879
880   if (!unformat_user (input, unformat_line_input, line_input))
881     return 0;
882
883   if (!unformat (line_input, "%U", unformat_vlib_node, vm, &node_index))
884     {
885       err = clib_error_return (0, "please specify valid node name");
886       goto done;
887     }
888
889   if (!unformat (line_input, "%U", unformat_vlib_node_variant, &march_variant))
890     {
891       err = clib_error_return (0, "please specify node function variant");
892       goto done;
893     }
894
895   n = vlib_get_node (vm, node_index);
896
897   if (n->node_fn_registrations == 0)
898     {
899       err = clib_error_return (0, "node doesn't have function variants");
900       goto done;
901     }
902
903   if (vlib_node_set_march_variant (vm, node_index, march_variant))
904     {
905       vlib_node_fn_variant_t *v;
906       v = vec_elt_at_index (vm->node_main.variants, march_variant);
907       err = clib_error_return (0, "node function variant '%s' not found",
908                                v->suffix);
909       goto done;
910     }
911
912
913 done:
914   unformat_free (line_input);
915   return err;
916 }
917
918 /* *INDENT-OFF* */
919 VLIB_CLI_COMMAND (set_node_fn_command, static) = {
920   .path = "set node function",
921   .short_help = "set node function <node-name> <variant-name>",
922   .function = set_node_fn,
923 };
924 /* *INDENT-ON* */
925
926 /* Dummy function to get us linked in. */
927 void
928 vlib_node_cli_reference (void)
929 {
930 }
931
932 /*
933  * fd.io coding-style-patch-verification: ON
934  *
935  * Local Variables:
936  * eval: (c-set-style "gnu")
937  * End:
938  */