blob: 147d5eb99efe6455b863e6541021b2466dfdb003 [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
375#define vlib_get_next_frame_macro(vm,node,next_index,vectors,n_vectors_left,alloc_new_frame) \
376do { \
377 vlib_frame_t * _f \
378 = vlib_get_next_frame_internal ((vm), (node), (next_index), \
379 (alloc_new_frame)); \
380 u32 _n = _f->n_vectors; \
381 (vectors) = vlib_frame_vector_args (_f) + _n * sizeof ((vectors)[0]); \
382 (n_vectors_left) = VLIB_FRAME_SIZE - _n; \
383} while (0)
384
Dave Barach9770e202016-07-06 10:29:27 -0400385
Dave Barach9b8ffd92016-07-08 08:13:45 -0400386/** \brief Get pointer to next frame vector data by
Dave Barach9770e202016-07-06 10:29:27 -0400387 (@c vlib_node_runtime_t, @c next_index).
388 Standard single/dual loop boilerplate element.
389 @attention This is a MACRO, with SIDE EFFECTS.
390
391 @param vm vlib_main_t pointer, varies by thread
392 @param node current node vlib_node_runtime_t pointer
393 @param next_index requested graph arc index
394
395 @return @c vectors -- pointer to next available vector slot
396 @return @c n_vectors_left -- number of vector slots available
397*/
Ed Warnickecb9cada2015-12-08 15:45:58 -0700398#define vlib_get_next_frame(vm,node,next_index,vectors,n_vectors_left) \
399 vlib_get_next_frame_macro (vm, node, next_index, \
400 vectors, n_vectors_left, \
401 /* alloc new frame */ 0)
402
403#define vlib_get_new_next_frame(vm,node,next_index,vectors,n_vectors_left) \
404 vlib_get_next_frame_macro (vm, node, next_index, \
405 vectors, n_vectors_left, \
406 /* alloc new frame */ 1)
407
Dave Barach9770e202016-07-06 10:29:27 -0400408/** \brief Release pointer to next frame vector data.
409 Standard single/dual loop boilerplate element.
410 @param vm vlib_main_t pointer, varies by thread
411 @param r current node vlib_node_runtime_t pointer
412 @param next_index graph arc index
413 @param n_packets_left number of slots still available in vector
414*/
Ed Warnickecb9cada2015-12-08 15:45:58 -0700415void
416vlib_put_next_frame (vlib_main_t * vm,
417 vlib_node_runtime_t * r,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400418 u32 next_index, u32 n_packets_left);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700419
420/* Combination get plus put. Returns vector argument just added. */
421#define vlib_set_next_frame(vm,node,next_index,v) \
422({ \
423 uword _n_left; \
424 vlib_get_next_frame ((vm), (node), (next_index), (v), _n_left); \
425 ASSERT (_n_left > 0); \
426 vlib_put_next_frame ((vm), (node), (next_index), _n_left - 1); \
427 (v); \
428})
429
430always_inline void
431vlib_set_next_frame_buffer (vlib_main_t * vm,
432 vlib_node_runtime_t * node,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400433 u32 next_index, u32 buffer_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700434{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400435 u32 *p;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700436 p = vlib_set_next_frame (vm, node, next_index, p);
437 p[0] = buffer_index;
438}
439
Dave Barach9b8ffd92016-07-08 08:13:45 -0400440vlib_frame_t *vlib_get_frame_to_node (vlib_main_t * vm, u32 to_node_index);
441void vlib_put_frame_to_node (vlib_main_t * vm, u32 to_node_index,
442 vlib_frame_t * f);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700443
Ed Warnickecb9cada2015-12-08 15:45:58 -0700444always_inline uword
445vlib_in_process_context (vlib_main_t * vm)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400446{
447 return vm->node_main.current_process_index != ~0;
448}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700449
Florin Coras66b11312017-07-31 17:18:03 -0700450always_inline vlib_process_t *
451vlib_get_current_process (vlib_main_t * vm)
452{
453 vlib_node_main_t *nm = &vm->node_main;
454 if (vlib_in_process_context (vm))
455 return vec_elt (nm->processes, nm->current_process_index);
456 return 0;
457}
458
Ed Warnickecb9cada2015-12-08 15:45:58 -0700459always_inline uword
460vlib_current_process (vlib_main_t * vm)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400461{
462 return vlib_get_current_process (vm)->node_runtime.node_index;
463}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700464
Damjan Marion698eeb12020-09-11 14:11:11 +0200465always_inline u32
466vlib_get_current_process_node_index (vlib_main_t * vm)
467{
468 vlib_process_t *process = vlib_get_current_process (vm);
469 return process->node_runtime.node_index;
470}
471
Dave Barach5c20a012017-06-13 08:48:31 -0400472/** Returns TRUE if a process suspend time is less than 10us
Dave Barach2ab470a2016-08-10 18:38:36 -0400473 @param dt - remaining poll time in seconds
Dave Barach5c20a012017-06-13 08:48:31 -0400474 @returns 1 if dt < 10e-6, 0 otherwise
Dave Barach2ab470a2016-08-10 18:38:36 -0400475*/
Ed Warnickecb9cada2015-12-08 15:45:58 -0700476always_inline uword
477vlib_process_suspend_time_is_zero (f64 dt)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400478{
Dave Barach5c20a012017-06-13 08:48:31 -0400479 return dt < 10e-6;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400480}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700481
Dave Barach2ab470a2016-08-10 18:38:36 -0400482/** Suspend a vlib cooperative multi-tasking thread for a period of time
483 @param vm - vlib_main_t *
484 @param dt - suspend interval in seconds
485 @returns VLIB_PROCESS_RESUME_LONGJMP_RESUME, routinely ignored
486*/
487
Ed Warnickecb9cada2015-12-08 15:45:58 -0700488always_inline uword
489vlib_process_suspend (vlib_main_t * vm, f64 dt)
490{
491 uword r;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400492 vlib_node_main_t *nm = &vm->node_main;
493 vlib_process_t *p = vec_elt (nm->processes, nm->current_process_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700494
495 if (vlib_process_suspend_time_is_zero (dt))
496 return VLIB_PROCESS_RESUME_LONGJMP_RESUME;
497
498 p->flags |= VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_CLOCK;
499 r = clib_setjmp (&p->resume_longjmp, VLIB_PROCESS_RESUME_LONGJMP_SUSPEND);
500 if (r == VLIB_PROCESS_RESUME_LONGJMP_SUSPEND)
501 {
Dave Barach5c20a012017-06-13 08:48:31 -0400502 /* expiration time in 10us ticks */
503 p->resume_clock_interval = dt * 1e5;
Damjan Marioncea46522020-05-21 16:47:05 +0200504 vlib_process_start_switch_stack (vm, 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700505 clib_longjmp (&p->return_longjmp, VLIB_PROCESS_RETURN_LONGJMP_SUSPEND);
506 }
Damjan Marioncea46522020-05-21 16:47:05 +0200507 else
508 vlib_process_finish_switch_stack (vm);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700509
510 return r;
511}
512
513always_inline void
Dave Barach9b8ffd92016-07-08 08:13:45 -0400514vlib_process_free_event_type (vlib_process_t * p, uword t,
515 uword is_one_time_event)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700516{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400517 ASSERT (!pool_is_free_index (p->event_type_pool, t));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700518 pool_put_index (p->event_type_pool, t);
519 if (is_one_time_event)
520 p->one_time_event_type_bitmap =
521 clib_bitmap_andnoti (p->one_time_event_type_bitmap, t);
522}
523
524always_inline void
525vlib_process_maybe_free_event_type (vlib_process_t * p, uword t)
526{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400527 ASSERT (!pool_is_free_index (p->event_type_pool, t));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700528 if (clib_bitmap_get (p->one_time_event_type_bitmap, t))
529 vlib_process_free_event_type (p, t, /* is_one_time_event */ 1);
530}
531
532always_inline void *
Dave Barach9b8ffd92016-07-08 08:13:45 -0400533vlib_process_get_event_data (vlib_main_t * vm,
534 uword * return_event_type_opaque)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700535{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400536 vlib_node_main_t *nm = &vm->node_main;
537 vlib_process_t *p;
538 vlib_process_event_type_t *et;
Gabriel Ganne71d73fe2017-02-04 10:51:04 +0100539 uword t;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400540 void *event_data_vector;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700541
542 p = vec_elt (nm->processes, nm->current_process_index);
543
544 /* Find first type with events ready.
545 Return invalid type when there's nothing there. */
546 t = clib_bitmap_first_set (p->non_empty_event_type_bitmap);
547 if (t == ~0)
548 return 0;
549
Dave Barach9b8ffd92016-07-08 08:13:45 -0400550 p->non_empty_event_type_bitmap =
551 clib_bitmap_andnoti (p->non_empty_event_type_bitmap, t);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700552
Gabriel Ganne71d73fe2017-02-04 10:51:04 +0100553 ASSERT (_vec_len (p->pending_event_data_by_type_index[t]) > 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700554 event_data_vector = p->pending_event_data_by_type_index[t];
555 p->pending_event_data_by_type_index[t] = 0;
556
557 et = pool_elt_at_index (p->event_type_pool, t);
558
559 /* Return user's opaque value and possibly index. */
560 *return_event_type_opaque = et->opaque;
561
562 vlib_process_maybe_free_event_type (p, t);
563
564 return event_data_vector;
565}
566
567/* Return event data vector for later reuse. We reuse event data to avoid
568 repeatedly allocating event vectors in cases where we care about speed. */
569always_inline void
Dave Barach9b8ffd92016-07-08 08:13:45 -0400570vlib_process_put_event_data (vlib_main_t * vm, void *event_data)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700571{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400572 vlib_node_main_t *nm = &vm->node_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700573 vec_add1 (nm->recycled_event_data_vectors, event_data);
574}
575
Dave Barach2ab470a2016-08-10 18:38:36 -0400576/** Return the first event type which has occurred and a vector of per-event
577 data of that type, or a timeout indication
578
579 @param vm - vlib_main_t pointer
580 @param data_vector - pointer to a (uword *) vector to receive event data
581 @returns either an event type and a vector of per-event instance data,
582 or ~0 to indicate a timeout.
583*/
584
Ed Warnickecb9cada2015-12-08 15:45:58 -0700585always_inline uword
586vlib_process_get_events (vlib_main_t * vm, uword ** data_vector)
587{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400588 vlib_node_main_t *nm = &vm->node_main;
589 vlib_process_t *p;
590 vlib_process_event_type_t *et;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700591 uword r, t, l;
592
593 p = vec_elt (nm->processes, nm->current_process_index);
594
595 /* Find first type with events ready.
596 Return invalid type when there's nothing there. */
597 t = clib_bitmap_first_set (p->non_empty_event_type_bitmap);
598 if (t == ~0)
599 return t;
600
Dave Barach9b8ffd92016-07-08 08:13:45 -0400601 p->non_empty_event_type_bitmap =
602 clib_bitmap_andnoti (p->non_empty_event_type_bitmap, t);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700603
604 l = _vec_len (p->pending_event_data_by_type_index[t]);
605 if (data_vector)
606 vec_add (*data_vector, p->pending_event_data_by_type_index[t], l);
607 _vec_len (p->pending_event_data_by_type_index[t]) = 0;
608
609 et = pool_elt_at_index (p->event_type_pool, t);
610
611 /* Return user's opaque value. */
612 r = et->opaque;
613
614 vlib_process_maybe_free_event_type (p, t);
615
616 return r;
617}
618
619always_inline uword
Dave Barach9b8ffd92016-07-08 08:13:45 -0400620vlib_process_get_events_helper (vlib_process_t * p, uword t,
621 uword ** data_vector)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700622{
623 uword l;
624
Dave Barach9b8ffd92016-07-08 08:13:45 -0400625 p->non_empty_event_type_bitmap =
626 clib_bitmap_andnoti (p->non_empty_event_type_bitmap, t);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700627
628 l = _vec_len (p->pending_event_data_by_type_index[t]);
629 if (data_vector)
630 vec_add (*data_vector, p->pending_event_data_by_type_index[t], l);
631 _vec_len (p->pending_event_data_by_type_index[t]) = 0;
632
633 vlib_process_maybe_free_event_type (p, t);
634
635 return l;
636}
637
638/* As above but query as specified type of event. Returns number of
639 events found. */
640always_inline uword
641vlib_process_get_events_with_type (vlib_main_t * vm, uword ** data_vector,
642 uword with_type_opaque)
643{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400644 vlib_node_main_t *nm = &vm->node_main;
645 vlib_process_t *p;
646 uword t, *h;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700647
648 p = vec_elt (nm->processes, nm->current_process_index);
649 h = hash_get (p->event_type_index_by_type_opaque, with_type_opaque);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400650 if (!h)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700651 /* This can happen when an event has not yet been
652 signaled with given opaque type. */
653 return 0;
654
655 t = h[0];
Dave Barach9b8ffd92016-07-08 08:13:45 -0400656 if (!clib_bitmap_get (p->non_empty_event_type_bitmap, t))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700657 return 0;
658
659 return vlib_process_get_events_helper (p, t, data_vector);
660}
661
662always_inline uword *
663vlib_process_wait_for_event (vlib_main_t * vm)
664{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400665 vlib_node_main_t *nm = &vm->node_main;
666 vlib_process_t *p;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700667 uword r;
668
669 p = vec_elt (nm->processes, nm->current_process_index);
670 if (clib_bitmap_is_zero (p->non_empty_event_type_bitmap))
671 {
672 p->flags |= VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_EVENT;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400673 r =
674 clib_setjmp (&p->resume_longjmp, VLIB_PROCESS_RESUME_LONGJMP_SUSPEND);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700675 if (r == VLIB_PROCESS_RESUME_LONGJMP_SUSPEND)
Damjan Marioncea46522020-05-21 16:47:05 +0200676 {
677 vlib_process_start_switch_stack (vm, 0);
678 clib_longjmp (&p->return_longjmp,
679 VLIB_PROCESS_RETURN_LONGJMP_SUSPEND);
680 }
681 else
682 vlib_process_finish_switch_stack (vm);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700683 }
684
685 return p->non_empty_event_type_bitmap;
686}
687
688always_inline uword
689vlib_process_wait_for_one_time_event (vlib_main_t * vm,
690 uword ** data_vector,
691 uword with_type_index)
692{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400693 vlib_node_main_t *nm = &vm->node_main;
694 vlib_process_t *p;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700695 uword r;
696
697 p = vec_elt (nm->processes, nm->current_process_index);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400698 ASSERT (!pool_is_free_index (p->event_type_pool, with_type_index));
699 while (!clib_bitmap_get (p->non_empty_event_type_bitmap, with_type_index))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700700 {
701 p->flags |= VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_EVENT;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400702 r =
703 clib_setjmp (&p->resume_longjmp, VLIB_PROCESS_RESUME_LONGJMP_SUSPEND);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700704 if (r == VLIB_PROCESS_RESUME_LONGJMP_SUSPEND)
Damjan Marioncea46522020-05-21 16:47:05 +0200705 {
706 vlib_process_start_switch_stack (vm, 0);
707 clib_longjmp (&p->return_longjmp,
708 VLIB_PROCESS_RETURN_LONGJMP_SUSPEND);
709 }
710 else
711 vlib_process_finish_switch_stack (vm);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700712 }
713
714 return vlib_process_get_events_helper (p, with_type_index, data_vector);
715}
716
717always_inline uword
718vlib_process_wait_for_event_with_type (vlib_main_t * vm,
719 uword ** data_vector,
720 uword with_type_opaque)
721{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400722 vlib_node_main_t *nm = &vm->node_main;
723 vlib_process_t *p;
724 uword r, *h;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700725
726 p = vec_elt (nm->processes, nm->current_process_index);
727 h = hash_get (p->event_type_index_by_type_opaque, with_type_opaque);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400728 while (!h || !clib_bitmap_get (p->non_empty_event_type_bitmap, h[0]))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700729 {
730 p->flags |= VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_EVENT;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400731 r =
732 clib_setjmp (&p->resume_longjmp, VLIB_PROCESS_RESUME_LONGJMP_SUSPEND);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700733 if (r == VLIB_PROCESS_RESUME_LONGJMP_SUSPEND)
Damjan Marioncea46522020-05-21 16:47:05 +0200734 {
735 vlib_process_start_switch_stack (vm, 0);
736 clib_longjmp (&p->return_longjmp,
737 VLIB_PROCESS_RETURN_LONGJMP_SUSPEND);
738 }
739 else
740 vlib_process_finish_switch_stack (vm);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700741
742 /* See if unknown event type has been signaled now. */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400743 if (!h)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700744 h = hash_get (p->event_type_index_by_type_opaque, with_type_opaque);
745 }
746
747 return vlib_process_get_events_helper (p, h[0], data_vector);
748}
749
Dave Barach2ab470a2016-08-10 18:38:36 -0400750/** Suspend a cooperative multi-tasking thread
751 Waits for an event, or for the indicated number of seconds to elapse
752 @param vm - vlib_main_t pointer
Damjan Marion607de1a2016-08-16 22:53:54 +0200753 @param dt - timeout, in seconds.
Dave Barach2ab470a2016-08-10 18:38:36 -0400754 @returns the remaining time interval
755*/
756
Ed Warnickecb9cada2015-12-08 15:45:58 -0700757always_inline f64
758vlib_process_wait_for_event_or_clock (vlib_main_t * vm, f64 dt)
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 f64 wakeup_time;
763 uword r;
764
765 p = vec_elt (nm->processes, nm->current_process_index);
766
767 if (vlib_process_suspend_time_is_zero (dt)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400768 || !clib_bitmap_is_zero (p->non_empty_event_type_bitmap))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700769 return dt;
770
771 wakeup_time = vlib_time_now (vm) + dt;
772
773 /* Suspend waiting for both clock and event to occur. */
774 p->flags |= (VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_EVENT
775 | VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_CLOCK);
776
777 r = clib_setjmp (&p->resume_longjmp, VLIB_PROCESS_RESUME_LONGJMP_SUSPEND);
778 if (r == VLIB_PROCESS_RESUME_LONGJMP_SUSPEND)
779 {
Dave Barach5c20a012017-06-13 08:48:31 -0400780 p->resume_clock_interval = dt * 1e5;
Damjan Marioncea46522020-05-21 16:47:05 +0200781 vlib_process_start_switch_stack (vm, 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700782 clib_longjmp (&p->return_longjmp, VLIB_PROCESS_RETURN_LONGJMP_SUSPEND);
783 }
Damjan Marioncea46522020-05-21 16:47:05 +0200784 else
785 vlib_process_finish_switch_stack (vm);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700786
787 /* Return amount of time still left to sleep.
788 If <= 0 then we've been waken up by the clock (and not an event). */
789 return wakeup_time - vlib_time_now (vm);
790}
791
792always_inline vlib_process_event_type_t *
793vlib_process_new_event_type (vlib_process_t * p, uword with_type_opaque)
794{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400795 vlib_process_event_type_t *et;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700796 pool_get (p->event_type_pool, et);
797 et->opaque = with_type_opaque;
798 return et;
799}
800
801always_inline uword
Dave Barach9b8ffd92016-07-08 08:13:45 -0400802vlib_process_create_one_time_event (vlib_main_t * vm, uword node_index,
803 uword with_type_opaque)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700804{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400805 vlib_node_main_t *nm = &vm->node_main;
806 vlib_node_t *n = vlib_get_node (vm, node_index);
807 vlib_process_t *p = vec_elt (nm->processes, n->runtime_index);
808 vlib_process_event_type_t *et;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700809 uword t;
810
811 et = vlib_process_new_event_type (p, with_type_opaque);
812 t = et - p->event_type_pool;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400813 p->one_time_event_type_bitmap =
814 clib_bitmap_ori (p->one_time_event_type_bitmap, t);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700815 return t;
816}
817
818always_inline void
Dave Barach9b8ffd92016-07-08 08:13:45 -0400819vlib_process_delete_one_time_event (vlib_main_t * vm, uword node_index,
820 uword t)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700821{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400822 vlib_node_main_t *nm = &vm->node_main;
823 vlib_node_t *n = vlib_get_node (vm, node_index);
824 vlib_process_t *p = vec_elt (nm->processes, n->runtime_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700825
826 ASSERT (clib_bitmap_get (p->one_time_event_type_bitmap, t));
827 vlib_process_free_event_type (p, t, /* is_one_time_event */ 1);
828}
829
830always_inline void *
831vlib_process_signal_event_helper (vlib_node_main_t * nm,
832 vlib_node_t * n,
833 vlib_process_t * p,
834 uword t,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400835 uword n_data_elts, uword n_data_elt_bytes)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700836{
837 uword p_flags, add_to_pending, delete_from_wheel;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400838 void *data_to_be_written_by_caller;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700839
Dave Barach1403fcd2018-02-05 09:45:43 -0500840 ASSERT (n->type == VLIB_NODE_TYPE_PROCESS);
841
Dave Barach9b8ffd92016-07-08 08:13:45 -0400842 ASSERT (!pool_is_free_index (p->event_type_pool, t));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700843
844 vec_validate (p->pending_event_data_by_type_index, t);
845
846 /* Resize data vector and return caller's data to be written. */
847 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400848 void *data_vec = p->pending_event_data_by_type_index[t];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700849 uword l;
850
Dave Barach9b8ffd92016-07-08 08:13:45 -0400851 if (!data_vec && vec_len (nm->recycled_event_data_vectors))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700852 {
853 data_vec = vec_pop (nm->recycled_event_data_vectors);
fangtong33b18d42021-07-24 14:55:02 +0800854 vec_reset_length (data_vec);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700855 }
856
857 l = vec_len (data_vec);
858
859 data_vec = _vec_resize (data_vec,
860 /* length_increment */ n_data_elts,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400861 /* total size after increment */
862 (l + n_data_elts) * n_data_elt_bytes,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700863 /* header_bytes */ 0, /* data_align */ 0);
864
865 p->pending_event_data_by_type_index[t] = data_vec;
866 data_to_be_written_by_caller = data_vec + l * n_data_elt_bytes;
867 }
868
Dave Barach9b8ffd92016-07-08 08:13:45 -0400869 p->non_empty_event_type_bitmap =
870 clib_bitmap_ori (p->non_empty_event_type_bitmap, t);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700871
872 p_flags = p->flags;
873
874 /* Event was already signalled? */
875 add_to_pending = (p_flags & VLIB_PROCESS_RESUME_PENDING) == 0;
876
877 /* Process will resume when suspend time elapses? */
878 delete_from_wheel = 0;
879 if (p_flags & VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_CLOCK)
880 {
881 /* Waiting for both event and clock? */
882 if (p_flags & VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_EVENT)
Florin Coras40f92462018-08-01 16:25:45 -0700883 {
884 if (!TW (tw_timer_handle_is_free)
885 ((TWT (tw_timer_wheel) *) nm->timing_wheel,
886 p->stop_timer_handle))
887 delete_from_wheel = 1;
888 else
889 /* timer just popped so process should already be on the list */
890 add_to_pending = 0;
891 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700892 else
893 /* Waiting only for clock. Event will be queue and may be
894 handled when timer expires. */
895 add_to_pending = 0;
896 }
897
898 /* Never add current process to pending vector since current process is
899 already running. */
900 add_to_pending &= nm->current_process_index != n->runtime_index;
901
902 if (add_to_pending)
903 {
904 u32 x = vlib_timing_wheel_data_set_suspended_process (n->runtime_index);
905 p->flags = p_flags | VLIB_PROCESS_RESUME_PENDING;
906 vec_add1 (nm->data_from_advancing_timing_wheel, x);
907 if (delete_from_wheel)
Dave Barach5c20a012017-06-13 08:48:31 -0400908 TW (tw_timer_stop) ((TWT (tw_timer_wheel) *) nm->timing_wheel,
909 p->stop_timer_handle);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700910 }
911
912 return data_to_be_written_by_caller;
913}
914
915always_inline void *
916vlib_process_signal_event_data (vlib_main_t * vm,
917 uword node_index,
918 uword type_opaque,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400919 uword n_data_elts, uword n_data_elt_bytes)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700920{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400921 vlib_node_main_t *nm = &vm->node_main;
922 vlib_node_t *n = vlib_get_node (vm, node_index);
923 vlib_process_t *p = vec_elt (nm->processes, n->runtime_index);
924 uword *h, t;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700925
John Lo609707e2017-09-19 21:45:10 -0400926 /* Must be in main thread */
927 ASSERT (vlib_get_thread_index () == 0);
928
Ed Warnickecb9cada2015-12-08 15:45:58 -0700929 h = hash_get (p->event_type_index_by_type_opaque, type_opaque);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400930 if (!h)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700931 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400932 vlib_process_event_type_t *et =
933 vlib_process_new_event_type (p, type_opaque);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700934 t = et - p->event_type_pool;
935 hash_set (p->event_type_index_by_type_opaque, type_opaque, t);
936 }
937 else
938 t = h[0];
939
Dave Barach9b8ffd92016-07-08 08:13:45 -0400940 return vlib_process_signal_event_helper (nm, n, p, t, n_data_elts,
941 n_data_elt_bytes);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700942}
943
944always_inline void *
945vlib_process_signal_event_at_time (vlib_main_t * vm,
946 f64 dt,
947 uword node_index,
948 uword type_opaque,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400949 uword n_data_elts, uword n_data_elt_bytes)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700950{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400951 vlib_node_main_t *nm = &vm->node_main;
952 vlib_node_t *n = vlib_get_node (vm, node_index);
953 vlib_process_t *p = vec_elt (nm->processes, n->runtime_index);
954 uword *h, t;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700955
956 h = hash_get (p->event_type_index_by_type_opaque, type_opaque);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400957 if (!h)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700958 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400959 vlib_process_event_type_t *et =
960 vlib_process_new_event_type (p, type_opaque);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700961 t = et - p->event_type_pool;
962 hash_set (p->event_type_index_by_type_opaque, type_opaque, t);
963 }
964 else
965 t = h[0];
966
967 if (vlib_process_suspend_time_is_zero (dt))
Dave Barach9b8ffd92016-07-08 08:13:45 -0400968 return vlib_process_signal_event_helper (nm, n, p, t, n_data_elts,
969 n_data_elt_bytes);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700970 else
971 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400972 vlib_signal_timed_event_data_t *te;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700973
974 pool_get_aligned (nm->signal_timed_event_data_pool, te, sizeof (te[0]));
975
976 te->n_data_elts = n_data_elts;
977 te->n_data_elt_bytes = n_data_elt_bytes;
978 te->n_data_bytes = n_data_elts * n_data_elt_bytes;
979
980 /* Assert that structure fields are big enough. */
981 ASSERT (te->n_data_elts == n_data_elts);
982 ASSERT (te->n_data_elt_bytes == n_data_elt_bytes);
983 ASSERT (te->n_data_bytes == n_data_elts * n_data_elt_bytes);
984
985 te->process_node_index = n->runtime_index;
986 te->event_type_index = t;
987
Dave Barach5c20a012017-06-13 08:48:31 -0400988 p->stop_timer_handle =
989 TW (tw_timer_start) ((TWT (tw_timer_wheel) *) nm->timing_wheel,
990 vlib_timing_wheel_data_set_timed_event
991 (te - nm->signal_timed_event_data_pool),
992 0 /* timer_id */ ,
993 (vlib_time_now (vm) + dt) * 1e5);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700994
995 /* Inline data big enough to hold event? */
996 if (te->n_data_bytes < sizeof (te->inline_event_data))
997 return te->inline_event_data;
998 else
999 {
1000 te->event_data_as_vector = 0;
1001 vec_resize (te->event_data_as_vector, te->n_data_bytes);
1002 return te->event_data_as_vector;
1003 }
1004 }
1005}
1006
1007always_inline void *
1008vlib_process_signal_one_time_event_data (vlib_main_t * vm,
1009 uword node_index,
1010 uword type_index,
1011 uword n_data_elts,
1012 uword n_data_elt_bytes)
1013{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001014 vlib_node_main_t *nm = &vm->node_main;
1015 vlib_node_t *n = vlib_get_node (vm, node_index);
1016 vlib_process_t *p = vec_elt (nm->processes, n->runtime_index);
1017 return vlib_process_signal_event_helper (nm, n, p, type_index, n_data_elts,
1018 n_data_elt_bytes);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001019}
1020
1021always_inline void
1022vlib_process_signal_event (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -04001023 uword node_index, uword type_opaque, uword data)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001024{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001025 uword *d = vlib_process_signal_event_data (vm, node_index, type_opaque,
1026 1 /* elts */ , sizeof (uword));
Ed Warnickecb9cada2015-12-08 15:45:58 -07001027 d[0] = data;
1028}
1029
1030always_inline void
1031vlib_process_signal_event_pointer (vlib_main_t * vm,
1032 uword node_index,
Dave Barach9b8ffd92016-07-08 08:13:45 -04001033 uword type_opaque, void *data)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001034{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001035 void **d = vlib_process_signal_event_data (vm, node_index, type_opaque,
1036 1 /* elts */ , sizeof (data));
Ed Warnickecb9cada2015-12-08 15:45:58 -07001037 d[0] = data;
1038}
1039
Dave Barach69128d02017-09-26 10:54:34 -04001040/**
1041 * Signal event to process from any thread.
1042 *
1043 * When in doubt, use this.
1044 */
1045always_inline void
1046vlib_process_signal_event_mt (vlib_main_t * vm,
1047 uword node_index, uword type_opaque, uword data)
1048{
1049 if (vlib_get_thread_index () != 0)
1050 {
1051 vlib_process_signal_event_mt_args_t args = {
1052 .node_index = node_index,
1053 .type_opaque = type_opaque,
1054 .data = data,
1055 };
1056 vlib_rpc_call_main_thread (vlib_process_signal_event_mt_helper,
1057 (u8 *) & args, sizeof (args));
1058 }
1059 else
1060 vlib_process_signal_event (vm, node_index, type_opaque, data);
1061}
1062
Ed Warnickecb9cada2015-12-08 15:45:58 -07001063always_inline void
1064vlib_process_signal_one_time_event (vlib_main_t * vm,
1065 uword node_index,
Dave Barach9b8ffd92016-07-08 08:13:45 -04001066 uword type_index, uword data)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001067{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001068 uword *d =
1069 vlib_process_signal_one_time_event_data (vm, node_index, type_index,
1070 1 /* elts */ , sizeof (uword));
Ed Warnickecb9cada2015-12-08 15:45:58 -07001071 d[0] = data;
1072}
1073
1074always_inline void
Dave Barach9b8ffd92016-07-08 08:13:45 -04001075vlib_signal_one_time_waiting_process (vlib_main_t * vm,
1076 vlib_one_time_waiting_process_t * p)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001077{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001078 vlib_process_signal_one_time_event (vm, p->node_index, p->one_time_event,
1079 /* data */ ~0);
Dave Barachb7b92992018-10-17 10:38:51 -04001080 clib_memset (p, ~0, sizeof (p[0]));
Ed Warnickecb9cada2015-12-08 15:45:58 -07001081}
1082
1083always_inline void
1084vlib_signal_one_time_waiting_process_vector (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -04001085 vlib_one_time_waiting_process_t
1086 ** wps)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001087{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001088 vlib_one_time_waiting_process_t *wp;
1089 vec_foreach (wp, *wps) vlib_signal_one_time_waiting_process (vm, wp);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001090 vec_free (*wps);
1091}
1092
1093always_inline void
Dave Barach9b8ffd92016-07-08 08:13:45 -04001094vlib_current_process_wait_for_one_time_event (vlib_main_t * vm,
1095 vlib_one_time_waiting_process_t
1096 * p)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001097{
1098 p->node_index = vlib_current_process (vm);
Dave Barach9b8ffd92016-07-08 08:13:45 -04001099 p->one_time_event = vlib_process_create_one_time_event (vm, p->node_index, /* type opaque */
1100 ~0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001101 vlib_process_wait_for_one_time_event (vm,
1102 /* don't care about data */ 0,
1103 p->one_time_event);
1104}
1105
1106always_inline void
1107vlib_current_process_wait_for_one_time_event_vector (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -04001108 vlib_one_time_waiting_process_t
1109 ** wps)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001110{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001111 vlib_one_time_waiting_process_t *wp;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001112 vec_add2 (*wps, wp, 1);
1113 vlib_current_process_wait_for_one_time_event (vm, wp);
1114}
1115
1116always_inline u32
1117vlib_node_runtime_update_main_loop_vector_stats (vlib_main_t * vm,
1118 vlib_node_runtime_t * node,
1119 uword n_vectors)
1120{
1121 u32 i, d, vi0, vi1;
1122 u32 i0, i1;
1123
1124 ASSERT (is_pow2 (ARRAY_LEN (node->main_loop_vector_stats)));
1125 i = ((vm->main_loop_count >> VLIB_LOG2_MAIN_LOOPS_PER_STATS_UPDATE)
1126 & (ARRAY_LEN (node->main_loop_vector_stats) - 1));
1127 i0 = i ^ 0;
1128 i1 = i ^ 1;
1129 d = ((vm->main_loop_count >> VLIB_LOG2_MAIN_LOOPS_PER_STATS_UPDATE)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001130 -
1131 (node->main_loop_count_last_dispatch >>
1132 VLIB_LOG2_MAIN_LOOPS_PER_STATS_UPDATE));
Ed Warnickecb9cada2015-12-08 15:45:58 -07001133 vi0 = node->main_loop_vector_stats[i0];
1134 vi1 = node->main_loop_vector_stats[i1];
1135 vi0 = d == 0 ? vi0 : 0;
1136 vi1 = d <= 1 ? vi1 : 0;
1137 vi0 += n_vectors;
1138 node->main_loop_vector_stats[i0] = vi0;
1139 node->main_loop_vector_stats[i1] = vi1;
1140 node->main_loop_count_last_dispatch = vm->main_loop_count;
1141 /* Return previous counter. */
1142 return node->main_loop_vector_stats[i1];
1143}
1144
1145always_inline f64
1146vlib_node_vectors_per_main_loop_as_float (vlib_main_t * vm, u32 node_index)
1147{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001148 vlib_node_runtime_t *rt = vlib_node_get_runtime (vm, node_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001149 u32 v;
1150
Dave Barach9b8ffd92016-07-08 08:13:45 -04001151 v = vlib_node_runtime_update_main_loop_vector_stats (vm, rt, /* n_vectors */
1152 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001153 return (f64) v / (1 << VLIB_LOG2_MAIN_LOOPS_PER_STATS_UPDATE);
1154}
1155
1156always_inline u32
1157vlib_node_vectors_per_main_loop_as_integer (vlib_main_t * vm, u32 node_index)
1158{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001159 vlib_node_runtime_t *rt = vlib_node_get_runtime (vm, node_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001160 u32 v;
1161
Dave Barach9b8ffd92016-07-08 08:13:45 -04001162 v = vlib_node_runtime_update_main_loop_vector_stats (vm, rt, /* n_vectors */
1163 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001164 return v >> VLIB_LOG2_MAIN_LOOPS_PER_STATS_UPDATE;
1165}
1166
1167void
Dave Barach9b8ffd92016-07-08 08:13:45 -04001168vlib_frame_free (vlib_main_t * vm, vlib_node_runtime_t * r, vlib_frame_t * f);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001169
Neale Rannsbb620d72017-06-29 00:19:08 -07001170/* Return the edge index if present, ~0 otherwise */
1171uword vlib_node_get_next (vlib_main_t * vm, uword node, uword next_node);
1172
Ed Warnickecb9cada2015-12-08 15:45:58 -07001173/* Add next node to given node in given slot. */
1174uword
1175vlib_node_add_next_with_slot (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -04001176 uword node, uword next_node, uword slot);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001177
1178/* As above but adds to end of node's next vector. */
1179always_inline uword
1180vlib_node_add_next (vlib_main_t * vm, uword node, uword next_node)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001181{
1182 return vlib_node_add_next_with_slot (vm, node, next_node, ~0);
1183}
Ed Warnickecb9cada2015-12-08 15:45:58 -07001184
1185/* Add next node to given node in given slot. */
1186uword
1187vlib_node_add_named_next_with_slot (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -04001188 uword node, char *next_name, uword slot);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001189
1190/* As above but adds to end of node's next vector. */
1191always_inline uword
Dave Barach9b8ffd92016-07-08 08:13:45 -04001192vlib_node_add_named_next (vlib_main_t * vm, uword node, char *name)
1193{
1194 return vlib_node_add_named_next_with_slot (vm, node, name, ~0);
1195}
Ed Warnickecb9cada2015-12-08 15:45:58 -07001196
Florin Corase86a8ed2018-01-05 03:20:25 -08001197/**
1198 * Get list of nodes
1199 */
Dave Barach1ddbc012018-06-13 09:26:05 -04001200void
1201vlib_node_get_nodes (vlib_main_t * vm, u32 max_threads, int include_stats,
1202 int barrier_sync, vlib_node_t **** node_dupsp,
1203 vlib_main_t *** stat_vmsp);
Florin Corase86a8ed2018-01-05 03:20:25 -08001204
Ed Warnickecb9cada2015-12-08 15:45:58 -07001205/* Query node given name. */
Dave Barach9b8ffd92016-07-08 08:13:45 -04001206vlib_node_t *vlib_get_node_by_name (vlib_main_t * vm, u8 * name);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001207
1208/* Rename a node. */
Dave Barach9b8ffd92016-07-08 08:13:45 -04001209void vlib_node_rename (vlib_main_t * vm, u32 node_index, char *fmt, ...);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001210
1211/* Register new packet processing node. Nodes can be registered
1212 dynamically via this call or statically via the VLIB_REGISTER_NODE
1213 macro. */
1214u32 vlib_register_node (vlib_main_t * vm, vlib_node_registration_t * r);
1215
Damjan Mariona31698b2021-03-10 14:35:28 +01001216/* Register all node function variants */
1217void vlib_register_all_node_march_variants (vlib_main_t *vm);
1218
Ed Warnickecb9cada2015-12-08 15:45:58 -07001219/* Register all static nodes registered via VLIB_REGISTER_NODE. */
1220void vlib_register_all_static_nodes (vlib_main_t * vm);
1221
1222/* Start a process. */
1223void vlib_start_process (vlib_main_t * vm, uword process_index);
1224
1225/* Sync up runtime and main node stats. */
Dave Barach9b8ffd92016-07-08 08:13:45 -04001226void vlib_node_sync_stats (vlib_main_t * vm, vlib_node_t * n);
Arthur de Kerhor156158f2021-02-18 03:09:42 -08001227void vlib_node_runtime_sync_stats (vlib_main_t *vm, vlib_node_runtime_t *r,
1228 uword n_calls, uword n_vectors,
1229 uword n_clocks);
1230void vlib_node_runtime_sync_stats_node (vlib_node_t *n, vlib_node_runtime_t *r,
1231 uword n_calls, uword n_vectors,
1232 uword n_clocks);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001233
1234/* Node graph initialization function. */
Dave Barach9b8ffd92016-07-08 08:13:45 -04001235clib_error_t *vlib_node_main_init (vlib_main_t * vm);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001236
1237format_function_t format_vlib_node_graph;
1238format_function_t format_vlib_node_name;
1239format_function_t format_vlib_next_node_name;
1240format_function_t format_vlib_node_and_next;
1241format_function_t format_vlib_cpu_time;
1242format_function_t format_vlib_time;
1243/* Parse node name -> node index. */
1244unformat_function_t unformat_vlib_node;
1245
Dave Barach9b8ffd92016-07-08 08:13:45 -04001246always_inline void
1247vlib_node_increment_counter (vlib_main_t * vm, u32 node_index,
1248 u32 counter_index, u64 increment)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001249{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001250 vlib_node_t *n = vlib_get_node (vm, node_index);
1251 vlib_error_main_t *em = &vm->error_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001252 u32 node_counter_base_index = n->error_heap_index;
1253 em->counters[node_counter_base_index + counter_index] += increment;
1254}
1255
Dave Barach11965c72019-05-28 16:31:05 -04001256/** @brief Create a vlib process
1257 * @param vm &vlib_global_main
1258 * @param f the process node function
1259 * @param log2_n_stack_bytes size of the process stack, defaults to 16K
1260 * @return newly-create node index
1261 * @warning call only on the main thread. Barrier sync required
1262 */
1263u32 vlib_process_create (vlib_main_t * vm, char *name,
1264 vlib_node_function_t * f, u32 log2_n_stack_bytes);
1265
Damjan Marion8b60fb02020-11-27 20:15:17 +01001266always_inline int
1267vlib_node_set_dispatch_wrapper (vlib_main_t *vm, vlib_node_function_t *fn)
1268{
1269 if (fn && vm->dispatch_wrapper_fn)
1270 return 1;
1271 vm->dispatch_wrapper_fn = fn;
1272 return 0;
1273}
1274
Damjan Mariona31698b2021-03-10 14:35:28 +01001275int vlib_node_set_march_variant (vlib_main_t *vm, u32 node_index,
1276 clib_march_variant_type_t march_variant);
1277
1278vlib_node_function_t *
1279vlib_node_get_preferred_node_fn_variant (vlib_main_t *vm,
1280 vlib_node_fn_registration_t *regs);
1281
Damjan Marionefeea5b2022-02-10 15:01:03 +01001282/*
1283 * vlib_frame_bitmap functions
1284 */
1285
1286#define VLIB_FRAME_BITMAP_N_UWORDS \
1287 (((VLIB_FRAME_SIZE + uword_bits - 1) & ~(uword_bits - 1)) / uword_bits)
1288
1289typedef uword vlib_frame_bitmap_t[VLIB_FRAME_BITMAP_N_UWORDS];
1290
1291static_always_inline void
1292vlib_frame_bitmap_init (uword *bmp, u32 n_first_bits_set)
1293{
1294 u32 n_left = VLIB_FRAME_BITMAP_N_UWORDS;
1295 while (n_first_bits_set >= (sizeof (uword) * 8) && n_left)
1296 {
1297 bmp++[0] = ~0;
1298 n_first_bits_set -= sizeof (uword) * 8;
1299 n_left--;
1300 }
1301
1302 if (n_first_bits_set && n_left)
1303 {
1304 bmp++[0] = pow2_mask (n_first_bits_set);
1305 n_left--;
1306 }
1307
1308 while (n_left--)
1309 bmp++[0] = 0;
1310}
1311
1312static_always_inline void
1313vlib_frame_bitmap_clear (uword *bmp)
1314{
1315 u32 n_left = VLIB_FRAME_BITMAP_N_UWORDS;
1316 while (n_left--)
1317 bmp++[0] = 0;
1318}
1319
1320static_always_inline void
1321vlib_frame_bitmap_xor (uword *bmp, uword *bmp2)
1322{
1323 u32 n_left = VLIB_FRAME_BITMAP_N_UWORDS;
1324 while (n_left--)
1325 bmp++[0] ^= bmp2++[0];
1326}
1327
1328static_always_inline void
1329vlib_frame_bitmap_or (uword *bmp, uword *bmp2)
1330{
1331 u32 n_left = VLIB_FRAME_BITMAP_N_UWORDS;
1332 while (n_left--)
1333 bmp++[0] |= bmp2++[0];
1334}
1335
Damjan Marion218e4ec2022-03-15 16:16:55 +01001336static_always_inline void
1337vlib_frame_bitmap_and (uword *bmp, uword *bmp2)
1338{
1339 u32 n_left = VLIB_FRAME_BITMAP_N_UWORDS;
1340 while (n_left--)
1341 bmp++[0] &= bmp2++[0];
1342}
1343
Damjan Marionefeea5b2022-02-10 15:01:03 +01001344static_always_inline u32
1345vlib_frame_bitmap_count_set_bits (uword *bmp)
1346{
1347 u32 n_left = VLIB_FRAME_BITMAP_N_UWORDS;
1348 u32 count = 0;
1349 while (n_left--)
1350 count += count_set_bits (bmp++[0]);
1351 return count;
1352}
1353
1354static_always_inline int
1355vlib_frame_bitmap_find_first_set (uword *bmp)
1356{
1357 uword *b = bmp;
1358 while (b[0] == 0)
1359 {
1360 ASSERT (b - bmp < VLIB_FRAME_BITMAP_N_UWORDS);
1361 b++;
1362 }
1363
1364 return (b - bmp) * uword_bits + get_lowest_set_bit_index (b[0]);
1365}
1366
1367#define foreach_vlib_frame_bitmap_set_bit_index(i, v) \
1368 for (uword _off = 0; _off < ARRAY_LEN (v); _off++) \
1369 for (uword _tmp = \
1370 (v[_off]) + 0 * (uword) (i = _off * uword_bits + \
1371 get_lowest_set_bit_index (v[_off])); \
1372 _tmp; i = _off * uword_bits + get_lowest_set_bit_index ( \
1373 _tmp = clear_lowest_set_bit (_tmp)))
1374
Ed Warnickecb9cada2015-12-08 15:45:58 -07001375#endif /* included_vlib_node_funcs_h */
Dave Barach9b8ffd92016-07-08 08:13:45 -04001376
1377/*
1378 * fd.io coding-style-patch-verification: ON
1379 *
1380 * Local Variables:
1381 * eval: (c-set-style "gnu")
1382 * End:
1383 */