FD.io VPP  v19.04.4-rc0-5-ge88582fac
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 #include <vlib/unix/cj.h>
48 
50 
51 /* Actually allocate a few extra slots of vector data to support
52  speculative vector enqueues which overflow vector data in next frame. */
53 #define VLIB_FRAME_SIZE_ALLOC (VLIB_FRAME_SIZE + 4)
54 
56 
58 vlib_frame_bytes (u32 n_scalar_bytes, u32 n_vector_bytes)
59 {
60  u32 n_bytes;
61 
62  /* Make room for vlib_frame_t plus scalar arguments. */
63  n_bytes = vlib_frame_vector_byte_offset (n_scalar_bytes);
64 
65  /* Make room for vector arguments.
66  Allocate a few extra slots of vector data to support
67  speculative vector enqueues which overflow vector data in next frame. */
68 #define VLIB_FRAME_SIZE_EXTRA 4
69  n_bytes += (VLIB_FRAME_SIZE + VLIB_FRAME_SIZE_EXTRA) * n_vector_bytes;
70 
71  /* Magic number is first 32bit number after vector data.
72  Used to make sure that vector data is never overrun. */
73 #define VLIB_FRAME_MAGIC (0xabadc0ed)
74  n_bytes += sizeof (u32);
75 
76  /* Pad to cache line. */
77  n_bytes = round_pow2 (n_bytes, CLIB_CACHE_LINE_BYTES);
78 
79  return n_bytes;
80 }
81 
84 {
85  void *p = f;
86 
88 
90 
91  return p;
92 }
93 
94 static inline vlib_frame_size_t *
96  u32 n_scalar_bytes, u32 n_vector_bytes)
97 {
98 #ifdef VLIB_SUPPORTS_ARBITRARY_SCALAR_SIZES
99  uword key = (n_scalar_bytes << 16) | n_vector_bytes;
100  uword *p, i;
101 
102  p = hash_get (nm->frame_size_hash, key);
103  if (p)
104  i = p[0];
105  else
106  {
107  i = vec_len (nm->frame_sizes);
108  vec_validate (nm->frame_sizes, i);
109  hash_set (nm->frame_size_hash, key, i);
110  }
111 
112  return vec_elt_at_index (nm->frame_sizes, i);
113 #else
114  ASSERT (vlib_frame_bytes (n_scalar_bytes, n_vector_bytes)
115  == (vlib_frame_bytes (0, 4)));
116  return vec_elt_at_index (nm->frame_sizes, 0);
117 #endif
118 }
119 
120 static vlib_frame_t *
122  u32 frame_flags)
123 {
124  vlib_node_main_t *nm = &vm->node_main;
125  vlib_frame_size_t *fs;
126  vlib_node_t *to_node;
127  vlib_frame_t *f;
128  u32 l, n, scalar_size, vector_size;
129 
130  to_node = vlib_get_node (vm, to_node_index);
131 
132  scalar_size = to_node->scalar_size;
133  vector_size = to_node->vector_size;
134 
135  fs = get_frame_size_info (nm, scalar_size, vector_size);
136  n = vlib_frame_bytes (scalar_size, vector_size);
137  if ((l = vec_len (fs->free_frames)) > 0)
138  {
139  /* Allocate from end of free list. */
140  f = fs->free_frames[l - 1];
141  _vec_len (fs->free_frames) = l - 1;
142  }
143  else
144  {
146  }
147 
148  /* Poison frame when debugging. */
149  if (CLIB_DEBUG > 0)
150  clib_memset (f, 0xfe, n);
151 
152  /* Insert magic number. */
153  {
154  u32 *magic;
155 
156  magic = vlib_frame_find_magic (f, to_node);
157  *magic = VLIB_FRAME_MAGIC;
158  }
159 
160  f->frame_flags = VLIB_FRAME_IS_ALLOCATED | frame_flags;
161  f->n_vectors = 0;
162  f->scalar_size = scalar_size;
163  f->vector_size = vector_size;
164  f->flags = 0;
165 
166  fs->n_alloc_frames += 1;
167 
168  return f;
169 }
170 
171 /* Allocate a frame for from FROM_NODE to TO_NODE via TO_NEXT_INDEX.
172  Returns frame index. */
173 static vlib_frame_t *
175  u32 to_next_index)
176 {
177  vlib_node_t *from_node;
178 
179  from_node = vlib_get_node (vm, from_node_runtime->node_index);
180  ASSERT (to_next_index < vec_len (from_node->next_nodes));
181 
182  return vlib_frame_alloc_to_node (vm, from_node->next_nodes[to_next_index],
183  /* frame_flags */ 0);
184 }
185 
186 vlib_frame_t *
188 {
189  vlib_frame_t *f = vlib_frame_alloc_to_node (vm, to_node_index,
190  /* frame_flags */
192  return vlib_get_frame (vm, f);
193 }
194 
195 void
197 {
199  vlib_node_t *to_node;
200 
201  if (f->n_vectors == 0)
202  return;
203 
204  to_node = vlib_get_node (vm, to_node_index);
205 
206  vec_add2 (vm->node_main.pending_frames, p, 1);
207 
209  p->frame = vlib_get_frame (vm, f);
210  p->node_runtime_index = to_node->runtime_index;
212 }
213 
214 /* Free given frame. */
215 void
217 {
218  vlib_node_main_t *nm = &vm->node_main;
219  vlib_node_t *node;
220  vlib_frame_size_t *fs;
221 
223 
224  node = vlib_get_node (vm, r->node_index);
225  fs = get_frame_size_info (nm, node->scalar_size, node->vector_size);
226 
228 
229  /* No next frames may point to freed frame. */
230  if (CLIB_DEBUG > 0)
231  {
232  vlib_next_frame_t *nf;
233  vec_foreach (nf, vm->node_main.next_frames) ASSERT (nf->frame != f);
234  }
235 
237 
238  vec_add1 (fs->free_frames, f);
239  ASSERT (fs->n_alloc_frames > 0);
240  fs->n_alloc_frames -= 1;
241 }
242 
243 static clib_error_t *
245  unformat_input_t * input, vlib_cli_command_t * cmd)
246 {
247  vlib_node_main_t *nm = &vm->node_main;
248  vlib_frame_size_t *fs;
249 
250  vlib_cli_output (vm, "%=6s%=12s%=12s", "Size", "# Alloc", "# Free");
251  vec_foreach (fs, nm->frame_sizes)
252  {
253  u32 n_alloc = fs->n_alloc_frames;
254  u32 n_free = vec_len (fs->free_frames);
255 
256  if (n_alloc + n_free > 0)
257  vlib_cli_output (vm, "%=6d%=12d%=12d",
258  fs - nm->frame_sizes, n_alloc, n_free);
259  }
260 
261  return 0;
262 }
263 
264 /* *INDENT-OFF* */
265 VLIB_CLI_COMMAND (show_frame_stats_cli, static) = {
266  .path = "show vlib frame-allocation",
267  .short_help = "Show node dispatch frame statistics",
268  .function = show_frame_stats,
269 };
270 /* *INDENT-ON* */
271 
272 /* Change ownership of enqueue rights to given next node. */
273 static void
275  vlib_node_runtime_t * node_runtime,
276  u32 next_index)
277 {
278  vlib_node_main_t *nm = &vm->node_main;
279  vlib_next_frame_t *next_frame;
280  vlib_node_t *node, *next_node;
281 
282  node = vec_elt (nm->nodes, node_runtime->node_index);
283 
284  /* Only internal & input nodes are allowed to call other nodes. */
286  || node->type == VLIB_NODE_TYPE_INPUT
287  || node->type == VLIB_NODE_TYPE_PROCESS);
288 
289  ASSERT (vec_len (node->next_nodes) == node_runtime->n_next_nodes);
290 
291  next_frame =
292  vlib_node_runtime_get_next_frame (vm, node_runtime, next_index);
293  next_node = vec_elt (nm->nodes, node->next_nodes[next_index]);
294 
295  if (next_node->owner_node_index != VLIB_INVALID_NODE_INDEX)
296  {
297  /* Get frame from previous owner. */
298  vlib_next_frame_t *owner_next_frame;
299  vlib_next_frame_t tmp;
300 
301  owner_next_frame =
303  next_node->owner_node_index,
304  next_node->owner_next_index);
305 
306  /* Swap target next frame with owner's. */
307  tmp = owner_next_frame[0];
308  owner_next_frame[0] = next_frame[0];
309  next_frame[0] = tmp;
310 
311  /*
312  * If next_frame is already pending, we have to track down
313  * all pending frames and fix their next_frame_index fields.
314  */
315  if (next_frame->flags & VLIB_FRAME_PENDING)
316  {
318  if (next_frame->frame != NULL)
319  {
320  vec_foreach (p, nm->pending_frames)
321  {
322  if (p->frame == next_frame->frame)
323  {
324  p->next_frame_index =
325  next_frame - vm->node_main.next_frames;
326  }
327  }
328  }
329  }
330  }
331  else
332  {
333  /* No previous owner. Take ownership. */
334  next_frame->flags |= VLIB_FRAME_OWNER;
335  }
336 
337  /* Record new owner. */
338  next_node->owner_node_index = node->index;
339  next_node->owner_next_index = next_index;
340 
341  /* Now we should be owner. */
342  ASSERT (next_frame->flags & VLIB_FRAME_OWNER);
343 }
344 
345 /* Make sure that magic number is still there.
346  Otherwise, it is likely that caller has overrun frame arguments. */
347 always_inline void
349  vlib_frame_t * f, vlib_node_t * n, uword next_index)
350 {
351  vlib_node_t *next_node = vlib_get_node (vm, n->next_nodes[next_index]);
352  u32 *magic = vlib_frame_find_magic (f, next_node);
353  ASSERT (VLIB_FRAME_MAGIC == magic[0]);
354 }
355 
356 vlib_frame_t *
358  vlib_node_runtime_t * node,
359  u32 next_index, u32 allocate_new_next_frame)
360 {
361  vlib_frame_t *f;
362  vlib_next_frame_t *nf;
363  u32 n_used;
364 
365  nf = vlib_node_runtime_get_next_frame (vm, node, next_index);
366 
367  /* Make sure this next frame owns right to enqueue to destination frame. */
368  if (PREDICT_FALSE (!(nf->flags & VLIB_FRAME_OWNER)))
369  vlib_next_frame_change_ownership (vm, node, next_index);
370 
371  /* ??? Don't need valid flag: can use frame_index == ~0 */
373  {
374  nf->frame = vlib_frame_alloc (vm, node, next_index);
376  }
377 
378  f = nf->frame;
379 
380  /* Has frame been removed from pending vector (e.g. finished dispatching)?
381  If so we can reuse frame. */
382  if ((nf->flags & VLIB_FRAME_PENDING)
383  && !(f->frame_flags & VLIB_FRAME_PENDING))
384  {
385  nf->flags &= ~VLIB_FRAME_PENDING;
386  f->n_vectors = 0;
387  f->flags = 0;
388  }
389 
390  /* Allocate new frame if current one is marked as no-append or
391  it is already full. */
392  n_used = f->n_vectors;
393  if (n_used >= VLIB_FRAME_SIZE || (allocate_new_next_frame && n_used > 0) ||
395  {
396  /* Old frame may need to be freed after dispatch, since we'll have
397  two redundant frames from node -> next node. */
399  {
400  vlib_frame_t *f_old = vlib_get_frame (vm, nf->frame);
402  }
403 
404  /* Allocate new frame to replace full one. */
405  f = nf->frame = vlib_frame_alloc (vm, node, next_index);
406  n_used = f->n_vectors;
407  }
408 
409  /* Should have free vectors in frame now. */
410  ASSERT (n_used < VLIB_FRAME_SIZE);
411 
412  if (CLIB_DEBUG > 0)
413  {
414  validate_frame_magic (vm, f,
415  vlib_get_node (vm, node->node_index), next_index);
416  }
417 
418  return f;
419 }
420 
421 static void
423  vlib_node_runtime_t * rt,
424  u32 next_index, u32 n_vectors_left)
425 {
426  vlib_node_main_t *nm = &vm->node_main;
427  vlib_next_frame_t *nf;
428  vlib_frame_t *f;
429  vlib_node_runtime_t *next_rt;
430  vlib_node_t *next_node;
431  u32 n_before, n_after;
432 
433  nf = vlib_node_runtime_get_next_frame (vm, rt, next_index);
434  f = vlib_get_frame (vm, nf->frame);
435 
436  ASSERT (n_vectors_left <= VLIB_FRAME_SIZE);
437  n_after = VLIB_FRAME_SIZE - n_vectors_left;
438  n_before = f->n_vectors;
439 
440  ASSERT (n_after >= n_before);
441 
443  nf->node_runtime_index);
444  next_node = vlib_get_node (vm, next_rt->node_index);
445  if (n_after > 0 && next_node->validate_frame)
446  {
447  u8 *msg = next_node->validate_frame (vm, rt, f);
448  if (msg)
449  {
450  clib_warning ("%v", msg);
451  ASSERT (0);
452  }
453  vec_free (msg);
454  }
455 }
456 
457 void
460  u32 next_index, u32 n_vectors_left)
461 {
462  vlib_node_main_t *nm = &vm->node_main;
463  vlib_next_frame_t *nf;
464  vlib_frame_t *f;
465  u32 n_vectors_in_frame;
466 
467  if (CLIB_DEBUG > 0)
468  vlib_put_next_frame_validate (vm, r, next_index, n_vectors_left);
469 
470  nf = vlib_node_runtime_get_next_frame (vm, r, next_index);
471  f = vlib_get_frame (vm, nf->frame);
472 
473  /* Make sure that magic number is still there. Otherwise, caller
474  has overrun frame meta data. */
475  if (CLIB_DEBUG > 0)
476  {
477  vlib_node_t *node = vlib_get_node (vm, r->node_index);
478  validate_frame_magic (vm, f, node, next_index);
479  }
480 
481  /* Convert # of vectors left -> number of vectors there. */
482  ASSERT (n_vectors_left <= VLIB_FRAME_SIZE);
483  n_vectors_in_frame = VLIB_FRAME_SIZE - n_vectors_left;
484 
485  f->n_vectors = n_vectors_in_frame;
486 
487  /* If vectors were added to frame, add to pending vector. */
488  if (PREDICT_TRUE (n_vectors_in_frame > 0))
489  {
491  u32 v0, v1;
492 
493  r->cached_next_index = next_index;
494 
495  if (!(f->frame_flags & VLIB_FRAME_PENDING))
496  {
497  __attribute__ ((unused)) vlib_node_t *node;
498  vlib_node_t *next_node;
499  vlib_node_runtime_t *next_runtime;
500 
501  node = vlib_get_node (vm, r->node_index);
502  next_node = vlib_get_next_node (vm, r->node_index, next_index);
503  next_runtime = vlib_node_get_runtime (vm, next_node->index);
504 
505  vec_add2 (nm->pending_frames, p, 1);
506 
507  p->frame = nf->frame;
509  p->next_frame_index = nf - nm->next_frames;
510  nf->flags |= VLIB_FRAME_PENDING;
512 
513  /*
514  * If we're going to dispatch this frame on another thread,
515  * force allocation of a new frame. Otherwise, we create
516  * a dangling frame reference. Each thread has its own copy of
517  * the next_frames vector.
518  */
519  if (0 && r->thread_index != next_runtime->thread_index)
520  {
521  nf->frame = NULL;
523  }
524  }
525 
526  /* Copy trace flag from next_frame and from runtime. */
527  nf->flags |=
528  (nf->flags & VLIB_NODE_FLAG_TRACE) | (r->
530 
532  v1 = v0 + n_vectors_in_frame;
534  if (PREDICT_FALSE (v1 < v0))
535  {
536  vlib_node_t *node = vlib_get_node (vm, r->node_index);
537  vec_elt (node->n_vectors_by_next_node, next_index) += v0;
538  }
539  }
540 }
541 
542 /* Sync up runtime (32 bit counters) and main node stats (64 bit counters). */
543 never_inline void
546  uword n_calls, uword n_vectors, uword n_clocks,
547  uword n_ticks0, uword n_ticks1)
548 {
549  vlib_node_t *n = vlib_get_node (vm, r->node_index);
550 
551  n->stats_total.calls += n_calls + r->calls_since_last_overflow;
552  n->stats_total.vectors += n_vectors + r->vectors_since_last_overflow;
553  n->stats_total.clocks += n_clocks + r->clocks_since_last_overflow;
554  n->stats_total.perf_counter0_ticks += n_ticks0 +
556  n->stats_total.perf_counter1_ticks += n_ticks1 +
558  n->stats_total.perf_counter_vectors += n_vectors +
562 
569 }
570 
571 always_inline void __attribute__ ((unused))
573  vlib_process_t * p,
574  uword n_calls, uword n_vectors, uword n_clocks,
575  uword n_ticks0, uword n_ticks1)
576 {
577  vlib_node_runtime_t *rt = &p->node_runtime;
579  vlib_node_runtime_sync_stats (vm, rt, n_calls, n_vectors, n_clocks,
580  n_ticks0, n_ticks1);
581  n->stats_total.suspends += p->n_suspends;
582  p->n_suspends = 0;
583 }
584 
585 void
587 {
589 
590  if (n->type == VLIB_NODE_TYPE_PROCESS)
591  {
592  /* Nothing to do for PROCESS nodes except in main thread */
593  if (vm != &vlib_global_main)
594  return;
595 
598  p->n_suspends = 0;
599  rt = &p->node_runtime;
600  }
601  else
602  rt =
604  n->runtime_index);
605 
606  vlib_node_runtime_sync_stats (vm, rt, 0, 0, 0, 0, 0);
607 
608  /* Sync up runtime next frame vector counters with main node structure. */
609  {
610  vlib_next_frame_t *nf;
611  uword i;
612  for (i = 0; i < rt->n_next_nodes; i++)
613  {
614  nf = vlib_node_runtime_get_next_frame (vm, rt, i);
618  }
619  }
620 }
621 
624  vlib_node_runtime_t * node,
625  uword n_calls,
626  uword n_vectors, uword n_clocks,
627  uword n_ticks0, uword n_ticks1)
628 {
629  u32 ca0, ca1, v0, v1, cl0, cl1, r;
630  u32 ptick00, ptick01, ptick10, ptick11, pvec0, pvec1;
631 
632  cl0 = cl1 = node->clocks_since_last_overflow;
633  ca0 = ca1 = node->calls_since_last_overflow;
634  v0 = v1 = node->vectors_since_last_overflow;
635  ptick00 = ptick01 = node->perf_counter0_ticks_since_last_overflow;
636  ptick10 = ptick11 = node->perf_counter1_ticks_since_last_overflow;
637  pvec0 = pvec1 = node->perf_counter_vectors_since_last_overflow;
638 
639  ca1 = ca0 + n_calls;
640  v1 = v0 + n_vectors;
641  cl1 = cl0 + n_clocks;
642  ptick01 = ptick00 + n_ticks0;
643  ptick11 = ptick10 + n_ticks1;
644  pvec1 = pvec0 + n_vectors;
645 
646  node->calls_since_last_overflow = ca1;
647  node->clocks_since_last_overflow = cl1;
648  node->vectors_since_last_overflow = v1;
652 
653  node->max_clock_n = node->max_clock > n_clocks ?
654  node->max_clock_n : n_vectors;
655  node->max_clock = node->max_clock > n_clocks ? node->max_clock : n_clocks;
656 
657  r = vlib_node_runtime_update_main_loop_vector_stats (vm, node, n_vectors);
658 
659  if (PREDICT_FALSE (ca1 < ca0 || v1 < v0 || cl1 < cl0) || (ptick01 < ptick00)
660  || (ptick11 < ptick10) || (pvec1 < pvec0))
661  {
662  node->calls_since_last_overflow = ca0;
663  node->clocks_since_last_overflow = cl0;
664  node->vectors_since_last_overflow = v0;
668 
669  vlib_node_runtime_sync_stats (vm, node, n_calls, n_vectors, n_clocks,
670  n_ticks0, n_ticks1);
671  }
672 
673  return r;
674 }
675 
676 static inline void
678 {
679  *pmc0 = 0;
680  *pmc1 = 0;
682  (*vm->vlib_node_runtime_perf_counter_cb) (vm, pmc0, pmc1);
683 }
684 
685 always_inline void
687  vlib_process_t * p,
688  uword n_calls, uword n_vectors, uword n_clocks)
689 {
691  n_calls, n_vectors, n_clocks, 0ULL, 0ULL);
692 }
693 
694 static clib_error_t *
696  unformat_input_t * input, vlib_cli_command_t * cmd)
697 {
699  return 0;
700 }
701 
702 /* *INDENT-OFF* */
703 VLIB_CLI_COMMAND (elog_clear_cli, static) = {
704  .path = "event-logger clear",
705  .short_help = "Clear the event log",
706  .function = vlib_cli_elog_clear,
707 };
708 /* *INDENT-ON* */
709 
710 #ifdef CLIB_UNIX
711 static clib_error_t *
713  unformat_input_t * input, vlib_cli_command_t * cmd)
714 {
715  elog_main_t *em = &vm->elog_main;
716  char *file, *chroot_file;
717  clib_error_t *error = 0;
718 
719  if (!unformat (input, "%s", &file))
720  {
721  vlib_cli_output (vm, "expected file name, got `%U'",
722  format_unformat_error, input);
723  return 0;
724  }
725 
726  /* It's fairly hard to get "../oopsie" through unformat; just in case */
727  if (strstr (file, "..") || index (file, '/'))
728  {
729  vlib_cli_output (vm, "illegal characters in filename '%s'", file);
730  return 0;
731  }
732 
733  chroot_file = (char *) format (0, "/tmp/%s%c", file, 0);
734 
735  vec_free (file);
736 
737  vlib_cli_output (vm, "Saving %wd of %wd events to %s",
739  elog_buffer_capacity (em), chroot_file);
740 
742  error = elog_write_file (em, chroot_file, 1 /* flush ring */ );
744  vec_free (chroot_file);
745  return error;
746 }
747 
748 void
750 {
752  elog_main_t *em = &vm->elog_main;
753  u8 *filename;
754  clib_error_t *error;
755 
756  if (!vm->elog_post_mortem_dump)
757  return;
758 
759  filename = format (0, "/tmp/elog_post_mortem.%d%c", getpid (), 0);
760  error = elog_write_file (em, (char *) filename, 1 /* flush ring */ );
761  if (error)
762  clib_error_report (error);
763  vec_free (filename);
764 }
765 
766 /* *INDENT-OFF* */
767 VLIB_CLI_COMMAND (elog_save_cli, static) = {
768  .path = "event-logger save",
769  .short_help = "event-logger save <filename> (saves log in /tmp/<filename>)",
770  .function = elog_save_buffer,
771 };
772 /* *INDENT-ON* */
773 
774 static clib_error_t *
776  unformat_input_t * input, vlib_cli_command_t * cmd)
777 {
778  elog_main_t *em = &vm->elog_main;
779 
781 
782  vlib_cli_output (vm, "Stopped the event logger...");
783  return 0;
784 }
785 
786 /* *INDENT-OFF* */
787 VLIB_CLI_COMMAND (elog_stop_cli, static) = {
788  .path = "event-logger stop",
789  .short_help = "Stop the event-logger",
790  .function = elog_stop,
791 };
792 /* *INDENT-ON* */
793 
794 static clib_error_t *
796  unformat_input_t * input, vlib_cli_command_t * cmd)
797 {
798  elog_main_t *em = &vm->elog_main;
799 
801 
802  vlib_cli_output (vm, "Restarted the event logger...");
803  return 0;
804 }
805 
806 /* *INDENT-OFF* */
807 VLIB_CLI_COMMAND (elog_restart_cli, static) = {
808  .path = "event-logger restart",
809  .short_help = "Restart the event-logger",
810  .function = elog_restart,
811 };
812 /* *INDENT-ON* */
813 
814 static clib_error_t *
816  unformat_input_t * input, vlib_cli_command_t * cmd)
817 {
818  elog_main_t *em = &vm->elog_main;
819  u32 tmp;
820 
821  /* Stop the parade */
823 
824  if (unformat (input, "%d", &tmp))
825  {
826  elog_alloc (em, tmp);
828  }
829  else
830  return clib_error_return (0, "Must specify how many events in the ring");
831 
832  vlib_cli_output (vm, "Resized ring and restarted the event logger...");
833  return 0;
834 }
835 
836 /* *INDENT-OFF* */
837 VLIB_CLI_COMMAND (elog_resize_cli, static) = {
838  .path = "event-logger resize",
839  .short_help = "event-logger resize <nnn>",
840  .function = elog_resize,
841 };
842 /* *INDENT-ON* */
843 
844 #endif /* CLIB_UNIX */
845 
846 static void
848 {
849  elog_main_t *em = &vm->elog_main;
850  elog_event_t *e, *es;
851  f64 dt;
852 
853  /* Show events in VLIB time since log clock starts after VLIB clock. */
854  dt = (em->init_time.cpu - vm->clib_time.init_cpu_time)
856 
857  es = elog_peek_events (em);
858  vlib_cli_output (vm, "%d of %d events in buffer, logger %s", vec_len (es),
859  em->event_ring_size,
861  "running" : "stopped");
862  vec_foreach (e, es)
863  {
864  vlib_cli_output (vm, "%18.9f: %U",
865  e->time + dt, format_elog_event, em, e);
866  n_events_to_show--;
867  if (n_events_to_show == 0)
868  break;
869  }
870  vec_free (es);
871 
872 }
873 
874 static clib_error_t *
876  unformat_input_t * input, vlib_cli_command_t * cmd)
877 {
878  u32 n_events_to_show;
879  clib_error_t *error = 0;
880 
881  n_events_to_show = 250;
883  {
884  if (unformat (input, "%d", &n_events_to_show))
885  ;
886  else if (unformat (input, "all"))
887  n_events_to_show = ~0;
888  else
889  return unformat_parse_error (input);
890  }
891  elog_show_buffer_internal (vm, n_events_to_show);
892  return error;
893 }
894 
895 /* *INDENT-OFF* */
896 VLIB_CLI_COMMAND (elog_show_cli, static) = {
897  .path = "show event-logger",
898  .short_help = "Show event logger info",
899  .function = elog_show_buffer,
900 };
901 /* *INDENT-ON* */
902 
903 void
905 {
907 }
908 
909 static inline void
911  u32 node_index,
912  u64 time, u32 n_vectors, u32 is_return)
913 {
915  elog_main_t *em = &evm->elog_main;
916  int enabled = evm->elog_trace_graph_dispatch |
918 
919  if (PREDICT_FALSE (enabled && n_vectors))
920  {
921  if (PREDICT_FALSE (!elog_is_enabled (em)))
922  {
923  evm->elog_trace_graph_dispatch = 0;
924  evm->elog_trace_graph_circuit = 0;
925  return;
926  }
927  if (PREDICT_TRUE
929  (evm->elog_trace_graph_circuit &&
930  node_index == evm->elog_trace_graph_circuit_node_index)))
931  {
932  elog_track (em,
933  /* event type */
934  vec_elt_at_index (is_return
937  node_index),
938  /* track */
939  (vm->thread_index ?
941  : &em->default_track),
942  /* data to log */ n_vectors);
943  }
944  }
945 }
946 
947 #if VLIB_BUFFER_TRACE_TRAJECTORY > 0
948 void (*vlib_buffer_trace_trajectory_cb) (vlib_buffer_t * b, u32 node_index);
949 void (*vlib_buffer_trace_trajectory_init_cb) (vlib_buffer_t * b);
950 
951 void
952 vlib_buffer_trace_trajectory_init (vlib_buffer_t * b)
953 {
954  if (PREDICT_TRUE (vlib_buffer_trace_trajectory_init_cb != 0))
955  {
956  (*vlib_buffer_trace_trajectory_init_cb) (b);
957  }
958 }
959 
960 #endif
961 
962 static inline void
964 {
965 #if VLIB_BUFFER_TRACE_TRAJECTORY > 0
966  if (PREDICT_TRUE (vlib_buffer_trace_trajectory_cb != 0))
967  {
968  (*vlib_buffer_trace_trajectory_cb) (b, node_index);
969  }
970 #endif
971 }
972 
973 u8 *format_vnet_buffer_flags (u8 * s, va_list * args) __attribute__ ((weak));
974 u8 *
975 format_vnet_buffer_flags (u8 * s, va_list * args)
976 {
977  s = format (s, "BUG STUB %s", __FUNCTION__);
978  return s;
979 }
980 
981 u8 *format_vnet_buffer_opaque (u8 * s, va_list * args) __attribute__ ((weak));
982 u8 *
983 format_vnet_buffer_opaque (u8 * s, va_list * args)
984 {
985  s = format (s, "BUG STUB %s", __FUNCTION__);
986  return s;
987 }
988 
989 u8 *format_vnet_buffer_opaque2 (u8 * s, va_list * args)
990  __attribute__ ((weak));
991 u8 *
992 format_vnet_buffer_opaque2 (u8 * s, va_list * args)
993 {
994  s = format (s, "BUG STUB %s", __FUNCTION__);
995  return s;
996 }
997 
998 static u8 *
999 format_buffer_metadata (u8 * s, va_list * args)
1000 {
1001  vlib_buffer_t *b = va_arg (*args, vlib_buffer_t *);
1002 
1003  s = format (s, "flags: %U\n", format_vnet_buffer_flags, b);
1004  s = format (s, "current_data: %d, current_length: %d\n",
1005  (i32) (b->current_data), (i32) (b->current_length));
1006  s = format (s, "current_config_index: %d, flow_id: %x, next_buffer: %x\n",
1008  s = format (s, "error: %d, ref_count: %d, buffer_pool_index: %d\n",
1009  (u32) (b->error), (u32) (b->ref_count),
1010  (u32) (b->buffer_pool_index));
1011  s = format (s,
1012  "trace_index: %d, len_not_first_buf: %d\n",
1014  return s;
1015 }
1016 
1017 #define A(x) vec_add1(vm->pcap_buffer, (x))
1018 
1019 static void
1021  vlib_node_runtime_t * node, vlib_frame_t * frame)
1022 {
1023  int i;
1024  vlib_buffer_t *bufs[VLIB_FRAME_SIZE], **bufp, *b;
1025  pcap_main_t *pm = &vm->dispatch_pcap_main;
1026  vlib_trace_main_t *tm = &vm->trace_main;
1027  u32 capture_size;
1028  vlib_node_t *n;
1029  i32 n_left;
1030  f64 time_now = vlib_time_now (vm);
1031  u32 *from;
1032  u8 *d;
1033  u8 string_count;
1034 
1035  /* Input nodes don't have frames yet */
1036  if (frame == 0 || frame->n_vectors == 0)
1037  return;
1038 
1039  from = vlib_frame_vector_args (frame);
1040  vlib_get_buffers (vm, from, bufs, frame->n_vectors);
1041  bufp = bufs;
1042 
1043  n = vlib_get_node (vm, node->node_index);
1044 
1045  for (i = 0; i < frame->n_vectors; i++)
1046  {
1048  {
1049  b = bufp[i];
1050 
1052  string_count = 0;
1053 
1054  /* Version, flags */
1057  A (0 /* string_count */ );
1058  A (n->protocol_hint);
1059 
1060  /* Buffer index (big endian) */
1061  A ((from[i] >> 24) & 0xff);
1062  A ((from[i] >> 16) & 0xff);
1063  A ((from[i] >> 8) & 0xff);
1064  A ((from[i] >> 0) & 0xff);
1065 
1066  /* Node name, NULL-terminated ASCII */
1067  vm->pcap_buffer = format (vm->pcap_buffer, "%v%c", n->name, 0);
1068  string_count++;
1069 
1070  vm->pcap_buffer = format (vm->pcap_buffer, "%U%c",
1071  format_buffer_metadata, b, 0);
1072  string_count++;
1073  vm->pcap_buffer = format (vm->pcap_buffer, "%U%c",
1075  string_count++;
1076  vm->pcap_buffer = format (vm->pcap_buffer, "%U%c",
1078  string_count++;
1079 
1080  /* Is this packet traced? */
1081  if (PREDICT_FALSE (b->flags & VLIB_BUFFER_IS_TRACED))
1082  {
1085 
1086  vm->pcap_buffer = format (vm->pcap_buffer, "%U%c",
1087  format_vlib_trace, vm, h[0], 0);
1088  string_count++;
1089  }
1090 
1091  /* Save the string count */
1092  vm->pcap_buffer[2] = string_count;
1093 
1094  /* Figure out how many bytes in the pcap trace */
1095  capture_size = vec_len (vm->pcap_buffer) +
1096  +vlib_buffer_length_in_chain (vm, b);
1097 
1099  n_left = clib_min (capture_size, 16384);
1100  d = pcap_add_packet (pm, time_now, n_left, capture_size);
1101 
1102  /* Copy the header */
1104  d += vec_len (vm->pcap_buffer);
1105 
1106  n_left = clib_min
1107  (vlib_buffer_length_in_chain (vm, b),
1108  (16384 - vec_len (vm->pcap_buffer)));
1109  /* Copy the packet data */
1110  while (1)
1111  {
1112  u32 copy_length = clib_min ((u32) n_left, b->current_length);
1113  clib_memcpy_fast (d, b->data + b->current_data, copy_length);
1114  n_left -= b->current_length;
1115  if (n_left <= 0)
1116  break;
1117  d += b->current_length;
1118  ASSERT (b->flags & VLIB_BUFFER_NEXT_PRESENT);
1119  b = vlib_get_buffer (vm, b->next_buffer);
1120  }
1122  }
1123  }
1124 }
1125 
1128  vlib_node_runtime_t * node,
1129  vlib_node_type_t type,
1130  vlib_node_state_t dispatch_state,
1131  vlib_frame_t * frame, u64 last_time_stamp)
1132 {
1133  uword n, v;
1134  u64 t;
1135  vlib_node_main_t *nm = &vm->node_main;
1136  vlib_next_frame_t *nf;
1137  u64 pmc_before[2], pmc_after[2], pmc_delta[2];
1138 
1139  if (CLIB_DEBUG > 0)
1140  {
1141  vlib_node_t *n = vlib_get_node (vm, node->node_index);
1142  ASSERT (n->type == type);
1143  }
1144 
1145  /* Only non-internal nodes may be disabled. */
1146  if (type != VLIB_NODE_TYPE_INTERNAL && node->state != dispatch_state)
1147  {
1148  ASSERT (type != VLIB_NODE_TYPE_INTERNAL);
1149  return last_time_stamp;
1150  }
1151 
1152  if ((type == VLIB_NODE_TYPE_PRE_INPUT || type == VLIB_NODE_TYPE_INPUT)
1153  && dispatch_state != VLIB_NODE_STATE_INTERRUPT)
1154  {
1156  /* Only call node when count reaches zero. */
1157  if (c)
1158  {
1159  node->input_main_loops_per_call = c - 1;
1160  return last_time_stamp;
1161  }
1162  }
1163 
1164  /* Speculatively prefetch next frames. */
1165  if (node->n_next_nodes > 0)
1166  {
1167  nf = vec_elt_at_index (nm->next_frames, node->next_frame_index);
1168  CLIB_PREFETCH (nf, 4 * sizeof (nf[0]), WRITE);
1169  }
1170 
1171  vm->cpu_time_last_node_dispatch = last_time_stamp;
1172 
1174  last_time_stamp, frame ? frame->n_vectors : 0,
1175  /* is_after */ 0);
1176 
1177  vlib_node_runtime_perf_counter (vm, &pmc_before[0], &pmc_before[1]);
1178 
1179  /*
1180  * Turn this on if you run into
1181  * "bad monkey" contexts, and you want to know exactly
1182  * which nodes they've visited... See ixge.c...
1183  */
1184  if (VLIB_BUFFER_TRACE_TRAJECTORY && frame)
1185  {
1186  int i;
1187  u32 *from;
1188  from = vlib_frame_vector_args (frame);
1189  for (i = 0; i < frame->n_vectors; i++)
1190  {
1191  vlib_buffer_t *b = vlib_get_buffer (vm, from[i]);
1192  add_trajectory_trace (b, node->node_index);
1193  }
1195  dispatch_pcap_trace (vm, node, frame);
1196  n = node->function (vm, node, frame);
1197  }
1198  else
1199  {
1201  dispatch_pcap_trace (vm, node, frame);
1202  n = node->function (vm, node, frame);
1203  }
1204 
1205  t = clib_cpu_time_now ();
1206 
1207  /*
1208  * To validate accounting: pmc_delta = t - pmc_before;
1209  * perf ticks should equal clocks/pkt...
1210  */
1211  vlib_node_runtime_perf_counter (vm, &pmc_after[0], &pmc_after[1]);
1212 
1213  pmc_delta[0] = pmc_after[0] - pmc_before[0];
1214  pmc_delta[1] = pmc_after[1] - pmc_before[1];
1215 
1216  vlib_elog_main_loop_event (vm, node->node_index, t, n, 1 /* is_after */ );
1217 
1218  vm->main_loop_vectors_processed += n;
1219  vm->main_loop_nodes_processed += n > 0;
1220 
1221  v = vlib_node_runtime_update_stats (vm, node,
1222  /* n_calls */ 1,
1223  /* n_vectors */ n,
1224  /* n_clocks */ t - last_time_stamp,
1225  pmc_delta[0] /* PMC0 */ ,
1226  pmc_delta[1] /* PMC1 */ );
1227 
1228  /* When in interrupt mode and vector rate crosses threshold switch to
1229  polling mode. */
1230  if (PREDICT_FALSE ((dispatch_state == VLIB_NODE_STATE_INTERRUPT)
1231  || (dispatch_state == VLIB_NODE_STATE_POLLING
1232  && (node->flags
1233  &
1235  {
1236  /* *INDENT-OFF* */
1237  ELOG_TYPE_DECLARE (e) =
1238  {
1239  .function = (char *) __FUNCTION__,
1240  .format = "%s vector length %d, switching to %s",
1241  .format_args = "T4i4t4",
1242  .n_enum_strings = 2,
1243  .enum_strings = {
1244  "interrupt", "polling",
1245  },
1246  };
1247  /* *INDENT-ON* */
1248  struct
1249  {
1250  u32 node_name, vector_length, is_polling;
1251  } *ed;
1252 
1253  if ((dispatch_state == VLIB_NODE_STATE_INTERRUPT
1254  && v >= nm->polling_threshold_vector_length) &&
1255  !(node->flags &
1257  {
1258  vlib_node_t *n = vlib_get_node (vm, node->node_index);
1259  n->state = VLIB_NODE_STATE_POLLING;
1260  node->state = VLIB_NODE_STATE_POLLING;
1261  node->flags &=
1264  nm->input_node_counts_by_state[VLIB_NODE_STATE_INTERRUPT] -= 1;
1265  nm->input_node_counts_by_state[VLIB_NODE_STATE_POLLING] += 1;
1266 
1267  if (PREDICT_FALSE (vlib_global_main.elog_trace_graph_dispatch))
1268  {
1270  + vm->thread_index;
1271 
1272  ed = ELOG_TRACK_DATA (&vlib_global_main.elog_main, e,
1273  w->elog_track);
1274  ed->node_name = n->name_elog_string;
1275  ed->vector_length = v;
1276  ed->is_polling = 1;
1277  }
1278  }
1279  else if (dispatch_state == VLIB_NODE_STATE_POLLING
1280  && v <= nm->interrupt_threshold_vector_length)
1281  {
1282  vlib_node_t *n = vlib_get_node (vm, node->node_index);
1283  if (node->flags &
1285  {
1286  /* Switch to interrupt mode after dispatch in polling one more time.
1287  This allows driver to re-enable interrupts. */
1288  n->state = VLIB_NODE_STATE_INTERRUPT;
1289  node->state = VLIB_NODE_STATE_INTERRUPT;
1290  node->flags &=
1292  nm->input_node_counts_by_state[VLIB_NODE_STATE_POLLING] -= 1;
1293  nm->input_node_counts_by_state[VLIB_NODE_STATE_INTERRUPT] += 1;
1294 
1295  }
1296  else
1297  {
1299  + vm->thread_index;
1300  node->flags |=
1302  if (PREDICT_FALSE (vlib_global_main.elog_trace_graph_dispatch))
1303  {
1304  ed = ELOG_TRACK_DATA (&vlib_global_main.elog_main, e,
1305  w->elog_track);
1306  ed->node_name = n->name_elog_string;
1307  ed->vector_length = v;
1308  ed->is_polling = 0;
1309  }
1310  }
1311  }
1312  }
1313 
1314  return t;
1315 }
1316 
1317 static u64
1318 dispatch_pending_node (vlib_main_t * vm, uword pending_frame_index,
1319  u64 last_time_stamp)
1320 {
1321  vlib_node_main_t *nm = &vm->node_main;
1322  vlib_frame_t *f;
1323  vlib_next_frame_t *nf, nf_dummy;
1325  vlib_frame_t *restore_frame;
1327 
1328  /* See comment below about dangling references to nm->pending_frames */
1329  p = nm->pending_frames + pending_frame_index;
1330 
1332  p->node_runtime_index);
1333 
1334  f = vlib_get_frame (vm, p->frame);
1336  {
1337  /* No next frame: so use dummy on stack. */
1338  nf = &nf_dummy;
1340  nf->frame = NULL;
1341  }
1342  else
1344 
1346 
1347  /* Force allocation of new frame while current frame is being
1348  dispatched. */
1349  restore_frame = NULL;
1350  if (nf->frame == p->frame)
1351  {
1352  nf->frame = NULL;
1355  restore_frame = p->frame;
1356  }
1357 
1358  /* Frame must be pending. */
1360  ASSERT (f->n_vectors > 0);
1361 
1362  /* Copy trace flag from next frame to node.
1363  Trace flag indicates that at least one vector in the dispatched
1364  frame is traced. */
1365  n->flags &= ~VLIB_NODE_FLAG_TRACE;
1366  n->flags |= (nf->flags & VLIB_FRAME_TRACE) ? VLIB_NODE_FLAG_TRACE : 0;
1367  nf->flags &= ~VLIB_FRAME_TRACE;
1368 
1369  last_time_stamp = dispatch_node (vm, n,
1371  VLIB_NODE_STATE_POLLING,
1372  f, last_time_stamp);
1373 
1375 
1376  /* Frame is ready to be used again, so restore it. */
1377  if (restore_frame != NULL)
1378  {
1379  /*
1380  * We musn't restore a frame that is flagged to be freed. This
1381  * shouldn't happen since frames to be freed post dispatch are
1382  * those used when the to-node frame becomes full i.e. they form a
1383  * sort of queue of frames to a single node. If we get here then
1384  * the to-node frame and the pending frame *were* the same, and so
1385  * we removed the to-node frame. Therefore this frame is no
1386  * longer part of the queue for that node and hence it cannot be
1387  * it's overspill.
1388  */
1390 
1391  /*
1392  * NB: dispatching node n can result in the creation and scheduling
1393  * of new frames, and hence in the reallocation of nm->pending_frames.
1394  * Recompute p, or no supper. This was broken for more than 10 years.
1395  */
1396  p = nm->pending_frames + pending_frame_index;
1397 
1398  /*
1399  * p->next_frame_index can change during node dispatch if node
1400  * function decides to change graph hook up.
1401  */
1404 
1405  if (NULL == nf->frame)
1406  {
1407  /* no new frame has been assigned to this node, use the saved one */
1408  nf->frame = restore_frame;
1409  f->n_vectors = 0;
1410  }
1411  else
1412  {
1413  /* The node has gained a frame, implying packets from the current frame
1414  were re-queued to this same node. we don't need the saved one
1415  anymore */
1416  vlib_frame_free (vm, n, f);
1417  }
1418  }
1419  else
1420  {
1422  {
1424  vlib_frame_free (vm, n, f);
1425  }
1426  }
1427 
1428  return last_time_stamp;
1429 }
1430 
1433 {
1434  return p->stack[0] == VLIB_PROCESS_STACK_MAGIC;
1435 }
1436 
1437 typedef struct
1438 {
1443 
1444 /* Called in process stack. */
1445 static uword
1447 {
1449  vlib_main_t *vm;
1450  vlib_node_runtime_t *node;
1451  vlib_frame_t *f;
1452  vlib_process_t *p;
1453  uword n;
1454 
1456 
1457  vm = a->vm;
1458  p = a->process;
1459  f = a->frame;
1460  node = &p->node_runtime;
1461 
1462  n = node->function (vm, node, f);
1463 
1465 
1466  clib_longjmp (&p->return_longjmp, n);
1467 
1468  return n;
1469 }
1470 
1471 /* Called in main stack. */
1474 {
1476  uword r;
1477 
1478  a.vm = vm;
1479  a.process = p;
1480  a.frame = f;
1481 
1485  (void *) p->stack + (1 << p->log2_n_stack_bytes));
1486 
1487  return r;
1488 }
1489 
1492 {
1493  uword r;
1500  return r;
1501 }
1502 
1503 static u64
1505  vlib_process_t * p, vlib_frame_t * f, u64 last_time_stamp)
1506 {
1507  vlib_node_main_t *nm = &vm->node_main;
1508  vlib_node_runtime_t *node_runtime = &p->node_runtime;
1509  vlib_node_t *node = vlib_get_node (vm, node_runtime->node_index);
1510  u32 old_process_index;
1511  u64 t;
1512  uword n_vectors, is_suspend;
1513 
1514  if (node->state != VLIB_NODE_STATE_POLLING
1517  return last_time_stamp;
1518 
1520 
1521  t = last_time_stamp;
1522  vlib_elog_main_loop_event (vm, node_runtime->node_index, t,
1523  f ? f->n_vectors : 0, /* is_after */ 0);
1524 
1525  /* Save away current process for suspend. */
1526  old_process_index = nm->current_process_index;
1528 
1529  n_vectors = vlib_process_startup (vm, p, f);
1530 
1531  nm->current_process_index = old_process_index;
1532 
1534  is_suspend = n_vectors == VLIB_PROCESS_RETURN_LONGJMP_SUSPEND;
1535  if (is_suspend)
1536  {
1538 
1539  n_vectors = 0;
1541  pf->node_runtime_index = node->runtime_index;
1542  pf->frame = f;
1543  pf->next_frame_index = ~0;
1544 
1545  p->n_suspends += 1;
1547 
1549  {
1550  TWT (tw_timer_wheel) * tw =
1551  (TWT (tw_timer_wheel) *) nm->timing_wheel;
1552  p->stop_timer_handle =
1553  TW (tw_timer_start) (tw,
1555  (node->runtime_index) /* [sic] pool idex */ ,
1556  0 /* timer_id */ ,
1558  }
1559  }
1560  else
1562 
1563  t = clib_cpu_time_now ();
1564 
1565  vlib_elog_main_loop_event (vm, node_runtime->node_index, t, is_suspend,
1566  /* is_after */ 1);
1567 
1569  /* n_calls */ !is_suspend,
1570  /* n_vectors */ n_vectors,
1571  /* n_clocks */ t - last_time_stamp);
1572 
1573  return t;
1574 }
1575 
1576 void
1578 {
1579  vlib_node_main_t *nm = &vm->node_main;
1580  vlib_process_t *p = vec_elt (nm->processes, process_index);
1581  dispatch_process (vm, p, /* frame */ 0, /* cpu_time_now */ 0);
1582 }
1583 
1584 static u64
1586  uword process_index, u64 last_time_stamp)
1587 {
1588  vlib_node_main_t *nm = &vm->node_main;
1589  vlib_node_runtime_t *node_runtime;
1590  vlib_node_t *node;
1591  vlib_frame_t *f;
1592  vlib_process_t *p;
1594  u64 t, n_vectors, is_suspend;
1595 
1596  t = last_time_stamp;
1597 
1598  p = vec_elt (nm->processes, process_index);
1600  return last_time_stamp;
1601 
1604 
1607 
1608  node_runtime = &p->node_runtime;
1609  node = vlib_get_node (vm, node_runtime->node_index);
1610  f = pf->frame;
1611 
1612  vlib_elog_main_loop_event (vm, node_runtime->node_index, t,
1613  f ? f->n_vectors : 0, /* is_after */ 0);
1614 
1615  /* Save away current process for suspend. */
1617 
1618  n_vectors = vlib_process_resume (p);
1619  t = clib_cpu_time_now ();
1620 
1621  nm->current_process_index = ~0;
1622 
1623  is_suspend = n_vectors == VLIB_PROCESS_RETURN_LONGJMP_SUSPEND;
1624  if (is_suspend)
1625  {
1626  /* Suspend it again. */
1627  n_vectors = 0;
1628  p->n_suspends += 1;
1630  {
1631  p->stop_timer_handle =
1632  TW (tw_timer_start) ((TWT (tw_timer_wheel) *) nm->timing_wheel,
1634  (node->runtime_index) /* [sic] pool idex */ ,
1635  0 /* timer_id */ ,
1637  }
1638  }
1639  else
1640  {
1645  }
1646 
1647  t = clib_cpu_time_now ();
1648  vlib_elog_main_loop_event (vm, node_runtime->node_index, t, !is_suspend,
1649  /* is_after */ 1);
1650 
1652  /* n_calls */ !is_suspend,
1653  /* n_vectors */ n_vectors,
1654  /* n_clocks */ t - last_time_stamp);
1655 
1656  return t;
1657 }
1658 
1659 void vl_api_send_pending_rpc_requests (vlib_main_t *) __attribute__ ((weak));
1660 void
1662 {
1663 }
1664 
1665 
1668 {
1669  vlib_node_main_t *nm = &vm->node_main;
1671  uword i;
1672  u64 cpu_time_now;
1674  u32 *last_node_runtime_indices = 0;
1675  u32 frame_queue_check_counter = 0;
1676 
1677  /* Initialize pending node vector. */
1678  if (is_main)
1679  {
1680  vec_resize (nm->pending_frames, 32);
1681  _vec_len (nm->pending_frames) = 0;
1682  }
1683 
1684  /* Mark time of main loop start. */
1685  if (is_main)
1686  {
1687  cpu_time_now = vm->clib_time.last_cpu_time;
1688  vm->cpu_time_main_loop_start = cpu_time_now;
1689  }
1690  else
1691  cpu_time_now = clib_cpu_time_now ();
1692 
1693  /* Pre-allocate interupt runtime indices and lock. */
1695  vec_alloc (last_node_runtime_indices, 32);
1696  if (!is_main)
1698 
1699  /* Pre-allocate expired nodes. */
1704 
1707 
1708  /* Start all processes. */
1709  if (is_main)
1710  {
1711  uword i;
1712  nm->current_process_index = ~0;
1713  for (i = 0; i < vec_len (nm->processes); i++)
1714  cpu_time_now = dispatch_process (vm, nm->processes[i], /* frame */ 0,
1715  cpu_time_now);
1716  }
1717 
1718  while (1)
1719  {
1721 
1722  if (PREDICT_FALSE (_vec_len (vm->pending_rpc_requests) > 0))
1723  {
1724  if (!is_main)
1726  }
1727 
1728  if (!is_main)
1729  {
1732  frame_queue_check_counter))
1733  {
1734  u32 processed = 0;
1735 
1736  if (vm->check_frame_queues)
1737  {
1738  frame_queue_check_counter = 100;
1739  vm->check_frame_queues = 0;
1740  }
1741 
1742  vec_foreach (fqm, tm->frame_queue_mains)
1743  processed += vlib_frame_queue_dequeue (vm, fqm);
1744 
1745  /* No handoff queue work found? */
1746  if (processed)
1747  frame_queue_check_counter = 100;
1748  else
1749  frame_queue_check_counter--;
1750  }
1752  ((void (*)(vlib_main_t *)) vm->worker_thread_main_loop_callback)
1753  (vm);
1754  }
1755 
1756  /* Process pre-input nodes. */
1758  cpu_time_now = dispatch_node (vm, n,
1760  VLIB_NODE_STATE_POLLING,
1761  /* frame */ 0,
1762  cpu_time_now);
1763 
1764  /* Next process input nodes. */
1766  cpu_time_now = dispatch_node (vm, n,
1768  VLIB_NODE_STATE_POLLING,
1769  /* frame */ 0,
1770  cpu_time_now);
1771 
1772  if (PREDICT_TRUE (is_main && vm->queue_signal_pending == 0))
1773  vm->queue_signal_callback (vm);
1774 
1775  /* Next handle interrupts. */
1776  {
1777  /* unlocked read, for performance */
1778  uword l = _vec_len (nm->pending_interrupt_node_runtime_indices);
1779  uword i;
1780  if (PREDICT_FALSE (l > 0))
1781  {
1782  u32 *tmp;
1783  if (!is_main)
1784  {
1786  /* Re-read w/ lock held, in case another thread added an item */
1787  l = _vec_len (nm->pending_interrupt_node_runtime_indices);
1788  }
1789 
1792  last_node_runtime_indices;
1793  last_node_runtime_indices = tmp;
1794  _vec_len (last_node_runtime_indices) = 0;
1795  if (!is_main)
1797  for (i = 0; i < l; i++)
1798  {
1800  last_node_runtime_indices[i]);
1801  cpu_time_now =
1803  VLIB_NODE_STATE_INTERRUPT,
1804  /* frame */ 0,
1805  cpu_time_now);
1806  }
1807  }
1808  }
1809  /* Input nodes may have added work to the pending vector.
1810  Process pending vector until there is nothing left.
1811  All pending vectors will be processed from input -> output. */
1812  for (i = 0; i < _vec_len (nm->pending_frames); i++)
1813  cpu_time_now = dispatch_pending_node (vm, i, cpu_time_now);
1814  /* Reset pending vector for next iteration. */
1815  _vec_len (nm->pending_frames) = 0;
1816 
1817  if (is_main)
1818  {
1819  /* *INDENT-OFF* */
1820  ELOG_TYPE_DECLARE (es) =
1821  {
1822  .format = "process tw start",
1823  .format_args = "",
1824  };
1825  ELOG_TYPE_DECLARE (ee) =
1826  {
1827  .format = "process tw end: %d",
1828  .format_args = "i4",
1829  };
1830  /* *INDENT-ON* */
1831 
1832  struct
1833  {
1834  int nready_procs;
1835  } *ed;
1836 
1837  /* Check if process nodes have expired from timing wheel. */
1839 
1841  ed = ELOG_DATA (&vlib_global_main.elog_main, es);
1842 
1845  ((TWT (tw_timer_wheel) *) nm->timing_wheel, vlib_time_now (vm),
1847 
1849 
1851  {
1852  ed = ELOG_DATA (&vlib_global_main.elog_main, ee);
1853  ed->nready_procs =
1854  _vec_len (nm->data_from_advancing_timing_wheel);
1855  }
1856 
1857  if (PREDICT_FALSE
1858  (_vec_len (nm->data_from_advancing_timing_wheel) > 0))
1859  {
1860  uword i;
1861 
1862  for (i = 0; i < _vec_len (nm->data_from_advancing_timing_wheel);
1863  i++)
1864  {
1867 
1869  {
1872  di);
1873  vlib_node_t *n =
1875  vlib_process_t *p =
1876  vec_elt (nm->processes, n->runtime_index);
1877  void *data;
1878  data =
1880  te->event_type_index,
1881  te->n_data_elts,
1882  te->n_data_elt_bytes);
1883  if (te->n_data_bytes < sizeof (te->inline_event_data))
1885  te->n_data_bytes);
1886  else
1887  {
1889  te->n_data_bytes);
1891  }
1893  }
1894  else
1895  {
1896  cpu_time_now = clib_cpu_time_now ();
1897  cpu_time_now =
1898  dispatch_suspended_process (vm, di, cpu_time_now);
1899  }
1900  }
1901  _vec_len (nm->data_from_advancing_timing_wheel) = 0;
1902  }
1903  }
1905 
1906  /* Record time stamp in case there are no enabled nodes and above
1907  calls do not update time stamp. */
1908  cpu_time_now = clib_cpu_time_now ();
1909  }
1910 }
1911 
1912 static void
1914 {
1915  vlib_main_or_worker_loop (vm, /* is_main */ 1);
1916 }
1917 
1918 void
1920 {
1921  vlib_main_or_worker_loop (vm, /* is_main */ 0);
1922 }
1923 
1925 
1926 static clib_error_t *
1928 {
1929  int turn_on_mem_trace = 0;
1930 
1931  while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
1932  {
1933  if (unformat (input, "memory-trace"))
1934  turn_on_mem_trace = 1;
1935 
1936  else if (unformat (input, "elog-events %d",
1937  &vm->elog_main.event_ring_size))
1938  ;
1939  else if (unformat (input, "elog-post-mortem-dump"))
1940  vm->elog_post_mortem_dump = 1;
1941  else
1942  return unformat_parse_error (input);
1943  }
1944 
1945  unformat_free (input);
1946 
1947  /* Enable memory trace as early as possible. */
1948  if (turn_on_mem_trace)
1949  clib_mem_trace (1);
1950 
1951  return 0;
1952 }
1953 
1955 
1956 static void
1958 {
1959 }
1960 
1961 #define foreach_weak_reference_stub \
1962 _(vlib_map_stat_segment_init) \
1963 _(vpe_api_init) \
1964 _(vlibmemory_init) \
1965 _(map_api_segment_init)
1966 
1967 #define _(name) \
1968 clib_error_t *name (vlib_main_t *vm) __attribute__((weak)); \
1969 clib_error_t *name (vlib_main_t *vm) { return 0; }
1971 #undef _
1972 
1973 /* Main function. */
1974 int
1976 {
1977  clib_error_t *volatile error;
1978  vlib_node_main_t *nm = &vm->node_main;
1979 
1981 
1982  clib_time_init (&vm->clib_time);
1983 
1984  /* Turn on event log. */
1985  if (!vm->elog_main.event_ring_size)
1986  vm->elog_main.event_ring_size = 128 << 10;
1988  elog_enable_disable (&vm->elog_main, 1);
1989 
1990  /* Default name. */
1991  if (!vm->name)
1992  vm->name = "VLIB";
1993 
1994  if ((error = vlib_physmem_init (vm)))
1995  {
1996  clib_error_report (error);
1997  goto done;
1998  }
1999 
2000  if ((error = vlib_map_stat_segment_init (vm)))
2001  {
2002  clib_error_report (error);
2003  goto done;
2004  }
2005 
2006  if ((error = vlib_buffer_main_init (vm)))
2007  {
2008  clib_error_report (error);
2009  goto done;
2010  }
2011 
2012  if ((error = vlib_thread_init (vm)))
2013  {
2014  clib_error_report (error);
2015  goto done;
2016  }
2017 
2018  /* Register static nodes so that init functions may use them. */
2020 
2021  /* Set seed for random number generator.
2022  Allow user to specify seed to make random sequence deterministic. */
2023  if (!unformat (input, "seed %wd", &vm->random_seed))
2024  vm->random_seed = clib_cpu_time_now ();
2026 
2027  /* Initialize node graph. */
2028  if ((error = vlib_node_main_init (vm)))
2029  {
2030  /* Arrange for graph hook up error to not be fatal when debugging. */
2031  if (CLIB_DEBUG > 0)
2032  clib_error_report (error);
2033  else
2034  goto done;
2035  }
2036 
2037  /* Direct call / weak reference, for vlib standalone use-cases */
2038  if ((error = vpe_api_init (vm)))
2039  {
2040  clib_error_report (error);
2041  goto done;
2042  }
2043 
2044  if ((error = vlibmemory_init (vm)))
2045  {
2046  clib_error_report (error);
2047  goto done;
2048  }
2049 
2050  if ((error = map_api_segment_init (vm)))
2051  {
2052  clib_error_report (error);
2053  goto done;
2054  }
2055 
2056  /* See unix/main.c; most likely already set up */
2057  if (vm->init_functions_called == 0)
2058  vm->init_functions_called = hash_create (0, /* value bytes */ 0);
2059  if ((error = vlib_call_all_init_functions (vm)))
2060  goto done;
2061 
2062  nm->timing_wheel = clib_mem_alloc_aligned (sizeof (TWT (tw_timer_wheel)),
2064 
2066  _vec_len (nm->data_from_advancing_timing_wheel) = 0;
2067 
2068  /* Create the process timing wheel */
2069  TW (tw_timer_wheel_init) ((TWT (tw_timer_wheel) *) nm->timing_wheel,
2070  0 /* no callback */ ,
2071  10e-6 /* timer period 10us */ ,
2072  ~0 /* max expirations per call */ );
2073 
2075  _vec_len (vm->pending_rpc_requests) = 0;
2077  _vec_len (vm->processing_rpc_requests) = 0;
2078 
2079  if ((error = vlib_call_all_config_functions (vm, input, 0 /* is_early */ )))
2080  goto done;
2081 
2082  /* Call all main loop enter functions. */
2083  {
2084  clib_error_t *sub_error;
2085  sub_error = vlib_call_all_main_loop_enter_functions (vm);
2086  if (sub_error)
2087  clib_error_report (sub_error);
2088  }
2089 
2091  {
2093  vm->main_loop_exit_set = 1;
2094  break;
2095 
2097  goto done;
2098 
2099  default:
2100  error = vm->main_loop_error;
2101  goto done;
2102  }
2103 
2104  vlib_main_loop (vm);
2105 
2106 done:
2107  /* Call all exit functions. */
2108  {
2109  clib_error_t *sub_error;
2110  sub_error = vlib_call_all_main_loop_exit_functions (vm);
2111  if (sub_error)
2112  clib_error_report (sub_error);
2113  }
2114 
2115  if (error)
2116  clib_error_report (error);
2117 
2118  return 0;
2119 }
2120 
2121 static inline clib_error_t *
2123  unformat_input_t * input,
2124  vlib_cli_command_t * cmd, int rx_tx)
2125 {
2126  unformat_input_t _line_input, *line_input = &_line_input;
2127  pcap_main_t *pm = &vm->dispatch_pcap_main;
2128  u8 *filename = 0;
2129  u32 max = 1000;
2130  int enabled = 0;
2131  int is_error = 0;
2132  clib_error_t *error = 0;
2133  u32 node_index, add;
2134  vlib_trace_main_t *tm;
2135  vlib_trace_node_t *tn;
2136 
2137  /* Get a line of input. */
2138  if (!unformat_user (input, unformat_line_input, line_input))
2139  return 0;
2140 
2141  while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
2142  {
2143  if (unformat (line_input, "on"))
2144  {
2145  if (vm->dispatch_pcap_enable == 0)
2146  {
2147  enabled = 1;
2148  }
2149  else
2150  {
2151  vlib_cli_output (vm, "pcap dispatch capture already on...");
2152  is_error = 1;
2153  break;
2154  }
2155  }
2156  else if (unformat (line_input, "off"))
2157  {
2158  if (vm->dispatch_pcap_enable)
2159  {
2161  (vm, "captured %d pkts...", pm->n_packets_captured);
2162  if (pm->n_packets_captured)
2163  {
2165  error = pcap_write (pm);
2166  if (error)
2167  clib_error_report (error);
2168  else
2169  vlib_cli_output (vm, "saved to %s...", pm->file_name);
2170  }
2171  vm->dispatch_pcap_enable = 0;
2172  }
2173  else
2174  {
2175  vlib_cli_output (vm, "pcap tx capture already off...");
2176  is_error = 1;
2177  break;
2178  }
2179  }
2180  else if (unformat (line_input, "max %d", &max))
2181  {
2182  if (vm->dispatch_pcap_enable)
2183  {
2185  (vm,
2186  "can't change max value while pcap tx capture active...");
2187  is_error = 1;
2188  break;
2189  }
2190  pm->n_packets_to_capture = max;
2191  }
2192  else
2193  if (unformat
2194  (line_input, "file %U", unformat_vlib_tmpfile, &filename))
2195  {
2196  if (vm->dispatch_pcap_enable)
2197  {
2199  (vm, "can't change file while pcap tx capture active...");
2200  is_error = 1;
2201  break;
2202  }
2203  }
2204  else if (unformat (line_input, "status"))
2205  {
2206  if (vm->dispatch_pcap_enable)
2207  {
2209  (vm, "pcap dispatch capture is on: %d of %d pkts...",
2211  vlib_cli_output (vm, "Capture to file %s", pm->file_name);
2212  }
2213  else
2214  {
2215  vlib_cli_output (vm, "pcap dispatch capture is off...");
2216  }
2217  break;
2218  }
2219  else if (unformat (line_input, "buffer-trace %U %d",
2220  unformat_vlib_node, vm, &node_index, &add))
2221  {
2222  if (vnet_trace_dummy == 0)
2225  vlib_cli_output (vm, "Buffer tracing of %d pkts from %U enabled...",
2226  add, format_vlib_node_name, vm, node_index);
2227 
2228  /* *INDENT-OFF* */
2230  {
2231  tm = &this_vlib_main->trace_main;
2232  tm->verbose = 0; /* not sure this ever did anything... */
2233  vec_validate (tm->nodes, node_index);
2234  tn = tm->nodes + node_index;
2235  tn->limit += add;
2236  tm->trace_enable = 1;
2237  }));
2238  /* *INDENT-ON* */
2239  }
2240 
2241  else
2242  {
2243  error = clib_error_return (0, "unknown input `%U'",
2244  format_unformat_error, line_input);
2245  is_error = 1;
2246  break;
2247  }
2248  }
2249  unformat_free (line_input);
2250 
2251  if (is_error == 0)
2252  {
2253  /* Clean up from previous run */
2254  vec_free (pm->file_name);
2255  vec_free (pm->pcap_data);
2256 
2257  memset (pm, 0, sizeof (*pm));
2258  pm->n_packets_to_capture = max;
2259 
2260  if (enabled)
2261  {
2262  if (filename == 0)
2263  filename = format (0, "/tmp/dispatch.pcap%c", 0);
2264 
2265  pm->file_name = (char *) filename;
2266  pm->n_packets_captured = 0;
2267  pm->packet_type = PCAP_PACKET_TYPE_vpp;
2268  if (pm->lock == 0)
2269  clib_spinlock_init (&(pm->lock));
2270  vm->dispatch_pcap_enable = 1;
2271  vlib_cli_output (vm, "pcap dispatch capture on...");
2272  }
2273  }
2274 
2275  return error;
2276 }
2277 
2278 static clib_error_t *
2280  unformat_input_t * input,
2281  vlib_cli_command_t * cmd)
2282 {
2283  return pcap_dispatch_trace_command_internal (vm, input, cmd, VLIB_RX);
2284 }
2285 
2286 /*?
2287  * This command is used to start or stop pcap dispatch trace capture, or show
2288  * the capture status.
2289  *
2290  * This command has the following optional parameters:
2291  *
2292  * - <b>on|off</b> - Used to start or stop capture.
2293  *
2294  * - <b>max <nn></b> - Depth of local buffer. Once '<em>nn</em>' number
2295  * of packets have been received, buffer is flushed to file. Once another
2296  * '<em>nn</em>' number of packets have been received, buffer is flushed
2297  * to file, overwriting previous write. If not entered, value defaults
2298  * to 100. Can only be updated if packet capture is off.
2299  *
2300  * - <b>file <name></b> - Used to specify the output filename. The file will
2301  * be placed in the '<em>/tmp</em>' directory, so only the filename is
2302  * supported. Directory should not be entered. If file already exists, file
2303  * will be overwritten. If no filename is provided, '<em>/tmp/vpe.pcap</em>'
2304  * will be used. Can only be updated if packet capture is off.
2305  *
2306  * - <b>status</b> - Displays the current status and configured attributes
2307  * associated with a packet capture. If packet capture is in progress,
2308  * '<em>status</em>' also will return the number of packets currently in
2309  * the local buffer. All additional attributes entered on command line
2310  * with '<em>status</em>' will be ignored and not applied.
2311  *
2312  * @cliexpar
2313  * Example of how to display the status of capture when off:
2314  * @cliexstart{pcap dispatch trace status}
2315  * max is 100, for any interface to file /tmp/vpe.pcap
2316  * pcap dispatch capture is off...
2317  * @cliexend
2318  * Example of how to start a dispatch trace capture:
2319  * @cliexstart{pcap dispatch trace on max 35 file dispatchTrace.pcap}
2320  * pcap dispatch capture on...
2321  * @cliexend
2322  * Example of how to start a dispatch trace capture with buffer tracing
2323  * @cliexstart{pcap dispatch trace on max 10000 file dispatchTrace.pcap buffer-trace dpdk-input 1000}
2324  * pcap dispatch capture on...
2325  * @cliexend
2326  * Example of how to display the status of a tx packet capture in progress:
2327  * @cliexstart{pcap tx trace status}
2328  * max is 35, dispatch trace to file /tmp/vppTest.pcap
2329  * pcap tx capture is on: 20 of 35 pkts...
2330  * @cliexend
2331  * Example of how to stop a tx packet capture:
2332  * @cliexstart{vppctl pcap dispatch trace off}
2333  * captured 21 pkts...
2334  * saved to /tmp/dispatchTrace.pcap...
2335  * @cliexend
2336 ?*/
2337 /* *INDENT-OFF* */
2338 VLIB_CLI_COMMAND (pcap_dispatch_trace_command, static) = {
2339  .path = "pcap dispatch trace",
2340  .short_help =
2341  "pcap dispatch trace [on|off] [max <nn>] [file <name>] [status]\n"
2342  " [buffer-trace <input-node-name> <nn>]",
2343  .function = pcap_dispatch_trace_command_fn,
2344 };
2345 /* *INDENT-ON* */
2346 
2347 /*
2348  * fd.io coding-style-patch-verification: ON
2349  *
2350  * Local Variables:
2351  * eval: (c-set-style "gnu")
2352  * End:
2353  */
u32 * next_nodes
Definition: node.h:333
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:439
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:87
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:174
uword * pending_rpc_requests
Definition: main.h:243
vlib_main_t vlib_global_main
Definition: main.c:1924
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:319
u32 max_clock
Maximum clock cycle for an invocation.
Definition: node.h:476
u32 next_frame_index
Start of next frames for this node.
Definition: node.h:491
static clib_error_t * show_frame_stats(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
Definition: main.c:244
#define hash_set(h, key, value)
Definition: hash.h:255
char * file_name
File name of pcap output.
Definition: pcap.h:162
u32 flags
Definition: vhost_user.h:115
vlib_node_type_t
Definition: node.h:69
#define clib_min(x, y)
Definition: clib.h:295
clib_error_t * vlib_call_all_main_loop_enter_functions(vlib_main_t *vm)
Definition: init.c:80
static_always_inline void clib_spinlock_unlock(clib_spinlock_t *p)
Definition: lock.h:89
static void vlib_next_frame_change_ownership(vlib_main_t *vm, vlib_node_runtime_t *node_runtime, u32 next_index)
Definition: main.c:274
static_always_inline void clib_spinlock_lock(clib_spinlock_t *p)
Definition: lock.h:74
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:299
u32 interrupt_threshold_vector_length
Definition: node.h:717
vlib_process_t ** processes
Definition: node.h:738
static uword vlib_process_bootstrap(uword _a)
Definition: main.c:1446
format_function_t format_vlib_node_name
Definition: node_funcs.h:1141
vlib_node_runtime_t node_runtime
Definition: node.h:552
a
Definition: bitmap.h:538
u32 n_suspends
Definition: node.h:580
#define VLIB_PENDING_FRAME_NO_NEXT_FRAME
Definition: node.h:459
u32 n_packets_to_capture
Number of packets to capture.
Definition: pcap.h:165
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:357
uword * processing_rpc_requests
Definition: main.h:244
static u32 clib_get_current_numa_node()
Definition: cpu.h:171
#define VLIB_PCAP_MAJOR_VERSION
Definition: main.h:401
vlib_trace_node_t * nodes
Definition: trace.h:86
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:910
static clib_error_t * elog_save_buffer(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
Definition: main.c:712
int elog_post_mortem_dump
Definition: main.h:222
uword dispatch_pcap_enable
Definition: main.h:145
#define PREDICT_TRUE(x)
Definition: clib.h:112
uword random_seed
Definition: main.h:188
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:357
elog_time_stamp_t init_time
Timestamps.
Definition: elog.h:172
#define clib_memcpy_fast(a, b, c)
Definition: string.h:81
static void vlib_process_sync_stats(vlib_main_t *vm, vlib_process_t *p, uword n_calls, uword n_vectors, uword n_clocks, uword n_ticks0, uword n_ticks1)
Definition: main.c:572
void clib_random_buffer_init(clib_random_buffer_t *b, uword seed)
Definition: random_buffer.c:62
#define NULL
Definition: clib.h:58
clib_memset(h->entries, 0, sizeof(h->entries[0]) *entries)
u32 index
Definition: node.h:279
void(* vlib_node_runtime_perf_counter_cb)(struct vlib_main_t *, u64 *, u64 *)
Definition: main.h:97
static f64 vlib_time_now(vlib_main_t *vm)
Definition: main.h:255
static void dummy_queue_signal_callback(vlib_main_t *vm)
Definition: main.c:1957
u32 current_process_index
Definition: node.h:741
static_always_inline void clib_spinlock_unlock_if_init(clib_spinlock_t *p)
Definition: lock.h:98
static u32 clib_get_current_cpu_id()
Definition: cpu.h:163
u32 thread_index
Definition: main.h:197
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:1473
u32 main_loop_exit_set
Definition: main.h:104
static u64 dispatch_pending_node(vlib_main_t *vm, uword pending_frame_index, u64 last_time_stamp)
Definition: main.c:1318
static vlib_frame_t * vlib_get_frame(vlib_main_t *vm, vlib_frame_t *f)
Definition: node_funcs.h:216
u8 data[0]
Packet data.
Definition: buffer.h:181
#define vec_add1(V, E)
Add 1 element to end of vector (unspecified alignment).
Definition: vec.h:522
static u64 clib_cpu_time_now(void)
Definition: time.h:75
elog_track_t elog_track
Definition: threads.h:100
u32 clocks_since_last_overflow
Number of clock cycles.
Definition: node.h:474
#define vec_add2(V, P, N)
Add N elements to end of vector V, return pointer to new elements in P.
Definition: vec.h:560
int i
uword unformat_user(unformat_input_t *input, unformat_function_t *func,...)
Definition: unformat.c:983
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:686
static void elog_show_buffer_internal(vlib_main_t *vm, u32 n_events_to_show)
Definition: main.c:847
#define VLIB_MAIN_LOOP_EXIT_CLI
Definition: main.h:111
void clib_longjmp(clib_longjmp_t *save, uword return_value)
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:95
static clib_error_t * elog_show_buffer(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
Definition: main.c:875
u8 * format_elog_event(u8 *s, va_list *va)
Definition: elog.c:296
u8 data[128]
Definition: ipsec.api:248
clib_time_t clib_time
Definition: main.h:72
u32 numa_node
Definition: main.h:199
#define vec_validate_aligned(V, I, A)
Make sure vector is long enough for given index (no header, specified alignment)
Definition: vec.h:450
clib_spinlock_t pending_interrupt_lock
Definition: node.h:711
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:366
#define pool_get(P, E)
Allocate an object E from a pool P (unspecified alignment).
Definition: pool.h:236
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:280
unsigned char u8
Definition: types.h:56
static uword vlib_process_stack_is_valid(vlib_process_t *p)
Definition: main.c:1432
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.
u64 perf_counter0_ticks
Definition: node.h:235
double f64
Definition: types.h:142
u16 scalar_size
Definition: node.h:319
u8 state
Definition: node.h:307
u16 thread_index
thread this node runs on
Definition: node.h:519
#define vlib_worker_thread_barrier_sync(X)
Definition: threads.h:204
volatile uword check_frame_queues
Definition: main.h:240
static void vlib_worker_thread_barrier_check(void)
Definition: threads.h:390
u32 * pending_interrupt_node_runtime_indices
Definition: node.h:710
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:496
static void vlib_main_loop(vlib_main_t *vm)
Definition: main.c:1913
#define foreach_weak_reference_stub
Definition: main.c:1961
vlib_trace_header_t ** trace_buffer_pool
Definition: trace.h:72
#define static_always_inline
Definition: clib.h:99
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:83
clib_spinlock_t lock
spinlock to protect e.g.
Definition: pcap.h:159
#define VLIB_FRAME_NO_APPEND
Definition: node.h:417
vlib_node_function_t * function
Node function to call.
Definition: node.h:466
void elog_init(elog_main_t *em, u32 n_events)
Definition: elog.c:493
#define VLIB_FRAME_MAGIC
#define always_inline
Definition: clib.h:98
u32 main_loop_vectors_processed
Definition: main.h:87
#define VLIB_INVALID_NODE_INDEX
Definition: node.h:373
u16 log2_n_stack_bytes
Definition: node.h:575
vlib_node_t ** nodes
Definition: node.h:697
u32 vectors_since_last_overflow
Number of vector elements processed by this node.
Definition: node.h:484
vlib_frame_t * frame
Definition: main.c:1441
void di(unformat_input_t *i)
Definition: unformat.c:163
#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:187
#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:1020
#define VLIB_FRAME_ALIGN
Definition: node.h:377
u64 perf_counter_vectors
Definition: node.h:237
u32 cpu_id
Definition: main.h:198
static uword vlib_timing_wheel_data_is_timed_event(u32 d)
Definition: node.h:671
#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:566
#define vec_resize(V, N)
Resize a vector (no header, unspecified alignment) Add N elements to end of given vector V...
Definition: vec.h:242
unsigned int u32
Definition: types.h:88
u64 cpu_time_main_loop_start
Definition: main.h:81
vlib_node_runtime_t * nodes_by_type[VLIB_N_NODE_TYPE]
Definition: node.h:707
static u32 vlib_frame_bytes(u32 n_scalar_bytes, u32 n_vector_bytes)
Definition: main.c:58
#define VLIB_MAIN_LOOP_EXIT_NONE
Definition: main.h:108
clib_error_t * vlib_node_main_init(vlib_main_t *vm)
Definition: node.c:631
#define VLIB_FRAME_SIZE
Definition: node.h:376
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:264
u32 perf_counter0_ticks_since_last_overflow
Perf counter 0 ticks.
Definition: node.h:487
u8 * pcap_buffer
Definition: main.h:146
#define VLIB_PROCESS_IS_RUNNING
Definition: node.h:572
#define VLIB_PROCESS_RETURN_LONGJMP_RETURN
Definition: node.h:557
u64 max_clock_n
Definition: node.h:234
unformat_function_t unformat_line_input
Definition: format.h:282
static void clib_spinlock_init(clib_spinlock_t *p)
Definition: lock.h:57
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:482
char * name
Definition: main.h:117
vlib_worker_thread_t * vlib_worker_threads
Definition: threads.c:36
#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:514
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:456
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:743
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:422
u16 state
Input node state.
Definition: node.h:509
static u8 * format_buffer_metadata(u8 *s, va_list *args)
Definition: main.c:999
format_function_t format_vlib_trace
Definition: trace.h:92
vlib_signal_timed_event_data_t * signal_timed_event_data_pool
Definition: node.h:728
u16 frame_flags
Definition: node.h:383
#define VLIB_FRAME_IS_ALLOCATED
Definition: node.h:424
#define VLIB_FRAME_NO_FREE_AFTER_DISPATCH
Definition: node.h:413
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:1127
u32 n_alloc_frames
Definition: node.h:537
void vlib_put_frame_to_node(vlib_main_t *vm, u32 to_node_index, vlib_frame_t *f)
Definition: main.c:196
static clib_error_t * pcap_dispatch_trace_command_fn(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
Definition: main.c:2279
static uword vlib_timing_wheel_data_get_index(u32 d)
Definition: node.h:689
u32 *TW() tw_timer_expire_timers_vec(TWT(tw_timer_wheel) *tw, f64 now, u32 *vec)
#define pool_put(P, E)
Free an object E in pool P.
Definition: pool.h:286
elog_event_type_t * node_return_elog_event_types
Definition: main.h:183
#define TWT(a)
void vlib_frame_free(vlib_main_t *vm, vlib_node_runtime_t *r, vlib_frame_t *f)
Definition: main.c:216
u32 polling_threshold_vector_length
Definition: node.h:716
#define ELOG_DATA(em, f)
Definition: elog.h:484
u64 * n_vectors_by_next_node
Definition: node.h:342
#define PREDICT_FALSE(x)
Definition: clib.h:111
f64 seconds_per_clock
Definition: time.h:57
void elog_post_mortem_dump(void)
Definition: main.c:749
u8 protocol_hint
Definition: node.h:313
vlib_frame_t * frame
Definition: node.h:453
u32 node_index
Node index.
Definition: node.h:494
#define foreach_vlib_main(body)
Definition: threads.h:235
uword * init_functions_called
Definition: main.h:194
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:37
#define VLIB_PROCESS_STACK_MAGIC
Definition: node.h:623
#define VLIB_PROCESS_RESUME_LONGJMP_RESUME
Definition: node.h:563
void clib_time_init(clib_time_t *c)
Definition: time.c:178
uword * frame_size_hash
Definition: node.h:753
void elog_alloc(elog_main_t *em, u32 n_events)
Definition: elog.c:479
clib_error_t * vlibmemory_init(vlib_main_t *vm)
Definition: memory_api.c:958
volatile u32 queue_signal_pending
Definition: main.h:210
static vlib_frame_t * vlib_frame_alloc_to_node(vlib_main_t *vm, u32 to_node_index, u32 frame_flags)
Definition: main.c:121
clib_error_t * map_api_segment_init(vlib_main_t *vm)
Definition: memory_api.c:487
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:1504
u32 wraps
Definition: main.c:55
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, uword n_ticks0, uword n_ticks1)
Definition: main.c:623
u32 owner_node_index
Definition: node.h:353
static void vlib_node_runtime_perf_counter(vlib_main_t *vm, u64 *pmc0, u64 *pmc1)
Definition: main.c:677
void vlib_register_all_static_nodes(vlib_main_t *vm)
Definition: node.c:540
#define VLIB_EARLY_CONFIG_FUNCTION(x, n,...)
Definition: init.h:216
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:1029
#define UNFORMAT_END_OF_INPUT
Definition: format.h:144
u8 inline_event_data[64 - 3 *sizeof(u32) - 2 *sizeof(u16)]
Definition: node.h:662
svmdb_client_t * c
u16 n_vectors
Definition: node.h:395
u32 runtime_index
Definition: node.h:282
#define CLIB_PREFETCH(addr, size, type)
Definition: cache.h:80
vlib_main_t * vm
Definition: buffer.c:312
int elog_trace_graph_dispatch
Definition: main.h:177
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:1667
u32 node_runtime_index
Definition: node.h:450
vlib_pending_frame_t * pending_frames
Definition: node.h:723
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:1600
#define vec_free(V)
Free vector&#39;s memory (no header).
Definition: vec.h:341
clib_error_t * vpe_api_init(vlib_main_t *vm)
Definition: api.c:557
#define VLIB_NODE_FLAG_FRAME_NO_FREE_AFTER_DISPATCH
Definition: node.h:292
u32 trace_index
Specifies index into trace buffer if VLIB_PACKET_IS_TRACED flag is set.
Definition: buffer.h:163
#define clib_warning(format, args...)
Definition: error.h:59
#define VLIB_PROCESS_RESUME_PENDING
Definition: node.h:569
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:89
u32 perf_counter_vectors_since_last_overflow
Perf counter vectors.
Definition: node.h:489
#define VLIB_BUFFER_TRACE_TRAJECTORY
Compile time buffer trajectory tracing option Turn this on if you run into "bad monkey" contexts...
Definition: buffer.h:442
elog_main_t elog_main
Definition: main.h:172
clib_error_t * vlib_buffer_main_init(struct vlib_main_t *vm)
Definition: buffer.c:788
#define VLIB_FRAME_PENDING
Definition: node.h:427
static u32 vlib_frame_vector_byte_offset(u32 scalar_size)
Definition: node_funcs.h:233
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:458
#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:241
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:540
#define VLIB_CLI_COMMAND(x,...)
Definition: cli.h:155
#define VLIB_PCAP_MINOR_VERSION
Definition: main.h:402
#define never_inline
Definition: clib.h:95
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:513
#define pool_put_index(p, i)
Free pool element with given index.
Definition: pool.h:311
#define ASSERT(truth)
u64 last_cpu_time
Definition: time.h:50
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, uword n_ticks0, uword n_ticks1)
Definition: main.c:544
static void elog_reset_buffer(elog_main_t *em)
Reset the event buffer.
Definition: elog.h:210
u64 perf_counter1_ticks
Definition: node.h:236
vlib_frame_queue_main_t * frame_queue_mains
Definition: threads.h:326
#define ELOG_TRACK_DATA(em, f, track)
Definition: elog.h:478
vlib_frame_t * frame
Definition: node.h:404
uword event_ring_size
Power of 2 number of elements in ring.
Definition: elog.h:145
u16 flags
Definition: node.h:386
u32 main_loop_nodes_processed
Definition: main.h:88
u64 cpu
CPU cycle counter.
Definition: elog.h:126
#define clib_error_report(e)
Definition: error.h:113
u32 elog_trace_graph_circuit_node_index
Definition: main.h:179
vlib_trace_main_t trace_main
Definition: main.h:141
u8 * format_vnet_buffer_opaque(u8 *s, va_list *args)
Definition: main.c:983
u8 * vnet_trace_dummy
Definition: trace.c:43
u8 * format_vnet_buffer_opaque2(u8 *s, va_list *args)
Definition: main.c:992
static uword pointer_to_uword(const void *p)
Definition: types.h:131
#define A(x)
Definition: main.c:1017
void(* queue_signal_callback)(struct vlib_main_t *)
Definition: main.h:212
void vlib_gdb_show_event_log(void)
Definition: main.c:904
static vlib_main_t * vlib_get_main(void)
Definition: global_funcs.h:23
static_always_inline uword vlib_process_resume(vlib_process_t *p)
Definition: main.c:1491
#define VLIB_FRAME_OWNER
Definition: node.h:421
void vlib_node_sync_stats(vlib_main_t *vm, vlib_node_t *n)
Definition: main.c:586
#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:1975
#define unformat_parse_error(input)
Definition: format.h:268
pcap_packet_type_t packet_type
Packet type.
Definition: pcap.h:168
void vlib_worker_loop(vlib_main_t *vm)
Definition: main.c:1919
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:72
static clib_error_t * pcap_dispatch_trace_command_internal(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd, int rx_tx)
Definition: main.c:2122
void vl_api_send_pending_rpc_requests(vlib_main_t *)
Definition: main.c:1661
#define clib_mem_alloc_aligned_no_fail(size, align)
Definition: mem.h:166
CJ_GLOBAL_LOG_PROTOTYPE
Definition: main.c:49
u32 * data_from_advancing_timing_wheel
Definition: node.h:731
clib_error_t * vlib_physmem_init(vlib_main_t *vm)
Definition: physmem.c:94
u32 perf_counter1_ticks_since_last_overflow
Perf counter 1 ticks.
Definition: node.h:488
#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:750
vlib_pending_frame_t * suspended_process_frames
Definition: node.h:744
u32 next_buffer
Next buffer for this linked-list of buffers.
Definition: buffer.h:140
vlib_node_main_t node_main
Definition: main.h:135
static u32 * vlib_frame_find_magic(vlib_frame_t *f, vlib_node_t *node)
Definition: main.c:83
VLIB buffer representation.
Definition: buffer.h:102
u64 uword
Definition: types.h:112
u32 owner_next_index
Definition: node.h:353
u8 vector_size
Definition: node.h:392
vlib_next_frame_t * next_frames
Definition: node.h:720
static clib_error_t * elog_stop(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
Definition: main.c:775
static void unformat_free(unformat_input_t *i)
Definition: format.h:162
clib_error_t * vlib_call_all_config_functions(vlib_main_t *vm, unformat_input_t *input, int is_early)
Definition: init.c:94
static void * vlib_frame_vector_args(vlib_frame_t *f)
Get pointer to frame vector data.
Definition: node_funcs.h:244
typedef key
Definition: ipsec.api:244
static uword elog_is_enabled(elog_main_t *em)
event logging enabled predicate
Definition: elog.h:276
#define VLIB_FRAME_TRACE
Definition: node.h:433
u32 stop_timer_handle
Definition: node.h:605
clib_error_t * vlib_call_all_init_functions(vlib_main_t *vm)
Definition: init.c:67
#define VLIB_FRAME_SIZE_EXTRA
unformat_function_t unformat_vlib_node
Definition: node_funcs.h:1147
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:1585
vlib_frame_size_t * frame_sizes
Definition: node.h:756
u64 resume_clock_interval
Definition: node.h:602
static void add_trajectory_trace(vlib_buffer_t *b, u32 node_index)
Definition: main.c:963
u16 flags
Definition: node.h:565
elog_event_type_t * node_call_elog_event_types
Definition: main.h:182
static void * clib_mem_alloc_aligned(uword size, uword align)
Definition: mem.h:140
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:208
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:1489
vlib_node_state_t
Definition: node.h:249
pcap_main_t dispatch_pcap_main
Definition: main.h:144
u64 init_cpu_time
Definition: time.h:62
u32 TW() tw_timer_start(TWT(tw_timer_wheel) *tw, u32 user_id, u32 timer_id, u64 interval)
Start a Tw Timer.
u32 suspended_process_frame_index
Definition: node.h:577
static void validate_frame_magic(vlib_main_t *vm, vlib_frame_t *f, vlib_node_t *n, uword next_index)
Definition: main.c:348
static vlib_thread_main_t * vlib_get_thread_main()
Definition: global_funcs.h:32
static clib_error_t * vlib_main_configure(vlib_main_t *vm, unformat_input_t *input)
Definition: main.c:1927
static vlib_node_t * vlib_get_node(vlib_main_t *vm, u32 i)
Get vlib node by index.
Definition: node_funcs.h:59
static clib_error_t * vlib_cli_elog_clear(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
Definition: main.c:695
#define VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_EVENT
Definition: node.h:567
#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:555
u16 flags
Copy of main node flags.
Definition: node.h:507
u32 node_runtime_index
Definition: node.h:407
u32 n_total_events
Total number of events in buffer.
Definition: elog.h:135
u8 scalar_size
Definition: node.h:389
clib_longjmp_t main_loop_exit
Definition: main.h:107
clib_longjmp_t resume_longjmp
Definition: node.h:561
void clib_mem_trace(int enable)
Definition: mem_dlmalloc.c:405
static clib_error_t * elog_resize(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
Definition: main.c:815
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:244
#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:239
static u32 vlib_timing_wheel_data_set_suspended_process(u32 i)
Definition: node.h:677
volatile void(* worker_thread_main_loop_callback)(struct vlib_main_t *)
Definition: main.h:216
void vlib_start_process(vlib_main_t *vm, uword process_index)
Definition: main.c:1577
void vlib_cli_output(vlib_main_t *vm, char *fmt,...)
Definition: cli.c:762
static_always_inline void clib_spinlock_lock_if_init(clib_spinlock_t *p)
Definition: lock.h:82
void * timing_wheel
Definition: node.h:726
u8 * format_vnet_buffer_flags(u8 *s, va_list *args)
Definition: main.c:975
volatile u8 ref_count
Reference count for this buffer.
Definition: buffer.h:130
int elog_trace_graph_circuit
Definition: main.h:178
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:191
static clib_error_t * elog_restart(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
Definition: main.c:795
#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:363
uword unformat(unformat_input_t *i, const char *fmt,...)
Definition: unformat.c:972
Definition: defs.h:46
clib_error_t * main_loop_error
Definition: main.h:114
vlib_process_t * process
Definition: main.c:1440
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:537
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:78
static uword unformat_check_input(unformat_input_t *i)
Definition: format.h:170
#define VLIB_FRAME_FREE_AFTER_DISPATCH
Definition: node.h:430
clib_error_t * vlib_thread_init(vlib_main_t *vm)
Definition: threads.c:237
u32 vectors_since_last_overflow
Definition: node.h:436
u32 max_clock_n
Number of vectors in the recorded max_clock.
Definition: node.h:479
#define VLIB_PROCESS_RETURN_LONGJMP_SUSPEND
Definition: node.h:558