blob: 1beac33cf9b4b7e22f5a4ea476bfabd3c87dbb8c [file] [log] [blame]
Ed Warnickecb9cada2015-12-08 15:45:58 -07001/*
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
Dave Barach9b8ffd92016-07-08 08:13:45 -040040/** \file
Dave Barach9770e202016-07-06 10:29:27 -040041 vlib node functions
42*/
43
44
Ed Warnickecb9cada2015-12-08 15:45:58 -070045#ifndef included_vlib_node_funcs_h
46#define included_vlib_node_funcs_h
47
BenoƮt Ganne6531cf52022-09-30 17:13:33 +020048#include <vppinfra/clib.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070049#include <vppinfra/fifo.h>
Dave Barach5c20a012017-06-13 08:48:31 -040050#include <vppinfra/tw_timer_1t_3w_1024sl_ov.h>
Damjan Marion94100532020-11-06 23:25:57 +010051#include <vppinfra/interrupt.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070052
Damjan Marioncea46522020-05-21 16:47:05 +020053#ifdef CLIB_SANITIZE_ADDR
54#include <sanitizer/asan_interface.h>
55#endif
56
57static_always_inline void
58vlib_process_start_switch_stack (vlib_main_t * vm, vlib_process_t * p)
59{
60#ifdef CLIB_SANITIZE_ADDR
61 void *stack = p ? (void *) p->stack : vlib_thread_stacks[vm->thread_index];
Xiaoming Jiang4646cd42022-12-10 03:44:16 +000062 u32 stack_bytes =
63 p ? (1ULL < p->log2_n_stack_bytes) : VLIB_THREAD_STACK_SIZE;
Damjan Marioncea46522020-05-21 16:47:05 +020064 __sanitizer_start_switch_fiber (&vm->asan_stack_save, stack, stack_bytes);
65#endif
66}
67
68static_always_inline void
69vlib_process_finish_switch_stack (vlib_main_t * vm)
70{
71#ifdef CLIB_SANITIZE_ADDR
72 const void *bottom_old;
73 size_t size_old;
74
75 __sanitizer_finish_switch_fiber (&vm->asan_stack_save, &bottom_old,
76 &size_old);
77#endif
78}
79
Dave Barach9770e202016-07-06 10:29:27 -040080/** \brief Get vlib node by index.
81 @warning This function will ASSERT if @c i is out of range.
82 @param vm vlib_main_t pointer, varies by thread
83 @param i node index.
84 @return pointer to the requested vlib_node_t.
85*/
86
Ed Warnickecb9cada2015-12-08 15:45:58 -070087always_inline vlib_node_t *
88vlib_get_node (vlib_main_t * vm, u32 i)
Dave Barach9b8ffd92016-07-08 08:13:45 -040089{
90 return vec_elt (vm->node_main.nodes, i);
91}
Ed Warnickecb9cada2015-12-08 15:45:58 -070092
Dave Barach9770e202016-07-06 10:29:27 -040093/** \brief Get vlib node by graph arc (next) index.
94 @param vm vlib_main_t pointer, varies by thread
95 @param node_index index of original node
96 @param next_index graph arc index
97 @return pointer to the vlib_node_t at the end of the indicated arc
98*/
99
Ed Warnickecb9cada2015-12-08 15:45:58 -0700100always_inline vlib_node_t *
101vlib_get_next_node (vlib_main_t * vm, u32 node_index, u32 next_index)
102{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400103 vlib_node_main_t *nm = &vm->node_main;
104 vlib_node_t *n;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700105
106 n = vec_elt (nm->nodes, node_index);
107 ASSERT (next_index < vec_len (n->next_nodes));
108 return vlib_get_node (vm, n->next_nodes[next_index]);
109}
110
Dave Barach9770e202016-07-06 10:29:27 -0400111/** \brief Get node runtime by node index.
112 @param vm vlib_main_t pointer, varies by thread
113 @param node_index index of node
114 @return pointer to the indicated vlib_node_runtime_t
115*/
116
Ed Warnickecb9cada2015-12-08 15:45:58 -0700117always_inline vlib_node_runtime_t *
118vlib_node_get_runtime (vlib_main_t * vm, u32 node_index)
119{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400120 vlib_node_main_t *nm = &vm->node_main;
121 vlib_node_t *n = vec_elt (nm->nodes, node_index);
122 vlib_process_t *p;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700123 if (n->type != VLIB_NODE_TYPE_PROCESS)
124 return vec_elt_at_index (nm->nodes_by_type[n->type], n->runtime_index);
125 else
126 {
127 p = vec_elt (nm->processes, n->runtime_index);
128 return &p->node_runtime;
129 }
130}
131
Dave Barach9770e202016-07-06 10:29:27 -0400132/** \brief Get node runtime private data by node index.
133 @param vm vlib_main_t pointer, varies by thread
134 @param node_index index of the node
135 @return pointer to the indicated vlib_node_runtime_t private data
136*/
137
Ed Warnickecb9cada2015-12-08 15:45:58 -0700138always_inline void *
139vlib_node_get_runtime_data (vlib_main_t * vm, u32 node_index)
140{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400141 vlib_node_runtime_t *r = vlib_node_get_runtime (vm, node_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700142 return r->runtime_data;
143}
144
Dave Barach9770e202016-07-06 10:29:27 -0400145/** \brief Set node runtime private data.
146 @param vm vlib_main_t pointer, varies by thread
147 @param node_index index of the node
148 @param runtime_data arbitrary runtime private data
149 @param n_runtime_data_bytes size of runtime private data
150*/
151
Ed Warnickecb9cada2015-12-08 15:45:58 -0700152always_inline void
153vlib_node_set_runtime_data (vlib_main_t * vm, u32 node_index,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400154 void *runtime_data, u32 n_runtime_data_bytes)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700155{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400156 vlib_node_t *n = vlib_get_node (vm, node_index);
157 vlib_node_runtime_t *r = vlib_node_get_runtime (vm, node_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700158
159 n->runtime_data_bytes = n_runtime_data_bytes;
160 vec_free (n->runtime_data);
161 vec_add (n->runtime_data, runtime_data, n_runtime_data_bytes);
162
Damjan Marioneb90b7f2016-11-01 01:26:01 +0100163 ASSERT (vec_len (n->runtime_data) <= sizeof (vlib_node_runtime_t) -
164 STRUCT_OFFSET_OF (vlib_node_runtime_t, runtime_data));
165
Ed Warnickecb9cada2015-12-08 15:45:58 -0700166 if (vec_len (n->runtime_data) > 0)
Dave Barach178cf492018-11-13 16:34:13 -0500167 clib_memcpy_fast (r->runtime_data, n->runtime_data,
168 vec_len (n->runtime_data));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700169}
170
Dave Barach9770e202016-07-06 10:29:27 -0400171/** \brief Set node dispatch state.
172 @param vm vlib_main_t pointer, varies by thread
173 @param node_index index of the node
174 @param new_state new state for node, see vlib_node_state_t
175*/
Ed Warnickecb9cada2015-12-08 15:45:58 -0700176always_inline void
Dave Barach9b8ffd92016-07-08 08:13:45 -0400177vlib_node_set_state (vlib_main_t * vm, u32 node_index,
178 vlib_node_state_t new_state)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700179{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400180 vlib_node_main_t *nm = &vm->node_main;
181 vlib_node_t *n;
182 vlib_node_runtime_t *r;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700183
184 n = vec_elt (nm->nodes, node_index);
185 if (n->type == VLIB_NODE_TYPE_PROCESS)
186 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400187 vlib_process_t *p = vec_elt (nm->processes, n->runtime_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700188 r = &p->node_runtime;
189
190 /* When disabling make sure flags are cleared. */
191 p->flags &= ~(VLIB_PROCESS_RESUME_PENDING
192 | VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_CLOCK
193 | VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_EVENT);
194 }
195 else
196 r = vec_elt_at_index (nm->nodes_by_type[n->type], n->runtime_index);
197
198 ASSERT (new_state < VLIB_N_NODE_STATE);
199
200 if (n->type == VLIB_NODE_TYPE_INPUT)
201 {
202 ASSERT (nm->input_node_counts_by_state[n->state] > 0);
203 nm->input_node_counts_by_state[n->state] -= 1;
204 nm->input_node_counts_by_state[new_state] += 1;
205 }
206
Tom Seidenberg6c81f5a2020-07-10 15:49:03 +0000207 if (PREDICT_FALSE (r->state == VLIB_NODE_STATE_DISABLED))
208 vlib_node_runtime_perf_counter (vm, r, 0, 0, 0,
209 VLIB_NODE_RUNTIME_PERF_RESET);
210
Ed Warnickecb9cada2015-12-08 15:45:58 -0700211 n->state = new_state;
212 r->state = new_state;
213}
214
Damjan Marion153646e2017-04-05 18:15:45 +0200215/** \brief Get node dispatch state.
216 @param vm vlib_main_t pointer, varies by thread
217 @param node_index index of the node
218 @return state for node, see vlib_node_state_t
219*/
220always_inline vlib_node_state_t
221vlib_node_get_state (vlib_main_t * vm, u32 node_index)
222{
223 vlib_node_main_t *nm = &vm->node_main;
224 vlib_node_t *n;
225 n = vec_elt (nm->nodes, node_index);
226 return n->state;
227}
228
Ed Warnickecb9cada2015-12-08 15:45:58 -0700229always_inline void
Florin Coras982e44f2021-03-19 13:12:41 -0700230vlib_node_set_flag (vlib_main_t *vm, u32 node_index, u16 flag, u8 enable)
231{
232 vlib_node_runtime_t *r;
233 vlib_node_t *n;
234
235 n = vlib_get_node (vm, node_index);
236 r = vlib_node_get_runtime (vm, node_index);
237
238 if (enable)
239 {
240 n->flags |= flag;
241 r->flags |= flag;
242 }
243 else
244 {
245 n->flags &= ~flag;
246 r->flags &= ~flag;
247 }
248}
249
250always_inline void
Damjan Marion94100532020-11-06 23:25:57 +0100251vlib_node_set_interrupt_pending (vlib_main_t *vm, u32 node_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700252{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400253 vlib_node_main_t *nm = &vm->node_main;
254 vlib_node_t *n = vec_elt (nm->nodes, node_index);
Damjan Marionc5c0d0c2023-07-28 12:57:15 +0200255 void *interrupts = 0;
Damjan Marion94100532020-11-06 23:25:57 +0100256
Damjan Marioncc8249c2023-07-23 14:24:22 +0200257 if (n->type == VLIB_NODE_TYPE_INPUT)
258 interrupts = nm->input_node_interrupts;
259 else if (n->type == VLIB_NODE_TYPE_PRE_INPUT)
260 interrupts = nm->pre_input_node_interrupts;
261 else
Damjan Marionc5c0d0c2023-07-28 12:57:15 +0200262 {
263 ASSERT (0);
264 return;
265 }
Damjan Marion1033b492020-06-03 12:20:41 +0200266
Damjan Marion94100532020-11-06 23:25:57 +0100267 if (vm != vlib_get_main ())
Damjan Marioncc8249c2023-07-23 14:24:22 +0200268 clib_interrupt_set_atomic (interrupts, n->runtime_index);
Damjan Marion1033b492020-06-03 12:20:41 +0200269 else
Damjan Marioncc8249c2023-07-23 14:24:22 +0200270 clib_interrupt_set (interrupts, n->runtime_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700271}
272
273always_inline vlib_process_t *
274vlib_get_process_from_node (vlib_main_t * vm, vlib_node_t * node)
275{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400276 vlib_node_main_t *nm = &vm->node_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700277 ASSERT (node->type == VLIB_NODE_TYPE_PROCESS);
278 return vec_elt (nm->processes, node->runtime_index);
279}
280
Ed Warnickecb9cada2015-12-08 15:45:58 -0700281always_inline vlib_frame_t *
Andreas Schultz58b2eb12019-07-15 15:40:56 +0200282vlib_get_frame (vlib_main_t * vm, vlib_frame_t * f)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700283{
Andreas Schultz58b2eb12019-07-15 15:40:56 +0200284 ASSERT (f != NULL);
Damjan Marion633b6fd2018-09-14 14:38:53 +0200285 ASSERT (f->frame_flags & VLIB_FRAME_IS_ALLOCATED);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700286 return f;
287}
288
Damjan Marion296988d2019-02-21 20:24:54 +0100289always_inline void
290vlib_frame_no_append (vlib_frame_t * f)
291{
292 f->frame_flags |= VLIB_FRAME_NO_APPEND;
293}
294
Dave Barach9770e202016-07-06 10:29:27 -0400295/** \brief Get pointer to frame vector data.
296 @param f vlib_frame_t pointer
297 @return pointer to first vector element in frame
298*/
Ed Warnickecb9cada2015-12-08 15:45:58 -0700299always_inline void *
300vlib_frame_vector_args (vlib_frame_t * f)
301{
Damjan Marionb32bd702021-12-23 17:05:02 +0100302 ASSERT (f->vector_offset);
303 return (void *) f + f->vector_offset;
304}
305
306/** \brief Get pointer to frame vector aux data.
307 @param f vlib_frame_t pointer
308 @return pointer to first vector aux data element in frame
309*/
310always_inline void *
311vlib_frame_aux_args (vlib_frame_t *f)
312{
313 ASSERT (f->aux_offset);
314 return (void *) f + f->aux_offset;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700315}
316
Dave Barach9770e202016-07-06 10:29:27 -0400317/** \brief Get pointer to frame scalar data.
318
Dave Barach9770e202016-07-06 10:29:27 -0400319 @param f vlib_frame_t pointer
320
321 @return arbitrary node scalar data
322
323 @sa vlib_frame_vector_args
324*/
Ed Warnickecb9cada2015-12-08 15:45:58 -0700325always_inline void *
Damjan Mariona3d59862018-11-10 10:23:00 +0100326vlib_frame_scalar_args (vlib_frame_t * f)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400327{
Damjan Marionb32bd702021-12-23 17:05:02 +0100328 ASSERT (f->scalar_offset);
329 return (void *) f + f->scalar_offset;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400330}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700331
332always_inline vlib_next_frame_t *
333vlib_node_runtime_get_next_frame (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400334 vlib_node_runtime_t * n, u32 next_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700335{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400336 vlib_node_main_t *nm = &vm->node_main;
337 vlib_next_frame_t *nf;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700338
339 ASSERT (next_index < n->n_next_nodes);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400340 nf = vec_elt_at_index (nm->next_frames, n->next_frame_index + next_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700341
342 if (CLIB_DEBUG > 0)
343 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400344 vlib_node_t *node, *next;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700345 node = vec_elt (nm->nodes, n->node_index);
346 next = vec_elt (nm->nodes, node->next_nodes[next_index]);
347 ASSERT (nf->node_runtime_index == next->runtime_index);
348 }
349
350 return nf;
351}
352
Dave Barach9770e202016-07-06 10:29:27 -0400353/** \brief Get pointer to frame by (@c node_index, @c next_index).
354
355 @warning This is not a function that you should call directly.
356 See @ref vlib_get_next_frame instead.
357
358 @param vm vlib_main_t pointer, varies by thread
359 @param node_index index of the node
360 @param next_index graph arc index
361
362 @return pointer to the requested vlib_next_frame_t
363
364 @sa vlib_get_next_frame
365*/
366
Ed Warnickecb9cada2015-12-08 15:45:58 -0700367always_inline vlib_next_frame_t *
Dave Barach9b8ffd92016-07-08 08:13:45 -0400368vlib_node_get_next_frame (vlib_main_t * vm, u32 node_index, u32 next_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700369{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400370 vlib_node_main_t *nm = &vm->node_main;
371 vlib_node_t *n;
372 vlib_node_runtime_t *r;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700373
374 n = vec_elt (nm->nodes, node_index);
375 r = vec_elt_at_index (nm->nodes_by_type[n->type], n->runtime_index);
376 return vlib_node_runtime_get_next_frame (vm, r, next_index);
377}
378
Dave Barach9b8ffd92016-07-08 08:13:45 -0400379vlib_frame_t *vlib_get_next_frame_internal (vlib_main_t * vm,
380 vlib_node_runtime_t * node,
381 u32 next_index,
382 u32 alloc_new_frame);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700383
Mohammed Hawaricd758e62022-05-31 18:11:05 +0200384#define vlib_get_next_frame_macro(vm, node, next_index, vectors, \
385 n_vectors_left, alloc_new_frame) \
386 do \
387 { \
388 vlib_frame_t *_f = vlib_get_next_frame_internal ( \
389 (vm), (node), (next_index), (alloc_new_frame)); \
390 u32 _n = _f->n_vectors; \
391 (vectors) = vlib_frame_vector_args (_f) + _n * sizeof ((vectors)[0]); \
392 (n_vectors_left) = VLIB_FRAME_SIZE - _n; \
393 } \
394 while (0)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700395
Mohammed Hawaricd758e62022-05-31 18:11:05 +0200396#define vlib_get_next_frame_macro_with_aux(vm, node, next_index, vectors, \
397 n_vectors_left, alloc_new_frame, \
398 aux_data, maybe_no_aux) \
399 do \
400 { \
401 vlib_frame_t *_f = vlib_get_next_frame_internal ( \
402 (vm), (node), (next_index), (alloc_new_frame)); \
403 u32 _n = _f->n_vectors; \
404 (vectors) = vlib_frame_vector_args (_f) + _n * sizeof ((vectors)[0]); \
405 if ((maybe_no_aux) && (_f)->aux_offset == 0) \
406 (aux_data) = NULL; \
407 else \
408 (aux_data) = vlib_frame_aux_args (_f) + _n * sizeof ((aux_data)[0]); \
409 (n_vectors_left) = VLIB_FRAME_SIZE - _n; \
410 } \
411 while (0)
Dave Barach9770e202016-07-06 10:29:27 -0400412
Dave Barach9b8ffd92016-07-08 08:13:45 -0400413/** \brief Get pointer to next frame vector data by
Dave Barach9770e202016-07-06 10:29:27 -0400414 (@c vlib_node_runtime_t, @c next_index).
415 Standard single/dual loop boilerplate element.
416 @attention This is a MACRO, with SIDE EFFECTS.
417
418 @param vm vlib_main_t pointer, varies by thread
419 @param node current node vlib_node_runtime_t pointer
420 @param next_index requested graph arc index
421
422 @return @c vectors -- pointer to next available vector slot
423 @return @c n_vectors_left -- number of vector slots available
424*/
Mohammed Hawaricd758e62022-05-31 18:11:05 +0200425#define vlib_get_next_frame(vm, node, next_index, vectors, n_vectors_left) \
426 vlib_get_next_frame_macro (vm, node, next_index, vectors, n_vectors_left, \
Ed Warnickecb9cada2015-12-08 15:45:58 -0700427 /* alloc new frame */ 0)
428
Mohammed Hawaricd758e62022-05-31 18:11:05 +0200429#define vlib_get_new_next_frame(vm, node, next_index, vectors, \
430 n_vectors_left) \
431 vlib_get_next_frame_macro (vm, node, next_index, vectors, n_vectors_left, \
Ed Warnickecb9cada2015-12-08 15:45:58 -0700432 /* alloc new frame */ 1)
433
Mohammed Hawaricd758e62022-05-31 18:11:05 +0200434/** \brief Get pointer to next frame vector data and next frame aux data by
435 (@c vlib_node_runtime_t, @c next_index).
436 Standard single/dual loop boilerplate element.
437 @attention This is a MACRO, with SIDE EFFECTS.
438 @attention This MACRO is unsafe in case the next node does not support
439 aux_data
440
441 @param vm vlib_main_t pointer, varies by thread
442 @param node current node vlib_node_runtime_t pointer
443 @param next_index requested graph arc index
444
445 @return @c vectors -- pointer to next available vector slot
446 @return @c aux_data -- pointer to next available aux data slot
447 @return @c n_vectors_left -- number of vector slots available
448*/
449#define vlib_get_next_frame_with_aux(vm, node, next_index, vectors, aux_data, \
450 n_vectors_left) \
451 vlib_get_next_frame_macro_with_aux ( \
452 vm, node, next_index, vectors, n_vectors_left, /* alloc new frame */ 0, \
453 aux_data, /* maybe_no_aux */ 0)
454
455#define vlib_get_new_next_frame_with_aux(vm, node, next_index, vectors, \
456 aux_data, n_vectors_left) \
457 vlib_get_next_frame_macro_with_aux ( \
458 vm, node, next_index, vectors, n_vectors_left, /* alloc new frame */ 1, \
459 aux_data, /* maybe_no_aux */ 0)
460
461/** \brief Get pointer to next frame vector data and next frame aux data by
462 (@c vlib_node_runtime_t, @c next_index).
463 Standard single/dual loop boilerplate element.
464 @attention This is a MACRO, with SIDE EFFECTS.
465 @attention This MACRO is safe in case the next node does not support aux_data.
466 In that case aux_data is set to NULL.
467
468 @param vm vlib_main_t pointer, varies by thread
469 @param node current node vlib_node_runtime_t pointer
470 @param next_index requested graph arc index
471
472 @return @c vectors -- pointer to next available vector slot
473 @return @c aux_data -- pointer to next available aux data slot
474 @return @c n_vectors_left -- number of vector slots available
475*/
476#define vlib_get_next_frame_with_aux_safe(vm, node, next_index, vectors, \
477 aux_data, n_vectors_left) \
478 vlib_get_next_frame_macro_with_aux ( \
479 vm, node, next_index, vectors, n_vectors_left, /* alloc new frame */ 0, \
480 aux_data, /* maybe_no_aux */ 1)
481
482#define vlib_get_new_next_frame_with_aux_safe(vm, node, next_index, vectors, \
483 aux_data, n_vectors_left) \
484 vlib_get_next_frame_macro_with_aux ( \
485 vm, node, next_index, vectors, n_vectors_left, /* alloc new frame */ 1, \
486 aux_data, /* maybe_no_aux */ 1)
487
Dave Barach9770e202016-07-06 10:29:27 -0400488/** \brief Release pointer to next frame vector data.
489 Standard single/dual loop boilerplate element.
490 @param vm vlib_main_t pointer, varies by thread
491 @param r current node vlib_node_runtime_t pointer
492 @param next_index graph arc index
493 @param n_packets_left number of slots still available in vector
494*/
Ed Warnickecb9cada2015-12-08 15:45:58 -0700495void
496vlib_put_next_frame (vlib_main_t * vm,
497 vlib_node_runtime_t * r,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400498 u32 next_index, u32 n_packets_left);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700499
500/* Combination get plus put. Returns vector argument just added. */
501#define vlib_set_next_frame(vm,node,next_index,v) \
502({ \
503 uword _n_left; \
504 vlib_get_next_frame ((vm), (node), (next_index), (v), _n_left); \
505 ASSERT (_n_left > 0); \
506 vlib_put_next_frame ((vm), (node), (next_index), _n_left - 1); \
507 (v); \
508})
509
Mohammed Hawari16052482022-06-02 13:55:36 +0200510#define vlib_set_next_frame_with_aux_safe(vm, node, next_index, v, aux) \
511 ({ \
512 uword _n_left; \
513 vlib_get_next_frame_with_aux_safe ((vm), (node), (next_index), (v), \
514 (aux), _n_left); \
515 ASSERT (_n_left > 0); \
516 vlib_put_next_frame ((vm), (node), (next_index), _n_left - 1); \
517 (v); \
518 })
519
Ed Warnickecb9cada2015-12-08 15:45:58 -0700520always_inline void
521vlib_set_next_frame_buffer (vlib_main_t * vm,
522 vlib_node_runtime_t * node,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400523 u32 next_index, u32 buffer_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700524{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400525 u32 *p;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700526 p = vlib_set_next_frame (vm, node, next_index, p);
527 p[0] = buffer_index;
528}
529
Mohammed Hawari16052482022-06-02 13:55:36 +0200530always_inline void
531vlib_set_next_frame_buffer_with_aux_safe (vlib_main_t *vm,
532 vlib_node_runtime_t *node,
533 u32 next_index, u32 buffer_index,
534 u32 aux)
535{
536 u32 *p;
537 u32 *a;
538 p = vlib_set_next_frame_with_aux_safe (vm, node, next_index, p, a);
539 p[0] = buffer_index;
540 if (a)
541 a[0] = aux;
542}
543
Dave Barach9b8ffd92016-07-08 08:13:45 -0400544vlib_frame_t *vlib_get_frame_to_node (vlib_main_t * vm, u32 to_node_index);
545void vlib_put_frame_to_node (vlib_main_t * vm, u32 to_node_index,
546 vlib_frame_t * f);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700547
Ed Warnickecb9cada2015-12-08 15:45:58 -0700548always_inline uword
549vlib_in_process_context (vlib_main_t * vm)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400550{
551 return vm->node_main.current_process_index != ~0;
552}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700553
Florin Coras66b11312017-07-31 17:18:03 -0700554always_inline vlib_process_t *
555vlib_get_current_process (vlib_main_t * vm)
556{
557 vlib_node_main_t *nm = &vm->node_main;
558 if (vlib_in_process_context (vm))
559 return vec_elt (nm->processes, nm->current_process_index);
560 return 0;
561}
562
Ed Warnickecb9cada2015-12-08 15:45:58 -0700563always_inline uword
564vlib_current_process (vlib_main_t * vm)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400565{
566 return vlib_get_current_process (vm)->node_runtime.node_index;
567}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700568
Damjan Marion698eeb12020-09-11 14:11:11 +0200569always_inline u32
570vlib_get_current_process_node_index (vlib_main_t * vm)
571{
572 vlib_process_t *process = vlib_get_current_process (vm);
573 return process->node_runtime.node_index;
574}
575
Dave Barach5c20a012017-06-13 08:48:31 -0400576/** Returns TRUE if a process suspend time is less than 10us
Dave Barach2ab470a2016-08-10 18:38:36 -0400577 @param dt - remaining poll time in seconds
Dave Barach5c20a012017-06-13 08:48:31 -0400578 @returns 1 if dt < 10e-6, 0 otherwise
Dave Barach2ab470a2016-08-10 18:38:36 -0400579*/
Ed Warnickecb9cada2015-12-08 15:45:58 -0700580always_inline uword
581vlib_process_suspend_time_is_zero (f64 dt)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400582{
Dave Barach5c20a012017-06-13 08:48:31 -0400583 return dt < 10e-6;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400584}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700585
Dave Barach2ab470a2016-08-10 18:38:36 -0400586/** Suspend a vlib cooperative multi-tasking thread for a period of time
587 @param vm - vlib_main_t *
588 @param dt - suspend interval in seconds
589 @returns VLIB_PROCESS_RESUME_LONGJMP_RESUME, routinely ignored
590*/
591
Ed Warnickecb9cada2015-12-08 15:45:58 -0700592always_inline uword
593vlib_process_suspend (vlib_main_t * vm, f64 dt)
594{
595 uword r;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400596 vlib_node_main_t *nm = &vm->node_main;
597 vlib_process_t *p = vec_elt (nm->processes, nm->current_process_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700598
599 if (vlib_process_suspend_time_is_zero (dt))
600 return VLIB_PROCESS_RESUME_LONGJMP_RESUME;
601
602 p->flags |= VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_CLOCK;
603 r = clib_setjmp (&p->resume_longjmp, VLIB_PROCESS_RESUME_LONGJMP_SUSPEND);
604 if (r == VLIB_PROCESS_RESUME_LONGJMP_SUSPEND)
605 {
Dave Barach5c20a012017-06-13 08:48:31 -0400606 /* expiration time in 10us ticks */
607 p->resume_clock_interval = dt * 1e5;
Damjan Marioncea46522020-05-21 16:47:05 +0200608 vlib_process_start_switch_stack (vm, 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700609 clib_longjmp (&p->return_longjmp, VLIB_PROCESS_RETURN_LONGJMP_SUSPEND);
610 }
Damjan Marioncea46522020-05-21 16:47:05 +0200611 else
612 vlib_process_finish_switch_stack (vm);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700613
614 return r;
615}
616
617always_inline void
Dave Barach9b8ffd92016-07-08 08:13:45 -0400618vlib_process_free_event_type (vlib_process_t * p, uword t,
619 uword is_one_time_event)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700620{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400621 ASSERT (!pool_is_free_index (p->event_type_pool, t));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700622 pool_put_index (p->event_type_pool, t);
623 if (is_one_time_event)
624 p->one_time_event_type_bitmap =
625 clib_bitmap_andnoti (p->one_time_event_type_bitmap, t);
626}
627
628always_inline void
629vlib_process_maybe_free_event_type (vlib_process_t * p, uword t)
630{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400631 ASSERT (!pool_is_free_index (p->event_type_pool, t));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700632 if (clib_bitmap_get (p->one_time_event_type_bitmap, t))
633 vlib_process_free_event_type (p, t, /* is_one_time_event */ 1);
634}
635
636always_inline void *
Dave Barach9b8ffd92016-07-08 08:13:45 -0400637vlib_process_get_event_data (vlib_main_t * vm,
638 uword * return_event_type_opaque)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700639{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400640 vlib_node_main_t *nm = &vm->node_main;
641 vlib_process_t *p;
642 vlib_process_event_type_t *et;
Gabriel Ganne71d73fe2017-02-04 10:51:04 +0100643 uword t;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400644 void *event_data_vector;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700645
646 p = vec_elt (nm->processes, nm->current_process_index);
647
648 /* Find first type with events ready.
649 Return invalid type when there's nothing there. */
650 t = clib_bitmap_first_set (p->non_empty_event_type_bitmap);
651 if (t == ~0)
652 return 0;
653
Dave Barach9b8ffd92016-07-08 08:13:45 -0400654 p->non_empty_event_type_bitmap =
655 clib_bitmap_andnoti (p->non_empty_event_type_bitmap, t);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700656
Gabriel Ganne71d73fe2017-02-04 10:51:04 +0100657 ASSERT (_vec_len (p->pending_event_data_by_type_index[t]) > 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700658 event_data_vector = p->pending_event_data_by_type_index[t];
659 p->pending_event_data_by_type_index[t] = 0;
660
661 et = pool_elt_at_index (p->event_type_pool, t);
662
663 /* Return user's opaque value and possibly index. */
664 *return_event_type_opaque = et->opaque;
665
666 vlib_process_maybe_free_event_type (p, t);
667
668 return event_data_vector;
669}
670
671/* Return event data vector for later reuse. We reuse event data to avoid
672 repeatedly allocating event vectors in cases where we care about speed. */
673always_inline void
Dave Barach9b8ffd92016-07-08 08:13:45 -0400674vlib_process_put_event_data (vlib_main_t * vm, void *event_data)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700675{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400676 vlib_node_main_t *nm = &vm->node_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700677 vec_add1 (nm->recycled_event_data_vectors, event_data);
678}
679
Dave Barach2ab470a2016-08-10 18:38:36 -0400680/** Return the first event type which has occurred and a vector of per-event
681 data of that type, or a timeout indication
682
683 @param vm - vlib_main_t pointer
684 @param data_vector - pointer to a (uword *) vector to receive event data
685 @returns either an event type and a vector of per-event instance data,
686 or ~0 to indicate a timeout.
687*/
688
Ed Warnickecb9cada2015-12-08 15:45:58 -0700689always_inline uword
690vlib_process_get_events (vlib_main_t * vm, uword ** data_vector)
691{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400692 vlib_node_main_t *nm = &vm->node_main;
693 vlib_process_t *p;
694 vlib_process_event_type_t *et;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700695 uword r, t, l;
696
697 p = vec_elt (nm->processes, nm->current_process_index);
698
699 /* Find first type with events ready.
700 Return invalid type when there's nothing there. */
701 t = clib_bitmap_first_set (p->non_empty_event_type_bitmap);
702 if (t == ~0)
703 return t;
704
Dave Barach9b8ffd92016-07-08 08:13:45 -0400705 p->non_empty_event_type_bitmap =
706 clib_bitmap_andnoti (p->non_empty_event_type_bitmap, t);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700707
708 l = _vec_len (p->pending_event_data_by_type_index[t]);
709 if (data_vector)
710 vec_add (*data_vector, p->pending_event_data_by_type_index[t], l);
Damjan Marion8bea5892022-04-04 22:40:45 +0200711 vec_set_len (p->pending_event_data_by_type_index[t], 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700712
713 et = pool_elt_at_index (p->event_type_pool, t);
714
715 /* Return user's opaque value. */
716 r = et->opaque;
717
718 vlib_process_maybe_free_event_type (p, t);
719
720 return r;
721}
722
723always_inline uword
Dave Barach9b8ffd92016-07-08 08:13:45 -0400724vlib_process_get_events_helper (vlib_process_t * p, uword t,
725 uword ** data_vector)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700726{
727 uword l;
728
Dave Barach9b8ffd92016-07-08 08:13:45 -0400729 p->non_empty_event_type_bitmap =
730 clib_bitmap_andnoti (p->non_empty_event_type_bitmap, t);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700731
732 l = _vec_len (p->pending_event_data_by_type_index[t]);
733 if (data_vector)
734 vec_add (*data_vector, p->pending_event_data_by_type_index[t], l);
Damjan Marion8bea5892022-04-04 22:40:45 +0200735 vec_set_len (p->pending_event_data_by_type_index[t], 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700736
737 vlib_process_maybe_free_event_type (p, t);
738
739 return l;
740}
741
742/* As above but query as specified type of event. Returns number of
743 events found. */
744always_inline uword
745vlib_process_get_events_with_type (vlib_main_t * vm, uword ** data_vector,
746 uword with_type_opaque)
747{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400748 vlib_node_main_t *nm = &vm->node_main;
749 vlib_process_t *p;
750 uword t, *h;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700751
752 p = vec_elt (nm->processes, nm->current_process_index);
753 h = hash_get (p->event_type_index_by_type_opaque, with_type_opaque);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400754 if (!h)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700755 /* This can happen when an event has not yet been
756 signaled with given opaque type. */
757 return 0;
758
759 t = h[0];
Dave Barach9b8ffd92016-07-08 08:13:45 -0400760 if (!clib_bitmap_get (p->non_empty_event_type_bitmap, t))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700761 return 0;
762
763 return vlib_process_get_events_helper (p, t, data_vector);
764}
765
766always_inline uword *
767vlib_process_wait_for_event (vlib_main_t * vm)
768{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400769 vlib_node_main_t *nm = &vm->node_main;
770 vlib_process_t *p;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700771 uword r;
772
773 p = vec_elt (nm->processes, nm->current_process_index);
774 if (clib_bitmap_is_zero (p->non_empty_event_type_bitmap))
775 {
776 p->flags |= VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_EVENT;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400777 r =
778 clib_setjmp (&p->resume_longjmp, VLIB_PROCESS_RESUME_LONGJMP_SUSPEND);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700779 if (r == VLIB_PROCESS_RESUME_LONGJMP_SUSPEND)
Damjan Marioncea46522020-05-21 16:47:05 +0200780 {
781 vlib_process_start_switch_stack (vm, 0);
782 clib_longjmp (&p->return_longjmp,
783 VLIB_PROCESS_RETURN_LONGJMP_SUSPEND);
784 }
785 else
786 vlib_process_finish_switch_stack (vm);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700787 }
788
789 return p->non_empty_event_type_bitmap;
790}
791
792always_inline uword
793vlib_process_wait_for_one_time_event (vlib_main_t * vm,
794 uword ** data_vector,
795 uword with_type_index)
796{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400797 vlib_node_main_t *nm = &vm->node_main;
798 vlib_process_t *p;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700799 uword r;
800
801 p = vec_elt (nm->processes, nm->current_process_index);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400802 ASSERT (!pool_is_free_index (p->event_type_pool, with_type_index));
803 while (!clib_bitmap_get (p->non_empty_event_type_bitmap, with_type_index))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700804 {
805 p->flags |= VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_EVENT;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400806 r =
807 clib_setjmp (&p->resume_longjmp, VLIB_PROCESS_RESUME_LONGJMP_SUSPEND);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700808 if (r == VLIB_PROCESS_RESUME_LONGJMP_SUSPEND)
Damjan Marioncea46522020-05-21 16:47:05 +0200809 {
810 vlib_process_start_switch_stack (vm, 0);
811 clib_longjmp (&p->return_longjmp,
812 VLIB_PROCESS_RETURN_LONGJMP_SUSPEND);
813 }
814 else
815 vlib_process_finish_switch_stack (vm);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700816 }
817
818 return vlib_process_get_events_helper (p, with_type_index, data_vector);
819}
820
821always_inline uword
822vlib_process_wait_for_event_with_type (vlib_main_t * vm,
823 uword ** data_vector,
824 uword with_type_opaque)
825{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400826 vlib_node_main_t *nm = &vm->node_main;
827 vlib_process_t *p;
828 uword r, *h;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700829
830 p = vec_elt (nm->processes, nm->current_process_index);
831 h = hash_get (p->event_type_index_by_type_opaque, with_type_opaque);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400832 while (!h || !clib_bitmap_get (p->non_empty_event_type_bitmap, h[0]))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700833 {
834 p->flags |= VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_EVENT;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400835 r =
836 clib_setjmp (&p->resume_longjmp, VLIB_PROCESS_RESUME_LONGJMP_SUSPEND);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700837 if (r == VLIB_PROCESS_RESUME_LONGJMP_SUSPEND)
Damjan Marioncea46522020-05-21 16:47:05 +0200838 {
839 vlib_process_start_switch_stack (vm, 0);
840 clib_longjmp (&p->return_longjmp,
841 VLIB_PROCESS_RETURN_LONGJMP_SUSPEND);
842 }
843 else
844 vlib_process_finish_switch_stack (vm);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700845
846 /* See if unknown event type has been signaled now. */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400847 if (!h)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700848 h = hash_get (p->event_type_index_by_type_opaque, with_type_opaque);
849 }
850
851 return vlib_process_get_events_helper (p, h[0], data_vector);
852}
853
Dave Barach2ab470a2016-08-10 18:38:36 -0400854/** Suspend a cooperative multi-tasking thread
855 Waits for an event, or for the indicated number of seconds to elapse
856 @param vm - vlib_main_t pointer
Damjan Marion607de1a2016-08-16 22:53:54 +0200857 @param dt - timeout, in seconds.
Dave Barach2ab470a2016-08-10 18:38:36 -0400858 @returns the remaining time interval
859*/
860
Ed Warnickecb9cada2015-12-08 15:45:58 -0700861always_inline f64
862vlib_process_wait_for_event_or_clock (vlib_main_t * vm, f64 dt)
863{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400864 vlib_node_main_t *nm = &vm->node_main;
865 vlib_process_t *p;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700866 f64 wakeup_time;
867 uword r;
868
869 p = vec_elt (nm->processes, nm->current_process_index);
870
871 if (vlib_process_suspend_time_is_zero (dt)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400872 || !clib_bitmap_is_zero (p->non_empty_event_type_bitmap))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700873 return dt;
874
875 wakeup_time = vlib_time_now (vm) + dt;
876
877 /* Suspend waiting for both clock and event to occur. */
878 p->flags |= (VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_EVENT
879 | VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_CLOCK);
880
881 r = clib_setjmp (&p->resume_longjmp, VLIB_PROCESS_RESUME_LONGJMP_SUSPEND);
882 if (r == VLIB_PROCESS_RESUME_LONGJMP_SUSPEND)
883 {
Dave Barach5c20a012017-06-13 08:48:31 -0400884 p->resume_clock_interval = dt * 1e5;
Damjan Marioncea46522020-05-21 16:47:05 +0200885 vlib_process_start_switch_stack (vm, 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700886 clib_longjmp (&p->return_longjmp, VLIB_PROCESS_RETURN_LONGJMP_SUSPEND);
887 }
Damjan Marioncea46522020-05-21 16:47:05 +0200888 else
889 vlib_process_finish_switch_stack (vm);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700890
891 /* Return amount of time still left to sleep.
892 If <= 0 then we've been waken up by the clock (and not an event). */
893 return wakeup_time - vlib_time_now (vm);
894}
895
896always_inline vlib_process_event_type_t *
897vlib_process_new_event_type (vlib_process_t * p, uword with_type_opaque)
898{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400899 vlib_process_event_type_t *et;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700900 pool_get (p->event_type_pool, et);
901 et->opaque = with_type_opaque;
902 return et;
903}
904
905always_inline uword
Dave Barach9b8ffd92016-07-08 08:13:45 -0400906vlib_process_create_one_time_event (vlib_main_t * vm, uword node_index,
907 uword with_type_opaque)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700908{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400909 vlib_node_main_t *nm = &vm->node_main;
910 vlib_node_t *n = vlib_get_node (vm, node_index);
911 vlib_process_t *p = vec_elt (nm->processes, n->runtime_index);
912 vlib_process_event_type_t *et;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700913 uword t;
914
915 et = vlib_process_new_event_type (p, with_type_opaque);
916 t = et - p->event_type_pool;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400917 p->one_time_event_type_bitmap =
918 clib_bitmap_ori (p->one_time_event_type_bitmap, t);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700919 return t;
920}
921
922always_inline void
Dave Barach9b8ffd92016-07-08 08:13:45 -0400923vlib_process_delete_one_time_event (vlib_main_t * vm, uword node_index,
924 uword t)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700925{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400926 vlib_node_main_t *nm = &vm->node_main;
927 vlib_node_t *n = vlib_get_node (vm, node_index);
928 vlib_process_t *p = vec_elt (nm->processes, n->runtime_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700929
930 ASSERT (clib_bitmap_get (p->one_time_event_type_bitmap, t));
931 vlib_process_free_event_type (p, t, /* is_one_time_event */ 1);
932}
933
934always_inline void *
935vlib_process_signal_event_helper (vlib_node_main_t * nm,
936 vlib_node_t * n,
937 vlib_process_t * p,
938 uword t,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400939 uword n_data_elts, uword n_data_elt_bytes)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700940{
941 uword p_flags, add_to_pending, delete_from_wheel;
Damjan Mariond24b86e2022-03-23 16:59:23 +0100942 u8 *data_to_be_written_by_caller;
Damjan Marione4fa1d22022-04-11 18:41:49 +0200943 vec_attr_t va = { .elt_sz = n_data_elt_bytes };
Ed Warnickecb9cada2015-12-08 15:45:58 -0700944
Dave Barach1403fcd2018-02-05 09:45:43 -0500945 ASSERT (n->type == VLIB_NODE_TYPE_PROCESS);
946
Dave Barach9b8ffd92016-07-08 08:13:45 -0400947 ASSERT (!pool_is_free_index (p->event_type_pool, t));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700948
949 vec_validate (p->pending_event_data_by_type_index, t);
950
951 /* Resize data vector and return caller's data to be written. */
952 {
Damjan Mariond24b86e2022-03-23 16:59:23 +0100953 u8 *data_vec = p->pending_event_data_by_type_index[t];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700954 uword l;
955
Dave Barach9b8ffd92016-07-08 08:13:45 -0400956 if (!data_vec && vec_len (nm->recycled_event_data_vectors))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700957 {
958 data_vec = vec_pop (nm->recycled_event_data_vectors);
fangtong33b18d42021-07-24 14:55:02 +0800959 vec_reset_length (data_vec);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700960 }
961
962 l = vec_len (data_vec);
963
Damjan Marione4fa1d22022-04-11 18:41:49 +0200964 data_vec = _vec_realloc_internal (data_vec, l + n_data_elts, &va);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700965
966 p->pending_event_data_by_type_index[t] = data_vec;
967 data_to_be_written_by_caller = data_vec + l * n_data_elt_bytes;
968 }
969
Dave Barach9b8ffd92016-07-08 08:13:45 -0400970 p->non_empty_event_type_bitmap =
971 clib_bitmap_ori (p->non_empty_event_type_bitmap, t);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700972
973 p_flags = p->flags;
974
975 /* Event was already signalled? */
976 add_to_pending = (p_flags & VLIB_PROCESS_RESUME_PENDING) == 0;
977
978 /* Process will resume when suspend time elapses? */
979 delete_from_wheel = 0;
980 if (p_flags & VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_CLOCK)
981 {
982 /* Waiting for both event and clock? */
983 if (p_flags & VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_EVENT)
Florin Coras40f92462018-08-01 16:25:45 -0700984 {
985 if (!TW (tw_timer_handle_is_free)
986 ((TWT (tw_timer_wheel) *) nm->timing_wheel,
987 p->stop_timer_handle))
988 delete_from_wheel = 1;
989 else
990 /* timer just popped so process should already be on the list */
991 add_to_pending = 0;
992 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700993 else
994 /* Waiting only for clock. Event will be queue and may be
995 handled when timer expires. */
996 add_to_pending = 0;
997 }
998
999 /* Never add current process to pending vector since current process is
1000 already running. */
1001 add_to_pending &= nm->current_process_index != n->runtime_index;
1002
1003 if (add_to_pending)
1004 {
1005 u32 x = vlib_timing_wheel_data_set_suspended_process (n->runtime_index);
1006 p->flags = p_flags | VLIB_PROCESS_RESUME_PENDING;
1007 vec_add1 (nm->data_from_advancing_timing_wheel, x);
1008 if (delete_from_wheel)
jinshb7756b22023-03-07 14:32:06 +08001009 {
1010 TW (tw_timer_stop)
1011 ((TWT (tw_timer_wheel) *) nm->timing_wheel, p->stop_timer_handle);
1012 p->stop_timer_handle = ~0;
1013 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001014 }
1015
1016 return data_to_be_written_by_caller;
1017}
1018
1019always_inline void *
1020vlib_process_signal_event_data (vlib_main_t * vm,
1021 uword node_index,
1022 uword type_opaque,
Dave Barach9b8ffd92016-07-08 08:13:45 -04001023 uword n_data_elts, uword n_data_elt_bytes)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001024{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001025 vlib_node_main_t *nm = &vm->node_main;
1026 vlib_node_t *n = vlib_get_node (vm, node_index);
1027 vlib_process_t *p = vec_elt (nm->processes, n->runtime_index);
1028 uword *h, t;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001029
John Lo609707e2017-09-19 21:45:10 -04001030 /* Must be in main thread */
1031 ASSERT (vlib_get_thread_index () == 0);
1032
Ed Warnickecb9cada2015-12-08 15:45:58 -07001033 h = hash_get (p->event_type_index_by_type_opaque, type_opaque);
Dave Barach9b8ffd92016-07-08 08:13:45 -04001034 if (!h)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001035 {
Dave Barach9b8ffd92016-07-08 08:13:45 -04001036 vlib_process_event_type_t *et =
1037 vlib_process_new_event_type (p, type_opaque);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001038 t = et - p->event_type_pool;
1039 hash_set (p->event_type_index_by_type_opaque, type_opaque, t);
1040 }
1041 else
1042 t = h[0];
1043
Dave Barach9b8ffd92016-07-08 08:13:45 -04001044 return vlib_process_signal_event_helper (nm, n, p, t, n_data_elts,
1045 n_data_elt_bytes);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001046}
1047
1048always_inline void *
1049vlib_process_signal_event_at_time (vlib_main_t * vm,
1050 f64 dt,
1051 uword node_index,
1052 uword type_opaque,
Dave Barach9b8ffd92016-07-08 08:13:45 -04001053 uword n_data_elts, uword n_data_elt_bytes)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001054{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001055 vlib_node_main_t *nm = &vm->node_main;
1056 vlib_node_t *n = vlib_get_node (vm, node_index);
1057 vlib_process_t *p = vec_elt (nm->processes, n->runtime_index);
1058 uword *h, t;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001059
1060 h = hash_get (p->event_type_index_by_type_opaque, type_opaque);
Dave Barach9b8ffd92016-07-08 08:13:45 -04001061 if (!h)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001062 {
Dave Barach9b8ffd92016-07-08 08:13:45 -04001063 vlib_process_event_type_t *et =
1064 vlib_process_new_event_type (p, type_opaque);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001065 t = et - p->event_type_pool;
1066 hash_set (p->event_type_index_by_type_opaque, type_opaque, t);
1067 }
1068 else
1069 t = h[0];
1070
1071 if (vlib_process_suspend_time_is_zero (dt))
Dave Barach9b8ffd92016-07-08 08:13:45 -04001072 return vlib_process_signal_event_helper (nm, n, p, t, n_data_elts,
1073 n_data_elt_bytes);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001074 else
1075 {
Dave Barach9b8ffd92016-07-08 08:13:45 -04001076 vlib_signal_timed_event_data_t *te;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001077
1078 pool_get_aligned (nm->signal_timed_event_data_pool, te, sizeof (te[0]));
1079
1080 te->n_data_elts = n_data_elts;
1081 te->n_data_elt_bytes = n_data_elt_bytes;
1082 te->n_data_bytes = n_data_elts * n_data_elt_bytes;
1083
1084 /* Assert that structure fields are big enough. */
1085 ASSERT (te->n_data_elts == n_data_elts);
1086 ASSERT (te->n_data_elt_bytes == n_data_elt_bytes);
1087 ASSERT (te->n_data_bytes == n_data_elts * n_data_elt_bytes);
1088
1089 te->process_node_index = n->runtime_index;
1090 te->event_type_index = t;
1091
Dave Barach5c20a012017-06-13 08:48:31 -04001092 p->stop_timer_handle =
1093 TW (tw_timer_start) ((TWT (tw_timer_wheel) *) nm->timing_wheel,
1094 vlib_timing_wheel_data_set_timed_event
1095 (te - nm->signal_timed_event_data_pool),
1096 0 /* timer_id */ ,
1097 (vlib_time_now (vm) + dt) * 1e5);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001098
1099 /* Inline data big enough to hold event? */
1100 if (te->n_data_bytes < sizeof (te->inline_event_data))
1101 return te->inline_event_data;
1102 else
1103 {
1104 te->event_data_as_vector = 0;
1105 vec_resize (te->event_data_as_vector, te->n_data_bytes);
1106 return te->event_data_as_vector;
1107 }
1108 }
1109}
1110
1111always_inline void *
1112vlib_process_signal_one_time_event_data (vlib_main_t * vm,
1113 uword node_index,
1114 uword type_index,
1115 uword n_data_elts,
1116 uword n_data_elt_bytes)
1117{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001118 vlib_node_main_t *nm = &vm->node_main;
1119 vlib_node_t *n = vlib_get_node (vm, node_index);
1120 vlib_process_t *p = vec_elt (nm->processes, n->runtime_index);
1121 return vlib_process_signal_event_helper (nm, n, p, type_index, n_data_elts,
1122 n_data_elt_bytes);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001123}
1124
1125always_inline void
1126vlib_process_signal_event (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -04001127 uword node_index, uword type_opaque, uword data)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001128{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001129 uword *d = vlib_process_signal_event_data (vm, node_index, type_opaque,
1130 1 /* elts */ , sizeof (uword));
Ed Warnickecb9cada2015-12-08 15:45:58 -07001131 d[0] = data;
1132}
1133
1134always_inline void
1135vlib_process_signal_event_pointer (vlib_main_t * vm,
1136 uword node_index,
Dave Barach9b8ffd92016-07-08 08:13:45 -04001137 uword type_opaque, void *data)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001138{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001139 void **d = vlib_process_signal_event_data (vm, node_index, type_opaque,
1140 1 /* elts */ , sizeof (data));
Ed Warnickecb9cada2015-12-08 15:45:58 -07001141 d[0] = data;
1142}
1143
Dave Barach69128d02017-09-26 10:54:34 -04001144/**
1145 * Signal event to process from any thread.
1146 *
1147 * When in doubt, use this.
1148 */
1149always_inline void
1150vlib_process_signal_event_mt (vlib_main_t * vm,
1151 uword node_index, uword type_opaque, uword data)
1152{
1153 if (vlib_get_thread_index () != 0)
1154 {
1155 vlib_process_signal_event_mt_args_t args = {
1156 .node_index = node_index,
1157 .type_opaque = type_opaque,
1158 .data = data,
1159 };
1160 vlib_rpc_call_main_thread (vlib_process_signal_event_mt_helper,
1161 (u8 *) & args, sizeof (args));
1162 }
1163 else
1164 vlib_process_signal_event (vm, node_index, type_opaque, data);
1165}
1166
Ed Warnickecb9cada2015-12-08 15:45:58 -07001167always_inline void
1168vlib_process_signal_one_time_event (vlib_main_t * vm,
1169 uword node_index,
Dave Barach9b8ffd92016-07-08 08:13:45 -04001170 uword type_index, uword data)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001171{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001172 uword *d =
1173 vlib_process_signal_one_time_event_data (vm, node_index, type_index,
1174 1 /* elts */ , sizeof (uword));
Ed Warnickecb9cada2015-12-08 15:45:58 -07001175 d[0] = data;
1176}
1177
1178always_inline void
Dave Barach9b8ffd92016-07-08 08:13:45 -04001179vlib_signal_one_time_waiting_process (vlib_main_t * vm,
1180 vlib_one_time_waiting_process_t * p)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001181{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001182 vlib_process_signal_one_time_event (vm, p->node_index, p->one_time_event,
1183 /* data */ ~0);
Dave Barachb7b92992018-10-17 10:38:51 -04001184 clib_memset (p, ~0, sizeof (p[0]));
Ed Warnickecb9cada2015-12-08 15:45:58 -07001185}
1186
1187always_inline void
1188vlib_signal_one_time_waiting_process_vector (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -04001189 vlib_one_time_waiting_process_t
1190 ** wps)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001191{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001192 vlib_one_time_waiting_process_t *wp;
1193 vec_foreach (wp, *wps) vlib_signal_one_time_waiting_process (vm, wp);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001194 vec_free (*wps);
1195}
1196
1197always_inline void
Dave Barach9b8ffd92016-07-08 08:13:45 -04001198vlib_current_process_wait_for_one_time_event (vlib_main_t * vm,
1199 vlib_one_time_waiting_process_t
1200 * p)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001201{
1202 p->node_index = vlib_current_process (vm);
Dave Barach9b8ffd92016-07-08 08:13:45 -04001203 p->one_time_event = vlib_process_create_one_time_event (vm, p->node_index, /* type opaque */
1204 ~0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001205 vlib_process_wait_for_one_time_event (vm,
1206 /* don't care about data */ 0,
1207 p->one_time_event);
1208}
1209
1210always_inline void
1211vlib_current_process_wait_for_one_time_event_vector (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -04001212 vlib_one_time_waiting_process_t
1213 ** wps)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001214{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001215 vlib_one_time_waiting_process_t *wp;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001216 vec_add2 (*wps, wp, 1);
1217 vlib_current_process_wait_for_one_time_event (vm, wp);
1218}
1219
1220always_inline u32
1221vlib_node_runtime_update_main_loop_vector_stats (vlib_main_t * vm,
1222 vlib_node_runtime_t * node,
1223 uword n_vectors)
1224{
1225 u32 i, d, vi0, vi1;
1226 u32 i0, i1;
1227
1228 ASSERT (is_pow2 (ARRAY_LEN (node->main_loop_vector_stats)));
1229 i = ((vm->main_loop_count >> VLIB_LOG2_MAIN_LOOPS_PER_STATS_UPDATE)
1230 & (ARRAY_LEN (node->main_loop_vector_stats) - 1));
1231 i0 = i ^ 0;
1232 i1 = i ^ 1;
1233 d = ((vm->main_loop_count >> VLIB_LOG2_MAIN_LOOPS_PER_STATS_UPDATE)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001234 -
1235 (node->main_loop_count_last_dispatch >>
1236 VLIB_LOG2_MAIN_LOOPS_PER_STATS_UPDATE));
Ed Warnickecb9cada2015-12-08 15:45:58 -07001237 vi0 = node->main_loop_vector_stats[i0];
1238 vi1 = node->main_loop_vector_stats[i1];
1239 vi0 = d == 0 ? vi0 : 0;
1240 vi1 = d <= 1 ? vi1 : 0;
1241 vi0 += n_vectors;
1242 node->main_loop_vector_stats[i0] = vi0;
1243 node->main_loop_vector_stats[i1] = vi1;
1244 node->main_loop_count_last_dispatch = vm->main_loop_count;
1245 /* Return previous counter. */
1246 return node->main_loop_vector_stats[i1];
1247}
1248
1249always_inline f64
1250vlib_node_vectors_per_main_loop_as_float (vlib_main_t * vm, u32 node_index)
1251{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001252 vlib_node_runtime_t *rt = vlib_node_get_runtime (vm, node_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001253 u32 v;
1254
Dave Barach9b8ffd92016-07-08 08:13:45 -04001255 v = vlib_node_runtime_update_main_loop_vector_stats (vm, rt, /* n_vectors */
1256 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001257 return (f64) v / (1 << VLIB_LOG2_MAIN_LOOPS_PER_STATS_UPDATE);
1258}
1259
1260always_inline u32
1261vlib_node_vectors_per_main_loop_as_integer (vlib_main_t * vm, u32 node_index)
1262{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001263 vlib_node_runtime_t *rt = vlib_node_get_runtime (vm, node_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001264 u32 v;
1265
Dave Barach9b8ffd92016-07-08 08:13:45 -04001266 v = vlib_node_runtime_update_main_loop_vector_stats (vm, rt, /* n_vectors */
1267 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001268 return v >> VLIB_LOG2_MAIN_LOOPS_PER_STATS_UPDATE;
1269}
1270
Dmitry Valter9f5b3692022-09-05 15:30:18 +00001271void vlib_frame_free (vlib_main_t *vm, vlib_frame_t *f);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001272
Neale Rannsbb620d72017-06-29 00:19:08 -07001273/* Return the edge index if present, ~0 otherwise */
1274uword vlib_node_get_next (vlib_main_t * vm, uword node, uword next_node);
1275
Ed Warnickecb9cada2015-12-08 15:45:58 -07001276/* Add next node to given node in given slot. */
1277uword
1278vlib_node_add_next_with_slot (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -04001279 uword node, uword next_node, uword slot);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001280
1281/* As above but adds to end of node's next vector. */
1282always_inline uword
1283vlib_node_add_next (vlib_main_t * vm, uword node, uword next_node)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001284{
1285 return vlib_node_add_next_with_slot (vm, node, next_node, ~0);
1286}
Ed Warnickecb9cada2015-12-08 15:45:58 -07001287
1288/* Add next node to given node in given slot. */
1289uword
1290vlib_node_add_named_next_with_slot (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -04001291 uword node, char *next_name, uword slot);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001292
1293/* As above but adds to end of node's next vector. */
1294always_inline uword
Dave Barach9b8ffd92016-07-08 08:13:45 -04001295vlib_node_add_named_next (vlib_main_t * vm, uword node, char *name)
1296{
1297 return vlib_node_add_named_next_with_slot (vm, node, name, ~0);
1298}
Ed Warnickecb9cada2015-12-08 15:45:58 -07001299
Florin Corase86a8ed2018-01-05 03:20:25 -08001300/**
1301 * Get list of nodes
1302 */
Dave Barach1ddbc012018-06-13 09:26:05 -04001303void
1304vlib_node_get_nodes (vlib_main_t * vm, u32 max_threads, int include_stats,
1305 int barrier_sync, vlib_node_t **** node_dupsp,
1306 vlib_main_t *** stat_vmsp);
Florin Corase86a8ed2018-01-05 03:20:25 -08001307
Ed Warnickecb9cada2015-12-08 15:45:58 -07001308/* Query node given name. */
Dave Barach9b8ffd92016-07-08 08:13:45 -04001309vlib_node_t *vlib_get_node_by_name (vlib_main_t * vm, u8 * name);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001310
1311/* Rename a node. */
Dave Barach9b8ffd92016-07-08 08:13:45 -04001312void vlib_node_rename (vlib_main_t * vm, u32 node_index, char *fmt, ...);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001313
1314/* Register new packet processing node. Nodes can be registered
1315 dynamically via this call or statically via the VLIB_REGISTER_NODE
1316 macro. */
Damjan Marionf87acfa2022-03-23 17:36:56 +01001317u32 vlib_register_node (vlib_main_t *vm, vlib_node_registration_t *r,
1318 char *fmt, ...);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001319
Damjan Mariona31698b2021-03-10 14:35:28 +01001320/* Register all node function variants */
1321void vlib_register_all_node_march_variants (vlib_main_t *vm);
1322
Ed Warnickecb9cada2015-12-08 15:45:58 -07001323/* Register all static nodes registered via VLIB_REGISTER_NODE. */
1324void vlib_register_all_static_nodes (vlib_main_t * vm);
1325
1326/* Start a process. */
1327void vlib_start_process (vlib_main_t * vm, uword process_index);
1328
1329/* Sync up runtime and main node stats. */
Dave Barach9b8ffd92016-07-08 08:13:45 -04001330void vlib_node_sync_stats (vlib_main_t * vm, vlib_node_t * n);
Arthur de Kerhor156158f2021-02-18 03:09:42 -08001331void vlib_node_runtime_sync_stats (vlib_main_t *vm, vlib_node_runtime_t *r,
1332 uword n_calls, uword n_vectors,
1333 uword n_clocks);
1334void vlib_node_runtime_sync_stats_node (vlib_node_t *n, vlib_node_runtime_t *r,
1335 uword n_calls, uword n_vectors,
1336 uword n_clocks);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001337
1338/* Node graph initialization function. */
Dave Barach9b8ffd92016-07-08 08:13:45 -04001339clib_error_t *vlib_node_main_init (vlib_main_t * vm);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001340
1341format_function_t format_vlib_node_graph;
1342format_function_t format_vlib_node_name;
1343format_function_t format_vlib_next_node_name;
1344format_function_t format_vlib_node_and_next;
1345format_function_t format_vlib_cpu_time;
1346format_function_t format_vlib_time;
1347/* Parse node name -> node index. */
1348unformat_function_t unformat_vlib_node;
1349
Dave Barach9b8ffd92016-07-08 08:13:45 -04001350always_inline void
1351vlib_node_increment_counter (vlib_main_t * vm, u32 node_index,
1352 u32 counter_index, u64 increment)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001353{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001354 vlib_node_t *n = vlib_get_node (vm, node_index);
1355 vlib_error_main_t *em = &vm->error_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001356 u32 node_counter_base_index = n->error_heap_index;
1357 em->counters[node_counter_base_index + counter_index] += increment;
1358}
1359
Dave Barach11965c72019-05-28 16:31:05 -04001360/** @brief Create a vlib process
1361 * @param vm &vlib_global_main
1362 * @param f the process node function
1363 * @param log2_n_stack_bytes size of the process stack, defaults to 16K
1364 * @return newly-create node index
1365 * @warning call only on the main thread. Barrier sync required
1366 */
1367u32 vlib_process_create (vlib_main_t * vm, char *name,
1368 vlib_node_function_t * f, u32 log2_n_stack_bytes);
1369
Damjan Marion8b60fb02020-11-27 20:15:17 +01001370always_inline int
1371vlib_node_set_dispatch_wrapper (vlib_main_t *vm, vlib_node_function_t *fn)
1372{
1373 if (fn && vm->dispatch_wrapper_fn)
1374 return 1;
1375 vm->dispatch_wrapper_fn = fn;
1376 return 0;
1377}
1378
Damjan Mariona31698b2021-03-10 14:35:28 +01001379int vlib_node_set_march_variant (vlib_main_t *vm, u32 node_index,
1380 clib_march_variant_type_t march_variant);
1381
1382vlib_node_function_t *
1383vlib_node_get_preferred_node_fn_variant (vlib_main_t *vm,
1384 vlib_node_fn_registration_t *regs);
1385
Damjan Marionefeea5b2022-02-10 15:01:03 +01001386/*
1387 * vlib_frame_bitmap functions
1388 */
1389
1390#define VLIB_FRAME_BITMAP_N_UWORDS \
1391 (((VLIB_FRAME_SIZE + uword_bits - 1) & ~(uword_bits - 1)) / uword_bits)
1392
1393typedef uword vlib_frame_bitmap_t[VLIB_FRAME_BITMAP_N_UWORDS];
1394
1395static_always_inline void
1396vlib_frame_bitmap_init (uword *bmp, u32 n_first_bits_set)
1397{
1398 u32 n_left = VLIB_FRAME_BITMAP_N_UWORDS;
1399 while (n_first_bits_set >= (sizeof (uword) * 8) && n_left)
1400 {
1401 bmp++[0] = ~0;
1402 n_first_bits_set -= sizeof (uword) * 8;
1403 n_left--;
1404 }
1405
1406 if (n_first_bits_set && n_left)
1407 {
1408 bmp++[0] = pow2_mask (n_first_bits_set);
1409 n_left--;
1410 }
1411
1412 while (n_left--)
1413 bmp++[0] = 0;
1414}
1415
1416static_always_inline void
Damjan Marion156d4522023-03-31 12:14:41 +00001417vlib_frame_bitmap_set_bit_at_index (uword *bmp, uword bit_index)
1418{
Damjan Marion5294cdc2023-04-04 17:06:26 +00001419 uword_bitmap_set_bits_at_index (bmp, bit_index, 1);
Damjan Marion156d4522023-03-31 12:14:41 +00001420}
1421
1422static_always_inline void
1423_vlib_frame_bitmap_clear_bit_at_index (uword *bmp, uword bit_index)
1424{
Damjan Marion5294cdc2023-04-04 17:06:26 +00001425 uword_bitmap_clear_bits_at_index (bmp, bit_index, 1);
1426}
1427
1428static_always_inline void
1429vlib_frame_bitmap_set_bits_at_index (uword *bmp, uword bit_index, uword n_bits)
1430{
1431 uword_bitmap_set_bits_at_index (bmp, bit_index, n_bits);
1432}
1433
1434static_always_inline void
1435vlib_frame_bitmap_clear_bits_at_index (uword *bmp, uword bit_index,
1436 uword n_bits)
1437{
1438 uword_bitmap_clear_bits_at_index (bmp, bit_index, n_bits);
Damjan Marion156d4522023-03-31 12:14:41 +00001439}
1440
1441static_always_inline void
Damjan Marionefeea5b2022-02-10 15:01:03 +01001442vlib_frame_bitmap_clear (uword *bmp)
1443{
1444 u32 n_left = VLIB_FRAME_BITMAP_N_UWORDS;
1445 while (n_left--)
1446 bmp++[0] = 0;
1447}
1448
1449static_always_inline void
1450vlib_frame_bitmap_xor (uword *bmp, uword *bmp2)
1451{
1452 u32 n_left = VLIB_FRAME_BITMAP_N_UWORDS;
1453 while (n_left--)
1454 bmp++[0] ^= bmp2++[0];
1455}
1456
1457static_always_inline void
1458vlib_frame_bitmap_or (uword *bmp, uword *bmp2)
1459{
1460 u32 n_left = VLIB_FRAME_BITMAP_N_UWORDS;
1461 while (n_left--)
1462 bmp++[0] |= bmp2++[0];
1463}
1464
Damjan Marion218e4ec2022-03-15 16:16:55 +01001465static_always_inline void
1466vlib_frame_bitmap_and (uword *bmp, uword *bmp2)
1467{
1468 u32 n_left = VLIB_FRAME_BITMAP_N_UWORDS;
1469 while (n_left--)
1470 bmp++[0] &= bmp2++[0];
1471}
1472
Damjan Marion5294cdc2023-04-04 17:06:26 +00001473static_always_inline uword
Damjan Marionefeea5b2022-02-10 15:01:03 +01001474vlib_frame_bitmap_count_set_bits (uword *bmp)
1475{
Damjan Marion5294cdc2023-04-04 17:06:26 +00001476 return uword_bitmap_count_set_bits (bmp, VLIB_FRAME_BITMAP_N_UWORDS);
Damjan Marionefeea5b2022-02-10 15:01:03 +01001477}
1478
Damjan Marion51a7e442022-09-08 18:59:03 +02001479static_always_inline uword
1480vlib_frame_bitmap_is_bit_set (uword *bmp, uword bit_index)
1481{
Damjan Marion5294cdc2023-04-04 17:06:26 +00001482 return uword_bitmap_is_bit_set (bmp, bit_index);
Damjan Marion51a7e442022-09-08 18:59:03 +02001483}
1484
Damjan Marion5294cdc2023-04-04 17:06:26 +00001485static_always_inline uword
Damjan Marionefeea5b2022-02-10 15:01:03 +01001486vlib_frame_bitmap_find_first_set (uword *bmp)
1487{
Damjan Marion5294cdc2023-04-04 17:06:26 +00001488 uword rv = uword_bitmap_find_first_set (bmp);
1489 ASSERT (rv < VLIB_FRAME_BITMAP_N_UWORDS * uword_bits);
1490 return rv;
Damjan Marionefeea5b2022-02-10 15:01:03 +01001491}
1492
1493#define foreach_vlib_frame_bitmap_set_bit_index(i, v) \
1494 for (uword _off = 0; _off < ARRAY_LEN (v); _off++) \
1495 for (uword _tmp = \
1496 (v[_off]) + 0 * (uword) (i = _off * uword_bits + \
1497 get_lowest_set_bit_index (v[_off])); \
1498 _tmp; i = _off * uword_bits + get_lowest_set_bit_index ( \
1499 _tmp = clear_lowest_set_bit (_tmp)))
1500
Ed Warnickecb9cada2015-12-08 15:45:58 -07001501#endif /* included_vlib_node_funcs_h */
Dave Barach9b8ffd92016-07-08 08:13:45 -04001502
1503/*
1504 * fd.io coding-style-patch-verification: ON
1505 *
1506 * Local Variables:
1507 * eval: (c-set-style "gnu")
1508 * End:
1509 */