blob: b1d5c7bcacb2fa1bbc3a78e8eba17372b686ede4 [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
Ed Warnickecb9cada2015-12-08 15:45:58 -0700286/* Byte alignment for vector arguments. */
287#define VLIB_FRAME_VECTOR_ALIGN (1 << 4)
288
289always_inline u32
290vlib_frame_vector_byte_offset (u32 scalar_size)
291{
292 return round_pow2 (sizeof (vlib_frame_t) + scalar_size,
293 VLIB_FRAME_VECTOR_ALIGN);
294}
295
Dave Barach9770e202016-07-06 10:29:27 -0400296/** \brief Get pointer to frame vector data.
297 @param f vlib_frame_t pointer
298 @return pointer to first vector element in frame
299*/
Ed Warnickecb9cada2015-12-08 15:45:58 -0700300always_inline void *
301vlib_frame_vector_args (vlib_frame_t * f)
302{
303 return (void *) f + vlib_frame_vector_byte_offset (f->scalar_size);
304}
305
Dave Barach9770e202016-07-06 10:29:27 -0400306/** \brief Get pointer to frame scalar data.
307
Dave Barach9770e202016-07-06 10:29:27 -0400308 @param f vlib_frame_t pointer
309
310 @return arbitrary node scalar data
311
312 @sa vlib_frame_vector_args
313*/
Ed Warnickecb9cada2015-12-08 15:45:58 -0700314always_inline void *
Damjan Mariona3d59862018-11-10 10:23:00 +0100315vlib_frame_scalar_args (vlib_frame_t * f)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400316{
317 return vlib_frame_vector_args (f) - f->scalar_size;
318}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700319
320always_inline vlib_next_frame_t *
321vlib_node_runtime_get_next_frame (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400322 vlib_node_runtime_t * n, u32 next_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700323{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400324 vlib_node_main_t *nm = &vm->node_main;
325 vlib_next_frame_t *nf;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700326
327 ASSERT (next_index < n->n_next_nodes);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400328 nf = vec_elt_at_index (nm->next_frames, n->next_frame_index + next_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700329
330 if (CLIB_DEBUG > 0)
331 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400332 vlib_node_t *node, *next;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700333 node = vec_elt (nm->nodes, n->node_index);
334 next = vec_elt (nm->nodes, node->next_nodes[next_index]);
335 ASSERT (nf->node_runtime_index == next->runtime_index);
336 }
337
338 return nf;
339}
340
Dave Barach9770e202016-07-06 10:29:27 -0400341/** \brief Get pointer to frame by (@c node_index, @c next_index).
342
343 @warning This is not a function that you should call directly.
344 See @ref vlib_get_next_frame instead.
345
346 @param vm vlib_main_t pointer, varies by thread
347 @param node_index index of the node
348 @param next_index graph arc index
349
350 @return pointer to the requested vlib_next_frame_t
351
352 @sa vlib_get_next_frame
353*/
354
Ed Warnickecb9cada2015-12-08 15:45:58 -0700355always_inline vlib_next_frame_t *
Dave Barach9b8ffd92016-07-08 08:13:45 -0400356vlib_node_get_next_frame (vlib_main_t * vm, u32 node_index, u32 next_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700357{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400358 vlib_node_main_t *nm = &vm->node_main;
359 vlib_node_t *n;
360 vlib_node_runtime_t *r;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700361
362 n = vec_elt (nm->nodes, node_index);
363 r = vec_elt_at_index (nm->nodes_by_type[n->type], n->runtime_index);
364 return vlib_node_runtime_get_next_frame (vm, r, next_index);
365}
366
Dave Barach9b8ffd92016-07-08 08:13:45 -0400367vlib_frame_t *vlib_get_next_frame_internal (vlib_main_t * vm,
368 vlib_node_runtime_t * node,
369 u32 next_index,
370 u32 alloc_new_frame);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700371
372#define vlib_get_next_frame_macro(vm,node,next_index,vectors,n_vectors_left,alloc_new_frame) \
373do { \
374 vlib_frame_t * _f \
375 = vlib_get_next_frame_internal ((vm), (node), (next_index), \
376 (alloc_new_frame)); \
377 u32 _n = _f->n_vectors; \
378 (vectors) = vlib_frame_vector_args (_f) + _n * sizeof ((vectors)[0]); \
379 (n_vectors_left) = VLIB_FRAME_SIZE - _n; \
380} while (0)
381
Dave Barach9770e202016-07-06 10:29:27 -0400382
Dave Barach9b8ffd92016-07-08 08:13:45 -0400383/** \brief Get pointer to next frame vector data by
Dave Barach9770e202016-07-06 10:29:27 -0400384 (@c vlib_node_runtime_t, @c next_index).
385 Standard single/dual loop boilerplate element.
386 @attention This is a MACRO, with SIDE EFFECTS.
387
388 @param vm vlib_main_t pointer, varies by thread
389 @param node current node vlib_node_runtime_t pointer
390 @param next_index requested graph arc index
391
392 @return @c vectors -- pointer to next available vector slot
393 @return @c n_vectors_left -- number of vector slots available
394*/
Ed Warnickecb9cada2015-12-08 15:45:58 -0700395#define vlib_get_next_frame(vm,node,next_index,vectors,n_vectors_left) \
396 vlib_get_next_frame_macro (vm, node, next_index, \
397 vectors, n_vectors_left, \
398 /* alloc new frame */ 0)
399
400#define vlib_get_new_next_frame(vm,node,next_index,vectors,n_vectors_left) \
401 vlib_get_next_frame_macro (vm, node, next_index, \
402 vectors, n_vectors_left, \
403 /* alloc new frame */ 1)
404
Dave Barach9770e202016-07-06 10:29:27 -0400405/** \brief Release pointer to next frame vector data.
406 Standard single/dual loop boilerplate element.
407 @param vm vlib_main_t pointer, varies by thread
408 @param r current node vlib_node_runtime_t pointer
409 @param next_index graph arc index
410 @param n_packets_left number of slots still available in vector
411*/
Ed Warnickecb9cada2015-12-08 15:45:58 -0700412void
413vlib_put_next_frame (vlib_main_t * vm,
414 vlib_node_runtime_t * r,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400415 u32 next_index, u32 n_packets_left);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700416
417/* Combination get plus put. Returns vector argument just added. */
418#define vlib_set_next_frame(vm,node,next_index,v) \
419({ \
420 uword _n_left; \
421 vlib_get_next_frame ((vm), (node), (next_index), (v), _n_left); \
422 ASSERT (_n_left > 0); \
423 vlib_put_next_frame ((vm), (node), (next_index), _n_left - 1); \
424 (v); \
425})
426
427always_inline void
428vlib_set_next_frame_buffer (vlib_main_t * vm,
429 vlib_node_runtime_t * node,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400430 u32 next_index, u32 buffer_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700431{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400432 u32 *p;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700433 p = vlib_set_next_frame (vm, node, next_index, p);
434 p[0] = buffer_index;
435}
436
Dave Barach9b8ffd92016-07-08 08:13:45 -0400437vlib_frame_t *vlib_get_frame_to_node (vlib_main_t * vm, u32 to_node_index);
438void vlib_put_frame_to_node (vlib_main_t * vm, u32 to_node_index,
439 vlib_frame_t * f);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700440
Ed Warnickecb9cada2015-12-08 15:45:58 -0700441always_inline uword
442vlib_in_process_context (vlib_main_t * vm)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400443{
444 return vm->node_main.current_process_index != ~0;
445}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700446
Florin Coras66b11312017-07-31 17:18:03 -0700447always_inline vlib_process_t *
448vlib_get_current_process (vlib_main_t * vm)
449{
450 vlib_node_main_t *nm = &vm->node_main;
451 if (vlib_in_process_context (vm))
452 return vec_elt (nm->processes, nm->current_process_index);
453 return 0;
454}
455
Ed Warnickecb9cada2015-12-08 15:45:58 -0700456always_inline uword
457vlib_current_process (vlib_main_t * vm)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400458{
459 return vlib_get_current_process (vm)->node_runtime.node_index;
460}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700461
Damjan Marion698eeb12020-09-11 14:11:11 +0200462always_inline u32
463vlib_get_current_process_node_index (vlib_main_t * vm)
464{
465 vlib_process_t *process = vlib_get_current_process (vm);
466 return process->node_runtime.node_index;
467}
468
Dave Barach5c20a012017-06-13 08:48:31 -0400469/** Returns TRUE if a process suspend time is less than 10us
Dave Barach2ab470a2016-08-10 18:38:36 -0400470 @param dt - remaining poll time in seconds
Dave Barach5c20a012017-06-13 08:48:31 -0400471 @returns 1 if dt < 10e-6, 0 otherwise
Dave Barach2ab470a2016-08-10 18:38:36 -0400472*/
Ed Warnickecb9cada2015-12-08 15:45:58 -0700473always_inline uword
474vlib_process_suspend_time_is_zero (f64 dt)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400475{
Dave Barach5c20a012017-06-13 08:48:31 -0400476 return dt < 10e-6;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400477}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700478
Dave Barach2ab470a2016-08-10 18:38:36 -0400479/** Suspend a vlib cooperative multi-tasking thread for a period of time
480 @param vm - vlib_main_t *
481 @param dt - suspend interval in seconds
482 @returns VLIB_PROCESS_RESUME_LONGJMP_RESUME, routinely ignored
483*/
484
Ed Warnickecb9cada2015-12-08 15:45:58 -0700485always_inline uword
486vlib_process_suspend (vlib_main_t * vm, f64 dt)
487{
488 uword r;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400489 vlib_node_main_t *nm = &vm->node_main;
490 vlib_process_t *p = vec_elt (nm->processes, nm->current_process_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700491
492 if (vlib_process_suspend_time_is_zero (dt))
493 return VLIB_PROCESS_RESUME_LONGJMP_RESUME;
494
495 p->flags |= VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_CLOCK;
496 r = clib_setjmp (&p->resume_longjmp, VLIB_PROCESS_RESUME_LONGJMP_SUSPEND);
497 if (r == VLIB_PROCESS_RESUME_LONGJMP_SUSPEND)
498 {
Dave Barach5c20a012017-06-13 08:48:31 -0400499 /* expiration time in 10us ticks */
500 p->resume_clock_interval = dt * 1e5;
Damjan Marioncea46522020-05-21 16:47:05 +0200501 vlib_process_start_switch_stack (vm, 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700502 clib_longjmp (&p->return_longjmp, VLIB_PROCESS_RETURN_LONGJMP_SUSPEND);
503 }
Damjan Marioncea46522020-05-21 16:47:05 +0200504 else
505 vlib_process_finish_switch_stack (vm);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700506
507 return r;
508}
509
510always_inline void
Dave Barach9b8ffd92016-07-08 08:13:45 -0400511vlib_process_free_event_type (vlib_process_t * p, uword t,
512 uword is_one_time_event)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700513{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400514 ASSERT (!pool_is_free_index (p->event_type_pool, t));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700515 pool_put_index (p->event_type_pool, t);
516 if (is_one_time_event)
517 p->one_time_event_type_bitmap =
518 clib_bitmap_andnoti (p->one_time_event_type_bitmap, t);
519}
520
521always_inline void
522vlib_process_maybe_free_event_type (vlib_process_t * p, uword t)
523{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400524 ASSERT (!pool_is_free_index (p->event_type_pool, t));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700525 if (clib_bitmap_get (p->one_time_event_type_bitmap, t))
526 vlib_process_free_event_type (p, t, /* is_one_time_event */ 1);
527}
528
529always_inline void *
Dave Barach9b8ffd92016-07-08 08:13:45 -0400530vlib_process_get_event_data (vlib_main_t * vm,
531 uword * return_event_type_opaque)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700532{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400533 vlib_node_main_t *nm = &vm->node_main;
534 vlib_process_t *p;
535 vlib_process_event_type_t *et;
Gabriel Ganne71d73fe2017-02-04 10:51:04 +0100536 uword t;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400537 void *event_data_vector;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700538
539 p = vec_elt (nm->processes, nm->current_process_index);
540
541 /* Find first type with events ready.
542 Return invalid type when there's nothing there. */
543 t = clib_bitmap_first_set (p->non_empty_event_type_bitmap);
544 if (t == ~0)
545 return 0;
546
Dave Barach9b8ffd92016-07-08 08:13:45 -0400547 p->non_empty_event_type_bitmap =
548 clib_bitmap_andnoti (p->non_empty_event_type_bitmap, t);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700549
Gabriel Ganne71d73fe2017-02-04 10:51:04 +0100550 ASSERT (_vec_len (p->pending_event_data_by_type_index[t]) > 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700551 event_data_vector = p->pending_event_data_by_type_index[t];
552 p->pending_event_data_by_type_index[t] = 0;
553
554 et = pool_elt_at_index (p->event_type_pool, t);
555
556 /* Return user's opaque value and possibly index. */
557 *return_event_type_opaque = et->opaque;
558
559 vlib_process_maybe_free_event_type (p, t);
560
561 return event_data_vector;
562}
563
564/* Return event data vector for later reuse. We reuse event data to avoid
565 repeatedly allocating event vectors in cases where we care about speed. */
566always_inline void
Dave Barach9b8ffd92016-07-08 08:13:45 -0400567vlib_process_put_event_data (vlib_main_t * vm, void *event_data)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700568{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400569 vlib_node_main_t *nm = &vm->node_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700570 vec_add1 (nm->recycled_event_data_vectors, event_data);
571}
572
Dave Barach2ab470a2016-08-10 18:38:36 -0400573/** Return the first event type which has occurred and a vector of per-event
574 data of that type, or a timeout indication
575
576 @param vm - vlib_main_t pointer
577 @param data_vector - pointer to a (uword *) vector to receive event data
578 @returns either an event type and a vector of per-event instance data,
579 or ~0 to indicate a timeout.
580*/
581
Ed Warnickecb9cada2015-12-08 15:45:58 -0700582always_inline uword
583vlib_process_get_events (vlib_main_t * vm, uword ** data_vector)
584{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400585 vlib_node_main_t *nm = &vm->node_main;
586 vlib_process_t *p;
587 vlib_process_event_type_t *et;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700588 uword r, t, l;
589
590 p = vec_elt (nm->processes, nm->current_process_index);
591
592 /* Find first type with events ready.
593 Return invalid type when there's nothing there. */
594 t = clib_bitmap_first_set (p->non_empty_event_type_bitmap);
595 if (t == ~0)
596 return t;
597
Dave Barach9b8ffd92016-07-08 08:13:45 -0400598 p->non_empty_event_type_bitmap =
599 clib_bitmap_andnoti (p->non_empty_event_type_bitmap, t);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700600
601 l = _vec_len (p->pending_event_data_by_type_index[t]);
602 if (data_vector)
603 vec_add (*data_vector, p->pending_event_data_by_type_index[t], l);
604 _vec_len (p->pending_event_data_by_type_index[t]) = 0;
605
606 et = pool_elt_at_index (p->event_type_pool, t);
607
608 /* Return user's opaque value. */
609 r = et->opaque;
610
611 vlib_process_maybe_free_event_type (p, t);
612
613 return r;
614}
615
616always_inline uword
Dave Barach9b8ffd92016-07-08 08:13:45 -0400617vlib_process_get_events_helper (vlib_process_t * p, uword t,
618 uword ** data_vector)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700619{
620 uword l;
621
Dave Barach9b8ffd92016-07-08 08:13:45 -0400622 p->non_empty_event_type_bitmap =
623 clib_bitmap_andnoti (p->non_empty_event_type_bitmap, t);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700624
625 l = _vec_len (p->pending_event_data_by_type_index[t]);
626 if (data_vector)
627 vec_add (*data_vector, p->pending_event_data_by_type_index[t], l);
628 _vec_len (p->pending_event_data_by_type_index[t]) = 0;
629
630 vlib_process_maybe_free_event_type (p, t);
631
632 return l;
633}
634
635/* As above but query as specified type of event. Returns number of
636 events found. */
637always_inline uword
638vlib_process_get_events_with_type (vlib_main_t * vm, uword ** data_vector,
639 uword with_type_opaque)
640{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400641 vlib_node_main_t *nm = &vm->node_main;
642 vlib_process_t *p;
643 uword t, *h;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700644
645 p = vec_elt (nm->processes, nm->current_process_index);
646 h = hash_get (p->event_type_index_by_type_opaque, with_type_opaque);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400647 if (!h)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700648 /* This can happen when an event has not yet been
649 signaled with given opaque type. */
650 return 0;
651
652 t = h[0];
Dave Barach9b8ffd92016-07-08 08:13:45 -0400653 if (!clib_bitmap_get (p->non_empty_event_type_bitmap, t))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700654 return 0;
655
656 return vlib_process_get_events_helper (p, t, data_vector);
657}
658
659always_inline uword *
660vlib_process_wait_for_event (vlib_main_t * vm)
661{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400662 vlib_node_main_t *nm = &vm->node_main;
663 vlib_process_t *p;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700664 uword r;
665
666 p = vec_elt (nm->processes, nm->current_process_index);
667 if (clib_bitmap_is_zero (p->non_empty_event_type_bitmap))
668 {
669 p->flags |= VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_EVENT;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400670 r =
671 clib_setjmp (&p->resume_longjmp, VLIB_PROCESS_RESUME_LONGJMP_SUSPEND);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700672 if (r == VLIB_PROCESS_RESUME_LONGJMP_SUSPEND)
Damjan Marioncea46522020-05-21 16:47:05 +0200673 {
674 vlib_process_start_switch_stack (vm, 0);
675 clib_longjmp (&p->return_longjmp,
676 VLIB_PROCESS_RETURN_LONGJMP_SUSPEND);
677 }
678 else
679 vlib_process_finish_switch_stack (vm);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700680 }
681
682 return p->non_empty_event_type_bitmap;
683}
684
685always_inline uword
686vlib_process_wait_for_one_time_event (vlib_main_t * vm,
687 uword ** data_vector,
688 uword with_type_index)
689{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400690 vlib_node_main_t *nm = &vm->node_main;
691 vlib_process_t *p;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700692 uword r;
693
694 p = vec_elt (nm->processes, nm->current_process_index);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400695 ASSERT (!pool_is_free_index (p->event_type_pool, with_type_index));
696 while (!clib_bitmap_get (p->non_empty_event_type_bitmap, with_type_index))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700697 {
698 p->flags |= VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_EVENT;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400699 r =
700 clib_setjmp (&p->resume_longjmp, VLIB_PROCESS_RESUME_LONGJMP_SUSPEND);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700701 if (r == VLIB_PROCESS_RESUME_LONGJMP_SUSPEND)
Damjan Marioncea46522020-05-21 16:47:05 +0200702 {
703 vlib_process_start_switch_stack (vm, 0);
704 clib_longjmp (&p->return_longjmp,
705 VLIB_PROCESS_RETURN_LONGJMP_SUSPEND);
706 }
707 else
708 vlib_process_finish_switch_stack (vm);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700709 }
710
711 return vlib_process_get_events_helper (p, with_type_index, data_vector);
712}
713
714always_inline uword
715vlib_process_wait_for_event_with_type (vlib_main_t * vm,
716 uword ** data_vector,
717 uword with_type_opaque)
718{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400719 vlib_node_main_t *nm = &vm->node_main;
720 vlib_process_t *p;
721 uword r, *h;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700722
723 p = vec_elt (nm->processes, nm->current_process_index);
724 h = hash_get (p->event_type_index_by_type_opaque, with_type_opaque);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400725 while (!h || !clib_bitmap_get (p->non_empty_event_type_bitmap, h[0]))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700726 {
727 p->flags |= VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_EVENT;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400728 r =
729 clib_setjmp (&p->resume_longjmp, VLIB_PROCESS_RESUME_LONGJMP_SUSPEND);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700730 if (r == VLIB_PROCESS_RESUME_LONGJMP_SUSPEND)
Damjan Marioncea46522020-05-21 16:47:05 +0200731 {
732 vlib_process_start_switch_stack (vm, 0);
733 clib_longjmp (&p->return_longjmp,
734 VLIB_PROCESS_RETURN_LONGJMP_SUSPEND);
735 }
736 else
737 vlib_process_finish_switch_stack (vm);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700738
739 /* See if unknown event type has been signaled now. */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400740 if (!h)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700741 h = hash_get (p->event_type_index_by_type_opaque, with_type_opaque);
742 }
743
744 return vlib_process_get_events_helper (p, h[0], data_vector);
745}
746
Dave Barach2ab470a2016-08-10 18:38:36 -0400747/** Suspend a cooperative multi-tasking thread
748 Waits for an event, or for the indicated number of seconds to elapse
749 @param vm - vlib_main_t pointer
Damjan Marion607de1a2016-08-16 22:53:54 +0200750 @param dt - timeout, in seconds.
Dave Barach2ab470a2016-08-10 18:38:36 -0400751 @returns the remaining time interval
752*/
753
Ed Warnickecb9cada2015-12-08 15:45:58 -0700754always_inline f64
755vlib_process_wait_for_event_or_clock (vlib_main_t * vm, f64 dt)
756{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400757 vlib_node_main_t *nm = &vm->node_main;
758 vlib_process_t *p;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700759 f64 wakeup_time;
760 uword r;
761
762 p = vec_elt (nm->processes, nm->current_process_index);
763
764 if (vlib_process_suspend_time_is_zero (dt)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400765 || !clib_bitmap_is_zero (p->non_empty_event_type_bitmap))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700766 return dt;
767
768 wakeup_time = vlib_time_now (vm) + dt;
769
770 /* Suspend waiting for both clock and event to occur. */
771 p->flags |= (VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_EVENT
772 | VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_CLOCK);
773
774 r = clib_setjmp (&p->resume_longjmp, VLIB_PROCESS_RESUME_LONGJMP_SUSPEND);
775 if (r == VLIB_PROCESS_RESUME_LONGJMP_SUSPEND)
776 {
Dave Barach5c20a012017-06-13 08:48:31 -0400777 p->resume_clock_interval = dt * 1e5;
Damjan Marioncea46522020-05-21 16:47:05 +0200778 vlib_process_start_switch_stack (vm, 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700779 clib_longjmp (&p->return_longjmp, VLIB_PROCESS_RETURN_LONGJMP_SUSPEND);
780 }
Damjan Marioncea46522020-05-21 16:47:05 +0200781 else
782 vlib_process_finish_switch_stack (vm);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700783
784 /* Return amount of time still left to sleep.
785 If <= 0 then we've been waken up by the clock (and not an event). */
786 return wakeup_time - vlib_time_now (vm);
787}
788
789always_inline vlib_process_event_type_t *
790vlib_process_new_event_type (vlib_process_t * p, uword with_type_opaque)
791{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400792 vlib_process_event_type_t *et;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700793 pool_get (p->event_type_pool, et);
794 et->opaque = with_type_opaque;
795 return et;
796}
797
798always_inline uword
Dave Barach9b8ffd92016-07-08 08:13:45 -0400799vlib_process_create_one_time_event (vlib_main_t * vm, uword node_index,
800 uword with_type_opaque)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700801{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400802 vlib_node_main_t *nm = &vm->node_main;
803 vlib_node_t *n = vlib_get_node (vm, node_index);
804 vlib_process_t *p = vec_elt (nm->processes, n->runtime_index);
805 vlib_process_event_type_t *et;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700806 uword t;
807
808 et = vlib_process_new_event_type (p, with_type_opaque);
809 t = et - p->event_type_pool;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400810 p->one_time_event_type_bitmap =
811 clib_bitmap_ori (p->one_time_event_type_bitmap, t);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700812 return t;
813}
814
815always_inline void
Dave Barach9b8ffd92016-07-08 08:13:45 -0400816vlib_process_delete_one_time_event (vlib_main_t * vm, uword node_index,
817 uword t)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700818{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400819 vlib_node_main_t *nm = &vm->node_main;
820 vlib_node_t *n = vlib_get_node (vm, node_index);
821 vlib_process_t *p = vec_elt (nm->processes, n->runtime_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700822
823 ASSERT (clib_bitmap_get (p->one_time_event_type_bitmap, t));
824 vlib_process_free_event_type (p, t, /* is_one_time_event */ 1);
825}
826
827always_inline void *
828vlib_process_signal_event_helper (vlib_node_main_t * nm,
829 vlib_node_t * n,
830 vlib_process_t * p,
831 uword t,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400832 uword n_data_elts, uword n_data_elt_bytes)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700833{
834 uword p_flags, add_to_pending, delete_from_wheel;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400835 void *data_to_be_written_by_caller;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700836
Dave Barach1403fcd2018-02-05 09:45:43 -0500837 ASSERT (n->type == VLIB_NODE_TYPE_PROCESS);
838
Dave Barach9b8ffd92016-07-08 08:13:45 -0400839 ASSERT (!pool_is_free_index (p->event_type_pool, t));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700840
841 vec_validate (p->pending_event_data_by_type_index, t);
842
843 /* Resize data vector and return caller's data to be written. */
844 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400845 void *data_vec = p->pending_event_data_by_type_index[t];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700846 uword l;
847
Dave Barach9b8ffd92016-07-08 08:13:45 -0400848 if (!data_vec && vec_len (nm->recycled_event_data_vectors))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700849 {
850 data_vec = vec_pop (nm->recycled_event_data_vectors);
fangtong33b18d42021-07-24 14:55:02 +0800851 vec_reset_length (data_vec);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700852 }
853
854 l = vec_len (data_vec);
855
856 data_vec = _vec_resize (data_vec,
857 /* length_increment */ n_data_elts,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400858 /* total size after increment */
859 (l + n_data_elts) * n_data_elt_bytes,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700860 /* header_bytes */ 0, /* data_align */ 0);
861
862 p->pending_event_data_by_type_index[t] = data_vec;
863 data_to_be_written_by_caller = data_vec + l * n_data_elt_bytes;
864 }
865
Dave Barach9b8ffd92016-07-08 08:13:45 -0400866 p->non_empty_event_type_bitmap =
867 clib_bitmap_ori (p->non_empty_event_type_bitmap, t);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700868
869 p_flags = p->flags;
870
871 /* Event was already signalled? */
872 add_to_pending = (p_flags & VLIB_PROCESS_RESUME_PENDING) == 0;
873
874 /* Process will resume when suspend time elapses? */
875 delete_from_wheel = 0;
876 if (p_flags & VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_CLOCK)
877 {
878 /* Waiting for both event and clock? */
879 if (p_flags & VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_EVENT)
Florin Coras40f92462018-08-01 16:25:45 -0700880 {
881 if (!TW (tw_timer_handle_is_free)
882 ((TWT (tw_timer_wheel) *) nm->timing_wheel,
883 p->stop_timer_handle))
884 delete_from_wheel = 1;
885 else
886 /* timer just popped so process should already be on the list */
887 add_to_pending = 0;
888 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700889 else
890 /* Waiting only for clock. Event will be queue and may be
891 handled when timer expires. */
892 add_to_pending = 0;
893 }
894
895 /* Never add current process to pending vector since current process is
896 already running. */
897 add_to_pending &= nm->current_process_index != n->runtime_index;
898
899 if (add_to_pending)
900 {
901 u32 x = vlib_timing_wheel_data_set_suspended_process (n->runtime_index);
902 p->flags = p_flags | VLIB_PROCESS_RESUME_PENDING;
903 vec_add1 (nm->data_from_advancing_timing_wheel, x);
904 if (delete_from_wheel)
Dave Barach5c20a012017-06-13 08:48:31 -0400905 TW (tw_timer_stop) ((TWT (tw_timer_wheel) *) nm->timing_wheel,
906 p->stop_timer_handle);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700907 }
908
909 return data_to_be_written_by_caller;
910}
911
912always_inline void *
913vlib_process_signal_event_data (vlib_main_t * vm,
914 uword node_index,
915 uword type_opaque,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400916 uword n_data_elts, uword n_data_elt_bytes)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700917{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400918 vlib_node_main_t *nm = &vm->node_main;
919 vlib_node_t *n = vlib_get_node (vm, node_index);
920 vlib_process_t *p = vec_elt (nm->processes, n->runtime_index);
921 uword *h, t;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700922
John Lo609707e2017-09-19 21:45:10 -0400923 /* Must be in main thread */
924 ASSERT (vlib_get_thread_index () == 0);
925
Ed Warnickecb9cada2015-12-08 15:45:58 -0700926 h = hash_get (p->event_type_index_by_type_opaque, type_opaque);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400927 if (!h)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700928 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400929 vlib_process_event_type_t *et =
930 vlib_process_new_event_type (p, type_opaque);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700931 t = et - p->event_type_pool;
932 hash_set (p->event_type_index_by_type_opaque, type_opaque, t);
933 }
934 else
935 t = h[0];
936
Dave Barach9b8ffd92016-07-08 08:13:45 -0400937 return vlib_process_signal_event_helper (nm, n, p, t, n_data_elts,
938 n_data_elt_bytes);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700939}
940
941always_inline void *
942vlib_process_signal_event_at_time (vlib_main_t * vm,
943 f64 dt,
944 uword node_index,
945 uword type_opaque,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400946 uword n_data_elts, uword n_data_elt_bytes)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700947{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400948 vlib_node_main_t *nm = &vm->node_main;
949 vlib_node_t *n = vlib_get_node (vm, node_index);
950 vlib_process_t *p = vec_elt (nm->processes, n->runtime_index);
951 uword *h, t;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700952
953 h = hash_get (p->event_type_index_by_type_opaque, type_opaque);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400954 if (!h)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700955 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400956 vlib_process_event_type_t *et =
957 vlib_process_new_event_type (p, type_opaque);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700958 t = et - p->event_type_pool;
959 hash_set (p->event_type_index_by_type_opaque, type_opaque, t);
960 }
961 else
962 t = h[0];
963
964 if (vlib_process_suspend_time_is_zero (dt))
Dave Barach9b8ffd92016-07-08 08:13:45 -0400965 return vlib_process_signal_event_helper (nm, n, p, t, n_data_elts,
966 n_data_elt_bytes);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700967 else
968 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400969 vlib_signal_timed_event_data_t *te;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700970
971 pool_get_aligned (nm->signal_timed_event_data_pool, te, sizeof (te[0]));
972
973 te->n_data_elts = n_data_elts;
974 te->n_data_elt_bytes = n_data_elt_bytes;
975 te->n_data_bytes = n_data_elts * n_data_elt_bytes;
976
977 /* Assert that structure fields are big enough. */
978 ASSERT (te->n_data_elts == n_data_elts);
979 ASSERT (te->n_data_elt_bytes == n_data_elt_bytes);
980 ASSERT (te->n_data_bytes == n_data_elts * n_data_elt_bytes);
981
982 te->process_node_index = n->runtime_index;
983 te->event_type_index = t;
984
Dave Barach5c20a012017-06-13 08:48:31 -0400985 p->stop_timer_handle =
986 TW (tw_timer_start) ((TWT (tw_timer_wheel) *) nm->timing_wheel,
987 vlib_timing_wheel_data_set_timed_event
988 (te - nm->signal_timed_event_data_pool),
989 0 /* timer_id */ ,
990 (vlib_time_now (vm) + dt) * 1e5);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700991
992 /* Inline data big enough to hold event? */
993 if (te->n_data_bytes < sizeof (te->inline_event_data))
994 return te->inline_event_data;
995 else
996 {
997 te->event_data_as_vector = 0;
998 vec_resize (te->event_data_as_vector, te->n_data_bytes);
999 return te->event_data_as_vector;
1000 }
1001 }
1002}
1003
1004always_inline void *
1005vlib_process_signal_one_time_event_data (vlib_main_t * vm,
1006 uword node_index,
1007 uword type_index,
1008 uword n_data_elts,
1009 uword n_data_elt_bytes)
1010{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001011 vlib_node_main_t *nm = &vm->node_main;
1012 vlib_node_t *n = vlib_get_node (vm, node_index);
1013 vlib_process_t *p = vec_elt (nm->processes, n->runtime_index);
1014 return vlib_process_signal_event_helper (nm, n, p, type_index, n_data_elts,
1015 n_data_elt_bytes);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001016}
1017
1018always_inline void
1019vlib_process_signal_event (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -04001020 uword node_index, uword type_opaque, uword data)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001021{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001022 uword *d = vlib_process_signal_event_data (vm, node_index, type_opaque,
1023 1 /* elts */ , sizeof (uword));
Ed Warnickecb9cada2015-12-08 15:45:58 -07001024 d[0] = data;
1025}
1026
1027always_inline void
1028vlib_process_signal_event_pointer (vlib_main_t * vm,
1029 uword node_index,
Dave Barach9b8ffd92016-07-08 08:13:45 -04001030 uword type_opaque, void *data)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001031{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001032 void **d = vlib_process_signal_event_data (vm, node_index, type_opaque,
1033 1 /* elts */ , sizeof (data));
Ed Warnickecb9cada2015-12-08 15:45:58 -07001034 d[0] = data;
1035}
1036
Dave Barach69128d02017-09-26 10:54:34 -04001037/**
1038 * Signal event to process from any thread.
1039 *
1040 * When in doubt, use this.
1041 */
1042always_inline void
1043vlib_process_signal_event_mt (vlib_main_t * vm,
1044 uword node_index, uword type_opaque, uword data)
1045{
1046 if (vlib_get_thread_index () != 0)
1047 {
1048 vlib_process_signal_event_mt_args_t args = {
1049 .node_index = node_index,
1050 .type_opaque = type_opaque,
1051 .data = data,
1052 };
1053 vlib_rpc_call_main_thread (vlib_process_signal_event_mt_helper,
1054 (u8 *) & args, sizeof (args));
1055 }
1056 else
1057 vlib_process_signal_event (vm, node_index, type_opaque, data);
1058}
1059
Ed Warnickecb9cada2015-12-08 15:45:58 -07001060always_inline void
1061vlib_process_signal_one_time_event (vlib_main_t * vm,
1062 uword node_index,
Dave Barach9b8ffd92016-07-08 08:13:45 -04001063 uword type_index, uword data)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001064{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001065 uword *d =
1066 vlib_process_signal_one_time_event_data (vm, node_index, type_index,
1067 1 /* elts */ , sizeof (uword));
Ed Warnickecb9cada2015-12-08 15:45:58 -07001068 d[0] = data;
1069}
1070
1071always_inline void
Dave Barach9b8ffd92016-07-08 08:13:45 -04001072vlib_signal_one_time_waiting_process (vlib_main_t * vm,
1073 vlib_one_time_waiting_process_t * p)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001074{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001075 vlib_process_signal_one_time_event (vm, p->node_index, p->one_time_event,
1076 /* data */ ~0);
Dave Barachb7b92992018-10-17 10:38:51 -04001077 clib_memset (p, ~0, sizeof (p[0]));
Ed Warnickecb9cada2015-12-08 15:45:58 -07001078}
1079
1080always_inline void
1081vlib_signal_one_time_waiting_process_vector (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -04001082 vlib_one_time_waiting_process_t
1083 ** wps)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001084{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001085 vlib_one_time_waiting_process_t *wp;
1086 vec_foreach (wp, *wps) vlib_signal_one_time_waiting_process (vm, wp);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001087 vec_free (*wps);
1088}
1089
1090always_inline void
Dave Barach9b8ffd92016-07-08 08:13:45 -04001091vlib_current_process_wait_for_one_time_event (vlib_main_t * vm,
1092 vlib_one_time_waiting_process_t
1093 * p)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001094{
1095 p->node_index = vlib_current_process (vm);
Dave Barach9b8ffd92016-07-08 08:13:45 -04001096 p->one_time_event = vlib_process_create_one_time_event (vm, p->node_index, /* type opaque */
1097 ~0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001098 vlib_process_wait_for_one_time_event (vm,
1099 /* don't care about data */ 0,
1100 p->one_time_event);
1101}
1102
1103always_inline void
1104vlib_current_process_wait_for_one_time_event_vector (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -04001105 vlib_one_time_waiting_process_t
1106 ** wps)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001107{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001108 vlib_one_time_waiting_process_t *wp;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001109 vec_add2 (*wps, wp, 1);
1110 vlib_current_process_wait_for_one_time_event (vm, wp);
1111}
1112
1113always_inline u32
1114vlib_node_runtime_update_main_loop_vector_stats (vlib_main_t * vm,
1115 vlib_node_runtime_t * node,
1116 uword n_vectors)
1117{
1118 u32 i, d, vi0, vi1;
1119 u32 i0, i1;
1120
1121 ASSERT (is_pow2 (ARRAY_LEN (node->main_loop_vector_stats)));
1122 i = ((vm->main_loop_count >> VLIB_LOG2_MAIN_LOOPS_PER_STATS_UPDATE)
1123 & (ARRAY_LEN (node->main_loop_vector_stats) - 1));
1124 i0 = i ^ 0;
1125 i1 = i ^ 1;
1126 d = ((vm->main_loop_count >> VLIB_LOG2_MAIN_LOOPS_PER_STATS_UPDATE)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001127 -
1128 (node->main_loop_count_last_dispatch >>
1129 VLIB_LOG2_MAIN_LOOPS_PER_STATS_UPDATE));
Ed Warnickecb9cada2015-12-08 15:45:58 -07001130 vi0 = node->main_loop_vector_stats[i0];
1131 vi1 = node->main_loop_vector_stats[i1];
1132 vi0 = d == 0 ? vi0 : 0;
1133 vi1 = d <= 1 ? vi1 : 0;
1134 vi0 += n_vectors;
1135 node->main_loop_vector_stats[i0] = vi0;
1136 node->main_loop_vector_stats[i1] = vi1;
1137 node->main_loop_count_last_dispatch = vm->main_loop_count;
1138 /* Return previous counter. */
1139 return node->main_loop_vector_stats[i1];
1140}
1141
1142always_inline f64
1143vlib_node_vectors_per_main_loop_as_float (vlib_main_t * vm, u32 node_index)
1144{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001145 vlib_node_runtime_t *rt = vlib_node_get_runtime (vm, node_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001146 u32 v;
1147
Dave Barach9b8ffd92016-07-08 08:13:45 -04001148 v = vlib_node_runtime_update_main_loop_vector_stats (vm, rt, /* n_vectors */
1149 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001150 return (f64) v / (1 << VLIB_LOG2_MAIN_LOOPS_PER_STATS_UPDATE);
1151}
1152
1153always_inline u32
1154vlib_node_vectors_per_main_loop_as_integer (vlib_main_t * vm, u32 node_index)
1155{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001156 vlib_node_runtime_t *rt = vlib_node_get_runtime (vm, node_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001157 u32 v;
1158
Dave Barach9b8ffd92016-07-08 08:13:45 -04001159 v = vlib_node_runtime_update_main_loop_vector_stats (vm, rt, /* n_vectors */
1160 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001161 return v >> VLIB_LOG2_MAIN_LOOPS_PER_STATS_UPDATE;
1162}
1163
1164void
Dave Barach9b8ffd92016-07-08 08:13:45 -04001165vlib_frame_free (vlib_main_t * vm, vlib_node_runtime_t * r, vlib_frame_t * f);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001166
Neale Rannsbb620d72017-06-29 00:19:08 -07001167/* Return the edge index if present, ~0 otherwise */
1168uword vlib_node_get_next (vlib_main_t * vm, uword node, uword next_node);
1169
Ed Warnickecb9cada2015-12-08 15:45:58 -07001170/* Add next node to given node in given slot. */
1171uword
1172vlib_node_add_next_with_slot (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -04001173 uword node, uword next_node, uword slot);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001174
1175/* As above but adds to end of node's next vector. */
1176always_inline uword
1177vlib_node_add_next (vlib_main_t * vm, uword node, uword next_node)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001178{
1179 return vlib_node_add_next_with_slot (vm, node, next_node, ~0);
1180}
Ed Warnickecb9cada2015-12-08 15:45:58 -07001181
1182/* Add next node to given node in given slot. */
1183uword
1184vlib_node_add_named_next_with_slot (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -04001185 uword node, char *next_name, uword slot);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001186
1187/* As above but adds to end of node's next vector. */
1188always_inline uword
Dave Barach9b8ffd92016-07-08 08:13:45 -04001189vlib_node_add_named_next (vlib_main_t * vm, uword node, char *name)
1190{
1191 return vlib_node_add_named_next_with_slot (vm, node, name, ~0);
1192}
Ed Warnickecb9cada2015-12-08 15:45:58 -07001193
Florin Corase86a8ed2018-01-05 03:20:25 -08001194/**
1195 * Get list of nodes
1196 */
Dave Barach1ddbc012018-06-13 09:26:05 -04001197void
1198vlib_node_get_nodes (vlib_main_t * vm, u32 max_threads, int include_stats,
1199 int barrier_sync, vlib_node_t **** node_dupsp,
1200 vlib_main_t *** stat_vmsp);
Florin Corase86a8ed2018-01-05 03:20:25 -08001201
Ed Warnickecb9cada2015-12-08 15:45:58 -07001202/* Query node given name. */
Dave Barach9b8ffd92016-07-08 08:13:45 -04001203vlib_node_t *vlib_get_node_by_name (vlib_main_t * vm, u8 * name);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001204
1205/* Rename a node. */
Dave Barach9b8ffd92016-07-08 08:13:45 -04001206void vlib_node_rename (vlib_main_t * vm, u32 node_index, char *fmt, ...);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001207
1208/* Register new packet processing node. Nodes can be registered
1209 dynamically via this call or statically via the VLIB_REGISTER_NODE
1210 macro. */
1211u32 vlib_register_node (vlib_main_t * vm, vlib_node_registration_t * r);
1212
Damjan Mariona31698b2021-03-10 14:35:28 +01001213/* Register all node function variants */
1214void vlib_register_all_node_march_variants (vlib_main_t *vm);
1215
Ed Warnickecb9cada2015-12-08 15:45:58 -07001216/* Register all static nodes registered via VLIB_REGISTER_NODE. */
1217void vlib_register_all_static_nodes (vlib_main_t * vm);
1218
1219/* Start a process. */
1220void vlib_start_process (vlib_main_t * vm, uword process_index);
1221
1222/* Sync up runtime and main node stats. */
Dave Barach9b8ffd92016-07-08 08:13:45 -04001223void vlib_node_sync_stats (vlib_main_t * vm, vlib_node_t * n);
Arthur de Kerhor156158f2021-02-18 03:09:42 -08001224void vlib_node_runtime_sync_stats (vlib_main_t *vm, vlib_node_runtime_t *r,
1225 uword n_calls, uword n_vectors,
1226 uword n_clocks);
1227void vlib_node_runtime_sync_stats_node (vlib_node_t *n, vlib_node_runtime_t *r,
1228 uword n_calls, uword n_vectors,
1229 uword n_clocks);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001230
1231/* Node graph initialization function. */
Dave Barach9b8ffd92016-07-08 08:13:45 -04001232clib_error_t *vlib_node_main_init (vlib_main_t * vm);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001233
1234format_function_t format_vlib_node_graph;
1235format_function_t format_vlib_node_name;
1236format_function_t format_vlib_next_node_name;
1237format_function_t format_vlib_node_and_next;
1238format_function_t format_vlib_cpu_time;
1239format_function_t format_vlib_time;
1240/* Parse node name -> node index. */
1241unformat_function_t unformat_vlib_node;
1242
Dave Barach9b8ffd92016-07-08 08:13:45 -04001243always_inline void
1244vlib_node_increment_counter (vlib_main_t * vm, u32 node_index,
1245 u32 counter_index, u64 increment)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001246{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001247 vlib_node_t *n = vlib_get_node (vm, node_index);
1248 vlib_error_main_t *em = &vm->error_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001249 u32 node_counter_base_index = n->error_heap_index;
1250 em->counters[node_counter_base_index + counter_index] += increment;
1251}
1252
Dave Barach11965c72019-05-28 16:31:05 -04001253/** @brief Create a vlib process
1254 * @param vm &vlib_global_main
1255 * @param f the process node function
1256 * @param log2_n_stack_bytes size of the process stack, defaults to 16K
1257 * @return newly-create node index
1258 * @warning call only on the main thread. Barrier sync required
1259 */
1260u32 vlib_process_create (vlib_main_t * vm, char *name,
1261 vlib_node_function_t * f, u32 log2_n_stack_bytes);
1262
Damjan Marion8b60fb02020-11-27 20:15:17 +01001263always_inline int
1264vlib_node_set_dispatch_wrapper (vlib_main_t *vm, vlib_node_function_t *fn)
1265{
1266 if (fn && vm->dispatch_wrapper_fn)
1267 return 1;
1268 vm->dispatch_wrapper_fn = fn;
1269 return 0;
1270}
1271
Damjan Mariona31698b2021-03-10 14:35:28 +01001272int vlib_node_set_march_variant (vlib_main_t *vm, u32 node_index,
1273 clib_march_variant_type_t march_variant);
1274
1275vlib_node_function_t *
1276vlib_node_get_preferred_node_fn_variant (vlib_main_t *vm,
1277 vlib_node_fn_registration_t *regs);
1278
Ed Warnickecb9cada2015-12-08 15:45:58 -07001279#endif /* included_vlib_node_funcs_h */
Dave Barach9b8ffd92016-07-08 08:13:45 -04001280
1281/*
1282 * fd.io coding-style-patch-verification: ON
1283 *
1284 * Local Variables:
1285 * eval: (c-set-style "gnu")
1286 * End:
1287 */