blob: 66f079c0547439ef20048752e4955efe160d9b78 [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 Marioncc8249c2023-07-23 14:24:22 +0200255 void *interrupts;
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
262 ASSERT (0);
Damjan Marion1033b492020-06-03 12:20:41 +0200263
Damjan Marion94100532020-11-06 23:25:57 +0100264 if (vm != vlib_get_main ())
Damjan Marioncc8249c2023-07-23 14:24:22 +0200265 clib_interrupt_set_atomic (interrupts, n->runtime_index);
Damjan Marion1033b492020-06-03 12:20:41 +0200266 else
Damjan Marioncc8249c2023-07-23 14:24:22 +0200267 clib_interrupt_set (interrupts, n->runtime_index);
Damjan Marion1033b492020-06-03 12:20:41 +0200268
Damjan Marioncc8249c2023-07-23 14:24:22 +0200269 __atomic_store_n (&nm->pending_interrupts, 1, __ATOMIC_RELEASE);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700270}
271
272always_inline vlib_process_t *
273vlib_get_process_from_node (vlib_main_t * vm, vlib_node_t * node)
274{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400275 vlib_node_main_t *nm = &vm->node_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700276 ASSERT (node->type == VLIB_NODE_TYPE_PROCESS);
277 return vec_elt (nm->processes, node->runtime_index);
278}
279
Ed Warnickecb9cada2015-12-08 15:45:58 -0700280always_inline vlib_frame_t *
Andreas Schultz58b2eb12019-07-15 15:40:56 +0200281vlib_get_frame (vlib_main_t * vm, vlib_frame_t * f)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700282{
Andreas Schultz58b2eb12019-07-15 15:40:56 +0200283 ASSERT (f != NULL);
Damjan Marion633b6fd2018-09-14 14:38:53 +0200284 ASSERT (f->frame_flags & VLIB_FRAME_IS_ALLOCATED);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700285 return f;
286}
287
Damjan Marion296988d2019-02-21 20:24:54 +0100288always_inline void
289vlib_frame_no_append (vlib_frame_t * f)
290{
291 f->frame_flags |= VLIB_FRAME_NO_APPEND;
292}
293
Dave Barach9770e202016-07-06 10:29:27 -0400294/** \brief Get pointer to frame vector data.
295 @param f vlib_frame_t pointer
296 @return pointer to first vector element in frame
297*/
Ed Warnickecb9cada2015-12-08 15:45:58 -0700298always_inline void *
299vlib_frame_vector_args (vlib_frame_t * f)
300{
Damjan Marionb32bd702021-12-23 17:05:02 +0100301 ASSERT (f->vector_offset);
302 return (void *) f + f->vector_offset;
303}
304
305/** \brief Get pointer to frame vector aux data.
306 @param f vlib_frame_t pointer
307 @return pointer to first vector aux data element in frame
308*/
309always_inline void *
310vlib_frame_aux_args (vlib_frame_t *f)
311{
312 ASSERT (f->aux_offset);
313 return (void *) f + f->aux_offset;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700314}
315
Dave Barach9770e202016-07-06 10:29:27 -0400316/** \brief Get pointer to frame scalar data.
317
Dave Barach9770e202016-07-06 10:29:27 -0400318 @param f vlib_frame_t pointer
319
320 @return arbitrary node scalar data
321
322 @sa vlib_frame_vector_args
323*/
Ed Warnickecb9cada2015-12-08 15:45:58 -0700324always_inline void *
Damjan Mariona3d59862018-11-10 10:23:00 +0100325vlib_frame_scalar_args (vlib_frame_t * f)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400326{
Damjan Marionb32bd702021-12-23 17:05:02 +0100327 ASSERT (f->scalar_offset);
328 return (void *) f + f->scalar_offset;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400329}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700330
331always_inline vlib_next_frame_t *
332vlib_node_runtime_get_next_frame (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400333 vlib_node_runtime_t * n, u32 next_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700334{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400335 vlib_node_main_t *nm = &vm->node_main;
336 vlib_next_frame_t *nf;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700337
338 ASSERT (next_index < n->n_next_nodes);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400339 nf = vec_elt_at_index (nm->next_frames, n->next_frame_index + next_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700340
341 if (CLIB_DEBUG > 0)
342 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400343 vlib_node_t *node, *next;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700344 node = vec_elt (nm->nodes, n->node_index);
345 next = vec_elt (nm->nodes, node->next_nodes[next_index]);
346 ASSERT (nf->node_runtime_index == next->runtime_index);
347 }
348
349 return nf;
350}
351
Dave Barach9770e202016-07-06 10:29:27 -0400352/** \brief Get pointer to frame by (@c node_index, @c next_index).
353
354 @warning This is not a function that you should call directly.
355 See @ref vlib_get_next_frame instead.
356
357 @param vm vlib_main_t pointer, varies by thread
358 @param node_index index of the node
359 @param next_index graph arc index
360
361 @return pointer to the requested vlib_next_frame_t
362
363 @sa vlib_get_next_frame
364*/
365
Ed Warnickecb9cada2015-12-08 15:45:58 -0700366always_inline vlib_next_frame_t *
Dave Barach9b8ffd92016-07-08 08:13:45 -0400367vlib_node_get_next_frame (vlib_main_t * vm, u32 node_index, u32 next_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700368{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400369 vlib_node_main_t *nm = &vm->node_main;
370 vlib_node_t *n;
371 vlib_node_runtime_t *r;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700372
373 n = vec_elt (nm->nodes, node_index);
374 r = vec_elt_at_index (nm->nodes_by_type[n->type], n->runtime_index);
375 return vlib_node_runtime_get_next_frame (vm, r, next_index);
376}
377
Dave Barach9b8ffd92016-07-08 08:13:45 -0400378vlib_frame_t *vlib_get_next_frame_internal (vlib_main_t * vm,
379 vlib_node_runtime_t * node,
380 u32 next_index,
381 u32 alloc_new_frame);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700382
Mohammed Hawaricd758e62022-05-31 18:11:05 +0200383#define vlib_get_next_frame_macro(vm, node, next_index, vectors, \
384 n_vectors_left, alloc_new_frame) \
385 do \
386 { \
387 vlib_frame_t *_f = vlib_get_next_frame_internal ( \
388 (vm), (node), (next_index), (alloc_new_frame)); \
389 u32 _n = _f->n_vectors; \
390 (vectors) = vlib_frame_vector_args (_f) + _n * sizeof ((vectors)[0]); \
391 (n_vectors_left) = VLIB_FRAME_SIZE - _n; \
392 } \
393 while (0)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700394
Mohammed Hawaricd758e62022-05-31 18:11:05 +0200395#define vlib_get_next_frame_macro_with_aux(vm, node, next_index, vectors, \
396 n_vectors_left, alloc_new_frame, \
397 aux_data, maybe_no_aux) \
398 do \
399 { \
400 vlib_frame_t *_f = vlib_get_next_frame_internal ( \
401 (vm), (node), (next_index), (alloc_new_frame)); \
402 u32 _n = _f->n_vectors; \
403 (vectors) = vlib_frame_vector_args (_f) + _n * sizeof ((vectors)[0]); \
404 if ((maybe_no_aux) && (_f)->aux_offset == 0) \
405 (aux_data) = NULL; \
406 else \
407 (aux_data) = vlib_frame_aux_args (_f) + _n * sizeof ((aux_data)[0]); \
408 (n_vectors_left) = VLIB_FRAME_SIZE - _n; \
409 } \
410 while (0)
Dave Barach9770e202016-07-06 10:29:27 -0400411
Dave Barach9b8ffd92016-07-08 08:13:45 -0400412/** \brief Get pointer to next frame vector data by
Dave Barach9770e202016-07-06 10:29:27 -0400413 (@c vlib_node_runtime_t, @c next_index).
414 Standard single/dual loop boilerplate element.
415 @attention This is a MACRO, with SIDE EFFECTS.
416
417 @param vm vlib_main_t pointer, varies by thread
418 @param node current node vlib_node_runtime_t pointer
419 @param next_index requested graph arc index
420
421 @return @c vectors -- pointer to next available vector slot
422 @return @c n_vectors_left -- number of vector slots available
423*/
Mohammed Hawaricd758e62022-05-31 18:11:05 +0200424#define vlib_get_next_frame(vm, node, next_index, vectors, n_vectors_left) \
425 vlib_get_next_frame_macro (vm, node, next_index, vectors, n_vectors_left, \
Ed Warnickecb9cada2015-12-08 15:45:58 -0700426 /* alloc new frame */ 0)
427
Mohammed Hawaricd758e62022-05-31 18:11:05 +0200428#define vlib_get_new_next_frame(vm, node, next_index, vectors, \
429 n_vectors_left) \
430 vlib_get_next_frame_macro (vm, node, next_index, vectors, n_vectors_left, \
Ed Warnickecb9cada2015-12-08 15:45:58 -0700431 /* alloc new frame */ 1)
432
Mohammed Hawaricd758e62022-05-31 18:11:05 +0200433/** \brief Get pointer to next frame vector data and next frame aux data by
434 (@c vlib_node_runtime_t, @c next_index).
435 Standard single/dual loop boilerplate element.
436 @attention This is a MACRO, with SIDE EFFECTS.
437 @attention This MACRO is unsafe in case the next node does not support
438 aux_data
439
440 @param vm vlib_main_t pointer, varies by thread
441 @param node current node vlib_node_runtime_t pointer
442 @param next_index requested graph arc index
443
444 @return @c vectors -- pointer to next available vector slot
445 @return @c aux_data -- pointer to next available aux data slot
446 @return @c n_vectors_left -- number of vector slots available
447*/
448#define vlib_get_next_frame_with_aux(vm, node, next_index, vectors, aux_data, \
449 n_vectors_left) \
450 vlib_get_next_frame_macro_with_aux ( \
451 vm, node, next_index, vectors, n_vectors_left, /* alloc new frame */ 0, \
452 aux_data, /* maybe_no_aux */ 0)
453
454#define vlib_get_new_next_frame_with_aux(vm, node, next_index, vectors, \
455 aux_data, n_vectors_left) \
456 vlib_get_next_frame_macro_with_aux ( \
457 vm, node, next_index, vectors, n_vectors_left, /* alloc new frame */ 1, \
458 aux_data, /* maybe_no_aux */ 0)
459
460/** \brief Get pointer to next frame vector data and next frame aux data by
461 (@c vlib_node_runtime_t, @c next_index).
462 Standard single/dual loop boilerplate element.
463 @attention This is a MACRO, with SIDE EFFECTS.
464 @attention This MACRO is safe in case the next node does not support aux_data.
465 In that case aux_data is set to NULL.
466
467 @param vm vlib_main_t pointer, varies by thread
468 @param node current node vlib_node_runtime_t pointer
469 @param next_index requested graph arc index
470
471 @return @c vectors -- pointer to next available vector slot
472 @return @c aux_data -- pointer to next available aux data slot
473 @return @c n_vectors_left -- number of vector slots available
474*/
475#define vlib_get_next_frame_with_aux_safe(vm, node, next_index, vectors, \
476 aux_data, n_vectors_left) \
477 vlib_get_next_frame_macro_with_aux ( \
478 vm, node, next_index, vectors, n_vectors_left, /* alloc new frame */ 0, \
479 aux_data, /* maybe_no_aux */ 1)
480
481#define vlib_get_new_next_frame_with_aux_safe(vm, node, next_index, vectors, \
482 aux_data, n_vectors_left) \
483 vlib_get_next_frame_macro_with_aux ( \
484 vm, node, next_index, vectors, n_vectors_left, /* alloc new frame */ 1, \
485 aux_data, /* maybe_no_aux */ 1)
486
Dave Barach9770e202016-07-06 10:29:27 -0400487/** \brief Release pointer to next frame vector data.
488 Standard single/dual loop boilerplate element.
489 @param vm vlib_main_t pointer, varies by thread
490 @param r current node vlib_node_runtime_t pointer
491 @param next_index graph arc index
492 @param n_packets_left number of slots still available in vector
493*/
Ed Warnickecb9cada2015-12-08 15:45:58 -0700494void
495vlib_put_next_frame (vlib_main_t * vm,
496 vlib_node_runtime_t * r,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400497 u32 next_index, u32 n_packets_left);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700498
499/* Combination get plus put. Returns vector argument just added. */
500#define vlib_set_next_frame(vm,node,next_index,v) \
501({ \
502 uword _n_left; \
503 vlib_get_next_frame ((vm), (node), (next_index), (v), _n_left); \
504 ASSERT (_n_left > 0); \
505 vlib_put_next_frame ((vm), (node), (next_index), _n_left - 1); \
506 (v); \
507})
508
Mohammed Hawari16052482022-06-02 13:55:36 +0200509#define vlib_set_next_frame_with_aux_safe(vm, node, next_index, v, aux) \
510 ({ \
511 uword _n_left; \
512 vlib_get_next_frame_with_aux_safe ((vm), (node), (next_index), (v), \
513 (aux), _n_left); \
514 ASSERT (_n_left > 0); \
515 vlib_put_next_frame ((vm), (node), (next_index), _n_left - 1); \
516 (v); \
517 })
518
Ed Warnickecb9cada2015-12-08 15:45:58 -0700519always_inline void
520vlib_set_next_frame_buffer (vlib_main_t * vm,
521 vlib_node_runtime_t * node,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400522 u32 next_index, u32 buffer_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700523{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400524 u32 *p;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700525 p = vlib_set_next_frame (vm, node, next_index, p);
526 p[0] = buffer_index;
527}
528
Mohammed Hawari16052482022-06-02 13:55:36 +0200529always_inline void
530vlib_set_next_frame_buffer_with_aux_safe (vlib_main_t *vm,
531 vlib_node_runtime_t *node,
532 u32 next_index, u32 buffer_index,
533 u32 aux)
534{
535 u32 *p;
536 u32 *a;
537 p = vlib_set_next_frame_with_aux_safe (vm, node, next_index, p, a);
538 p[0] = buffer_index;
539 if (a)
540 a[0] = aux;
541}
542
Dave Barach9b8ffd92016-07-08 08:13:45 -0400543vlib_frame_t *vlib_get_frame_to_node (vlib_main_t * vm, u32 to_node_index);
544void vlib_put_frame_to_node (vlib_main_t * vm, u32 to_node_index,
545 vlib_frame_t * f);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700546
Ed Warnickecb9cada2015-12-08 15:45:58 -0700547always_inline uword
548vlib_in_process_context (vlib_main_t * vm)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400549{
550 return vm->node_main.current_process_index != ~0;
551}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700552
Florin Coras66b11312017-07-31 17:18:03 -0700553always_inline vlib_process_t *
554vlib_get_current_process (vlib_main_t * vm)
555{
556 vlib_node_main_t *nm = &vm->node_main;
557 if (vlib_in_process_context (vm))
558 return vec_elt (nm->processes, nm->current_process_index);
559 return 0;
560}
561
Ed Warnickecb9cada2015-12-08 15:45:58 -0700562always_inline uword
563vlib_current_process (vlib_main_t * vm)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400564{
565 return vlib_get_current_process (vm)->node_runtime.node_index;
566}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700567
Damjan Marion698eeb12020-09-11 14:11:11 +0200568always_inline u32
569vlib_get_current_process_node_index (vlib_main_t * vm)
570{
571 vlib_process_t *process = vlib_get_current_process (vm);
572 return process->node_runtime.node_index;
573}
574
Dave Barach5c20a012017-06-13 08:48:31 -0400575/** Returns TRUE if a process suspend time is less than 10us
Dave Barach2ab470a2016-08-10 18:38:36 -0400576 @param dt - remaining poll time in seconds
Dave Barach5c20a012017-06-13 08:48:31 -0400577 @returns 1 if dt < 10e-6, 0 otherwise
Dave Barach2ab470a2016-08-10 18:38:36 -0400578*/
Ed Warnickecb9cada2015-12-08 15:45:58 -0700579always_inline uword
580vlib_process_suspend_time_is_zero (f64 dt)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400581{
Dave Barach5c20a012017-06-13 08:48:31 -0400582 return dt < 10e-6;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400583}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700584
Dave Barach2ab470a2016-08-10 18:38:36 -0400585/** Suspend a vlib cooperative multi-tasking thread for a period of time
586 @param vm - vlib_main_t *
587 @param dt - suspend interval in seconds
588 @returns VLIB_PROCESS_RESUME_LONGJMP_RESUME, routinely ignored
589*/
590
Ed Warnickecb9cada2015-12-08 15:45:58 -0700591always_inline uword
592vlib_process_suspend (vlib_main_t * vm, f64 dt)
593{
594 uword r;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400595 vlib_node_main_t *nm = &vm->node_main;
596 vlib_process_t *p = vec_elt (nm->processes, nm->current_process_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700597
598 if (vlib_process_suspend_time_is_zero (dt))
599 return VLIB_PROCESS_RESUME_LONGJMP_RESUME;
600
601 p->flags |= VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_CLOCK;
602 r = clib_setjmp (&p->resume_longjmp, VLIB_PROCESS_RESUME_LONGJMP_SUSPEND);
603 if (r == VLIB_PROCESS_RESUME_LONGJMP_SUSPEND)
604 {
Dave Barach5c20a012017-06-13 08:48:31 -0400605 /* expiration time in 10us ticks */
606 p->resume_clock_interval = dt * 1e5;
Damjan Marioncea46522020-05-21 16:47:05 +0200607 vlib_process_start_switch_stack (vm, 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700608 clib_longjmp (&p->return_longjmp, VLIB_PROCESS_RETURN_LONGJMP_SUSPEND);
609 }
Damjan Marioncea46522020-05-21 16:47:05 +0200610 else
611 vlib_process_finish_switch_stack (vm);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700612
613 return r;
614}
615
616always_inline void
Dave Barach9b8ffd92016-07-08 08:13:45 -0400617vlib_process_free_event_type (vlib_process_t * p, uword t,
618 uword is_one_time_event)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700619{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400620 ASSERT (!pool_is_free_index (p->event_type_pool, t));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700621 pool_put_index (p->event_type_pool, t);
622 if (is_one_time_event)
623 p->one_time_event_type_bitmap =
624 clib_bitmap_andnoti (p->one_time_event_type_bitmap, t);
625}
626
627always_inline void
628vlib_process_maybe_free_event_type (vlib_process_t * p, uword t)
629{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400630 ASSERT (!pool_is_free_index (p->event_type_pool, t));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700631 if (clib_bitmap_get (p->one_time_event_type_bitmap, t))
632 vlib_process_free_event_type (p, t, /* is_one_time_event */ 1);
633}
634
635always_inline void *
Dave Barach9b8ffd92016-07-08 08:13:45 -0400636vlib_process_get_event_data (vlib_main_t * vm,
637 uword * return_event_type_opaque)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700638{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400639 vlib_node_main_t *nm = &vm->node_main;
640 vlib_process_t *p;
641 vlib_process_event_type_t *et;
Gabriel Ganne71d73fe2017-02-04 10:51:04 +0100642 uword t;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400643 void *event_data_vector;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700644
645 p = vec_elt (nm->processes, nm->current_process_index);
646
647 /* Find first type with events ready.
648 Return invalid type when there's nothing there. */
649 t = clib_bitmap_first_set (p->non_empty_event_type_bitmap);
650 if (t == ~0)
651 return 0;
652
Dave Barach9b8ffd92016-07-08 08:13:45 -0400653 p->non_empty_event_type_bitmap =
654 clib_bitmap_andnoti (p->non_empty_event_type_bitmap, t);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700655
Gabriel Ganne71d73fe2017-02-04 10:51:04 +0100656 ASSERT (_vec_len (p->pending_event_data_by_type_index[t]) > 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700657 event_data_vector = p->pending_event_data_by_type_index[t];
658 p->pending_event_data_by_type_index[t] = 0;
659
660 et = pool_elt_at_index (p->event_type_pool, t);
661
662 /* Return user's opaque value and possibly index. */
663 *return_event_type_opaque = et->opaque;
664
665 vlib_process_maybe_free_event_type (p, t);
666
667 return event_data_vector;
668}
669
670/* Return event data vector for later reuse. We reuse event data to avoid
671 repeatedly allocating event vectors in cases where we care about speed. */
672always_inline void
Dave Barach9b8ffd92016-07-08 08:13:45 -0400673vlib_process_put_event_data (vlib_main_t * vm, void *event_data)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700674{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400675 vlib_node_main_t *nm = &vm->node_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700676 vec_add1 (nm->recycled_event_data_vectors, event_data);
677}
678
Dave Barach2ab470a2016-08-10 18:38:36 -0400679/** Return the first event type which has occurred and a vector of per-event
680 data of that type, or a timeout indication
681
682 @param vm - vlib_main_t pointer
683 @param data_vector - pointer to a (uword *) vector to receive event data
684 @returns either an event type and a vector of per-event instance data,
685 or ~0 to indicate a timeout.
686*/
687
Ed Warnickecb9cada2015-12-08 15:45:58 -0700688always_inline uword
689vlib_process_get_events (vlib_main_t * vm, uword ** data_vector)
690{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400691 vlib_node_main_t *nm = &vm->node_main;
692 vlib_process_t *p;
693 vlib_process_event_type_t *et;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700694 uword r, t, l;
695
696 p = vec_elt (nm->processes, nm->current_process_index);
697
698 /* Find first type with events ready.
699 Return invalid type when there's nothing there. */
700 t = clib_bitmap_first_set (p->non_empty_event_type_bitmap);
701 if (t == ~0)
702 return t;
703
Dave Barach9b8ffd92016-07-08 08:13:45 -0400704 p->non_empty_event_type_bitmap =
705 clib_bitmap_andnoti (p->non_empty_event_type_bitmap, t);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700706
707 l = _vec_len (p->pending_event_data_by_type_index[t]);
708 if (data_vector)
709 vec_add (*data_vector, p->pending_event_data_by_type_index[t], l);
Damjan Marion8bea5892022-04-04 22:40:45 +0200710 vec_set_len (p->pending_event_data_by_type_index[t], 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700711
712 et = pool_elt_at_index (p->event_type_pool, t);
713
714 /* Return user's opaque value. */
715 r = et->opaque;
716
717 vlib_process_maybe_free_event_type (p, t);
718
719 return r;
720}
721
722always_inline uword
Dave Barach9b8ffd92016-07-08 08:13:45 -0400723vlib_process_get_events_helper (vlib_process_t * p, uword t,
724 uword ** data_vector)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700725{
726 uword l;
727
Dave Barach9b8ffd92016-07-08 08:13:45 -0400728 p->non_empty_event_type_bitmap =
729 clib_bitmap_andnoti (p->non_empty_event_type_bitmap, t);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700730
731 l = _vec_len (p->pending_event_data_by_type_index[t]);
732 if (data_vector)
733 vec_add (*data_vector, p->pending_event_data_by_type_index[t], l);
Damjan Marion8bea5892022-04-04 22:40:45 +0200734 vec_set_len (p->pending_event_data_by_type_index[t], 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700735
736 vlib_process_maybe_free_event_type (p, t);
737
738 return l;
739}
740
741/* As above but query as specified type of event. Returns number of
742 events found. */
743always_inline uword
744vlib_process_get_events_with_type (vlib_main_t * vm, uword ** data_vector,
745 uword with_type_opaque)
746{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400747 vlib_node_main_t *nm = &vm->node_main;
748 vlib_process_t *p;
749 uword t, *h;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700750
751 p = vec_elt (nm->processes, nm->current_process_index);
752 h = hash_get (p->event_type_index_by_type_opaque, with_type_opaque);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400753 if (!h)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700754 /* This can happen when an event has not yet been
755 signaled with given opaque type. */
756 return 0;
757
758 t = h[0];
Dave Barach9b8ffd92016-07-08 08:13:45 -0400759 if (!clib_bitmap_get (p->non_empty_event_type_bitmap, t))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700760 return 0;
761
762 return vlib_process_get_events_helper (p, t, data_vector);
763}
764
765always_inline uword *
766vlib_process_wait_for_event (vlib_main_t * vm)
767{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400768 vlib_node_main_t *nm = &vm->node_main;
769 vlib_process_t *p;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700770 uword r;
771
772 p = vec_elt (nm->processes, nm->current_process_index);
773 if (clib_bitmap_is_zero (p->non_empty_event_type_bitmap))
774 {
775 p->flags |= VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_EVENT;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400776 r =
777 clib_setjmp (&p->resume_longjmp, VLIB_PROCESS_RESUME_LONGJMP_SUSPEND);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700778 if (r == VLIB_PROCESS_RESUME_LONGJMP_SUSPEND)
Damjan Marioncea46522020-05-21 16:47:05 +0200779 {
780 vlib_process_start_switch_stack (vm, 0);
781 clib_longjmp (&p->return_longjmp,
782 VLIB_PROCESS_RETURN_LONGJMP_SUSPEND);
783 }
784 else
785 vlib_process_finish_switch_stack (vm);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700786 }
787
788 return p->non_empty_event_type_bitmap;
789}
790
791always_inline uword
792vlib_process_wait_for_one_time_event (vlib_main_t * vm,
793 uword ** data_vector,
794 uword with_type_index)
795{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400796 vlib_node_main_t *nm = &vm->node_main;
797 vlib_process_t *p;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700798 uword r;
799
800 p = vec_elt (nm->processes, nm->current_process_index);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400801 ASSERT (!pool_is_free_index (p->event_type_pool, with_type_index));
802 while (!clib_bitmap_get (p->non_empty_event_type_bitmap, with_type_index))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700803 {
804 p->flags |= VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_EVENT;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400805 r =
806 clib_setjmp (&p->resume_longjmp, VLIB_PROCESS_RESUME_LONGJMP_SUSPEND);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700807 if (r == VLIB_PROCESS_RESUME_LONGJMP_SUSPEND)
Damjan Marioncea46522020-05-21 16:47:05 +0200808 {
809 vlib_process_start_switch_stack (vm, 0);
810 clib_longjmp (&p->return_longjmp,
811 VLIB_PROCESS_RETURN_LONGJMP_SUSPEND);
812 }
813 else
814 vlib_process_finish_switch_stack (vm);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700815 }
816
817 return vlib_process_get_events_helper (p, with_type_index, data_vector);
818}
819
820always_inline uword
821vlib_process_wait_for_event_with_type (vlib_main_t * vm,
822 uword ** data_vector,
823 uword with_type_opaque)
824{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400825 vlib_node_main_t *nm = &vm->node_main;
826 vlib_process_t *p;
827 uword r, *h;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700828
829 p = vec_elt (nm->processes, nm->current_process_index);
830 h = hash_get (p->event_type_index_by_type_opaque, with_type_opaque);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400831 while (!h || !clib_bitmap_get (p->non_empty_event_type_bitmap, h[0]))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700832 {
833 p->flags |= VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_EVENT;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400834 r =
835 clib_setjmp (&p->resume_longjmp, VLIB_PROCESS_RESUME_LONGJMP_SUSPEND);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700836 if (r == VLIB_PROCESS_RESUME_LONGJMP_SUSPEND)
Damjan Marioncea46522020-05-21 16:47:05 +0200837 {
838 vlib_process_start_switch_stack (vm, 0);
839 clib_longjmp (&p->return_longjmp,
840 VLIB_PROCESS_RETURN_LONGJMP_SUSPEND);
841 }
842 else
843 vlib_process_finish_switch_stack (vm);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700844
845 /* See if unknown event type has been signaled now. */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400846 if (!h)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700847 h = hash_get (p->event_type_index_by_type_opaque, with_type_opaque);
848 }
849
850 return vlib_process_get_events_helper (p, h[0], data_vector);
851}
852
Dave Barach2ab470a2016-08-10 18:38:36 -0400853/** Suspend a cooperative multi-tasking thread
854 Waits for an event, or for the indicated number of seconds to elapse
855 @param vm - vlib_main_t pointer
Damjan Marion607de1a2016-08-16 22:53:54 +0200856 @param dt - timeout, in seconds.
Dave Barach2ab470a2016-08-10 18:38:36 -0400857 @returns the remaining time interval
858*/
859
Ed Warnickecb9cada2015-12-08 15:45:58 -0700860always_inline f64
861vlib_process_wait_for_event_or_clock (vlib_main_t * vm, f64 dt)
862{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400863 vlib_node_main_t *nm = &vm->node_main;
864 vlib_process_t *p;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700865 f64 wakeup_time;
866 uword r;
867
868 p = vec_elt (nm->processes, nm->current_process_index);
869
870 if (vlib_process_suspend_time_is_zero (dt)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400871 || !clib_bitmap_is_zero (p->non_empty_event_type_bitmap))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700872 return dt;
873
874 wakeup_time = vlib_time_now (vm) + dt;
875
876 /* Suspend waiting for both clock and event to occur. */
877 p->flags |= (VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_EVENT
878 | VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_CLOCK);
879
880 r = clib_setjmp (&p->resume_longjmp, VLIB_PROCESS_RESUME_LONGJMP_SUSPEND);
881 if (r == VLIB_PROCESS_RESUME_LONGJMP_SUSPEND)
882 {
Dave Barach5c20a012017-06-13 08:48:31 -0400883 p->resume_clock_interval = dt * 1e5;
Damjan Marioncea46522020-05-21 16:47:05 +0200884 vlib_process_start_switch_stack (vm, 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700885 clib_longjmp (&p->return_longjmp, VLIB_PROCESS_RETURN_LONGJMP_SUSPEND);
886 }
Damjan Marioncea46522020-05-21 16:47:05 +0200887 else
888 vlib_process_finish_switch_stack (vm);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700889
890 /* Return amount of time still left to sleep.
891 If <= 0 then we've been waken up by the clock (and not an event). */
892 return wakeup_time - vlib_time_now (vm);
893}
894
895always_inline vlib_process_event_type_t *
896vlib_process_new_event_type (vlib_process_t * p, uword with_type_opaque)
897{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400898 vlib_process_event_type_t *et;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700899 pool_get (p->event_type_pool, et);
900 et->opaque = with_type_opaque;
901 return et;
902}
903
904always_inline uword
Dave Barach9b8ffd92016-07-08 08:13:45 -0400905vlib_process_create_one_time_event (vlib_main_t * vm, uword node_index,
906 uword with_type_opaque)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700907{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400908 vlib_node_main_t *nm = &vm->node_main;
909 vlib_node_t *n = vlib_get_node (vm, node_index);
910 vlib_process_t *p = vec_elt (nm->processes, n->runtime_index);
911 vlib_process_event_type_t *et;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700912 uword t;
913
914 et = vlib_process_new_event_type (p, with_type_opaque);
915 t = et - p->event_type_pool;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400916 p->one_time_event_type_bitmap =
917 clib_bitmap_ori (p->one_time_event_type_bitmap, t);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700918 return t;
919}
920
921always_inline void
Dave Barach9b8ffd92016-07-08 08:13:45 -0400922vlib_process_delete_one_time_event (vlib_main_t * vm, uword node_index,
923 uword t)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700924{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400925 vlib_node_main_t *nm = &vm->node_main;
926 vlib_node_t *n = vlib_get_node (vm, node_index);
927 vlib_process_t *p = vec_elt (nm->processes, n->runtime_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700928
929 ASSERT (clib_bitmap_get (p->one_time_event_type_bitmap, t));
930 vlib_process_free_event_type (p, t, /* is_one_time_event */ 1);
931}
932
933always_inline void *
934vlib_process_signal_event_helper (vlib_node_main_t * nm,
935 vlib_node_t * n,
936 vlib_process_t * p,
937 uword t,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400938 uword n_data_elts, uword n_data_elt_bytes)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700939{
940 uword p_flags, add_to_pending, delete_from_wheel;
Damjan Mariond24b86e2022-03-23 16:59:23 +0100941 u8 *data_to_be_written_by_caller;
Damjan Marione4fa1d22022-04-11 18:41:49 +0200942 vec_attr_t va = { .elt_sz = n_data_elt_bytes };
Ed Warnickecb9cada2015-12-08 15:45:58 -0700943
Dave Barach1403fcd2018-02-05 09:45:43 -0500944 ASSERT (n->type == VLIB_NODE_TYPE_PROCESS);
945
Dave Barach9b8ffd92016-07-08 08:13:45 -0400946 ASSERT (!pool_is_free_index (p->event_type_pool, t));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700947
948 vec_validate (p->pending_event_data_by_type_index, t);
949
950 /* Resize data vector and return caller's data to be written. */
951 {
Damjan Mariond24b86e2022-03-23 16:59:23 +0100952 u8 *data_vec = p->pending_event_data_by_type_index[t];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700953 uword l;
954
Dave Barach9b8ffd92016-07-08 08:13:45 -0400955 if (!data_vec && vec_len (nm->recycled_event_data_vectors))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700956 {
957 data_vec = vec_pop (nm->recycled_event_data_vectors);
fangtong33b18d42021-07-24 14:55:02 +0800958 vec_reset_length (data_vec);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700959 }
960
961 l = vec_len (data_vec);
962
Damjan Marione4fa1d22022-04-11 18:41:49 +0200963 data_vec = _vec_realloc_internal (data_vec, l + n_data_elts, &va);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700964
965 p->pending_event_data_by_type_index[t] = data_vec;
966 data_to_be_written_by_caller = data_vec + l * n_data_elt_bytes;
967 }
968
Dave Barach9b8ffd92016-07-08 08:13:45 -0400969 p->non_empty_event_type_bitmap =
970 clib_bitmap_ori (p->non_empty_event_type_bitmap, t);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700971
972 p_flags = p->flags;
973
974 /* Event was already signalled? */
975 add_to_pending = (p_flags & VLIB_PROCESS_RESUME_PENDING) == 0;
976
977 /* Process will resume when suspend time elapses? */
978 delete_from_wheel = 0;
979 if (p_flags & VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_CLOCK)
980 {
981 /* Waiting for both event and clock? */
982 if (p_flags & VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_EVENT)
Florin Coras40f92462018-08-01 16:25:45 -0700983 {
984 if (!TW (tw_timer_handle_is_free)
985 ((TWT (tw_timer_wheel) *) nm->timing_wheel,
986 p->stop_timer_handle))
987 delete_from_wheel = 1;
988 else
989 /* timer just popped so process should already be on the list */
990 add_to_pending = 0;
991 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700992 else
993 /* Waiting only for clock. Event will be queue and may be
994 handled when timer expires. */
995 add_to_pending = 0;
996 }
997
998 /* Never add current process to pending vector since current process is
999 already running. */
1000 add_to_pending &= nm->current_process_index != n->runtime_index;
1001
1002 if (add_to_pending)
1003 {
1004 u32 x = vlib_timing_wheel_data_set_suspended_process (n->runtime_index);
1005 p->flags = p_flags | VLIB_PROCESS_RESUME_PENDING;
1006 vec_add1 (nm->data_from_advancing_timing_wheel, x);
1007 if (delete_from_wheel)
jinshb7756b22023-03-07 14:32:06 +08001008 {
1009 TW (tw_timer_stop)
1010 ((TWT (tw_timer_wheel) *) nm->timing_wheel, p->stop_timer_handle);
1011 p->stop_timer_handle = ~0;
1012 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001013 }
1014
1015 return data_to_be_written_by_caller;
1016}
1017
1018always_inline void *
1019vlib_process_signal_event_data (vlib_main_t * vm,
1020 uword node_index,
1021 uword type_opaque,
Dave Barach9b8ffd92016-07-08 08:13:45 -04001022 uword n_data_elts, uword n_data_elt_bytes)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001023{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001024 vlib_node_main_t *nm = &vm->node_main;
1025 vlib_node_t *n = vlib_get_node (vm, node_index);
1026 vlib_process_t *p = vec_elt (nm->processes, n->runtime_index);
1027 uword *h, t;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001028
John Lo609707e2017-09-19 21:45:10 -04001029 /* Must be in main thread */
1030 ASSERT (vlib_get_thread_index () == 0);
1031
Ed Warnickecb9cada2015-12-08 15:45:58 -07001032 h = hash_get (p->event_type_index_by_type_opaque, type_opaque);
Dave Barach9b8ffd92016-07-08 08:13:45 -04001033 if (!h)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001034 {
Dave Barach9b8ffd92016-07-08 08:13:45 -04001035 vlib_process_event_type_t *et =
1036 vlib_process_new_event_type (p, type_opaque);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001037 t = et - p->event_type_pool;
1038 hash_set (p->event_type_index_by_type_opaque, type_opaque, t);
1039 }
1040 else
1041 t = h[0];
1042
Dave Barach9b8ffd92016-07-08 08:13:45 -04001043 return vlib_process_signal_event_helper (nm, n, p, t, n_data_elts,
1044 n_data_elt_bytes);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001045}
1046
1047always_inline void *
1048vlib_process_signal_event_at_time (vlib_main_t * vm,
1049 f64 dt,
1050 uword node_index,
1051 uword type_opaque,
Dave Barach9b8ffd92016-07-08 08:13:45 -04001052 uword n_data_elts, uword n_data_elt_bytes)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001053{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001054 vlib_node_main_t *nm = &vm->node_main;
1055 vlib_node_t *n = vlib_get_node (vm, node_index);
1056 vlib_process_t *p = vec_elt (nm->processes, n->runtime_index);
1057 uword *h, t;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001058
1059 h = hash_get (p->event_type_index_by_type_opaque, type_opaque);
Dave Barach9b8ffd92016-07-08 08:13:45 -04001060 if (!h)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001061 {
Dave Barach9b8ffd92016-07-08 08:13:45 -04001062 vlib_process_event_type_t *et =
1063 vlib_process_new_event_type (p, type_opaque);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001064 t = et - p->event_type_pool;
1065 hash_set (p->event_type_index_by_type_opaque, type_opaque, t);
1066 }
1067 else
1068 t = h[0];
1069
1070 if (vlib_process_suspend_time_is_zero (dt))
Dave Barach9b8ffd92016-07-08 08:13:45 -04001071 return vlib_process_signal_event_helper (nm, n, p, t, n_data_elts,
1072 n_data_elt_bytes);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001073 else
1074 {
Dave Barach9b8ffd92016-07-08 08:13:45 -04001075 vlib_signal_timed_event_data_t *te;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001076
1077 pool_get_aligned (nm->signal_timed_event_data_pool, te, sizeof (te[0]));
1078
1079 te->n_data_elts = n_data_elts;
1080 te->n_data_elt_bytes = n_data_elt_bytes;
1081 te->n_data_bytes = n_data_elts * n_data_elt_bytes;
1082
1083 /* Assert that structure fields are big enough. */
1084 ASSERT (te->n_data_elts == n_data_elts);
1085 ASSERT (te->n_data_elt_bytes == n_data_elt_bytes);
1086 ASSERT (te->n_data_bytes == n_data_elts * n_data_elt_bytes);
1087
1088 te->process_node_index = n->runtime_index;
1089 te->event_type_index = t;
1090
Dave Barach5c20a012017-06-13 08:48:31 -04001091 p->stop_timer_handle =
1092 TW (tw_timer_start) ((TWT (tw_timer_wheel) *) nm->timing_wheel,
1093 vlib_timing_wheel_data_set_timed_event
1094 (te - nm->signal_timed_event_data_pool),
1095 0 /* timer_id */ ,
1096 (vlib_time_now (vm) + dt) * 1e5);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001097
1098 /* Inline data big enough to hold event? */
1099 if (te->n_data_bytes < sizeof (te->inline_event_data))
1100 return te->inline_event_data;
1101 else
1102 {
1103 te->event_data_as_vector = 0;
1104 vec_resize (te->event_data_as_vector, te->n_data_bytes);
1105 return te->event_data_as_vector;
1106 }
1107 }
1108}
1109
1110always_inline void *
1111vlib_process_signal_one_time_event_data (vlib_main_t * vm,
1112 uword node_index,
1113 uword type_index,
1114 uword n_data_elts,
1115 uword n_data_elt_bytes)
1116{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001117 vlib_node_main_t *nm = &vm->node_main;
1118 vlib_node_t *n = vlib_get_node (vm, node_index);
1119 vlib_process_t *p = vec_elt (nm->processes, n->runtime_index);
1120 return vlib_process_signal_event_helper (nm, n, p, type_index, n_data_elts,
1121 n_data_elt_bytes);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001122}
1123
1124always_inline void
1125vlib_process_signal_event (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -04001126 uword node_index, uword type_opaque, uword data)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001127{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001128 uword *d = vlib_process_signal_event_data (vm, node_index, type_opaque,
1129 1 /* elts */ , sizeof (uword));
Ed Warnickecb9cada2015-12-08 15:45:58 -07001130 d[0] = data;
1131}
1132
1133always_inline void
1134vlib_process_signal_event_pointer (vlib_main_t * vm,
1135 uword node_index,
Dave Barach9b8ffd92016-07-08 08:13:45 -04001136 uword type_opaque, void *data)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001137{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001138 void **d = vlib_process_signal_event_data (vm, node_index, type_opaque,
1139 1 /* elts */ , sizeof (data));
Ed Warnickecb9cada2015-12-08 15:45:58 -07001140 d[0] = data;
1141}
1142
Dave Barach69128d02017-09-26 10:54:34 -04001143/**
1144 * Signal event to process from any thread.
1145 *
1146 * When in doubt, use this.
1147 */
1148always_inline void
1149vlib_process_signal_event_mt (vlib_main_t * vm,
1150 uword node_index, uword type_opaque, uword data)
1151{
1152 if (vlib_get_thread_index () != 0)
1153 {
1154 vlib_process_signal_event_mt_args_t args = {
1155 .node_index = node_index,
1156 .type_opaque = type_opaque,
1157 .data = data,
1158 };
1159 vlib_rpc_call_main_thread (vlib_process_signal_event_mt_helper,
1160 (u8 *) & args, sizeof (args));
1161 }
1162 else
1163 vlib_process_signal_event (vm, node_index, type_opaque, data);
1164}
1165
Ed Warnickecb9cada2015-12-08 15:45:58 -07001166always_inline void
1167vlib_process_signal_one_time_event (vlib_main_t * vm,
1168 uword node_index,
Dave Barach9b8ffd92016-07-08 08:13:45 -04001169 uword type_index, uword data)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001170{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001171 uword *d =
1172 vlib_process_signal_one_time_event_data (vm, node_index, type_index,
1173 1 /* elts */ , sizeof (uword));
Ed Warnickecb9cada2015-12-08 15:45:58 -07001174 d[0] = data;
1175}
1176
1177always_inline void
Dave Barach9b8ffd92016-07-08 08:13:45 -04001178vlib_signal_one_time_waiting_process (vlib_main_t * vm,
1179 vlib_one_time_waiting_process_t * p)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001180{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001181 vlib_process_signal_one_time_event (vm, p->node_index, p->one_time_event,
1182 /* data */ ~0);
Dave Barachb7b92992018-10-17 10:38:51 -04001183 clib_memset (p, ~0, sizeof (p[0]));
Ed Warnickecb9cada2015-12-08 15:45:58 -07001184}
1185
1186always_inline void
1187vlib_signal_one_time_waiting_process_vector (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -04001188 vlib_one_time_waiting_process_t
1189 ** wps)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001190{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001191 vlib_one_time_waiting_process_t *wp;
1192 vec_foreach (wp, *wps) vlib_signal_one_time_waiting_process (vm, wp);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001193 vec_free (*wps);
1194}
1195
1196always_inline void
Dave Barach9b8ffd92016-07-08 08:13:45 -04001197vlib_current_process_wait_for_one_time_event (vlib_main_t * vm,
1198 vlib_one_time_waiting_process_t
1199 * p)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001200{
1201 p->node_index = vlib_current_process (vm);
Dave Barach9b8ffd92016-07-08 08:13:45 -04001202 p->one_time_event = vlib_process_create_one_time_event (vm, p->node_index, /* type opaque */
1203 ~0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001204 vlib_process_wait_for_one_time_event (vm,
1205 /* don't care about data */ 0,
1206 p->one_time_event);
1207}
1208
1209always_inline void
1210vlib_current_process_wait_for_one_time_event_vector (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -04001211 vlib_one_time_waiting_process_t
1212 ** wps)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001213{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001214 vlib_one_time_waiting_process_t *wp;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001215 vec_add2 (*wps, wp, 1);
1216 vlib_current_process_wait_for_one_time_event (vm, wp);
1217}
1218
1219always_inline u32
1220vlib_node_runtime_update_main_loop_vector_stats (vlib_main_t * vm,
1221 vlib_node_runtime_t * node,
1222 uword n_vectors)
1223{
1224 u32 i, d, vi0, vi1;
1225 u32 i0, i1;
1226
1227 ASSERT (is_pow2 (ARRAY_LEN (node->main_loop_vector_stats)));
1228 i = ((vm->main_loop_count >> VLIB_LOG2_MAIN_LOOPS_PER_STATS_UPDATE)
1229 & (ARRAY_LEN (node->main_loop_vector_stats) - 1));
1230 i0 = i ^ 0;
1231 i1 = i ^ 1;
1232 d = ((vm->main_loop_count >> VLIB_LOG2_MAIN_LOOPS_PER_STATS_UPDATE)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001233 -
1234 (node->main_loop_count_last_dispatch >>
1235 VLIB_LOG2_MAIN_LOOPS_PER_STATS_UPDATE));
Ed Warnickecb9cada2015-12-08 15:45:58 -07001236 vi0 = node->main_loop_vector_stats[i0];
1237 vi1 = node->main_loop_vector_stats[i1];
1238 vi0 = d == 0 ? vi0 : 0;
1239 vi1 = d <= 1 ? vi1 : 0;
1240 vi0 += n_vectors;
1241 node->main_loop_vector_stats[i0] = vi0;
1242 node->main_loop_vector_stats[i1] = vi1;
1243 node->main_loop_count_last_dispatch = vm->main_loop_count;
1244 /* Return previous counter. */
1245 return node->main_loop_vector_stats[i1];
1246}
1247
1248always_inline f64
1249vlib_node_vectors_per_main_loop_as_float (vlib_main_t * vm, u32 node_index)
1250{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001251 vlib_node_runtime_t *rt = vlib_node_get_runtime (vm, node_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001252 u32 v;
1253
Dave Barach9b8ffd92016-07-08 08:13:45 -04001254 v = vlib_node_runtime_update_main_loop_vector_stats (vm, rt, /* n_vectors */
1255 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001256 return (f64) v / (1 << VLIB_LOG2_MAIN_LOOPS_PER_STATS_UPDATE);
1257}
1258
1259always_inline u32
1260vlib_node_vectors_per_main_loop_as_integer (vlib_main_t * vm, u32 node_index)
1261{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001262 vlib_node_runtime_t *rt = vlib_node_get_runtime (vm, node_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001263 u32 v;
1264
Dave Barach9b8ffd92016-07-08 08:13:45 -04001265 v = vlib_node_runtime_update_main_loop_vector_stats (vm, rt, /* n_vectors */
1266 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001267 return v >> VLIB_LOG2_MAIN_LOOPS_PER_STATS_UPDATE;
1268}
1269
Dmitry Valter9f5b3692022-09-05 15:30:18 +00001270void vlib_frame_free (vlib_main_t *vm, vlib_frame_t *f);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001271
Neale Rannsbb620d72017-06-29 00:19:08 -07001272/* Return the edge index if present, ~0 otherwise */
1273uword vlib_node_get_next (vlib_main_t * vm, uword node, uword next_node);
1274
Ed Warnickecb9cada2015-12-08 15:45:58 -07001275/* Add next node to given node in given slot. */
1276uword
1277vlib_node_add_next_with_slot (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -04001278 uword node, uword next_node, uword slot);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001279
1280/* As above but adds to end of node's next vector. */
1281always_inline uword
1282vlib_node_add_next (vlib_main_t * vm, uword node, uword next_node)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001283{
1284 return vlib_node_add_next_with_slot (vm, node, next_node, ~0);
1285}
Ed Warnickecb9cada2015-12-08 15:45:58 -07001286
1287/* Add next node to given node in given slot. */
1288uword
1289vlib_node_add_named_next_with_slot (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -04001290 uword node, char *next_name, uword slot);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001291
1292/* As above but adds to end of node's next vector. */
1293always_inline uword
Dave Barach9b8ffd92016-07-08 08:13:45 -04001294vlib_node_add_named_next (vlib_main_t * vm, uword node, char *name)
1295{
1296 return vlib_node_add_named_next_with_slot (vm, node, name, ~0);
1297}
Ed Warnickecb9cada2015-12-08 15:45:58 -07001298
Florin Corase86a8ed2018-01-05 03:20:25 -08001299/**
1300 * Get list of nodes
1301 */
Dave Barach1ddbc012018-06-13 09:26:05 -04001302void
1303vlib_node_get_nodes (vlib_main_t * vm, u32 max_threads, int include_stats,
1304 int barrier_sync, vlib_node_t **** node_dupsp,
1305 vlib_main_t *** stat_vmsp);
Florin Corase86a8ed2018-01-05 03:20:25 -08001306
Ed Warnickecb9cada2015-12-08 15:45:58 -07001307/* Query node given name. */
Dave Barach9b8ffd92016-07-08 08:13:45 -04001308vlib_node_t *vlib_get_node_by_name (vlib_main_t * vm, u8 * name);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001309
1310/* Rename a node. */
Dave Barach9b8ffd92016-07-08 08:13:45 -04001311void vlib_node_rename (vlib_main_t * vm, u32 node_index, char *fmt, ...);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001312
1313/* Register new packet processing node. Nodes can be registered
1314 dynamically via this call or statically via the VLIB_REGISTER_NODE
1315 macro. */
Damjan Marionf87acfa2022-03-23 17:36:56 +01001316u32 vlib_register_node (vlib_main_t *vm, vlib_node_registration_t *r,
1317 char *fmt, ...);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001318
Damjan Mariona31698b2021-03-10 14:35:28 +01001319/* Register all node function variants */
1320void vlib_register_all_node_march_variants (vlib_main_t *vm);
1321
Ed Warnickecb9cada2015-12-08 15:45:58 -07001322/* Register all static nodes registered via VLIB_REGISTER_NODE. */
1323void vlib_register_all_static_nodes (vlib_main_t * vm);
1324
1325/* Start a process. */
1326void vlib_start_process (vlib_main_t * vm, uword process_index);
1327
1328/* Sync up runtime and main node stats. */
Dave Barach9b8ffd92016-07-08 08:13:45 -04001329void vlib_node_sync_stats (vlib_main_t * vm, vlib_node_t * n);
Arthur de Kerhor156158f2021-02-18 03:09:42 -08001330void vlib_node_runtime_sync_stats (vlib_main_t *vm, vlib_node_runtime_t *r,
1331 uword n_calls, uword n_vectors,
1332 uword n_clocks);
1333void vlib_node_runtime_sync_stats_node (vlib_node_t *n, vlib_node_runtime_t *r,
1334 uword n_calls, uword n_vectors,
1335 uword n_clocks);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001336
1337/* Node graph initialization function. */
Dave Barach9b8ffd92016-07-08 08:13:45 -04001338clib_error_t *vlib_node_main_init (vlib_main_t * vm);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001339
1340format_function_t format_vlib_node_graph;
1341format_function_t format_vlib_node_name;
1342format_function_t format_vlib_next_node_name;
1343format_function_t format_vlib_node_and_next;
1344format_function_t format_vlib_cpu_time;
1345format_function_t format_vlib_time;
1346/* Parse node name -> node index. */
1347unformat_function_t unformat_vlib_node;
1348
Dave Barach9b8ffd92016-07-08 08:13:45 -04001349always_inline void
1350vlib_node_increment_counter (vlib_main_t * vm, u32 node_index,
1351 u32 counter_index, u64 increment)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001352{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001353 vlib_node_t *n = vlib_get_node (vm, node_index);
1354 vlib_error_main_t *em = &vm->error_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001355 u32 node_counter_base_index = n->error_heap_index;
1356 em->counters[node_counter_base_index + counter_index] += increment;
1357}
1358
Dave Barach11965c72019-05-28 16:31:05 -04001359/** @brief Create a vlib process
1360 * @param vm &vlib_global_main
1361 * @param f the process node function
1362 * @param log2_n_stack_bytes size of the process stack, defaults to 16K
1363 * @return newly-create node index
1364 * @warning call only on the main thread. Barrier sync required
1365 */
1366u32 vlib_process_create (vlib_main_t * vm, char *name,
1367 vlib_node_function_t * f, u32 log2_n_stack_bytes);
1368
Damjan Marion8b60fb02020-11-27 20:15:17 +01001369always_inline int
1370vlib_node_set_dispatch_wrapper (vlib_main_t *vm, vlib_node_function_t *fn)
1371{
1372 if (fn && vm->dispatch_wrapper_fn)
1373 return 1;
1374 vm->dispatch_wrapper_fn = fn;
1375 return 0;
1376}
1377
Damjan Mariona31698b2021-03-10 14:35:28 +01001378int vlib_node_set_march_variant (vlib_main_t *vm, u32 node_index,
1379 clib_march_variant_type_t march_variant);
1380
1381vlib_node_function_t *
1382vlib_node_get_preferred_node_fn_variant (vlib_main_t *vm,
1383 vlib_node_fn_registration_t *regs);
1384
Damjan Marionefeea5b2022-02-10 15:01:03 +01001385/*
1386 * vlib_frame_bitmap functions
1387 */
1388
1389#define VLIB_FRAME_BITMAP_N_UWORDS \
1390 (((VLIB_FRAME_SIZE + uword_bits - 1) & ~(uword_bits - 1)) / uword_bits)
1391
1392typedef uword vlib_frame_bitmap_t[VLIB_FRAME_BITMAP_N_UWORDS];
1393
1394static_always_inline void
1395vlib_frame_bitmap_init (uword *bmp, u32 n_first_bits_set)
1396{
1397 u32 n_left = VLIB_FRAME_BITMAP_N_UWORDS;
1398 while (n_first_bits_set >= (sizeof (uword) * 8) && n_left)
1399 {
1400 bmp++[0] = ~0;
1401 n_first_bits_set -= sizeof (uword) * 8;
1402 n_left--;
1403 }
1404
1405 if (n_first_bits_set && n_left)
1406 {
1407 bmp++[0] = pow2_mask (n_first_bits_set);
1408 n_left--;
1409 }
1410
1411 while (n_left--)
1412 bmp++[0] = 0;
1413}
1414
1415static_always_inline void
Damjan Marion156d4522023-03-31 12:14:41 +00001416vlib_frame_bitmap_set_bit_at_index (uword *bmp, uword bit_index)
1417{
Damjan Marion5294cdc2023-04-04 17:06:26 +00001418 uword_bitmap_set_bits_at_index (bmp, bit_index, 1);
Damjan Marion156d4522023-03-31 12:14:41 +00001419}
1420
1421static_always_inline void
1422_vlib_frame_bitmap_clear_bit_at_index (uword *bmp, uword bit_index)
1423{
Damjan Marion5294cdc2023-04-04 17:06:26 +00001424 uword_bitmap_clear_bits_at_index (bmp, bit_index, 1);
1425}
1426
1427static_always_inline void
1428vlib_frame_bitmap_set_bits_at_index (uword *bmp, uword bit_index, uword n_bits)
1429{
1430 uword_bitmap_set_bits_at_index (bmp, bit_index, n_bits);
1431}
1432
1433static_always_inline void
1434vlib_frame_bitmap_clear_bits_at_index (uword *bmp, uword bit_index,
1435 uword n_bits)
1436{
1437 uword_bitmap_clear_bits_at_index (bmp, bit_index, n_bits);
Damjan Marion156d4522023-03-31 12:14:41 +00001438}
1439
1440static_always_inline void
Damjan Marionefeea5b2022-02-10 15:01:03 +01001441vlib_frame_bitmap_clear (uword *bmp)
1442{
1443 u32 n_left = VLIB_FRAME_BITMAP_N_UWORDS;
1444 while (n_left--)
1445 bmp++[0] = 0;
1446}
1447
1448static_always_inline void
1449vlib_frame_bitmap_xor (uword *bmp, uword *bmp2)
1450{
1451 u32 n_left = VLIB_FRAME_BITMAP_N_UWORDS;
1452 while (n_left--)
1453 bmp++[0] ^= bmp2++[0];
1454}
1455
1456static_always_inline void
1457vlib_frame_bitmap_or (uword *bmp, uword *bmp2)
1458{
1459 u32 n_left = VLIB_FRAME_BITMAP_N_UWORDS;
1460 while (n_left--)
1461 bmp++[0] |= bmp2++[0];
1462}
1463
Damjan Marion218e4ec2022-03-15 16:16:55 +01001464static_always_inline void
1465vlib_frame_bitmap_and (uword *bmp, uword *bmp2)
1466{
1467 u32 n_left = VLIB_FRAME_BITMAP_N_UWORDS;
1468 while (n_left--)
1469 bmp++[0] &= bmp2++[0];
1470}
1471
Damjan Marion5294cdc2023-04-04 17:06:26 +00001472static_always_inline uword
Damjan Marionefeea5b2022-02-10 15:01:03 +01001473vlib_frame_bitmap_count_set_bits (uword *bmp)
1474{
Damjan Marion5294cdc2023-04-04 17:06:26 +00001475 return uword_bitmap_count_set_bits (bmp, VLIB_FRAME_BITMAP_N_UWORDS);
Damjan Marionefeea5b2022-02-10 15:01:03 +01001476}
1477
Damjan Marion51a7e442022-09-08 18:59:03 +02001478static_always_inline uword
1479vlib_frame_bitmap_is_bit_set (uword *bmp, uword bit_index)
1480{
Damjan Marion5294cdc2023-04-04 17:06:26 +00001481 return uword_bitmap_is_bit_set (bmp, bit_index);
Damjan Marion51a7e442022-09-08 18:59:03 +02001482}
1483
Damjan Marion5294cdc2023-04-04 17:06:26 +00001484static_always_inline uword
Damjan Marionefeea5b2022-02-10 15:01:03 +01001485vlib_frame_bitmap_find_first_set (uword *bmp)
1486{
Damjan Marion5294cdc2023-04-04 17:06:26 +00001487 uword rv = uword_bitmap_find_first_set (bmp);
1488 ASSERT (rv < VLIB_FRAME_BITMAP_N_UWORDS * uword_bits);
1489 return rv;
Damjan Marionefeea5b2022-02-10 15:01:03 +01001490}
1491
1492#define foreach_vlib_frame_bitmap_set_bit_index(i, v) \
1493 for (uword _off = 0; _off < ARRAY_LEN (v); _off++) \
1494 for (uword _tmp = \
1495 (v[_off]) + 0 * (uword) (i = _off * uword_bits + \
1496 get_lowest_set_bit_index (v[_off])); \
1497 _tmp; i = _off * uword_bits + get_lowest_set_bit_index ( \
1498 _tmp = clear_lowest_set_bit (_tmp)))
1499
Ed Warnickecb9cada2015-12-08 15:45:58 -07001500#endif /* included_vlib_node_funcs_h */
Dave Barach9b8ffd92016-07-08 08:13:45 -04001501
1502/*
1503 * fd.io coding-style-patch-verification: ON
1504 *
1505 * Local Variables:
1506 * eval: (c-set-style "gnu")
1507 * End:
1508 */