FD.io VPP  v21.10.1-2-g0a485f517
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 {
102  vlib_node_t *n;
103 
104  n = vec_elt (nm->nodes, node_index);
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 {
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 {
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 {
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)
165  clib_memcpy_fast (r->runtime_data, n->runtime_data,
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 {
179  vlib_node_t *n;
181 
182  n = vec_elt (nm->nodes, node_index);
183  if (n->type == VLIB_NODE_TYPE_PROCESS)
184  {
185  vlib_process_t *p = vec_elt (nm->processes, n->runtime_index);
186  r = &p->node_runtime;
187 
188  /* When disabling make sure flags are cleared. */
192  }
193  else
194  r = vec_elt_at_index (nm->nodes_by_type[n->type], n->runtime_index);
195 
196  ASSERT (new_state < VLIB_N_NODE_STATE);
197 
198  if (n->type == VLIB_NODE_TYPE_INPUT)
199  {
200  ASSERT (nm->input_node_counts_by_state[n->state] > 0);
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))
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 {
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);
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 {
252  vlib_node_t *n = vec_elt (nm->nodes, node_index);
253 
255 
256  if (vm != vlib_get_main ())
257  clib_interrupt_set_atomic (nm->interrupts, n->runtime_index);
258  else
259  clib_interrupt_set (nm->interrupts, n->runtime_index);
260 
261  __atomic_store_n (nm->pending_interrupts, 1, __ATOMIC_RELEASE);
262 }
263 
266 {
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 {
318 }
319 
323 {
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 {
359  vlib_node_t *n;
361 
362  n = vec_elt (nm->nodes, node_index);
363  r = vec_elt_at_index (nm->nodes_by_type[n->type], n->runtime_index);
365 }
366 
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
430  u32 next_index, u32 buffer_index)
431 {
432  u32 *p;
434  p[0] = buffer_index;
435 }
436 
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 {
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;
490  vlib_process_t *p = vec_elt (nm->processes, nm->current_process_index);
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 {
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
568 {
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 {
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 {
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 {
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 {
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 {
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 {
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 {
804  vlib_process_t *p = vec_elt (nm->processes, n->runtime_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 {
821  vlib_process_t *p = vec_elt (nm->processes, n->runtime_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_reset_length (data_vec);
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;
903  vec_add1 (nm->data_from_advancing_timing_wheel, x);
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 {
920  vlib_process_t *p = vec_elt (nm->processes, n->runtime_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 {
950  vlib_process_t *p = vec_elt (nm->processes, n->runtime_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 {
1013  vlib_process_t *p = vec_elt (nm->processes, n->runtime_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 =
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 {
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 
1116  uword n_vectors)
1117 {
1118  u32 i, d, vi0, vi1;
1119  u32 i0, i1;
1120 
1121  ASSERT (is_pow2 (ARRAY_LEN (node->main_loop_vector_stats)));
1123  & (ARRAY_LEN (node->main_loop_vector_stats) - 1));
1124  i0 = i ^ 0;
1125  i1 = i ^ 1;
1127  -
1128  (node->main_loop_count_last_dispatch >>
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;
1137  node->main_loop_count_last_dispatch = vm->main_loop_count;
1138  /* Return previous counter. */
1139  return node->main_loop_vector_stats[i1];
1140 }
1141 
1144 {
1146  u32 v;
1147 
1149  0);
1150  return (f64) v / (1 << VLIB_LOG2_MAIN_LOOPS_PER_STATS_UPDATE);
1151 }
1152 
1155 {
1157  u32 v;
1158 
1160  0);
1162 }
1163 
1164 void
1166 
1167 /* Return the edge index if present, ~0 otherwise */
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 {
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 {
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  */
vlib_process_signal_event_mt
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
vec_reset_length
#define vec_reset_length(v)
Reset vector length to zero NULL-pointer tolerant.
Definition: vec_bootstrap.h:194
vlib_process_t::flags
u16 flags
Definition: node.h:550
vlib_get_frame
static vlib_frame_t * vlib_get_frame(vlib_main_t *vm, vlib_frame_t *f)
Definition: node_funcs.h:273
format_vlib_node_graph
format_function_t format_vlib_node_graph
Definition: node_funcs.h:1234
vlib_node_main_t::current_process_index
u32 current_process_index
Definition: node.h:712
vlib_error_main_t
Definition: error.h:61
vlib_in_process_context
static uword vlib_in_process_context(vlib_main_t *vm)
Definition: node_funcs.h:442
vlib_process_signal_event_mt_helper
void vlib_process_signal_event_mt_helper(vlib_process_signal_event_mt_args_t *args)
Definition: threads.c:1605
vlib_node_fn_registration_t
struct _vlib_node_fn_registration vlib_node_fn_registration_t
VLIB_PROCESS_RESUME_PENDING
#define VLIB_PROCESS_RESUME_PENDING
Definition: node.h:554
vlib_register_all_static_nodes
void vlib_register_all_static_nodes(vlib_main_t *vm)
Definition: node.c:573
vlib_put_frame_to_node
void vlib_put_frame_to_node(vlib_main_t *vm, u32 to_node_index, vlib_frame_t *f)
Definition: main.c:218
vlib_one_time_waiting_process_t::node_index
u32 node_index
Definition: node.h:604
vec_add
#define vec_add(V, E, N)
Add N elements to end of vector V (no header, unspecified alignment)
Definition: vec.h:688
hash_set
#define hash_set(h, key, value)
Definition: hash.h:255
vlib_process_t::non_empty_event_type_bitmap
uword * non_empty_event_type_bitmap
Definition: node.h:571
vlib_node_get_runtime_data
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
vlib_main_t::main_loop_count
volatile u32 main_loop_count
Definition: main.h:118
vlib_node_add_next
static uword vlib_node_add_next(vlib_main_t *vm, uword node, uword next_node)
Definition: node_funcs.h:1177
vlib_start_process
void vlib_start_process(vlib_main_t *vm, uword process_index)
Definition: main.c:1416
vlib_process_new_event_type
static vlib_process_event_type_t * vlib_process_new_event_type(vlib_process_t *p, uword with_type_opaque)
Definition: node_funcs.h:790
next_index
nat44_ei_hairpin_src_next_t next_index
Definition: nat44_ei_hairpinning.c:412
tw_timer_stop
__clib_export void TW() tw_timer_stop(TWT(tw_timer_wheel) *tw, u32 handle)
Stop a tw timer.
Definition: tw_timer_template.c:352
vlib_signal_timed_event_data_t::n_data_elt_bytes
u16 n_data_elt_bytes
Definition: node.h:613
vlib_node_get_next
uword vlib_node_get_next(vlib_main_t *vm, uword node, uword next_node)
Definition: node.c:152
vlib_process_finish_switch_stack
static_always_inline void vlib_process_finish_switch_stack(vlib_main_t *vm)
Definition: node_funcs.h:67
vlib_process_wait_for_event
static uword * vlib_process_wait_for_event(vlib_main_t *vm)
Definition: node_funcs.h:660
f
vlib_frame_t * f
Definition: interface_output.c:1098
vlib_node_set_state
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
pool_elt_at_index
#define pool_elt_at_index(p, i)
Returns pointer to element at given index.
Definition: pool.h:549
vlib_process_get_events_with_type
static uword vlib_process_get_events_with_type(vlib_main_t *vm, uword **data_vector, uword with_type_opaque)
Definition: node_funcs.h:638
name
string name[64]
Definition: fib.api:25
vlib_get_next_frame_internal
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
pool_get_aligned
#define pool_get_aligned(P, E, A)
Allocate an object E from a pool P with alignment A.
Definition: pool.h:249
next
u16 * next
Definition: nat44_ei_out2in.c:718
vlib_node_set_march_variant
int vlib_node_set_march_variant(vlib_main_t *vm, u32 node_index, clib_march_variant_type_t march_variant)
Definition: node.c:823
vlib_main_t::dispatch_wrapper_fn
vlib_node_function_t * dispatch_wrapper_fn
Definition: main.h:137
vlib_node_set_runtime_data
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
node
vlib_main_t vlib_node_runtime_t * node
Definition: nat44_ei.c:3047
clib_bitmap_first_set
static uword clib_bitmap_first_set(uword *ai)
Return the lowest numbered set bit in a bitmap.
Definition: bitmap.h:372
format_vlib_cpu_time
format_function_t format_vlib_cpu_time
Definition: node_funcs.h:1238
vlib_node_runtime_update_main_loop_vector_stats
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
vlib_node_runtime_sync_stats_node
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
clib_setjmp
uword clib_setjmp(clib_longjmp_t *save, uword return_value_not_taken)
VLIB_NODE_TYPE_INPUT
@ VLIB_NODE_TYPE_INPUT
Definition: node.h:76
vlib_process_event_type_t::opaque
uword opaque
Definition: node.h:530
vlib_node_t::flags
u16 flags
Definition: node.h:278
vlib_process_create_one_time_event
static uword vlib_process_create_one_time_event(vlib_main_t *vm, uword node_index, uword with_type_opaque)
Definition: node_funcs.h:799
VLIB_PROCESS_RESUME_LONGJMP_RESUME
#define VLIB_PROCESS_RESUME_LONGJMP_RESUME
Definition: node.h:548
vlib_main_t::error_main
vlib_error_main_t error_main
Definition: main.h:179
u16
unsigned short u16
Definition: types.h:57
vlib_main_t::node_main
vlib_node_main_t node_main
Definition: main.h:173
vlib_signal_one_time_waiting_process
static void vlib_signal_one_time_waiting_process(vlib_main_t *vm, vlib_one_time_waiting_process_t *p)
Definition: node_funcs.h:1072
vlib_node_runtime_t::next_frame_index
u32 next_frame_index
Start of next frames for this node.
Definition: node.h:475
vlib_process_wait_for_event_with_type
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
vm
vlib_main_t * vm
X-connect all packets from the HOST to the PHY.
Definition: nat44_ei.c:3047
counter_index
static u32 counter_index(vlib_main_t *vm, vlib_error_t e)
Definition: drop.c:67
vlib_node_t::state
u8 state
Definition: node.h:299
fifo.h
node_index
node node_index
Definition: interface_output.c:440
vlib_process_t::node_runtime
vlib_node_runtime_t node_runtime
Definition: node.h:537
vlib_node_vectors_per_main_loop_as_integer
static u32 vlib_node_vectors_per_main_loop_as_integer(vlib_main_t *vm, u32 node_index)
Definition: node_funcs.h:1154
clib_interrupt_set_atomic
static_always_inline void clib_interrupt_set_atomic(void *in, int int_num)
Definition: interrupt.h:78
vlib_current_process
static uword vlib_current_process(vlib_main_t *vm)
Definition: node_funcs.h:457
vlib_node_main_init
clib_error_t * vlib_node_main_init(vlib_main_t *vm)
Definition: node.c:665
vlib_signal_timed_event_data_t::inline_event_data
u8 inline_event_data[64 - 3 *sizeof(u32) - 2 *sizeof(u16)]
Definition: node.h:625
vlib_frame_t::frame_flags
u16 frame_flags
Definition: node.h:375
vlib_process_signal_event_helper
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
vlib_node_function_t
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
r
vnet_hw_if_output_node_runtime_t * r
Definition: interface_output.c:1089
VLIB_NODE_RUNTIME_PERF_RESET
@ VLIB_NODE_RUNTIME_PERF_RESET
Definition: main.h:70
vlib_register_node
u32 vlib_register_node(vlib_main_t *vm, vlib_node_registration_t *r)
Definition: node.c:519
vlib_frame_t
Definition: node.h:372
VLIB_PROCESS_RETURN_LONGJMP_SUSPEND
#define VLIB_PROCESS_RETURN_LONGJMP_SUSPEND
Definition: node.h:543
vlib_process_signal_event
static void vlib_process_signal_event(vlib_main_t *vm, uword node_index, uword type_opaque, uword data)
Definition: node_funcs.h:1019
clib_memcpy_fast
static_always_inline void * clib_memcpy_fast(void *restrict dst, const void *restrict src, size_t n)
Definition: string.h:92
pool_put_index
#define pool_put_index(p, i)
Free pool element with given index.
Definition: pool.h:337
vlib_process_get_events_helper
static uword vlib_process_get_events_helper(vlib_process_t *p, uword t, uword **data_vector)
Definition: node_funcs.h:617
vlib_signal_timed_event_data_t::n_data_elts
u16 n_data_elts
Definition: node.h:611
h
h
Definition: flowhash_template.h:372
vlib_set_next_frame
#define vlib_set_next_frame(vm, node, next_index, v)
Definition: node_funcs.h:418
vlib_frame_no_append
static void vlib_frame_no_append(vlib_frame_t *f)
Definition: node_funcs.h:281
pool_is_free_index
#define pool_is_free_index(P, I)
Use free bitmap to query whether given index is free.
Definition: pool.h:302
vec_elt
#define vec_elt(v, i)
Get vector value at index i.
Definition: vec_bootstrap.h:210
clib_longjmp
void clib_longjmp(clib_longjmp_t *save, uword return_value)
round_pow2
static uword round_pow2(uword x, uword pow2)
Definition: clib.h:279
vlib_process_get_events
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
STRUCT_OFFSET_OF
#define STRUCT_OFFSET_OF(t, f)
Definition: clib.h:73
regs
static vnet_feature_upd_registration_t * regs
Definition: feature.c:26
format_vlib_node_and_next
format_function_t format_vlib_node_and_next
Definition: node_funcs.h:1237
vec_len
#define vec_len(v)
Number of elements in vector (rvalue-only, NULL tolerant)
Definition: vec_bootstrap.h:142
vlib_get_current_process_node_index
static u32 vlib_get_current_process_node_index(vlib_main_t *vm)
Definition: node_funcs.h:463
VLIB_PROCESS_RESUME_LONGJMP_SUSPEND
#define VLIB_PROCESS_RESUME_LONGJMP_SUSPEND
Definition: node.h:547
clib_bitmap_get
static uword clib_bitmap_get(uword *ai, uword i)
Gets the ith bit value from a bitmap.
Definition: bitmap.h:197
vlib_error_main_t::counters
u64 * counters
Definition: error.h:64
slot
u8 slot
Definition: pci_types.api:22
vec_add2
#define vec_add2(V, P, N)
Add N elements to end of vector V, return pointer to new elements in P.
Definition: vec.h:644
vlib_process_signal_one_time_event_data
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
vec_add1
#define vec_add1(V, E)
Add 1 element to end of vector (unspecified alignment).
Definition: vec.h:606
vlib_process_get_event_data
static void * vlib_process_get_event_data(vlib_main_t *vm, uword *return_event_type_opaque)
Definition: node_funcs.h:530
vlib_process_signal_event_pointer
static void vlib_process_signal_event_pointer(vlib_main_t *vm, uword node_index, uword type_opaque, void *data)
Definition: node_funcs.h:1028
vlib_process_event_type_t
Definition: node.h:527
format_vlib_time
format_function_t format_vlib_time
Definition: node_funcs.h:1239
vec_elt_at_index
#define vec_elt_at_index(v, i)
Get vector value at index i checking that i is in bounds.
Definition: vec_bootstrap.h:203
interrupt.h
vlib_node_get_nodes
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
vlib_process_maybe_free_event_type
static void vlib_process_maybe_free_event_type(vlib_process_t *p, uword t)
Definition: node_funcs.h:522
PREDICT_FALSE
#define PREDICT_FALSE(x)
Definition: clib.h:124
vlib_get_thread_index
static_always_inline uword vlib_get_thread_index(void)
Definition: threads.h:187
hash_get
#define hash_get(h, key)
Definition: hash.h:249
ARRAY_LEN
#define ARRAY_LEN(x)
Definition: clib.h:70
vlib_timing_wheel_data_set_timed_event
static u32 vlib_timing_wheel_data_set_timed_event(u32 i)
Definition: node.h:646
vlib_frame_vector_args
static void * vlib_frame_vector_args(vlib_frame_t *f)
Get pointer to frame vector data.
Definition: node_funcs.h:301
unformat_vlib_node
unformat_function_t unformat_vlib_node
Definition: node_funcs.h:1241
vlib_signal_one_time_waiting_process_vector
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
static_always_inline
#define static_always_inline
Definition: clib.h:112
vlib_signal_timed_event_data_t::process_node_index
u32 process_node_index
Definition: node.h:619
vlib_get_process_from_node
static vlib_process_t * vlib_get_process_from_node(vlib_main_t *vm, vlib_node_t *node)
Definition: node_funcs.h:265
VLIB_FRAME_IS_ALLOCATED
#define VLIB_FRAME_IS_ALLOCATED
Definition: node.h:416
vlib_timing_wheel_data_set_suspended_process
static u32 vlib_timing_wheel_data_set_suspended_process(u32 i)
Definition: node.h:640
uword
u64 uword
Definition: types.h:112
VLIB_N_NODE_STATE
@ VLIB_N_NODE_STATE
Definition: node.h:244
vlib_frame_vector_byte_offset
static u32 vlib_frame_vector_byte_offset(u32 scalar_size)
Definition: node_funcs.h:290
clib_interrupt_set
static_always_inline void clib_interrupt_set(void *in, int int_num)
Definition: interrupt.h:66
vlib_signal_timed_event_data_t::event_type_index
u32 event_type_index
Definition: node.h:621
vlib_node_state_t
vlib_node_state_t
Definition: node.h:239
vlib_main_t::thread_index
u32 thread_index
Definition: main.h:215
vlib_node_increment_counter
static void vlib_node_increment_counter(vlib_main_t *vm, u32 node_index, u32 counter_index, u64 increment)
Definition: node_funcs.h:1244
vlib_process_t::log2_n_stack_bytes
u16 log2_n_stack_bytes
Definition: node.h:560
vlib_get_node
static vlib_node_t * vlib_get_node(vlib_main_t *vm, u32 i)
Get vlib node by index.
Definition: node_funcs.h:86
vlib_node_set_flag
static void vlib_node_set_flag(vlib_main_t *vm, u32 node_index, u16 flag, u8 enable)
Definition: node_funcs.h:228
f64
double f64
Definition: types.h:142
format_vlib_next_node_name
format_function_t format_vlib_next_node_name
Definition: node_funcs.h:1236
vlib_process_signal_event_data
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
vlib_process_start_switch_stack
static_always_inline void vlib_process_start_switch_stack(vlib_main_t *vm, vlib_process_t *p)
Definition: node_funcs.h:57
pool_get
#define pool_get(P, E)
Allocate an object E from a pool P (unspecified alignment).
Definition: pool.h:255
TWT
#define TWT(a)
Definition: tw_timer_template.h:27
vec_validate
#define vec_validate(V, I)
Make sure vector is long enough for given index (no header, unspecified alignment)
Definition: vec.h:523
vlib_node_t::type
vlib_node_type_t type
Definition: node.h:266
vlib_process_signal_event_mt_args_t::node_index
uword node_index
Definition: threads.h:147
vlib_get_node_by_name
vlib_node_t * vlib_get_node_by_name(vlib_main_t *vm, u8 *name)
Definition: node.c:45
vlib_node_t::runtime_data
void * runtime_data
Definition: node.h:275
vec_pop
#define vec_pop(V)
Returns last element of a vector and decrements its length.
Definition: vec.h:705
fmt
int cJSON_bool fmt
Definition: cJSON.h:160
vlib_node_registration_t
struct _vlib_node_registration vlib_node_registration_t
vlib_current_process_wait_for_one_time_event
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
vlib_frame_scalar_args
static void * vlib_frame_scalar_args(vlib_frame_t *f)
Get pointer to frame scalar data.
Definition: node_funcs.h:315
data
u8 data[128]
Definition: ipsec_types.api:95
vlib_node_set_dispatch_wrapper
static int vlib_node_set_dispatch_wrapper(vlib_main_t *vm, vlib_node_function_t *fn)
Definition: node_funcs.h:1264
vlib_node_get_preferred_node_fn_variant
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
format_function_t
u8 *() format_function_t(u8 *s, va_list *args)
Definition: format.h:48
vlib_node_sync_stats
void vlib_node_sync_stats(vlib_main_t *vm, vlib_node_t *n)
Definition: main.c:610
vlib_put_next_frame
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
vlib_get_next_node
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
vec_free
#define vec_free(V)
Free vector's memory (no header).
Definition: vec.h:395
vlib_process_signal_one_time_event
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
vlib_node_runtime_t::node_index
u32 node_index
Node index.
Definition: node.h:478
always_inline
#define always_inline
Definition: rdma_mlx5dv.h:23
tw_timer_start
__clib_export u32 TW() tw_timer_start(TWT(tw_timer_wheel) *tw, u32 user_id, u32 timer_id, u64 interval)
Start a Tw Timer.
Definition: tw_timer_template.c:296
format_vlib_node_name
format_function_t format_vlib_node_name
Definition: node_funcs.h:1235
vlib_node_vectors_per_main_loop_as_float
static f64 vlib_node_vectors_per_main_loop_as_float(vlib_main_t *vm, u32 node_index)
Definition: node_funcs.h:1143
vlib_node_add_next_with_slot
uword vlib_node_add_next_with_slot(vlib_main_t *vm, uword node, uword next_node, uword slot)
Definition: node.c:173
vlib_node_get_next_frame
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
vlib_frame_t::scalar_size
u8 scalar_size
Definition: node.h:381
u64
unsigned long u64
Definition: types.h:89
clib_march_variant_type_t
clib_march_variant_type_t
Definition: cpu.h:39
vlib_process_wait_for_event_or_clock
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
ASSERT
#define ASSERT(truth)
Definition: error_bootstrap.h:69
VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_EVENT
#define VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_EVENT
Definition: node.h:552
VLIB_THREAD_STACK_SIZE
#define VLIB_THREAD_STACK_SIZE
Definition: threads.h:65
vlib_process_suspend
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
vlib_set_next_frame_buffer
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
u32
unsigned int u32
Definition: types.h:88
vlib_process_t::one_time_event_type_bitmap
uword * one_time_event_type_bitmap
Definition: node.h:574
vlib_next_frame_t::node_runtime_index
u32 node_runtime_index
Definition: node.h:399
vlib_node_set_interrupt_pending
static void vlib_node_set_interrupt_pending(vlib_main_t *vm, u32 node_index)
Definition: node_funcs.h:249
VLIB_FRAME_NO_APPEND
#define VLIB_FRAME_NO_APPEND
Definition: node.h:409
vlib_one_time_waiting_process_t::one_time_event
u32 one_time_event
Definition: node.h:606
vlib_node_t::runtime_data_bytes
u8 runtime_data_bytes
Definition: node.h:302
vlib_process_put_event_data
static void vlib_process_put_event_data(vlib_main_t *vm, void *event_data)
Definition: node_funcs.h:567
vlib_get_current_process
static vlib_process_t * vlib_get_current_process(vlib_main_t *vm)
Definition: node_funcs.h:448
vec_foreach
#define vec_foreach(var, vec)
Vector iterator.
Definition: vec_bootstrap.h:213
vlib_signal_timed_event_data_t::event_data_as_vector
u8 * event_data_as_vector
Definition: node.h:628
vlib_node_add_named_next
static uword vlib_node_add_named_next(vlib_main_t *vm, uword node, char *name)
Definition: node_funcs.h:1189
vlib_process_wait_for_one_time_event
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
VLIB_NODE_TYPE_PROCESS
@ VLIB_NODE_TYPE_PROCESS
Definition: node.h:84
unformat_function_t
uword() unformat_function_t(unformat_input_t *input, va_list *args)
Definition: format.h:225
n_vectors
return frame n_vectors
Definition: nat44_ei_hairpinning.c:488
VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_CLOCK
#define VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_CLOCK
Definition: node.h:551
vlib_rpc_call_main_thread
void vlib_rpc_call_main_thread(void *callback, u8 *args, u32 arg_size)
Definition: threads.c:1616
vlib_process_t::event_type_pool
vlib_process_event_type_t * event_type_pool
Definition: node.h:581
nm
nat44_ei_main_t * nm
Definition: nat44_ei_hairpinning.c:413
tw_timer_handle_is_free
__clib_export int TW() tw_timer_handle_is_free(TWT(tw_timer_wheel) *tw, u32 handle)
Definition: tw_timer_template.c:380
vlib_node_get_runtime
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
vec_resize
#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
vlib_thread_stacks
u8 ** vlib_thread_stacks
Definition: main.c:659
vlib_process_delete_one_time_event
static void vlib_process_delete_one_time_event(vlib_main_t *vm, uword node_index, uword t)
Definition: node_funcs.h:816
clib_memset
clib_memset(h->entries, 0, sizeof(h->entries[0]) *entries)
vlib_main_t
Definition: main.h:102
tw_timer_1t_3w_1024sl_ov.h
vlib_node_t
Definition: node.h:247
vlib_current_process_wait_for_one_time_event_vector
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
vlib_node_runtime_sync_stats
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_get_main
static vlib_main_t * vlib_get_main(void)
Definition: global_funcs.h:38
u8
unsigned char u8
Definition: types.h:56
clib_error_t
Definition: clib_error.h:21
rt
vnet_interface_output_runtime_t * rt
Definition: interface_output.c:419
vlib_process_t::resume_clock_interval
u64 resume_clock_interval
Definition: node.h:587
vlib_process_t
Definition: node.h:533
i
int i
Definition: flowhash_template.h:376
vlib_node_t::error_heap_index
u32 error_heap_index
Definition: node.h:315
vlib_one_time_waiting_process_t
Definition: node.h:602
vlib_signal_timed_event_data_t::n_data_bytes
u32 n_data_bytes
Definition: node.h:616
vlib_process_suspend_time_is_zero
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
vlib_node_t::next_nodes
u32 * next_nodes
Definition: node.h:325
vlib_process_t::resume_longjmp
clib_longjmp_t resume_longjmp
Definition: node.h:546
vlib_process_free_event_type
static void vlib_process_free_event_type(vlib_process_t *p, uword t, uword is_one_time_event)
Definition: node_funcs.h:511
vlib_node_rename
void vlib_node_rename(vlib_main_t *vm, u32 node_index, char *fmt,...)
Definition: node.c:76
TW
#define TW(a)
Definition: tw_timer_template.h:31
vlib_time_now
static f64 vlib_time_now(vlib_main_t *vm)
Definition: main.h:327
vlib_node_main_t
Definition: node.h:665
vlib_process_t::event_type_index_by_type_opaque
uword * event_type_index_by_type_opaque
Definition: node.h:578
vlib_node_runtime_t
Definition: node.h:454
vlib_next_frame_t
Definition: node.h:393
vlib_node_main_t::nodes
vlib_node_t ** nodes
Definition: node.h:668
vlib_node_t::runtime_index
u32 runtime_index
Definition: node.h:272
is_pow2
static uword is_pow2(uword x)
Definition: clib.h:267
vlib_process_signal_event_mt_args_t
Definition: threads.h:145
vlib_process_t::return_longjmp
clib_longjmp_t return_longjmp
Definition: node.h:540
vlib_process_t::stack
u32 * stack
Definition: node.h:599
VLIB_LOG2_MAIN_LOOPS_PER_STATS_UPDATE
#define VLIB_LOG2_MAIN_LOOPS_PER_STATS_UPDATE
Definition: main.h:140
vlib_register_all_node_march_variants
void vlib_register_all_node_march_variants(vlib_main_t *vm)
Definition: node.c:539
VLIB_FRAME_VECTOR_ALIGN
#define VLIB_FRAME_VECTOR_ALIGN
Definition: node_funcs.h:287
clib_bitmap_is_zero
static uword clib_bitmap_is_zero(uword *ai)
predicate function; is an entire bitmap empty?
Definition: bitmap.h:57
vlib_node_runtime_get_next_frame
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
vlib_node_runtime_perf_counter
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:437
vlib_frame_free
void vlib_frame_free(vlib_main_t *vm, vlib_node_runtime_t *r, vlib_frame_t *f)
Definition: main.c:242
vlib_process_create
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
vlib_process_t::pending_event_data_by_type_index
void ** pending_event_data_by_type_index
Definition: node.h:568
vlib_process_t::stop_timer_handle
u32 stop_timer_handle
Definition: node.h:590
vlib_node_get_state
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
vlib_process_signal_event_at_time
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
vlib_node_add_named_next_with_slot
uword vlib_node_add_named_next_with_slot(vlib_main_t *vm, uword node, char *next_name, uword slot)
Definition: node.c:244
vlib_signal_timed_event_data_t
Definition: node.h:609
vlib_get_frame_to_node
vlib_frame_t * vlib_get_frame_to_node(vlib_main_t *vm, u32 to_node_index)
Definition: main.c:184