FD.io VPP  v20.09-64-g4f7b92f0a
Vector Packet Processing
main.c
Go to the documentation of this file.
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  * main.c: main vector processing loop
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 <math.h>
41 #include <vppinfra/format.h>
42 #include <vlib/vlib.h>
43 #include <vlib/threads.h>
45 
46 #include <vlib/unix/unix.h>
47 
48 /* Actually allocate a few extra slots of vector data to support
49  speculative vector enqueues which overflow vector data in next frame. */
50 #define VLIB_FRAME_SIZE_ALLOC (VLIB_FRAME_SIZE + 4)
51 
53 vlib_frame_bytes (u32 n_scalar_bytes, u32 n_vector_bytes)
54 {
55  u32 n_bytes;
56 
57  /* Make room for vlib_frame_t plus scalar arguments. */
58  n_bytes = vlib_frame_vector_byte_offset (n_scalar_bytes);
59 
60  /* Make room for vector arguments.
61  Allocate a few extra slots of vector data to support
62  speculative vector enqueues which overflow vector data in next frame. */
63 #define VLIB_FRAME_SIZE_EXTRA 4
64  n_bytes += (VLIB_FRAME_SIZE + VLIB_FRAME_SIZE_EXTRA) * n_vector_bytes;
65 
66  /* Magic number is first 32bit number after vector data.
67  Used to make sure that vector data is never overrun. */
68 #define VLIB_FRAME_MAGIC (0xabadc0ed)
69  n_bytes += sizeof (u32);
70 
71  /* Pad to cache line. */
72  n_bytes = round_pow2 (n_bytes, CLIB_CACHE_LINE_BYTES);
73 
74  return n_bytes;
75 }
76 
79 {
80  void *p = f;
81 
83 
85 
86  return p;
87 }
88 
89 static inline vlib_frame_size_t *
91  u32 n_scalar_bytes, u32 n_vector_bytes)
92 {
93 #ifdef VLIB_SUPPORTS_ARBITRARY_SCALAR_SIZES
94  uword key = (n_scalar_bytes << 16) | n_vector_bytes;
95  uword *p, i;
96 
97  p = hash_get (nm->frame_size_hash, key);
98  if (p)
99  i = p[0];
100  else
101  {
102  i = vec_len (nm->frame_sizes);
103  vec_validate (nm->frame_sizes, i);
104  hash_set (nm->frame_size_hash, key, i);
105  }
106 
107  return vec_elt_at_index (nm->frame_sizes, i);
108 #else
109  ASSERT (vlib_frame_bytes (n_scalar_bytes, n_vector_bytes)
110  == (vlib_frame_bytes (0, 4)));
111  return vec_elt_at_index (nm->frame_sizes, 0);
112 #endif
113 }
114 
115 static vlib_frame_t *
117  u32 frame_flags)
118 {
119  vlib_node_main_t *nm = &vm->node_main;
120  vlib_frame_size_t *fs;
121  vlib_node_t *to_node;
122  vlib_frame_t *f;
123  u32 l, n, scalar_size, vector_size;
124 
125  to_node = vlib_get_node (vm, to_node_index);
126 
127  scalar_size = to_node->scalar_size;
128  vector_size = to_node->vector_size;
129 
130  fs = get_frame_size_info (nm, scalar_size, vector_size);
131  n = vlib_frame_bytes (scalar_size, vector_size);
132  if ((l = vec_len (fs->free_frames)) > 0)
133  {
134  /* Allocate from end of free list. */
135  f = fs->free_frames[l - 1];
136  _vec_len (fs->free_frames) = l - 1;
137  }
138  else
139  {
141  }
142 
143  /* Poison frame when debugging. */
144  if (CLIB_DEBUG > 0)
145  clib_memset (f, 0xfe, n);
146 
147  /* Insert magic number. */
148  {
149  u32 *magic;
150 
151  magic = vlib_frame_find_magic (f, to_node);
152  *magic = VLIB_FRAME_MAGIC;
153  }
154 
155  f->frame_flags = VLIB_FRAME_IS_ALLOCATED | frame_flags;
156  f->n_vectors = 0;
157  f->scalar_size = scalar_size;
158  f->vector_size = vector_size;
159  f->flags = 0;
160 
161  fs->n_alloc_frames += 1;
162 
163  return f;
164 }
165 
166 /* Allocate a frame for from FROM_NODE to TO_NODE via TO_NEXT_INDEX.
167  Returns frame index. */
168 static vlib_frame_t *
170  u32 to_next_index)
171 {
172  vlib_node_t *from_node;
173 
174  from_node = vlib_get_node (vm, from_node_runtime->node_index);
175  ASSERT (to_next_index < vec_len (from_node->next_nodes));
176 
177  return vlib_frame_alloc_to_node (vm, from_node->next_nodes[to_next_index],
178  /* frame_flags */ 0);
179 }
180 
181 vlib_frame_t *
183 {
184  vlib_frame_t *f = vlib_frame_alloc_to_node (vm, to_node_index,
185  /* frame_flags */
187  return vlib_get_frame (vm, f);
188 }
189 
190 static inline void
192 {
193  if (CLIB_DEBUG > 0)
194  {
195  int i;
196  u32 *from = vlib_frame_vector_args (f);
197 
198  /* Check for bad buffer index values */
199  for (i = 0; i < f->n_vectors; i++)
200  {
201  if (from[i] == 0)
202  {
203  clib_warning ("BUG: buffer index 0 at index %d", i);
204  ASSERT (0);
205  }
206  else if (from[i] == 0xfefefefe)
207  {
208  clib_warning ("BUG: frame poison pattern at index %d", i);
209  ASSERT (0);
210  }
211  }
212  }
213 }
214 
215 void
217 {
219  vlib_node_t *to_node;
220 
221  if (f->n_vectors == 0)
222  return;
223 
225 
226  to_node = vlib_get_node (vm, to_node_index);
227 
228  vec_add2 (vm->node_main.pending_frames, p, 1);
229 
231  p->frame = vlib_get_frame (vm, f);
232  p->node_runtime_index = to_node->runtime_index;
234 }
235 
236 /* Free given frame. */
237 void
239 {
240  vlib_node_main_t *nm = &vm->node_main;
241  vlib_node_t *node;
242  vlib_frame_size_t *fs;
243 
245 
246  node = vlib_get_node (vm, r->node_index);
247  fs = get_frame_size_info (nm, node->scalar_size, node->vector_size);
248 
250 
251  /* No next frames may point to freed frame. */
252  if (CLIB_DEBUG > 0)
253  {
254  vlib_next_frame_t *nf;
255  vec_foreach (nf, vm->node_main.next_frames) ASSERT (nf->frame != f);
256  }
257 
259 
260  vec_add1 (fs->free_frames, f);
261  ASSERT (fs->n_alloc_frames > 0);
262  fs->n_alloc_frames -= 1;
263 }
264 
265 static clib_error_t *
267  unformat_input_t * input, vlib_cli_command_t * cmd)
268 {
269  vlib_node_main_t *nm = &vm->node_main;
270  vlib_frame_size_t *fs;
271 
272  vlib_cli_output (vm, "%=6s%=12s%=12s", "Size", "# Alloc", "# Free");
273  vec_foreach (fs, nm->frame_sizes)
274  {
275  u32 n_alloc = fs->n_alloc_frames;
276  u32 n_free = vec_len (fs->free_frames);
277 
278  if (n_alloc + n_free > 0)
279  vlib_cli_output (vm, "%=6d%=12d%=12d",
280  fs - nm->frame_sizes, n_alloc, n_free);
281  }
282 
283  return 0;
284 }
285 
286 /* *INDENT-OFF* */
287 VLIB_CLI_COMMAND (show_frame_stats_cli, static) = {
288  .path = "show vlib frame-allocation",
289  .short_help = "Show node dispatch frame statistics",
290  .function = show_frame_stats,
291 };
292 /* *INDENT-ON* */
293 
294 /* Change ownership of enqueue rights to given next node. */
295 static void
297  vlib_node_runtime_t * node_runtime,
298  u32 next_index)
299 {
300  vlib_node_main_t *nm = &vm->node_main;
301  vlib_next_frame_t *next_frame;
302  vlib_node_t *node, *next_node;
303 
304  node = vec_elt (nm->nodes, node_runtime->node_index);
305 
306  /* Only internal & input nodes are allowed to call other nodes. */
308  || node->type == VLIB_NODE_TYPE_INPUT
309  || node->type == VLIB_NODE_TYPE_PROCESS);
310 
311  ASSERT (vec_len (node->next_nodes) == node_runtime->n_next_nodes);
312 
313  next_frame =
314  vlib_node_runtime_get_next_frame (vm, node_runtime, next_index);
315  next_node = vec_elt (nm->nodes, node->next_nodes[next_index]);
316 
317  if (next_node->owner_node_index != VLIB_INVALID_NODE_INDEX)
318  {
319  /* Get frame from previous owner. */
320  vlib_next_frame_t *owner_next_frame;
321  vlib_next_frame_t tmp;
322 
323  owner_next_frame =
325  next_node->owner_node_index,
326  next_node->owner_next_index);
327 
328  /* Swap target next frame with owner's. */
329  tmp = owner_next_frame[0];
330  owner_next_frame[0] = next_frame[0];
331  next_frame[0] = tmp;
332 
333  /*
334  * If next_frame is already pending, we have to track down
335  * all pending frames and fix their next_frame_index fields.
336  */
337  if (next_frame->flags & VLIB_FRAME_PENDING)
338  {
340  if (next_frame->frame != NULL)
341  {
342  vec_foreach (p, nm->pending_frames)
343  {
344  if (p->frame == next_frame->frame)
345  {
346  p->next_frame_index =
347  next_frame - vm->node_main.next_frames;
348  }
349  }
350  }
351  }
352  }
353  else
354  {
355  /* No previous owner. Take ownership. */
356  next_frame->flags |= VLIB_FRAME_OWNER;
357  }
358 
359  /* Record new owner. */
360  next_node->owner_node_index = node->index;
361  next_node->owner_next_index = next_index;
362 
363  /* Now we should be owner. */
364  ASSERT (next_frame->flags & VLIB_FRAME_OWNER);
365 }
366 
367 /* Make sure that magic number is still there.
368  Otherwise, it is likely that caller has overrun frame arguments. */
369 always_inline void
371  vlib_frame_t * f, vlib_node_t * n, uword next_index)
372 {
373  vlib_node_t *next_node = vlib_get_node (vm, n->next_nodes[next_index]);
374  u32 *magic = vlib_frame_find_magic (f, next_node);
375  ASSERT (VLIB_FRAME_MAGIC == magic[0]);
376 }
377 
378 vlib_frame_t *
381  u32 next_index, u32 allocate_new_next_frame)
382 {
383  vlib_frame_t *f;
384  vlib_next_frame_t *nf;
385  u32 n_used;
386 
387  nf = vlib_node_runtime_get_next_frame (vm, node, next_index);
388 
389  /* Make sure this next frame owns right to enqueue to destination frame. */
390  if (PREDICT_FALSE (!(nf->flags & VLIB_FRAME_OWNER)))
391  vlib_next_frame_change_ownership (vm, node, next_index);
392 
393  /* ??? Don't need valid flag: can use frame_index == ~0 */
395  {
396  nf->frame = vlib_frame_alloc (vm, node, next_index);
398  }
399 
400  f = nf->frame;
401 
402  /* Has frame been removed from pending vector (e.g. finished dispatching)?
403  If so we can reuse frame. */
404  if ((nf->flags & VLIB_FRAME_PENDING)
405  && !(f->frame_flags & VLIB_FRAME_PENDING))
406  {
407  nf->flags &= ~VLIB_FRAME_PENDING;
408  f->n_vectors = 0;
409  f->flags = 0;
410  }
411 
412  /* Allocate new frame if current one is marked as no-append or
413  it is already full. */
414  n_used = f->n_vectors;
415  if (n_used >= VLIB_FRAME_SIZE || (allocate_new_next_frame && n_used > 0) ||
417  {
418  /* Old frame may need to be freed after dispatch, since we'll have
419  two redundant frames from node -> next node. */
421  {
422  vlib_frame_t *f_old = vlib_get_frame (vm, nf->frame);
424  }
425 
426  /* Allocate new frame to replace full one. */
427  f = nf->frame = vlib_frame_alloc (vm, node, next_index);
428  n_used = f->n_vectors;
429  }
430 
431  /* Should have free vectors in frame now. */
432  ASSERT (n_used < VLIB_FRAME_SIZE);
433 
434  if (CLIB_DEBUG > 0)
435  {
436  validate_frame_magic (vm, f,
437  vlib_get_node (vm, node->node_index), next_index);
438  }
439 
440  return f;
441 }
442 
443 static void
445  vlib_node_runtime_t * rt,
446  u32 next_index, u32 n_vectors_left)
447 {
448  vlib_node_main_t *nm = &vm->node_main;
449  vlib_next_frame_t *nf;
450  vlib_frame_t *f;
451  vlib_node_runtime_t *next_rt;
452  vlib_node_t *next_node;
453  u32 n_before, n_after;
454 
455  nf = vlib_node_runtime_get_next_frame (vm, rt, next_index);
456  f = vlib_get_frame (vm, nf->frame);
457 
458  ASSERT (n_vectors_left <= VLIB_FRAME_SIZE);
459 
461 
462  n_after = VLIB_FRAME_SIZE - n_vectors_left;
463  n_before = f->n_vectors;
464 
465  ASSERT (n_after >= n_before);
466 
468  nf->node_runtime_index);
469  next_node = vlib_get_node (vm, next_rt->node_index);
470  if (n_after > 0 && next_node->validate_frame)
471  {
472  u8 *msg = next_node->validate_frame (vm, rt, f);
473  if (msg)
474  {
475  clib_warning ("%v", msg);
476  ASSERT (0);
477  }
478  vec_free (msg);
479  }
480 }
481 
482 void
485  u32 next_index, u32 n_vectors_left)
486 {
487  vlib_node_main_t *nm = &vm->node_main;
488  vlib_next_frame_t *nf;
489  vlib_frame_t *f;
490  u32 n_vectors_in_frame;
491 
492  if (CLIB_DEBUG > 0)
493  vlib_put_next_frame_validate (vm, r, next_index, n_vectors_left);
494 
495  nf = vlib_node_runtime_get_next_frame (vm, r, next_index);
496  f = vlib_get_frame (vm, nf->frame);
497 
498  /* Make sure that magic number is still there. Otherwise, caller
499  has overrun frame meta data. */
500  if (CLIB_DEBUG > 0)
501  {
503  validate_frame_magic (vm, f, node, next_index);
504  }
505 
506  /* Convert # of vectors left -> number of vectors there. */
507  ASSERT (n_vectors_left <= VLIB_FRAME_SIZE);
508  n_vectors_in_frame = VLIB_FRAME_SIZE - n_vectors_left;
509 
510  f->n_vectors = n_vectors_in_frame;
511 
512  /* If vectors were added to frame, add to pending vector. */
513  if (PREDICT_TRUE (n_vectors_in_frame > 0))
514  {
516  u32 v0, v1;
517 
518  r->cached_next_index = next_index;
519 
520  if (!(f->frame_flags & VLIB_FRAME_PENDING))
521  {
522  __attribute__ ((unused)) vlib_node_t *node;
523  vlib_node_t *next_node;
524  vlib_node_runtime_t *next_runtime;
525 
526  node = vlib_get_node (vm, r->node_index);
527  next_node = vlib_get_next_node (vm, r->node_index, next_index);
528  next_runtime = vlib_node_get_runtime (vm, next_node->index);
529 
530  vec_add2 (nm->pending_frames, p, 1);
531 
532  p->frame = nf->frame;
534  p->next_frame_index = nf - nm->next_frames;
535  nf->flags |= VLIB_FRAME_PENDING;
537 
538  /*
539  * If we're going to dispatch this frame on another thread,
540  * force allocation of a new frame. Otherwise, we create
541  * a dangling frame reference. Each thread has its own copy of
542  * the next_frames vector.
543  */
544  if (0 && r->thread_index != next_runtime->thread_index)
545  {
546  nf->frame = NULL;
548  }
549  }
550 
551  /* Copy trace flag from next_frame and from runtime. */
552  nf->flags |=
553  (nf->flags & VLIB_NODE_FLAG_TRACE) | (r->
555 
557  v1 = v0 + n_vectors_in_frame;
559  if (PREDICT_FALSE (v1 < v0))
560  {
562  vec_elt (node->n_vectors_by_next_node, next_index) += v0;
563  }
564  }
565 }
566 
567 /* Sync up runtime (32 bit counters) and main node stats (64 bit counters). */
568 never_inline void
571  uword n_calls, uword n_vectors, uword n_clocks)
572 {
573  vlib_node_t *n = vlib_get_node (vm, r->node_index);
574 
575  n->stats_total.calls += n_calls + r->calls_since_last_overflow;
576  n->stats_total.vectors += n_vectors + r->vectors_since_last_overflow;
577  n->stats_total.clocks += n_clocks + r->clocks_since_last_overflow;
580 
584 }
585 
586 always_inline void __attribute__ ((unused))
588  vlib_process_t * p,
589  uword n_calls, uword n_vectors, uword n_clocks)
590 {
591  vlib_node_runtime_t *rt = &p->node_runtime;
592  vlib_node_t *n = vlib_get_node (vm, rt->node_index);
593  vlib_node_runtime_sync_stats (vm, rt, n_calls, n_vectors, n_clocks);
594  n->stats_total.suspends += p->n_suspends;
595  p->n_suspends = 0;
596 }
597 
598 void
600 {
602 
603  if (n->type == VLIB_NODE_TYPE_PROCESS)
604  {
605  /* Nothing to do for PROCESS nodes except in main thread */
606  if (vm != &vlib_global_main)
607  return;
608 
611  p->n_suspends = 0;
612  rt = &p->node_runtime;
613  }
614  else
615  rt =
617  n->runtime_index);
618 
619  vlib_node_runtime_sync_stats (vm, rt, 0, 0, 0);
620 
621  /* Sync up runtime next frame vector counters with main node structure. */
622  {
623  vlib_next_frame_t *nf;
624  uword i;
625  for (i = 0; i < rt->n_next_nodes; i++)
626  {
627  nf = vlib_node_runtime_get_next_frame (vm, rt, i);
631  }
632  }
633 }
634 
638  uword n_calls,
639  uword n_vectors, uword n_clocks)
640 {
641  u32 ca0, ca1, v0, v1, cl0, cl1, r;
642 
643  cl0 = cl1 = node->clocks_since_last_overflow;
644  ca0 = ca1 = node->calls_since_last_overflow;
645  v0 = v1 = node->vectors_since_last_overflow;
646 
647  ca1 = ca0 + n_calls;
648  v1 = v0 + n_vectors;
649  cl1 = cl0 + n_clocks;
650 
651  node->calls_since_last_overflow = ca1;
652  node->clocks_since_last_overflow = cl1;
653  node->vectors_since_last_overflow = v1;
654 
655  node->max_clock_n = node->max_clock > n_clocks ?
656  node->max_clock_n : n_vectors;
657  node->max_clock = node->max_clock > n_clocks ? node->max_clock : n_clocks;
658 
659  r = vlib_node_runtime_update_main_loop_vector_stats (vm, node, n_vectors);
660 
661  if (PREDICT_FALSE (ca1 < ca0 || v1 < v0 || cl1 < cl0))
662  {
663  node->calls_since_last_overflow = ca0;
664  node->clocks_since_last_overflow = cl0;
665  node->vectors_since_last_overflow = v0;
666 
667  vlib_node_runtime_sync_stats (vm, node, n_calls, n_vectors, n_clocks);
668  }
669 
670  return r;
671 }
672 
673 always_inline void
675  vlib_process_t * p,
676  uword n_calls, uword n_vectors, uword n_clocks)
677 {
679  n_calls, n_vectors, n_clocks);
680 }
681 
682 static clib_error_t *
684  unformat_input_t * input, vlib_cli_command_t * cmd)
685 {
687  return 0;
688 }
689 
690 /* *INDENT-OFF* */
691 VLIB_CLI_COMMAND (elog_clear_cli, static) = {
692  .path = "event-logger clear",
693  .short_help = "Clear the event log",
694  .function = vlib_cli_elog_clear,
695 };
696 /* *INDENT-ON* */
697 
698 #ifdef CLIB_UNIX
699 static clib_error_t *
701  unformat_input_t * input, vlib_cli_command_t * cmd)
702 {
703  elog_main_t *em = &vm->elog_main;
704  char *file, *chroot_file;
705  clib_error_t *error = 0;
706 
707  if (!unformat (input, "%s", &file))
708  {
709  vlib_cli_output (vm, "expected file name, got `%U'",
710  format_unformat_error, input);
711  return 0;
712  }
713 
714  /* It's fairly hard to get "../oopsie" through unformat; just in case */
715  if (strstr (file, "..") || index (file, '/'))
716  {
717  vlib_cli_output (vm, "illegal characters in filename '%s'", file);
718  return 0;
719  }
720 
721  chroot_file = (char *) format (0, "/tmp/%s%c", file, 0);
722 
723  vec_free (file);
724 
725  vlib_cli_output (vm, "Saving %wd of %wd events to %s",
727  elog_buffer_capacity (em), chroot_file);
728 
730  error = elog_write_file (em, chroot_file, 1 /* flush ring */ );
732  vec_free (chroot_file);
733  return error;
734 }
735 
736 void
738 {
740  elog_main_t *em = &vm->elog_main;
741  u8 *filename;
742  clib_error_t *error;
743 
744  if (!vm->elog_post_mortem_dump)
745  return;
746 
747  filename = format (0, "/tmp/elog_post_mortem.%d%c", getpid (), 0);
748  error = elog_write_file (em, (char *) filename, 1 /* flush ring */ );
749  if (error)
750  clib_error_report (error);
751  vec_free (filename);
752 }
753 
754 /* *INDENT-OFF* */
755 VLIB_CLI_COMMAND (elog_save_cli, static) = {
756  .path = "event-logger save",
757  .short_help = "event-logger save <filename> (saves log in /tmp/<filename>)",
758  .function = elog_save_buffer,
759 };
760 /* *INDENT-ON* */
761 
762 static clib_error_t *
764  unformat_input_t * input, vlib_cli_command_t * cmd)
765 {
766  elog_main_t *em = &vm->elog_main;
767 
769 
770  vlib_cli_output (vm, "Stopped the event logger...");
771  return 0;
772 }
773 
774 /* *INDENT-OFF* */
775 VLIB_CLI_COMMAND (elog_stop_cli, static) = {
776  .path = "event-logger stop",
777  .short_help = "Stop the event-logger",
778  .function = elog_stop,
779 };
780 /* *INDENT-ON* */
781 
782 static clib_error_t *
784  unformat_input_t * input, vlib_cli_command_t * cmd)
785 {
786  elog_main_t *em = &vm->elog_main;
787 
789 
790  vlib_cli_output (vm, "Restarted the event logger...");
791  return 0;
792 }
793 
794 /* *INDENT-OFF* */
795 VLIB_CLI_COMMAND (elog_restart_cli, static) = {
796  .path = "event-logger restart",
797  .short_help = "Restart the event-logger",
798  .function = elog_restart,
799 };
800 /* *INDENT-ON* */
801 
802 static clib_error_t *
804  unformat_input_t * input, vlib_cli_command_t * cmd)
805 {
806  elog_main_t *em = &vm->elog_main;
807  u32 tmp;
808 
809  /* Stop the parade */
811 
812  if (unformat (input, "%d", &tmp))
813  {
814  elog_alloc (em, tmp);
816  }
817  else
818  return clib_error_return (0, "Must specify how many events in the ring");
819 
820  vlib_cli_output (vm, "Resized ring and restarted the event logger...");
821  return 0;
822 }
823 
824 /* *INDENT-OFF* */
825 VLIB_CLI_COMMAND (elog_resize_cli, static) = {
826  .path = "event-logger resize",
827  .short_help = "event-logger resize <nnn>",
828  .function = elog_resize,
829 };
830 /* *INDENT-ON* */
831 
832 #endif /* CLIB_UNIX */
833 
834 static void
836 {
837  elog_main_t *em = &vm->elog_main;
838  elog_event_t *e, *es;
839  f64 dt;
840 
841  /* Show events in VLIB time since log clock starts after VLIB clock. */
842  dt = (em->init_time.cpu - vm->clib_time.init_cpu_time)
844 
845  es = elog_peek_events (em);
846  vlib_cli_output (vm, "%d of %d events in buffer, logger %s", vec_len (es),
847  em->event_ring_size,
849  "running" : "stopped");
850  vec_foreach (e, es)
851  {
852  vlib_cli_output (vm, "%18.9f: %U",
853  e->time + dt, format_elog_event, em, e);
854  n_events_to_show--;
855  if (n_events_to_show == 0)
856  break;
857  }
858  vec_free (es);
859 
860 }
861 
862 static clib_error_t *
864  unformat_input_t * input, vlib_cli_command_t * cmd)
865 {
866  u32 n_events_to_show;
867  clib_error_t *error = 0;
868 
869  n_events_to_show = 250;
871  {
872  if (unformat (input, "%d", &n_events_to_show))
873  ;
874  else if (unformat (input, "all"))
875  n_events_to_show = ~0;
876  else
877  return unformat_parse_error (input);
878  }
879  elog_show_buffer_internal (vm, n_events_to_show);
880  return error;
881 }
882 
883 /* *INDENT-OFF* */
884 VLIB_CLI_COMMAND (elog_show_cli, static) = {
885  .path = "show event-logger",
886  .short_help = "Show event logger info",
887  .function = elog_show_buffer,
888 };
889 /* *INDENT-ON* */
890 
891 void
893 {
895 }
896 
897 static inline void
899  u32 node_index,
900  u64 time, u32 n_vectors, u32 is_return)
901 {
903  elog_main_t *em = &evm->elog_main;
904  int enabled = evm->elog_trace_graph_dispatch |
906 
907  if (PREDICT_FALSE (enabled && n_vectors))
908  {
909  if (PREDICT_FALSE (!elog_is_enabled (em)))
910  {
911  evm->elog_trace_graph_dispatch = 0;
912  evm->elog_trace_graph_circuit = 0;
913  return;
914  }
915  if (PREDICT_TRUE
917  (evm->elog_trace_graph_circuit &&
918  node_index == evm->elog_trace_graph_circuit_node_index)))
919  {
920  elog_track (em,
921  /* event type */
922  vec_elt_at_index (is_return
925  node_index),
926  /* track */
927  (vm->thread_index ?
929  : &em->default_track),
930  /* data to log */ n_vectors);
931  }
932  }
933 }
934 
935 #if VLIB_BUFFER_TRACE_TRAJECTORY > 0
936 void (*vlib_buffer_trace_trajectory_cb) (vlib_buffer_t * b, u32 node_index);
937 void (*vlib_buffer_trace_trajectory_init_cb) (vlib_buffer_t * b);
938 
939 void
940 vlib_buffer_trace_trajectory_init (vlib_buffer_t * b)
941 {
942  if (PREDICT_TRUE (vlib_buffer_trace_trajectory_init_cb != 0))
943  {
944  (*vlib_buffer_trace_trajectory_init_cb) (b);
945  }
946 }
947 
948 #endif
949 
950 static inline void
952 {
953 #if VLIB_BUFFER_TRACE_TRAJECTORY > 0
954  if (PREDICT_TRUE (vlib_buffer_trace_trajectory_cb != 0))
955  {
956  (*vlib_buffer_trace_trajectory_cb) (b, node_index);
957  }
958 #endif
959 }
960 
961 u8 *format_vnet_buffer_flags (u8 * s, va_list * args) __attribute__ ((weak));
962 u8 *
963 format_vnet_buffer_flags (u8 * s, va_list * args)
964 {
965  s = format (s, "BUG STUB %s", __FUNCTION__);
966  return s;
967 }
968 
969 u8 *format_vnet_buffer_opaque (u8 * s, va_list * args) __attribute__ ((weak));
970 u8 *
971 format_vnet_buffer_opaque (u8 * s, va_list * args)
972 {
973  s = format (s, "BUG STUB %s", __FUNCTION__);
974  return s;
975 }
976 
977 u8 *format_vnet_buffer_opaque2 (u8 * s, va_list * args)
978  __attribute__ ((weak));
979 u8 *
980 format_vnet_buffer_opaque2 (u8 * s, va_list * args)
981 {
982  s = format (s, "BUG STUB %s", __FUNCTION__);
983  return s;
984 }
985 
986 static u8 *
987 format_buffer_metadata (u8 * s, va_list * args)
988 {
989  vlib_buffer_t *b = va_arg (*args, vlib_buffer_t *);
990 
991  s = format (s, "flags: %U\n", format_vnet_buffer_flags, b);
992  s = format (s, "current_data: %d, current_length: %d\n",
993  (i32) (b->current_data), (i32) (b->current_length));
994  s = format
995  (s,
996  "current_config_index/punt_reason: %d, flow_id: %x, next_buffer: %x\n",
998  s =
999  format (s, "error: %d, ref_count: %d, buffer_pool_index: %d\n",
1000  (u32) (b->error), (u32) (b->ref_count),
1001  (u32) (b->buffer_pool_index));
1002  s =
1003  format (s, "trace_handle: 0x%x, len_not_first_buf: %d\n", b->trace_handle,
1005  return s;
1006 }
1007 
1008 #define A(x) vec_add1(vm->pcap_buffer, (x))
1009 
1010 static void
1013 {
1014  int i;
1015  vlib_buffer_t *bufs[VLIB_FRAME_SIZE], **bufp, *b;
1016  pcap_main_t *pm = &vlib_global_main.dispatch_pcap_main;
1017  vlib_trace_main_t *tm = &vm->trace_main;
1018  u32 capture_size;
1019  vlib_node_t *n;
1020  i32 n_left;
1021  f64 time_now = vlib_time_now (vm);
1022  u32 *from;
1023  u8 *d;
1024  u8 string_count;
1025 
1026  /* Input nodes don't have frames yet */
1027  if (frame == 0 || frame->n_vectors == 0)
1028  return;
1029 
1030  from = vlib_frame_vector_args (frame);
1031  vlib_get_buffers (vm, from, bufs, frame->n_vectors);
1032  bufp = bufs;
1033 
1034  n = vlib_get_node (vm, node->node_index);
1035 
1036  for (i = 0; i < frame->n_vectors; i++)
1037  {
1039  {
1040  b = bufp[i];
1041 
1043  string_count = 0;
1044 
1045  /* Version, flags */
1048  A (0 /* string_count */ );
1049  A (n->protocol_hint);
1050 
1051  /* Buffer index (big endian) */
1052  A ((from[i] >> 24) & 0xff);
1053  A ((from[i] >> 16) & 0xff);
1054  A ((from[i] >> 8) & 0xff);
1055  A ((from[i] >> 0) & 0xff);
1056 
1057  /* Node name, NULL-terminated ASCII */
1058  vm->pcap_buffer = format (vm->pcap_buffer, "%v%c", n->name, 0);
1059  string_count++;
1060 
1061  vm->pcap_buffer = format (vm->pcap_buffer, "%U%c",
1062  format_buffer_metadata, b, 0);
1063  string_count++;
1064  vm->pcap_buffer = format (vm->pcap_buffer, "%U%c",
1066  string_count++;
1067  vm->pcap_buffer = format (vm->pcap_buffer, "%U%c",
1069  string_count++;
1070 
1071  /* Is this packet traced? */
1072  if (PREDICT_FALSE (b->flags & VLIB_BUFFER_IS_TRACED))
1073  {
1077 
1078  vm->pcap_buffer = format (vm->pcap_buffer, "%U%c",
1079  format_vlib_trace, vm, h[0], 0);
1080  string_count++;
1081  }
1082 
1083  /* Save the string count */
1084  vm->pcap_buffer[2] = string_count;
1085 
1086  /* Figure out how many bytes in the pcap trace */
1087  capture_size = vec_len (vm->pcap_buffer) +
1088  +vlib_buffer_length_in_chain (vm, b);
1089 
1091  n_left = clib_min (capture_size, 16384);
1092  d = pcap_add_packet (pm, time_now, n_left, capture_size);
1093 
1094  /* Copy the header */
1096  d += vec_len (vm->pcap_buffer);
1097 
1098  n_left = clib_min
1099  (vlib_buffer_length_in_chain (vm, b),
1100  (16384 - vec_len (vm->pcap_buffer)));
1101  /* Copy the packet data */
1102  while (1)
1103  {
1104  u32 copy_length = clib_min ((u32) n_left, b->current_length);
1105  clib_memcpy_fast (d, b->data + b->current_data, copy_length);
1106  n_left -= b->current_length;
1107  if (n_left <= 0)
1108  break;
1109  d += b->current_length;
1110  ASSERT (b->flags & VLIB_BUFFER_NEXT_PRESENT);
1111  b = vlib_get_buffer (vm, b->next_buffer);
1112  }
1114  }
1115  }
1116 }
1117 
1122  vlib_node_state_t dispatch_state,
1123  vlib_frame_t * frame, u64 last_time_stamp)
1124 {
1125  uword n, v;
1126  u64 t;
1127  vlib_node_main_t *nm = &vm->node_main;
1128  vlib_next_frame_t *nf;
1129 
1130  if (CLIB_DEBUG > 0)
1131  {
1132  vlib_node_t *n = vlib_get_node (vm, node->node_index);
1133  ASSERT (n->type == type);
1134  }
1135 
1136  /* Only non-internal nodes may be disabled. */
1137  if (type != VLIB_NODE_TYPE_INTERNAL && node->state != dispatch_state)
1138  {
1139  ASSERT (type != VLIB_NODE_TYPE_INTERNAL);
1140  return last_time_stamp;
1141  }
1142 
1143  if ((type == VLIB_NODE_TYPE_PRE_INPUT || type == VLIB_NODE_TYPE_INPUT)
1144  && dispatch_state != VLIB_NODE_STATE_INTERRUPT)
1145  {
1147  /* Only call node when count reaches zero. */
1148  if (c)
1149  {
1150  node->input_main_loops_per_call = c - 1;
1151  return last_time_stamp;
1152  }
1153  }
1154 
1155  /* Speculatively prefetch next frames. */
1156  if (node->n_next_nodes > 0)
1157  {
1158  nf = vec_elt_at_index (nm->next_frames, node->next_frame_index);
1159  CLIB_PREFETCH (nf, 4 * sizeof (nf[0]), WRITE);
1160  }
1161 
1162  vm->cpu_time_last_node_dispatch = last_time_stamp;
1163 
1165  last_time_stamp, frame ? frame->n_vectors : 0,
1166  /* is_after */ 0);
1167 
1168  vlib_node_runtime_perf_counter (vm, node, frame, 0, last_time_stamp,
1170 
1171  /*
1172  * Turn this on if you run into
1173  * "bad monkey" contexts, and you want to know exactly
1174  * which nodes they've visited... See ixge.c...
1175  */
1176  if (VLIB_BUFFER_TRACE_TRAJECTORY && frame)
1177  {
1178  int i;
1179  u32 *from;
1180  from = vlib_frame_vector_args (frame);
1181  for (i = 0; i < frame->n_vectors; i++)
1182  {
1183  vlib_buffer_t *b = vlib_get_buffer (vm, from[i]);
1184  add_trajectory_trace (b, node->node_index);
1185  }
1187  dispatch_pcap_trace (vm, node, frame);
1188  n = node->function (vm, node, frame);
1189  }
1190  else
1191  {
1193  dispatch_pcap_trace (vm, node, frame);
1194  n = node->function (vm, node, frame);
1195  }
1196 
1197  t = clib_cpu_time_now ();
1198 
1199  vlib_node_runtime_perf_counter (vm, node, frame, n, t,
1201 
1202  vlib_elog_main_loop_event (vm, node->node_index, t, n, 1 /* is_after */ );
1203 
1204  vm->main_loop_vectors_processed += n;
1205  vm->main_loop_nodes_processed += n > 0;
1206 
1207  v = vlib_node_runtime_update_stats (vm, node,
1208  /* n_calls */ 1,
1209  /* n_vectors */ n,
1210  /* n_clocks */ t - last_time_stamp);
1211 
1212  /* When in interrupt mode and vector rate crosses threshold switch to
1213  polling mode. */
1214  if (PREDICT_FALSE ((dispatch_state == VLIB_NODE_STATE_INTERRUPT)
1215  || (dispatch_state == VLIB_NODE_STATE_POLLING
1216  && (node->flags
1217  &
1219  {
1220  /* *INDENT-OFF* */
1221  ELOG_TYPE_DECLARE (e) =
1222  {
1223  .function = (char *) __FUNCTION__,
1224  .format = "%s vector length %d, switching to %s",
1225  .format_args = "T4i4t4",
1226  .n_enum_strings = 2,
1227  .enum_strings = {
1228  "interrupt", "polling",
1229  },
1230  };
1231  /* *INDENT-ON* */
1232  struct
1233  {
1234  u32 node_name, vector_length, is_polling;
1235  } *ed;
1236 
1237  if ((dispatch_state == VLIB_NODE_STATE_INTERRUPT
1238  && v >= nm->polling_threshold_vector_length) &&
1239  !(node->flags &
1241  {
1242  vlib_node_t *n = vlib_get_node (vm, node->node_index);
1243  n->state = VLIB_NODE_STATE_POLLING;
1244  node->state = VLIB_NODE_STATE_POLLING;
1245  node->flags &=
1248  nm->input_node_counts_by_state[VLIB_NODE_STATE_INTERRUPT] -= 1;
1249  nm->input_node_counts_by_state[VLIB_NODE_STATE_POLLING] += 1;
1250 
1251  if (PREDICT_FALSE (vlib_global_main.elog_trace_graph_dispatch))
1252  {
1254  + vm->thread_index;
1255 
1256  ed = ELOG_TRACK_DATA (&vlib_global_main.elog_main, e,
1257  w->elog_track);
1258  ed->node_name = n->name_elog_string;
1259  ed->vector_length = v;
1260  ed->is_polling = 1;
1261  }
1262  }
1263  else if (dispatch_state == VLIB_NODE_STATE_POLLING
1264  && v <= nm->interrupt_threshold_vector_length)
1265  {
1266  vlib_node_t *n = vlib_get_node (vm, node->node_index);
1267  if (node->flags &
1269  {
1270  /* Switch to interrupt mode after dispatch in polling one more time.
1271  This allows driver to re-enable interrupts. */
1272  n->state = VLIB_NODE_STATE_INTERRUPT;
1273  node->state = VLIB_NODE_STATE_INTERRUPT;
1274  node->flags &=
1276  nm->input_node_counts_by_state[VLIB_NODE_STATE_POLLING] -= 1;
1277  nm->input_node_counts_by_state[VLIB_NODE_STATE_INTERRUPT] += 1;
1278 
1279  }
1280  else
1281  {
1283  + vm->thread_index;
1284  node->flags |=
1286  if (PREDICT_FALSE (vlib_global_main.elog_trace_graph_dispatch))
1287  {
1288  ed = ELOG_TRACK_DATA (&vlib_global_main.elog_main, e,
1289  w->elog_track);
1290  ed->node_name = n->name_elog_string;
1291  ed->vector_length = v;
1292  ed->is_polling = 0;
1293  }
1294  }
1295  }
1296  }
1297 
1298  return t;
1299 }
1300 
1301 static u64
1302 dispatch_pending_node (vlib_main_t * vm, uword pending_frame_index,
1303  u64 last_time_stamp)
1304 {
1305  vlib_node_main_t *nm = &vm->node_main;
1306  vlib_frame_t *f;
1307  vlib_next_frame_t *nf, nf_placeholder;
1309  vlib_frame_t *restore_frame;
1311 
1312  /* See comment below about dangling references to nm->pending_frames */
1313  p = nm->pending_frames + pending_frame_index;
1314 
1316  p->node_runtime_index);
1317 
1318  f = vlib_get_frame (vm, p->frame);
1320  {
1321  /* No next frame: so use placeholder on stack. */
1322  nf = &nf_placeholder;
1324  nf->frame = NULL;
1325  }
1326  else
1328 
1330 
1331  /* Force allocation of new frame while current frame is being
1332  dispatched. */
1333  restore_frame = NULL;
1334  if (nf->frame == p->frame)
1335  {
1336  nf->frame = NULL;
1339  restore_frame = p->frame;
1340  }
1341 
1342  /* Frame must be pending. */
1344  ASSERT (f->n_vectors > 0);
1345 
1346  /* Copy trace flag from next frame to node.
1347  Trace flag indicates that at least one vector in the dispatched
1348  frame is traced. */
1349  n->flags &= ~VLIB_NODE_FLAG_TRACE;
1350  n->flags |= (nf->flags & VLIB_FRAME_TRACE) ? VLIB_NODE_FLAG_TRACE : 0;
1351  nf->flags &= ~VLIB_FRAME_TRACE;
1352 
1353  last_time_stamp = dispatch_node (vm, n,
1355  VLIB_NODE_STATE_POLLING,
1356  f, last_time_stamp);
1357  /* Internal node vector-rate accounting, for summary stats */
1358  vm->internal_node_vectors += f->n_vectors;
1359  vm->internal_node_calls++;
1363 
1365 
1366  /* Frame is ready to be used again, so restore it. */
1367  if (restore_frame != NULL)
1368  {
1369  /*
1370  * We musn't restore a frame that is flagged to be freed. This
1371  * shouldn't happen since frames to be freed post dispatch are
1372  * those used when the to-node frame becomes full i.e. they form a
1373  * sort of queue of frames to a single node. If we get here then
1374  * the to-node frame and the pending frame *were* the same, and so
1375  * we removed the to-node frame. Therefore this frame is no
1376  * longer part of the queue for that node and hence it cannot be
1377  * it's overspill.
1378  */
1380 
1381  /*
1382  * NB: dispatching node n can result in the creation and scheduling
1383  * of new frames, and hence in the reallocation of nm->pending_frames.
1384  * Recompute p, or no supper. This was broken for more than 10 years.
1385  */
1386  p = nm->pending_frames + pending_frame_index;
1387 
1388  /*
1389  * p->next_frame_index can change during node dispatch if node
1390  * function decides to change graph hook up.
1391  */
1394 
1395  if (NULL == nf->frame)
1396  {
1397  /* no new frame has been assigned to this node, use the saved one */
1398  nf->frame = restore_frame;
1399  f->n_vectors = 0;
1400  }
1401  else
1402  {
1403  /* The node has gained a frame, implying packets from the current frame
1404  were re-queued to this same node. we don't need the saved one
1405  anymore */
1406  vlib_frame_free (vm, n, f);
1407  }
1408  }
1409  else
1410  {
1412  {
1414  vlib_frame_free (vm, n, f);
1415  }
1416  }
1417 
1418  return last_time_stamp;
1419 }
1420 
1423 {
1424  return p->stack[0] == VLIB_PROCESS_STACK_MAGIC;
1425 }
1426 
1427 typedef struct
1428 {
1433 
1434 /* Called in process stack. */
1435 static uword
1437 {
1439  vlib_main_t *vm;
1441  vlib_frame_t *f;
1442  vlib_process_t *p;
1443  uword n;
1444 
1446 
1447  vm = a->vm;
1448  p = a->process;
1450 
1451  f = a->frame;
1452  node = &p->node_runtime;
1453 
1454  n = node->function (vm, node, f);
1455 
1457 
1459  clib_longjmp (&p->return_longjmp, n);
1460 
1461  return n;
1462 }
1463 
1464 /* Called in main stack. */
1467 {
1469  uword r;
1470 
1471  a.vm = vm;
1472  a.process = p;
1473  a.frame = f;
1474 
1477  {
1480  (void *) p->stack + (1 << p->log2_n_stack_bytes));
1481  }
1482  else
1484 
1485  return r;
1486 }
1487 
1490 {
1491  uword r;
1497  {
1500  }
1501  else
1503  return r;
1504 }
1505 
1506 static u64
1508  vlib_process_t * p, vlib_frame_t * f, u64 last_time_stamp)
1509 {
1510  vlib_node_main_t *nm = &vm->node_main;
1511  vlib_node_runtime_t *node_runtime = &p->node_runtime;
1512  vlib_node_t *node = vlib_get_node (vm, node_runtime->node_index);
1513  u32 old_process_index;
1514  u64 t;
1515  uword n_vectors, is_suspend;
1516 
1517  if (node->state != VLIB_NODE_STATE_POLLING
1520  return last_time_stamp;
1521 
1523 
1524  t = last_time_stamp;
1525  vlib_elog_main_loop_event (vm, node_runtime->node_index, t,
1526  f ? f->n_vectors : 0, /* is_after */ 0);
1527 
1528  /* Save away current process for suspend. */
1529  old_process_index = nm->current_process_index;
1531 
1532  vlib_node_runtime_perf_counter (vm, node_runtime, f, 0, last_time_stamp,
1534 
1535  n_vectors = vlib_process_startup (vm, p, f);
1536 
1537  nm->current_process_index = old_process_index;
1538 
1540  is_suspend = n_vectors == VLIB_PROCESS_RETURN_LONGJMP_SUSPEND;
1541  if (is_suspend)
1542  {
1544 
1545  n_vectors = 0;
1547  pf->node_runtime_index = node->runtime_index;
1548  pf->frame = f;
1549  pf->next_frame_index = ~0;
1550 
1551  p->n_suspends += 1;
1553 
1555  {
1556  TWT (tw_timer_wheel) * tw =
1557  (TWT (tw_timer_wheel) *) nm->timing_wheel;
1558  p->stop_timer_handle =
1559  TW (tw_timer_start) (tw,
1561  (node->runtime_index) /* [sic] pool idex */ ,
1562  0 /* timer_id */ ,
1564  }
1565  }
1566  else
1568 
1569  t = clib_cpu_time_now ();
1570 
1571  vlib_elog_main_loop_event (vm, node_runtime->node_index, t, is_suspend,
1572  /* is_after */ 1);
1573 
1574  vlib_node_runtime_perf_counter (vm, node_runtime, f, n_vectors, t,
1576 
1578  /* n_calls */ !is_suspend,
1579  /* n_vectors */ n_vectors,
1580  /* n_clocks */ t - last_time_stamp);
1581 
1582  return t;
1583 }
1584 
1585 void
1587 {
1588  vlib_node_main_t *nm = &vm->node_main;
1589  vlib_process_t *p = vec_elt (nm->processes, process_index);
1590  dispatch_process (vm, p, /* frame */ 0, /* cpu_time_now */ 0);
1591 }
1592 
1593 static u64
1595  uword process_index, u64 last_time_stamp)
1596 {
1597  vlib_node_main_t *nm = &vm->node_main;
1598  vlib_node_runtime_t *node_runtime;
1599  vlib_node_t *node;
1600  vlib_frame_t *f;
1601  vlib_process_t *p;
1603  u64 t, n_vectors, is_suspend;
1604 
1605  t = last_time_stamp;
1606 
1607  p = vec_elt (nm->processes, process_index);
1609  return last_time_stamp;
1610 
1613 
1616 
1617  node_runtime = &p->node_runtime;
1618  node = vlib_get_node (vm, node_runtime->node_index);
1619  f = pf->frame;
1620 
1621  vlib_elog_main_loop_event (vm, node_runtime->node_index, t,
1622  f ? f->n_vectors : 0, /* is_after */ 0);
1623 
1624  /* Save away current process for suspend. */
1626 
1627  vlib_node_runtime_perf_counter (vm, node_runtime, f, 0, last_time_stamp,
1629 
1630  n_vectors = vlib_process_resume (vm, p);
1631  t = clib_cpu_time_now ();
1632 
1633  nm->current_process_index = ~0;
1634 
1635  is_suspend = n_vectors == VLIB_PROCESS_RETURN_LONGJMP_SUSPEND;
1636  if (is_suspend)
1637  {
1638  /* Suspend it again. */
1639  n_vectors = 0;
1640  p->n_suspends += 1;
1642  {
1643  p->stop_timer_handle =
1644  TW (tw_timer_start) ((TWT (tw_timer_wheel) *) nm->timing_wheel,
1646  (node->runtime_index) /* [sic] pool idex */ ,
1647  0 /* timer_id */ ,
1649  }
1650  }
1651  else
1652  {
1657  }
1658 
1659  t = clib_cpu_time_now ();
1660  vlib_elog_main_loop_event (vm, node_runtime->node_index, t, !is_suspend,
1661  /* is_after */ 1);
1662 
1663  vlib_node_runtime_perf_counter (vm, node_runtime, f, n_vectors, t,
1665 
1667  /* n_calls */ !is_suspend,
1668  /* n_vectors */ n_vectors,
1669  /* n_clocks */ t - last_time_stamp);
1670 
1671  return t;
1672 }
1673 
1674 void vl_api_send_pending_rpc_requests (vlib_main_t *) __attribute__ ((weak));
1675 void
1677 {
1678 }
1679 
1682  u64 cpu_time_now)
1683 {
1685 
1686  for (int i = 0; i < _vec_len (nm->pending_local_interrupts); i++)
1687  {
1691  in->node_runtime_index);
1692  n->interrupt_data = in->data;
1693  cpu_time_now = dispatch_node (vm, n, VLIB_NODE_TYPE_INPUT,
1694  VLIB_NODE_STATE_INTERRUPT, /* frame */ 0,
1695  cpu_time_now);
1696  }
1698  return cpu_time_now;
1699 }
1700 
1703 {
1704  vlib_node_main_t *nm = &vm->node_main;
1706  uword i;
1707  u64 cpu_time_now;
1708  f64 now;
1710  u32 frame_queue_check_counter = 0;
1711 
1712  /* Initialize pending node vector. */
1713  if (is_main)
1714  {
1715  vec_resize (nm->pending_frames, 32);
1716  _vec_len (nm->pending_frames) = 0;
1717  }
1718 
1719  /* Mark time of main loop start. */
1720  if (is_main)
1721  {
1722  cpu_time_now = vm->clib_time.last_cpu_time;
1723  vm->cpu_time_main_loop_start = cpu_time_now;
1724  }
1725  else
1726  cpu_time_now = clib_cpu_time_now ();
1727 
1728  /* Pre-allocate interupt runtime indices and lock. */
1734 
1735  /* Pre-allocate expired nodes. */
1740 
1744 
1745  /* Start all processes. */
1746  if (is_main)
1747  {
1748  uword i;
1749 
1750  /*
1751  * Perform an initial barrier sync. Pays no attention to
1752  * the barrier sync hold-down timer scheme, which won't work
1753  * at this point in time.
1754  */
1756 
1757  nm->current_process_index = ~0;
1758  for (i = 0; i < vec_len (nm->processes); i++)
1759  cpu_time_now = dispatch_process (vm, nm->processes[i], /* frame */ 0,
1760  cpu_time_now);
1761  }
1762 
1763  while (1)
1764  {
1766 
1767  if (PREDICT_FALSE (_vec_len (vm->pending_rpc_requests) > 0))
1768  {
1769  if (!is_main)
1771  }
1772 
1773  if (!is_main)
1775 
1776  if (PREDICT_FALSE (vm->check_frame_queues + frame_queue_check_counter))
1777  {
1778  u32 processed = 0;
1779 
1780  if (vm->check_frame_queues)
1781  {
1782  frame_queue_check_counter = 100;
1783  vm->check_frame_queues = 0;
1784  }
1785 
1786  vec_foreach (fqm, tm->frame_queue_mains)
1787  processed += vlib_frame_queue_dequeue (vm, fqm);
1788 
1789  /* No handoff queue work found? */
1790  if (processed)
1791  frame_queue_check_counter = 100;
1792  else
1793  frame_queue_check_counter--;
1794  }
1795 
1798  cpu_time_now);
1799 
1800  /* Process pre-input nodes. */
1801  cpu_time_now = clib_cpu_time_now ();
1803  cpu_time_now = dispatch_node (vm, n,
1805  VLIB_NODE_STATE_POLLING,
1806  /* frame */ 0,
1807  cpu_time_now);
1808 
1809  /* Next process input nodes. */
1811  cpu_time_now = dispatch_node (vm, n,
1813  VLIB_NODE_STATE_POLLING,
1814  /* frame */ 0,
1815  cpu_time_now);
1816 
1817  if (PREDICT_TRUE (is_main && vm->queue_signal_pending == 0))
1818  vm->queue_signal_callback (vm);
1819 
1820  /* handle local interruots */
1821  if (_vec_len (nm->pending_local_interrupts))
1822  cpu_time_now = dispatch_pending_interrupts (vm, nm, cpu_time_now);
1823 
1824  /* handle remote interruots */
1825  if (PREDICT_FALSE (_vec_len (nm->pending_remote_interrupts)))
1826  {
1828 
1829  /* at this point it is known that
1830  * vec_len (nm->pending_local_interrupts) is zero so we quickly swap
1831  * local and remote vector under the spinlock */
1833  in = nm->pending_local_interrupts;
1835  nm->pending_remote_interrupts = in;
1838 
1839  cpu_time_now = dispatch_pending_interrupts (vm, nm, cpu_time_now);
1840  }
1841 
1842  /* Input nodes may have added work to the pending vector.
1843  Process pending vector until there is nothing left.
1844  All pending vectors will be processed from input -> output. */
1845  for (i = 0; i < _vec_len (nm->pending_frames); i++)
1846  cpu_time_now = dispatch_pending_node (vm, i, cpu_time_now);
1847  /* Reset pending vector for next iteration. */
1848  _vec_len (nm->pending_frames) = 0;
1849 
1850  if (is_main)
1851  {
1852  /* *INDENT-OFF* */
1853  ELOG_TYPE_DECLARE (es) =
1854  {
1855  .format = "process tw start",
1856  .format_args = "",
1857  };
1858  ELOG_TYPE_DECLARE (ee) =
1859  {
1860  .format = "process tw end: %d",
1861  .format_args = "i4",
1862  };
1863  /* *INDENT-ON* */
1864 
1865  struct
1866  {
1867  int nready_procs;
1868  } *ed;
1869 
1870  /* Check if process nodes have expired from timing wheel. */
1872 
1874  ed = ELOG_DATA (&vlib_global_main.elog_main, es);
1875 
1878  ((TWT (tw_timer_wheel) *) nm->timing_wheel, vlib_time_now (vm),
1880 
1882 
1884  {
1885  ed = ELOG_DATA (&vlib_global_main.elog_main, ee);
1886  ed->nready_procs =
1887  _vec_len (nm->data_from_advancing_timing_wheel);
1888  }
1889 
1890  if (PREDICT_FALSE
1891  (_vec_len (nm->data_from_advancing_timing_wheel) > 0))
1892  {
1893  uword i;
1894 
1895  for (i = 0; i < _vec_len (nm->data_from_advancing_timing_wheel);
1896  i++)
1897  {
1900 
1902  {
1905  di);
1906  vlib_node_t *n =
1908  vlib_process_t *p =
1909  vec_elt (nm->processes, n->runtime_index);
1910  void *data;
1911  data =
1913  te->event_type_index,
1914  te->n_data_elts,
1915  te->n_data_elt_bytes);
1916  if (te->n_data_bytes < sizeof (te->inline_event_data))
1918  te->n_data_bytes);
1919  else
1920  {
1922  te->n_data_bytes);
1924  }
1926  }
1927  else
1928  {
1929  cpu_time_now = clib_cpu_time_now ();
1930  cpu_time_now =
1931  dispatch_suspended_process (vm, di, cpu_time_now);
1932  }
1933  }
1934  _vec_len (nm->data_from_advancing_timing_wheel) = 0;
1935  }
1936  }
1938  /* Record time stamp in case there are no enabled nodes and above
1939  calls do not update time stamp. */
1940  cpu_time_now = clib_cpu_time_now ();
1942  now = clib_time_now_internal (&vm->clib_time, cpu_time_now);
1943  /* Time to update loops_per_second? */
1944  if (PREDICT_FALSE (now >= vm->loop_interval_end))
1945  {
1946  /* Next sample ends in 20ms */
1947  if (vm->loop_interval_start)
1948  {
1949  f64 this_loops_per_second;
1950 
1951  this_loops_per_second =
1952  ((f64) vm->loops_this_reporting_interval) / (now -
1953  vm->loop_interval_start);
1954 
1955  vm->loops_per_second =
1957  (1.0 - vm->damping_constant) * this_loops_per_second;
1958  if (vm->loops_per_second != 0.0)
1959  vm->seconds_per_loop = 1.0 / vm->loops_per_second;
1960  else
1961  vm->seconds_per_loop = 0.0;
1962  }
1963  /* New interval starts now, and ends in 20ms */
1964  vm->loop_interval_start = now;
1965  vm->loop_interval_end = now + 2e-4;
1967  }
1968  }
1969 }
1970 
1971 static void
1973 {
1974  vlib_main_or_worker_loop (vm, /* is_main */ 1);
1975 }
1976 
1977 void
1979 {
1980  vlib_main_or_worker_loop (vm, /* is_main */ 0);
1981 }
1982 
1984 
1985 static clib_error_t *
1987 {
1988  int turn_on_mem_trace = 0;
1989 
1990  while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
1991  {
1992  if (unformat (input, "memory-trace"))
1993  turn_on_mem_trace = 1;
1994 
1995  else if (unformat (input, "elog-events %d",
1996  &vm->elog_main.event_ring_size))
1997  ;
1998  else if (unformat (input, "elog-post-mortem-dump"))
1999  vm->elog_post_mortem_dump = 1;
2000  else if (unformat (input, "buffer-alloc-success-rate %f",
2002  {
2003  if (VLIB_BUFFER_ALLOC_FAULT_INJECTOR == 0)
2004  return clib_error_return
2005  (0, "Buffer fault injection not configured");
2006  }
2007  else if (unformat (input, "buffer-alloc-success-seed %u",
2009  {
2010  if (VLIB_BUFFER_ALLOC_FAULT_INJECTOR == 0)
2011  return clib_error_return
2012  (0, "Buffer fault injection not configured");
2013  }
2014  else
2015  return unformat_parse_error (input);
2016  }
2017 
2018  unformat_free (input);
2019 
2020  /* Enable memory trace as early as possible. */
2021  if (turn_on_mem_trace)
2022  clib_mem_trace (1);
2023 
2024  return 0;
2025 }
2026 
2028 
2029 static void
2031 {
2032 }
2033 
2034 #define foreach_weak_reference_stub \
2035 _(vlib_map_stat_segment_init) \
2036 _(vpe_api_init) \
2037 _(vlibmemory_init) \
2038 _(map_api_segment_init)
2039 
2040 #define _(name) \
2041 clib_error_t *name (vlib_main_t *vm) __attribute__((weak)); \
2042 clib_error_t *name (vlib_main_t *vm) { return 0; }
2044 #undef _
2045 
2046 void vl_api_set_elog_main (elog_main_t * m) __attribute__ ((weak));
2047 void
2049 {
2050  clib_warning ("STUB");
2051 }
2052 
2053 int vl_api_set_elog_trace_api_messages (int enable) __attribute__ ((weak));
2054 int
2056 {
2057  clib_warning ("STUB");
2058  return 0;
2059 }
2060 
2061 int vl_api_get_elog_trace_api_messages (void) __attribute__ ((weak));
2062 int
2064 {
2065  clib_warning ("STUB");
2066  return 0;
2067 }
2068 
2069 /* Main function. */
2070 int
2072 {
2073  clib_error_t *volatile error;
2074  vlib_node_main_t *nm = &vm->node_main;
2075 
2077 
2078  /* Turn on event log. */
2079  if (!vm->elog_main.event_ring_size)
2080  vm->elog_main.event_ring_size = 128 << 10;
2082  elog_enable_disable (&vm->elog_main, 1);
2085 
2086  /* Default name. */
2087  if (!vm->name)
2088  vm->name = "VLIB";
2089 
2090  if ((error = vlib_physmem_init (vm)))
2091  {
2092  clib_error_report (error);
2093  goto done;
2094  }
2095 
2096  if ((error = vlib_map_stat_segment_init (vm)))
2097  {
2098  clib_error_report (error);
2099  goto done;
2100  }
2101 
2102  if ((error = vlib_buffer_main_init (vm)))
2103  {
2104  clib_error_report (error);
2105  goto done;
2106  }
2107 
2108  if ((error = vlib_thread_init (vm)))
2109  {
2110  clib_error_report (error);
2111  goto done;
2112  }
2113 
2114  /* Register static nodes so that init functions may use them. */
2116 
2117  /* Set seed for random number generator.
2118  Allow user to specify seed to make random sequence deterministic. */
2119  if (!unformat (input, "seed %wd", &vm->random_seed))
2120  vm->random_seed = clib_cpu_time_now ();
2122 
2123  /* Initialize node graph. */
2124  if ((error = vlib_node_main_init (vm)))
2125  {
2126  /* Arrange for graph hook up error to not be fatal when debugging. */
2127  if (CLIB_DEBUG > 0)
2128  clib_error_report (error);
2129  else
2130  goto done;
2131  }
2132 
2133  /* Direct call / weak reference, for vlib standalone use-cases */
2134  if ((error = vpe_api_init (vm)))
2135  {
2136  clib_error_report (error);
2137  goto done;
2138  }
2139 
2140  if ((error = vlibmemory_init (vm)))
2141  {
2142  clib_error_report (error);
2143  goto done;
2144  }
2145 
2146  if ((error = map_api_segment_init (vm)))
2147  {
2148  clib_error_report (error);
2149  goto done;
2150  }
2151 
2152  /* See unix/main.c; most likely already set up */
2153  if (vm->init_functions_called == 0)
2154  vm->init_functions_called = hash_create (0, /* value bytes */ 0);
2155  if ((error = vlib_call_all_init_functions (vm)))
2156  goto done;
2157 
2158  nm->timing_wheel = clib_mem_alloc_aligned (sizeof (TWT (tw_timer_wheel)),
2160 
2162  _vec_len (nm->data_from_advancing_timing_wheel) = 0;
2163 
2164  /* Create the process timing wheel */
2165  TW (tw_timer_wheel_init) ((TWT (tw_timer_wheel) *) nm->timing_wheel,
2166  0 /* no callback */ ,
2167  10e-6 /* timer period 10us */ ,
2168  ~0 /* max expirations per call */ );
2169 
2171  _vec_len (vm->pending_rpc_requests) = 0;
2173  _vec_len (vm->processing_rpc_requests) = 0;
2174 
2175  /* Default params for the buffer allocator fault injector, if configured */
2176  if (VLIB_BUFFER_ALLOC_FAULT_INJECTOR > 0)
2177  {
2178  vm->buffer_alloc_success_seed = 0xdeaddabe;
2179  vm->buffer_alloc_success_rate = 0.80;
2180  }
2181 
2182  if ((error = vlib_call_all_config_functions (vm, input, 0 /* is_early */ )))
2183  goto done;
2184 
2185  /*
2186  * Use exponential smoothing, with a half-life of 1 second
2187  * reported_rate(t) = reported_rate(t-1) * K + rate(t)*(1-K)
2188  *
2189  * Sample every 20ms, aka 50 samples per second
2190  * K = exp (-1.0/20.0);
2191  * K = 0.95
2192  */
2193  vm->damping_constant = exp (-1.0 / 20.0);
2194 
2195  /* Sort per-thread init functions before we start threads */
2197 
2198  /* Call all main loop enter functions. */
2199  {
2200  clib_error_t *sub_error;
2201  sub_error = vlib_call_all_main_loop_enter_functions (vm);
2202  if (sub_error)
2203  clib_error_report (sub_error);
2204  }
2205 
2207  {
2209  vm->main_loop_exit_set = 1;
2210  break;
2211 
2213  goto done;
2214 
2215  default:
2216  error = vm->main_loop_error;
2217  goto done;
2218  }
2219 
2220  vlib_main_loop (vm);
2221 
2222 done:
2223  /* Call all exit functions. */
2224  {
2225  clib_error_t *sub_error;
2226  sub_error = vlib_call_all_main_loop_exit_functions (vm);
2227  if (sub_error)
2228  clib_error_report (sub_error);
2229  }
2230 
2231  if (error)
2232  clib_error_report (error);
2233 
2234  return 0;
2235 }
2236 
2237 int
2239 {
2241  pcap_main_t *pm = &vm->dispatch_pcap_main;
2242  vlib_trace_main_t *tm;
2243  vlib_trace_node_t *tn;
2244 
2245  if (a->status)
2246  {
2247  if (vm->dispatch_pcap_enable)
2248  {
2249  int i;
2251  (vm, "pcap dispatch capture enabled: %d of %d pkts...",
2253  vlib_cli_output (vm, "capture to file %s", pm->file_name);
2254 
2255  for (i = 0; i < vec_len (vm->dispatch_buffer_trace_nodes); i++)
2256  {
2257  vlib_cli_output (vm,
2258  "Buffer trace of %d pkts from %U enabled...",
2262  }
2263  }
2264  else
2265  vlib_cli_output (vm, "pcap dispatch capture disabled");
2266  return 0;
2267  }
2268 
2269  /* Consistency checks */
2270 
2271  /* Enable w/ capture already enabled not allowed */
2272  if (vm->dispatch_pcap_enable && a->enable)
2273  return -7; /* VNET_API_ERROR_INVALID_VALUE */
2274 
2275  /* Disable capture with capture already disabled, not interesting */
2276  if (vm->dispatch_pcap_enable == 0 && a->enable == 0)
2277  return -81; /* VNET_API_ERROR_VALUE_EXIST */
2278 
2279  /* Change number of packets to capture while capturing */
2280  if (vm->dispatch_pcap_enable && a->enable
2282  return -8; /* VNET_API_ERROR_INVALID_VALUE_2 */
2283 
2284  /* Independent of enable/disable, to allow buffer trace multi nodes */
2285  if (a->buffer_trace_node_index != ~0)
2286  {
2287  /* *INDENT-OFF* */
2289  {
2290  tm = &this_vlib_main->trace_main;
2291  tm->verbose = 0; /* not sure this ever did anything... */
2293  tn = tm->nodes + a->buffer_trace_node_index;
2294  tn->limit += a->buffer_traces_to_capture;
2295  tm->trace_enable = 1;
2296  }));
2297  /* *INDENT-ON* */
2299  }
2300 
2301  if (a->enable)
2302  {
2303  /* Clean up from previous run, if any */
2304  vec_free (pm->file_name);
2305  vec_free (pm->pcap_data);
2306  memset (pm, 0, sizeof (*pm));
2307 
2310  if (pm->lock == 0)
2311  clib_spinlock_init (&(pm->lock));
2312 
2313  if (a->filename == 0)
2314  a->filename = format (0, "/tmp/dispatch.pcap%c", 0);
2315 
2316  pm->file_name = (char *) a->filename;
2317  pm->n_packets_captured = 0;
2318  pm->packet_type = PCAP_PACKET_TYPE_vpp;
2320  /* *INDENT-OFF* */
2321  foreach_vlib_main (({this_vlib_main->dispatch_pcap_enable = 1;}));
2322  /* *INDENT-ON* */
2323  }
2324  else
2325  {
2326  /* *INDENT-OFF* */
2327  foreach_vlib_main (({this_vlib_main->dispatch_pcap_enable = 0;}));
2328  /* *INDENT-ON* */
2330  if (pm->n_packets_captured)
2331  {
2332  clib_error_t *error;
2334  vlib_cli_output (vm, "Write %d packets to %s, and stop capture...",
2335  pm->n_packets_captured, pm->file_name);
2336  error = pcap_write (pm);
2337  if (pm->flags & PCAP_MAIN_INIT_DONE)
2338  pcap_close (pm);
2339  /* Report I/O errors... */
2340  if (error)
2341  {
2342  clib_error_report (error);
2343  return -11; /* VNET_API_ERROR_SYSCALL_ERROR_1 */
2344  }
2345  return 0;
2346  }
2347  else
2348  return -6; /* VNET_API_ERROR_NO_SUCH_ENTRY */
2349  }
2350 
2351  return 0;
2352 }
2353 
2354 static clib_error_t *
2356  unformat_input_t * input, vlib_cli_command_t * cmd)
2357 {
2358  unformat_input_t _line_input, *line_input = &_line_input;
2360  u8 *filename = 0;
2361  u32 max = 1000;
2362  int rv;
2363  int enable = 0;
2364  int status = 0;
2365  u32 node_index = ~0, buffer_traces_to_capture = 100;
2366 
2367  /* Get a line of input. */
2368  if (!unformat_user (input, unformat_line_input, line_input))
2369  return 0;
2370 
2371  while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
2372  {
2373  if (unformat (line_input, "on %=", &enable, 1))
2374  ;
2375  else if (unformat (line_input, "enable %=", &enable, 1))
2376  ;
2377  else if (unformat (line_input, "off %=", &enable, 0))
2378  ;
2379  else if (unformat (line_input, "disable %=", &enable, 0))
2380  ;
2381  else if (unformat (line_input, "max %d", &max))
2382  ;
2383  else if (unformat (line_input, "packets-to-capture %d", &max))
2384  ;
2385  else if (unformat (line_input, "file %U", unformat_vlib_tmpfile,
2386  &filename))
2387  ;
2388  else if (unformat (line_input, "status %=", &status, 1))
2389  ;
2390  else if (unformat (line_input, "buffer-trace %U %d",
2391  unformat_vlib_node, vm, &node_index,
2392  &buffer_traces_to_capture))
2393  ;
2394  else
2395  {
2396  return clib_error_return (0, "unknown input `%U'",
2397  format_unformat_error, line_input);
2398  }
2399  }
2400 
2401  unformat_free (line_input);
2402 
2403  /* no need for memset (a, 0, sizeof (*a)), set all fields here. */
2404  a->filename = filename;
2405  a->enable = enable;
2406  a->status = status;
2407  a->packets_to_capture = max;
2408  a->buffer_trace_node_index = node_index;
2409  a->buffer_traces_to_capture = buffer_traces_to_capture;
2410 
2412 
2413  switch (rv)
2414  {
2415  case 0:
2416  break;
2417 
2418  case -7:
2419  return clib_error_return (0, "dispatch trace already enabled...");
2420 
2421  case -81:
2422  return clib_error_return (0, "dispatch trace already disabled...");
2423 
2424  case -8:
2425  return clib_error_return
2426  (0, "can't change number of records to capture while tracing...");
2427 
2428  case -11:
2429  return clib_error_return (0, "I/O writing trace capture...");
2430 
2431  case -6:
2432  return clib_error_return (0, "No packets captured...");
2433 
2434  default:
2435  vlib_cli_output (vm, "WARNING: trace configure returned %d", rv);
2436  break;
2437  }
2438  return 0;
2439 }
2440 
2441 /*?
2442  * This command is used to start or stop pcap dispatch trace capture, or show
2443  * the capture status.
2444  *
2445  * This command has the following optional parameters:
2446  *
2447  * - <b>on|off</b> - Used to start or stop capture.
2448  *
2449  * - <b>max <nn></b> - Depth of local buffer. Once '<em>nn</em>' number
2450  * of packets have been received, buffer is flushed to file. Once another
2451  * '<em>nn</em>' number of packets have been received, buffer is flushed
2452  * to file, overwriting previous write. If not entered, value defaults
2453  * to 100. Can only be updated if packet capture is off.
2454  *
2455  * - <b>file <name></b> - Used to specify the output filename. The file will
2456  * be placed in the '<em>/tmp</em>' directory, so only the filename is
2457  * supported. Directory should not be entered. If file already exists, file
2458  * will be overwritten. If no filename is provided, '<em>/tmp/vpe.pcap</em>'
2459  * will be used. Can only be updated if packet capture is off.
2460  *
2461  * - <b>status</b> - Displays the current status and configured attributes
2462  * associated with a packet capture. If packet capture is in progress,
2463  * '<em>status</em>' also will return the number of packets currently in
2464  * the local buffer. All additional attributes entered on command line
2465  * with '<em>status</em>' will be ignored and not applied.
2466  *
2467  * @cliexpar
2468  * Example of how to display the status of capture when off:
2469  * @cliexstart{pcap dispatch trace status}
2470  * max is 100, for any interface to file /tmp/vpe.pcap
2471  * pcap dispatch capture is off...
2472  * @cliexend
2473  * Example of how to start a dispatch trace capture:
2474  * @cliexstart{pcap dispatch trace on max 35 file dispatchTrace.pcap}
2475  * pcap dispatch capture on...
2476  * @cliexend
2477  * Example of how to start a dispatch trace capture with buffer tracing
2478  * @cliexstart{pcap dispatch trace on max 10000 file dispatchTrace.pcap buffer-trace dpdk-input 1000}
2479  * pcap dispatch capture on...
2480  * @cliexend
2481  * Example of how to display the status of a tx packet capture in progress:
2482  * @cliexstart{pcap tx trace status}
2483  * max is 35, dispatch trace to file /tmp/vppTest.pcap
2484  * pcap tx capture is on: 20 of 35 pkts...
2485  * @cliexend
2486  * Example of how to stop a tx packet capture:
2487  * @cliexstart{vppctl pcap dispatch trace off}
2488  * captured 21 pkts...
2489  * saved to /tmp/dispatchTrace.pcap...
2490  * @cliexend
2491 ?*/
2492 /* *INDENT-OFF* */
2494  .path = "pcap dispatch trace",
2495  .short_help =
2496  "pcap dispatch trace [on|off] [max <nn>] [file <name>] [status]\n"
2497  " [buffer-trace <input-node-name> <nn>]",
2498  .function = dispatch_trace_command_fn,
2499 };
2500 /* *INDENT-ON* */
2501 
2502 /*
2503  * fd.io coding-style-patch-verification: ON
2504  *
2505  * Local Variables:
2506  * eval: (c-set-style "gnu")
2507  * End:
2508  */
_vlib_init_function_list_elt_t * worker_init_function_registrations
Definition: main.h:255
u32 * next_nodes
Definition: node.h:334
static void elog_enable_disable(elog_main_t *em, int is_enabled)
Enable or disable event logging.
Definition: elog.h:220
#define vec_validate(V, I)
Make sure vector is long enough for given index (no header, unspecified alignment) ...
Definition: vec.h:509
u32 flags
buffer flags: VLIB_BUFFER_FREE_LIST_INDEX_MASK: bits used to store free list index, VLIB_BUFFER_IS_TRACED: trace this buffer.
Definition: buffer.h:124
clib_error_t * vlib_call_all_main_loop_exit_functions(vlib_main_t *vm)
Definition: init.c:398
static vlib_frame_t * vlib_frame_alloc(vlib_main_t *vm, vlib_node_runtime_t *from_node_runtime, u32 to_next_index)
Definition: main.c:169
uword * pending_rpc_requests
Definition: main.h:313
u64 internal_node_vectors
Definition: main.h:143
vlib_main_t vlib_global_main
Definition: main.c:1983
f64 time
Absolute time as floating point number in seconds.
Definition: elog.h:67
void TW() tw_timer_wheel_init(TWT(tw_timer_wheel) *tw, void *expired_timer_callback, f64 timer_interval_in_seconds, u32 max_expirations)
Initialize a tw timer wheel template instance.
u16 vector_size
Definition: node.h:320
volatile u32 * pending_remote_interrupts_notify
Definition: node.h:694
u32 max_clock
Maximum clock cycle for an invocation.
Definition: node.h:473
u32 next_frame_index
Start of next frames for this node.
Definition: node.h:484
never_inline void vlib_node_runtime_sync_stats(vlib_main_t *vm, vlib_node_runtime_t *r, uword n_calls, uword n_vectors, uword n_clocks)
Definition: main.c:569
static clib_error_t * show_frame_stats(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
Definition: main.c:266
#define hash_set(h, key, value)
Definition: hash.h:255
char * file_name
File name of pcap output.
Definition: pcap.h:162
vlib_node_type_t
Definition: node.h:69
#define clib_min(x, y)
Definition: clib.h:327
clib_error_t * vlib_call_all_main_loop_enter_functions(vlib_main_t *vm)
Definition: init.c:391
static_always_inline void clib_spinlock_unlock(clib_spinlock_t *p)
Definition: lock.h:119
static void vlib_next_frame_change_ownership(vlib_main_t *vm, vlib_node_runtime_t *node_runtime, u32 next_index)
Definition: main.c:296
static_always_inline void clib_spinlock_lock(clib_spinlock_t *p)
Definition: lock.h:80
static vlib_next_frame_t * vlib_node_get_next_frame(vlib_main_t *vm, u32 node_index, u32 next_index)
Get pointer to frame by (node_index, next_index).
Definition: node_funcs.h:352
u32 interrupt_threshold_vector_length
Definition: node.h:701
vlib_process_t ** processes
Definition: node.h:722
int vl_api_get_elog_trace_api_messages(void)
Definition: main.c:2063
u32 flags
flags
Definition: pcap.h:174
static uword vlib_process_bootstrap(uword _a)
Definition: main.c:1436
format_function_t format_vlib_node_name
Definition: node_funcs.h:1222
vl_api_wireguard_peer_flags_t flags
Definition: wireguard.api:103
vlib_node_runtime_t node_runtime
Definition: node.h:550
a
Definition: bitmap.h:538
static void placeholder_queue_signal_callback(vlib_main_t *vm)
Definition: main.c:2030
u32 n_suspends
Definition: node.h:578
#define VLIB_PENDING_FRAME_NO_NEXT_FRAME
Definition: node.h:460
u32 n_packets_to_capture
Number of packets to capture.
Definition: pcap.h:165
static u32 vlib_buffer_get_trace_index(vlib_buffer_t *b)
Extract the trace (pool) index from a trace handle.
Definition: buffer.h:388
vlib_frame_t * vlib_get_next_frame_internal(vlib_main_t *vm, vlib_node_runtime_t *node, u32 next_index, u32 allocate_new_next_frame)
Definition: main.c:379
uword * processing_rpc_requests
Definition: main.h:314
static u32 clib_get_current_numa_node()
Definition: cpu.h:175
u8 * format_vnet_buffer_opaque2(u8 *s, va_list *args)
Definition: main.c:980
#define VLIB_PCAP_MAJOR_VERSION
Definition: main.h:478
vlib_trace_node_t * nodes
Definition: trace.h:100
static void vlib_elog_main_loop_event(vlib_main_t *vm, u32 node_index, u64 time, u32 n_vectors, u32 is_return)
Definition: main.c:898
static clib_error_t * elog_save_buffer(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
Definition: main.c:700
int elog_post_mortem_dump
Definition: main.h:278
uword dispatch_pcap_enable
Definition: main.h:199
#define PREDICT_TRUE(x)
Definition: clib.h:121
uword random_seed
Definition: main.h:240
i16 current_data
signed offset in data[], pre_data[] that we are currently processing.
Definition: buffer.h:110
unsigned long u64
Definition: types.h:89
static void vlib_increment_main_loop_counter(vlib_main_t *vm)
Definition: main.h:425
f64 loop_interval_start
Definition: main.h:289
elog_time_stamp_t init_time
Timestamps.
Definition: elog.h:172
#define clib_memcpy_fast(a, b, c)
Definition: string.h:81
void clib_random_buffer_init(clib_random_buffer_t *b, uword seed)
Definition: random_buffer.c:62
clib_memset(h->entries, 0, sizeof(h->entries[0]) *entries)
u32 index
Definition: node.h:279
static f64 vlib_time_now(vlib_main_t *vm)
Definition: main.h:333
f64 buffer_alloc_success_rate
Definition: main.h:319
u32 current_process_index
Definition: node.h:725
void vlib_register_all_static_nodes(vlib_main_t *vm)
Definition: node.c:515
static_always_inline void clib_spinlock_unlock_if_init(clib_spinlock_t *p)
Definition: lock.h:127
static u32 clib_get_current_cpu_id()
Definition: cpu.h:167
u32 thread_index
Definition: main.h:249
u16 current_length
Nbytes between current data and the end of this buffer.
Definition: buffer.h:113
static_always_inline uword vlib_process_startup(vlib_main_t *vm, vlib_process_t *p, vlib_frame_t *f)
Definition: main.c:1466
u32 main_loop_exit_set
Definition: main.h:158
static u64 dispatch_pending_node(vlib_main_t *vm, uword pending_frame_index, u64 last_time_stamp)
Definition: main.c:1302
static vlib_frame_t * vlib_get_frame(vlib_main_t *vm, vlib_frame_t *f)
Definition: node_funcs.h:269
static void vlib_validate_frame_indices(vlib_frame_t *f)
Definition: main.c:191
f64 loops_per_second
Definition: main.h:290
#define vec_add1(V, E)
Add 1 element to end of vector (unspecified alignment).
Definition: vec.h:592
static u64 clib_cpu_time_now(void)
Definition: time.h:81
u8 * format_vnet_buffer_opaque(u8 *s, va_list *args)
Definition: main.c:971
elog_track_t elog_track
Definition: threads.h:101
u32 clocks_since_last_overflow
Number of clock cycles.
Definition: node.h:471
#define vec_add2(V, P, N)
Add N elements to end of vector V, return pointer to new elements in P.
Definition: vec.h:630
uword unformat_user(unformat_input_t *input, unformat_function_t *func,...)
Definition: unformat.c:989
static void vlib_process_update_stats(vlib_main_t *vm, vlib_process_t *p, uword n_calls, uword n_vectors, uword n_clocks)
Definition: main.c:674
static void elog_show_buffer_internal(vlib_main_t *vm, u32 n_events_to_show)
Definition: main.c:835
#define VLIB_MAIN_LOOP_EXIT_CLI
Definition: main.h:165
void clib_longjmp(clib_longjmp_t *save, uword return_value)
vlib_main_t * vm
Definition: in2out_ed.c:1582
u8 * format(u8 *s, const char *fmt,...)
Definition: format.c:424
static vlib_frame_size_t * get_frame_size_info(vlib_node_main_t *nm, u32 n_scalar_bytes, u32 n_vector_bytes)
Definition: main.c:90
static clib_error_t * elog_show_buffer(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
Definition: main.c:863
u8 * format_elog_event(u8 *s, va_list *va)
Definition: elog.c:296
clib_time_t clib_time
Definition: main.h:124
u32 numa_node
Definition: main.h:251
u8 * format_vnet_buffer_flags(u8 *s, va_list *args)
Definition: main.c:963
#define vec_validate_aligned(V, I, A)
Make sure vector is long enough for given index (no header, specified alignment)
Definition: vec.h:520
clib_spinlock_t pending_interrupt_lock
Definition: node.h:695
static uword vlib_buffer_length_in_chain(vlib_main_t *vm, vlib_buffer_t *b)
Get length in bytes of the buffer chain.
Definition: buffer_funcs.h:402
#define pool_get(P, E)
Allocate an object E from a pool P (unspecified alignment).
Definition: pool.h:252
uword clib_setjmp(clib_longjmp_t *save, uword return_value_not_taken)
#define vec_alloc(V, N)
Allocate space for N more elements (no header, unspecified alignment)
Definition: vec.h:319
unsigned char u8
Definition: types.h:56
clib_error_t * vlib_sort_init_exit_functions(_vlib_init_function_list_elt_t **head)
Topological sorter for init function chains.
Definition: init.c:76
static uword vlib_process_stack_is_valid(vlib_process_t *p)
Definition: main.c:1422
u8 data[128]
Definition: ipsec_types.api:89
u8 buffer_pool_index
index of buffer pool this buffer belongs.
Definition: buffer.h:133
#define vec_reset_length(v)
Reset vector length to zero NULL-pointer tolerant.
double f64
Definition: types.h:142
u16 scalar_size
Definition: node.h:320
u8 state
Definition: node.h:308
u16 thread_index
thread this node runs on
Definition: node.h:516
#define vlib_worker_thread_barrier_sync(X)
Definition: threads.h:205
u64 internal_node_calls
Definition: main.h:144
volatile uword check_frame_queues
Definition: main.h:310
static void vlib_worker_thread_barrier_check(void)
Definition: threads.h:401
static clib_error_t * dispatch_trace_command_fn(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
Definition: main.c:2355
u32 input_main_loops_per_call
For input nodes: decremented on each main loop interation until it reaches zero and function is calle...
Definition: node.h:489
static void vlib_main_loop(vlib_main_t *vm)
Definition: main.c:1972
#define foreach_weak_reference_stub
Definition: main.c:2034
vlib_trace_header_t ** trace_buffer_pool
Definition: trace.h:86
#define static_always_inline
Definition: clib.h:108
uword unformat_vlib_tmpfile(unformat_input_t *input, va_list *args)
Definition: format.c:192
PCAP main state data structure.
Definition: pcap.h:156
u32 trace_enable
Definition: trace.h:97
clib_spinlock_t lock
spinlock to protect e.g.
Definition: pcap.h:159
#define VLIB_FRAME_NO_APPEND
Definition: node.h:418
vlib_node_function_t * function
Node function to call.
Definition: node.h:467
void elog_init(elog_main_t *em, u32 n_events)
Definition: elog.c:502
#define VLIB_FRAME_MAGIC
void vl_api_set_elog_main(elog_main_t *m)
Definition: main.c:2048
u32 main_loop_vectors_processed
Definition: main.h:139
#define VLIB_INVALID_NODE_INDEX
Definition: node.h:374
u16 log2_n_stack_bytes
Definition: node.h:573
vlib_node_t ** nodes
Definition: node.h:679
u32 vectors_since_last_overflow
Number of vector elements processed by this node.
Definition: node.h:481
vlib_frame_t * frame
Definition: main.c:1431
#define vec_elt_at_index(v, i)
Get vector value at index i checking that i is in bounds.
vlib_frame_t * vlib_get_frame_to_node(vlib_main_t *vm, u32 to_node_index)
Definition: main.c:182
#define clib_error_return(e, args...)
Definition: error.h:99
static void dispatch_pcap_trace(vlib_main_t *vm, vlib_node_runtime_t *node, vlib_frame_t *frame)
Definition: main.c:1011
#define VLIB_FRAME_ALIGN
Definition: node.h:378
u32 cpu_id
Definition: main.h:250
static void vlib_process_sync_stats(vlib_main_t *vm, vlib_process_t *p, uword n_calls, uword n_vectors, uword n_clocks)
Definition: main.c:587
static uword vlib_timing_wheel_data_is_timed_event(u32 d)
Definition: node.h:647
#define VLIB_NODE_FLAG_SWITCH_FROM_INTERRUPT_TO_POLLING_MODE
Definition: node.h:303
#define VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_CLOCK
Definition: node.h:564
vlib_node_interrupt_t * pending_remote_interrupts
Definition: node.h:693
#define vec_resize(V, N)
Resize a vector (no header, unspecified alignment) Add N elements to end of given vector V...
Definition: vec.h:281
static_always_inline void vlib_process_start_switch_stack(vlib_main_t *vm, vlib_process_t *p)
Definition: node_funcs.h:56
unsigned int u32
Definition: types.h:88
static_always_inline uword vlib_process_resume(vlib_main_t *vm, vlib_process_t *p)
Definition: main.c:1489
u64 cpu_time_main_loop_start
Definition: main.h:133
vlib_node_runtime_t * nodes_by_type[VLIB_N_NODE_TYPE]
Definition: node.h:689
static u32 vlib_frame_bytes(u32 n_scalar_bytes, u32 n_vector_bytes)
Definition: main.c:53
#define VLIB_MAIN_LOOP_EXIT_NONE
Definition: main.h:162
#define VLIB_FRAME_SIZE
Definition: node.h:377
static vlib_next_frame_t * vlib_node_runtime_get_next_frame(vlib_main_t *vm, vlib_node_runtime_t *n, u32 next_index)
Definition: node_funcs.h:317
u8 * pcap_buffer
Definition: main.h:201
#define VLIB_PROCESS_IS_RUNNING
Definition: node.h:570
#define VLIB_PROCESS_RETURN_LONGJMP_RETURN
Definition: node.h:555
u8 * vnet_trace_placeholder
Definition: trace.c:43
f64 seconds_per_loop
Definition: main.h:291
u64 max_clock_n
Definition: node.h:237
unformat_function_t unformat_line_input
Definition: format.h:283
static void clib_spinlock_init(clib_spinlock_t *p)
Definition: lock.h:63
vl_api_fib_path_type_t type
Definition: fib_types.api:123
vlib_error_t error
Error code for buffers to be enqueued to error handler.
Definition: buffer.h:136
u32 calls_since_last_overflow
Number of calls.
Definition: node.h:479
char * name
Definition: main.h:171
clib_error_t * pcap_close(pcap_main_t *pm)
Close PCAP file.
Definition: pcap.c:74
vlib_worker_thread_t * vlib_worker_threads
Definition: threads.c:34
#define hash_get(h, key)
Definition: hash.h:249
#define pool_elt_at_index(p, i)
Returns pointer to element at given index.
Definition: pool.h:534
static clib_error_t * elog_write_file(elog_main_t *em, char *clib_file, int flush_ring)
Definition: elog.h:532
u32 next_frame_index
Definition: node.h:457
static void * vlib_process_signal_event_helper(vlib_node_main_t *nm, vlib_node_t *n, vlib_process_t *p, uword t, uword n_data_elts, uword n_data_elt_bytes)
Definition: node_funcs.h:824
vlib_node_stats_t stats_total
Definition: node.h:269
static void vlib_put_next_frame_validate(vlib_main_t *vm, vlib_node_runtime_t *rt, u32 next_index, u32 n_vectors_left)
Definition: main.c:444
u16 state
Input node state.
Definition: node.h:502
static u8 * format_buffer_metadata(u8 *s, va_list *args)
Definition: main.c:987
static_always_inline u64 dispatch_pending_interrupts(vlib_main_t *vm, vlib_node_main_t *nm, u64 cpu_time_now)
Definition: main.c:1681
format_function_t format_vlib_trace
Definition: trace.h:113
vlib_signal_timed_event_data_t * signal_timed_event_data_pool
Definition: node.h:712
u16 frame_flags
Definition: node.h:384
#define VLIB_FRAME_IS_ALLOCATED
Definition: node.h:425
#define VLIB_FRAME_NO_FREE_AFTER_DISPATCH
Definition: node.h:414
u8 * pcap_data
Vector of pcap data.
Definition: pcap.h:184
struct _unformat_input_t unformat_input_t
static_always_inline u64 dispatch_node(vlib_main_t *vm, vlib_node_runtime_t *node, vlib_node_type_t type, vlib_node_state_t dispatch_state, vlib_frame_t *frame, u64 last_time_stamp)
Definition: main.c:1119
u32 n_alloc_frames
Definition: node.h:534
void vlib_put_frame_to_node(vlib_main_t *vm, u32 to_node_index, vlib_frame_t *f)
Definition: main.c:216
vec_header_t h
Definition: buffer.c:322
static uword vlib_timing_wheel_data_get_index(u32 d)
Definition: node.h:665
#define vec_alloc_aligned(V, N, A)
Allocate space for N more elements (no header, given alignment)
Definition: vec.h:328
u32 *TW() tw_timer_expire_timers_vec(TWT(tw_timer_wheel) *tw, f64 now, u32 *vec)
void di(unformat_input_t *i)
Definition: unformat.c:163
#define pool_put(P, E)
Free an object E in pool P.
Definition: pool.h:302
elog_event_type_t * node_return_elog_event_types
Definition: main.h:235
#define TWT(a)
void vlib_frame_free(vlib_main_t *vm, vlib_node_runtime_t *r, vlib_frame_t *f)
Definition: main.c:238
u32 polling_threshold_vector_length
Definition: node.h:700
#define ELOG_DATA(em, f)
Definition: elog.h:484
u64 * n_vectors_by_next_node
Definition: node.h:343
u32 trace_handle
Specifies trace buffer handle if VLIB_PACKET_IS_TRACED flag is set.
Definition: buffer.h:163
#define PREDICT_FALSE(x)
Definition: clib.h:120
#define always_inline
Definition: ipsec.h:28
f64 seconds_per_clock
Definition: time.h:58
void elog_post_mortem_dump(void)
Definition: main.c:737
u8 protocol_hint
Definition: node.h:314
vlib_frame_t * frame
Definition: node.h:454
u32 node_index
Node index.
Definition: node.h:487
#define foreach_vlib_main(body)
Definition: threads.h:242
uword * init_functions_called
Definition: main.h:246
static void * pcap_add_packet(pcap_main_t *pm, f64 time_now, u32 n_bytes_in_trace, u32 n_bytes_in_packet)
Add packet.
Definition: pcap_funcs.h:41
#define VLIB_PROCESS_STACK_MAGIC
Definition: node.h:611
#define VLIB_PROCESS_RESUME_LONGJMP_RESUME
Definition: node.h:561
uword * frame_size_hash
Definition: node.h:737
void elog_alloc(elog_main_t *em, u32 n_events)
Definition: elog.c:488
clib_error_t * vlibmemory_init(vlib_main_t *vm)
Definition: memory_api.c:931
volatile u32 queue_signal_pending
Definition: main.h:262
static vlib_frame_t * vlib_frame_alloc_to_node(vlib_main_t *vm, u32 to_node_index, u32 frame_flags)
Definition: main.c:116
clib_error_t * map_api_segment_init(vlib_main_t *vm)
Definition: memory_api.c:474
f64 damping_constant
Definition: main.h:292
u8 * name
Definition: node.h:263
static u64 dispatch_process(vlib_main_t *vm, vlib_process_t *p, vlib_frame_t *f, u64 last_time_stamp)
Definition: main.c:1507
static_always_inline void os_set_numa_index(uword numa_index)
Definition: os.h:81
u32 owner_node_index
Definition: node.h:354
#define VLIB_EARLY_CONFIG_FUNCTION(x, n,...)
Definition: init.h:226
static u32 vlib_node_runtime_update_main_loop_vector_stats(vlib_main_t *vm, vlib_node_runtime_t *node, uword n_vectors)
Definition: node_funcs.h:1110
#define UNFORMAT_END_OF_INPUT
Definition: format.h:145
u8 inline_event_data[64 - 3 *sizeof(u32) - 2 *sizeof(u16)]
Definition: node.h:638
svmdb_client_t * c
u16 n_vectors
Definition: node.h:396
u32 runtime_index
Definition: node.h:282
#define CLIB_PREFETCH(addr, size, type)
Definition: cache.h:80
int elog_trace_graph_dispatch
Definition: main.h:229
static uword elog_n_events_in_buffer(elog_main_t *em)
Return number of events in the event-log buffer.
Definition: elog.h:191
static_always_inline void vlib_main_or_worker_loop(vlib_main_t *vm, int is_main)
Definition: main.c:1702
u32 node_runtime_index
Definition: node.h:451
vlib_pending_frame_t * pending_frames
Definition: node.h:707
u32 flow_id
Generic flow identifier.
Definition: buffer.h:127
int vlib_frame_queue_dequeue(vlib_main_t *vm, vlib_frame_queue_main_t *fqm)
Definition: threads.c:1703
sll srl srl sll sra u16x4 i
Definition: vector_sse42.h:317
#define vec_free(V)
Free vector&#39;s memory (no header).
Definition: vec.h:380
clib_error_t * vpe_api_init(vlib_main_t *vm)
Definition: api.c:656
#define VLIB_NODE_FLAG_FRAME_NO_FREE_AFTER_DISPATCH
Definition: node.h:292
static u32 vlib_node_runtime_update_stats(vlib_main_t *vm, vlib_node_runtime_t *node, uword n_calls, uword n_vectors, uword n_clocks)
Definition: main.c:636
#define clib_warning(format, args...)
Definition: error.h:59
#define VLIB_PROCESS_RESUME_PENDING
Definition: node.h:567
static vlib_node_runtime_t * vlib_node_get_runtime(vlib_main_t *vm, u32 node_index)
Get node runtime by node index.
Definition: node_funcs.h:115
u8 data[]
Packet data.
Definition: buffer.h:181
#define VLIB_BUFFER_TRACE_TRAJECTORY
Compile time buffer trajectory tracing option Turn this on if you run into "bad monkey" contexts...
Definition: buffer.h:483
elog_main_t elog_main
Definition: main.h:224
void(**volatile worker_thread_main_loop_callbacks)(struct vlib_main_t *, u64 t)
Definition: main.h:269
clib_error_t * vlib_buffer_main_init(struct vlib_main_t *vm)
Definition: buffer.c:834
#define VLIB_FRAME_PENDING
Definition: node.h:428
static u32 vlib_frame_vector_byte_offset(u32 scalar_size)
Definition: node_funcs.h:286
u32 current_config_index
Used by feature subgraph arcs to visit enabled feature nodes.
Definition: buffer.h:147
void vlib_put_next_frame(vlib_main_t *vm, vlib_node_runtime_t *r, u32 next_index, u32 n_vectors_left)
Release pointer to next frame vector data.
Definition: main.c:483
#define ELOG_TYPE_DECLARE(f)
Definition: elog.h:442
clib_error_t * pcap_write(pcap_main_t *pm)
Write PCAP file.
Definition: pcap.c:89
static uword round_pow2(uword x, uword pow2)
Definition: clib.h:264
u32 n_total_events_disable_limit
When count reaches limit logging is disabled.
Definition: elog.h:139
vlib_frame_t ** free_frames
Definition: node.h:537
vlib_main_t vlib_node_runtime_t * node
Definition: in2out_ed.c:1582
u8 exp
Definition: fib_types.api:27
#define VLIB_CLI_COMMAND(x,...)
Definition: cli.h:158
#define VLIB_PCAP_MINOR_VERSION
Definition: main.h:479
u32 node_runtime_index
Definition: node.h:672
vlib_node_interrupt_t * pending_local_interrupts
Definition: node.h:692
#define never_inline
Definition: clib.h:104
signed int i32
Definition: types.h:77
#define hash_create(elts, value_bytes)
Definition: hash.h:696
#define uword_to_pointer(u, type)
Definition: types.h:136
u16 cached_next_index
Next frame index that vector arguments were last enqueued to last time this node ran.
Definition: node.h:510
static void vlib_node_runtime_perf_counter(vlib_main_t *vm, vlib_node_runtime_t *node, vlib_frame_t *frame, uword n, u64 t, vlib_node_runtime_perf_call_type_t call_type)
Definition: main.h:441
clib_error_t * vlib_node_main_init(vlib_main_t *vm)
Definition: node.c:606
#define PCAP_MAIN_INIT_DONE
Definition: pcap.h:175
#define pool_put_index(p, i)
Free pool element with given index.
Definition: pool.h:331
#define ASSERT(truth)
u64 last_cpu_time
Definition: time.h:51
void vlib_cli_output(vlib_main_t *vm, char *fmt,...)
Definition: cli.c:696
static void elog_reset_buffer(elog_main_t *em)
Reset the event buffer.
Definition: elog.h:210
vlib_frame_queue_main_t * frame_queue_mains
Definition: threads.h:333
#define ELOG_TRACK_DATA(em, f, track)
Definition: elog.h:478
vlib_frame_t * frame
Definition: node.h:405
uword event_ring_size
Power of 2 number of elements in ring.
Definition: elog.h:145
u16 flags
Definition: node.h:387
u32 main_loop_nodes_processed
Definition: main.h:140
u64 cpu
CPU cycle counter.
Definition: elog.h:126
u64 loops_this_reporting_interval
Definition: main.h:287
void vlib_worker_thread_initial_barrier_sync_and_release(vlib_main_t *vm)
Definition: threads.c:1423
static_always_inline void vlib_process_finish_switch_stack(vlib_main_t *vm)
Definition: node_funcs.h:66
#define clib_error_report(e)
Definition: error.h:113
u32 elog_trace_graph_circuit_node_index
Definition: main.h:231
vlib_trace_main_t trace_main
Definition: main.h:195
int vl_api_set_elog_trace_api_messages(int enable)
Definition: main.c:2055
static uword pointer_to_uword(const void *p)
Definition: types.h:131
#define A(x)
Definition: main.c:1008
void(* queue_signal_callback)(struct vlib_main_t *)
Definition: main.h:264
void vlib_gdb_show_event_log(void)
Definition: main.c:892
static vlib_main_t * vlib_get_main(void)
Definition: global_funcs.h:23
#define VLIB_FRAME_OWNER
Definition: node.h:422
void vlib_node_sync_stats(vlib_main_t *vm, vlib_node_t *n)
Definition: main.c:599
#define vec_elt(v, i)
Get vector value at index i.
int vlib_main(vlib_main_t *volatile vm, unformat_input_t *input)
Definition: main.c:2071
#define unformat_parse_error(input)
Definition: format.h:269
typedef key
Definition: ipsec_types.api:85
pcap_packet_type_t packet_type
Packet type.
Definition: pcap.h:168
void vlib_worker_loop(vlib_main_t *vm)
Definition: main.c:1978
static vlib_node_t * vlib_get_next_node(vlib_main_t *vm, u32 node_index, u32 next_index)
Get vlib node by graph arc (next) index.
Definition: node_funcs.h:98
void vl_api_send_pending_rpc_requests(vlib_main_t *)
Definition: main.c:1676
#define clib_mem_alloc_aligned_no_fail(size, align)
Definition: mem.h:191
u32 buffer_alloc_success_seed
Definition: main.h:318
u32 * data_from_advancing_timing_wheel
Definition: node.h:715
clib_error_t * vlib_physmem_init(vlib_main_t *vm)
Definition: physmem.c:94
#define vec_len(v)
Number of elements in vector (rvalue-only, NULL tolerant)
u32 input_node_counts_by_state[VLIB_N_NODE_STATE]
Definition: node.h:734
vlib_pending_frame_t * suspended_process_frames
Definition: node.h:728
u32 next_buffer
Next buffer for this linked-list of buffers.
Definition: buffer.h:140
vlib_node_main_t node_main
Definition: main.h:189
vlib_main_t vlib_node_runtime_t vlib_frame_t * frame
Definition: in2out_ed.c:1583
static u32 * vlib_frame_find_magic(vlib_frame_t *f, vlib_node_t *node)
Definition: main.c:78
VLIB buffer representation.
Definition: buffer.h:102
u64 uword
Definition: types.h:112
u32 owner_next_index
Definition: node.h:354
u8 vector_size
Definition: node.h:393
vlib_next_frame_t * next_frames
Definition: node.h:704
static clib_error_t * elog_stop(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
Definition: main.c:763
static void unformat_free(unformat_input_t *i)
Definition: format.h:163
clib_error_t * vlib_call_all_config_functions(vlib_main_t *vm, unformat_input_t *input, int is_early)
Definition: init.c:405
static void * vlib_frame_vector_args(vlib_frame_t *f)
Get pointer to frame vector data.
Definition: node_funcs.h:297
static uword elog_is_enabled(elog_main_t *em)
event logging enabled predicate
Definition: elog.h:276
static f64 clib_time_now_internal(clib_time_t *c, u64 n)
Definition: time.h:210
u32 index
Definition: flow_types.api:221
#define VLIB_FRAME_TRACE
Definition: node.h:434
u32 interrupt_data
Data passed together with interrupt.
Definition: node.h:504
u32 stop_timer_handle
Definition: node.h:603
clib_error_t * vlib_call_all_init_functions(vlib_main_t *vm)
Definition: init.c:378
#define VLIB_FRAME_SIZE_EXTRA
unformat_function_t unformat_vlib_node
Definition: node_funcs.h:1228
static void elog_track(elog_main_t *em, elog_event_type_t *type, elog_track_t *track, u32 data)
Log a single-datum event to a specific track, non-inline version.
Definition: elog.h:398
static u64 dispatch_suspended_process(vlib_main_t *vm, uword process_index, u64 last_time_stamp)
Definition: main.c:1594
vlib_frame_size_t * frame_sizes
Definition: node.h:740
u64 resume_clock_interval
Definition: node.h:600
static void add_trajectory_trace(vlib_buffer_t *b, u32 node_index)
Definition: main.c:951
u16 flags
Definition: node.h:563
elog_event_type_t * node_call_elog_event_types
Definition: main.h:234
static void * clib_mem_alloc_aligned(uword size, uword align)
Definition: mem.h:165
vlib_node_type_t type
Definition: node.h:276
static vlib_process_t * vlib_get_process_from_node(vlib_main_t *vm, vlib_node_t *node)
Definition: node_funcs.h:261
uword clib_calljmp(uword(*func)(uword func_arg), uword func_arg, void *stack)
u8 * format_unformat_error(u8 *s, va_list *va)
Definition: unformat.c:91
u32 name_elog_string
Definition: node.h:266
void vlib_worker_thread_barrier_release(vlib_main_t *vm)
Definition: threads.c:1554
#define clib_call_callbacks(h,...)
call the specified callback set
Definition: callback.h:67
vlib_node_state_t
Definition: node.h:249
pcap_main_t dispatch_pcap_main
Definition: main.h:198
u64 init_cpu_time
Definition: time.h:61
u32 TW() tw_timer_start(TWT(tw_timer_wheel) *tw, u32 user_id, u32 timer_id, u64 interval)
Start a Tw Timer.
u32 * stack
Definition: node.h:612
u32 suspended_process_frame_index
Definition: node.h:575
static void validate_frame_magic(vlib_main_t *vm, vlib_frame_t *f, vlib_node_t *n, uword next_index)
Definition: main.c:370
static vlib_thread_main_t * vlib_get_thread_main()
Definition: global_funcs.h:32
f64 loop_interval_end
Definition: main.h:288
static clib_error_t * vlib_main_configure(vlib_main_t *vm, unformat_input_t *input)
Definition: main.c:1986
static vlib_cli_command_t pcap_dispatch_trace_command
(constructor) VLIB_CLI_COMMAND (pcap_dispatch_trace_command)
Definition: main.c:2493
u32 internal_node_last_vectors_per_main_loop
Definition: main.h:149
static vlib_node_t * vlib_get_node(vlib_main_t *vm, u32 i)
Get vlib node by index.
Definition: node_funcs.h:85
static clib_error_t * vlib_cli_elog_clear(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
Definition: main.c:683
#define VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_EVENT
Definition: node.h:565
#define vec_foreach(var, vec)
Vector iterator.
elog_track_t default_track
Default track.
Definition: elog.h:166
clib_longjmp_t return_longjmp
Definition: node.h:553
u16 flags
Copy of main node flags.
Definition: node.h:500
u32 node_runtime_index
Definition: node.h:408
u32 n_total_events
Total number of events in buffer.
Definition: elog.h:135
u8 scalar_size
Definition: node.h:390
clib_longjmp_t main_loop_exit
Definition: main.h:161
clib_longjmp_t resume_longjmp
Definition: node.h:559
void clib_mem_trace(int enable)
Definition: mem_dlmalloc.c:470
static clib_error_t * elog_resize(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
Definition: main.c:803
static_always_inline void vlib_get_buffers(vlib_main_t *vm, u32 *bi, vlib_buffer_t **b, int count)
Translate array of buffer indices into buffer pointers.
Definition: buffer_funcs.h:280
#define VLIB_NODE_FLAG_TRACE
Definition: node.h:301
#define CLIB_CACHE_LINE_BYTES
Definition: cache.h:59
u32 total_length_not_including_first_buffer
Only valid for first buffer in chain.
Definition: buffer.h:167
#define TW(a)
clib_error_t * vlib_map_stat_segment_init(void)
Definition: stat_segment.c:315
static u32 vlib_timing_wheel_data_set_suspended_process(u32 i)
Definition: node.h:653
void vlib_start_process(vlib_main_t *vm, uword process_index)
Definition: main.c:1586
int vlib_pcap_dispatch_trace_configure(vlib_pcap_dispatch_trace_args_t *a)
Definition: main.c:2238
static_always_inline void clib_spinlock_lock_if_init(clib_spinlock_t *p)
Definition: lock.h:104
void * timing_wheel
Definition: node.h:710
volatile u8 ref_count
Reference count for this buffer.
Definition: buffer.h:130
int elog_trace_graph_circuit
Definition: main.h:230
u32 n_packets_captured
Number of packets currently captured.
Definition: pcap.h:171
static vlib_buffer_t * vlib_get_buffer(vlib_main_t *vm, u32 buffer_index)
Translate buffer index into buffer pointer.
Definition: buffer_funcs.h:85
clib_random_buffer_t random_buffer
Definition: main.h:243
static clib_error_t * elog_restart(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
Definition: main.c:783
#define VLIB_NODE_FLAG_SWITCH_FROM_POLLING_TO_INTERRUPT_MODE
Definition: node.h:304
u8 *(* validate_frame)(struct vlib_main_t *vm, struct vlib_node_runtime_t *, struct vlib_frame_t *f)
Definition: node.h:364
uword unformat(unformat_input_t *i, const char *fmt,...)
Definition: unformat.c:978
u32 * dispatch_buffer_trace_nodes
Definition: main.h:200
clib_error_t * main_loop_error
Definition: main.h:168
vlib_process_t * process
Definition: main.c:1430
elog_event_t * elog_peek_events(elog_main_t *em)
convert event ring events to events, and return them as a vector.
Definition: elog.c:546
static uword elog_buffer_capacity(elog_main_t *em)
Return number of events which can fit in the event buffer.
Definition: elog.h:201
u64 cpu_time_last_node_dispatch
Definition: main.h:130
static uword unformat_check_input(unformat_input_t *i)
Definition: format.h:171
#define VLIB_FRAME_FREE_AFTER_DISPATCH
Definition: node.h:431
clib_error_t * vlib_thread_init(vlib_main_t *vm)
Definition: threads.c:207
u32 vectors_since_last_overflow
Definition: node.h:437
u32 max_clock_n
Number of vectors in the recorded max_clock.
Definition: node.h:476
#define VLIB_PROCESS_RETURN_LONGJMP_SUSPEND
Definition: node.h:556