FD.io VPP  v17.04.2-2-ga8f93f8
Vector Packet Processing
node.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  * node.c: VLIB processing nodes
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 <vlib/vlib.h>
41 #include <vlib/threads.h>
42 
43 /* Query node given name. */
46 {
47  vlib_node_main_t *nm = &vm->node_main;
48  uword *p;
49  u8 *key = name;
50  if (!clib_mem_is_heap_object (key))
51  key = format (0, "%s", key);
52  p = hash_get (nm->node_by_name, key);
53  if (key != name)
54  vec_free (key);
55  return p ? vec_elt (nm->nodes, p[0]) : 0;
56 }
57 
58 static void
60 {
61  vlib_node_t *n = vlib_get_node (vm, node_index);
63 
64  t = vec_elt_at_index (vm->node_call_elog_event_types, node_index);
65  vec_free (t->format);
66  t->format = (char *) format (0, "%v-call: %%d%c", n->name, 0);
67 
68  t = vec_elt_at_index (vm->node_return_elog_event_types, node_index);
69  vec_free (t->format);
70  t->format = (char *) format (0, "%v-return: %%d%c", n->name, 0);
71 
72  n->name_elog_string = elog_string (&vm->elog_main, "%v%c", n->name, 0);
73 }
74 
75 void
76 vlib_node_rename (vlib_main_t * vm, u32 node_index, char *fmt, ...)
77 {
78  va_list va;
79  vlib_node_main_t *nm = &vm->node_main;
80  vlib_node_t *n = vlib_get_node (vm, node_index);
81 
82  va_start (va, fmt);
83  hash_unset (nm->node_by_name, n->name);
84  vec_free (n->name);
85  n->name = va_format (0, fmt, &va);
86  va_end (va);
87  hash_set (nm->node_by_name, n->name, n->index);
88 
89  node_set_elog_name (vm, node_index);
90 }
91 
92 static void
93 vlib_node_runtime_update (vlib_main_t * vm, u32 node_index, u32 next_index)
94 {
95  vlib_node_main_t *nm = &vm->node_main;
96  vlib_node_runtime_t *r, *s;
97  vlib_node_t *node, *next_node;
100  i32 i, j, n_insert;
101 
102  ASSERT (os_get_cpu_number () == 0);
103 
105 
106  node = vec_elt (nm->nodes, node_index);
107  r = vlib_node_get_runtime (vm, node_index);
108 
109  n_insert = vec_len (node->next_nodes) - r->n_next_nodes;
110  if (n_insert > 0)
111  {
112  i = r->next_frame_index + r->n_next_nodes;
113  vec_insert (nm->next_frames, n_insert, i);
114 
115  /* Initialize newly inserted next frames. */
116  for (j = 0; j < n_insert; j++)
117  vlib_next_frame_init (nm->next_frames + i + j);
118 
119  /* Relocate other next frames at higher indices. */
120  for (j = 0; j < vec_len (nm->nodes); j++)
121  {
122  s = vlib_node_get_runtime (vm, j);
123  if (j != node_index && s->next_frame_index >= i)
124  s->next_frame_index += n_insert;
125  }
126 
127  /* Pending frames may need to be relocated also. */
128  vec_foreach (pf, nm->pending_frames)
129  {
131  && pf->next_frame_index >= i)
132  pf->next_frame_index += n_insert;
133  }
134  /* *INDENT-OFF* */
136  if (pf->next_frame_index != ~0 && pf->next_frame_index >= i)
137  pf->next_frame_index += n_insert;
138  }));
139  /* *INDENT-ON* */
140 
141  r->n_next_nodes = vec_len (node->next_nodes);
142  }
143 
144  /* Set frame's node runtime index. */
145  next_node = vlib_get_node (vm, node->next_nodes[next_index]);
146  nf = nm->next_frames + r->next_frame_index + next_index;
147  nf->node_runtime_index = next_node->runtime_index;
148 
150 
152 }
153 
154 uword
155 vlib_node_get_next (vlib_main_t * vm, uword node_index, uword next_node_index)
156 {
157  vlib_node_main_t *nm = &vm->node_main;
158  vlib_node_t *node;
159  uword *p;
160 
161  node = vec_elt (nm->nodes, node_index);
162 
163  /* Runtime has to be initialized. */
165 
166  if ((p = hash_get (node->next_slot_by_node, next_node_index)))
167  {
168  return p[0];
169  }
170 
171  return (~0);
172 }
173 
174 /* Add next node to given node in given slot. */
175 uword
177  uword node_index,
178  uword next_node_index, uword slot)
179 {
180  vlib_node_main_t *nm = &vm->node_main;
181  vlib_node_t *node, *next;
182  uword *p;
183 
184  node = vec_elt (nm->nodes, node_index);
185  next = vec_elt (nm->nodes, next_node_index);
186 
187  /* Runtime has to be initialized. */
189 
190  if ((p = hash_get (node->next_slot_by_node, next_node_index)))
191  {
192  /* Next already exists: slot must match. */
193  if (slot != ~0)
194  ASSERT (slot == p[0]);
195  return p[0];
196  }
197 
198  if (slot == ~0)
199  slot = vec_len (node->next_nodes);
200 
201  vec_validate_init_empty (node->next_nodes, slot, ~0);
202  vec_validate (node->n_vectors_by_next_node, slot);
203 
204  node->next_nodes[slot] = next_node_index;
205  hash_set (node->next_slot_by_node, next_node_index, slot);
206 
207  vlib_node_runtime_update (vm, node_index, slot);
208 
209  next->prev_node_bitmap = clib_bitmap_ori (next->prev_node_bitmap,
210  node_index);
211 
212  /* Siblings all get same node structure. */
213  {
214  uword sib_node_index, sib_slot;
215  vlib_node_t *sib_node;
216  /* *INDENT-OFF* */
217  clib_bitmap_foreach (sib_node_index, node->sibling_bitmap, ({
218  sib_node = vec_elt (nm->nodes, sib_node_index);
219  if (sib_node != node)
220  {
221  sib_slot = vlib_node_add_next_with_slot (vm, sib_node_index, next_node_index, slot);
222  ASSERT (sib_slot == slot);
223  }
224  }));
225  /* *INDENT-ON* */
226  }
227 
228  return slot;
229 }
230 
231 /* Add named next node to given node in given slot. */
232 uword
234  uword node, char *name, uword slot)
235 {
236  vlib_node_main_t *nm;
237  vlib_node_t *n, *n_next;
238 
239  nm = &vm->node_main;
240  n = vlib_get_node (vm, node);
241 
242  n_next = vlib_get_node_by_name (vm, (u8 *) name);
243  if (!n_next)
244  {
246  return ~0;
247 
248  if (slot == ~0)
249  slot = clib_max (vec_len (n->next_node_names),
250  vec_len (n->next_nodes));
251  vec_validate (n->next_node_names, slot);
252  n->next_node_names[slot] = name;
253  return slot;
254  }
255 
256  return vlib_node_add_next_with_slot (vm, node, n_next->index, slot);
257 }
258 
259 static void
261 {
263 
264  memset (&t, 0, sizeof (t));
265 
266  /* 2 event types for this node: one when node function is called.
267  One when it returns. */
269  vm->node_call_elog_event_types[ni] = t;
270 
272  vm->node_return_elog_event_types[ni] = t;
273 
274  node_set_elog_name (vm, ni);
275 }
276 
277 #ifdef CLIB_UNIX
278 #define STACK_ALIGN (clib_mem_get_page_size())
279 #else
280 #define STACK_ALIGN CLIB_CACHE_LINE_BYTES
281 #endif
282 
283 static void
285 {
286  vlib_node_main_t *nm = &vm->node_main;
287  vlib_node_t *n;
288  u32 page_size = clib_mem_get_page_size ();
289  int i;
290 
291  if (CLIB_DEBUG > 0)
292  {
293  /* Default (0) type should match INTERNAL. */
294  vlib_node_t zero = { 0 };
296  }
297 
298  ASSERT (r->function != 0);
299 
300  n = clib_mem_alloc_no_fail (sizeof (n[0]));
301  memset (n, 0, sizeof (n[0]));
302  n->index = vec_len (nm->nodes);
303 
304  vec_add1 (nm->nodes, n);
305 
306  /* Name is always a vector so it can be formatted with %v. */
307  if (clib_mem_is_heap_object (vec_header (r->name, 0)))
308  n->name = vec_dup ((u8 *) r->name);
309  else
310  n->name = format (0, "%s", r->name);
311 
312  if (!nm->node_by_name)
313  nm->node_by_name = hash_create_vec ( /* size */ 32,
314  sizeof (n->name[0]), sizeof (uword));
315 
316  /* Node names must be unique. */
317  {
318  vlib_node_t *o = vlib_get_node_by_name (vm, n->name);
319  if (o)
320  clib_error ("more than one node named `%v'", n->name);
321  }
322 
323  hash_set (nm->node_by_name, n->name, n->index);
324 
325  r->index = n->index; /* save index in registration */
326  n->function = r->function;
327 
328  /* Node index of next sibling will be filled in by vlib_node_main_init. */
329  n->sibling_of = r->sibling_of;
330  if (r->sibling_of && r->n_next_nodes > 0)
331  clib_error ("sibling node should not have any next nodes `%v'", n->name);
332 
333  if (r->type == VLIB_NODE_TYPE_INTERNAL)
334  ASSERT (r->vector_size > 0);
335 
336 #define _(f) n->f = r->f
337 
338  _(type);
339  _(flags);
340  _(state);
341  _(scalar_size);
342  _(vector_size);
343  _(format_buffer);
344  _(unformat_buffer);
345  _(format_trace);
346  _(validate_frame);
347 
348  /* Register error counters. */
349  vlib_register_errors (vm, n->index, r->n_errors, r->error_strings);
350  node_elog_init (vm, n->index);
351 
352  _(runtime_data_bytes);
353  if (r->runtime_data_bytes > 0)
354  {
355  vec_resize (n->runtime_data, r->runtime_data_bytes);
356  if (r->runtime_data)
357  clib_memcpy (n->runtime_data, r->runtime_data, r->runtime_data_bytes);
358  }
359 
360  vec_resize (n->next_node_names, r->n_next_nodes);
361  for (i = 0; i < r->n_next_nodes; i++)
362  n->next_node_names[i] = r->next_nodes[i];
363 
364  vec_validate_init_empty (n->next_nodes, r->n_next_nodes - 1, ~0);
365  vec_validate (n->n_vectors_by_next_node, r->n_next_nodes - 1);
366 
367  n->owner_node_index = n->owner_next_index = ~0;
368 
369  /* Initialize node runtime. */
370  {
372  u32 i;
373 
374  if (n->type == VLIB_NODE_TYPE_PROCESS)
375  {
376  vlib_process_t *p;
377  uword log2_n_stack_bytes;
378 
379  log2_n_stack_bytes = clib_max (r->process_log2_n_stack_bytes, 15);
380 
381 #ifdef CLIB_UNIX
382  /*
383  * Bump the stack size if running over a kernel with a large page size,
384  * and the stack isn't any too big to begin with. Otherwise, we'll
385  * trip over the stack guard page for sure.
386  */
387  if ((page_size > (4 << 10)) && log2_n_stack_bytes < 19)
388  {
389  if ((1 << log2_n_stack_bytes) <= page_size)
390  log2_n_stack_bytes = min_log2 (page_size) + 1;
391  else
392  log2_n_stack_bytes++;
393  }
394 #endif
395 
397  (sizeof (p[0]) + (1 << log2_n_stack_bytes),
399  0 /* no, don't call os_out_of_memory */ );
400  if (p == 0)
401  clib_panic ("failed to allocate process stack (%d bytes)",
402  1 << log2_n_stack_bytes);
403 
404  memset (p, 0, sizeof (p[0]));
405  p->log2_n_stack_bytes = log2_n_stack_bytes;
406 
407  /* Process node's runtime index is really index into process
408  pointer vector. */
409  n->runtime_index = vec_len (nm->processes);
410 
411  vec_add1 (nm->processes, p);
412 
413  /* Paint first stack word with magic number so we can at least
414  detect process stack overruns. */
415  p->stack[0] = VLIB_PROCESS_STACK_MAGIC;
416 
417  /* Node runtime is stored inside of process. */
418  rt = &p->node_runtime;
419 
420 #ifdef CLIB_UNIX
421  /*
422  * Disallow writes to the bottom page of the stack, to
423  * catch stack overflows.
424  */
425  if (mprotect (p->stack, page_size, PROT_READ) < 0)
426  clib_unix_warning ("process stack");
427 #endif
428 
429  }
430  else
431  {
432  vec_add2_aligned (nm->nodes_by_type[n->type], rt, 1,
433  /* align */ CLIB_CACHE_LINE_BYTES);
434  n->runtime_index = rt - nm->nodes_by_type[n->type];
435  }
436 
437  if (n->type == VLIB_NODE_TYPE_INPUT)
438  nm->input_node_counts_by_state[n->state] += 1;
439 
440  rt->function = n->function;
441  rt->flags = n->flags;
442  rt->state = n->state;
443  rt->node_index = n->index;
444 
445  rt->n_next_nodes = r->n_next_nodes;
447 
449  for (i = 0; i < rt->n_next_nodes; i++)
451 
452  vec_resize (rt->errors, r->n_errors);
453  for (i = 0; i < vec_len (rt->errors); i++)
454  rt->errors[i] = vlib_error_set (n->index, i);
455 
458 
459  if (vec_len (n->runtime_data) > 0)
461  vec_len (n->runtime_data));
462 
463  vec_free (n->runtime_data);
464  }
465 }
466 
467 /* Register new packet processing node. */
468 u32
470 {
471  register_node (vm, r);
472  return r->index;
473 }
474 
475 static uword
477  vlib_node_runtime_t * node, vlib_frame_t * frame)
478 {
479  u16 n_vectors = frame->n_vectors;
480 
481  vlib_node_increment_counter (vm, node->node_index, 0, n_vectors);
482  vlib_buffer_free (vm, vlib_frame_args (frame), n_vectors);
483  vlib_frame_free (vm, node, frame);
484 
485  return n_vectors;
486 }
487 
488 void
490 {
492 
493  static char *null_node_error_strings[] = {
494  "blackholed packets",
495  };
496 
497  static vlib_node_registration_t null_node_reg = {
498  .function = null_node_fn,
499  .vector_size = sizeof (u32),
500  .name = "null-node",
501  .n_errors = 1,
502  .error_strings = null_node_error_strings,
503  };
504 
505  /* make sure that node index 0 is not used by
506  real node */
507  register_node (vm, &null_node_reg);
508 
510  while (r)
511  {
512  register_node (vm, r);
513  r = r->next_registration;
514  }
515 }
516 
517 clib_error_t *
519 {
520  vlib_node_main_t *nm = &vm->node_main;
521  clib_error_t *error = 0;
522  vlib_node_t *n;
523  uword ni;
524 
526 
527  /* Generate sibling relationships */
528  {
529  vlib_node_t *n, *sib;
530  uword si;
531 
532  for (ni = 0; ni < vec_len (nm->nodes); ni++)
533  {
534  n = vec_elt (nm->nodes, ni);
535 
536  if (!n->sibling_of)
537  continue;
538 
539  sib = vlib_get_node_by_name (vm, (u8 *) n->sibling_of);
540  if (!sib)
541  {
542  error = clib_error_create ("sibling `%s' not found for node `%v'",
543  n->sibling_of, n->name);
544  goto done;
545  }
546 
547  /* *INDENT-OFF* */
548  clib_bitmap_foreach (si, sib->sibling_bitmap, ({
549  vlib_node_t * m = vec_elt (nm->nodes, si);
550 
551  /* Connect all of sibling's siblings to us. */
552  m->sibling_bitmap = clib_bitmap_ori (m->sibling_bitmap, n->index);
553 
554  /* Connect us to all of sibling's siblings. */
555  n->sibling_bitmap = clib_bitmap_ori (n->sibling_bitmap, si);
556  }));
557  /* *INDENT-ON* */
558 
559  /* Connect sibling to us. */
560  sib->sibling_bitmap = clib_bitmap_ori (sib->sibling_bitmap, n->index);
561 
562  /* Connect us to sibling. */
563  n->sibling_bitmap = clib_bitmap_ori (n->sibling_bitmap, sib->index);
564  }
565  }
566 
567  /* Resolve next names into next indices. */
568  for (ni = 0; ni < vec_len (nm->nodes); ni++)
569  {
570  uword i;
571 
572  n = vec_elt (nm->nodes, ni);
573 
574  for (i = 0; i < vec_len (n->next_node_names); i++)
575  {
576  char *a = n->next_node_names[i];
577 
578  if (!a)
579  continue;
580 
581  if (~0 == vlib_node_add_named_next_with_slot (vm, n->index, a, i))
582  {
583  error = clib_error_create
584  ("node `%v' refers to unknown node `%s'", n->name, a);
585  goto done;
586  }
587  }
588 
590  }
591 
592  /* Set previous node pointers. */
593  for (ni = 0; ni < vec_len (nm->nodes); ni++)
594  {
595  vlib_node_t *n_next;
596  uword i;
597 
598  n = vec_elt (nm->nodes, ni);
599 
600  for (i = 0; i < vec_len (n->next_nodes); i++)
601  {
602  if (n->next_nodes[i] >= vec_len (nm->nodes))
603  continue;
604 
605  n_next = vec_elt (nm->nodes, n->next_nodes[i]);
606  n_next->prev_node_bitmap =
607  clib_bitmap_ori (n_next->prev_node_bitmap, n->index);
608  }
609  }
610 
611  {
612  vlib_next_frame_t *nf;
614  vlib_node_t *next;
615  uword i;
616 
618  {
619  if (r->n_next_nodes == 0)
620  continue;
621 
622  n = vlib_get_node (vm, r->node_index);
624 
625  for (i = 0; i < vec_len (n->next_nodes); i++)
626  {
627  next = vlib_get_node (vm, n->next_nodes[i]);
628 
629  /* Validate node runtime indices are correctly initialized. */
630  ASSERT (nf[i].node_runtime_index == next->runtime_index);
631 
632  nf[i].flags = 0;
635  }
636  }
637  }
638 
639 done:
640  return error;
641 }
642 
643 /*
644  * fd.io coding-style-patch-verification: ON
645  *
646  * Local Variables:
647  * eval: (c-set-style "gnu")
648  * End:
649  */
uword * sibling_bitmap
Definition: node.h:294
u32 * next_nodes
Definition: node.h:288
#define vec_validate(V, I)
Make sure vector is long enough for given index (no header, unspecified alignment) ...
Definition: vec.h:436
u32 next_frame_index
Start of next frames for this node.
Definition: node.h:433
#define hash_set(h, key, value)
Definition: hash.h:254
sll srl srl sll sra u16x4 i
Definition: vector_sse2.h:343
vlib_process_t ** processes
Definition: node.h:673
static void * clib_mem_alloc_aligned_at_offset(uword size, uword align, uword align_offset, int os_out_of_memory_on_failure)
Definition: mem.h:72
#define hash_unset(h, key)
Definition: hash.h:260
vlib_node_runtime_t node_runtime
Definition: node.h:494
a
Definition: bitmap.h:516
static void vlib_buffer_free(vlib_main_t *vm, u32 *buffers, u32 n_buffers)
Free buffers Frees the entire buffer chain for each buffer.
Definition: buffer_funcs.h:290
u8 runtime_data[0]
Function dependent node-runtime data.
Definition: node.h:463
static void node_set_elog_name(vlib_main_t *vm, uword node_index)
Definition: node.c:59
uword vlib_node_add_named_next_with_slot(vlib_main_t *vm, uword node, char *name, uword slot)
Definition: node.c:233
#define clib_error(format, args...)
Definition: error.h:62
u32 index
Definition: node.h:237
#define vec_add2_aligned(V, P, N, A)
Add N elements to end of vector V, return pointer to new elements in P.
Definition: vec.h:573
#define STACK_ALIGN
Definition: node.c:278
u16 flags
Definition: node.h:246
#define vec_add1(V, E)
Add 1 element to end of vector (unspecified alignment).
Definition: vec.h:522
#define VLIB_NODE_MAIN_RUNTIME_STARTED
Definition: node.h:639
struct _vlib_node_registration vlib_node_registration_t
#define VLIB_FRAME_NO_FREE_AFTER_DISPATCH
Definition: node.h:365
#define STRUCT_OFFSET_OF(t, f)
Definition: clib.h:62
u8 * format(u8 *s, const char *fmt,...)
Definition: format.c:418
u8 * va_format(u8 *s, const char *fmt, va_list *va)
Definition: format.c:386
char * format
Definition: elog.h:82
void * runtime_data
Definition: node.h:243
vlib_error_t * errors
Vector of errors for this node.
Definition: node.h:418
static uword min_log2(uword x)
Definition: clib.h:189
void vlib_frame_free(vlib_main_t *vm, vlib_node_runtime_t *r, vlib_frame_t *f)
Definition: main.c:216
u8 state
Definition: node.h:265
vlib_node_function_t * function
Definition: node.h:218
void vlib_register_errors(vlib_main_t *vm, u32 node_index, u32 n_errors, char *error_strings[])
Definition: error.c:145
#define pool_foreach(VAR, POOL, BODY)
Iterate through pool.
Definition: pool.h:376
void vlib_worker_thread_node_runtime_update(void)
Definition: threads.c:814
vlib_node_function_t * function
Node function to call.
Definition: node.h:416
u16 log2_n_stack_bytes
Definition: node.h:517
vlib_node_t ** nodes
Definition: node.h:633
int i32
Definition: types.h:81
char ** next_node_names
Definition: node.h:285
char * sibling_of
Definition: node.h:291
uword vlib_node_add_next_with_slot(vlib_main_t *vm, uword node_index, uword next_node_index, uword slot)
Definition: node.c:176
#define vec_elt_at_index(v, i)
Get vector value at index i checking that i is in bounds.
#define vec_resize(V, N)
Resize a vector (no header, unspecified alignment) Add N elements to end of given vector V...
Definition: vec.h:241
#define clib_error_create(args...)
Definition: error.h:108
vlib_node_runtime_t * nodes_by_type[VLIB_N_NODE_TYPE]
Definition: node.h:643
clib_error_t * vlib_node_main_init(vlib_main_t *vm)
Definition: node.c:518
#define VLIB_NODE_RUNTIME_DATA_SIZE
Definition: node.h:474
char * name
Definition: main.h:98
#define hash_get(h, key)
Definition: hash.h:248
#define clib_bitmap_foreach(i, ai, body)
Macro to iterate across set bits in a bitmap.
Definition: bitmap.h:361
u32 next_frame_index
Definition: node.h:406
#define vec_insert(V, N, M)
Insert N vector elements starting at element M, initialize new elements to zero (no header...
Definition: vec.h:686
u16 state
Input node state.
Definition: node.h:451
static vlib_error_t vlib_error_set(u32 node_index, u32 code)
Definition: error.h:59
uword os_get_cpu_number(void)
Definition: unix-misc.c:224
vlib_node_registration_t * node_registrations
Definition: node.h:697
elog_event_type_t * node_return_elog_event_types
Definition: main.h:145
#define vec_dup(V)
Return copy of vector (no header, no alignment)
Definition: vec.h:374
u64 * n_vectors_by_next_node
Definition: node.h:297
u32 node_index
Node index.
Definition: node.h:436
static void node_elog_init(vlib_main_t *vm, uword ni)
Definition: node.c:260
static void vlib_node_increment_counter(vlib_main_t *vm, u32 node_index, u32 counter_index, u64 increment)
Definition: node_funcs.h:1115
u8 * name
Definition: node.h:221
u32 owner_node_index
Definition: node.h:308
void vlib_register_all_static_nodes(vlib_main_t *vm)
Definition: node.c:489
#define clib_mem_alloc_no_fail(size)
Definition: mem.h:153
u16 n_vectors
Definition: node.h:344
u32 runtime_index
Definition: node.h:240
vlib_main_t * vm
Definition: buffer.c:276
vlib_pending_frame_t * pending_frames
Definition: node.h:658
#define vec_free(V)
Free vector&#39;s memory (no header).
Definition: vec.h:340
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:88
#define clib_memcpy(a, b, c)
Definition: string.h:69
uword * node_by_name
Definition: node.h:636
elog_main_t elog_main
Definition: main.h:141
void vlib_worker_thread_barrier_sync(vlib_main_t *vm)
Definition: threads.c:1199
vlib_node_t * vlib_get_node_by_name(vlib_main_t *vm, u8 *name)
Definition: node.c:45
static void vlib_next_frame_init(vlib_next_frame_t *nf)
Definition: node.h:389
static uword null_node_fn(vlib_main_t *vm, vlib_node_runtime_t *node, vlib_frame_t *frame)
Definition: node.c:476
#define ASSERT(truth)
unsigned int u32
Definition: types.h:88
void vlib_node_rename(vlib_main_t *vm, u32 node_index, char *fmt,...)
Definition: node.c:76
u32 vlib_register_node(vlib_main_t *vm, vlib_node_registration_t *r)
Definition: node.c:469
#define VLIB_PROCESS_STACK_MAGIC
Definition: node.h:559
vhost_vring_state_t state
Definition: vhost-user.h:83
uword * next_slot_by_node
Definition: node.h:302
static uword clib_mem_is_heap_object(void *p)
Definition: mem.h:159
static void * vlib_frame_args(vlib_frame_t *f)
Get pointer to frame scalar data.
Definition: node_funcs.h:270
uword * prev_node_bitmap
Definition: node.h:305
#define clib_max(x, y)
Definition: clib.h:325
u64 uword
Definition: types.h:112
uword vlib_node_get_next(vlib_main_t *vm, uword node_index, uword next_node_index)
Definition: node.c:155
#define vec_elt(v, i)
Get vector value at index i.
unsigned short u16
Definition: types.h:57
#define hash_create_vec(elts, key_bytes, value_bytes)
Definition: hash.h:644
u32 elog_string(elog_main_t *em, char *fmt,...)
Definition: elog.c:525
#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:685
unsigned char u8
Definition: types.h:56
#define VLIB_PENDING_FRAME_NO_NEXT_FRAME
Definition: node.h:409
vlib_pending_frame_t * suspended_process_frames
Definition: node.h:679
vlib_node_main_t node_main
Definition: main.h:115
u32 owner_next_index
Definition: node.h:308
vlib_next_frame_t * next_frames
Definition: node.h:655
#define clib_unix_warning(format, args...)
Definition: error.h:68
static void register_node(vlib_main_t *vm, vlib_node_registration_t *r)
Definition: node.c:284
elog_event_type_t * node_call_elog_event_types
Definition: main.h:144
vlib_node_type_t type
Definition: node.h:234
u32 name_elog_string
Definition: node.h:224
void vlib_worker_thread_barrier_release(vlib_main_t *vm)
Definition: threads.c:1231
static void vlib_node_runtime_update(vlib_main_t *vm, u32 node_index, u32 next_index)
Definition: node.c:93
static void * vec_header(void *v, uword header_bytes)
Find a user vector header.
Definition: vec_bootstrap.h:92
static vlib_node_t * vlib_get_node(vlib_main_t *vm, u32 i)
Get vlib node by index.
Definition: node_funcs.h:58
#define vec_foreach(var, vec)
Vector iterator.
u16 flags
Copy of main node flags.
Definition: node.h:449
u32 node_runtime_index
Definition: node.h:359
u32 flags
Definition: vhost-user.h:78
#define vec_validate_init_empty(V, I, INIT)
Make sure vector is long enough for given index and initialize empty space (no header, unspecified alignment)
Definition: vec.h:485
#define CLIB_CACHE_LINE_BYTES
Definition: cache.h:67
uword clib_mem_get_page_size(void)
Definition: mem_mheap.c:110
#define STATIC_ASSERT_SIZEOF(d, s)
#define VLIB_NODE_FLAG_FRAME_NO_FREE_AFTER_DISPATCH
Definition: node.h:250
#define clib_panic(format, args...)
Definition: error.h:72