blob: 115127ffee0246537c50128ac59b2fcdefdeb432 [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];
62 u32 stack_bytes = p ? p->log2_n_stack_bytes : VLIB_THREAD_STACK_SIZE;
63 __sanitizer_start_switch_fiber (&vm->asan_stack_save, stack, stack_bytes);
64#endif
65}
66
67static_always_inline void
68vlib_process_finish_switch_stack (vlib_main_t * vm)
69{
70#ifdef CLIB_SANITIZE_ADDR
71 const void *bottom_old;
72 size_t size_old;
73
74 __sanitizer_finish_switch_fiber (&vm->asan_stack_save, &bottom_old,
75 &size_old);
76#endif
77}
78
Dave Barach9770e202016-07-06 10:29:27 -040079/** \brief Get vlib node by index.
80 @warning This function will ASSERT if @c i is out of range.
81 @param vm vlib_main_t pointer, varies by thread
82 @param i node index.
83 @return pointer to the requested vlib_node_t.
84*/
85
Ed Warnickecb9cada2015-12-08 15:45:58 -070086always_inline vlib_node_t *
87vlib_get_node (vlib_main_t * vm, u32 i)
Dave Barach9b8ffd92016-07-08 08:13:45 -040088{
89 return vec_elt (vm->node_main.nodes, i);
90}
Ed Warnickecb9cada2015-12-08 15:45:58 -070091
Dave Barach9770e202016-07-06 10:29:27 -040092/** \brief Get vlib node by graph arc (next) index.
93 @param vm vlib_main_t pointer, varies by thread
94 @param node_index index of original node
95 @param next_index graph arc index
96 @return pointer to the vlib_node_t at the end of the indicated arc
97*/
98
Ed Warnickecb9cada2015-12-08 15:45:58 -070099always_inline vlib_node_t *
100vlib_get_next_node (vlib_main_t * vm, u32 node_index, u32 next_index)
101{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400102 vlib_node_main_t *nm = &vm->node_main;
103 vlib_node_t *n;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700104
105 n = vec_elt (nm->nodes, node_index);
106 ASSERT (next_index < vec_len (n->next_nodes));
107 return vlib_get_node (vm, n->next_nodes[next_index]);
108}
109
Dave Barach9770e202016-07-06 10:29:27 -0400110/** \brief Get node runtime by node index.
111 @param vm vlib_main_t pointer, varies by thread
112 @param node_index index of node
113 @return pointer to the indicated vlib_node_runtime_t
114*/
115
Ed Warnickecb9cada2015-12-08 15:45:58 -0700116always_inline vlib_node_runtime_t *
117vlib_node_get_runtime (vlib_main_t * vm, u32 node_index)
118{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400119 vlib_node_main_t *nm = &vm->node_main;
120 vlib_node_t *n = vec_elt (nm->nodes, node_index);
121 vlib_process_t *p;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700122 if (n->type != VLIB_NODE_TYPE_PROCESS)
123 return vec_elt_at_index (nm->nodes_by_type[n->type], n->runtime_index);
124 else
125 {
126 p = vec_elt (nm->processes, n->runtime_index);
127 return &p->node_runtime;
128 }
129}
130
Dave Barach9770e202016-07-06 10:29:27 -0400131/** \brief Get node runtime private data by node index.
132 @param vm vlib_main_t pointer, varies by thread
133 @param node_index index of the node
134 @return pointer to the indicated vlib_node_runtime_t private data
135*/
136
Ed Warnickecb9cada2015-12-08 15:45:58 -0700137always_inline void *
138vlib_node_get_runtime_data (vlib_main_t * vm, u32 node_index)
139{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400140 vlib_node_runtime_t *r = vlib_node_get_runtime (vm, node_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700141 return r->runtime_data;
142}
143
Dave Barach9770e202016-07-06 10:29:27 -0400144/** \brief Set node runtime private data.
145 @param vm vlib_main_t pointer, varies by thread
146 @param node_index index of the node
147 @param runtime_data arbitrary runtime private data
148 @param n_runtime_data_bytes size of runtime private data
149*/
150
Ed Warnickecb9cada2015-12-08 15:45:58 -0700151always_inline void
152vlib_node_set_runtime_data (vlib_main_t * vm, u32 node_index,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400153 void *runtime_data, u32 n_runtime_data_bytes)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700154{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400155 vlib_node_t *n = vlib_get_node (vm, node_index);
156 vlib_node_runtime_t *r = vlib_node_get_runtime (vm, node_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700157
158 n->runtime_data_bytes = n_runtime_data_bytes;
159 vec_free (n->runtime_data);
160 vec_add (n->runtime_data, runtime_data, n_runtime_data_bytes);
161
Damjan Marioneb90b7f2016-11-01 01:26:01 +0100162 ASSERT (vec_len (n->runtime_data) <= sizeof (vlib_node_runtime_t) -
163 STRUCT_OFFSET_OF (vlib_node_runtime_t, runtime_data));
164
Ed Warnickecb9cada2015-12-08 15:45:58 -0700165 if (vec_len (n->runtime_data) > 0)
Dave Barach178cf492018-11-13 16:34:13 -0500166 clib_memcpy_fast (r->runtime_data, n->runtime_data,
167 vec_len (n->runtime_data));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700168}
169
Dave Barach9770e202016-07-06 10:29:27 -0400170/** \brief Set node dispatch state.
171 @param vm vlib_main_t pointer, varies by thread
172 @param node_index index of the node
173 @param new_state new state for node, see vlib_node_state_t
174*/
Ed Warnickecb9cada2015-12-08 15:45:58 -0700175always_inline void
Dave Barach9b8ffd92016-07-08 08:13:45 -0400176vlib_node_set_state (vlib_main_t * vm, u32 node_index,
177 vlib_node_state_t new_state)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700178{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400179 vlib_node_main_t *nm = &vm->node_main;
180 vlib_node_t *n;
181 vlib_node_runtime_t *r;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700182
183 n = vec_elt (nm->nodes, node_index);
184 if (n->type == VLIB_NODE_TYPE_PROCESS)
185 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400186 vlib_process_t *p = vec_elt (nm->processes, n->runtime_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700187 r = &p->node_runtime;
188
189 /* When disabling make sure flags are cleared. */
190 p->flags &= ~(VLIB_PROCESS_RESUME_PENDING
191 | VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_CLOCK
192 | VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_EVENT);
193 }
194 else
195 r = vec_elt_at_index (nm->nodes_by_type[n->type], n->runtime_index);
196
197 ASSERT (new_state < VLIB_N_NODE_STATE);
198
199 if (n->type == VLIB_NODE_TYPE_INPUT)
200 {
201 ASSERT (nm->input_node_counts_by_state[n->state] > 0);
202 nm->input_node_counts_by_state[n->state] -= 1;
203 nm->input_node_counts_by_state[new_state] += 1;
204 }
205
Tom Seidenberg6c81f5a2020-07-10 15:49:03 +0000206 if (PREDICT_FALSE (r->state == VLIB_NODE_STATE_DISABLED))
207 vlib_node_runtime_perf_counter (vm, r, 0, 0, 0,
208 VLIB_NODE_RUNTIME_PERF_RESET);
209
Ed Warnickecb9cada2015-12-08 15:45:58 -0700210 n->state = new_state;
211 r->state = new_state;
212}
213
Damjan Marion153646e2017-04-05 18:15:45 +0200214/** \brief Get node dispatch state.
215 @param vm vlib_main_t pointer, varies by thread
216 @param node_index index of the node
217 @return state for node, see vlib_node_state_t
218*/
219always_inline vlib_node_state_t
220vlib_node_get_state (vlib_main_t * vm, u32 node_index)
221{
222 vlib_node_main_t *nm = &vm->node_main;
223 vlib_node_t *n;
224 n = vec_elt (nm->nodes, node_index);
225 return n->state;
226}
227
Ed Warnickecb9cada2015-12-08 15:45:58 -0700228always_inline void
Florin Coras982e44f2021-03-19 13:12:41 -0700229vlib_node_set_flag (vlib_main_t *vm, u32 node_index, u16 flag, u8 enable)
230{
231 vlib_node_runtime_t *r;
232 vlib_node_t *n;
233
234 n = vlib_get_node (vm, node_index);
235 r = vlib_node_get_runtime (vm, node_index);
236
237 if (enable)
238 {
239 n->flags |= flag;
240 r->flags |= flag;
241 }
242 else
243 {
244 n->flags &= ~flag;
245 r->flags &= ~flag;
246 }
247}
248
249always_inline void
Damjan Marion94100532020-11-06 23:25:57 +0100250vlib_node_set_interrupt_pending (vlib_main_t *vm, u32 node_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700251{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400252 vlib_node_main_t *nm = &vm->node_main;
253 vlib_node_t *n = vec_elt (nm->nodes, node_index);
Damjan Marion94100532020-11-06 23:25:57 +0100254
Ed Warnickecb9cada2015-12-08 15:45:58 -0700255 ASSERT (n->type == VLIB_NODE_TYPE_INPUT);
Damjan Marion1033b492020-06-03 12:20:41 +0200256
Damjan Marion94100532020-11-06 23:25:57 +0100257 if (vm != vlib_get_main ())
258 clib_interrupt_set_atomic (nm->interrupts, n->runtime_index);
Damjan Marion1033b492020-06-03 12:20:41 +0200259 else
Damjan Marion94100532020-11-06 23:25:57 +0100260 clib_interrupt_set (nm->interrupts, n->runtime_index);
Damjan Marion1033b492020-06-03 12:20:41 +0200261
Damjan Marion94100532020-11-06 23:25:57 +0100262 __atomic_store_n (nm->pending_interrupts, 1, __ATOMIC_RELEASE);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700263}
264
265always_inline vlib_process_t *
266vlib_get_process_from_node (vlib_main_t * vm, vlib_node_t * node)
267{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400268 vlib_node_main_t *nm = &vm->node_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700269 ASSERT (node->type == VLIB_NODE_TYPE_PROCESS);
270 return vec_elt (nm->processes, node->runtime_index);
271}
272
Ed Warnickecb9cada2015-12-08 15:45:58 -0700273always_inline vlib_frame_t *
Andreas Schultz58b2eb12019-07-15 15:40:56 +0200274vlib_get_frame (vlib_main_t * vm, vlib_frame_t * f)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700275{
Andreas Schultz58b2eb12019-07-15 15:40:56 +0200276 ASSERT (f != NULL);
Damjan Marion633b6fd2018-09-14 14:38:53 +0200277 ASSERT (f->frame_flags & VLIB_FRAME_IS_ALLOCATED);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700278 return f;
279}
280
Damjan Marion296988d2019-02-21 20:24:54 +0100281always_inline void
282vlib_frame_no_append (vlib_frame_t * f)
283{
284 f->frame_flags |= VLIB_FRAME_NO_APPEND;
285}
286
Dave Barach9770e202016-07-06 10:29:27 -0400287/** \brief Get pointer to frame vector data.
288 @param f vlib_frame_t pointer
289 @return pointer to first vector element in frame
290*/
Ed Warnickecb9cada2015-12-08 15:45:58 -0700291always_inline void *
292vlib_frame_vector_args (vlib_frame_t * f)
293{
Damjan Marionb32bd702021-12-23 17:05:02 +0100294 ASSERT (f->vector_offset);
295 return (void *) f + f->vector_offset;
296}
297
298/** \brief Get pointer to frame vector aux data.
299 @param f vlib_frame_t pointer
300 @return pointer to first vector aux data element in frame
301*/
302always_inline void *
303vlib_frame_aux_args (vlib_frame_t *f)
304{
305 ASSERT (f->aux_offset);
306 return (void *) f + f->aux_offset;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700307}
308
Dave Barach9770e202016-07-06 10:29:27 -0400309/** \brief Get pointer to frame scalar data.
310
Dave Barach9770e202016-07-06 10:29:27 -0400311 @param f vlib_frame_t pointer
312
313 @return arbitrary node scalar data
314
315 @sa vlib_frame_vector_args
316*/
Ed Warnickecb9cada2015-12-08 15:45:58 -0700317always_inline void *
Damjan Mariona3d59862018-11-10 10:23:00 +0100318vlib_frame_scalar_args (vlib_frame_t * f)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400319{
Damjan Marionb32bd702021-12-23 17:05:02 +0100320 ASSERT (f->scalar_offset);
321 return (void *) f + f->scalar_offset;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400322}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700323
324always_inline vlib_next_frame_t *
325vlib_node_runtime_get_next_frame (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400326 vlib_node_runtime_t * n, u32 next_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700327{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400328 vlib_node_main_t *nm = &vm->node_main;
329 vlib_next_frame_t *nf;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700330
331 ASSERT (next_index < n->n_next_nodes);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400332 nf = vec_elt_at_index (nm->next_frames, n->next_frame_index + next_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700333
334 if (CLIB_DEBUG > 0)
335 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400336 vlib_node_t *node, *next;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700337 node = vec_elt (nm->nodes, n->node_index);
338 next = vec_elt (nm->nodes, node->next_nodes[next_index]);
339 ASSERT (nf->node_runtime_index == next->runtime_index);
340 }
341
342 return nf;
343}
344
Dave Barach9770e202016-07-06 10:29:27 -0400345/** \brief Get pointer to frame by (@c node_index, @c next_index).
346
347 @warning This is not a function that you should call directly.
348 See @ref vlib_get_next_frame instead.
349
350 @param vm vlib_main_t pointer, varies by thread
351 @param node_index index of the node
352 @param next_index graph arc index
353
354 @return pointer to the requested vlib_next_frame_t
355
356 @sa vlib_get_next_frame
357*/
358
Ed Warnickecb9cada2015-12-08 15:45:58 -0700359always_inline vlib_next_frame_t *
Dave Barach9b8ffd92016-07-08 08:13:45 -0400360vlib_node_get_next_frame (vlib_main_t * vm, u32 node_index, u32 next_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700361{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400362 vlib_node_main_t *nm = &vm->node_main;
363 vlib_node_t *n;
364 vlib_node_runtime_t *r;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700365
366 n = vec_elt (nm->nodes, node_index);
367 r = vec_elt_at_index (nm->nodes_by_type[n->type], n->runtime_index);
368 return vlib_node_runtime_get_next_frame (vm, r, next_index);
369}
370
Dave Barach9b8ffd92016-07-08 08:13:45 -0400371vlib_frame_t *vlib_get_next_frame_internal (vlib_main_t * vm,
372 vlib_node_runtime_t * node,
373 u32 next_index,
374 u32 alloc_new_frame);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700375
Mohammed Hawaricd758e62022-05-31 18:11:05 +0200376#define vlib_get_next_frame_macro(vm, node, next_index, vectors, \
377 n_vectors_left, alloc_new_frame) \
378 do \
379 { \
380 vlib_frame_t *_f = vlib_get_next_frame_internal ( \
381 (vm), (node), (next_index), (alloc_new_frame)); \
382 u32 _n = _f->n_vectors; \
383 (vectors) = vlib_frame_vector_args (_f) + _n * sizeof ((vectors)[0]); \
384 (n_vectors_left) = VLIB_FRAME_SIZE - _n; \
385 } \
386 while (0)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700387
Mohammed Hawaricd758e62022-05-31 18:11:05 +0200388#define vlib_get_next_frame_macro_with_aux(vm, node, next_index, vectors, \
389 n_vectors_left, alloc_new_frame, \
390 aux_data, maybe_no_aux) \
391 do \
392 { \
393 vlib_frame_t *_f = vlib_get_next_frame_internal ( \
394 (vm), (node), (next_index), (alloc_new_frame)); \
395 u32 _n = _f->n_vectors; \
396 (vectors) = vlib_frame_vector_args (_f) + _n * sizeof ((vectors)[0]); \
397 if ((maybe_no_aux) && (_f)->aux_offset == 0) \
398 (aux_data) = NULL; \
399 else \
400 (aux_data) = vlib_frame_aux_args (_f) + _n * sizeof ((aux_data)[0]); \
401 (n_vectors_left) = VLIB_FRAME_SIZE - _n; \
402 } \
403 while (0)
Dave Barach9770e202016-07-06 10:29:27 -0400404
Dave Barach9b8ffd92016-07-08 08:13:45 -0400405/** \brief Get pointer to next frame vector data by
Dave Barach9770e202016-07-06 10:29:27 -0400406 (@c vlib_node_runtime_t, @c next_index).
407 Standard single/dual loop boilerplate element.
408 @attention This is a MACRO, with SIDE EFFECTS.
409
410 @param vm vlib_main_t pointer, varies by thread
411 @param node current node vlib_node_runtime_t pointer
412 @param next_index requested graph arc index
413
414 @return @c vectors -- pointer to next available vector slot
415 @return @c n_vectors_left -- number of vector slots available
416*/
Mohammed Hawaricd758e62022-05-31 18:11:05 +0200417#define vlib_get_next_frame(vm, node, next_index, vectors, n_vectors_left) \
418 vlib_get_next_frame_macro (vm, node, next_index, vectors, n_vectors_left, \
Ed Warnickecb9cada2015-12-08 15:45:58 -0700419 /* alloc new frame */ 0)
420
Mohammed Hawaricd758e62022-05-31 18:11:05 +0200421#define vlib_get_new_next_frame(vm, node, next_index, vectors, \
422 n_vectors_left) \
423 vlib_get_next_frame_macro (vm, node, next_index, vectors, n_vectors_left, \
Ed Warnickecb9cada2015-12-08 15:45:58 -0700424 /* alloc new frame */ 1)
425
Mohammed Hawaricd758e62022-05-31 18:11:05 +0200426/** \brief Get pointer to next frame vector data and next frame aux data by
427 (@c vlib_node_runtime_t, @c next_index).
428 Standard single/dual loop boilerplate element.
429 @attention This is a MACRO, with SIDE EFFECTS.
430 @attention This MACRO is unsafe in case the next node does not support
431 aux_data
432
433 @param vm vlib_main_t pointer, varies by thread
434 @param node current node vlib_node_runtime_t pointer
435 @param next_index requested graph arc index
436
437 @return @c vectors -- pointer to next available vector slot
438 @return @c aux_data -- pointer to next available aux data slot
439 @return @c n_vectors_left -- number of vector slots available
440*/
441#define vlib_get_next_frame_with_aux(vm, node, next_index, vectors, aux_data, \
442 n_vectors_left) \
443 vlib_get_next_frame_macro_with_aux ( \
444 vm, node, next_index, vectors, n_vectors_left, /* alloc new frame */ 0, \
445 aux_data, /* maybe_no_aux */ 0)
446
447#define vlib_get_new_next_frame_with_aux(vm, node, next_index, vectors, \
448 aux_data, n_vectors_left) \
449 vlib_get_next_frame_macro_with_aux ( \
450 vm, node, next_index, vectors, n_vectors_left, /* alloc new frame */ 1, \
451 aux_data, /* maybe_no_aux */ 0)
452
453/** \brief Get pointer to next frame vector data and next frame aux data by
454 (@c vlib_node_runtime_t, @c next_index).
455 Standard single/dual loop boilerplate element.
456 @attention This is a MACRO, with SIDE EFFECTS.
457 @attention This MACRO is safe in case the next node does not support aux_data.
458 In that case aux_data is set to NULL.
459
460 @param vm vlib_main_t pointer, varies by thread
461 @param node current node vlib_node_runtime_t pointer
462 @param next_index requested graph arc index
463
464 @return @c vectors -- pointer to next available vector slot
465 @return @c aux_data -- pointer to next available aux data slot
466 @return @c n_vectors_left -- number of vector slots available
467*/
468#define vlib_get_next_frame_with_aux_safe(vm, node, next_index, vectors, \
469 aux_data, n_vectors_left) \
470 vlib_get_next_frame_macro_with_aux ( \
471 vm, node, next_index, vectors, n_vectors_left, /* alloc new frame */ 0, \
472 aux_data, /* maybe_no_aux */ 1)
473
474#define vlib_get_new_next_frame_with_aux_safe(vm, node, next_index, vectors, \
475 aux_data, n_vectors_left) \
476 vlib_get_next_frame_macro_with_aux ( \
477 vm, node, next_index, vectors, n_vectors_left, /* alloc new frame */ 1, \
478 aux_data, /* maybe_no_aux */ 1)
479
Dave Barach9770e202016-07-06 10:29:27 -0400480/** \brief Release pointer to next frame vector data.
481 Standard single/dual loop boilerplate element.
482 @param vm vlib_main_t pointer, varies by thread
483 @param r current node vlib_node_runtime_t pointer
484 @param next_index graph arc index
485 @param n_packets_left number of slots still available in vector
486*/
Ed Warnickecb9cada2015-12-08 15:45:58 -0700487void
488vlib_put_next_frame (vlib_main_t * vm,
489 vlib_node_runtime_t * r,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400490 u32 next_index, u32 n_packets_left);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700491
492/* Combination get plus put. Returns vector argument just added. */
493#define vlib_set_next_frame(vm,node,next_index,v) \
494({ \
495 uword _n_left; \
496 vlib_get_next_frame ((vm), (node), (next_index), (v), _n_left); \
497 ASSERT (_n_left > 0); \
498 vlib_put_next_frame ((vm), (node), (next_index), _n_left - 1); \
499 (v); \
500})
501
Mohammed Hawari16052482022-06-02 13:55:36 +0200502#define vlib_set_next_frame_with_aux_safe(vm, node, next_index, v, aux) \
503 ({ \
504 uword _n_left; \
505 vlib_get_next_frame_with_aux_safe ((vm), (node), (next_index), (v), \
506 (aux), _n_left); \
507 ASSERT (_n_left > 0); \
508 vlib_put_next_frame ((vm), (node), (next_index), _n_left - 1); \
509 (v); \
510 })
511
Ed Warnickecb9cada2015-12-08 15:45:58 -0700512always_inline void
513vlib_set_next_frame_buffer (vlib_main_t * vm,
514 vlib_node_runtime_t * node,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400515 u32 next_index, u32 buffer_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700516{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400517 u32 *p;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700518 p = vlib_set_next_frame (vm, node, next_index, p);
519 p[0] = buffer_index;
520}
521
Mohammed Hawari16052482022-06-02 13:55:36 +0200522always_inline void
523vlib_set_next_frame_buffer_with_aux_safe (vlib_main_t *vm,
524 vlib_node_runtime_t *node,
525 u32 next_index, u32 buffer_index,
526 u32 aux)
527{
528 u32 *p;
529 u32 *a;
530 p = vlib_set_next_frame_with_aux_safe (vm, node, next_index, p, a);
531 p[0] = buffer_index;
532 if (a)
533 a[0] = aux;
534}
535
Dave Barach9b8ffd92016-07-08 08:13:45 -0400536vlib_frame_t *vlib_get_frame_to_node (vlib_main_t * vm, u32 to_node_index);
537void vlib_put_frame_to_node (vlib_main_t * vm, u32 to_node_index,
538 vlib_frame_t * f);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700539
Ed Warnickecb9cada2015-12-08 15:45:58 -0700540always_inline uword
541vlib_in_process_context (vlib_main_t * vm)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400542{
543 return vm->node_main.current_process_index != ~0;
544}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700545
Florin Coras66b11312017-07-31 17:18:03 -0700546always_inline vlib_process_t *
547vlib_get_current_process (vlib_main_t * vm)
548{
549 vlib_node_main_t *nm = &vm->node_main;
550 if (vlib_in_process_context (vm))
551 return vec_elt (nm->processes, nm->current_process_index);
552 return 0;
553}
554
Ed Warnickecb9cada2015-12-08 15:45:58 -0700555always_inline uword
556vlib_current_process (vlib_main_t * vm)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400557{
558 return vlib_get_current_process (vm)->node_runtime.node_index;
559}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700560
Damjan Marion698eeb12020-09-11 14:11:11 +0200561always_inline u32
562vlib_get_current_process_node_index (vlib_main_t * vm)
563{
564 vlib_process_t *process = vlib_get_current_process (vm);
565 return process->node_runtime.node_index;
566}
567
Dave Barach5c20a012017-06-13 08:48:31 -0400568/** Returns TRUE if a process suspend time is less than 10us
Dave Barach2ab470a2016-08-10 18:38:36 -0400569 @param dt - remaining poll time in seconds
Dave Barach5c20a012017-06-13 08:48:31 -0400570 @returns 1 if dt < 10e-6, 0 otherwise
Dave Barach2ab470a2016-08-10 18:38:36 -0400571*/
Ed Warnickecb9cada2015-12-08 15:45:58 -0700572always_inline uword
573vlib_process_suspend_time_is_zero (f64 dt)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400574{
Dave Barach5c20a012017-06-13 08:48:31 -0400575 return dt < 10e-6;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400576}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700577
Dave Barach2ab470a2016-08-10 18:38:36 -0400578/** Suspend a vlib cooperative multi-tasking thread for a period of time
579 @param vm - vlib_main_t *
580 @param dt - suspend interval in seconds
581 @returns VLIB_PROCESS_RESUME_LONGJMP_RESUME, routinely ignored
582*/
583
Ed Warnickecb9cada2015-12-08 15:45:58 -0700584always_inline uword
585vlib_process_suspend (vlib_main_t * vm, f64 dt)
586{
587 uword r;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400588 vlib_node_main_t *nm = &vm->node_main;
589 vlib_process_t *p = vec_elt (nm->processes, nm->current_process_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700590
591 if (vlib_process_suspend_time_is_zero (dt))
592 return VLIB_PROCESS_RESUME_LONGJMP_RESUME;
593
594 p->flags |= VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_CLOCK;
595 r = clib_setjmp (&p->resume_longjmp, VLIB_PROCESS_RESUME_LONGJMP_SUSPEND);
596 if (r == VLIB_PROCESS_RESUME_LONGJMP_SUSPEND)
597 {
Dave Barach5c20a012017-06-13 08:48:31 -0400598 /* expiration time in 10us ticks */
599 p->resume_clock_interval = dt * 1e5;
Damjan Marioncea46522020-05-21 16:47:05 +0200600 vlib_process_start_switch_stack (vm, 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700601 clib_longjmp (&p->return_longjmp, VLIB_PROCESS_RETURN_LONGJMP_SUSPEND);
602 }
Damjan Marioncea46522020-05-21 16:47:05 +0200603 else
604 vlib_process_finish_switch_stack (vm);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700605
606 return r;
607}
608
609always_inline void
Dave Barach9b8ffd92016-07-08 08:13:45 -0400610vlib_process_free_event_type (vlib_process_t * p, uword t,
611 uword is_one_time_event)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700612{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400613 ASSERT (!pool_is_free_index (p->event_type_pool, t));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700614 pool_put_index (p->event_type_pool, t);
615 if (is_one_time_event)
616 p->one_time_event_type_bitmap =
617 clib_bitmap_andnoti (p->one_time_event_type_bitmap, t);
618}
619
620always_inline void
621vlib_process_maybe_free_event_type (vlib_process_t * p, uword t)
622{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400623 ASSERT (!pool_is_free_index (p->event_type_pool, t));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700624 if (clib_bitmap_get (p->one_time_event_type_bitmap, t))
625 vlib_process_free_event_type (p, t, /* is_one_time_event */ 1);
626}
627
628always_inline void *
Dave Barach9b8ffd92016-07-08 08:13:45 -0400629vlib_process_get_event_data (vlib_main_t * vm,
630 uword * return_event_type_opaque)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700631{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400632 vlib_node_main_t *nm = &vm->node_main;
633 vlib_process_t *p;
634 vlib_process_event_type_t *et;
Gabriel Ganne71d73fe2017-02-04 10:51:04 +0100635 uword t;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400636 void *event_data_vector;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700637
638 p = vec_elt (nm->processes, nm->current_process_index);
639
640 /* Find first type with events ready.
641 Return invalid type when there's nothing there. */
642 t = clib_bitmap_first_set (p->non_empty_event_type_bitmap);
643 if (t == ~0)
644 return 0;
645
Dave Barach9b8ffd92016-07-08 08:13:45 -0400646 p->non_empty_event_type_bitmap =
647 clib_bitmap_andnoti (p->non_empty_event_type_bitmap, t);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700648
Gabriel Ganne71d73fe2017-02-04 10:51:04 +0100649 ASSERT (_vec_len (p->pending_event_data_by_type_index[t]) > 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700650 event_data_vector = p->pending_event_data_by_type_index[t];
651 p->pending_event_data_by_type_index[t] = 0;
652
653 et = pool_elt_at_index (p->event_type_pool, t);
654
655 /* Return user's opaque value and possibly index. */
656 *return_event_type_opaque = et->opaque;
657
658 vlib_process_maybe_free_event_type (p, t);
659
660 return event_data_vector;
661}
662
663/* Return event data vector for later reuse. We reuse event data to avoid
664 repeatedly allocating event vectors in cases where we care about speed. */
665always_inline void
Dave Barach9b8ffd92016-07-08 08:13:45 -0400666vlib_process_put_event_data (vlib_main_t * vm, void *event_data)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700667{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400668 vlib_node_main_t *nm = &vm->node_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700669 vec_add1 (nm->recycled_event_data_vectors, event_data);
670}
671
Dave Barach2ab470a2016-08-10 18:38:36 -0400672/** Return the first event type which has occurred and a vector of per-event
673 data of that type, or a timeout indication
674
675 @param vm - vlib_main_t pointer
676 @param data_vector - pointer to a (uword *) vector to receive event data
677 @returns either an event type and a vector of per-event instance data,
678 or ~0 to indicate a timeout.
679*/
680
Ed Warnickecb9cada2015-12-08 15:45:58 -0700681always_inline uword
682vlib_process_get_events (vlib_main_t * vm, uword ** data_vector)
683{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400684 vlib_node_main_t *nm = &vm->node_main;
685 vlib_process_t *p;
686 vlib_process_event_type_t *et;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700687 uword r, t, l;
688
689 p = vec_elt (nm->processes, nm->current_process_index);
690
691 /* Find first type with events ready.
692 Return invalid type when there's nothing there. */
693 t = clib_bitmap_first_set (p->non_empty_event_type_bitmap);
694 if (t == ~0)
695 return t;
696
Dave Barach9b8ffd92016-07-08 08:13:45 -0400697 p->non_empty_event_type_bitmap =
698 clib_bitmap_andnoti (p->non_empty_event_type_bitmap, t);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700699
700 l = _vec_len (p->pending_event_data_by_type_index[t]);
701 if (data_vector)
702 vec_add (*data_vector, p->pending_event_data_by_type_index[t], l);
Damjan Marion8bea5892022-04-04 22:40:45 +0200703 vec_set_len (p->pending_event_data_by_type_index[t], 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700704
705 et = pool_elt_at_index (p->event_type_pool, t);
706
707 /* Return user's opaque value. */
708 r = et->opaque;
709
710 vlib_process_maybe_free_event_type (p, t);
711
712 return r;
713}
714
715always_inline uword
Dave Barach9b8ffd92016-07-08 08:13:45 -0400716vlib_process_get_events_helper (vlib_process_t * p, uword t,
717 uword ** data_vector)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700718{
719 uword l;
720
Dave Barach9b8ffd92016-07-08 08:13:45 -0400721 p->non_empty_event_type_bitmap =
722 clib_bitmap_andnoti (p->non_empty_event_type_bitmap, t);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700723
724 l = _vec_len (p->pending_event_data_by_type_index[t]);
725 if (data_vector)
726 vec_add (*data_vector, p->pending_event_data_by_type_index[t], l);
Damjan Marion8bea5892022-04-04 22:40:45 +0200727 vec_set_len (p->pending_event_data_by_type_index[t], 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700728
729 vlib_process_maybe_free_event_type (p, t);
730
731 return l;
732}
733
734/* As above but query as specified type of event. Returns number of
735 events found. */
736always_inline uword
737vlib_process_get_events_with_type (vlib_main_t * vm, uword ** data_vector,
738 uword with_type_opaque)
739{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400740 vlib_node_main_t *nm = &vm->node_main;
741 vlib_process_t *p;
742 uword t, *h;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700743
744 p = vec_elt (nm->processes, nm->current_process_index);
745 h = hash_get (p->event_type_index_by_type_opaque, with_type_opaque);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400746 if (!h)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700747 /* This can happen when an event has not yet been
748 signaled with given opaque type. */
749 return 0;
750
751 t = h[0];
Dave Barach9b8ffd92016-07-08 08:13:45 -0400752 if (!clib_bitmap_get (p->non_empty_event_type_bitmap, t))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700753 return 0;
754
755 return vlib_process_get_events_helper (p, t, data_vector);
756}
757
758always_inline uword *
759vlib_process_wait_for_event (vlib_main_t * vm)
760{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400761 vlib_node_main_t *nm = &vm->node_main;
762 vlib_process_t *p;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700763 uword r;
764
765 p = vec_elt (nm->processes, nm->current_process_index);
766 if (clib_bitmap_is_zero (p->non_empty_event_type_bitmap))
767 {
768 p->flags |= VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_EVENT;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400769 r =
770 clib_setjmp (&p->resume_longjmp, VLIB_PROCESS_RESUME_LONGJMP_SUSPEND);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700771 if (r == VLIB_PROCESS_RESUME_LONGJMP_SUSPEND)
Damjan Marioncea46522020-05-21 16:47:05 +0200772 {
773 vlib_process_start_switch_stack (vm, 0);
774 clib_longjmp (&p->return_longjmp,
775 VLIB_PROCESS_RETURN_LONGJMP_SUSPEND);
776 }
777 else
778 vlib_process_finish_switch_stack (vm);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700779 }
780
781 return p->non_empty_event_type_bitmap;
782}
783
784always_inline uword
785vlib_process_wait_for_one_time_event (vlib_main_t * vm,
786 uword ** data_vector,
787 uword with_type_index)
788{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400789 vlib_node_main_t *nm = &vm->node_main;
790 vlib_process_t *p;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700791 uword r;
792
793 p = vec_elt (nm->processes, nm->current_process_index);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400794 ASSERT (!pool_is_free_index (p->event_type_pool, with_type_index));
795 while (!clib_bitmap_get (p->non_empty_event_type_bitmap, with_type_index))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700796 {
797 p->flags |= VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_EVENT;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400798 r =
799 clib_setjmp (&p->resume_longjmp, VLIB_PROCESS_RESUME_LONGJMP_SUSPEND);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700800 if (r == VLIB_PROCESS_RESUME_LONGJMP_SUSPEND)
Damjan Marioncea46522020-05-21 16:47:05 +0200801 {
802 vlib_process_start_switch_stack (vm, 0);
803 clib_longjmp (&p->return_longjmp,
804 VLIB_PROCESS_RETURN_LONGJMP_SUSPEND);
805 }
806 else
807 vlib_process_finish_switch_stack (vm);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700808 }
809
810 return vlib_process_get_events_helper (p, with_type_index, data_vector);
811}
812
813always_inline uword
814vlib_process_wait_for_event_with_type (vlib_main_t * vm,
815 uword ** data_vector,
816 uword with_type_opaque)
817{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400818 vlib_node_main_t *nm = &vm->node_main;
819 vlib_process_t *p;
820 uword r, *h;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700821
822 p = vec_elt (nm->processes, nm->current_process_index);
823 h = hash_get (p->event_type_index_by_type_opaque, with_type_opaque);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400824 while (!h || !clib_bitmap_get (p->non_empty_event_type_bitmap, h[0]))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700825 {
826 p->flags |= VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_EVENT;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400827 r =
828 clib_setjmp (&p->resume_longjmp, VLIB_PROCESS_RESUME_LONGJMP_SUSPEND);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700829 if (r == VLIB_PROCESS_RESUME_LONGJMP_SUSPEND)
Damjan Marioncea46522020-05-21 16:47:05 +0200830 {
831 vlib_process_start_switch_stack (vm, 0);
832 clib_longjmp (&p->return_longjmp,
833 VLIB_PROCESS_RETURN_LONGJMP_SUSPEND);
834 }
835 else
836 vlib_process_finish_switch_stack (vm);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700837
838 /* See if unknown event type has been signaled now. */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400839 if (!h)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700840 h = hash_get (p->event_type_index_by_type_opaque, with_type_opaque);
841 }
842
843 return vlib_process_get_events_helper (p, h[0], data_vector);
844}
845
Dave Barach2ab470a2016-08-10 18:38:36 -0400846/** Suspend a cooperative multi-tasking thread
847 Waits for an event, or for the indicated number of seconds to elapse
848 @param vm - vlib_main_t pointer
Damjan Marion607de1a2016-08-16 22:53:54 +0200849 @param dt - timeout, in seconds.
Dave Barach2ab470a2016-08-10 18:38:36 -0400850 @returns the remaining time interval
851*/
852
Ed Warnickecb9cada2015-12-08 15:45:58 -0700853always_inline f64
854vlib_process_wait_for_event_or_clock (vlib_main_t * vm, f64 dt)
855{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400856 vlib_node_main_t *nm = &vm->node_main;
857 vlib_process_t *p;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700858 f64 wakeup_time;
859 uword r;
860
861 p = vec_elt (nm->processes, nm->current_process_index);
862
863 if (vlib_process_suspend_time_is_zero (dt)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400864 || !clib_bitmap_is_zero (p->non_empty_event_type_bitmap))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700865 return dt;
866
867 wakeup_time = vlib_time_now (vm) + dt;
868
869 /* Suspend waiting for both clock and event to occur. */
870 p->flags |= (VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_EVENT
871 | VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_CLOCK);
872
873 r = clib_setjmp (&p->resume_longjmp, VLIB_PROCESS_RESUME_LONGJMP_SUSPEND);
874 if (r == VLIB_PROCESS_RESUME_LONGJMP_SUSPEND)
875 {
Dave Barach5c20a012017-06-13 08:48:31 -0400876 p->resume_clock_interval = dt * 1e5;
Damjan Marioncea46522020-05-21 16:47:05 +0200877 vlib_process_start_switch_stack (vm, 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700878 clib_longjmp (&p->return_longjmp, VLIB_PROCESS_RETURN_LONGJMP_SUSPEND);
879 }
Damjan Marioncea46522020-05-21 16:47:05 +0200880 else
881 vlib_process_finish_switch_stack (vm);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700882
883 /* Return amount of time still left to sleep.
884 If <= 0 then we've been waken up by the clock (and not an event). */
885 return wakeup_time - vlib_time_now (vm);
886}
887
888always_inline vlib_process_event_type_t *
889vlib_process_new_event_type (vlib_process_t * p, uword with_type_opaque)
890{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400891 vlib_process_event_type_t *et;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700892 pool_get (p->event_type_pool, et);
893 et->opaque = with_type_opaque;
894 return et;
895}
896
897always_inline uword
Dave Barach9b8ffd92016-07-08 08:13:45 -0400898vlib_process_create_one_time_event (vlib_main_t * vm, uword node_index,
899 uword with_type_opaque)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700900{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400901 vlib_node_main_t *nm = &vm->node_main;
902 vlib_node_t *n = vlib_get_node (vm, node_index);
903 vlib_process_t *p = vec_elt (nm->processes, n->runtime_index);
904 vlib_process_event_type_t *et;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700905 uword t;
906
907 et = vlib_process_new_event_type (p, with_type_opaque);
908 t = et - p->event_type_pool;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400909 p->one_time_event_type_bitmap =
910 clib_bitmap_ori (p->one_time_event_type_bitmap, t);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700911 return t;
912}
913
914always_inline void
Dave Barach9b8ffd92016-07-08 08:13:45 -0400915vlib_process_delete_one_time_event (vlib_main_t * vm, uword node_index,
916 uword t)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700917{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400918 vlib_node_main_t *nm = &vm->node_main;
919 vlib_node_t *n = vlib_get_node (vm, node_index);
920 vlib_process_t *p = vec_elt (nm->processes, n->runtime_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700921
922 ASSERT (clib_bitmap_get (p->one_time_event_type_bitmap, t));
923 vlib_process_free_event_type (p, t, /* is_one_time_event */ 1);
924}
925
926always_inline void *
927vlib_process_signal_event_helper (vlib_node_main_t * nm,
928 vlib_node_t * n,
929 vlib_process_t * p,
930 uword t,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400931 uword n_data_elts, uword n_data_elt_bytes)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700932{
933 uword p_flags, add_to_pending, delete_from_wheel;
Damjan Mariond24b86e2022-03-23 16:59:23 +0100934 u8 *data_to_be_written_by_caller;
Damjan Marione4fa1d22022-04-11 18:41:49 +0200935 vec_attr_t va = { .elt_sz = n_data_elt_bytes };
Ed Warnickecb9cada2015-12-08 15:45:58 -0700936
Dave Barach1403fcd2018-02-05 09:45:43 -0500937 ASSERT (n->type == VLIB_NODE_TYPE_PROCESS);
938
Dave Barach9b8ffd92016-07-08 08:13:45 -0400939 ASSERT (!pool_is_free_index (p->event_type_pool, t));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700940
941 vec_validate (p->pending_event_data_by_type_index, t);
942
943 /* Resize data vector and return caller's data to be written. */
944 {
Damjan Mariond24b86e2022-03-23 16:59:23 +0100945 u8 *data_vec = p->pending_event_data_by_type_index[t];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700946 uword l;
947
Dave Barach9b8ffd92016-07-08 08:13:45 -0400948 if (!data_vec && vec_len (nm->recycled_event_data_vectors))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700949 {
950 data_vec = vec_pop (nm->recycled_event_data_vectors);
fangtong33b18d42021-07-24 14:55:02 +0800951 vec_reset_length (data_vec);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700952 }
953
954 l = vec_len (data_vec);
955
Damjan Marione4fa1d22022-04-11 18:41:49 +0200956 data_vec = _vec_realloc_internal (data_vec, l + n_data_elts, &va);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700957
958 p->pending_event_data_by_type_index[t] = data_vec;
959 data_to_be_written_by_caller = data_vec + l * n_data_elt_bytes;
960 }
961
Dave Barach9b8ffd92016-07-08 08:13:45 -0400962 p->non_empty_event_type_bitmap =
963 clib_bitmap_ori (p->non_empty_event_type_bitmap, t);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700964
965 p_flags = p->flags;
966
967 /* Event was already signalled? */
968 add_to_pending = (p_flags & VLIB_PROCESS_RESUME_PENDING) == 0;
969
970 /* Process will resume when suspend time elapses? */
971 delete_from_wheel = 0;
972 if (p_flags & VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_CLOCK)
973 {
974 /* Waiting for both event and clock? */
975 if (p_flags & VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_EVENT)
Florin Coras40f92462018-08-01 16:25:45 -0700976 {
977 if (!TW (tw_timer_handle_is_free)
978 ((TWT (tw_timer_wheel) *) nm->timing_wheel,
979 p->stop_timer_handle))
980 delete_from_wheel = 1;
981 else
982 /* timer just popped so process should already be on the list */
983 add_to_pending = 0;
984 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700985 else
986 /* Waiting only for clock. Event will be queue and may be
987 handled when timer expires. */
988 add_to_pending = 0;
989 }
990
991 /* Never add current process to pending vector since current process is
992 already running. */
993 add_to_pending &= nm->current_process_index != n->runtime_index;
994
995 if (add_to_pending)
996 {
997 u32 x = vlib_timing_wheel_data_set_suspended_process (n->runtime_index);
998 p->flags = p_flags | VLIB_PROCESS_RESUME_PENDING;
999 vec_add1 (nm->data_from_advancing_timing_wheel, x);
1000 if (delete_from_wheel)
Dave Barach5c20a012017-06-13 08:48:31 -04001001 TW (tw_timer_stop) ((TWT (tw_timer_wheel) *) nm->timing_wheel,
1002 p->stop_timer_handle);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001003 }
1004
1005 return data_to_be_written_by_caller;
1006}
1007
1008always_inline void *
1009vlib_process_signal_event_data (vlib_main_t * vm,
1010 uword node_index,
1011 uword type_opaque,
Dave Barach9b8ffd92016-07-08 08:13:45 -04001012 uword n_data_elts, uword n_data_elt_bytes)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001013{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001014 vlib_node_main_t *nm = &vm->node_main;
1015 vlib_node_t *n = vlib_get_node (vm, node_index);
1016 vlib_process_t *p = vec_elt (nm->processes, n->runtime_index);
1017 uword *h, t;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001018
John Lo609707e2017-09-19 21:45:10 -04001019 /* Must be in main thread */
1020 ASSERT (vlib_get_thread_index () == 0);
1021
Ed Warnickecb9cada2015-12-08 15:45:58 -07001022 h = hash_get (p->event_type_index_by_type_opaque, type_opaque);
Dave Barach9b8ffd92016-07-08 08:13:45 -04001023 if (!h)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001024 {
Dave Barach9b8ffd92016-07-08 08:13:45 -04001025 vlib_process_event_type_t *et =
1026 vlib_process_new_event_type (p, type_opaque);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001027 t = et - p->event_type_pool;
1028 hash_set (p->event_type_index_by_type_opaque, type_opaque, t);
1029 }
1030 else
1031 t = h[0];
1032
Dave Barach9b8ffd92016-07-08 08:13:45 -04001033 return vlib_process_signal_event_helper (nm, n, p, t, n_data_elts,
1034 n_data_elt_bytes);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001035}
1036
1037always_inline void *
1038vlib_process_signal_event_at_time (vlib_main_t * vm,
1039 f64 dt,
1040 uword node_index,
1041 uword type_opaque,
Dave Barach9b8ffd92016-07-08 08:13:45 -04001042 uword n_data_elts, uword n_data_elt_bytes)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001043{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001044 vlib_node_main_t *nm = &vm->node_main;
1045 vlib_node_t *n = vlib_get_node (vm, node_index);
1046 vlib_process_t *p = vec_elt (nm->processes, n->runtime_index);
1047 uword *h, t;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001048
1049 h = hash_get (p->event_type_index_by_type_opaque, type_opaque);
Dave Barach9b8ffd92016-07-08 08:13:45 -04001050 if (!h)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001051 {
Dave Barach9b8ffd92016-07-08 08:13:45 -04001052 vlib_process_event_type_t *et =
1053 vlib_process_new_event_type (p, type_opaque);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001054 t = et - p->event_type_pool;
1055 hash_set (p->event_type_index_by_type_opaque, type_opaque, t);
1056 }
1057 else
1058 t = h[0];
1059
1060 if (vlib_process_suspend_time_is_zero (dt))
Dave Barach9b8ffd92016-07-08 08:13:45 -04001061 return vlib_process_signal_event_helper (nm, n, p, t, n_data_elts,
1062 n_data_elt_bytes);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001063 else
1064 {
Dave Barach9b8ffd92016-07-08 08:13:45 -04001065 vlib_signal_timed_event_data_t *te;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001066
1067 pool_get_aligned (nm->signal_timed_event_data_pool, te, sizeof (te[0]));
1068
1069 te->n_data_elts = n_data_elts;
1070 te->n_data_elt_bytes = n_data_elt_bytes;
1071 te->n_data_bytes = n_data_elts * n_data_elt_bytes;
1072
1073 /* Assert that structure fields are big enough. */
1074 ASSERT (te->n_data_elts == n_data_elts);
1075 ASSERT (te->n_data_elt_bytes == n_data_elt_bytes);
1076 ASSERT (te->n_data_bytes == n_data_elts * n_data_elt_bytes);
1077
1078 te->process_node_index = n->runtime_index;
1079 te->event_type_index = t;
1080
Dave Barach5c20a012017-06-13 08:48:31 -04001081 p->stop_timer_handle =
1082 TW (tw_timer_start) ((TWT (tw_timer_wheel) *) nm->timing_wheel,
1083 vlib_timing_wheel_data_set_timed_event
1084 (te - nm->signal_timed_event_data_pool),
1085 0 /* timer_id */ ,
1086 (vlib_time_now (vm) + dt) * 1e5);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001087
1088 /* Inline data big enough to hold event? */
1089 if (te->n_data_bytes < sizeof (te->inline_event_data))
1090 return te->inline_event_data;
1091 else
1092 {
1093 te->event_data_as_vector = 0;
1094 vec_resize (te->event_data_as_vector, te->n_data_bytes);
1095 return te->event_data_as_vector;
1096 }
1097 }
1098}
1099
1100always_inline void *
1101vlib_process_signal_one_time_event_data (vlib_main_t * vm,
1102 uword node_index,
1103 uword type_index,
1104 uword n_data_elts,
1105 uword n_data_elt_bytes)
1106{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001107 vlib_node_main_t *nm = &vm->node_main;
1108 vlib_node_t *n = vlib_get_node (vm, node_index);
1109 vlib_process_t *p = vec_elt (nm->processes, n->runtime_index);
1110 return vlib_process_signal_event_helper (nm, n, p, type_index, n_data_elts,
1111 n_data_elt_bytes);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001112}
1113
1114always_inline void
1115vlib_process_signal_event (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -04001116 uword node_index, uword type_opaque, uword data)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001117{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001118 uword *d = vlib_process_signal_event_data (vm, node_index, type_opaque,
1119 1 /* elts */ , sizeof (uword));
Ed Warnickecb9cada2015-12-08 15:45:58 -07001120 d[0] = data;
1121}
1122
1123always_inline void
1124vlib_process_signal_event_pointer (vlib_main_t * vm,
1125 uword node_index,
Dave Barach9b8ffd92016-07-08 08:13:45 -04001126 uword type_opaque, void *data)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001127{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001128 void **d = vlib_process_signal_event_data (vm, node_index, type_opaque,
1129 1 /* elts */ , sizeof (data));
Ed Warnickecb9cada2015-12-08 15:45:58 -07001130 d[0] = data;
1131}
1132
Dave Barach69128d02017-09-26 10:54:34 -04001133/**
1134 * Signal event to process from any thread.
1135 *
1136 * When in doubt, use this.
1137 */
1138always_inline void
1139vlib_process_signal_event_mt (vlib_main_t * vm,
1140 uword node_index, uword type_opaque, uword data)
1141{
1142 if (vlib_get_thread_index () != 0)
1143 {
1144 vlib_process_signal_event_mt_args_t args = {
1145 .node_index = node_index,
1146 .type_opaque = type_opaque,
1147 .data = data,
1148 };
1149 vlib_rpc_call_main_thread (vlib_process_signal_event_mt_helper,
1150 (u8 *) & args, sizeof (args));
1151 }
1152 else
1153 vlib_process_signal_event (vm, node_index, type_opaque, data);
1154}
1155
Ed Warnickecb9cada2015-12-08 15:45:58 -07001156always_inline void
1157vlib_process_signal_one_time_event (vlib_main_t * vm,
1158 uword node_index,
Dave Barach9b8ffd92016-07-08 08:13:45 -04001159 uword type_index, uword data)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001160{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001161 uword *d =
1162 vlib_process_signal_one_time_event_data (vm, node_index, type_index,
1163 1 /* elts */ , sizeof (uword));
Ed Warnickecb9cada2015-12-08 15:45:58 -07001164 d[0] = data;
1165}
1166
1167always_inline void
Dave Barach9b8ffd92016-07-08 08:13:45 -04001168vlib_signal_one_time_waiting_process (vlib_main_t * vm,
1169 vlib_one_time_waiting_process_t * p)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001170{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001171 vlib_process_signal_one_time_event (vm, p->node_index, p->one_time_event,
1172 /* data */ ~0);
Dave Barachb7b92992018-10-17 10:38:51 -04001173 clib_memset (p, ~0, sizeof (p[0]));
Ed Warnickecb9cada2015-12-08 15:45:58 -07001174}
1175
1176always_inline void
1177vlib_signal_one_time_waiting_process_vector (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -04001178 vlib_one_time_waiting_process_t
1179 ** wps)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001180{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001181 vlib_one_time_waiting_process_t *wp;
1182 vec_foreach (wp, *wps) vlib_signal_one_time_waiting_process (vm, wp);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001183 vec_free (*wps);
1184}
1185
1186always_inline void
Dave Barach9b8ffd92016-07-08 08:13:45 -04001187vlib_current_process_wait_for_one_time_event (vlib_main_t * vm,
1188 vlib_one_time_waiting_process_t
1189 * p)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001190{
1191 p->node_index = vlib_current_process (vm);
Dave Barach9b8ffd92016-07-08 08:13:45 -04001192 p->one_time_event = vlib_process_create_one_time_event (vm, p->node_index, /* type opaque */
1193 ~0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001194 vlib_process_wait_for_one_time_event (vm,
1195 /* don't care about data */ 0,
1196 p->one_time_event);
1197}
1198
1199always_inline void
1200vlib_current_process_wait_for_one_time_event_vector (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -04001201 vlib_one_time_waiting_process_t
1202 ** wps)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001203{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001204 vlib_one_time_waiting_process_t *wp;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001205 vec_add2 (*wps, wp, 1);
1206 vlib_current_process_wait_for_one_time_event (vm, wp);
1207}
1208
1209always_inline u32
1210vlib_node_runtime_update_main_loop_vector_stats (vlib_main_t * vm,
1211 vlib_node_runtime_t * node,
1212 uword n_vectors)
1213{
1214 u32 i, d, vi0, vi1;
1215 u32 i0, i1;
1216
1217 ASSERT (is_pow2 (ARRAY_LEN (node->main_loop_vector_stats)));
1218 i = ((vm->main_loop_count >> VLIB_LOG2_MAIN_LOOPS_PER_STATS_UPDATE)
1219 & (ARRAY_LEN (node->main_loop_vector_stats) - 1));
1220 i0 = i ^ 0;
1221 i1 = i ^ 1;
1222 d = ((vm->main_loop_count >> VLIB_LOG2_MAIN_LOOPS_PER_STATS_UPDATE)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001223 -
1224 (node->main_loop_count_last_dispatch >>
1225 VLIB_LOG2_MAIN_LOOPS_PER_STATS_UPDATE));
Ed Warnickecb9cada2015-12-08 15:45:58 -07001226 vi0 = node->main_loop_vector_stats[i0];
1227 vi1 = node->main_loop_vector_stats[i1];
1228 vi0 = d == 0 ? vi0 : 0;
1229 vi1 = d <= 1 ? vi1 : 0;
1230 vi0 += n_vectors;
1231 node->main_loop_vector_stats[i0] = vi0;
1232 node->main_loop_vector_stats[i1] = vi1;
1233 node->main_loop_count_last_dispatch = vm->main_loop_count;
1234 /* Return previous counter. */
1235 return node->main_loop_vector_stats[i1];
1236}
1237
1238always_inline f64
1239vlib_node_vectors_per_main_loop_as_float (vlib_main_t * vm, u32 node_index)
1240{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001241 vlib_node_runtime_t *rt = vlib_node_get_runtime (vm, node_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001242 u32 v;
1243
Dave Barach9b8ffd92016-07-08 08:13:45 -04001244 v = vlib_node_runtime_update_main_loop_vector_stats (vm, rt, /* n_vectors */
1245 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001246 return (f64) v / (1 << VLIB_LOG2_MAIN_LOOPS_PER_STATS_UPDATE);
1247}
1248
1249always_inline u32
1250vlib_node_vectors_per_main_loop_as_integer (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 v >> VLIB_LOG2_MAIN_LOOPS_PER_STATS_UPDATE;
1258}
1259
Dmitry Valter9f5b3692022-09-05 15:30:18 +00001260void vlib_frame_free (vlib_main_t *vm, vlib_frame_t *f);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001261
Neale Rannsbb620d72017-06-29 00:19:08 -07001262/* Return the edge index if present, ~0 otherwise */
1263uword vlib_node_get_next (vlib_main_t * vm, uword node, uword next_node);
1264
Ed Warnickecb9cada2015-12-08 15:45:58 -07001265/* Add next node to given node in given slot. */
1266uword
1267vlib_node_add_next_with_slot (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -04001268 uword node, uword next_node, uword slot);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001269
1270/* As above but adds to end of node's next vector. */
1271always_inline uword
1272vlib_node_add_next (vlib_main_t * vm, uword node, uword next_node)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001273{
1274 return vlib_node_add_next_with_slot (vm, node, next_node, ~0);
1275}
Ed Warnickecb9cada2015-12-08 15:45:58 -07001276
1277/* Add next node to given node in given slot. */
1278uword
1279vlib_node_add_named_next_with_slot (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -04001280 uword node, char *next_name, uword slot);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001281
1282/* As above but adds to end of node's next vector. */
1283always_inline uword
Dave Barach9b8ffd92016-07-08 08:13:45 -04001284vlib_node_add_named_next (vlib_main_t * vm, uword node, char *name)
1285{
1286 return vlib_node_add_named_next_with_slot (vm, node, name, ~0);
1287}
Ed Warnickecb9cada2015-12-08 15:45:58 -07001288
Florin Corase86a8ed2018-01-05 03:20:25 -08001289/**
1290 * Get list of nodes
1291 */
Dave Barach1ddbc012018-06-13 09:26:05 -04001292void
1293vlib_node_get_nodes (vlib_main_t * vm, u32 max_threads, int include_stats,
1294 int barrier_sync, vlib_node_t **** node_dupsp,
1295 vlib_main_t *** stat_vmsp);
Florin Corase86a8ed2018-01-05 03:20:25 -08001296
Ed Warnickecb9cada2015-12-08 15:45:58 -07001297/* Query node given name. */
Dave Barach9b8ffd92016-07-08 08:13:45 -04001298vlib_node_t *vlib_get_node_by_name (vlib_main_t * vm, u8 * name);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001299
1300/* Rename a node. */
Dave Barach9b8ffd92016-07-08 08:13:45 -04001301void vlib_node_rename (vlib_main_t * vm, u32 node_index, char *fmt, ...);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001302
1303/* Register new packet processing node. Nodes can be registered
1304 dynamically via this call or statically via the VLIB_REGISTER_NODE
1305 macro. */
Damjan Marionf87acfa2022-03-23 17:36:56 +01001306u32 vlib_register_node (vlib_main_t *vm, vlib_node_registration_t *r,
1307 char *fmt, ...);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001308
Damjan Mariona31698b2021-03-10 14:35:28 +01001309/* Register all node function variants */
1310void vlib_register_all_node_march_variants (vlib_main_t *vm);
1311
Ed Warnickecb9cada2015-12-08 15:45:58 -07001312/* Register all static nodes registered via VLIB_REGISTER_NODE. */
1313void vlib_register_all_static_nodes (vlib_main_t * vm);
1314
1315/* Start a process. */
1316void vlib_start_process (vlib_main_t * vm, uword process_index);
1317
1318/* Sync up runtime and main node stats. */
Dave Barach9b8ffd92016-07-08 08:13:45 -04001319void vlib_node_sync_stats (vlib_main_t * vm, vlib_node_t * n);
Arthur de Kerhor156158f2021-02-18 03:09:42 -08001320void vlib_node_runtime_sync_stats (vlib_main_t *vm, vlib_node_runtime_t *r,
1321 uword n_calls, uword n_vectors,
1322 uword n_clocks);
1323void vlib_node_runtime_sync_stats_node (vlib_node_t *n, vlib_node_runtime_t *r,
1324 uword n_calls, uword n_vectors,
1325 uword n_clocks);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001326
1327/* Node graph initialization function. */
Dave Barach9b8ffd92016-07-08 08:13:45 -04001328clib_error_t *vlib_node_main_init (vlib_main_t * vm);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001329
1330format_function_t format_vlib_node_graph;
1331format_function_t format_vlib_node_name;
1332format_function_t format_vlib_next_node_name;
1333format_function_t format_vlib_node_and_next;
1334format_function_t format_vlib_cpu_time;
1335format_function_t format_vlib_time;
1336/* Parse node name -> node index. */
1337unformat_function_t unformat_vlib_node;
1338
Dave Barach9b8ffd92016-07-08 08:13:45 -04001339always_inline void
1340vlib_node_increment_counter (vlib_main_t * vm, u32 node_index,
1341 u32 counter_index, u64 increment)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001342{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001343 vlib_node_t *n = vlib_get_node (vm, node_index);
1344 vlib_error_main_t *em = &vm->error_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001345 u32 node_counter_base_index = n->error_heap_index;
1346 em->counters[node_counter_base_index + counter_index] += increment;
1347}
1348
Dave Barach11965c72019-05-28 16:31:05 -04001349/** @brief Create a vlib process
1350 * @param vm &vlib_global_main
1351 * @param f the process node function
1352 * @param log2_n_stack_bytes size of the process stack, defaults to 16K
1353 * @return newly-create node index
1354 * @warning call only on the main thread. Barrier sync required
1355 */
1356u32 vlib_process_create (vlib_main_t * vm, char *name,
1357 vlib_node_function_t * f, u32 log2_n_stack_bytes);
1358
Damjan Marion8b60fb02020-11-27 20:15:17 +01001359always_inline int
1360vlib_node_set_dispatch_wrapper (vlib_main_t *vm, vlib_node_function_t *fn)
1361{
1362 if (fn && vm->dispatch_wrapper_fn)
1363 return 1;
1364 vm->dispatch_wrapper_fn = fn;
1365 return 0;
1366}
1367
Damjan Mariona31698b2021-03-10 14:35:28 +01001368int vlib_node_set_march_variant (vlib_main_t *vm, u32 node_index,
1369 clib_march_variant_type_t march_variant);
1370
1371vlib_node_function_t *
1372vlib_node_get_preferred_node_fn_variant (vlib_main_t *vm,
1373 vlib_node_fn_registration_t *regs);
1374
Damjan Marionefeea5b2022-02-10 15:01:03 +01001375/*
1376 * vlib_frame_bitmap functions
1377 */
1378
1379#define VLIB_FRAME_BITMAP_N_UWORDS \
1380 (((VLIB_FRAME_SIZE + uword_bits - 1) & ~(uword_bits - 1)) / uword_bits)
1381
1382typedef uword vlib_frame_bitmap_t[VLIB_FRAME_BITMAP_N_UWORDS];
1383
1384static_always_inline void
1385vlib_frame_bitmap_init (uword *bmp, u32 n_first_bits_set)
1386{
1387 u32 n_left = VLIB_FRAME_BITMAP_N_UWORDS;
1388 while (n_first_bits_set >= (sizeof (uword) * 8) && n_left)
1389 {
1390 bmp++[0] = ~0;
1391 n_first_bits_set -= sizeof (uword) * 8;
1392 n_left--;
1393 }
1394
1395 if (n_first_bits_set && n_left)
1396 {
1397 bmp++[0] = pow2_mask (n_first_bits_set);
1398 n_left--;
1399 }
1400
1401 while (n_left--)
1402 bmp++[0] = 0;
1403}
1404
1405static_always_inline void
1406vlib_frame_bitmap_clear (uword *bmp)
1407{
1408 u32 n_left = VLIB_FRAME_BITMAP_N_UWORDS;
1409 while (n_left--)
1410 bmp++[0] = 0;
1411}
1412
1413static_always_inline void
1414vlib_frame_bitmap_xor (uword *bmp, uword *bmp2)
1415{
1416 u32 n_left = VLIB_FRAME_BITMAP_N_UWORDS;
1417 while (n_left--)
1418 bmp++[0] ^= bmp2++[0];
1419}
1420
1421static_always_inline void
1422vlib_frame_bitmap_or (uword *bmp, uword *bmp2)
1423{
1424 u32 n_left = VLIB_FRAME_BITMAP_N_UWORDS;
1425 while (n_left--)
1426 bmp++[0] |= bmp2++[0];
1427}
1428
Damjan Marion218e4ec2022-03-15 16:16:55 +01001429static_always_inline void
1430vlib_frame_bitmap_and (uword *bmp, uword *bmp2)
1431{
1432 u32 n_left = VLIB_FRAME_BITMAP_N_UWORDS;
1433 while (n_left--)
1434 bmp++[0] &= bmp2++[0];
1435}
1436
Damjan Marionefeea5b2022-02-10 15:01:03 +01001437static_always_inline u32
1438vlib_frame_bitmap_count_set_bits (uword *bmp)
1439{
1440 u32 n_left = VLIB_FRAME_BITMAP_N_UWORDS;
1441 u32 count = 0;
1442 while (n_left--)
1443 count += count_set_bits (bmp++[0]);
1444 return count;
1445}
1446
Damjan Marion51a7e442022-09-08 18:59:03 +02001447static_always_inline uword
1448vlib_frame_bitmap_is_bit_set (uword *bmp, uword bit_index)
1449{
1450 bmp += bit_index / uword_bits;
1451 bit_index %= uword_bits;
1452 return (bmp[0] >> bit_index) & 1;
1453}
1454
Damjan Marionefeea5b2022-02-10 15:01:03 +01001455static_always_inline int
1456vlib_frame_bitmap_find_first_set (uword *bmp)
1457{
1458 uword *b = bmp;
1459 while (b[0] == 0)
1460 {
1461 ASSERT (b - bmp < VLIB_FRAME_BITMAP_N_UWORDS);
1462 b++;
1463 }
1464
1465 return (b - bmp) * uword_bits + get_lowest_set_bit_index (b[0]);
1466}
1467
1468#define foreach_vlib_frame_bitmap_set_bit_index(i, v) \
1469 for (uword _off = 0; _off < ARRAY_LEN (v); _off++) \
1470 for (uword _tmp = \
1471 (v[_off]) + 0 * (uword) (i = _off * uword_bits + \
1472 get_lowest_set_bit_index (v[_off])); \
1473 _tmp; i = _off * uword_bits + get_lowest_set_bit_index ( \
1474 _tmp = clear_lowest_set_bit (_tmp)))
1475
Ed Warnickecb9cada2015-12-08 15:45:58 -07001476#endif /* included_vlib_node_funcs_h */
Dave Barach9b8ffd92016-07-08 08:13:45 -04001477
1478/*
1479 * fd.io coding-style-patch-verification: ON
1480 *
1481 * Local Variables:
1482 * eval: (c-set-style "gnu")
1483 * End:
1484 */