blob: 37f7538d70a2ca5b3505dd70191aa13c0b90853f [file] [log] [blame]
Ed Warnickecb9cada2015-12-08 15:45:58 -07001/*
2 * Copyright (c) 2015 Cisco and/or its affiliates.
3 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this file except in compliance with the License.
5 * You may obtain a copy of the License at:
6 *
7 * http://www.apache.org/licenses/LICENSE-2.0
8 *
9 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 * See the License for the specific language governing permissions and
13 * limitations under the License.
14 */
15/*
16 * node_funcs.h: processing nodes global functions/inlines
17 *
18 * Copyright (c) 2008 Eliot Dresselhaus
19 *
20 * Permission is hereby granted, free of charge, to any person obtaining
21 * a copy of this software and associated documentation files (the
22 * "Software"), to deal in the Software without restriction, including
23 * without limitation the rights to use, copy, modify, merge, publish,
24 * distribute, sublicense, and/or sell copies of the Software, and to
25 * permit persons to whom the Software is furnished to do so, subject to
26 * the following conditions:
27 *
28 * The above copyright notice and this permission notice shall be
29 * included in all copies or substantial portions of the Software.
30 *
31 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
32 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
33 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
34 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
35 * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
36 * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
37 * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
38 */
39
Dave Barach9b8ffd92016-07-08 08:13:45 -040040/** \file
Dave Barach9770e202016-07-06 10:29:27 -040041 vlib node functions
42*/
43
44
Ed Warnickecb9cada2015-12-08 15:45:58 -070045#ifndef included_vlib_node_funcs_h
46#define included_vlib_node_funcs_h
47
BenoƮt Ganne6531cf52022-09-30 17:13:33 +020048#include <vppinfra/clib.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070049#include <vppinfra/fifo.h>
Dave Barach5c20a012017-06-13 08:48:31 -040050#include <vppinfra/tw_timer_1t_3w_1024sl_ov.h>
Damjan Marion94100532020-11-06 23:25:57 +010051#include <vppinfra/interrupt.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070052
Damjan Marioncea46522020-05-21 16:47:05 +020053#ifdef CLIB_SANITIZE_ADDR
54#include <sanitizer/asan_interface.h>
55#endif
56
57static_always_inline void
58vlib_process_start_switch_stack (vlib_main_t * vm, vlib_process_t * p)
59{
60#ifdef CLIB_SANITIZE_ADDR
61 void *stack = p ? (void *) p->stack : vlib_thread_stacks[vm->thread_index];
Xiaoming Jiang4646cd42022-12-10 03:44:16 +000062 u32 stack_bytes =
63 p ? (1ULL < p->log2_n_stack_bytes) : VLIB_THREAD_STACK_SIZE;
Damjan Marioncea46522020-05-21 16:47:05 +020064 __sanitizer_start_switch_fiber (&vm->asan_stack_save, stack, stack_bytes);
65#endif
66}
67
68static_always_inline void
69vlib_process_finish_switch_stack (vlib_main_t * vm)
70{
71#ifdef CLIB_SANITIZE_ADDR
72 const void *bottom_old;
73 size_t size_old;
74
75 __sanitizer_finish_switch_fiber (&vm->asan_stack_save, &bottom_old,
76 &size_old);
77#endif
78}
79
Dave Barach9770e202016-07-06 10:29:27 -040080/** \brief Get vlib node by index.
81 @warning This function will ASSERT if @c i is out of range.
82 @param vm vlib_main_t pointer, varies by thread
83 @param i node index.
84 @return pointer to the requested vlib_node_t.
85*/
86
Ed Warnickecb9cada2015-12-08 15:45:58 -070087always_inline vlib_node_t *
88vlib_get_node (vlib_main_t * vm, u32 i)
Dave Barach9b8ffd92016-07-08 08:13:45 -040089{
90 return vec_elt (vm->node_main.nodes, i);
91}
Ed Warnickecb9cada2015-12-08 15:45:58 -070092
Dave Barach9770e202016-07-06 10:29:27 -040093/** \brief Get vlib node by graph arc (next) index.
94 @param vm vlib_main_t pointer, varies by thread
95 @param node_index index of original node
96 @param next_index graph arc index
97 @return pointer to the vlib_node_t at the end of the indicated arc
98*/
99
Ed Warnickecb9cada2015-12-08 15:45:58 -0700100always_inline vlib_node_t *
101vlib_get_next_node (vlib_main_t * vm, u32 node_index, u32 next_index)
102{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400103 vlib_node_main_t *nm = &vm->node_main;
104 vlib_node_t *n;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700105
106 n = vec_elt (nm->nodes, node_index);
107 ASSERT (next_index < vec_len (n->next_nodes));
108 return vlib_get_node (vm, n->next_nodes[next_index]);
109}
110
Dave Barach9770e202016-07-06 10:29:27 -0400111/** \brief Get node runtime by node index.
112 @param vm vlib_main_t pointer, varies by thread
113 @param node_index index of node
114 @return pointer to the indicated vlib_node_runtime_t
115*/
116
Ed Warnickecb9cada2015-12-08 15:45:58 -0700117always_inline vlib_node_runtime_t *
118vlib_node_get_runtime (vlib_main_t * vm, u32 node_index)
119{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400120 vlib_node_main_t *nm = &vm->node_main;
121 vlib_node_t *n = vec_elt (nm->nodes, node_index);
122 vlib_process_t *p;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700123 if (n->type != VLIB_NODE_TYPE_PROCESS)
124 return vec_elt_at_index (nm->nodes_by_type[n->type], n->runtime_index);
125 else
126 {
127 p = vec_elt (nm->processes, n->runtime_index);
128 return &p->node_runtime;
129 }
130}
131
Dave Barach9770e202016-07-06 10:29:27 -0400132/** \brief Get node runtime private data by node index.
133 @param vm vlib_main_t pointer, varies by thread
134 @param node_index index of the node
135 @return pointer to the indicated vlib_node_runtime_t private data
136*/
137
Ed Warnickecb9cada2015-12-08 15:45:58 -0700138always_inline void *
139vlib_node_get_runtime_data (vlib_main_t * vm, u32 node_index)
140{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400141 vlib_node_runtime_t *r = vlib_node_get_runtime (vm, node_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700142 return r->runtime_data;
143}
144
Dave Barach9770e202016-07-06 10:29:27 -0400145/** \brief Set node runtime private data.
146 @param vm vlib_main_t pointer, varies by thread
147 @param node_index index of the node
148 @param runtime_data arbitrary runtime private data
149 @param n_runtime_data_bytes size of runtime private data
150*/
151
Ed Warnickecb9cada2015-12-08 15:45:58 -0700152always_inline void
153vlib_node_set_runtime_data (vlib_main_t * vm, u32 node_index,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400154 void *runtime_data, u32 n_runtime_data_bytes)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700155{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400156 vlib_node_t *n = vlib_get_node (vm, node_index);
157 vlib_node_runtime_t *r = vlib_node_get_runtime (vm, node_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700158
159 n->runtime_data_bytes = n_runtime_data_bytes;
160 vec_free (n->runtime_data);
161 vec_add (n->runtime_data, runtime_data, n_runtime_data_bytes);
162
Damjan Marioneb90b7f2016-11-01 01:26:01 +0100163 ASSERT (vec_len (n->runtime_data) <= sizeof (vlib_node_runtime_t) -
164 STRUCT_OFFSET_OF (vlib_node_runtime_t, runtime_data));
165
Ed Warnickecb9cada2015-12-08 15:45:58 -0700166 if (vec_len (n->runtime_data) > 0)
Dave Barach178cf492018-11-13 16:34:13 -0500167 clib_memcpy_fast (r->runtime_data, n->runtime_data,
168 vec_len (n->runtime_data));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700169}
170
Dave Barach9770e202016-07-06 10:29:27 -0400171/** \brief Set node dispatch state.
172 @param vm vlib_main_t pointer, varies by thread
173 @param node_index index of the node
174 @param new_state new state for node, see vlib_node_state_t
175*/
Ed Warnickecb9cada2015-12-08 15:45:58 -0700176always_inline void
Dave Barach9b8ffd92016-07-08 08:13:45 -0400177vlib_node_set_state (vlib_main_t * vm, u32 node_index,
178 vlib_node_state_t new_state)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700179{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400180 vlib_node_main_t *nm = &vm->node_main;
181 vlib_node_t *n;
182 vlib_node_runtime_t *r;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700183
184 n = vec_elt (nm->nodes, node_index);
185 if (n->type == VLIB_NODE_TYPE_PROCESS)
186 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400187 vlib_process_t *p = vec_elt (nm->processes, n->runtime_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700188 r = &p->node_runtime;
189
190 /* When disabling make sure flags are cleared. */
191 p->flags &= ~(VLIB_PROCESS_RESUME_PENDING
192 | VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_CLOCK
193 | VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_EVENT);
194 }
195 else
196 r = vec_elt_at_index (nm->nodes_by_type[n->type], n->runtime_index);
197
198 ASSERT (new_state < VLIB_N_NODE_STATE);
199
200 if (n->type == VLIB_NODE_TYPE_INPUT)
201 {
202 ASSERT (nm->input_node_counts_by_state[n->state] > 0);
203 nm->input_node_counts_by_state[n->state] -= 1;
204 nm->input_node_counts_by_state[new_state] += 1;
205 }
206
Tom Seidenberg6c81f5a2020-07-10 15:49:03 +0000207 if (PREDICT_FALSE (r->state == VLIB_NODE_STATE_DISABLED))
208 vlib_node_runtime_perf_counter (vm, r, 0, 0, 0,
209 VLIB_NODE_RUNTIME_PERF_RESET);
210
Ed Warnickecb9cada2015-12-08 15:45:58 -0700211 n->state = new_state;
212 r->state = new_state;
213}
214
Damjan Marion153646e2017-04-05 18:15:45 +0200215/** \brief Get node dispatch state.
216 @param vm vlib_main_t pointer, varies by thread
217 @param node_index index of the node
218 @return state for node, see vlib_node_state_t
219*/
220always_inline vlib_node_state_t
221vlib_node_get_state (vlib_main_t * vm, u32 node_index)
222{
223 vlib_node_main_t *nm = &vm->node_main;
224 vlib_node_t *n;
225 n = vec_elt (nm->nodes, node_index);
226 return n->state;
227}
228
Ed Warnickecb9cada2015-12-08 15:45:58 -0700229always_inline void
Florin Coras982e44f2021-03-19 13:12:41 -0700230vlib_node_set_flag (vlib_main_t *vm, u32 node_index, u16 flag, u8 enable)
231{
232 vlib_node_runtime_t *r;
233 vlib_node_t *n;
234
235 n = vlib_get_node (vm, node_index);
236 r = vlib_node_get_runtime (vm, node_index);
237
238 if (enable)
239 {
240 n->flags |= flag;
241 r->flags |= flag;
242 }
243 else
244 {
245 n->flags &= ~flag;
246 r->flags &= ~flag;
247 }
248}
249
250always_inline void
Damjan Marion94100532020-11-06 23:25:57 +0100251vlib_node_set_interrupt_pending (vlib_main_t *vm, u32 node_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700252{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400253 vlib_node_main_t *nm = &vm->node_main;
254 vlib_node_t *n = vec_elt (nm->nodes, node_index);
Damjan Marionc5c0d0c2023-07-28 12:57:15 +0200255 void *interrupts = 0;
Damjan Marion94100532020-11-06 23:25:57 +0100256
Damjan Marioncc8249c2023-07-23 14:24:22 +0200257 if (n->type == VLIB_NODE_TYPE_INPUT)
258 interrupts = nm->input_node_interrupts;
259 else if (n->type == VLIB_NODE_TYPE_PRE_INPUT)
260 interrupts = nm->pre_input_node_interrupts;
261 else
Damjan Marionc5c0d0c2023-07-28 12:57:15 +0200262 {
263 ASSERT (0);
264 return;
265 }
Damjan Marion1033b492020-06-03 12:20:41 +0200266
Damjan Marion94100532020-11-06 23:25:57 +0100267 if (vm != vlib_get_main ())
Damjan Marioncc8249c2023-07-23 14:24:22 +0200268 clib_interrupt_set_atomic (interrupts, n->runtime_index);
Damjan Marion1033b492020-06-03 12:20:41 +0200269 else
Damjan Marioncc8249c2023-07-23 14:24:22 +0200270 clib_interrupt_set (interrupts, n->runtime_index);
Damjan Marion1033b492020-06-03 12:20:41 +0200271
Damjan Marioncc8249c2023-07-23 14:24:22 +0200272 __atomic_store_n (&nm->pending_interrupts, 1, __ATOMIC_RELEASE);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700273}
274
275always_inline vlib_process_t *
276vlib_get_process_from_node (vlib_main_t * vm, vlib_node_t * node)
277{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400278 vlib_node_main_t *nm = &vm->node_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700279 ASSERT (node->type == VLIB_NODE_TYPE_PROCESS);
280 return vec_elt (nm->processes, node->runtime_index);
281}
282
Ed Warnickecb9cada2015-12-08 15:45:58 -0700283always_inline vlib_frame_t *
Andreas Schultz58b2eb12019-07-15 15:40:56 +0200284vlib_get_frame (vlib_main_t * vm, vlib_frame_t * f)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700285{
Andreas Schultz58b2eb12019-07-15 15:40:56 +0200286 ASSERT (f != NULL);
Damjan Marion633b6fd2018-09-14 14:38:53 +0200287 ASSERT (f->frame_flags & VLIB_FRAME_IS_ALLOCATED);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700288 return f;
289}
290
Damjan Marion296988d2019-02-21 20:24:54 +0100291always_inline void
292vlib_frame_no_append (vlib_frame_t * f)
293{
294 f->frame_flags |= VLIB_FRAME_NO_APPEND;
295}
296
Dave Barach9770e202016-07-06 10:29:27 -0400297/** \brief Get pointer to frame vector data.
298 @param f vlib_frame_t pointer
299 @return pointer to first vector element in frame
300*/
Ed Warnickecb9cada2015-12-08 15:45:58 -0700301always_inline void *
302vlib_frame_vector_args (vlib_frame_t * f)
303{
Damjan Marionb32bd702021-12-23 17:05:02 +0100304 ASSERT (f->vector_offset);
305 return (void *) f + f->vector_offset;
306}
307
308/** \brief Get pointer to frame vector aux data.
309 @param f vlib_frame_t pointer
310 @return pointer to first vector aux data element in frame
311*/
312always_inline void *
313vlib_frame_aux_args (vlib_frame_t *f)
314{
315 ASSERT (f->aux_offset);
316 return (void *) f + f->aux_offset;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700317}
318
Dave Barach9770e202016-07-06 10:29:27 -0400319/** \brief Get pointer to frame scalar data.
320
Dave Barach9770e202016-07-06 10:29:27 -0400321 @param f vlib_frame_t pointer
322
323 @return arbitrary node scalar data
324
325 @sa vlib_frame_vector_args
326*/
Ed Warnickecb9cada2015-12-08 15:45:58 -0700327always_inline void *
Damjan Mariona3d59862018-11-10 10:23:00 +0100328vlib_frame_scalar_args (vlib_frame_t * f)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400329{
Damjan Marionb32bd702021-12-23 17:05:02 +0100330 ASSERT (f->scalar_offset);
331 return (void *) f + f->scalar_offset;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400332}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700333
334always_inline vlib_next_frame_t *
335vlib_node_runtime_get_next_frame (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400336 vlib_node_runtime_t * n, u32 next_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700337{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400338 vlib_node_main_t *nm = &vm->node_main;
339 vlib_next_frame_t *nf;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700340
341 ASSERT (next_index < n->n_next_nodes);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400342 nf = vec_elt_at_index (nm->next_frames, n->next_frame_index + next_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700343
344 if (CLIB_DEBUG > 0)
345 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400346 vlib_node_t *node, *next;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700347 node = vec_elt (nm->nodes, n->node_index);
348 next = vec_elt (nm->nodes, node->next_nodes[next_index]);
349 ASSERT (nf->node_runtime_index == next->runtime_index);
350 }
351
352 return nf;
353}
354
Dave Barach9770e202016-07-06 10:29:27 -0400355/** \brief Get pointer to frame by (@c node_index, @c next_index).
356
357 @warning This is not a function that you should call directly.
358 See @ref vlib_get_next_frame instead.
359
360 @param vm vlib_main_t pointer, varies by thread
361 @param node_index index of the node
362 @param next_index graph arc index
363
364 @return pointer to the requested vlib_next_frame_t
365
366 @sa vlib_get_next_frame
367*/
368
Ed Warnickecb9cada2015-12-08 15:45:58 -0700369always_inline vlib_next_frame_t *
Dave Barach9b8ffd92016-07-08 08:13:45 -0400370vlib_node_get_next_frame (vlib_main_t * vm, u32 node_index, u32 next_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700371{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400372 vlib_node_main_t *nm = &vm->node_main;
373 vlib_node_t *n;
374 vlib_node_runtime_t *r;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700375
376 n = vec_elt (nm->nodes, node_index);
377 r = vec_elt_at_index (nm->nodes_by_type[n->type], n->runtime_index);
378 return vlib_node_runtime_get_next_frame (vm, r, next_index);
379}
380
Dave Barach9b8ffd92016-07-08 08:13:45 -0400381vlib_frame_t *vlib_get_next_frame_internal (vlib_main_t * vm,
382 vlib_node_runtime_t * node,
383 u32 next_index,
384 u32 alloc_new_frame);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700385
Mohammed Hawaricd758e62022-05-31 18:11:05 +0200386#define vlib_get_next_frame_macro(vm, node, next_index, vectors, \
387 n_vectors_left, alloc_new_frame) \
388 do \
389 { \
390 vlib_frame_t *_f = vlib_get_next_frame_internal ( \
391 (vm), (node), (next_index), (alloc_new_frame)); \
392 u32 _n = _f->n_vectors; \
393 (vectors) = vlib_frame_vector_args (_f) + _n * sizeof ((vectors)[0]); \
394 (n_vectors_left) = VLIB_FRAME_SIZE - _n; \
395 } \
396 while (0)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700397
Mohammed Hawaricd758e62022-05-31 18:11:05 +0200398#define vlib_get_next_frame_macro_with_aux(vm, node, next_index, vectors, \
399 n_vectors_left, alloc_new_frame, \
400 aux_data, maybe_no_aux) \
401 do \
402 { \
403 vlib_frame_t *_f = vlib_get_next_frame_internal ( \
404 (vm), (node), (next_index), (alloc_new_frame)); \
405 u32 _n = _f->n_vectors; \
406 (vectors) = vlib_frame_vector_args (_f) + _n * sizeof ((vectors)[0]); \
407 if ((maybe_no_aux) && (_f)->aux_offset == 0) \
408 (aux_data) = NULL; \
409 else \
410 (aux_data) = vlib_frame_aux_args (_f) + _n * sizeof ((aux_data)[0]); \
411 (n_vectors_left) = VLIB_FRAME_SIZE - _n; \
412 } \
413 while (0)
Dave Barach9770e202016-07-06 10:29:27 -0400414
Dave Barach9b8ffd92016-07-08 08:13:45 -0400415/** \brief Get pointer to next frame vector data by
Dave Barach9770e202016-07-06 10:29:27 -0400416 (@c vlib_node_runtime_t, @c next_index).
417 Standard single/dual loop boilerplate element.
418 @attention This is a MACRO, with SIDE EFFECTS.
419
420 @param vm vlib_main_t pointer, varies by thread
421 @param node current node vlib_node_runtime_t pointer
422 @param next_index requested graph arc index
423
424 @return @c vectors -- pointer to next available vector slot
425 @return @c n_vectors_left -- number of vector slots available
426*/
Mohammed Hawaricd758e62022-05-31 18:11:05 +0200427#define vlib_get_next_frame(vm, node, next_index, vectors, n_vectors_left) \
428 vlib_get_next_frame_macro (vm, node, next_index, vectors, n_vectors_left, \
Ed Warnickecb9cada2015-12-08 15:45:58 -0700429 /* alloc new frame */ 0)
430
Mohammed Hawaricd758e62022-05-31 18:11:05 +0200431#define vlib_get_new_next_frame(vm, node, next_index, vectors, \
432 n_vectors_left) \
433 vlib_get_next_frame_macro (vm, node, next_index, vectors, n_vectors_left, \
Ed Warnickecb9cada2015-12-08 15:45:58 -0700434 /* alloc new frame */ 1)
435
Mohammed Hawaricd758e62022-05-31 18:11:05 +0200436/** \brief Get pointer to next frame vector data and next frame aux data by
437 (@c vlib_node_runtime_t, @c next_index).
438 Standard single/dual loop boilerplate element.
439 @attention This is a MACRO, with SIDE EFFECTS.
440 @attention This MACRO is unsafe in case the next node does not support
441 aux_data
442
443 @param vm vlib_main_t pointer, varies by thread
444 @param node current node vlib_node_runtime_t pointer
445 @param next_index requested graph arc index
446
447 @return @c vectors -- pointer to next available vector slot
448 @return @c aux_data -- pointer to next available aux data slot
449 @return @c n_vectors_left -- number of vector slots available
450*/
451#define vlib_get_next_frame_with_aux(vm, node, next_index, vectors, aux_data, \
452 n_vectors_left) \
453 vlib_get_next_frame_macro_with_aux ( \
454 vm, node, next_index, vectors, n_vectors_left, /* alloc new frame */ 0, \
455 aux_data, /* maybe_no_aux */ 0)
456
457#define vlib_get_new_next_frame_with_aux(vm, node, next_index, vectors, \
458 aux_data, n_vectors_left) \
459 vlib_get_next_frame_macro_with_aux ( \
460 vm, node, next_index, vectors, n_vectors_left, /* alloc new frame */ 1, \
461 aux_data, /* maybe_no_aux */ 0)
462
463/** \brief Get pointer to next frame vector data and next frame aux data by
464 (@c vlib_node_runtime_t, @c next_index).
465 Standard single/dual loop boilerplate element.
466 @attention This is a MACRO, with SIDE EFFECTS.
467 @attention This MACRO is safe in case the next node does not support aux_data.
468 In that case aux_data is set to NULL.
469
470 @param vm vlib_main_t pointer, varies by thread
471 @param node current node vlib_node_runtime_t pointer
472 @param next_index requested graph arc index
473
474 @return @c vectors -- pointer to next available vector slot
475 @return @c aux_data -- pointer to next available aux data slot
476 @return @c n_vectors_left -- number of vector slots available
477*/
478#define vlib_get_next_frame_with_aux_safe(vm, node, next_index, vectors, \
479 aux_data, n_vectors_left) \
480 vlib_get_next_frame_macro_with_aux ( \
481 vm, node, next_index, vectors, n_vectors_left, /* alloc new frame */ 0, \
482 aux_data, /* maybe_no_aux */ 1)
483
484#define vlib_get_new_next_frame_with_aux_safe(vm, node, next_index, vectors, \
485 aux_data, n_vectors_left) \
486 vlib_get_next_frame_macro_with_aux ( \
487 vm, node, next_index, vectors, n_vectors_left, /* alloc new frame */ 1, \
488 aux_data, /* maybe_no_aux */ 1)
489
Dave Barach9770e202016-07-06 10:29:27 -0400490/** \brief Release pointer to next frame vector data.
491 Standard single/dual loop boilerplate element.
492 @param vm vlib_main_t pointer, varies by thread
493 @param r current node vlib_node_runtime_t pointer
494 @param next_index graph arc index
495 @param n_packets_left number of slots still available in vector
496*/
Ed Warnickecb9cada2015-12-08 15:45:58 -0700497void
498vlib_put_next_frame (vlib_main_t * vm,
499 vlib_node_runtime_t * r,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400500 u32 next_index, u32 n_packets_left);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700501
502/* Combination get plus put. Returns vector argument just added. */
503#define vlib_set_next_frame(vm,node,next_index,v) \
504({ \
505 uword _n_left; \
506 vlib_get_next_frame ((vm), (node), (next_index), (v), _n_left); \
507 ASSERT (_n_left > 0); \
508 vlib_put_next_frame ((vm), (node), (next_index), _n_left - 1); \
509 (v); \
510})
511
Mohammed Hawari16052482022-06-02 13:55:36 +0200512#define vlib_set_next_frame_with_aux_safe(vm, node, next_index, v, aux) \
513 ({ \
514 uword _n_left; \
515 vlib_get_next_frame_with_aux_safe ((vm), (node), (next_index), (v), \
516 (aux), _n_left); \
517 ASSERT (_n_left > 0); \
518 vlib_put_next_frame ((vm), (node), (next_index), _n_left - 1); \
519 (v); \
520 })
521
Ed Warnickecb9cada2015-12-08 15:45:58 -0700522always_inline void
523vlib_set_next_frame_buffer (vlib_main_t * vm,
524 vlib_node_runtime_t * node,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400525 u32 next_index, u32 buffer_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700526{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400527 u32 *p;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700528 p = vlib_set_next_frame (vm, node, next_index, p);
529 p[0] = buffer_index;
530}
531
Mohammed Hawari16052482022-06-02 13:55:36 +0200532always_inline void
533vlib_set_next_frame_buffer_with_aux_safe (vlib_main_t *vm,
534 vlib_node_runtime_t *node,
535 u32 next_index, u32 buffer_index,
536 u32 aux)
537{
538 u32 *p;
539 u32 *a;
540 p = vlib_set_next_frame_with_aux_safe (vm, node, next_index, p, a);
541 p[0] = buffer_index;
542 if (a)
543 a[0] = aux;
544}
545
Dave Barach9b8ffd92016-07-08 08:13:45 -0400546vlib_frame_t *vlib_get_frame_to_node (vlib_main_t * vm, u32 to_node_index);
547void vlib_put_frame_to_node (vlib_main_t * vm, u32 to_node_index,
548 vlib_frame_t * f);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700549
Ed Warnickecb9cada2015-12-08 15:45:58 -0700550always_inline uword
551vlib_in_process_context (vlib_main_t * vm)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400552{
553 return vm->node_main.current_process_index != ~0;
554}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700555
Florin Coras66b11312017-07-31 17:18:03 -0700556always_inline vlib_process_t *
557vlib_get_current_process (vlib_main_t * vm)
558{
559 vlib_node_main_t *nm = &vm->node_main;
560 if (vlib_in_process_context (vm))
561 return vec_elt (nm->processes, nm->current_process_index);
562 return 0;
563}
564
Ed Warnickecb9cada2015-12-08 15:45:58 -0700565always_inline uword
566vlib_current_process (vlib_main_t * vm)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400567{
568 return vlib_get_current_process (vm)->node_runtime.node_index;
569}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700570
Damjan Marion698eeb12020-09-11 14:11:11 +0200571always_inline u32
572vlib_get_current_process_node_index (vlib_main_t * vm)
573{
574 vlib_process_t *process = vlib_get_current_process (vm);
575 return process->node_runtime.node_index;
576}
577
Dave Barach5c20a012017-06-13 08:48:31 -0400578/** Returns TRUE if a process suspend time is less than 10us
Dave Barach2ab470a2016-08-10 18:38:36 -0400579 @param dt - remaining poll time in seconds
Dave Barach5c20a012017-06-13 08:48:31 -0400580 @returns 1 if dt < 10e-6, 0 otherwise
Dave Barach2ab470a2016-08-10 18:38:36 -0400581*/
Ed Warnickecb9cada2015-12-08 15:45:58 -0700582always_inline uword
583vlib_process_suspend_time_is_zero (f64 dt)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400584{
Dave Barach5c20a012017-06-13 08:48:31 -0400585 return dt < 10e-6;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400586}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700587
Dave Barach2ab470a2016-08-10 18:38:36 -0400588/** Suspend a vlib cooperative multi-tasking thread for a period of time
589 @param vm - vlib_main_t *
590 @param dt - suspend interval in seconds
591 @returns VLIB_PROCESS_RESUME_LONGJMP_RESUME, routinely ignored
592*/
593
Ed Warnickecb9cada2015-12-08 15:45:58 -0700594always_inline uword
595vlib_process_suspend (vlib_main_t * vm, f64 dt)
596{
597 uword r;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400598 vlib_node_main_t *nm = &vm->node_main;
599 vlib_process_t *p = vec_elt (nm->processes, nm->current_process_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700600
601 if (vlib_process_suspend_time_is_zero (dt))
602 return VLIB_PROCESS_RESUME_LONGJMP_RESUME;
603
604 p->flags |= VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_CLOCK;
605 r = clib_setjmp (&p->resume_longjmp, VLIB_PROCESS_RESUME_LONGJMP_SUSPEND);
606 if (r == VLIB_PROCESS_RESUME_LONGJMP_SUSPEND)
607 {
Dave Barach5c20a012017-06-13 08:48:31 -0400608 /* expiration time in 10us ticks */
609 p->resume_clock_interval = dt * 1e5;
Damjan Marioncea46522020-05-21 16:47:05 +0200610 vlib_process_start_switch_stack (vm, 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700611 clib_longjmp (&p->return_longjmp, VLIB_PROCESS_RETURN_LONGJMP_SUSPEND);
612 }
Damjan Marioncea46522020-05-21 16:47:05 +0200613 else
614 vlib_process_finish_switch_stack (vm);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700615
616 return r;
617}
618
619always_inline void
Dave Barach9b8ffd92016-07-08 08:13:45 -0400620vlib_process_free_event_type (vlib_process_t * p, uword t,
621 uword is_one_time_event)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700622{
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 pool_put_index (p->event_type_pool, t);
625 if (is_one_time_event)
626 p->one_time_event_type_bitmap =
627 clib_bitmap_andnoti (p->one_time_event_type_bitmap, t);
628}
629
630always_inline void
631vlib_process_maybe_free_event_type (vlib_process_t * p, uword t)
632{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400633 ASSERT (!pool_is_free_index (p->event_type_pool, t));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700634 if (clib_bitmap_get (p->one_time_event_type_bitmap, t))
635 vlib_process_free_event_type (p, t, /* is_one_time_event */ 1);
636}
637
638always_inline void *
Dave Barach9b8ffd92016-07-08 08:13:45 -0400639vlib_process_get_event_data (vlib_main_t * vm,
640 uword * return_event_type_opaque)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700641{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400642 vlib_node_main_t *nm = &vm->node_main;
643 vlib_process_t *p;
644 vlib_process_event_type_t *et;
Gabriel Ganne71d73fe2017-02-04 10:51:04 +0100645 uword t;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400646 void *event_data_vector;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700647
648 p = vec_elt (nm->processes, nm->current_process_index);
649
650 /* Find first type with events ready.
651 Return invalid type when there's nothing there. */
652 t = clib_bitmap_first_set (p->non_empty_event_type_bitmap);
653 if (t == ~0)
654 return 0;
655
Dave Barach9b8ffd92016-07-08 08:13:45 -0400656 p->non_empty_event_type_bitmap =
657 clib_bitmap_andnoti (p->non_empty_event_type_bitmap, t);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700658
Gabriel Ganne71d73fe2017-02-04 10:51:04 +0100659 ASSERT (_vec_len (p->pending_event_data_by_type_index[t]) > 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700660 event_data_vector = p->pending_event_data_by_type_index[t];
661 p->pending_event_data_by_type_index[t] = 0;
662
663 et = pool_elt_at_index (p->event_type_pool, t);
664
665 /* Return user's opaque value and possibly index. */
666 *return_event_type_opaque = et->opaque;
667
668 vlib_process_maybe_free_event_type (p, t);
669
670 return event_data_vector;
671}
672
673/* Return event data vector for later reuse. We reuse event data to avoid
674 repeatedly allocating event vectors in cases where we care about speed. */
675always_inline void
Dave Barach9b8ffd92016-07-08 08:13:45 -0400676vlib_process_put_event_data (vlib_main_t * vm, void *event_data)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700677{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400678 vlib_node_main_t *nm = &vm->node_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700679 vec_add1 (nm->recycled_event_data_vectors, event_data);
680}
681
Dave Barach2ab470a2016-08-10 18:38:36 -0400682/** Return the first event type which has occurred and a vector of per-event
683 data of that type, or a timeout indication
684
685 @param vm - vlib_main_t pointer
686 @param data_vector - pointer to a (uword *) vector to receive event data
687 @returns either an event type and a vector of per-event instance data,
688 or ~0 to indicate a timeout.
689*/
690
Ed Warnickecb9cada2015-12-08 15:45:58 -0700691always_inline uword
692vlib_process_get_events (vlib_main_t * vm, uword ** data_vector)
693{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400694 vlib_node_main_t *nm = &vm->node_main;
695 vlib_process_t *p;
696 vlib_process_event_type_t *et;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700697 uword r, t, l;
698
699 p = vec_elt (nm->processes, nm->current_process_index);
700
701 /* Find first type with events ready.
702 Return invalid type when there's nothing there. */
703 t = clib_bitmap_first_set (p->non_empty_event_type_bitmap);
704 if (t == ~0)
705 return t;
706
Dave Barach9b8ffd92016-07-08 08:13:45 -0400707 p->non_empty_event_type_bitmap =
708 clib_bitmap_andnoti (p->non_empty_event_type_bitmap, t);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700709
710 l = _vec_len (p->pending_event_data_by_type_index[t]);
711 if (data_vector)
712 vec_add (*data_vector, p->pending_event_data_by_type_index[t], l);
Damjan Marion8bea5892022-04-04 22:40:45 +0200713 vec_set_len (p->pending_event_data_by_type_index[t], 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700714
715 et = pool_elt_at_index (p->event_type_pool, t);
716
717 /* Return user's opaque value. */
718 r = et->opaque;
719
720 vlib_process_maybe_free_event_type (p, t);
721
722 return r;
723}
724
725always_inline uword
Dave Barach9b8ffd92016-07-08 08:13:45 -0400726vlib_process_get_events_helper (vlib_process_t * p, uword t,
727 uword ** data_vector)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700728{
729 uword l;
730
Dave Barach9b8ffd92016-07-08 08:13:45 -0400731 p->non_empty_event_type_bitmap =
732 clib_bitmap_andnoti (p->non_empty_event_type_bitmap, t);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700733
734 l = _vec_len (p->pending_event_data_by_type_index[t]);
735 if (data_vector)
736 vec_add (*data_vector, p->pending_event_data_by_type_index[t], l);
Damjan Marion8bea5892022-04-04 22:40:45 +0200737 vec_set_len (p->pending_event_data_by_type_index[t], 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700738
739 vlib_process_maybe_free_event_type (p, t);
740
741 return l;
742}
743
744/* As above but query as specified type of event. Returns number of
745 events found. */
746always_inline uword
747vlib_process_get_events_with_type (vlib_main_t * vm, uword ** data_vector,
748 uword with_type_opaque)
749{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400750 vlib_node_main_t *nm = &vm->node_main;
751 vlib_process_t *p;
752 uword t, *h;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700753
754 p = vec_elt (nm->processes, nm->current_process_index);
755 h = hash_get (p->event_type_index_by_type_opaque, with_type_opaque);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400756 if (!h)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700757 /* This can happen when an event has not yet been
758 signaled with given opaque type. */
759 return 0;
760
761 t = h[0];
Dave Barach9b8ffd92016-07-08 08:13:45 -0400762 if (!clib_bitmap_get (p->non_empty_event_type_bitmap, t))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700763 return 0;
764
765 return vlib_process_get_events_helper (p, t, data_vector);
766}
767
768always_inline uword *
769vlib_process_wait_for_event (vlib_main_t * vm)
770{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400771 vlib_node_main_t *nm = &vm->node_main;
772 vlib_process_t *p;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700773 uword r;
774
775 p = vec_elt (nm->processes, nm->current_process_index);
776 if (clib_bitmap_is_zero (p->non_empty_event_type_bitmap))
777 {
778 p->flags |= VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_EVENT;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400779 r =
780 clib_setjmp (&p->resume_longjmp, VLIB_PROCESS_RESUME_LONGJMP_SUSPEND);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700781 if (r == VLIB_PROCESS_RESUME_LONGJMP_SUSPEND)
Damjan Marioncea46522020-05-21 16:47:05 +0200782 {
783 vlib_process_start_switch_stack (vm, 0);
784 clib_longjmp (&p->return_longjmp,
785 VLIB_PROCESS_RETURN_LONGJMP_SUSPEND);
786 }
787 else
788 vlib_process_finish_switch_stack (vm);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700789 }
790
791 return p->non_empty_event_type_bitmap;
792}
793
794always_inline uword
795vlib_process_wait_for_one_time_event (vlib_main_t * vm,
796 uword ** data_vector,
797 uword with_type_index)
798{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400799 vlib_node_main_t *nm = &vm->node_main;
800 vlib_process_t *p;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700801 uword r;
802
803 p = vec_elt (nm->processes, nm->current_process_index);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400804 ASSERT (!pool_is_free_index (p->event_type_pool, with_type_index));
805 while (!clib_bitmap_get (p->non_empty_event_type_bitmap, with_type_index))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700806 {
807 p->flags |= VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_EVENT;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400808 r =
809 clib_setjmp (&p->resume_longjmp, VLIB_PROCESS_RESUME_LONGJMP_SUSPEND);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700810 if (r == VLIB_PROCESS_RESUME_LONGJMP_SUSPEND)
Damjan Marioncea46522020-05-21 16:47:05 +0200811 {
812 vlib_process_start_switch_stack (vm, 0);
813 clib_longjmp (&p->return_longjmp,
814 VLIB_PROCESS_RETURN_LONGJMP_SUSPEND);
815 }
816 else
817 vlib_process_finish_switch_stack (vm);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700818 }
819
820 return vlib_process_get_events_helper (p, with_type_index, data_vector);
821}
822
823always_inline uword
824vlib_process_wait_for_event_with_type (vlib_main_t * vm,
825 uword ** data_vector,
826 uword with_type_opaque)
827{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400828 vlib_node_main_t *nm = &vm->node_main;
829 vlib_process_t *p;
830 uword r, *h;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700831
832 p = vec_elt (nm->processes, nm->current_process_index);
833 h = hash_get (p->event_type_index_by_type_opaque, with_type_opaque);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400834 while (!h || !clib_bitmap_get (p->non_empty_event_type_bitmap, h[0]))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700835 {
836 p->flags |= VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_EVENT;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400837 r =
838 clib_setjmp (&p->resume_longjmp, VLIB_PROCESS_RESUME_LONGJMP_SUSPEND);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700839 if (r == VLIB_PROCESS_RESUME_LONGJMP_SUSPEND)
Damjan Marioncea46522020-05-21 16:47:05 +0200840 {
841 vlib_process_start_switch_stack (vm, 0);
842 clib_longjmp (&p->return_longjmp,
843 VLIB_PROCESS_RETURN_LONGJMP_SUSPEND);
844 }
845 else
846 vlib_process_finish_switch_stack (vm);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700847
848 /* See if unknown event type has been signaled now. */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400849 if (!h)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700850 h = hash_get (p->event_type_index_by_type_opaque, with_type_opaque);
851 }
852
853 return vlib_process_get_events_helper (p, h[0], data_vector);
854}
855
Dave Barach2ab470a2016-08-10 18:38:36 -0400856/** Suspend a cooperative multi-tasking thread
857 Waits for an event, or for the indicated number of seconds to elapse
858 @param vm - vlib_main_t pointer
Damjan Marion607de1a2016-08-16 22:53:54 +0200859 @param dt - timeout, in seconds.
Dave Barach2ab470a2016-08-10 18:38:36 -0400860 @returns the remaining time interval
861*/
862
Ed Warnickecb9cada2015-12-08 15:45:58 -0700863always_inline f64
864vlib_process_wait_for_event_or_clock (vlib_main_t * vm, f64 dt)
865{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400866 vlib_node_main_t *nm = &vm->node_main;
867 vlib_process_t *p;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700868 f64 wakeup_time;
869 uword r;
870
871 p = vec_elt (nm->processes, nm->current_process_index);
872
873 if (vlib_process_suspend_time_is_zero (dt)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400874 || !clib_bitmap_is_zero (p->non_empty_event_type_bitmap))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700875 return dt;
876
877 wakeup_time = vlib_time_now (vm) + dt;
878
879 /* Suspend waiting for both clock and event to occur. */
880 p->flags |= (VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_EVENT
881 | VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_CLOCK);
882
883 r = clib_setjmp (&p->resume_longjmp, VLIB_PROCESS_RESUME_LONGJMP_SUSPEND);
884 if (r == VLIB_PROCESS_RESUME_LONGJMP_SUSPEND)
885 {
Dave Barach5c20a012017-06-13 08:48:31 -0400886 p->resume_clock_interval = dt * 1e5;
Damjan Marioncea46522020-05-21 16:47:05 +0200887 vlib_process_start_switch_stack (vm, 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700888 clib_longjmp (&p->return_longjmp, VLIB_PROCESS_RETURN_LONGJMP_SUSPEND);
889 }
Damjan Marioncea46522020-05-21 16:47:05 +0200890 else
891 vlib_process_finish_switch_stack (vm);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700892
893 /* Return amount of time still left to sleep.
894 If <= 0 then we've been waken up by the clock (and not an event). */
895 return wakeup_time - vlib_time_now (vm);
896}
897
898always_inline vlib_process_event_type_t *
899vlib_process_new_event_type (vlib_process_t * p, uword with_type_opaque)
900{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400901 vlib_process_event_type_t *et;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700902 pool_get (p->event_type_pool, et);
903 et->opaque = with_type_opaque;
904 return et;
905}
906
907always_inline uword
Dave Barach9b8ffd92016-07-08 08:13:45 -0400908vlib_process_create_one_time_event (vlib_main_t * vm, uword node_index,
909 uword with_type_opaque)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700910{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400911 vlib_node_main_t *nm = &vm->node_main;
912 vlib_node_t *n = vlib_get_node (vm, node_index);
913 vlib_process_t *p = vec_elt (nm->processes, n->runtime_index);
914 vlib_process_event_type_t *et;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700915 uword t;
916
917 et = vlib_process_new_event_type (p, with_type_opaque);
918 t = et - p->event_type_pool;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400919 p->one_time_event_type_bitmap =
920 clib_bitmap_ori (p->one_time_event_type_bitmap, t);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700921 return t;
922}
923
924always_inline void
Dave Barach9b8ffd92016-07-08 08:13:45 -0400925vlib_process_delete_one_time_event (vlib_main_t * vm, uword node_index,
926 uword t)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700927{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400928 vlib_node_main_t *nm = &vm->node_main;
929 vlib_node_t *n = vlib_get_node (vm, node_index);
930 vlib_process_t *p = vec_elt (nm->processes, n->runtime_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700931
932 ASSERT (clib_bitmap_get (p->one_time_event_type_bitmap, t));
933 vlib_process_free_event_type (p, t, /* is_one_time_event */ 1);
934}
935
936always_inline void *
937vlib_process_signal_event_helper (vlib_node_main_t * nm,
938 vlib_node_t * n,
939 vlib_process_t * p,
940 uword t,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400941 uword n_data_elts, uword n_data_elt_bytes)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700942{
943 uword p_flags, add_to_pending, delete_from_wheel;
Damjan Mariond24b86e2022-03-23 16:59:23 +0100944 u8 *data_to_be_written_by_caller;
Damjan Marione4fa1d22022-04-11 18:41:49 +0200945 vec_attr_t va = { .elt_sz = n_data_elt_bytes };
Ed Warnickecb9cada2015-12-08 15:45:58 -0700946
Dave Barach1403fcd2018-02-05 09:45:43 -0500947 ASSERT (n->type == VLIB_NODE_TYPE_PROCESS);
948
Dave Barach9b8ffd92016-07-08 08:13:45 -0400949 ASSERT (!pool_is_free_index (p->event_type_pool, t));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700950
951 vec_validate (p->pending_event_data_by_type_index, t);
952
953 /* Resize data vector and return caller's data to be written. */
954 {
Damjan Mariond24b86e2022-03-23 16:59:23 +0100955 u8 *data_vec = p->pending_event_data_by_type_index[t];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700956 uword l;
957
Dave Barach9b8ffd92016-07-08 08:13:45 -0400958 if (!data_vec && vec_len (nm->recycled_event_data_vectors))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700959 {
960 data_vec = vec_pop (nm->recycled_event_data_vectors);
fangtong33b18d42021-07-24 14:55:02 +0800961 vec_reset_length (data_vec);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700962 }
963
964 l = vec_len (data_vec);
965
Damjan Marione4fa1d22022-04-11 18:41:49 +0200966 data_vec = _vec_realloc_internal (data_vec, l + n_data_elts, &va);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700967
968 p->pending_event_data_by_type_index[t] = data_vec;
969 data_to_be_written_by_caller = data_vec + l * n_data_elt_bytes;
970 }
971
Dave Barach9b8ffd92016-07-08 08:13:45 -0400972 p->non_empty_event_type_bitmap =
973 clib_bitmap_ori (p->non_empty_event_type_bitmap, t);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700974
975 p_flags = p->flags;
976
977 /* Event was already signalled? */
978 add_to_pending = (p_flags & VLIB_PROCESS_RESUME_PENDING) == 0;
979
980 /* Process will resume when suspend time elapses? */
981 delete_from_wheel = 0;
982 if (p_flags & VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_CLOCK)
983 {
984 /* Waiting for both event and clock? */
985 if (p_flags & VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_EVENT)
Florin Coras40f92462018-08-01 16:25:45 -0700986 {
987 if (!TW (tw_timer_handle_is_free)
988 ((TWT (tw_timer_wheel) *) nm->timing_wheel,
989 p->stop_timer_handle))
990 delete_from_wheel = 1;
991 else
992 /* timer just popped so process should already be on the list */
993 add_to_pending = 0;
994 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700995 else
996 /* Waiting only for clock. Event will be queue and may be
997 handled when timer expires. */
998 add_to_pending = 0;
999 }
1000
1001 /* Never add current process to pending vector since current process is
1002 already running. */
1003 add_to_pending &= nm->current_process_index != n->runtime_index;
1004
1005 if (add_to_pending)
1006 {
1007 u32 x = vlib_timing_wheel_data_set_suspended_process (n->runtime_index);
1008 p->flags = p_flags | VLIB_PROCESS_RESUME_PENDING;
1009 vec_add1 (nm->data_from_advancing_timing_wheel, x);
1010 if (delete_from_wheel)
jinshb7756b22023-03-07 14:32:06 +08001011 {
1012 TW (tw_timer_stop)
1013 ((TWT (tw_timer_wheel) *) nm->timing_wheel, p->stop_timer_handle);
1014 p->stop_timer_handle = ~0;
1015 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001016 }
1017
1018 return data_to_be_written_by_caller;
1019}
1020
1021always_inline void *
1022vlib_process_signal_event_data (vlib_main_t * vm,
1023 uword node_index,
1024 uword type_opaque,
Dave Barach9b8ffd92016-07-08 08:13:45 -04001025 uword n_data_elts, uword n_data_elt_bytes)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001026{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001027 vlib_node_main_t *nm = &vm->node_main;
1028 vlib_node_t *n = vlib_get_node (vm, node_index);
1029 vlib_process_t *p = vec_elt (nm->processes, n->runtime_index);
1030 uword *h, t;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001031
John Lo609707e2017-09-19 21:45:10 -04001032 /* Must be in main thread */
1033 ASSERT (vlib_get_thread_index () == 0);
1034
Ed Warnickecb9cada2015-12-08 15:45:58 -07001035 h = hash_get (p->event_type_index_by_type_opaque, type_opaque);
Dave Barach9b8ffd92016-07-08 08:13:45 -04001036 if (!h)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001037 {
Dave Barach9b8ffd92016-07-08 08:13:45 -04001038 vlib_process_event_type_t *et =
1039 vlib_process_new_event_type (p, type_opaque);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001040 t = et - p->event_type_pool;
1041 hash_set (p->event_type_index_by_type_opaque, type_opaque, t);
1042 }
1043 else
1044 t = h[0];
1045
Dave Barach9b8ffd92016-07-08 08:13:45 -04001046 return vlib_process_signal_event_helper (nm, n, p, t, n_data_elts,
1047 n_data_elt_bytes);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001048}
1049
1050always_inline void *
1051vlib_process_signal_event_at_time (vlib_main_t * vm,
1052 f64 dt,
1053 uword node_index,
1054 uword type_opaque,
Dave Barach9b8ffd92016-07-08 08:13:45 -04001055 uword n_data_elts, uword n_data_elt_bytes)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001056{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001057 vlib_node_main_t *nm = &vm->node_main;
1058 vlib_node_t *n = vlib_get_node (vm, node_index);
1059 vlib_process_t *p = vec_elt (nm->processes, n->runtime_index);
1060 uword *h, t;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001061
1062 h = hash_get (p->event_type_index_by_type_opaque, type_opaque);
Dave Barach9b8ffd92016-07-08 08:13:45 -04001063 if (!h)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001064 {
Dave Barach9b8ffd92016-07-08 08:13:45 -04001065 vlib_process_event_type_t *et =
1066 vlib_process_new_event_type (p, type_opaque);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001067 t = et - p->event_type_pool;
1068 hash_set (p->event_type_index_by_type_opaque, type_opaque, t);
1069 }
1070 else
1071 t = h[0];
1072
1073 if (vlib_process_suspend_time_is_zero (dt))
Dave Barach9b8ffd92016-07-08 08:13:45 -04001074 return vlib_process_signal_event_helper (nm, n, p, t, n_data_elts,
1075 n_data_elt_bytes);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001076 else
1077 {
Dave Barach9b8ffd92016-07-08 08:13:45 -04001078 vlib_signal_timed_event_data_t *te;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001079
1080 pool_get_aligned (nm->signal_timed_event_data_pool, te, sizeof (te[0]));
1081
1082 te->n_data_elts = n_data_elts;
1083 te->n_data_elt_bytes = n_data_elt_bytes;
1084 te->n_data_bytes = n_data_elts * n_data_elt_bytes;
1085
1086 /* Assert that structure fields are big enough. */
1087 ASSERT (te->n_data_elts == n_data_elts);
1088 ASSERT (te->n_data_elt_bytes == n_data_elt_bytes);
1089 ASSERT (te->n_data_bytes == n_data_elts * n_data_elt_bytes);
1090
1091 te->process_node_index = n->runtime_index;
1092 te->event_type_index = t;
1093
Dave Barach5c20a012017-06-13 08:48:31 -04001094 p->stop_timer_handle =
1095 TW (tw_timer_start) ((TWT (tw_timer_wheel) *) nm->timing_wheel,
1096 vlib_timing_wheel_data_set_timed_event
1097 (te - nm->signal_timed_event_data_pool),
1098 0 /* timer_id */ ,
1099 (vlib_time_now (vm) + dt) * 1e5);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001100
1101 /* Inline data big enough to hold event? */
1102 if (te->n_data_bytes < sizeof (te->inline_event_data))
1103 return te->inline_event_data;
1104 else
1105 {
1106 te->event_data_as_vector = 0;
1107 vec_resize (te->event_data_as_vector, te->n_data_bytes);
1108 return te->event_data_as_vector;
1109 }
1110 }
1111}
1112
1113always_inline void *
1114vlib_process_signal_one_time_event_data (vlib_main_t * vm,
1115 uword node_index,
1116 uword type_index,
1117 uword n_data_elts,
1118 uword n_data_elt_bytes)
1119{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001120 vlib_node_main_t *nm = &vm->node_main;
1121 vlib_node_t *n = vlib_get_node (vm, node_index);
1122 vlib_process_t *p = vec_elt (nm->processes, n->runtime_index);
1123 return vlib_process_signal_event_helper (nm, n, p, type_index, n_data_elts,
1124 n_data_elt_bytes);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001125}
1126
1127always_inline void
1128vlib_process_signal_event (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -04001129 uword node_index, uword type_opaque, uword data)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001130{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001131 uword *d = vlib_process_signal_event_data (vm, node_index, type_opaque,
1132 1 /* elts */ , sizeof (uword));
Ed Warnickecb9cada2015-12-08 15:45:58 -07001133 d[0] = data;
1134}
1135
1136always_inline void
1137vlib_process_signal_event_pointer (vlib_main_t * vm,
1138 uword node_index,
Dave Barach9b8ffd92016-07-08 08:13:45 -04001139 uword type_opaque, void *data)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001140{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001141 void **d = vlib_process_signal_event_data (vm, node_index, type_opaque,
1142 1 /* elts */ , sizeof (data));
Ed Warnickecb9cada2015-12-08 15:45:58 -07001143 d[0] = data;
1144}
1145
Dave Barach69128d02017-09-26 10:54:34 -04001146/**
1147 * Signal event to process from any thread.
1148 *
1149 * When in doubt, use this.
1150 */
1151always_inline void
1152vlib_process_signal_event_mt (vlib_main_t * vm,
1153 uword node_index, uword type_opaque, uword data)
1154{
1155 if (vlib_get_thread_index () != 0)
1156 {
1157 vlib_process_signal_event_mt_args_t args = {
1158 .node_index = node_index,
1159 .type_opaque = type_opaque,
1160 .data = data,
1161 };
1162 vlib_rpc_call_main_thread (vlib_process_signal_event_mt_helper,
1163 (u8 *) & args, sizeof (args));
1164 }
1165 else
1166 vlib_process_signal_event (vm, node_index, type_opaque, data);
1167}
1168
Ed Warnickecb9cada2015-12-08 15:45:58 -07001169always_inline void
1170vlib_process_signal_one_time_event (vlib_main_t * vm,
1171 uword node_index,
Dave Barach9b8ffd92016-07-08 08:13:45 -04001172 uword type_index, uword data)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001173{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001174 uword *d =
1175 vlib_process_signal_one_time_event_data (vm, node_index, type_index,
1176 1 /* elts */ , sizeof (uword));
Ed Warnickecb9cada2015-12-08 15:45:58 -07001177 d[0] = data;
1178}
1179
1180always_inline void
Dave Barach9b8ffd92016-07-08 08:13:45 -04001181vlib_signal_one_time_waiting_process (vlib_main_t * vm,
1182 vlib_one_time_waiting_process_t * p)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001183{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001184 vlib_process_signal_one_time_event (vm, p->node_index, p->one_time_event,
1185 /* data */ ~0);
Dave Barachb7b92992018-10-17 10:38:51 -04001186 clib_memset (p, ~0, sizeof (p[0]));
Ed Warnickecb9cada2015-12-08 15:45:58 -07001187}
1188
1189always_inline void
1190vlib_signal_one_time_waiting_process_vector (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -04001191 vlib_one_time_waiting_process_t
1192 ** wps)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001193{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001194 vlib_one_time_waiting_process_t *wp;
1195 vec_foreach (wp, *wps) vlib_signal_one_time_waiting_process (vm, wp);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001196 vec_free (*wps);
1197}
1198
1199always_inline void
Dave Barach9b8ffd92016-07-08 08:13:45 -04001200vlib_current_process_wait_for_one_time_event (vlib_main_t * vm,
1201 vlib_one_time_waiting_process_t
1202 * p)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001203{
1204 p->node_index = vlib_current_process (vm);
Dave Barach9b8ffd92016-07-08 08:13:45 -04001205 p->one_time_event = vlib_process_create_one_time_event (vm, p->node_index, /* type opaque */
1206 ~0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001207 vlib_process_wait_for_one_time_event (vm,
1208 /* don't care about data */ 0,
1209 p->one_time_event);
1210}
1211
1212always_inline void
1213vlib_current_process_wait_for_one_time_event_vector (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -04001214 vlib_one_time_waiting_process_t
1215 ** wps)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001216{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001217 vlib_one_time_waiting_process_t *wp;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001218 vec_add2 (*wps, wp, 1);
1219 vlib_current_process_wait_for_one_time_event (vm, wp);
1220}
1221
1222always_inline u32
1223vlib_node_runtime_update_main_loop_vector_stats (vlib_main_t * vm,
1224 vlib_node_runtime_t * node,
1225 uword n_vectors)
1226{
1227 u32 i, d, vi0, vi1;
1228 u32 i0, i1;
1229
1230 ASSERT (is_pow2 (ARRAY_LEN (node->main_loop_vector_stats)));
1231 i = ((vm->main_loop_count >> VLIB_LOG2_MAIN_LOOPS_PER_STATS_UPDATE)
1232 & (ARRAY_LEN (node->main_loop_vector_stats) - 1));
1233 i0 = i ^ 0;
1234 i1 = i ^ 1;
1235 d = ((vm->main_loop_count >> VLIB_LOG2_MAIN_LOOPS_PER_STATS_UPDATE)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001236 -
1237 (node->main_loop_count_last_dispatch >>
1238 VLIB_LOG2_MAIN_LOOPS_PER_STATS_UPDATE));
Ed Warnickecb9cada2015-12-08 15:45:58 -07001239 vi0 = node->main_loop_vector_stats[i0];
1240 vi1 = node->main_loop_vector_stats[i1];
1241 vi0 = d == 0 ? vi0 : 0;
1242 vi1 = d <= 1 ? vi1 : 0;
1243 vi0 += n_vectors;
1244 node->main_loop_vector_stats[i0] = vi0;
1245 node->main_loop_vector_stats[i1] = vi1;
1246 node->main_loop_count_last_dispatch = vm->main_loop_count;
1247 /* Return previous counter. */
1248 return node->main_loop_vector_stats[i1];
1249}
1250
1251always_inline f64
1252vlib_node_vectors_per_main_loop_as_float (vlib_main_t * vm, u32 node_index)
1253{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001254 vlib_node_runtime_t *rt = vlib_node_get_runtime (vm, node_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001255 u32 v;
1256
Dave Barach9b8ffd92016-07-08 08:13:45 -04001257 v = vlib_node_runtime_update_main_loop_vector_stats (vm, rt, /* n_vectors */
1258 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001259 return (f64) v / (1 << VLIB_LOG2_MAIN_LOOPS_PER_STATS_UPDATE);
1260}
1261
1262always_inline u32
1263vlib_node_vectors_per_main_loop_as_integer (vlib_main_t * vm, u32 node_index)
1264{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001265 vlib_node_runtime_t *rt = vlib_node_get_runtime (vm, node_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001266 u32 v;
1267
Dave Barach9b8ffd92016-07-08 08:13:45 -04001268 v = vlib_node_runtime_update_main_loop_vector_stats (vm, rt, /* n_vectors */
1269 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001270 return v >> VLIB_LOG2_MAIN_LOOPS_PER_STATS_UPDATE;
1271}
1272
Dmitry Valter9f5b3692022-09-05 15:30:18 +00001273void vlib_frame_free (vlib_main_t *vm, vlib_frame_t *f);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001274
Neale Rannsbb620d72017-06-29 00:19:08 -07001275/* Return the edge index if present, ~0 otherwise */
1276uword vlib_node_get_next (vlib_main_t * vm, uword node, uword next_node);
1277
Ed Warnickecb9cada2015-12-08 15:45:58 -07001278/* Add next node to given node in given slot. */
1279uword
1280vlib_node_add_next_with_slot (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -04001281 uword node, uword next_node, uword slot);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001282
1283/* As above but adds to end of node's next vector. */
1284always_inline uword
1285vlib_node_add_next (vlib_main_t * vm, uword node, uword next_node)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001286{
1287 return vlib_node_add_next_with_slot (vm, node, next_node, ~0);
1288}
Ed Warnickecb9cada2015-12-08 15:45:58 -07001289
1290/* Add next node to given node in given slot. */
1291uword
1292vlib_node_add_named_next_with_slot (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -04001293 uword node, char *next_name, uword slot);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001294
1295/* As above but adds to end of node's next vector. */
1296always_inline uword
Dave Barach9b8ffd92016-07-08 08:13:45 -04001297vlib_node_add_named_next (vlib_main_t * vm, uword node, char *name)
1298{
1299 return vlib_node_add_named_next_with_slot (vm, node, name, ~0);
1300}
Ed Warnickecb9cada2015-12-08 15:45:58 -07001301
Florin Corase86a8ed2018-01-05 03:20:25 -08001302/**
1303 * Get list of nodes
1304 */
Dave Barach1ddbc012018-06-13 09:26:05 -04001305void
1306vlib_node_get_nodes (vlib_main_t * vm, u32 max_threads, int include_stats,
1307 int barrier_sync, vlib_node_t **** node_dupsp,
1308 vlib_main_t *** stat_vmsp);
Florin Corase86a8ed2018-01-05 03:20:25 -08001309
Ed Warnickecb9cada2015-12-08 15:45:58 -07001310/* Query node given name. */
Dave Barach9b8ffd92016-07-08 08:13:45 -04001311vlib_node_t *vlib_get_node_by_name (vlib_main_t * vm, u8 * name);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001312
1313/* Rename a node. */
Dave Barach9b8ffd92016-07-08 08:13:45 -04001314void vlib_node_rename (vlib_main_t * vm, u32 node_index, char *fmt, ...);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001315
1316/* Register new packet processing node. Nodes can be registered
1317 dynamically via this call or statically via the VLIB_REGISTER_NODE
1318 macro. */
Damjan Marionf87acfa2022-03-23 17:36:56 +01001319u32 vlib_register_node (vlib_main_t *vm, vlib_node_registration_t *r,
1320 char *fmt, ...);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001321
Damjan Mariona31698b2021-03-10 14:35:28 +01001322/* Register all node function variants */
1323void vlib_register_all_node_march_variants (vlib_main_t *vm);
1324
Ed Warnickecb9cada2015-12-08 15:45:58 -07001325/* Register all static nodes registered via VLIB_REGISTER_NODE. */
1326void vlib_register_all_static_nodes (vlib_main_t * vm);
1327
1328/* Start a process. */
1329void vlib_start_process (vlib_main_t * vm, uword process_index);
1330
1331/* Sync up runtime and main node stats. */
Dave Barach9b8ffd92016-07-08 08:13:45 -04001332void vlib_node_sync_stats (vlib_main_t * vm, vlib_node_t * n);
Arthur de Kerhor156158f2021-02-18 03:09:42 -08001333void vlib_node_runtime_sync_stats (vlib_main_t *vm, vlib_node_runtime_t *r,
1334 uword n_calls, uword n_vectors,
1335 uword n_clocks);
1336void vlib_node_runtime_sync_stats_node (vlib_node_t *n, vlib_node_runtime_t *r,
1337 uword n_calls, uword n_vectors,
1338 uword n_clocks);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001339
1340/* Node graph initialization function. */
Dave Barach9b8ffd92016-07-08 08:13:45 -04001341clib_error_t *vlib_node_main_init (vlib_main_t * vm);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001342
1343format_function_t format_vlib_node_graph;
1344format_function_t format_vlib_node_name;
1345format_function_t format_vlib_next_node_name;
1346format_function_t format_vlib_node_and_next;
1347format_function_t format_vlib_cpu_time;
1348format_function_t format_vlib_time;
1349/* Parse node name -> node index. */
1350unformat_function_t unformat_vlib_node;
1351
Dave Barach9b8ffd92016-07-08 08:13:45 -04001352always_inline void
1353vlib_node_increment_counter (vlib_main_t * vm, u32 node_index,
1354 u32 counter_index, u64 increment)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001355{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001356 vlib_node_t *n = vlib_get_node (vm, node_index);
1357 vlib_error_main_t *em = &vm->error_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001358 u32 node_counter_base_index = n->error_heap_index;
1359 em->counters[node_counter_base_index + counter_index] += increment;
1360}
1361
Dave Barach11965c72019-05-28 16:31:05 -04001362/** @brief Create a vlib process
1363 * @param vm &vlib_global_main
1364 * @param f the process node function
1365 * @param log2_n_stack_bytes size of the process stack, defaults to 16K
1366 * @return newly-create node index
1367 * @warning call only on the main thread. Barrier sync required
1368 */
1369u32 vlib_process_create (vlib_main_t * vm, char *name,
1370 vlib_node_function_t * f, u32 log2_n_stack_bytes);
1371
Damjan Marion8b60fb02020-11-27 20:15:17 +01001372always_inline int
1373vlib_node_set_dispatch_wrapper (vlib_main_t *vm, vlib_node_function_t *fn)
1374{
1375 if (fn && vm->dispatch_wrapper_fn)
1376 return 1;
1377 vm->dispatch_wrapper_fn = fn;
1378 return 0;
1379}
1380
Damjan Mariona31698b2021-03-10 14:35:28 +01001381int vlib_node_set_march_variant (vlib_main_t *vm, u32 node_index,
1382 clib_march_variant_type_t march_variant);
1383
1384vlib_node_function_t *
1385vlib_node_get_preferred_node_fn_variant (vlib_main_t *vm,
1386 vlib_node_fn_registration_t *regs);
1387
Damjan Marionefeea5b2022-02-10 15:01:03 +01001388/*
1389 * vlib_frame_bitmap functions
1390 */
1391
1392#define VLIB_FRAME_BITMAP_N_UWORDS \
1393 (((VLIB_FRAME_SIZE + uword_bits - 1) & ~(uword_bits - 1)) / uword_bits)
1394
1395typedef uword vlib_frame_bitmap_t[VLIB_FRAME_BITMAP_N_UWORDS];
1396
1397static_always_inline void
1398vlib_frame_bitmap_init (uword *bmp, u32 n_first_bits_set)
1399{
1400 u32 n_left = VLIB_FRAME_BITMAP_N_UWORDS;
1401 while (n_first_bits_set >= (sizeof (uword) * 8) && n_left)
1402 {
1403 bmp++[0] = ~0;
1404 n_first_bits_set -= sizeof (uword) * 8;
1405 n_left--;
1406 }
1407
1408 if (n_first_bits_set && n_left)
1409 {
1410 bmp++[0] = pow2_mask (n_first_bits_set);
1411 n_left--;
1412 }
1413
1414 while (n_left--)
1415 bmp++[0] = 0;
1416}
1417
1418static_always_inline void
Damjan Marion156d4522023-03-31 12:14:41 +00001419vlib_frame_bitmap_set_bit_at_index (uword *bmp, uword bit_index)
1420{
Damjan Marion5294cdc2023-04-04 17:06:26 +00001421 uword_bitmap_set_bits_at_index (bmp, bit_index, 1);
Damjan Marion156d4522023-03-31 12:14:41 +00001422}
1423
1424static_always_inline void
1425_vlib_frame_bitmap_clear_bit_at_index (uword *bmp, uword bit_index)
1426{
Damjan Marion5294cdc2023-04-04 17:06:26 +00001427 uword_bitmap_clear_bits_at_index (bmp, bit_index, 1);
1428}
1429
1430static_always_inline void
1431vlib_frame_bitmap_set_bits_at_index (uword *bmp, uword bit_index, uword n_bits)
1432{
1433 uword_bitmap_set_bits_at_index (bmp, bit_index, n_bits);
1434}
1435
1436static_always_inline void
1437vlib_frame_bitmap_clear_bits_at_index (uword *bmp, uword bit_index,
1438 uword n_bits)
1439{
1440 uword_bitmap_clear_bits_at_index (bmp, bit_index, n_bits);
Damjan Marion156d4522023-03-31 12:14:41 +00001441}
1442
1443static_always_inline void
Damjan Marionefeea5b2022-02-10 15:01:03 +01001444vlib_frame_bitmap_clear (uword *bmp)
1445{
1446 u32 n_left = VLIB_FRAME_BITMAP_N_UWORDS;
1447 while (n_left--)
1448 bmp++[0] = 0;
1449}
1450
1451static_always_inline void
1452vlib_frame_bitmap_xor (uword *bmp, uword *bmp2)
1453{
1454 u32 n_left = VLIB_FRAME_BITMAP_N_UWORDS;
1455 while (n_left--)
1456 bmp++[0] ^= bmp2++[0];
1457}
1458
1459static_always_inline void
1460vlib_frame_bitmap_or (uword *bmp, uword *bmp2)
1461{
1462 u32 n_left = VLIB_FRAME_BITMAP_N_UWORDS;
1463 while (n_left--)
1464 bmp++[0] |= bmp2++[0];
1465}
1466
Damjan Marion218e4ec2022-03-15 16:16:55 +01001467static_always_inline void
1468vlib_frame_bitmap_and (uword *bmp, uword *bmp2)
1469{
1470 u32 n_left = VLIB_FRAME_BITMAP_N_UWORDS;
1471 while (n_left--)
1472 bmp++[0] &= bmp2++[0];
1473}
1474
Damjan Marion5294cdc2023-04-04 17:06:26 +00001475static_always_inline uword
Damjan Marionefeea5b2022-02-10 15:01:03 +01001476vlib_frame_bitmap_count_set_bits (uword *bmp)
1477{
Damjan Marion5294cdc2023-04-04 17:06:26 +00001478 return uword_bitmap_count_set_bits (bmp, VLIB_FRAME_BITMAP_N_UWORDS);
Damjan Marionefeea5b2022-02-10 15:01:03 +01001479}
1480
Damjan Marion51a7e442022-09-08 18:59:03 +02001481static_always_inline uword
1482vlib_frame_bitmap_is_bit_set (uword *bmp, uword bit_index)
1483{
Damjan Marion5294cdc2023-04-04 17:06:26 +00001484 return uword_bitmap_is_bit_set (bmp, bit_index);
Damjan Marion51a7e442022-09-08 18:59:03 +02001485}
1486
Damjan Marion5294cdc2023-04-04 17:06:26 +00001487static_always_inline uword
Damjan Marionefeea5b2022-02-10 15:01:03 +01001488vlib_frame_bitmap_find_first_set (uword *bmp)
1489{
Damjan Marion5294cdc2023-04-04 17:06:26 +00001490 uword rv = uword_bitmap_find_first_set (bmp);
1491 ASSERT (rv < VLIB_FRAME_BITMAP_N_UWORDS * uword_bits);
1492 return rv;
Damjan Marionefeea5b2022-02-10 15:01:03 +01001493}
1494
1495#define foreach_vlib_frame_bitmap_set_bit_index(i, v) \
1496 for (uword _off = 0; _off < ARRAY_LEN (v); _off++) \
1497 for (uword _tmp = \
1498 (v[_off]) + 0 * (uword) (i = _off * uword_bits + \
1499 get_lowest_set_bit_index (v[_off])); \
1500 _tmp; i = _off * uword_bits + get_lowest_set_bit_index ( \
1501 _tmp = clear_lowest_set_bit (_tmp)))
1502
Ed Warnickecb9cada2015-12-08 15:45:58 -07001503#endif /* included_vlib_node_funcs_h */
Dave Barach9b8ffd92016-07-08 08:13:45 -04001504
1505/*
1506 * fd.io coding-style-patch-verification: ON
1507 *
1508 * Local Variables:
1509 * eval: (c-set-style "gnu")
1510 * End:
1511 */