FD.io VPP  v21.06-1-gbb7418cf9
Vector Packet Processing
node_funcs.h
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_funcs.h: processing nodes global functions/inlines
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 /** \file
41  vlib node functions
42 */
43 
44 
45 #ifndef included_vlib_node_funcs_h
46 #define included_vlib_node_funcs_h
47 
48 #include <vppinfra/fifo.h>
50 #include <vppinfra/interrupt.h>
51 
52 #ifdef CLIB_SANITIZE_ADDR
53 #include <sanitizer/asan_interface.h>
54 #endif
55 
58 {
59 #ifdef CLIB_SANITIZE_ADDR
60  void *stack = p ? (void *) p->stack : vlib_thread_stacks[vm->thread_index];
61  u32 stack_bytes = p ? p->log2_n_stack_bytes : VLIB_THREAD_STACK_SIZE;
62  __sanitizer_start_switch_fiber (&vm->asan_stack_save, stack, stack_bytes);
63 #endif
64 }
65 
68 {
69 #ifdef CLIB_SANITIZE_ADDR
70  const void *bottom_old;
71  size_t size_old;
72 
73  __sanitizer_finish_switch_fiber (&vm->asan_stack_save, &bottom_old,
74  &size_old);
75 #endif
76 }
77 
78 /** \brief Get vlib node by index.
79  @warning This function will ASSERT if @c i is out of range.
80  @param vm vlib_main_t pointer, varies by thread
81  @param i node index.
82  @return pointer to the requested vlib_node_t.
83 */
84 
87 {
88  return vec_elt (vm->node_main.nodes, i);
89 }
90 
91 /** \brief Get vlib node by graph arc (next) index.
92  @param vm vlib_main_t pointer, varies by thread
93  @param node_index index of original node
94  @param next_index graph arc index
95  @return pointer to the vlib_node_t at the end of the indicated arc
96 */
97 
100 {
101  vlib_node_main_t *nm = &vm->node_main;
102  vlib_node_t *n;
103 
104  n = vec_elt (nm->nodes, node_index);
105  ASSERT (next_index < vec_len (n->next_nodes));
106  return vlib_get_node (vm, n->next_nodes[next_index]);
107 }
108 
109 /** \brief Get node runtime by node index.
110  @param vm vlib_main_t pointer, varies by thread
111  @param node_index index of node
112  @return pointer to the indicated vlib_node_runtime_t
113 */
114 
117 {
118  vlib_node_main_t *nm = &vm->node_main;
119  vlib_node_t *n = vec_elt (nm->nodes, node_index);
120  vlib_process_t *p;
121  if (n->type != VLIB_NODE_TYPE_PROCESS)
122  return vec_elt_at_index (nm->nodes_by_type[n->type], n->runtime_index);
123  else
124  {
125  p = vec_elt (nm->processes, n->runtime_index);
126  return &p->node_runtime;
127  }
128 }
129 
130 /** \brief Get node runtime private data by node index.
131  @param vm vlib_main_t pointer, varies by thread
132  @param node_index index of the node
133  @return pointer to the indicated vlib_node_runtime_t private data
134 */
135 
136 always_inline void *
138 {
139  vlib_node_runtime_t *r = vlib_node_get_runtime (vm, node_index);
140  return r->runtime_data;
141 }
142 
143 /** \brief Set node runtime private data.
144  @param vm vlib_main_t pointer, varies by thread
145  @param node_index index of the node
146  @param runtime_data arbitrary runtime private data
147  @param n_runtime_data_bytes size of runtime private data
148 */
149 
150 always_inline void
152  void *runtime_data, u32 n_runtime_data_bytes)
153 {
154  vlib_node_t *n = vlib_get_node (vm, node_index);
155  vlib_node_runtime_t *r = vlib_node_get_runtime (vm, node_index);
156 
157  n->runtime_data_bytes = n_runtime_data_bytes;
158  vec_free (n->runtime_data);
159  vec_add (n->runtime_data, runtime_data, n_runtime_data_bytes);
160 
161  ASSERT (vec_len (n->runtime_data) <= sizeof (vlib_node_runtime_t) -
162  STRUCT_OFFSET_OF (vlib_node_runtime_t, runtime_data));
163 
164  if (vec_len (n->runtime_data) > 0)
166  vec_len (n->runtime_data));
167 }
168 
169 /** \brief Set node dispatch state.
170  @param vm vlib_main_t pointer, varies by thread
171  @param node_index index of the node
172  @param new_state new state for node, see vlib_node_state_t
173 */
174 always_inline void
176  vlib_node_state_t new_state)
177 {
178  vlib_node_main_t *nm = &vm->node_main;
179  vlib_node_t *n;
181 
182  n = vec_elt (nm->nodes, node_index);
183  if (n->type == VLIB_NODE_TYPE_PROCESS)
184  {
186  r = &p->node_runtime;
187 
188  /* When disabling make sure flags are cleared. */
192  }
193  else
195 
196  ASSERT (new_state < VLIB_N_NODE_STATE);
197 
198  if (n->type == VLIB_NODE_TYPE_INPUT)
199  {
201  nm->input_node_counts_by_state[n->state] -= 1;
202  nm->input_node_counts_by_state[new_state] += 1;
203  }
204 
205  if (PREDICT_FALSE (r->state == VLIB_NODE_STATE_DISABLED))
206  vlib_node_runtime_perf_counter (vm, r, 0, 0, 0,
208 
209  n->state = new_state;
210  r->state = new_state;
211 }
212 
213 /** \brief Get node dispatch state.
214  @param vm vlib_main_t pointer, varies by thread
215  @param node_index index of the node
216  @return state for node, see vlib_node_state_t
217 */
220 {
221  vlib_node_main_t *nm = &vm->node_main;
222  vlib_node_t *n;
223  n = vec_elt (nm->nodes, node_index);
224  return n->state;
225 }
226 
227 always_inline void
229 {
231  vlib_node_t *n;
232 
233  n = vlib_get_node (vm, node_index);
234  r = vlib_node_get_runtime (vm, node_index);
235 
236  if (enable)
237  {
238  n->flags |= flag;
239  r->flags |= flag;
240  }
241  else
242  {
243  n->flags &= ~flag;
244  r->flags &= ~flag;
245  }
246 }
247 
248 always_inline void
250 {
251  vlib_node_main_t *nm = &vm->node_main;
252  vlib_node_t *n = vec_elt (nm->nodes, node_index);
253 
255 
256  if (vm != vlib_get_main ())
258  else
260 
261  __atomic_store_n (nm->pending_interrupts, 1, __ATOMIC_RELEASE);
262 }
263 
266 {
267  vlib_node_main_t *nm = &vm->node_main;
269  return vec_elt (nm->processes, node->runtime_index);
270 }
271 
274 {
275  ASSERT (f != NULL);
277  return f;
278 }
279 
280 always_inline void
282 {
284 }
285 
286 /* Byte alignment for vector arguments. */
287 #define VLIB_FRAME_VECTOR_ALIGN (1 << 4)
288 
291 {
292  return round_pow2 (sizeof (vlib_frame_t) + scalar_size,
294 }
295 
296 /** \brief Get pointer to frame vector data.
297  @param f vlib_frame_t pointer
298  @return pointer to first vector element in frame
299 */
300 always_inline void *
302 {
303  return (void *) f + vlib_frame_vector_byte_offset (f->scalar_size);
304 }
305 
306 /** \brief Get pointer to frame scalar data.
307 
308  @param f vlib_frame_t pointer
309 
310  @return arbitrary node scalar data
311 
312  @sa vlib_frame_vector_args
313 */
314 always_inline void *
316 {
317  return vlib_frame_vector_args (f) - f->scalar_size;
318 }
319 
323 {
324  vlib_node_main_t *nm = &vm->node_main;
325  vlib_next_frame_t *nf;
326 
327  ASSERT (next_index < n->n_next_nodes);
328  nf = vec_elt_at_index (nm->next_frames, n->next_frame_index + next_index);
329 
330  if (CLIB_DEBUG > 0)
331  {
332  vlib_node_t *node, *next;
333  node = vec_elt (nm->nodes, n->node_index);
334  next = vec_elt (nm->nodes, node->next_nodes[next_index]);
335  ASSERT (nf->node_runtime_index == next->runtime_index);
336  }
337 
338  return nf;
339 }
340 
341 /** \brief Get pointer to frame by (@c node_index, @c next_index).
342 
343  @warning This is not a function that you should call directly.
344  See @ref vlib_get_next_frame instead.
345 
346  @param vm vlib_main_t pointer, varies by thread
347  @param node_index index of the node
348  @param next_index graph arc index
349 
350  @return pointer to the requested vlib_next_frame_t
351 
352  @sa vlib_get_next_frame
353 */
354 
357 {
358  vlib_node_main_t *nm = &vm->node_main;
359  vlib_node_t *n;
361 
362  n = vec_elt (nm->nodes, node_index);
364  return vlib_node_runtime_get_next_frame (vm, r, next_index);
365 }
366 
368  vlib_node_runtime_t * node,
369  u32 next_index,
370  u32 alloc_new_frame);
371 
372 #define vlib_get_next_frame_macro(vm,node,next_index,vectors,n_vectors_left,alloc_new_frame) \
373 do { \
374  vlib_frame_t * _f \
375  = vlib_get_next_frame_internal ((vm), (node), (next_index), \
376  (alloc_new_frame)); \
377  u32 _n = _f->n_vectors; \
378  (vectors) = vlib_frame_vector_args (_f) + _n * sizeof ((vectors)[0]); \
379  (n_vectors_left) = VLIB_FRAME_SIZE - _n; \
380 } while (0)
381 
382 
383 /** \brief Get pointer to next frame vector data by
384  (@c vlib_node_runtime_t, @c next_index).
385  Standard single/dual loop boilerplate element.
386  @attention This is a MACRO, with SIDE EFFECTS.
387 
388  @param vm vlib_main_t pointer, varies by thread
389  @param node current node vlib_node_runtime_t pointer
390  @param next_index requested graph arc index
391 
392  @return @c vectors -- pointer to next available vector slot
393  @return @c n_vectors_left -- number of vector slots available
394 */
395 #define vlib_get_next_frame(vm,node,next_index,vectors,n_vectors_left) \
396  vlib_get_next_frame_macro (vm, node, next_index, \
397  vectors, n_vectors_left, \
398  /* alloc new frame */ 0)
399 
400 #define vlib_get_new_next_frame(vm,node,next_index,vectors,n_vectors_left) \
401  vlib_get_next_frame_macro (vm, node, next_index, \
402  vectors, n_vectors_left, \
403  /* alloc new frame */ 1)
404 
405 /** \brief Release pointer to next frame vector data.
406  Standard single/dual loop boilerplate element.
407  @param vm vlib_main_t pointer, varies by thread
408  @param r current node vlib_node_runtime_t pointer
409  @param next_index graph arc index
410  @param n_packets_left number of slots still available in vector
411 */
412 void
415  u32 next_index, u32 n_packets_left);
416 
417 /* Combination get plus put. Returns vector argument just added. */
418 #define vlib_set_next_frame(vm,node,next_index,v) \
419 ({ \
420  uword _n_left; \
421  vlib_get_next_frame ((vm), (node), (next_index), (v), _n_left); \
422  ASSERT (_n_left > 0); \
423  vlib_put_next_frame ((vm), (node), (next_index), _n_left - 1); \
424  (v); \
425 })
426 
427 always_inline void
429  vlib_node_runtime_t * node,
430  u32 next_index, u32 buffer_index)
431 {
432  u32 *p;
433  p = vlib_set_next_frame (vm, node, next_index, p);
434  p[0] = buffer_index;
435 }
436 
437 vlib_frame_t *vlib_get_frame_to_node (vlib_main_t * vm, u32 to_node_index);
438 void vlib_put_frame_to_node (vlib_main_t * vm, u32 to_node_index,
439  vlib_frame_t * f);
440 
443 {
444  return vm->node_main.current_process_index != ~0;
445 }
446 
449 {
450  vlib_node_main_t *nm = &vm->node_main;
451  if (vlib_in_process_context (vm))
452  return vec_elt (nm->processes, nm->current_process_index);
453  return 0;
454 }
455 
458 {
460 }
461 
464 {
466  return process->node_runtime.node_index;
467 }
468 
469 /** Returns TRUE if a process suspend time is less than 10us
470  @param dt - remaining poll time in seconds
471  @returns 1 if dt < 10e-6, 0 otherwise
472 */
475 {
476  return dt < 10e-6;
477 }
478 
479 /** Suspend a vlib cooperative multi-tasking thread for a period of time
480  @param vm - vlib_main_t *
481  @param dt - suspend interval in seconds
482  @returns VLIB_PROCESS_RESUME_LONGJMP_RESUME, routinely ignored
483 */
484 
487 {
488  uword r;
489  vlib_node_main_t *nm = &vm->node_main;
491 
494 
498  {
499  /* expiration time in 10us ticks */
500  p->resume_clock_interval = dt * 1e5;
503  }
504  else
506 
507  return r;
508 }
509 
510 always_inline void
512  uword is_one_time_event)
513 {
516  if (is_one_time_event)
518  clib_bitmap_andnoti (p->one_time_event_type_bitmap, t);
519 }
520 
521 always_inline void
523 {
526  vlib_process_free_event_type (p, t, /* is_one_time_event */ 1);
527 }
528 
529 always_inline void *
531  uword * return_event_type_opaque)
532 {
533  vlib_node_main_t *nm = &vm->node_main;
534  vlib_process_t *p;
536  uword t;
537  void *event_data_vector;
538 
539  p = vec_elt (nm->processes, nm->current_process_index);
540 
541  /* Find first type with events ready.
542  Return invalid type when there's nothing there. */
544  if (t == ~0)
545  return 0;
546 
548  clib_bitmap_andnoti (p->non_empty_event_type_bitmap, t);
549 
550  ASSERT (_vec_len (p->pending_event_data_by_type_index[t]) > 0);
551  event_data_vector = p->pending_event_data_by_type_index[t];
553 
554  et = pool_elt_at_index (p->event_type_pool, t);
555 
556  /* Return user's opaque value and possibly index. */
557  *return_event_type_opaque = et->opaque;
558 
560 
561  return event_data_vector;
562 }
563 
564 /* Return event data vector for later reuse. We reuse event data to avoid
565  repeatedly allocating event vectors in cases where we care about speed. */
566 always_inline void
567 vlib_process_put_event_data (vlib_main_t * vm, void *event_data)
568 {
569  vlib_node_main_t *nm = &vm->node_main;
570  vec_add1 (nm->recycled_event_data_vectors, event_data);
571 }
572 
573 /** Return the first event type which has occurred and a vector of per-event
574  data of that type, or a timeout indication
575 
576  @param vm - vlib_main_t pointer
577  @param data_vector - pointer to a (uword *) vector to receive event data
578  @returns either an event type and a vector of per-event instance data,
579  or ~0 to indicate a timeout.
580 */
581 
584 {
585  vlib_node_main_t *nm = &vm->node_main;
586  vlib_process_t *p;
588  uword r, t, l;
589 
590  p = vec_elt (nm->processes, nm->current_process_index);
591 
592  /* Find first type with events ready.
593  Return invalid type when there's nothing there. */
595  if (t == ~0)
596  return t;
597 
599  clib_bitmap_andnoti (p->non_empty_event_type_bitmap, t);
600 
601  l = _vec_len (p->pending_event_data_by_type_index[t]);
602  if (data_vector)
603  vec_add (*data_vector, p->pending_event_data_by_type_index[t], l);
604  _vec_len (p->pending_event_data_by_type_index[t]) = 0;
605 
606  et = pool_elt_at_index (p->event_type_pool, t);
607 
608  /* Return user's opaque value. */
609  r = et->opaque;
610 
612 
613  return r;
614 }
615 
618  uword ** data_vector)
619 {
620  uword l;
621 
623  clib_bitmap_andnoti (p->non_empty_event_type_bitmap, t);
624 
625  l = _vec_len (p->pending_event_data_by_type_index[t]);
626  if (data_vector)
627  vec_add (*data_vector, p->pending_event_data_by_type_index[t], l);
628  _vec_len (p->pending_event_data_by_type_index[t]) = 0;
629 
631 
632  return l;
633 }
634 
635 /* As above but query as specified type of event. Returns number of
636  events found. */
639  uword with_type_opaque)
640 {
641  vlib_node_main_t *nm = &vm->node_main;
642  vlib_process_t *p;
643  uword t, *h;
644 
645  p = vec_elt (nm->processes, nm->current_process_index);
646  h = hash_get (p->event_type_index_by_type_opaque, with_type_opaque);
647  if (!h)
648  /* This can happen when an event has not yet been
649  signaled with given opaque type. */
650  return 0;
651 
652  t = h[0];
654  return 0;
655 
656  return vlib_process_get_events_helper (p, t, data_vector);
657 }
658 
661 {
662  vlib_node_main_t *nm = &vm->node_main;
663  vlib_process_t *p;
664  uword r;
665 
666  p = vec_elt (nm->processes, nm->current_process_index);
668  {
670  r =
673  {
677  }
678  else
680  }
681 
682  return p->non_empty_event_type_bitmap;
683 }
684 
687  uword ** data_vector,
688  uword with_type_index)
689 {
690  vlib_node_main_t *nm = &vm->node_main;
691  vlib_process_t *p;
692  uword r;
693 
694  p = vec_elt (nm->processes, nm->current_process_index);
695  ASSERT (!pool_is_free_index (p->event_type_pool, with_type_index));
696  while (!clib_bitmap_get (p->non_empty_event_type_bitmap, with_type_index))
697  {
699  r =
702  {
706  }
707  else
709  }
710 
711  return vlib_process_get_events_helper (p, with_type_index, data_vector);
712 }
713 
716  uword ** data_vector,
717  uword with_type_opaque)
718 {
719  vlib_node_main_t *nm = &vm->node_main;
720  vlib_process_t *p;
721  uword r, *h;
722 
723  p = vec_elt (nm->processes, nm->current_process_index);
724  h = hash_get (p->event_type_index_by_type_opaque, with_type_opaque);
725  while (!h || !clib_bitmap_get (p->non_empty_event_type_bitmap, h[0]))
726  {
728  r =
731  {
735  }
736  else
738 
739  /* See if unknown event type has been signaled now. */
740  if (!h)
741  h = hash_get (p->event_type_index_by_type_opaque, with_type_opaque);
742  }
743 
744  return vlib_process_get_events_helper (p, h[0], data_vector);
745 }
746 
747 /** Suspend a cooperative multi-tasking thread
748  Waits for an event, or for the indicated number of seconds to elapse
749  @param vm - vlib_main_t pointer
750  @param dt - timeout, in seconds.
751  @returns the remaining time interval
752 */
753 
756 {
757  vlib_node_main_t *nm = &vm->node_main;
758  vlib_process_t *p;
759  f64 wakeup_time;
760  uword r;
761 
762  p = vec_elt (nm->processes, nm->current_process_index);
763 
766  return dt;
767 
768  wakeup_time = vlib_time_now (vm) + dt;
769 
770  /* Suspend waiting for both clock and event to occur. */
773 
776  {
777  p->resume_clock_interval = dt * 1e5;
780  }
781  else
783 
784  /* Return amount of time still left to sleep.
785  If <= 0 then we've been waken up by the clock (and not an event). */
786  return wakeup_time - vlib_time_now (vm);
787 }
788 
791 {
793  pool_get (p->event_type_pool, et);
794  et->opaque = with_type_opaque;
795  return et;
796 }
797 
800  uword with_type_opaque)
801 {
802  vlib_node_main_t *nm = &vm->node_main;
803  vlib_node_t *n = vlib_get_node (vm, node_index);
806  uword t;
807 
808  et = vlib_process_new_event_type (p, with_type_opaque);
809  t = et - p->event_type_pool;
811  clib_bitmap_ori (p->one_time_event_type_bitmap, t);
812  return t;
813 }
814 
815 always_inline void
817  uword t)
818 {
819  vlib_node_main_t *nm = &vm->node_main;
820  vlib_node_t *n = vlib_get_node (vm, node_index);
822 
824  vlib_process_free_event_type (p, t, /* is_one_time_event */ 1);
825 }
826 
827 always_inline void *
829  vlib_node_t * n,
830  vlib_process_t * p,
831  uword t,
832  uword n_data_elts, uword n_data_elt_bytes)
833 {
834  uword p_flags, add_to_pending, delete_from_wheel;
835  void *data_to_be_written_by_caller;
836 
838 
840 
842 
843  /* Resize data vector and return caller's data to be written. */
844  {
845  void *data_vec = p->pending_event_data_by_type_index[t];
846  uword l;
847 
848  if (!data_vec && vec_len (nm->recycled_event_data_vectors))
849  {
850  data_vec = vec_pop (nm->recycled_event_data_vectors);
851  _vec_len (data_vec) = 0;
852  }
853 
854  l = vec_len (data_vec);
855 
856  data_vec = _vec_resize (data_vec,
857  /* length_increment */ n_data_elts,
858  /* total size after increment */
859  (l + n_data_elts) * n_data_elt_bytes,
860  /* header_bytes */ 0, /* data_align */ 0);
861 
862  p->pending_event_data_by_type_index[t] = data_vec;
863  data_to_be_written_by_caller = data_vec + l * n_data_elt_bytes;
864  }
865 
867  clib_bitmap_ori (p->non_empty_event_type_bitmap, t);
868 
869  p_flags = p->flags;
870 
871  /* Event was already signalled? */
872  add_to_pending = (p_flags & VLIB_PROCESS_RESUME_PENDING) == 0;
873 
874  /* Process will resume when suspend time elapses? */
875  delete_from_wheel = 0;
877  {
878  /* Waiting for both event and clock? */
880  {
882  ((TWT (tw_timer_wheel) *) nm->timing_wheel,
883  p->stop_timer_handle))
884  delete_from_wheel = 1;
885  else
886  /* timer just popped so process should already be on the list */
887  add_to_pending = 0;
888  }
889  else
890  /* Waiting only for clock. Event will be queue and may be
891  handled when timer expires. */
892  add_to_pending = 0;
893  }
894 
895  /* Never add current process to pending vector since current process is
896  already running. */
897  add_to_pending &= nm->current_process_index != n->runtime_index;
898 
899  if (add_to_pending)
900  {
902  p->flags = p_flags | VLIB_PROCESS_RESUME_PENDING;
904  if (delete_from_wheel)
905  TW (tw_timer_stop) ((TWT (tw_timer_wheel) *) nm->timing_wheel,
906  p->stop_timer_handle);
907  }
908 
909  return data_to_be_written_by_caller;
910 }
911 
912 always_inline void *
915  uword type_opaque,
916  uword n_data_elts, uword n_data_elt_bytes)
917 {
918  vlib_node_main_t *nm = &vm->node_main;
919  vlib_node_t *n = vlib_get_node (vm, node_index);
921  uword *h, t;
922 
923  /* Must be in main thread */
924  ASSERT (vlib_get_thread_index () == 0);
925 
926  h = hash_get (p->event_type_index_by_type_opaque, type_opaque);
927  if (!h)
928  {
930  vlib_process_new_event_type (p, type_opaque);
931  t = et - p->event_type_pool;
932  hash_set (p->event_type_index_by_type_opaque, type_opaque, t);
933  }
934  else
935  t = h[0];
936 
937  return vlib_process_signal_event_helper (nm, n, p, t, n_data_elts,
938  n_data_elt_bytes);
939 }
940 
941 always_inline void *
943  f64 dt,
945  uword type_opaque,
946  uword n_data_elts, uword n_data_elt_bytes)
947 {
948  vlib_node_main_t *nm = &vm->node_main;
949  vlib_node_t *n = vlib_get_node (vm, node_index);
951  uword *h, t;
952 
953  h = hash_get (p->event_type_index_by_type_opaque, type_opaque);
954  if (!h)
955  {
957  vlib_process_new_event_type (p, type_opaque);
958  t = et - p->event_type_pool;
959  hash_set (p->event_type_index_by_type_opaque, type_opaque, t);
960  }
961  else
962  t = h[0];
963 
965  return vlib_process_signal_event_helper (nm, n, p, t, n_data_elts,
966  n_data_elt_bytes);
967  else
968  {
970 
971  pool_get_aligned (nm->signal_timed_event_data_pool, te, sizeof (te[0]));
972 
973  te->n_data_elts = n_data_elts;
974  te->n_data_elt_bytes = n_data_elt_bytes;
975  te->n_data_bytes = n_data_elts * n_data_elt_bytes;
976 
977  /* Assert that structure fields are big enough. */
978  ASSERT (te->n_data_elts == n_data_elts);
979  ASSERT (te->n_data_elt_bytes == n_data_elt_bytes);
980  ASSERT (te->n_data_bytes == n_data_elts * n_data_elt_bytes);
981 
983  te->event_type_index = t;
984 
985  p->stop_timer_handle =
986  TW (tw_timer_start) ((TWT (tw_timer_wheel) *) nm->timing_wheel,
988  (te - nm->signal_timed_event_data_pool),
989  0 /* timer_id */ ,
990  (vlib_time_now (vm) + dt) * 1e5);
991 
992  /* Inline data big enough to hold event? */
993  if (te->n_data_bytes < sizeof (te->inline_event_data))
994  return te->inline_event_data;
995  else
996  {
997  te->event_data_as_vector = 0;
999  return te->event_data_as_vector;
1000  }
1001  }
1002 }
1003 
1004 always_inline void *
1006  uword node_index,
1007  uword type_index,
1008  uword n_data_elts,
1009  uword n_data_elt_bytes)
1010 {
1011  vlib_node_main_t *nm = &vm->node_main;
1012  vlib_node_t *n = vlib_get_node (vm, node_index);
1014  return vlib_process_signal_event_helper (nm, n, p, type_index, n_data_elts,
1015  n_data_elt_bytes);
1016 }
1017 
1018 always_inline void
1020  uword node_index, uword type_opaque, uword data)
1021 {
1022  uword *d = vlib_process_signal_event_data (vm, node_index, type_opaque,
1023  1 /* elts */ , sizeof (uword));
1024  d[0] = data;
1025 }
1026 
1027 always_inline void
1029  uword node_index,
1030  uword type_opaque, void *data)
1031 {
1032  void **d = vlib_process_signal_event_data (vm, node_index, type_opaque,
1033  1 /* elts */ , sizeof (data));
1034  d[0] = data;
1035 }
1036 
1037 /**
1038  * Signal event to process from any thread.
1039  *
1040  * When in doubt, use this.
1041  */
1042 always_inline void
1044  uword node_index, uword type_opaque, uword data)
1045 {
1046  if (vlib_get_thread_index () != 0)
1047  {
1050  .type_opaque = type_opaque,
1051  .data = data,
1052  };
1054  (u8 *) & args, sizeof (args));
1055  }
1056  else
1057  vlib_process_signal_event (vm, node_index, type_opaque, data);
1058 }
1059 
1060 always_inline void
1062  uword node_index,
1063  uword type_index, uword data)
1064 {
1065  uword *d =
1066  vlib_process_signal_one_time_event_data (vm, node_index, type_index,
1067  1 /* elts */ , sizeof (uword));
1068  d[0] = data;
1069 }
1070 
1071 always_inline void
1074 {
1076  /* data */ ~0);
1077  clib_memset (p, ~0, sizeof (p[0]));
1078 }
1079 
1080 always_inline void
1083  ** wps)
1084 {
1087  vec_free (*wps);
1088 }
1089 
1090 always_inline void
1093  * p)
1094 {
1095  p->node_index = vlib_current_process (vm);
1096  p->one_time_event = vlib_process_create_one_time_event (vm, p->node_index, /* type opaque */
1097  ~0);
1099  /* don't care about data */ 0,
1100  p->one_time_event);
1101 }
1102 
1103 always_inline void
1106  ** wps)
1107 {
1109  vec_add2 (*wps, wp, 1);
1111 }
1112 
1115  vlib_node_runtime_t * node,
1116  uword n_vectors)
1117 {
1118  u32 i, d, vi0, vi1;
1119  u32 i0, i1;
1120 
1123  & (ARRAY_LEN (node->main_loop_vector_stats) - 1));
1124  i0 = i ^ 0;
1125  i1 = i ^ 1;
1127  -
1130  vi0 = node->main_loop_vector_stats[i0];
1131  vi1 = node->main_loop_vector_stats[i1];
1132  vi0 = d == 0 ? vi0 : 0;
1133  vi1 = d <= 1 ? vi1 : 0;
1134  vi0 += n_vectors;
1135  node->main_loop_vector_stats[i0] = vi0;
1136  node->main_loop_vector_stats[i1] = vi1;
1138  /* Return previous counter. */
1139  return node->main_loop_vector_stats[i1];
1140 }
1141 
1144 {
1145  vlib_node_runtime_t *rt = vlib_node_get_runtime (vm, node_index);
1146  u32 v;
1147 
1148  v = vlib_node_runtime_update_main_loop_vector_stats (vm, rt, /* n_vectors */
1149  0);
1150  return (f64) v / (1 << VLIB_LOG2_MAIN_LOOPS_PER_STATS_UPDATE);
1151 }
1152 
1155 {
1156  vlib_node_runtime_t *rt = vlib_node_get_runtime (vm, node_index);
1157  u32 v;
1158 
1159  v = vlib_node_runtime_update_main_loop_vector_stats (vm, rt, /* n_vectors */
1160  0);
1162 }
1163 
1164 void
1166 
1167 /* Return the edge index if present, ~0 otherwise */
1168 uword vlib_node_get_next (vlib_main_t * vm, uword node, uword next_node);
1169 
1170 /* Add next node to given node in given slot. */
1171 uword
1173  uword node, uword next_node, uword slot);
1174 
1175 /* As above but adds to end of node's next vector. */
1178 {
1179  return vlib_node_add_next_with_slot (vm, node, next_node, ~0);
1180 }
1181 
1182 /* Add next node to given node in given slot. */
1183 uword
1185  uword node, char *next_name, uword slot);
1186 
1187 /* As above but adds to end of node's next vector. */
1190 {
1191  return vlib_node_add_named_next_with_slot (vm, node, name, ~0);
1192 }
1193 
1194 /**
1195  * Get list of nodes
1196  */
1197 void
1198 vlib_node_get_nodes (vlib_main_t * vm, u32 max_threads, int include_stats,
1199  int barrier_sync, vlib_node_t **** node_dupsp,
1200  vlib_main_t *** stat_vmsp);
1201 
1202 /* Query node given name. */
1204 
1205 /* Rename a node. */
1206 void vlib_node_rename (vlib_main_t * vm, u32 node_index, char *fmt, ...);
1207 
1208 /* Register new packet processing node. Nodes can be registered
1209  dynamically via this call or statically via the VLIB_REGISTER_NODE
1210  macro. */
1212 
1213 /* Register all node function variants */
1215 
1216 /* Register all static nodes registered via VLIB_REGISTER_NODE. */
1218 
1219 /* Start a process. */
1220 void vlib_start_process (vlib_main_t * vm, uword process_index);
1221 
1222 /* Sync up runtime and main node stats. */
1225  uword n_calls, uword n_vectors,
1226  uword n_clocks);
1228  uword n_calls, uword n_vectors,
1229  uword n_clocks);
1230 
1231 /* Node graph initialization function. */
1233 
1240 /* Parse node name -> node index. */
1242 
1243 always_inline void
1245  u32 counter_index, u64 increment)
1246 {
1247  vlib_node_t *n = vlib_get_node (vm, node_index);
1248  vlib_error_main_t *em = &vm->error_main;
1249  u32 node_counter_base_index = n->error_heap_index;
1250  em->counters[node_counter_base_index + counter_index] += increment;
1251 }
1252 
1253 /** @brief Create a vlib process
1254  * @param vm &vlib_global_main
1255  * @param f the process node function
1256  * @param log2_n_stack_bytes size of the process stack, defaults to 16K
1257  * @return newly-create node index
1258  * @warning call only on the main thread. Barrier sync required
1259  */
1261  vlib_node_function_t * f, u32 log2_n_stack_bytes);
1262 
1263 always_inline int
1265 {
1266  if (fn && vm->dispatch_wrapper_fn)
1267  return 1;
1268  vm->dispatch_wrapper_fn = fn;
1269  return 0;
1270 }
1271 
1273  clib_march_variant_type_t march_variant);
1274 
1278 
1279 #endif /* included_vlib_node_funcs_h */
1280 
1281 /*
1282  * fd.io coding-style-patch-verification: ON
1283  *
1284  * Local Variables:
1285  * eval: (c-set-style "gnu")
1286  * End:
1287  */
u32 * next_nodes
Definition: node.h:326
#define vec_validate(V, I)
Make sure vector is long enough for given index (no header, unspecified alignment) ...
Definition: vec.h:524
static void vlib_node_set_runtime_data(vlib_main_t *vm, u32 node_index, void *runtime_data, u32 n_runtime_data_bytes)
Set node runtime private data.
Definition: node_funcs.h:151
volatile u32 main_loop_count
Definition: main.h:118
clib_march_variant_type_t
Definition: cpu.h:39
vlib_node_function_t * vlib_node_get_preferred_node_fn_variant(vlib_main_t *vm, vlib_node_fn_registration_t *regs)
Definition: node.c:295
volatile u32 * pending_interrupts
Definition: node.h:683
static void vlib_process_free_event_type(vlib_process_t *p, uword t, uword is_one_time_event)
Definition: node_funcs.h:511
u32 error_heap_index
Definition: node.h:316
u32 next_frame_index
Start of next frames for this node.
Definition: node.h:476
#define hash_set(h, key, value)
Definition: hash.h:255
vnet_interface_output_runtime_t * rt
static void vlib_signal_one_time_waiting_process_vector(vlib_main_t *vm, vlib_one_time_waiting_process_t **wps)
Definition: node_funcs.h:1081
__clib_export void TW() tw_timer_stop(TWT(tw_timer_wheel) *tw, u32 handle)
Stop a tw timer.
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:356
static void vlib_signal_one_time_waiting_process(vlib_main_t *vm, vlib_one_time_waiting_process_t *p)
Definition: node_funcs.h:1072
static_always_inline void clib_interrupt_set(void *in, int int_num)
Definition: interrupt.h:66
vlib_process_t ** processes
Definition: node.h:710
static f64 vlib_process_wait_for_event_or_clock(vlib_main_t *vm, f64 dt)
Suspend a cooperative multi-tasking thread Waits for an event, or for the indicated number of seconds...
Definition: node_funcs.h:755
format_function_t format_vlib_node_name
Definition: node_funcs.h:1235
static f64 vlib_node_vectors_per_main_loop_as_float(vlib_main_t *vm, u32 node_index)
Definition: node_funcs.h:1143
vlib_node_runtime_t node_runtime
Definition: node.h:538
uword vlib_node_get_next(vlib_main_t *vm, uword node, uword next_node)
Definition: node.c:152
void vlib_put_frame_to_node(vlib_main_t *vm, u32 to_node_index, vlib_frame_t *f)
Definition: main.c:218
u8 runtime_data[0]
Function dependent node-runtime data.
Definition: node.h:506
static uword * vlib_process_wait_for_event(vlib_main_t *vm)
Definition: node_funcs.h:660
vnet_hw_if_output_node_runtime_t * r
static void vlib_set_next_frame_buffer(vlib_main_t *vm, vlib_node_runtime_t *node, u32 next_index, u32 buffer_index)
Definition: node_funcs.h:428
static uword vlib_current_process(vlib_main_t *vm)
Definition: node_funcs.h:457
unsigned long u64
Definition: types.h:89
static void vlib_node_set_interrupt_pending(vlib_main_t *vm, u32 node_index)
Definition: node_funcs.h:249
static uword vlib_node_add_named_next(vlib_main_t *vm, uword node, char *name)
Definition: node_funcs.h:1189
clib_memset(h->entries, 0, sizeof(h->entries[0]) *entries)
static f64 vlib_time_now(vlib_main_t *vm)
Definition: main.h:325
vlib_node_t * vlib_get_node_by_name(vlib_main_t *vm, u8 *name)
Definition: node.c:45
u32 main_loop_vector_stats[2]
Definition: node.h:490
void ** pending_event_data_by_type_index
Definition: node.h:569
u32 current_process_index
Definition: node.h:713
u32 thread_index
Definition: main.h:213
u16 flags
Definition: node.h:279
static vlib_frame_t * vlib_get_frame(vlib_main_t *vm, vlib_frame_t *f)
Definition: node_funcs.h:273
#define vec_add1(V, E)
Add 1 element to end of vector (unspecified alignment).
Definition: vec.h:607
#define vlib_set_next_frame(vm, node, next_index, v)
Definition: node_funcs.h:418
void vlib_process_signal_event_mt_helper(vlib_process_signal_event_mt_args_t *args)
Definition: threads.c:1626
#define vec_add2(V, P, N)
Add N elements to end of vector V, return pointer to new elements in P.
Definition: vec.h:645
#define STRUCT_OFFSET_OF(t, f)
Definition: clib.h:73
void clib_longjmp(clib_longjmp_t *save, uword return_value)
string name[64]
Definition: fib.api:25
format_function_t format_vlib_cpu_time
Definition: node_funcs.h:1238
void * runtime_data
Definition: node.h:276
#define pool_get(P, E)
Allocate an object E from a pool P (unspecified alignment).
Definition: pool.h:255
uword clib_setjmp(clib_longjmp_t *save, uword return_value_not_taken)
static uword vlib_node_add_next(vlib_main_t *vm, uword node, uword next_node)
Definition: node_funcs.h:1177
unsigned char u8
Definition: types.h:56
#define vec_pop(V)
Returns last element of a vector and decrements its length.
Definition: vec.h:706
static uword vlib_process_suspend_time_is_zero(f64 dt)
Returns TRUE if a process suspend time is less than 10us.
Definition: node_funcs.h:474
u8 data[128]
Definition: ipsec_types.api:92
static vlib_process_event_type_t * vlib_process_new_event_type(vlib_process_t *p, uword with_type_opaque)
Definition: node_funcs.h:790
double f64
Definition: types.h:142
u8 state
Definition: node.h:300
unsigned int u32
Definition: types.h:88
#define vec_add(V, E, N)
Add N elements to end of vector V (no header, unspecified alignment)
Definition: vec.h:689
u8 *() format_function_t(u8 *s, va_list *args)
Definition: format.h:48
vlib_frame_t * f
static uword vlib_process_suspend(vlib_main_t *vm, f64 dt)
Suspend a vlib cooperative multi-tasking thread for a period of time.
Definition: node_funcs.h:486
u32 main_loop_count_last_dispatch
Saved main loop counter of last dispatch of this node.
Definition: node.h:487
void vlib_node_rename(vlib_main_t *vm, u32 node_index, char *fmt,...)
Definition: node.c:76
#define static_always_inline
Definition: clib.h:112
#define VLIB_FRAME_NO_APPEND
Definition: node.h:410
static vnet_feature_upd_registration_t * regs
Definition: feature.c:26
void ** recycled_event_data_vectors
Definition: node.h:719
static uword vlib_process_get_events(vlib_main_t *vm, uword **data_vector)
Return the first event type which has occurred and a vector of per-event data of that type...
Definition: node_funcs.h:583
return frame n_vectors
format_function_t format_vlib_node_and_next
Definition: node_funcs.h:1237
static uword clib_bitmap_is_zero(uword *ai)
predicate function; is an entire bitmap empty?
Definition: bitmap.h:57
u16 log2_n_stack_bytes
Definition: node.h:561
vlib_node_t ** nodes
Definition: node.h:669
#define VLIB_LOG2_MAIN_LOOPS_PER_STATS_UPDATE
Definition: main.h:140
#define vec_elt_at_index(v, i)
Get vector value at index i checking that i is in bounds.
struct _vlib_node_fn_registration vlib_node_fn_registration_t
format_function_t format_vlib_next_node_name
Definition: node_funcs.h:1236
#define VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_CLOCK
Definition: node.h:552
#define vec_resize(V, N)
Resize a vector (no header, unspecified alignment) Add N elements to end of given vector V...
Definition: vec.h:296
void vlib_frame_free(vlib_main_t *vm, vlib_node_runtime_t *r, vlib_frame_t *f)
Definition: main.c:242
static_always_inline void vlib_process_start_switch_stack(vlib_main_t *vm, vlib_process_t *p)
Definition: node_funcs.h:57
u32 vlib_process_create(vlib_main_t *vm, char *name, vlib_node_function_t *f, u32 log2_n_stack_bytes)
Create a vlib process.
Definition: node.c:795
void vlib_register_all_node_march_variants(vlib_main_t *vm)
Definition: node.c:539
static void vlib_process_delete_one_time_event(vlib_main_t *vm, uword node_index, uword t)
Definition: node_funcs.h:816
vlib_node_runtime_t * nodes_by_type[VLIB_N_NODE_TYPE]
Definition: node.h:679
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:321
static vlib_node_state_t vlib_node_get_state(vlib_main_t *vm, u32 node_index)
Get node dispatch state.
Definition: node_funcs.h:219
clib_error_t * vlib_node_main_init(vlib_main_t *vm)
Definition: node.c:665
#define hash_get(h, key)
Definition: hash.h:249
u16 * next
#define pool_elt_at_index(p, i)
Returns pointer to element at given index.
Definition: pool.h:553
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:828
u16 state
Input node state.
Definition: node.h:494
u32 vlib_register_node(vlib_main_t *vm, vlib_node_registration_t *r)
Definition: node.c:519
static void vlib_process_signal_event(vlib_main_t *vm, uword node_index, uword type_opaque, uword data)
Definition: node_funcs.h:1019
vlib_signal_timed_event_data_t * signal_timed_event_data_pool
Definition: node.h:700
static uword clib_bitmap_first_set(uword *ai)
Return the lowest numbered set bit in a bitmap.
Definition: bitmap.h:391
vlib_error_main_t error_main
Definition: main.h:177
u16 frame_flags
Definition: node.h:376
#define VLIB_FRAME_IS_ALLOCATED
Definition: node.h:417
static void vlib_process_maybe_free_event_type(vlib_process_t *p, uword t)
Definition: node_funcs.h:522
unsigned short u16
Definition: types.h:57
#define TWT(a)
static void * vlib_process_signal_event_data(vlib_main_t *vm, uword node_index, uword type_opaque, uword n_data_elts, uword n_data_elt_bytes)
Definition: node_funcs.h:913
static void * vlib_node_get_runtime_data(vlib_main_t *vm, u32 node_index)
Get node runtime private data by node index.
Definition: node_funcs.h:137
static void vlib_process_signal_one_time_event(vlib_main_t *vm, uword node_index, uword type_index, uword data)
Definition: node_funcs.h:1061
#define PREDICT_FALSE(x)
Definition: clib.h:124
u32 node_index
Node index.
Definition: node.h:479
uword() unformat_function_t(unformat_input_t *input, va_list *args)
Definition: format.h:225
vlib_node_function_t * dispatch_wrapper_fn
Definition: main.h:137
#define VLIB_PROCESS_RESUME_LONGJMP_RESUME
Definition: node.h:549
int cJSON_bool fmt
Definition: cJSON.h:160
static u32 counter_index(vlib_main_t *vm, vlib_error_t e)
Definition: drop.c:67
static void vlib_node_increment_counter(vlib_main_t *vm, u32 node_index, u32 counter_index, u64 increment)
Definition: node_funcs.h:1244
#define pool_get_aligned(P, E, A)
Allocate an object E from a pool P with alignment A.
Definition: pool.h:249
static uword vlib_process_get_events_with_type(vlib_main_t *vm, uword **data_vector, uword with_type_opaque)
Definition: node_funcs.h:638
#define VLIB_FRAME_VECTOR_ALIGN
Definition: node_funcs.h:287
u8 slot
Definition: pci_types.api:22
u64 * counters
Definition: error.h:64
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:1114
static void vlib_process_signal_event_pointer(vlib_main_t *vm, uword node_index, uword type_opaque, void *data)
Definition: node_funcs.h:1028
u8 inline_event_data[64 - 3 *sizeof(u32) - 2 *sizeof(u16)]
Definition: node.h:626
static void * vlib_process_signal_event_at_time(vlib_main_t *vm, f64 dt, uword node_index, uword type_opaque, uword n_data_elts, uword n_data_elt_bytes)
Definition: node_funcs.h:942
u32 runtime_index
Definition: node.h:273
uword vlib_node_add_named_next_with_slot(vlib_main_t *vm, uword node, char *next_name, uword slot)
Definition: node.c:244
static_always_inline uword vlib_get_thread_index(void)
Definition: threads.h:208
static vlib_process_t * vlib_get_current_process(vlib_main_t *vm)
Definition: node_funcs.h:448
#define VLIB_PROCESS_RESUME_LONGJMP_SUSPEND
Definition: node.h:548
static uword vlib_process_wait_for_one_time_event(vlib_main_t *vm, uword **data_vector, uword with_type_index)
Definition: node_funcs.h:686
sll srl srl sll sra u16x4 i
Definition: vector_sse42.h:261
#define vec_free(V)
Free vector&#39;s memory (no header).
Definition: vec.h:395
static void vlib_process_signal_event_mt(vlib_main_t *vm, uword node_index, uword type_opaque, uword data)
Signal event to process from any thread.
Definition: node_funcs.h:1043
__clib_export int TW() tw_timer_handle_is_free(TWT(tw_timer_wheel) *tw, u32 handle)
#define VLIB_PROCESS_RESUME_PENDING
Definition: node.h:555
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:116
static uword vlib_process_create_one_time_event(vlib_main_t *vm, uword node_index, uword with_type_opaque)
Definition: node_funcs.h:799
uword vlib_node_add_next_with_slot(vlib_main_t *vm, uword node, uword next_node, uword slot)
Definition: node.c:173
static void * vlib_frame_scalar_args(vlib_frame_t *f)
Get pointer to frame scalar data.
Definition: node_funcs.h:315
#define pool_is_free_index(P, I)
Use free bitmap to query whether given index is free.
Definition: pool.h:302
static u32 vlib_frame_vector_byte_offset(u32 scalar_size)
Definition: node_funcs.h:290
#define ARRAY_LEN(x)
Definition: clib.h:70
static uword clib_bitmap_get(uword *ai, uword i)
Gets the ith bit value from a bitmap.
Definition: bitmap.h:197
static uword round_pow2(uword x, uword pow2)
Definition: clib.h:279
uword * one_time_event_type_bitmap
Definition: node.h:575
static int vlib_node_set_dispatch_wrapper(vlib_main_t *vm, vlib_node_function_t *fn)
Definition: node_funcs.h:1264
static u32 vlib_node_vectors_per_main_loop_as_integer(vlib_main_t *vm, u32 node_index)
Definition: node_funcs.h:1154
static void vlib_node_set_flag(vlib_main_t *vm, u32 node_index, u16 flag, u8 enable)
Definition: node_funcs.h:228
static void vlib_node_runtime_perf_counter(vlib_main_t *vm, vlib_node_runtime_t *node, vlib_frame_t *frame, uword n, u64 t, vlib_node_runtime_perf_call_type_t call_type)
Definition: main.h:433
void vlib_start_process(vlib_main_t *vm, uword process_index)
Definition: main.c:1416
#define pool_put_index(p, i)
Free pool element with given index.
Definition: pool.h:337
#define ASSERT(truth)
static uword vlib_process_get_events_helper(vlib_process_t *p, uword t, uword **data_vector)
Definition: node_funcs.h:617
__clib_export u32 TW() tw_timer_start(TWT(tw_timer_wheel) *tw, u32 user_id, u32 timer_id, u64 interval)
Start a Tw Timer.
#define always_inline
Definition: rdma_mlx5dv.h:23
uword() vlib_node_function_t(struct vlib_main_t *vm, struct vlib_node_runtime_t *node, struct vlib_frame_t *frame)
Definition: node.h:54
void * interrupts
Definition: node.h:682
static_always_inline void vlib_process_finish_switch_stack(vlib_main_t *vm)
Definition: node_funcs.h:67
static void vlib_node_set_state(vlib_main_t *vm, u32 node_index, vlib_node_state_t new_state)
Set node dispatch state.
Definition: node_funcs.h:175
static_always_inline void * clib_memcpy_fast(void *restrict dst, const void *restrict src, size_t n)
Definition: string.h:92
nat44_ei_hairpin_src_next_t next_index
vlib_frame_t * vlib_get_next_frame_internal(vlib_main_t *vm, vlib_node_runtime_t *node, u32 next_index, u32 alloc_new_frame)
Definition: main.c:384
static vlib_main_t * vlib_get_main(void)
Definition: global_funcs.h:38
void vlib_node_runtime_sync_stats_node(vlib_node_t *n, vlib_node_runtime_t *r, uword n_calls, uword n_vectors, uword n_clocks)
Definition: main.c:574
int vlib_node_set_march_variant(vlib_main_t *vm, u32 node_index, clib_march_variant_type_t march_variant)
Definition: node.c:823
static uword is_pow2(uword x)
Definition: clib.h:267
static void vlib_current_process_wait_for_one_time_event_vector(vlib_main_t *vm, vlib_one_time_waiting_process_t **wps)
Definition: node_funcs.h:1104
#define vec_elt(v, i)
Get vector value at index i.
struct _vlib_node_registration vlib_node_registration_t
void vlib_node_sync_stats(vlib_main_t *vm, vlib_node_t *n)
Definition: main.c:610
void vlib_put_next_frame(vlib_main_t *vm, vlib_node_runtime_t *r, u32 next_index, u32 n_packets_left)
Release pointer to next frame vector data.
Definition: main.c:488
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:99
static u32 vlib_get_current_process_node_index(vlib_main_t *vm)
Definition: node_funcs.h:463
static void * vlib_process_get_event_data(vlib_main_t *vm, uword *return_event_type_opaque)
Definition: node_funcs.h:530
vlib_process_event_type_t * event_type_pool
Definition: node.h:582
u32 * data_from_advancing_timing_wheel
Definition: node.h:703
#define vec_len(v)
Number of elements in vector (rvalue-only, NULL tolerant)
void vlib_rpc_call_main_thread(void *callback, u8 *args, u32 arg_size)
Definition: threads.c:1637
u32 input_node_counts_by_state[VLIB_N_NODE_STATE]
Definition: node.h:722
vlib_main_t vlib_node_runtime_t * node
Definition: nat44_ei.c:3047
vlib_node_main_t node_main
Definition: main.h:171
static uword vlib_process_wait_for_event_with_type(vlib_main_t *vm, uword **data_vector, uword with_type_opaque)
Definition: node_funcs.h:715
u64 uword
Definition: types.h:112
format_function_t format_vlib_time
Definition: node_funcs.h:1239
vlib_next_frame_t * next_frames
Definition: node.h:692
static u32 vlib_timing_wheel_data_set_timed_event(u32 i)
Definition: node.h:647
static void * vlib_frame_vector_args(vlib_frame_t *f)
Get pointer to frame vector data.
Definition: node_funcs.h:301
static_always_inline void clib_interrupt_set_atomic(void *in, int int_num)
Definition: interrupt.h:78
node node_index
u32 stop_timer_handle
Definition: node.h:591
uword * event_type_index_by_type_opaque
Definition: node.h:579
#define VLIB_THREAD_STACK_SIZE
Definition: threads.h:65
unformat_function_t unformat_vlib_node
Definition: node_funcs.h:1241
u64 resume_clock_interval
Definition: node.h:588
u16 flags
Definition: node.h:551
static uword vlib_in_process_context(vlib_main_t *vm)
Definition: node_funcs.h:442
vlib_node_type_t type
Definition: node.h:267
static vlib_process_t * vlib_get_process_from_node(vlib_main_t *vm, vlib_node_t *node)
Definition: node_funcs.h:265
vlib_node_state_t
Definition: node.h:240
nat44_ei_main_t * nm
static void vlib_process_put_event_data(vlib_main_t *vm, void *event_data)
Definition: node_funcs.h:567
u32 * stack
Definition: node.h:600
void vlib_register_all_static_nodes(vlib_main_t *vm)
Definition: node.c:573
static vlib_node_t * vlib_get_node(vlib_main_t *vm, u32 i)
Get vlib node by index.
Definition: node_funcs.h:86
#define VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_EVENT
Definition: node.h:553
#define vec_foreach(var, vec)
Vector iterator.
clib_longjmp_t return_longjmp
Definition: node.h:541
u16 flags
Copy of main node flags.
Definition: node.h:492
u32 node_runtime_index
Definition: node.h:400
static void vlib_frame_no_append(vlib_frame_t *f)
Definition: node_funcs.h:281
u8 scalar_size
Definition: node.h:382
clib_longjmp_t resume_longjmp
Definition: node.h:547
#define TW(a)
u8 ** vlib_thread_stacks
Definition: main.c:659
static u32 vlib_timing_wheel_data_set_suspended_process(u32 i)
Definition: node.h:641
void * timing_wheel
Definition: node.h:698
void vlib_node_runtime_sync_stats(vlib_main_t *vm, vlib_node_runtime_t *r, uword n_calls, uword n_vectors, uword n_clocks)
Definition: main.c:590
vlib_frame_t * vlib_get_frame_to_node(vlib_main_t *vm, u32 to_node_index)
Definition: main.c:184
u8 runtime_data_bytes
Definition: node.h:303
format_function_t format_vlib_node_graph
Definition: node_funcs.h:1234
static void vlib_current_process_wait_for_one_time_event(vlib_main_t *vm, vlib_one_time_waiting_process_t *p)
Definition: node_funcs.h:1091
uword * non_empty_event_type_bitmap
Definition: node.h:572
static void * vlib_process_signal_one_time_event_data(vlib_main_t *vm, uword node_index, uword type_index, uword n_data_elts, uword n_data_elt_bytes)
Definition: node_funcs.h:1005
#define VLIB_PROCESS_RETURN_LONGJMP_SUSPEND
Definition: node.h:544
void vlib_node_get_nodes(vlib_main_t *vm, u32 max_threads, int include_stats, int barrier_sync, vlib_node_t ****node_dupsp, vlib_main_t ***stat_vmsp)
Get list of nodes.
Definition: node.c:603