blob: 0f9f30a13d09a33a95989dd81917bab8de832052 [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
48#include <vppinfra/fifo.h>
Dave Barach5c20a012017-06-13 08:48:31 -040049#include <vppinfra/tw_timer_1t_3w_1024sl_ov.h>
Damjan Marion94100532020-11-06 23:25:57 +010050#include <vppinfra/interrupt.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070051
Damjan Marioncea46522020-05-21 16:47:05 +020052#ifdef CLIB_SANITIZE_ADDR
53#include <sanitizer/asan_interface.h>
54#endif
55
56static_always_inline void
57vlib_process_start_switch_stack (vlib_main_t * vm, vlib_process_t * p)
58{
59#ifdef CLIB_SANITIZE_ADDR
60 void *stack = p ? (void *) p->stack : vlib_thread_stacks[vm->thread_index];
61 u32 stack_bytes = p ? p->log2_n_stack_bytes : VLIB_THREAD_STACK_SIZE;
62 __sanitizer_start_switch_fiber (&vm->asan_stack_save, stack, stack_bytes);
63#endif
64}
65
66static_always_inline void
67vlib_process_finish_switch_stack (vlib_main_t * vm)
68{
69#ifdef CLIB_SANITIZE_ADDR
70 const void *bottom_old;
71 size_t size_old;
72
73 __sanitizer_finish_switch_fiber (&vm->asan_stack_save, &bottom_old,
74 &size_old);
75#endif
76}
77
Dave Barach9770e202016-07-06 10:29:27 -040078/** \brief Get vlib node by index.
79 @warning This function will ASSERT if @c i is out of range.
80 @param vm vlib_main_t pointer, varies by thread
81 @param i node index.
82 @return pointer to the requested vlib_node_t.
83*/
84
Ed Warnickecb9cada2015-12-08 15:45:58 -070085always_inline vlib_node_t *
86vlib_get_node (vlib_main_t * vm, u32 i)
Dave Barach9b8ffd92016-07-08 08:13:45 -040087{
88 return vec_elt (vm->node_main.nodes, i);
89}
Ed Warnickecb9cada2015-12-08 15:45:58 -070090
Dave Barach9770e202016-07-06 10:29:27 -040091/** \brief Get vlib node by graph arc (next) index.
92 @param vm vlib_main_t pointer, varies by thread
93 @param node_index index of original node
94 @param next_index graph arc index
95 @return pointer to the vlib_node_t at the end of the indicated arc
96*/
97
Ed Warnickecb9cada2015-12-08 15:45:58 -070098always_inline vlib_node_t *
99vlib_get_next_node (vlib_main_t * vm, u32 node_index, u32 next_index)
100{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400101 vlib_node_main_t *nm = &vm->node_main;
102 vlib_node_t *n;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700103
104 n = vec_elt (nm->nodes, node_index);
105 ASSERT (next_index < vec_len (n->next_nodes));
106 return vlib_get_node (vm, n->next_nodes[next_index]);
107}
108
Dave Barach9770e202016-07-06 10:29:27 -0400109/** \brief Get node runtime by node index.
110 @param vm vlib_main_t pointer, varies by thread
111 @param node_index index of node
112 @return pointer to the indicated vlib_node_runtime_t
113*/
114
Ed Warnickecb9cada2015-12-08 15:45:58 -0700115always_inline vlib_node_runtime_t *
116vlib_node_get_runtime (vlib_main_t * vm, u32 node_index)
117{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400118 vlib_node_main_t *nm = &vm->node_main;
119 vlib_node_t *n = vec_elt (nm->nodes, node_index);
120 vlib_process_t *p;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700121 if (n->type != VLIB_NODE_TYPE_PROCESS)
122 return vec_elt_at_index (nm->nodes_by_type[n->type], n->runtime_index);
123 else
124 {
125 p = vec_elt (nm->processes, n->runtime_index);
126 return &p->node_runtime;
127 }
128}
129
Dave Barach9770e202016-07-06 10:29:27 -0400130/** \brief Get node runtime private data by node index.
131 @param vm vlib_main_t pointer, varies by thread
132 @param node_index index of the node
133 @return pointer to the indicated vlib_node_runtime_t private data
134*/
135
Ed Warnickecb9cada2015-12-08 15:45:58 -0700136always_inline void *
137vlib_node_get_runtime_data (vlib_main_t * vm, u32 node_index)
138{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400139 vlib_node_runtime_t *r = vlib_node_get_runtime (vm, node_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700140 return r->runtime_data;
141}
142
Dave Barach9770e202016-07-06 10:29:27 -0400143/** \brief Set node runtime private data.
144 @param vm vlib_main_t pointer, varies by thread
145 @param node_index index of the node
146 @param runtime_data arbitrary runtime private data
147 @param n_runtime_data_bytes size of runtime private data
148*/
149
Ed Warnickecb9cada2015-12-08 15:45:58 -0700150always_inline void
151vlib_node_set_runtime_data (vlib_main_t * vm, u32 node_index,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400152 void *runtime_data, u32 n_runtime_data_bytes)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700153{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400154 vlib_node_t *n = vlib_get_node (vm, node_index);
155 vlib_node_runtime_t *r = vlib_node_get_runtime (vm, node_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700156
157 n->runtime_data_bytes = n_runtime_data_bytes;
158 vec_free (n->runtime_data);
159 vec_add (n->runtime_data, runtime_data, n_runtime_data_bytes);
160
Damjan Marioneb90b7f2016-11-01 01:26:01 +0100161 ASSERT (vec_len (n->runtime_data) <= sizeof (vlib_node_runtime_t) -
162 STRUCT_OFFSET_OF (vlib_node_runtime_t, runtime_data));
163
Ed Warnickecb9cada2015-12-08 15:45:58 -0700164 if (vec_len (n->runtime_data) > 0)
Dave Barach178cf492018-11-13 16:34:13 -0500165 clib_memcpy_fast (r->runtime_data, n->runtime_data,
166 vec_len (n->runtime_data));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700167}
168
Dave Barach9770e202016-07-06 10:29:27 -0400169/** \brief Set node dispatch state.
170 @param vm vlib_main_t pointer, varies by thread
171 @param node_index index of the node
172 @param new_state new state for node, see vlib_node_state_t
173*/
Ed Warnickecb9cada2015-12-08 15:45:58 -0700174always_inline void
Dave Barach9b8ffd92016-07-08 08:13:45 -0400175vlib_node_set_state (vlib_main_t * vm, u32 node_index,
176 vlib_node_state_t new_state)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700177{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400178 vlib_node_main_t *nm = &vm->node_main;
179 vlib_node_t *n;
180 vlib_node_runtime_t *r;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700181
182 n = vec_elt (nm->nodes, node_index);
183 if (n->type == VLIB_NODE_TYPE_PROCESS)
184 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400185 vlib_process_t *p = vec_elt (nm->processes, n->runtime_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700186 r = &p->node_runtime;
187
188 /* When disabling make sure flags are cleared. */
189 p->flags &= ~(VLIB_PROCESS_RESUME_PENDING
190 | VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_CLOCK
191 | VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_EVENT);
192 }
193 else
194 r = vec_elt_at_index (nm->nodes_by_type[n->type], n->runtime_index);
195
196 ASSERT (new_state < VLIB_N_NODE_STATE);
197
198 if (n->type == VLIB_NODE_TYPE_INPUT)
199 {
200 ASSERT (nm->input_node_counts_by_state[n->state] > 0);
201 nm->input_node_counts_by_state[n->state] -= 1;
202 nm->input_node_counts_by_state[new_state] += 1;
203 }
204
Tom Seidenberg6c81f5a2020-07-10 15:49:03 +0000205 if (PREDICT_FALSE (r->state == VLIB_NODE_STATE_DISABLED))
206 vlib_node_runtime_perf_counter (vm, r, 0, 0, 0,
207 VLIB_NODE_RUNTIME_PERF_RESET);
208
Ed Warnickecb9cada2015-12-08 15:45:58 -0700209 n->state = new_state;
210 r->state = new_state;
211}
212
Damjan Marion153646e2017-04-05 18:15:45 +0200213/** \brief Get node dispatch state.
214 @param vm vlib_main_t pointer, varies by thread
215 @param node_index index of the node
216 @return state for node, see vlib_node_state_t
217*/
218always_inline vlib_node_state_t
219vlib_node_get_state (vlib_main_t * vm, u32 node_index)
220{
221 vlib_node_main_t *nm = &vm->node_main;
222 vlib_node_t *n;
223 n = vec_elt (nm->nodes, node_index);
224 return n->state;
225}
226
Ed Warnickecb9cada2015-12-08 15:45:58 -0700227always_inline void
Florin Coras982e44f2021-03-19 13:12:41 -0700228vlib_node_set_flag (vlib_main_t *vm, u32 node_index, u16 flag, u8 enable)
229{
230 vlib_node_runtime_t *r;
231 vlib_node_t *n;
232
233 n = vlib_get_node (vm, node_index);
234 r = vlib_node_get_runtime (vm, node_index);
235
236 if (enable)
237 {
238 n->flags |= flag;
239 r->flags |= flag;
240 }
241 else
242 {
243 n->flags &= ~flag;
244 r->flags &= ~flag;
245 }
246}
247
248always_inline void
Damjan Marion94100532020-11-06 23:25:57 +0100249vlib_node_set_interrupt_pending (vlib_main_t *vm, u32 node_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700250{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400251 vlib_node_main_t *nm = &vm->node_main;
252 vlib_node_t *n = vec_elt (nm->nodes, node_index);
Damjan Marion94100532020-11-06 23:25:57 +0100253
Ed Warnickecb9cada2015-12-08 15:45:58 -0700254 ASSERT (n->type == VLIB_NODE_TYPE_INPUT);
Damjan Marion1033b492020-06-03 12:20:41 +0200255
Damjan Marion94100532020-11-06 23:25:57 +0100256 if (vm != vlib_get_main ())
257 clib_interrupt_set_atomic (nm->interrupts, n->runtime_index);
Damjan Marion1033b492020-06-03 12:20:41 +0200258 else
Damjan Marion94100532020-11-06 23:25:57 +0100259 clib_interrupt_set (nm->interrupts, n->runtime_index);
Damjan Marion1033b492020-06-03 12:20:41 +0200260
Damjan Marion94100532020-11-06 23:25:57 +0100261 __atomic_store_n (nm->pending_interrupts, 1, __ATOMIC_RELEASE);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700262}
263
264always_inline vlib_process_t *
265vlib_get_process_from_node (vlib_main_t * vm, vlib_node_t * node)
266{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400267 vlib_node_main_t *nm = &vm->node_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700268 ASSERT (node->type == VLIB_NODE_TYPE_PROCESS);
269 return vec_elt (nm->processes, node->runtime_index);
270}
271
Ed Warnickecb9cada2015-12-08 15:45:58 -0700272always_inline vlib_frame_t *
Andreas Schultz58b2eb12019-07-15 15:40:56 +0200273vlib_get_frame (vlib_main_t * vm, vlib_frame_t * f)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700274{
Andreas Schultz58b2eb12019-07-15 15:40:56 +0200275 ASSERT (f != NULL);
Damjan Marion633b6fd2018-09-14 14:38:53 +0200276 ASSERT (f->frame_flags & VLIB_FRAME_IS_ALLOCATED);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700277 return f;
278}
279
Damjan Marion296988d2019-02-21 20:24:54 +0100280always_inline void
281vlib_frame_no_append (vlib_frame_t * f)
282{
283 f->frame_flags |= VLIB_FRAME_NO_APPEND;
284}
285
Dave Barach9770e202016-07-06 10:29:27 -0400286/** \brief Get pointer to frame vector data.
287 @param f vlib_frame_t pointer
288 @return pointer to first vector element in frame
289*/
Ed Warnickecb9cada2015-12-08 15:45:58 -0700290always_inline void *
291vlib_frame_vector_args (vlib_frame_t * f)
292{
Damjan Marionb32bd702021-12-23 17:05:02 +0100293 ASSERT (f->vector_offset);
294 return (void *) f + f->vector_offset;
295}
296
297/** \brief Get pointer to frame vector aux data.
298 @param f vlib_frame_t pointer
299 @return pointer to first vector aux data element in frame
300*/
301always_inline void *
302vlib_frame_aux_args (vlib_frame_t *f)
303{
304 ASSERT (f->aux_offset);
305 return (void *) f + f->aux_offset;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700306}
307
Dave Barach9770e202016-07-06 10:29:27 -0400308/** \brief Get pointer to frame scalar data.
309
Dave Barach9770e202016-07-06 10:29:27 -0400310 @param f vlib_frame_t pointer
311
312 @return arbitrary node scalar data
313
314 @sa vlib_frame_vector_args
315*/
Ed Warnickecb9cada2015-12-08 15:45:58 -0700316always_inline void *
Damjan Mariona3d59862018-11-10 10:23:00 +0100317vlib_frame_scalar_args (vlib_frame_t * f)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400318{
Damjan Marionb32bd702021-12-23 17:05:02 +0100319 ASSERT (f->scalar_offset);
320 return (void *) f + f->scalar_offset;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400321}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700322
323always_inline vlib_next_frame_t *
324vlib_node_runtime_get_next_frame (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400325 vlib_node_runtime_t * n, u32 next_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700326{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400327 vlib_node_main_t *nm = &vm->node_main;
328 vlib_next_frame_t *nf;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700329
330 ASSERT (next_index < n->n_next_nodes);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400331 nf = vec_elt_at_index (nm->next_frames, n->next_frame_index + next_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700332
333 if (CLIB_DEBUG > 0)
334 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400335 vlib_node_t *node, *next;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700336 node = vec_elt (nm->nodes, n->node_index);
337 next = vec_elt (nm->nodes, node->next_nodes[next_index]);
338 ASSERT (nf->node_runtime_index == next->runtime_index);
339 }
340
341 return nf;
342}
343
Dave Barach9770e202016-07-06 10:29:27 -0400344/** \brief Get pointer to frame by (@c node_index, @c next_index).
345
346 @warning This is not a function that you should call directly.
347 See @ref vlib_get_next_frame instead.
348
349 @param vm vlib_main_t pointer, varies by thread
350 @param node_index index of the node
351 @param next_index graph arc index
352
353 @return pointer to the requested vlib_next_frame_t
354
355 @sa vlib_get_next_frame
356*/
357
Ed Warnickecb9cada2015-12-08 15:45:58 -0700358always_inline vlib_next_frame_t *
Dave Barach9b8ffd92016-07-08 08:13:45 -0400359vlib_node_get_next_frame (vlib_main_t * vm, u32 node_index, u32 next_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700360{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400361 vlib_node_main_t *nm = &vm->node_main;
362 vlib_node_t *n;
363 vlib_node_runtime_t *r;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700364
365 n = vec_elt (nm->nodes, node_index);
366 r = vec_elt_at_index (nm->nodes_by_type[n->type], n->runtime_index);
367 return vlib_node_runtime_get_next_frame (vm, r, next_index);
368}
369
Dave Barach9b8ffd92016-07-08 08:13:45 -0400370vlib_frame_t *vlib_get_next_frame_internal (vlib_main_t * vm,
371 vlib_node_runtime_t * node,
372 u32 next_index,
373 u32 alloc_new_frame);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700374
Mohammed Hawaricd758e62022-05-31 18:11:05 +0200375#define vlib_get_next_frame_macro(vm, node, next_index, vectors, \
376 n_vectors_left, alloc_new_frame) \
377 do \
378 { \
379 vlib_frame_t *_f = vlib_get_next_frame_internal ( \
380 (vm), (node), (next_index), (alloc_new_frame)); \
381 u32 _n = _f->n_vectors; \
382 (vectors) = vlib_frame_vector_args (_f) + _n * sizeof ((vectors)[0]); \
383 (n_vectors_left) = VLIB_FRAME_SIZE - _n; \
384 } \
385 while (0)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700386
Mohammed Hawaricd758e62022-05-31 18:11:05 +0200387#define vlib_get_next_frame_macro_with_aux(vm, node, next_index, vectors, \
388 n_vectors_left, alloc_new_frame, \
389 aux_data, maybe_no_aux) \
390 do \
391 { \
392 vlib_frame_t *_f = vlib_get_next_frame_internal ( \
393 (vm), (node), (next_index), (alloc_new_frame)); \
394 u32 _n = _f->n_vectors; \
395 (vectors) = vlib_frame_vector_args (_f) + _n * sizeof ((vectors)[0]); \
396 if ((maybe_no_aux) && (_f)->aux_offset == 0) \
397 (aux_data) = NULL; \
398 else \
399 (aux_data) = vlib_frame_aux_args (_f) + _n * sizeof ((aux_data)[0]); \
400 (n_vectors_left) = VLIB_FRAME_SIZE - _n; \
401 } \
402 while (0)
Dave Barach9770e202016-07-06 10:29:27 -0400403
Dave Barach9b8ffd92016-07-08 08:13:45 -0400404/** \brief Get pointer to next frame vector data by
Dave Barach9770e202016-07-06 10:29:27 -0400405 (@c vlib_node_runtime_t, @c next_index).
406 Standard single/dual loop boilerplate element.
407 @attention This is a MACRO, with SIDE EFFECTS.
408
409 @param vm vlib_main_t pointer, varies by thread
410 @param node current node vlib_node_runtime_t pointer
411 @param next_index requested graph arc index
412
413 @return @c vectors -- pointer to next available vector slot
414 @return @c n_vectors_left -- number of vector slots available
415*/
Mohammed Hawaricd758e62022-05-31 18:11:05 +0200416#define vlib_get_next_frame(vm, node, next_index, vectors, n_vectors_left) \
417 vlib_get_next_frame_macro (vm, node, next_index, vectors, n_vectors_left, \
Ed Warnickecb9cada2015-12-08 15:45:58 -0700418 /* alloc new frame */ 0)
419
Mohammed Hawaricd758e62022-05-31 18:11:05 +0200420#define vlib_get_new_next_frame(vm, node, next_index, vectors, \
421 n_vectors_left) \
422 vlib_get_next_frame_macro (vm, node, next_index, vectors, n_vectors_left, \
Ed Warnickecb9cada2015-12-08 15:45:58 -0700423 /* alloc new frame */ 1)
424
Mohammed Hawaricd758e62022-05-31 18:11:05 +0200425/** \brief Get pointer to next frame vector data and next frame aux data by
426 (@c vlib_node_runtime_t, @c next_index).
427 Standard single/dual loop boilerplate element.
428 @attention This is a MACRO, with SIDE EFFECTS.
429 @attention This MACRO is unsafe in case the next node does not support
430 aux_data
431
432 @param vm vlib_main_t pointer, varies by thread
433 @param node current node vlib_node_runtime_t pointer
434 @param next_index requested graph arc index
435
436 @return @c vectors -- pointer to next available vector slot
437 @return @c aux_data -- pointer to next available aux data slot
438 @return @c n_vectors_left -- number of vector slots available
439*/
440#define vlib_get_next_frame_with_aux(vm, node, next_index, vectors, aux_data, \
441 n_vectors_left) \
442 vlib_get_next_frame_macro_with_aux ( \
443 vm, node, next_index, vectors, n_vectors_left, /* alloc new frame */ 0, \
444 aux_data, /* maybe_no_aux */ 0)
445
446#define vlib_get_new_next_frame_with_aux(vm, node, next_index, vectors, \
447 aux_data, n_vectors_left) \
448 vlib_get_next_frame_macro_with_aux ( \
449 vm, node, next_index, vectors, n_vectors_left, /* alloc new frame */ 1, \
450 aux_data, /* maybe_no_aux */ 0)
451
452/** \brief Get pointer to next frame vector data and next frame aux data by
453 (@c vlib_node_runtime_t, @c next_index).
454 Standard single/dual loop boilerplate element.
455 @attention This is a MACRO, with SIDE EFFECTS.
456 @attention This MACRO is safe in case the next node does not support aux_data.
457 In that case aux_data is set to NULL.
458
459 @param vm vlib_main_t pointer, varies by thread
460 @param node current node vlib_node_runtime_t pointer
461 @param next_index requested graph arc index
462
463 @return @c vectors -- pointer to next available vector slot
464 @return @c aux_data -- pointer to next available aux data slot
465 @return @c n_vectors_left -- number of vector slots available
466*/
467#define vlib_get_next_frame_with_aux_safe(vm, node, next_index, vectors, \
468 aux_data, n_vectors_left) \
469 vlib_get_next_frame_macro_with_aux ( \
470 vm, node, next_index, vectors, n_vectors_left, /* alloc new frame */ 0, \
471 aux_data, /* maybe_no_aux */ 1)
472
473#define vlib_get_new_next_frame_with_aux_safe(vm, node, next_index, vectors, \
474 aux_data, n_vectors_left) \
475 vlib_get_next_frame_macro_with_aux ( \
476 vm, node, next_index, vectors, n_vectors_left, /* alloc new frame */ 1, \
477 aux_data, /* maybe_no_aux */ 1)
478
Dave Barach9770e202016-07-06 10:29:27 -0400479/** \brief Release pointer to next frame vector data.
480 Standard single/dual loop boilerplate element.
481 @param vm vlib_main_t pointer, varies by thread
482 @param r current node vlib_node_runtime_t pointer
483 @param next_index graph arc index
484 @param n_packets_left number of slots still available in vector
485*/
Ed Warnickecb9cada2015-12-08 15:45:58 -0700486void
487vlib_put_next_frame (vlib_main_t * vm,
488 vlib_node_runtime_t * r,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400489 u32 next_index, u32 n_packets_left);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700490
491/* Combination get plus put. Returns vector argument just added. */
492#define vlib_set_next_frame(vm,node,next_index,v) \
493({ \
494 uword _n_left; \
495 vlib_get_next_frame ((vm), (node), (next_index), (v), _n_left); \
496 ASSERT (_n_left > 0); \
497 vlib_put_next_frame ((vm), (node), (next_index), _n_left - 1); \
498 (v); \
499})
500
Mohammed Hawari16052482022-06-02 13:55:36 +0200501#define vlib_set_next_frame_with_aux_safe(vm, node, next_index, v, aux) \
502 ({ \
503 uword _n_left; \
504 vlib_get_next_frame_with_aux_safe ((vm), (node), (next_index), (v), \
505 (aux), _n_left); \
506 ASSERT (_n_left > 0); \
507 vlib_put_next_frame ((vm), (node), (next_index), _n_left - 1); \
508 (v); \
509 })
510
Ed Warnickecb9cada2015-12-08 15:45:58 -0700511always_inline void
512vlib_set_next_frame_buffer (vlib_main_t * vm,
513 vlib_node_runtime_t * node,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400514 u32 next_index, u32 buffer_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700515{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400516 u32 *p;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700517 p = vlib_set_next_frame (vm, node, next_index, p);
518 p[0] = buffer_index;
519}
520
Mohammed Hawari16052482022-06-02 13:55:36 +0200521always_inline void
522vlib_set_next_frame_buffer_with_aux_safe (vlib_main_t *vm,
523 vlib_node_runtime_t *node,
524 u32 next_index, u32 buffer_index,
525 u32 aux)
526{
527 u32 *p;
528 u32 *a;
529 p = vlib_set_next_frame_with_aux_safe (vm, node, next_index, p, a);
530 p[0] = buffer_index;
531 if (a)
532 a[0] = aux;
533}
534
Dave Barach9b8ffd92016-07-08 08:13:45 -0400535vlib_frame_t *vlib_get_frame_to_node (vlib_main_t * vm, u32 to_node_index);
536void vlib_put_frame_to_node (vlib_main_t * vm, u32 to_node_index,
537 vlib_frame_t * f);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700538
Ed Warnickecb9cada2015-12-08 15:45:58 -0700539always_inline uword
540vlib_in_process_context (vlib_main_t * vm)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400541{
542 return vm->node_main.current_process_index != ~0;
543}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700544
Florin Coras66b11312017-07-31 17:18:03 -0700545always_inline vlib_process_t *
546vlib_get_current_process (vlib_main_t * vm)
547{
548 vlib_node_main_t *nm = &vm->node_main;
549 if (vlib_in_process_context (vm))
550 return vec_elt (nm->processes, nm->current_process_index);
551 return 0;
552}
553
Ed Warnickecb9cada2015-12-08 15:45:58 -0700554always_inline uword
555vlib_current_process (vlib_main_t * vm)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400556{
557 return vlib_get_current_process (vm)->node_runtime.node_index;
558}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700559
Damjan Marion698eeb12020-09-11 14:11:11 +0200560always_inline u32
561vlib_get_current_process_node_index (vlib_main_t * vm)
562{
563 vlib_process_t *process = vlib_get_current_process (vm);
564 return process->node_runtime.node_index;
565}
566
Dave Barach5c20a012017-06-13 08:48:31 -0400567/** Returns TRUE if a process suspend time is less than 10us
Dave Barach2ab470a2016-08-10 18:38:36 -0400568 @param dt - remaining poll time in seconds
Dave Barach5c20a012017-06-13 08:48:31 -0400569 @returns 1 if dt < 10e-6, 0 otherwise
Dave Barach2ab470a2016-08-10 18:38:36 -0400570*/
Ed Warnickecb9cada2015-12-08 15:45:58 -0700571always_inline uword
572vlib_process_suspend_time_is_zero (f64 dt)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400573{
Dave Barach5c20a012017-06-13 08:48:31 -0400574 return dt < 10e-6;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400575}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700576
Dave Barach2ab470a2016-08-10 18:38:36 -0400577/** Suspend a vlib cooperative multi-tasking thread for a period of time
578 @param vm - vlib_main_t *
579 @param dt - suspend interval in seconds
580 @returns VLIB_PROCESS_RESUME_LONGJMP_RESUME, routinely ignored
581*/
582
Ed Warnickecb9cada2015-12-08 15:45:58 -0700583always_inline uword
584vlib_process_suspend (vlib_main_t * vm, f64 dt)
585{
586 uword r;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400587 vlib_node_main_t *nm = &vm->node_main;
588 vlib_process_t *p = vec_elt (nm->processes, nm->current_process_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700589
590 if (vlib_process_suspend_time_is_zero (dt))
591 return VLIB_PROCESS_RESUME_LONGJMP_RESUME;
592
593 p->flags |= VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_CLOCK;
594 r = clib_setjmp (&p->resume_longjmp, VLIB_PROCESS_RESUME_LONGJMP_SUSPEND);
595 if (r == VLIB_PROCESS_RESUME_LONGJMP_SUSPEND)
596 {
Dave Barach5c20a012017-06-13 08:48:31 -0400597 /* expiration time in 10us ticks */
598 p->resume_clock_interval = dt * 1e5;
Damjan Marioncea46522020-05-21 16:47:05 +0200599 vlib_process_start_switch_stack (vm, 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700600 clib_longjmp (&p->return_longjmp, VLIB_PROCESS_RETURN_LONGJMP_SUSPEND);
601 }
Damjan Marioncea46522020-05-21 16:47:05 +0200602 else
603 vlib_process_finish_switch_stack (vm);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700604
605 return r;
606}
607
608always_inline void
Dave Barach9b8ffd92016-07-08 08:13:45 -0400609vlib_process_free_event_type (vlib_process_t * p, uword t,
610 uword is_one_time_event)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700611{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400612 ASSERT (!pool_is_free_index (p->event_type_pool, t));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700613 pool_put_index (p->event_type_pool, t);
614 if (is_one_time_event)
615 p->one_time_event_type_bitmap =
616 clib_bitmap_andnoti (p->one_time_event_type_bitmap, t);
617}
618
619always_inline void
620vlib_process_maybe_free_event_type (vlib_process_t * p, uword t)
621{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400622 ASSERT (!pool_is_free_index (p->event_type_pool, t));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700623 if (clib_bitmap_get (p->one_time_event_type_bitmap, t))
624 vlib_process_free_event_type (p, t, /* is_one_time_event */ 1);
625}
626
627always_inline void *
Dave Barach9b8ffd92016-07-08 08:13:45 -0400628vlib_process_get_event_data (vlib_main_t * vm,
629 uword * return_event_type_opaque)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700630{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400631 vlib_node_main_t *nm = &vm->node_main;
632 vlib_process_t *p;
633 vlib_process_event_type_t *et;
Gabriel Ganne71d73fe2017-02-04 10:51:04 +0100634 uword t;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400635 void *event_data_vector;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700636
637 p = vec_elt (nm->processes, nm->current_process_index);
638
639 /* Find first type with events ready.
640 Return invalid type when there's nothing there. */
641 t = clib_bitmap_first_set (p->non_empty_event_type_bitmap);
642 if (t == ~0)
643 return 0;
644
Dave Barach9b8ffd92016-07-08 08:13:45 -0400645 p->non_empty_event_type_bitmap =
646 clib_bitmap_andnoti (p->non_empty_event_type_bitmap, t);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700647
Gabriel Ganne71d73fe2017-02-04 10:51:04 +0100648 ASSERT (_vec_len (p->pending_event_data_by_type_index[t]) > 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700649 event_data_vector = p->pending_event_data_by_type_index[t];
650 p->pending_event_data_by_type_index[t] = 0;
651
652 et = pool_elt_at_index (p->event_type_pool, t);
653
654 /* Return user's opaque value and possibly index. */
655 *return_event_type_opaque = et->opaque;
656
657 vlib_process_maybe_free_event_type (p, t);
658
659 return event_data_vector;
660}
661
662/* Return event data vector for later reuse. We reuse event data to avoid
663 repeatedly allocating event vectors in cases where we care about speed. */
664always_inline void
Dave Barach9b8ffd92016-07-08 08:13:45 -0400665vlib_process_put_event_data (vlib_main_t * vm, void *event_data)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700666{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400667 vlib_node_main_t *nm = &vm->node_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700668 vec_add1 (nm->recycled_event_data_vectors, event_data);
669}
670
Dave Barach2ab470a2016-08-10 18:38:36 -0400671/** Return the first event type which has occurred and a vector of per-event
672 data of that type, or a timeout indication
673
674 @param vm - vlib_main_t pointer
675 @param data_vector - pointer to a (uword *) vector to receive event data
676 @returns either an event type and a vector of per-event instance data,
677 or ~0 to indicate a timeout.
678*/
679
Ed Warnickecb9cada2015-12-08 15:45:58 -0700680always_inline uword
681vlib_process_get_events (vlib_main_t * vm, uword ** data_vector)
682{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400683 vlib_node_main_t *nm = &vm->node_main;
684 vlib_process_t *p;
685 vlib_process_event_type_t *et;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700686 uword r, t, l;
687
688 p = vec_elt (nm->processes, nm->current_process_index);
689
690 /* Find first type with events ready.
691 Return invalid type when there's nothing there. */
692 t = clib_bitmap_first_set (p->non_empty_event_type_bitmap);
693 if (t == ~0)
694 return t;
695
Dave Barach9b8ffd92016-07-08 08:13:45 -0400696 p->non_empty_event_type_bitmap =
697 clib_bitmap_andnoti (p->non_empty_event_type_bitmap, t);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700698
699 l = _vec_len (p->pending_event_data_by_type_index[t]);
700 if (data_vector)
701 vec_add (*data_vector, p->pending_event_data_by_type_index[t], l);
Damjan Marion8bea5892022-04-04 22:40:45 +0200702 vec_set_len (p->pending_event_data_by_type_index[t], 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700703
704 et = pool_elt_at_index (p->event_type_pool, t);
705
706 /* Return user's opaque value. */
707 r = et->opaque;
708
709 vlib_process_maybe_free_event_type (p, t);
710
711 return r;
712}
713
714always_inline uword
Dave Barach9b8ffd92016-07-08 08:13:45 -0400715vlib_process_get_events_helper (vlib_process_t * p, uword t,
716 uword ** data_vector)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700717{
718 uword l;
719
Dave Barach9b8ffd92016-07-08 08:13:45 -0400720 p->non_empty_event_type_bitmap =
721 clib_bitmap_andnoti (p->non_empty_event_type_bitmap, t);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700722
723 l = _vec_len (p->pending_event_data_by_type_index[t]);
724 if (data_vector)
725 vec_add (*data_vector, p->pending_event_data_by_type_index[t], l);
Damjan Marion8bea5892022-04-04 22:40:45 +0200726 vec_set_len (p->pending_event_data_by_type_index[t], 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700727
728 vlib_process_maybe_free_event_type (p, t);
729
730 return l;
731}
732
733/* As above but query as specified type of event. Returns number of
734 events found. */
735always_inline uword
736vlib_process_get_events_with_type (vlib_main_t * vm, uword ** data_vector,
737 uword with_type_opaque)
738{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400739 vlib_node_main_t *nm = &vm->node_main;
740 vlib_process_t *p;
741 uword t, *h;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700742
743 p = vec_elt (nm->processes, nm->current_process_index);
744 h = hash_get (p->event_type_index_by_type_opaque, with_type_opaque);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400745 if (!h)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700746 /* This can happen when an event has not yet been
747 signaled with given opaque type. */
748 return 0;
749
750 t = h[0];
Dave Barach9b8ffd92016-07-08 08:13:45 -0400751 if (!clib_bitmap_get (p->non_empty_event_type_bitmap, t))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700752 return 0;
753
754 return vlib_process_get_events_helper (p, t, data_vector);
755}
756
757always_inline uword *
758vlib_process_wait_for_event (vlib_main_t * vm)
759{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400760 vlib_node_main_t *nm = &vm->node_main;
761 vlib_process_t *p;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700762 uword r;
763
764 p = vec_elt (nm->processes, nm->current_process_index);
765 if (clib_bitmap_is_zero (p->non_empty_event_type_bitmap))
766 {
767 p->flags |= VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_EVENT;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400768 r =
769 clib_setjmp (&p->resume_longjmp, VLIB_PROCESS_RESUME_LONGJMP_SUSPEND);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700770 if (r == VLIB_PROCESS_RESUME_LONGJMP_SUSPEND)
Damjan Marioncea46522020-05-21 16:47:05 +0200771 {
772 vlib_process_start_switch_stack (vm, 0);
773 clib_longjmp (&p->return_longjmp,
774 VLIB_PROCESS_RETURN_LONGJMP_SUSPEND);
775 }
776 else
777 vlib_process_finish_switch_stack (vm);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700778 }
779
780 return p->non_empty_event_type_bitmap;
781}
782
783always_inline uword
784vlib_process_wait_for_one_time_event (vlib_main_t * vm,
785 uword ** data_vector,
786 uword with_type_index)
787{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400788 vlib_node_main_t *nm = &vm->node_main;
789 vlib_process_t *p;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700790 uword r;
791
792 p = vec_elt (nm->processes, nm->current_process_index);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400793 ASSERT (!pool_is_free_index (p->event_type_pool, with_type_index));
794 while (!clib_bitmap_get (p->non_empty_event_type_bitmap, with_type_index))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700795 {
796 p->flags |= VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_EVENT;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400797 r =
798 clib_setjmp (&p->resume_longjmp, VLIB_PROCESS_RESUME_LONGJMP_SUSPEND);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700799 if (r == VLIB_PROCESS_RESUME_LONGJMP_SUSPEND)
Damjan Marioncea46522020-05-21 16:47:05 +0200800 {
801 vlib_process_start_switch_stack (vm, 0);
802 clib_longjmp (&p->return_longjmp,
803 VLIB_PROCESS_RETURN_LONGJMP_SUSPEND);
804 }
805 else
806 vlib_process_finish_switch_stack (vm);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700807 }
808
809 return vlib_process_get_events_helper (p, with_type_index, data_vector);
810}
811
812always_inline uword
813vlib_process_wait_for_event_with_type (vlib_main_t * vm,
814 uword ** data_vector,
815 uword with_type_opaque)
816{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400817 vlib_node_main_t *nm = &vm->node_main;
818 vlib_process_t *p;
819 uword r, *h;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700820
821 p = vec_elt (nm->processes, nm->current_process_index);
822 h = hash_get (p->event_type_index_by_type_opaque, with_type_opaque);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400823 while (!h || !clib_bitmap_get (p->non_empty_event_type_bitmap, h[0]))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700824 {
825 p->flags |= VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_EVENT;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400826 r =
827 clib_setjmp (&p->resume_longjmp, VLIB_PROCESS_RESUME_LONGJMP_SUSPEND);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700828 if (r == VLIB_PROCESS_RESUME_LONGJMP_SUSPEND)
Damjan Marioncea46522020-05-21 16:47:05 +0200829 {
830 vlib_process_start_switch_stack (vm, 0);
831 clib_longjmp (&p->return_longjmp,
832 VLIB_PROCESS_RETURN_LONGJMP_SUSPEND);
833 }
834 else
835 vlib_process_finish_switch_stack (vm);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700836
837 /* See if unknown event type has been signaled now. */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400838 if (!h)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700839 h = hash_get (p->event_type_index_by_type_opaque, with_type_opaque);
840 }
841
842 return vlib_process_get_events_helper (p, h[0], data_vector);
843}
844
Dave Barach2ab470a2016-08-10 18:38:36 -0400845/** Suspend a cooperative multi-tasking thread
846 Waits for an event, or for the indicated number of seconds to elapse
847 @param vm - vlib_main_t pointer
Damjan Marion607de1a2016-08-16 22:53:54 +0200848 @param dt - timeout, in seconds.
Dave Barach2ab470a2016-08-10 18:38:36 -0400849 @returns the remaining time interval
850*/
851
Ed Warnickecb9cada2015-12-08 15:45:58 -0700852always_inline f64
853vlib_process_wait_for_event_or_clock (vlib_main_t * vm, f64 dt)
854{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400855 vlib_node_main_t *nm = &vm->node_main;
856 vlib_process_t *p;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700857 f64 wakeup_time;
858 uword r;
859
860 p = vec_elt (nm->processes, nm->current_process_index);
861
862 if (vlib_process_suspend_time_is_zero (dt)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400863 || !clib_bitmap_is_zero (p->non_empty_event_type_bitmap))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700864 return dt;
865
866 wakeup_time = vlib_time_now (vm) + dt;
867
868 /* Suspend waiting for both clock and event to occur. */
869 p->flags |= (VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_EVENT
870 | VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_CLOCK);
871
872 r = clib_setjmp (&p->resume_longjmp, VLIB_PROCESS_RESUME_LONGJMP_SUSPEND);
873 if (r == VLIB_PROCESS_RESUME_LONGJMP_SUSPEND)
874 {
Dave Barach5c20a012017-06-13 08:48:31 -0400875 p->resume_clock_interval = dt * 1e5;
Damjan Marioncea46522020-05-21 16:47:05 +0200876 vlib_process_start_switch_stack (vm, 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700877 clib_longjmp (&p->return_longjmp, VLIB_PROCESS_RETURN_LONGJMP_SUSPEND);
878 }
Damjan Marioncea46522020-05-21 16:47:05 +0200879 else
880 vlib_process_finish_switch_stack (vm);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700881
882 /* Return amount of time still left to sleep.
883 If <= 0 then we've been waken up by the clock (and not an event). */
884 return wakeup_time - vlib_time_now (vm);
885}
886
887always_inline vlib_process_event_type_t *
888vlib_process_new_event_type (vlib_process_t * p, uword with_type_opaque)
889{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400890 vlib_process_event_type_t *et;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700891 pool_get (p->event_type_pool, et);
892 et->opaque = with_type_opaque;
893 return et;
894}
895
896always_inline uword
Dave Barach9b8ffd92016-07-08 08:13:45 -0400897vlib_process_create_one_time_event (vlib_main_t * vm, uword node_index,
898 uword with_type_opaque)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700899{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400900 vlib_node_main_t *nm = &vm->node_main;
901 vlib_node_t *n = vlib_get_node (vm, node_index);
902 vlib_process_t *p = vec_elt (nm->processes, n->runtime_index);
903 vlib_process_event_type_t *et;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700904 uword t;
905
906 et = vlib_process_new_event_type (p, with_type_opaque);
907 t = et - p->event_type_pool;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400908 p->one_time_event_type_bitmap =
909 clib_bitmap_ori (p->one_time_event_type_bitmap, t);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700910 return t;
911}
912
913always_inline void
Dave Barach9b8ffd92016-07-08 08:13:45 -0400914vlib_process_delete_one_time_event (vlib_main_t * vm, uword node_index,
915 uword t)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700916{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400917 vlib_node_main_t *nm = &vm->node_main;
918 vlib_node_t *n = vlib_get_node (vm, node_index);
919 vlib_process_t *p = vec_elt (nm->processes, n->runtime_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700920
921 ASSERT (clib_bitmap_get (p->one_time_event_type_bitmap, t));
922 vlib_process_free_event_type (p, t, /* is_one_time_event */ 1);
923}
924
925always_inline void *
926vlib_process_signal_event_helper (vlib_node_main_t * nm,
927 vlib_node_t * n,
928 vlib_process_t * p,
929 uword t,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400930 uword n_data_elts, uword n_data_elt_bytes)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700931{
932 uword p_flags, add_to_pending, delete_from_wheel;
Damjan Mariond24b86e2022-03-23 16:59:23 +0100933 u8 *data_to_be_written_by_caller;
Damjan Marione4fa1d22022-04-11 18:41:49 +0200934 vec_attr_t va = { .elt_sz = n_data_elt_bytes };
Ed Warnickecb9cada2015-12-08 15:45:58 -0700935
Dave Barach1403fcd2018-02-05 09:45:43 -0500936 ASSERT (n->type == VLIB_NODE_TYPE_PROCESS);
937
Dave Barach9b8ffd92016-07-08 08:13:45 -0400938 ASSERT (!pool_is_free_index (p->event_type_pool, t));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700939
940 vec_validate (p->pending_event_data_by_type_index, t);
941
942 /* Resize data vector and return caller's data to be written. */
943 {
Damjan Mariond24b86e2022-03-23 16:59:23 +0100944 u8 *data_vec = p->pending_event_data_by_type_index[t];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700945 uword l;
946
Dave Barach9b8ffd92016-07-08 08:13:45 -0400947 if (!data_vec && vec_len (nm->recycled_event_data_vectors))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700948 {
949 data_vec = vec_pop (nm->recycled_event_data_vectors);
fangtong33b18d42021-07-24 14:55:02 +0800950 vec_reset_length (data_vec);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700951 }
952
953 l = vec_len (data_vec);
954
Damjan Marione4fa1d22022-04-11 18:41:49 +0200955 data_vec = _vec_realloc_internal (data_vec, l + n_data_elts, &va);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700956
957 p->pending_event_data_by_type_index[t] = data_vec;
958 data_to_be_written_by_caller = data_vec + l * n_data_elt_bytes;
959 }
960
Dave Barach9b8ffd92016-07-08 08:13:45 -0400961 p->non_empty_event_type_bitmap =
962 clib_bitmap_ori (p->non_empty_event_type_bitmap, t);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700963
964 p_flags = p->flags;
965
966 /* Event was already signalled? */
967 add_to_pending = (p_flags & VLIB_PROCESS_RESUME_PENDING) == 0;
968
969 /* Process will resume when suspend time elapses? */
970 delete_from_wheel = 0;
971 if (p_flags & VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_CLOCK)
972 {
973 /* Waiting for both event and clock? */
974 if (p_flags & VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_EVENT)
Florin Coras40f92462018-08-01 16:25:45 -0700975 {
976 if (!TW (tw_timer_handle_is_free)
977 ((TWT (tw_timer_wheel) *) nm->timing_wheel,
978 p->stop_timer_handle))
979 delete_from_wheel = 1;
980 else
981 /* timer just popped so process should already be on the list */
982 add_to_pending = 0;
983 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700984 else
985 /* Waiting only for clock. Event will be queue and may be
986 handled when timer expires. */
987 add_to_pending = 0;
988 }
989
990 /* Never add current process to pending vector since current process is
991 already running. */
992 add_to_pending &= nm->current_process_index != n->runtime_index;
993
994 if (add_to_pending)
995 {
996 u32 x = vlib_timing_wheel_data_set_suspended_process (n->runtime_index);
997 p->flags = p_flags | VLIB_PROCESS_RESUME_PENDING;
998 vec_add1 (nm->data_from_advancing_timing_wheel, x);
999 if (delete_from_wheel)
Dave Barach5c20a012017-06-13 08:48:31 -04001000 TW (tw_timer_stop) ((TWT (tw_timer_wheel) *) nm->timing_wheel,
1001 p->stop_timer_handle);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001002 }
1003
1004 return data_to_be_written_by_caller;
1005}
1006
1007always_inline void *
1008vlib_process_signal_event_data (vlib_main_t * vm,
1009 uword node_index,
1010 uword type_opaque,
Dave Barach9b8ffd92016-07-08 08:13:45 -04001011 uword n_data_elts, uword n_data_elt_bytes)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001012{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001013 vlib_node_main_t *nm = &vm->node_main;
1014 vlib_node_t *n = vlib_get_node (vm, node_index);
1015 vlib_process_t *p = vec_elt (nm->processes, n->runtime_index);
1016 uword *h, t;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001017
John Lo609707e2017-09-19 21:45:10 -04001018 /* Must be in main thread */
1019 ASSERT (vlib_get_thread_index () == 0);
1020
Ed Warnickecb9cada2015-12-08 15:45:58 -07001021 h = hash_get (p->event_type_index_by_type_opaque, type_opaque);
Dave Barach9b8ffd92016-07-08 08:13:45 -04001022 if (!h)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001023 {
Dave Barach9b8ffd92016-07-08 08:13:45 -04001024 vlib_process_event_type_t *et =
1025 vlib_process_new_event_type (p, type_opaque);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001026 t = et - p->event_type_pool;
1027 hash_set (p->event_type_index_by_type_opaque, type_opaque, t);
1028 }
1029 else
1030 t = h[0];
1031
Dave Barach9b8ffd92016-07-08 08:13:45 -04001032 return vlib_process_signal_event_helper (nm, n, p, t, n_data_elts,
1033 n_data_elt_bytes);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001034}
1035
1036always_inline void *
1037vlib_process_signal_event_at_time (vlib_main_t * vm,
1038 f64 dt,
1039 uword node_index,
1040 uword type_opaque,
Dave Barach9b8ffd92016-07-08 08:13:45 -04001041 uword n_data_elts, uword n_data_elt_bytes)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001042{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001043 vlib_node_main_t *nm = &vm->node_main;
1044 vlib_node_t *n = vlib_get_node (vm, node_index);
1045 vlib_process_t *p = vec_elt (nm->processes, n->runtime_index);
1046 uword *h, t;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001047
1048 h = hash_get (p->event_type_index_by_type_opaque, type_opaque);
Dave Barach9b8ffd92016-07-08 08:13:45 -04001049 if (!h)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001050 {
Dave Barach9b8ffd92016-07-08 08:13:45 -04001051 vlib_process_event_type_t *et =
1052 vlib_process_new_event_type (p, type_opaque);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001053 t = et - p->event_type_pool;
1054 hash_set (p->event_type_index_by_type_opaque, type_opaque, t);
1055 }
1056 else
1057 t = h[0];
1058
1059 if (vlib_process_suspend_time_is_zero (dt))
Dave Barach9b8ffd92016-07-08 08:13:45 -04001060 return vlib_process_signal_event_helper (nm, n, p, t, n_data_elts,
1061 n_data_elt_bytes);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001062 else
1063 {
Dave Barach9b8ffd92016-07-08 08:13:45 -04001064 vlib_signal_timed_event_data_t *te;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001065
1066 pool_get_aligned (nm->signal_timed_event_data_pool, te, sizeof (te[0]));
1067
1068 te->n_data_elts = n_data_elts;
1069 te->n_data_elt_bytes = n_data_elt_bytes;
1070 te->n_data_bytes = n_data_elts * n_data_elt_bytes;
1071
1072 /* Assert that structure fields are big enough. */
1073 ASSERT (te->n_data_elts == n_data_elts);
1074 ASSERT (te->n_data_elt_bytes == n_data_elt_bytes);
1075 ASSERT (te->n_data_bytes == n_data_elts * n_data_elt_bytes);
1076
1077 te->process_node_index = n->runtime_index;
1078 te->event_type_index = t;
1079
Dave Barach5c20a012017-06-13 08:48:31 -04001080 p->stop_timer_handle =
1081 TW (tw_timer_start) ((TWT (tw_timer_wheel) *) nm->timing_wheel,
1082 vlib_timing_wheel_data_set_timed_event
1083 (te - nm->signal_timed_event_data_pool),
1084 0 /* timer_id */ ,
1085 (vlib_time_now (vm) + dt) * 1e5);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001086
1087 /* Inline data big enough to hold event? */
1088 if (te->n_data_bytes < sizeof (te->inline_event_data))
1089 return te->inline_event_data;
1090 else
1091 {
1092 te->event_data_as_vector = 0;
1093 vec_resize (te->event_data_as_vector, te->n_data_bytes);
1094 return te->event_data_as_vector;
1095 }
1096 }
1097}
1098
1099always_inline void *
1100vlib_process_signal_one_time_event_data (vlib_main_t * vm,
1101 uword node_index,
1102 uword type_index,
1103 uword n_data_elts,
1104 uword n_data_elt_bytes)
1105{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001106 vlib_node_main_t *nm = &vm->node_main;
1107 vlib_node_t *n = vlib_get_node (vm, node_index);
1108 vlib_process_t *p = vec_elt (nm->processes, n->runtime_index);
1109 return vlib_process_signal_event_helper (nm, n, p, type_index, n_data_elts,
1110 n_data_elt_bytes);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001111}
1112
1113always_inline void
1114vlib_process_signal_event (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -04001115 uword node_index, uword type_opaque, uword data)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001116{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001117 uword *d = vlib_process_signal_event_data (vm, node_index, type_opaque,
1118 1 /* elts */ , sizeof (uword));
Ed Warnickecb9cada2015-12-08 15:45:58 -07001119 d[0] = data;
1120}
1121
1122always_inline void
1123vlib_process_signal_event_pointer (vlib_main_t * vm,
1124 uword node_index,
Dave Barach9b8ffd92016-07-08 08:13:45 -04001125 uword type_opaque, void *data)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001126{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001127 void **d = vlib_process_signal_event_data (vm, node_index, type_opaque,
1128 1 /* elts */ , sizeof (data));
Ed Warnickecb9cada2015-12-08 15:45:58 -07001129 d[0] = data;
1130}
1131
Dave Barach69128d02017-09-26 10:54:34 -04001132/**
1133 * Signal event to process from any thread.
1134 *
1135 * When in doubt, use this.
1136 */
1137always_inline void
1138vlib_process_signal_event_mt (vlib_main_t * vm,
1139 uword node_index, uword type_opaque, uword data)
1140{
1141 if (vlib_get_thread_index () != 0)
1142 {
1143 vlib_process_signal_event_mt_args_t args = {
1144 .node_index = node_index,
1145 .type_opaque = type_opaque,
1146 .data = data,
1147 };
1148 vlib_rpc_call_main_thread (vlib_process_signal_event_mt_helper,
1149 (u8 *) & args, sizeof (args));
1150 }
1151 else
1152 vlib_process_signal_event (vm, node_index, type_opaque, data);
1153}
1154
Ed Warnickecb9cada2015-12-08 15:45:58 -07001155always_inline void
1156vlib_process_signal_one_time_event (vlib_main_t * vm,
1157 uword node_index,
Dave Barach9b8ffd92016-07-08 08:13:45 -04001158 uword type_index, uword data)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001159{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001160 uword *d =
1161 vlib_process_signal_one_time_event_data (vm, node_index, type_index,
1162 1 /* elts */ , sizeof (uword));
Ed Warnickecb9cada2015-12-08 15:45:58 -07001163 d[0] = data;
1164}
1165
1166always_inline void
Dave Barach9b8ffd92016-07-08 08:13:45 -04001167vlib_signal_one_time_waiting_process (vlib_main_t * vm,
1168 vlib_one_time_waiting_process_t * p)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001169{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001170 vlib_process_signal_one_time_event (vm, p->node_index, p->one_time_event,
1171 /* data */ ~0);
Dave Barachb7b92992018-10-17 10:38:51 -04001172 clib_memset (p, ~0, sizeof (p[0]));
Ed Warnickecb9cada2015-12-08 15:45:58 -07001173}
1174
1175always_inline void
1176vlib_signal_one_time_waiting_process_vector (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -04001177 vlib_one_time_waiting_process_t
1178 ** wps)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001179{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001180 vlib_one_time_waiting_process_t *wp;
1181 vec_foreach (wp, *wps) vlib_signal_one_time_waiting_process (vm, wp);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001182 vec_free (*wps);
1183}
1184
1185always_inline void
Dave Barach9b8ffd92016-07-08 08:13:45 -04001186vlib_current_process_wait_for_one_time_event (vlib_main_t * vm,
1187 vlib_one_time_waiting_process_t
1188 * p)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001189{
1190 p->node_index = vlib_current_process (vm);
Dave Barach9b8ffd92016-07-08 08:13:45 -04001191 p->one_time_event = vlib_process_create_one_time_event (vm, p->node_index, /* type opaque */
1192 ~0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001193 vlib_process_wait_for_one_time_event (vm,
1194 /* don't care about data */ 0,
1195 p->one_time_event);
1196}
1197
1198always_inline void
1199vlib_current_process_wait_for_one_time_event_vector (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -04001200 vlib_one_time_waiting_process_t
1201 ** wps)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001202{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001203 vlib_one_time_waiting_process_t *wp;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001204 vec_add2 (*wps, wp, 1);
1205 vlib_current_process_wait_for_one_time_event (vm, wp);
1206}
1207
1208always_inline u32
1209vlib_node_runtime_update_main_loop_vector_stats (vlib_main_t * vm,
1210 vlib_node_runtime_t * node,
1211 uword n_vectors)
1212{
1213 u32 i, d, vi0, vi1;
1214 u32 i0, i1;
1215
1216 ASSERT (is_pow2 (ARRAY_LEN (node->main_loop_vector_stats)));
1217 i = ((vm->main_loop_count >> VLIB_LOG2_MAIN_LOOPS_PER_STATS_UPDATE)
1218 & (ARRAY_LEN (node->main_loop_vector_stats) - 1));
1219 i0 = i ^ 0;
1220 i1 = i ^ 1;
1221 d = ((vm->main_loop_count >> VLIB_LOG2_MAIN_LOOPS_PER_STATS_UPDATE)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001222 -
1223 (node->main_loop_count_last_dispatch >>
1224 VLIB_LOG2_MAIN_LOOPS_PER_STATS_UPDATE));
Ed Warnickecb9cada2015-12-08 15:45:58 -07001225 vi0 = node->main_loop_vector_stats[i0];
1226 vi1 = node->main_loop_vector_stats[i1];
1227 vi0 = d == 0 ? vi0 : 0;
1228 vi1 = d <= 1 ? vi1 : 0;
1229 vi0 += n_vectors;
1230 node->main_loop_vector_stats[i0] = vi0;
1231 node->main_loop_vector_stats[i1] = vi1;
1232 node->main_loop_count_last_dispatch = vm->main_loop_count;
1233 /* Return previous counter. */
1234 return node->main_loop_vector_stats[i1];
1235}
1236
1237always_inline f64
1238vlib_node_vectors_per_main_loop_as_float (vlib_main_t * vm, u32 node_index)
1239{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001240 vlib_node_runtime_t *rt = vlib_node_get_runtime (vm, node_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001241 u32 v;
1242
Dave Barach9b8ffd92016-07-08 08:13:45 -04001243 v = vlib_node_runtime_update_main_loop_vector_stats (vm, rt, /* n_vectors */
1244 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001245 return (f64) v / (1 << VLIB_LOG2_MAIN_LOOPS_PER_STATS_UPDATE);
1246}
1247
1248always_inline u32
1249vlib_node_vectors_per_main_loop_as_integer (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 v >> VLIB_LOG2_MAIN_LOOPS_PER_STATS_UPDATE;
1257}
1258
1259void
Dave Barach9b8ffd92016-07-08 08:13:45 -04001260vlib_frame_free (vlib_main_t * vm, vlib_node_runtime_t * r, vlib_frame_t * f);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001261
Neale Rannsbb620d72017-06-29 00:19:08 -07001262/* Return the edge index if present, ~0 otherwise */
1263uword vlib_node_get_next (vlib_main_t * vm, uword node, uword next_node);
1264
Ed Warnickecb9cada2015-12-08 15:45:58 -07001265/* Add next node to given node in given slot. */
1266uword
1267vlib_node_add_next_with_slot (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -04001268 uword node, uword next_node, uword slot);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001269
1270/* As above but adds to end of node's next vector. */
1271always_inline uword
1272vlib_node_add_next (vlib_main_t * vm, uword node, uword next_node)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001273{
1274 return vlib_node_add_next_with_slot (vm, node, next_node, ~0);
1275}
Ed Warnickecb9cada2015-12-08 15:45:58 -07001276
1277/* Add next node to given node in given slot. */
1278uword
1279vlib_node_add_named_next_with_slot (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -04001280 uword node, char *next_name, uword slot);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001281
1282/* As above but adds to end of node's next vector. */
1283always_inline uword
Dave Barach9b8ffd92016-07-08 08:13:45 -04001284vlib_node_add_named_next (vlib_main_t * vm, uword node, char *name)
1285{
1286 return vlib_node_add_named_next_with_slot (vm, node, name, ~0);
1287}
Ed Warnickecb9cada2015-12-08 15:45:58 -07001288
Florin Corase86a8ed2018-01-05 03:20:25 -08001289/**
1290 * Get list of nodes
1291 */
Dave Barach1ddbc012018-06-13 09:26:05 -04001292void
1293vlib_node_get_nodes (vlib_main_t * vm, u32 max_threads, int include_stats,
1294 int barrier_sync, vlib_node_t **** node_dupsp,
1295 vlib_main_t *** stat_vmsp);
Florin Corase86a8ed2018-01-05 03:20:25 -08001296
Ed Warnickecb9cada2015-12-08 15:45:58 -07001297/* Query node given name. */
Dave Barach9b8ffd92016-07-08 08:13:45 -04001298vlib_node_t *vlib_get_node_by_name (vlib_main_t * vm, u8 * name);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001299
1300/* Rename a node. */
Dave Barach9b8ffd92016-07-08 08:13:45 -04001301void vlib_node_rename (vlib_main_t * vm, u32 node_index, char *fmt, ...);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001302
1303/* Register new packet processing node. Nodes can be registered
1304 dynamically via this call or statically via the VLIB_REGISTER_NODE
1305 macro. */
Damjan Marionf87acfa2022-03-23 17:36:56 +01001306u32 vlib_register_node (vlib_main_t *vm, vlib_node_registration_t *r,
1307 char *fmt, ...);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001308
Damjan Mariona31698b2021-03-10 14:35:28 +01001309/* Register all node function variants */
1310void vlib_register_all_node_march_variants (vlib_main_t *vm);
1311
Ed Warnickecb9cada2015-12-08 15:45:58 -07001312/* Register all static nodes registered via VLIB_REGISTER_NODE. */
1313void vlib_register_all_static_nodes (vlib_main_t * vm);
1314
1315/* Start a process. */
1316void vlib_start_process (vlib_main_t * vm, uword process_index);
1317
1318/* Sync up runtime and main node stats. */
Dave Barach9b8ffd92016-07-08 08:13:45 -04001319void vlib_node_sync_stats (vlib_main_t * vm, vlib_node_t * n);
Arthur de Kerhor156158f2021-02-18 03:09:42 -08001320void vlib_node_runtime_sync_stats (vlib_main_t *vm, vlib_node_runtime_t *r,
1321 uword n_calls, uword n_vectors,
1322 uword n_clocks);
1323void vlib_node_runtime_sync_stats_node (vlib_node_t *n, vlib_node_runtime_t *r,
1324 uword n_calls, uword n_vectors,
1325 uword n_clocks);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001326
1327/* Node graph initialization function. */
Dave Barach9b8ffd92016-07-08 08:13:45 -04001328clib_error_t *vlib_node_main_init (vlib_main_t * vm);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001329
1330format_function_t format_vlib_node_graph;
1331format_function_t format_vlib_node_name;
1332format_function_t format_vlib_next_node_name;
1333format_function_t format_vlib_node_and_next;
1334format_function_t format_vlib_cpu_time;
1335format_function_t format_vlib_time;
1336/* Parse node name -> node index. */
1337unformat_function_t unformat_vlib_node;
1338
Dave Barach9b8ffd92016-07-08 08:13:45 -04001339always_inline void
1340vlib_node_increment_counter (vlib_main_t * vm, u32 node_index,
1341 u32 counter_index, u64 increment)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001342{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001343 vlib_node_t *n = vlib_get_node (vm, node_index);
1344 vlib_error_main_t *em = &vm->error_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001345 u32 node_counter_base_index = n->error_heap_index;
1346 em->counters[node_counter_base_index + counter_index] += increment;
1347}
1348
Dave Barach11965c72019-05-28 16:31:05 -04001349/** @brief Create a vlib process
1350 * @param vm &vlib_global_main
1351 * @param f the process node function
1352 * @param log2_n_stack_bytes size of the process stack, defaults to 16K
1353 * @return newly-create node index
1354 * @warning call only on the main thread. Barrier sync required
1355 */
1356u32 vlib_process_create (vlib_main_t * vm, char *name,
1357 vlib_node_function_t * f, u32 log2_n_stack_bytes);
1358
Damjan Marion8b60fb02020-11-27 20:15:17 +01001359always_inline int
1360vlib_node_set_dispatch_wrapper (vlib_main_t *vm, vlib_node_function_t *fn)
1361{
1362 if (fn && vm->dispatch_wrapper_fn)
1363 return 1;
1364 vm->dispatch_wrapper_fn = fn;
1365 return 0;
1366}
1367
Damjan Mariona31698b2021-03-10 14:35:28 +01001368int vlib_node_set_march_variant (vlib_main_t *vm, u32 node_index,
1369 clib_march_variant_type_t march_variant);
1370
1371vlib_node_function_t *
1372vlib_node_get_preferred_node_fn_variant (vlib_main_t *vm,
1373 vlib_node_fn_registration_t *regs);
1374
Damjan Marionefeea5b2022-02-10 15:01:03 +01001375/*
1376 * vlib_frame_bitmap functions
1377 */
1378
1379#define VLIB_FRAME_BITMAP_N_UWORDS \
1380 (((VLIB_FRAME_SIZE + uword_bits - 1) & ~(uword_bits - 1)) / uword_bits)
1381
1382typedef uword vlib_frame_bitmap_t[VLIB_FRAME_BITMAP_N_UWORDS];
1383
1384static_always_inline void
1385vlib_frame_bitmap_init (uword *bmp, u32 n_first_bits_set)
1386{
1387 u32 n_left = VLIB_FRAME_BITMAP_N_UWORDS;
1388 while (n_first_bits_set >= (sizeof (uword) * 8) && n_left)
1389 {
1390 bmp++[0] = ~0;
1391 n_first_bits_set -= sizeof (uword) * 8;
1392 n_left--;
1393 }
1394
1395 if (n_first_bits_set && n_left)
1396 {
1397 bmp++[0] = pow2_mask (n_first_bits_set);
1398 n_left--;
1399 }
1400
1401 while (n_left--)
1402 bmp++[0] = 0;
1403}
1404
1405static_always_inline void
1406vlib_frame_bitmap_clear (uword *bmp)
1407{
1408 u32 n_left = VLIB_FRAME_BITMAP_N_UWORDS;
1409 while (n_left--)
1410 bmp++[0] = 0;
1411}
1412
1413static_always_inline void
1414vlib_frame_bitmap_xor (uword *bmp, uword *bmp2)
1415{
1416 u32 n_left = VLIB_FRAME_BITMAP_N_UWORDS;
1417 while (n_left--)
1418 bmp++[0] ^= bmp2++[0];
1419}
1420
1421static_always_inline void
1422vlib_frame_bitmap_or (uword *bmp, uword *bmp2)
1423{
1424 u32 n_left = VLIB_FRAME_BITMAP_N_UWORDS;
1425 while (n_left--)
1426 bmp++[0] |= bmp2++[0];
1427}
1428
Damjan Marion218e4ec2022-03-15 16:16:55 +01001429static_always_inline void
1430vlib_frame_bitmap_and (uword *bmp, uword *bmp2)
1431{
1432 u32 n_left = VLIB_FRAME_BITMAP_N_UWORDS;
1433 while (n_left--)
1434 bmp++[0] &= bmp2++[0];
1435}
1436
Damjan Marionefeea5b2022-02-10 15:01:03 +01001437static_always_inline u32
1438vlib_frame_bitmap_count_set_bits (uword *bmp)
1439{
1440 u32 n_left = VLIB_FRAME_BITMAP_N_UWORDS;
1441 u32 count = 0;
1442 while (n_left--)
1443 count += count_set_bits (bmp++[0]);
1444 return count;
1445}
1446
1447static_always_inline int
1448vlib_frame_bitmap_find_first_set (uword *bmp)
1449{
1450 uword *b = bmp;
1451 while (b[0] == 0)
1452 {
1453 ASSERT (b - bmp < VLIB_FRAME_BITMAP_N_UWORDS);
1454 b++;
1455 }
1456
1457 return (b - bmp) * uword_bits + get_lowest_set_bit_index (b[0]);
1458}
1459
1460#define foreach_vlib_frame_bitmap_set_bit_index(i, v) \
1461 for (uword _off = 0; _off < ARRAY_LEN (v); _off++) \
1462 for (uword _tmp = \
1463 (v[_off]) + 0 * (uword) (i = _off * uword_bits + \
1464 get_lowest_set_bit_index (v[_off])); \
1465 _tmp; i = _off * uword_bits + get_lowest_set_bit_index ( \
1466 _tmp = clear_lowest_set_bit (_tmp)))
1467
Ed Warnickecb9cada2015-12-08 15:45:58 -07001468#endif /* included_vlib_node_funcs_h */
Dave Barach9b8ffd92016-07-08 08:13:45 -04001469
1470/*
1471 * fd.io coding-style-patch-verification: ON
1472 *
1473 * Local Variables:
1474 * eval: (c-set-style "gnu")
1475 * End:
1476 */